From 74e6037383ce3a77ed6fdb8281bbd69316c723a4 Mon Sep 17 00:00:00 2001 From: zc he Date: Sun, 24 Nov 2024 20:45:41 +0800 Subject: [PATCH] Reverted: force separator around binary operators (#154) This PR reverts this trick introduced by #149 : ```js /** * group operator and its preceding/succeeding whitespace/newline * @param {string} opr * @param {boolean} parenthesized */ function operator_with_separator(opr, parenthesized) { const sep = parenthesized ? choice(/[ \t]/, /\r?\n/) : /[ \t]/; return alias(token(seq(repeat1(sep), opr, repeat1(sep))), opr); } ``` It turns out that this will cause unwanted side effects of blurring boundaries of tokens around `binary_expression`: image compared to the ideal result after this PR: image Instead, `cmd_identifier` is tweaked to keep expressions like `1+1` away from being parsed as `binary_expression`. --- grammar.js | 78 +- src/grammar.json | 2895 +- src/node-types.json | 9 +- src/parser.c | 682060 +++++++++++++++-------------- test/corpus/expr/binary-expr.nu | 4 +- 5 files changed, 342159 insertions(+), 342887 deletions(-) diff --git a/grammar.js b/grammar.js index ac56997..4879485 100644 --- a/grammar.js +++ b/grammar.js @@ -30,6 +30,7 @@ module.exports = grammar({ [$._block_body, $.record_body, $.val_closure], [$._block_body, $.shebang], [$._block_body, $.val_closure], + [$._expression, $._expr_binary_expression], [$._expression_parenthesized, $._expr_binary_expression_parenthesized], [$._match_pattern_list, $.val_list], [$._match_pattern_record, $.val_record], @@ -81,26 +82,20 @@ module.exports = grammar({ token( prec(PREC().low, seq(none_of(excluded + "^#$\\-"), pattern_repeat)), ), - ...Object.values(KEYWORD()).map((x) => - token(seq(x, token.immediate(pattern_repeat))), - ), - ...Object.values(MODIFIER()).map((x) => - token(seq(x, token.immediate(pattern_repeat))), - ), - ...Object.values(SPECIAL()).map((x) => - seq(x, token.immediate(pattern_one)), - ), + ...Object.values(KEYWORD()).map((x) => token(seq(x, pattern_one))), + ...Object.values(MODIFIER()).map((x) => token(seq(x, pattern_one))), + ...Object.values(SPECIAL()).map((x) => token(seq(x, pattern_one))), seq( - seq( - $._val_number_decimal, - optional( - choice( - alias($.duration_unit, "_unit"), - alias($.filesize_unit, "_unit"), - ), + $._val_number_decimal, + optional( + choice( + alias($.duration_unit, "_unit"), + alias($.filesize_unit, "_unit"), ), ), - token.immediate(prec(PREC().lowest, pattern_one)), + // conflict with expr_binary + optional(choice(...TABLE().map((x) => token.immediate(x[1])))), + token.immediate(prec(PREC().low, pattern_repeat)), ), ); }, @@ -643,32 +638,21 @@ module.exports = grammar({ _stmt_overlay: ($) => choice($.overlay_hide, $.overlay_list, $.overlay_new, $.overlay_use), - overlay_list: (_$) => seq(KEYWORD().overlay, MODIFIER().overlay_list), + overlay_list: (_$) => seq(KEYWORD().overlay, "list"), overlay_hide: ($) => - prec.right( - 5, - seq( - KEYWORD().overlay, - MODIFIER().overlay_hide, - field("overlay", $._command_name), - ), - ), + seq(KEYWORD().overlay, "hide", field("overlay", $._command_name)), - overlay_new: ($) => - seq(KEYWORD().overlay, MODIFIER().overlay_new, $._command_name), + overlay_new: ($) => seq(KEYWORD().overlay, "new", $._command_name), overlay_use: ($) => - prec.right( - 1, - seq( - KEYWORD().overlay, - MODIFIER().overlay_use, - repeat($._flag), - field("overlay", $.identifier), - repeat($._flag), - optional(seq(KEYWORD().as, field("rename", $._command_name))), - ), + seq( + KEYWORD().overlay, + "use", + repeat($._flag), + field("overlay", $.identifier), + repeat($._flag), + optional(seq(KEYWORD().as, field("rename", $._command_name))), ), scope_pattern: ($) => @@ -1686,7 +1670,7 @@ function _expr_binary_rule(parenthesized) { ...TABLE().map(([precedence, opr]) => { const seq_array = [ field("lhs", _expr), - field("opr", operator_with_separator(opr, parenthesized)), + field("opr", opr), field( "rhs", choice( @@ -2013,13 +1997,7 @@ function KEYWORD() { // modifier keywords function MODIFIER() { return { - overlay_hide: "hide", - overlay_list: "list", - overlay_new: "new", - overlay_use: "use", - error_make: "make", - visibility: "export", }; } @@ -2082,16 +2060,6 @@ function BRACK() { }; } -/** - * group operator and its preceding/succeeding whitespace/newline - * @param {string} opr - * @param {boolean} parenthesized - */ -function operator_with_separator(opr, parenthesized) { - const sep = parenthesized ? choice(/[ \t]/, /\r?\n/) : /[ \t]/; - return alias(token(seq(sep, opr, sep)), opr); -} - /** * [ele1, array] -> array<[ele1, ele2]> * @param {any} first diff --git a/src/grammar.json b/src/grammar.json index 2dc662f..99b7f09 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -876,13 +876,10 @@ "value": "def" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -898,13 +895,10 @@ "value": "alias" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -920,13 +914,10 @@ "value": "use" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -942,13 +933,10 @@ "value": "export-env" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -964,13 +952,10 @@ "value": "extern" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -986,13 +971,10 @@ "value": "module" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1008,13 +990,10 @@ "value": "let" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1030,13 +1009,10 @@ "value": "let-env" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1052,13 +1028,10 @@ "value": "mut" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1074,13 +1047,10 @@ "value": "const" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1096,13 +1066,10 @@ "value": "hide" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1118,13 +1085,10 @@ "value": "hide-env" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1140,13 +1104,10 @@ "value": "source" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1162,13 +1123,10 @@ "value": "source-env" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1184,13 +1142,10 @@ "value": "overlay" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1206,13 +1161,10 @@ "value": "register" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1228,13 +1180,10 @@ "value": "for" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1250,13 +1199,10 @@ "value": "loop" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1272,13 +1218,10 @@ "value": "while" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1294,13 +1237,10 @@ "value": "error" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1316,13 +1256,10 @@ "value": "do" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1338,13 +1275,10 @@ "value": "if" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1360,13 +1294,10 @@ "value": "else" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1382,13 +1313,10 @@ "value": "try" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1404,13 +1332,10 @@ "value": "catch" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1426,13 +1351,10 @@ "value": "match" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1448,13 +1370,10 @@ "value": "break" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1470,13 +1389,10 @@ "value": "continue" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1492,13 +1408,10 @@ "value": "return" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1514,13 +1427,10 @@ "value": "as" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1536,13 +1446,10 @@ "value": "in" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1555,16 +1462,13 @@ "members": [ { "type": "STRING", - "value": "hide" + "value": "make" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1577,16 +1481,13 @@ "members": [ { "type": "STRING", - "value": "list" + "value": "export" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1599,16 +1500,13 @@ "members": [ { "type": "STRING", - "value": "new" + "value": "true" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1621,16 +1519,13 @@ "members": [ { "type": "STRING", - "value": "use" + "value": "false" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1643,16 +1538,13 @@ "members": [ { "type": "STRING", - "value": "make" + "value": "null" }, { - "type": "IMMEDIATE_TOKEN", + "type": "REPEAT1", "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } + "type": "PATTERN", + "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } ] @@ -1664,176 +1556,315 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "export" + "type": "PATTERN", + "value": "[iI][nN][fF]([iI][nN][iI][tT][yY])?" }, { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } - } - } - ] - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "true" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "false" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { "type": "REPEAT1", "content": { "type": "PATTERN", "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } - } - ] + ] + } }, { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "null" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "-[iI][nN][fF]([iI][nN][iI][tT][yY])?" + }, + { "type": "REPEAT1", "content": { "type": "PATTERN", "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } - } - ] + ] + } }, { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[iI][nN][fF]([iI][nN][iI][tT][yY])?" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[nN][aA][nN]" + }, + { "type": "REPEAT1", "content": { "type": "PATTERN", "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" } } - } - ] + ] + } }, { "type": "SEQ", "members": [ { - "type": "PATTERN", - "value": "-[iI][nN][fF]([iI][nN][iI][tT][yY])?" + "type": "SYMBOL", + "name": "_val_number_decimal" }, { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "duration_unit" + }, + "named": false, + "value": "_unit" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "filesize_unit" + }, + "named": false, + "value": "_unit" + } + ] + }, + { + "type": "BLANK" } - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[nN][aA][nN]" + ] }, { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" - } - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", + "type": "CHOICE", "members": [ - { - "type": "SYMBOL", - "name": "_val_number_decimal" - }, { "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "duration_unit" - }, - "named": false, - "value": "_unit" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "filesize_unit" - }, - "named": false, - "value": "_unit" - } - ] + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "**" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "++" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "mod" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "//" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "bit-shl" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "bit-shr" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "=~" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "!~" + } }, { - "type": "BLANK" + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "bit-and" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "bit-xor" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "bit-or" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "and" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "xor" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "or" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "in" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "not-in" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "starts-with" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "ends-with" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "=~" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "!~" + } } ] + }, + { + "type": "BLANK" } ] }, @@ -1841,9 +1872,9 @@ "type": "IMMEDIATE_TOKEN", "content": { "type": "PREC", - "value": -69, + "value": -1, "content": { - "type": "REPEAT1", + "type": "REPEAT", "content": { "type": "PATTERN", "value": "[^\\s\\r\\n\\t\\|();\\[\\]\\{}<>=\"`':]" @@ -4876,29 +4907,25 @@ ] }, "overlay_hide": { - "type": "PREC_RIGHT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "overlay" - }, - { - "type": "STRING", - "value": "hide" - }, - { - "type": "FIELD", - "name": "overlay", - "content": { - "type": "SYMBOL", - "name": "_command_name" - } + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "overlay" + }, + { + "type": "STRING", + "value": "hide" + }, + { + "type": "FIELD", + "name": "overlay", + "content": { + "type": "SYMBOL", + "name": "_command_name" } - ] - } + } + ] }, "overlay_new": { "type": "SEQ", @@ -4918,68 +4945,64 @@ ] }, "overlay_use": { - "type": "PREC_RIGHT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "overlay" - }, - { - "type": "STRING", - "value": "use" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_flag" - } - }, - { - "type": "FIELD", - "name": "overlay", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_flag" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "FIELD", - "name": "rename", - "content": { - "type": "SYMBOL", - "name": "_command_name" - } - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "overlay" + }, + { + "type": "STRING", + "value": "use" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_flag" + } + }, + { + "type": "FIELD", + "name": "overlay", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_flag" } - ] - } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "rename", + "content": { + "type": "SYMBOL", + "name": "_command_name" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] }, "scope_pattern": { "type": "CHOICE", @@ -6791,28 +6814,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "**" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "**" } }, @@ -6868,28 +6870,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "++" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "++" } }, @@ -6945,28 +6926,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "*" } }, @@ -7022,28 +6982,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "/" } }, @@ -7099,28 +7038,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "mod" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "mod" } }, @@ -7176,28 +7094,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "//" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "//" } }, @@ -7253,28 +7150,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "+" } }, @@ -7330,28 +7206,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "-" } }, @@ -7407,28 +7262,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "bit-shl" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "bit-shl" } }, @@ -7484,28 +7318,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "bit-shr" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "bit-shr" } }, @@ -7552,37 +7365,16 @@ { "type": "FIELD", "name": "lhs", - "content": { - "type": "SYMBOL", - "name": "_expr_binary_expression" - } - }, - { - "type": "FIELD", - "name": "opr", - "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "=~" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "content": { + "type": "SYMBOL", + "name": "_expr_binary_expression" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "STRING", "value": "=~" } }, @@ -7638,28 +7430,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "!~" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "!~" } }, @@ -7715,28 +7486,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "bit-and" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "bit-and" } }, @@ -7792,28 +7542,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "bit-xor" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "bit-xor" } }, @@ -7869,28 +7598,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "bit-or" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "bit-or" } }, @@ -7946,28 +7654,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "and" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "and" } }, @@ -8023,28 +7710,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "xor" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "xor" } }, @@ -8100,28 +7766,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "or" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "or" } }, @@ -8177,28 +7822,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "in" } }, @@ -8254,28 +7878,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "not-in" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "not-in" } }, @@ -8331,28 +7934,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "starts-with" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "starts-with" } }, @@ -8408,28 +7990,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "ends-with" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "ends-with" } }, @@ -8478,35 +8039,14 @@ "name": "lhs", "content": { "type": "SYMBOL", - "name": "_expr_binary_expression" - } - }, - { - "type": "FIELD", - "name": "opr", - "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "==" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "name": "_expr_binary_expression" + } + }, + { + "type": "FIELD", + "name": "opr", + "content": { + "type": "STRING", "value": "==" } }, @@ -8562,28 +8102,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "!=" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "!=" } }, @@ -8639,28 +8158,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "<" } }, @@ -8716,28 +8214,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "<=" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "<=" } }, @@ -8793,28 +8270,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": ">" } }, @@ -8870,28 +8326,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": ">=" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": ">=" } }, @@ -8947,28 +8382,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "=~" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "=~" } }, @@ -9024,28 +8438,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "STRING", - "value": "!~" - }, - { - "type": "PATTERN", - "value": "[ \\t]" - } - ] - } - }, - "named": false, + "type": "STRING", "value": "!~" } }, @@ -9113,46 +8506,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "**" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "**" } }, @@ -9229,46 +8583,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "++" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "++" } }, @@ -9345,46 +8660,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "*" } }, @@ -9461,46 +8737,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "/" } }, @@ -9577,46 +8814,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "mod" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "mod" } }, @@ -9693,46 +8891,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "//" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "//" } }, @@ -9809,46 +8968,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "+" } }, @@ -9925,46 +9045,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "-" } }, @@ -10041,46 +9122,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "bit-shl" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "bit-shl" } }, @@ -10154,49 +9196,10 @@ } }, { - "type": "FIELD", - "name": "opr", - "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "bit-shr" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "FIELD", + "name": "opr", + "content": { + "type": "STRING", "value": "bit-shr" } }, @@ -10273,46 +9276,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "=~" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "=~" } }, @@ -10389,46 +9353,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "!~" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "!~" } }, @@ -10505,46 +9430,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "bit-and" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "bit-and" } }, @@ -10621,46 +9507,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "bit-xor" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "bit-xor" } }, @@ -10737,46 +9584,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "bit-or" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "bit-or" } }, @@ -10853,46 +9661,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "and" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "and" } }, @@ -10968,47 +9737,8 @@ { "type": "FIELD", "name": "opr", - "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "xor" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "content": { + "type": "STRING", "value": "xor" } }, @@ -11085,46 +9815,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "or" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "or" } }, @@ -11201,46 +9892,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "in" } }, @@ -11317,46 +9969,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "not-in" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "not-in" } }, @@ -11433,46 +10046,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "starts-with" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "starts-with" } }, @@ -11549,46 +10123,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "ends-with" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "ends-with" } }, @@ -11665,46 +10200,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "==" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "==" } }, @@ -11778,49 +10274,10 @@ } }, { - "type": "FIELD", - "name": "opr", - "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "!=" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "FIELD", + "name": "opr", + "content": { + "type": "STRING", "value": "!=" } }, @@ -11897,46 +10354,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "<" } }, @@ -12013,46 +10431,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "<=" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "<=" } }, @@ -12129,46 +10508,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": ">" } }, @@ -12245,46 +10585,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": ">=" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": ">=" } }, @@ -12361,46 +10662,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "=~" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "=~" } }, @@ -12477,46 +10739,7 @@ "type": "FIELD", "name": "opr", "content": { - "type": "ALIAS", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - }, - { - "type": "STRING", - "value": "!~" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - } - ] - } - ] - } - }, - "named": false, + "type": "STRING", "value": "!~" } }, @@ -15910,42 +14133,6 @@ "named": true, "value": "identifier" }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "hide" - }, - "named": true, - "value": "identifier" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "list" - }, - "named": true, - "value": "identifier" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "new" - }, - "named": true, - "value": "identifier" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "use" - }, - "named": true, - "value": "identifier" - }, { "type": "ALIAS", "content": { @@ -17844,6 +16031,10 @@ "_block_body", "val_closure" ], + [ + "_expression", + "_expr_binary_expression" + ], [ "_expression_parenthesized", "_expr_binary_expression_parenthesized" diff --git a/src/node-types.json b/src/node-types.json index 566b395..2f7cdc6 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -5425,6 +5425,11 @@ } } }, + { + "type": "wild_card", + "named": true, + "fields": {} + }, { "type": "!=", "named": false @@ -6141,10 +6146,6 @@ "type": "while", "named": false }, - { - "type": "wild_card", - "named": true - }, { "type": "xor", "named": false diff --git a/src/parser.c b/src/parser.c index edc57ea..023b85b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,11 +13,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8080 -#define LARGE_STATE_COUNT 1585 -#define SYMBOL_COUNT 530 +#define STATE_COUNT 8007 +#define LARGE_STATE_COUNT 1735 +#define SYMBOL_COUNT 515 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 323 +#define TOKEN_COUNT 307 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 72 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -75,488 +75,473 @@ enum ts_symbol_identifiers { aux_sym_cmd_identifier_token34 = 49, aux_sym_cmd_identifier_token35 = 50, aux_sym_cmd_identifier_token36 = 51, - anon_sym_true = 52, - aux_sym_cmd_identifier_token37 = 53, - anon_sym_false = 54, - anon_sym_null = 55, - aux_sym_cmd_identifier_token38 = 56, - aux_sym_cmd_identifier_token39 = 57, - aux_sym_cmd_identifier_token40 = 58, - aux_sym_cmd_identifier_token41 = 59, - sym_long_flag_identifier = 60, - sym__newline = 61, - sym__space = 62, - anon_sym_SEMI = 63, - anon_sym_PIPE = 64, - anon_sym_err_GT_PIPE = 65, - anon_sym_out_GT_PIPE = 66, - anon_sym_e_GT_PIPE = 67, - anon_sym_o_GT_PIPE = 68, - anon_sym_err_PLUSout_GT_PIPE = 69, - anon_sym_out_PLUSerr_GT_PIPE = 70, - anon_sym_o_PLUSe_GT_PIPE = 71, - anon_sym_e_PLUSo_GT_PIPE = 72, - anon_sym_def = 73, - anon_sym_export_DASHenv = 74, - anon_sym_extern = 75, - anon_sym_module = 76, - anon_sym_use = 77, - anon_sym_COLON = 78, - anon_sym_DASH_GT = 79, - anon_sym_LBRACK = 80, - anon_sym_RBRACK = 81, - anon_sym_LPAREN = 82, - anon_sym_RPAREN = 83, - anon_sym_COMMA = 84, - anon_sym_DOLLAR = 85, - anon_sym_any = 86, - anon_sym_binary = 87, - anon_sym_block = 88, - anon_sym_bool = 89, - anon_sym_cell_DASHpath = 90, - anon_sym_closure = 91, - anon_sym_cond = 92, - anon_sym_datetime = 93, - anon_sym_directory = 94, - anon_sym_duration = 95, - anon_sym_error = 96, - anon_sym_expr = 97, - anon_sym_float = 98, - anon_sym_decimal = 99, - anon_sym_filesize = 100, - anon_sym_full_DASHcell_DASHpath = 101, - anon_sym_glob = 102, - anon_sym_int = 103, - anon_sym_import_DASHpattern = 104, - anon_sym_keyword = 105, - anon_sym_math = 106, - anon_sym_nothing = 107, - anon_sym_number = 108, - anon_sym_one_DASHof = 109, - anon_sym_operator = 110, - anon_sym_path = 111, - anon_sym_range = 112, - anon_sym_signature = 113, - anon_sym_string = 114, - anon_sym_table = 115, - anon_sym_variable = 116, - anon_sym_var_DASHwith_DASHopt_DASHtype = 117, - anon_sym_record = 118, - anon_sym_list = 119, - anon_sym_LT = 120, - anon_sym_GT = 121, - anon_sym_AT = 122, - anon_sym_DOT_DOT_DOT = 123, - anon_sym_QMARK = 124, - anon_sym_DASH_DASH = 125, - anon_sym_DASH = 126, - sym_param_short_flag_identifier = 127, - anon_sym_break = 128, - anon_sym_continue = 129, - anon_sym_for = 130, - anon_sym_in = 131, - anon_sym_loop = 132, - anon_sym_make = 133, - anon_sym_while = 134, - anon_sym_do = 135, - anon_sym_if = 136, - anon_sym_else = 137, - anon_sym_match = 138, - anon_sym_LBRACE = 139, - anon_sym_RBRACE = 140, - anon_sym_EQ_GT = 141, - anon_sym__ = 142, - anon_sym_DOT_DOT = 143, - anon_sym_DOLLAR2 = 144, - anon_sym_try = 145, - anon_sym_catch = 146, - anon_sym_return = 147, - anon_sym_source = 148, - anon_sym_source_DASHenv = 149, - anon_sym_register = 150, - anon_sym_hide = 151, - anon_sym_hide_DASHenv = 152, - anon_sym_overlay = 153, - anon_sym_new = 154, - anon_sym_as = 155, - sym_wild_card = 156, - anon_sym_QMARK2 = 157, - anon_sym_where = 158, - anon_sym_and = 159, - anon_sym_xor = 160, - anon_sym_or = 161, - anon_sym_not_DASHin = 162, - anon_sym_starts_DASHwith = 163, - anon_sym_ends_DASHwith = 164, - anon_sym_EQ_EQ = 165, - anon_sym_BANG_EQ = 166, - anon_sym_LT2 = 167, - anon_sym_LT_EQ = 168, - anon_sym_GT_EQ = 169, - anon_sym_EQ_TILDE = 170, - anon_sym_BANG_TILDE = 171, - aux_sym_expr_unary_token1 = 172, - anon_sym_LPAREN2 = 173, - aux_sym_expr_binary_token1 = 174, - aux_sym_expr_binary_token2 = 175, - aux_sym_expr_binary_token3 = 176, - aux_sym_expr_binary_token4 = 177, - aux_sym_expr_binary_token5 = 178, - aux_sym_expr_binary_token6 = 179, - aux_sym_expr_binary_token7 = 180, - aux_sym_expr_binary_token8 = 181, - aux_sym_expr_binary_token9 = 182, - aux_sym_expr_binary_token10 = 183, - aux_sym_expr_binary_token11 = 184, - aux_sym_expr_binary_token12 = 185, - aux_sym_expr_binary_token13 = 186, - aux_sym_expr_binary_token14 = 187, - aux_sym_expr_binary_token15 = 188, - aux_sym_expr_binary_token16 = 189, - aux_sym_expr_binary_token17 = 190, - aux_sym_expr_binary_token18 = 191, - aux_sym_expr_binary_token19 = 192, - aux_sym_expr_binary_token20 = 193, - aux_sym_expr_binary_token21 = 194, - aux_sym_expr_binary_token22 = 195, - aux_sym_expr_binary_token23 = 196, - aux_sym_expr_binary_token24 = 197, - aux_sym_expr_binary_token25 = 198, - aux_sym_expr_binary_token26 = 199, - aux_sym_expr_binary_token27 = 200, - aux_sym_expr_binary_token28 = 201, - aux_sym_expr_binary_parenthesized_token1 = 202, - aux_sym_expr_binary_parenthesized_token2 = 203, - aux_sym_expr_binary_parenthesized_token3 = 204, - aux_sym_expr_binary_parenthesized_token4 = 205, - aux_sym_expr_binary_parenthesized_token5 = 206, - aux_sym_expr_binary_parenthesized_token6 = 207, - aux_sym_expr_binary_parenthesized_token7 = 208, - aux_sym_expr_binary_parenthesized_token8 = 209, - aux_sym_expr_binary_parenthesized_token9 = 210, - aux_sym_expr_binary_parenthesized_token10 = 211, - aux_sym_expr_binary_parenthesized_token11 = 212, - aux_sym_expr_binary_parenthesized_token12 = 213, - aux_sym_expr_binary_parenthesized_token13 = 214, - aux_sym_expr_binary_parenthesized_token14 = 215, - aux_sym_expr_binary_parenthesized_token15 = 216, - aux_sym_expr_binary_parenthesized_token16 = 217, - aux_sym_expr_binary_parenthesized_token17 = 218, - aux_sym_expr_binary_parenthesized_token18 = 219, - aux_sym_expr_binary_parenthesized_token19 = 220, - aux_sym_expr_binary_parenthesized_token20 = 221, - aux_sym_expr_binary_parenthesized_token21 = 222, - aux_sym_expr_binary_parenthesized_token22 = 223, - aux_sym_expr_binary_parenthesized_token23 = 224, - aux_sym_expr_binary_parenthesized_token24 = 225, - aux_sym_expr_binary_parenthesized_token25 = 226, - aux_sym_expr_binary_parenthesized_token26 = 227, - aux_sym_expr_binary_parenthesized_token27 = 228, - aux_sym_expr_binary_parenthesized_token28 = 229, - anon_sym_DOT_DOT_DOT_LPAREN = 230, - anon_sym_DOT_DOT2 = 231, - anon_sym_DOT = 232, - anon_sym_DOT_DOT_EQ = 233, - anon_sym_DOT_DOT_LT = 234, - anon_sym_DOT_DOT_EQ2 = 235, - anon_sym_DOT_DOT_LT2 = 236, - aux_sym__immediate_decimal_token1 = 237, - aux_sym__immediate_decimal_token2 = 238, - aux_sym__immediate_decimal_token3 = 239, - aux_sym__immediate_decimal_token4 = 240, - aux_sym__immediate_decimal_token5 = 241, - anon_sym_RPAREN2 = 242, - anon_sym_DOT_DOT_DOT_DOLLAR = 243, - anon_sym_nu = 244, - anon_sym_env = 245, - aux_sym__val_number_decimal_token1 = 246, - aux_sym__val_number_decimal_token2 = 247, - aux_sym__val_number_decimal_token3 = 248, - aux_sym__val_number_decimal_token4 = 249, - aux_sym__val_number_token1 = 250, - aux_sym__val_number_token2 = 251, - aux_sym__val_number_token3 = 252, - anon_sym_0b = 253, - sym_filesize_unit = 254, - sym_duration_unit = 255, - anon_sym_0o = 256, - anon_sym_0x = 257, - anon_sym_LBRACK2 = 258, - sym_hex_digit = 259, - sym_val_date = 260, - anon_sym_DQUOTE = 261, - sym__escaped_str_content = 262, - sym__str_single_quotes = 263, - sym__str_back_ticks = 264, - sym_escape_sequence = 265, - sym_escaped_interpolated_content = 266, - sym_unescaped_interpolated_content = 267, - anon_sym_DOLLAR_SQUOTE = 268, - anon_sym_SQUOTE = 269, - anon_sym_DOLLAR_DQUOTE = 270, - anon_sym_DQUOTE2 = 271, - sym_inter_escape_sequence = 272, - anon_sym_DOT_DOT_DOT_LBRACK = 273, - anon_sym_DOT_DOT_DOT_LBRACE = 274, - sym__entry_separator = 275, - aux_sym_record_entry_token1 = 276, - anon_sym_PLUS = 277, - aux_sym__record_key_token1 = 278, - sym__table_head_separator = 279, - aux_sym_path_token1 = 280, - aux_sym_env_var_token1 = 281, - aux_sym_env_var_token2 = 282, - anon_sym_CARET = 283, - anon_sym_err_GT = 284, - anon_sym_out_GT = 285, - anon_sym_e_GT = 286, - anon_sym_o_GT = 287, - anon_sym_err_PLUSout_GT = 288, - anon_sym_out_PLUSerr_GT = 289, - anon_sym_o_PLUSe_GT = 290, - anon_sym_e_PLUSo_GT = 291, - anon_sym_err_GT_GT = 292, - anon_sym_out_GT_GT = 293, - anon_sym_e_GT_GT = 294, - anon_sym_o_GT_GT = 295, - anon_sym_err_PLUSout_GT_GT = 296, - anon_sym_out_PLUSerr_GT_GT = 297, - anon_sym_o_PLUSe_GT_GT = 298, - anon_sym_e_PLUSo_GT_GT = 299, - anon_sym_EQ2 = 300, - sym_short_flag_identifier = 301, - sym__unquoted_naive = 302, - aux_sym_unquoted_token1 = 303, - aux_sym_unquoted_token2 = 304, - aux_sym_unquoted_token3 = 305, - aux_sym_unquoted_token4 = 306, - aux_sym__unquoted_in_list_token1 = 307, - aux_sym__unquoted_in_list_token2 = 308, - aux_sym__unquoted_in_list_token3 = 309, - aux_sym__unquoted_in_list_token4 = 310, - aux_sym__unquoted_in_record_token1 = 311, - aux_sym__unquoted_in_record_token2 = 312, - aux_sym__unquoted_in_record_token3 = 313, - aux_sym__unquoted_in_record_token4 = 314, - aux_sym__unquoted_with_expr_token1 = 315, - aux_sym__unquoted_in_list_with_expr_token1 = 316, - aux_sym__unquoted_in_record_with_expr_token1 = 317, - anon_sym_POUND = 318, - aux_sym_comment_token1 = 319, - sym_raw_string_begin = 320, - sym_raw_string_content = 321, - sym_raw_string_end = 322, - sym_nu_script = 323, - sym_shebang = 324, - sym__block_body_statement = 325, - sym__declaration = 326, - sym_decl_alias = 327, - sym_stmt_let = 328, - sym_stmt_mut = 329, - sym_stmt_const = 330, - sym_assignment = 331, - sym__assignment_pattern = 332, - sym__mutable_assignment_pattern = 333, - sym__statement = 334, - sym_pipeline = 335, - sym__block_body_statement_parenthesized = 336, - sym__declaration_parenthesized = 337, - sym_decl_alias_parenthesized = 338, - sym_stmt_let_parenthesized = 339, - sym_stmt_mut_parenthesized = 340, - sym_stmt_const_parenthesized = 341, - sym_assignment_parenthesized = 342, - sym__assignment_pattern_parenthesized = 343, - sym__mutable_assignment_pattern_parenthesized = 344, - sym__statement_parenthesized = 345, - sym_pipeline_parenthesized = 346, - sym__block_body = 347, - sym_cmd_identifier = 348, - sym__command_name = 349, - sym__variable_name = 350, - aux_sym__pipe_separator = 351, - sym_decl_def = 352, - sym_decl_export = 353, - sym_decl_extern = 354, - sym_decl_module = 355, - sym_decl_use = 356, - sym_returns = 357, - sym__one_type = 358, - sym__multiple_types = 359, - sym_parameter_parens = 360, - sym_parameter_bracks = 361, - sym_parameter_pipes = 362, - sym_parameter = 363, - sym__param_name = 364, - sym_param_type = 365, - sym_param_value = 366, - sym__type_annotation = 367, - sym__all_type = 368, - sym_flat_type = 369, - sym_collection_type = 370, - sym_list_type = 371, - sym_param_cmd = 372, - sym_param_rest = 373, - sym_param_opt = 374, - sym_param_long_flag = 375, - sym_flag_capsule = 376, - sym_param_short_flag = 377, - sym__ctrl_statement = 378, - sym__ctrl_expression = 379, - sym__ctrl_expression_parenthesized = 380, - sym_ctrl_for = 381, - sym_ctrl_loop = 382, - sym_ctrl_error = 383, - sym_ctrl_while = 384, - sym_ctrl_do = 385, - sym_ctrl_do_parenthesized = 386, - sym_ctrl_if = 387, - sym_ctrl_if_parenthesized = 388, - sym_ctrl_match = 389, - sym_match_arm = 390, - sym_default_arm = 391, - sym_match_pattern = 392, - sym__match_pattern = 393, - sym_match_guard = 394, - sym__match_pattern_expression = 395, - sym__match_pattern_value = 396, - sym__match_pattern_list = 397, - sym__match_pattern_rest = 398, - sym__match_pattern_record = 399, - sym__match_pattern_record_variable = 400, - sym_ctrl_try = 401, - sym_ctrl_try_parenthesized = 402, - sym_ctrl_return = 403, - sym_pipe_element = 404, - sym_pipe_element_parenthesized = 405, - sym_stmt_source = 406, - sym_stmt_register = 407, - sym__stmt_hide = 408, - sym_hide_mod = 409, - sym_hide_env = 410, - sym__stmt_overlay = 411, - sym_overlay_list = 412, - sym_overlay_hide = 413, - sym_overlay_new = 414, - sym_overlay_use = 415, - sym_scope_pattern = 416, - sym_command_list = 417, - sym_block = 418, - sym__blosure = 419, - sym__where_predicate_lhs = 420, - sym_where_command = 421, - sym_where_command_parenthesized = 422, - sym__binary_predicate = 423, - sym__binary_predicate_parenthesized = 424, - sym__predicate = 425, - sym__expression = 426, - sym__expression_parenthesized = 427, - sym_expr_unary = 428, - sym__expr_unary_minus = 429, - sym_expr_binary = 430, - sym_expr_binary_parenthesized = 431, - sym__expr_binary_expression = 432, - sym__expr_binary_expression_parenthesized = 433, - sym_expr_parenthesized = 434, - sym__spread_parenthesized = 435, - sym__expr_parenthesized_immediate = 436, - sym__parenthesized_body = 437, - sym_val_range = 438, - sym__val_range = 439, - sym__val_range_with_end = 440, - sym__immediate_decimal = 441, - sym__value = 442, - sym_val_nothing = 443, - sym_val_bool = 444, - sym__spread_variable = 445, - sym_val_variable = 446, - sym_val_number = 447, - sym__val_number_decimal = 448, - sym__val_number = 449, - sym_val_duration = 450, - sym_val_filesize = 451, - sym_val_binary = 452, - sym_val_string = 453, - sym__raw_str = 454, - sym__str_double_quotes = 455, - sym_val_interpolated = 456, - sym__inter_single_quotes = 457, - sym__inter_double_quotes = 458, - sym_expr_interpolated = 459, - sym_val_list = 460, - sym__spread_list = 461, - sym_list_body = 462, - sym_val_entry = 463, - sym_val_record = 464, - sym__spread_record = 465, - sym_record_body = 466, - sym_record_entry = 467, - sym__record_key = 468, - sym_val_table = 469, - sym_val_closure = 470, - sym_cell_path = 471, - sym_path = 472, - sym_env_var = 473, - sym_command = 474, - sym__command_parenthesized = 475, - sym__cmd_arg = 476, - sym_redirection = 477, - sym__flag = 478, - sym__flags_parenthesized = 479, - sym_short_flag = 480, - sym_long_flag = 481, - sym_unquoted = 482, - sym__unquoted_in_list = 483, - sym__unquoted_in_record = 484, - sym__unquoted_with_expr = 485, - sym__unquoted_in_list_with_expr = 486, - sym__unquoted_in_record_with_expr = 487, - sym__unquoted_anonymous_prefix = 488, - sym_comment = 489, - aux_sym_shebang_repeat1 = 490, - aux_sym_pipeline_repeat1 = 491, - aux_sym_pipeline_parenthesized_repeat1 = 492, - aux_sym__block_body_repeat1 = 493, - aux_sym__block_body_repeat2 = 494, - aux_sym_decl_def_repeat1 = 495, - aux_sym__multiple_types_repeat1 = 496, - aux_sym__multiple_types_repeat2 = 497, - aux_sym_parameter_parens_repeat1 = 498, - aux_sym_parameter_repeat1 = 499, - aux_sym_parameter_repeat2 = 500, - aux_sym_collection_type_repeat1 = 501, - aux_sym_ctrl_do_repeat1 = 502, - aux_sym_ctrl_do_repeat2 = 503, - aux_sym_ctrl_do_parenthesized_repeat1 = 504, - aux_sym_ctrl_do_parenthesized_repeat2 = 505, - aux_sym_ctrl_do_parenthesized_repeat3 = 506, - aux_sym_ctrl_match_repeat1 = 507, - aux_sym_match_pattern_repeat1 = 508, - aux_sym__match_pattern_list_repeat1 = 509, - aux_sym__match_pattern_record_repeat1 = 510, - aux_sym_pipe_element_repeat1 = 511, - aux_sym_pipe_element_repeat2 = 512, - aux_sym_pipe_element_parenthesized_repeat1 = 513, - aux_sym_command_list_repeat1 = 514, - aux_sym__parenthesized_body_repeat1 = 515, - aux_sym__parenthesized_body_repeat2 = 516, - aux_sym_val_binary_repeat1 = 517, - aux_sym__str_double_quotes_repeat1 = 518, - aux_sym__inter_single_quotes_repeat1 = 519, - aux_sym__inter_double_quotes_repeat1 = 520, - aux_sym_list_body_repeat1 = 521, - aux_sym_record_body_repeat1 = 522, - aux_sym_val_table_repeat1 = 523, - aux_sym_cell_path_repeat1 = 524, - aux_sym_command_repeat1 = 525, - aux_sym__command_parenthesized_repeat1 = 526, - aux_sym__unquoted_with_expr_repeat1 = 527, - aux_sym__unquoted_in_list_with_expr_repeat1 = 528, - aux_sym__unquoted_in_record_with_expr_repeat1 = 529, - anon_alias_sym__head = 530, - anon_alias_sym__prefix = 531, - anon_alias_sym__unit = 532, - anon_alias_sym_quoted = 533, + aux_sym_cmd_identifier_token37 = 52, + aux_sym_cmd_identifier_token38 = 53, + aux_sym_cmd_identifier_token39 = 54, + aux_sym_cmd_identifier_token40 = 55, + anon_sym_STAR_STAR = 56, + anon_sym_PLUS_PLUS = 57, + anon_sym_STAR = 58, + anon_sym_SLASH = 59, + anon_sym_mod = 60, + anon_sym_SLASH_SLASH = 61, + anon_sym_PLUS = 62, + anon_sym_DASH = 63, + anon_sym_bit_DASHshl = 64, + anon_sym_bit_DASHshr = 65, + anon_sym_EQ_TILDE = 66, + anon_sym_BANG_TILDE = 67, + anon_sym_bit_DASHand = 68, + anon_sym_bit_DASHxor = 69, + anon_sym_bit_DASHor = 70, + anon_sym_and = 71, + anon_sym_xor = 72, + anon_sym_or = 73, + anon_sym_in = 74, + anon_sym_not_DASHin = 75, + anon_sym_starts_DASHwith = 76, + anon_sym_ends_DASHwith = 77, + anon_sym_EQ_EQ = 78, + anon_sym_BANG_EQ = 79, + anon_sym_LT = 80, + anon_sym_LT_EQ = 81, + anon_sym_GT = 82, + anon_sym_GT_EQ = 83, + aux_sym_cmd_identifier_token41 = 84, + sym_long_flag_identifier = 85, + sym__newline = 86, + sym__space = 87, + anon_sym_SEMI = 88, + anon_sym_PIPE = 89, + anon_sym_err_GT_PIPE = 90, + anon_sym_out_GT_PIPE = 91, + anon_sym_e_GT_PIPE = 92, + anon_sym_o_GT_PIPE = 93, + anon_sym_err_PLUSout_GT_PIPE = 94, + anon_sym_out_PLUSerr_GT_PIPE = 95, + anon_sym_o_PLUSe_GT_PIPE = 96, + anon_sym_e_PLUSo_GT_PIPE = 97, + anon_sym_def = 98, + anon_sym_export_DASHenv = 99, + anon_sym_extern = 100, + anon_sym_module = 101, + anon_sym_use = 102, + anon_sym_COLON = 103, + anon_sym_DASH_GT = 104, + anon_sym_LBRACK = 105, + anon_sym_RBRACK = 106, + anon_sym_LPAREN = 107, + anon_sym_RPAREN = 108, + anon_sym_COMMA = 109, + anon_sym_DOLLAR = 110, + anon_sym_any = 111, + anon_sym_binary = 112, + anon_sym_block = 113, + anon_sym_bool = 114, + anon_sym_cell_DASHpath = 115, + anon_sym_closure = 116, + anon_sym_cond = 117, + anon_sym_datetime = 118, + anon_sym_directory = 119, + anon_sym_duration = 120, + anon_sym_error = 121, + anon_sym_expr = 122, + anon_sym_float = 123, + anon_sym_decimal = 124, + anon_sym_filesize = 125, + anon_sym_full_DASHcell_DASHpath = 126, + anon_sym_glob = 127, + anon_sym_int = 128, + anon_sym_import_DASHpattern = 129, + anon_sym_keyword = 130, + anon_sym_math = 131, + anon_sym_nothing = 132, + anon_sym_number = 133, + anon_sym_one_DASHof = 134, + anon_sym_operator = 135, + anon_sym_path = 136, + anon_sym_range = 137, + anon_sym_signature = 138, + anon_sym_string = 139, + anon_sym_table = 140, + anon_sym_variable = 141, + anon_sym_var_DASHwith_DASHopt_DASHtype = 142, + anon_sym_record = 143, + anon_sym_list = 144, + anon_sym_GT2 = 145, + anon_sym_AT = 146, + anon_sym_DOT_DOT_DOT = 147, + anon_sym_QMARK = 148, + anon_sym_DASH_DASH = 149, + anon_sym_DASH2 = 150, + sym_param_short_flag_identifier = 151, + anon_sym_break = 152, + anon_sym_continue = 153, + anon_sym_for = 154, + anon_sym_in2 = 155, + anon_sym_loop = 156, + anon_sym_make = 157, + anon_sym_while = 158, + anon_sym_do = 159, + anon_sym_if = 160, + anon_sym_else = 161, + anon_sym_match = 162, + anon_sym_LBRACE = 163, + anon_sym_RBRACE = 164, + anon_sym_EQ_GT = 165, + anon_sym__ = 166, + anon_sym_DOT_DOT = 167, + anon_sym_DOLLAR2 = 168, + anon_sym_try = 169, + anon_sym_catch = 170, + anon_sym_return = 171, + anon_sym_source = 172, + anon_sym_source_DASHenv = 173, + anon_sym_register = 174, + anon_sym_hide = 175, + anon_sym_hide_DASHenv = 176, + anon_sym_overlay = 177, + anon_sym_new = 178, + anon_sym_as = 179, + anon_sym_STAR2 = 180, + anon_sym_QMARK2 = 181, + anon_sym_where = 182, + anon_sym_and2 = 183, + anon_sym_xor2 = 184, + anon_sym_or2 = 185, + anon_sym_not_DASHin2 = 186, + anon_sym_starts_DASHwith2 = 187, + anon_sym_ends_DASHwith2 = 188, + anon_sym_EQ_EQ2 = 189, + anon_sym_BANG_EQ2 = 190, + anon_sym_LT2 = 191, + anon_sym_LT_EQ2 = 192, + anon_sym_GT_EQ2 = 193, + anon_sym_EQ_TILDE2 = 194, + anon_sym_BANG_TILDE2 = 195, + aux_sym_expr_unary_token1 = 196, + anon_sym_LPAREN2 = 197, + anon_sym_STAR_STAR2 = 198, + anon_sym_PLUS_PLUS2 = 199, + anon_sym_SLASH2 = 200, + anon_sym_mod2 = 201, + anon_sym_SLASH_SLASH2 = 202, + anon_sym_PLUS2 = 203, + anon_sym_bit_DASHshl2 = 204, + anon_sym_bit_DASHshr2 = 205, + anon_sym_bit_DASHand2 = 206, + anon_sym_bit_DASHxor2 = 207, + anon_sym_bit_DASHor2 = 208, + anon_sym_DOT_DOT_DOT_LPAREN = 209, + anon_sym_DOT_DOT2 = 210, + anon_sym_DOT = 211, + anon_sym_DOT_DOT_EQ = 212, + anon_sym_DOT_DOT_LT = 213, + anon_sym_DOT_DOT_EQ2 = 214, + anon_sym_DOT_DOT_LT2 = 215, + aux_sym__immediate_decimal_token1 = 216, + aux_sym__immediate_decimal_token2 = 217, + aux_sym__immediate_decimal_token3 = 218, + aux_sym__immediate_decimal_token4 = 219, + aux_sym__immediate_decimal_token5 = 220, + anon_sym_null = 221, + anon_sym_RPAREN2 = 222, + anon_sym_true = 223, + anon_sym_false = 224, + anon_sym_DOT_DOT_DOT_DOLLAR = 225, + anon_sym_nu = 226, + anon_sym_env = 227, + aux_sym__val_number_decimal_token1 = 228, + aux_sym__val_number_decimal_token2 = 229, + aux_sym__val_number_decimal_token3 = 230, + aux_sym__val_number_decimal_token4 = 231, + aux_sym__val_number_token1 = 232, + aux_sym__val_number_token2 = 233, + aux_sym__val_number_token3 = 234, + aux_sym__val_number_token4 = 235, + aux_sym__val_number_token5 = 236, + aux_sym__val_number_token6 = 237, + anon_sym_0b = 238, + sym_filesize_unit = 239, + sym_duration_unit = 240, + anon_sym_0o = 241, + anon_sym_0x = 242, + anon_sym_LBRACK2 = 243, + sym_hex_digit = 244, + sym_val_date = 245, + anon_sym_DQUOTE = 246, + sym__escaped_str_content = 247, + sym__str_single_quotes = 248, + sym__str_back_ticks = 249, + sym_escape_sequence = 250, + sym_escaped_interpolated_content = 251, + sym_unescaped_interpolated_content = 252, + anon_sym_DOLLAR_SQUOTE = 253, + anon_sym_SQUOTE = 254, + anon_sym_DOLLAR_DQUOTE = 255, + anon_sym_DQUOTE2 = 256, + sym_inter_escape_sequence = 257, + anon_sym_DOT_DOT_DOT_LBRACK = 258, + anon_sym_DOT_DOT_DOT_LBRACE = 259, + sym__entry_separator = 260, + aux_sym_record_entry_token1 = 261, + aux_sym__record_key_token1 = 262, + sym__table_head_separator = 263, + aux_sym_path_token1 = 264, + aux_sym_env_var_token1 = 265, + aux_sym_env_var_token2 = 266, + anon_sym_CARET = 267, + anon_sym_err_GT = 268, + anon_sym_out_GT = 269, + anon_sym_e_GT = 270, + anon_sym_o_GT = 271, + anon_sym_err_PLUSout_GT = 272, + anon_sym_out_PLUSerr_GT = 273, + anon_sym_o_PLUSe_GT = 274, + anon_sym_e_PLUSo_GT = 275, + anon_sym_err_GT_GT = 276, + anon_sym_out_GT_GT = 277, + anon_sym_e_GT_GT = 278, + anon_sym_o_GT_GT = 279, + anon_sym_err_PLUSout_GT_GT = 280, + anon_sym_out_PLUSerr_GT_GT = 281, + anon_sym_o_PLUSe_GT_GT = 282, + anon_sym_e_PLUSo_GT_GT = 283, + anon_sym_EQ2 = 284, + sym_short_flag_identifier = 285, + sym__unquoted_naive = 286, + aux_sym_unquoted_token1 = 287, + aux_sym_unquoted_token2 = 288, + aux_sym_unquoted_token3 = 289, + aux_sym_unquoted_token4 = 290, + aux_sym__unquoted_in_list_token1 = 291, + aux_sym__unquoted_in_list_token2 = 292, + aux_sym__unquoted_in_list_token3 = 293, + aux_sym__unquoted_in_list_token4 = 294, + aux_sym__unquoted_in_record_token1 = 295, + aux_sym__unquoted_in_record_token2 = 296, + aux_sym__unquoted_in_record_token3 = 297, + aux_sym__unquoted_in_record_token4 = 298, + aux_sym__unquoted_with_expr_token1 = 299, + aux_sym__unquoted_in_list_with_expr_token1 = 300, + aux_sym__unquoted_in_record_with_expr_token1 = 301, + anon_sym_POUND = 302, + aux_sym_comment_token1 = 303, + sym_raw_string_begin = 304, + sym_raw_string_content = 305, + sym_raw_string_end = 306, + sym_nu_script = 307, + sym_shebang = 308, + sym__block_body_statement = 309, + sym__declaration = 310, + sym_decl_alias = 311, + sym_stmt_let = 312, + sym_stmt_mut = 313, + sym_stmt_const = 314, + sym_assignment = 315, + sym__assignment_pattern = 316, + sym__mutable_assignment_pattern = 317, + sym__statement = 318, + sym_pipeline = 319, + sym__block_body_statement_parenthesized = 320, + sym__declaration_parenthesized = 321, + sym_decl_alias_parenthesized = 322, + sym_stmt_let_parenthesized = 323, + sym_stmt_mut_parenthesized = 324, + sym_stmt_const_parenthesized = 325, + sym_assignment_parenthesized = 326, + sym__assignment_pattern_parenthesized = 327, + sym__mutable_assignment_pattern_parenthesized = 328, + sym__statement_parenthesized = 329, + sym_pipeline_parenthesized = 330, + sym__block_body = 331, + sym_cmd_identifier = 332, + sym__command_name = 333, + sym__variable_name = 334, + aux_sym__pipe_separator = 335, + sym_decl_def = 336, + sym_decl_export = 337, + sym_decl_extern = 338, + sym_decl_module = 339, + sym_decl_use = 340, + sym_returns = 341, + sym__one_type = 342, + sym__multiple_types = 343, + sym_parameter_parens = 344, + sym_parameter_bracks = 345, + sym_parameter_pipes = 346, + sym_parameter = 347, + sym__param_name = 348, + sym_param_type = 349, + sym_param_value = 350, + sym__type_annotation = 351, + sym__all_type = 352, + sym_flat_type = 353, + sym_collection_type = 354, + sym_list_type = 355, + sym_param_cmd = 356, + sym_param_rest = 357, + sym_param_opt = 358, + sym_param_long_flag = 359, + sym_flag_capsule = 360, + sym_param_short_flag = 361, + sym__ctrl_statement = 362, + sym__ctrl_expression = 363, + sym__ctrl_expression_parenthesized = 364, + sym_ctrl_for = 365, + sym_ctrl_loop = 366, + sym_ctrl_error = 367, + sym_ctrl_while = 368, + sym_ctrl_do = 369, + sym_ctrl_do_parenthesized = 370, + sym_ctrl_if = 371, + sym_ctrl_if_parenthesized = 372, + sym_ctrl_match = 373, + sym_match_arm = 374, + sym_default_arm = 375, + sym_match_pattern = 376, + sym__match_pattern = 377, + sym_match_guard = 378, + sym__match_pattern_expression = 379, + sym__match_pattern_value = 380, + sym__match_pattern_list = 381, + sym__match_pattern_rest = 382, + sym__match_pattern_record = 383, + sym__match_pattern_record_variable = 384, + sym_ctrl_try = 385, + sym_ctrl_try_parenthesized = 386, + sym_ctrl_return = 387, + sym_pipe_element = 388, + sym_pipe_element_parenthesized = 389, + sym_stmt_source = 390, + sym_stmt_register = 391, + sym__stmt_hide = 392, + sym_hide_mod = 393, + sym_hide_env = 394, + sym__stmt_overlay = 395, + sym_overlay_list = 396, + sym_overlay_hide = 397, + sym_overlay_new = 398, + sym_overlay_use = 399, + sym_scope_pattern = 400, + sym_wild_card = 401, + sym_command_list = 402, + sym_block = 403, + sym__blosure = 404, + sym__where_predicate_lhs = 405, + sym_where_command = 406, + sym_where_command_parenthesized = 407, + sym__binary_predicate = 408, + sym__binary_predicate_parenthesized = 409, + sym__predicate = 410, + sym__expression = 411, + sym__expression_parenthesized = 412, + sym_expr_unary = 413, + sym__expr_unary_minus = 414, + sym_expr_binary = 415, + sym_expr_binary_parenthesized = 416, + sym__expr_binary_expression = 417, + sym__expr_binary_expression_parenthesized = 418, + sym_expr_parenthesized = 419, + sym__spread_parenthesized = 420, + sym__expr_parenthesized_immediate = 421, + sym__parenthesized_body = 422, + sym_val_range = 423, + sym__val_range = 424, + sym__val_range_with_end = 425, + sym__immediate_decimal = 426, + sym__value = 427, + sym_val_nothing = 428, + sym_val_bool = 429, + sym__spread_variable = 430, + sym_val_variable = 431, + sym_val_number = 432, + sym__val_number_decimal = 433, + sym__val_number = 434, + sym_val_duration = 435, + sym_val_filesize = 436, + sym_val_binary = 437, + sym_val_string = 438, + sym__raw_str = 439, + sym__str_double_quotes = 440, + sym_val_interpolated = 441, + sym__inter_single_quotes = 442, + sym__inter_double_quotes = 443, + sym_expr_interpolated = 444, + sym_val_list = 445, + sym__spread_list = 446, + sym_list_body = 447, + sym_val_entry = 448, + sym_val_record = 449, + sym__spread_record = 450, + sym_record_body = 451, + sym_record_entry = 452, + sym__record_key = 453, + sym_val_table = 454, + sym_val_closure = 455, + sym_cell_path = 456, + sym_path = 457, + sym_env_var = 458, + sym_command = 459, + sym__command_parenthesized = 460, + sym__cmd_arg = 461, + sym_redirection = 462, + sym__flag = 463, + sym__flags_parenthesized = 464, + sym_short_flag = 465, + sym_long_flag = 466, + sym_unquoted = 467, + sym__unquoted_in_list = 468, + sym__unquoted_in_record = 469, + sym__unquoted_with_expr = 470, + sym__unquoted_in_list_with_expr = 471, + sym__unquoted_in_record_with_expr = 472, + sym__unquoted_anonymous_prefix = 473, + sym_comment = 474, + aux_sym_shebang_repeat1 = 475, + aux_sym_pipeline_repeat1 = 476, + aux_sym_pipeline_parenthesized_repeat1 = 477, + aux_sym__block_body_repeat1 = 478, + aux_sym__block_body_repeat2 = 479, + aux_sym_decl_def_repeat1 = 480, + aux_sym__multiple_types_repeat1 = 481, + aux_sym__multiple_types_repeat2 = 482, + aux_sym_parameter_parens_repeat1 = 483, + aux_sym_parameter_repeat1 = 484, + aux_sym_parameter_repeat2 = 485, + aux_sym_collection_type_repeat1 = 486, + aux_sym_ctrl_do_repeat1 = 487, + aux_sym_ctrl_do_repeat2 = 488, + aux_sym_ctrl_do_parenthesized_repeat1 = 489, + aux_sym_ctrl_do_parenthesized_repeat2 = 490, + aux_sym_ctrl_do_parenthesized_repeat3 = 491, + aux_sym_ctrl_match_repeat1 = 492, + aux_sym_match_pattern_repeat1 = 493, + aux_sym__match_pattern_list_repeat1 = 494, + aux_sym__match_pattern_record_repeat1 = 495, + aux_sym_pipe_element_repeat1 = 496, + aux_sym_pipe_element_repeat2 = 497, + aux_sym_pipe_element_parenthesized_repeat1 = 498, + aux_sym_command_list_repeat1 = 499, + aux_sym__parenthesized_body_repeat1 = 500, + aux_sym__parenthesized_body_repeat2 = 501, + aux_sym_val_binary_repeat1 = 502, + aux_sym__str_double_quotes_repeat1 = 503, + aux_sym__inter_single_quotes_repeat1 = 504, + aux_sym__inter_double_quotes_repeat1 = 505, + aux_sym_list_body_repeat1 = 506, + aux_sym_record_body_repeat1 = 507, + aux_sym_val_table_repeat1 = 508, + aux_sym_cell_path_repeat1 = 509, + aux_sym_command_repeat1 = 510, + aux_sym__command_parenthesized_repeat1 = 511, + aux_sym__unquoted_with_expr_repeat1 = 512, + aux_sym__unquoted_in_list_with_expr_repeat1 = 513, + aux_sym__unquoted_in_record_with_expr_repeat1 = 514, + anon_alias_sym__head = 515, + anon_alias_sym__prefix = 516, + anon_alias_sym__unit = 517, + anon_alias_sym_quoted = 518, }; static const char * const ts_symbol_names[] = { @@ -612,13 +597,38 @@ static const char * const ts_symbol_names[] = { [aux_sym_cmd_identifier_token34] = "cmd_identifier_token34", [aux_sym_cmd_identifier_token35] = "cmd_identifier_token35", [aux_sym_cmd_identifier_token36] = "cmd_identifier_token36", - [anon_sym_true] = "true", [aux_sym_cmd_identifier_token37] = "cmd_identifier_token37", - [anon_sym_false] = "false", - [anon_sym_null] = "null", [aux_sym_cmd_identifier_token38] = "cmd_identifier_token38", [aux_sym_cmd_identifier_token39] = "cmd_identifier_token39", [aux_sym_cmd_identifier_token40] = "cmd_identifier_token40", + [anon_sym_STAR_STAR] = "**", + [anon_sym_PLUS_PLUS] = "++", + [anon_sym_STAR] = "*", + [anon_sym_SLASH] = "/", + [anon_sym_mod] = "mod", + [anon_sym_SLASH_SLASH] = "//", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_bit_DASHshl] = "bit-shl", + [anon_sym_bit_DASHshr] = "bit-shr", + [anon_sym_EQ_TILDE] = "=~", + [anon_sym_BANG_TILDE] = "!~", + [anon_sym_bit_DASHand] = "bit-and", + [anon_sym_bit_DASHxor] = "bit-xor", + [anon_sym_bit_DASHor] = "bit-or", + [anon_sym_and] = "and", + [anon_sym_xor] = "xor", + [anon_sym_or] = "or", + [anon_sym_in] = "in", + [anon_sym_not_DASHin] = "not-in", + [anon_sym_starts_DASHwith] = "starts-with", + [anon_sym_ends_DASHwith] = "ends-with", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_LT] = "<", + [anon_sym_LT_EQ] = "<=", + [anon_sym_GT] = ">", + [anon_sym_GT_EQ] = ">=", [aux_sym_cmd_identifier_token41] = "cmd_identifier_token41", [sym_long_flag_identifier] = "long_flag_identifier", [sym__newline] = "_newline", @@ -680,18 +690,17 @@ static const char * const ts_symbol_names[] = { [anon_sym_var_DASHwith_DASHopt_DASHtype] = "var-with-opt-type", [anon_sym_record] = "record", [anon_sym_list] = "list", - [anon_sym_LT] = "<", - [anon_sym_GT] = ">", + [anon_sym_GT2] = ">", [anon_sym_AT] = "@", [anon_sym_DOT_DOT_DOT] = "...", [anon_sym_QMARK] = "\?", [anon_sym_DASH_DASH] = "--", - [anon_sym_DASH] = "-", + [anon_sym_DASH2] = "-", [sym_param_short_flag_identifier] = "param_short_flag_identifier", [anon_sym_break] = "break", [anon_sym_continue] = "continue", [anon_sym_for] = "for", - [anon_sym_in] = "in", + [anon_sym_in2] = "in", [anon_sym_loop] = "loop", [anon_sym_make] = "make", [anon_sym_while] = "while", @@ -716,80 +725,35 @@ static const char * const ts_symbol_names[] = { [anon_sym_overlay] = "overlay", [anon_sym_new] = "new", [anon_sym_as] = "as", - [sym_wild_card] = "wild_card", + [anon_sym_STAR2] = "*", [anon_sym_QMARK2] = "\?", [anon_sym_where] = "where", - [anon_sym_and] = "and", - [anon_sym_xor] = "xor", - [anon_sym_or] = "or", - [anon_sym_not_DASHin] = "not-in", - [anon_sym_starts_DASHwith] = "starts-with", - [anon_sym_ends_DASHwith] = "ends-with", - [anon_sym_EQ_EQ] = "==", - [anon_sym_BANG_EQ] = "!=", + [anon_sym_and2] = "and", + [anon_sym_xor2] = "xor", + [anon_sym_or2] = "or", + [anon_sym_not_DASHin2] = "not-in", + [anon_sym_starts_DASHwith2] = "starts-with", + [anon_sym_ends_DASHwith2] = "ends-with", + [anon_sym_EQ_EQ2] = "==", + [anon_sym_BANG_EQ2] = "!=", [anon_sym_LT2] = "<", - [anon_sym_LT_EQ] = "<=", - [anon_sym_GT_EQ] = ">=", - [anon_sym_EQ_TILDE] = "=~", - [anon_sym_BANG_TILDE] = "!~", + [anon_sym_LT_EQ2] = "<=", + [anon_sym_GT_EQ2] = ">=", + [anon_sym_EQ_TILDE2] = "=~", + [anon_sym_BANG_TILDE2] = "!~", [aux_sym_expr_unary_token1] = "not", [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] = "mod", - [aux_sym_expr_binary_token6] = "//", - [aux_sym_expr_binary_token7] = "+", - [aux_sym_expr_binary_token8] = "-", - [aux_sym_expr_binary_token9] = "bit-shl", - [aux_sym_expr_binary_token10] = "bit-shr", - [aux_sym_expr_binary_token11] = "=~", - [aux_sym_expr_binary_token12] = "!~", - [aux_sym_expr_binary_token13] = "bit-and", - [aux_sym_expr_binary_token14] = "bit-xor", - [aux_sym_expr_binary_token15] = "bit-or", - [aux_sym_expr_binary_token16] = "and", - [aux_sym_expr_binary_token17] = "xor", - [aux_sym_expr_binary_token18] = "or", - [aux_sym_expr_binary_token19] = "in", - [aux_sym_expr_binary_token20] = "not-in", - [aux_sym_expr_binary_token21] = "starts-with", - [aux_sym_expr_binary_token22] = "ends-with", - [aux_sym_expr_binary_token23] = "==", - [aux_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] = "mod", - [aux_sym_expr_binary_parenthesized_token6] = "//", - [aux_sym_expr_binary_parenthesized_token7] = "+", - [aux_sym_expr_binary_parenthesized_token8] = "-", - [aux_sym_expr_binary_parenthesized_token9] = "bit-shl", - [aux_sym_expr_binary_parenthesized_token10] = "bit-shr", - [aux_sym_expr_binary_parenthesized_token11] = "=~", - [aux_sym_expr_binary_parenthesized_token12] = "!~", - [aux_sym_expr_binary_parenthesized_token13] = "bit-and", - [aux_sym_expr_binary_parenthesized_token14] = "bit-xor", - [aux_sym_expr_binary_parenthesized_token15] = "bit-or", - [aux_sym_expr_binary_parenthesized_token16] = "and", - [aux_sym_expr_binary_parenthesized_token17] = "xor", - [aux_sym_expr_binary_parenthesized_token18] = "or", - [aux_sym_expr_binary_parenthesized_token19] = "in", - [aux_sym_expr_binary_parenthesized_token20] = "not-in", - [aux_sym_expr_binary_parenthesized_token21] = "starts-with", - [aux_sym_expr_binary_parenthesized_token22] = "ends-with", - [aux_sym_expr_binary_parenthesized_token23] = "==", - [aux_sym_expr_binary_parenthesized_token24] = "!=", - [aux_sym_expr_binary_parenthesized_token25] = "<", - [aux_sym_expr_binary_parenthesized_token26] = "<=", - [aux_sym_expr_binary_parenthesized_token27] = ">", - [aux_sym_expr_binary_parenthesized_token28] = ">=", + [anon_sym_STAR_STAR2] = "**", + [anon_sym_PLUS_PLUS2] = "++", + [anon_sym_SLASH2] = "/", + [anon_sym_mod2] = "mod", + [anon_sym_SLASH_SLASH2] = "//", + [anon_sym_PLUS2] = "+", + [anon_sym_bit_DASHshl2] = "bit-shl", + [anon_sym_bit_DASHshr2] = "bit-shr", + [anon_sym_bit_DASHand2] = "bit-and", + [anon_sym_bit_DASHxor2] = "bit-xor", + [anon_sym_bit_DASHor2] = "bit-or", [anon_sym_DOT_DOT_DOT_LPAREN] = "...(", [anon_sym_DOT_DOT2] = "..", [anon_sym_DOT] = ".", @@ -802,7 +766,10 @@ static const char * const ts_symbol_names[] = { [aux_sym__immediate_decimal_token3] = "_immediate_decimal_token3", [aux_sym__immediate_decimal_token4] = "_immediate_decimal_token4", [aux_sym__immediate_decimal_token5] = "_immediate_decimal_token5", + [anon_sym_null] = "null", [anon_sym_RPAREN2] = ")", + [anon_sym_true] = "true", + [anon_sym_false] = "false", [anon_sym_DOT_DOT_DOT_DOLLAR] = "...$", [anon_sym_nu] = "nu", [anon_sym_env] = "env", @@ -813,6 +780,9 @@ static const char * const ts_symbol_names[] = { [aux_sym__val_number_token1] = "_val_number_token1", [aux_sym__val_number_token2] = "_val_number_token2", [aux_sym__val_number_token3] = "_val_number_token3", + [aux_sym__val_number_token4] = "_val_number_token4", + [aux_sym__val_number_token5] = "_val_number_token5", + [aux_sym__val_number_token6] = "_val_number_token6", [anon_sym_0b] = "0b", [sym_filesize_unit] = "filesize_unit", [sym_duration_unit] = "duration_unit", @@ -837,7 +807,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_DOT_DOT_DOT_LBRACE] = "...{", [sym__entry_separator] = "_entry_separator", [aux_sym_record_entry_token1] = ":", - [anon_sym_PLUS] = "+", [aux_sym__record_key_token1] = "_record_key_token1", [sym__table_head_separator] = ";", [aux_sym_path_token1] = "path_token1", @@ -977,6 +946,7 @@ static const char * const ts_symbol_names[] = { [sym_overlay_new] = "overlay_new", [sym_overlay_use] = "overlay_use", [sym_scope_pattern] = "scope_pattern", + [sym_wild_card] = "wild_card", [sym_command_list] = "command_list", [sym_block] = "block", [sym__blosure] = "_blosure", @@ -1149,13 +1119,38 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_cmd_identifier_token34] = aux_sym_cmd_identifier_token34, [aux_sym_cmd_identifier_token35] = aux_sym_cmd_identifier_token35, [aux_sym_cmd_identifier_token36] = aux_sym_cmd_identifier_token36, - [anon_sym_true] = anon_sym_true, [aux_sym_cmd_identifier_token37] = aux_sym_cmd_identifier_token37, - [anon_sym_false] = anon_sym_false, - [anon_sym_null] = anon_sym_null, [aux_sym_cmd_identifier_token38] = aux_sym_cmd_identifier_token38, [aux_sym_cmd_identifier_token39] = aux_sym_cmd_identifier_token39, [aux_sym_cmd_identifier_token40] = aux_sym_cmd_identifier_token40, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_mod] = anon_sym_mod, + [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_bit_DASHshl] = anon_sym_bit_DASHshl, + [anon_sym_bit_DASHshr] = anon_sym_bit_DASHshr, + [anon_sym_EQ_TILDE] = anon_sym_EQ_TILDE, + [anon_sym_BANG_TILDE] = anon_sym_BANG_TILDE, + [anon_sym_bit_DASHand] = anon_sym_bit_DASHand, + [anon_sym_bit_DASHxor] = anon_sym_bit_DASHxor, + [anon_sym_bit_DASHor] = anon_sym_bit_DASHor, + [anon_sym_and] = anon_sym_and, + [anon_sym_xor] = anon_sym_xor, + [anon_sym_or] = anon_sym_or, + [anon_sym_in] = anon_sym_in, + [anon_sym_not_DASHin] = anon_sym_not_DASHin, + [anon_sym_starts_DASHwith] = anon_sym_starts_DASHwith, + [anon_sym_ends_DASHwith] = anon_sym_ends_DASHwith, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, [aux_sym_cmd_identifier_token41] = aux_sym_cmd_identifier_token41, [sym_long_flag_identifier] = sym_long_flag_identifier, [sym__newline] = sym__newline, @@ -1217,18 +1212,17 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_var_DASHwith_DASHopt_DASHtype] = anon_sym_var_DASHwith_DASHopt_DASHtype, [anon_sym_record] = anon_sym_record, [anon_sym_list] = anon_sym_list, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_GT] = anon_sym_GT, + [anon_sym_GT2] = anon_sym_GT, [anon_sym_AT] = anon_sym_AT, [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, [anon_sym_QMARK] = anon_sym_QMARK, [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_DASH2] = anon_sym_DASH, [sym_param_short_flag_identifier] = sym_param_short_flag_identifier, [anon_sym_break] = anon_sym_break, [anon_sym_continue] = anon_sym_continue, [anon_sym_for] = anon_sym_for, - [anon_sym_in] = anon_sym_in, + [anon_sym_in2] = anon_sym_in, [anon_sym_loop] = anon_sym_loop, [anon_sym_make] = anon_sym_make, [anon_sym_while] = anon_sym_while, @@ -1253,80 +1247,35 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_overlay] = anon_sym_overlay, [anon_sym_new] = anon_sym_new, [anon_sym_as] = anon_sym_as, - [sym_wild_card] = sym_wild_card, + [anon_sym_STAR2] = anon_sym_STAR, [anon_sym_QMARK2] = anon_sym_QMARK, [anon_sym_where] = anon_sym_where, - [anon_sym_and] = anon_sym_and, - [anon_sym_xor] = anon_sym_xor, - [anon_sym_or] = anon_sym_or, - [anon_sym_not_DASHin] = anon_sym_not_DASHin, - [anon_sym_starts_DASHwith] = anon_sym_starts_DASHwith, - [anon_sym_ends_DASHwith] = anon_sym_ends_DASHwith, - [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_and2] = anon_sym_and, + [anon_sym_xor2] = anon_sym_xor, + [anon_sym_or2] = anon_sym_or, + [anon_sym_not_DASHin2] = anon_sym_not_DASHin, + [anon_sym_starts_DASHwith2] = anon_sym_starts_DASHwith, + [anon_sym_ends_DASHwith2] = anon_sym_ends_DASHwith, + [anon_sym_EQ_EQ2] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ2] = anon_sym_BANG_EQ, [anon_sym_LT2] = anon_sym_LT, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_EQ_TILDE] = anon_sym_EQ_TILDE, - [anon_sym_BANG_TILDE] = anon_sym_BANG_TILDE, + [anon_sym_LT_EQ2] = anon_sym_LT_EQ, + [anon_sym_GT_EQ2] = anon_sym_GT_EQ, + [anon_sym_EQ_TILDE2] = anon_sym_EQ_TILDE, + [anon_sym_BANG_TILDE2] = anon_sym_BANG_TILDE, [aux_sym_expr_unary_token1] = aux_sym_expr_unary_token1, [anon_sym_LPAREN2] = anon_sym_LPAREN, - [aux_sym_expr_binary_token1] = aux_sym_expr_binary_token1, - [aux_sym_expr_binary_token2] = aux_sym_expr_binary_token2, - [aux_sym_expr_binary_token3] = aux_sym_expr_binary_token3, - [aux_sym_expr_binary_token4] = aux_sym_expr_binary_token4, - [aux_sym_expr_binary_token5] = aux_sym_expr_binary_token5, - [aux_sym_expr_binary_token6] = aux_sym_expr_binary_token6, - [aux_sym_expr_binary_token7] = anon_sym_PLUS, - [aux_sym_expr_binary_token8] = anon_sym_DASH, - [aux_sym_expr_binary_token9] = aux_sym_expr_binary_token9, - [aux_sym_expr_binary_token10] = aux_sym_expr_binary_token10, - [aux_sym_expr_binary_token11] = anon_sym_EQ_TILDE, - [aux_sym_expr_binary_token12] = anon_sym_BANG_TILDE, - [aux_sym_expr_binary_token13] = aux_sym_expr_binary_token13, - [aux_sym_expr_binary_token14] = aux_sym_expr_binary_token14, - [aux_sym_expr_binary_token15] = aux_sym_expr_binary_token15, - [aux_sym_expr_binary_token16] = anon_sym_and, - [aux_sym_expr_binary_token17] = anon_sym_xor, - [aux_sym_expr_binary_token18] = anon_sym_or, - [aux_sym_expr_binary_token19] = anon_sym_in, - [aux_sym_expr_binary_token20] = anon_sym_not_DASHin, - [aux_sym_expr_binary_token21] = anon_sym_starts_DASHwith, - [aux_sym_expr_binary_token22] = anon_sym_ends_DASHwith, - [aux_sym_expr_binary_token23] = anon_sym_EQ_EQ, - [aux_sym_expr_binary_token24] = anon_sym_BANG_EQ, - [aux_sym_expr_binary_token25] = anon_sym_LT, - [aux_sym_expr_binary_token26] = anon_sym_LT_EQ, - [aux_sym_expr_binary_token27] = anon_sym_GT, - [aux_sym_expr_binary_token28] = anon_sym_GT_EQ, - [aux_sym_expr_binary_parenthesized_token1] = aux_sym_expr_binary_token1, - [aux_sym_expr_binary_parenthesized_token2] = aux_sym_expr_binary_token2, - [aux_sym_expr_binary_parenthesized_token3] = aux_sym_expr_binary_token3, - [aux_sym_expr_binary_parenthesized_token4] = aux_sym_expr_binary_token4, - [aux_sym_expr_binary_parenthesized_token5] = aux_sym_expr_binary_token5, - [aux_sym_expr_binary_parenthesized_token6] = aux_sym_expr_binary_token6, - [aux_sym_expr_binary_parenthesized_token7] = anon_sym_PLUS, - [aux_sym_expr_binary_parenthesized_token8] = anon_sym_DASH, - [aux_sym_expr_binary_parenthesized_token9] = aux_sym_expr_binary_token9, - [aux_sym_expr_binary_parenthesized_token10] = aux_sym_expr_binary_token10, - [aux_sym_expr_binary_parenthesized_token11] = anon_sym_EQ_TILDE, - [aux_sym_expr_binary_parenthesized_token12] = anon_sym_BANG_TILDE, - [aux_sym_expr_binary_parenthesized_token13] = aux_sym_expr_binary_token13, - [aux_sym_expr_binary_parenthesized_token14] = aux_sym_expr_binary_token14, - [aux_sym_expr_binary_parenthesized_token15] = aux_sym_expr_binary_token15, - [aux_sym_expr_binary_parenthesized_token16] = anon_sym_and, - [aux_sym_expr_binary_parenthesized_token17] = anon_sym_xor, - [aux_sym_expr_binary_parenthesized_token18] = anon_sym_or, - [aux_sym_expr_binary_parenthesized_token19] = anon_sym_in, - [aux_sym_expr_binary_parenthesized_token20] = anon_sym_not_DASHin, - [aux_sym_expr_binary_parenthesized_token21] = anon_sym_starts_DASHwith, - [aux_sym_expr_binary_parenthesized_token22] = anon_sym_ends_DASHwith, - [aux_sym_expr_binary_parenthesized_token23] = anon_sym_EQ_EQ, - [aux_sym_expr_binary_parenthesized_token24] = anon_sym_BANG_EQ, - [aux_sym_expr_binary_parenthesized_token25] = anon_sym_LT, - [aux_sym_expr_binary_parenthesized_token26] = anon_sym_LT_EQ, - [aux_sym_expr_binary_parenthesized_token27] = anon_sym_GT, - [aux_sym_expr_binary_parenthesized_token28] = anon_sym_GT_EQ, + [anon_sym_STAR_STAR2] = anon_sym_STAR_STAR, + [anon_sym_PLUS_PLUS2] = anon_sym_PLUS_PLUS, + [anon_sym_SLASH2] = anon_sym_SLASH, + [anon_sym_mod2] = anon_sym_mod, + [anon_sym_SLASH_SLASH2] = anon_sym_SLASH_SLASH, + [anon_sym_PLUS2] = anon_sym_PLUS, + [anon_sym_bit_DASHshl2] = anon_sym_bit_DASHshl, + [anon_sym_bit_DASHshr2] = anon_sym_bit_DASHshr, + [anon_sym_bit_DASHand2] = anon_sym_bit_DASHand, + [anon_sym_bit_DASHxor2] = anon_sym_bit_DASHxor, + [anon_sym_bit_DASHor2] = anon_sym_bit_DASHor, [anon_sym_DOT_DOT_DOT_LPAREN] = anon_sym_DOT_DOT_DOT_LPAREN, [anon_sym_DOT_DOT2] = anon_sym_DOT_DOT, [anon_sym_DOT] = anon_sym_DOT, @@ -1339,7 +1288,10 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__immediate_decimal_token3] = aux_sym__immediate_decimal_token3, [aux_sym__immediate_decimal_token4] = aux_sym__immediate_decimal_token4, [aux_sym__immediate_decimal_token5] = aux_sym__immediate_decimal_token5, + [anon_sym_null] = anon_sym_null, [anon_sym_RPAREN2] = anon_sym_RPAREN, + [anon_sym_true] = anon_sym_true, + [anon_sym_false] = anon_sym_false, [anon_sym_DOT_DOT_DOT_DOLLAR] = anon_sym_DOT_DOT_DOT_DOLLAR, [anon_sym_nu] = anon_sym_nu, [anon_sym_env] = anon_sym_env, @@ -1350,6 +1302,9 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__val_number_token1] = aux_sym__val_number_token1, [aux_sym__val_number_token2] = aux_sym__val_number_token2, [aux_sym__val_number_token3] = aux_sym__val_number_token3, + [aux_sym__val_number_token4] = aux_sym__val_number_token4, + [aux_sym__val_number_token5] = aux_sym__val_number_token5, + [aux_sym__val_number_token6] = aux_sym__val_number_token6, [anon_sym_0b] = anon_sym_0b, [sym_filesize_unit] = sym_filesize_unit, [sym_duration_unit] = sym_duration_unit, @@ -1374,7 +1329,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DOT_DOT_DOT_LBRACE] = anon_sym_DOT_DOT_DOT_LBRACE, [sym__entry_separator] = sym__entry_separator, [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] = anon_sym_SEMI, [aux_sym_path_token1] = aux_sym_path_token1, @@ -1514,6 +1468,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_overlay_new] = sym_overlay_new, [sym_overlay_use] = sym_overlay_use, [sym_scope_pattern] = sym_scope_pattern, + [sym_wild_card] = sym_wild_card, [sym_command_list] = sym_command_list, [sym_block] = sym_block, [sym__blosure] = sym__blosure, @@ -1842,32 +1797,132 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [anon_sym_true] = { - .visible = true, + [aux_sym_cmd_identifier_token37] = { + .visible = false, .named = false, }, - [aux_sym_cmd_identifier_token37] = { + [aux_sym_cmd_identifier_token38] = { .visible = false, .named = false, }, - [anon_sym_false] = { + [aux_sym_cmd_identifier_token39] = { + .visible = false, + .named = false, + }, + [aux_sym_cmd_identifier_token40] = { + .visible = false, + .named = false, + }, + [anon_sym_STAR_STAR] = { .visible = true, .named = false, }, - [anon_sym_null] = { + [anon_sym_PLUS_PLUS] = { .visible = true, .named = false, }, - [aux_sym_cmd_identifier_token38] = { - .visible = false, + [anon_sym_STAR] = { + .visible = true, .named = false, }, - [aux_sym_cmd_identifier_token39] = { - .visible = false, + [anon_sym_SLASH] = { + .visible = true, .named = false, }, - [aux_sym_cmd_identifier_token40] = { - .visible = false, + [anon_sym_mod] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_bit_DASHshl] = { + .visible = true, + .named = false, + }, + [anon_sym_bit_DASHshr] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_bit_DASHand] = { + .visible = true, + .named = false, + }, + [anon_sym_bit_DASHxor] = { + .visible = true, + .named = false, + }, + [anon_sym_bit_DASHor] = { + .visible = true, + .named = false, + }, + [anon_sym_and] = { + .visible = true, + .named = false, + }, + [anon_sym_xor] = { + .visible = true, + .named = false, + }, + [anon_sym_or] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_not_DASHin] = { + .visible = true, + .named = false, + }, + [anon_sym_starts_DASHwith] = { + .visible = true, + .named = false, + }, + [anon_sym_ends_DASHwith] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, .named = false, }, [aux_sym_cmd_identifier_token41] = { @@ -2114,11 +2169,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { + [anon_sym_GT2] = { .visible = true, .named = false, }, @@ -2138,7 +2189,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DASH] = { + [anon_sym_DASH2] = { .visible = true, .named = false, }, @@ -2158,7 +2209,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_in] = { + [anon_sym_in2] = { .visible = true, .named = false, }, @@ -2258,9 +2309,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_wild_card] = { + [anon_sym_STAR2] = { .visible = true, - .named = true, + .named = false, }, [anon_sym_QMARK2] = { .visible = true, @@ -2270,35 +2321,35 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_and] = { + [anon_sym_and2] = { .visible = true, .named = false, }, - [anon_sym_xor] = { + [anon_sym_xor2] = { .visible = true, .named = false, }, - [anon_sym_or] = { + [anon_sym_or2] = { .visible = true, .named = false, }, - [anon_sym_not_DASHin] = { + [anon_sym_not_DASHin2] = { .visible = true, .named = false, }, - [anon_sym_starts_DASHwith] = { + [anon_sym_starts_DASHwith2] = { .visible = true, .named = false, }, - [anon_sym_ends_DASHwith] = { + [anon_sym_ends_DASHwith2] = { .visible = true, .named = false, }, - [anon_sym_EQ_EQ] = { + [anon_sym_EQ_EQ2] = { .visible = true, .named = false, }, - [anon_sym_BANG_EQ] = { + [anon_sym_BANG_EQ2] = { .visible = true, .named = false, }, @@ -2306,19 +2357,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LT_EQ] = { + [anon_sym_LT_EQ2] = { .visible = true, .named = false, }, - [anon_sym_GT_EQ] = { + [anon_sym_GT_EQ2] = { .visible = true, .named = false, }, - [anon_sym_EQ_TILDE] = { + [anon_sym_EQ_TILDE2] = { .visible = true, .named = false, }, - [anon_sym_BANG_TILDE] = { + [anon_sym_BANG_TILDE2] = { .visible = true, .named = false, }, @@ -2330,227 +2381,47 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_expr_binary_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token3] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token4] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token5] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token6] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token7] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token8] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token9] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token10] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token11] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token12] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token13] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token14] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token15] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token16] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token17] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token18] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token19] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token20] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token21] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token22] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token23] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token24] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token25] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token26] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token27] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_token28] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token1] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token2] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token3] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token4] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token5] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token6] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token7] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token8] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token9] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token10] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token11] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token12] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token13] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token14] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token15] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token16] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token17] = { - .visible = true, - .named = false, - }, - [aux_sym_expr_binary_parenthesized_token18] = { + [anon_sym_STAR_STAR2] = { .visible = true, .named = false, }, - [aux_sym_expr_binary_parenthesized_token19] = { + [anon_sym_PLUS_PLUS2] = { .visible = true, .named = false, }, - [aux_sym_expr_binary_parenthesized_token20] = { + [anon_sym_SLASH2] = { .visible = true, .named = false, }, - [aux_sym_expr_binary_parenthesized_token21] = { + [anon_sym_mod2] = { .visible = true, .named = false, }, - [aux_sym_expr_binary_parenthesized_token22] = { + [anon_sym_SLASH_SLASH2] = { .visible = true, .named = false, }, - [aux_sym_expr_binary_parenthesized_token23] = { + [anon_sym_PLUS2] = { .visible = true, .named = false, }, - [aux_sym_expr_binary_parenthesized_token24] = { + [anon_sym_bit_DASHshl2] = { .visible = true, .named = false, }, - [aux_sym_expr_binary_parenthesized_token25] = { + [anon_sym_bit_DASHshr2] = { .visible = true, .named = false, }, - [aux_sym_expr_binary_parenthesized_token26] = { + [anon_sym_bit_DASHand2] = { .visible = true, .named = false, }, - [aux_sym_expr_binary_parenthesized_token27] = { + [anon_sym_bit_DASHxor2] = { .visible = true, .named = false, }, - [aux_sym_expr_binary_parenthesized_token28] = { + [anon_sym_bit_DASHor2] = { .visible = true, .named = false, }, @@ -2602,10 +2473,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [anon_sym_null] = { + .visible = true, + .named = false, + }, [anon_sym_RPAREN2] = { .visible = true, .named = false, }, + [anon_sym_true] = { + .visible = true, + .named = false, + }, + [anon_sym_false] = { + .visible = true, + .named = false, + }, [anon_sym_DOT_DOT_DOT_DOLLAR] = { .visible = true, .named = false, @@ -2646,6 +2529,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__val_number_token4] = { + .visible = false, + .named = false, + }, + [aux_sym__val_number_token5] = { + .visible = false, + .named = false, + }, + [aux_sym__val_number_token6] = { + .visible = false, + .named = false, + }, [anon_sym_0b] = { .visible = true, .named = false, @@ -2742,10 +2637,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, [aux_sym__record_key_token1] = { .visible = false, .named = false, @@ -3302,6 +3193,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_wild_card] = { + .visible = true, + .named = true, + }, [sym_command_list] = { .visible = true, .named = true, @@ -3967,9 +3862,9 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [43] = {.index = 72, .length = 1}, [44] = {.index = 73, .length = 4}, [45] = {.index = 77, .length = 4}, - [46] = {.index = 81, .length = 1}, - [47] = {.index = 82, .length = 3}, - [48] = {.index = 85, .length = 2}, + [46] = {.index = 81, .length = 3}, + [47] = {.index = 84, .length = 2}, + [48] = {.index = 86, .length = 1}, [49] = {.index = 87, .length = 1}, [51] = {.index = 88, .length = 1}, [52] = {.index = 89, .length = 2}, @@ -4315,14 +4210,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, [81] = - {field_wildcard, 0}, - [82] = {field_command, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [85] = + [84] = {field_import_pattern, 2}, {field_module, 1}, + [86] = + {field_wildcard, 0}, [87] = {field_command_list, 0}, [88] = @@ -5222,163 +5117,163 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, - [5] = 5, + [4] = 4, + [5] = 4, [6] = 3, - [7] = 5, + [7] = 4, [8] = 3, - [9] = 5, - [10] = 3, - [11] = 5, - [12] = 3, - [13] = 3, - [14] = 3, - [15] = 3, - [16] = 3, - [17] = 3, - [18] = 3, - [19] = 3, - [20] = 3, - [21] = 3, - [22] = 3, - [23] = 3, - [24] = 3, - [25] = 3, - [26] = 26, - [27] = 26, - [28] = 26, - [29] = 26, - [30] = 26, - [31] = 26, - [32] = 26, - [33] = 26, - [34] = 26, - [35] = 26, - [36] = 26, - [37] = 26, - [38] = 26, - [39] = 26, - [40] = 26, + [9] = 4, + [10] = 4, + [11] = 4, + [12] = 4, + [13] = 4, + [14] = 4, + [15] = 4, + [16] = 4, + [17] = 4, + [18] = 4, + [19] = 4, + [20] = 4, + [21] = 4, + [22] = 4, + [23] = 23, + [24] = 23, + [25] = 23, + [26] = 23, + [27] = 23, + [28] = 23, + [29] = 23, + [30] = 23, + [31] = 23, + [32] = 23, + [33] = 23, + [34] = 23, + [35] = 23, + [36] = 23, + [37] = 37, + [38] = 37, + [39] = 37, + [40] = 37, [41] = 41, - [42] = 41, + [42] = 42, [43] = 41, - [44] = 41, - [45] = 45, - [46] = 45, + [44] = 42, + [45] = 42, + [46] = 42, [47] = 47, - [48] = 45, - [49] = 45, + [48] = 47, + [49] = 47, [50] = 47, - [51] = 51, - [52] = 51, - [53] = 51, - [54] = 51, - [55] = 51, - [56] = 51, - [57] = 51, - [58] = 51, - [59] = 51, - [60] = 51, - [61] = 51, - [62] = 51, - [63] = 51, - [64] = 51, - [65] = 51, - [66] = 51, - [67] = 51, - [68] = 51, - [69] = 51, - [70] = 51, - [71] = 51, - [72] = 51, - [73] = 51, - [74] = 74, + [51] = 47, + [52] = 47, + [53] = 47, + [54] = 47, + [55] = 47, + [56] = 47, + [57] = 47, + [58] = 47, + [59] = 47, + [60] = 47, + [61] = 47, + [62] = 47, + [63] = 47, + [64] = 47, + [65] = 47, + [66] = 47, + [67] = 67, + [68] = 68, + [69] = 67, + [70] = 70, + [71] = 68, + [72] = 67, + [73] = 73, + [74] = 68, [75] = 75, - [76] = 76, - [77] = 74, - [78] = 76, - [79] = 76, - [80] = 74, - [81] = 76, - [82] = 76, - [83] = 83, - [84] = 76, - [85] = 76, - [86] = 74, - [87] = 74, - [88] = 76, - [89] = 76, - [90] = 76, - [91] = 74, - [92] = 76, - [93] = 93, - [94] = 76, - [95] = 74, - [96] = 74, - [97] = 97, - [98] = 76, - [99] = 83, - [100] = 76, - [101] = 74, - [102] = 76, - [103] = 97, - [104] = 74, - [105] = 97, - [106] = 76, - [107] = 97, - [108] = 97, - [109] = 74, - [110] = 76, - [111] = 76, - [112] = 76, - [113] = 74, - [114] = 76, - [115] = 76, - [116] = 116, - [117] = 116, - [118] = 118, - [119] = 119, - [120] = 120, - [121] = 75, - [122] = 116, - [123] = 120, - [124] = 116, - [125] = 125, - [126] = 119, - [127] = 120, - [128] = 116, - [129] = 119, - [130] = 120, - [131] = 116, - [132] = 119, - [133] = 120, - [134] = 116, - [135] = 119, - [136] = 116, - [137] = 119, - [138] = 116, - [139] = 119, - [140] = 116, - [141] = 119, - [142] = 116, - [143] = 119, - [144] = 119, - [145] = 119, - [146] = 116, - [147] = 119, - [148] = 116, - [149] = 119, - [150] = 116, - [151] = 119, - [152] = 116, - [153] = 119, - [154] = 125, + [76] = 68, + [77] = 68, + [78] = 67, + [79] = 75, + [80] = 67, + [81] = 67, + [82] = 67, + [83] = 67, + [84] = 67, + [85] = 68, + [86] = 67, + [87] = 75, + [88] = 67, + [89] = 67, + [90] = 67, + [91] = 75, + [92] = 67, + [93] = 67, + [94] = 67, + [95] = 67, + [96] = 67, + [97] = 67, + [98] = 67, + [99] = 68, + [100] = 75, + [101] = 70, + [102] = 67, + [103] = 68, + [104] = 68, + [105] = 105, + [106] = 106, + [107] = 105, + [108] = 108, + [109] = 109, + [110] = 110, + [111] = 108, + [112] = 112, + [113] = 105, + [114] = 109, + [115] = 106, + [116] = 108, + [117] = 112, + [118] = 105, + [119] = 106, + [120] = 106, + [121] = 105, + [122] = 106, + [123] = 105, + [124] = 106, + [125] = 105, + [126] = 106, + [127] = 105, + [128] = 106, + [129] = 105, + [130] = 106, + [131] = 105, + [132] = 106, + [133] = 106, + [134] = 105, + [135] = 106, + [136] = 105, + [137] = 106, + [138] = 105, + [139] = 106, + [140] = 105, + [141] = 112, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 142, + [147] = 142, + [148] = 148, + [149] = 148, + [150] = 148, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, [155] = 155, [156] = 156, [157] = 157, - [158] = 155, + [158] = 158, [159] = 159, - [160] = 159, + [160] = 160, [161] = 161, [162] = 162, [163] = 163, @@ -5387,82 +5282,82 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [166] = 166, [167] = 167, [168] = 168, - [169] = 169, + [169] = 166, [170] = 170, [171] = 171, [172] = 172, - [173] = 173, + [173] = 172, [174] = 174, [175] = 175, - [176] = 176, - [177] = 177, + [176] = 168, + [177] = 166, [178] = 178, - [179] = 179, - [180] = 180, + [179] = 172, + [180] = 167, [181] = 181, - [182] = 182, - [183] = 183, - [184] = 184, - [185] = 185, - [186] = 177, - [187] = 180, - [188] = 188, - [189] = 188, - [190] = 183, - [191] = 178, - [192] = 192, - [193] = 193, - [194] = 194, - [195] = 194, + [182] = 175, + [183] = 174, + [184] = 168, + [185] = 172, + [186] = 170, + [187] = 175, + [188] = 178, + [189] = 171, + [190] = 166, + [191] = 175, + [192] = 174, + [193] = 174, + [194] = 168, + [195] = 181, [196] = 196, [197] = 197, [198] = 198, - [199] = 199, - [200] = 200, - [201] = 200, - [202] = 200, - [203] = 197, + [199] = 197, + [200] = 198, + [201] = 198, + [202] = 198, + [203] = 203, [204] = 204, [205] = 205, - [206] = 205, + [206] = 206, [207] = 207, [208] = 208, - [209] = 209, - [210] = 209, - [211] = 211, + [209] = 208, + [210] = 208, + [211] = 207, [212] = 212, [213] = 213, [214] = 214, - [215] = 215, - [216] = 216, + [215] = 213, + [216] = 212, [217] = 217, [218] = 218, [219] = 219, - [220] = 214, - [221] = 218, + [220] = 220, + [221] = 221, [222] = 222, [223] = 223, [224] = 224, - [225] = 225, - [226] = 226, - [227] = 216, + [225] = 204, + [226] = 204, + [227] = 222, [228] = 228, - [229] = 215, - [230] = 230, - [231] = 219, - [232] = 217, - [233] = 233, - [234] = 222, + [229] = 205, + [230] = 224, + [231] = 231, + [232] = 232, + [233] = 232, + [234] = 234, [235] = 235, [236] = 236, [237] = 237, [238] = 238, - [239] = 228, - [240] = 163, - [241] = 226, - [242] = 223, - [243] = 225, - [244] = 230, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 244, [245] = 245, [246] = 246, [247] = 247, @@ -5470,697 +5365,697 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [249] = 249, [250] = 250, [251] = 251, - [252] = 224, + [252] = 252, [253] = 253, - [254] = 250, - [255] = 245, + [254] = 254, + [255] = 255, [256] = 256, - [257] = 164, - [258] = 165, - [259] = 259, - [260] = 260, - [261] = 261, - [262] = 247, - [263] = 238, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 268, - [269] = 269, - [270] = 270, - [271] = 199, - [272] = 272, - [273] = 236, - [274] = 274, - [275] = 275, - [276] = 276, - [277] = 277, - [278] = 278, - [279] = 279, - [280] = 280, - [281] = 281, - [282] = 282, - [283] = 283, - [284] = 284, - [285] = 251, - [286] = 237, - [287] = 163, - [288] = 246, - [289] = 248, - [290] = 249, - [291] = 233, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 199, - [296] = 198, - [297] = 297, - [298] = 235, - [299] = 299, - [300] = 300, - [301] = 164, - [302] = 170, - [303] = 303, + [257] = 234, + [258] = 235, + [259] = 236, + [260] = 237, + [261] = 238, + [262] = 239, + [263] = 240, + [264] = 241, + [265] = 232, + [266] = 242, + [267] = 235, + [268] = 236, + [269] = 237, + [270] = 238, + [271] = 239, + [272] = 240, + [273] = 241, + [274] = 242, + [275] = 243, + [276] = 244, + [277] = 245, + [278] = 246, + [279] = 247, + [280] = 248, + [281] = 249, + [282] = 250, + [283] = 251, + [284] = 252, + [285] = 253, + [286] = 254, + [287] = 255, + [288] = 256, + [289] = 243, + [290] = 244, + [291] = 245, + [292] = 246, + [293] = 247, + [294] = 248, + [295] = 249, + [296] = 250, + [297] = 251, + [298] = 252, + [299] = 253, + [300] = 254, + [301] = 255, + [302] = 256, + [303] = 221, [304] = 304, - [305] = 305, - [306] = 294, - [307] = 171, - [308] = 308, - [309] = 309, - [310] = 247, - [311] = 169, - [312] = 167, + [305] = 223, + [306] = 234, + [307] = 307, + [308] = 206, + [309] = 304, + [310] = 310, + [311] = 311, + [312] = 312, [313] = 313, - [314] = 284, - [315] = 168, - [316] = 165, - [317] = 166, - [318] = 204, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, [319] = 319, [320] = 320, [321] = 321, - [322] = 163, - [323] = 250, + [322] = 322, + [323] = 310, [324] = 324, - [325] = 292, + [325] = 315, [326] = 326, - [327] = 164, - [328] = 165, - [329] = 329, - [330] = 330, - [331] = 331, - [332] = 332, - [333] = 170, - [334] = 163, - [335] = 171, - [336] = 166, - [337] = 169, - [338] = 167, - [339] = 168, - [340] = 174, - [341] = 172, - [342] = 173, - [343] = 308, - [344] = 313, - [345] = 319, - [346] = 320, - [347] = 247, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 247, + [327] = 318, + [328] = 328, + [329] = 318, + [330] = 315, + [331] = 319, + [332] = 315, + [333] = 333, + [334] = 318, + [335] = 335, + [336] = 319, + [337] = 315, + [338] = 318, + [339] = 339, + [340] = 340, + [341] = 322, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 317, + [346] = 346, + [347] = 347, + [348] = 316, + [349] = 324, + [350] = 328, + [351] = 152, [352] = 352, - [353] = 292, + [353] = 353, [354] = 354, - [355] = 250, - [356] = 250, - [357] = 357, + [355] = 355, + [356] = 356, + [357] = 344, [358] = 358, - [359] = 359, + [359] = 343, [360] = 360, - [361] = 354, + [361] = 340, [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 368, + [363] = 347, + [364] = 342, + [365] = 339, + [366] = 346, + [367] = 360, + [368] = 353, [369] = 369, [370] = 370, - [371] = 331, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 380, + [371] = 358, + [372] = 362, + [373] = 354, + [374] = 152, + [375] = 355, + [376] = 153, + [377] = 154, + [378] = 356, + [379] = 352, + [380] = 153, [381] = 381, - [382] = 382, + [382] = 358, [383] = 383, - [384] = 300, + [384] = 384, [385] = 385, - [386] = 324, - [387] = 294, + [386] = 152, + [387] = 387, [388] = 388, [389] = 389, - [390] = 390, - [391] = 362, - [392] = 363, - [393] = 364, - [394] = 365, - [395] = 366, - [396] = 367, - [397] = 348, - [398] = 368, - [399] = 369, - [400] = 370, - [401] = 372, - [402] = 373, - [403] = 374, - [404] = 375, - [405] = 376, - [406] = 378, - [407] = 382, - [408] = 383, - [409] = 385, - [410] = 171, - [411] = 164, - [412] = 165, - [413] = 349, - [414] = 166, - [415] = 169, - [416] = 175, - [417] = 247, - [418] = 292, - [419] = 419, - [420] = 326, - [421] = 294, - [422] = 350, - [423] = 174, - [424] = 352, - [425] = 168, - [426] = 377, - [427] = 167, - [428] = 292, - [429] = 170, - [430] = 430, - [431] = 172, - [432] = 432, - [433] = 433, - [434] = 294, - [435] = 379, - [436] = 380, - [437] = 381, - [438] = 308, - [439] = 173, - [440] = 313, + [390] = 154, + [391] = 155, + [392] = 156, + [393] = 369, + [394] = 356, + [395] = 370, + [396] = 158, + [397] = 159, + [398] = 160, + [399] = 157, + [400] = 162, + [401] = 401, + [402] = 402, + [403] = 358, + [404] = 404, + [405] = 405, + [406] = 385, + [407] = 407, + [408] = 388, + [409] = 153, + [410] = 154, + [411] = 411, + [412] = 412, + [413] = 152, + [414] = 414, + [415] = 155, + [416] = 156, + [417] = 417, + [418] = 161, + [419] = 356, + [420] = 420, + [421] = 421, + [422] = 369, + [423] = 423, + [424] = 358, + [425] = 384, + [426] = 426, + [427] = 427, + [428] = 383, + [429] = 429, + [430] = 387, + [431] = 389, + [432] = 158, + [433] = 159, + [434] = 160, + [435] = 157, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 381, + [440] = 356, [441] = 441, - [442] = 319, - [443] = 320, - [444] = 250, + [442] = 442, + [443] = 370, + [444] = 444, [445] = 445, [446] = 446, [447] = 447, - [448] = 360, + [448] = 448, [449] = 449, - [450] = 163, + [450] = 450, [451] = 451, - [452] = 452, - [453] = 308, - [454] = 389, - [455] = 313, - [456] = 164, - [457] = 319, - [458] = 320, - [459] = 170, - [460] = 171, - [461] = 166, - [462] = 247, - [463] = 169, - [464] = 167, - [465] = 168, - [466] = 165, - [467] = 250, - [468] = 174, - [469] = 469, - [470] = 470, - [471] = 445, - [472] = 447, + [452] = 163, + [453] = 450, + [454] = 411, + [455] = 455, + [456] = 445, + [457] = 370, + [458] = 153, + [459] = 154, + [460] = 161, + [461] = 383, + [462] = 412, + [463] = 414, + [464] = 464, + [465] = 162, + [466] = 163, + [467] = 447, + [468] = 387, + [469] = 417, + [470] = 389, + [471] = 405, + [472] = 358, [473] = 473, - [474] = 474, - [475] = 388, - [476] = 292, - [477] = 477, - [478] = 433, - [479] = 294, - [480] = 308, + [474] = 420, + [475] = 384, + [476] = 369, + [477] = 421, + [478] = 426, + [479] = 427, + [480] = 480, [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 313, - [488] = 319, - [489] = 320, - [490] = 449, - [491] = 390, - [492] = 441, - [493] = 175, - [494] = 172, - [495] = 446, - [496] = 432, - [497] = 497, - [498] = 498, - [499] = 499, - [500] = 173, - [501] = 430, - [502] = 470, - [503] = 503, - [504] = 170, - [505] = 171, - [506] = 166, - [507] = 474, - [508] = 508, - [509] = 169, - [510] = 473, - [511] = 175, + [482] = 429, + [483] = 436, + [484] = 437, + [485] = 356, + [486] = 438, + [487] = 407, + [488] = 369, + [489] = 441, + [490] = 442, + [491] = 155, + [492] = 156, + [493] = 401, + [494] = 164, + [495] = 370, + [496] = 444, + [497] = 423, + [498] = 158, + [499] = 446, + [500] = 402, + [501] = 501, + [502] = 159, + [503] = 160, + [504] = 504, + [505] = 448, + [506] = 449, + [507] = 157, + [508] = 451, + [509] = 152, + [510] = 510, + [511] = 511, [512] = 512, - [513] = 477, - [514] = 482, + [513] = 513, + [514] = 383, [515] = 515, - [516] = 516, - [517] = 308, - [518] = 174, - [519] = 481, - [520] = 168, - [521] = 483, - [522] = 469, - [523] = 484, - [524] = 485, - [525] = 486, - [526] = 451, - [527] = 319, + [516] = 164, + [517] = 161, + [518] = 518, + [519] = 162, + [520] = 163, + [521] = 389, + [522] = 153, + [523] = 356, + [524] = 154, + [525] = 358, + [526] = 526, + [527] = 527, [528] = 528, [529] = 529, - [530] = 320, - [531] = 292, - [532] = 294, - [533] = 533, - [534] = 250, - [535] = 497, - [536] = 247, - [537] = 167, - [538] = 172, - [539] = 539, - [540] = 540, - [541] = 499, - [542] = 498, - [543] = 452, + [530] = 510, + [531] = 455, + [532] = 532, + [533] = 511, + [534] = 155, + [535] = 156, + [536] = 536, + [537] = 537, + [538] = 387, + [539] = 512, + [540] = 159, + [541] = 160, + [542] = 481, + [543] = 157, [544] = 544, - [545] = 173, - [546] = 313, - [547] = 447, - [548] = 166, - [549] = 549, - [550] = 550, - [551] = 169, - [552] = 552, - [553] = 553, + [545] = 369, + [546] = 370, + [547] = 384, + [548] = 387, + [549] = 389, + [550] = 501, + [551] = 504, + [552] = 464, + [553] = 480, [554] = 554, - [555] = 555, + [555] = 513, [556] = 556, [557] = 557, - [558] = 528, - [559] = 529, + [558] = 558, + [559] = 559, [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 533, - [568] = 568, - [569] = 569, + [561] = 384, + [562] = 473, + [563] = 383, + [564] = 158, + [565] = 526, + [566] = 369, + [567] = 537, + [568] = 536, + [569] = 161, [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 308, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, + [571] = 370, + [572] = 162, + [573] = 163, + [574] = 155, + [575] = 358, + [576] = 156, + [577] = 384, + [578] = 383, [579] = 579, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 313, + [580] = 515, + [581] = 387, + [582] = 389, + [583] = 544, [584] = 584, - [585] = 585, - [586] = 586, + [585] = 157, + [586] = 532, [587] = 587, - [588] = 588, - [589] = 319, - [590] = 320, + [588] = 527, + [589] = 589, + [590] = 356, [591] = 591, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 512, + [592] = 528, + [593] = 554, + [594] = 529, + [595] = 556, + [596] = 557, + [597] = 558, + [598] = 559, + [599] = 560, + [600] = 600, [601] = 601, - [602] = 602, - [603] = 292, + [602] = 164, + [603] = 603, [604] = 604, - [605] = 198, - [606] = 175, - [607] = 607, + [605] = 158, + [606] = 159, + [607] = 160, [608] = 608, - [609] = 609, + [609] = 518, [610] = 610, [611] = 611, [612] = 612, [613] = 613, [614] = 614, - [615] = 615, + [615] = 163, [616] = 616, - [617] = 294, - [618] = 618, + [617] = 160, + [618] = 164, [619] = 619, [620] = 620, - [621] = 445, + [621] = 621, [622] = 622, - [623] = 170, - [624] = 172, - [625] = 173, + [623] = 623, + [624] = 157, + [625] = 625, [626] = 626, [627] = 627, - [628] = 171, - [629] = 629, + [628] = 384, + [629] = 387, [630] = 630, - [631] = 174, - [632] = 629, - [633] = 601, - [634] = 602, - [635] = 204, - [636] = 620, - [637] = 627, - [638] = 599, - [639] = 592, - [640] = 561, - [641] = 616, - [642] = 556, - [643] = 618, - [644] = 594, - [645] = 557, - [646] = 568, - [647] = 587, - [648] = 554, - [649] = 584, - [650] = 604, - [651] = 611, - [652] = 613, - [653] = 615, - [654] = 549, - [655] = 552, - [656] = 597, - [657] = 598, - [658] = 609, - [659] = 591, - [660] = 555, - [661] = 593, - [662] = 596, - [663] = 571, - [664] = 560, - [665] = 581, - [666] = 610, - [667] = 553, - [668] = 564, - [669] = 614, - [670] = 619, - [671] = 626, - [672] = 608, - [673] = 575, - [674] = 577, - [675] = 612, - [676] = 622, - [677] = 562, - [678] = 563, - [679] = 566, - [680] = 569, - [681] = 570, - [682] = 576, - [683] = 578, - [684] = 580, - [685] = 586, - [686] = 595, - [687] = 607, + [631] = 631, + [632] = 632, + [633] = 633, + [634] = 634, + [635] = 635, + [636] = 636, + [637] = 637, + [638] = 638, + [639] = 639, + [640] = 640, + [641] = 641, + [642] = 369, + [643] = 643, + [644] = 608, + [645] = 645, + [646] = 646, + [647] = 647, + [648] = 648, + [649] = 649, + [650] = 650, + [651] = 600, + [652] = 601, + [653] = 653, + [654] = 162, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 389, + [659] = 604, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 664, + [665] = 665, + [666] = 205, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 158, + [679] = 679, + [680] = 680, + [681] = 383, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 159, [688] = 688, - [689] = 445, - [690] = 447, - [691] = 175, - [692] = 170, - [693] = 171, - [694] = 166, - [695] = 169, - [696] = 696, - [697] = 572, - [698] = 573, - [699] = 308, - [700] = 313, - [701] = 319, - [702] = 320, - [703] = 579, - [704] = 582, - [705] = 585, - [706] = 588, - [707] = 630, - [708] = 708, - [709] = 708, - [710] = 710, - [711] = 711, - [712] = 712, - [713] = 713, - [714] = 714, - [715] = 715, - [716] = 716, - [717] = 717, - [718] = 718, - [719] = 719, - [720] = 715, - [721] = 711, - [722] = 716, - [723] = 713, - [724] = 710, - [725] = 725, - [726] = 726, - [727] = 727, - [728] = 728, - [729] = 198, - [730] = 730, - [731] = 730, - [732] = 732, - [733] = 732, - [734] = 734, - [735] = 735, - [736] = 730, - [737] = 732, - [738] = 730, - [739] = 730, - [740] = 730, - [741] = 730, - [742] = 730, - [743] = 730, - [744] = 730, - [745] = 730, - [746] = 204, - [747] = 730, - [748] = 730, - [749] = 730, - [750] = 730, - [751] = 730, - [752] = 730, - [753] = 730, - [754] = 730, - [755] = 755, - [756] = 730, - [757] = 757, - [758] = 735, - [759] = 759, - [760] = 759, - [761] = 761, - [762] = 759, - [763] = 759, - [764] = 759, - [765] = 759, - [766] = 759, - [767] = 759, - [768] = 759, - [769] = 759, - [770] = 759, - [771] = 759, - [772] = 759, - [773] = 759, - [774] = 759, - [775] = 759, - [776] = 759, - [777] = 759, - [778] = 759, - [779] = 759, - [780] = 759, + [689] = 161, + [690] = 480, + [691] = 513, + [692] = 692, + [693] = 693, + [694] = 370, + [695] = 693, + [696] = 630, + [697] = 697, + [698] = 643, + [699] = 384, + [700] = 387, + [701] = 389, + [702] = 656, + [703] = 648, + [704] = 650, + [705] = 685, + [706] = 684, + [707] = 206, + [708] = 672, + [709] = 625, + [710] = 612, + [711] = 674, + [712] = 688, + [713] = 626, + [714] = 682, + [715] = 692, + [716] = 638, + [717] = 645, + [718] = 677, + [719] = 669, + [720] = 671, + [721] = 649, + [722] = 655, + [723] = 680, + [724] = 683, + [725] = 637, + [726] = 636, + [727] = 623, + [728] = 632, + [729] = 664, + [730] = 665, + [731] = 647, + [732] = 653, + [733] = 661, + [734] = 662, + [735] = 667, + [736] = 668, + [737] = 480, + [738] = 513, + [739] = 675, + [740] = 670, + [741] = 673, + [742] = 686, + [743] = 676, + [744] = 744, + [745] = 679, + [746] = 611, + [747] = 613, + [748] = 614, + [749] = 616, + [750] = 619, + [751] = 620, + [752] = 657, + [753] = 621, + [754] = 660, + [755] = 663, + [756] = 164, + [757] = 622, + [758] = 631, + [759] = 633, + [760] = 635, + [761] = 639, + [762] = 640, + [763] = 641, + [764] = 610, + [765] = 158, + [766] = 634, + [767] = 159, + [768] = 160, + [769] = 157, + [770] = 383, + [771] = 771, + [772] = 772, + [773] = 773, + [774] = 774, + [775] = 773, + [776] = 205, + [777] = 777, + [778] = 778, + [779] = 779, + [780] = 780, [781] = 781, [782] = 782, [783] = 783, [784] = 784, [785] = 785, [786] = 786, - [787] = 787, + [787] = 328, [788] = 788, - [789] = 789, - [790] = 790, - [791] = 791, - [792] = 792, - [793] = 793, + [789] = 324, + [790] = 778, + [791] = 780, + [792] = 324, + [793] = 788, [794] = 794, [795] = 795, - [796] = 796, - [797] = 797, - [798] = 798, - [799] = 799, - [800] = 800, + [796] = 206, + [797] = 324, + [798] = 343, + [799] = 340, + [800] = 779, [801] = 801, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 784, - [817] = 817, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 831, - [832] = 832, - [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 813, - [838] = 814, - [839] = 815, - [840] = 817, - [841] = 818, - [842] = 819, - [843] = 820, - [844] = 824, - [845] = 828, - [846] = 829, - [847] = 830, - [848] = 831, - [849] = 799, + [802] = 328, + [803] = 324, + [804] = 328, + [805] = 328, + [806] = 784, + [807] = 340, + [808] = 340, + [809] = 328, + [810] = 353, + [811] = 343, + [812] = 355, + [813] = 324, + [814] = 360, + [815] = 352, + [816] = 816, + [817] = 343, + [818] = 343, + [819] = 340, + [820] = 355, + [821] = 340, + [822] = 360, + [823] = 360, + [824] = 355, + [825] = 353, + [826] = 816, + [827] = 816, + [828] = 343, + [829] = 353, + [830] = 328, + [831] = 324, + [832] = 352, + [833] = 355, + [834] = 352, + [835] = 352, + [836] = 360, + [837] = 353, + [838] = 816, + [839] = 355, + [840] = 343, + [841] = 352, + [842] = 360, + [843] = 340, + [844] = 816, + [845] = 353, + [846] = 846, + [847] = 816, + [848] = 846, + [849] = 849, [850] = 850, - [851] = 800, - [852] = 801, - [853] = 802, - [854] = 803, - [855] = 804, - [856] = 805, - [857] = 806, - [858] = 807, - [859] = 808, - [860] = 809, - [861] = 810, - [862] = 811, - [863] = 812, - [864] = 821, - [865] = 822, - [866] = 823, - [867] = 825, - [868] = 826, - [869] = 827, - [870] = 832, - [871] = 833, - [872] = 834, - [873] = 835, - [874] = 836, - [875] = 786, - [876] = 787, - [877] = 788, - [878] = 789, - [879] = 790, - [880] = 791, - [881] = 792, - [882] = 793, - [883] = 794, - [884] = 795, - [885] = 796, - [886] = 797, - [887] = 798, - [888] = 813, - [889] = 814, - [890] = 815, - [891] = 784, - [892] = 817, - [893] = 818, - [894] = 819, - [895] = 820, - [896] = 824, - [897] = 828, - [898] = 829, - [899] = 830, - [900] = 831, - [901] = 799, - [902] = 850, - [903] = 800, - [904] = 801, - [905] = 802, - [906] = 803, - [907] = 804, - [908] = 805, - [909] = 806, - [910] = 807, - [911] = 808, - [912] = 809, - [913] = 810, - [914] = 811, - [915] = 812, - [916] = 821, - [917] = 822, - [918] = 823, - [919] = 825, - [920] = 826, - [921] = 827, - [922] = 832, - [923] = 833, - [924] = 834, - [925] = 835, - [926] = 836, - [927] = 786, - [928] = 787, - [929] = 788, - [930] = 789, - [931] = 790, - [932] = 791, - [933] = 792, - [934] = 793, - [935] = 794, - [936] = 795, - [937] = 796, - [938] = 797, - [939] = 798, - [940] = 850, + [851] = 846, + [852] = 850, + [853] = 846, + [854] = 849, + [855] = 849, + [856] = 846, + [857] = 846, + [858] = 846, + [859] = 846, + [860] = 846, + [861] = 352, + [862] = 846, + [863] = 846, + [864] = 353, + [865] = 846, + [866] = 846, + [867] = 846, + [868] = 846, + [869] = 355, + [870] = 846, + [871] = 360, + [872] = 846, + [873] = 846, + [874] = 874, + [875] = 875, + [876] = 874, + [877] = 875, + [878] = 875, + [879] = 874, + [880] = 875, + [881] = 874, + [882] = 882, + [883] = 882, + [884] = 874, + [885] = 882, + [886] = 886, + [887] = 882, + [888] = 882, + [889] = 875, + [890] = 882, + [891] = 882, + [892] = 882, + [893] = 882, + [894] = 882, + [895] = 882, + [896] = 882, + [897] = 882, + [898] = 882, + [899] = 882, + [900] = 882, + [901] = 882, + [902] = 882, + [903] = 882, + [904] = 874, + [905] = 875, + [906] = 906, + [907] = 907, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 910, + [918] = 911, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 924, + [925] = 919, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 909, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, [941] = 941, - [942] = 941, + [942] = 942, [943] = 943, [944] = 944, [945] = 945, @@ -6169,1235 +6064,1235 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [948] = 948, [949] = 949, [950] = 950, - [951] = 948, + [951] = 951, [952] = 952, [953] = 953, [954] = 954, [955] = 955, - [956] = 945, - [957] = 946, - [958] = 947, - [959] = 944, - [960] = 949, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, [961] = 961, [962] = 962, - [963] = 961, - [964] = 962, - [965] = 950, - [966] = 948, - [967] = 952, - [968] = 953, - [969] = 954, - [970] = 955, - [971] = 945, - [972] = 946, - [973] = 947, - [974] = 944, - [975] = 949, - [976] = 961, - [977] = 953, - [978] = 962, - [979] = 945, - [980] = 948, - [981] = 946, - [982] = 947, - [983] = 944, - [984] = 949, - [985] = 961, - [986] = 962, - [987] = 952, - [988] = 953, - [989] = 954, - [990] = 954, - [991] = 943, - [992] = 950, - [993] = 955, - [994] = 950, - [995] = 950, - [996] = 948, - [997] = 952, - [998] = 953, - [999] = 954, - [1000] = 955, - [1001] = 945, - [1002] = 946, - [1003] = 947, - [1004] = 944, - [1005] = 949, - [1006] = 961, - [1007] = 962, - [1008] = 950, - [1009] = 948, - [1010] = 952, - [1011] = 953, - [1012] = 954, - [1013] = 955, - [1014] = 945, - [1015] = 946, - [1016] = 947, - [1017] = 944, - [1018] = 949, - [1019] = 961, - [1020] = 962, - [1021] = 950, - [1022] = 948, - [1023] = 952, - [1024] = 953, - [1025] = 954, - [1026] = 955, - [1027] = 945, - [1028] = 946, - [1029] = 947, - [1030] = 944, - [1031] = 949, - [1032] = 961, - [1033] = 962, - [1034] = 955, - [1035] = 952, - [1036] = 1036, - [1037] = 1037, - [1038] = 1038, - [1039] = 1038, - [1040] = 1036, - [1041] = 1037, - [1042] = 1042, - [1043] = 1043, - [1044] = 1044, - [1045] = 1045, - [1046] = 1046, - [1047] = 1047, - [1048] = 1045, - [1049] = 1046, - [1050] = 1050, - [1051] = 1050, - [1052] = 1052, - [1053] = 1052, - [1054] = 1054, - [1055] = 1054, - [1056] = 1056, - [1057] = 1054, - [1058] = 1056, - [1059] = 1056, - [1060] = 1060, - [1061] = 1060, - [1062] = 1062, - [1063] = 1063, - [1064] = 1064, - [1065] = 1065, + [963] = 963, + [964] = 964, + [965] = 920, + [966] = 921, + [967] = 967, + [968] = 922, + [969] = 923, + [970] = 952, + [971] = 953, + [972] = 954, + [973] = 912, + [974] = 913, + [975] = 914, + [976] = 915, + [977] = 916, + [978] = 910, + [979] = 911, + [980] = 919, + [981] = 920, + [982] = 921, + [983] = 922, + [984] = 923, + [985] = 924, + [986] = 926, + [987] = 927, + [988] = 928, + [989] = 929, + [990] = 930, + [991] = 931, + [992] = 932, + [993] = 912, + [994] = 934, + [995] = 936, + [996] = 937, + [997] = 938, + [998] = 939, + [999] = 940, + [1000] = 941, + [1001] = 942, + [1002] = 943, + [1003] = 944, + [1004] = 945, + [1005] = 946, + [1006] = 947, + [1007] = 948, + [1008] = 949, + [1009] = 950, + [1010] = 951, + [1011] = 913, + [1012] = 952, + [1013] = 953, + [1014] = 954, + [1015] = 955, + [1016] = 956, + [1017] = 957, + [1018] = 958, + [1019] = 959, + [1020] = 960, + [1021] = 961, + [1022] = 962, + [1023] = 963, + [1024] = 964, + [1025] = 955, + [1026] = 956, + [1027] = 957, + [1028] = 958, + [1029] = 959, + [1030] = 926, + [1031] = 927, + [1032] = 928, + [1033] = 960, + [1034] = 929, + [1035] = 961, + [1036] = 930, + [1037] = 931, + [1038] = 962, + [1039] = 932, + [1040] = 963, + [1041] = 914, + [1042] = 933, + [1043] = 934, + [1044] = 964, + [1045] = 909, + [1046] = 915, + [1047] = 916, + [1048] = 924, + [1049] = 936, + [1050] = 937, + [1051] = 938, + [1052] = 939, + [1053] = 940, + [1054] = 941, + [1055] = 942, + [1056] = 943, + [1057] = 944, + [1058] = 945, + [1059] = 946, + [1060] = 947, + [1061] = 948, + [1062] = 949, + [1063] = 950, + [1064] = 951, + [1065] = 933, [1066] = 1066, - [1067] = 1067, + [1067] = 1066, [1068] = 1068, - [1069] = 1067, - [1070] = 1070, - [1071] = 1070, - [1072] = 1065, - [1073] = 1068, - [1074] = 1064, + [1069] = 1069, + [1070] = 1069, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, + [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 198, - [1080] = 1080, - [1081] = 1081, - [1082] = 1080, - [1083] = 214, - [1084] = 218, - [1085] = 219, - [1086] = 1086, - [1087] = 216, - [1088] = 215, - [1089] = 214, - [1090] = 204, - [1091] = 217, - [1092] = 163, - [1093] = 163, - [1094] = 1094, - [1095] = 165, - [1096] = 164, - [1097] = 1097, - [1098] = 1097, - [1099] = 223, - [1100] = 216, - [1101] = 224, - [1102] = 1102, - [1103] = 215, - [1104] = 222, - [1105] = 1105, - [1106] = 1106, - [1107] = 1094, - [1108] = 163, - [1109] = 1097, - [1110] = 1106, - [1111] = 1094, - [1112] = 1105, - [1113] = 1097, - [1114] = 219, - [1115] = 1105, - [1116] = 1097, - [1117] = 1106, - [1118] = 1094, - [1119] = 1105, - [1120] = 1097, - [1121] = 1106, - [1122] = 1094, - [1123] = 1105, - [1124] = 215, - [1125] = 1106, - [1126] = 1097, - [1127] = 1106, - [1128] = 1094, - [1129] = 1105, - [1130] = 1106, - [1131] = 1097, - [1132] = 1106, - [1133] = 1105, - [1134] = 1105, - [1135] = 1097, - [1136] = 1106, - [1137] = 1094, - [1138] = 1105, - [1139] = 1097, - [1140] = 1106, - [1141] = 1094, - [1142] = 1105, - [1143] = 225, - [1144] = 1097, - [1145] = 1106, - [1146] = 1094, - [1147] = 1105, - [1148] = 1102, - [1149] = 1097, - [1150] = 1106, - [1151] = 1094, - [1152] = 1105, - [1153] = 1097, - [1154] = 1106, - [1155] = 1094, - [1156] = 1105, - [1157] = 1097, - [1158] = 1094, - [1159] = 1094, - [1160] = 226, - [1161] = 217, - [1162] = 228, - [1163] = 216, - [1164] = 1097, - [1165] = 1165, - [1166] = 218, - [1167] = 1105, - [1168] = 1094, - [1169] = 1106, - [1170] = 1094, - [1171] = 168, - [1172] = 246, - [1173] = 223, - [1174] = 248, - [1175] = 249, - [1176] = 222, - [1177] = 167, - [1178] = 163, - [1179] = 250, - [1180] = 216, - [1181] = 215, - [1182] = 222, - [1183] = 235, - [1184] = 236, - [1185] = 1165, - [1186] = 251, - [1187] = 247, - [1188] = 170, - [1189] = 171, - [1190] = 166, - [1191] = 169, - [1192] = 164, - [1193] = 165, - [1194] = 163, - [1195] = 165, - [1196] = 223, - [1197] = 224, - [1198] = 1198, - [1199] = 225, - [1200] = 226, - [1201] = 228, - [1202] = 164, - [1203] = 165, - [1204] = 171, - [1205] = 166, - [1206] = 1206, - [1207] = 172, - [1208] = 164, - [1209] = 251, - [1210] = 169, - [1211] = 236, - [1212] = 248, - [1213] = 294, - [1214] = 251, - [1215] = 246, - [1216] = 173, - [1217] = 167, - [1218] = 168, - [1219] = 170, - [1220] = 249, - [1221] = 222, - [1222] = 167, - [1223] = 163, - [1224] = 165, - [1225] = 164, - [1226] = 246, - [1227] = 168, - [1228] = 292, - [1229] = 166, - [1230] = 169, - [1231] = 250, - [1232] = 235, - [1233] = 174, - [1234] = 223, - [1235] = 247, - [1236] = 248, - [1237] = 170, + [1079] = 1079, + [1080] = 1076, + [1081] = 1077, + [1082] = 1078, + [1083] = 1079, + [1084] = 1084, + [1085] = 1085, + [1086] = 1069, + [1087] = 1068, + [1088] = 1071, + [1089] = 1072, + [1090] = 1073, + [1091] = 1074, + [1092] = 1075, + [1093] = 1076, + [1094] = 1077, + [1095] = 1078, + [1096] = 1079, + [1097] = 1072, + [1098] = 1071, + [1099] = 1099, + [1100] = 1084, + [1101] = 1085, + [1102] = 1069, + [1103] = 1068, + [1104] = 1071, + [1105] = 1072, + [1106] = 1073, + [1107] = 1074, + [1108] = 1075, + [1109] = 1076, + [1110] = 1077, + [1111] = 1078, + [1112] = 1079, + [1113] = 1084, + [1114] = 1084, + [1115] = 1085, + [1116] = 1069, + [1117] = 1068, + [1118] = 1071, + [1119] = 1072, + [1120] = 1073, + [1121] = 1074, + [1122] = 1075, + [1123] = 1076, + [1124] = 1077, + [1125] = 1078, + [1126] = 1079, + [1127] = 1085, + [1128] = 1085, + [1129] = 1069, + [1130] = 1068, + [1131] = 1071, + [1132] = 1099, + [1133] = 1072, + [1134] = 1073, + [1135] = 1074, + [1136] = 1075, + [1137] = 1076, + [1138] = 1085, + [1139] = 1073, + [1140] = 1077, + [1141] = 1074, + [1142] = 1078, + [1143] = 1079, + [1144] = 1068, + [1145] = 1075, + [1146] = 1084, + [1147] = 1085, + [1148] = 1069, + [1149] = 1068, + [1150] = 1071, + [1151] = 1072, + [1152] = 1073, + [1153] = 1074, + [1154] = 1075, + [1155] = 1076, + [1156] = 1077, + [1157] = 1078, + [1158] = 1079, + [1159] = 1099, + [1160] = 1084, + [1161] = 1084, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 1162, + [1166] = 1164, + [1167] = 1163, + [1168] = 1099, + [1169] = 1169, + [1170] = 1099, + [1171] = 1171, + [1172] = 324, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 324, + [1177] = 1177, + [1178] = 1174, + [1179] = 1175, + [1180] = 1180, + [1181] = 1181, + [1182] = 324, + [1183] = 1183, + [1184] = 205, + [1185] = 328, + [1186] = 328, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1190, + [1191] = 328, + [1192] = 328, + [1193] = 1193, + [1194] = 1193, + [1195] = 343, + [1196] = 340, + [1197] = 1197, + [1198] = 206, + [1199] = 1197, + [1200] = 1200, + [1201] = 340, + [1202] = 324, + [1203] = 343, + [1204] = 343, + [1205] = 340, + [1206] = 343, + [1207] = 816, + [1208] = 1208, + [1209] = 352, + [1210] = 360, + [1211] = 816, + [1212] = 353, + [1213] = 328, + [1214] = 324, + [1215] = 355, + [1216] = 355, + [1217] = 353, + [1218] = 360, + [1219] = 1219, + [1220] = 816, + [1221] = 1208, + [1222] = 355, + [1223] = 1219, + [1224] = 1219, + [1225] = 360, + [1226] = 352, + [1227] = 340, + [1228] = 1208, + [1229] = 353, + [1230] = 352, + [1231] = 1231, + [1232] = 816, + [1233] = 1231, + [1234] = 1234, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, [1238] = 1238, - [1239] = 171, - [1240] = 249, - [1241] = 319, - [1242] = 320, - [1243] = 167, - [1244] = 168, - [1245] = 166, - [1246] = 249, - [1247] = 174, - [1248] = 172, - [1249] = 173, - [1250] = 308, - [1251] = 165, - [1252] = 171, - [1253] = 169, - [1254] = 166, - [1255] = 324, - [1256] = 246, - [1257] = 248, - [1258] = 172, - [1259] = 173, - [1260] = 292, - [1261] = 294, - [1262] = 251, - [1263] = 169, - [1264] = 170, - [1265] = 250, - [1266] = 170, - [1267] = 313, - [1268] = 174, - [1269] = 1238, - [1270] = 168, - [1271] = 300, - [1272] = 167, - [1273] = 171, - [1274] = 164, - [1275] = 175, - [1276] = 247, - [1277] = 170, - [1278] = 167, - [1279] = 308, - [1280] = 313, - [1281] = 247, - [1282] = 216, - [1283] = 215, - [1284] = 319, - [1285] = 171, - [1286] = 166, - [1287] = 169, - [1288] = 174, - [1289] = 172, - [1290] = 173, - [1291] = 250, - [1292] = 320, - [1293] = 292, - [1294] = 175, - [1295] = 294, - [1296] = 1296, - [1297] = 348, - [1298] = 349, - [1299] = 174, - [1300] = 300, - [1301] = 168, - [1302] = 363, - [1303] = 364, - [1304] = 365, - [1305] = 366, - [1306] = 367, - [1307] = 368, - [1308] = 369, - [1309] = 370, - [1310] = 372, - [1311] = 373, - [1312] = 374, - [1313] = 375, - [1314] = 376, - [1315] = 324, - [1316] = 378, - [1317] = 382, - [1318] = 383, - [1319] = 385, - [1320] = 175, - [1321] = 350, - [1322] = 352, - [1323] = 1323, - [1324] = 172, - [1325] = 173, - [1326] = 175, - [1327] = 247, - [1328] = 216, - [1329] = 215, - [1330] = 163, - [1331] = 250, - [1332] = 360, - [1333] = 382, - [1334] = 163, - [1335] = 216, - [1336] = 446, - [1337] = 215, - [1338] = 308, - [1339] = 370, - [1340] = 352, - [1341] = 313, - [1342] = 164, - [1343] = 319, - [1344] = 320, - [1345] = 247, - [1346] = 389, - [1347] = 165, - [1348] = 172, - [1349] = 449, - [1350] = 390, - [1351] = 441, - [1352] = 1352, - [1353] = 292, - [1354] = 173, - [1355] = 294, - [1356] = 372, - [1357] = 223, - [1358] = 373, - [1359] = 374, - [1360] = 222, - [1361] = 1361, - [1362] = 216, - [1363] = 1363, - [1364] = 1296, - [1365] = 375, - [1366] = 215, - [1367] = 376, - [1368] = 445, - [1369] = 174, - [1370] = 378, - [1371] = 447, - [1372] = 235, - [1373] = 215, - [1374] = 250, - [1375] = 432, - [1376] = 369, - [1377] = 236, - [1378] = 383, - [1379] = 388, - [1380] = 292, - [1381] = 385, - [1382] = 294, - [1383] = 216, - [1384] = 215, - [1385] = 223, - [1386] = 175, - [1387] = 348, - [1388] = 350, - [1389] = 349, - [1390] = 222, - [1391] = 360, - [1392] = 363, - [1393] = 364, - [1394] = 365, - [1395] = 366, - [1396] = 367, - [1397] = 368, - [1398] = 216, - [1399] = 432, - [1400] = 1400, - [1401] = 432, - [1402] = 1402, - [1403] = 222, - [1404] = 235, - [1405] = 223, - [1406] = 247, - [1407] = 388, - [1408] = 1408, - [1409] = 308, - [1410] = 446, - [1411] = 222, - [1412] = 469, - [1413] = 294, - [1414] = 441, - [1415] = 313, - [1416] = 175, - [1417] = 1363, - [1418] = 1418, - [1419] = 1419, - [1420] = 250, - [1421] = 319, - [1422] = 445, - [1423] = 222, - [1424] = 320, - [1425] = 1352, - [1426] = 388, - [1427] = 447, - [1428] = 449, - [1429] = 473, - [1430] = 1363, - [1431] = 308, - [1432] = 1432, - [1433] = 390, - [1434] = 164, - [1435] = 477, - [1436] = 482, - [1437] = 251, - [1438] = 313, - [1439] = 165, - [1440] = 167, - [1441] = 319, - [1442] = 320, - [1443] = 169, - [1444] = 223, - [1445] = 246, - [1446] = 222, - [1447] = 170, - [1448] = 251, - [1449] = 1449, - [1450] = 216, - [1451] = 389, - [1452] = 215, - [1453] = 1453, - [1454] = 248, - [1455] = 1455, - [1456] = 246, - [1457] = 497, - [1458] = 249, - [1459] = 223, - [1460] = 248, - [1461] = 470, - [1462] = 499, - [1463] = 1432, - [1464] = 1464, - [1465] = 171, - [1466] = 166, - [1467] = 249, - [1468] = 498, - [1469] = 1469, - [1470] = 223, - [1471] = 235, - [1472] = 236, - [1473] = 452, - [1474] = 168, - [1475] = 1475, - [1476] = 1476, - [1477] = 474, - [1478] = 292, - [1479] = 236, - [1480] = 1480, - [1481] = 251, - [1482] = 477, - [1483] = 470, - [1484] = 482, - [1485] = 499, - [1486] = 172, - [1487] = 173, - [1488] = 236, - [1489] = 1489, - [1490] = 1400, - [1491] = 1402, - [1492] = 1418, - [1493] = 292, - [1494] = 1494, - [1495] = 1495, - [1496] = 1495, - [1497] = 313, - [1498] = 246, - [1499] = 294, - [1500] = 248, - [1501] = 248, - [1502] = 251, - [1503] = 167, - [1504] = 168, - [1505] = 1449, - [1506] = 249, - [1507] = 319, - [1508] = 249, - [1509] = 474, - [1510] = 246, - [1511] = 1475, - [1512] = 235, - [1513] = 320, - [1514] = 469, - [1515] = 248, - [1516] = 498, - [1517] = 1517, - [1518] = 452, - [1519] = 1519, - [1520] = 249, - [1521] = 1521, - [1522] = 1522, - [1523] = 512, - [1524] = 167, - [1525] = 168, - [1526] = 1526, - [1527] = 251, - [1528] = 497, - [1529] = 1529, - [1530] = 246, - [1531] = 247, - [1532] = 248, - [1533] = 473, - [1534] = 249, - [1535] = 1453, - [1536] = 473, - [1537] = 469, - [1538] = 174, - [1539] = 1408, - [1540] = 170, - [1541] = 1476, - [1542] = 1469, - [1543] = 251, - [1544] = 171, - [1545] = 166, - [1546] = 474, - [1547] = 308, - [1548] = 1548, - [1549] = 169, - [1550] = 477, - [1551] = 482, - [1552] = 170, - [1553] = 223, - [1554] = 1554, - [1555] = 1555, - [1556] = 1556, - [1557] = 171, - [1558] = 166, - [1559] = 169, - [1560] = 1419, - [1561] = 1517, - [1562] = 222, - [1563] = 1526, - [1564] = 1529, + [1239] = 360, + [1240] = 1234, + [1241] = 1236, + [1242] = 1237, + [1243] = 1243, + [1244] = 343, + [1245] = 340, + [1246] = 1238, + [1247] = 352, + [1248] = 353, + [1249] = 355, + [1250] = 1243, + [1251] = 1251, + [1252] = 360, + [1253] = 352, + [1254] = 355, + [1255] = 816, + [1256] = 353, + [1257] = 1251, + [1258] = 310, + [1259] = 310, + [1260] = 317, + [1261] = 322, + [1262] = 328, + [1263] = 316, + [1264] = 324, + [1265] = 328, + [1266] = 317, + [1267] = 1267, + [1268] = 1268, + [1269] = 343, + [1270] = 340, + [1271] = 1271, + [1272] = 1272, + [1273] = 1272, + [1274] = 1268, + [1275] = 1275, + [1276] = 1275, + [1277] = 1267, + [1278] = 1268, + [1279] = 1271, + [1280] = 324, + [1281] = 152, + [1282] = 1275, + [1283] = 322, + [1284] = 1267, + [1285] = 1275, + [1286] = 1267, + [1287] = 1268, + [1288] = 1271, + [1289] = 1289, + [1290] = 1275, + [1291] = 1267, + [1292] = 1268, + [1293] = 1271, + [1294] = 1275, + [1295] = 1267, + [1296] = 1268, + [1297] = 1271, + [1298] = 1275, + [1299] = 1267, + [1300] = 1268, + [1301] = 1271, + [1302] = 1275, + [1303] = 1267, + [1304] = 1268, + [1305] = 1275, + [1306] = 152, + [1307] = 1268, + [1308] = 1275, + [1309] = 1267, + [1310] = 1268, + [1311] = 1271, + [1312] = 1275, + [1313] = 1267, + [1314] = 1268, + [1315] = 1271, + [1316] = 1275, + [1317] = 1267, + [1318] = 1268, + [1319] = 1271, + [1320] = 1275, + [1321] = 1267, + [1322] = 1268, + [1323] = 1271, + [1324] = 344, + [1325] = 1271, + [1326] = 1275, + [1327] = 1267, + [1328] = 1268, + [1329] = 1271, + [1330] = 1275, + [1331] = 1268, + [1332] = 342, + [1333] = 339, + [1334] = 346, + [1335] = 1267, + [1336] = 324, + [1337] = 316, + [1338] = 1271, + [1339] = 328, + [1340] = 1271, + [1341] = 874, + [1342] = 874, + [1343] = 875, + [1344] = 158, + [1345] = 362, + [1346] = 343, + [1347] = 159, + [1348] = 152, + [1349] = 875, + [1350] = 160, + [1351] = 340, + [1352] = 352, + [1353] = 344, + [1354] = 358, + [1355] = 353, + [1356] = 354, + [1357] = 1357, + [1358] = 355, + [1359] = 360, + [1360] = 340, + [1361] = 154, + [1362] = 342, + [1363] = 339, + [1364] = 346, + [1365] = 153, + [1366] = 324, + [1367] = 328, + [1368] = 874, + [1369] = 875, + [1370] = 154, + [1371] = 356, + [1372] = 152, + [1373] = 343, + [1374] = 153, + [1375] = 1289, + [1376] = 157, + [1377] = 156, + [1378] = 160, + [1379] = 356, + [1380] = 360, + [1381] = 352, + [1382] = 354, + [1383] = 360, + [1384] = 370, + [1385] = 157, + [1386] = 343, + [1387] = 1387, + [1388] = 353, + [1389] = 340, + [1390] = 152, + [1391] = 1391, + [1392] = 155, + [1393] = 156, + [1394] = 355, + [1395] = 355, + [1396] = 362, + [1397] = 153, + [1398] = 352, + [1399] = 154, + [1400] = 358, + [1401] = 159, + [1402] = 353, + [1403] = 158, + [1404] = 155, + [1405] = 153, + [1406] = 369, + [1407] = 874, + [1408] = 154, + [1409] = 875, + [1410] = 160, + [1411] = 387, + [1412] = 369, + [1413] = 155, + [1414] = 156, + [1415] = 356, + [1416] = 389, + [1417] = 157, + [1418] = 324, + [1419] = 328, + [1420] = 162, + [1421] = 161, + [1422] = 163, + [1423] = 352, + [1424] = 383, + [1425] = 353, + [1426] = 384, + [1427] = 358, + [1428] = 355, + [1429] = 360, + [1430] = 158, + [1431] = 158, + [1432] = 162, + [1433] = 163, + [1434] = 874, + [1435] = 875, + [1436] = 159, + [1437] = 157, + [1438] = 160, + [1439] = 156, + [1440] = 388, + [1441] = 1391, + [1442] = 370, + [1443] = 161, + [1444] = 153, + [1445] = 155, + [1446] = 154, + [1447] = 159, + [1448] = 385, + [1449] = 426, + [1450] = 163, + [1451] = 356, + [1452] = 159, + [1453] = 160, + [1454] = 164, + [1455] = 162, + [1456] = 388, + [1457] = 414, + [1458] = 163, + [1459] = 427, + [1460] = 161, + [1461] = 343, + [1462] = 383, + [1463] = 164, + [1464] = 421, + [1465] = 442, + [1466] = 407, + [1467] = 358, + [1468] = 385, + [1469] = 401, + [1470] = 402, + [1471] = 164, + [1472] = 157, + [1473] = 358, + [1474] = 417, + [1475] = 340, + [1476] = 438, + [1477] = 411, + [1478] = 423, + [1479] = 389, + [1480] = 412, + [1481] = 152, + [1482] = 1482, + [1483] = 429, + [1484] = 445, + [1485] = 441, + [1486] = 356, + [1487] = 155, + [1488] = 161, + [1489] = 436, + [1490] = 156, + [1491] = 448, + [1492] = 420, + [1493] = 437, + [1494] = 158, + [1495] = 370, + [1496] = 387, + [1497] = 162, + [1498] = 384, + [1499] = 447, + [1500] = 405, + [1501] = 369, + [1502] = 163, + [1503] = 152, + [1504] = 447, + [1505] = 153, + [1506] = 445, + [1507] = 1507, + [1508] = 1507, + [1509] = 154, + [1510] = 161, + [1511] = 407, + [1512] = 411, + [1513] = 412, + [1514] = 369, + [1515] = 414, + [1516] = 417, + [1517] = 420, + [1518] = 1518, + [1519] = 421, + [1520] = 426, + [1521] = 511, + [1522] = 512, + [1523] = 164, + [1524] = 481, + [1525] = 358, + [1526] = 427, + [1527] = 464, + [1528] = 384, + [1529] = 480, + [1530] = 324, + [1531] = 370, + [1532] = 369, + [1533] = 1533, + [1534] = 429, + [1535] = 436, + [1536] = 455, + [1537] = 437, + [1538] = 156, + [1539] = 438, + [1540] = 162, + [1541] = 387, + [1542] = 362, + [1543] = 510, + [1544] = 328, + [1545] = 389, + [1546] = 441, + [1547] = 442, + [1548] = 401, + [1549] = 402, + [1550] = 352, + [1551] = 158, + [1552] = 356, + [1553] = 423, + [1554] = 354, + [1555] = 353, + [1556] = 159, + [1557] = 370, + [1558] = 160, + [1559] = 405, + [1560] = 1507, + [1561] = 152, + [1562] = 448, + [1563] = 355, + [1564] = 157, [1565] = 1565, - [1566] = 1566, - [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, - [1571] = 1418, - [1572] = 1572, - [1573] = 1419, - [1574] = 1574, - [1575] = 1575, - [1576] = 1576, - [1577] = 1577, - [1578] = 1578, - [1579] = 250, - [1580] = 246, - [1581] = 1400, - [1582] = 1402, - [1583] = 1566, - [1584] = 1569, - [1585] = 248, - [1586] = 320, - [1587] = 611, - [1588] = 571, - [1589] = 174, - [1590] = 557, - [1591] = 568, - [1592] = 477, - [1593] = 175, - [1594] = 613, - [1595] = 615, - [1596] = 592, - [1597] = 580, - [1598] = 587, - [1599] = 554, - [1600] = 610, - [1601] = 586, - [1602] = 172, - [1603] = 173, - [1604] = 584, - [1605] = 482, - [1606] = 1606, - [1607] = 1607, - [1608] = 1519, - [1609] = 512, - [1610] = 292, - [1611] = 552, - [1612] = 562, - [1613] = 1522, - [1614] = 595, - [1615] = 614, - [1616] = 607, - [1617] = 294, - [1618] = 629, - [1619] = 1619, - [1620] = 469, - [1621] = 1519, - [1622] = 563, - [1623] = 619, - [1624] = 604, - [1625] = 172, - [1626] = 173, - [1627] = 630, + [1566] = 360, + [1567] = 473, + [1568] = 513, + [1569] = 155, + [1570] = 383, + [1571] = 370, + [1572] = 384, + [1573] = 1533, + [1574] = 402, + [1575] = 162, + [1576] = 481, + [1577] = 480, + [1578] = 414, + [1579] = 389, + [1580] = 1580, + [1581] = 429, + [1582] = 407, + [1583] = 455, + [1584] = 527, + [1585] = 436, + [1586] = 369, + [1587] = 526, + [1588] = 384, + [1589] = 1589, + [1590] = 383, + [1591] = 528, + [1592] = 356, + [1593] = 163, + [1594] = 441, + [1595] = 529, + [1596] = 164, + [1597] = 158, + [1598] = 511, + [1599] = 159, + [1600] = 411, + [1601] = 1601, + [1602] = 442, + [1603] = 401, + [1604] = 340, + [1605] = 160, + [1606] = 152, + [1607] = 437, + [1608] = 412, + [1609] = 155, + [1610] = 1610, + [1611] = 417, + [1612] = 1565, + [1613] = 420, + [1614] = 157, + [1615] = 536, + [1616] = 383, + [1617] = 464, + [1618] = 387, + [1619] = 438, + [1620] = 510, + [1621] = 473, + [1622] = 544, + [1623] = 389, + [1624] = 1507, + [1625] = 1518, + [1626] = 156, + [1627] = 513, [1628] = 1628, - [1629] = 570, - [1630] = 616, - [1631] = 627, - [1632] = 246, - [1633] = 249, - [1634] = 1634, - [1635] = 388, - [1636] = 308, - [1637] = 626, - [1638] = 591, - [1639] = 1639, - [1640] = 170, - [1641] = 319, - [1642] = 596, - [1643] = 1519, - [1644] = 608, - [1645] = 1645, - [1646] = 555, - [1647] = 1647, - [1648] = 575, - [1649] = 251, - [1650] = 1650, - [1651] = 171, - [1652] = 1489, - [1653] = 560, - [1654] = 581, - [1655] = 166, - [1656] = 577, - [1657] = 1522, - [1658] = 556, - [1659] = 1521, - [1660] = 1522, + [1629] = 515, + [1630] = 358, + [1631] = 518, + [1632] = 405, + [1633] = 154, + [1634] = 153, + [1635] = 532, + [1636] = 421, + [1637] = 1637, + [1638] = 1638, + [1639] = 426, + [1640] = 537, + [1641] = 1641, + [1642] = 161, + [1643] = 427, + [1644] = 1644, + [1645] = 153, + [1646] = 512, + [1647] = 362, + [1648] = 387, + [1649] = 154, + [1650] = 354, + [1651] = 343, + [1652] = 362, + [1653] = 352, + [1654] = 528, + [1655] = 160, + [1656] = 1656, + [1657] = 464, + [1658] = 1658, + [1659] = 1659, + [1660] = 1660, [1661] = 1661, - [1662] = 549, - [1663] = 597, - [1664] = 473, - [1665] = 1569, - [1666] = 618, - [1667] = 445, - [1668] = 169, - [1669] = 620, - [1670] = 1495, - [1671] = 553, - [1672] = 564, + [1662] = 370, + [1663] = 384, + [1664] = 153, + [1665] = 1665, + [1666] = 515, + [1667] = 529, + [1668] = 154, + [1669] = 1669, + [1670] = 526, + [1671] = 532, + [1672] = 536, [1673] = 1673, - [1674] = 1569, - [1675] = 622, - [1676] = 512, - [1677] = 474, - [1678] = 1678, - [1679] = 1679, + [1674] = 1659, + [1675] = 537, + [1676] = 354, + [1677] = 1656, + [1678] = 1660, + [1679] = 473, [1680] = 1680, - [1681] = 432, - [1682] = 313, - [1683] = 576, - [1684] = 598, - [1685] = 566, - [1686] = 1686, - [1687] = 447, - [1688] = 578, - [1689] = 612, - [1690] = 1495, - [1691] = 561, - [1692] = 609, - [1693] = 174, - [1694] = 594, - [1695] = 569, - [1696] = 593, - [1697] = 378, - [1698] = 568, - [1699] = 561, - [1700] = 166, + [1681] = 1637, + [1682] = 157, + [1683] = 423, + [1684] = 527, + [1685] = 526, + [1686] = 445, + [1687] = 608, + [1688] = 164, + [1689] = 1638, + [1690] = 1610, + [1691] = 362, + [1692] = 1641, + [1693] = 536, + [1694] = 157, + [1695] = 527, + [1696] = 152, + [1697] = 1697, + [1698] = 159, + [1699] = 158, + [1700] = 1644, [1701] = 1701, - [1702] = 1702, - [1703] = 587, - [1704] = 1607, - [1705] = 236, - [1706] = 554, - [1707] = 1707, - [1708] = 175, - [1709] = 1709, - [1710] = 1710, - [1711] = 613, - [1712] = 615, - [1713] = 598, - [1714] = 1714, - [1715] = 235, - [1716] = 236, - [1717] = 163, - [1718] = 1718, - [1719] = 1719, - [1720] = 610, - [1721] = 1721, - [1722] = 169, - [1723] = 553, - [1724] = 564, - [1725] = 1619, - [1726] = 584, - [1727] = 549, - [1728] = 552, - [1729] = 597, - [1730] = 614, - [1731] = 1731, - [1732] = 1732, - [1733] = 163, - [1734] = 604, + [1702] = 153, + [1703] = 161, + [1704] = 155, + [1705] = 156, + [1706] = 383, + [1707] = 528, + [1708] = 529, + [1709] = 448, + [1710] = 518, + [1711] = 447, + [1712] = 1628, + [1713] = 1665, + [1714] = 1701, + [1715] = 162, + [1716] = 355, + [1717] = 154, + [1718] = 387, + [1719] = 360, + [1720] = 1720, + [1721] = 358, + [1722] = 160, + [1723] = 369, + [1724] = 354, + [1725] = 353, + [1726] = 1726, + [1727] = 1589, + [1728] = 389, + [1729] = 544, + [1730] = 158, + [1731] = 159, + [1732] = 163, + [1733] = 1733, + [1734] = 356, [1735] = 1735, - [1736] = 629, - [1737] = 619, - [1738] = 1738, - [1739] = 1739, - [1740] = 1740, - [1741] = 1741, - [1742] = 1742, - [1743] = 1743, - [1744] = 1650, - [1745] = 163, - [1746] = 626, - [1747] = 630, - [1748] = 594, - [1749] = 593, - [1750] = 596, - [1751] = 598, - [1752] = 1661, - [1753] = 308, - [1754] = 557, - [1755] = 1628, - [1756] = 608, - [1757] = 575, - [1758] = 626, - [1759] = 608, - [1760] = 560, - [1761] = 313, - [1762] = 581, - [1763] = 575, - [1764] = 319, - [1765] = 1765, - [1766] = 577, - [1767] = 320, - [1768] = 1678, - [1769] = 474, - [1770] = 612, - [1771] = 622, - [1772] = 562, - [1773] = 563, - [1774] = 566, - [1775] = 569, - [1776] = 570, - [1777] = 577, - [1778] = 576, - [1779] = 578, - [1780] = 580, - [1781] = 586, - [1782] = 595, - [1783] = 612, - [1784] = 350, - [1785] = 553, - [1786] = 607, - [1787] = 564, - [1788] = 591, - [1789] = 1673, - [1790] = 348, - [1791] = 622, - [1792] = 555, - [1793] = 1634, - [1794] = 1794, - [1795] = 170, - [1796] = 1519, - [1797] = 1797, - [1798] = 580, - [1799] = 586, - [1800] = 171, - [1801] = 595, - [1802] = 609, - [1803] = 549, - [1804] = 552, - [1805] = 235, - [1806] = 616, - [1807] = 445, - [1808] = 607, - [1809] = 556, - [1810] = 166, - [1811] = 1522, - [1812] = 562, - [1813] = 352, - [1814] = 563, - [1815] = 1815, - [1816] = 1679, - [1817] = 349, - [1818] = 360, - [1819] = 611, - [1820] = 170, - [1821] = 1821, - [1822] = 629, - [1823] = 1823, - [1824] = 1639, - [1825] = 1647, - [1826] = 169, - [1827] = 593, - [1828] = 566, - [1829] = 1680, - [1830] = 1686, - [1831] = 363, - [1832] = 364, - [1833] = 1606, - [1834] = 1645, - [1835] = 447, - [1836] = 365, - [1837] = 366, - [1838] = 367, - [1839] = 569, - [1840] = 368, - [1841] = 596, - [1842] = 570, - [1843] = 619, - [1844] = 618, - [1845] = 350, - [1846] = 348, - [1847] = 352, - [1848] = 349, - [1849] = 360, - [1850] = 363, - [1851] = 364, - [1852] = 365, - [1853] = 366, - [1854] = 367, - [1855] = 368, - [1856] = 369, - [1857] = 370, - [1858] = 372, - [1859] = 373, - [1860] = 374, - [1861] = 375, - [1862] = 376, - [1863] = 378, - [1864] = 382, - [1865] = 383, - [1866] = 385, - [1867] = 369, - [1868] = 370, - [1869] = 372, - [1870] = 373, - [1871] = 374, - [1872] = 375, - [1873] = 571, - [1874] = 376, - [1875] = 627, - [1876] = 382, - [1877] = 383, - [1878] = 385, - [1879] = 591, - [1880] = 592, - [1881] = 611, - [1882] = 576, - [1883] = 555, - [1884] = 578, - [1885] = 571, - [1886] = 620, - [1887] = 609, - [1888] = 171, - [1889] = 560, - [1890] = 581, - [1891] = 613, - [1892] = 615, - [1893] = 610, - [1894] = 614, - [1895] = 1895, - [1896] = 597, - [1897] = 374, - [1898] = 383, - [1899] = 1899, - [1900] = 1519, - [1901] = 388, - [1902] = 369, - [1903] = 370, - [1904] = 372, - [1905] = 1905, - [1906] = 512, - [1907] = 373, - [1908] = 1908, - [1909] = 164, - [1910] = 236, - [1911] = 1911, - [1912] = 1912, - [1913] = 1913, - [1914] = 366, - [1915] = 1915, - [1916] = 1916, - [1917] = 1917, - [1918] = 1918, - [1919] = 1919, - [1920] = 1920, - [1921] = 1921, - [1922] = 1922, - [1923] = 1923, - [1924] = 1924, - [1925] = 349, - [1926] = 368, - [1927] = 1927, - [1928] = 1928, - [1929] = 389, - [1930] = 1930, - [1931] = 1931, - [1932] = 1522, - [1933] = 1933, - [1934] = 1934, - [1935] = 1935, - [1936] = 1936, - [1937] = 352, - [1938] = 1930, - [1939] = 1939, - [1940] = 1940, - [1941] = 1941, - [1942] = 1942, - [1943] = 1913, - [1944] = 1939, - [1945] = 1945, - [1946] = 375, - [1947] = 1947, - [1948] = 385, + [1736] = 1736, + [1737] = 1737, + [1738] = 631, + [1739] = 688, + [1740] = 633, + [1741] = 635, + [1742] = 1697, + [1743] = 677, + [1744] = 640, + [1745] = 680, + [1746] = 683, + [1747] = 637, + [1748] = 636, + [1749] = 623, + [1750] = 632, + [1751] = 647, + [1752] = 653, + [1753] = 661, + [1754] = 662, + [1755] = 667, + [1756] = 668, + [1757] = 675, + [1758] = 686, + [1759] = 611, + [1760] = 613, + [1761] = 614, + [1762] = 616, + [1763] = 619, + [1764] = 620, + [1765] = 621, + [1766] = 656, + [1767] = 685, + [1768] = 625, + [1769] = 612, + [1770] = 1733, + [1771] = 682, + [1772] = 692, + [1773] = 1661, + [1774] = 161, + [1775] = 480, + [1776] = 669, + [1777] = 671, + [1778] = 513, + [1779] = 162, + [1780] = 163, + [1781] = 155, + [1782] = 156, + [1783] = 158, + [1784] = 369, + [1785] = 159, + [1786] = 160, + [1787] = 164, + [1788] = 157, + [1789] = 370, + [1790] = 1673, + [1791] = 1735, + [1792] = 1792, + [1793] = 1793, + [1794] = 1701, + [1795] = 1795, + [1796] = 153, + [1797] = 527, + [1798] = 528, + [1799] = 529, + [1800] = 1800, + [1801] = 1801, + [1802] = 536, + [1803] = 154, + [1804] = 1804, + [1805] = 384, + [1806] = 1806, + [1807] = 383, + [1808] = 387, + [1809] = 389, + [1810] = 620, + [1811] = 621, + [1812] = 1726, + [1813] = 1680, + [1814] = 1814, + [1815] = 608, + [1816] = 205, + [1817] = 1817, + [1818] = 155, + [1819] = 156, + [1820] = 1701, + [1821] = 158, + [1822] = 1733, + [1823] = 159, + [1824] = 160, + [1825] = 1658, + [1826] = 1661, + [1827] = 157, + [1828] = 639, + [1829] = 641, + [1830] = 643, + [1831] = 1831, + [1832] = 622, + [1833] = 630, + [1834] = 648, + [1835] = 650, + [1836] = 684, + [1837] = 1837, + [1838] = 1838, + [1839] = 672, + [1840] = 674, + [1841] = 626, + [1842] = 1842, + [1843] = 1843, + [1844] = 638, + [1845] = 645, + [1846] = 649, + [1847] = 655, + [1848] = 657, + [1849] = 660, + [1850] = 663, + [1851] = 526, + [1852] = 1804, + [1853] = 1800, + [1854] = 1817, + [1855] = 1661, + [1856] = 1856, + [1857] = 157, + [1858] = 1858, + [1859] = 1859, + [1860] = 1860, + [1861] = 1861, + [1862] = 1862, + [1863] = 1863, + [1864] = 1864, + [1865] = 1865, + [1866] = 1866, + [1867] = 1867, + [1868] = 1868, + [1869] = 1869, + [1870] = 1870, + [1871] = 155, + [1872] = 156, + [1873] = 158, + [1874] = 1733, + [1875] = 608, + [1876] = 1831, + [1877] = 158, + [1878] = 159, + [1879] = 160, + [1880] = 157, + [1881] = 1837, + [1882] = 1838, + [1883] = 1883, + [1884] = 1842, + [1885] = 1843, + [1886] = 161, + [1887] = 1883, + [1888] = 1792, + [1889] = 1793, + [1890] = 631, + [1891] = 688, + [1892] = 622, + [1893] = 159, + [1894] = 161, + [1895] = 633, + [1896] = 635, + [1897] = 677, + [1898] = 630, + [1899] = 648, + [1900] = 650, + [1901] = 684, + [1902] = 1814, + [1903] = 1795, + [1904] = 639, + [1905] = 640, + [1906] = 641, + [1907] = 672, + [1908] = 674, + [1909] = 626, + [1910] = 680, + [1911] = 1736, + [1912] = 1737, + [1913] = 162, + [1914] = 163, + [1915] = 683, + [1916] = 162, + [1917] = 643, + [1918] = 638, + [1919] = 645, + [1920] = 649, + [1921] = 655, + [1922] = 657, + [1923] = 660, + [1924] = 663, + [1925] = 637, + [1926] = 636, + [1927] = 623, + [1928] = 632, + [1929] = 647, + [1930] = 653, + [1931] = 661, + [1932] = 662, + [1933] = 667, + [1934] = 668, + [1935] = 675, + [1936] = 686, + [1937] = 611, + [1938] = 613, + [1939] = 614, + [1940] = 616, + [1941] = 619, + [1942] = 620, + [1943] = 163, + [1944] = 621, + [1945] = 384, + [1946] = 656, + [1947] = 685, + [1948] = 383, [1949] = 1949, [1950] = 1950, - [1951] = 1951, - [1952] = 1952, + [1951] = 1637, + [1952] = 1638, [1953] = 1953, - [1954] = 1954, - [1955] = 1955, - [1956] = 165, - [1957] = 1957, + [1954] = 1641, + [1955] = 1644, + [1956] = 480, + [1957] = 513, [1958] = 1958, - [1959] = 1959, - [1960] = 1960, - [1961] = 1961, - [1962] = 235, - [1963] = 164, - [1964] = 165, - [1965] = 367, - [1966] = 164, - [1967] = 1940, - [1968] = 1968, - [1969] = 1969, - [1970] = 1970, - [1971] = 363, - [1972] = 1972, - [1973] = 348, - [1974] = 1974, - [1975] = 235, + [1959] = 387, + [1960] = 164, + [1961] = 389, + [1962] = 206, + [1963] = 160, + [1964] = 1733, + [1965] = 1661, + [1966] = 625, + [1967] = 612, + [1968] = 682, + [1969] = 692, + [1970] = 669, + [1971] = 671, + [1972] = 1856, + [1973] = 1883, + [1974] = 1856, + [1975] = 1801, [1976] = 1976, [1977] = 1977, - [1978] = 236, - [1979] = 1979, - [1980] = 165, + [1978] = 161, + [1979] = 455, + [1980] = 1980, [1981] = 1981, - [1982] = 360, - [1983] = 1957, - [1984] = 1984, + [1982] = 1982, + [1983] = 680, + [1984] = 683, [1985] = 1985, [1986] = 1986, - [1987] = 350, - [1988] = 1988, - [1989] = 1989, - [1990] = 365, - [1991] = 1991, - [1992] = 364, - [1993] = 163, - [1994] = 376, - [1995] = 378, - [1996] = 432, - [1997] = 1997, - [1998] = 382, - [1999] = 1999, - [2000] = 614, - [2001] = 1402, - [2002] = 608, - [2003] = 2003, - [2004] = 164, - [2005] = 619, - [2006] = 388, - [2007] = 577, - [2008] = 2008, - [2009] = 432, - [2010] = 1418, - [2011] = 612, - [2012] = 575, - [2013] = 622, - [2014] = 171, + [1987] = 153, + [1988] = 637, + [1989] = 448, + [1990] = 636, + [1991] = 623, + [1992] = 632, + [1993] = 647, + [1994] = 653, + [1995] = 1995, + [1996] = 447, + [1997] = 661, + [1998] = 662, + [1999] = 667, + [2000] = 668, + [2001] = 675, + [2002] = 2002, + [2003] = 152, + [2004] = 686, + [2005] = 2005, + [2006] = 611, + [2007] = 613, + [2008] = 614, + [2009] = 616, + [2010] = 2010, + [2011] = 2011, + [2012] = 619, + [2013] = 412, + [2014] = 414, [2015] = 2015, - [2016] = 473, - [2017] = 2017, - [2018] = 169, - [2019] = 562, - [2020] = 563, - [2021] = 165, - [2022] = 566, - [2023] = 569, - [2024] = 570, + [2016] = 464, + [2017] = 407, + [2018] = 411, + [2019] = 417, + [2020] = 445, + [2021] = 162, + [2022] = 473, + [2023] = 420, + [2024] = 163, [2025] = 2025, - [2026] = 169, - [2027] = 576, - [2028] = 389, - [2029] = 578, - [2030] = 580, - [2031] = 586, + [2026] = 2026, + [2027] = 2027, + [2028] = 2028, + [2029] = 2029, + [2030] = 2030, + [2031] = 2031, [2032] = 2032, - [2033] = 595, - [2034] = 607, - [2035] = 1400, - [2036] = 166, - [2037] = 2015, - [2038] = 474, - [2039] = 2039, - [2040] = 167, + [2033] = 2033, + [2034] = 362, + [2035] = 2035, + [2036] = 2036, + [2037] = 2037, + [2038] = 354, + [2039] = 688, + [2040] = 2040, [2041] = 2041, - [2042] = 1922, + [2042] = 2042, [2043] = 2043, - [2044] = 236, - [2045] = 477, - [2046] = 168, - [2047] = 626, - [2048] = 482, - [2049] = 610, + [2044] = 2044, + [2045] = 2045, + [2046] = 2046, + [2047] = 2047, + [2048] = 2048, + [2049] = 2049, [2050] = 2050, - [2051] = 171, - [2052] = 2050, - [2053] = 2053, - [2054] = 2054, - [2055] = 389, - [2056] = 2032, - [2057] = 2025, - [2058] = 216, - [2059] = 1999, - [2060] = 571, - [2061] = 166, - [2062] = 2008, - [2063] = 1419, - [2064] = 167, - [2065] = 170, - [2066] = 2054, - [2067] = 2017, - [2068] = 2041, - [2069] = 2043, - [2070] = 163, - [2071] = 235, - [2072] = 2039, - [2073] = 168, - [2074] = 170, - [2075] = 469, - [2076] = 591, - [2077] = 215, - [2078] = 555, - [2079] = 1568, - [2080] = 1574, - [2081] = 172, - [2082] = 173, - [2083] = 1575, - [2084] = 1576, - [2085] = 1577, - [2086] = 1578, + [2051] = 2051, + [2052] = 421, + [2053] = 426, + [2054] = 427, + [2055] = 429, + [2056] = 436, + [2057] = 437, + [2058] = 2058, + [2059] = 423, + [2060] = 2060, + [2061] = 2046, + [2062] = 1977, + [2063] = 2063, + [2064] = 438, + [2065] = 441, + [2066] = 442, + [2067] = 401, + [2068] = 402, + [2069] = 2069, + [2070] = 2070, + [2071] = 2071, + [2072] = 2072, + [2073] = 2073, + [2074] = 2063, + [2075] = 2075, + [2076] = 2076, + [2077] = 2077, + [2078] = 2078, + [2079] = 2079, + [2080] = 2080, + [2081] = 2081, + [2082] = 2082, + [2083] = 677, + [2084] = 2084, + [2085] = 154, + [2086] = 405, [2087] = 2087, [2088] = 2088, - [2089] = 2089, + [2089] = 641, [2090] = 2090, - [2091] = 2091, - [2092] = 170, + [2091] = 158, + [2092] = 155, [2093] = 2093, - [2094] = 2094, - [2095] = 171, - [2096] = 166, + [2094] = 156, + [2095] = 2095, + [2096] = 2096, [2097] = 2097, [2098] = 2098, - [2099] = 169, + [2099] = 2099, [2100] = 2100, [2101] = 2101, [2102] = 2102, [2103] = 2103, - [2104] = 198, + [2104] = 2104, [2105] = 2105, [2106] = 2106, [2107] = 2107, [2108] = 2108, - [2109] = 2109, + [2109] = 159, [2110] = 2110, [2111] = 2111, - [2112] = 2112, - [2113] = 2113, - [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2118, - [2119] = 473, - [2120] = 469, + [2112] = 631, + [2113] = 455, + [2114] = 160, + [2115] = 656, + [2116] = 633, + [2117] = 635, + [2118] = 685, + [2119] = 639, + [2120] = 640, [2121] = 2121, - [2122] = 2122, - [2123] = 2123, - [2124] = 2124, - [2125] = 477, - [2126] = 482, - [2127] = 2127, - [2128] = 2128, - [2129] = 2129, + [2122] = 2087, + [2123] = 643, + [2124] = 473, + [2125] = 529, + [2126] = 2126, + [2127] = 464, + [2128] = 164, + [2129] = 536, [2130] = 2130, - [2131] = 2131, - [2132] = 174, - [2133] = 2133, - [2134] = 2134, + [2131] = 625, + [2132] = 612, + [2133] = 682, + [2134] = 692, [2135] = 2135, - [2136] = 172, - [2137] = 173, - [2138] = 2138, - [2139] = 474, + [2136] = 669, + [2137] = 671, + [2138] = 536, + [2139] = 157, [2140] = 2140, - [2141] = 2141, - [2142] = 214, + [2141] = 2135, + [2142] = 2140, [2143] = 2143, [2144] = 2144, [2145] = 2145, - [2146] = 2146, - [2147] = 1519, + [2146] = 2126, + [2147] = 2121, [2148] = 2148, - [2149] = 2149, - [2150] = 2150, - [2151] = 174, - [2152] = 2152, - [2153] = 2153, - [2154] = 1522, + [2149] = 2130, + [2150] = 2140, + [2151] = 2140, + [2152] = 2140, + [2153] = 527, + [2154] = 526, [2155] = 2155, - [2156] = 2156, - [2157] = 2157, - [2158] = 223, + [2156] = 528, + [2157] = 2148, + [2158] = 1870, [2159] = 2159, - [2160] = 1495, + [2160] = 2160, [2161] = 2161, [2162] = 2162, [2163] = 2163, [2164] = 2164, [2165] = 2165, - [2166] = 1419, + [2166] = 2166, [2167] = 2167, - [2168] = 2168, + [2168] = 1733, [2169] = 2169, [2170] = 2170, [2171] = 2171, [2172] = 2172, - [2173] = 1400, - [2174] = 1402, - [2175] = 222, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, [2176] = 2176, [2177] = 2177, [2178] = 2178, - [2179] = 2179, + [2179] = 1661, [2180] = 2180, [2181] = 2181, [2182] = 2182, @@ -7411,124 +7306,124 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2190] = 2190, [2191] = 2191, [2192] = 2192, - [2193] = 2143, + [2193] = 2193, [2194] = 2194, - [2195] = 474, + [2195] = 2195, [2196] = 2196, - [2197] = 2197, + [2197] = 161, [2198] = 2198, [2199] = 2199, - [2200] = 2200, - [2201] = 2201, + [2200] = 1637, + [2201] = 1638, [2202] = 2202, [2203] = 2203, [2204] = 2204, - [2205] = 2205, - [2206] = 2206, + [2205] = 1641, + [2206] = 1644, [2207] = 2207, - [2208] = 2208, + [2208] = 2195, [2209] = 2209, - [2210] = 2210, + [2210] = 310, [2211] = 2211, [2212] = 2212, [2213] = 2213, [2214] = 2214, - [2215] = 1548, - [2216] = 1554, - [2217] = 1556, - [2218] = 473, - [2219] = 167, - [2220] = 168, - [2221] = 469, - [2222] = 1565, - [2223] = 1567, + [2215] = 2215, + [2216] = 2216, + [2217] = 2217, + [2218] = 2218, + [2219] = 2219, + [2220] = 2220, + [2221] = 152, + [2222] = 2222, + [2223] = 2223, [2224] = 2224, [2225] = 2225, [2226] = 2226, [2227] = 2227, [2228] = 2228, - [2229] = 164, + [2229] = 2229, [2230] = 2230, - [2231] = 477, - [2232] = 482, + [2231] = 2231, + [2232] = 2232, [2233] = 2233, [2234] = 2234, [2235] = 2235, [2236] = 2236, [2237] = 2237, - [2238] = 2238, - [2239] = 165, - [2240] = 2240, - [2241] = 2241, - [2242] = 1570, - [2243] = 1572, - [2244] = 1418, - [2245] = 2245, - [2246] = 2246, + [2238] = 1869, + [2239] = 2239, + [2240] = 527, + [2241] = 526, + [2242] = 1858, + [2243] = 162, + [2244] = 528, + [2245] = 529, + [2246] = 163, [2247] = 2247, [2248] = 2248, - [2249] = 629, + [2249] = 2249, [2250] = 2250, [2251] = 2251, - [2252] = 2252, + [2252] = 1859, [2253] = 2253, [2254] = 2254, - [2255] = 251, + [2255] = 2255, [2256] = 2256, - [2257] = 549, + [2257] = 2257, [2258] = 2258, [2259] = 2259, - [2260] = 552, - [2261] = 597, + [2260] = 2260, + [2261] = 1860, [2262] = 2262, [2263] = 2263, [2264] = 2264, - [2265] = 2167, - [2266] = 2266, - [2267] = 246, + [2265] = 2265, + [2266] = 536, + [2267] = 2267, [2268] = 2268, - [2269] = 2168, + [2269] = 2269, [2270] = 2270, - [2271] = 555, - [2272] = 1495, + [2271] = 1701, + [2272] = 2272, [2273] = 2273, [2274] = 2274, - [2275] = 474, + [2275] = 2275, [2276] = 2276, - [2277] = 598, + [2277] = 2277, [2278] = 2278, - [2279] = 2279, - [2280] = 2162, + [2279] = 1861, + [2280] = 1862, [2281] = 2281, [2282] = 2282, - [2283] = 2283, + [2283] = 1863, [2284] = 2284, - [2285] = 216, - [2286] = 215, - [2287] = 248, - [2288] = 2288, + [2285] = 2217, + [2286] = 2286, + [2287] = 2287, + [2288] = 1864, [2289] = 2289, - [2290] = 1823, + [2290] = 1865, [2291] = 2291, [2292] = 2292, - [2293] = 2293, + [2293] = 1866, [2294] = 2294, [2295] = 2295, - [2296] = 2143, - [2297] = 2297, + [2296] = 2296, + [2297] = 362, [2298] = 2298, - [2299] = 2299, + [2299] = 1867, [2300] = 2300, [2301] = 2301, - [2302] = 512, - [2303] = 2303, + [2302] = 354, + [2303] = 1868, [2304] = 2304, [2305] = 2305, [2306] = 2306, [2307] = 2307, - [2308] = 249, + [2308] = 1701, [2309] = 2309, - [2310] = 2310, + [2310] = 354, [2311] = 2311, [2312] = 2312, [2313] = 2313, @@ -7538,19 +7433,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2317] = 2317, [2318] = 2318, [2319] = 2319, - [2320] = 1238, + [2320] = 2320, [2321] = 2321, - [2322] = 1794, + [2322] = 2322, [2323] = 2323, [2324] = 2324, - [2325] = 593, - [2326] = 596, + [2325] = 328, + [2326] = 2326, [2327] = 2327, - [2328] = 1765, - [2329] = 1495, + [2328] = 2328, + [2329] = 2329, [2330] = 2330, - [2331] = 560, - [2332] = 581, + [2331] = 2331, + [2332] = 2332, [2333] = 2333, [2334] = 2334, [2335] = 2335, @@ -7558,2069 +7453,2069 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2337] = 2337, [2338] = 2338, [2339] = 2339, - [2340] = 219, + [2340] = 2340, [2341] = 2341, - [2342] = 553, - [2343] = 564, - [2344] = 2161, + [2342] = 2342, + [2343] = 2343, + [2344] = 2344, [2345] = 2345, [2346] = 2346, [2347] = 2347, - [2348] = 2161, + [2348] = 2348, [2349] = 2349, - [2350] = 2162, + [2350] = 2350, [2351] = 2351, - [2352] = 2352, + [2352] = 324, [2353] = 2353, [2354] = 2354, [2355] = 2355, - [2356] = 204, + [2356] = 328, [2357] = 2357, - [2358] = 611, - [2359] = 2359, - [2360] = 217, + [2358] = 153, + [2359] = 316, + [2360] = 2360, [2361] = 2361, [2362] = 2362, [2363] = 2363, [2364] = 2364, [2365] = 2365, - [2366] = 170, + [2366] = 2366, [2367] = 2367, - [2368] = 171, - [2369] = 166, + [2368] = 2368, + [2369] = 152, [2370] = 2370, - [2371] = 169, - [2372] = 2167, - [2373] = 2143, - [2374] = 2370, - [2375] = 2263, - [2376] = 2314, - [2377] = 174, - [2378] = 2273, - [2379] = 2300, + [2371] = 2371, + [2372] = 2372, + [2373] = 154, + [2374] = 2374, + [2375] = 2375, + [2376] = 2376, + [2377] = 2377, + [2378] = 2378, + [2379] = 2379, [2380] = 2380, [2381] = 2381, - [2382] = 2168, + [2382] = 2382, [2383] = 2383, [2384] = 2384, [2385] = 2385, [2386] = 2386, - [2387] = 2337, - [2388] = 172, - [2389] = 173, + [2387] = 2387, + [2388] = 2388, + [2389] = 2389, [2390] = 2390, [2391] = 2391, [2392] = 2392, [2393] = 2393, - [2394] = 2162, + [2394] = 2394, [2395] = 2395, - [2396] = 2383, + [2396] = 608, [2397] = 2397, - [2398] = 2167, - [2399] = 2168, + [2398] = 2398, + [2399] = 322, [2400] = 2400, [2401] = 2401, - [2402] = 609, + [2402] = 2402, [2403] = 2403, [2404] = 2404, - [2405] = 218, + [2405] = 2405, [2406] = 2406, [2407] = 2407, [2408] = 2408, - [2409] = 613, + [2409] = 2409, [2410] = 2410, - [2411] = 615, + [2411] = 2411, [2412] = 2412, [2413] = 2413, [2414] = 2414, [2415] = 2415, - [2416] = 167, - [2417] = 168, - [2418] = 2418, + [2416] = 2416, + [2417] = 2417, + [2418] = 317, [2419] = 2419, [2420] = 2420, [2421] = 2421, - [2422] = 2422, + [2422] = 362, [2423] = 2423, [2424] = 2424, - [2425] = 2161, + [2425] = 2425, [2426] = 2426, - [2427] = 591, + [2427] = 324, [2428] = 2428, - [2429] = 614, - [2430] = 169, - [2431] = 596, - [2432] = 388, + [2429] = 2416, + [2430] = 2430, + [2431] = 620, + [2432] = 2432, [2433] = 2433, - [2434] = 223, - [2435] = 222, - [2436] = 596, - [2437] = 2437, - [2438] = 591, - [2439] = 218, - [2440] = 571, - [2441] = 611, + [2434] = 2414, + [2435] = 2393, + [2436] = 2436, + [2437] = 2313, + [2438] = 2307, + [2439] = 621, + [2440] = 2412, + [2441] = 2441, [2442] = 2442, [2443] = 2443, [2444] = 2444, - [2445] = 2445, + [2445] = 342, [2446] = 2446, - [2447] = 2442, - [2448] = 560, - [2449] = 581, - [2450] = 175, - [2451] = 2451, - [2452] = 2444, - [2453] = 619, - [2454] = 553, - [2455] = 564, - [2456] = 2456, - [2457] = 2457, - [2458] = 1794, - [2459] = 2459, - [2460] = 609, - [2461] = 2461, - [2462] = 2341, - [2463] = 613, - [2464] = 615, - [2465] = 598, - [2466] = 2466, - [2467] = 224, - [2468] = 2445, - [2469] = 2469, - [2470] = 2446, - [2471] = 2471, - [2472] = 626, - [2473] = 225, - [2474] = 226, - [2475] = 228, - [2476] = 2476, - [2477] = 608, - [2478] = 2478, - [2479] = 560, - [2480] = 2480, - [2481] = 581, - [2482] = 1735, - [2483] = 2246, - [2484] = 2478, - [2485] = 2485, - [2486] = 607, - [2487] = 2457, - [2488] = 555, - [2489] = 1738, - [2490] = 2247, - [2491] = 1740, - [2492] = 2476, - [2493] = 2493, - [2494] = 2494, - [2495] = 474, - [2496] = 1519, - [2497] = 2248, - [2498] = 198, - [2499] = 1522, - [2500] = 170, - [2501] = 593, - [2502] = 1743, - [2503] = 2503, - [2504] = 610, - [2505] = 2505, - [2506] = 553, - [2507] = 564, - [2508] = 171, - [2509] = 1739, - [2510] = 1765, - [2511] = 2459, - [2512] = 1701, - [2513] = 1702, - [2514] = 1707, - [2515] = 2413, - [2516] = 2451, - [2517] = 2517, - [2518] = 2503, - [2519] = 575, - [2520] = 2461, - [2521] = 2466, - [2522] = 577, - [2523] = 1709, - [2524] = 1823, - [2525] = 166, - [2526] = 612, - [2527] = 2415, - [2528] = 622, - [2529] = 1710, - [2530] = 2418, - [2531] = 1714, - [2532] = 2420, - [2533] = 1718, - [2534] = 2422, - [2535] = 2517, - [2536] = 432, - [2537] = 174, - [2538] = 629, - [2539] = 1719, - [2540] = 2423, - [2541] = 562, - [2542] = 563, - [2543] = 172, - [2544] = 173, - [2545] = 566, - [2546] = 569, - [2547] = 570, - [2548] = 1721, - [2549] = 2424, - [2550] = 576, - [2551] = 549, - [2552] = 552, - [2553] = 597, - [2554] = 1731, - [2555] = 2443, - [2556] = 2426, - [2557] = 578, - [2558] = 580, - [2559] = 586, - [2560] = 595, - [2561] = 1732, - [2562] = 2476, - [2563] = 593, - [2564] = 363, - [2565] = 171, - [2566] = 593, - [2567] = 166, - [2568] = 175, - [2569] = 365, - [2570] = 596, - [2571] = 366, - [2572] = 2433, - [2573] = 367, - [2574] = 169, - [2575] = 368, - [2576] = 163, - [2577] = 369, - [2578] = 370, - [2579] = 372, - [2580] = 373, - [2581] = 374, - [2582] = 553, - [2583] = 375, - [2584] = 376, - [2585] = 378, - [2586] = 564, - [2587] = 382, - [2588] = 383, - [2589] = 385, - [2590] = 2505, - [2591] = 350, - [2592] = 250, - [2593] = 204, - [2594] = 224, - [2595] = 2471, - [2596] = 251, - [2597] = 352, - [2598] = 216, - [2599] = 215, - [2600] = 225, - [2601] = 226, - [2602] = 348, - [2603] = 228, - [2604] = 560, - [2605] = 247, - [2606] = 235, - [2607] = 246, - [2608] = 248, - [2609] = 360, - [2610] = 236, - [2611] = 388, - [2612] = 581, - [2613] = 349, - [2614] = 432, - [2615] = 170, - [2616] = 1519, - [2617] = 2493, - [2618] = 2494, - [2619] = 249, - [2620] = 1522, - [2621] = 364, - [2622] = 163, - [2623] = 165, - [2624] = 163, - [2625] = 223, - [2626] = 222, - [2627] = 235, - [2628] = 292, - [2629] = 294, - [2630] = 164, - [2631] = 236, - [2632] = 165, - [2633] = 164, - [2634] = 2634, - [2635] = 2635, + [2447] = 2096, + [2448] = 2331, + [2449] = 2449, + [2450] = 653, + [2451] = 154, + [2452] = 536, + [2453] = 671, + [2454] = 340, + [2455] = 346, + [2456] = 2093, + [2457] = 625, + [2458] = 2330, + [2459] = 2097, + [2460] = 2110, + [2461] = 317, + [2462] = 636, + [2463] = 2332, + [2464] = 611, + [2465] = 643, + [2466] = 620, + [2467] = 637, + [2468] = 613, + [2469] = 2144, + [2470] = 614, + [2471] = 2095, + [2472] = 159, + [2473] = 343, + [2474] = 616, + [2475] = 661, + [2476] = 2098, + [2477] = 2333, + [2478] = 2145, + [2479] = 619, + [2480] = 683, + [2481] = 2099, + [2482] = 2334, + [2483] = 662, + [2484] = 677, + [2485] = 667, + [2486] = 2100, + [2487] = 631, + [2488] = 612, + [2489] = 668, + [2490] = 621, + [2491] = 675, + [2492] = 2335, + [2493] = 2101, + [2494] = 692, + [2495] = 633, + [2496] = 2336, + [2497] = 344, + [2498] = 2102, + [2499] = 686, + [2500] = 340, + [2501] = 2103, + [2502] = 641, + [2503] = 685, + [2504] = 669, + [2505] = 158, + [2506] = 635, + [2507] = 682, + [2508] = 2306, + [2509] = 343, + [2510] = 2104, + [2511] = 160, + [2512] = 157, + [2513] = 623, + [2514] = 2514, + [2515] = 2337, + [2516] = 656, + [2517] = 2108, + [2518] = 2105, + [2519] = 680, + [2520] = 155, + [2521] = 632, + [2522] = 2338, + [2523] = 156, + [2524] = 2155, + [2525] = 647, + [2526] = 688, + [2527] = 153, + [2528] = 639, + [2529] = 2143, + [2530] = 2106, + [2531] = 2339, + [2532] = 640, + [2533] = 2107, + [2534] = 2340, + [2535] = 339, + [2536] = 324, + [2537] = 2537, + [2538] = 328, + [2539] = 162, + [2540] = 2540, + [2541] = 352, + [2542] = 354, + [2543] = 358, + [2544] = 160, + [2545] = 353, + [2546] = 2537, + [2547] = 155, + [2548] = 2548, + [2549] = 2540, + [2550] = 2550, + [2551] = 352, + [2552] = 1391, + [2553] = 2553, + [2554] = 2548, + [2555] = 355, + [2556] = 2556, + [2557] = 157, + [2558] = 161, + [2559] = 356, + [2560] = 2553, + [2561] = 2556, + [2562] = 159, + [2563] = 342, + [2564] = 339, + [2565] = 163, + [2566] = 346, + [2567] = 152, + [2568] = 156, + [2569] = 362, + [2570] = 344, + [2571] = 2571, + [2572] = 360, + [2573] = 158, + [2574] = 355, + [2575] = 353, + [2576] = 2571, + [2577] = 360, + [2578] = 2578, + [2579] = 152, + [2580] = 2580, + [2581] = 2581, + [2582] = 343, + [2583] = 340, + [2584] = 369, + [2585] = 370, + [2586] = 153, + [2587] = 2587, + [2588] = 154, + [2589] = 2589, + [2590] = 2590, + [2591] = 2591, + [2592] = 2592, + [2593] = 2593, + [2594] = 2594, + [2595] = 2593, + [2596] = 2596, + [2597] = 2589, + [2598] = 2590, + [2599] = 2599, + [2600] = 2600, + [2601] = 2601, + [2602] = 2602, + [2603] = 1733, + [2604] = 2591, + [2605] = 1661, + [2606] = 2606, + [2607] = 2587, + [2608] = 164, + [2609] = 2606, + [2610] = 2606, + [2611] = 2596, + [2612] = 625, + [2613] = 612, + [2614] = 160, + [2615] = 692, + [2616] = 161, + [2617] = 669, + [2618] = 671, + [2619] = 162, + [2620] = 163, + [2621] = 2594, + [2622] = 2622, + [2623] = 2623, + [2624] = 464, + [2625] = 2625, + [2626] = 2580, + [2627] = 2627, + [2628] = 2628, + [2629] = 473, + [2630] = 362, + [2631] = 2578, + [2632] = 2599, + [2633] = 2581, + [2634] = 2592, + [2635] = 354, [2636] = 2636, - [2637] = 165, - [2638] = 171, - [2639] = 2639, - [2640] = 166, - [2641] = 1476, - [2642] = 251, - [2643] = 2643, - [2644] = 246, - [2645] = 2645, - [2646] = 170, - [2647] = 2647, - [2648] = 248, - [2649] = 2649, + [2637] = 2578, + [2638] = 2638, + [2639] = 2581, + [2640] = 2578, + [2641] = 2581, + [2642] = 157, + [2643] = 158, + [2644] = 159, + [2645] = 2625, + [2646] = 2638, + [2647] = 2600, + [2648] = 682, + [2649] = 401, [2650] = 2650, - [2651] = 249, - [2652] = 2652, - [2653] = 250, - [2654] = 308, - [2655] = 247, - [2656] = 2656, - [2657] = 313, - [2658] = 2656, - [2659] = 319, - [2660] = 320, - [2661] = 170, - [2662] = 2635, - [2663] = 2663, - [2664] = 167, - [2665] = 168, - [2666] = 2636, - [2667] = 300, - [2668] = 171, - [2669] = 166, - [2670] = 2639, - [2671] = 169, - [2672] = 2650, - [2673] = 169, - [2674] = 250, - [2675] = 164, - [2676] = 324, - [2677] = 167, - [2678] = 168, - [2679] = 516, - [2680] = 2680, - [2681] = 247, - [2682] = 167, - [2683] = 168, - [2684] = 2652, - [2685] = 2685, - [2686] = 516, - [2687] = 2687, - [2688] = 2688, - [2689] = 172, - [2690] = 172, - [2691] = 2634, - [2692] = 474, - [2693] = 477, - [2694] = 550, - [2695] = 250, - [2696] = 2696, - [2697] = 170, - [2698] = 482, - [2699] = 2699, - [2700] = 171, - [2701] = 166, - [2702] = 294, - [2703] = 512, - [2704] = 247, - [2705] = 250, - [2706] = 169, - [2707] = 163, - [2708] = 360, - [2709] = 198, - [2710] = 174, - [2711] = 363, - [2712] = 364, - [2713] = 1495, - [2714] = 365, - [2715] = 366, - [2716] = 367, - [2717] = 550, - [2718] = 368, - [2719] = 168, - [2720] = 369, - [2721] = 370, - [2722] = 294, - [2723] = 372, - [2724] = 247, - [2725] = 373, - [2726] = 374, - [2727] = 375, - [2728] = 376, - [2729] = 2729, - [2730] = 2730, - [2731] = 378, - [2732] = 382, - [2733] = 2729, - [2734] = 383, - [2735] = 385, - [2736] = 292, - [2737] = 173, - [2738] = 292, + [2651] = 155, + [2652] = 156, + [2653] = 2653, + [2654] = 2654, + [2655] = 2655, + [2656] = 591, + [2657] = 2622, + [2658] = 2658, + [2659] = 2659, + [2660] = 158, + [2661] = 159, + [2662] = 2623, + [2663] = 160, + [2664] = 2664, + [2665] = 157, + [2666] = 2627, + [2667] = 2628, + [2668] = 625, + [2669] = 2636, + [2670] = 158, + [2671] = 2671, + [2672] = 612, + [2673] = 2601, + [2674] = 2602, + [2675] = 445, + [2676] = 473, + [2677] = 352, + [2678] = 447, + [2679] = 356, + [2680] = 388, + [2681] = 682, + [2682] = 692, + [2683] = 159, + [2684] = 160, + [2685] = 405, + [2686] = 164, + [2687] = 157, + [2688] = 358, + [2689] = 1661, + [2690] = 353, + [2691] = 671, + [2692] = 355, + [2693] = 669, + [2694] = 2694, + [2695] = 2654, + [2696] = 407, + [2697] = 411, + [2698] = 385, + [2699] = 152, + [2700] = 412, + [2701] = 414, + [2702] = 360, + [2703] = 358, + [2704] = 384, + [2705] = 417, + [2706] = 420, + [2707] = 421, + [2708] = 426, + [2709] = 427, + [2710] = 1733, + [2711] = 153, + [2712] = 429, + [2713] = 436, + [2714] = 437, + [2715] = 438, + [2716] = 441, + [2717] = 442, + [2718] = 383, + [2719] = 402, + [2720] = 356, + [2721] = 423, + [2722] = 387, + [2723] = 464, + [2724] = 389, + [2725] = 154, + [2726] = 2726, + [2727] = 2727, + [2728] = 448, + [2729] = 2726, + [2730] = 442, + [2731] = 429, + [2732] = 436, + [2733] = 437, + [2734] = 438, + [2735] = 441, + [2736] = 153, + [2737] = 401, + [2738] = 402, [2739] = 2739, - [2740] = 173, - [2741] = 172, - [2742] = 1521, - [2743] = 469, - [2744] = 198, - [2745] = 473, - [2746] = 2746, - [2747] = 173, - [2748] = 167, - [2749] = 2730, - [2750] = 2746, - [2751] = 174, - [2752] = 174, - [2753] = 629, - [2754] = 1650, - [2755] = 198, - [2756] = 598, - [2757] = 172, - [2758] = 173, - [2759] = 626, - [2760] = 608, - [2761] = 611, - [2762] = 2762, - [2763] = 593, - [2764] = 1619, - [2765] = 575, - [2766] = 171, - [2767] = 596, - [2768] = 577, - [2769] = 612, - [2770] = 622, - [2771] = 562, - [2772] = 432, - [2773] = 563, - [2774] = 175, - [2775] = 566, - [2776] = 569, - [2777] = 2777, - [2778] = 388, + [2740] = 369, + [2741] = 2741, + [2742] = 154, + [2743] = 155, + [2744] = 156, + [2745] = 158, + [2746] = 370, + [2747] = 369, + [2748] = 159, + [2749] = 160, + [2750] = 370, + [2751] = 358, + [2752] = 2752, + [2753] = 2753, + [2754] = 427, + [2755] = 157, + [2756] = 152, + [2757] = 2752, + [2758] = 2758, + [2759] = 161, + [2760] = 2753, + [2761] = 646, + [2762] = 356, + [2763] = 205, + [2764] = 2659, + [2765] = 2758, + [2766] = 162, + [2767] = 163, + [2768] = 405, + [2769] = 356, + [2770] = 407, + [2771] = 411, + [2772] = 412, + [2773] = 414, + [2774] = 417, + [2775] = 420, + [2776] = 421, + [2777] = 426, + [2778] = 358, [2779] = 2779, - [2780] = 308, - [2781] = 446, - [2782] = 292, - [2783] = 560, - [2784] = 570, - [2785] = 581, - [2786] = 576, - [2787] = 174, - [2788] = 2788, - [2789] = 578, - [2790] = 580, - [2791] = 169, - [2792] = 204, - [2793] = 313, - [2794] = 313, - [2795] = 571, - [2796] = 553, - [2797] = 586, - [2798] = 595, - [2799] = 564, - [2800] = 607, - [2801] = 445, - [2802] = 449, - [2803] = 294, - [2804] = 609, - [2805] = 204, - [2806] = 390, - [2807] = 447, - [2808] = 441, - [2809] = 292, - [2810] = 166, - [2811] = 320, - [2812] = 614, - [2813] = 2813, - [2814] = 619, - [2815] = 319, - [2816] = 591, - [2817] = 163, - [2818] = 555, - [2819] = 2819, - [2820] = 363, - [2821] = 364, - [2822] = 365, - [2823] = 198, - [2824] = 366, - [2825] = 367, - [2826] = 368, - [2827] = 369, - [2828] = 370, - [2829] = 294, - [2830] = 319, - [2831] = 372, - [2832] = 373, - [2833] = 374, - [2834] = 320, - [2835] = 1522, - [2836] = 164, - [2837] = 375, - [2838] = 376, - [2839] = 1519, - [2840] = 378, - [2841] = 613, - [2842] = 382, - [2843] = 615, - [2844] = 383, - [2845] = 385, - [2846] = 549, - [2847] = 597, - [2848] = 610, - [2849] = 2849, - [2850] = 170, - [2851] = 1661, - [2852] = 552, - [2853] = 1607, - [2854] = 165, - [2855] = 175, - [2856] = 308, - [2857] = 360, - [2858] = 313, - [2859] = 474, - [2860] = 2860, - [2861] = 204, - [2862] = 319, - [2863] = 445, - [2864] = 477, - [2865] = 482, - [2866] = 320, - [2867] = 170, - [2868] = 250, - [2869] = 215, - [2870] = 171, - [2871] = 166, - [2872] = 175, - [2873] = 2873, - [2874] = 390, - [2875] = 388, - [2876] = 250, - [2877] = 447, - [2878] = 446, - [2879] = 498, - [2880] = 169, - [2881] = 247, - [2882] = 2882, - [2883] = 497, - [2884] = 164, - [2885] = 452, - [2886] = 216, - [2887] = 165, - [2888] = 449, - [2889] = 308, - [2890] = 319, - [2891] = 165, - [2892] = 167, - [2893] = 320, - [2894] = 313, - [2895] = 499, - [2896] = 168, - [2897] = 2897, - [2898] = 204, - [2899] = 164, - [2900] = 473, - [2901] = 432, - [2902] = 308, - [2903] = 247, - [2904] = 441, - [2905] = 470, - [2906] = 167, - [2907] = 2907, - [2908] = 2908, - [2909] = 294, - [2910] = 2910, + [2780] = 384, + [2781] = 162, + [2782] = 441, + [2783] = 2779, + [2784] = 383, + [2785] = 205, + [2786] = 2786, + [2787] = 387, + [2788] = 442, + [2789] = 401, + [2790] = 389, + [2791] = 2791, + [2792] = 402, + [2793] = 163, + [2794] = 206, + [2795] = 2795, + [2796] = 161, + [2797] = 480, + [2798] = 156, + [2799] = 389, + [2800] = 2800, + [2801] = 511, + [2802] = 158, + [2803] = 591, + [2804] = 2804, + [2805] = 2805, + [2806] = 407, + [2807] = 369, + [2808] = 411, + [2809] = 2809, + [2810] = 513, + [2811] = 383, + [2812] = 155, + [2813] = 152, + [2814] = 159, + [2815] = 384, + [2816] = 160, + [2817] = 157, + [2818] = 414, + [2819] = 417, + [2820] = 420, + [2821] = 205, + [2822] = 2822, + [2823] = 2823, + [2824] = 464, + [2825] = 512, + [2826] = 370, + [2827] = 1610, + [2828] = 481, + [2829] = 369, + [2830] = 2830, + [2831] = 473, + [2832] = 2830, + [2833] = 153, + [2834] = 421, + [2835] = 164, + [2836] = 154, + [2837] = 426, + [2838] = 405, + [2839] = 510, + [2840] = 427, + [2841] = 370, + [2842] = 429, + [2843] = 436, + [2844] = 2791, + [2845] = 2809, + [2846] = 437, + [2847] = 438, + [2848] = 387, + [2849] = 412, + [2850] = 528, + [2851] = 161, + [2852] = 383, + [2853] = 2853, + [2854] = 384, + [2855] = 473, + [2856] = 2856, + [2857] = 387, + [2858] = 529, + [2859] = 389, + [2860] = 384, + [2861] = 206, + [2862] = 2862, + [2863] = 383, + [2864] = 155, + [2865] = 156, + [2866] = 387, + [2867] = 389, + [2868] = 532, + [2869] = 205, + [2870] = 162, + [2871] = 163, + [2872] = 1701, + [2873] = 510, + [2874] = 537, + [2875] = 206, + [2876] = 608, + [2877] = 158, + [2878] = 2878, + [2879] = 527, + [2880] = 526, + [2881] = 159, + [2882] = 160, + [2883] = 2883, + [2884] = 536, + [2885] = 157, + [2886] = 528, + [2887] = 529, + [2888] = 480, + [2889] = 356, + [2890] = 464, + [2891] = 515, + [2892] = 513, + [2893] = 646, + [2894] = 518, + [2895] = 153, + [2896] = 356, + [2897] = 164, + [2898] = 358, + [2899] = 1658, + [2900] = 544, + [2901] = 324, + [2902] = 328, + [2903] = 536, + [2904] = 154, + [2905] = 358, + [2906] = 511, + [2907] = 512, + [2908] = 481, + [2909] = 527, + [2910] = 621, [2911] = 2911, [2912] = 2912, [2913] = 2913, - [2914] = 294, - [2915] = 216, - [2916] = 512, - [2917] = 223, - [2918] = 198, - [2919] = 2907, - [2920] = 216, - [2921] = 168, - [2922] = 2908, - [2923] = 2910, - [2924] = 2911, - [2925] = 215, - [2926] = 1363, - [2927] = 215, - [2928] = 170, - [2929] = 216, - [2930] = 171, - [2931] = 166, - [2932] = 170, - [2933] = 169, - [2934] = 292, - [2935] = 171, - [2936] = 2936, - [2937] = 2937, - [2938] = 173, - [2939] = 166, - [2940] = 222, - [2941] = 250, - [2942] = 169, - [2943] = 2943, - [2944] = 215, - [2945] = 292, - [2946] = 174, - [2947] = 247, - [2948] = 516, - [2949] = 2912, - [2950] = 2913, - [2951] = 172, - [2952] = 319, - [2953] = 170, - [2954] = 172, - [2955] = 173, - [2956] = 610, - [2957] = 223, - [2958] = 2958, - [2959] = 2959, - [2960] = 614, - [2961] = 619, - [2962] = 166, - [2963] = 626, - [2964] = 608, - [2965] = 575, - [2966] = 577, - [2967] = 612, - [2968] = 622, - [2969] = 562, - [2970] = 563, - [2971] = 566, - [2972] = 569, - [2973] = 570, - [2974] = 576, - [2975] = 578, - [2976] = 580, - [2977] = 586, - [2978] = 595, - [2979] = 607, - [2980] = 2980, - [2981] = 2936, - [2982] = 473, - [2983] = 171, - [2984] = 246, - [2985] = 222, - [2986] = 477, - [2987] = 216, - [2988] = 215, - [2989] = 319, - [2990] = 627, - [2991] = 222, - [2992] = 308, - [2993] = 2993, - [2994] = 630, - [2995] = 592, - [2996] = 512, - [2997] = 320, - [2998] = 482, - [2999] = 620, - [3000] = 204, - [3001] = 561, - [3002] = 175, - [3003] = 169, - [3004] = 223, - [3005] = 320, - [3006] = 223, - [3007] = 198, - [3008] = 248, - [3009] = 616, - [3010] = 249, - [3011] = 556, - [3012] = 474, - [3013] = 251, - [3014] = 618, - [3015] = 591, - [3016] = 216, - [3017] = 550, - [3018] = 308, - [3019] = 292, - [3020] = 215, - [3021] = 174, - [3022] = 313, - [3023] = 3023, - [3024] = 1363, - [3025] = 1363, - [3026] = 445, - [3027] = 594, - [3028] = 557, - [3029] = 555, - [3030] = 447, - [3031] = 568, - [3032] = 3032, - [3033] = 571, - [3034] = 3034, - [3035] = 587, - [3036] = 554, - [3037] = 584, - [3038] = 3038, - [3039] = 604, - [3040] = 222, - [3041] = 3041, - [3042] = 3042, - [3043] = 294, - [3044] = 313, - [3045] = 561, - [3046] = 249, - [3047] = 251, - [3048] = 248, - [3049] = 251, - [3050] = 447, - [3051] = 592, - [3052] = 594, - [3053] = 1569, - [3054] = 3054, - [3055] = 204, - [3056] = 580, - [3057] = 607, - [3058] = 223, - [3059] = 568, - [3060] = 586, - [3061] = 610, - [3062] = 3062, - [3063] = 249, - [3064] = 3064, - [3065] = 587, - [3066] = 595, - [3067] = 554, - [3068] = 246, - [3069] = 3069, - [3070] = 223, - [3071] = 445, - [3072] = 584, - [3073] = 614, - [3074] = 308, - [3075] = 3075, - [3076] = 618, - [3077] = 251, - [3078] = 3078, + [2914] = 631, + [2915] = 2915, + [2916] = 162, + [2917] = 163, + [2918] = 157, + [2919] = 688, + [2920] = 2911, + [2921] = 2921, + [2922] = 158, + [2923] = 2923, + [2924] = 2924, + [2925] = 356, + [2926] = 2926, + [2927] = 633, + [2928] = 635, + [2929] = 677, + [2930] = 369, + [2931] = 2921, + [2932] = 640, + [2933] = 2933, + [2934] = 159, + [2935] = 680, + [2936] = 370, + [2937] = 683, + [2938] = 637, + [2939] = 636, + [2940] = 623, + [2941] = 632, + [2942] = 647, + [2943] = 653, + [2944] = 661, + [2945] = 662, + [2946] = 667, + [2947] = 668, + [2948] = 675, + [2949] = 686, + [2950] = 611, + [2951] = 613, + [2952] = 614, + [2953] = 616, + [2954] = 619, + [2955] = 2923, + [2956] = 620, + [2957] = 370, + [2958] = 159, + [2959] = 160, + [2960] = 161, + [2961] = 1661, + [2962] = 656, + [2963] = 205, + [2964] = 164, + [2965] = 358, + [2966] = 369, + [2967] = 685, + [2968] = 639, + [2969] = 641, + [2970] = 612, + [2971] = 2924, + [2972] = 157, + [2973] = 2973, + [2974] = 2926, + [2975] = 643, + [2976] = 1736, + [2977] = 155, + [2978] = 625, + [2979] = 343, + [2980] = 1737, + [2981] = 340, + [2982] = 324, + [2983] = 328, + [2984] = 2933, + [2985] = 1814, + [2986] = 206, + [2987] = 156, + [2988] = 669, + [2989] = 671, + [2990] = 158, + [2991] = 1795, + [2992] = 160, + [2993] = 682, + [2994] = 608, + [2995] = 1533, + [2996] = 591, + [2997] = 692, + [2998] = 1733, + [2999] = 529, + [3000] = 1533, + [3001] = 387, + [3002] = 672, + [3003] = 3003, + [3004] = 621, + [3005] = 369, + [3006] = 159, + [3007] = 205, + [3008] = 655, + [3009] = 157, + [3010] = 630, + [3011] = 657, + [3012] = 674, + [3013] = 660, + [3014] = 160, + [3015] = 384, + [3016] = 684, + [3017] = 536, + [3018] = 162, + [3019] = 383, + [3020] = 677, + [3021] = 370, + [3022] = 387, + [3023] = 389, + [3024] = 528, + [3025] = 163, + [3026] = 638, + [3027] = 389, + [3028] = 608, + [3029] = 626, + [3030] = 164, + [3031] = 2913, + [3032] = 480, + [3033] = 648, + [3034] = 513, + [3035] = 650, + [3036] = 680, + [3037] = 206, + [3038] = 384, + [3039] = 616, + [3040] = 3040, + [3041] = 683, + [3042] = 637, + [3043] = 161, + [3044] = 3044, + [3045] = 636, + [3046] = 623, + [3047] = 632, + [3048] = 3048, + [3049] = 3049, + [3050] = 620, + [3051] = 647, + [3052] = 653, + [3053] = 646, + [3054] = 383, + [3055] = 3055, + [3056] = 661, + [3057] = 662, + [3058] = 667, + [3059] = 619, + [3060] = 352, + [3061] = 663, + [3062] = 668, + [3063] = 3063, + [3064] = 353, + [3065] = 645, + [3066] = 355, + [3067] = 360, + [3068] = 343, + [3069] = 675, + [3070] = 340, + [3071] = 3071, + [3072] = 686, + [3073] = 158, + [3074] = 688, + [3075] = 649, + [3076] = 3076, + [3077] = 611, + [3078] = 613, [3079] = 3079, - [3080] = 248, - [3081] = 320, - [3082] = 175, - [3083] = 3083, - [3084] = 171, - [3085] = 313, - [3086] = 222, - [3087] = 169, - [3088] = 619, - [3089] = 591, - [3090] = 246, - [3091] = 2937, - [3092] = 3092, - [3093] = 627, - [3094] = 555, - [3095] = 626, - [3096] = 222, - [3097] = 630, - [3098] = 608, + [3080] = 527, + [3081] = 622, + [3082] = 614, + [3083] = 655, + [3084] = 616, + [3085] = 619, + [3086] = 661, + [3087] = 662, + [3088] = 3088, + [3089] = 636, + [3090] = 480, + [3091] = 620, + [3092] = 384, + [3093] = 383, + [3094] = 623, + [3095] = 3095, + [3096] = 621, + [3097] = 667, + [3098] = 660, [3099] = 3099, - [3100] = 575, - [3101] = 577, - [3102] = 616, - [3103] = 166, - [3104] = 612, - [3105] = 620, - [3106] = 622, - [3107] = 248, - [3108] = 2943, - [3109] = 604, - [3110] = 562, - [3111] = 563, - [3112] = 246, - [3113] = 556, - [3114] = 566, - [3115] = 569, - [3116] = 570, - [3117] = 571, - [3118] = 249, - [3119] = 576, - [3120] = 3120, - [3121] = 557, - [3122] = 170, - [3123] = 319, - [3124] = 578, - [3125] = 3125, - [3126] = 251, - [3127] = 246, - [3128] = 246, - [3129] = 3129, - [3130] = 251, - [3131] = 249, - [3132] = 1569, - [3133] = 248, - [3134] = 249, - [3135] = 248, - [3136] = 3136, - [3137] = 1569, + [3100] = 668, + [3101] = 675, + [3102] = 3102, + [3103] = 663, + [3104] = 3104, + [3105] = 3105, + [3106] = 3106, + [3107] = 3107, + [3108] = 632, + [3109] = 3109, + [3110] = 158, + [3111] = 3111, + [3112] = 159, + [3113] = 160, + [3114] = 387, + [3115] = 686, + [3116] = 680, + [3117] = 611, + [3118] = 626, + [3119] = 513, + [3120] = 613, + [3121] = 647, + [3122] = 688, + [3123] = 352, + [3124] = 389, + [3125] = 653, + [3126] = 353, + [3127] = 157, + [3128] = 355, + [3129] = 360, + [3130] = 2912, + [3131] = 622, + [3132] = 672, + [3133] = 657, + [3134] = 164, + [3135] = 683, + [3136] = 674, + [3137] = 677, [3138] = 3138, - [3139] = 3139, - [3140] = 3140, - [3141] = 3141, - [3142] = 3142, - [3143] = 3143, - [3144] = 3136, - [3145] = 3145, - [3146] = 3146, + [3139] = 614, + [3140] = 638, + [3141] = 684, + [3142] = 645, + [3143] = 637, + [3144] = 630, + [3145] = 648, + [3146] = 650, [3147] = 3147, - [3148] = 3141, - [3149] = 3140, - [3150] = 3142, - [3151] = 3138, - [3152] = 3143, - [3153] = 3139, + [3148] = 2915, + [3149] = 649, + [3150] = 206, + [3151] = 3151, + [3152] = 3152, + [3153] = 3153, [3154] = 3154, - [3155] = 3146, + [3155] = 3155, [3156] = 3156, - [3157] = 3147, - [3158] = 3158, - [3159] = 3145, - [3160] = 3145, - [3161] = 473, - [3162] = 477, - [3163] = 482, - [3164] = 474, - [3165] = 164, - [3166] = 3166, - [3167] = 165, - [3168] = 175, - [3169] = 469, - [3170] = 170, - [3171] = 167, - [3172] = 168, - [3173] = 474, - [3174] = 469, - [3175] = 218, - [3176] = 163, - [3177] = 473, - [3178] = 477, - [3179] = 482, - [3180] = 3180, - [3181] = 2161, - [3182] = 2162, - [3183] = 469, - [3184] = 2167, - [3185] = 2168, - [3186] = 2143, - [3187] = 473, - [3188] = 474, - [3189] = 250, - [3190] = 247, - [3191] = 477, - [3192] = 482, - [3193] = 171, - [3194] = 166, - [3195] = 169, - [3196] = 1495, - [3197] = 2143, + [3157] = 3157, + [3158] = 3153, + [3159] = 3156, + [3160] = 3160, + [3161] = 3161, + [3162] = 3157, + [3163] = 3152, + [3164] = 3154, + [3165] = 3165, + [3166] = 3161, + [3167] = 3155, + [3168] = 3168, + [3169] = 3160, + [3170] = 3168, + [3171] = 3165, + [3172] = 536, + [3173] = 3173, + [3174] = 3174, + [3175] = 164, + [3176] = 527, + [3177] = 3177, + [3178] = 526, + [3179] = 528, + [3180] = 529, + [3181] = 358, + [3182] = 1701, + [3183] = 528, + [3184] = 536, + [3185] = 317, + [3186] = 529, + [3187] = 526, + [3188] = 356, + [3189] = 3189, + [3190] = 527, + [3191] = 3191, + [3192] = 3192, + [3193] = 1804, + [3194] = 3194, + [3195] = 3195, + [3196] = 344, + [3197] = 3192, [3198] = 3198, [3199] = 3199, - [3200] = 172, - [3201] = 173, - [3202] = 1495, - [3203] = 225, - [3204] = 226, - [3205] = 228, - [3206] = 3206, - [3207] = 3207, - [3208] = 3208, - [3209] = 3209, - [3210] = 3210, - [3211] = 3211, - [3212] = 2161, - [3213] = 2162, - [3214] = 2167, - [3215] = 2168, - [3216] = 1678, - [3217] = 2161, - [3218] = 2162, - [3219] = 224, - [3220] = 3206, - [3221] = 2167, - [3222] = 2168, - [3223] = 2413, - [3224] = 2415, - [3225] = 2418, - [3226] = 2420, - [3227] = 2422, - [3228] = 2423, - [3229] = 2424, - [3230] = 2426, - [3231] = 2341, - [3232] = 2246, - [3233] = 2247, - [3234] = 2248, - [3235] = 1495, - [3236] = 2245, - [3237] = 2367, - [3238] = 2381, - [3239] = 2384, - [3240] = 2390, - [3241] = 2392, - [3242] = 2403, - [3243] = 2251, - [3244] = 2253, - [3245] = 2258, - [3246] = 2304, - [3247] = 2327, - [3248] = 3206, - [3249] = 2401, - [3250] = 2259, - [3251] = 2284, - [3252] = 2305, - [3253] = 2352, - [3254] = 2386, - [3255] = 2256, - [3256] = 2262, - [3257] = 2264, - [3258] = 2278, - [3259] = 2292, - [3260] = 2301, - [3261] = 2307, - [3262] = 2315, - [3263] = 2323, - [3264] = 2333, - [3265] = 2339, - [3266] = 2354, - [3267] = 2364, - [3268] = 2380, - [3269] = 2385, - [3270] = 2391, - [3271] = 2250, - [3272] = 2254, - [3273] = 2266, - [3274] = 2274, - [3275] = 2282, - [3276] = 2288, - [3277] = 2294, - [3278] = 2298, - [3279] = 2303, - [3280] = 2310, - [3281] = 2317, - [3282] = 2335, - [3283] = 2346, - [3284] = 2362, - [3285] = 2268, - [3286] = 2270, - [3287] = 2276, - [3288] = 2279, - [3289] = 2281, - [3290] = 2283, - [3291] = 2289, - [3292] = 2291, - [3293] = 2293, - [3294] = 2295, - [3295] = 2297, - [3296] = 2299, - [3297] = 2306, - [3298] = 2309, - [3299] = 2311, - [3300] = 2313, - [3301] = 2316, - [3302] = 2319, - [3303] = 2321, - [3304] = 2324, - [3305] = 2330, - [3306] = 2334, - [3307] = 2336, - [3308] = 2338, - [3309] = 2428, - [3310] = 2345, - [3311] = 2347, - [3312] = 2349, - [3313] = 2351, - [3314] = 2353, - [3315] = 2355, - [3316] = 2357, - [3317] = 2359, - [3318] = 2361, - [3319] = 2363, - [3320] = 2365, - [3321] = 2393, - [3322] = 2395, - [3323] = 2397, - [3324] = 2400, - [3325] = 2404, - [3326] = 2406, - [3327] = 2408, - [3328] = 2410, - [3329] = 2412, - [3330] = 2414, - [3331] = 2419, - [3332] = 2421, - [3333] = 3206, - [3334] = 2143, - [3335] = 292, - [3336] = 294, - [3337] = 174, - [3338] = 2341, + [3200] = 2388, + [3201] = 2382, + [3202] = 2408, + [3203] = 2343, + [3204] = 2374, + [3205] = 2386, + [3206] = 2389, + [3207] = 2397, + [3208] = 2442, + [3209] = 2322, + [3210] = 2345, + [3211] = 2353, + [3212] = 3192, + [3213] = 2361, + [3214] = 2363, + [3215] = 2364, + [3216] = 2365, + [3217] = 2366, + [3218] = 2368, + [3219] = 2370, + [3220] = 2372, + [3221] = 2375, + [3222] = 2377, + [3223] = 2378, + [3224] = 2444, + [3225] = 2381, + [3226] = 2383, + [3227] = 2385, + [3228] = 2387, + [3229] = 2392, + [3230] = 2394, + [3231] = 2395, + [3232] = 2398, + [3233] = 2400, + [3234] = 2403, + [3235] = 2405, + [3236] = 2407, + [3237] = 2424, + [3238] = 2430, + [3239] = 2432, + [3240] = 2436, + [3241] = 2443, + [3242] = 2350, + [3243] = 2309, + [3244] = 2355, + [3245] = 2404, + [3246] = 2314, + [3247] = 2420, + [3248] = 2367, + [3249] = 2315, + [3250] = 2317, + [3251] = 2318, + [3252] = 2357, + [3253] = 2360, + [3254] = 2411, + [3255] = 1701, + [3256] = 2428, + [3257] = 2433, + [3258] = 2319, + [3259] = 2417, + [3260] = 2380, + [3261] = 2401, + [3262] = 2311, + [3263] = 2410, + [3264] = 2419, + [3265] = 2441, + [3266] = 2351, + [3267] = 2421, + [3268] = 2371, + [3269] = 2426, + [3270] = 2354, + [3271] = 2376, + [3272] = 2390, + [3273] = 2312, + [3274] = 2327, + [3275] = 2342, + [3276] = 2347, + [3277] = 2379, + [3278] = 2384, + [3279] = 2391, + [3280] = 2402, + [3281] = 2406, + [3282] = 2409, + [3283] = 2415, + [3284] = 2425, + [3285] = 2320, + [3286] = 2321, + [3287] = 2323, + [3288] = 2324, + [3289] = 2326, + [3290] = 2328, + [3291] = 2329, + [3292] = 2341, + [3293] = 2344, + [3294] = 2346, + [3295] = 2348, + [3296] = 2349, + [3297] = 369, + [3298] = 2330, + [3299] = 2306, + [3300] = 2331, + [3301] = 2332, + [3302] = 2333, + [3303] = 2334, + [3304] = 2335, + [3305] = 2336, + [3306] = 2337, + [3307] = 2338, + [3308] = 2339, + [3309] = 2340, + [3310] = 3192, + [3311] = 370, + [3312] = 317, + [3313] = 342, + [3314] = 339, + [3315] = 346, + [3316] = 3316, + [3317] = 3317, + [3318] = 2423, + [3319] = 3319, + [3320] = 339, + [3321] = 3321, + [3322] = 383, + [3323] = 1804, + [3324] = 3324, + [3325] = 387, + [3326] = 3326, + [3327] = 346, + [3328] = 3328, + [3329] = 389, + [3330] = 3330, + [3331] = 3319, + [3332] = 480, + [3333] = 3326, + [3334] = 513, + [3335] = 158, + [3336] = 159, + [3337] = 160, + [3338] = 157, [3339] = 3339, - [3340] = 3340, - [3341] = 3341, - [3342] = 1678, - [3343] = 3343, - [3344] = 3158, - [3345] = 445, - [3346] = 3346, - [3347] = 447, - [3348] = 1678, - [3349] = 3349, - [3350] = 216, - [3351] = 2413, - [3352] = 2415, - [3353] = 2418, - [3354] = 2422, - [3355] = 2423, - [3356] = 2424, - [3357] = 2426, - [3358] = 2246, - [3359] = 2247, - [3360] = 2248, - [3361] = 3154, - [3362] = 3156, - [3363] = 215, - [3364] = 3339, - [3365] = 3343, - [3366] = 308, - [3367] = 163, - [3368] = 3368, - [3369] = 3349, - [3370] = 313, - [3371] = 3368, - [3372] = 319, - [3373] = 216, - [3374] = 215, - [3375] = 320, - [3376] = 2420, - [3377] = 216, - [3378] = 215, - [3379] = 236, - [3380] = 222, - [3381] = 163, - [3382] = 216, - [3383] = 3383, - [3384] = 1363, - [3385] = 3383, - [3386] = 215, - [3387] = 3387, - [3388] = 222, - [3389] = 250, - [3390] = 223, - [3391] = 223, - [3392] = 235, - [3393] = 251, + [3340] = 2340, + [3341] = 152, + [3342] = 324, + [3343] = 328, + [3344] = 3328, + [3345] = 3330, + [3346] = 2339, + [3347] = 384, + [3348] = 3174, + [3349] = 3177, + [3350] = 342, + [3351] = 2330, + [3352] = 2306, + [3353] = 2331, + [3354] = 2332, + [3355] = 2333, + [3356] = 2334, + [3357] = 2335, + [3358] = 2336, + [3359] = 2337, + [3360] = 2338, + [3361] = 344, + [3362] = 354, + [3363] = 340, + [3364] = 3364, + [3365] = 152, + [3366] = 324, + [3367] = 328, + [3368] = 3364, + [3369] = 324, + [3370] = 328, + [3371] = 362, + [3372] = 153, + [3373] = 154, + [3374] = 343, + [3375] = 358, + [3376] = 3376, + [3377] = 3377, + [3378] = 324, + [3379] = 328, + [3380] = 3376, + [3381] = 3381, + [3382] = 3381, + [3383] = 591, + [3384] = 3384, + [3385] = 1533, + [3386] = 343, + [3387] = 1533, + [3388] = 152, + [3389] = 3389, + [3390] = 153, + [3391] = 154, + [3392] = 352, + [3393] = 3377, [3394] = 3394, - [3395] = 215, - [3396] = 3387, - [3397] = 246, + [3395] = 343, + [3396] = 340, + [3397] = 353, [3398] = 3398, - [3399] = 223, - [3400] = 516, - [3401] = 3401, - [3402] = 222, - [3403] = 216, - [3404] = 3398, - [3405] = 164, - [3406] = 3401, - [3407] = 1238, - [3408] = 251, - [3409] = 1363, - [3410] = 249, - [3411] = 165, - [3412] = 223, - [3413] = 248, - [3414] = 222, - [3415] = 218, - [3416] = 246, - [3417] = 3417, + [3399] = 340, + [3400] = 355, + [3401] = 1391, + [3402] = 360, + [3403] = 153, + [3404] = 362, + [3405] = 672, + [3406] = 352, + [3407] = 674, + [3408] = 626, + [3409] = 353, + [3410] = 152, + [3411] = 355, + [3412] = 360, + [3413] = 354, + [3414] = 343, + [3415] = 154, + [3416] = 340, + [3417] = 1533, [3418] = 3418, - [3419] = 248, - [3420] = 249, - [3421] = 3421, - [3422] = 561, - [3423] = 592, - [3424] = 594, - [3425] = 557, - [3426] = 3426, - [3427] = 568, - [3428] = 587, - [3429] = 251, - [3430] = 554, - [3431] = 584, - [3432] = 246, - [3433] = 604, - [3434] = 248, - [3435] = 3435, - [3436] = 249, - [3437] = 550, - [3438] = 223, - [3439] = 620, - [3440] = 225, - [3441] = 616, - [3442] = 3442, - [3443] = 167, - [3444] = 168, - [3445] = 1363, - [3446] = 226, - [3447] = 224, - [3448] = 228, - [3449] = 3418, - [3450] = 251, - [3451] = 3421, - [3452] = 246, - [3453] = 556, - [3454] = 248, - [3455] = 249, - [3456] = 170, - [3457] = 222, - [3458] = 171, - [3459] = 1363, - [3460] = 166, - [3461] = 627, - [3462] = 169, - [3463] = 630, - [3464] = 3464, - [3465] = 618, - [3466] = 360, - [3467] = 250, - [3468] = 172, - [3469] = 173, + [3419] = 3389, + [3420] = 3420, + [3421] = 646, + [3422] = 352, + [3423] = 638, + [3424] = 645, + [3425] = 649, + [3426] = 353, + [3427] = 655, + [3428] = 657, + [3429] = 3429, + [3430] = 660, + [3431] = 663, + [3432] = 630, + [3433] = 648, + [3434] = 650, + [3435] = 152, + [3436] = 684, + [3437] = 355, + [3438] = 360, + [3439] = 622, + [3440] = 3384, + [3441] = 3441, + [3442] = 154, + [3443] = 423, + [3444] = 402, + [3445] = 407, + [3446] = 353, + [3447] = 436, + [3448] = 358, + [3449] = 355, + [3450] = 360, + [3451] = 153, + [3452] = 447, + [3453] = 448, + [3454] = 411, + [3455] = 412, + [3456] = 205, + [3457] = 356, + [3458] = 427, + [3459] = 441, + [3460] = 442, + [3461] = 401, + [3462] = 445, + [3463] = 1733, + [3464] = 437, + [3465] = 414, + [3466] = 438, + [3467] = 429, + [3468] = 152, + [3469] = 417, [3470] = 3470, - [3471] = 363, - [3472] = 364, - [3473] = 348, - [3474] = 163, - [3475] = 365, - [3476] = 366, - [3477] = 367, - [3478] = 368, - [3479] = 235, - [3480] = 348, - [3481] = 236, - [3482] = 349, - [3483] = 249, - [3484] = 352, - [3485] = 246, - [3486] = 349, - [3487] = 350, - [3488] = 350, - [3489] = 248, - [3490] = 247, - [3491] = 251, - [3492] = 352, - [3493] = 385, - [3494] = 174, - [3495] = 364, - [3496] = 365, - [3497] = 366, - [3498] = 367, - [3499] = 368, - [3500] = 369, - [3501] = 370, - [3502] = 372, - [3503] = 3136, - [3504] = 373, - [3505] = 374, - [3506] = 375, - [3507] = 376, - [3508] = 369, + [3471] = 420, + [3472] = 352, + [3473] = 405, + [3474] = 421, + [3475] = 1661, + [3476] = 608, + [3477] = 426, + [3478] = 152, + [3479] = 3479, + [3480] = 683, + [3481] = 481, + [3482] = 153, + [3483] = 156, + [3484] = 637, + [3485] = 154, + [3486] = 625, + [3487] = 682, + [3488] = 692, + [3489] = 612, + [3490] = 611, + [3491] = 613, + [3492] = 621, + [3493] = 661, + [3494] = 662, + [3495] = 643, + [3496] = 680, + [3497] = 639, + [3498] = 632, + [3499] = 206, + [3500] = 614, + [3501] = 656, + [3502] = 633, + [3503] = 620, + [3504] = 685, + [3505] = 616, + [3506] = 155, + [3507] = 619, + [3508] = 623, [3509] = 370, - [3510] = 378, - [3511] = 382, - [3512] = 383, - [3513] = 385, - [3514] = 360, - [3515] = 372, - [3516] = 373, - [3517] = 163, - [3518] = 374, - [3519] = 375, - [3520] = 376, - [3521] = 378, - [3522] = 382, - [3523] = 383, - [3524] = 363, - [3525] = 292, - [3526] = 3136, - [3527] = 164, - [3528] = 3528, - [3529] = 555, - [3530] = 294, - [3531] = 164, - [3532] = 175, - [3533] = 449, - [3534] = 441, - [3535] = 390, - [3536] = 446, - [3537] = 591, - [3538] = 165, - [3539] = 165, + [3510] = 647, + [3511] = 675, + [3512] = 153, + [3513] = 369, + [3514] = 3152, + [3515] = 688, + [3516] = 641, + [3517] = 636, + [3518] = 635, + [3519] = 510, + [3520] = 667, + [3521] = 154, + [3522] = 668, + [3523] = 686, + [3524] = 677, + [3525] = 653, + [3526] = 669, + [3527] = 671, + [3528] = 640, + [3529] = 511, + [3530] = 512, + [3531] = 3152, + [3532] = 631, + [3533] = 481, + [3534] = 510, + [3535] = 423, + [3536] = 429, + [3537] = 436, + [3538] = 384, + [3539] = 421, [3540] = 445, - [3541] = 169, - [3542] = 389, - [3543] = 1922, - [3544] = 171, - [3545] = 170, - [3546] = 308, - [3547] = 3136, - [3548] = 167, - [3549] = 166, - [3550] = 168, - [3551] = 1476, - [3552] = 447, - [3553] = 313, - [3554] = 320, - [3555] = 319, - [3556] = 3136, - [3557] = 165, - [3558] = 172, - [3559] = 173, - [3560] = 469, - [3561] = 469, - [3562] = 3562, - [3563] = 389, - [3564] = 3564, - [3565] = 473, - [3566] = 477, - [3567] = 482, - [3568] = 250, - [3569] = 3569, - [3570] = 473, - [3571] = 477, - [3572] = 482, - [3573] = 3573, - [3574] = 3574, - [3575] = 512, - [3576] = 164, - [3577] = 163, - [3578] = 1489, - [3579] = 1495, - [3580] = 2053, - [3581] = 3581, - [3582] = 474, - [3583] = 1521, - [3584] = 174, - [3585] = 474, - [3586] = 1922, - [3587] = 235, - [3588] = 1522, - [3589] = 1661, - [3590] = 236, - [3591] = 613, - [3592] = 474, - [3593] = 615, - [3594] = 1922, - [3595] = 473, - [3596] = 477, - [3597] = 482, - [3598] = 598, - [3599] = 175, - [3600] = 1650, - [3601] = 3601, - [3602] = 474, - [3603] = 1607, - [3604] = 591, - [3605] = 611, - [3606] = 170, - [3607] = 555, - [3608] = 571, - [3609] = 1619, - [3610] = 1673, - [3611] = 171, - [3612] = 166, - [3613] = 609, - [3614] = 473, - [3615] = 610, - [3616] = 169, - [3617] = 167, - [3618] = 168, - [3619] = 629, - [3620] = 614, - [3621] = 619, - [3622] = 626, - [3623] = 608, - [3624] = 575, - [3625] = 577, - [3626] = 3626, - [3627] = 622, - [3628] = 562, - [3629] = 563, - [3630] = 566, - [3631] = 569, - [3632] = 570, - [3633] = 576, - [3634] = 578, - [3635] = 580, - [3636] = 586, - [3637] = 595, - [3638] = 607, - [3639] = 593, - [3640] = 596, - [3641] = 549, - [3642] = 3642, - [3643] = 560, - [3644] = 581, - [3645] = 3645, - [3646] = 553, - [3647] = 564, - [3648] = 552, - [3649] = 389, - [3650] = 597, - [3651] = 477, - [3652] = 1639, - [3653] = 1647, - [3654] = 482, - [3655] = 1495, - [3656] = 389, - [3657] = 1606, - [3658] = 1645, - [3659] = 1519, - [3660] = 469, + [3541] = 163, + [3542] = 426, + [3543] = 155, + [3544] = 511, + [3545] = 512, + [3546] = 401, + [3547] = 156, + [3548] = 159, + [3549] = 402, + [3550] = 480, + [3551] = 159, + [3552] = 414, + [3553] = 160, + [3554] = 513, + [3555] = 437, + [3556] = 157, + [3557] = 162, + [3558] = 387, + [3559] = 161, + [3560] = 3152, + [3561] = 160, + [3562] = 441, + [3563] = 383, + [3564] = 417, + [3565] = 442, + [3566] = 427, + [3567] = 412, + [3568] = 411, + [3569] = 3152, + [3570] = 447, + [3571] = 420, + [3572] = 448, + [3573] = 1610, + [3574] = 362, + [3575] = 438, + [3576] = 389, + [3577] = 407, + [3578] = 354, + [3579] = 324, + [3580] = 405, + [3581] = 152, + [3582] = 155, + [3583] = 156, + [3584] = 158, + [3585] = 157, + [3586] = 158, + [3587] = 328, + [3588] = 3588, + [3589] = 328, + [3590] = 164, + [3591] = 163, + [3592] = 324, + [3593] = 340, + [3594] = 455, + [3595] = 536, + [3596] = 162, + [3597] = 3597, + [3598] = 163, + [3599] = 2087, + [3600] = 161, + [3601] = 1680, + [3602] = 3602, + [3603] = 464, + [3604] = 473, + [3605] = 528, + [3606] = 161, + [3607] = 3607, + [3608] = 2111, + [3609] = 529, + [3610] = 527, + [3611] = 1658, + [3612] = 526, + [3613] = 455, + [3614] = 162, + [3615] = 343, + [3616] = 3616, + [3617] = 358, + [3618] = 608, + [3619] = 3619, + [3620] = 1701, + [3621] = 1644, + [3622] = 1733, + [3623] = 1865, + [3624] = 1831, + [3625] = 1866, + [3626] = 1867, + [3627] = 1868, + [3628] = 1869, + [3629] = 1870, + [3630] = 3630, + [3631] = 623, + [3632] = 360, + [3633] = 632, + [3634] = 671, + [3635] = 343, + [3636] = 527, + [3637] = 633, + [3638] = 3638, + [3639] = 526, + [3640] = 635, + [3641] = 2087, + [3642] = 1837, + [3643] = 1838, + [3644] = 675, + [3645] = 1858, + [3646] = 1842, + [3647] = 1843, + [3648] = 686, + [3649] = 682, + [3650] = 692, + [3651] = 647, + [3652] = 639, + [3653] = 1661, + [3654] = 653, + [3655] = 683, + [3656] = 661, + [3657] = 662, + [3658] = 455, + [3659] = 611, + [3660] = 667, [3661] = 612, - [3662] = 2413, - [3663] = 2419, - [3664] = 2421, - [3665] = 594, - [3666] = 557, - [3667] = 568, - [3668] = 587, - [3669] = 2367, - [3670] = 236, - [3671] = 554, - [3672] = 584, - [3673] = 604, - [3674] = 616, - [3675] = 2381, - [3676] = 2384, - [3677] = 2390, - [3678] = 556, - [3679] = 2392, - [3680] = 2403, - [3681] = 618, - [3682] = 2251, - [3683] = 446, - [3684] = 2253, - [3685] = 473, - [3686] = 2258, - [3687] = 2304, - [3688] = 469, - [3689] = 2327, - [3690] = 592, - [3691] = 2245, - [3692] = 2401, - [3693] = 2259, - [3694] = 441, - [3695] = 627, - [3696] = 3626, - [3697] = 2284, - [3698] = 2305, - [3699] = 2352, - [3700] = 2386, - [3701] = 2256, - [3702] = 2262, - [3703] = 449, - [3704] = 2264, - [3705] = 2278, - [3706] = 3601, - [3707] = 561, - [3708] = 390, - [3709] = 2292, - [3710] = 2301, - [3711] = 2307, - [3712] = 2315, - [3713] = 2323, - [3714] = 2333, - [3715] = 2339, - [3716] = 2354, - [3717] = 2364, - [3718] = 2415, - [3719] = 2418, - [3720] = 2420, - [3721] = 2422, - [3722] = 2423, - [3723] = 2424, - [3724] = 2426, - [3725] = 2341, - [3726] = 2246, - [3727] = 2247, - [3728] = 2248, - [3729] = 2380, - [3730] = 2385, - [3731] = 2391, - [3732] = 2250, - [3733] = 2254, - [3734] = 2266, - [3735] = 2274, - [3736] = 2282, - [3737] = 2288, - [3738] = 2414, - [3739] = 2298, - [3740] = 620, - [3741] = 2303, - [3742] = 2310, - [3743] = 2317, - [3744] = 174, - [3745] = 2335, - [3746] = 2346, - [3747] = 2362, - [3748] = 2268, - [3749] = 2270, - [3750] = 2276, - [3751] = 474, - [3752] = 2279, - [3753] = 172, - [3754] = 173, - [3755] = 2281, - [3756] = 2283, - [3757] = 2289, - [3758] = 2291, - [3759] = 2293, - [3760] = 2295, - [3761] = 2297, - [3762] = 2299, - [3763] = 2306, - [3764] = 2309, - [3765] = 2311, - [3766] = 2313, - [3767] = 2316, - [3768] = 2319, - [3769] = 2321, - [3770] = 2324, - [3771] = 2330, - [3772] = 2334, - [3773] = 1495, - [3774] = 2336, - [3775] = 2338, - [3776] = 2428, - [3777] = 2345, - [3778] = 2347, - [3779] = 2349, - [3780] = 432, - [3781] = 630, - [3782] = 2351, - [3783] = 2353, - [3784] = 2355, - [3785] = 2357, - [3786] = 2359, - [3787] = 2361, - [3788] = 2363, - [3789] = 469, - [3790] = 388, - [3791] = 2365, - [3792] = 235, - [3793] = 2393, - [3794] = 2395, - [3795] = 2397, - [3796] = 2400, - [3797] = 477, - [3798] = 482, - [3799] = 2404, + [3662] = 536, + [3663] = 640, + [3664] = 526, + [3665] = 352, + [3666] = 3666, + [3667] = 613, + [3668] = 3668, + [3669] = 1864, + [3670] = 616, + [3671] = 1814, + [3672] = 1795, + [3673] = 527, + [3674] = 1859, + [3675] = 688, + [3676] = 619, + [3677] = 643, + [3678] = 1736, + [3679] = 1737, + [3680] = 1637, + [3681] = 1638, + [3682] = 353, + [3683] = 2087, + [3684] = 455, + [3685] = 528, + [3686] = 1641, + [3687] = 621, + [3688] = 680, + [3689] = 536, + [3690] = 620, + [3691] = 669, + [3692] = 529, + [3693] = 355, + [3694] = 1860, + [3695] = 528, + [3696] = 529, + [3697] = 1861, + [3698] = 641, + [3699] = 668, + [3700] = 625, + [3701] = 3701, + [3702] = 631, + [3703] = 656, + [3704] = 685, + [3705] = 164, + [3706] = 677, + [3707] = 637, + [3708] = 340, + [3709] = 1862, + [3710] = 636, + [3711] = 1863, + [3712] = 614, + [3713] = 2365, + [3714] = 2329, + [3715] = 2421, + [3716] = 2353, + [3717] = 2411, + [3718] = 2423, + [3719] = 2428, + [3720] = 2371, + [3721] = 2433, + [3722] = 2426, + [3723] = 3723, + [3724] = 2354, + [3725] = 528, + [3726] = 2344, + [3727] = 529, + [3728] = 2319, + [3729] = 2417, + [3730] = 3723, + [3731] = 2380, + [3732] = 2346, + [3733] = 2376, + [3734] = 536, + [3735] = 2390, + [3736] = 2312, + [3737] = 657, + [3738] = 2327, + [3739] = 660, + [3740] = 3723, + [3741] = 622, + [3742] = 2322, + [3743] = 2374, + [3744] = 2408, + [3745] = 2345, + [3746] = 2342, + [3747] = 2388, + [3748] = 2361, + [3749] = 2386, + [3750] = 2363, + [3751] = 2347, + [3752] = 2379, + [3753] = 526, + [3754] = 2384, + [3755] = 2364, + [3756] = 2341, + [3757] = 353, + [3758] = 2391, + [3759] = 2401, + [3760] = 2366, + [3761] = 3723, + [3762] = 3723, + [3763] = 2311, + [3764] = 2368, + [3765] = 352, + [3766] = 2370, + [3767] = 2372, + [3768] = 2375, + [3769] = 2377, + [3770] = 2378, + [3771] = 630, + [3772] = 648, + [3773] = 650, + [3774] = 2444, + [3775] = 3723, + [3776] = 2381, + [3777] = 2383, + [3778] = 3723, + [3779] = 3638, + [3780] = 2385, + [3781] = 2387, + [3782] = 2392, + [3783] = 2394, + [3784] = 2315, + [3785] = 2395, + [3786] = 2398, + [3787] = 2400, + [3788] = 684, + [3789] = 2403, + [3790] = 2405, + [3791] = 2407, + [3792] = 2424, + [3793] = 2430, + [3794] = 2432, + [3795] = 2402, + [3796] = 2382, + [3797] = 2436, + [3798] = 672, + [3799] = 2443, [3800] = 2406, - [3801] = 2408, - [3802] = 2410, - [3803] = 2412, - [3804] = 2294, - [3805] = 3805, - [3806] = 3806, - [3807] = 3807, - [3808] = 3808, - [3809] = 3809, - [3810] = 3810, - [3811] = 3158, - [3812] = 3812, - [3813] = 3813, - [3814] = 1495, - [3815] = 3815, - [3816] = 3816, - [3817] = 3817, - [3818] = 3818, - [3819] = 3819, - [3820] = 3820, - [3821] = 3821, - [3822] = 3156, - [3823] = 3823, - [3824] = 3824, - [3825] = 3825, - [3826] = 3826, - [3827] = 432, - [3828] = 3828, - [3829] = 3829, - [3830] = 3830, - [3831] = 3831, - [3832] = 3832, - [3833] = 3830, - [3834] = 3829, - [3835] = 3835, - [3836] = 1495, - [3837] = 3837, - [3838] = 388, - [3839] = 3829, - [3840] = 3154, - [3841] = 3831, - [3842] = 3842, - [3843] = 3843, - [3844] = 3844, - [3845] = 3831, - [3846] = 2420, - [3847] = 3847, - [3848] = 2424, - [3849] = 2247, - [3850] = 2413, - [3851] = 2248, - [3852] = 3832, - [3853] = 2415, - [3854] = 2426, - [3855] = 3837, - [3856] = 3856, - [3857] = 2413, - [3858] = 2422, - [3859] = 2341, - [3860] = 2415, - [3861] = 2246, - [3862] = 2418, - [3863] = 2420, - [3864] = 2422, - [3865] = 2423, - [3866] = 2424, - [3867] = 2426, - [3868] = 2418, - [3869] = 2341, - [3870] = 2246, - [3871] = 2247, - [3872] = 2248, + [3801] = 674, + [3802] = 2350, + [3803] = 2409, + [3804] = 2309, + [3805] = 2355, + [3806] = 2348, + [3807] = 2404, + [3808] = 663, + [3809] = 2415, + [3810] = 2314, + [3811] = 2425, + [3812] = 2420, + [3813] = 2389, + [3814] = 638, + [3815] = 645, + [3816] = 2317, + [3817] = 2367, + [3818] = 626, + [3819] = 3723, + [3820] = 3666, + [3821] = 2397, + [3822] = 2318, + [3823] = 2357, + [3824] = 655, + [3825] = 2410, + [3826] = 2349, + [3827] = 1701, + [3828] = 2360, + [3829] = 2419, + [3830] = 2441, + [3831] = 527, + [3832] = 2351, + [3833] = 1701, + [3834] = 649, + [3835] = 360, + [3836] = 2320, + [3837] = 2321, + [3838] = 2323, + [3839] = 2324, + [3840] = 2326, + [3841] = 2442, + [3842] = 355, + [3843] = 2328, + [3844] = 2343, + [3845] = 2093, + [3846] = 2103, + [3847] = 2101, + [3848] = 3848, + [3849] = 3174, + [3850] = 2145, + [3851] = 3851, + [3852] = 3852, + [3853] = 2337, + [3854] = 2095, + [3855] = 3855, + [3856] = 2110, + [3857] = 2096, + [3858] = 3858, + [3859] = 3859, + [3860] = 3860, + [3861] = 536, + [3862] = 3177, + [3863] = 3863, + [3864] = 3864, + [3865] = 1701, + [3866] = 2107, + [3867] = 3867, + [3868] = 2105, + [3869] = 3869, + [3870] = 3870, + [3871] = 3871, + [3872] = 3863, [3873] = 3873, - [3874] = 2423, + [3874] = 3874, [3875] = 3875, - [3876] = 3876, - [3877] = 3876, - [3878] = 3573, - [3879] = 3876, - [3880] = 3574, - [3881] = 3876, - [3882] = 3882, + [3876] = 3860, + [3877] = 3877, + [3878] = 2097, + [3879] = 2332, + [3880] = 2104, + [3881] = 2330, + [3882] = 2331, [3883] = 3883, - [3884] = 3876, - [3885] = 3875, - [3886] = 3569, + [3884] = 2338, + [3885] = 3885, + [3886] = 3886, [3887] = 3887, - [3888] = 3564, - [3889] = 3581, - [3890] = 3890, - [3891] = 3891, - [3892] = 3887, - [3893] = 3882, - [3894] = 3876, - [3895] = 3876, - [3896] = 3890, - [3897] = 3883, + [3888] = 3888, + [3889] = 3889, + [3890] = 3883, + [3891] = 2102, + [3892] = 3892, + [3893] = 2340, + [3894] = 2155, + [3895] = 2339, + [3896] = 2143, + [3897] = 2098, [3898] = 3898, - [3899] = 3891, - [3900] = 3562, - [3901] = 214, - [3902] = 3898, - [3903] = 219, - [3904] = 214, - [3905] = 217, - [3906] = 215, - [3907] = 217, - [3908] = 219, - [3909] = 214, - [3910] = 218, - [3911] = 216, - [3912] = 373, - [3913] = 217, - [3914] = 368, - [3915] = 369, - [3916] = 216, - [3917] = 370, - [3918] = 372, - [3919] = 350, - [3920] = 223, - [3921] = 1165, - [3922] = 214, - [3923] = 224, - [3924] = 225, - [3925] = 226, - [3926] = 228, - [3927] = 363, - [3928] = 222, - [3929] = 219, - [3930] = 360, - [3931] = 364, - [3932] = 365, - [3933] = 366, - [3934] = 374, - [3935] = 375, - [3936] = 352, - [3937] = 349, - [3938] = 367, - [3939] = 376, - [3940] = 378, - [3941] = 382, - [3942] = 383, - [3943] = 385, - [3944] = 218, - [3945] = 215, - [3946] = 348, - [3947] = 226, - [3948] = 217, - [3949] = 246, - [3950] = 249, - [3951] = 219, - [3952] = 224, - [3953] = 218, - [3954] = 215, - [3955] = 251, - [3956] = 228, - [3957] = 235, - [3958] = 247, - [3959] = 250, - [3960] = 225, - [3961] = 1165, - [3962] = 236, - [3963] = 248, - [3964] = 216, - [3965] = 222, - [3966] = 223, - [3967] = 350, - [3968] = 236, - [3969] = 163, - [3970] = 360, - [3971] = 292, - [3972] = 247, - [3973] = 224, - [3974] = 235, - [3975] = 363, - [3976] = 364, - [3977] = 294, - [3978] = 246, - [3979] = 365, - [3980] = 366, - [3981] = 367, - [3982] = 368, - [3983] = 369, - [3984] = 370, - [3985] = 251, - [3986] = 376, - [3987] = 216, - [3988] = 375, - [3989] = 248, - [3990] = 215, - [3991] = 349, - [3992] = 163, - [3993] = 383, - [3994] = 352, - [3995] = 385, - [3996] = 1165, - [3997] = 249, - [3998] = 223, - [3999] = 225, - [4000] = 226, - [4001] = 374, - [4002] = 348, - [4003] = 228, - [4004] = 214, - [4005] = 378, - [4006] = 372, - [4007] = 373, - [4008] = 222, - [4009] = 382, - [4010] = 250, - [4011] = 165, - [4012] = 250, - [4013] = 324, - [4014] = 294, - [4015] = 300, - [4016] = 1165, - [4017] = 1522, - [4018] = 308, - [4019] = 217, - [4020] = 235, - [4021] = 175, - [4022] = 216, - [4023] = 1519, - [4024] = 313, - [4025] = 249, - [4026] = 247, - [4027] = 292, - [4028] = 512, - [4029] = 164, - [4030] = 319, - [4031] = 236, - [4032] = 251, - [4033] = 222, - [4034] = 218, - [4035] = 320, - [4036] = 215, - [4037] = 219, - [4038] = 246, - [4039] = 248, - [4040] = 163, - [4041] = 223, - [4042] = 553, - [4043] = 170, - [4044] = 171, - [4045] = 166, - [4046] = 169, - [4047] = 611, - [4048] = 571, - [4049] = 163, - [4050] = 613, - [4051] = 615, - [4052] = 610, - [4053] = 549, - [4054] = 552, - [4055] = 597, - [4056] = 614, - [4057] = 619, - [4058] = 598, - [4059] = 250, - [4060] = 247, - [4061] = 626, - [4062] = 608, - [4063] = 575, - [4064] = 577, - [4065] = 612, - [4066] = 223, - [4067] = 622, - [4068] = 562, - [4069] = 563, - [4070] = 566, - [4071] = 569, - [4072] = 570, - [4073] = 222, - [4074] = 576, - [4075] = 578, - [4076] = 580, - [4077] = 586, - [4078] = 236, - [4079] = 607, - [4080] = 250, - [4081] = 251, - [4082] = 609, - [4083] = 308, - [4084] = 246, - [4085] = 224, - [4086] = 248, - [4087] = 629, - [4088] = 324, - [4089] = 313, - [4090] = 319, - [4091] = 320, - [4092] = 249, - [4093] = 225, - [4094] = 226, - [4095] = 228, - [4096] = 164, - [4097] = 165, - [4098] = 2456, - [4099] = 300, - [4100] = 292, - [4101] = 593, - [4102] = 596, - [4103] = 560, - [4104] = 581, - [4105] = 564, - [4106] = 198, - [4107] = 247, - [4108] = 1238, - [4109] = 294, - [4110] = 167, - [4111] = 168, - [4112] = 235, - [4113] = 595, - [4114] = 171, - [4115] = 248, - [4116] = 292, - [4117] = 169, - [4118] = 249, - [4119] = 163, - [4120] = 250, - [4121] = 247, - [4122] = 1238, - [4123] = 164, - [4124] = 294, - [4125] = 235, - [4126] = 251, - [4127] = 236, - [4128] = 247, - [4129] = 167, - [4130] = 168, - [4131] = 300, - [4132] = 165, - [4133] = 512, - [4134] = 170, - [4135] = 308, - [4136] = 246, - [4137] = 324, - [4138] = 313, - [4139] = 292, - [4140] = 4140, - [4141] = 174, - [4142] = 250, - [4143] = 319, - [4144] = 294, - [4145] = 320, - [4146] = 172, - [4147] = 173, - [4148] = 4148, - [4149] = 4149, - [4150] = 1519, - [4151] = 4151, - [4152] = 166, - [4153] = 1522, - [4154] = 204, - [4155] = 389, - [4156] = 324, - [4157] = 349, - [4158] = 352, - [4159] = 497, - [4160] = 247, - [4161] = 360, - [4162] = 2494, - [4163] = 165, - [4164] = 319, - [4165] = 175, - [4166] = 300, - [4167] = 379, - [4168] = 2505, - [4169] = 469, - [4170] = 1400, - [4171] = 292, - [4172] = 167, - [4173] = 363, - [4174] = 294, - [4175] = 168, - [4176] = 174, - [4177] = 1402, - [4178] = 368, - [4179] = 369, - [4180] = 370, - [4181] = 372, - [4182] = 629, - [4183] = 294, - [4184] = 172, - [4185] = 2433, - [4186] = 173, - [4187] = 2493, - [4188] = 474, - [4189] = 364, - [4190] = 373, - [4191] = 4191, - [4192] = 2471, - [4193] = 470, - [4194] = 499, - [4195] = 374, - [4196] = 611, - [4197] = 375, - [4198] = 571, - [4199] = 376, - [4200] = 1418, - [4201] = 1419, - [4202] = 320, - [4203] = 163, - [4204] = 380, - [4205] = 378, - [4206] = 473, - [4207] = 382, - [4208] = 613, - [4209] = 4149, - [4210] = 615, - [4211] = 477, - [4212] = 482, - [4213] = 308, - [4214] = 383, - [4215] = 365, - [4216] = 593, - [4217] = 610, - [4218] = 596, - [4219] = 385, - [4220] = 4151, - [4221] = 366, - [4222] = 313, - [4223] = 549, - [4224] = 552, - [4225] = 597, - [4226] = 235, - [4227] = 607, - [4228] = 609, - [4229] = 614, - [4230] = 367, - [4231] = 313, - [4232] = 619, - [4233] = 319, - [4234] = 598, - [4235] = 560, - [4236] = 581, - [4237] = 348, - [4238] = 320, - [4239] = 626, - [4240] = 292, - [4241] = 498, - [4242] = 608, - [4243] = 575, - [4244] = 577, - [4245] = 612, - [4246] = 4246, - [4247] = 4148, - [4248] = 622, - [4249] = 381, - [4250] = 562, - [4251] = 563, - [4252] = 308, - [4253] = 566, - [4254] = 569, - [4255] = 4255, - [4256] = 570, - [4257] = 170, - [4258] = 4258, - [4259] = 350, - [4260] = 591, - [4261] = 389, - [4262] = 236, - [4263] = 576, - [4264] = 171, - [4265] = 250, - [4266] = 166, - [4267] = 4267, - [4268] = 578, - [4269] = 553, - [4270] = 446, - [4271] = 564, - [4272] = 449, - [4273] = 390, - [4274] = 441, - [4275] = 169, - [4276] = 580, - [4277] = 586, - [4278] = 452, - [4279] = 555, - [4280] = 595, - [4281] = 164, - [4282] = 320, - [4283] = 447, - [4284] = 4258, - [4285] = 235, - [4286] = 446, - [4287] = 376, - [4288] = 348, - [4289] = 349, - [4290] = 4290, - [4291] = 370, - [4292] = 4267, - [4293] = 379, - [4294] = 170, - [4295] = 380, - [4296] = 167, - [4297] = 4191, - [4298] = 168, - [4299] = 378, - [4300] = 372, - [4301] = 4290, - [4302] = 172, - [4303] = 308, - [4304] = 4246, - [4305] = 173, - [4306] = 474, - [4307] = 4307, - [4308] = 163, - [4309] = 4309, - [4310] = 432, - [4311] = 247, - [4312] = 313, - [4313] = 470, - [4314] = 499, - [4315] = 360, - [4316] = 352, - [4317] = 236, - [4318] = 319, - [4319] = 320, - [4320] = 388, - [4321] = 308, - [4322] = 382, - [4323] = 313, - [4324] = 383, - [4325] = 4290, - [4326] = 373, - [4327] = 319, - [4328] = 294, - [4329] = 1495, - [4330] = 389, - [4331] = 4290, + [3899] = 2306, + [3900] = 2333, + [3901] = 3901, + [3902] = 2099, + [3903] = 3863, + [3904] = 2334, + [3905] = 2144, + [3906] = 2106, + [3907] = 2108, + [3908] = 3860, + [3909] = 3909, + [3910] = 2100, + [3911] = 2335, + [3912] = 3912, + [3913] = 2336, + [3914] = 3914, + [3915] = 2339, + [3916] = 3916, + [3917] = 2337, + [3918] = 2338, + [3919] = 3916, + [3920] = 2336, + [3921] = 2306, + [3922] = 2338, + [3923] = 2306, + [3924] = 2333, + [3925] = 3925, + [3926] = 2339, + [3927] = 3916, + [3928] = 2340, + [3929] = 2333, + [3930] = 3916, + [3931] = 2332, + [3932] = 3932, + [3933] = 2340, + [3934] = 2334, + [3935] = 2337, + [3936] = 2330, + [3937] = 2332, + [3938] = 2335, + [3939] = 2334, + [3940] = 2331, + [3941] = 3916, + [3942] = 3852, + [3943] = 2335, + [3944] = 2330, + [3945] = 3916, + [3946] = 2331, + [3947] = 3916, + [3948] = 2336, + [3949] = 3916, + [3950] = 3916, + [3951] = 3951, + [3952] = 3851, + [3953] = 3953, + [3954] = 3588, + [3955] = 3955, + [3956] = 3956, + [3957] = 3957, + [3958] = 3958, + [3959] = 3959, + [3960] = 3953, + [3961] = 3961, + [3962] = 3597, + [3963] = 3955, + [3964] = 3956, + [3965] = 3957, + [3966] = 3958, + [3967] = 3959, + [3968] = 3968, + [3969] = 3961, + [3970] = 3602, + [3971] = 3616, + [3972] = 3607, + [3973] = 3619, + [3974] = 3961, + [3975] = 3961, + [3976] = 3961, + [3977] = 3961, + [3978] = 3961, + [3979] = 3968, + [3980] = 310, + [3981] = 322, + [3982] = 310, + [3983] = 316, + [3984] = 322, + [3985] = 316, + [3986] = 310, + [3987] = 328, + [3988] = 324, + [3989] = 324, + [3990] = 340, + [3991] = 328, + [3992] = 310, + [3993] = 343, + [3994] = 317, + [3995] = 1289, + [3996] = 322, + [3997] = 316, + [3998] = 355, + [3999] = 324, + [4000] = 328, + [4001] = 322, + [4002] = 356, + [4003] = 343, + [4004] = 340, + [4005] = 352, + [4006] = 353, + [4007] = 316, + [4008] = 360, + [4009] = 358, + [4010] = 1289, + [4011] = 317, + [4012] = 344, + [4013] = 342, + [4014] = 339, + [4015] = 346, + [4016] = 362, + [4017] = 354, + [4018] = 1289, + [4019] = 356, + [4020] = 369, + [4021] = 328, + [4022] = 370, + [4023] = 352, + [4024] = 340, + [4025] = 344, + [4026] = 205, + [4027] = 342, + [4028] = 339, + [4029] = 346, + [4030] = 358, + [4031] = 353, + [4032] = 343, + [4033] = 355, + [4034] = 324, + [4035] = 310, + [4036] = 362, + [4037] = 354, + [4038] = 360, + [4039] = 352, + [4040] = 317, + [4041] = 384, + [4042] = 362, + [4043] = 358, + [4044] = 383, + [4045] = 354, + [4046] = 387, + [4047] = 389, + [4048] = 340, + [4049] = 353, + [4050] = 355, + [4051] = 1289, + [4052] = 360, + [4053] = 356, + [4054] = 324, + [4055] = 328, + [4056] = 206, + [4057] = 152, + [4058] = 369, + [4059] = 385, + [4060] = 388, + [4061] = 370, + [4062] = 322, + [4063] = 343, + [4064] = 316, + [4065] = 389, + [4066] = 346, + [4067] = 152, + [4068] = 369, + [4069] = 154, + [4070] = 358, + [4071] = 355, + [4072] = 343, + [4073] = 340, + [4074] = 360, + [4075] = 362, + [4076] = 1391, + [4077] = 385, + [4078] = 388, + [4079] = 384, + [4080] = 354, + [4081] = 383, + [4082] = 370, + [4083] = 356, + [4084] = 352, + [4085] = 358, + [4086] = 387, + [4087] = 356, + [4088] = 344, + [4089] = 353, + [4090] = 153, + [4091] = 2514, + [4092] = 342, + [4093] = 339, + [4094] = 354, + [4095] = 352, + [4096] = 4096, + [4097] = 153, + [4098] = 154, + [4099] = 384, + [4100] = 152, + [4101] = 353, + [4102] = 4102, + [4103] = 4103, + [4104] = 156, + [4105] = 4105, + [4106] = 355, + [4107] = 369, + [4108] = 360, + [4109] = 369, + [4110] = 370, + [4111] = 358, + [4112] = 387, + [4113] = 1391, + [4114] = 370, + [4115] = 358, + [4116] = 388, + [4117] = 389, + [4118] = 362, + [4119] = 158, + [4120] = 159, + [4121] = 160, + [4122] = 356, + [4123] = 157, + [4124] = 356, + [4125] = 155, + [4126] = 383, + [4127] = 385, + [4128] = 154, + [4129] = 2623, + [4130] = 369, + [4131] = 358, + [4132] = 370, + [4133] = 527, + [4134] = 4102, + [4135] = 153, + [4136] = 4105, + [4137] = 362, + [4138] = 369, + [4139] = 161, + [4140] = 385, + [4141] = 528, + [4142] = 529, + [4143] = 449, + [4144] = 450, + [4145] = 370, + [4146] = 162, + [4147] = 163, + [4148] = 158, + [4149] = 159, + [4150] = 160, + [4151] = 157, + [4152] = 4152, + [4153] = 451, + [4154] = 4154, + [4155] = 388, + [4156] = 4156, + [4157] = 354, + [4158] = 384, + [4159] = 2602, + [4160] = 356, + [4161] = 4103, + [4162] = 383, + [4163] = 387, + [4164] = 2627, + [4165] = 2628, + [4166] = 445, + [4167] = 389, + [4168] = 544, + [4169] = 447, + [4170] = 515, + [4171] = 518, + [4172] = 405, + [4173] = 532, + [4174] = 407, + [4175] = 411, + [4176] = 537, + [4177] = 412, + [4178] = 414, + [4179] = 417, + [4180] = 420, + [4181] = 421, + [4182] = 426, + [4183] = 427, + [4184] = 429, + [4185] = 436, + [4186] = 437, + [4187] = 438, + [4188] = 441, + [4189] = 442, + [4190] = 401, + [4191] = 402, + [4192] = 423, + [4193] = 384, + [4194] = 4194, + [4195] = 2601, + [4196] = 448, + [4197] = 383, + [4198] = 152, + [4199] = 155, + [4200] = 156, + [4201] = 387, + [4202] = 2636, + [4203] = 389, + [4204] = 2622, + [4205] = 536, + [4206] = 4206, + [4207] = 526, + [4208] = 405, + [4209] = 510, + [4210] = 4210, + [4211] = 387, + [4212] = 4212, + [4213] = 544, + [4214] = 164, + [4215] = 4206, + [4216] = 448, + [4217] = 354, + [4218] = 515, + [4219] = 528, + [4220] = 518, + [4221] = 4210, + [4222] = 389, + [4223] = 4194, + [4224] = 387, + [4225] = 532, + [4226] = 384, + [4227] = 4156, + [4228] = 537, + [4229] = 383, + [4230] = 389, + [4231] = 529, + [4232] = 370, + [4233] = 451, + [4234] = 464, + [4235] = 4235, + [4236] = 536, + [4237] = 450, + [4238] = 158, + [4239] = 159, + [4240] = 473, + [4241] = 160, + [4242] = 4154, + [4243] = 157, + [4244] = 152, + [4245] = 455, + [4246] = 445, + [4247] = 383, + [4248] = 155, + [4249] = 156, + [4250] = 369, + [4251] = 447, + [4252] = 511, + [4253] = 512, + [4254] = 481, + [4255] = 384, + [4256] = 362, + [4257] = 4257, + [4258] = 526, + [4259] = 407, + [4260] = 411, + [4261] = 4210, + [4262] = 412, + [4263] = 449, + [4264] = 414, + [4265] = 1701, + [4266] = 385, + [4267] = 417, + [4268] = 420, + [4269] = 421, + [4270] = 480, + [4271] = 4152, + [4272] = 426, + [4273] = 161, + [4274] = 427, + [4275] = 429, + [4276] = 388, + [4277] = 513, + [4278] = 436, + [4279] = 437, + [4280] = 438, + [4281] = 441, + [4282] = 442, + [4283] = 162, + [4284] = 163, + [4285] = 4285, + [4286] = 401, + [4287] = 153, + [4288] = 356, + [4289] = 402, + [4290] = 4210, + [4291] = 527, + [4292] = 154, + [4293] = 423, + [4294] = 4294, + [4295] = 4295, + [4296] = 4296, + [4297] = 4297, + [4298] = 358, + [4299] = 407, + [4300] = 152, + [4301] = 4301, + [4302] = 4302, + [4303] = 358, + [4304] = 161, + [4305] = 384, + [4306] = 162, + [4307] = 163, + [4308] = 448, + [4309] = 383, + [4310] = 405, + [4311] = 544, + [4312] = 387, + [4313] = 155, + [4314] = 358, + [4315] = 515, + [4316] = 156, + [4317] = 518, + [4318] = 532, + [4319] = 4319, + [4320] = 4320, + [4321] = 1637, + [4322] = 1638, + [4323] = 4323, + [4324] = 4324, + [4325] = 4325, + [4326] = 4326, + [4327] = 4327, + [4328] = 4328, + [4329] = 4329, + [4330] = 4330, + [4331] = 537, [4332] = 4332, - [4333] = 381, - [4334] = 164, - [4335] = 4255, + [4333] = 4333, + [4334] = 1641, + [4335] = 1644, [4336] = 4336, - [4337] = 250, - [4338] = 498, - [4339] = 374, - [4340] = 375, - [4341] = 363, - [4342] = 364, - [4343] = 175, - [4344] = 385, + [4337] = 4337, + [4338] = 4338, + [4339] = 4339, + [4340] = 4340, + [4341] = 4341, + [4342] = 4342, + [4343] = 4343, + [4344] = 4344, [4345] = 4345, [4346] = 4346, [4347] = 4347, - [4348] = 469, - [4349] = 449, - [4350] = 390, - [4351] = 171, - [4352] = 452, - [4353] = 300, - [4354] = 441, - [4355] = 365, - [4356] = 366, - [4357] = 367, - [4358] = 368, - [4359] = 1418, - [4360] = 1419, - [4361] = 166, - [4362] = 445, - [4363] = 4363, - [4364] = 1400, - [4365] = 369, - [4366] = 165, - [4367] = 1402, - [4368] = 292, - [4369] = 473, - [4370] = 169, - [4371] = 350, - [4372] = 477, - [4373] = 482, - [4374] = 174, - [4375] = 324, - [4376] = 497, + [4348] = 4348, + [4349] = 4349, + [4350] = 4350, + [4351] = 4351, + [4352] = 4352, + [4353] = 4353, + [4354] = 4354, + [4355] = 4355, + [4356] = 4356, + [4357] = 4357, + [4358] = 455, + [4359] = 4359, + [4360] = 4360, + [4361] = 4361, + [4362] = 511, + [4363] = 512, + [4364] = 4364, + [4365] = 481, + [4366] = 411, + [4367] = 389, + [4368] = 412, + [4369] = 414, + [4370] = 417, + [4371] = 420, + [4372] = 421, + [4373] = 426, + [4374] = 427, + [4375] = 429, + [4376] = 4376, [4377] = 4377, - [4378] = 4378, + [4378] = 436, [4379] = 4379, - [4380] = 449, - [4381] = 390, - [4382] = 4382, - [4383] = 441, - [4384] = 4384, - [4385] = 163, - [4386] = 4386, - [4387] = 4387, - [4388] = 4388, - [4389] = 1400, + [4380] = 510, + [4381] = 4381, + [4382] = 437, + [4383] = 4383, + [4384] = 438, + [4385] = 464, + [4386] = 160, + [4387] = 441, + [4388] = 442, + [4389] = 401, [4390] = 4390, - [4391] = 349, - [4392] = 4392, - [4393] = 292, - [4394] = 4394, - [4395] = 1823, - [4396] = 4396, + [4391] = 473, + [4392] = 402, + [4393] = 445, + [4394] = 4257, + [4395] = 527, + [4396] = 526, [4397] = 4397, [4398] = 4398, - [4399] = 474, - [4400] = 4400, - [4401] = 4401, - [4402] = 250, + [4399] = 4399, + [4400] = 157, + [4401] = 528, + [4402] = 529, [4403] = 4403, [4404] = 4404, [4405] = 4405, @@ -9628,36 +9523,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4407] = 4407, [4408] = 4408, [4409] = 4409, - [4410] = 4410, - [4411] = 4411, + [4410] = 152, + [4411] = 159, [4412] = 4412, [4413] = 4413, - [4414] = 170, + [4414] = 4414, [4415] = 4415, [4416] = 4416, - [4417] = 388, - [4418] = 174, + [4417] = 4417, + [4418] = 4418, [4419] = 4419, [4420] = 4420, [4421] = 4421, [4422] = 4422, [4423] = 4423, [4424] = 4424, - [4425] = 445, + [4425] = 4425, [4426] = 4426, [4427] = 4427, [4428] = 4428, [4429] = 4429, [4430] = 4430, - [4431] = 1476, - [4432] = 294, + [4431] = 4431, + [4432] = 4432, [4433] = 4433, - [4434] = 170, - [4435] = 473, + [4434] = 4434, + [4435] = 4435, [4436] = 4436, [4437] = 4437, [4438] = 4438, - [4439] = 474, + [4439] = 4439, [4440] = 4440, [4441] = 4441, [4442] = 4442, @@ -9666,3638 +9561,3565 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4445] = 4445, [4446] = 4446, [4447] = 4447, - [4448] = 4363, + [4448] = 4448, [4449] = 4449, [4450] = 4450, - [4451] = 319, + [4451] = 4451, [4452] = 4452, - [4453] = 1794, - [4454] = 497, + [4453] = 4453, + [4454] = 480, [4455] = 4455, - [4456] = 4456, + [4456] = 513, [4457] = 4457, [4458] = 4458, [4459] = 4459, - [4460] = 313, - [4461] = 469, + [4460] = 4460, + [4461] = 4461, [4462] = 4462, - [4463] = 4463, - [4464] = 389, - [4465] = 4465, - [4466] = 4466, - [4467] = 4467, - [4468] = 1402, - [4469] = 4469, - [4470] = 163, - [4471] = 4471, - [4472] = 1469, + [4463] = 536, + [4464] = 4464, + [4465] = 158, + [4466] = 1610, + [4467] = 1701, + [4468] = 1628, + [4469] = 328, + [4470] = 159, + [4471] = 160, + [4472] = 4472, [4473] = 4473, [4474] = 4474, - [4475] = 350, + [4475] = 4475, [4476] = 4476, [4477] = 4477, - [4478] = 4478, + [4478] = 153, [4479] = 4479, - [4480] = 447, - [4481] = 171, - [4482] = 1765, + [4480] = 157, + [4481] = 4481, + [4482] = 4482, [4483] = 4483, - [4484] = 470, - [4485] = 446, - [4486] = 352, - [4487] = 477, - [4488] = 172, - [4489] = 499, - [4490] = 173, - [4491] = 4491, - [4492] = 482, - [4493] = 4493, - [4494] = 247, - [4495] = 360, + [4484] = 4484, + [4485] = 4485, + [4486] = 4486, + [4487] = 4487, + [4488] = 4488, + [4489] = 4489, + [4490] = 154, + [4491] = 369, + [4492] = 158, + [4493] = 164, + [4494] = 4494, + [4495] = 370, [4496] = 4496, - [4497] = 171, - [4498] = 363, - [4499] = 364, - [4500] = 365, - [4501] = 366, - [4502] = 367, - [4503] = 368, + [4497] = 447, + [4498] = 4498, + [4499] = 423, + [4500] = 4500, + [4501] = 4501, + [4502] = 4502, + [4503] = 356, [4504] = 4504, - [4505] = 369, - [4506] = 370, - [4507] = 372, - [4508] = 4508, - [4509] = 373, - [4510] = 374, - [4511] = 375, - [4512] = 376, - [4513] = 432, - [4514] = 378, - [4515] = 382, - [4516] = 4516, - [4517] = 383, - [4518] = 385, - [4519] = 4519, - [4520] = 4520, + [4505] = 4449, + [4506] = 4506, + [4507] = 4507, + [4508] = 4404, + [4509] = 4398, + [4510] = 464, + [4511] = 4399, + [4512] = 4412, + [4513] = 4464, + [4514] = 473, + [4515] = 4515, + [4516] = 608, + [4517] = 158, + [4518] = 1610, + [4519] = 1628, + [4520] = 4413, [4521] = 4521, [4522] = 4522, - [4523] = 4523, - [4524] = 4524, - [4525] = 4525, - [4526] = 4526, - [4527] = 498, - [4528] = 4528, - [4529] = 1495, - [4530] = 166, - [4531] = 4531, - [4532] = 1418, - [4533] = 1419, - [4534] = 164, - [4535] = 4535, - [4536] = 4536, - [4537] = 4537, - [4538] = 4538, - [4539] = 4539, - [4540] = 4540, - [4541] = 320, - [4542] = 165, - [4543] = 452, + [4523] = 159, + [4524] = 4397, + [4525] = 160, + [4526] = 157, + [4527] = 4527, + [4528] = 4419, + [4529] = 324, + [4530] = 328, + [4531] = 4433, + [4532] = 4532, + [4533] = 4533, + [4534] = 162, + [4535] = 153, + [4536] = 4436, + [4537] = 163, + [4538] = 1817, + [4539] = 4450, + [4540] = 161, + [4541] = 4451, + [4542] = 544, + [4543] = 4543, [4544] = 4544, - [4545] = 4545, - [4546] = 4546, - [4547] = 169, - [4548] = 167, - [4549] = 4549, - [4550] = 175, - [4551] = 4551, + [4545] = 154, + [4546] = 536, + [4547] = 1733, + [4548] = 1661, + [4549] = 4403, + [4550] = 4418, + [4551] = 528, [4552] = 4552, - [4553] = 4553, - [4554] = 168, - [4555] = 4555, - [4556] = 4556, - [4557] = 215, - [4558] = 308, - [4559] = 169, - [4560] = 4560, - [4561] = 4561, - [4562] = 4562, - [4563] = 4563, - [4564] = 4564, - [4565] = 4565, - [4566] = 4566, - [4567] = 348, - [4568] = 4568, - [4569] = 4569, - [4570] = 4570, + [4553] = 1701, + [4554] = 515, + [4555] = 4521, + [4556] = 518, + [4557] = 4557, + [4558] = 1638, + [4559] = 4522, + [4560] = 529, + [4561] = 527, + [4562] = 324, + [4563] = 343, + [4564] = 370, + [4565] = 455, + [4566] = 1641, + [4567] = 1644, + [4568] = 532, + [4569] = 4532, + [4570] = 4533, [4571] = 4571, - [4572] = 166, - [4573] = 4573, - [4574] = 4574, - [4575] = 4575, - [4576] = 4576, - [4577] = 4577, - [4578] = 4578, - [4579] = 4579, - [4580] = 4580, - [4581] = 4581, + [4572] = 164, + [4573] = 340, + [4574] = 4500, + [4575] = 4452, + [4576] = 511, + [4577] = 512, + [4578] = 481, + [4579] = 4501, + [4580] = 4502, + [4581] = 526, [4582] = 4582, - [4583] = 4583, - [4584] = 4584, - [4585] = 250, - [4586] = 4586, - [4587] = 175, - [4588] = 4588, - [4589] = 4474, - [4590] = 4377, - [4591] = 4576, - [4592] = 4579, + [4583] = 480, + [4584] = 155, + [4585] = 358, + [4586] = 156, + [4587] = 537, + [4588] = 384, + [4589] = 510, + [4590] = 513, + [4591] = 4506, + [4592] = 4592, [4593] = 4593, - [4594] = 1522, - [4595] = 4580, - [4596] = 474, - [4597] = 4597, - [4598] = 1495, - [4599] = 223, - [4600] = 452, - [4601] = 4561, - [4602] = 432, - [4603] = 319, - [4604] = 4593, + [4594] = 4594, + [4595] = 383, + [4596] = 1680, + [4597] = 1658, + [4598] = 387, + [4599] = 4453, + [4600] = 4455, + [4601] = 4414, + [4602] = 389, + [4603] = 369, + [4604] = 4604, [4605] = 4605, - [4606] = 474, - [4607] = 4564, - [4608] = 4581, - [4609] = 4582, - [4610] = 164, - [4611] = 388, - [4612] = 173, - [4613] = 4613, - [4614] = 222, - [4615] = 216, - [4616] = 4616, - [4617] = 1823, - [4618] = 4618, - [4619] = 1765, - [4620] = 215, - [4621] = 4583, - [4622] = 320, - [4623] = 4553, - [4624] = 473, - [4625] = 294, - [4626] = 4597, - [4627] = 469, - [4628] = 216, - [4629] = 4629, - [4630] = 166, - [4631] = 4551, - [4632] = 4565, - [4633] = 1400, - [4634] = 1469, - [4635] = 4635, - [4636] = 512, - [4637] = 171, - [4638] = 4638, - [4639] = 308, + [4606] = 1637, + [4607] = 641, + [4608] = 682, + [4609] = 692, + [4610] = 4527, + [4611] = 623, + [4612] = 632, + [4613] = 2623, + [4614] = 4614, + [4615] = 647, + [4616] = 631, + [4617] = 653, + [4618] = 1817, + [4619] = 4619, + [4620] = 4620, + [4621] = 661, + [4622] = 662, + [4623] = 667, + [4624] = 668, + [4625] = 675, + [4626] = 686, + [4627] = 611, + [4628] = 613, + [4629] = 614, + [4630] = 616, + [4631] = 619, + [4632] = 620, + [4633] = 608, + [4634] = 621, + [4635] = 527, + [4636] = 4636, + [4637] = 4637, + [4638] = 1701, + [4639] = 656, [4640] = 4640, - [4641] = 4641, - [4642] = 4642, - [4643] = 1402, - [4644] = 498, - [4645] = 4645, - [4646] = 313, - [4647] = 4647, - [4648] = 4635, - [4649] = 4571, - [4650] = 445, - [4651] = 4574, - [4652] = 167, - [4653] = 168, - [4654] = 446, - [4655] = 447, - [4656] = 4642, - [4657] = 165, - [4658] = 4658, - [4659] = 169, - [4660] = 170, - [4661] = 1489, - [4662] = 1521, - [4663] = 1679, - [4664] = 1419, - [4665] = 4545, - [4666] = 4556, - [4667] = 4575, + [4641] = 610, + [4642] = 1733, + [4643] = 4643, + [4644] = 4644, + [4645] = 387, + [4646] = 693, + [4647] = 4557, + [4648] = 324, + [4649] = 4649, + [4650] = 4650, + [4651] = 4651, + [4652] = 528, + [4653] = 4653, + [4654] = 685, + [4655] = 4655, + [4656] = 639, + [4657] = 383, + [4658] = 633, + [4659] = 4659, + [4660] = 635, + [4661] = 4661, + [4662] = 4662, + [4663] = 643, + [4664] = 4664, + [4665] = 4665, + [4666] = 4666, + [4667] = 4667, [4668] = 4668, - [4669] = 4641, - [4670] = 477, - [4671] = 482, - [4672] = 172, - [4673] = 250, - [4674] = 4674, - [4675] = 4560, - [4676] = 470, - [4677] = 1519, - [4678] = 4577, - [4679] = 449, - [4680] = 390, - [4681] = 499, - [4682] = 441, - [4683] = 1418, - [4684] = 4578, - [4685] = 4685, - [4686] = 389, - [4687] = 4473, - [4688] = 497, - [4689] = 174, - [4690] = 1476, - [4691] = 292, - [4692] = 1794, - [4693] = 4693, - [4694] = 570, - [4695] = 215, - [4696] = 319, - [4697] = 167, + [4669] = 677, + [4670] = 536, + [4671] = 4671, + [4672] = 669, + [4673] = 671, + [4674] = 1680, + [4675] = 4675, + [4676] = 622, + [4677] = 4605, + [4678] = 4678, + [4679] = 4679, + [4680] = 4680, + [4681] = 4681, + [4682] = 352, + [4683] = 529, + [4684] = 2627, + [4685] = 1831, + [4686] = 4594, + [4687] = 4515, + [4688] = 2628, + [4689] = 625, + [4690] = 1658, + [4691] = 4691, + [4692] = 4692, + [4693] = 640, + [4694] = 1661, + [4695] = 353, + [4696] = 4696, + [4697] = 4697, [4698] = 4698, - [4699] = 4699, - [4700] = 4613, - [4701] = 560, - [4702] = 168, - [4703] = 4703, - [4704] = 622, - [4705] = 4705, - [4706] = 1606, - [4707] = 1645, - [4708] = 620, - [4709] = 595, + [4699] = 663, + [4700] = 544, + [4701] = 612, + [4702] = 634, + [4703] = 328, + [4704] = 4704, + [4705] = 343, + [4706] = 630, + [4707] = 2622, + [4708] = 161, + [4709] = 4709, [4710] = 4710, - [4711] = 610, - [4712] = 4712, - [4713] = 4588, - [4714] = 4616, - [4715] = 320, - [4716] = 549, - [4717] = 4717, - [4718] = 611, - [4719] = 4685, - [4720] = 2471, - [4721] = 250, - [4722] = 4722, - [4723] = 553, - [4724] = 609, - [4725] = 4725, - [4726] = 566, - [4727] = 174, - [4728] = 4668, - [4729] = 597, - [4730] = 4730, - [4731] = 2471, - [4732] = 313, - [4733] = 4733, - [4734] = 4734, - [4735] = 562, - [4736] = 4736, - [4737] = 1679, - [4738] = 602, - [4739] = 627, - [4740] = 571, - [4741] = 613, - [4742] = 576, - [4743] = 630, - [4744] = 591, - [4745] = 615, - [4746] = 578, - [4747] = 4747, - [4748] = 512, - [4749] = 473, - [4750] = 2505, - [4751] = 1521, + [4711] = 4711, + [4712] = 355, + [4713] = 648, + [4714] = 650, + [4715] = 4715, + [4716] = 680, + [4717] = 684, + [4718] = 2623, + [4719] = 340, + [4720] = 2636, + [4721] = 688, + [4722] = 158, + [4723] = 515, + [4724] = 1814, + [4725] = 518, + [4726] = 1795, + [4727] = 358, + [4728] = 4728, + [4729] = 4543, + [4730] = 672, + [4731] = 159, + [4732] = 360, + [4733] = 674, + [4734] = 626, + [4735] = 532, + [4736] = 683, + [4737] = 160, + [4738] = 537, + [4739] = 157, + [4740] = 526, + [4741] = 389, + [4742] = 608, + [4743] = 4743, + [4744] = 2622, + [4745] = 4745, + [4746] = 2627, + [4747] = 162, + [4748] = 4592, + [4749] = 2628, + [4750] = 1837, + [4751] = 1838, [4752] = 4752, - [4753] = 592, - [4754] = 4754, - [4755] = 561, - [4756] = 4756, - [4757] = 1607, - [4758] = 1522, - [4759] = 1619, - [4760] = 172, - [4761] = 173, - [4762] = 4629, - [4763] = 497, - [4764] = 469, - [4765] = 4765, - [4766] = 223, - [4767] = 474, - [4768] = 170, - [4769] = 4769, - [4770] = 1519, - [4771] = 2407, - [4772] = 608, - [4773] = 249, - [4774] = 4774, - [4775] = 248, - [4776] = 4776, - [4777] = 4777, + [4753] = 4753, + [4754] = 163, + [4755] = 4582, + [4756] = 2636, + [4757] = 2316, + [4758] = 4758, + [4759] = 4759, + [4760] = 1736, + [4761] = 4761, + [4762] = 1737, + [4763] = 155, + [4764] = 1842, + [4765] = 1843, + [4766] = 637, + [4767] = 638, + [4768] = 4768, + [4769] = 384, + [4770] = 4770, + [4771] = 645, + [4772] = 649, + [4773] = 655, + [4774] = 657, + [4775] = 4775, + [4776] = 156, + [4777] = 660, [4778] = 4778, - [4779] = 619, + [4779] = 636, [4780] = 4780, - [4781] = 216, - [4782] = 4618, - [4783] = 171, - [4784] = 308, - [4785] = 498, - [4786] = 4786, - [4787] = 593, - [4788] = 564, - [4789] = 4674, - [4790] = 452, - [4791] = 4791, - [4792] = 4792, - [4793] = 599, + [4781] = 4781, + [4782] = 650, + [4783] = 4783, + [4784] = 2316, + [4785] = 4785, + [4786] = 1837, + [4787] = 1838, + [4788] = 4788, + [4789] = 4789, + [4790] = 2913, + [4791] = 1842, + [4792] = 1843, + [4793] = 2915, [4794] = 4794, - [4795] = 601, - [4796] = 555, - [4797] = 166, + [4795] = 4795, + [4796] = 4796, + [4797] = 4797, [4798] = 4798, - [4799] = 563, - [4800] = 616, + [4799] = 4799, + [4800] = 4800, [4801] = 4801, - [4802] = 556, - [4803] = 618, - [4804] = 251, - [4805] = 569, + [4802] = 4802, + [4803] = 4803, + [4804] = 631, + [4805] = 4805, [4806] = 4806, - [4807] = 4807, - [4808] = 4808, - [4809] = 4809, - [4810] = 596, - [4811] = 4811, - [4812] = 1650, - [4813] = 1661, - [4814] = 4814, - [4815] = 607, - [4816] = 477, - [4817] = 4817, - [4818] = 4818, - [4819] = 2433, - [4820] = 4820, - [4821] = 575, - [4822] = 1639, - [4823] = 482, - [4824] = 4824, - [4825] = 581, - [4826] = 1673, - [4827] = 222, - [4828] = 169, - [4829] = 586, - [4830] = 1489, - [4831] = 4831, - [4832] = 4832, - [4833] = 594, - [4834] = 557, - [4835] = 568, - [4836] = 4836, - [4837] = 2505, - [4838] = 587, - [4839] = 554, - [4840] = 626, - [4841] = 577, - [4842] = 470, - [4843] = 4843, - [4844] = 499, - [4845] = 584, - [4846] = 604, - [4847] = 1495, - [4848] = 1647, - [4849] = 4849, - [4850] = 512, - [4851] = 246, - [4852] = 4852, - [4853] = 552, - [4854] = 4854, - [4855] = 4855, - [4856] = 612, - [4857] = 2433, - [4858] = 4858, - [4859] = 4859, - [4860] = 598, - [4861] = 629, - [4862] = 4862, - [4863] = 614, - [4864] = 580, - [4865] = 2433, - [4866] = 549, - [4867] = 597, - [4868] = 598, - [4869] = 4869, - [4870] = 599, - [4871] = 601, - [4872] = 4806, - [4873] = 4873, + [4807] = 625, + [4808] = 612, + [4809] = 688, + [4810] = 4810, + [4811] = 343, + [4812] = 340, + [4813] = 622, + [4814] = 352, + [4815] = 4815, + [4816] = 682, + [4817] = 692, + [4818] = 353, + [4819] = 4819, + [4820] = 355, + [4821] = 4821, + [4822] = 360, + [4823] = 4823, + [4824] = 310, + [4825] = 633, + [4826] = 635, + [4827] = 677, + [4828] = 669, + [4829] = 671, + [4830] = 630, + [4831] = 2912, + [4832] = 648, + [4833] = 684, + [4834] = 1814, + [4835] = 1795, + [4836] = 640, + [4837] = 672, + [4838] = 674, + [4839] = 626, + [4840] = 680, + [4841] = 1736, + [4842] = 1737, + [4843] = 683, + [4844] = 638, + [4845] = 645, + [4846] = 649, + [4847] = 655, + [4848] = 657, + [4849] = 660, + [4850] = 663, + [4851] = 637, + [4852] = 636, + [4853] = 623, + [4854] = 632, + [4855] = 647, + [4856] = 653, + [4857] = 661, + [4858] = 662, + [4859] = 667, + [4860] = 668, + [4861] = 675, + [4862] = 686, + [4863] = 611, + [4864] = 613, + [4865] = 4865, + [4866] = 614, + [4867] = 616, + [4868] = 619, + [4869] = 2623, + [4870] = 620, + [4871] = 621, + [4872] = 4872, + [4873] = 4715, [4874] = 4874, - [4875] = 4875, + [4875] = 656, [4876] = 4876, - [4877] = 4877, - [4878] = 4878, - [4879] = 4703, - [4880] = 4880, - [4881] = 602, - [4882] = 4778, - [4883] = 214, - [4884] = 611, - [4885] = 4885, - [4886] = 4886, - [4887] = 571, - [4888] = 4888, - [4889] = 2485, - [4890] = 4890, - [4891] = 613, - [4892] = 615, - [4893] = 174, - [4894] = 610, - [4895] = 172, - [4896] = 173, - [4897] = 552, - [4898] = 4898, - [4899] = 614, + [4877] = 4821, + [4878] = 4823, + [4879] = 685, + [4880] = 4659, + [4881] = 639, + [4882] = 641, + [4883] = 4661, + [4884] = 4802, + [4885] = 4806, + [4886] = 4662, + [4887] = 4668, + [4888] = 4678, + [4889] = 643, + [4890] = 4679, + [4891] = 4692, + [4892] = 634, + [4893] = 4709, + [4894] = 4894, + [4895] = 4895, + [4896] = 4896, + [4897] = 4897, + [4898] = 2449, + [4899] = 4899, [4900] = 4900, - [4901] = 619, - [4902] = 626, - [4903] = 608, - [4904] = 575, - [4905] = 577, - [4906] = 612, - [4907] = 622, - [4908] = 562, - [4909] = 563, - [4910] = 566, - [4911] = 569, - [4912] = 570, - [4913] = 576, - [4914] = 578, - [4915] = 580, - [4916] = 586, - [4917] = 595, - [4918] = 607, - [4919] = 4919, - [4920] = 4920, - [4921] = 4921, - [4922] = 4922, - [4923] = 609, - [4924] = 2936, - [4925] = 2937, - [4926] = 4926, - [4927] = 629, - [4928] = 549, - [4929] = 597, - [4930] = 598, - [4931] = 4931, - [4932] = 4932, - [4933] = 4933, - [4934] = 2943, - [4935] = 223, - [4936] = 593, - [4937] = 596, - [4938] = 222, - [4939] = 251, - [4940] = 246, - [4941] = 560, - [4942] = 581, - [4943] = 248, - [4944] = 249, - [4945] = 553, - [4946] = 564, - [4947] = 4947, - [4948] = 4948, - [4949] = 4949, - [4950] = 4703, - [4951] = 4858, - [4952] = 4952, - [4953] = 4953, - [4954] = 1673, + [4901] = 4768, + [4902] = 610, + [4903] = 4715, + [4904] = 4789, + [4905] = 693, + [4906] = 4650, + [4907] = 631, + [4908] = 688, + [4909] = 310, + [4910] = 2636, + [4911] = 4911, + [4912] = 633, + [4913] = 635, + [4914] = 677, + [4915] = 317, + [4916] = 4916, + [4917] = 640, + [4918] = 680, + [4919] = 683, + [4920] = 2446, + [4921] = 637, + [4922] = 636, + [4923] = 623, + [4924] = 632, + [4925] = 647, + [4926] = 653, + [4927] = 1391, + [4928] = 661, + [4929] = 662, + [4930] = 667, + [4931] = 668, + [4932] = 675, + [4933] = 686, + [4934] = 611, + [4935] = 613, + [4936] = 614, + [4937] = 616, + [4938] = 619, + [4939] = 620, + [4940] = 621, + [4941] = 2627, + [4942] = 161, + [4943] = 162, + [4944] = 163, + [4945] = 4945, + [4946] = 639, + [4947] = 641, + [4948] = 2628, + [4949] = 643, + [4950] = 2622, + [4951] = 1831, + [4952] = 625, + [4953] = 612, + [4954] = 4954, [4955] = 4955, - [4956] = 1680, - [4957] = 4957, - [4958] = 1686, - [4959] = 2407, - [4960] = 4960, - [4961] = 4961, - [4962] = 4962, - [4963] = 4862, - [4964] = 1639, - [4965] = 1647, - [4966] = 4960, - [4967] = 4961, - [4968] = 1606, - [4969] = 1645, - [4970] = 4970, - [4971] = 4971, - [4972] = 4972, - [4973] = 629, - [4974] = 4974, - [4975] = 4975, - [4976] = 218, - [4977] = 620, - [4978] = 214, - [4979] = 627, - [4980] = 630, - [4981] = 592, - [4982] = 561, - [4983] = 1607, - [4984] = 1619, - [4985] = 4752, - [4986] = 4754, - [4987] = 4769, - [4988] = 616, - [4989] = 556, - [4990] = 1238, - [4991] = 618, - [4992] = 4774, - [4993] = 1650, - [4994] = 1661, - [4995] = 4791, - [4996] = 4798, - [4997] = 594, - [4998] = 557, - [4999] = 568, - [5000] = 587, - [5001] = 554, - [5002] = 584, - [5003] = 604, - [5004] = 4807, - [5005] = 5005, - [5006] = 5006, + [4956] = 1792, + [4957] = 4810, + [4958] = 4815, + [4959] = 4819, + [4960] = 682, + [4961] = 692, + [4962] = 1793, + [4963] = 4963, + [4964] = 4964, + [4965] = 4965, + [4966] = 4966, + [4967] = 4967, + [4968] = 3376, + [4969] = 4789, + [4970] = 317, + [4971] = 669, + [4972] = 671, + [4973] = 4620, + [4974] = 4710, + [4975] = 4653, + [4976] = 4655, + [4977] = 4728, + [4978] = 4745, + [4979] = 4704, + [4980] = 4711, + [4981] = 4675, + [4982] = 4681, + [4983] = 4691, + [4984] = 4697, + [4985] = 317, + [4986] = 4986, + [4987] = 4987, + [4988] = 4988, + [4989] = 4989, + [4990] = 4990, + [4991] = 4991, + [4992] = 4992, + [4993] = 672, + [4994] = 328, + [4995] = 4995, + [4996] = 4895, + [4997] = 4896, + [4998] = 4995, + [4999] = 4999, + [5000] = 2316, + [5001] = 5001, + [5002] = 5002, + [5003] = 4897, + [5004] = 5004, + [5005] = 4865, + [5006] = 322, [5007] = 5007, [5008] = 5008, - [5009] = 5009, - [5010] = 611, - [5011] = 593, - [5012] = 596, + [5009] = 4988, + [5010] = 4900, + [5011] = 5011, + [5012] = 4963, [5013] = 5013, - [5014] = 571, - [5015] = 560, - [5016] = 581, - [5017] = 613, - [5018] = 615, - [5019] = 610, - [5020] = 553, - [5021] = 564, + [5014] = 4964, + [5015] = 5015, + [5016] = 5002, + [5017] = 5017, + [5018] = 4955, + [5019] = 5019, + [5020] = 5020, + [5021] = 2449, [5022] = 5022, - [5023] = 552, - [5024] = 5024, - [5025] = 614, - [5026] = 619, - [5027] = 5027, - [5028] = 2471, - [5029] = 626, - [5030] = 218, - [5031] = 608, - [5032] = 4931, - [5033] = 4932, - [5034] = 4933, - [5035] = 575, - [5036] = 577, - [5037] = 612, - [5038] = 622, - [5039] = 562, - [5040] = 563, - [5041] = 566, - [5042] = 569, - [5043] = 570, - [5044] = 576, - [5045] = 3387, - [5046] = 218, - [5047] = 578, - [5048] = 580, - [5049] = 586, - [5050] = 595, - [5051] = 607, - [5052] = 591, - [5053] = 2505, - [5054] = 555, - [5055] = 4955, - [5056] = 4957, - [5057] = 609, - [5058] = 2469, - [5059] = 5059, - [5060] = 3421, - [5061] = 5061, + [5023] = 316, + [5024] = 2446, + [5025] = 5025, + [5026] = 324, + [5027] = 342, + [5028] = 5028, + [5029] = 5029, + [5030] = 339, + [5031] = 352, + [5032] = 5011, + [5033] = 346, + [5034] = 1792, + [5035] = 328, + [5036] = 353, + [5037] = 1793, + [5038] = 5038, + [5039] = 5039, + [5040] = 5040, + [5041] = 355, + [5042] = 5042, + [5043] = 5043, + [5044] = 5044, + [5045] = 5045, + [5046] = 5046, + [5047] = 622, + [5048] = 5048, + [5049] = 5049, + [5050] = 5050, + [5051] = 316, + [5052] = 5052, + [5053] = 5053, + [5054] = 360, + [5055] = 324, + [5056] = 4911, + [5057] = 4954, + [5058] = 630, + [5059] = 648, + [5060] = 650, + [5061] = 684, [5062] = 5062, [5063] = 5063, [5064] = 5064, [5065] = 5065, - [5066] = 5066, - [5067] = 5067, - [5068] = 5068, - [5069] = 5069, - [5070] = 215, - [5071] = 2469, - [5072] = 4703, - [5073] = 4890, - [5074] = 5022, - [5075] = 5075, - [5076] = 591, - [5077] = 627, - [5078] = 555, + [5066] = 674, + [5067] = 626, + [5068] = 638, + [5069] = 645, + [5070] = 649, + [5071] = 655, + [5072] = 657, + [5073] = 660, + [5074] = 663, + [5075] = 4991, + [5076] = 4794, + [5077] = 4990, + [5078] = 5078, [5079] = 5079, [5080] = 5080, [5081] = 5081, - [5082] = 630, - [5083] = 2485, + [5082] = 5082, + [5083] = 5083, [5084] = 5084, - [5085] = 5085, + [5085] = 324, [5086] = 5086, - [5087] = 5005, - [5088] = 592, - [5089] = 5006, - [5090] = 217, - [5091] = 561, - [5092] = 4919, + [5087] = 5087, + [5088] = 5088, + [5089] = 5089, + [5090] = 5090, + [5091] = 5091, + [5092] = 5092, [5093] = 5093, - [5094] = 4920, - [5095] = 5095, - [5096] = 4886, - [5097] = 5097, + [5094] = 5094, + [5095] = 4916, + [5096] = 344, + [5097] = 4715, [5098] = 5098, - [5099] = 1238, + [5099] = 5099, [5100] = 5100, [5101] = 5101, [5102] = 5102, [5103] = 5103, [5104] = 5104, - [5105] = 5105, + [5105] = 4999, [5106] = 5106, - [5107] = 5107, - [5108] = 5108, - [5109] = 5109, - [5110] = 5110, - [5111] = 616, - [5112] = 219, - [5113] = 4921, - [5114] = 4922, - [5115] = 5115, - [5116] = 556, - [5117] = 1680, - [5118] = 1686, - [5119] = 5119, - [5120] = 618, - [5121] = 5024, - [5122] = 5122, - [5123] = 5123, - [5124] = 5124, - [5125] = 5125, - [5126] = 5126, - [5127] = 5127, - [5128] = 225, - [5129] = 5129, - [5130] = 5130, - [5131] = 226, + [5107] = 4620, + [5108] = 4797, + [5109] = 4710, + [5110] = 4653, + [5111] = 4655, + [5112] = 328, + [5113] = 4728, + [5114] = 4745, + [5115] = 4704, + [5116] = 4711, + [5117] = 4675, + [5118] = 4681, + [5119] = 4691, + [5120] = 4697, + [5121] = 5121, + [5122] = 3384, + [5123] = 3389, + [5124] = 344, + [5125] = 342, + [5126] = 339, + [5127] = 346, + [5128] = 4783, + [5129] = 685, + [5130] = 4805, + [5131] = 4965, [5132] = 5132, - [5133] = 5133, - [5134] = 5134, - [5135] = 5135, + [5133] = 4966, + [5134] = 5040, + [5135] = 1391, [5136] = 5136, - [5137] = 5137, + [5137] = 322, [5138] = 5138, - [5139] = 251, + [5139] = 5139, [5140] = 5140, [5141] = 5141, - [5142] = 5142, - [5143] = 217, - [5144] = 5144, - [5145] = 5145, - [5146] = 5146, - [5147] = 5147, - [5148] = 246, - [5149] = 228, - [5150] = 594, - [5151] = 248, - [5152] = 249, - [5153] = 557, - [5154] = 4873, - [5155] = 5007, - [5156] = 568, - [5157] = 587, - [5158] = 163, - [5159] = 554, - [5160] = 584, - [5161] = 604, - [5162] = 4874, - [5163] = 5163, + [5142] = 344, + [5143] = 342, + [5144] = 339, + [5145] = 346, + [5146] = 2650, + [5147] = 4789, + [5148] = 5148, + [5149] = 5149, + [5150] = 5150, + [5151] = 3376, + [5152] = 5152, + [5153] = 5153, + [5154] = 5154, + [5155] = 5155, + [5156] = 4987, + [5157] = 3376, + [5158] = 317, + [5159] = 5159, + [5160] = 5160, + [5161] = 5161, + [5162] = 5162, + [5163] = 656, [5164] = 5164, - [5165] = 4885, + [5165] = 4967, [5166] = 5166, [5167] = 5167, - [5168] = 5168, - [5169] = 2663, - [5170] = 5027, - [5171] = 5080, + [5168] = 342, + [5169] = 2446, + [5170] = 412, + [5171] = 414, [5172] = 5172, - [5173] = 216, - [5174] = 5174, - [5175] = 5008, - [5176] = 215, - [5177] = 4888, - [5178] = 5178, - [5179] = 5179, - [5180] = 5009, - [5181] = 219, - [5182] = 5182, - [5183] = 2407, - [5184] = 5184, - [5185] = 4869, - [5186] = 5186, - [5187] = 5086, + [5173] = 339, + [5174] = 417, + [5175] = 420, + [5176] = 421, + [5177] = 426, + [5178] = 427, + [5179] = 340, + [5180] = 5180, + [5181] = 328, + [5182] = 346, + [5183] = 423, + [5184] = 429, + [5185] = 2449, + [5186] = 340, + [5187] = 5187, [5188] = 5188, - [5189] = 4876, + [5189] = 5189, [5190] = 5190, - [5191] = 4898, - [5192] = 224, - [5193] = 5115, - [5194] = 4900, + [5191] = 5190, + [5192] = 436, + [5193] = 437, + [5194] = 5194, [5195] = 5195, - [5196] = 5107, - [5197] = 5197, - [5198] = 5198, - [5199] = 5190, - [5200] = 5200, - [5201] = 216, - [5202] = 3418, - [5203] = 5203, - [5204] = 224, - [5205] = 3387, - [5206] = 225, - [5207] = 226, - [5208] = 228, - [5209] = 5209, - [5210] = 5210, - [5211] = 218, - [5212] = 216, - [5213] = 620, - [5214] = 5214, - [5215] = 224, - [5216] = 225, - [5217] = 226, - [5218] = 228, - [5219] = 215, - [5220] = 5220, - [5221] = 3387, - [5222] = 3421, - [5223] = 216, - [5224] = 164, - [5225] = 5225, - [5226] = 165, - [5227] = 223, - [5228] = 3421, + [5196] = 153, + [5197] = 438, + [5198] = 441, + [5199] = 442, + [5200] = 401, + [5201] = 5201, + [5202] = 402, + [5203] = 5190, + [5204] = 4789, + [5205] = 343, + [5206] = 340, + [5207] = 5190, + [5208] = 445, + [5209] = 3389, + [5210] = 317, + [5211] = 3376, + [5212] = 344, + [5213] = 447, + [5214] = 328, + [5215] = 5190, + [5216] = 405, + [5217] = 3384, + [5218] = 324, + [5219] = 152, + [5220] = 343, + [5221] = 5221, + [5222] = 448, + [5223] = 3384, + [5224] = 154, + [5225] = 3389, + [5226] = 328, + [5227] = 5227, + [5228] = 5228, [5229] = 5229, - [5230] = 215, - [5231] = 5231, - [5232] = 5232, - [5233] = 5233, - [5234] = 5225, - [5235] = 3387, - [5236] = 5236, - [5237] = 3387, - [5238] = 222, - [5239] = 223, + [5230] = 407, + [5231] = 152, + [5232] = 5229, + [5233] = 324, + [5234] = 411, + [5235] = 5235, + [5236] = 324, + [5237] = 343, + [5238] = 3376, + [5239] = 5239, [5240] = 5240, - [5241] = 5229, - [5242] = 3418, + [5241] = 324, + [5242] = 1391, [5243] = 5243, - [5244] = 222, - [5245] = 3418, - [5246] = 5229, - [5247] = 5247, - [5248] = 215, - [5249] = 5249, - [5250] = 5250, - [5251] = 223, - [5252] = 2485, - [5253] = 5229, - [5254] = 5254, - [5255] = 1522, - [5256] = 216, - [5257] = 5229, - [5258] = 225, + [5244] = 328, + [5245] = 328, + [5246] = 362, + [5247] = 324, + [5248] = 352, + [5249] = 353, + [5250] = 155, + [5251] = 156, + [5252] = 328, + [5253] = 5253, + [5254] = 355, + [5255] = 152, + [5256] = 360, + [5257] = 5240, + [5258] = 5258, [5259] = 5259, - [5260] = 1519, - [5261] = 2469, - [5262] = 226, - [5263] = 215, - [5264] = 5229, - [5265] = 5265, - [5266] = 228, - [5267] = 218, - [5268] = 5229, - [5269] = 222, - [5270] = 224, - [5271] = 5271, - [5272] = 216, - [5273] = 163, - [5274] = 5259, - [5275] = 5275, - [5276] = 5276, - [5277] = 5277, - [5278] = 5240, - [5279] = 5279, - [5280] = 5243, - [5281] = 5281, - [5282] = 251, - [5283] = 5283, - [5284] = 5284, - [5285] = 163, - [5286] = 223, - [5287] = 5254, - [5288] = 246, - [5289] = 222, - [5290] = 164, - [5291] = 5291, - [5292] = 5292, - [5293] = 5293, - [5294] = 5294, - [5295] = 216, - [5296] = 247, - [5297] = 248, - [5298] = 215, - [5299] = 1238, - [5300] = 165, - [5301] = 5294, - [5302] = 5302, - [5303] = 249, - [5304] = 5271, - [5305] = 5305, - [5306] = 5302, - [5307] = 235, - [5308] = 236, - [5309] = 5309, - [5310] = 5277, - [5311] = 5311, - [5312] = 5279, - [5313] = 250, - [5314] = 5283, - [5315] = 5284, - [5316] = 251, - [5317] = 216, - [5318] = 5292, - [5319] = 5293, - [5320] = 5294, - [5321] = 215, - [5322] = 5322, - [5323] = 235, - [5324] = 5302, - [5325] = 5311, - [5326] = 5279, - [5327] = 5276, - [5328] = 5277, - [5329] = 5329, - [5330] = 5283, - [5331] = 5284, - [5332] = 5294, - [5333] = 246, - [5334] = 5302, - [5335] = 5283, - [5336] = 5284, - [5337] = 5283, - [5338] = 5284, - [5339] = 2456, - [5340] = 251, - [5341] = 236, - [5342] = 246, - [5343] = 248, - [5344] = 248, - [5345] = 5309, - [5346] = 249, - [5347] = 249, - [5348] = 5329, - [5349] = 223, - [5350] = 198, - [5351] = 5292, - [5352] = 5293, - [5353] = 222, - [5354] = 1238, - [5355] = 230, - [5356] = 5283, - [5357] = 5284, - [5358] = 223, - [5359] = 3418, - [5360] = 3421, - [5361] = 5275, - [5362] = 222, - [5363] = 5311, - [5364] = 5364, - [5365] = 5365, - [5366] = 5364, - [5367] = 5365, + [5260] = 5260, + [5261] = 5261, + [5262] = 1391, + [5263] = 5263, + [5264] = 5264, + [5265] = 5189, + [5266] = 5180, + [5267] = 5201, + [5268] = 5268, + [5269] = 5269, + [5270] = 5253, + [5271] = 205, + [5272] = 5263, + [5273] = 447, + [5274] = 5274, + [5275] = 5264, + [5276] = 354, + [5277] = 5243, + [5278] = 5278, + [5279] = 5240, + [5280] = 5187, + [5281] = 405, + [5282] = 5259, + [5283] = 5260, + [5284] = 445, + [5285] = 407, + [5286] = 5235, + [5287] = 5260, + [5288] = 5263, + [5289] = 5264, + [5290] = 5253, + [5291] = 5274, + [5292] = 411, + [5293] = 412, + [5294] = 414, + [5295] = 417, + [5296] = 420, + [5297] = 421, + [5298] = 426, + [5299] = 340, + [5300] = 2514, + [5301] = 5274, + [5302] = 152, + [5303] = 5263, + [5304] = 5264, + [5305] = 5263, + [5306] = 5264, + [5307] = 427, + [5308] = 429, + [5309] = 436, + [5310] = 437, + [5311] = 438, + [5312] = 441, + [5313] = 442, + [5314] = 152, + [5315] = 401, + [5316] = 352, + [5317] = 5263, + [5318] = 5264, + [5319] = 353, + [5320] = 358, + [5321] = 153, + [5322] = 355, + [5323] = 402, + [5324] = 5324, + [5325] = 423, + [5326] = 154, + [5327] = 360, + [5328] = 5268, + [5329] = 5269, + [5330] = 5268, + [5331] = 5269, + [5332] = 5253, + [5333] = 343, + [5334] = 360, + [5335] = 353, + [5336] = 356, + [5337] = 5324, + [5338] = 5259, + [5339] = 355, + [5340] = 340, + [5341] = 3384, + [5342] = 3389, + [5343] = 347, + [5344] = 343, + [5345] = 5274, + [5346] = 5346, + [5347] = 324, + [5348] = 5348, + [5349] = 5258, + [5350] = 343, + [5351] = 5278, + [5352] = 340, + [5353] = 448, + [5354] = 352, + [5355] = 423, + [5356] = 324, + [5357] = 360, + [5358] = 158, + [5359] = 159, + [5360] = 160, + [5361] = 445, + [5362] = 1391, + [5363] = 154, + [5364] = 157, + [5365] = 448, + [5366] = 328, + [5367] = 5367, [5368] = 5368, - [5369] = 5365, - [5370] = 250, - [5371] = 5371, + [5369] = 447, + [5370] = 358, + [5371] = 328, [5372] = 5372, - [5373] = 5373, - [5374] = 5374, - [5375] = 223, - [5376] = 216, - [5377] = 5364, - [5378] = 1238, - [5379] = 1476, - [5380] = 5372, - [5381] = 5364, - [5382] = 5368, - [5383] = 5365, - [5384] = 5372, - [5385] = 5364, - [5386] = 246, + [5373] = 1628, + [5374] = 356, + [5375] = 405, + [5376] = 5376, + [5377] = 1610, + [5378] = 152, + [5379] = 407, + [5380] = 411, + [5381] = 412, + [5382] = 414, + [5383] = 5383, + [5384] = 356, + [5385] = 417, + [5386] = 420, [5387] = 5372, - [5388] = 5364, - [5389] = 5389, - [5390] = 5372, - [5391] = 251, - [5392] = 5364, - [5393] = 248, - [5394] = 5372, + [5388] = 5376, + [5389] = 421, + [5390] = 426, + [5391] = 427, + [5392] = 429, + [5393] = 436, + [5394] = 437, [5395] = 5395, - [5396] = 5364, - [5397] = 5372, - [5398] = 5364, - [5399] = 1469, - [5400] = 5372, - [5401] = 5364, - [5402] = 247, - [5403] = 5372, - [5404] = 167, - [5405] = 168, - [5406] = 5372, - [5407] = 5407, - [5408] = 5373, - [5409] = 5368, - [5410] = 249, - [5411] = 5368, - [5412] = 5412, - [5413] = 223, - [5414] = 251, - [5415] = 5373, - [5416] = 5416, - [5417] = 5364, - [5418] = 246, - [5419] = 5364, - [5420] = 5407, - [5421] = 294, - [5422] = 5373, - [5423] = 248, - [5424] = 4730, - [5425] = 4736, - [5426] = 5407, - [5427] = 5372, - [5428] = 247, - [5429] = 222, - [5430] = 249, - [5431] = 222, - [5432] = 5368, - [5433] = 5365, - [5434] = 5364, - [5435] = 251, - [5436] = 5368, - [5437] = 292, - [5438] = 250, - [5439] = 215, - [5440] = 5407, - [5441] = 165, - [5442] = 5372, - [5443] = 5365, - [5444] = 5364, - [5445] = 246, - [5446] = 5364, - [5447] = 250, - [5448] = 248, - [5449] = 5412, - [5450] = 249, - [5451] = 204, - [5452] = 164, - [5453] = 5407, - [5454] = 5368, - [5455] = 247, - [5456] = 5364, - [5457] = 5407, - [5458] = 169, - [5459] = 372, - [5460] = 373, - [5461] = 374, - [5462] = 375, - [5463] = 376, - [5464] = 378, - [5465] = 382, - [5466] = 383, - [5467] = 385, - [5468] = 313, - [5469] = 171, - [5470] = 169, - [5471] = 4971, - [5472] = 350, - [5473] = 163, - [5474] = 348, + [5396] = 5396, + [5397] = 438, + [5398] = 441, + [5399] = 442, + [5400] = 401, + [5401] = 402, + [5402] = 5383, + [5403] = 5403, + [5404] = 5376, + [5405] = 5395, + [5406] = 5406, + [5407] = 355, + [5408] = 5383, + [5409] = 5403, + [5410] = 153, + [5411] = 5395, + [5412] = 5383, + [5413] = 340, + [5414] = 5395, + [5415] = 5383, + [5416] = 324, + [5417] = 5395, + [5418] = 5383, + [5419] = 360, + [5420] = 5372, + [5421] = 5395, + [5422] = 5383, + [5423] = 5376, + [5424] = 162, + [5425] = 206, + [5426] = 447, + [5427] = 5406, + [5428] = 5383, + [5429] = 356, + [5430] = 163, + [5431] = 5396, + [5432] = 5395, + [5433] = 370, + [5434] = 5383, + [5435] = 5395, + [5436] = 5383, + [5437] = 5395, + [5438] = 5383, + [5439] = 4696, + [5440] = 340, + [5441] = 5395, + [5442] = 343, + [5443] = 340, + [5444] = 5372, + [5445] = 445, + [5446] = 155, + [5447] = 156, + [5448] = 369, + [5449] = 5396, + [5450] = 5383, + [5451] = 5395, + [5452] = 5403, + [5453] = 352, + [5454] = 5403, + [5455] = 358, + [5456] = 5383, + [5457] = 5372, + [5458] = 5376, + [5459] = 5383, + [5460] = 353, + [5461] = 5403, + [5462] = 358, + [5463] = 355, + [5464] = 5396, + [5465] = 5403, + [5466] = 4781, + [5467] = 5372, + [5468] = 5468, + [5469] = 5383, + [5470] = 360, + [5471] = 352, + [5472] = 5472, + [5473] = 5376, + [5474] = 343, [5475] = 352, - [5476] = 349, - [5477] = 5477, - [5478] = 360, - [5479] = 5477, - [5480] = 348, - [5481] = 349, - [5482] = 363, - [5483] = 364, - [5484] = 365, - [5485] = 5477, - [5486] = 366, - [5487] = 367, - [5488] = 368, - [5489] = 369, - [5490] = 5477, - [5491] = 370, - [5492] = 372, - [5493] = 373, - [5494] = 1673, - [5495] = 5477, - [5496] = 374, - [5497] = 375, - [5498] = 376, - [5499] = 378, - [5500] = 5477, - [5501] = 382, - [5502] = 1606, - [5503] = 383, - [5504] = 1645, - [5505] = 385, - [5506] = 5477, - [5507] = 5477, - [5508] = 5259, - [5509] = 292, - [5510] = 1639, - [5511] = 292, - [5512] = 5477, - [5513] = 166, - [5514] = 167, - [5515] = 246, - [5516] = 5477, - [5517] = 235, - [5518] = 5518, - [5519] = 174, - [5520] = 5477, - [5521] = 170, - [5522] = 5522, - [5523] = 223, - [5524] = 5477, - [5525] = 1469, - [5526] = 294, - [5527] = 5477, - [5528] = 319, - [5529] = 247, - [5530] = 5477, - [5531] = 5477, - [5532] = 1647, - [5533] = 5477, - [5534] = 5477, - [5535] = 250, - [5536] = 5477, - [5537] = 5477, - [5538] = 5477, - [5539] = 5477, - [5540] = 5477, - [5541] = 5477, - [5542] = 5477, - [5543] = 5477, - [5544] = 5477, - [5545] = 5477, - [5546] = 5477, - [5547] = 5477, - [5548] = 5477, - [5549] = 5477, - [5550] = 1476, - [5551] = 5477, - [5552] = 5477, - [5553] = 5477, - [5554] = 5477, - [5555] = 5477, - [5556] = 5477, - [5557] = 5477, - [5558] = 5477, - [5559] = 5477, - [5560] = 5477, - [5561] = 473, - [5562] = 251, - [5563] = 4970, - [5564] = 248, - [5565] = 1495, - [5566] = 172, - [5567] = 173, - [5568] = 236, - [5569] = 1238, - [5570] = 469, - [5571] = 292, - [5572] = 5572, - [5573] = 246, - [5574] = 4962, - [5575] = 477, - [5576] = 474, - [5577] = 1238, - [5578] = 320, - [5579] = 1489, - [5580] = 249, - [5581] = 1607, - [5582] = 248, - [5583] = 1619, - [5584] = 294, - [5585] = 5585, - [5586] = 235, - [5587] = 1521, - [5588] = 236, - [5589] = 5589, - [5590] = 482, - [5591] = 222, - [5592] = 294, - [5593] = 249, - [5594] = 5395, - [5595] = 5477, - [5596] = 4975, - [5597] = 251, - [5598] = 170, - [5599] = 5477, - [5600] = 163, - [5601] = 308, - [5602] = 4972, - [5603] = 5059, - [5604] = 5477, - [5605] = 5477, - [5606] = 4974, - [5607] = 168, - [5608] = 350, - [5609] = 171, - [5610] = 166, - [5611] = 1650, - [5612] = 348, - [5613] = 1661, - [5614] = 352, - [5615] = 349, - [5616] = 360, - [5617] = 363, - [5618] = 364, - [5619] = 365, - [5620] = 5259, - [5621] = 366, - [5622] = 367, - [5623] = 368, - [5624] = 369, - [5625] = 370, - [5626] = 5477, - [5627] = 5627, - [5628] = 375, - [5629] = 368, - [5630] = 246, - [5631] = 380, - [5632] = 319, - [5633] = 248, - [5634] = 5634, - [5635] = 320, - [5636] = 5636, - [5637] = 249, - [5638] = 5395, - [5639] = 5639, - [5640] = 5640, - [5641] = 5641, + [5476] = 353, + [5477] = 153, + [5478] = 343, + [5479] = 5372, + [5480] = 5480, + [5481] = 355, + [5482] = 154, + [5483] = 161, + [5484] = 353, + [5485] = 5395, + [5486] = 5486, + [5487] = 4799, + [5488] = 5488, + [5489] = 159, + [5490] = 387, + [5491] = 5491, + [5492] = 5488, + [5493] = 4800, + [5494] = 370, + [5495] = 5488, + [5496] = 5488, + [5497] = 158, + [5498] = 352, + [5499] = 5488, + [5500] = 362, + [5501] = 5488, + [5502] = 353, + [5503] = 5488, + [5504] = 161, + [5505] = 5488, + [5506] = 5488, + [5507] = 5488, + [5508] = 5488, + [5509] = 5488, + [5510] = 5488, + [5511] = 5488, + [5512] = 5488, + [5513] = 5488, + [5514] = 5488, + [5515] = 5488, + [5516] = 5488, + [5517] = 5488, + [5518] = 5488, + [5519] = 5488, + [5520] = 5488, + [5521] = 5488, + [5522] = 5488, + [5523] = 5488, + [5524] = 5488, + [5525] = 5488, + [5526] = 5488, + [5527] = 5488, + [5528] = 5488, + [5529] = 352, + [5530] = 158, + [5531] = 526, + [5532] = 527, + [5533] = 1736, + [5534] = 353, + [5535] = 369, + [5536] = 155, + [5537] = 340, + [5538] = 384, + [5539] = 5488, + [5540] = 5488, + [5541] = 528, + [5542] = 1737, + [5543] = 529, + [5544] = 370, + [5545] = 355, + [5546] = 356, + [5547] = 1795, + [5548] = 1701, + [5549] = 160, + [5550] = 1391, + [5551] = 355, + [5552] = 162, + [5553] = 5472, + [5554] = 5488, + [5555] = 163, + [5556] = 158, + [5557] = 1680, + [5558] = 343, + [5559] = 369, + [5560] = 358, + [5561] = 5180, + [5562] = 5488, + [5563] = 1658, + [5564] = 4801, + [5565] = 360, + [5566] = 5488, + [5567] = 5567, + [5568] = 156, + [5569] = 1391, + [5570] = 1837, + [5571] = 159, + [5572] = 160, + [5573] = 383, + [5574] = 5574, + [5575] = 5488, + [5576] = 155, + [5577] = 4796, + [5578] = 157, + [5579] = 536, + [5580] = 355, + [5581] = 360, + [5582] = 343, + [5583] = 340, + [5584] = 157, + [5585] = 5488, + [5586] = 159, + [5587] = 353, + [5588] = 5488, + [5589] = 1838, + [5590] = 370, + [5591] = 5488, + [5592] = 157, + [5593] = 1831, + [5594] = 152, + [5595] = 156, + [5596] = 5488, + [5597] = 4798, + [5598] = 360, + [5599] = 352, + [5600] = 369, + [5601] = 160, + [5602] = 5488, + [5603] = 5488, + [5604] = 1628, + [5605] = 354, + [5606] = 152, + [5607] = 4785, + [5608] = 153, + [5609] = 5180, + [5610] = 1610, + [5611] = 5611, + [5612] = 1842, + [5613] = 154, + [5614] = 389, + [5615] = 5488, + [5616] = 1814, + [5617] = 1843, + [5618] = 4795, + [5619] = 384, + [5620] = 5620, + [5621] = 527, + [5622] = 1391, + [5623] = 2627, + [5624] = 429, + [5625] = 161, + [5626] = 5620, + [5627] = 388, + [5628] = 355, + [5629] = 2628, + [5630] = 5630, + [5631] = 161, + [5632] = 2800, + [5633] = 4945, + [5634] = 436, + [5635] = 5635, + [5636] = 528, + [5637] = 529, + [5638] = 451, + [5639] = 1680, + [5640] = 437, + [5641] = 423, [5642] = 5642, - [5643] = 319, - [5644] = 2762, - [5645] = 5645, - [5646] = 5645, + [5643] = 2636, + [5644] = 162, + [5645] = 352, + [5646] = 5646, [5647] = 5647, - [5648] = 2471, + [5648] = 448, [5649] = 5649, - [5650] = 2493, - [5651] = 360, - [5652] = 363, - [5653] = 364, - [5654] = 2494, - [5655] = 365, - [5656] = 350, + [5650] = 163, + [5651] = 2804, + [5652] = 5652, + [5653] = 5653, + [5654] = 353, + [5655] = 5655, + [5656] = 5656, [5657] = 5657, - [5658] = 366, - [5659] = 367, - [5660] = 2505, - [5661] = 368, - [5662] = 369, - [5663] = 370, - [5664] = 372, - [5665] = 373, - [5666] = 363, - [5667] = 374, - [5668] = 375, - [5669] = 350, - [5670] = 376, - [5671] = 378, - [5672] = 382, - [5673] = 383, - [5674] = 352, - [5675] = 163, - [5676] = 385, - [5677] = 2849, - [5678] = 5678, - [5679] = 5679, - [5680] = 360, - [5681] = 300, - [5682] = 364, - [5683] = 379, - [5684] = 5678, - [5685] = 348, - [5686] = 308, - [5687] = 308, - [5688] = 2433, - [5689] = 1238, - [5690] = 172, - [5691] = 367, - [5692] = 313, - [5693] = 1495, - [5694] = 163, - [5695] = 376, - [5696] = 5647, - [5697] = 5697, - [5698] = 319, - [5699] = 320, - [5700] = 370, - [5701] = 378, - [5702] = 382, - [5703] = 383, - [5704] = 292, - [5705] = 251, - [5706] = 372, - [5707] = 385, - [5708] = 5636, - [5709] = 173, - [5710] = 5639, - [5711] = 2788, - [5712] = 1521, - [5713] = 300, - [5714] = 320, - [5715] = 294, - [5716] = 473, - [5717] = 5717, - [5718] = 1489, - [5719] = 373, - [5720] = 4877, - [5721] = 324, - [5722] = 5722, - [5723] = 5723, - [5724] = 477, - [5725] = 482, - [5726] = 163, - [5727] = 164, - [5728] = 165, - [5729] = 5259, - [5730] = 1062, - [5731] = 365, - [5732] = 474, - [5733] = 1238, - [5734] = 469, - [5735] = 308, - [5736] = 5649, - [5737] = 5640, - [5738] = 5657, - [5739] = 5641, - [5740] = 5679, - [5741] = 5642, - [5742] = 324, - [5743] = 374, - [5744] = 352, - [5745] = 366, - [5746] = 174, - [5747] = 5627, - [5748] = 381, - [5749] = 2819, - [5750] = 313, - [5751] = 349, - [5752] = 313, - [5753] = 3136, - [5754] = 369, - [5755] = 5755, - [5756] = 5756, - [5757] = 5757, - [5758] = 5758, - [5759] = 5759, - [5760] = 5756, - [5761] = 5761, - [5762] = 5762, - [5763] = 5763, - [5764] = 5764, - [5765] = 5765, - [5766] = 5756, - [5767] = 5757, - [5768] = 5758, - [5769] = 5761, - [5770] = 5762, - [5771] = 164, - [5772] = 390, - [5773] = 5765, - [5774] = 389, - [5775] = 216, - [5776] = 5756, - [5777] = 5757, - [5778] = 5758, - [5779] = 5761, - [5780] = 5762, - [5781] = 1607, - [5782] = 1469, - [5783] = 447, - [5784] = 5765, - [5785] = 5785, - [5786] = 473, - [5787] = 5756, - [5788] = 5757, - [5789] = 5758, - [5790] = 5761, - [5791] = 5762, - [5792] = 5765, - [5793] = 164, - [5794] = 432, - [5795] = 5634, - [5796] = 5756, - [5797] = 5757, - [5798] = 5758, - [5799] = 5761, - [5800] = 5762, - [5801] = 5801, - [5802] = 5802, - [5803] = 5765, + [5658] = 5658, + [5659] = 448, + [5660] = 387, + [5661] = 162, + [5662] = 163, + [5663] = 383, + [5664] = 405, + [5665] = 5665, + [5666] = 353, + [5667] = 355, + [5668] = 384, + [5669] = 1701, + [5670] = 352, + [5671] = 383, + [5672] = 360, + [5673] = 387, + [5674] = 447, + [5675] = 5675, + [5676] = 3152, + [5677] = 608, + [5678] = 412, + [5679] = 5675, + [5680] = 370, + [5681] = 2795, + [5682] = 1658, + [5683] = 385, + [5684] = 5684, + [5685] = 2622, + [5686] = 414, + [5687] = 5665, + [5688] = 360, + [5689] = 389, + [5690] = 369, + [5691] = 2786, + [5692] = 417, + [5693] = 387, + [5694] = 152, + [5695] = 5635, + [5696] = 1171, + [5697] = 420, + [5698] = 5655, + [5699] = 536, + [5700] = 5472, + [5701] = 526, + [5702] = 438, + [5703] = 152, + [5704] = 389, + [5705] = 5180, + [5706] = 421, + [5707] = 5684, + [5708] = 383, + [5709] = 5656, + [5710] = 5710, + [5711] = 388, + [5712] = 2623, + [5713] = 423, + [5714] = 407, + [5715] = 5646, + [5716] = 441, + [5717] = 5647, + [5718] = 5649, + [5719] = 2601, + [5720] = 2602, + [5721] = 389, + [5722] = 445, + [5723] = 426, + [5724] = 384, + [5725] = 385, + [5726] = 5657, + [5727] = 449, + [5728] = 402, + [5729] = 411, + [5730] = 427, + [5731] = 442, + [5732] = 450, + [5733] = 401, + [5734] = 5658, + [5735] = 1391, + [5736] = 3666, + [5737] = 5737, + [5738] = 5738, + [5739] = 661, + [5740] = 5740, + [5741] = 464, + [5742] = 5742, + [5743] = 639, + [5744] = 5744, + [5745] = 5745, + [5746] = 5746, + [5747] = 529, + [5748] = 5748, + [5749] = 5749, + [5750] = 5738, + [5751] = 5751, + [5752] = 5740, + [5753] = 662, + [5754] = 5740, + [5755] = 5744, + [5756] = 611, + [5757] = 5740, + [5758] = 1661, + [5759] = 5744, + [5760] = 5745, + [5761] = 5746, + [5762] = 5745, + [5763] = 5748, + [5764] = 512, + [5765] = 5738, + [5766] = 5740, + [5767] = 358, + [5768] = 685, + [5769] = 5769, + [5770] = 5770, + [5771] = 5744, + [5772] = 5748, + [5773] = 5773, + [5774] = 5738, + [5775] = 5740, + [5776] = 5748, + [5777] = 5744, + [5778] = 633, + [5779] = 613, + [5780] = 5744, + [5781] = 614, + [5782] = 5748, + [5783] = 5738, + [5784] = 5740, + [5785] = 5745, + [5786] = 5786, + [5787] = 5746, + [5788] = 5744, + [5789] = 5740, + [5790] = 5748, + [5791] = 5738, + [5792] = 5740, + [5793] = 5793, + [5794] = 1842, + [5795] = 5795, + [5796] = 536, + [5797] = 5738, + [5798] = 5740, + [5799] = 1843, + [5800] = 2878, + [5801] = 5738, + [5802] = 5738, + [5803] = 5740, [5804] = 5804, - [5805] = 5756, - [5806] = 5806, - [5807] = 5757, - [5808] = 5758, + [5805] = 5805, + [5806] = 5738, + [5807] = 5740, + [5808] = 356, [5809] = 5809, - [5810] = 5761, - [5811] = 5762, - [5812] = 5762, - [5813] = 446, - [5814] = 175, - [5815] = 5765, - [5816] = 5816, + [5810] = 2883, + [5811] = 481, + [5812] = 5745, + [5813] = 5813, + [5814] = 5746, + [5815] = 669, + [5816] = 685, [5817] = 5817, - [5818] = 5818, - [5819] = 5756, - [5820] = 5757, - [5821] = 5758, - [5822] = 5822, - [5823] = 5761, - [5824] = 1661, - [5825] = 5762, - [5826] = 2819, - [5827] = 5765, - [5828] = 165, - [5829] = 5756, - [5830] = 5830, - [5831] = 5757, - [5832] = 5758, + [5818] = 671, + [5819] = 527, + [5820] = 5748, + [5821] = 528, + [5822] = 5746, + [5823] = 5738, + [5824] = 616, + [5825] = 5738, + [5826] = 513, + [5827] = 640, + [5828] = 5748, + [5829] = 5744, + [5830] = 1628, + [5831] = 656, + [5832] = 164, [5833] = 5833, - [5834] = 5761, - [5835] = 5762, - [5836] = 5765, - [5837] = 5837, + [5834] = 619, + [5835] = 526, + [5836] = 2800, + [5837] = 5740, [5838] = 5838, - [5839] = 5756, - [5840] = 5761, - [5841] = 5762, - [5842] = 1619, - [5843] = 5765, - [5844] = 5756, - [5845] = 5761, - [5846] = 5846, - [5847] = 5762, - [5848] = 5765, - [5849] = 469, - [5850] = 326, - [5851] = 5756, - [5852] = 5761, - [5853] = 5762, - [5854] = 5765, - [5855] = 5756, - [5856] = 5856, - [5857] = 5756, - [5858] = 215, - [5859] = 5761, - [5860] = 5762, - [5861] = 5765, - [5862] = 5757, - [5863] = 5758, - [5864] = 5756, - [5865] = 5761, - [5866] = 5762, - [5867] = 5765, - [5868] = 5868, - [5869] = 5762, - [5870] = 5765, - [5871] = 3145, + [5839] = 5839, + [5840] = 5793, + [5841] = 5745, + [5842] = 643, + [5843] = 625, + [5844] = 612, + [5845] = 5839, + [5846] = 356, + [5847] = 5745, + [5848] = 1814, + [5849] = 5849, + [5850] = 5738, + [5851] = 387, + [5852] = 5746, + [5853] = 5744, + [5854] = 473, + [5855] = 5804, + [5856] = 5744, + [5857] = 3165, + [5858] = 356, + [5859] = 384, + [5860] = 5745, + [5861] = 5861, + [5862] = 688, + [5863] = 1177, + [5864] = 5746, + [5865] = 5748, + [5866] = 620, + [5867] = 5738, + [5868] = 1736, + [5869] = 5738, + [5870] = 1737, + [5871] = 5740, [5872] = 5872, - [5873] = 5762, - [5874] = 5765, - [5875] = 5762, - [5876] = 5765, - [5877] = 5757, - [5878] = 5878, - [5879] = 5879, - [5880] = 5765, - [5881] = 5881, - [5882] = 5761, - [5883] = 5762, - [5884] = 5758, - [5885] = 5757, - [5886] = 308, - [5887] = 5761, - [5888] = 5765, - [5889] = 5868, - [5890] = 5809, - [5891] = 5822, - [5892] = 5762, - [5893] = 5765, - [5894] = 5868, - [5895] = 5759, - [5896] = 5763, - [5897] = 5755, - [5898] = 313, - [5899] = 2897, - [5900] = 2873, - [5901] = 4255, - [5902] = 5902, - [5903] = 1639, - [5904] = 441, - [5905] = 5905, - [5906] = 319, - [5907] = 5907, + [5873] = 5740, + [5874] = 358, + [5875] = 5838, + [5876] = 154, + [5877] = 621, + [5878] = 4154, + [5879] = 444, + [5880] = 623, + [5881] = 5809, + [5882] = 5882, + [5883] = 5744, + [5884] = 635, + [5885] = 1733, + [5886] = 164, + [5887] = 510, + [5888] = 389, + [5889] = 5889, + [5890] = 5745, + [5891] = 5746, + [5892] = 5746, + [5893] = 5748, + [5894] = 383, + [5895] = 5749, + [5896] = 5896, + [5897] = 5744, + [5898] = 1795, + [5899] = 5738, + [5900] = 5751, + [5901] = 5745, + [5902] = 5746, + [5903] = 5745, + [5904] = 5904, + [5905] = 5746, + [5906] = 5804, + [5907] = 647, [5908] = 5908, - [5909] = 4730, - [5910] = 4736, - [5911] = 247, - [5912] = 247, - [5913] = 5913, - [5914] = 1476, - [5915] = 320, - [5916] = 5809, - [5917] = 5822, - [5918] = 5756, - [5919] = 164, - [5920] = 165, - [5921] = 5756, - [5922] = 5922, - [5923] = 1673, - [5924] = 5757, - [5925] = 5758, - [5926] = 388, - [5927] = 5927, - [5928] = 5868, - [5929] = 477, + [5909] = 5740, + [5910] = 682, + [5911] = 692, + [5912] = 677, + [5913] = 5748, + [5914] = 653, + [5915] = 5740, + [5916] = 5738, + [5917] = 667, + [5918] = 5918, + [5919] = 5919, + [5920] = 511, + [5921] = 5740, + [5922] = 668, + [5923] = 5749, + [5924] = 5751, + [5925] = 5925, + [5926] = 641, + [5927] = 5748, + [5928] = 5928, + [5929] = 631, [5930] = 5930, - [5931] = 5931, - [5932] = 474, - [5933] = 5933, + [5931] = 153, + [5932] = 4781, + [5933] = 480, [5934] = 5934, - [5935] = 5761, - [5936] = 482, - [5937] = 5762, - [5938] = 5938, - [5939] = 5939, - [5940] = 5940, - [5941] = 5758, - [5942] = 5762, - [5943] = 5765, - [5944] = 5765, - [5945] = 377, - [5946] = 1469, - [5947] = 2849, - [5948] = 5765, - [5949] = 1647, - [5950] = 5950, - [5951] = 5951, - [5952] = 5952, - [5953] = 4191, - [5954] = 1076, - [5955] = 1476, - [5956] = 1606, - [5957] = 165, - [5958] = 247, - [5959] = 449, - [5960] = 1645, - [5961] = 250, - [5962] = 5913, - [5963] = 5963, - [5964] = 5785, - [5965] = 5856, - [5966] = 3626, - [5967] = 3601, - [5968] = 446, - [5969] = 449, - [5970] = 390, - [5971] = 441, - [5972] = 5761, - [5973] = 446, - [5974] = 449, - [5975] = 390, - [5976] = 441, - [5977] = 250, - [5978] = 445, - [5979] = 1650, - [5980] = 250, - [5981] = 5981, - [5982] = 5762, - [5983] = 169, - [5984] = 5984, - [5985] = 247, - [5986] = 5984, - [5987] = 1495, - [5988] = 5988, - [5989] = 5833, - [5990] = 4971, - [5991] = 163, + [5935] = 5935, + [5936] = 5748, + [5937] = 5744, + [5938] = 5745, + [5939] = 5746, + [5940] = 154, + [5941] = 5941, + [5942] = 5748, + [5943] = 1610, + [5944] = 1628, + [5945] = 5744, + [5946] = 5946, + [5947] = 5947, + [5948] = 656, + [5949] = 5642, + [5950] = 153, + [5951] = 5738, + [5952] = 5738, + [5953] = 5804, + [5954] = 680, + [5955] = 675, + [5956] = 5956, + [5957] = 510, + [5958] = 683, + [5959] = 2804, + [5960] = 5960, + [5961] = 5961, + [5962] = 5962, + [5963] = 5740, + [5964] = 5817, + [5965] = 686, + [5966] = 5833, + [5967] = 1837, + [5968] = 1838, + [5969] = 3638, + [5970] = 510, + [5971] = 637, + [5972] = 511, + [5973] = 512, + [5974] = 481, + [5975] = 5975, + [5976] = 5809, + [5977] = 5977, + [5978] = 632, + [5979] = 5748, + [5980] = 511, + [5981] = 512, + [5982] = 481, + [5983] = 5809, + [5984] = 5744, + [5985] = 5745, + [5986] = 358, + [5987] = 4152, + [5988] = 636, + [5989] = 455, + [5990] = 5746, + [5991] = 446, [5992] = 5992, - [5993] = 5993, - [5994] = 5994, - [5995] = 5995, - [5996] = 5996, - [5997] = 1607, - [5998] = 170, - [5999] = 1495, - [6000] = 250, - [6001] = 6001, - [6002] = 5846, - [6003] = 382, - [6004] = 383, - [6005] = 6005, - [6006] = 171, - [6007] = 166, - [6008] = 6008, - [6009] = 6009, - [6010] = 5878, - [6011] = 2849, - [6012] = 350, - [6013] = 1606, - [6014] = 5993, - [6015] = 1489, - [6016] = 6016, - [6017] = 292, - [6018] = 5634, - [6019] = 171, - [6020] = 6020, - [6021] = 6021, - [6022] = 4970, - [6023] = 6023, - [6024] = 4962, - [6025] = 3601, - [6026] = 352, - [6027] = 352, - [6028] = 5993, - [6029] = 369, - [6030] = 6030, - [6031] = 6031, - [6032] = 6001, - [6033] = 349, - [6034] = 373, - [6035] = 5764, - [6036] = 5993, - [6037] = 6037, - [6038] = 5993, - [6039] = 1521, - [6040] = 374, - [6041] = 6001, - [6042] = 6042, - [6043] = 1469, - [6044] = 1650, - [6045] = 5993, - [6046] = 430, - [6047] = 6023, - [6048] = 5993, - [6049] = 168, - [6050] = 5993, - [6051] = 5993, - [6052] = 1619, - [6053] = 365, - [6054] = 6001, - [6055] = 370, - [6056] = 372, - [6057] = 6057, - [6058] = 6001, - [6059] = 6001, - [6060] = 294, - [6061] = 5993, - [6062] = 1639, - [6063] = 375, - [6064] = 6001, - [6065] = 166, - [6066] = 223, - [6067] = 385, - [6068] = 5933, - [6069] = 6008, - [6070] = 1661, - [6071] = 6001, - [6072] = 4972, - [6073] = 6073, - [6074] = 5993, - [6075] = 363, - [6076] = 6076, - [6077] = 5993, - [6078] = 6042, - [6079] = 5993, - [6080] = 4975, + [5993] = 4696, + [5994] = 1831, + [5995] = 5795, + [5996] = 5744, + [5997] = 5997, + [5998] = 5748, + [5999] = 1610, + [6000] = 6000, + [6001] = 1661, + [6002] = 6002, + [6003] = 6003, + [6004] = 354, + [6005] = 5737, + [6006] = 5742, + [6007] = 155, + [6008] = 156, + [6009] = 3666, + [6010] = 6010, + [6011] = 5941, + [6012] = 5977, + [6013] = 405, + [6014] = 4785, + [6015] = 3638, + [6016] = 511, + [6017] = 512, + [6018] = 481, + [6019] = 356, + [6020] = 407, + [6021] = 411, + [6022] = 423, + [6023] = 448, + [6024] = 6024, + [6025] = 6025, + [6026] = 6026, + [6027] = 6024, + [6028] = 412, + [6029] = 414, + [6030] = 417, + [6031] = 420, + [6032] = 6032, + [6033] = 3638, + [6034] = 152, + [6035] = 421, + [6036] = 426, + [6037] = 427, + [6038] = 429, + [6039] = 436, + [6040] = 437, + [6041] = 438, + [6042] = 441, + [6043] = 442, + [6044] = 401, + [6045] = 402, + [6046] = 158, + [6047] = 369, + [6048] = 159, + [6049] = 1842, + [6050] = 1843, + [6051] = 160, + [6052] = 369, + [6053] = 6053, + [6054] = 5960, + [6055] = 5961, + [6056] = 4801, + [6057] = 157, + [6058] = 358, + [6059] = 1837, + [6060] = 1838, + [6061] = 1814, + [6062] = 370, + [6063] = 1736, + [6064] = 1737, + [6065] = 1795, + [6066] = 6066, + [6067] = 158, + [6068] = 159, + [6069] = 160, + [6070] = 6026, + [6071] = 157, + [6072] = 2800, + [6073] = 6026, + [6074] = 6024, + [6075] = 370, + [6076] = 6032, + [6077] = 1701, + [6078] = 6078, + [6079] = 6079, + [6080] = 5904, [6081] = 6081, - [6082] = 6001, - [6083] = 1673, - [6084] = 366, - [6085] = 376, - [6086] = 5931, - [6087] = 6001, - [6088] = 1489, - [6089] = 1647, - [6090] = 6020, - [6091] = 6031, - [6092] = 1476, - [6093] = 368, - [6094] = 1521, - [6095] = 378, - [6096] = 390, - [6097] = 433, - [6098] = 441, - [6099] = 5993, - [6100] = 350, - [6101] = 167, - [6102] = 250, - [6103] = 6001, - [6104] = 170, - [6105] = 6105, - [6106] = 247, - [6107] = 3626, - [6108] = 360, - [6109] = 6020, - [6110] = 6031, - [6111] = 446, - [6112] = 6020, - [6113] = 6031, - [6114] = 168, - [6115] = 6020, - [6116] = 6031, - [6117] = 6117, - [6118] = 6118, - [6119] = 235, - [6120] = 6020, - [6121] = 6031, - [6122] = 6001, - [6123] = 6020, - [6124] = 6031, - [6125] = 6020, - [6126] = 6031, - [6127] = 5059, - [6128] = 1645, - [6129] = 6020, - [6130] = 6031, - [6131] = 6020, - [6132] = 6031, - [6133] = 6020, - [6134] = 6031, - [6135] = 5993, - [6136] = 6001, - [6137] = 6031, - [6138] = 6020, - [6139] = 6031, - [6140] = 364, - [6141] = 6020, - [6142] = 6031, - [6143] = 6001, - [6144] = 6001, - [6145] = 6020, - [6146] = 6031, - [6147] = 6020, - [6148] = 6031, - [6149] = 6020, - [6150] = 6031, - [6151] = 6020, - [6152] = 6031, - [6153] = 6020, - [6154] = 6031, - [6155] = 6020, - [6156] = 6031, - [6157] = 6020, - [6158] = 6031, - [6159] = 6020, - [6160] = 6031, - [6161] = 6161, - [6162] = 3626, - [6163] = 169, - [6164] = 6164, - [6165] = 5993, - [6166] = 236, - [6167] = 250, - [6168] = 6001, - [6169] = 5934, - [6170] = 348, - [6171] = 6001, - [6172] = 292, - [6173] = 367, - [6174] = 6174, - [6175] = 6175, - [6176] = 6020, - [6177] = 167, - [6178] = 2819, - [6179] = 4974, - [6180] = 292, - [6181] = 6009, - [6182] = 294, - [6183] = 5830, - [6184] = 294, - [6185] = 3601, - [6186] = 222, - [6187] = 6076, - [6188] = 5993, - [6189] = 449, - [6190] = 6190, - [6191] = 6191, - [6192] = 6190, - [6193] = 6193, - [6194] = 6194, - [6195] = 3210, - [6196] = 3211, - [6197] = 6197, - [6198] = 6198, - [6199] = 6199, - [6200] = 6200, - [6201] = 6201, - [6202] = 6202, - [6203] = 308, - [6204] = 3042, - [6205] = 477, - [6206] = 482, - [6207] = 6207, - [6208] = 473, - [6209] = 6209, - [6210] = 499, - [6211] = 497, + [6082] = 6026, + [6083] = 3666, + [6084] = 6032, + [6085] = 6026, + [6086] = 6086, + [6087] = 6087, + [6088] = 6002, + [6089] = 6086, + [6090] = 155, + [6091] = 6032, + [6092] = 156, + [6093] = 6093, + [6094] = 6026, + [6095] = 6087, + [6096] = 6026, + [6097] = 6032, + [6098] = 6098, + [6099] = 6024, + [6100] = 6026, + [6101] = 6101, + [6102] = 6032, + [6103] = 6026, + [6104] = 1831, + [6105] = 6032, + [6106] = 6032, + [6107] = 6026, + [6108] = 6032, + [6109] = 6026, + [6110] = 6032, + [6111] = 6111, + [6112] = 6112, + [6113] = 6026, + [6114] = 6032, + [6115] = 6115, + [6116] = 448, + [6117] = 6026, + [6118] = 6032, + [6119] = 6119, + [6120] = 6026, + [6121] = 6032, + [6122] = 6026, + [6123] = 6032, + [6124] = 6026, + [6125] = 6032, + [6126] = 5642, + [6127] = 4795, + [6128] = 6098, + [6129] = 4796, + [6130] = 6130, + [6131] = 369, + [6132] = 1701, + [6133] = 358, + [6134] = 423, + [6135] = 6135, + [6136] = 1733, + [6137] = 5997, + [6138] = 6003, + [6139] = 6139, + [6140] = 6111, + [6141] = 362, + [6142] = 1680, + [6143] = 6081, + [6144] = 2804, + [6145] = 6145, + [6146] = 6146, + [6147] = 370, + [6148] = 1658, + [6149] = 1628, + [6150] = 501, + [6151] = 6151, + [6152] = 6086, + [6153] = 6087, + [6154] = 6002, + [6155] = 6098, + [6156] = 1680, + [6157] = 6081, + [6158] = 6145, + [6159] = 358, + [6160] = 510, + [6161] = 1610, + [6162] = 1658, + [6163] = 6086, + [6164] = 6087, + [6165] = 6002, + [6166] = 6098, + [6167] = 6081, + [6168] = 6145, + [6169] = 6081, + [6170] = 6145, + [6171] = 6081, + [6172] = 6145, + [6173] = 6081, + [6174] = 6145, + [6175] = 6081, + [6176] = 6145, + [6177] = 6081, + [6178] = 6145, + [6179] = 6179, + [6180] = 6180, + [6181] = 6081, + [6182] = 6145, + [6183] = 6081, + [6184] = 6145, + [6185] = 6081, + [6186] = 6145, + [6187] = 4798, + [6188] = 6081, + [6189] = 6145, + [6190] = 6081, + [6191] = 6145, + [6192] = 6081, + [6193] = 6145, + [6194] = 6081, + [6195] = 6145, + [6196] = 6081, + [6197] = 6145, + [6198] = 6081, + [6199] = 6145, + [6200] = 6081, + [6201] = 6145, + [6202] = 356, + [6203] = 6130, + [6204] = 6135, + [6205] = 6151, + [6206] = 6078, + [6207] = 4799, + [6208] = 4800, + [6209] = 6145, + [6210] = 504, + [6211] = 6032, [6212] = 6212, - [6213] = 313, - [6214] = 473, - [6215] = 4855, + [6213] = 6213, + [6214] = 6214, + [6215] = 6215, [6216] = 6216, - [6217] = 6217, - [6218] = 2471, + [6217] = 4743, + [6218] = 6218, [6219] = 6219, [6220] = 6220, [6221] = 6221, - [6222] = 3032, - [6223] = 3038, - [6224] = 481, + [6222] = 6222, + [6223] = 6223, + [6224] = 6224, [6225] = 6225, - [6226] = 470, + [6226] = 6226, [6227] = 6227, - [6228] = 499, + [6228] = 6212, [6229] = 6229, - [6230] = 2980, - [6231] = 319, + [6230] = 532, + [6231] = 6231, [6232] = 6232, - [6233] = 483, - [6234] = 6234, + [6233] = 515, + [6234] = 161, [6235] = 6235, [6236] = 6236, - [6237] = 294, - [6238] = 498, - [6239] = 6239, + [6237] = 518, + [6238] = 6225, + [6239] = 389, [6240] = 6240, - [6241] = 6241, + [6241] = 369, [6242] = 6242, - [6243] = 320, - [6244] = 6244, - [6245] = 452, + [6243] = 6243, + [6244] = 537, + [6245] = 6216, [6246] = 6246, [6247] = 6247, [6248] = 6248, - [6249] = 6249, - [6250] = 6193, - [6251] = 6251, - [6252] = 6252, - [6253] = 251, - [6254] = 473, - [6255] = 512, - [6256] = 477, - [6257] = 482, - [6258] = 469, - [6259] = 474, - [6260] = 6260, - [6261] = 6261, - [6262] = 6262, - [6263] = 6263, - [6264] = 308, - [6265] = 6239, - [6266] = 6266, - [6267] = 6267, - [6268] = 6190, - [6269] = 6269, - [6270] = 6239, + [6249] = 4770, + [6250] = 6250, + [6251] = 6226, + [6252] = 6213, + [6253] = 6213, + [6254] = 6254, + [6255] = 532, + [6256] = 6222, + [6257] = 6223, + [6258] = 6224, + [6259] = 6225, + [6260] = 6226, + [6261] = 6227, + [6262] = 6212, + [6263] = 6229, + [6264] = 6264, + [6265] = 6265, + [6266] = 6216, + [6267] = 6247, + [6268] = 6268, + [6269] = 3048, + [6270] = 6270, [6271] = 6271, - [6272] = 6190, + [6272] = 6272, [6273] = 6273, - [6274] = 6274, + [6274] = 6213, [6275] = 6275, - [6276] = 172, - [6277] = 6197, - [6278] = 6197, - [6279] = 173, - [6280] = 6280, - [6281] = 6217, - [6282] = 6282, - [6283] = 6234, - [6284] = 6235, - [6285] = 6236, - [6286] = 6246, - [6287] = 6247, - [6288] = 6248, - [6289] = 6193, - [6290] = 6290, - [6291] = 6291, - [6292] = 313, - [6293] = 6293, - [6294] = 6294, - [6295] = 6197, - [6296] = 2493, + [6276] = 6276, + [6277] = 6216, + [6278] = 6278, + [6279] = 6222, + [6280] = 6223, + [6281] = 6224, + [6282] = 6225, + [6283] = 6226, + [6284] = 6227, + [6285] = 6212, + [6286] = 6229, + [6287] = 3076, + [6288] = 3055, + [6289] = 6289, + [6290] = 6216, + [6291] = 6247, + [6292] = 528, + [6293] = 529, + [6294] = 6247, + [6295] = 6295, + [6296] = 6213, [6297] = 6297, - [6298] = 319, - [6299] = 2494, - [6300] = 6300, - [6301] = 6301, - [6302] = 6239, - [6303] = 6303, - [6304] = 6190, - [6305] = 484, - [6306] = 320, - [6307] = 485, - [6308] = 6308, - [6309] = 6197, - [6310] = 477, - [6311] = 1476, - [6312] = 482, - [6313] = 6313, - [6314] = 6314, - [6315] = 474, - [6316] = 6217, - [6317] = 6234, - [6318] = 6235, - [6319] = 6236, - [6320] = 6246, - [6321] = 6247, - [6322] = 6248, - [6323] = 6193, - [6324] = 6239, - [6325] = 6190, - [6326] = 6326, + [6298] = 6298, + [6299] = 6299, + [6300] = 6221, + [6301] = 6222, + [6302] = 6223, + [6303] = 6224, + [6304] = 6225, + [6305] = 6226, + [6306] = 6227, + [6307] = 6212, + [6308] = 6229, + [6309] = 4665, + [6310] = 6216, + [6311] = 6247, + [6312] = 4899, + [6313] = 6226, + [6314] = 1628, + [6315] = 6213, + [6316] = 536, + [6317] = 162, + [6318] = 163, + [6319] = 6222, + [6320] = 6223, + [6321] = 6224, + [6322] = 6225, + [6323] = 6226, + [6324] = 6227, + [6325] = 6212, + [6326] = 6229, [6327] = 6327, - [6328] = 6197, - [6329] = 174, + [6328] = 6216, + [6329] = 6247, [6330] = 6330, - [6331] = 6217, - [6332] = 6234, - [6333] = 6235, - [6334] = 6236, - [6335] = 6246, - [6336] = 6247, - [6337] = 6248, - [6338] = 6193, - [6339] = 1476, - [6340] = 6239, - [6341] = 6190, - [6342] = 497, - [6343] = 6197, - [6344] = 6217, - [6345] = 6234, - [6346] = 6235, - [6347] = 6236, - [6348] = 6246, + [6331] = 6331, + [6332] = 6332, + [6333] = 162, + [6334] = 6213, + [6335] = 163, + [6336] = 6336, + [6337] = 6337, + [6338] = 6222, + [6339] = 6223, + [6340] = 6224, + [6341] = 6225, + [6342] = 6226, + [6343] = 6227, + [6344] = 6212, + [6345] = 6229, + [6346] = 6213, + [6347] = 6227, + [6348] = 6216, [6349] = 6247, - [6350] = 6248, - [6351] = 6193, - [6352] = 6352, - [6353] = 6239, - [6354] = 6190, - [6355] = 6197, - [6356] = 6356, - [6357] = 6357, - [6358] = 6217, - [6359] = 6234, - [6360] = 6235, - [6361] = 6236, - [6362] = 6246, + [6350] = 2628, + [6351] = 6213, + [6352] = 6212, + [6353] = 6213, + [6354] = 6222, + [6355] = 6223, + [6356] = 6224, + [6357] = 6225, + [6358] = 6226, + [6359] = 6227, + [6360] = 6212, + [6361] = 6229, + [6362] = 6216, [6363] = 6247, - [6364] = 6248, - [6365] = 6193, + [6364] = 527, + [6365] = 6365, [6366] = 6366, - [6367] = 6239, - [6368] = 248, - [6369] = 6057, - [6370] = 6197, - [6371] = 6371, - [6372] = 6246, - [6373] = 474, - [6374] = 6217, - [6375] = 6234, - [6376] = 6235, - [6377] = 6236, - [6378] = 6246, - [6379] = 6247, - [6380] = 6248, - [6381] = 6193, - [6382] = 6382, - [6383] = 6239, - [6384] = 6190, - [6385] = 6197, - [6386] = 1495, - [6387] = 6217, - [6388] = 6234, - [6389] = 6235, - [6390] = 6236, - [6391] = 6246, - [6392] = 6247, - [6393] = 6248, - [6394] = 6193, - [6395] = 6239, - [6396] = 6190, - [6397] = 6397, - [6398] = 6398, - [6399] = 6247, - [6400] = 6400, - [6401] = 6197, - [6402] = 6402, - [6403] = 249, - [6404] = 6248, - [6405] = 6405, - [6406] = 6217, - [6407] = 6234, - [6408] = 6235, - [6409] = 6236, - [6410] = 6246, - [6411] = 6247, - [6412] = 6248, - [6413] = 6193, - [6414] = 6414, - [6415] = 6415, - [6416] = 6239, - [6417] = 6417, - [6418] = 6190, - [6419] = 3198, - [6420] = 6420, - [6421] = 6271, - [6422] = 6197, - [6423] = 3199, - [6424] = 6424, - [6425] = 1469, - [6426] = 6426, - [6427] = 2505, - [6428] = 6217, - [6429] = 6234, - [6430] = 6235, - [6431] = 6236, - [6432] = 6246, - [6433] = 6247, - [6434] = 6248, - [6435] = 6193, - [6436] = 6239, - [6437] = 1469, - [6438] = 6190, - [6439] = 6439, - [6440] = 6440, - [6441] = 6197, - [6442] = 474, + [6367] = 6213, + [6368] = 6368, + [6369] = 6369, + [6370] = 6222, + [6371] = 6223, + [6372] = 6224, + [6373] = 6225, + [6374] = 6226, + [6375] = 6227, + [6376] = 6212, + [6377] = 6229, + [6378] = 6378, + [6379] = 6216, + [6380] = 3079, + [6381] = 6247, + [6382] = 1610, + [6383] = 6213, + [6384] = 6247, + [6385] = 544, + [6386] = 2623, + [6387] = 6222, + [6388] = 6223, + [6389] = 6224, + [6390] = 6225, + [6391] = 6226, + [6392] = 6227, + [6393] = 6212, + [6394] = 6229, + [6395] = 6395, + [6396] = 6216, + [6397] = 6247, + [6398] = 528, + [6399] = 6399, + [6400] = 6213, + [6401] = 1628, + [6402] = 529, + [6403] = 6222, + [6404] = 6223, + [6405] = 6224, + [6406] = 6225, + [6407] = 6226, + [6408] = 6227, + [6409] = 6212, + [6410] = 6229, + [6411] = 6216, + [6412] = 6247, + [6413] = 528, + [6414] = 223, + [6415] = 6213, + [6416] = 6416, + [6417] = 6222, + [6418] = 6223, + [6419] = 6224, + [6420] = 6225, + [6421] = 6226, + [6422] = 6227, + [6423] = 6423, + [6424] = 6229, + [6425] = 6425, + [6426] = 6216, + [6427] = 6247, + [6428] = 529, + [6429] = 6213, + [6430] = 6222, + [6431] = 6222, + [6432] = 6223, + [6433] = 6224, + [6434] = 6225, + [6435] = 6226, + [6436] = 6227, + [6437] = 6212, + [6438] = 6229, + [6439] = 6216, + [6440] = 6247, + [6441] = 384, + [6442] = 6213, [6443] = 6443, - [6444] = 6217, - [6445] = 6234, - [6446] = 6235, - [6447] = 6236, - [6448] = 6246, - [6449] = 6247, - [6450] = 6248, - [6451] = 6193, - [6452] = 6452, - [6453] = 6239, - [6454] = 6190, - [6455] = 6455, - [6456] = 6456, - [6457] = 6197, - [6458] = 6217, - [6459] = 6234, - [6460] = 6235, - [6461] = 6236, - [6462] = 6246, - [6463] = 6247, - [6464] = 6248, - [6465] = 6193, - [6466] = 6466, - [6467] = 6239, - [6468] = 6190, + [6444] = 6222, + [6445] = 6223, + [6446] = 6224, + [6447] = 6225, + [6448] = 6226, + [6449] = 6227, + [6450] = 6212, + [6451] = 6229, + [6452] = 526, + [6453] = 6453, + [6454] = 6216, + [6455] = 6247, + [6456] = 6213, + [6457] = 6457, + [6458] = 6222, + [6459] = 6223, + [6460] = 6224, + [6461] = 6225, + [6462] = 6226, + [6463] = 6227, + [6464] = 6212, + [6465] = 6229, + [6466] = 6053, + [6467] = 6216, + [6468] = 6247, [6469] = 6469, - [6470] = 6470, - [6471] = 6197, - [6472] = 3208, - [6473] = 6217, - [6474] = 6234, - [6475] = 6235, - [6476] = 6236, - [6477] = 6246, - [6478] = 6247, - [6479] = 6248, - [6480] = 6193, - [6481] = 6239, - [6482] = 6190, - [6483] = 6217, - [6484] = 6197, - [6485] = 292, - [6486] = 3209, - [6487] = 6487, - [6488] = 6217, - [6489] = 6234, - [6490] = 6235, - [6491] = 6236, - [6492] = 6246, + [6470] = 6213, + [6471] = 6471, + [6472] = 6222, + [6473] = 6223, + [6474] = 6224, + [6475] = 6225, + [6476] = 6226, + [6477] = 6227, + [6478] = 6212, + [6479] = 6229, + [6480] = 6480, + [6481] = 6216, + [6482] = 6247, + [6483] = 6213, + [6484] = 6222, + [6485] = 6223, + [6486] = 6224, + [6487] = 6225, + [6488] = 6226, + [6489] = 6227, + [6490] = 6212, + [6491] = 6229, + [6492] = 6216, [6493] = 6247, - [6494] = 6248, - [6495] = 6193, - [6496] = 246, - [6497] = 6239, - [6498] = 6190, - [6499] = 6197, - [6500] = 6500, - [6501] = 6217, - [6502] = 6234, - [6503] = 6235, - [6504] = 6236, - [6505] = 6246, - [6506] = 6239, - [6507] = 6248, - [6508] = 6193, - [6509] = 172, - [6510] = 173, - [6511] = 6239, - [6512] = 6190, - [6513] = 6197, - [6514] = 6217, - [6515] = 6234, - [6516] = 6235, - [6517] = 6236, - [6518] = 6246, - [6519] = 6247, - [6520] = 6248, - [6521] = 6193, - [6522] = 6239, - [6523] = 6190, - [6524] = 6197, - [6525] = 6217, - [6526] = 6234, - [6527] = 6235, - [6528] = 6236, - [6529] = 6246, + [6494] = 6213, + [6495] = 6495, + [6496] = 6216, + [6497] = 6247, + [6498] = 6213, + [6499] = 6216, + [6500] = 6247, + [6501] = 6213, + [6502] = 6216, + [6503] = 6247, + [6504] = 6213, + [6505] = 6505, + [6506] = 6216, + [6507] = 6247, + [6508] = 6213, + [6509] = 6216, + [6510] = 6247, + [6511] = 6213, + [6512] = 537, + [6513] = 6247, + [6514] = 6213, + [6515] = 6515, + [6516] = 6216, + [6517] = 6247, + [6518] = 6213, + [6519] = 6519, + [6520] = 6216, + [6521] = 6247, + [6522] = 6213, + [6523] = 6216, + [6524] = 6247, + [6525] = 6213, + [6526] = 6216, + [6527] = 6247, + [6528] = 6213, + [6529] = 6216, [6530] = 6247, - [6531] = 6248, - [6532] = 6193, - [6533] = 6239, - [6534] = 6190, - [6535] = 6197, - [6536] = 6217, - [6537] = 6234, - [6538] = 6235, - [6539] = 6236, - [6540] = 6246, - [6541] = 6247, - [6542] = 6248, - [6543] = 6193, - [6544] = 6544, - [6545] = 6239, - [6546] = 6190, - [6547] = 6021, - [6548] = 6197, - [6549] = 6217, - [6550] = 6234, - [6551] = 6235, - [6552] = 6236, - [6553] = 6246, - [6554] = 6247, - [6555] = 6248, - [6556] = 6193, - [6557] = 6239, - [6558] = 6190, - [6559] = 6197, - [6560] = 294, - [6561] = 6239, - [6562] = 6190, - [6563] = 6197, - [6564] = 6239, - [6565] = 6190, - [6566] = 6197, - [6567] = 2433, - [6568] = 6239, - [6569] = 6190, - [6570] = 6197, - [6571] = 6571, - [6572] = 6239, - [6573] = 6190, - [6574] = 6197, - [6575] = 6239, - [6576] = 6190, - [6577] = 6197, - [6578] = 6239, - [6579] = 6190, - [6580] = 6197, - [6581] = 6581, - [6582] = 6239, - [6583] = 6190, - [6584] = 6197, - [6585] = 6239, - [6586] = 6190, - [6587] = 6197, - [6588] = 6239, - [6589] = 6190, - [6590] = 6197, - [6591] = 6239, - [6592] = 6190, - [6593] = 6197, - [6594] = 6239, - [6595] = 6190, - [6596] = 6197, - [6597] = 6239, - [6598] = 6190, - [6599] = 6197, - [6600] = 6239, - [6601] = 6190, - [6602] = 6197, - [6603] = 6356, - [6604] = 6239, - [6605] = 6190, - [6606] = 6197, - [6607] = 6239, - [6608] = 6190, - [6609] = 6197, - [6610] = 6610, - [6611] = 6239, - [6612] = 6190, - [6613] = 6197, - [6614] = 452, - [6615] = 6239, - [6616] = 6190, - [6617] = 6197, - [6618] = 6239, - [6619] = 6190, - [6620] = 6197, - [6621] = 6239, - [6622] = 6190, - [6623] = 6197, - [6624] = 6239, - [6625] = 6190, - [6626] = 6197, - [6627] = 6239, - [6628] = 6190, - [6629] = 6197, - [6630] = 6239, - [6631] = 6190, - [6632] = 6197, - [6633] = 6239, - [6634] = 6190, - [6635] = 6197, - [6636] = 6239, - [6637] = 6190, - [6638] = 6197, - [6639] = 6239, - [6640] = 6190, - [6641] = 6197, - [6642] = 6190, - [6643] = 6197, - [6644] = 6190, - [6645] = 6197, - [6646] = 6190, - [6647] = 6197, - [6648] = 6190, - [6649] = 6197, - [6650] = 6190, - [6651] = 6197, + [6531] = 6213, + [6532] = 161, + [6533] = 6216, + [6534] = 6247, + [6535] = 6213, + [6536] = 6216, + [6537] = 6247, + [6538] = 6213, + [6539] = 6216, + [6540] = 6247, + [6541] = 6213, + [6542] = 6216, + [6543] = 6247, + [6544] = 6213, + [6545] = 6216, + [6546] = 6247, + [6547] = 6213, + [6548] = 6216, + [6549] = 6247, + [6550] = 6213, + [6551] = 384, + [6552] = 6216, + [6553] = 6247, + [6554] = 6213, + [6555] = 6216, + [6556] = 6247, + [6557] = 6213, + [6558] = 6558, + [6559] = 6216, + [6560] = 6247, + [6561] = 6213, + [6562] = 6216, + [6563] = 6247, + [6564] = 6213, + [6565] = 6565, + [6566] = 6216, + [6567] = 6247, + [6568] = 6213, + [6569] = 6216, + [6570] = 6247, + [6571] = 6213, + [6572] = 6216, + [6573] = 6247, + [6574] = 6213, + [6575] = 6216, + [6576] = 6247, + [6577] = 6213, + [6578] = 6216, + [6579] = 6247, + [6580] = 6213, + [6581] = 6216, + [6582] = 6247, + [6583] = 6213, + [6584] = 6247, + [6585] = 6213, + [6586] = 6247, + [6587] = 6213, + [6588] = 6247, + [6589] = 6213, + [6590] = 6216, + [6591] = 6591, + [6592] = 6592, + [6593] = 6330, + [6594] = 608, + [6595] = 6595, + [6596] = 6298, + [6597] = 6223, + [6598] = 384, + [6599] = 6365, + [6600] = 6600, + [6601] = 6222, + [6602] = 527, + [6603] = 6603, + [6604] = 6604, + [6605] = 6605, + [6606] = 6606, + [6607] = 6607, + [6608] = 6608, + [6609] = 6609, + [6610] = 6565, + [6611] = 6246, + [6612] = 559, + [6613] = 3194, + [6614] = 560, + [6615] = 6615, + [6616] = 6616, + [6617] = 6273, + [6618] = 6618, + [6619] = 6619, + [6620] = 6620, + [6621] = 383, + [6622] = 6223, + [6623] = 3195, + [6624] = 6224, + [6625] = 6625, + [6626] = 528, + [6627] = 529, + [6628] = 6628, + [6629] = 6225, + [6630] = 6630, + [6631] = 387, + [6632] = 6632, + [6633] = 6633, + [6634] = 6222, + [6635] = 383, + [6636] = 6636, + [6637] = 6425, + [6638] = 369, + [6639] = 2622, + [6640] = 6640, + [6641] = 389, + [6642] = 6642, + [6643] = 6643, + [6644] = 2601, + [6645] = 2602, + [6646] = 6216, + [6647] = 6216, + [6648] = 6648, + [6649] = 6649, + [6650] = 6650, + [6651] = 1610, [6652] = 6652, - [6653] = 5994, - [6654] = 6244, + [6653] = 6653, + [6654] = 6289, [6655] = 6655, - [6656] = 6656, + [6656] = 536, [6657] = 6657, - [6658] = 6658, - [6659] = 6234, - [6660] = 6235, - [6661] = 6236, - [6662] = 6662, - [6663] = 6207, - [6664] = 308, - [6665] = 6657, - [6666] = 6666, - [6667] = 6234, - [6668] = 6668, - [6669] = 313, - [6670] = 6670, - [6671] = 470, - [6672] = 498, - [6673] = 6673, - [6674] = 4710, - [6675] = 292, - [6676] = 6676, - [6677] = 319, - [6678] = 4947, - [6679] = 320, - [6680] = 6662, - [6681] = 6314, - [6682] = 6246, - [6683] = 6683, - [6684] = 6247, - [6685] = 6685, - [6686] = 6248, + [6658] = 544, + [6659] = 557, + [6660] = 6660, + [6661] = 6226, + [6662] = 558, + [6663] = 6227, + [6664] = 1701, + [6665] = 6665, + [6666] = 4667, + [6667] = 554, + [6668] = 6212, + [6669] = 6669, + [6670] = 3049, + [6671] = 6671, + [6672] = 1701, + [6673] = 1680, + [6674] = 6674, + [6675] = 6025, + [6676] = 1658, + [6677] = 536, + [6678] = 6000, + [6679] = 6679, + [6680] = 370, + [6681] = 387, + [6682] = 6682, + [6683] = 6229, + [6684] = 6684, + [6685] = 6227, + [6686] = 3198, [6687] = 6687, - [6688] = 6688, - [6689] = 164, - [6690] = 165, - [6691] = 6691, - [6692] = 6655, - [6693] = 4777, - [6694] = 6217, - [6695] = 6234, - [6696] = 6235, - [6697] = 6236, - [6698] = 6246, - [6699] = 6247, - [6700] = 6248, - [6701] = 6193, - [6702] = 6239, - [6703] = 3023, - [6704] = 1495, - [6705] = 6235, - [6706] = 6193, - [6707] = 469, - [6708] = 250, - [6709] = 6190, - [6710] = 1489, - [6711] = 6217, - [6712] = 486, - [6713] = 1521, - [6714] = 451, - [6715] = 6267, - [6716] = 4722, - [6717] = 6717, - [6718] = 6718, - [6719] = 477, - [6720] = 482, + [6688] = 383, + [6689] = 6212, + [6690] = 6690, + [6691] = 3316, + [6692] = 370, + [6693] = 6216, + [6694] = 389, + [6695] = 3199, + [6696] = 6696, + [6697] = 3040, + [6698] = 6698, + [6699] = 6699, + [6700] = 6229, + [6701] = 6229, + [6702] = 3317, + [6703] = 6703, + [6704] = 6247, + [6705] = 2636, + [6706] = 527, + [6707] = 515, + [6708] = 6708, + [6709] = 518, + [6710] = 6710, + [6711] = 526, + [6712] = 6216, + [6713] = 358, + [6714] = 6714, + [6715] = 6715, + [6716] = 6716, + [6717] = 536, + [6718] = 6247, + [6719] = 6224, + [6720] = 6720, [6721] = 6721, - [6722] = 238, - [6723] = 6236, - [6724] = 164, - [6725] = 174, - [6726] = 6726, - [6727] = 167, - [6728] = 168, - [6729] = 165, - [6730] = 6730, - [6731] = 6731, - [6732] = 2993, - [6733] = 6469, - [6734] = 6734, - [6735] = 6735, - [6736] = 6736, - [6737] = 6737, - [6738] = 3626, - [6739] = 3601, - [6740] = 6740, - [6741] = 6741, - [6742] = 473, + [6722] = 2627, + [6723] = 6723, + [6724] = 6336, + [6725] = 6337, + [6726] = 6615, + [6727] = 6699, + [6728] = 527, + [6729] = 6223, + [6730] = 6224, + [6731] = 6225, + [6732] = 6732, + [6733] = 6723, + [6734] = 6336, + [6735] = 6337, + [6736] = 6615, + [6737] = 3666, + [6738] = 3638, + [6739] = 387, + [6740] = 6723, + [6741] = 526, + [6742] = 6742, [6743] = 6743, - [6744] = 6744, - [6745] = 6745, + [6744] = 6332, + [6745] = 556, [6746] = 6746, - [6747] = 469, + [6747] = 6216, [6748] = 6748, - [6749] = 6749, - [6750] = 6225, - [6751] = 6247, - [6752] = 6752, - [6753] = 6753, - [6754] = 6754, + [6749] = 6295, + [6750] = 680, + [6751] = 667, + [6752] = 6632, + [6753] = 4753, + [6754] = 6674, [6755] = 6755, - [6756] = 571, - [6757] = 6757, - [6758] = 6752, + [6756] = 6756, + [6757] = 6748, + [6758] = 1701, [6759] = 6759, - [6760] = 6760, + [6760] = 4758, [6761] = 6761, - [6762] = 6757, + [6762] = 6762, [6763] = 6763, - [6764] = 6764, + [6764] = 1610, [6765] = 6765, [6766] = 6766, - [6767] = 629, - [6768] = 6768, + [6767] = 6767, + [6768] = 668, [6769] = 6769, - [6770] = 6734, + [6770] = 675, [6771] = 6771, - [6772] = 3042, - [6773] = 6773, - [6774] = 6735, - [6775] = 6773, - [6776] = 6776, - [6777] = 6754, + [6772] = 6772, + [6773] = 6469, + [6774] = 6471, + [6775] = 6515, + [6776] = 6755, + [6777] = 3048, [6778] = 6761, - [6779] = 6779, - [6780] = 6420, - [6781] = 6757, - [6782] = 6752, - [6783] = 6783, - [6784] = 6763, - [6785] = 6764, - [6786] = 6765, - [6787] = 6766, - [6788] = 6768, - [6789] = 6769, - [6790] = 469, - [6791] = 6440, - [6792] = 6771, - [6793] = 6793, - [6794] = 6251, - [6795] = 6252, - [6796] = 6796, - [6797] = 6266, - [6798] = 6752, - [6799] = 1476, - [6800] = 313, - [6801] = 6754, - [6802] = 562, - [6803] = 563, - [6804] = 6216, - [6805] = 6757, - [6806] = 6752, - [6807] = 6807, - [6808] = 6808, - [6809] = 6761, - [6810] = 6198, - [6811] = 6811, - [6812] = 6763, - [6813] = 6764, - [6814] = 6765, - [6815] = 1469, + [6779] = 643, + [6780] = 6780, + [6781] = 527, + [6782] = 6748, + [6783] = 6762, + [6784] = 6759, + [6785] = 6763, + [6786] = 6761, + [6787] = 6762, + [6788] = 6763, + [6789] = 6765, + [6790] = 6214, + [6791] = 6215, + [6792] = 6766, + [6793] = 6767, + [6794] = 6219, + [6795] = 6769, + [6796] = 6248, + [6797] = 6270, + [6798] = 6558, + [6799] = 6272, + [6800] = 686, + [6801] = 6595, + [6802] = 1658, + [6803] = 6755, + [6804] = 1628, + [6805] = 685, + [6806] = 638, + [6807] = 3049, + [6808] = 6748, + [6809] = 6759, + [6810] = 645, + [6811] = 6761, + [6812] = 6762, + [6813] = 6763, + [6814] = 6769, + [6815] = 6765, [6816] = 6766, - [6817] = 6766, - [6818] = 6768, + [6817] = 6767, + [6818] = 640, [6819] = 6769, - [6820] = 6768, - [6821] = 6771, - [6822] = 6769, - [6823] = 6219, - [6824] = 6199, - [6825] = 1469, - [6826] = 6200, - [6827] = 566, - [6828] = 6828, - [6829] = 569, - [6830] = 570, - [6831] = 6754, - [6832] = 319, - [6833] = 6313, - [6834] = 6752, - [6835] = 6835, - [6836] = 6220, - [6837] = 6761, - [6838] = 6201, - [6839] = 6763, - [6840] = 6764, - [6841] = 6765, - [6842] = 561, - [6843] = 6766, - [6844] = 6221, - [6845] = 6768, - [6846] = 6769, - [6847] = 6736, - [6848] = 6771, + [6820] = 6220, + [6821] = 6821, + [6822] = 649, + [6823] = 6755, + [6824] = 641, + [6825] = 528, + [6826] = 630, + [6827] = 6327, + [6828] = 529, + [6829] = 655, + [6830] = 6755, + [6831] = 3088, + [6832] = 6755, + [6833] = 6833, + [6834] = 6748, + [6835] = 3099, + [6836] = 6836, + [6837] = 6759, + [6838] = 6331, + [6839] = 6761, + [6840] = 6762, + [6841] = 6763, + [6842] = 3102, + [6843] = 6765, + [6844] = 527, + [6845] = 6265, + [6846] = 6766, + [6847] = 6767, + [6848] = 6848, [6849] = 6769, - [6850] = 6761, - [6851] = 576, - [6852] = 6273, - [6853] = 6853, - [6854] = 6854, + [6850] = 6850, + [6851] = 6851, + [6852] = 6852, + [6853] = 672, + [6854] = 6755, [6855] = 6855, - [6856] = 6771, - [6857] = 6754, - [6858] = 6757, - [6859] = 6752, - [6860] = 614, - [6861] = 626, - [6862] = 6761, - [6863] = 578, - [6864] = 6864, - [6865] = 6763, - [6866] = 6764, - [6867] = 6765, - [6868] = 6766, - [6869] = 170, - [6870] = 549, - [6871] = 6768, - [6872] = 6769, - [6873] = 171, - [6874] = 166, - [6875] = 6771, - [6876] = 169, - [6877] = 6262, - [6878] = 580, - [6879] = 586, - [6880] = 6740, - [6881] = 595, - [6882] = 553, - [6883] = 6754, - [6884] = 6771, - [6885] = 564, - [6886] = 6757, - [6887] = 6752, - [6888] = 607, - [6889] = 6202, - [6890] = 6761, - [6891] = 3120, - [6892] = 6260, - [6893] = 6763, - [6894] = 6764, - [6895] = 6765, - [6896] = 6766, - [6897] = 6768, + [6856] = 6856, + [6857] = 6748, + [6858] = 6759, + [6859] = 6859, + [6860] = 6761, + [6861] = 6762, + [6862] = 6763, + [6863] = 6765, + [6864] = 6766, + [6865] = 6767, + [6866] = 611, + [6867] = 6867, + [6868] = 6769, + [6869] = 6765, + [6870] = 6870, + [6871] = 623, + [6872] = 632, + [6873] = 6766, + [6874] = 6767, + [6875] = 6755, + [6876] = 613, + [6877] = 614, + [6878] = 3079, + [6879] = 6640, + [6880] = 6714, + [6881] = 6748, + [6882] = 657, + [6883] = 660, + [6884] = 6759, + [6885] = 6885, + [6886] = 674, + [6887] = 6761, + [6888] = 6762, + [6889] = 6763, + [6890] = 6715, + [6891] = 6765, + [6892] = 528, + [6893] = 529, + [6894] = 6766, + [6895] = 6767, + [6896] = 648, + [6897] = 616, [6898] = 6769, - [6899] = 320, - [6900] = 6754, - [6901] = 6771, - [6902] = 3075, - [6903] = 6903, - [6904] = 6263, - [6905] = 3078, - [6906] = 6754, - [6907] = 6907, - [6908] = 6908, - [6909] = 6752, - [6910] = 199, - [6911] = 6761, - [6912] = 284, - [6913] = 6274, - [6914] = 6763, - [6915] = 6764, - [6916] = 6765, - [6917] = 6766, - [6918] = 591, - [6919] = 6768, - [6920] = 6769, - [6921] = 611, - [6922] = 552, - [6923] = 6771, - [6924] = 6752, - [6925] = 6925, - [6926] = 3079, - [6927] = 6854, + [6899] = 626, + [6900] = 205, + [6901] = 6684, + [6902] = 6902, + [6903] = 650, + [6904] = 384, + [6905] = 619, + [6906] = 6742, + [6907] = 6592, + [6908] = 6755, + [6909] = 6368, + [6910] = 6910, + [6911] = 6748, + [6912] = 6912, + [6913] = 6759, + [6914] = 6453, + [6915] = 6457, + [6916] = 6761, + [6917] = 6762, + [6918] = 6763, + [6919] = 6416, + [6920] = 6765, + [6921] = 6231, + [6922] = 6766, + [6923] = 6767, + [6924] = 204, + [6925] = 6769, + [6926] = 6756, + [6927] = 6636, [6928] = 6928, - [6929] = 3092, - [6930] = 597, - [6931] = 6754, - [6932] = 6932, - [6933] = 6752, - [6934] = 6761, - [6935] = 599, - [6936] = 6763, - [6937] = 6764, - [6938] = 6765, - [6939] = 3125, - [6940] = 6766, - [6941] = 6761, - [6942] = 6768, - [6943] = 6769, - [6944] = 6771, - [6945] = 6721, - [6946] = 6405, - [6947] = 2993, - [6948] = 616, - [6949] = 1495, - [6950] = 6754, - [6951] = 556, - [6952] = 6752, - [6953] = 6761, - [6954] = 308, - [6955] = 6763, - [6956] = 6764, - [6957] = 6765, - [6958] = 618, - [6959] = 6766, - [6960] = 6960, - [6961] = 575, - [6962] = 6768, - [6963] = 6769, - [6964] = 577, - [6965] = 533, - [6966] = 6771, - [6967] = 3054, + [6929] = 6378, + [6930] = 6716, + [6931] = 304, + [6932] = 3147, + [6933] = 6755, + [6934] = 6748, + [6935] = 6759, + [6936] = 6480, + [6937] = 6937, + [6938] = 6761, + [6939] = 6762, + [6940] = 6763, + [6941] = 684, + [6942] = 6765, + [6943] = 6766, + [6944] = 6767, + [6945] = 383, + [6946] = 6769, + [6947] = 647, + [6948] = 6769, + [6949] = 6748, + [6950] = 6755, + [6951] = 3040, + [6952] = 6591, + [6953] = 6953, + [6954] = 6495, + [6955] = 6748, + [6956] = 6759, + [6957] = 6669, + [6958] = 6958, + [6959] = 6761, + [6960] = 6762, + [6961] = 6763, + [6962] = 6748, + [6963] = 6765, + [6964] = 6964, + [6965] = 6965, + [6966] = 6766, + [6967] = 6767, [6968] = 6968, - [6969] = 620, - [6970] = 6970, - [6971] = 6670, - [6972] = 6763, - [6973] = 6764, - [6974] = 6754, - [6975] = 6765, - [6976] = 6752, - [6977] = 6761, - [6978] = 6763, - [6979] = 6764, - [6980] = 6765, - [6981] = 6773, - [6982] = 6766, - [6983] = 3099, - [6984] = 6768, - [6985] = 6769, - [6986] = 6986, - [6987] = 6771, - [6988] = 6691, - [6989] = 6989, + [6969] = 677, + [6970] = 6769, + [6971] = 6720, + [6972] = 3109, + [6973] = 387, + [6974] = 6268, + [6975] = 6232, + [6976] = 6755, + [6977] = 663, + [6978] = 6780, + [6979] = 6603, + [6980] = 6759, + [6981] = 1680, + [6982] = 6761, + [6983] = 6762, + [6984] = 6763, + [6985] = 6765, + [6986] = 3076, + [6987] = 389, + [6988] = 6766, + [6989] = 6767, [6990] = 6990, - [6991] = 612, - [6992] = 6992, - [6993] = 6754, - [6994] = 6752, - [6995] = 313, - [6996] = 6996, - [6997] = 610, - [6998] = 6761, - [6999] = 6763, - [7000] = 6764, - [7001] = 6765, - [7002] = 6773, - [7003] = 6766, - [7004] = 609, - [7005] = 6768, - [7006] = 6769, - [7007] = 2936, - [7008] = 6807, - [7009] = 6771, - [7010] = 6227, - [7011] = 6261, - [7012] = 6761, - [7013] = 7013, - [7014] = 6763, - [7015] = 6764, - [7016] = 6765, - [7017] = 6766, - [7018] = 6768, - [7019] = 6769, - [7020] = 6754, - [7021] = 7021, - [7022] = 6771, - [7023] = 7023, + [6991] = 653, + [6992] = 6769, + [6993] = 3138, + [6994] = 6236, + [6995] = 3111, + [6996] = 6648, + [6997] = 6756, + [6998] = 6242, + [6999] = 6759, + [7000] = 526, + [7001] = 6761, + [7002] = 6762, + [7003] = 6763, + [7004] = 7004, + [7005] = 6765, + [7006] = 6250, + [7007] = 6766, + [7008] = 6767, + [7009] = 387, + [7010] = 6769, + [7011] = 7011, + [7012] = 6721, + [7013] = 6649, + [7014] = 7014, + [7015] = 6759, + [7016] = 6761, + [7017] = 6762, + [7018] = 6763, + [7019] = 6765, + [7020] = 625, + [7021] = 6766, + [7022] = 6767, + [7023] = 6769, [7024] = 7024, - [7025] = 198, + [7025] = 6766, [7026] = 7026, - [7027] = 6439, - [7028] = 6761, - [7029] = 6443, - [7030] = 6763, - [7031] = 6764, - [7032] = 6765, - [7033] = 6766, - [7034] = 6269, - [7035] = 6768, - [7036] = 6769, - [7037] = 6796, - [7038] = 6771, - [7039] = 6757, - [7040] = 7040, - [7041] = 6752, - [7042] = 6452, - [7043] = 6761, - [7044] = 593, + [7027] = 612, + [7028] = 633, + [7029] = 6650, + [7030] = 6759, + [7031] = 6761, + [7032] = 6762, + [7033] = 6763, + [7034] = 6765, + [7035] = 7035, + [7036] = 6766, + [7037] = 6767, + [7038] = 6767, + [7039] = 6769, + [7040] = 6606, + [7041] = 527, + [7042] = 526, + [7043] = 3095, + [7044] = 6682, [7045] = 7045, - [7046] = 6763, - [7047] = 6764, - [7048] = 6765, - [7049] = 6766, - [7050] = 6761, - [7051] = 6768, - [7052] = 6769, - [7053] = 622, - [7054] = 6771, - [7055] = 596, - [7056] = 627, - [7057] = 6455, - [7058] = 6761, - [7059] = 6763, - [7060] = 6763, - [7061] = 6764, - [7062] = 6765, - [7063] = 6764, - [7064] = 6766, - [7065] = 6765, - [7066] = 6768, - [7067] = 6769, - [7068] = 6301, - [7069] = 6771, - [7070] = 6807, - [7071] = 6456, - [7072] = 7072, - [7073] = 6766, - [7074] = 6768, - [7075] = 6769, - [7076] = 319, - [7077] = 6771, - [7078] = 6397, - [7079] = 6398, - [7080] = 601, - [7081] = 1489, - [7082] = 6400, - [7083] = 7083, - [7084] = 2937, + [7046] = 2913, + [7047] = 7011, + [7048] = 6604, + [7049] = 6618, + [7050] = 6642, + [7051] = 6759, + [7052] = 610, + [7053] = 6780, + [7054] = 6653, + [7055] = 6607, + [7056] = 7056, + [7057] = 6867, + [7058] = 6755, + [7059] = 6608, + [7060] = 693, + [7061] = 635, + [7062] = 6395, + [7063] = 3104, + [7064] = 7064, + [7065] = 6756, + [7066] = 6748, + [7067] = 6620, + [7068] = 6759, + [7069] = 6755, + [7070] = 7070, + [7071] = 6743, + [7072] = 656, + [7073] = 6761, + [7074] = 6762, + [7075] = 6763, + [7076] = 6867, + [7077] = 6765, + [7078] = 6769, + [7079] = 6766, + [7080] = 6767, + [7081] = 3055, + [7082] = 6769, + [7083] = 6690, + [7084] = 7084, [7085] = 7085, - [7086] = 6415, - [7087] = 6402, - [7088] = 555, - [7089] = 4843, - [7090] = 6754, - [7091] = 6466, - [7092] = 2943, - [7093] = 4733, - [7094] = 4730, - [7095] = 6796, - [7096] = 6928, - [7097] = 6417, - [7098] = 5389, - [7099] = 6303, - [7100] = 320, - [7101] = 4820, - [7102] = 5416, - [7103] = 528, - [7104] = 4736, - [7105] = 7105, - [7106] = 608, - [7107] = 6773, - [7108] = 3032, - [7109] = 477, - [7110] = 6754, - [7111] = 3038, - [7112] = 6932, - [7113] = 6743, - [7114] = 7114, - [7115] = 1489, - [7116] = 6757, - [7117] = 6752, - [7118] = 6761, - [7119] = 6718, - [7120] = 6763, - [7121] = 6764, - [7122] = 6763, - [7123] = 482, - [7124] = 7124, + [7086] = 7086, + [7087] = 6616, + [7088] = 6619, + [7089] = 620, + [7090] = 6836, + [7091] = 1610, + [7092] = 2915, + [7093] = 7093, + [7094] = 4752, + [7095] = 3105, + [7096] = 7014, + [7097] = 631, + [7098] = 3106, + [7099] = 528, + [7100] = 529, + [7101] = 6856, + [7102] = 7102, + [7103] = 7103, + [7104] = 7104, + [7105] = 7093, + [7106] = 7106, + [7107] = 4778, + [7108] = 6630, + [7109] = 389, + [7110] = 384, + [7111] = 6271, + [7112] = 6275, + [7113] = 6276, + [7114] = 6958, + [7115] = 536, + [7116] = 6759, + [7117] = 6698, + [7118] = 7118, + [7119] = 7119, + [7120] = 4696, + [7121] = 7118, + [7122] = 6756, + [7123] = 7123, + [7124] = 6885, [7125] = 7125, - [7126] = 6764, - [7127] = 6765, - [7128] = 7128, - [7129] = 6776, - [7130] = 6683, - [7131] = 6765, - [7132] = 7132, - [7133] = 6793, - [7134] = 6907, - [7135] = 7135, - [7136] = 6766, - [7137] = 7137, - [7138] = 6807, - [7139] = 7139, - [7140] = 6744, - [7141] = 6853, - [7142] = 619, - [7143] = 6275, - [7144] = 6766, - [7145] = 6768, - [7146] = 6769, - [7147] = 6280, - [7148] = 7148, - [7149] = 6768, - [7150] = 6769, - [7151] = 6282, - [7152] = 6771, - [7153] = 6745, - [7154] = 7154, - [7155] = 6487, - [7156] = 7156, - [7157] = 6760, - [7158] = 6290, - [7159] = 6685, - [7160] = 6746, - [7161] = 6500, - [7162] = 6687, - [7163] = 6544, - [7164] = 6571, - [7165] = 7165, - [7166] = 6581, - [7167] = 7167, - [7168] = 6968, - [7169] = 7169, - [7170] = 4734, - [7171] = 3023, + [7126] = 6218, + [7127] = 7127, + [7128] = 7123, + [7129] = 683, + [7130] = 621, + [7131] = 6771, + [7132] = 7035, + [7133] = 1628, + [7134] = 6761, + [7135] = 600, + [7136] = 6968, + [7137] = 7045, + [7138] = 6761, + [7139] = 6762, + [7140] = 6763, + [7141] = 601, + [7142] = 6755, + [7143] = 7143, + [7144] = 6937, + [7145] = 7145, + [7146] = 6633, + [7147] = 604, + [7148] = 5468, + [7149] = 7149, + [7150] = 6756, + [7151] = 5480, + [7152] = 6836, + [7153] = 7153, + [7154] = 6958, + [7155] = 6748, + [7156] = 6990, + [7157] = 7118, + [7158] = 7125, + [7159] = 7127, + [7160] = 7125, + [7161] = 6679, + [7162] = 6759, + [7163] = 7035, + [7164] = 6235, + [7165] = 6240, + [7166] = 6254, + [7167] = 6748, + [7168] = 6761, + [7169] = 6762, + [7170] = 7170, + [7171] = 7171, [7172] = 7172, - [7173] = 6766, - [7174] = 6970, - [7175] = 6748, - [7176] = 7176, - [7177] = 6749, - [7178] = 474, - [7179] = 602, - [7180] = 7180, - [7181] = 6754, - [7182] = 6291, - [7183] = 473, - [7184] = 308, - [7185] = 6240, - [7186] = 6297, - [7187] = 7083, - [7188] = 6308, - [7189] = 7105, - [7190] = 6676, - [7191] = 6773, - [7192] = 1521, - [7193] = 6241, - [7194] = 630, - [7195] = 6771, - [7196] = 6326, - [7197] = 6754, - [7198] = 6327, - [7199] = 529, - [7200] = 6330, - [7201] = 2980, - [7202] = 469, - [7203] = 6761, - [7204] = 6763, - [7205] = 6764, - [7206] = 6765, - [7207] = 1476, - [7208] = 6766, - [7209] = 6768, - [7210] = 6769, - [7211] = 6771, - [7212] = 6757, - [7213] = 6776, - [7214] = 609, - [7215] = 7148, - [7216] = 6752, - [7217] = 6760, - [7218] = 7165, - [7219] = 7167, - [7220] = 7169, - [7221] = 3062, - [7222] = 3064, - [7223] = 560, - [7224] = 581, - [7225] = 474, - [7226] = 3069, - [7227] = 6688, - [7228] = 6776, - [7229] = 7229, - [7230] = 6242, - [7231] = 6761, - [7232] = 7148, - [7233] = 6249, - [7234] = 6760, - [7235] = 7165, - [7236] = 7167, - [7237] = 7169, - [7238] = 6776, - [7239] = 7148, - [7240] = 6760, - [7241] = 7165, - [7242] = 7167, - [7243] = 7169, - [7244] = 6776, - [7245] = 6763, - [7246] = 7246, - [7247] = 7148, - [7248] = 7132, - [7249] = 6760, - [7250] = 7165, - [7251] = 7165, - [7252] = 7167, - [7253] = 7169, - [7254] = 6776, - [7255] = 6366, - [7256] = 7148, - [7257] = 6760, - [7258] = 7165, - [7259] = 7167, - [7260] = 7169, - [7261] = 6776, - [7262] = 7148, - [7263] = 6760, - [7264] = 7165, - [7265] = 7167, - [7266] = 7169, - [7267] = 6776, - [7268] = 7148, - [7269] = 6424, - [7270] = 6760, - [7271] = 7165, - [7272] = 6764, - [7273] = 7167, - [7274] = 7169, - [7275] = 6776, - [7276] = 7148, - [7277] = 7277, - [7278] = 6371, - [7279] = 6760, - [7280] = 7165, - [7281] = 6763, - [7282] = 7167, - [7283] = 7169, - [7284] = 6776, - [7285] = 6764, - [7286] = 7148, - [7287] = 6652, - [7288] = 6760, - [7289] = 7165, - [7290] = 7167, - [7291] = 7169, - [7292] = 6776, - [7293] = 1521, - [7294] = 7148, - [7295] = 6765, - [7296] = 6760, - [7297] = 7165, - [7298] = 7167, - [7299] = 7169, - [7300] = 6776, - [7301] = 598, - [7302] = 7148, - [7303] = 629, - [7304] = 6760, - [7305] = 7165, - [7306] = 7135, - [7307] = 7167, - [7308] = 7169, - [7309] = 6776, - [7310] = 1495, - [7311] = 7148, - [7312] = 6773, - [7313] = 6766, - [7314] = 6760, - [7315] = 7165, - [7316] = 592, - [7317] = 7167, - [7318] = 7169, - [7319] = 6776, - [7320] = 6768, - [7321] = 7148, - [7322] = 6658, - [7323] = 174, - [7324] = 6760, - [7325] = 7165, - [7326] = 7167, - [7327] = 7169, - [7328] = 6776, - [7329] = 7148, - [7330] = 7330, - [7331] = 6760, - [7332] = 7165, - [7333] = 6768, - [7334] = 7167, - [7335] = 7169, - [7336] = 6776, - [7337] = 7148, - [7338] = 594, - [7339] = 6760, - [7340] = 7165, - [7341] = 557, - [7342] = 7167, - [7343] = 7169, - [7344] = 6776, - [7345] = 7148, - [7346] = 6769, - [7347] = 6760, - [7348] = 7165, - [7349] = 6932, - [7350] = 7167, - [7351] = 7169, - [7352] = 6776, - [7353] = 7148, - [7354] = 6760, - [7355] = 7165, - [7356] = 6771, - [7357] = 7167, - [7358] = 7169, - [7359] = 6776, - [7360] = 7148, - [7361] = 6760, - [7362] = 7165, - [7363] = 568, - [7364] = 7167, - [7365] = 7169, - [7366] = 6776, - [7367] = 7148, - [7368] = 7154, - [7369] = 6760, - [7370] = 7165, - [7371] = 6765, - [7372] = 7167, - [7373] = 7169, - [7374] = 172, - [7375] = 6760, - [7376] = 7165, - [7377] = 173, - [7378] = 7167, - [7379] = 7169, - [7380] = 6666, - [7381] = 6194, - [7382] = 6668, - [7383] = 6835, + [7173] = 6762, + [7174] = 1658, + [7175] = 6763, + [7176] = 6264, + [7177] = 6605, + [7178] = 6765, + [7179] = 6278, + [7180] = 7119, + [7181] = 6297, + [7182] = 6771, + [7183] = 6836, + [7184] = 536, + [7185] = 6958, + [7186] = 6766, + [7187] = 6299, + [7188] = 6767, + [7189] = 7118, + [7190] = 7125, + [7191] = 7127, + [7192] = 7035, + [7193] = 6769, + [7194] = 6836, + [7195] = 6958, + [7196] = 637, + [7197] = 7118, + [7198] = 7125, + [7199] = 6759, + [7200] = 7127, + [7201] = 7035, + [7202] = 6836, + [7203] = 6625, + [7204] = 6369, + [7205] = 6958, + [7206] = 6443, + [7207] = 634, + [7208] = 7118, + [7209] = 7125, + [7210] = 7127, + [7211] = 7035, + [7212] = 6836, + [7213] = 688, + [7214] = 6958, + [7215] = 7118, + [7216] = 7125, + [7217] = 6703, + [7218] = 7127, + [7219] = 7035, + [7220] = 6836, + [7221] = 6628, + [7222] = 6643, + [7223] = 6958, + [7224] = 7118, + [7225] = 7125, + [7226] = 7127, + [7227] = 7035, + [7228] = 6836, + [7229] = 6708, + [7230] = 6958, + [7231] = 7118, + [7232] = 7125, + [7233] = 7127, + [7234] = 7035, + [7235] = 6836, + [7236] = 4781, + [7237] = 6958, + [7238] = 7118, + [7239] = 7125, + [7240] = 1701, + [7241] = 7127, + [7242] = 7035, + [7243] = 6836, + [7244] = 6763, + [7245] = 6958, + [7246] = 7118, + [7247] = 7125, + [7248] = 7127, + [7249] = 7035, + [7250] = 6836, + [7251] = 6958, + [7252] = 7118, + [7253] = 7125, + [7254] = 7127, + [7255] = 7035, + [7256] = 6836, + [7257] = 6655, + [7258] = 7104, + [7259] = 6958, + [7260] = 7118, + [7261] = 7125, + [7262] = 7127, + [7263] = 7035, + [7264] = 6836, + [7265] = 7145, + [7266] = 6958, + [7267] = 639, + [7268] = 7118, + [7269] = 7125, + [7270] = 6755, + [7271] = 7127, + [7272] = 7035, + [7273] = 6836, + [7274] = 6958, + [7275] = 7118, + [7276] = 7125, + [7277] = 7127, + [7278] = 7035, + [7279] = 6836, + [7280] = 6958, + [7281] = 6657, + [7282] = 7118, + [7283] = 7125, + [7284] = 7127, + [7285] = 7035, + [7286] = 6836, + [7287] = 6958, + [7288] = 1680, + [7289] = 7118, + [7290] = 7125, + [7291] = 6671, + [7292] = 7127, + [7293] = 7035, + [7294] = 6836, + [7295] = 6958, + [7296] = 7296, + [7297] = 7118, + [7298] = 7125, + [7299] = 7299, + [7300] = 7127, + [7301] = 7035, + [7302] = 6836, + [7303] = 6958, + [7304] = 7118, + [7305] = 7125, + [7306] = 7306, + [7307] = 7127, + [7308] = 7035, + [7309] = 6756, + [7310] = 6748, + [7311] = 6867, + [7312] = 682, + [7313] = 6759, + [7314] = 656, + [7315] = 692, + [7316] = 7316, + [7317] = 7316, + [7318] = 7318, + [7319] = 6765, + [7320] = 6761, + [7321] = 6762, + [7322] = 6766, + [7323] = 6767, + [7324] = 6763, + [7325] = 6660, + [7326] = 1701, + [7327] = 6765, + [7328] = 383, + [7329] = 6765, + [7330] = 6766, + [7331] = 7127, + [7332] = 636, + [7333] = 622, + [7334] = 7334, + [7335] = 669, + [7336] = 6767, + [7337] = 671, + [7338] = 2912, + [7339] = 536, + [7340] = 7340, + [7341] = 685, + [7342] = 6769, + [7343] = 661, + [7344] = 662, + [7345] = 6600, + [7346] = 7346, + [7347] = 2622, + [7348] = 536, + [7349] = 3588, + [7350] = 7350, + [7351] = 7351, + [7352] = 7352, + [7353] = 7353, + [7354] = 7354, + [7355] = 7355, + [7356] = 528, + [7357] = 529, + [7358] = 7358, + [7359] = 7359, + [7360] = 7360, + [7361] = 7361, + [7362] = 7362, + [7363] = 7363, + [7364] = 7364, + [7365] = 7365, + [7366] = 526, + [7367] = 7367, + [7368] = 7368, + [7369] = 7368, + [7370] = 7370, + [7371] = 7359, + [7372] = 4796, + [7373] = 7373, + [7374] = 7374, + [7375] = 4799, + [7376] = 3048, + [7377] = 7377, + [7378] = 1680, + [7379] = 7379, + [7380] = 7380, + [7381] = 7359, + [7382] = 7382, + [7383] = 4709, [7384] = 7384, - [7385] = 587, - [7386] = 554, - [7387] = 584, - [7388] = 604, - [7389] = 7169, - [7390] = 473, - [7391] = 6300, - [7392] = 1495, - [7393] = 6717, - [7394] = 6352, - [7395] = 7148, - [7396] = 477, - [7397] = 482, - [7398] = 613, - [7399] = 615, - [7400] = 7137, - [7401] = 7167, - [7402] = 6426, - [7403] = 6773, - [7404] = 6761, + [7385] = 665, + [7386] = 7384, + [7387] = 4800, + [7388] = 7388, + [7389] = 7389, + [7390] = 7390, + [7391] = 7391, + [7392] = 7392, + [7393] = 7364, + [7394] = 3619, + [7395] = 7395, + [7396] = 7392, + [7397] = 2602, + [7398] = 7398, + [7399] = 7362, + [7400] = 2143, + [7401] = 7401, + [7402] = 7352, + [7403] = 7403, + [7404] = 7404, [7405] = 7405, - [7406] = 4974, - [7407] = 7407, - [7408] = 7408, - [7409] = 4962, - [7410] = 2980, - [7411] = 3038, - [7412] = 7412, - [7413] = 7413, + [7406] = 3607, + [7407] = 7395, + [7408] = 7359, + [7409] = 7409, + [7410] = 7380, + [7411] = 4785, + [7412] = 7384, + [7413] = 4899, [7414] = 7414, - [7415] = 1678, + [7415] = 7415, [7416] = 7416, - [7417] = 7417, - [7418] = 7418, + [7417] = 7403, + [7418] = 7392, [7419] = 7419, - [7420] = 7416, - [7421] = 7417, - [7422] = 7422, - [7423] = 7423, + [7420] = 1658, + [7421] = 3049, + [7422] = 1658, + [7423] = 7414, [7424] = 7424, - [7425] = 3573, + [7425] = 7425, [7426] = 7426, [7427] = 7427, - [7428] = 3564, - [7429] = 7429, - [7430] = 4947, + [7428] = 536, + [7429] = 3076, + [7430] = 2623, [7431] = 7431, - [7432] = 7432, + [7432] = 2636, [7433] = 7433, - [7434] = 3158, - [7435] = 7435, - [7436] = 573, - [7437] = 2433, - [7438] = 7438, - [7439] = 7416, - [7440] = 7417, - [7441] = 7405, - [7442] = 7424, + [7434] = 7351, + [7435] = 1701, + [7436] = 7405, + [7437] = 7384, + [7438] = 7350, + [7439] = 7415, + [7440] = 7382, + [7441] = 7441, + [7442] = 7442, [7443] = 7443, - [7444] = 7424, - [7445] = 7438, - [7446] = 7438, - [7447] = 7447, + [7444] = 536, + [7445] = 3616, + [7446] = 7364, + [7447] = 7355, [7448] = 7448, - [7449] = 7435, - [7450] = 7450, - [7451] = 7413, - [7452] = 7452, - [7453] = 3574, + [7449] = 7370, + [7450] = 1804, + [7451] = 3040, + [7452] = 7360, + [7453] = 7441, [7454] = 7454, - [7455] = 7455, - [7456] = 7456, - [7457] = 3154, - [7458] = 3156, - [7459] = 469, - [7460] = 7417, - [7461] = 7461, - [7462] = 1495, - [7463] = 7463, - [7464] = 7464, - [7465] = 572, + [7455] = 7359, + [7456] = 7401, + [7457] = 7457, + [7458] = 526, + [7459] = 1701, + [7460] = 7460, + [7461] = 670, + [7462] = 7462, + [7463] = 7448, + [7464] = 7390, + [7465] = 7465, [7466] = 7466, - [7467] = 7467, - [7468] = 7468, - [7469] = 7469, - [7470] = 7470, + [7467] = 3055, + [7468] = 7353, + [7469] = 7427, + [7470] = 7389, [7471] = 7471, - [7472] = 7416, - [7473] = 7473, - [7474] = 3023, - [7475] = 7419, + [7472] = 7361, + [7473] = 3174, + [7474] = 3177, + [7475] = 7475, [7476] = 7476, - [7477] = 1495, - [7478] = 7478, - [7479] = 7417, - [7480] = 7480, + [7477] = 4650, + [7478] = 2627, + [7479] = 7479, + [7480] = 7359, [7481] = 7481, - [7482] = 7463, - [7483] = 7468, - [7484] = 4778, - [7485] = 7471, - [7486] = 7429, - [7487] = 7487, - [7488] = 7488, - [7489] = 7489, - [7490] = 7443, - [7491] = 7487, - [7492] = 7492, - [7493] = 7438, - [7494] = 7450, - [7495] = 7426, - [7496] = 7427, + [7482] = 3602, + [7483] = 529, + [7484] = 7427, + [7485] = 7352, + [7486] = 7486, + [7487] = 7363, + [7488] = 5574, + [7489] = 7392, + [7490] = 2628, + [7491] = 7491, + [7492] = 7377, + [7493] = 7368, + [7494] = 7471, + [7495] = 7495, + [7496] = 7496, [7497] = 7497, - [7498] = 7498, - [7499] = 7424, - [7500] = 7438, - [7501] = 3581, - [7502] = 7481, - [7503] = 7503, - [7504] = 7504, - [7505] = 7489, - [7506] = 582, - [7507] = 4806, - [7508] = 7508, - [7509] = 7509, - [7510] = 474, - [7511] = 588, - [7512] = 7498, - [7513] = 7513, - [7514] = 7488, - [7515] = 1489, - [7516] = 7438, - [7517] = 7424, - [7518] = 7447, - [7519] = 579, - [7520] = 7504, - [7521] = 473, - [7522] = 7508, - [7523] = 7523, - [7524] = 7463, - [7525] = 7525, - [7526] = 7469, - [7527] = 2471, - [7528] = 7408, - [7529] = 2505, - [7530] = 474, - [7531] = 3569, - [7532] = 7532, - [7533] = 7463, - [7534] = 7416, - [7535] = 7417, - [7536] = 477, - [7537] = 482, - [7538] = 7470, - [7539] = 7539, - [7540] = 7463, - [7541] = 7541, - [7542] = 585, - [7543] = 7543, - [7544] = 7544, - [7545] = 7432, - [7546] = 7463, - [7547] = 7480, + [7498] = 527, + [7499] = 7499, + [7500] = 7358, + [7501] = 7384, + [7502] = 7502, + [7503] = 7384, + [7504] = 7384, + [7505] = 7392, + [7506] = 7370, + [7507] = 7392, + [7508] = 7392, + [7509] = 7367, + [7510] = 7379, + [7511] = 7380, + [7512] = 4798, + [7513] = 4795, + [7514] = 7514, + [7515] = 7352, + [7516] = 7352, + [7517] = 7380, + [7518] = 679, + [7519] = 7352, + [7520] = 7380, + [7521] = 4801, + [7522] = 7522, + [7523] = 7352, + [7524] = 7524, + [7525] = 7380, + [7526] = 7353, + [7527] = 7353, + [7528] = 7380, + [7529] = 7486, + [7530] = 7431, + [7531] = 673, + [7532] = 7358, + [7533] = 7379, + [7534] = 7353, + [7535] = 2601, + [7536] = 527, + [7537] = 676, + [7538] = 7495, + [7539] = 7388, + [7540] = 206, + [7541] = 7502, + [7542] = 7442, + [7543] = 664, + [7544] = 1680, + [7545] = 7545, + [7546] = 7359, + [7547] = 528, [7548] = 7548, - [7549] = 7463, - [7550] = 7448, - [7551] = 7461, - [7552] = 7463, - [7553] = 7424, - [7554] = 2143, - [7555] = 7438, + [7549] = 7549, + [7550] = 7550, + [7551] = 7551, + [7552] = 7552, + [7553] = 7553, + [7554] = 7554, + [7555] = 7555, [7556] = 7556, - [7557] = 7463, - [7558] = 7464, - [7559] = 4975, - [7560] = 5585, + [7557] = 7548, + [7558] = 7558, + [7559] = 7559, + [7560] = 7560, [7561] = 7561, [7562] = 7562, - [7563] = 1489, - [7564] = 7424, + [7563] = 7548, + [7564] = 7564, [7565] = 7565, - [7566] = 7438, - [7567] = 7416, - [7568] = 7469, - [7569] = 7435, - [7570] = 7450, + [7566] = 7566, + [7567] = 7567, + [7568] = 7568, + [7569] = 7569, + [7570] = 7570, [7571] = 7571, - [7572] = 7452, - [7573] = 7426, - [7574] = 7427, - [7575] = 1521, - [7576] = 7454, - [7577] = 1521, - [7578] = 7455, - [7579] = 204, - [7580] = 7417, - [7581] = 2993, - [7582] = 7416, - [7583] = 7417, - [7584] = 7418, - [7585] = 7585, - [7586] = 7416, - [7587] = 7417, - [7588] = 4972, - [7589] = 7424, + [7572] = 7565, + [7573] = 7548, + [7574] = 7567, + [7575] = 7568, + [7576] = 7570, + [7577] = 7549, + [7578] = 7571, + [7579] = 7567, + [7580] = 7568, + [7581] = 7581, + [7582] = 480, + [7583] = 7564, + [7584] = 7554, + [7585] = 7566, + [7586] = 7586, + [7587] = 7565, + [7588] = 7588, + [7589] = 7566, [7590] = 7590, - [7591] = 7438, - [7592] = 7561, - [7593] = 7525, - [7594] = 7476, - [7595] = 7424, - [7596] = 5059, - [7597] = 7597, - [7598] = 3032, - [7599] = 4970, - [7600] = 4971, - [7601] = 7419, - [7602] = 7602, - [7603] = 7416, - [7604] = 2493, - [7605] = 2494, - [7606] = 7606, - [7607] = 7607, + [7591] = 7564, + [7592] = 7592, + [7593] = 7569, + [7594] = 7556, + [7595] = 7570, + [7596] = 7567, + [7597] = 7568, + [7598] = 7550, + [7599] = 7569, + [7600] = 7553, + [7601] = 7568, + [7602] = 513, + [7603] = 7554, + [7604] = 7570, + [7605] = 7605, + [7606] = 7551, + [7607] = 7569, [7608] = 7608, [7609] = 7609, - [7610] = 7610, - [7611] = 7611, + [7610] = 7549, + [7611] = 7548, [7612] = 7612, - [7613] = 7613, - [7614] = 7614, - [7615] = 7615, - [7616] = 7616, - [7617] = 7617, - [7618] = 7618, - [7619] = 7616, - [7620] = 7620, - [7621] = 7621, + [7613] = 7555, + [7614] = 7555, + [7615] = 7581, + [7616] = 7550, + [7617] = 7548, + [7618] = 7548, + [7619] = 7567, + [7620] = 7588, + [7621] = 7568, [7622] = 7622, [7623] = 7623, - [7624] = 7615, - [7625] = 7608, - [7626] = 7626, - [7627] = 7608, - [7628] = 7628, - [7629] = 7629, - [7630] = 7630, - [7631] = 7608, + [7624] = 7624, + [7625] = 7625, + [7626] = 7571, + [7627] = 7565, + [7628] = 7553, + [7629] = 7554, + [7630] = 7566, + [7631] = 7631, [7632] = 7632, - [7633] = 7633, - [7634] = 447, - [7635] = 7618, - [7636] = 7622, - [7637] = 7611, - [7638] = 7618, - [7639] = 7608, + [7633] = 7567, + [7634] = 7568, + [7635] = 7568, + [7636] = 7569, + [7637] = 7637, + [7638] = 2627, + [7639] = 7570, [7640] = 7640, - [7641] = 7628, + [7641] = 7641, [7642] = 7642, - [7643] = 7608, - [7644] = 7644, - [7645] = 7632, - [7646] = 7646, - [7647] = 7629, - [7648] = 7648, - [7649] = 7649, - [7650] = 7646, - [7651] = 7608, - [7652] = 7652, - [7653] = 7653, - [7654] = 7608, - [7655] = 7608, - [7656] = 7656, - [7657] = 7657, - [7658] = 7629, - [7659] = 7632, - [7660] = 7629, - [7661] = 7608, - [7662] = 7621, - [7663] = 7615, - [7664] = 7618, - [7665] = 7621, - [7666] = 7666, - [7667] = 7667, - [7668] = 7628, - [7669] = 7608, - [7670] = 7622, - [7671] = 7621, - [7672] = 7628, - [7673] = 7656, - [7674] = 7648, - [7675] = 7608, - [7676] = 7632, - [7677] = 7677, - [7678] = 7648, - [7679] = 7646, - [7680] = 7629, - [7681] = 7681, - [7682] = 7608, - [7683] = 7648, - [7684] = 7615, - [7685] = 7622, - [7686] = 7646, - [7687] = 7649, - [7688] = 7629, + [7643] = 2628, + [7644] = 7564, + [7645] = 7645, + [7646] = 7550, + [7647] = 7553, + [7648] = 7565, + [7649] = 7554, + [7650] = 7650, + [7651] = 7549, + [7652] = 7564, + [7653] = 7555, + [7654] = 7592, + [7655] = 7655, + [7656] = 7555, + [7657] = 7632, + [7658] = 7565, + [7659] = 7550, + [7660] = 7553, + [7661] = 7554, + [7662] = 7548, + [7663] = 7548, + [7664] = 7567, + [7665] = 7568, + [7666] = 7566, + [7667] = 7554, + [7668] = 7567, + [7669] = 7669, + [7670] = 7554, + [7671] = 7568, + [7672] = 7672, + [7673] = 7565, + [7674] = 7548, + [7675] = 7564, + [7676] = 7564, + [7677] = 7566, + [7678] = 7567, + [7679] = 7679, + [7680] = 7568, + [7681] = 7569, + [7682] = 7592, + [7683] = 7570, + [7684] = 7569, + [7685] = 7433, + [7686] = 7686, + [7687] = 7687, + [7688] = 7688, [7689] = 7689, - [7690] = 7648, - [7691] = 7649, - [7692] = 7608, - [7693] = 7616, - [7694] = 7694, - [7695] = 7608, - [7696] = 7621, - [7697] = 447, - [7698] = 7633, - [7699] = 7633, - [7700] = 7629, - [7701] = 7701, - [7702] = 7616, - [7703] = 7608, - [7704] = 7704, - [7705] = 7628, - [7706] = 7646, - [7707] = 7629, - [7708] = 7649, - [7709] = 7618, - [7710] = 7616, - [7711] = 7649, - [7712] = 7616, - [7713] = 7608, + [7690] = 7567, + [7691] = 7570, + [7692] = 7692, + [7693] = 480, + [7694] = 7548, + [7695] = 7568, + [7696] = 7549, + [7697] = 7568, + [7698] = 7637, + [7699] = 7588, + [7700] = 7700, + [7701] = 7640, + [7702] = 7554, + [7703] = 7703, + [7704] = 513, + [7705] = 7705, + [7706] = 7565, + [7707] = 7548, + [7708] = 7568, + [7709] = 7709, + [7710] = 7710, + [7711] = 7554, + [7712] = 7712, + [7713] = 7588, [7714] = 7714, - [7715] = 7617, - [7716] = 7714, - [7717] = 7649, - [7718] = 7617, - [7719] = 7714, - [7720] = 7720, - [7721] = 7721, - [7722] = 7722, - [7723] = 7608, - [7724] = 7608, - [7725] = 7721, - [7726] = 7726, - [7727] = 7615, - [7728] = 7728, - [7729] = 7729, - [7730] = 7608, - [7731] = 7722, - [7732] = 7608, - [7733] = 7733, - [7734] = 7632, - [7735] = 7608, - [7736] = 7646, - [7737] = 7618, - [7738] = 7629, - [7739] = 7621, - [7740] = 7633, - [7741] = 7629, - [7742] = 7615, - [7743] = 7649, - [7744] = 7608, - [7745] = 7618, - [7746] = 7621, - [7747] = 7648, - [7748] = 7608, - [7749] = 7749, - [7750] = 7750, - [7751] = 7608, - [7752] = 7646, - [7753] = 7633, - [7754] = 7754, - [7755] = 7633, - [7756] = 7656, - [7757] = 7621, - [7758] = 7758, - [7759] = 7728, - [7760] = 7616, - [7761] = 7722, - [7762] = 7608, - [7763] = 7763, - [7764] = 7728, - [7765] = 7729, - [7766] = 7766, - [7767] = 7632, + [7715] = 7548, + [7716] = 7548, + [7717] = 7555, + [7718] = 7568, + [7719] = 7548, + [7720] = 7637, + [7721] = 7550, + [7722] = 7640, + [7723] = 7566, + [7724] = 7548, + [7725] = 7548, + [7726] = 7568, + [7727] = 7565, + [7728] = 7637, + [7729] = 7592, + [7730] = 7567, + [7731] = 7548, + [7732] = 7568, + [7733] = 7569, + [7734] = 7548, + [7735] = 7637, + [7736] = 7640, + [7737] = 7679, + [7738] = 7548, + [7739] = 7739, + [7740] = 7570, + [7741] = 7622, + [7742] = 7565, + [7743] = 7548, + [7744] = 7567, + [7745] = 7566, + [7746] = 7641, + [7747] = 7565, + [7748] = 7568, + [7749] = 7637, + [7750] = 7640, + [7751] = 7548, + [7752] = 2636, + [7753] = 7566, + [7754] = 7567, + [7755] = 7592, + [7756] = 7622, + [7757] = 7548, + [7758] = 7567, + [7759] = 7759, + [7760] = 7568, + [7761] = 7568, + [7762] = 7548, + [7763] = 7637, + [7764] = 7640, + [7765] = 7569, + [7766] = 7605, + [7767] = 7570, [7768] = 7768, - [7769] = 7769, - [7770] = 7622, - [7771] = 7771, - [7772] = 7608, - [7773] = 7773, - [7774] = 7774, - [7775] = 7646, - [7776] = 7622, - [7777] = 7777, - [7778] = 7629, - [7779] = 7648, - [7780] = 7632, - [7781] = 7728, - [7782] = 7729, - [7783] = 7649, - [7784] = 7608, - [7785] = 7621, - [7786] = 7667, - [7787] = 7608, - [7788] = 7681, - [7789] = 7644, - [7790] = 7608, - [7791] = 7791, - [7792] = 7608, - [7793] = 7628, - [7794] = 7632, - [7795] = 7628, - [7796] = 7728, - [7797] = 7729, - [7798] = 7456, - [7799] = 7617, - [7800] = 7608, - [7801] = 445, - [7802] = 7622, - [7803] = 7689, - [7804] = 7628, - [7805] = 7805, - [7806] = 7609, - [7807] = 7608, - [7808] = 7646, - [7809] = 7629, - [7810] = 7728, - [7811] = 7729, - [7812] = 7649, - [7813] = 7728, - [7814] = 629, - [7815] = 7815, - [7816] = 7646, - [7817] = 7656, - [7818] = 7818, - [7819] = 609, - [7820] = 7608, - [7821] = 7763, - [7822] = 7615, - [7823] = 7618, - [7824] = 7728, - [7825] = 7729, - [7826] = 7621, - [7827] = 7666, - [7828] = 7608, - [7829] = 7621, - [7830] = 2471, - [7831] = 7831, - [7832] = 7832, - [7833] = 7729, - [7834] = 7632, - [7835] = 7835, - [7836] = 7656, - [7837] = 7837, - [7838] = 7728, - [7839] = 7729, - [7840] = 7608, - [7841] = 7841, - [7842] = 7842, - [7843] = 7632, - [7844] = 7629, - [7845] = 7845, - [7846] = 7846, - [7847] = 7847, - [7848] = 7632, - [7849] = 7628, - [7850] = 7608, - [7851] = 7656, - [7852] = 7728, - [7853] = 7729, - [7854] = 7632, - [7855] = 7855, - [7856] = 7608, - [7857] = 7646, - [7858] = 7721, - [7859] = 7622, - [7860] = 7622, - [7861] = 7618, - [7862] = 7615, - [7863] = 7677, - [7864] = 7652, - [7865] = 7728, - [7866] = 7729, - [7867] = 7867, - [7868] = 7646, - [7869] = 7632, - [7870] = 7842, - [7871] = 7646, - [7872] = 7733, - [7873] = 7629, - [7874] = 7649, - [7875] = 7875, - [7876] = 2433, - [7877] = 7629, - [7878] = 7728, - [7879] = 7729, - [7880] = 7720, - [7881] = 7704, - [7882] = 7621, - [7883] = 7622, - [7884] = 7646, - [7885] = 7754, - [7886] = 7629, - [7887] = 7629, - [7888] = 7888, - [7889] = 7648, - [7890] = 7649, - [7891] = 7728, - [7892] = 7729, - [7893] = 7648, - [7894] = 447, - [7895] = 7608, - [7896] = 7649, - [7897] = 7677, - [7898] = 7626, - [7899] = 7615, - [7900] = 7900, - [7901] = 7648, - [7902] = 7902, - [7903] = 7649, - [7904] = 7728, - [7905] = 7729, - [7906] = 7677, - [7907] = 7629, - [7908] = 7777, - [7909] = 7608, - [7910] = 7616, - [7911] = 7729, - [7912] = 7616, - [7913] = 7689, - [7914] = 7608, - [7915] = 7646, - [7916] = 7629, - [7917] = 7728, - [7918] = 7729, - [7919] = 7649, - [7920] = 7629, - [7921] = 7720, - [7922] = 7617, - [7923] = 7733, - [7924] = 7621, - [7925] = 7681, - [7926] = 7608, - [7927] = 7608, - [7928] = 7652, - [7929] = 7632, - [7930] = 7728, - [7931] = 7729, - [7932] = 7932, - [7933] = 7649, - [7934] = 7721, - [7935] = 7722, - [7936] = 7622, - [7937] = 7722, - [7938] = 7646, - [7939] = 7629, - [7940] = 7728, - [7941] = 7729, - [7942] = 7646, - [7943] = 7648, - [7944] = 7649, - [7945] = 7608, - [7946] = 7615, - [7947] = 7629, - [7948] = 7656, - [7949] = 7618, - [7950] = 7728, - [7951] = 7621, - [7952] = 7608, - [7953] = 7646, - [7954] = 7629, - [7955] = 7629, - [7956] = 7633, - [7957] = 7615, - [7958] = 7621, - [7959] = 7728, - [7960] = 7618, - [7961] = 7847, - [7962] = 445, - [7963] = 7615, - [7964] = 7964, - [7965] = 7615, - [7966] = 7618, - [7967] = 7633, - [7968] = 7728, - [7969] = 7621, - [7970] = 7652, - [7971] = 7971, - [7972] = 7621, - [7973] = 7632, - [7974] = 7628, - [7975] = 7629, - [7976] = 7633, - [7977] = 7728, - [7978] = 7618, - [7979] = 7629, - [7980] = 7648, - [7981] = 7621, + [7769] = 7548, + [7770] = 7550, + [7771] = 7550, + [7772] = 7553, + [7773] = 7560, + [7774] = 7554, + [7775] = 7548, + [7776] = 7637, + [7777] = 7640, + [7778] = 7569, + [7779] = 7779, + [7780] = 7588, + [7781] = 7705, + [7782] = 2622, + [7783] = 7548, + [7784] = 7784, + [7785] = 7705, + [7786] = 7570, + [7787] = 7625, + [7788] = 7548, + [7789] = 7637, + [7790] = 7640, + [7791] = 7569, + [7792] = 7784, + [7793] = 7632, + [7794] = 7548, + [7795] = 7548, + [7796] = 7570, + [7797] = 7564, + [7798] = 7588, + [7799] = 7640, + [7800] = 7548, + [7801] = 7637, + [7802] = 7640, + [7803] = 7566, + [7804] = 7804, + [7805] = 7553, + [7806] = 7554, + [7807] = 7612, + [7808] = 7548, + [7809] = 7809, + [7810] = 7645, + [7811] = 7811, + [7812] = 7549, + [7813] = 7569, + [7814] = 7637, + [7815] = 7640, + [7816] = 7548, + [7817] = 7565, + [7818] = 480, + [7819] = 7555, + [7820] = 7784, + [7821] = 7566, + [7822] = 7550, + [7823] = 7823, + [7824] = 7567, + [7825] = 7825, + [7826] = 7548, + [7827] = 7637, + [7828] = 7640, + [7829] = 7550, + [7830] = 7830, + [7831] = 7553, + [7832] = 7554, + [7833] = 7568, + [7834] = 7569, + [7835] = 7548, + [7836] = 7836, + [7837] = 7570, + [7838] = 7564, + [7839] = 7839, + [7840] = 7637, + [7841] = 7640, + [7842] = 7553, + [7843] = 7548, + [7844] = 7554, + [7845] = 7548, + [7846] = 7553, + [7847] = 7554, + [7848] = 7548, + [7849] = 7739, + [7850] = 7588, + [7851] = 7553, + [7852] = 7570, + [7853] = 7637, + [7854] = 7640, + [7855] = 7548, + [7856] = 7549, + [7857] = 7830, + [7858] = 7588, + [7859] = 7548, + [7860] = 7564, + [7861] = 7705, + [7862] = 7548, + [7863] = 7637, + [7864] = 7640, + [7865] = 7548, + [7866] = 7565, + [7867] = 7567, + [7868] = 7739, + [7869] = 7625, + [7870] = 7588, + [7871] = 7784, + [7872] = 7568, + [7873] = 7637, + [7874] = 7570, + [7875] = 7548, + [7876] = 7625, + [7877] = 7709, + [7878] = 7768, + [7879] = 7548, + [7880] = 7570, + [7881] = 7881, + [7882] = 7637, + [7883] = 7548, + [7884] = 7555, + [7885] = 7679, + [7886] = 7548, + [7887] = 7887, + [7888] = 7622, + [7889] = 7548, + [7890] = 7567, + [7891] = 7637, + [7892] = 7637, + [7893] = 7893, + [7894] = 7554, + [7895] = 7605, + [7896] = 7710, + [7897] = 7564, + [7898] = 7679, + [7899] = 7550, + [7900] = 7637, + [7901] = 7637, + [7902] = 7637, + [7903] = 7637, + [7904] = 7637, + [7905] = 7637, + [7906] = 7637, + [7907] = 7637, + [7908] = 7637, + [7909] = 7637, + [7910] = 7637, + [7911] = 7637, + [7912] = 7637, + [7913] = 7637, + [7914] = 7637, + [7915] = 7637, + [7916] = 7637, + [7917] = 7637, + [7918] = 7637, + [7919] = 7637, + [7920] = 7637, + [7921] = 7637, + [7922] = 7637, + [7923] = 7637, + [7924] = 7637, + [7925] = 7637, + [7926] = 7637, + [7927] = 7637, + [7928] = 7637, + [7929] = 7637, + [7930] = 7637, + [7931] = 7640, + [7932] = 7550, + [7933] = 7586, + [7934] = 7554, + [7935] = 7553, + [7936] = 7554, + [7937] = 7553, + [7938] = 7554, + [7939] = 7561, + [7940] = 7549, + [7941] = 7549, + [7942] = 7568, + [7943] = 7830, + [7944] = 7555, + [7945] = 7830, + [7946] = 7590, + [7947] = 7566, + [7948] = 7809, + [7949] = 7949, + [7950] = 7623, + [7951] = 7548, + [7952] = 7689, + [7953] = 7712, + [7954] = 7954, + [7955] = 7625, + [7956] = 7555, + [7957] = 7564, + [7958] = 7568, + [7959] = 7550, + [7960] = 7558, + [7961] = 513, + [7962] = 7669, + [7963] = 7963, + [7964] = 7739, + [7965] = 7553, + [7966] = 7586, + [7967] = 7709, + [7968] = 7548, + [7969] = 7564, + [7970] = 7970, + [7971] = 7954, + [7972] = 7645, + [7973] = 7565, + [7974] = 7566, + [7975] = 7975, + [7976] = 7567, + [7977] = 7977, + [7978] = 7548, + [7979] = 7567, + [7980] = 7568, + [7981] = 7981, [7982] = 7982, - [7983] = 7628, + [7983] = 7983, [7984] = 7984, - [7985] = 7608, - [7986] = 7728, - [7987] = 7629, - [7988] = 7701, - [7989] = 7628, - [7990] = 7677, - [7991] = 7621, - [7992] = 7622, - [7993] = 7728, - [7994] = 7728, - [7995] = 7728, - [7996] = 7728, - [7997] = 7728, - [7998] = 7728, - [7999] = 7728, - [8000] = 7728, - [8001] = 7728, - [8002] = 7728, - [8003] = 7728, - [8004] = 7728, - [8005] = 7728, - [8006] = 7728, - [8007] = 7728, - [8008] = 7728, - [8009] = 7728, - [8010] = 7728, - [8011] = 7728, - [8012] = 7728, - [8013] = 7728, - [8014] = 7728, - [8015] = 7728, - [8016] = 7728, - [8017] = 7728, - [8018] = 7728, - [8019] = 7728, - [8020] = 7728, - [8021] = 7728, - [8022] = 7728, - [8023] = 7628, - [8024] = 7971, - [8025] = 7646, - [8026] = 7608, - [8027] = 8027, - [8028] = 8028, - [8029] = 7984, - [8030] = 7642, - [8031] = 7628, - [8032] = 7614, - [8033] = 7656, - [8034] = 7984, - [8035] = 7649, - [8036] = 8036, - [8037] = 8037, - [8038] = 7615, - [8039] = 7629, - [8040] = 7618, - [8041] = 7648, - [8042] = 7649, - [8043] = 7621, - [8044] = 8044, - [8045] = 7623, - [8046] = 7971, - [8047] = 445, - [8048] = 7608, - [8049] = 7649, - [8050] = 7615, - [8051] = 7633, - [8052] = 7608, - [8053] = 7721, - [8054] = 7971, - [8055] = 8037, - [8056] = 7971, - [8057] = 7984, - [8058] = 7608, - [8059] = 7618, - [8060] = 7628, - [8061] = 7648, - [8062] = 7656, - [8063] = 7608, - [8064] = 7629, - [8065] = 7649, - [8066] = 7646, - [8067] = 7632, - [8068] = 7681, - [8069] = 8069, - [8070] = 2505, - [8071] = 7622, - [8072] = 7646, - [8073] = 7621, - [8074] = 7722, - [8075] = 7629, - [8076] = 7629, - [8077] = 7648, - [8078] = 7608, - [8079] = 8079, + [7985] = 2623, + [7986] = 7570, + [7987] = 7568, + [7988] = 7569, + [7989] = 7570, + [7990] = 7554, + [7991] = 7565, + [7992] = 7992, + [7993] = 7554, + [7994] = 7994, + [7995] = 7641, + [7996] = 7549, + [7997] = 7997, + [7998] = 7881, + [7999] = 7999, + [8000] = 8000, + [8001] = 7632, + [8002] = 7632, + [8003] = 7564, + [8004] = 7588, + [8005] = 7550, + [8006] = 8006, }; static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -13743,11524 +13565,10431 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(1055); + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2857, - '\r', 2, - '!', 2983, - '"', 3482, - '#', 4782, - '$', 3106, - '&', 2978, - '\'', 3499, - '(', 3212, - ')', 3359, - '*', 3180, - '+', 3513, - ',', 2911, - '-', 2954, - '.', 3276, - '/', 2984, - '0', 2990, - ':', 3511, - ';', 2862, - '<', 2940, - '=', 3652, - '>', 2942, - '?', 2947, - '@', 2943, - 'B', 3010, - 'E', 2979, - 'G', 2988, - 'I', 3009, - 'K', 2988, - 'M', 2988, - 'N', 3008, - 'P', 2988, - 'T', 2988, - '[', 3442, - '\\', 2982, - ']', 2908, - '^', 3595, - '_', 3096, - '`', 2992, - 'a', 3003, - 'b', 3005, - 'c', 2993, - 'd', 2994, - 'e', 2980, - 'f', 2995, - 'g', 2987, - 'h', 3002, - 'i', 2989, - 'k', 2987, - 'l', 2997, - 'm', 2985, - 'n', 2998, - 'o', 2981, - 'p', 2987, - 'r', 2999, - 's', 3000, - 't', 2986, - 'u', 3007, - 'v', 2996, - 'w', 3001, - 'x', 3004, - '{', 3091, - '|', 2863, - '}', 3092, - 0xb5, 3006, - '\t', 1, - ' ', 1, - 0x0b, 580, - '\f', 580, - 'A', 3010, - 'C', 3010, - 'D', 3010, - 'F', 3010, + '\n', 2260, + '\r', 16, + '"', 2782, + '#', 4071, + '$', 2426, + '\'', 2798, + '(', 2506, + ')', 2631, + '*', 1769, + '+', 1774, + ',', 2304, + '-', 1775, + '.', 2570, + '/', 1771, + '0', 1971, + ':', 2810, + ';', 2263, + '<', 1792, + '=', 839, + '>', 1795, + '?', 2328, + '@', 2325, + '[', 2752, + ']', 2301, + '^', 2819, + '_', 2418, + '`', 485, + '{', 2414, + '|', 2264, + '}', 2415, + '\t', 12, + ' ', 12, + '!', 3618, + '&', 3618, + 'I', 2024, + 'i', 2024, + 'N', 2018, + 'n', 2018, + 0x0b, 450, + '\f', 450, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2991); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3011); - if (lookahead != 0) ADVANCE(2644); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1972); + if (lookahead != 0) ADVANCE(2032); END_STATE(); case 1: ADVANCE_MAP( - '\n', 2857, - '\r', 2, - '!', 1138, - '"', 3482, - '#', 4782, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '*', 3179, - '+', 3512, - ',', 2911, - '-', 2955, - '.', 1130, - '/', 2298, - '0', 2354, - ':', 3511, - ';', 2862, - '<', 3205, - '=', 1074, - '>', 2942, - '?', 3181, - 'I', 2631, - 'N', 2627, - '[', 2907, - ']', 2908, - '^', 3595, - '_', 3097, - '`', 626, - 'a', 2482, - 'b', 2448, - 'c', 2376, - 'd', 2415, - 'e', 2307, - 'f', 2363, - 'h', 2450, - 'i', 2349, - 'l', 2423, - 'm', 2374, - 'n', 2416, - 'o', 2306, - 'r', 2434, - 's', 2511, - 't', 2530, - 'u', 2565, - 'v', 2371, - 'w', 2445, - 'x', 2502, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 1, - ' ', 1, - '&', 1331, - '@', 1331, - 0x0b, 580, - '\f', 580, + '\n', 2260, + '\r', 16, + '!', 1272, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '*', 2474, + '+', 2522, + ',', 2304, + '-', 2346, + '.', 2555, + '/', 2513, + '0', 2664, + ':', 2810, + ';', 2263, + '<', 2495, + '=', 840, + '>', 2323, + '?', 2476, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1406, + 'b', 1384, + 'c', 1306, + 'd', 1333, + 'e', 865, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1302, + 'n', 1444, + 'o', 866, + 'r', 1334, + 's', 1432, + 't', 1451, + 'u', 1486, + 'w', 1379, + 'x', 1438, + '|', 2264, + '}', 2415, + '\t', 3, + ' ', 3, + 0x0b, 450, + '\f', 450, ); - if (('A' <= lookahead && lookahead <= 'F')) ADVANCE(2639); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2359); - if (lookahead != 0) ADVANCE(2644); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\'' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(2857); - if (lookahead == ':') ADVANCE(3511); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(580); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 1272, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '*', 2474, + '+', 2522, + ',', 2304, + '-', 2346, + '.', 2555, + '/', 2513, + '0', 2664, + ':', 2810, + ';', 2263, + '<', 2495, + '=', 840, + '>', 2323, + 'I', 1546, + 'N', 1539, + '[', 2752, + '_', 1291, + '`', 485, + 'a', 1406, + 'b', 1384, + 'c', 1306, + 'd', 1333, + 'e', 865, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1302, + 'n', 1444, + 'o', 866, + 'r', 1334, + 's', 1432, + 't', 1451, + 'u', 1486, + 'w', 1379, + 'x', 1438, + '{', 2414, + '|', 2264, + '}', 2415, + '\t', 4, + ' ', 4, + 0x0b, 450, + '\f', 450, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1560); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(3247); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 1272, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '*', 2474, + '+', 2522, + ',', 2304, + '-', 2346, + '.', 1030, + '/', 2513, + '0', 2664, + ':', 2810, + ';', 2263, + '<', 2495, + '=', 840, + '>', 2323, + '?', 2476, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1406, + 'b', 1384, + 'c', 1306, + 'd', 1333, + 'e', 865, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1302, + 'n', 1444, + 'o', 866, + 'r', 1334, + 's', 1432, + 't', 1451, + 'u', 1486, + 'w', 1379, + 'x', 1438, + '|', 2264, + '}', 2415, + '\t', 3, + ' ', 3, + 0x0b, 450, + '\f', 450, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\'' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(3244); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 1272, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '*', 2474, + '+', 2522, + ',', 2304, + '-', 2346, + '.', 1030, + '/', 2513, + '0', 2664, + ':', 2810, + ';', 2263, + '<', 2495, + '=', 840, + '>', 2323, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1406, + 'b', 1384, + 'c', 1306, + 'd', 1333, + 'e', 865, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1302, + 'n', 1444, + 'o', 866, + 'r', 1334, + 's', 1432, + 't', 1451, + 'u', 1486, + 'w', 1379, + 'x', 1438, + '{', 2414, + '|', 2264, + '}', 2415, + '\t', 4, + ' ', 4, + 0x0b, 450, + '\f', 450, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1560); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(3264); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 1272, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '*', 2474, + '+', 2522, + ',', 2304, + '-', 2346, + '.', 1030, + '/', 2513, + '0', 2664, + ':', 2810, + ';', 2263, + '<', 2495, + '=', 840, + '>', 2323, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1406, + 'b', 1384, + 'c', 1306, + 'd', 1333, + 'e', 865, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1302, + 'n', 1444, + 'o', 866, + 'r', 1334, + 's', 1432, + 't', 1451, + 'u', 1486, + 'w', 1379, + 'x', 1438, + '|', 2264, + '}', 2415, + '\t', 5, + ' ', 5, + 0x0b, 450, + '\f', 450, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(3252); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 1272, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '*', 2474, + '+', 2522, + ',', 2304, + '-', 2346, + '.', 1029, + '/', 2513, + '0', 2664, + ':', 2810, + ';', 2263, + '<', 2495, + '=', 840, + '>', 2323, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1406, + 'b', 1384, + 'c', 1306, + 'd', 1333, + 'e', 865, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1302, + 'n', 1444, + 'o', 866, + 'r', 1334, + 's', 1432, + 't', 1451, + 'u', 1486, + 'w', 1379, + 'x', 1438, + '|', 2264, + '}', 2415, + '\t', 5, + ' ', 5, + 0x0b, 450, + '\f', 450, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\'' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(3241); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 454, + '#', 4069, + '$', 2305, + '(', 2302, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 2559, + '/', 2512, + ':', 2810, + ';', 2263, + '<', 2495, + '=', 455, + '>', 2323, + '?', 2476, + 'a', 554, + 'b', 536, + 'e', 419, + 'f', 488, + 'i', 524, + 'm', 570, + 'n', 575, + 'o', 412, + 's', 607, + 't', 590, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, + '\t', 8, + ' ', 8, + 0x0b, 450, + '\f', 450, + ); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(3246); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 454, + '#', 4069, + '$', 2305, + '(', 2302, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ':', 2810, + ';', 2263, + '<', 2495, + '=', 455, + '>', 2323, + '?', 2476, + 'a', 554, + 'b', 536, + 'e', 419, + 'f', 488, + 'i', 524, + 'm', 570, + 'n', 575, + 'o', 412, + 's', 607, + 't', 590, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, + '\t', 8, + ' ', 8, + 0x0b, 450, + '\f', 450, + ); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(3263); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 454, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ':', 2810, + ';', 2263, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 419, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '|', 2264, + '}', 2415, + '\t', 9, + ' ', 9, + 0x0b, 450, + '\f', 450, + ); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(3251); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 454, + '#', 4069, + '*', 2474, + '+', 2523, + '-', 2356, + '.', 2559, + '/', 2513, + ':', 2810, + ';', 2263, + '<', 2495, + '=', 840, + '>', 2323, + '?', 2476, + 'a', 554, + 'b', 536, + 'e', 419, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '|', 2264, + '}', 2415, + '\t', 11, + ' ', 11, + 0x0b, 450, + '\f', 450, + ); END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(3259); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 454, + '#', 4069, + '*', 2474, + '+', 2523, + '-', 2356, + '/', 2513, + ':', 2810, + ';', 2263, + '<', 2495, + '=', 840, + '>', 2323, + '?', 2476, + 'a', 554, + 'b', 536, + 'e', 419, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '|', 2264, + '}', 2415, + '\t', 11, + ' ', 11, + 0x0b, 450, + '\f', 450, + ); END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(3258); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '"', 2782, + '#', 4071, + '$', 2305, + '\'', 411, + '(', 2302, + ')', 2303, + '*', 2473, + '+', 2521, + ',', 2304, + '-', 2333, + '.', 3522, + '/', 2515, + '0', 1971, + ':', 2810, + ';', 2263, + '<', 2494, + '=', 839, + '>', 2322, + '?', 2476, + '[', 2300, + ']', 2301, + '^', 2819, + '_', 2418, + '`', 485, + '{', 2414, + '|', 2264, + '}', 2415, + '\t', 12, + ' ', 12, + 'I', 2024, + 'i', 2024, + 'N', 2018, + 'n', 2018, + 0x0b, 450, + '\f', 450, + '!', 3525, + '&', 3525, + '@', 3525, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1972); + if (lookahead != 0) ADVANCE(2032); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(3256); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 442, + '-', 2348, + '.', 443, + '0', 2660, + ':', 2810, + ';', 2263, + '>', 2322, + '?', 2476, + 'I', 667, + 'N', 654, + '[', 2300, + '_', 474, + '`', 485, + 'a', 546, + 'c', 571, + 'd', 509, + 'e', 424, + 'f', 488, + 'i', 525, + 'm', 486, + 'n', 574, + 'o', 426, + 't', 588, + 'u', 601, + '{', 2414, + '|', 2264, + '}', 2415, + '\t', 13, + ' ', 13, + 0x0b, 450, + '\f', 450, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(3245); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 442, + '-', 2348, + '.', 2550, + '0', 2660, + ':', 2810, + ';', 2263, + '=', 2876, + '>', 2322, + '?', 2476, + '@', 2325, + 'I', 667, + 'N', 654, + '[', 2300, + '_', 474, + '`', 485, + 'a', 546, + 'c', 571, + 'd', 509, + 'e', 424, + 'f', 488, + 'i', 525, + 'm', 486, + 'n', 574, + 'o', 426, + 't', 588, + 'u', 601, + '{', 2414, + '|', 2264, + '}', 2415, + '\t', 13, + ' ', 13, + 0x0b, 450, + '\f', 450, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(3257); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '#', 4069, + ':', 2810, + ';', 2263, + 'e', 423, + 'o', 426, + '|', 2264, + '}', 2415, + '\t', 2261, + ' ', 2261, + 0x0b, 450, + '\f', 450, + ); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(3255); + if (lookahead == '\n') ADVANCE(2260); + if (lookahead == ':') ADVANCE(2810); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(450); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(3260); + if (lookahead == '\n') ADVANCE(2259); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(3253); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '(', 2506, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 2559, + '/', 2512, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3097, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3168, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '{', 2414, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(3249); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '(', 2506, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 3079, + '/', 2512, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3097, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3168, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '{', 2414, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 20: - if (lookahead == '\n') ADVANCE(3250); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '(', 2506, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 3079, + '/', 2512, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3097, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3168, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '{', 2414, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(3254); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '(', 2506, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 3079, + '/', 2512, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3100, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3168, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '{', 2414, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(3262); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + '<', 2495, + '=', 3087, + '>', 2323, + 'a', 3154, + 'b', 3142, + 'e', 3155, + 'i', 3153, + 'm', 3159, + 'n', 3161, + 'o', 3168, + 's', 3191, + 'x', 3163, + '{', 2414, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(3261); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3284, + '#', 4075, + '(', 2506, + '*', 2475, + '+', 2524, + '-', 2357, + '/', 2514, + '<', 2496, + '=', 3286, + '>', 2324, + 'a', 3373, + 'b', 3356, + 'e', 3378, + 'i', 3374, + 'm', 3386, + 'n', 3389, + 'o', 3399, + 's', 3429, + 'x', 3388, + '{', 2414, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(2856); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + '(', 2506, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2334, + '.', 2559, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 455, + '>', 2323, + '?', 2476, + 'B', 2731, + 'E', 468, + 'G', 470, + 'K', 470, + 'M', 470, + 'P', 470, + 'T', 470, + '[', 2752, + '_', 478, + 'a', 555, + 'b', 2733, + 'd', 487, + 'e', 413, + 'g', 469, + 'h', 586, + 'i', 524, + 'k', 469, + 'm', 471, + 'n', 569, + 'o', 412, + 'p', 469, + 's', 515, + 't', 469, + 'u', 598, + 'w', 542, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 598, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); END_STATE(); case 25: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '!', 591, - '#', 4780, - ')', 2910, - '*', 521, - '+', 529, - '-', 587, - '/', 576, - ';', 2862, - '<', 594, - '=', 1075, - '>', 597, - '?', 3181, - 'a', 731, - 'b', 707, - 'e', 539, - 'i', 733, - 'm', 756, - 'n', 752, - 'o', 545, - 's', 834, - 'x', 751, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 25, - ' ', 25, + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 419, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '|', 2264, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '!', 591, - '#', 4780, - ')', 2910, - '*', 522, - '+', 542, - '-', 2962, - '/', 577, - ';', 2862, - '<', 594, - '=', 595, - '>', 597, - '?', 3181, - 'a', 731, - 'b', 707, - 'e', 539, - 'i', 680, - 'm', 756, - 'n', 752, - 'o', 545, - 's', 834, - 'x', 751, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 26, - ' ', 26, + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 422, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 425, + 's', 607, + 'x', 565, + '|', 2264, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '!', 591, - '#', 4780, - ')', 2910, - '*', 522, - '+', 542, - '-', 865, - '/', 577, - ';', 2862, - '<', 594, - '=', 596, - '>', 597, - 'a', 731, - 'b', 707, - 'e', 539, - 'i', 733, - 'm', 756, - 'n', 752, - 'o', 545, - 's', 834, - 'x', 751, - '|', 2863, - '}', 3092, - '\t', 27, - ' ', 27, + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2334, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 455, + '>', 2323, + '?', 2476, + 'a', 555, + 'b', 536, + 'e', 419, + 'i', 524, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '!', 591, - '#', 4780, - ')', 2910, - '*', 522, - '+', 542, - '-', 865, - '/', 577, - ';', 2862, - '<', 594, - '=', 596, - '>', 597, - 'a', 731, - 'b', 707, - 'e', 532, - 'i', 733, - 'm', 756, - 'n', 752, - 'o', 525, - 's', 834, - 'x', 751, - '|', 2863, - '}', 3092, - '\t', 28, - ' ', 28, + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 419, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '|', 2264, + '}', 2415, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 1337, - '-', 2970, - '.', 1338, - '0', 3369, - ';', 2862, - '=', 3652, - 'I', 1569, - 'N', 1566, - '[', 2907, - '^', 3595, - '_', 1359, - '`', 626, - '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, - '{', 3091, - '}', 3092, + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 422, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 425, + 's', 607, + 'x', 565, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); + lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 1337, - '-', 2970, - '.', 1338, - '0', 3369, - ';', 2862, - 'I', 1569, - 'N', 1566, - '[', 2907, - '^', 3595, - '_', 1359, - '`', 626, - '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, - '{', 3091, - '}', 3092, + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 419, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '|', 2264, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); case 31: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 1337, - '-', 2970, - '.', 1338, - '0', 3369, - '=', 3652, - 'I', 1569, - 'N', 1566, - '[', 2907, - '^', 3595, - '_', 1359, - '`', 626, - '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, - '{', 3091, - '\t', 2861, - ' ', 2861, - '!', 1875, - '&', 1875, - '*', 1875, - ',', 1875, - '?', 1875, - '@', 1875, + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 422, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 425, + 's', 607, + 'x', 565, + '|', 2264, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); END_STATE(); case 32: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 1337, - '-', 2970, - '.', 1338, - '0', 3369, - 'I', 1569, - 'N', 1566, - '[', 2907, - '^', 3595, - '_', 1359, - '`', 626, - '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, - '{', 3091, - '|', 2863, + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 559, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 582, + 's', 607, + 'x', 565, + '{', 2414, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); case 33: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 1337, - '-', 2970, - '.', 1338, - '0', 3369, - 'I', 1861, - 'N', 1856, - '[', 2907, - '^', 3595, - '_', 1596, - '`', 626, - '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, - '{', 3091, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 2569, + ':', 2297, + ';', 2263, + '<', 1792, + '=', 839, + '>', 2322, + '?', 2476, + '@', 2325, + '[', 2300, + ']', 2301, + '`', 485, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(33); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); + lookahead == ' ') SKIP(34); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + lookahead != ']' && + lookahead != '^') ADVANCE(2032); END_STATE(); case 34: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 3755, - '-', 2970, - '.', 3752, - '0', 3370, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3735, - 'f', 3782, - 'n', 3794, - 'o', 3736, - 't', 3797, - '{', 3091, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 445, + ':', 2297, + ';', 2263, + '=', 839, + '>', 2322, + '?', 2476, + '[', 2300, + ']', 2301, + '`', 485, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); + lookahead != '^') ADVANCE(2032); END_STATE(); case 35: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 3755, - '-', 2956, - '.', 3752, - '0', 3370, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3735, - 'f', 3782, - 'n', 3810, - 'o', 3736, - 't', 3797, - '{', 3091, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 1030, + '0', 2664, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || lookahead == ' ') SKIP(35); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); case 36: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 4226, - '0', 3371, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2966, + '-', 439, + '.', 2962, + '0', 2658, + 'N', 3024, + '[', 2300, + '_', 2419, + '`', 485, + 'e', 2957, + 'f', 2992, + 'n', 3020, + 'o', 2958, + 't', 3007, + '{', 2414, + '}', 2415, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); END_STATE(); case 37: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 4221, - '0', 3371, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 873, + '0', 2665, + 'I', 1003, + 'N', 1000, + '[', 2752, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 952, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(37); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == ' ') SKIP(35); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); case 38: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 3300, - ':', 2904, - ';', 2862, - '<', 2939, - '=', 1073, - '>', 2941, - '?', 3181, - '@', 2943, - '[', 2907, - ']', 2908, - '`', 626, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 1025, + '-', 2347, + '.', 1026, + '0', 2657, + ';', 2263, + '=', 2876, + 'I', 1244, + 'N', 1241, + '[', 2300, + '^', 2819, + '_', 1042, + '`', 485, + 'a', 1136, + 'b', 1178, + 'c', 1043, + 'd', 1069, + 'e', 1144, + 'f', 1046, + 'h', 1120, + 'i', 1040, + 'l', 1082, + 'm', 1048, + 'n', 1162, + 'o', 1237, + 'r', 1070, + 's', 1158, + 't', 1173, + 'u', 1200, + 'w', 1113, + '{', 2414, + '}', 2415, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - lookahead != ']' && - lookahead != '^') ADVANCE(2644); + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); END_STATE(); case 39: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 574, - ':', 2904, - ';', 2862, - '=', 1073, - '>', 2941, - '?', 3181, - '[', 2907, - ']', 2908, - '`', 626, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 1025, + '-', 2347, + '.', 1026, + '0', 2657, + ';', 2263, + 'I', 1244, + 'N', 1241, + '[', 2300, + '^', 2819, + '_', 1042, + '`', 485, + 'a', 1136, + 'b', 1178, + 'c', 1043, + 'd', 1069, + 'e', 1144, + 'f', 1046, + 'h', 1120, + 'i', 1040, + 'l', 1082, + 'm', 1048, + 'n', 1162, + 'o', 1237, + 'r', 1070, + 's', 1158, + 't', 1173, + 'u', 1200, + 'w', 1113, + '{', 2414, + '}', 2415, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^') ADVANCE(2644); + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); END_STATE(); case 40: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 1340, - '0', 3376, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 1025, + '-', 2347, + '.', 1026, + '0', 2657, + '=', 2876, + 'I', 1244, + 'N', 1241, + '[', 2300, + '^', 2819, + '_', 1042, + '`', 485, + 'a', 1146, + 'b', 1194, + 'c', 1045, + 'd', 1084, + 'e', 1145, + 'f', 1047, + 'h', 1124, + 'i', 1041, + 'l', 1092, + 'm', 1058, + 'n', 1162, + 'o', 1238, + 'r', 1106, + 's', 1168, + 't', 1179, + 'u', 1209, + 'w', 1116, + '{', 2414, + '\t', 2262, + ' ', 2262, + '!', 1560, + '&', 1560, + '*', 1560, + ',', 1560, + '?', 1560, + '@', 1560, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); END_STATE(); case 41: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3755, - '-', 566, - '.', 3752, - '0', 3370, - 'N', 3814, - '[', 2907, - '_', 3095, - '`', 626, - 'e', 3735, - 'f', 3782, - 'n', 3810, - 'o', 3736, - 't', 3797, - '{', 3091, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 1025, + '-', 2347, + '.', 1026, + '0', 2657, + 'I', 1546, + 'N', 1539, + '[', 2300, + '^', 2819, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1316, + 'h', 1395, + 'i', 1285, + 'l', 1368, + 'm', 1314, + 'n', 1441, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1460, + 'u', 1492, + 'w', 1383, + '{', 2414, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); case 42: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 1132, - '0', 3377, - 'I', 1318, - 'N', 1313, - '[', 3442, - '_', 1151, - '`', 626, - '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, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 1025, + '-', 429, + '.', 1288, + '=', 2876, + 'I', 1548, + 'N', 1540, + '[', 2752, + ']', 2301, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); case 43: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '\'', 519, - '+', 1337, - '-', 550, - '.', 1593, - 'I', 1861, - 'N', 1856, - ']', 2908, - '_', 1596, - '`', 626, - '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, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 1025, + '-', 429, + '.', 1288, + 'I', 1548, + 'N', 1540, + ']', 2301, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, ); if (lookahead == '\t' || lookahead == ' ') SKIP(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); case 44: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '\'', 519, - '+', 1337, - '-', 3865, - '.', 1593, - 'I', 1861, - 'N', 1856, - ']', 2908, - '_', 1596, - '`', 626, - '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, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 2966, + '-', 2335, + '.', 2962, + '0', 2658, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2957, + 'f', 2992, + 'n', 3020, + 'o', 2958, + 't', 3007, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(43); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(44); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); END_STATE(); case 45: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - '+', 4322, - ',', 2911, - '-', 2960, - '.', 4318, - ':', 2904, - '=', 1073, - ']', 2908, - '_', 2353, - '|', 2863, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 2966, + '-', 2348, + '.', 2962, + '0', 2658, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2957, + 'f', 2992, + 'n', 3004, + 'o', 2958, + 't', 3007, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(45); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); END_STATE(); case 46: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - '+', 4322, - ',', 2911, - '-', 2960, - '.', 3296, - ':', 2904, - '=', 1073, - ']', 2908, - '_', 2353, - '|', 2863, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 3518, + '0', 2659, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(46); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); case 47: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 3300, - ':', 2904, - '=', 1073, - 'E', 2304, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - ']', 2908, - 'd', 2366, - 'e', 2303, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - '|', 2863, - 0xb5, 2559, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 3513, + '0', 2659, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(47); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); case 48: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 3300, - ':', 2904, - '=', 1073, - ']', 2908, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + '+', 3610, + ',', 2304, + '-', 2339, + '.', 3606, + ':', 2297, + '=', 839, + ']', 2301, + '_', 1973, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2305); + lookahead == ' ') SKIP(65); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || - lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 49: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 4323, - ':', 2904, - '=', 1073, - 'E', 2304, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - ']', 2908, - '_', 2353, - 'd', 2366, - 'e', 2303, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - '|', 2863, - 0xb5, 2559, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + '+', 3610, + ',', 2304, + '-', 2339, + '.', 2566, + ':', 2297, + '=', 839, + ']', 2301, + '_', 1973, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); + lookahead == ' ') SKIP(65); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || - lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 50: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 4323, - ':', 2904, - '=', 1073, - 'E', 2304, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - ']', 2908, - 'd', 2366, - 'e', 2303, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - '|', 2863, - 0xb5, 2559, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 2569, + ':', 2297, + '=', 839, + 'E', 1961, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + ']', 2301, + 'd', 1975, + 'e', 1960, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + '|', 2264, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); + lookahead == ' ') SKIP(69); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3703); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 51: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 4323, - ':', 2904, - '=', 1073, - 'E', 2347, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - ']', 2908, - 'd', 2366, - 'e', 2346, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - '|', 2863, - 0xb5, 2559, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 2569, + ':', 2297, + '=', 839, + ']', 2301, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); + lookahead == ' ') SKIP(69); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1962); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3703); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 52: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 4323, - ':', 2904, - '=', 1073, - '[', 3442, - ']', 2908, - '{', 3091, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 3611, + ':', 2297, + '=', 839, + 'E', 1961, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + ']', 2301, + '_', 1973, + 'd', 1975, + 'e', 1960, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + '|', 2264, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(66); + lookahead == ' ') SKIP(69); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2644); + lookahead == '^') ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 53: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 4323, - ':', 2904, - '=', 1073, - ']', 2908, - '_', 2353, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 3611, + ':', 2297, + '=', 839, + 'E', 1961, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + ']', 2301, + 'd', 1975, + 'e', 1960, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + '|', 2264, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2305); + lookahead == ' ') SKIP(69); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3703); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 54: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 4323, - ':', 2904, - '=', 1073, - ']', 2908, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 3611, + ':', 2297, + '=', 839, + 'E', 1969, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + ']', 2301, + 'd', 1975, + 'e', 1968, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + '|', 2264, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2305); + lookahead == ' ') SKIP(69); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3703); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 55: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 4319, - ':', 2904, - '=', 1073, - ']', 2908, - '_', 2353, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 3611, + ':', 2297, + '=', 839, + '[', 2752, + ']', 2301, + '{', 2414, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2305); + lookahead == ' ') SKIP(68); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3703); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2032); END_STATE(); case 56: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 4319, - ':', 2904, - '=', 1073, - ']', 2908, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 3611, + ':', 2297, + '=', 839, + ']', 2301, + '_', 1973, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); + lookahead == ' ') SKIP(69); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2305); + lookahead == 'e') ADVANCE(1962); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 57: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 4319, - ':', 2904, - '=', 1073, - ']', 2908, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 3611, + ':', 2297, + '=', 839, + ']', 2301, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); + lookahead == ' ') SKIP(69); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1962); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3703); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 58: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 3295, - ':', 2904, - '=', 1073, - ']', 2908, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 3607, + ':', 2297, + '=', 839, + ']', 2301, + '_', 1973, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); + lookahead == ' ') SKIP(69); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2305); + lookahead == 'e') ADVANCE(1962); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4411); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 59: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 2909, - ')', 2910, - '-', 2953, - '.', 3275, - ':', 2904, - ';', 2862, - '=', 1073, - '>', 2941, - '?', 3181, - '[', 2907, - '{', 3091, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 3607, + ':', 2297, + '=', 839, + ']', 2301, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(60); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(69); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1962); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(3703); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 60: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 2909, - ')', 2910, - '-', 2953, - ':', 2904, - ';', 2862, - '=', 1073, - '>', 2941, - '?', 3181, - '[', 2907, - '{', 3091, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 3607, + ':', 2297, + '=', 839, + ']', 2301, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(60); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(69); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(3703); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 61: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 2909, - '+', 568, - '-', 2970, - '.', 616, - '0', 2355, - 'N', 2627, - '_', 2358, - 'f', 2369, - 'n', 2504, - 't', 2557, - '{', 3091, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 2565, + ':', 2297, + '=', 839, + ']', 2301, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(61); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2631); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2358); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(69); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1962); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(3703); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); case 62: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - '+', 573, - ',', 2911, - '-', 2958, - '.', 575, - ':', 2904, - '=', 1073, - ']', 2908, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2302, + ')', 2303, + '-', 2334, + '.', 2545, + ':', 2297, + ';', 2263, + '=', 839, + '>', 2322, + '?', 2476, + '[', 2300, + '{', 2414, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(62); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(63); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); case 63: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 3298, - ':', 2904, - '=', 1073, - '?', 3181, - ']', 2908, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2302, + ')', 2303, + '-', 2334, + ':', 2297, + ';', 2263, + '=', 839, + '>', 2322, + '?', 2476, + '[', 2300, + '{', 2414, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(65); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(63); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); case 64: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 574, - ':', 2904, - '=', 1073, - '?', 2947, - ']', 2908, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2302, + '+', 442, + '-', 2348, + '.', 475, + '0', 1971, + ':', 2297, + '=', 839, + 'N', 2018, + '_', 1972, + 'f', 1977, + 'n', 1999, + 't', 2008, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(64); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2024); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1972); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); case 65: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 574, - ':', 2904, - '=', 1073, - '?', 3181, - ']', 2908, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + '+', 447, + ',', 2304, + '-', 2337, + '.', 446, + ':', 2297, + '=', 839, + ']', 2301, + '|', 2264, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); case 66: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 574, - ':', 2904, - '=', 1073, - ']', 2908, - '{', 3091, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 445, + ':', 2297, + '=', 839, + '?', 2328, + ']', 2301, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(66); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(69); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); case 67: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - ',', 2911, - '-', 2953, - '.', 574, - ':', 2904, - '=', 1073, - ']', 2908, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 445, + ':', 2297, + '=', 839, + '?', 2476, + ']', 2301, + '|', 2264, ); if (lookahead == '\t' || lookahead == ' ') SKIP(67); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); case 68: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - '-', 2953, - '.', 3275, - ':', 2904, - ';', 2862, - '=', 1073, - '[', 2907, - 'a', 2484, - 'c', 2372, - 'e', 2310, - 'f', 2619, - 'i', 2483, - 'l', 2452, - 'o', 2311, - 'v', 2373, - 'x', 2500, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 445, + ':', 2297, + '=', 839, + ']', 2301, + '{', 2414, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - lookahead != 'a') ADVANCE(2644); + lookahead == ' ') SKIP(68); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); case 69: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - '-', 2953, - '.', 570, - ':', 2904, - ';', 2862, - '=', 1073, - 'a', 730, - 'e', 541, - 'i', 727, - 'o', 543, - 'x', 750, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 445, + ':', 2297, + '=', 839, + ']', 2301, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); + lookahead == ' ') SKIP(69); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); case 70: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - '-', 2953, - ':', 2904, - ';', 2862, - '=', 1073, - '[', 2907, - 'a', 2484, - 'c', 2372, - 'e', 2310, - 'f', 2619, - 'i', 2483, - 'l', 2452, - 'o', 2311, - 'v', 2373, - 'x', 2500, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + ',', 2304, + '-', 2334, + '.', 2567, + ':', 2297, + '=', 839, + '?', 2476, + ']', 2301, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - lookahead != 'a') ADVANCE(2644); + lookahead == ' ') SKIP(67); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); case 71: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - '-', 2953, - ':', 2904, - ';', 2862, - '=', 1073, - 'a', 730, - 'e', 541, - 'i', 727, - 'o', 543, - 'x', 750, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + '-', 2334, + '.', 2545, + ':', 2297, + ';', 2263, + '=', 839, + '>', 2322, + '@', 2325, + '[', 2300, + ']', 2301, + 'c', 1981, + 'e', 2007, + 'f', 2016, + 'i', 1995, + 'o', 1998, + 'v', 1976, + '{', 2414, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); + lookahead == ' ') SKIP(72); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); case 72: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - '-', 2953, - ';', 2862, - '=', 604, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + '-', 2334, + ':', 2297, + ';', 2263, + '=', 839, + '>', 2322, + '[', 2300, + ']', 2301, + 'c', 1981, + 'e', 2007, + 'f', 2016, + 'i', 1995, + 'o', 1998, + 'v', 1976, + '{', 2414, + '}', 2415, ); if (lookahead == '\t' || lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); case 73: - if (lookahead == '\n') ADVANCE(2856); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(3289); - if (lookahead == '{') ADVANCE(3091); + if (lookahead == '\n') ADVANCE(2259); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(2559); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(85); + lookahead == ' ') SKIP(83); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 74: - if (lookahead == '\n') ADVANCE(2856); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(3870); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == '{') ADVANCE(3091); + if (lookahead == '\n') ADVANCE(2259); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(3079); + if (lookahead == '_') ADVANCE(3106); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(85); + lookahead == ' ') SKIP(83); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(2856); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(3870); - if (lookahead == '{') ADVANCE(3091); + if (lookahead == '\n') ADVANCE(2259); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(3079); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(85); + lookahead == ' ') SKIP(83); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(2856); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(3870); - if (lookahead == '{') ADVANCE(3091); + if (lookahead == '\n') ADVANCE(2259); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(3079); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(85); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(83); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 77: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '-', 605, - ':', 2904, - ';', 2862, - '<', 2939, - '=', 1073, - '>', 2941, - '@', 2943, - '[', 2907, - ']', 2908, - 'c', 2435, - 'e', 2552, - 'f', 2619, - 'i', 2483, - 'l', 2452, - 'o', 2493, - 'v', 2373, - '{', 3091, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '.', 2559, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + 0xb5, 3182, + '\t', 2262, + ' ', 2262, + 'B', 2731, + 'b', 2731, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(78); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 78: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '-', 605, - ':', 2904, - ';', 2862, - '=', 1073, - '>', 2941, - '[', 2907, - ']', 2908, - 'c', 2435, - 'e', 2552, - 'f', 2619, - 'i', 2483, - 'l', 2452, - 'o', 2493, - 'v', 2373, - '{', 3091, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '.', 3079, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + 0xb5, 3182, + '\t', 2262, + ' ', 2262, + 'B', 2731, + 'b', 2731, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(78); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 79: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '.', 3289, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - 0xb5, 3942, - '\t', 2861, - ' ', 2861, - 'B', 3420, - 'b', 3420, + '\n', 2259, + '\r', 17, + '#', 4069, + '.', 3079, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + 0xb5, 3182, + '\t', 2262, + ' ', 2262, + 'B', 2731, + 'b', 2731, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 80: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '.', 3870, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - 0xb5, 3942, - '\t', 2861, - ' ', 2861, - 'B', 3420, - 'b', 3420, + '\n', 2259, + '\r', 17, + '#', 4069, + '.', 3079, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3102, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + 0xb5, 3182, + '\t', 2262, + ' ', 2262, + 'B', 2731, + 'b', 2731, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 81: - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '.', 3870, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - 0xb5, 3942, - '\t', 2861, - ' ', 2861, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '\n') ADVANCE(2259); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(2876); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2262); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); END_STATE(); case 82: - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '.', 3870, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3888, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - 0xb5, 3942, - '\t', 2861, - ' ', 2861, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '\n') ADVANCE(2259); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(2876); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2262); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(2856); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(3652); + if (lookahead == '\n') ADVANCE(2259); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2861); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); + lookahead == ' ') SKIP(83); END_STATE(); case 84: - if (lookahead == '\n') ADVANCE(2856); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(3652); + if (lookahead == '\n') ADVANCE(2259); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '#') ADVANCE(4069); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2861); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == ' ') ADVANCE(2262); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 85: - if (lookahead == '\n') ADVANCE(2856); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '{') ADVANCE(3091); + if (lookahead == '\n') ADVANCE(2259); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '#') ADVANCE(4075); + if (lookahead == '(') ADVANCE(2506); if (lookahead == '\t' || - lookahead == ' ') SKIP(85); + lookahead == ' ') ADVANCE(2262); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(2856); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2861); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 87: - if (lookahead == '\n') ADVANCE(2856); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4787); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2861); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); - END_STATE(); - case 88: ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4786, - '$', 2917, - '(', 3212, - ')', 2910, - ',', 2911, - '-', 2967, - '.', 4431, - ':', 2905, - '=', 1077, - ']', 2908, - '|', 2863, + '\n', 2259, + '\r', 17, + '#', 4074, + '$', 2310, + '(', 2506, + ')', 2303, + ',', 2304, + '-', 2345, + '.', 3723, + ':', 2298, + '=', 841, + ']', 2301, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); + lookahead == ' ') SKIP(69); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4499); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4483); - END_STATE(); - case 89: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '!', 1576, - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '*', 1114, - '+', 3514, - ',', 2911, - '-', 2968, - '.', 1340, - '/', 1346, - '0', 3376, - ':', 3511, - ';', 2862, - '<', 594, - '=', 1075, - '>', 597, - '?', 3181, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '|', 2863, - '}', 3092, - '\t', 89, - ' ', 89, - 0x0b, 580, - '\f', 580, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if (lookahead != 0 && - (lookahead < '\'' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); - END_STATE(); - case 90: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '!', 1576, - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '*', 1114, - '+', 3514, - ',', 2911, - '-', 2968, - '.', 1340, - '/', 1346, - '0', 3376, - ':', 3511, - ';', 2862, - '<', 594, - '=', 1075, - '>', 597, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 90, - ' ', 90, - 0x0b, 580, - '\f', 580, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1875); - END_STATE(); - case 91: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '!', 1576, - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '*', 1114, - '+', 3514, - ',', 2911, - '-', 2968, - '.', 1340, - '/', 1346, - '0', 3376, - ':', 3511, - ';', 2862, - '<', 594, - '=', 1075, - '>', 597, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '|', 2863, - '}', 3092, - '\t', 91, - ' ', 91, - 0x0b, 580, - '\f', 580, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); - END_STATE(); - case 92: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '!', 591, - '#', 4780, - '*', 521, - '+', 529, - '-', 587, - '/', 576, - ':', 3511, - ';', 2862, - '<', 594, - '=', 1075, - '>', 597, - '?', 3181, - 'a', 731, - 'b', 707, - 'e', 539, - 'i', 733, - 'm', 756, - 'n', 752, - 'o', 545, - 's', 834, - 'x', 751, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 92, - ' ', 92, - 0x0b, 580, - '\f', 580, - ); - END_STATE(); - case 93: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '!', 591, - '#', 4780, - '*', 522, - '+', 542, - '-', 2962, - '/', 577, - ':', 3511, - ';', 2862, - '<', 594, - '=', 595, - '>', 597, - '?', 3181, - 'a', 731, - 'b', 707, - 'e', 539, - 'i', 680, - 'm', 756, - 'n', 752, - 'o', 545, - 's', 834, - 'x', 751, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 93, - ' ', 93, - 0x0b, 580, - '\f', 580, - ); - END_STATE(); - case 94: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '!', 591, - '#', 4780, - '*', 522, - '+', 542, - '-', 2962, - '/', 577, - ':', 3511, - ';', 2862, - '<', 594, - '=', 595, - '>', 597, - '?', 3181, - 'a', 731, - 'b', 707, - 'e', 539, - 'i', 733, - 'm', 756, - 'n', 752, - 'o', 545, - 's', 834, - 'x', 751, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 94, - ' ', 94, - 0x0b, 580, - '\f', 580, - ); - END_STATE(); - case 95: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '!', 591, - '#', 4780, - '*', 522, - '+', 542, - '-', 865, - '/', 577, - ':', 3511, - ';', 2862, - '<', 594, - '=', 595, - '>', 597, - 'a', 731, - 'b', 707, - 'e', 539, - 'i', 733, - 'm', 756, - 'n', 752, - 'o', 545, - 's', 834, - 'x', 751, - '|', 2863, - '}', 3092, - '\t', 95, - ' ', 95, - 0x0b, 580, - '\f', 580, - ); - END_STATE(); - case 96: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '!', 591, - '#', 4780, - '*', 522, - '+', 542, - '-', 865, - '/', 577, - ':', 3511, - ';', 2862, - '<', 594, - '=', 596, - '>', 597, - 'a', 731, - 'b', 707, - 'e', 539, - 'i', 733, - 'm', 756, - 'n', 752, - 'o', 545, - 's', 834, - 'x', 751, - '|', 2863, - '}', 3092, - '\t', 96, - ' ', 96, - 0x0b, 580, - '\f', 580, - ); - END_STATE(); - case 97: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 568, - '-', 2970, - '.', 569, - '0', 3372, - ':', 3511, - ';', 2862, - '>', 2941, - '?', 3181, - 'I', 897, - 'N', 888, - '[', 2907, - '_', 615, - '`', 626, - 'a', 715, - 'c', 744, - 'd', 661, - 'e', 534, - 'f', 630, - 'h', 697, - 'i', 681, - 'l', 699, - 'm', 627, - 'n', 667, - 'o', 526, - 't', 766, - 'u', 791, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 97, - ' ', 97, - 0x0b, 580, - '\f', 580, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); - END_STATE(); - case 98: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 568, - '-', 2970, - '.', 3281, - '0', 3372, - ':', 3511, - ';', 2862, - '=', 3652, - '>', 2941, - '?', 3181, - '@', 2943, - 'I', 897, - 'N', 888, - '[', 2907, - '_', 615, - '`', 626, - 'a', 715, - 'c', 744, - 'd', 661, - 'e', 534, - 'f', 630, - 'h', 697, - 'i', 681, - 'l', 699, - 'm', 627, - 'n', 667, - 'o', 526, - 't', 766, - 'u', 791, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 97, - ' ', 97, - 0x0b, 580, - '\f', 580, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); - END_STATE(); - case 99: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '*', 1348, - '+', 3515, - ',', 2911, - '-', 2969, - '.', 3297, - '/', 1349, - '0', 3376, - ':', 3511, - ';', 2862, - '=', 1073, - '?', 3181, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '|', 2863, - '}', 3092, - '\t', 89, - ' ', 89, - 0x0b, 580, - '\f', 580, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if (lookahead != 0 && - (lookahead < '\'' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); - END_STATE(); - case 100: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '*', 1348, - '+', 3515, - ',', 2911, - '-', 2969, - '.', 3297, - '/', 1349, - '0', 3376, - ':', 3511, - ';', 2862, - '=', 1073, - 'I', 1861, - 'N', 1856, - '[', 3442, - '_', 1596, - '`', 626, - '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, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 90, - ' ', 90, - 0x0b, 580, - '\f', 580, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1875); - END_STATE(); - case 101: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '*', 1348, - '+', 3515, - ',', 2911, - '-', 2969, - '.', 1343, - '/', 1349, - '0', 3376, - ':', 3511, - ';', 2862, - '=', 1073, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '|', 2863, - '}', 3092, - '\t', 91, - ' ', 91, - 0x0b, 580, - '\f', 580, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); - END_STATE(); - case 102: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '#', 4780, - '*', 585, - '+', 530, - '-', 586, - '.', 3289, - '/', 588, - ':', 3511, - ';', 2862, - '=', 1073, - '?', 3181, - 'E', 611, - 'G', 611, - 'K', 611, - 'M', 611, - 'P', 611, - 'T', 611, - 'd', 628, - 'e', 536, - 'g', 610, - 'h', 765, - 'k', 610, - 'm', 612, - 'n', 788, - 'o', 546, - 'p', 610, - 's', 668, - 't', 610, - 'u', 788, - 'w', 711, - '{', 3091, - '|', 2863, - '}', 3092, - 0xb5, 788, - '\t', 92, - ' ', 92, - 'B', 3420, - 'b', 3420, - 0x0b, 580, - '\f', 580, - ); - END_STATE(); - case 103: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '#', 4780, - '-', 2953, - '.', 3289, - ':', 3511, - ';', 2862, - '=', 604, - '?', 3181, - 'E', 611, - 'G', 611, - 'K', 611, - 'M', 611, - 'P', 611, - 'T', 611, - 'd', 628, - 'e', 536, - 'g', 610, - 'h', 765, - 'i', 677, - 'k', 610, - 'm', 612, - 'n', 788, - 'o', 546, - 'p', 610, - 's', 668, - 't', 610, - 'u', 788, - 'w', 711, - '{', 3091, - '|', 2863, - '}', 3092, - 0xb5, 788, - '\t', 93, - ' ', 93, - 'B', 3420, - 'b', 3420, - 0x0b, 580, - '\f', 580, - ); - END_STATE(); - case 104: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '#', 4780, - '-', 2953, - '.', 3275, - ':', 3511, - ';', 2862, - '=', 604, - '?', 3181, - 'e', 541, - 'o', 546, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 94, - ' ', 94, - 0x0b, 580, - '\f', 580, - ); - END_STATE(); - case 105: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '#', 4780, - '.', 3289, - ':', 3511, - ';', 2862, - '=', 604, - '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, - '|', 2863, - '}', 3092, - 0xb5, 2287, - '\t', 95, - ' ', 95, - 'B', 3420, - 'b', 3420, - 0x0b, 580, - '\f', 580, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 106: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '#', 4780, - '.', 2248, - ':', 3511, - ';', 2862, - '=', 604, - '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, - '|', 2863, - '}', 3092, - 0xb5, 2287, - '\t', 95, - ' ', 95, - 'B', 3420, - 'b', 3420, - 0x0b, 580, - '\f', 580, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 107: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '#', 4780, - '.', 2248, - ':', 3511, - ';', 2862, - '=', 604, - '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, - '|', 2863, - '}', 3092, - 0xb5, 2287, - '\t', 95, - ' ', 95, - 'B', 3420, - 'b', 3420, - 0x0b, 580, - '\f', 580, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 108: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '#', 4780, - '.', 2248, - ':', 3511, - ';', 2862, - '=', 604, - '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, - '|', 2863, - '}', 3092, - 0xb5, 2287, - '\t', 95, - ' ', 95, - 'B', 3420, - 'b', 3420, - 0x0b, 580, - '\f', 580, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 109: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '#', 4780, - ':', 3511, - ';', 2862, - 'e', 533, - 'o', 526, - '|', 2863, - '}', 3092, - '\t', 2860, - ' ', 2860, - 0x0b, 580, - '\f', 580, - ); - END_STATE(); - case 110: - ADVANCE_MAP( - '\n', 2859, - '\r', 111, - '#', 4783, - ':', 3511, - ';', 2862, - 'e', 2158, - 'o', 2159, - '|', 2863, - '}', 3092, - '\t', 96, - ' ', 96, - 0x0b, 580, - '\f', 580, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); - END_STATE(); - case 111: - if (lookahead == '\n') ADVANCE(2859); - if (lookahead == ':') ADVANCE(3511); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(580); - END_STATE(); - case 112: - if (lookahead == '\n') ADVANCE(2858); - END_STATE(); - case 113: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '!', 593, - '#', 4780, - '$', 2912, - ')', 2910, - '*', 186, - '+', 161, - '-', 187, - '.', 623, - '/', 165, - ';', 2862, - '<', 190, - '=', 598, - '>', 191, - 'a', 722, - 'b', 696, - 'e', 538, - 'i', 679, - 'm', 754, - 'n', 745, - 'o', 544, - 's', 802, - 'x', 753, - '{', 3091, - '|', 2863, - '\t', 113, - ' ', 113, - ); - END_STATE(); - case 114: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '!', 593, - '#', 4780, - ')', 2910, - '*', 186, - '+', 162, - '-', 189, - '/', 165, - ';', 2862, - '<', 190, - '=', 598, - '>', 191, - '?', 3181, - 'a', 722, - 'b', 696, - 'e', 538, - 'i', 679, - 'm', 754, - 'n', 745, - 'o', 544, - 's', 802, - 'x', 753, - '{', 3091, - '|', 2863, - '\t', 114, - ' ', 114, - ); - END_STATE(); - case 115: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '!', 593, - '#', 4780, - ')', 2910, - '*', 186, - '+', 162, - '-', 189, - '/', 165, - ';', 2862, - '<', 190, - '=', 599, - '>', 191, - 'a', 722, - 'b', 696, - 'e', 531, - 'i', 732, - 'm', 754, - 'n', 745, - 'o', 524, - 's', 802, - 'x', 753, - '|', 2863, - '\t', 115, - ' ', 115, - ); - END_STATE(); - case 116: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '!', 593, - '#', 4780, - ')', 2910, - '*', 186, - '+', 162, - '-', 189, - '/', 165, - ';', 2862, - '<', 190, - '=', 599, - '>', 191, - 'a', 722, - 'b', 696, - 'e', 538, - 'i', 732, - 'm', 754, - 'n', 745, - 'o', 544, - 's', 802, - 'x', 753, - '{', 3091, - '|', 2863, - '\t', 116, - ' ', 116, - ); - END_STATE(); - case 117: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '!', 593, - '#', 4780, - ')', 2910, - '*', 186, - '+', 162, - '-', 189, - '/', 165, - ';', 2862, - '<', 190, - '=', 599, - '>', 191, - 'a', 722, - 'b', 696, - 'e', 538, - 'i', 732, - 'm', 754, - 'n', 745, - 'o', 544, - 's', 802, - 'x', 753, - '|', 2863, - '\t', 117, - ' ', 117, - ); - END_STATE(); - case 118: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '!', 593, - '#', 4780, - ')', 2910, - '*', 185, - '+', 160, - '-', 188, - '/', 164, - ';', 2862, - '<', 190, - '=', 1076, - '>', 191, - '?', 3181, - 'a', 722, - 'b', 696, - 'e', 538, - 'i', 732, - 'm', 754, - 'n', 745, - 'o', 544, - 's', 802, - 'x', 753, - '{', 3091, - '|', 2863, - '\t', 118, - ' ', 118, - ); - END_STATE(); - case 119: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '!', 593, - '#', 4780, - '*', 186, - '+', 162, - '-', 189, - '/', 165, - '<', 190, - '=', 599, - '>', 191, - 'a', 722, - 'b', 696, - 'e', 728, - 'i', 732, - 'm', 754, - 'n', 745, - 'o', 776, - 's', 802, - 'x', 753, - '{', 3091, - '\t', 119, - ' ', 119, - ); - END_STATE(); - case 120: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - '.', 571, - ';', 2862, - '=', 604, - '[', 3442, - '_', 622, - 'e', 541, - 'i', 677, - 'o', 546, - '{', 3091, - '|', 2863, - '\t', 113, - ' ', 113, - '+', 573, - '-', 573, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - END_STATE(); - case 121: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - ')', 2910, - '*', 585, - '+', 530, - '-', 586, - '.', 3289, - '/', 588, - ';', 2862, - '=', 1073, - '?', 3181, - 'E', 611, - 'G', 611, - 'K', 611, - 'M', 611, - 'P', 611, - 'T', 611, - 'd', 628, - 'e', 536, - 'g', 610, - 'h', 765, - 'k', 610, - 'm', 612, - 'n', 788, - 'o', 546, - 'p', 610, - 's', 668, - 't', 610, - 'u', 788, - 'w', 711, - '{', 3091, - '|', 2863, - 0xb5, 788, - '\t', 118, - ' ', 118, - 'B', 3420, - 'b', 3420, - ); - END_STATE(); - case 122: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3289, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3841, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, - '\t', 117, - ' ', 117, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 123: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3289, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3844, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3850, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, - '\t', 115, - ' ', 115, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 124: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3841, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, - '\t', 117, - ' ', 117, - 'B', 3420, - 'b', 3420, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 125: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3844, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3850, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, - '\t', 115, - ' ', 115, - 'B', 3420, - 'b', 3420, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 126: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3841, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, - '\t', 117, - ' ', 117, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 127: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3844, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3850, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, - '\t', 115, - ' ', 115, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 128: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3838, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, - '\t', 117, - ' ', 117, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 129: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3847, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3850, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, - '\t', 115, - ' ', 115, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 130: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - '.', 3289, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, - '\t', 119, - ' ', 119, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 131: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - '.', 3870, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, - '\t', 119, - ' ', 119, - 'B', 3420, - 'b', 3420, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 132: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - '.', 3870, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, - '\t', 119, - ' ', 119, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 133: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - '(', 3212, - '.', 3870, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3888, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, - '\t', 119, - ' ', 119, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 134: - if (lookahead == '\n') ADVANCE(2858); - if (lookahead == '\r') ADVANCE(112); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '{') ADVANCE(3091); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(119); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 135: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - '.', 3289, - ';', 2862, - '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, - '{', 3091, - '|', 2863, - 0xb5, 2287, - '\t', 116, - ' ', 116, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 136: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - '.', 3289, - ';', 2862, - '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, - '|', 2863, - 0xb5, 2287, - '\t', 115, - ' ', 115, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 137: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - '.', 2248, - ';', 2862, - '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, - '{', 3091, - '|', 2863, - 0xb5, 2287, - '\t', 116, - ' ', 116, - 'B', 3420, - 'b', 3420, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 138: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - '.', 2248, - ';', 2862, - '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, - '|', 2863, - 0xb5, 2287, - '\t', 115, - ' ', 115, - 'B', 3420, - 'b', 3420, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 139: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - '.', 2248, - ';', 2862, - '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, - '{', 3091, - '|', 2863, - 0xb5, 2287, - '\t', 116, - ' ', 116, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 140: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - '.', 2248, - ';', 2862, - '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, - '|', 2863, - 0xb5, 2287, - '\t', 115, - ' ', 115, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 141: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - '.', 2248, - ';', 2862, - '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, - '{', 3091, - '|', 2863, - 0xb5, 2287, - '\t', 116, - ' ', 116, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 142: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - '.', 2248, - ';', 2862, - '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, - '|', 2863, - 0xb5, 2287, - '\t', 115, - ' ', 115, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 143: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - '.', 3275, - ';', 2862, - '=', 604, - '?', 3181, - 'e', 541, - 'i', 677, - 'o', 546, - '{', 3091, - '|', 2863, - '\t', 114, - ' ', 114, - ); - END_STATE(); - case 144: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - ';', 2862, - 'e', 3839, - 'o', 3840, - '|', 2863, - '\t', 117, - ' ', 117, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 145: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - ';', 2862, - 'e', 2238, - 'o', 2236, - '|', 2863, - '\t', 117, - ' ', 117, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 146: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - ';', 2862, - 'e', 3848, - 'o', 3850, - '|', 2863, - '\t', 115, - ' ', 115, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 147: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4780, - ')', 2910, - ';', 2862, - 'e', 2241, - 'o', 2243, - '|', 2863, - '\t', 115, - ' ', 115, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 148: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4787, - '(', 3212, - ')', 2910, - ';', 2862, - 'e', 4003, - 'o', 4004, - '|', 2863, - '\t', 117, - ' ', 117, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == '^') ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3775); END_STATE(); - case 149: + case 87: ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4787, - '(', 3212, - ')', 2910, - ';', 2862, - 'e', 4007, - 'o', 4009, - '|', 2863, - '\t', 115, - ' ', 115, + '!', 3085, + '#', 4069, + '(', 2506, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 2559, + '/', 2512, + '<', 2495, + '=', 3086, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3097, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3168, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + 0xb5, 3182, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); - END_STATE(); - case 150: - if (lookahead == '\n') ADVANCE(2858); - if (lookahead == '\r') ADVANCE(112); - if (lookahead == '#') ADVANCE(4787); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(119); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); - END_STATE(); - case 151: - ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4783, - ')', 2910, - ';', 2862, - 'e', 2158, - 'o', 2159, - '|', 2863, - '\t', 117, - ' ', 117, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + lookahead == ' ') SKIP(101); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 152: + case 88: ADVANCE_MAP( - '\n', 2858, - '\r', 112, - '#', 4783, - ')', 2910, - ';', 2862, - 'e', 2162, - 'o', 2163, - '|', 2863, - '\t', 115, - ' ', 115, + '!', 3085, + '#', 4069, + '(', 2506, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 3079, + '/', 2512, + '<', 2495, + '=', 3086, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3097, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3168, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + 0xb5, 3182, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); - END_STATE(); - case 153: - if (lookahead == '\n') ADVANCE(3243); - END_STATE(); - case 154: - if (lookahead == '\n') ADVANCE(3248); - END_STATE(); - case 155: - if (lookahead == '\n') ADVANCE(3265); - END_STATE(); - case 156: - if (lookahead == '\n') ADVANCE(3267); - END_STATE(); - case 157: - if (lookahead == '\n') ADVANCE(3242); - END_STATE(); - case 158: - if (lookahead == '\n') ADVANCE(3266); - END_STATE(); - case 159: - if (lookahead == '\n') ADVANCE(3268); - END_STATE(); - case 160: - if (lookahead == '\r') ADVANCE(3); - if (lookahead == '+') ADVANCE(192); - if (lookahead == '=') ADVANCE(1101); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3247); - END_STATE(); - case 161: - if (lookahead == '\r') ADVANCE(3); - if (lookahead == '+') ADVANCE(193); - if (lookahead == '.') ADVANCE(614); - if (lookahead == '_') ADVANCE(573); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3247); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - END_STATE(); - case 162: - if (lookahead == '\r') ADVANCE(3); - if (lookahead == '+') ADVANCE(193); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3247); - END_STATE(); - case 163: - if (lookahead == '\r') ADVANCE(3); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3247); - END_STATE(); - case 164: - if (lookahead == '\r') ADVANCE(4); - if (lookahead == '/') ADVANCE(169); - if (lookahead == '=') ADVANCE(1104); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3244); - END_STATE(); - case 165: - if (lookahead == '\r') ADVANCE(4); - if (lookahead == '/') ADVANCE(169); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3244); - END_STATE(); - case 166: - if (lookahead == '\r') ADVANCE(5); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3264); - END_STATE(); - case 167: - if (lookahead == '\r') ADVANCE(6); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3252); - END_STATE(); - case 168: - if (lookahead == '\r') ADVANCE(7); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3241); - END_STATE(); - case 169: - if (lookahead == '\r') ADVANCE(8); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3246); - END_STATE(); - case 170: - if (lookahead == '\r') ADVANCE(9); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3263); - END_STATE(); - case 171: - if (lookahead == '\r') ADVANCE(10); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3251); - END_STATE(); - case 172: - if (lookahead == '\r') ADVANCE(11); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3259); - END_STATE(); - case 173: - if (lookahead == '\r') ADVANCE(12); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3258); - END_STATE(); - case 174: - if (lookahead == '\r') ADVANCE(13); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3256); - END_STATE(); - case 175: - if (lookahead == '\r') ADVANCE(14); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3245); - END_STATE(); - case 176: - if (lookahead == '\r') ADVANCE(15); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3257); - END_STATE(); - case 177: - if (lookahead == '\r') ADVANCE(16); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3255); - END_STATE(); - case 178: - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3260); - END_STATE(); - case 179: - if (lookahead == '\r') ADVANCE(18); if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3253); + lookahead == ' ') SKIP(101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 180: - if (lookahead == '\r') ADVANCE(19); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3249); - END_STATE(); - case 181: - if (lookahead == '\r') ADVANCE(20); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3250); - END_STATE(); - case 182: - if (lookahead == '\r') ADVANCE(21); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3254); - END_STATE(); - case 183: - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3262); - END_STATE(); - case 184: - if (lookahead == '\r') ADVANCE(23); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3261); - END_STATE(); - case 185: - if (lookahead == '\r') ADVANCE(153); - if (lookahead == '*') ADVANCE(168); - if (lookahead == '=') ADVANCE(1103); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3243); - END_STATE(); - case 186: - if (lookahead == '\r') ADVANCE(153); - if (lookahead == '*') ADVANCE(168); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3243); - END_STATE(); - case 187: - if (lookahead == '\r') ADVANCE(154); - if (lookahead == '.') ADVANCE(614); - if (lookahead == '_') ADVANCE(573); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - END_STATE(); - case 188: - if (lookahead == '\r') ADVANCE(154); - if (lookahead == '=') ADVANCE(1102); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3248); - END_STATE(); - case 189: - if (lookahead == '\r') ADVANCE(154); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3248); - END_STATE(); - case 190: - if (lookahead == '\r') ADVANCE(155); - if (lookahead == '=') ADVANCE(194); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3265); - END_STATE(); - case 191: - if (lookahead == '\r') ADVANCE(156); - if (lookahead == '=') ADVANCE(195); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3267); - END_STATE(); - case 192: - if (lookahead == '\r') ADVANCE(157); - if (lookahead == '=') ADVANCE(1105); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3242); - END_STATE(); - case 193: - if (lookahead == '\r') ADVANCE(157); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3242); - END_STATE(); - case 194: - if (lookahead == '\r') ADVANCE(158); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3266); - END_STATE(); - case 195: - if (lookahead == '\r') ADVANCE(159); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3268); - END_STATE(); - case 196: - ADVANCE_MAP( - '!', 591, - '#', 4780, - '*', 522, - '+', 542, - '-', 2962, - '/', 577, - '<', 594, - '=', 596, - '>', 597, - 'a', 731, - 'b', 707, - 'e', 739, - 'i', 733, - 'm', 756, - 'n', 752, - 'o', 778, - 's', 834, - 'x', 751, - '{', 3091, - '\t', 196, - ' ', 196, - ); - END_STATE(); - case 197: - ADVANCE_MAP( - '!', 591, - '#', 4780, - '*', 522, - '+', 542, - '-', 865, - '/', 577, - '<', 594, - '=', 595, - '>', 597, - 'a', 731, - 'b', 707, - 'e', 739, - 'i', 733, - 'm', 756, - 'n', 752, - 'o', 778, - 's', 834, - 'x', 751, - '|', 2863, - '\t', 197, - ' ', 197, - ); - END_STATE(); - case 198: - ADVANCE_MAP( - '!', 591, - '#', 4780, - '*', 522, - '+', 542, - '-', 865, - '/', 577, - '<', 594, - '=', 596, - '>', 597, - 'a', 731, - 'b', 707, - 'e', 739, - 'i', 733, - 'm', 756, - 'n', 752, - 'o', 778, - 's', 834, - 'x', 751, - '{', 3091, - '\t', 198, - ' ', 198, - ); - END_STATE(); - case 199: + case 89: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - '+', 568, - '-', 2971, - '.', 569, - '0', 3671, - '=', 3652, - 'N', 3697, - '[', 2907, - '_', 3672, - '`', 626, - 'f', 3679, - 'n', 3686, - 't', 3687, - '{', 3091, + '!', 3085, + '#', 4069, + '(', 2506, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 3079, + '/', 2512, + '<', 2495, + '=', 3086, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3097, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3168, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(205); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3702); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3678); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); - END_STATE(); - case 200: - ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 1337, - '-', 2970, - '.', 1338, - '0', 3369, - ';', 3523, - 'I', 1569, - 'N', 1566, - '[', 2907, - '^', 3595, - '_', 1359, - '`', 626, - '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, - '{', 3091, - '\t', 200, - ' ', 200, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(583); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); - if (lookahead != 0 && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); + lookahead == ' ') SKIP(101); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 201: + case 90: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 1337, - '-', 2970, - '.', 1338, - '0', 3369, - 'I', 1569, - 'N', 1566, - '[', 2907, - '^', 3595, - '_', 1359, - '`', 626, - '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, - '{', 3091, + '!', 3085, + '#', 4069, + '(', 2506, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 3079, + '/', 2512, + '<', 2495, + '=', 3086, + '>', 2323, + 'B', 2731, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3100, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3168, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(201); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); - END_STATE(); - case 202: - ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 1337, - '-', 550, - '.', 1593, - ':', 3511, - '=', 3652, - 'I', 1861, - 'N', 1856, - '[', 3442, - '_', 1596, - '`', 626, - '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', 203, - ' ', 203, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); - END_STATE(); - case 203: - ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 1337, - '-', 550, - '.', 1593, - ':', 3511, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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', 203, - ' ', 203, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + lookahead == ' ') SKIP(101); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 204: + case 91: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 568, - '-', 2970, - '.', 569, - '0', 3372, - 'N', 888, - '[', 3442, - '_', 615, - '`', 626, - 'f', 630, - 'n', 749, - 't', 770, - '{', 3091, + '!', 3085, + '#', 4069, + '(', 2506, + '*', 2473, + '+', 2521, + '-', 2334, + '.', 2559, + '/', 2512, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3097, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3168, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '{', 2414, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(205); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(897); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); + lookahead == ' ') SKIP(102); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 205: + case 92: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 568, - '-', 2970, - '.', 569, - '0', 3372, - 'N', 888, - '[', 2907, - '_', 615, - '`', 626, - 'f', 630, - 'n', 749, - 't', 770, - '{', 3091, + '!', 3085, + '#', 4069, + '(', 2506, + '*', 2473, + '+', 2521, + '-', 2334, + '.', 3079, + '/', 2512, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3097, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3168, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '{', 2414, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(205); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(897); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); + lookahead == ' ') SKIP(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 206: + case 93: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 568, - '-', 2970, - '.', 569, - '0', 2667, - '=', 3652, - 'N', 2792, - '[', 2907, - '_', 2668, - '`', 626, - 'f', 2676, - 'n', 2740, - 't', 2745, - '{', 3091, + '!', 3085, + '#', 4069, + '(', 2506, + '*', 2473, + '+', 2521, + '-', 2334, + '.', 3079, + '/', 2512, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3097, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3168, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '{', 2414, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(205); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2800); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); + lookahead == ' ') SKIP(102); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 207: + case 94: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 568, - '-', 2956, - '.', 569, - '0', 3372, - '=', 1073, - '@', 2943, - 'N', 888, - '[', 2907, - '_', 615, - '`', 626, - 'f', 630, - 'n', 749, - 't', 770, - '{', 3091, + '!', 3085, + '#', 4069, + '(', 2506, + '*', 2473, + '+', 2521, + '-', 2334, + '.', 3079, + '/', 2512, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3100, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3168, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '{', 2414, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(208); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(897); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); + lookahead == ' ') SKIP(102); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 208: + case 95: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 568, - '-', 2956, - '.', 569, - '0', 3372, - '=', 1073, - 'N', 888, - '[', 2907, - '_', 615, - '`', 626, - 'f', 630, - 'n', 749, - 't', 770, - '{', 3091, + '!', 3085, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + '<', 2495, + '=', 3086, + '>', 2323, + 'a', 3154, + 'b', 3142, + 'e', 3155, + 'i', 3153, + 'm', 3159, + 'n', 3161, + 'o', 3168, + 's', 3191, + 'x', 3163, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(208); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(897); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); - END_STATE(); - case 209: - ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 3755, - '-', 567, - '.', 3752, - '0', 3370, - ':', 3511, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3735, - 'f', 3782, - 'n', 3810, - 'o', 3736, - 't', 3797, - '{', 3091, - '\t', 209, - ' ', 209, - 'I', 3818, - 'i', 3818, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); - END_STATE(); - case 210: - ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 3755, - '-', 567, - '.', 3752, - ':', 3511, - 'N', 3814, - '_', 3769, - '`', 626, - 'e', 3735, - 'f', 3782, - 'n', 3810, - 'o', 3736, - 't', 3797, - '\t', 210, - ' ', 210, - 'I', 3818, - 'i', 3818, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); + lookahead == ' ') SKIP(101); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 211: + case 96: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 3755, - '-', 567, - '.', 3752, - 'N', 3814, - '_', 3769, - '`', 626, - 'e', 3735, - 'f', 3782, - 'n', 3810, - 'o', 3736, - 't', 3797, + '!', 3085, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2334, + '/', 2512, + '<', 2495, + '=', 3087, + '>', 2323, + 'a', 3154, + 'b', 3142, + 'e', 3155, + 'i', 3153, + 'm', 3159, + 'n', 3161, + 'o', 3168, + 's', 3191, + 'x', 3163, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(211); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); + lookahead == ' ') SKIP(102); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 212: - ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 4225, - '-', 4224, - '.', 4226, - '0', 3371, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3510, - ' ', 3510, - 'I', 4283, - 'i', 4283, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); - END_STATE(); - case 213: + case 97: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 4507, - '-', 4506, - '.', 4505, - '0', 3373, - 'N', 4538, - '[', 2907, - '_', 4513, - '`', 626, - 'e', 4500, - 'f', 4518, - 'n', 4535, - 'o', 4501, - 't', 4528, - '{', 3091, + '!', 3284, + '#', 4075, + '(', 2506, + '*', 2475, + '+', 2524, + '-', 2357, + '/', 2514, + '<', 2496, + '=', 3285, + '>', 2324, + 'a', 3373, + 'b', 3356, + 'e', 3378, + 'i', 3374, + 'm', 3386, + 'n', 3389, + 'o', 3399, + 's', 3429, + 'x', 3388, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4544); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3396); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4558); + lookahead == ' ') SKIP(101); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 214: + case 98: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 3872, - '-', 2977, - '.', 3869, - '0', 3323, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'N', 3963, - 'P', 3889, - 'T', 3889, - '[', 2907, - '_', 3891, - '`', 626, - 'd', 3906, - 'e', 3885, - 'f', 3905, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3927, - 'p', 3888, - 's', 3912, - 't', 3887, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, + '!', 3284, + '#', 4075, + '(', 2506, + '*', 2475, + '+', 2524, + '-', 2342, + '/', 2514, + '<', 2496, + '=', 3286, + '>', 2324, + 'a', 3373, + 'b', 3356, + 'e', 3378, + 'i', 3374, + 'm', 3386, + 'n', 3389, + 'o', 3399, + 's', 3429, + 'x', 3388, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(205); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3993); + lookahead == ' ') SKIP(102); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 215: + case 99: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 3872, - '-', 2977, - '.', 3869, - '0', 3374, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'N', 3963, - 'P', 3889, - 'T', 3889, - '[', 2907, - '_', 3896, - '`', 626, - 'd', 3906, - 'e', 3885, - 'f', 3905, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3927, - 'p', 3888, - 's', 3912, - 't', 3887, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, + '!', 454, + '#', 4069, + '$', 2305, + '*', 2473, + '+', 2521, + '-', 2334, + '.', 2545, + '/', 2512, + ':', 2810, + ';', 2813, + '<', 2495, + '=', 456, + '>', 2323, + '?', 2476, + 'a', 554, + 'b', 536, + 'e', 559, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 582, + 's', 607, + 'x', 565, + '{', 2414, + '\t', 100, + ' ', 100, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(205); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3993); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); END_STATE(); - case 216: + case 100: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 3872, - '-', 2977, - '.', 3869, - '0', 3374, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'N', 3963, - 'P', 3889, - 'T', 3889, - '[', 2907, - '_', 3896, - '`', 626, - 'd', 3906, - 'e', 3888, - 'f', 3905, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3927, - 'p', 3888, - 's', 3912, - 't', 3887, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, + '!', 454, + '#', 4069, + '$', 2305, + '*', 2473, + '+', 2521, + '-', 2334, + '/', 2512, + ':', 2810, + ';', 2813, + '<', 2495, + '=', 456, + '>', 2323, + '?', 2476, + 'a', 554, + 'b', 536, + 'e', 559, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 582, + 's', 607, + 'x', 565, + '{', 2414, + '\t', 100, + ' ', 100, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(205); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3993); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); END_STATE(); - case 217: + case 101: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 3872, - '-', 2977, - '.', 3868, - '0', 3374, - 'N', 3963, - '[', 2907, - '_', 3896, - '`', 626, - 'f', 3905, - 'n', 3928, - 't', 3934, - '{', 3091, + '!', 454, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + '<', 2495, + '=', 455, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 559, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 582, + 's', 607, + 'x', 565, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(205); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3993); + lookahead == ' ') SKIP(101); END_STATE(); - case 218: + case 102: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 3872, - '-', 2977, - '.', 3293, - '0', 3374, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'N', 3963, - 'P', 3889, - 'T', 3889, - '[', 2907, - '_', 3896, - '`', 626, - 'd', 3906, - 'e', 3885, - 'f', 3905, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3927, - 'p', 3888, - 's', 3912, - 't', 3887, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, + '!', 454, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2334, + '/', 2512, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 559, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 582, + 's', 607, + 'x', 565, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(205); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3993); + lookahead == ' ') SKIP(102); END_STATE(); - case 219: + case 103: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 4221, - '0', 3371, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 3513, + '0', 2659, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 220: + case 104: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4322, - ',', 2911, - '-', 4321, - '.', 4314, - '0', 3325, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4339, - '`', 626, - 'e', 4307, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3610, + ',', 2304, + '-', 3609, + '.', 3602, + '0', 2590, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3631, + '`', 485, + 'e', 3595, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(341); + lookahead == ' ') SKIP(225); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 221: + case 105: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4322, - ',', 2911, - '-', 4321, - '.', 3280, - '0', 3325, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4339, - '`', 626, - 'e', 4307, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3610, + ',', 2304, + '-', 3609, + '.', 2549, + '0', 2590, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3631, + '`', 485, + 'e', 3595, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(341); + lookahead == ' ') SKIP(225); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 222: + case 106: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4322, - ',', 3506, - '-', 4321, - '.', 4314, - '0', 3325, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4339, - '`', 626, - 'e', 4307, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3610, + ',', 2805, + '-', 3609, + '.', 3602, + '0', 2590, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3631, + '`', 485, + 'e', 3595, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 223: + case 107: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4322, - ',', 3506, - '-', 4321, - '.', 3280, - '0', 3325, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4339, - '`', 626, - 'e', 4307, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3610, + ',', 2805, + '-', 3609, + '.', 2549, + '0', 2590, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3631, + '`', 485, + 'e', 3595, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 224: + case 108: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 1132, - '0', 3328, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1156, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 873, + '0', 2593, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 892, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 225: + case 109: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 1132, - '0', 3377, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 873, + '0', 2665, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 226: + case 110: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 1132, - '0', 3377, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 873, + '0', 2665, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 952, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 227: + case 111: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 3299, - '0', 3377, - 'B', 3420, - 'E', 1140, - 'G', 1145, - 'I', 1318, - 'K', 1145, - 'M', 1145, - 'N', 1313, - 'P', 1145, - 'T', 1145, - '_', 1151, - '`', 626, - 'a', 1232, - 'b', 3421, - '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, - '}', 3092, - 0xb5, 1276, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 2568, + '0', 2665, + 'B', 2731, + 'E', 880, + 'G', 885, + 'I', 1003, + 'K', 885, + 'M', 885, + 'N', 1000, + 'P', 885, + 'T', 885, + '_', 887, + '`', 485, + 'a', 946, + 'b', 2735, + 'c', 900, + 'd', 906, + 'e', 879, + 'f', 901, + 'g', 884, + 'h', 938, + 'i', 886, + 'k', 884, + 'l', 924, + 'm', 881, + 'n', 977, + 'o', 997, + 'p', 884, + 'r', 915, + 's', 927, + 't', 883, + 'u', 979, + 'w', 936, + '}', 2415, + 0xb5, 978, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 228: + case 112: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 3299, - '0', 3377, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 2568, + '0', 2665, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 229: + case 113: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 1134, - '0', 3328, - 'B', 3420, - 'E', 1140, - 'G', 1145, - 'I', 1318, - 'K', 1145, - 'M', 1145, - 'N', 1313, - 'P', 1145, - 'T', 1145, - '_', 1156, - '`', 626, - 'a', 1232, - 'b', 3421, - '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, - '}', 3092, - 0xb5, 1276, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 2557, + '0', 2665, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 230: + case 114: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 1134, - '0', 3328, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1156, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 876, + '0', 2593, + 'B', 2731, + 'E', 880, + 'G', 885, + 'I', 1003, + 'K', 885, + 'M', 885, + 'N', 1000, + 'P', 885, + 'T', 885, + '_', 892, + '`', 485, + 'a', 946, + 'b', 2735, + 'c', 900, + 'd', 906, + 'e', 879, + 'f', 901, + 'g', 884, + 'h', 938, + 'i', 886, + 'k', 884, + 'l', 924, + 'm', 881, + 'n', 977, + 'o', 997, + 'p', 884, + 'r', 915, + 's', 927, + 't', 883, + 'u', 979, + 'w', 936, + '}', 2415, + 0xb5, 978, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 231: + case 115: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 1134, - '0', 3377, - 'B', 3420, - 'E', 1140, - 'G', 1145, - 'I', 1318, - 'K', 1145, - 'M', 1145, - 'N', 1313, - 'P', 1145, - 'T', 1145, - '_', 1151, - '`', 626, - 'a', 1232, - 'b', 3421, - '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, - '}', 3092, - 0xb5, 1276, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 876, + '0', 2593, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 892, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 232: + case 116: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 1134, - '0', 3377, - 'B', 3420, - 'E', 1145, - 'G', 1145, - 'I', 1318, - 'K', 1145, - 'M', 1145, - 'N', 1313, - 'P', 1145, - 'T', 1145, - '_', 1151, - '`', 626, - 'a', 1232, - 'b', 3421, - '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, - '}', 3092, - 0xb5, 1276, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 876, + '0', 2665, + 'B', 2731, + 'E', 880, + 'G', 885, + 'I', 1003, + 'K', 885, + 'M', 885, + 'N', 1000, + 'P', 885, + 'T', 885, + '_', 887, + '`', 485, + 'a', 946, + 'b', 2735, + 'c', 900, + 'd', 906, + 'e', 879, + 'f', 901, + 'g', 884, + 'h', 938, + 'i', 886, + 'k', 884, + 'l', 924, + 'm', 881, + 'n', 977, + 'o', 997, + 'p', 884, + 'r', 915, + 's', 927, + 't', 883, + 'u', 979, + 'w', 936, + '}', 2415, + 0xb5, 978, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 233: + case 117: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 1134, - '0', 3377, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 876, + '0', 2665, + 'B', 2731, + 'E', 885, + 'G', 885, + 'I', 1003, + 'K', 885, + 'M', 885, + 'N', 1000, + 'P', 885, + 'T', 885, + '_', 887, + '`', 485, + 'a', 946, + 'b', 2735, + 'c', 900, + 'd', 906, + 'e', 882, + 'f', 901, + 'g', 884, + 'h', 938, + 'i', 886, + 'k', 884, + 'l', 924, + 'm', 881, + 'n', 977, + 'o', 997, + 'p', 884, + 'r', 915, + 's', 927, + 't', 883, + 'u', 979, + 'w', 936, + '}', 2415, + 0xb5, 978, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 234: + case 118: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 1134, - '0', 3377, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 876, + '0', 2665, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 235: + case 119: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 1875, - '-', 2972, - '.', 3288, - '0', 3377, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 876, + '0', 2665, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 952, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 236: + case 120: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 1132, - '0', 3328, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1156, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 873, + '0', 2593, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 892, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 237: + case 121: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 1132, - '0', 3377, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 873, + '0', 2665, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 238: + case 122: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 1132, - '0', 3377, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 873, + '0', 2665, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 952, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 239: + case 123: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 3299, - '0', 3377, - 'B', 3420, - 'E', 1140, - 'G', 1145, - 'I', 1318, - 'K', 1145, - 'M', 1145, - 'N', 1313, - 'P', 1145, - 'T', 1145, - '_', 1151, - '`', 626, - 'a', 1232, - 'b', 3421, - '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, - '}', 3092, - 0xb5, 1276, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 2568, + '0', 2665, + 'B', 2731, + 'E', 880, + 'G', 885, + 'I', 1003, + 'K', 885, + 'M', 885, + 'N', 1000, + 'P', 885, + 'T', 885, + '_', 887, + '`', 485, + 'a', 946, + 'b', 2735, + 'c', 900, + 'd', 906, + 'e', 879, + 'f', 901, + 'g', 884, + 'h', 938, + 'i', 886, + 'k', 884, + 'l', 924, + 'm', 881, + 'n', 977, + 'o', 997, + 'p', 884, + 'r', 915, + 's', 927, + 't', 883, + 'u', 979, + 'w', 936, + '}', 2415, + 0xb5, 978, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 240: + case 124: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 3299, - '0', 3377, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 2568, + '0', 2665, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 241: + case 125: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 1134, - '0', 3328, - 'B', 3420, - 'E', 1140, - 'G', 1145, - 'I', 1318, - 'K', 1145, - 'M', 1145, - 'N', 1313, - 'P', 1145, - 'T', 1145, - '[', 3442, - ']', 2908, - '_', 1156, - '`', 626, - 'a', 1232, - 'b', 3421, - '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, - '}', 3092, - 0xb5, 1276, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 2557, + '0', 2665, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 242: + case 126: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 1134, - '0', 3328, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1156, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 876, + '0', 2593, + 'B', 2731, + 'E', 880, + 'G', 885, + 'I', 1003, + 'K', 885, + 'M', 885, + 'N', 1000, + 'P', 885, + 'T', 885, + '_', 892, + '`', 485, + 'a', 946, + 'b', 2735, + 'c', 900, + 'd', 906, + 'e', 879, + 'f', 901, + 'g', 884, + 'h', 938, + 'i', 886, + 'k', 884, + 'l', 924, + 'm', 881, + 'n', 977, + 'o', 997, + 'p', 884, + 'r', 915, + 's', 927, + 't', 883, + 'u', 979, + 'w', 936, + '}', 2415, + 0xb5, 978, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 243: + case 127: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 1134, - '0', 3377, - 'B', 3420, - 'E', 1140, - 'G', 1145, - 'I', 1318, - 'K', 1145, - 'M', 1145, - 'N', 1313, - 'P', 1145, - 'T', 1145, - '_', 1151, - '`', 626, - 'a', 1232, - 'b', 3421, - '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, - '}', 3092, - 0xb5, 1276, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 876, + '0', 2593, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 892, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 244: + case 128: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 1134, - '0', 3377, - 'B', 3420, - 'E', 1145, - 'G', 1145, - 'I', 1318, - 'K', 1145, - 'M', 1145, - 'N', 1313, - 'P', 1145, - 'T', 1145, - '_', 1151, - '`', 626, - 'a', 1232, - 'b', 3421, - '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, - '}', 3092, - 0xb5, 1276, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 876, + '0', 2665, + 'B', 2731, + 'E', 880, + 'G', 885, + 'I', 1003, + 'K', 885, + 'M', 885, + 'N', 1000, + 'P', 885, + 'T', 885, + '_', 887, + '`', 485, + 'a', 946, + 'b', 2735, + 'c', 900, + 'd', 906, + 'e', 879, + 'f', 901, + 'g', 884, + 'h', 938, + 'i', 886, + 'k', 884, + 'l', 924, + 'm', 881, + 'n', 977, + 'o', 997, + 'p', 884, + 'r', 915, + 's', 927, + 't', 883, + 'u', 979, + 'w', 936, + '}', 2415, + 0xb5, 978, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 245: + case 129: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 1134, - '0', 3377, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 876, + '0', 2665, + 'B', 2731, + 'E', 885, + 'G', 885, + 'I', 1003, + 'K', 885, + 'M', 885, + 'N', 1000, + 'P', 885, + 'T', 885, + '_', 887, + '`', 485, + 'a', 946, + 'b', 2735, + 'c', 900, + 'd', 906, + 'e', 882, + 'f', 901, + 'g', 884, + 'h', 938, + 'i', 886, + 'k', 884, + 'l', 924, + 'm', 881, + 'n', 977, + 'o', 997, + 'p', 884, + 'r', 915, + 's', 927, + 't', 883, + 'u', 979, + 'w', 936, + '}', 2415, + 0xb5, 978, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 246: + case 130: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 1134, - '0', 3377, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 876, + '0', 2665, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 247: + case 131: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 3288, - '0', 3377, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 876, + '0', 2665, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 952, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 248: + case 132: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 4316, - '0', 3325, - 'E', 4334, - 'G', 4337, - 'K', 4337, - 'M', 4337, - 'N', 4382, - 'P', 4337, - 'T', 4337, - '[', 2907, - ']', 2908, - '_', 4339, - '`', 626, - 'd', 4353, - 'e', 4309, - 'f', 4352, - 'g', 4336, - 'h', 4368, - 'k', 4336, - 'm', 4338, - 'n', 4373, - 'o', 4308, - 'p', 4336, - 's', 4358, - 't', 4335, - 'u', 4374, - 'w', 4361, - '{', 3091, - 0xb5, 4374, - '\t', 3507, - ' ', 3507, - 'B', 3420, - 'b', 3420, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 3604, + '0', 2590, + 'E', 3626, + 'G', 3629, + 'K', 3629, + 'M', 3629, + 'N', 3674, + 'P', 3629, + 'T', 3629, + '[', 2300, + ']', 2301, + '_', 3631, + '`', 485, + 'd', 3645, + 'e', 3597, + 'f', 3644, + 'g', 3628, + 'h', 3660, + 'k', 3628, + 'm', 3630, + 'n', 3665, + 'o', 3596, + 'p', 3628, + 's', 3650, + 't', 3627, + 'u', 3666, + 'w', 3653, + '{', 2414, + 0xb5, 3666, + '\t', 2806, + ' ', 2806, + 'B', 2731, + 'b', 2731, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 249: + case 133: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 4316, - '0', 3325, - 'E', 4348, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4339, - '`', 626, - 'e', 4310, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 3604, + '0', 2590, + 'E', 3639, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3631, + '`', 485, + 'e', 3598, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 250: + case 134: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 4316, - '0', 3375, - 'E', 4334, - 'G', 4337, - 'K', 4337, - 'M', 4337, - 'N', 4382, - 'P', 4337, - 'T', 4337, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'd', 4353, - 'e', 4309, - 'f', 4352, - 'g', 4336, - 'h', 4368, - 'k', 4336, - 'm', 4338, - 'n', 4373, - 'o', 4308, - 'p', 4336, - 's', 4358, - 't', 4335, - 'u', 4374, - 'w', 4361, - '{', 3091, - 0xb5, 4374, - '\t', 3507, - ' ', 3507, - 'B', 3420, - 'b', 3420, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 3604, + '0', 2663, + 'E', 3626, + 'G', 3629, + 'K', 3629, + 'M', 3629, + 'N', 3674, + 'P', 3629, + 'T', 3629, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'd', 3645, + 'e', 3597, + 'f', 3644, + 'g', 3628, + 'h', 3660, + 'k', 3628, + 'm', 3630, + 'n', 3665, + 'o', 3596, + 'p', 3628, + 's', 3650, + 't', 3627, + 'u', 3666, + 'w', 3653, + '{', 2414, + 0xb5, 3666, + '\t', 2806, + ' ', 2806, + 'B', 2731, + 'b', 2731, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 251: + case 135: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 4316, - '0', 3375, - 'E', 4337, - 'G', 4337, - 'K', 4337, - 'M', 4337, - 'N', 4382, - 'P', 4337, - 'T', 4337, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'd', 4353, - 'e', 4306, - 'f', 4352, - 'g', 4336, - 'h', 4368, - 'k', 4336, - 'm', 4338, - 'n', 4373, - 'o', 4308, - 'p', 4336, - 's', 4358, - 't', 4335, - 'u', 4374, - 'w', 4361, - '{', 3091, - 0xb5, 4374, - '\t', 3507, - ' ', 3507, - 'B', 3420, - 'b', 3420, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 3604, + '0', 2663, + 'E', 3629, + 'G', 3629, + 'K', 3629, + 'M', 3629, + 'N', 3674, + 'P', 3629, + 'T', 3629, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'd', 3645, + 'e', 3594, + 'f', 3644, + 'g', 3628, + 'h', 3660, + 'k', 3628, + 'm', 3630, + 'n', 3665, + 'o', 3596, + 'p', 3628, + 's', 3650, + 't', 3627, + 'u', 3666, + 'w', 3653, + '{', 2414, + 0xb5, 3666, + '\t', 2806, + ' ', 2806, + 'B', 2731, + 'b', 2731, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 252: + case 136: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 4316, - '0', 3375, - 'E', 4348, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4310, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 3604, + '0', 2663, + 'E', 3639, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3598, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 253: + case 137: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 4316, - '0', 3375, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4307, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 3604, + '0', 2663, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3595, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 254: + case 138: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 4315, - '0', 3325, - 'E', 4348, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4339, - '`', 626, - 'e', 4310, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 3603, + '0', 2590, + 'E', 3639, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3631, + '`', 485, + 'e', 3598, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 255: + case 139: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 4315, - '0', 3375, - 'E', 4348, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4310, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 3603, + '0', 2663, + 'E', 3639, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3598, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 256: + case 140: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 4315, - '0', 3375, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4307, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 3603, + '0', 2663, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3595, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 257: + case 141: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 3294, - '0', 3375, - 'E', 4334, - 'G', 4337, - 'K', 4337, - 'M', 4337, - 'N', 4382, - 'P', 4337, - 'T', 4337, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'd', 4353, - 'e', 4309, - 'f', 4352, - 'g', 4336, - 'h', 4368, - 'k', 4336, - 'm', 4338, - 'n', 4373, - 'o', 4308, - 'p', 4336, - 's', 4358, - 't', 4335, - 'u', 4374, - 'w', 4361, - '{', 3091, - 0xb5, 4374, - '\t', 3507, - ' ', 3507, - 'B', 3420, - 'b', 3420, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 2564, + '0', 2663, + 'E', 3626, + 'G', 3629, + 'K', 3629, + 'M', 3629, + 'N', 3674, + 'P', 3629, + 'T', 3629, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'd', 3645, + 'e', 3597, + 'f', 3644, + 'g', 3628, + 'h', 3660, + 'k', 3628, + 'm', 3630, + 'n', 3665, + 'o', 3596, + 'p', 3628, + 's', 3650, + 't', 3627, + 'u', 3666, + 'w', 3653, + '{', 2414, + 0xb5, 3666, + '\t', 2806, + ' ', 2806, + 'B', 2731, + 'b', 2731, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 258: + case 142: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 3294, - '0', 3375, - 'E', 4348, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4310, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 2564, + '0', 2663, + 'E', 3639, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3598, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 259: + case 143: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 3285, - '0', 3375, - 'E', 4348, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4310, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 2554, + '0', 2663, + 'E', 3639, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3598, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 260: + case 144: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3516, - ',', 1875, - '-', 2976, - '.', 3287, - '0', 3328, - 'I', 1318, - 'N', 1313, - '_', 1156, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2529, + ',', 1560, + '-', 2354, + '.', 2558, + '0', 2593, + 'I', 1003, + 'N', 1000, + '_', 892, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 952, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(340); + lookahead == ' ') SKIP(224); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 261: + case 145: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3516, - ',', 1875, - '-', 2976, - '.', 1131, - '0', 3328, - 'I', 1318, - 'N', 1313, - '_', 1156, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2529, + ',', 1560, + '-', 2354, + '.', 874, + '0', 2593, + 'I', 1003, + 'N', 1000, + '_', 892, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 952, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(340); + lookahead == ' ') SKIP(224); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 262: + case 146: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3516, - ',', 3506, - '-', 2976, - '.', 3287, - '0', 3328, - 'I', 1318, - 'N', 1313, - '[', 2907, - ']', 2908, - '_', 1156, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2529, + ',', 2805, + '-', 2354, + '.', 2558, + '0', 2593, + 'I', 1003, + 'N', 1000, + '[', 2300, + ']', 2301, + '_', 892, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 952, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 263: + case 147: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 3516, - ',', 3506, - '-', 2976, - '.', 1131, - '0', 3328, - 'I', 1318, - 'N', 1313, - '_', 1156, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2529, + ',', 2805, + '-', 2354, + '.', 874, + '0', 2593, + 'I', 1003, + 'N', 1000, + '[', 2752, + ']', 2301, + '_', 892, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 952, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 264: + case 148: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4228, - ',', 2911, - '-', 4227, - '.', 4222, - '0', 3326, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4249, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3520, + ',', 2304, + '-', 3519, + '.', 3514, + '0', 2591, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3541, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(341); + lookahead == ' ') SKIP(225); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 265: + case 149: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4228, - ',', 2911, - '-', 4227, - '.', 3283, - '0', 3326, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4249, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3520, + ',', 2304, + '-', 3519, + '.', 2552, + '0', 2591, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3541, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(341); + lookahead == ' ') SKIP(225); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 266: + case 150: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4228, - ',', 3506, - '-', 4227, - '.', 4222, - '0', 3326, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4249, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3520, + ',', 2805, + '-', 3519, + '.', 3514, + '0', 2591, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3541, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 267: + case 151: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 3212, - '+', 4228, - ',', 3506, - '-', 4227, - '.', 3283, - '0', 3326, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4249, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 3520, + ',', 2805, + '-', 3519, + '.', 2552, + '0', 2591, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3541, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 268: + case 152: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 2911, - '-', 2970, - '.', 1340, - '0', 3376, - ':', 3511, - '?', 3181, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 268, - ' ', 268, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2304, + '-', 2347, + '.', 1030, + '0', 2664, + ':', 2810, + '?', 2476, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 152, + ' ', 152, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 269: + case 153: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 2911, - '-', 2970, - '.', 1340, - '0', 3376, - ':', 3511, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 269, - ' ', 269, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2304, + '-', 2347, + '.', 1030, + '0', 2664, + ':', 2810, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 153, + ' ', 153, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 270: + case 154: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 2911, - '-', 2970, - '.', 3286, - '0', 3376, - ':', 3511, - '?', 3181, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 268, - ' ', 268, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2304, + '-', 2347, + '.', 2556, + '0', 2664, + ':', 2810, + '?', 2476, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 152, + ' ', 152, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 271: + case 155: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 2911, - '-', 2970, - '.', 3286, - '0', 3376, - ':', 3511, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 269, - ' ', 269, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2304, + '-', 2347, + '.', 2556, + '0', 2664, + ':', 2810, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 153, + ' ', 153, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 272: + case 156: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 3506, - '-', 2970, - '.', 3297, - '0', 3376, - '<', 2939, - 'I', 1861, - 'N', 1856, - ']', 2908, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2805, + '-', 2347, + '.', 2555, + '0', 2664, + '<', 1792, + 'I', 1546, + 'N', 1539, + ']', 2301, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 2806, + ' ', 2806, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 273: + case 157: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 3506, - '-', 2970, - '.', 3297, - '0', 3376, - '?', 3181, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2805, + '-', 2347, + '.', 2555, + '0', 2664, + '?', 2476, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 2806, + ' ', 2806, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 274: + case 158: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 3506, - '-', 2970, - '.', 3297, - '0', 3376, - 'E', 1603, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2805, + '-', 2347, + '.', 2555, + '0', 2664, + 'E', 1297, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1296, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 2806, + ' ', 2806, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 275: + case 159: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 3506, - '-', 2970, - '.', 1340, - '0', 3376, - 'E', 1603, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2805, + '-', 2347, + '.', 1030, + '0', 2664, + 'E', 1297, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1296, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 2806, + ' ', 2806, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 276: + case 160: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 3506, - '-', 2970, - '.', 1340, - '0', 3327, - 'E', 1603, - 'I', 1861, - 'N', 1856, - '_', 1601, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2805, + '-', 2347, + '.', 1030, + '0', 2592, + 'E', 1297, + 'I', 1546, + 'N', 1539, + '_', 1299, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1296, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 2806, + ' ', 2806, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 277: + case 161: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 3506, - '-', 2970, - '.', 3286, - '0', 3376, - '?', 3181, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2805, + '-', 2347, + '.', 2556, + '0', 2664, + '?', 2476, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 2806, + ' ', 2806, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 278: + case 162: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 3506, - '-', 2970, - '.', 3286, - '0', 3376, - 'E', 1603, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2805, + '-', 2347, + '.', 2556, + '0', 2664, + 'E', 1297, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1296, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 2806, + ' ', 2806, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 279: + case 163: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 3506, - '-', 2970, - '.', 3286, - '0', 3376, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2805, + '-', 2347, + '.', 2556, + '0', 2664, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 2806, + ' ', 2806, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 280: + case 164: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 3506, - '-', 2970, - '.', 1343, - '0', 3376, - 'E', 1603, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2805, + '-', 2347, + '.', 1029, + '0', 2664, + 'E', 1297, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1296, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 2806, + ' ', 2806, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 281: + case 165: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 3506, - '-', 2970, - '.', 1343, - '0', 3376, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2805, + '-', 2347, + '.', 1029, + '0', 2664, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 2806, + ' ', 2806, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 282: + case 166: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - ',', 3506, - '-', 2970, - '.', 1343, - '0', 3327, - 'E', 1603, - 'I', 1861, - 'N', 1856, - '_', 1601, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + ',', 2805, + '-', 2347, + '.', 1029, + '0', 2592, + 'E', 1297, + 'I', 1546, + 'N', 1539, + '_', 1299, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1296, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, + '\t', 2806, + ' ', 2806, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 283: + case 167: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 3297, - '0', 3376, - '?', 3181, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 2555, + '0', 2664, + '?', 2476, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(286); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(170); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 284: + case 168: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 3297, - '0', 3376, - 'E', 1603, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 2555, + '0', 2664, + 'E', 1297, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1296, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 285: + case 169: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 3297, - '0', 3376, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 2555, + '0', 2664, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 286: + case 170: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 1340, - '0', 3376, - '?', 3181, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 1030, + '0', 2664, + '?', 2476, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(286); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(170); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 287: + case 171: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 1340, - '0', 3376, - 'E', 1603, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 1030, + '0', 2664, + 'E', 1297, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1296, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 288: + case 172: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 1340, - '0', 3376, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 1030, + '0', 2664, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 289: + case 173: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 1340, - '0', 3327, - 'E', 1603, - 'I', 1861, - 'N', 1856, - '_', 1601, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 1030, + '0', 2592, + 'E', 1297, + 'I', 1546, + 'N', 1539, + '_', 1299, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1296, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == ' ') SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 290: + case 174: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 3286, - '0', 3376, - '?', 3181, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 2556, + '0', 2664, + '?', 2476, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(286); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(170); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 291: + case 175: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 3286, - '0', 3376, - 'E', 1603, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 2556, + '0', 2664, + 'E', 1297, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1296, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 292: + case 176: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 3286, - '0', 3376, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 2556, + '0', 2664, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 293: + case 177: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 1343, - '0', 3376, - 'E', 1603, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 1029, + '0', 2664, + 'E', 1297, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1296, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 294: + case 178: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 1343, - '0', 3376, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 1029, + '0', 2664, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 295: + case 179: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3517, - '-', 2970, - '.', 1343, - '0', 3327, - 'E', 1603, - 'I', 1861, - 'N', 1856, - '_', 1601, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2525, + '-', 2347, + '.', 1029, + '0', 2592, + 'E', 1297, + 'I', 1546, + 'N', 1539, + '_', 1299, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1296, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == ' ') SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 296: + case 180: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3755, - ',', 3506, - '-', 567, - '.', 3752, - '0', 3370, - 'N', 3814, - '[', 2907, - '_', 3095, - '`', 626, - 'e', 3735, - 'f', 3782, - 'n', 3810, - 'o', 3736, - 't', 3797, - '{', 3091, - '}', 3092, - '\t', 3507, - ' ', 3507, - 'I', 3818, - 'i', 3818, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2966, + ',', 2805, + '-', 440, + '.', 2962, + '0', 2658, + 'N', 3024, + '[', 2300, + '_', 2419, + '`', 485, + 'e', 2957, + 'f', 2992, + 'n', 3020, + 'o', 2958, + 't', 3007, + '{', 2414, + '}', 2415, + '\t', 2806, + ' ', 2806, + 'I', 3027, + 'i', 3027, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); END_STATE(); - case 297: + case 181: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 4221, - '0', 3371, - ';', 3523, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 297, - ' ', 297, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 3513, + '0', 2659, + ';', 2813, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 181, + ' ', 181, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(583); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(453); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 298: + case 182: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 4221, - '0', 3371, - '?', 3181, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 3513, + '0', 2659, + '?', 2476, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(298); + lookahead == ' ') SKIP(182); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 299: + case 183: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 4221, - '0', 3371, - 'E', 4255, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4216, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 3513, + '0', 2659, + 'E', 3543, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3509, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 300: + case 184: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 4221, - '0', 3371, - 'N', 4277, - '[', 3442, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 3513, + '0', 2659, + 'N', 3565, + '[', 2752, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 301: + case 185: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 4221, - '0', 3371, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 3513, + '0', 2659, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 302: + case 186: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 4221, - '0', 3326, - 'E', 4255, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4249, - '`', 626, - 'e', 4216, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 3513, + '0', 2591, + 'E', 3543, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3541, + '`', 485, + 'e', 3509, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 303: + case 187: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 4223, - '0', 3371, - 'E', 4255, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4216, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 3515, + '0', 2659, + 'E', 3543, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3509, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 304: + case 188: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 4223, - '0', 3371, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 3515, + '0', 2659, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 305: + case 189: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 4223, - '0', 3326, - 'E', 4255, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4249, - '`', 626, - 'e', 4216, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 3515, + '0', 2591, + 'E', 3543, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3541, + '`', 485, + 'e', 3509, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 306: + case 190: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 3292, - '0', 3371, - '?', 3181, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 2562, + '0', 2659, + '?', 2476, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(298); + lookahead == ' ') SKIP(182); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 307: + case 191: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 3292, - '0', 3371, - 'E', 4255, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4216, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 2562, + '0', 2659, + 'E', 3543, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3509, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 308: + case 192: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 3292, - '0', 3371, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 2562, + '0', 2659, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 309: + case 193: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 3278, - '0', 3371, - ';', 3523, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 297, - ' ', 297, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 2547, + '0', 2659, + ';', 2813, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 181, + ' ', 181, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(583); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(453); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 310: + case 194: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 3278, - '0', 3371, - '?', 3181, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 2547, + '0', 2659, + '?', 2476, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(298); + lookahead == ' ') SKIP(182); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 311: + case 195: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 2911, - '-', 4224, - '.', 3278, - '0', 3371, - 'E', 4255, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4216, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2304, + '-', 3516, + '.', 2547, + '0', 2659, + 'E', 3543, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3509, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 312: + case 196: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 4221, - '0', 3371, - 'E', 4255, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4216, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 3513, + '0', 2659, + 'E', 3543, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3509, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 313: + case 197: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 4221, - '0', 3371, - 'N', 4277, - '[', 3442, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 3513, + '0', 2659, + 'N', 3565, + '[', 2752, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 314: + case 198: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 4221, - '0', 3371, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 3513, + '0', 2659, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 315: + case 199: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 4221, - '0', 3326, - 'E', 4255, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4249, - '`', 626, - 'e', 4216, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 3513, + '0', 2591, + 'E', 3543, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3541, + '`', 485, + 'e', 3509, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 316: + case 200: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 4223, - '0', 3371, - 'E', 4255, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4216, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 3515, + '0', 2659, + 'E', 3543, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3509, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 317: + case 201: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 4223, - '0', 3371, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 3515, + '0', 2659, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 318: + case 202: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 4223, - '0', 3326, - 'E', 4255, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4249, - '`', 626, - 'e', 4216, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 3515, + '0', 2591, + 'E', 3543, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3541, + '`', 485, + 'e', 3509, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2606); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 319: + case 203: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 3292, - '0', 3371, - '?', 3181, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 2562, + '0', 2659, + '?', 2476, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 320: + case 204: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 3292, - '0', 3371, - 'E', 4255, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4216, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 2562, + '0', 2659, + 'E', 3543, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3509, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 321: + case 205: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 3292, - '0', 3371, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 2562, + '0', 2659, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 322: + case 206: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 3278, - '0', 3371, - ';', 3523, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3508, - ' ', 3508, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 2547, + '0', 2659, + ';', 2813, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2807, + ' ', 2807, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3509); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 323: + case 207: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 3278, - '0', 3371, - '?', 3181, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 2547, + '0', 2659, + '?', 2476, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 324: + case 208: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 3278, - '0', 3371, - 'E', 4255, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4216, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 2547, + '0', 2659, + 'E', 3543, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3509, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 325: + case 209: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4225, - ',', 3506, - '-', 4224, - '.', 3278, - '0', 3371, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4283, - 'i', 4283, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3517, + ',', 2805, + '-', 3516, + '.', 2547, + '0', 2659, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3571, + 'i', 3571, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 326: + case 210: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3519, - ',', 3506, - '-', 2972, - '.', 1132, - '0', 3377, - 'I', 1318, - 'N', 1313, - '[', 3442, - '_', 1151, - '`', 626, - '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, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 873, + '0', 2665, + 'I', 1003, + 'N', 1000, + '[', 2752, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 952, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4591); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 327: + case 211: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 2911, - '-', 4324, - '.', 4316, - '0', 3325, - 'E', 4334, - 'G', 4337, - 'K', 4337, - 'M', 4337, - 'N', 4382, - 'P', 4337, - 'T', 4337, - '[', 2907, - ']', 2908, - '_', 4339, - '`', 626, - 'd', 4353, - 'e', 4309, - 'f', 4352, - 'g', 4336, - 'h', 4368, - 'k', 4336, - 'm', 4338, - 'n', 4373, - 'o', 4308, - 'p', 4336, - 's', 4358, - 't', 4335, - 'u', 4374, - 'w', 4361, - '{', 3091, - 0xb5, 4374, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2304, + '-', 3612, + '.', 3604, + '0', 2590, + 'E', 3626, + 'G', 3629, + 'K', 3629, + 'M', 3629, + 'N', 3674, + 'P', 3629, + 'T', 3629, + '[', 2300, + ']', 2301, + '_', 3631, + '`', 485, + 'd', 3645, + 'e', 3597, + 'f', 3644, + 'g', 3628, + 'h', 3660, + 'k', 3628, + 'm', 3630, + 'n', 3665, + 'o', 3596, + 'p', 3628, + 's', 3650, + 't', 3627, + 'u', 3666, + 'w', 3653, + '{', 2414, + 0xb5, 3666, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 328: + case 212: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 2911, - '-', 4324, - '.', 4316, - '0', 3325, - 'E', 4348, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4339, - '`', 626, - 'e', 4310, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2304, + '-', 3612, + '.', 3604, + '0', 2590, + 'E', 3639, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3631, + '`', 485, + 'e', 3598, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 329: + case 213: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 2911, - '-', 4324, - '.', 4316, - '0', 3375, - 'E', 4334, - 'G', 4337, - 'K', 4337, - 'M', 4337, - 'N', 4382, - 'P', 4337, - 'T', 4337, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'd', 4353, - 'e', 4309, - 'f', 4352, - 'g', 4336, - 'h', 4368, - 'k', 4336, - 'm', 4338, - 'n', 4373, - 'o', 4308, - 'p', 4336, - 's', 4358, - 't', 4335, - 'u', 4374, - 'w', 4361, - '{', 3091, - 0xb5, 4374, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2304, + '-', 3612, + '.', 3604, + '0', 2663, + 'E', 3626, + 'G', 3629, + 'K', 3629, + 'M', 3629, + 'N', 3674, + 'P', 3629, + 'T', 3629, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'd', 3645, + 'e', 3597, + 'f', 3644, + 'g', 3628, + 'h', 3660, + 'k', 3628, + 'm', 3630, + 'n', 3665, + 'o', 3596, + 'p', 3628, + 's', 3650, + 't', 3627, + 'u', 3666, + 'w', 3653, + '{', 2414, + 0xb5, 3666, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 330: + case 214: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 2911, - '-', 4324, - '.', 4316, - '0', 3375, - 'E', 4337, - 'G', 4337, - 'K', 4337, - 'M', 4337, - 'N', 4382, - 'P', 4337, - 'T', 4337, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'd', 4353, - 'e', 4306, - 'f', 4352, - 'g', 4336, - 'h', 4368, - 'k', 4336, - 'm', 4338, - 'n', 4373, - 'o', 4308, - 'p', 4336, - 's', 4358, - 't', 4335, - 'u', 4374, - 'w', 4361, - '{', 3091, - 0xb5, 4374, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2304, + '-', 3612, + '.', 3604, + '0', 2663, + 'E', 3629, + 'G', 3629, + 'K', 3629, + 'M', 3629, + 'N', 3674, + 'P', 3629, + 'T', 3629, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'd', 3645, + 'e', 3594, + 'f', 3644, + 'g', 3628, + 'h', 3660, + 'k', 3628, + 'm', 3630, + 'n', 3665, + 'o', 3596, + 'p', 3628, + 's', 3650, + 't', 3627, + 'u', 3666, + 'w', 3653, + '{', 2414, + 0xb5, 3666, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 331: + case 215: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 2911, - '-', 4324, - '.', 4316, - '0', 3375, - 'E', 4348, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4310, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2304, + '-', 3612, + '.', 3604, + '0', 2663, + 'E', 3639, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3598, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 332: + case 216: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 2911, - '-', 4324, - '.', 4316, - '0', 3375, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4307, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2304, + '-', 3612, + '.', 3604, + '0', 2663, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3595, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 333: + case 217: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 2911, - '-', 4324, - '.', 4315, - '0', 3325, - 'E', 4348, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4339, - '`', 626, - 'e', 4310, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2304, + '-', 3612, + '.', 3603, + '0', 2590, + 'E', 3639, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3631, + '`', 485, + 'e', 3598, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2605); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 334: + case 218: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 2911, - '-', 4324, - '.', 4315, - '0', 3375, - 'E', 4348, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4310, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2304, + '-', 3612, + '.', 3603, + '0', 2663, + 'E', 3639, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3598, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 335: + case 219: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 2911, - '-', 4324, - '.', 4315, - '0', 3375, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4307, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2304, + '-', 3612, + '.', 3603, + '0', 2663, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3595, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 336: + case 220: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 2911, - '-', 4324, - '.', 3294, - '0', 3375, - 'E', 4334, - 'G', 4337, - 'K', 4337, - 'M', 4337, - 'N', 4382, - 'P', 4337, - 'T', 4337, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'd', 4353, - 'e', 4309, - 'f', 4352, - 'g', 4336, - 'h', 4368, - 'k', 4336, - 'm', 4338, - 'n', 4373, - 'o', 4308, - 'p', 4336, - 's', 4358, - 't', 4335, - 'u', 4374, - 'w', 4361, - '{', 3091, - 0xb5, 4374, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2304, + '-', 3612, + '.', 2564, + '0', 2663, + 'E', 3626, + 'G', 3629, + 'K', 3629, + 'M', 3629, + 'N', 3674, + 'P', 3629, + 'T', 3629, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'd', 3645, + 'e', 3597, + 'f', 3644, + 'g', 3628, + 'h', 3660, + 'k', 3628, + 'm', 3630, + 'n', 3665, + 'o', 3596, + 'p', 3628, + 's', 3650, + 't', 3627, + 'u', 3666, + 'w', 3653, + '{', 2414, + 0xb5, 3666, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 337: + case 221: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 2911, - '-', 4324, - '.', 3294, - '0', 3375, - 'E', 4348, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4310, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2304, + '-', 3612, + '.', 2564, + '0', 2663, + 'E', 3639, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3598, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 338: + case 222: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 2911, - '-', 4324, - '.', 3285, - '0', 3375, - 'E', 4348, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4310, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2304, + '-', 3612, + '.', 2554, + '0', 2663, + 'E', 3639, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3598, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + lookahead == 'i') ADVANCE(3681); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 339: + case 223: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4325, - ',', 3506, - '-', 4324, - '.', 4315, - '0', 3375, - 'N', 4382, - '[', 2907, - ']', 2908, - '_', 4344, - '`', 626, - 'e', 4307, - 'f', 4352, - 'n', 4378, - 'o', 4308, - 't', 4369, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4389, - 'i', 4389, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3613, + ',', 2805, + '-', 3612, + '.', 3603, + '0', 2663, + 'N', 3674, + '[', 2300, + ']', 2301, + '_', 3643, + '`', 485, + 'e', 3595, + 'f', 3644, + 'n', 3670, + 'o', 3596, + 't', 3661, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3681, + 'i', 3681, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2686); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 340: + case 224: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 3520, - '-', 2975, - '.', 1341, - '0', 3376, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 2528, + '-', 2353, + '.', 1031, + '0', 2664, + 'I', 1546, + 'N', 1539, + '_', 1291, + '`', 485, + 'a', 1407, + 'b', 1459, + 'c', 1306, + 'd', 1333, + 'e', 1416, + 'f', 1300, + 'h', 1386, + 'i', 1284, + 'l', 1348, + 'm', 1303, + 'n', 1518, + 'o', 1532, + 'r', 1334, + 's', 1433, + 't', 1451, + 'u', 1486, + 'w', 1379, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(340); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 341: + case 225: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '$', 2912, - '\'', 519, - '(', 2909, - '+', 4228, - ',', 2911, - '-', 4227, - '.', 4222, - '0', 3371, - 'N', 4277, - '[', 2907, - ']', 2908, - '_', 4244, - '`', 626, - 'e', 4214, - 'f', 4257, - 'n', 4274, - 'o', 4215, - 't', 4267, - '{', 3091, + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2302, + '+', 3520, + ',', 2304, + '-', 3519, + '.', 3514, + '0', 2659, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(341); + lookahead == ' ') SKIP(225); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); + lookahead == 'i') ADVANCE(3571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 342: + case 226: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + '+', 442, + '-', 2349, + '.', 443, + '0', 2895, + '=', 2876, + 'N', 2921, + '[', 2300, + '_', 2896, + '`', 485, + 'f', 2903, + 'n', 2910, + 't', 2911, + '{', 2414, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(232); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2926); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2902); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + END_STATE(); + case 227: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '\'', 519, - '+', 1337, - ',', 3506, - '-', 567, - '.', 1593, - 'I', 1861, - 'N', 1856, - ']', 2908, - '_', 1596, - '`', 626, - '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', 3507, - ' ', 3507, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 1025, + '-', 2347, + '.', 1026, + '0', 2657, + ';', 2813, + 'I', 1244, + 'N', 1241, + '[', 2300, + '^', 2819, + '_', 1042, + '`', 485, + 'a', 1146, + 'b', 1178, + 'c', 1044, + 'd', 1083, + 'e', 1145, + 'f', 1047, + 'h', 1124, + 'i', 1040, + 'l', 1092, + 'm', 1049, + 'n', 1162, + 'o', 1238, + 'r', 1107, + 's', 1168, + 't', 1173, + 'u', 1209, + 'w', 1119, + '{', 2414, + '\t', 227, + ' ', 227, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(453); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); END_STATE(); - case 343: + case 228: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '\'', 519, - '+', 1337, - '-', 550, - '.', 3301, - '?', 3181, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 1025, + '-', 2347, + '.', 1026, + '0', 2657, + 'I', 1244, + 'N', 1241, + '[', 2300, + '^', 2819, + '_', 1042, + '`', 485, + 'a', 1146, + 'b', 1194, + 'c', 1045, + 'd', 1084, + 'e', 1145, + 'f', 1047, + 'h', 1124, + 'i', 1041, + 'l', 1092, + 'm', 1058, + 'n', 1162, + 'o', 1238, + 'r', 1106, + 's', 1168, + 't', 1179, + 'u', 1209, + 'w', 1116, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); + lookahead == ' ') SKIP(228); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); END_STATE(); - case 344: + case 229: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '\'', 519, - '+', 1337, - '-', 550, - '.', 3301, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 442, + '-', 2335, + '.', 443, + '0', 2660, + '=', 839, + '@', 2325, + 'N', 654, + '[', 2300, + '_', 474, + '`', 485, + 'f', 488, + 'n', 574, + 't', 590, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); + lookahead == ' ') SKIP(230); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); - case 345: + case 230: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '\'', 519, - '+', 1337, - '-', 550, - '.', 1593, - '=', 3652, - 'I', 2800, - 'N', 2792, - '_', 2668, - '`', 626, - 'a', 2723, - 'b', 2752, - 'c', 2680, - 'd', 2689, - 'e', 2726, - 'f', 2675, - 'h', 2714, - 'i', 2663, - 'l', 2696, - 'm', 2677, - 'n', 2690, - 'o', 2784, - 'r', 2691, - 's', 2739, - 't', 2747, - 'u', 2762, - 'w', 2711, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 442, + '-', 2335, + '.', 443, + '0', 2660, + '=', 839, + 'N', 654, + '[', 2300, + '_', 474, + '`', 485, + 'f', 488, + 'n', 574, + 't', 590, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2668); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < 'A' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(1875); + lookahead == ' ') SKIP(230); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); - case 346: + case 231: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '\'', 519, - '+', 1337, - '-', 550, - '.', 1593, - '?', 3181, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 442, + '-', 2348, + '.', 443, + '0', 2660, + 'N', 654, + '[', 2752, + '_', 474, + '`', 485, + 'f', 488, + 'n', 574, + 't', 590, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); + lookahead == ' ') SKIP(232); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); - case 347: + case 232: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '\'', 519, - '+', 1337, - '-', 550, - '.', 1593, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 626, - '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, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 442, + '-', 2348, + '.', 443, + '0', 2660, + 'N', 654, + '[', 2300, + '_', 474, + '`', 485, + 'f', 488, + 'n', 574, + 't', 590, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); + lookahead == ' ') SKIP(232); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(667); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); - case 348: + case 233: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '\'', 519, - '+', 1337, - '-', 3865, - '.', 1342, - 'B', 3420, - 'E', 1582, - 'G', 1587, - 'I', 1861, - 'K', 1587, - 'M', 1587, - 'N', 1856, - 'P', 1587, - 'T', 1587, - '_', 1596, - '`', 626, - 'a', 1722, - 'b', 3422, - '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, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 442, + '-', 2348, + '.', 443, + '0', 2055, + '=', 2876, + 'N', 2183, + '[', 2300, + '_', 2056, + '`', 485, + 'f', 2063, + 'n', 2132, + 't', 2137, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(232); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2062); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); + END_STATE(); + case 234: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 2966, + '-', 440, + '.', 2962, + '0', 2658, + ':', 2810, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2957, + 'f', 2992, + 'n', 3020, + 'o', 2958, + 't', 3007, + '{', 2414, + '\t', 234, + ' ', 234, + 'I', 3027, + 'i', 3027, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '0' || ';' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); END_STATE(); - case 349: + case 235: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '\'', 519, - '+', 1337, - '-', 3865, - '.', 1342, - 'B', 3420, - 'E', 1582, - 'G', 1587, - 'I', 1861, - 'K', 1587, - 'M', 1587, - 'N', 1856, - 'P', 1587, - 'T', 1587, - '_', 1601, - '`', 626, - 'a', 1722, - 'b', 3422, - '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, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 2966, + '-', 440, + '.', 2962, + ':', 2810, + 'N', 3024, + '_', 2979, + '`', 485, + 'e', 2957, + 'f', 2992, + 'n', 3020, + 'o', 2958, + 't', 3007, + '\t', 235, + ' ', 235, + 'I', 3027, + 'i', 3027, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '0' || ';' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); END_STATE(); - case 350: + case 236: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '\'', 519, - '+', 1337, - '-', 3865, - '.', 1342, - 'B', 3420, - 'E', 1587, - 'G', 1587, - 'I', 1861, - 'K', 1587, - 'M', 1587, - 'N', 1856, - 'P', 1587, - 'T', 1587, - '_', 1596, - '`', 626, - 'a', 1722, - 'b', 3422, - '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, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 2966, + '-', 440, + '.', 2962, + 'N', 3024, + '_', 2979, + '`', 485, + 'e', 2957, + 'f', 2992, + 'n', 3020, + 'o', 2958, + 't', 3007, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(236); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3027); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); + END_STATE(); + case 237: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 3517, + '-', 3516, + '.', 3518, + '0', 2659, + 'N', 3565, + '[', 2300, + ']', 2301, + '_', 3532, + '`', 485, + 'e', 3507, + 'f', 3545, + 'n', 3562, + 'o', 3508, + 't', 3555, + '{', 2414, + '\t', 2809, + ' ', 2809, + 'I', 3571, + 'i', 3571, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); + END_STATE(); + case 238: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 3799, + '-', 3798, + '.', 3797, + '0', 2661, + 'N', 3830, + '[', 2300, + '_', 3805, + '`', 485, + 'e', 3792, + 'f', 3810, + 'n', 3827, + 'o', 3793, + 't', 3820, + '{', 2414, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(238); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3836); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2684); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || ';' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3850); + END_STATE(); + case 239: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 3081, + '-', 2355, + '.', 3078, + '0', 2588, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'N', 3213, + 'P', 3103, + 'T', 3103, + '[', 2300, + '_', 3106, + '`', 485, + 'd', 3121, + 'e', 3098, + 'f', 3120, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3165, + 'p', 3102, + 's', 3133, + 't', 3101, + 'u', 3182, + 'w', 3146, + '{', 2414, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(232); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); + END_STATE(); + case 240: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 3081, + '-', 2355, + '.', 3078, + '0', 2662, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'N', 3213, + 'P', 3103, + 'T', 3103, + '[', 2300, + '_', 3119, + '`', 485, + 'd', 3121, + 'e', 3098, + 'f', 3120, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3165, + 'p', 3102, + 's', 3133, + 't', 3101, + 'u', 3182, + 'w', 3146, + '{', 2414, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(232); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); + END_STATE(); + case 241: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 3081, + '-', 2355, + '.', 3078, + '0', 2662, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'N', 3213, + 'P', 3103, + 'T', 3103, + '[', 2300, + '_', 3119, + '`', 485, + 'd', 3121, + 'e', 3102, + 'f', 3120, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3165, + 'p', 3102, + 's', 3133, + 't', 3101, + 'u', 3182, + 'w', 3146, + '{', 2414, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(232); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); + END_STATE(); + case 242: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 3081, + '-', 2355, + '.', 3077, + '0', 2662, + 'N', 3213, + '[', 2300, + '_', 3119, + '`', 485, + 'f', 3120, + 'n', 3166, + 't', 3173, + '{', 2414, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(232); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); + END_STATE(); + case 243: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 3081, + '-', 2355, + '.', 2563, + '0', 2662, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'N', 3213, + 'P', 3103, + 'T', 3103, + '[', 2300, + '_', 3119, + '`', 485, + 'd', 3121, + 'e', 3098, + 'f', 3120, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3165, + 'p', 3102, + 's', 3133, + 't', 3101, + 'u', 3182, + 'w', 3146, + '{', 2414, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(232); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); + END_STATE(); + case 244: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + ',', 2805, + '-', 441, + '.', 1288, + 'I', 1548, + 'N', 1540, + ']', 2301, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + '\t', 2806, + ' ', 2806, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + END_STATE(); + case 245: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 429, + '.', 2571, + '?', 2476, + 'I', 1548, + 'N', 1540, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); + END_STATE(); + case 246: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 429, + '.', 2571, + 'I', 1548, + 'N', 1540, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); + END_STATE(); + case 247: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 429, + '.', 1288, + ':', 2810, + 'I', 1548, + 'N', 1540, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + '\t', 247, + ' ', 247, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + END_STATE(); + case 248: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 429, + '.', 1288, + '=', 2876, + 'I', 2196, + 'N', 2184, + '_', 2056, + '`', 485, + 'a', 2112, + 'b', 2144, + 'c', 2067, + 'd', 2077, + 'e', 2117, + 'f', 2069, + 'h', 2103, + 'i', 2051, + 'l', 2083, + 'm', 2064, + 'n', 2171, + 'o', 2176, + 'r', 2078, + 's', 2131, + 't', 2139, + 'u', 2154, + 'w', 2100, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < 'A' || '[' < lookahead) && + (lookahead < ']' || '}' < lookahead)) ADVANCE(1560); + END_STATE(); + case 249: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 429, + '.', 1288, + '?', 2476, + 'I', 1548, + 'N', 1540, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); + END_STATE(); + case 250: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 429, + '.', 1288, + 'I', 1548, + 'N', 1540, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); + END_STATE(); + case 251: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 3070, + '.', 1288, + 'I', 1548, + 'N', 1540, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + END_STATE(); + case 252: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 3070, + '.', 1032, + 'B', 2731, + 'E', 1278, + 'G', 1283, + 'I', 1548, + 'K', 1283, + 'M', 1283, + 'N', 1540, + 'P', 1283, + 'T', 1283, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 2736, + 'c', 1315, + 'd', 1311, + 'e', 1277, + 'f', 1301, + 'g', 1282, + 'h', 1394, + 'i', 1286, + 'k', 1282, + 'l', 1368, + 'm', 1279, + 'n', 1482, + 'o', 1533, + 'p', 1282, + 'r', 1369, + 's', 1350, + 't', 1281, + 'u', 1484, + 'w', 1382, + 0xb5, 1483, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 351: + case 253: ADVANCE_MAP( - '"', 3482, - '#', 4780, - '\'', 519, - '+', 1337, - '-', 3865, - '.', 3290, - 'B', 3420, - 'E', 1582, - 'G', 1587, - 'I', 1861, - 'K', 1587, - 'M', 1587, - 'N', 1856, - 'P', 1587, - 'T', 1587, - '_', 1596, - '`', 626, - 'a', 1722, - 'b', 3422, - '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, + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 3070, + '.', 1032, + 'B', 2731, + 'E', 1278, + 'G', 1283, + 'I', 1548, + 'K', 1283, + 'M', 1283, + 'N', 1540, + 'P', 1283, + 'T', 1283, + '_', 1299, + '`', 485, + 'a', 1420, + 'b', 2736, + 'c', 1315, + 'd', 1311, + 'e', 1277, + 'f', 1301, + 'g', 1282, + 'h', 1394, + 'i', 1286, + 'k', 1282, + 'l', 1368, + 'm', 1279, + 'n', 1482, + 'o', 1533, + 'p', 1282, + 'r', 1369, + 's', 1350, + 't', 1281, + 'u', 1484, + 'w', 1382, + 0xb5, 1483, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); + lookahead == ' ') SKIP(250); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == '^') ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 352: - if (lookahead == '"') ADVANCE(3482); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '\'') ADVANCE(519); - if (lookahead == '`') ADVANCE(626); + case 254: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 3070, + '.', 1032, + 'B', 2731, + 'E', 1283, + 'G', 1283, + 'I', 1548, + 'K', 1283, + 'M', 1283, + 'N', 1540, + 'P', 1283, + 'T', 1283, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 2736, + 'c', 1315, + 'd', 1311, + 'e', 1280, + 'f', 1301, + 'g', 1282, + 'h', 1394, + 'i', 1286, + 'k', 1282, + 'l', 1368, + 'm', 1279, + 'n', 1482, + 'o', 1533, + 'p', 1282, + 'r', 1369, + 's', 1350, + 't', 1281, + 'u', 1484, + 'w', 1382, + 0xb5, 1483, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(352); + lookahead == ' ') SKIP(250); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 353: - if (lookahead == '"') ADVANCE(3482); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '\'') ADVANCE(3524); - if (lookahead == '`') ADVANCE(3583); + case 255: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 3070, + '.', 2560, + 'B', 2731, + 'E', 1278, + 'G', 1283, + 'I', 1548, + 'K', 1283, + 'M', 1283, + 'N', 1540, + 'P', 1283, + 'T', 1283, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 2736, + 'c', 1315, + 'd', 1311, + 'e', 1277, + 'f', 1301, + 'g', 1282, + 'h', 1394, + 'i', 1286, + 'k', 1282, + 'l', 1368, + 'm', 1279, + 'n', 1482, + 'o', 1533, + 'p', 1282, + 'r', 1369, + 's', 1350, + 't', 1281, + 'u', 1484, + 'w', 1382, + 0xb5, 1483, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(250); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + END_STATE(); + case 256: + if (lookahead == '"') ADVANCE(2782); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '\'') ADVANCE(411); + if (lookahead == '`') ADVANCE(485); if (lookahead == '\t' || - lookahead == ' ') SKIP(352); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3592); + lookahead == ' ') SKIP(256); END_STATE(); - case 354: + case 257: + if (lookahead == '"') ADVANCE(2782); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '\'') ADVANCE(2814); + if (lookahead == '`') ADVANCE(2815); + if (lookahead == '\t' || + lookahead == ' ') SKIP(256); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(2816); + END_STATE(); + case 258: ADVANCE_MAP( - '"', 3482, - '#', 4784, - '$', 2916, - '\'', 519, - '(', 3212, - '+', 3518, - ',', 1875, - '-', 2973, - '.', 4652, - '0', 4655, - 'I', 4761, - 'N', 4753, - '_', 4657, - '`', 626, - 'a', 4703, - 'b', 4724, - 'c', 4661, - 'd', 4672, - 'e', 4708, - 'f', 4662, - 'h', 4695, - 'i', 4654, - 'l', 4685, - 'm', 4663, - 'n', 4673, - 'o', 4750, - 'r', 4674, - 's', 4714, - 't', 4720, - 'u', 4732, - 'w', 4694, - '}', 3092, + '"', 2782, + '#', 4072, + '$', 2309, + '\'', 411, + '(', 2506, + '+', 2526, + ',', 1560, + '-', 2351, + '.', 3954, + '0', 3957, + 'I', 4055, + 'N', 4052, + '_', 3959, + '`', 485, + 'a', 4003, + 'b', 4025, + 'c', 3963, + 'd', 3974, + 'e', 4009, + 'f', 3964, + 'h', 3996, + 'i', 3956, + 'l', 3984, + 'm', 3965, + 'n', 4044, + 'o', 4050, + 'r', 3975, + 's', 4015, + 't', 4021, + 'u', 4033, + 'w', 3995, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(288); + lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4773); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4657); + lookahead == '^') ADVANCE(4062); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3959); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4772); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4061); END_STATE(); - case 355: + case 259: ADVANCE_MAP( - '"', 3482, - '#', 4784, - '$', 2916, - '\'', 519, - '(', 3212, - '+', 3518, - ',', 3506, - '-', 2973, - '.', 4652, - '0', 4655, - 'I', 4761, - 'N', 4753, - '_', 4657, - '`', 626, - 'a', 4703, - 'b', 4724, - 'c', 4661, - 'd', 4672, - 'e', 4708, - 'f', 4662, - 'h', 4695, - 'i', 4654, - 'l', 4685, - 'm', 4663, - 'n', 4673, - 'o', 4750, - 'r', 4674, - 's', 4714, - 't', 4720, - 'u', 4732, - 'w', 4694, - '}', 3092, - '\t', 3507, - ' ', 3507, + '"', 2782, + '#', 4072, + '$', 2309, + '\'', 411, + '(', 2506, + '+', 2526, + ',', 2805, + '-', 2351, + '.', 3954, + '0', 3957, + 'I', 4055, + 'N', 4052, + '_', 3959, + '`', 485, + 'a', 4003, + 'b', 4025, + 'c', 3963, + 'd', 3974, + 'e', 4009, + 'f', 3964, + 'h', 3996, + 'i', 3956, + 'l', 3984, + 'm', 3965, + 'n', 4044, + 'o', 4050, + 'r', 3975, + 's', 4015, + 't', 4021, + 'u', 4033, + 'w', 3995, + '}', 2415, + '\t', 2806, + ' ', 2806, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4773); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4657); + lookahead == '^') ADVANCE(4062); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3959); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4772); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4061); END_STATE(); - case 356: + case 260: ADVANCE_MAP( - '"', 3482, - '#', 4787, - '$', 2914, - '\'', 519, - '(', 2909, - '+', 4016, - '-', 2974, - '.', 4017, - '0', 4035, - 'N', 4173, - '[', 2907, - '_', 4037, - '`', 626, - 'f', 4047, - 'n', 4110, - 't', 4118, - '{', 3091, + '"', 2782, + '#', 4075, + '$', 2307, + '\'', 411, + '(', 2302, + '+', 3276, + '-', 2352, + '.', 3277, + '0', 3298, + 'N', 3464, + '[', 2300, + '_', 3300, + '`', 485, + 'f', 3310, + 'n', 3393, + 't', 3397, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(205); + lookahead == ' ') SKIP(232); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4040); + lookahead == 'i') ADVANCE(3474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3303); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4212); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3505); END_STATE(); - case 357: + case 261: ADVANCE_MAP( - '"', 3482, - '#', 4787, - '\'', 519, - '+', 4018, - '-', 4012, - '.', 4042, - 'I', 4184, - 'N', 4174, - '_', 4046, - '`', 626, - 'a', 4094, - 'b', 4123, - 'c', 4048, - 'd', 4062, - 'e', 4092, - 'f', 4049, - 'h', 4083, - 'i', 4033, - 'l', 4069, - 'm', 4050, - 'n', 4063, - 'o', 4161, - 'r', 4064, - 's', 4107, - 't', 4121, - 'u', 4139, - 'w', 4082, + '"', 2782, + '#', 4075, + '\'', 411, + '+', 3278, + '-', 3268, + '.', 3305, + 'I', 3476, + 'N', 3465, + '_', 3309, + '`', 485, + 'a', 3368, + 'b', 3405, + 'c', 3311, + 'd', 3330, + 'e', 3365, + 'f', 3312, + 'h', 3351, + 'i', 3296, + 'l', 3334, + 'm', 3313, + 'n', 3443, + 'o', 3451, + 'r', 3331, + 's', 3383, + 't', 3404, + 'u', 3422, + 'w', 3350, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); + lookahead == ' ') SKIP(250); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4212); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + lookahead == '^') ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3309); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4192); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3485); END_STATE(); - case 358: + case 262: ADVANCE_MAP( - '"', 3482, - '#', 4786, - '$', 2917, - '\'', 519, - '(', 3212, - '+', 4428, - ',', 3506, - '-', 4427, - '.', 4429, - '0', 4442, - 'N', 4471, - '[', 2907, - ']', 2908, - '_', 4444, - '`', 626, - 'e', 4421, - 'f', 4450, - 'n', 4467, - 'o', 4422, - 't', 4460, - '{', 3091, - '\t', 3507, - ' ', 3507, - 'I', 4476, - 'i', 4476, + '"', 2782, + '#', 4074, + '$', 2310, + '\'', 411, + '(', 2506, + '+', 3720, + ',', 2805, + '-', 3719, + '.', 3721, + '0', 3734, + 'N', 3763, + '[', 2300, + ']', 2301, + '_', 3736, + '`', 485, + 'e', 3713, + 'f', 3742, + 'n', 3759, + 'o', 3714, + 't', 3752, + '{', 2414, + '\t', 2806, + ' ', 2806, + 'I', 3768, + 'i', 3768, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4447); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3739); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4499); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); END_STATE(); - case 359: + case 263: ADVANCE_MAP( - '"', 3482, - '#', 4786, - '$', 2917, - '\'', 519, - '(', 2909, - '+', 4428, - ',', 2911, - '-', 4427, - '.', 4429, - '0', 4442, - 'N', 4471, - '[', 2907, - ']', 2908, - '_', 4444, - '`', 626, - 'e', 4421, - 'f', 4450, - 'n', 4467, - 'o', 4422, - 't', 4460, - '{', 3091, + '"', 2782, + '#', 4074, + '$', 2310, + '\'', 411, + '(', 2302, + '+', 3720, + ',', 2304, + '-', 3719, + '.', 3721, + '0', 3734, + 'N', 3763, + '[', 2300, + ']', 2301, + '_', 3736, + '`', 485, + 'e', 3713, + 'f', 3742, + 'n', 3759, + 'o', 3714, + 't', 3752, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(301); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4476); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4447); + lookahead == 'i') ADVANCE(3768); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3739); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4499); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); END_STATE(); - case 360: - if (lookahead == '"') ADVANCE(3482); - if (lookahead == '#') ADVANCE(3485); - if (lookahead == '\\') ADVANCE(842); + case 264: + if (lookahead == '"') ADVANCE(2782); + if (lookahead == '#') ADVANCE(2785); + if (lookahead == '\\') ADVANCE(636); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3484); - if (lookahead != 0) ADVANCE(3485); + lookahead == ' ') ADVANCE(2784); + if (lookahead != 0) ADVANCE(2785); END_STATE(); - case 361: - if (lookahead == '"') ADVANCE(3483); - if (lookahead == '#') ADVANCE(4790); - if (lookahead == '$') ADVANCE(2915); - if (lookahead == '\'') ADVANCE(3724); - if (lookahead == '(') ADVANCE(2909); - if (lookahead == '`') ADVANCE(3725); + case 265: + if (lookahead == '"') ADVANCE(2783); + if (lookahead == '#') ADVANCE(4078); + if (lookahead == '$') ADVANCE(2308); + if (lookahead == '\'') ADVANCE(2948); + if (lookahead == '(') ADVANCE(2302); + if (lookahead == '`') ADVANCE(2949); if (lookahead == '\t' || - lookahead == ' ') SKIP(361); + lookahead == ' ') SKIP(265); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); END_STATE(); - case 362: - if (lookahead == '"') ADVANCE(3502); - if (lookahead == '#') ADVANCE(3493); - if (lookahead == '(') ADVANCE(2909); - if (lookahead == '\\') ADVANCE(836); + case 266: + if (lookahead == '"') ADVANCE(2801); + if (lookahead == '#') ADVANCE(2792); + if (lookahead == '(') ADVANCE(2302); + if (lookahead == '\\') ADVANCE(630); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3492); - if (lookahead != 0) ADVANCE(3493); + lookahead == ' ') ADVANCE(2791); + if (lookahead != 0) ADVANCE(2792); END_STATE(); - case 363: + case 267: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '(', 3212, - '.', 3893, - '=', 3880, - '_', 3891, - 'i', 3917, - '|', 2863, + '#', 4069, + '$', 2305, + '(', 2506, + '.', 3108, + '=', 3088, + '_', 3106, + 'i', 3138, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(398); + lookahead == ' ') SKIP(300); if (lookahead == '+' || - lookahead == '-') ADVANCE(3871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '-') ADVANCE(3080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 364: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(3893); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == '|') ADVANCE(2863); + case 268: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(3108); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == '_') ADVANCE(3106); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(399); + lookahead == ' ') SKIP(301); if (lookahead == '+' || - lookahead == '-') ADVANCE(3871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '-') ADVANCE(3080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 365: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(3893); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == '{') ADVANCE(3091); + case 269: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(3108); + if (lookahead == '_') ADVANCE(3106); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(401); + lookahead == ' ') SKIP(303); if (lookahead == '+' || - lookahead == '-') ADVANCE(3871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '-') ADVANCE(3080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 366: + case 270: + ADVANCE_MAP( + '#', 4069, + '$', 2305, + '(', 2506, + '.', 3633, + ']', 2301, + '_', 3631, + '\t', 2809, + ' ', 2809, + '+', 3610, + '-', 3610, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(2805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); + END_STATE(); + case 271: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '(', 3212, - '.', 3302, - '=', 3880, - '_', 3891, - 'i', 3917, - '|', 2863, + '#', 4069, + '$', 2305, + '(', 2506, + '.', 2572, + '=', 3088, + '_', 3106, + 'i', 3138, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(398); + lookahead == ' ') SKIP(300); if (lookahead == '+' || - lookahead == '-') ADVANCE(3871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '-') ADVANCE(3080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 367: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(3302); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == '|') ADVANCE(2863); + case 272: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(2572); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == '_') ADVANCE(3106); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(399); + lookahead == ' ') SKIP(301); if (lookahead == '+' || - lookahead == '-') ADVANCE(3871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '-') ADVANCE(3080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 368: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(3302); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == '{') ADVANCE(3091); + case 273: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(2572); + if (lookahead == '_') ADVANCE(3106); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(401); + lookahead == ' ') SKIP(303); if (lookahead == '+' || - lookahead == '-') ADVANCE(3871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '-') ADVANCE(3080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 369: + case 274: + ADVANCE_MAP( + '#', 4069, + '$', 2305, + '(', 2506, + '.', 3862, + '_', 3861, + '}', 2415, + '\t', 2809, + ' ', 2809, + '+', 3853, + '-', 3853, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(2805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3879); + END_STATE(); + case 275: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '(', 3212, - '.', 4341, - ']', 2908, - '_', 4339, - '\t', 3510, - ' ', 3510, - '+', 4322, - '-', 4322, + '#', 4069, + '$', 2305, + '(', 2506, + '.', 2574, + ']', 2301, + '_', 3861, + '}', 2415, + '\t', 2809, + ' ', 2809, + '+', 3853, + '-', 3853, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == ',') ADVANCE(2805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); - END_STATE(); - case 370: - ADVANCE_MAP( - '#', 4780, - '$', 2912, - '(', 3212, - '.', 4570, - '_', 4569, - '}', 3092, - '\t', 3510, - ' ', 3510, - '+', 4561, - '-', 4561, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4591); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3879); END_STATE(); - case 371: + case 276: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '(', 3212, - '.', 3303, - ']', 2908, - '_', 4339, - '}', 3092, - '\t', 3510, - ' ', 3510, - '+', 4322, - '-', 4322, + '#', 4069, + '$', 2305, + '(', 2506, + '.', 2573, + ']', 2301, + '_', 3631, + '\t', 2809, + ' ', 2809, + '+', 3610, + '-', 3610, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == ',') ADVANCE(2805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -25268,946 +23997,697 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 372: - ADVANCE_MAP( - '#', 4780, - '$', 2912, - '(', 3212, - '.', 3304, - '_', 4569, - '}', 3092, - '\t', 3510, - ' ', 3510, - '+', 4561, - '-', 4561, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4591); - END_STATE(); - case 373: - ADVANCE_MAP( - '#', 4780, - '$', 2912, - '(', 2909, - '-', 2952, - '=', 3652, - 'f', 630, - 'i', 727, - 'n', 748, - 't', 770, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(374); - END_STATE(); - case 374: - ADVANCE_MAP( - '#', 4780, - '$', 2912, - '(', 2909, - '-', 2952, - 'f', 630, - 'i', 727, - 'n', 748, - 't', 770, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(374); - END_STATE(); - case 375: + case 277: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '-', 2953, - '.', 3289, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, + '#', 4069, + '$', 2305, + '-', 2334, + '.', 2559, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '{', 2414, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(387); + lookahead == ' ') SKIP(289); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 376: + case 278: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '-', 2953, - '.', 3289, - 'E', 2302, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - 'd', 2366, - 'e', 2301, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - 0xb5, 2559, + '#', 4069, + '$', 2305, + '-', 2334, + '.', 2559, + 'E', 1959, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + 'd', 1975, + 'e', 1958, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(391); + lookahead == ' ') SKIP(293); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 377: + case 279: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '-', 2953, - '.', 3870, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, + '#', 4069, + '$', 2305, + '-', 2334, + '.', 3079, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '{', 2414, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(387); + lookahead == ' ') SKIP(289); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 378: + case 280: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '-', 2953, - '.', 3870, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, + '#', 4069, + '$', 2305, + '-', 2334, + '.', 3079, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '{', 2414, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(387); + lookahead == ' ') SKIP(289); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 379: + case 281: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '-', 2953, - '.', 3870, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3888, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, + '#', 4069, + '$', 2305, + '-', 2334, + '.', 3079, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3102, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '{', 2414, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(387); + lookahead == ' ') SKIP(289); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 380: + case 282: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '-', 2953, - '.', 3870, - 'E', 2347, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - 'd', 2366, - 'e', 2346, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - 0xb5, 2559, + '#', 4069, + '$', 2305, + '-', 2334, + '.', 3079, + 'E', 1969, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + 'd', 1975, + 'e', 1968, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(391); + lookahead == ' ') SKIP(293); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 381: + case 283: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '-', 2953, - '.', 3870, - 'E', 2302, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - '_', 2353, - 'd', 2366, - 'e', 2301, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - 0xb5, 2559, + '#', 4069, + '$', 2305, + '-', 2334, + '.', 3079, + 'E', 1959, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + '_', 1973, + 'd', 1975, + 'e', 1958, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(391); + lookahead == ' ') SKIP(293); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); + lookahead == 'b') ADVANCE(2737); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 382: + case 284: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '-', 2953, - '.', 3870, - 'E', 2302, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - 'd', 2366, - 'e', 2301, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - 0xb5, 2559, + '#', 4069, + '$', 2305, + '-', 2334, + '.', 3079, + 'E', 1959, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + 'd', 1975, + 'e', 1958, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(391); + lookahead == ' ') SKIP(293); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 383: + case 285: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '-', 2953, - '.', 3275, - ':', 3511, - ';', 3523, - '=', 3652, - '?', 3181, - '{', 3091, - '\t', 384, - ' ', 384, + '#', 4069, + '$', 2305, + '-', 2334, + ':', 2810, + ';', 2813, + '=', 2876, + '{', 2414, + '\t', 286, + ' ', 286, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(579); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); - case 384: + case 286: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '-', 2953, - ':', 3511, - ';', 3523, - '?', 3181, - '{', 3091, - '\t', 384, - ' ', 384, + '#', 4069, + '$', 2305, + '-', 2334, + ':', 2810, + ';', 2813, + '{', 2414, + '\t', 286, + ' ', 286, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(579); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); - case 385: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '-') ADVANCE(2953); - if (lookahead == '=') ADVANCE(3652); - if (lookahead == '{') ADVANCE(3091); + case 287: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '-') ADVANCE(2334); + if (lookahead == '=') ADVANCE(2876); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(387); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); + lookahead == ' ') SKIP(289); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); END_STATE(); - case 386: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '-') ADVANCE(2953); - if (lookahead == '=') ADVANCE(3652); + case 288: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '-') ADVANCE(2334); + if (lookahead == '=') ADVANCE(2876); if (lookahead == '\t' || - lookahead == ' ') SKIP(391); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2791); + lookahead == ' ') SKIP(293); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2182); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2644); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2032); END_STATE(); - case 387: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '-') ADVANCE(2953); - if (lookahead == '{') ADVANCE(3091); + case 289: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '-') ADVANCE(2334); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(387); + lookahead == ' ') SKIP(289); END_STATE(); - case 388: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '-') ADVANCE(2953); - if (lookahead == '{') ADVANCE(3091); + case 290: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '-') ADVANCE(2334); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(387); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(289); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 389: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '-') ADVANCE(2953); - if (lookahead == '{') ADVANCE(3091); + case 291: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '-') ADVANCE(2334); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(389); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(291); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); - case 390: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '-') ADVANCE(2953); + case 292: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '-') ADVANCE(2334); if (lookahead == '\t' || - lookahead == ' ') SKIP(391); + lookahead == ' ') SKIP(293); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 391: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '-') ADVANCE(2953); + case 293: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '-') ADVANCE(2334); if (lookahead == '\t' || - lookahead == ' ') SKIP(391); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(293); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); - case 392: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '-') ADVANCE(2966); - if (lookahead == '=') ADVANCE(3652); - if (lookahead == '{') ADVANCE(3091); + case 294: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '-') ADVANCE(2344); + if (lookahead == '=') ADVANCE(2876); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(387); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == ' ') SKIP(289); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 393: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '-') ADVANCE(2966); - if (lookahead == '=') ADVANCE(3652); + case 295: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '-') ADVANCE(2344); + if (lookahead == '=') ADVANCE(2876); if (lookahead == '\t' || - lookahead == ' ') SKIP(391); + lookahead == ' ') SKIP(293); if (lookahead == '!' || lookahead == '?' || - lookahead == '@') ADVANCE(3723); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3706); + lookahead == '@') ADVANCE(2947); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2930); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2644); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2032); END_STATE(); - case 394: + case 296: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '.', 3289, - 'E', 2302, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - 'd', 2366, - 'e', 2301, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - 0xb5, 2559, + '#', 4069, + '$', 2305, + '.', 2559, + 'E', 1959, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + 'd', 1975, + 'e', 1958, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(405); + lookahead == ' ') SKIP(307); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 395: + case 297: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '.', 3870, - 'E', 2347, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - 'd', 2366, - 'e', 2346, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - 0xb5, 2559, + '#', 4069, + '$', 2305, + '.', 3079, + 'E', 1969, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + 'd', 1975, + 'e', 1968, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(405); + lookahead == ' ') SKIP(307); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 396: + case 298: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '.', 3870, - 'E', 2302, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - '_', 2353, - 'd', 2366, - 'e', 2301, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - 0xb5, 2559, + '#', 4069, + '$', 2305, + '.', 3079, + 'E', 1959, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + '_', 1973, + 'd', 1975, + 'e', 1958, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(405); + lookahead == ' ') SKIP(307); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); + lookahead == 'b') ADVANCE(2737); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 397: + case 299: ADVANCE_MAP( - '#', 4780, - '$', 2912, - '.', 3870, - 'E', 2302, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - 'd', 2366, - 'e', 2301, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - 0xb5, 2559, + '#', 4069, + '$', 2305, + '.', 3079, + 'E', 1959, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + 'd', 1975, + 'e', 1958, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(405); + lookahead == ' ') SKIP(307); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 398: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '.') ADVANCE(623); - if (lookahead == '=') ADVANCE(604); - if (lookahead == 'i') ADVANCE(677); - if (lookahead == '|') ADVANCE(2863); + case 300: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '.') ADVANCE(482); + if (lookahead == '=') ADVANCE(458); + if (lookahead == 'i') ADVANCE(523); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(398); + lookahead == ' ') SKIP(300); if (lookahead == '+' || - lookahead == '-') ADVANCE(573); + lookahead == '-') ADVANCE(447); END_STATE(); - case 399: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '.') ADVANCE(623); - if (lookahead == '=') ADVANCE(604); - if (lookahead == '|') ADVANCE(2863); + case 301: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '.') ADVANCE(482); + if (lookahead == '=') ADVANCE(458); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(399); + lookahead == ' ') SKIP(301); if (lookahead == '+' || - lookahead == '-') ADVANCE(573); + lookahead == '-') ADVANCE(447); END_STATE(); - case 400: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '.') ADVANCE(623); - if (lookahead == ']') ADVANCE(2908); + case 302: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '.') ADVANCE(482); + if (lookahead == ']') ADVANCE(2301); if (lookahead == '\t' || - lookahead == ' ') SKIP(400); + lookahead == ' ') SKIP(302); if (lookahead == '+' || - lookahead == '-') ADVANCE(573); + lookahead == '-') ADVANCE(447); END_STATE(); - case 401: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '.') ADVANCE(623); - if (lookahead == '{') ADVANCE(3091); + case 303: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '.') ADVANCE(482); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(401); + lookahead == ' ') SKIP(303); if (lookahead == '+' || - lookahead == '-') ADVANCE(573); + lookahead == '-') ADVANCE(447); END_STATE(); - case 402: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '.') ADVANCE(623); + case 304: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '.') ADVANCE(482); if (lookahead == '\t' || - lookahead == ' ') SKIP(402); + lookahead == ' ') SKIP(304); if (lookahead == '+' || - lookahead == '-') ADVANCE(573); + lookahead == '-') ADVANCE(447); END_STATE(); - case 403: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '=') ADVANCE(3652); + case 305: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '=') ADVANCE(2876); if (lookahead == '\t' || - lookahead == ' ') SKIP(405); + lookahead == ' ') SKIP(307); if (lookahead == '!' || lookahead == '-' || lookahead == '?' || - lookahead == '@') ADVANCE(3723); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3706); + lookahead == '@') ADVANCE(2947); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2930); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2644); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2032); END_STATE(); - case 404: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); + case 306: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); if (lookahead == '\t' || - lookahead == ' ') SKIP(405); + lookahead == ' ') SKIP(307); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 405: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); + case 307: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); if (lookahead == '\t' || - lookahead == ' ') SKIP(405); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); - END_STATE(); - case 406: - ADVANCE_MAP( - '#', 4780, - '(', 3212, - '-', 2953, - '.', 3289, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, - '\t', 196, - ' ', 196, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 407: - ADVANCE_MAP( - '#', 4780, - '(', 3212, - '-', 2953, - '.', 3870, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, - '\t', 196, - ' ', 196, - 'B', 3420, - 'b', 3420, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 408: - ADVANCE_MAP( - '#', 4780, - '(', 3212, - '-', 2953, - '.', 3870, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, - '\t', 196, - ' ', 196, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 409: - ADVANCE_MAP( - '#', 4780, - '(', 3212, - '-', 2953, - '.', 3870, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3888, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, - '\t', 196, - ' ', 196, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 410: - ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3289, - '=', 3880, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, - '\t', 197, - ' ', 197, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 411: - ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3289, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, - '\t', 198, - ' ', 198, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(307); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); - case 412: + case 308: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3289, - 'E', 4334, - 'G', 4337, - 'K', 4337, - 'M', 4337, - 'P', 4337, - 'T', 4337, - ']', 2908, - 'd', 4353, - 'e', 4333, - 'g', 4336, - 'h', 4368, - 'k', 4336, - 'm', 4338, - 'n', 4374, - 'p', 4336, - 's', 4358, - 't', 4336, - 'u', 4374, - 'w', 4361, - '}', 3092, - 0xb5, 4374, - '\t', 3510, - ' ', 3510, - 'B', 3420, - 'b', 3420, + '#', 4069, + '(', 2506, + '.', 2559, + 'E', 3626, + 'G', 3629, + 'K', 3629, + 'M', 3629, + 'P', 3629, + 'T', 3629, + ']', 2301, + 'd', 3645, + 'e', 3625, + 'g', 3628, + 'h', 3660, + 'k', 3628, + 'm', 3630, + 'n', 3666, + 'p', 3628, + 's', 3650, + 't', 3628, + 'u', 3666, + 'w', 3653, + '}', 2415, + 0xb5, 3666, + '\t', 2809, + ' ', 2809, + 'B', 2731, + 'b', 2731, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26215,56 +24695,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 413: + case 309: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3289, - 'E', 4563, - 'G', 4565, - 'K', 4565, - 'M', 4565, - 'P', 4565, - 'T', 4565, - 'd', 4575, - 'e', 4562, - 'g', 4564, - 'h', 4581, - 'k', 4564, - 'm', 4566, - 'n', 4582, - 'p', 4564, - 's', 4578, - 't', 4564, - 'u', 4582, - 'w', 4579, - '}', 3092, - 0xb5, 4582, - '\t', 3510, - ' ', 3510, - 'B', 3420, - 'b', 3420, + '#', 4069, + '(', 2506, + '.', 2559, + 'E', 3855, + 'G', 3857, + 'K', 3857, + 'M', 3857, + 'P', 3857, + 'T', 3857, + 'd', 3867, + 'e', 3854, + 'g', 3856, + 'h', 3873, + 'k', 3856, + 'm', 3858, + 'n', 3874, + 'p', 3856, + 's', 3870, + 't', 3856, + 'u', 3874, + 'w', 3871, + '}', 2415, + 0xb5, 3874, + '\t', 2809, + ' ', 2809, + 'B', 2731, + 'b', 2731, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == ',') ADVANCE(2805); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 414: + case 310: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3289, - ']', 2908, - '}', 3092, - '\t', 3510, - ' ', 3510, - 'E', 4348, - 'e', 4348, + '#', 4069, + '(', 2506, + '.', 2559, + ']', 2301, + '}', 2415, + '\t', 2809, + ' ', 2809, + 'E', 3639, + 'e', 3639, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26272,236 +24752,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 415: + case 311: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3289, - '}', 3092, - '\t', 3510, - ' ', 3510, - 'E', 4573, - 'e', 4573, + '#', 4069, + '(', 2506, + '.', 2559, + '}', 2415, + '\t', 2809, + ' ', 2809, + 'E', 3865, + 'e', 3865, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); - END_STATE(); - case 416: - ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3870, - '=', 3880, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, - '\t', 197, - ' ', 197, - 'B', 3420, - 'b', 3420, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 417: - ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3870, - '=', 3880, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, - '\t', 197, - ' ', 197, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 418: - ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3870, - '=', 3880, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3888, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, - '\t', 197, - ' ', 197, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 419: - ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3870, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, - '\t', 198, - ' ', 198, - 'B', 3420, - 'b', 3420, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 420: - ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3870, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, - '\t', 198, - ' ', 198, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 421: - ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3870, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3888, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '{', 3091, - 0xb5, 3942, - '\t', 198, - ' ', 198, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ',') ADVANCE(2805); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 422: + case 312: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3275, - ']', 2908, - '}', 3092, - '\t', 3510, - ' ', 3510, - 'E', 4348, - 'e', 4348, + '#', 4069, + '(', 2506, + '.', 2545, + ']', 2301, + '}', 2415, + '\t', 2809, + ' ', 2809, + 'E', 3639, + 'e', 3639, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26509,216 +24790,216 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 423: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(3275); - if (lookahead == '{') ADVANCE(3091); + case 313: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(2545); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); + lookahead == ' ') SKIP(393); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 424: + case 314: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 3275, - '}', 3092, - '\t', 3510, - ' ', 3510, - 'E', 4573, - 'e', 4573, + '#', 4069, + '(', 2506, + '.', 2545, + '}', 2415, + '\t', 2809, + ' ', 2809, + 'E', 3865, + 'e', 3865, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == ',') ADVANCE(2805); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 425: + case 315: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 4560, - 'E', 4563, - 'G', 4565, - 'K', 4565, - 'M', 4565, - 'P', 4565, - 'T', 4565, - '_', 4569, - 'd', 4575, - 'e', 4562, - 'g', 4564, - 'h', 4581, - 'k', 4564, - 'm', 4566, - 'n', 4582, - 'p', 4564, - 's', 4578, - 't', 4564, - 'u', 4582, - 'w', 4579, - '}', 3092, - 0xb5, 4582, - '\t', 3510, - ' ', 3510, - 'B', 3420, - 'b', 3420, + '#', 4069, + '(', 2506, + '.', 3852, + 'E', 3855, + 'G', 3857, + 'K', 3857, + 'M', 3857, + 'P', 3857, + 'T', 3857, + '_', 3861, + 'd', 3867, + 'e', 3854, + 'g', 3856, + 'h', 3873, + 'k', 3856, + 'm', 3858, + 'n', 3874, + 'p', 3856, + 's', 3870, + 't', 3856, + 'u', 3874, + 'w', 3871, + '}', 2415, + 0xb5, 3874, + '\t', 2809, + ' ', 2809, + 'B', 2731, + 'b', 2731, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == ',') ADVANCE(2805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 426: + case 316: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 4560, - 'E', 4563, - 'G', 4565, - 'K', 4565, - 'M', 4565, - 'P', 4565, - 'T', 4565, - 'd', 4575, - 'e', 4562, - 'g', 4564, - 'h', 4581, - 'k', 4564, - 'm', 4566, - 'n', 4582, - 'p', 4564, - 's', 4578, - 't', 4564, - 'u', 4582, - 'w', 4579, - '}', 3092, - 0xb5, 4582, - '\t', 3510, - ' ', 3510, - 'B', 3420, - 'b', 3420, + '#', 4069, + '(', 2506, + '.', 3852, + 'E', 3855, + 'G', 3857, + 'K', 3857, + 'M', 3857, + 'P', 3857, + 'T', 3857, + 'd', 3867, + 'e', 3854, + 'g', 3856, + 'h', 3873, + 'k', 3856, + 'm', 3858, + 'n', 3874, + 'p', 3856, + 's', 3870, + 't', 3856, + 'u', 3874, + 'w', 3871, + '}', 2415, + 0xb5, 3874, + '\t', 2809, + ' ', 2809, + 'B', 2731, + 'b', 2731, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == ',') ADVANCE(2805); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 427: + case 317: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 4560, - 'E', 4565, - 'G', 4565, - 'K', 4565, - 'M', 4565, - 'P', 4565, - 'T', 4565, - 'd', 4575, - 'e', 4564, - 'g', 4564, - 'h', 4581, - 'k', 4564, - 'm', 4566, - 'n', 4582, - 'p', 4564, - 's', 4578, - 't', 4564, - 'u', 4582, - 'w', 4579, - '}', 3092, - 0xb5, 4582, - '\t', 3510, - ' ', 3510, - 'B', 3420, - 'b', 3420, + '#', 4069, + '(', 2506, + '.', 3852, + 'E', 3857, + 'G', 3857, + 'K', 3857, + 'M', 3857, + 'P', 3857, + 'T', 3857, + 'd', 3867, + 'e', 3856, + 'g', 3856, + 'h', 3873, + 'k', 3856, + 'm', 3858, + 'n', 3874, + 'p', 3856, + 's', 3870, + 't', 3856, + 'u', 3874, + 'w', 3871, + '}', 2415, + 0xb5, 3874, + '\t', 2809, + ' ', 2809, + 'B', 2731, + 'b', 2731, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == ',') ADVANCE(2805); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 428: + case 318: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 4560, - '_', 4569, - '}', 3092, - '\t', 3510, - ' ', 3510, - 'E', 4573, - 'e', 4573, + '#', 4069, + '(', 2506, + '.', 3852, + '_', 3861, + '}', 2415, + '\t', 2809, + ' ', 2809, + 'E', 3865, + 'e', 3865, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == ',') ADVANCE(2805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 429: + case 319: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 4560, - '}', 3092, - '\t', 3510, - ' ', 3510, - 'E', 4573, - 'e', 4573, + '#', 4069, + '(', 2506, + '.', 3852, + '}', 2415, + '\t', 2809, + ' ', 2809, + 'E', 3865, + 'e', 3865, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == ',') ADVANCE(2805); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 430: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(4560); - if (lookahead == '}') ADVANCE(3092); + case 320: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(3852); + if (lookahead == '}') ADVANCE(2415); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3510); + lookahead == ' ') ADVANCE(2809); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == ',') ADVANCE(2805); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 431: + case 321: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 4317, - 'E', 4334, - 'G', 4337, - 'K', 4337, - 'M', 4337, - 'P', 4337, - 'T', 4337, - ']', 2908, - '_', 4339, - 'd', 4353, - 'e', 4333, - 'g', 4336, - 'h', 4368, - 'k', 4336, - 'm', 4338, - 'n', 4374, - 'p', 4336, - 's', 4358, - 't', 4336, - 'u', 4374, - 'w', 4361, - '}', 3092, - 0xb5, 4374, - '\t', 3510, - ' ', 3510, - 'B', 3420, - 'b', 3420, + '#', 4069, + '(', 2506, + '.', 3605, + 'E', 3626, + 'G', 3629, + 'K', 3629, + 'M', 3629, + 'P', 3629, + 'T', 3629, + ']', 2301, + '_', 3631, + 'd', 3645, + 'e', 3625, + 'g', 3628, + 'h', 3660, + 'k', 3628, + 'm', 3630, + 'n', 3666, + 'p', 3628, + 's', 3650, + 't', 3628, + 'u', 3666, + 'w', 3653, + '}', 2415, + 0xb5, 3666, + '\t', 2809, + ' ', 2809, + 'B', 2731, + 'b', 2731, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == ',') ADVANCE(2805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26727,41 +25008,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 432: + case 322: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 4317, - 'E', 4334, - 'G', 4337, - 'K', 4337, - 'M', 4337, - 'P', 4337, - 'T', 4337, - ']', 2908, - 'd', 4353, - 'e', 4333, - 'g', 4336, - 'h', 4368, - 'k', 4336, - 'm', 4338, - 'n', 4374, - 'p', 4336, - 's', 4358, - 't', 4336, - 'u', 4374, - 'w', 4361, - '}', 3092, - 0xb5, 4374, - '\t', 3510, - ' ', 3510, - 'B', 3420, - 'b', 3420, + '#', 4069, + '(', 2506, + '.', 3605, + 'E', 3626, + 'G', 3629, + 'K', 3629, + 'M', 3629, + 'P', 3629, + 'T', 3629, + ']', 2301, + 'd', 3645, + 'e', 3625, + 'g', 3628, + 'h', 3660, + 'k', 3628, + 'm', 3630, + 'n', 3666, + 'p', 3628, + 's', 3650, + 't', 3628, + 'u', 3666, + 'w', 3653, + '}', 2415, + 0xb5, 3666, + '\t', 2809, + ' ', 2809, + 'B', 2731, + 'b', 2731, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26769,41 +25050,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 433: + case 323: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 4317, - 'E', 4337, - 'G', 4337, - 'K', 4337, - 'M', 4337, - 'P', 4337, - 'T', 4337, - ']', 2908, - 'd', 4353, - 'e', 4336, - 'g', 4336, - 'h', 4368, - 'k', 4336, - 'm', 4338, - 'n', 4374, - 'p', 4336, - 's', 4358, - 't', 4336, - 'u', 4374, - 'w', 4361, - '}', 3092, - 0xb5, 4374, - '\t', 3510, - ' ', 3510, - 'B', 3420, - 'b', 3420, + '#', 4069, + '(', 2506, + '.', 3605, + 'E', 3629, + 'G', 3629, + 'K', 3629, + 'M', 3629, + 'P', 3629, + 'T', 3629, + ']', 2301, + 'd', 3645, + 'e', 3628, + 'g', 3628, + 'h', 3660, + 'k', 3628, + 'm', 3630, + 'n', 3666, + 'p', 3628, + 's', 3650, + 't', 3628, + 'u', 3666, + 'w', 3653, + '}', 2415, + 0xb5, 3666, + '\t', 2809, + ' ', 2809, + 'B', 2731, + 'b', 2731, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26811,24 +25092,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 434: + case 324: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 4317, - ']', 2908, - '_', 4339, - '}', 3092, - '\t', 3510, - ' ', 3510, - 'E', 4348, - 'e', 4348, + '#', 4069, + '(', 2506, + '.', 3605, + ']', 2301, + '_', 3631, + '}', 2415, + '\t', 2809, + ' ', 2809, + 'E', 3639, + 'e', 3639, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == ',') ADVANCE(2805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26837,22 +25118,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 435: + case 325: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '.', 4317, - ']', 2908, - '}', 3092, - '\t', 3510, - ' ', 3510, - 'E', 4348, - 'e', 4348, + '#', 4069, + '(', 2506, + '.', 3605, + ']', 2301, + '}', 2415, + '\t', 2809, + ' ', 2809, + 'E', 3639, + 'e', 3639, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26860,18 +25141,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 436: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(4317); - if (lookahead == ']') ADVANCE(2908); - if (lookahead == '}') ADVANCE(3092); + case 326: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(3605); + if (lookahead == ']') ADVANCE(2301); + if (lookahead == '}') ADVANCE(2415); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3510); + lookahead == ' ') ADVANCE(2809); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26879,22 +25160,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 437: + case 327: ADVANCE_MAP( - '#', 4780, - '(', 3212, - ']', 2908, - '_', 4339, - '\t', 3510, - ' ', 3510, - 'E', 4348, - 'e', 4348, + '#', 4069, + '(', 2506, + ']', 2301, + '_', 3631, + '\t', 2809, + ' ', 2809, + 'E', 3639, + 'e', 3639, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == ',') ADVANCE(2805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26903,18 +25184,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 438: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == ']') ADVANCE(2908); + case 328: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == ']') ADVANCE(2301); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3510); + lookahead == ' ') ADVANCE(2809); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4348); + lookahead == 'e') ADVANCE(3639); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26922,16 +25203,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 439: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == ']') ADVANCE(2908); + case 329: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == ']') ADVANCE(2301); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3510); + lookahead == ' ') ADVANCE(2809); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26939,954 +25220,1116 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3703); END_STATE(); - case 440: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == '{') ADVANCE(3091); + case 330: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '_') ADVANCE(3106); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); + lookahead == ' ') SKIP(393); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 441: + case 331: ADVANCE_MAP( - '#', 4780, - '(', 3212, - '_', 4569, - '}', 3092, - '\t', 3510, - ' ', 3510, - 'E', 4573, - 'e', 4573, + '#', 4069, + '(', 2506, + '_', 3861, + '}', 2415, + '\t', 2809, + ' ', 2809, + 'E', 3865, + 'e', 3865, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == ',') ADVANCE(2805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 442: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '{') ADVANCE(3091); + case 332: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); + lookahead == ' ') SKIP(393); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 443: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '}') ADVANCE(3092); + case 333: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '{') ADVANCE(2414); + if (lookahead == '\t' || + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 334: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '}') ADVANCE(2415); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3510); + lookahead == ' ') ADVANCE(2809); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4573); + lookahead == 'e') ADVANCE(3865); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == ',') ADVANCE(2805); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 444: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '}') ADVANCE(3092); + case 335: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '}') ADVANCE(2415); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3510); + lookahead == ' ') ADVANCE(2809); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == ',') ADVANCE(2805); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 445: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == ',') ADVANCE(2911); - if (lookahead == ']') ADVANCE(2908); + case 336: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == ',') ADVANCE(2304); + if (lookahead == ']') ADVANCE(2301); if (lookahead == '\t' || - lookahead == ' ') SKIP(445); + lookahead == ' ') SKIP(336); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3443); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2753); END_STATE(); - case 446: + case 337: ADVANCE_MAP( - '#', 4780, - ',', 3506, - '.', 3275, - ';', 3523, - '?', 3181, - ']', 2908, - '\t', 3508, - ' ', 3508, + '#', 4069, + ',', 2805, + '.', 2545, + ';', 2813, + '?', 2476, + ']', 2301, + '\t', 2807, + ' ', 2807, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3509); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2808); END_STATE(); - case 447: + case 338: ADVANCE_MAP( - '#', 4780, - '-', 2953, - '.', 3289, - 'E', 2302, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - 'd', 2366, - 'e', 2301, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - 0xb5, 2559, + '#', 4069, + '-', 2334, + '.', 2559, + 'E', 1959, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + 'd', 1975, + 'e', 1958, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); + lookahead == ' ') SKIP(343); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 448: + case 339: ADVANCE_MAP( - '#', 4780, - '-', 2953, - '.', 3870, - 'E', 2347, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - 'd', 2366, - 'e', 2346, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - 0xb5, 2559, + '#', 4069, + '-', 2334, + '.', 3079, + 'E', 1969, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + 'd', 1975, + 'e', 1968, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); + lookahead == ' ') SKIP(343); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 449: + case 340: ADVANCE_MAP( - '#', 4780, - '-', 2953, - '.', 3870, - 'E', 2302, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - '_', 2353, - 'd', 2366, - 'e', 2301, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - 0xb5, 2559, + '#', 4069, + '-', 2334, + '.', 3079, + 'E', 1959, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + '_', 1973, + 'd', 1975, + 'e', 1958, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); + lookahead == ' ') SKIP(343); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); + lookahead == 'b') ADVANCE(2737); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 450: + case 341: ADVANCE_MAP( - '#', 4780, - '-', 2953, - '.', 3870, - 'E', 2302, - 'G', 2347, - 'K', 2347, - 'M', 2347, - 'P', 2347, - 'T', 2347, - 'd', 2366, - 'e', 2301, - 'g', 2346, - 'h', 2519, - 'k', 2346, - 'm', 2348, - 'n', 2559, - 'p', 2346, - 's', 2394, - 't', 2346, - 'u', 2559, - 'w', 2455, - 0xb5, 2559, + '#', 4069, + '-', 2334, + '.', 3079, + 'E', 1959, + 'G', 1969, + 'K', 1969, + 'M', 1969, + 'P', 1969, + 'T', 1969, + 'd', 1975, + 'e', 1958, + 'g', 1968, + 'h', 2006, + 'k', 1968, + 'm', 1970, + 'n', 2010, + 'p', 1968, + 's', 1985, + 't', 1968, + 'u', 2010, + 'w', 1989, + 0xb5, 2010, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); + lookahead == ' ') SKIP(343); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); + lookahead == 'b') ADVANCE(2737); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); - END_STATE(); - case 451: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '-') ADVANCE(2953); - if (lookahead == '{') ADVANCE(3091); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(196); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 452: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '-') ADVANCE(2953); + case 342: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '-') ADVANCE(2334); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); + lookahead == ' ') SKIP(343); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + lookahead == '^') ADVANCE(3246); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2032); END_STATE(); - case 453: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '-') ADVANCE(2953); + case 343: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '-') ADVANCE(2334); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(343); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); - case 454: + case 344: + ADVANCE_MAP( + '#', 4069, + '-', 463, + ':', 2810, + '<', 1792, + '=', 839, + '>', 2322, + '@', 2325, + 'h', 1988, + 'u', 2012, + '{', 2414, + '\t', 345, + ' ', 345, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + END_STATE(); + case 345: ADVANCE_MAP( - '#', 4780, - '.', 3289, - '=', 3880, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'i', 3917, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, + '#', 4069, + '-', 463, + ':', 2810, + '=', 839, + '>', 2322, + 'h', 1988, + 'u', 2012, + '{', 2414, + '\t', 345, + ' ', 345, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); + END_STATE(); + case 346: + ADVANCE_MAP( + '#', 4069, + '.', 2559, + '=', 3088, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'i', 3138, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '|', 2264, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); + lookahead == ' ') SKIP(378); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 455: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3289); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == 'i') ADVANCE(3917); - if (lookahead == '|') ADVANCE(2863); + case 347: + ADVANCE_MAP( + '#', 4069, + '.', 2559, + '=', 3088, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '|', 2264, + 0xb5, 3182, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); + lookahead == ' ') SKIP(379); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 348: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(2559); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == 'i') ADVANCE(3138); + if (lookahead == '|') ADVANCE(2264); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 456: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3289); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '|') ADVANCE(2863); + case 349: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(2559); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(486); + lookahead == ' ') SKIP(379); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 457: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3289); - if (lookahead == '?') ADVANCE(3181); - if (lookahead == ']') ADVANCE(2908); - if (lookahead == '}') ADVANCE(3092); + case 350: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(2559); + if (lookahead == '?') ADVANCE(2476); + if (lookahead == ']') ADVANCE(2301); + if (lookahead == '}') ADVANCE(2415); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3510); + lookahead == ' ') ADVANCE(2809); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); END_STATE(); - case 458: + case 351: ADVANCE_MAP( - '#', 4780, - '.', 3289, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'i', 3923, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - 0xb5, 3942, + '#', 4069, + '.', 2559, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(495); + lookahead == ' ') SKIP(390); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 459: + case 352: ADVANCE_MAP( - '#', 4780, - '.', 3870, - '=', 3880, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'i', 3917, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, + '#', 4069, + '.', 2559, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '{', 2414, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); + lookahead == ' ') SKIP(393); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 460: + case 353: ADVANCE_MAP( - '#', 4780, - '.', 3870, - '=', 3880, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'i', 3917, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, + '#', 4069, + '.', 3079, + '=', 3088, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'i', 3138, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '|', 2264, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); + lookahead == ' ') SKIP(378); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 461: + case 354: ADVANCE_MAP( - '#', 4780, - '.', 3870, - '=', 3880, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3888, - 'g', 3888, - 'h', 3932, - 'i', 3917, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - 0xb5, 3942, + '#', 4069, + '.', 3079, + '=', 3088, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '|', 2264, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); + lookahead == ' ') SKIP(379); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 462: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3870); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == 'i') ADVANCE(3917); - if (lookahead == '|') ADVANCE(2863); + case 355: + ADVANCE_MAP( + '#', 4069, + '.', 3079, + '=', 3088, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'i', 3138, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '|', 2264, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 356: + ADVANCE_MAP( + '#', 4069, + '.', 3079, + '=', 3088, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '|', 2264, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(379); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 357: + ADVANCE_MAP( + '#', 4069, + '.', 3079, + '=', 3088, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3102, + 'g', 3102, + 'h', 3172, + 'i', 3138, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '|', 2264, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 358: + ADVANCE_MAP( + '#', 4069, + '.', 3079, + '=', 3088, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3102, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '|', 2264, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(379); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 359: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(3079); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == '_') ADVANCE(3106); + if (lookahead == 'i') ADVANCE(3138); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); + lookahead == ' ') SKIP(378); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 463: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3870); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == '|') ADVANCE(2863); + case 360: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(3079); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == '_') ADVANCE(3106); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(486); + lookahead == ' ') SKIP(379); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 464: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3870); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == 'i') ADVANCE(3917); - if (lookahead == '|') ADVANCE(2863); + case 361: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(3079); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == 'i') ADVANCE(3138); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); + lookahead == ' ') SKIP(378); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 465: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3870); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == 'i') ADVANCE(3917); - if (lookahead == '|') ADVANCE(2863); + case 362: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(3079); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == 'i') ADVANCE(3138); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(378); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 466: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3870); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '|') ADVANCE(2863); + case 363: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(3079); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(486); + lookahead == ' ') SKIP(379); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 467: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3870); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '|') ADVANCE(2863); + case 364: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(3079); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(486); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(379); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 468: + case 365: ADVANCE_MAP( - '#', 4780, - '.', 3870, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'i', 3923, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - 0xb5, 3942, + '#', 4069, + '.', 3079, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(495); + lookahead == ' ') SKIP(390); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 469: + case 366: ADVANCE_MAP( - '#', 4780, - '.', 3870, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'i', 3923, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - 0xb5, 3942, + '#', 4069, + '.', 3079, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '{', 2414, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(495); + lookahead == ' ') SKIP(393); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 470: + case 367: ADVANCE_MAP( - '#', 4780, - '.', 3870, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3888, - 'g', 3888, - 'h', 3932, - 'i', 3923, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - 0xb5, 3942, + '#', 4069, + '.', 3079, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(495); + lookahead == ' ') SKIP(390); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 471: + case 368: ADVANCE_MAP( - '#', 4780, - '.', 3275, - ':', 3511, - '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', 481, - ' ', 481, - 'B', 3420, - 'b', 3420, + '#', 4069, + '.', 3079, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '{', 2414, + 0xb5, 3182, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '\t' || + lookahead == ' ') SKIP(393); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 472: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3275); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == 'i') ADVANCE(3917); - if (lookahead == '|') ADVANCE(2863); + case 369: + ADVANCE_MAP( + '#', 4069, + '.', 3079, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3102, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(390); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 370: + ADVANCE_MAP( + '#', 4069, + '.', 3079, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3102, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '{', 2414, + 0xb5, 3182, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); + lookahead == ' ') SKIP(393); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 371: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(2545); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == 'i') ADVANCE(3138); + if (lookahead == '|') ADVANCE(2264); + if (lookahead == '\t' || + lookahead == ' ') SKIP(378); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 473: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3275); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '|') ADVANCE(2863); + case 372: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(2545); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(486); + lookahead == ' ') SKIP(379); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 474: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3275); - if (lookahead == '?') ADVANCE(3181); - if (lookahead == ']') ADVANCE(2908); - if (lookahead == '}') ADVANCE(3092); + case 373: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(2545); + if (lookahead == '?') ADVANCE(2476); + if (lookahead == ']') ADVANCE(2301); + if (lookahead == '}') ADVANCE(2415); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3510); + lookahead == ' ') ADVANCE(2809); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); END_STATE(); - case 475: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3893); - if (lookahead == '_') ADVANCE(3891); + case 374: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(3108); + if (lookahead == '_') ADVANCE(3106); if (lookahead == '\t' || - lookahead == ' ') SKIP(477); + lookahead == ' ') SKIP(376); if (lookahead == '+' || - lookahead == '-') ADVANCE(3871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '-') ADVANCE(3080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 476: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3302); - if (lookahead == '_') ADVANCE(3891); + case 375: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(2572); + if (lookahead == '_') ADVANCE(3106); if (lookahead == '\t' || - lookahead == ' ') SKIP(477); + lookahead == ' ') SKIP(376); if (lookahead == '+' || - lookahead == '-') ADVANCE(3871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '-') ADVANCE(3080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 477: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(623); + case 376: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(482); if (lookahead == '\t' || - lookahead == ' ') SKIP(477); + lookahead == ' ') SKIP(376); if (lookahead == '+' || - lookahead == '-') ADVANCE(573); - END_STATE(); - case 478: - ADVANCE_MAP( - '#', 4780, - ':', 3511, - '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', 481, - ' ', 481, - 'B', 3420, - 'b', 3420, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 479: - ADVANCE_MAP( - '#', 4780, - ':', 3511, - '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', 481, - ' ', 481, - 'B', 3420, - 'b', 3420, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 480: - ADVANCE_MAP( - '#', 4780, - ':', 3511, - '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', 481, - ' ', 481, - 'B', 3420, - 'b', 3420, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + lookahead == '-') ADVANCE(447); END_STATE(); - case 481: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == ':') ADVANCE(3511); + case 377: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == ':') ADVANCE(2810); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(481); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); + lookahead == ' ') ADVANCE(377); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); END_STATE(); - case 482: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(3652); - if (lookahead == 'i') ADVANCE(3685); + case 378: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(458); + if (lookahead == 'i') ADVANCE(523); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(495); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == ' ') SKIP(378); END_STATE(); - case 483: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(3652); - if (lookahead == 'i') ADVANCE(2731); + case 379: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(458); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(495); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); + lookahead == ' ') SKIP(379); END_STATE(); - case 484: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(3652); - if (lookahead == '{') ADVANCE(3091); + case 380: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(2876); + if (lookahead == 'i') ADVANCE(2909); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == ' ') SKIP(390); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 485: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(604); - if (lookahead == 'i') ADVANCE(677); - if (lookahead == '|') ADVANCE(2863); + case 381: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(2876); + if (lookahead == 'i') ADVANCE(2123); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); + lookahead == ' ') SKIP(390); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); END_STATE(); - case 486: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(604); - if (lookahead == '|') ADVANCE(2863); + case 382: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(2876); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(486); + lookahead == ' ') SKIP(393); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 487: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == 'i') ADVANCE(3917); - if (lookahead == '|') ADVANCE(2863); + case 383: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == '_') ADVANCE(3106); + if (lookahead == 'i') ADVANCE(3138); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); + lookahead == ' ') SKIP(378); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 488: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == '|') ADVANCE(2863); + case 384: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == '_') ADVANCE(3106); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(486); + lookahead == ' ') SKIP(379); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 489: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == 'i') ADVANCE(3917); - if (lookahead == '|') ADVANCE(2863); + case 385: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == 'i') ADVANCE(3138); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); + lookahead == ' ') SKIP(378); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'e') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 490: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == 'i') ADVANCE(3917); - if (lookahead == '|') ADVANCE(2863); + case 386: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == 'i') ADVANCE(3138); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(378); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 491: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '|') ADVANCE(2863); + case 387: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(197); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(379); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 492: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '|') ADVANCE(2863); + case 388: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '=') ADVANCE(3088); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(486); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3901); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(379); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 493: + case 389: ADVANCE_MAP( - '#', 4780, - '[', 2907, - ']', 2908, - 'c', 2435, - 'e', 2552, - 'f', 2619, - 'i', 2483, - 'l', 2452, - 'o', 2493, - 'v', 2373, - '\t', 3510, - ' ', 3510, + '#', 4069, + '[', 2300, + ']', 2301, + 'c', 1981, + 'e', 2007, + 'f', 2016, + 'i', 1995, + 'o', 1998, + 'v', 1976, + '\t', 2809, + ' ', 2809, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -27894,193 +26337,162 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2644); - END_STATE(); - case 494: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == 'i') ADVANCE(3923); - if (lookahead == '\t' || - lookahead == ' ') SKIP(495); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 495: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == 'i') ADVANCE(727); - if (lookahead == '\t' || - lookahead == ' ') SKIP(495); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2032); END_STATE(); - case 496: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == 'i') ADVANCE(2491); + case 390: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == 'i') ADVANCE(556); if (lookahead == '\t' || - lookahead == ' ') SKIP(496); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + lookahead == ' ') SKIP(390); END_STATE(); - case 497: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '{') ADVANCE(3091); + case 391: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == 'i') ADVANCE(3153); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); + lookahead == ' ') SKIP(390); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 498: - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '{') ADVANCE(3091); + case 392: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == 'i') ADVANCE(1997); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(198); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(392); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2032); END_STATE(); - case 499: - if (lookahead == '#') ADVANCE(4780); + case 393: + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(499); + lookahead == ' ') SKIP(393); END_STATE(); - case 500: - if (lookahead == '#') ADVANCE(4780); + case 394: + if (lookahead == '#') ADVANCE(4069); if (lookahead == '\t' || - lookahead == ' ') SKIP(499); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(2978); + lookahead == ' ') SKIP(394); END_STATE(); - case 501: - if (lookahead == '#') ADVANCE(4780); + case 395: + if (lookahead == '#') ADVANCE(4069); if (lookahead == '\t' || - lookahead == ' ') SKIP(499); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3594); + lookahead == ' ') SKIP(394); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(2358); END_STATE(); - case 502: - if (lookahead == '#') ADVANCE(4780); + case 396: + if (lookahead == '#') ADVANCE(4069); if (lookahead == '\t' || - lookahead == ' ') SKIP(499); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + lookahead == ' ') SKIP(394); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2818); END_STATE(); - case 503: - if (lookahead == '#') ADVANCE(4780); + case 397: + if (lookahead == '#') ADVANCE(4069); if (lookahead == '\t' || - lookahead == ' ') SKIP(499); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == ' ') SKIP(394); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 504: - if (lookahead == '#') ADVANCE(4780); + case 398: + if (lookahead == '#') ADVANCE(4069); if (lookahead == '\t' || - lookahead == ' ') SKIP(499); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == ' ') SKIP(394); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 505: - if (lookahead == '#') ADVANCE(4784); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '}') ADVANCE(3092); + case 399: + if (lookahead == '#') ADVANCE(4072); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '}') ADVANCE(2415); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3510); + lookahead == ' ') ADVANCE(2809); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + lookahead == ',') ADVANCE(2805); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); END_STATE(); - case 506: - if (lookahead == '#') ADVANCE(4784); - if (lookahead == '(') ADVANCE(3212); + case 400: + if (lookahead == '#') ADVANCE(4072); + if (lookahead == '(') ADVANCE(2506); if (lookahead == '\t' || - lookahead == ' ') SKIP(499); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + lookahead == ' ') SKIP(394); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); END_STATE(); - case 507: - if (lookahead == '#') ADVANCE(4787); - if (lookahead == '$') ADVANCE(2918); - if (lookahead == '-') ADVANCE(2964); - if (lookahead == '{') ADVANCE(3091); + case 401: + if (lookahead == '#') ADVANCE(4075); + if (lookahead == '$') ADVANCE(2311); + if (lookahead == '-') ADVANCE(2342); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') SKIP(389); + lookahead == ' ') SKIP(291); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4212); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4196); + lookahead == '^') ADVANCE(3505); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3489); END_STATE(); - case 508: - if (lookahead == '#') ADVANCE(4787); - if (lookahead == '$') ADVANCE(2918); + case 402: + if (lookahead == '#') ADVANCE(4075); + if (lookahead == '$') ADVANCE(2311); if (lookahead == '\t' || - lookahead == ' ') SKIP(405); + lookahead == ' ') SKIP(307); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4212); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4196); - END_STATE(); - case 509: - if (lookahead == '#') ADVANCE(4787); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '-') ADVANCE(2964); - if (lookahead == '{') ADVANCE(3091); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(196); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); - END_STATE(); - case 510: - if (lookahead == '#') ADVANCE(4787); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '=') ADVANCE(4028); - if (lookahead == '|') ADVANCE(2863); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(197); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == '^') ADVANCE(3505); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3489); END_STATE(); - case 511: - if (lookahead == '#') ADVANCE(4787); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '{') ADVANCE(3091); + case 403: + if (lookahead == '#') ADVANCE(4075); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '{') ADVANCE(2414); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(198); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == ' ') SKIP(393); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 512: - if (lookahead == '#') ADVANCE(4787); - if (lookahead == '-') ADVANCE(2964); + case 404: + if (lookahead == '#') ADVANCE(4075); + if (lookahead == '-') ADVANCE(2342); if (lookahead == '\t' || - lookahead == ' ') SKIP(453); + lookahead == ' ') SKIP(343); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4212); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4196); + lookahead == '^') ADVANCE(3505); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3489); END_STATE(); - case 513: - if (lookahead == '#') ADVANCE(4787); - if (lookahead == '=') ADVANCE(4028); - if (lookahead == 'i') ADVANCE(4079); - if (lookahead == '|') ADVANCE(2863); + case 405: + if (lookahead == '#') ADVANCE(4075); + if (lookahead == '=') ADVANCE(3291); + if (lookahead == 'i') ADVANCE(3344); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(485); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == ' ') SKIP(378); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 514: - if (lookahead == '#') ADVANCE(4787); - if (lookahead == 'i') ADVANCE(4103); + case 406: + if (lookahead == '#') ADVANCE(4075); + if (lookahead == '=') ADVANCE(3291); + if (lookahead == '|') ADVANCE(2264); if (lookahead == '\t' || - lookahead == ' ') SKIP(495); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == ' ') SKIP(379); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 515: - if (lookahead == '#') ADVANCE(4783); - if (lookahead == ':') ADVANCE(3511); + case 407: + if (lookahead == '#') ADVANCE(4075); + if (lookahead == 'i') ADVANCE(3374); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(481); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + lookahead == ' ') SKIP(390); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 516: - if (lookahead == '#') ADVANCE(4786); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == ']') ADVANCE(2908); + case 408: + if (lookahead == '#') ADVANCE(4074); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == ']') ADVANCE(2301); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3510); + lookahead == ' ') ADVANCE(2809); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -28088,3997 +26500,4528 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4499); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3791); END_STATE(); - case 517: - if (lookahead == '#') ADVANCE(4786); - if (lookahead == '(') ADVANCE(3212); + case 409: + if (lookahead == '#') ADVANCE(4074); + if (lookahead == '(') ADVANCE(2506); if (lookahead == '\t' || - lookahead == ' ') SKIP(499); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == ' ') SKIP(394); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 518: - if (lookahead == '#') ADVANCE(3495); - if (lookahead == '\'') ADVANCE(3498); - if (lookahead == '(') ADVANCE(2909); + case 410: + if (lookahead == '#') ADVANCE(2794); + if (lookahead == '\'') ADVANCE(2797); + if (lookahead == '(') ADVANCE(2302); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3494); - if (lookahead != 0) ADVANCE(3495); + lookahead == ' ') ADVANCE(2793); + if (lookahead != 0) ADVANCE(2794); + END_STATE(); + case 411: + if (lookahead == '\'') ADVANCE(2786); + if (lookahead != 0) ADVANCE(411); + END_STATE(); + case 412: + if (lookahead == '+') ADVANCE(516); + if (lookahead == '>') ADVANCE(2833); + if (lookahead == 'r') ADVANCE(2482); + if (lookahead == 'u') ADVANCE(614); + END_STATE(); + case 413: + ADVANCE_MAP( + '+', 479, + '-', 481, + '>', 2829, + 'I', 655, + '_', 481, + 'i', 655, + 'n', 504, + 'r', 587, + 'B', 2731, + 'b', 2731, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + END_STATE(); + case 414: + if (lookahead == '+') ADVANCE(479); + if (lookahead == '-') ADVANCE(481); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == '_') ADVANCE(481); + if (lookahead == 'n') ADVANCE(504); + if (lookahead == 'r') ADVANCE(587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + END_STATE(); + case 415: + if (lookahead == '+') ADVANCE(517); + if (lookahead == '>') ADVANCE(2825); + END_STATE(); + case 416: + ADVANCE_MAP( + '+', 564, + '>', 2829, + 'I', 655, + 'i', 655, + 'l', 604, + 'n', 504, + 'r', 587, + 'B', 2731, + 'b', 2731, + ); + END_STATE(); + case 417: + if (lookahead == '+') ADVANCE(564); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'l') ADVANCE(604); + if (lookahead == 'n') ADVANCE(504); + if (lookahead == 'r') ADVANCE(587); + END_STATE(); + case 418: + if (lookahead == '+') ADVANCE(564); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'l') ADVANCE(604); + if (lookahead == 'r') ADVANCE(587); + END_STATE(); + case 419: + if (lookahead == '+') ADVANCE(564); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'n') ADVANCE(504); + if (lookahead == 'r') ADVANCE(587); + END_STATE(); + case 420: + if (lookahead == '+') ADVANCE(564); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'r') ADVANCE(587); + END_STATE(); + case 421: + if (lookahead == '+') ADVANCE(562); + if (lookahead == '>') ADVANCE(2821); + END_STATE(); + case 422: + if (lookahead == '+') ADVANCE(572); + if (lookahead == '>') ADVANCE(644); + if (lookahead == 'n') ADVANCE(504); + if (lookahead == 'r') ADVANCE(589); + END_STATE(); + case 423: + if (lookahead == '+') ADVANCE(572); + if (lookahead == '>') ADVANCE(644); + if (lookahead == 'r') ADVANCE(589); + END_STATE(); + case 424: + if (lookahead == '+') ADVANCE(572); + if (lookahead == '>') ADVANCE(644); + if (lookahead == 'r') ADVANCE(589); + if (lookahead == 'x') ADVANCE(626); + END_STATE(); + case 425: + if (lookahead == '+') ADVANCE(518); + if (lookahead == '>') ADVANCE(645); + if (lookahead == 'r') ADVANCE(2482); + if (lookahead == 'u') ADVANCE(619); + END_STATE(); + case 426: + if (lookahead == '+') ADVANCE(518); + if (lookahead == '>') ADVANCE(645); + if (lookahead == 'u') ADVANCE(619); + END_STATE(); + case 427: + if (lookahead == '+') ADVANCE(576); + if (lookahead == '>') ADVANCE(647); + END_STATE(); + case 428: + if (lookahead == '+') ADVANCE(522); + if (lookahead == '>') ADVANCE(649); + END_STATE(); + case 429: + if (lookahead == '-') ADVANCE(2329); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '_') ADVANCE(442); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + END_STATE(); + case 430: + if (lookahead == '-') ADVANCE(495); + END_STATE(); + case 431: + if (lookahead == '-') ADVANCE(637); + END_STATE(); + case 432: + if (lookahead == '-') ADVANCE(537); + END_STATE(); + case 433: + if (lookahead == '-') ADVANCE(537); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2505); + END_STATE(); + case 434: + if (lookahead == '-') ADVANCE(567); + END_STATE(); + case 435: + if (lookahead == '-') ADVANCE(616); + END_STATE(); + case 436: + if (lookahead == '-') ADVANCE(686); + END_STATE(); + case 437: + if (lookahead == '-') ADVANCE(638); + END_STATE(); + case 438: + if (lookahead == '-') ADVANCE(581); + END_STATE(); + case 439: + if (lookahead == '.') ADVANCE(472); + if (lookahead == '>') ADVANCE(2299); + if (lookahead == '_') ADVANCE(442); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + END_STATE(); + case 440: + if (lookahead == '.') ADVANCE(472); + if (lookahead == '_') ADVANCE(442); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + END_STATE(); + case 441: + if (lookahead == '.') ADVANCE(472); + if (lookahead == '_') ADVANCE(442); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + END_STATE(); + case 442: + if (lookahead == '.') ADVANCE(472); + if (lookahead == '_') ADVANCE(442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + END_STATE(); + case 443: + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(475); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2696); + END_STATE(); + case 444: + if (lookahead == '.') ADVANCE(2326); + END_STATE(); + case 445: + if (lookahead == '.') ADVANCE(444); + END_STATE(); + case 446: + if (lookahead == '.') ADVANCE(444); + if (lookahead == '_') ADVANCE(482); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2618); + END_STATE(); + case 447: + if (lookahead == '.') ADVANCE(473); + if (lookahead == '_') ADVANCE(447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + END_STATE(); + case 448: + if (lookahead == '2') ADVANCE(674); + if (lookahead == '0' || + lookahead == '1') ADVANCE(680); + END_STATE(); + case 449: + if (lookahead == ':') ADVANCE(2810); + if (lookahead == ';') ADVANCE(2813); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(449); + END_STATE(); + case 450: + if (lookahead == ':') ADVANCE(2810); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(450); + END_STATE(); + case 451: + if (lookahead == ':') ADVANCE(681); + END_STATE(); + case 452: + if (lookahead == ':') ADVANCE(682); + END_STATE(); + case 453: + if (lookahead == ';') ADVANCE(2813); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(453); + END_STATE(); + case 454: + if (lookahead == '=') ADVANCE(2492); + if (lookahead == '~') ADVANCE(2503); + END_STATE(); + case 455: + if (lookahead == '=') ADVANCE(2490); + if (lookahead == '>') ADVANCE(2416); + if (lookahead == '~') ADVANCE(2501); + END_STATE(); + case 456: + if (lookahead == '=') ADVANCE(2490); + if (lookahead == '~') ADVANCE(2501); + END_STATE(); + case 457: + if (lookahead == '=') ADVANCE(1790); + if (lookahead == '~') ADVANCE(1778); + END_STATE(); + case 458: + if (lookahead == '>') ADVANCE(2416); + END_STATE(); + case 459: + if (lookahead == '>') ADVANCE(2849); + END_STATE(); + case 460: + if (lookahead == '>') ADVANCE(2845); + END_STATE(); + case 461: + if (lookahead == '>') ADVANCE(2837); + END_STATE(); + case 462: + if (lookahead == '>') ADVANCE(2841); + END_STATE(); + case 463: + if (lookahead == '>') ADVANCE(2299); + END_STATE(); + case 464: + if (lookahead == '>') ADVANCE(646); + END_STATE(); + case 465: + if (lookahead == '>') ADVANCE(648); + END_STATE(); + case 466: + if (lookahead == '>') ADVANCE(650); + END_STATE(); + case 467: + if (lookahead == '>') ADVANCE(651); + END_STATE(); + case 468: + if (lookahead == 'I') ADVANCE(655); + if (lookahead == '_') ADVANCE(481); + if (lookahead == 'i') ADVANCE(497); + if (lookahead == '+' || + lookahead == '-') ADVANCE(481); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + END_STATE(); + case 469: + if (lookahead == 'I') ADVANCE(655); + if (lookahead == 'i') ADVANCE(655); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + END_STATE(); + case 470: + if (lookahead == 'I') ADVANCE(655); + if (lookahead == 'i') ADVANCE(497); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + END_STATE(); + case 471: + if (lookahead == 'I') ADVANCE(655); + if (lookahead == 'i') ADVANCE(553); + if (lookahead == 'o') ADVANCE(505); + if (lookahead == 's') ADVANCE(2738); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + END_STATE(); + case 472: + if (lookahead == '_') ADVANCE(472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); + END_STATE(); + case 473: + if (lookahead == '_') ADVANCE(473); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + END_STATE(); + case 474: + if (lookahead == '_') ADVANCE(474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + END_STATE(); + case 475: + if (lookahead == '_') ADVANCE(475); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2696); + END_STATE(); + case 476: + if (lookahead == '_') ADVANCE(477); + if (lookahead == '+' || + lookahead == '-') ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + END_STATE(); + case 477: + if (lookahead == '_') ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + END_STATE(); + case 478: + if (lookahead == '_') ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + END_STATE(); + case 479: + if (lookahead == '_') ADVANCE(481); + if (lookahead == 'o') ADVANCE(459); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + END_STATE(); + case 480: + if (lookahead == '_') ADVANCE(481); + if (lookahead == '+' || + lookahead == '-') ADVANCE(481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + END_STATE(); + case 481: + if (lookahead == '_') ADVANCE(481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + END_STATE(); + case 482: + if (lookahead == '_') ADVANCE(482); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2618); + END_STATE(); + case 483: + if (lookahead == '_') ADVANCE(484); + if (lookahead == '+' || + lookahead == '-') ADVANCE(484); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + END_STATE(); + case 484: + if (lookahead == '_') ADVANCE(484); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + END_STATE(); + case 485: + if (lookahead == '`') ADVANCE(2788); + if (lookahead != 0) ADVANCE(485); + END_STATE(); + case 486: + if (lookahead == 'a') ADVANCE(543); + if (lookahead == 'o') ADVANCE(506); + END_STATE(); + case 487: + if (lookahead == 'a') ADVANCE(640); + END_STATE(); + case 488: + if (lookahead == 'a') ADVANCE(551); + END_STATE(); + case 489: + if (lookahead == 'a') ADVANCE(593); + END_STATE(); + case 490: + if (lookahead == 'a') ADVANCE(599); + END_STATE(); + case 491: + if (lookahead == 'a') ADVANCE(625); + END_STATE(); + case 492: + if (lookahead == 'a') ADVANCE(622); + END_STATE(); + case 493: + if (lookahead == 'a') ADVANCE(628); + END_STATE(); + case 494: + if (lookahead == 'a') ADVANCE(624); + END_STATE(); + case 495: + if (lookahead == 'a') ADVANCE(561); + if (lookahead == 'o') ADVANCE(584); + if (lookahead == 's') ADVANCE(530); + if (lookahead == 'x') ADVANCE(573); + END_STATE(); + case 496: + if (lookahead == 'a') ADVANCE(609); + END_STATE(); + case 497: + if (lookahead == 'b') ADVANCE(2731); + END_STATE(); + case 498: + if (lookahead == 'c') ADVANCE(2738); + END_STATE(); + case 499: + if (lookahead == 'c') ADVANCE(531); + END_STATE(); + case 500: + if (lookahead == 'c') ADVANCE(532); + END_STATE(); + case 501: + if (lookahead == 'c') ADVANCE(521); + END_STATE(); + case 502: + if (lookahead == 'd') ADVANCE(2478); + END_STATE(); + case 503: + if (lookahead == 'd') ADVANCE(2534); + END_STATE(); + case 504: + if (lookahead == 'd') ADVANCE(602); + END_STATE(); + case 505: + if (lookahead == 'd') ADVANCE(2516); + END_STATE(); + case 506: + if (lookahead == 'd') ADVANCE(633); + END_STATE(); + case 507: + if (lookahead == 'e') ADVANCE(2632); + END_STATE(); + case 508: + if (lookahead == 'e') ADVANCE(2640); + END_STATE(); + case 509: + if (lookahead == 'e') ADVANCE(526); + if (lookahead == 'o') ADVANCE(2393); + END_STATE(); + case 510: + if (lookahead == 'e') ADVANCE(2291); + END_STATE(); + case 511: + if (lookahead == 'e') ADVANCE(2384); + END_STATE(); + case 512: + if (lookahead == 'e') ADVANCE(2286); + END_STATE(); + case 513: + if (lookahead == 'e') ADVANCE(2404); + END_STATE(); + case 514: + if (lookahead == 'e') ADVANCE(2321); + END_STATE(); + case 515: + if (lookahead == 'e') ADVANCE(498); + if (lookahead == 't') ADVANCE(489); + END_STATE(); + case 516: + if (lookahead == 'e') ADVANCE(460); + END_STATE(); + case 517: + if (lookahead == 'e') ADVANCE(595); + END_STATE(); + case 518: + if (lookahead == 'e') ADVANCE(465); END_STATE(); case 519: - if (lookahead == '\'') ADVANCE(3486); - if (lookahead != 0) ADVANCE(519); + if (lookahead == 'e') ADVANCE(592); END_STATE(); case 520: - if (lookahead == '*') ADVANCE(168); + if (lookahead == 'e') ADVANCE(594); END_STATE(); case 521: - if (lookahead == '*') ADVANCE(868); - if (lookahead == '=') ADVANCE(1103); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3215); + if (lookahead == 'e') ADVANCE(549); END_STATE(); case 522: - if (lookahead == '*') ADVANCE(868); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3215); + if (lookahead == 'e') ADVANCE(597); END_STATE(); case 523: - if (lookahead == '+') ADVANCE(673); - if (lookahead == '>') ADVANCE(856); - if (lookahead == 'r') ADVANCE(3192); - if (lookahead == 'u') ADVANCE(810); + if (lookahead == 'f') ADVANCE(2398); END_STATE(); case 524: - if (lookahead == '+') ADVANCE(673); - if (lookahead == '>') ADVANCE(856); - if (lookahead == 'r') ADVANCE(173); - if (lookahead == 'u') ADVANCE(810); + if (lookahead == 'f') ADVANCE(2398); + if (lookahead == 'n') ADVANCE(2371); END_STATE(); case 525: - if (lookahead == '+') ADVANCE(673); - if (lookahead == '>') ADVANCE(856); - if (lookahead == 'r') ADVANCE(874); - if (lookahead == 'u') ADVANCE(810); + if (lookahead == 'f') ADVANCE(2398); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(659); END_STATE(); case 526: - if (lookahead == '+') ADVANCE(673); - if (lookahead == '>') ADVANCE(856); - if (lookahead == 'u') ADVANCE(810); + if (lookahead == 'f') ADVANCE(2273); END_STATE(); case 527: - if (lookahead == '+') ADVANCE(619); - if (lookahead == '-') ADVANCE(621); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == '_') ADVANCE(621); - if (lookahead == 'n') ADVANCE(657); - if (lookahead == 'r') ADVANCE(769); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if (lookahead == 'f') ADVANCE(2320); END_STATE(); case 528: - if (lookahead == '+') ADVANCE(619); - if (lookahead == '-') ADVANCE(621); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == '_') ADVANCE(621); - if (lookahead == 'r') ADVANCE(769); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if (lookahead == 'h') ADVANCE(2488); END_STATE(); case 529: - if (lookahead == '+') ADVANCE(590); - if (lookahead == '=') ADVANCE(1101); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3219); + if (lookahead == 'h') ADVANCE(2486); END_STATE(); case 530: - if (lookahead == '+') ADVANCE(589); - if (lookahead == '=') ADVANCE(1101); + if (lookahead == 'h') ADVANCE(544); END_STATE(); case 531: - if (lookahead == '+') ADVANCE(741); - if (lookahead == '>') ADVANCE(855); - if (lookahead == 'n') ADVANCE(646); - if (lookahead == 'r') ADVANCE(767); + if (lookahead == 'h') ADVANCE(2409); END_STATE(); case 532: - if (lookahead == '+') ADVANCE(741); - if (lookahead == '>') ADVANCE(855); - if (lookahead == 'n') ADVANCE(656); - if (lookahead == 'r') ADVANCE(767); + if (lookahead == 'h') ADVANCE(2432); END_STATE(); case 533: - if (lookahead == '+') ADVANCE(741); - if (lookahead == '>') ADVANCE(855); - if (lookahead == 'r') ADVANCE(767); + if (lookahead == 'h') ADVANCE(2312); END_STATE(); case 534: - if (lookahead == '+') ADVANCE(741); - if (lookahead == '>') ADVANCE(855); - if (lookahead == 'r') ADVANCE(767); - if (lookahead == 'x') ADVANCE(812); + if (lookahead == 'h') ADVANCE(2318); END_STATE(); case 535: - if (lookahead == '+') ADVANCE(742); - if (lookahead == '>') ADVANCE(858); + if (lookahead == 'h') ADVANCE(434); END_STATE(); case 536: - if (lookahead == '+') ADVANCE(746); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'I') ADVANCE(889); - if (lookahead == 'i') ADVANCE(889); - if (lookahead == 'r') ADVANCE(769); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + if (lookahead == 'i') ADVANCE(608); END_STATE(); case 537: - if (lookahead == '+') ADVANCE(746); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'l') ADVANCE(795); - if (lookahead == 'r') ADVANCE(769); + if (lookahead == 'i') ADVANCE(552); END_STATE(); case 538: - if (lookahead == '+') ADVANCE(746); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'n') ADVANCE(646); - if (lookahead == 'r') ADVANCE(769); + if (lookahead == 'i') ADVANCE(490); END_STATE(); case 539: - if (lookahead == '+') ADVANCE(746); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'n') ADVANCE(656); - if (lookahead == 'r') ADVANCE(769); + if (lookahead == 'i') ADVANCE(615); END_STATE(); case 540: - if (lookahead == '+') ADVANCE(746); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'n') ADVANCE(657); - if (lookahead == 'r') ADVANCE(769); + if (lookahead == 'i') ADVANCE(617); END_STATE(); case 541: - if (lookahead == '+') ADVANCE(746); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'r') ADVANCE(769); + if (lookahead == 'i') ADVANCE(620); END_STATE(); case 542: - if (lookahead == '+') ADVANCE(869); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3219); + if (lookahead == 'k') ADVANCE(2738); END_STATE(); case 543: - if (lookahead == '+') ADVANCE(669); - if (lookahead == '>') ADVANCE(3609); - if (lookahead == 'r') ADVANCE(3192); - if (lookahead == 'u') ADVANCE(813); + if (lookahead == 'k') ADVANCE(511); + if (lookahead == 't') ADVANCE(499); END_STATE(); case 544: - if (lookahead == '+') ADVANCE(669); - if (lookahead == '>') ADVANCE(3609); - if (lookahead == 'r') ADVANCE(173); - if (lookahead == 'u') ADVANCE(813); + if (lookahead == 'l') ADVANCE(2530); + if (lookahead == 'r') ADVANCE(2532); END_STATE(); case 545: - if (lookahead == '+') ADVANCE(669); - if (lookahead == '>') ADVANCE(3609); - if (lookahead == 'r') ADVANCE(874); - if (lookahead == 'u') ADVANCE(813); + if (lookahead == 'l') ADVANCE(2624); END_STATE(); case 546: - if (lookahead == '+') ADVANCE(669); - if (lookahead == '>') ADVANCE(3609); - if (lookahead == 'u') ADVANCE(813); + if (lookahead == 'l') ADVANCE(538); END_STATE(); case 547: - if (lookahead == '+') ADVANCE(671); - if (lookahead == '>') ADVANCE(860); + if (lookahead == 'l') ADVANCE(545); END_STATE(); case 548: - if (lookahead == '+') ADVANCE(755); - if (lookahead == '>') ADVANCE(3597); + if (lookahead == 'l') ADVANCE(438); END_STATE(); case 549: - if (lookahead == '+') ADVANCE(675); - if (lookahead == '>') ADVANCE(3601); + if (lookahead == 'l') ADVANCE(548); END_STATE(); case 550: - if (lookahead == '-') ADVANCE(2948); - if (lookahead == '.') ADVANCE(613); - if (lookahead == '_') ADVANCE(568); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (lookahead == 'l') ADVANCE(512); END_STATE(); case 551: - if (lookahead == '-') ADVANCE(638); + if (lookahead == 'l') ADVANCE(603); END_STATE(); case 552: - if (lookahead == '-') ADVANCE(844); + if (lookahead == 'n') ADVANCE(2484); END_STATE(); case 553: - if (lookahead == '-') ADVANCE(706); + if (lookahead == 'n') ADVANCE(2738); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); END_STATE(); case 554: - if (lookahead == '-') ADVANCE(637); + if (lookahead == 'n') ADVANCE(502); END_STATE(); case 555: - if (lookahead == '-') ADVANCE(708); + if (lookahead == 'n') ADVANCE(502); + if (lookahead == 's') ADVANCE(2464); END_STATE(); case 556: - if (lookahead == '-') ADVANCE(701); + if (lookahead == 'n') ADVANCE(2371); END_STATE(); case 557: - if (lookahead == '-') ADVANCE(743); + if (lookahead == 'n') ADVANCE(2281); END_STATE(); case 558: - if (lookahead == '-') ADVANCE(811); + if (lookahead == 'n') ADVANCE(2319); END_STATE(); case 559: - if (lookahead == '-') ADVANCE(915); + if (lookahead == 'n') ADVANCE(504); END_STATE(); case 560: - if (lookahead == '-') ADVANCE(845); + if (lookahead == 'n') ADVANCE(605); END_STATE(); case 561: - if (lookahead == '-') ADVANCE(846); + if (lookahead == 'n') ADVANCE(503); END_STATE(); case 562: - if (lookahead == '-') ADVANCE(764); + if (lookahead == 'o') ADVANCE(634); END_STATE(); case 563: - if (lookahead == '-') ADVANCE(847); + if (lookahead == 'o') ADVANCE(2393); END_STATE(); case 564: - if (lookahead == '-') ADVANCE(849); + if (lookahead == 'o') ADVANCE(459); END_STATE(); case 565: - if (lookahead == '-') ADVANCE(850); + if (lookahead == 'o') ADVANCE(583); END_STATE(); case 566: - if (lookahead == '.') ADVANCE(613); - if (lookahead == '>') ADVANCE(2906); - if (lookahead == '_') ADVANCE(568); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (lookahead == 'o') ADVANCE(527); END_STATE(); case 567: - if (lookahead == '.') ADVANCE(613); - if (lookahead == '_') ADVANCE(568); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (lookahead == 'o') ADVANCE(578); END_STATE(); case 568: - if (lookahead == '.') ADVANCE(613); - if (lookahead == '_') ADVANCE(568); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (lookahead == 'o') ADVANCE(613); END_STATE(); case 569: - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (lookahead == 'o') ADVANCE(613); + if (lookahead == 's') ADVANCE(2738); END_STATE(); case 570: - if (lookahead == '.') ADVANCE(3274); + if (lookahead == 'o') ADVANCE(505); END_STATE(); case 571: - if (lookahead == '.') ADVANCE(3274); - if (lookahead == '_') ADVANCE(623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + if (lookahead == 'o') ADVANCE(560); END_STATE(); case 572: - if (lookahead == '.') ADVANCE(2944); + if (lookahead == 'o') ADVANCE(464); END_STATE(); case 573: - if (lookahead == '.') ADVANCE(614); - if (lookahead == '_') ADVANCE(573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if (lookahead == 'o') ADVANCE(585); END_STATE(); case 574: - if (lookahead == '.') ADVANCE(572); + if (lookahead == 'o') ADVANCE(610); + if (lookahead == 'u') ADVANCE(547); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(664); END_STATE(); case 575: - if (lookahead == '.') ADVANCE(572); - if (lookahead == '_') ADVANCE(623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + if (lookahead == 'o') ADVANCE(612); END_STATE(); case 576: - if (lookahead == '/') ADVANCE(870); - if (lookahead == '=') ADVANCE(1104); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3216); + if (lookahead == 'o') ADVANCE(635); END_STATE(); case 577: - if (lookahead == '/') ADVANCE(870); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3216); + if (lookahead == 'p') ADVANCE(514); END_STATE(); case 578: - if (lookahead == '2') ADVANCE(903); - if (lookahead == '0' || - lookahead == '1') ADVANCE(910); + if (lookahead == 'p') ADVANCE(621); END_STATE(); case 579: - if (lookahead == ':') ADVANCE(3511); - if (lookahead == ';') ADVANCE(3523); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(579); + if (lookahead == 'p') ADVANCE(492); END_STATE(); case 580: - if (lookahead == ':') ADVANCE(3511); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(580); + if (lookahead == 'p') ADVANCE(493); END_STATE(); case 581: - if (lookahead == ':') ADVANCE(907); + if (lookahead == 'p') ADVANCE(494); END_STATE(); case 582: - if (lookahead == ':') ADVANCE(911); + if (lookahead == 'r') ADVANCE(2482); END_STATE(); case 583: - if (lookahead == ';') ADVANCE(3523); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(583); + if (lookahead == 'r') ADVANCE(2480); END_STATE(); case 584: - if (lookahead == '=') ADVANCE(3203); - if (lookahead == '~') ADVANCE(3209); + if (lookahead == 'r') ADVANCE(2538); END_STATE(); case 585: - if (lookahead == '=') ADVANCE(1103); + if (lookahead == 'r') ADVANCE(2536); END_STATE(); case 586: - if (lookahead == '=') ADVANCE(1102); + if (lookahead == 'r') ADVANCE(2738); END_STATE(); case 587: - if (lookahead == '=') ADVANCE(1102); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3220); + if (lookahead == 'r') ADVANCE(421); END_STATE(); case 588: - if (lookahead == '=') ADVANCE(1104); + if (lookahead == 'r') ADVANCE(632); END_STATE(); case 589: - if (lookahead == '=') ADVANCE(1105); + if (lookahead == 'r') ADVANCE(427); END_STATE(); case 590: - if (lookahead == '=') ADVANCE(1105); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3214); + if (lookahead == 'r') ADVANCE(631); END_STATE(); case 591: - if (lookahead == '=') ADVANCE(866); - if (lookahead == '~') ADVANCE(867); + if (lookahead == 'r') ADVANCE(462); END_STATE(); case 592: - if (lookahead == '=') ADVANCE(3202); - if (lookahead == '>') ADVANCE(3093); - if (lookahead == '~') ADVANCE(3208); + if (lookahead == 'r') ADVANCE(557); END_STATE(); case 593: - if (lookahead == '=') ADVANCE(166); - if (lookahead == '~') ADVANCE(167); + if (lookahead == 'r') ADVANCE(629); END_STATE(); case 594: - if (lookahead == '=') ADVANCE(886); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3237); + if (lookahead == 'r') ADVANCE(558); END_STATE(); case 595: - if (lookahead == '=') ADVANCE(871); - if (lookahead == '>') ADVANCE(3093); - if (lookahead == '~') ADVANCE(872); + if (lookahead == 'r') ADVANCE(591); END_STATE(); case 596: - if (lookahead == '=') ADVANCE(871); - if (lookahead == '~') ADVANCE(872); + if (lookahead == 'r') ADVANCE(467); END_STATE(); case 597: - if (lookahead == '=') ADVANCE(887); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3239); + if (lookahead == 'r') ADVANCE(596); END_STATE(); case 598: - if (lookahead == '=') ADVANCE(170); - if (lookahead == '>') ADVANCE(3093); - if (lookahead == '~') ADVANCE(171); + if (lookahead == 's') ADVANCE(2738); END_STATE(); case 599: - if (lookahead == '=') ADVANCE(170); - if (lookahead == '~') ADVANCE(171); + if (lookahead == 's') ADVANCE(834); END_STATE(); case 600: - if (lookahead == '>') ADVANCE(3625); + if (lookahead == 's') ADVANCE(2464); END_STATE(); case 601: - if (lookahead == '>') ADVANCE(3621); + if (lookahead == 's') ADVANCE(510); END_STATE(); case 602: - if (lookahead == '>') ADVANCE(3613); + if (lookahead == 's') ADVANCE(431); END_STATE(); case 603: - if (lookahead == '>') ADVANCE(3617); + if (lookahead == 's') ADVANCE(508); END_STATE(); case 604: - if (lookahead == '>') ADVANCE(3093); + if (lookahead == 's') ADVANCE(513); END_STATE(); case 605: - if (lookahead == '>') ADVANCE(2906); + if (lookahead == 's') ADVANCE(611); END_STATE(); case 606: - if (lookahead == '>') ADVANCE(857); + if (lookahead == 's') ADVANCE(437); END_STATE(); case 607: - if (lookahead == '>') ADVANCE(859); + if (lookahead == 't') ADVANCE(489); END_STATE(); case 608: - if (lookahead == '>') ADVANCE(861); + if (lookahead == 't') ADVANCE(430); END_STATE(); case 609: - if (lookahead == '>') ADVANCE(862); + if (lookahead == 't') ADVANCE(499); END_STATE(); case 610: - if (lookahead == 'I') ADVANCE(889); - if (lookahead == 'i') ADVANCE(889); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + if (lookahead == 't') ADVANCE(675); END_STATE(); case 611: - if (lookahead == 'I') ADVANCE(889); - if (lookahead == 'i') ADVANCE(641); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + if (lookahead == 't') ADVANCE(853); END_STATE(); case 612: - if (lookahead == 'I') ADVANCE(889); - if (lookahead == 'i') ADVANCE(725); - if (lookahead == 's') ADVANCE(3425); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + if (lookahead == 't') ADVANCE(433); END_STATE(); case 613: - if (lookahead == '_') ADVANCE(613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if (lookahead == 't') ADVANCE(432); END_STATE(); case 614: - if (lookahead == '_') ADVANCE(614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if (lookahead == 't') ADVANCE(415); END_STATE(); case 615: - if (lookahead == '_') ADVANCE(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == 't') ADVANCE(528); END_STATE(); case 616: - if (lookahead == '_') ADVANCE(616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (lookahead == 't') ADVANCE(641); END_STATE(); case 617: - if (lookahead == '_') ADVANCE(618); - if (lookahead == '+' || - lookahead == '-') ADVANCE(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (lookahead == 't') ADVANCE(529); END_STATE(); case 618: - if (lookahead == '_') ADVANCE(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (lookahead == 't') ADVANCE(461); END_STATE(); case 619: - if (lookahead == '_') ADVANCE(621); - if (lookahead == 'o') ADVANCE(600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if (lookahead == 't') ADVANCE(428); END_STATE(); case 620: - if (lookahead == '_') ADVANCE(621); - if (lookahead == '+' || - lookahead == '-') ADVANCE(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if (lookahead == 't') ADVANCE(535); END_STATE(); case 621: - if (lookahead == '_') ADVANCE(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if (lookahead == 't') ADVANCE(435); END_STATE(); case 622: - if (lookahead == '_') ADVANCE(622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if (lookahead == 't') ADVANCE(533); END_STATE(); case 623: - if (lookahead == '_') ADVANCE(623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + if (lookahead == 't') ADVANCE(466); END_STATE(); case 624: - if (lookahead == '_') ADVANCE(625); - if (lookahead == '+' || - lookahead == '-') ADVANCE(625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if (lookahead == 't') ADVANCE(534); END_STATE(); case 625: - if (lookahead == '_') ADVANCE(625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if (lookahead == 't') ADVANCE(500); END_STATE(); case 626: - if (lookahead == '`') ADVANCE(3488); - if (lookahead != 0) ADVANCE(626); + if (lookahead == 't') ADVANCE(519); END_STATE(); case 627: - if (lookahead == 'a') ADVANCE(712); - if (lookahead == 'o') ADVANCE(647); + if (lookahead == 't') ADVANCE(520); END_STATE(); case 628: - if (lookahead == 'a') ADVANCE(851); + if (lookahead == 't') ADVANCE(627); END_STATE(); case 629: - if (lookahead == 'a') ADVANCE(772); + if (lookahead == 't') ADVANCE(606); END_STATE(); case 630: - if (lookahead == 'a') ADVANCE(721); + if (lookahead == 'u') ADVANCE(642); + if (lookahead == 'x') ADVANCE(694); + if (lookahead != 0) ADVANCE(2802); END_STATE(); case 631: - if (lookahead == 'a') ADVANCE(789); + if (lookahead == 'u') ADVANCE(507); END_STATE(); case 632: - if (lookahead == 'a') ADVANCE(824); + if (lookahead == 'u') ADVANCE(507); + if (lookahead == 'y') ADVANCE(2427); END_STATE(); case 633: - if (lookahead == 'a') ADVANCE(818); + if (lookahead == 'u') ADVANCE(550); END_STATE(); case 634: - if (lookahead == 'a') ADVANCE(828); + if (lookahead == 'u') ADVANCE(618); END_STATE(); case 635: - if (lookahead == 'a') ADVANCE(820); + if (lookahead == 'u') ADVANCE(623); END_STATE(); case 636: - if (lookahead == 'a') ADVANCE(804); + if (lookahead == 'u') ADVANCE(643); + if (lookahead == 'x') ADVANCE(695); + if (lookahead != 0) ADVANCE(2790); END_STATE(); case 637: - if (lookahead == 'a') ADVANCE(738); - if (lookahead == 'o') ADVANCE(782); - if (lookahead == 's') ADVANCE(690); - if (lookahead == 'x') ADVANCE(758); + if (lookahead == 'w') ADVANCE(539); END_STATE(); case 638: - if (lookahead == 'a') ADVANCE(737); - if (lookahead == 'o') ADVANCE(780); - if (lookahead == 's') ADVANCE(683); - if (lookahead == 'x') ADVANCE(759); + if (lookahead == 'w') ADVANCE(540); END_STATE(); case 639: - if (lookahead == 'a') ADVANCE(786); + if (lookahead == 'w') ADVANCE(541); END_STATE(); case 640: - if (lookahead == 'a') ADVANCE(787); + if (lookahead == 'y') ADVANCE(2738); END_STATE(); case 641: - if (lookahead == 'b') ADVANCE(3420); + if (lookahead == 'y') ADVANCE(577); END_STATE(); case 642: - if (lookahead == 'c') ADVANCE(3425); + if (lookahead == '{') ADVANCE(691); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(689); END_STATE(); case 643: - if (lookahead == 'c') ADVANCE(688); + if (lookahead == '{') ADVANCE(693); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(696); END_STATE(); case 644: - if (lookahead == 'c') ADVANCE(689); + if (lookahead == '|') ADVANCE(2267); END_STATE(); case 645: - if (lookahead == 'c') ADVANCE(674); + if (lookahead == '|') ADVANCE(2268); END_STATE(); case 646: - if (lookahead == 'd') ADVANCE(792); + if (lookahead == '|') ADVANCE(2272); END_STATE(); case 647: - if (lookahead == 'd') ADVANCE(837); + if (lookahead == '|') ADVANCE(2265); END_STATE(); case 648: - if (lookahead == 'd') ADVANCE(3184); + if (lookahead == '|') ADVANCE(2271); END_STATE(); case 649: - if (lookahead == 'd') ADVANCE(663); + if (lookahead == '|') ADVANCE(2266); END_STATE(); case 650: - if (lookahead == 'd') ADVANCE(174); + if (lookahead == '|') ADVANCE(2269); END_STATE(); case 651: - if (lookahead == 'd') ADVANCE(175); + if (lookahead == '|') ADVANCE(2270); END_STATE(); case 652: - if (lookahead == 'd') ADVANCE(875); + if (lookahead == '}') ADVANCE(2802); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(652); END_STATE(); case 653: - if (lookahead == 'd') ADVANCE(876); + if (lookahead == '}') ADVANCE(2790); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(653); END_STATE(); case 654: - if (lookahead == 'd') ADVANCE(179); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(664); END_STATE(); case 655: - if (lookahead == 'd') ADVANCE(880); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); END_STATE(); case 656: - if (lookahead == 'd') ADVANCE(798); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2716); END_STATE(); case 657: - if (lookahead == 'd') ADVANCE(800); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2717); END_STATE(); case 658: - if (lookahead == 'e') ADVANCE(2930); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(660); END_STATE(); case 659: - if (lookahead == 'e') ADVANCE(2150); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2713); END_STATE(); case 660: - if (lookahead == 'e') ADVANCE(2195); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); END_STATE(); case 661: - if (lookahead == 'e') ADVANCE(682); - if (lookahead == 'o') ADVANCE(3061); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(670); END_STATE(); case 662: - if (lookahead == 'e') ADVANCE(2897); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(671); END_STATE(); case 663: - if (lookahead == 'e') ADVANCE(3144); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(656); END_STATE(); case 664: - if (lookahead == 'e') ADVANCE(3048); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2722); END_STATE(); case 665: - if (lookahead == 'e') ADVANCE(2890); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(661); END_STATE(); case 666: - if (lookahead == 'e') ADVANCE(3076); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(657); END_STATE(); case 667: - if (lookahead == 'e') ADVANCE(843); - if (lookahead == 'o') ADVANCE(805); - if (lookahead == 'u') ADVANCE(714); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(895); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(659); END_STATE(); case 668: - if (lookahead == 'e') ADVANCE(642); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(658); END_STATE(); case 669: - if (lookahead == 'e') ADVANCE(601); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(662); END_STATE(); case 670: - if (lookahead == 'e') ADVANCE(771); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(673); END_STATE(); case 671: - if (lookahead == 'e') ADVANCE(775); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(672); END_STATE(); case 672: - if (lookahead == 'e') ADVANCE(773); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2704); END_STATE(); case 673: - if (lookahead == 'e') ADVANCE(607); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2714); END_STATE(); case 674: - if (lookahead == 'e') ADVANCE(716); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2760); END_STATE(); case 675: - if (lookahead == 'e') ADVANCE(777); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2505); END_STATE(); case 676: - if (lookahead == 'f') ADVANCE(2929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(452); END_STATE(); case 677: - if (lookahead == 'f') ADVANCE(3068); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2755); END_STATE(); case 678: - if (lookahead == 'f') ADVANCE(3068); - if (lookahead == 'n') ADVANCE(3030); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); END_STATE(); case 679: - if (lookahead == 'f') ADVANCE(3068); - if (lookahead == 'n') ADVANCE(172); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2772); END_STATE(); case 680: - if (lookahead == 'f') ADVANCE(3068); - if (lookahead == 'n') ADVANCE(873); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2760); END_STATE(); case 681: - if (lookahead == 'f') ADVANCE(3068); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(891); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); END_STATE(); case 682: - if (lookahead == 'f') ADVANCE(2872); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); END_STATE(); case 683: - if (lookahead == 'h') ADVANCE(719); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2771); END_STATE(); case 684: - if (lookahead == 'h') ADVANCE(2919); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(436); END_STATE(); case 685: - if (lookahead == 'h') ADVANCE(3200); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(684); END_STATE(); case 686: - if (lookahead == 'h') ADVANCE(3198); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(683); END_STATE(); case 687: - if (lookahead == 'h') ADVANCE(2927); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(451); END_STATE(); case 688: - if (lookahead == 'h') ADVANCE(3084); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(687); END_STATE(); case 689: - if (lookahead == 'h') ADVANCE(3114); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(694); END_STATE(); case 690: - if (lookahead == 'h') ADVANCE(720); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2802); END_STATE(); case 691: - if (lookahead == 'h') ADVANCE(557); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(652); END_STATE(); case 692: - if (lookahead == 'h') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2790); END_STATE(); case 693: - if (lookahead == 'h') ADVANCE(184); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(653); END_STATE(); case 694: - if (lookahead == 'h') ADVANCE(884); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(690); END_STATE(); case 695: - if (lookahead == 'h') ADVANCE(885); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(692); END_STATE(); case 696: - if (lookahead == 'i') ADVANCE(803); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(695); END_STATE(); case 697: - if (lookahead == 'i') ADVANCE(649); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '(', 2506, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 2559, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '[', 2752, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3054, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3052, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(714); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(3246); END_STATE(); case 698: - if (lookahead == 'i') ADVANCE(631); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '(', 2506, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 2559, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3058, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3066, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '|', 2264, + '}', 2415, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(716); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 699: - if (lookahead == 'i') ADVANCE(794); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '(', 2506, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 3079, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3054, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3052, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead)) ADVANCE(3246); END_STATE(); case 700: - if (lookahead == 'i') ADVANCE(809); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '(', 2506, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 3079, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3058, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3066, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '|', 2264, + '}', 2415, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(716); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 701: - if (lookahead == 'i') ADVANCE(723); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '(', 2506, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 3079, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3054, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3052, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(714); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(3246); END_STATE(); case 702: - if (lookahead == 'i') ADVANCE(815); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '(', 2506, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 3079, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3058, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3066, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '|', 2264, + '}', 2415, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(716); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 703: - if (lookahead == 'i') ADVANCE(817); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '(', 2506, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 3079, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3048, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3052, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(714); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(3246); END_STATE(); case 704: - if (lookahead == 'i') ADVANCE(821); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + '(', 2506, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 3079, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 3087, + '>', 2323, + 'B', 2731, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'b', 2734, + 'd', 3121, + 'e', 3062, + 'g', 3102, + 'h', 3172, + 'i', 3153, + 'k', 3102, + 'm', 3104, + 'n', 3160, + 'o', 3066, + 'p', 3102, + 's', 3132, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '|', 2264, + '}', 2415, + 0xb5, 3182, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(716); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 705: - if (lookahead == 'i') ADVANCE(822); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 3087, + '>', 2323, + 'a', 3154, + 'b', 3142, + 'e', 3050, + 'i', 3153, + 'm', 3159, + 'n', 3161, + 'o', 3052, + 's', 3191, + 'x', 3163, + '|', 2264, + '}', 2415, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 706: - if (lookahead == 'i') ADVANCE(734); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3085, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 3087, + '>', 2323, + 'a', 3154, + 'b', 3142, + 'e', 3064, + 'i', 3153, + 'm', 3159, + 'n', 3161, + 'o', 3066, + 's', 3191, + 'x', 3163, + '|', 2264, + '}', 2415, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(716); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); case 707: - if (lookahead == 'i') ADVANCE(823); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3284, + '#', 4075, + '(', 2506, + ')', 2303, + '*', 2475, + '+', 2524, + '-', 2357, + '/', 2514, + ';', 2263, + '<', 2496, + '=', 3286, + '>', 2324, + 'a', 3373, + 'b', 3356, + 'e', 3256, + 'i', 3374, + 'm', 3386, + 'n', 3389, + 'o', 3258, + 's', 3429, + 'x', 3388, + '|', 2264, + '}', 2415, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); case 708: - if (lookahead == 'i') ADVANCE(735); - END_STATE(); - case 709: - if (lookahead == 'i') ADVANCE(825); - END_STATE(); - case 710: - if (lookahead == 'i') ADVANCE(827); - END_STATE(); - case 711: - if (lookahead == 'k') ADVANCE(3425); - END_STATE(); - case 712: - if (lookahead == 'k') ADVANCE(664); - if (lookahead == 't') ADVANCE(643); - END_STATE(); - case 713: - if (lookahead == 'l') ADVANCE(2203); - END_STATE(); - case 714: - if (lookahead == 'l') ADVANCE(713); - END_STATE(); - case 715: - if (lookahead == 'l') ADVANCE(698); - END_STATE(); - case 716: - if (lookahead == 'l') ADVANCE(717); - END_STATE(); - case 717: - if (lookahead == 'l') ADVANCE(562); - END_STATE(); - case 718: - if (lookahead == 'l') ADVANCE(665); - END_STATE(); - case 719: - if (lookahead == 'l') ADVANCE(180); - if (lookahead == 'r') ADVANCE(181); - END_STATE(); - case 720: - if (lookahead == 'l') ADVANCE(881); - if (lookahead == 'r') ADVANCE(882); - END_STATE(); - case 721: - if (lookahead == 'l') ADVANCE(793); - END_STATE(); - case 722: - if (lookahead == 'n') ADVANCE(650); - END_STATE(); - case 723: - if (lookahead == 'n') ADVANCE(3196); - END_STATE(); - case 724: - if (lookahead == 'n') ADVANCE(2928); - END_STATE(); - case 725: - if (lookahead == 'n') ADVANCE(3425); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - END_STATE(); - case 726: - if (lookahead == 'n') ADVANCE(2883); - END_STATE(); - case 727: - if (lookahead == 'n') ADVANCE(3030); - END_STATE(); - case 728: - if (lookahead == 'n') ADVANCE(646); - END_STATE(); - case 729: - if (lookahead == 'n') ADVANCE(648); - END_STATE(); - case 730: - if (lookahead == 'n') ADVANCE(648); - if (lookahead == 's') ADVANCE(3168); - END_STATE(); - case 731: - if (lookahead == 'n') ADVANCE(652); - END_STATE(); - case 732: - if (lookahead == 'n') ADVANCE(172); - END_STATE(); - case 733: - if (lookahead == 'n') ADVANCE(873); - END_STATE(); - case 734: - if (lookahead == 'n') ADVANCE(178); - END_STATE(); - case 735: - if (lookahead == 'n') ADVANCE(879); - END_STATE(); - case 736: - if (lookahead == 'n') ADVANCE(796); - END_STATE(); - case 737: - if (lookahead == 'n') ADVANCE(654); - END_STATE(); - case 738: - if (lookahead == 'n') ADVANCE(655); - END_STATE(); - case 739: - if (lookahead == 'n') ADVANCE(656); - END_STATE(); - case 740: - if (lookahead == 'o') ADVANCE(3061); - END_STATE(); - case 741: - if (lookahead == 'o') ADVANCE(606); - END_STATE(); - case 742: - if (lookahead == 'o') ADVANCE(840); - END_STATE(); - case 743: - if (lookahead == 'o') ADVANCE(761); - END_STATE(); - case 744: - if (lookahead == 'o') ADVANCE(736); - END_STATE(); - case 745: - if (lookahead == 'o') ADVANCE(808); - END_STATE(); - case 746: - if (lookahead == 'o') ADVANCE(600); - END_STATE(); - case 747: - if (lookahead == 'o') ADVANCE(676); - END_STATE(); - case 748: - if (lookahead == 'o') ADVANCE(805); - END_STATE(); - case 749: - if (lookahead == 'o') ADVANCE(805); - if (lookahead == 'u') ADVANCE(714); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(895); - END_STATE(); - case 750: - if (lookahead == 'o') ADVANCE(768); - END_STATE(); - case 751: - if (lookahead == 'o') ADVANCE(781); - END_STATE(); - case 752: - if (lookahead == 'o') ADVANCE(814); - END_STATE(); - case 753: - if (lookahead == 'o') ADVANCE(779); - END_STATE(); - case 754: - if (lookahead == 'o') ADVANCE(651); - END_STATE(); - case 755: - if (lookahead == 'o') ADVANCE(841); - END_STATE(); - case 756: - if (lookahead == 'o') ADVANCE(653); - END_STATE(); - case 757: - if (lookahead == 'o') ADVANCE(826); - END_STATE(); - case 758: - if (lookahead == 'o') ADVANCE(784); - END_STATE(); - case 759: - if (lookahead == 'o') ADVANCE(783); - END_STATE(); - case 760: - if (lookahead == 'p') ADVANCE(658); - END_STATE(); - case 761: - if (lookahead == 'p') ADVANCE(819); - END_STATE(); - case 762: - if (lookahead == 'p') ADVANCE(633); - END_STATE(); - case 763: - if (lookahead == 'p') ADVANCE(634); - END_STATE(); - case 764: - if (lookahead == 'p') ADVANCE(635); - END_STATE(); - case 765: - if (lookahead == 'r') ADVANCE(3425); - END_STATE(); - case 766: - if (lookahead == 'r') ADVANCE(839); - END_STATE(); - case 767: - if (lookahead == 'r') ADVANCE(535); - END_STATE(); - case 768: - if (lookahead == 'r') ADVANCE(3188); - END_STATE(); - case 769: - if (lookahead == 'r') ADVANCE(548); - END_STATE(); - case 770: - if (lookahead == 'r') ADVANCE(838); - END_STATE(); - case 771: - if (lookahead == 'r') ADVANCE(726); - END_STATE(); - case 772: - if (lookahead == 'r') ADVANCE(831); - END_STATE(); - case 773: - if (lookahead == 'r') ADVANCE(724); - END_STATE(); - case 774: - if (lookahead == 'r') ADVANCE(603); - END_STATE(); - case 775: - if (lookahead == 'r') ADVANCE(785); - END_STATE(); - case 776: - if (lookahead == 'r') ADVANCE(173); - END_STATE(); - case 777: - if (lookahead == 'r') ADVANCE(774); - END_STATE(); - case 778: - if (lookahead == 'r') ADVANCE(874); - END_STATE(); - case 779: - if (lookahead == 'r') ADVANCE(176); - END_STATE(); - case 780: - if (lookahead == 'r') ADVANCE(177); - END_STATE(); - case 781: - if (lookahead == 'r') ADVANCE(877); - END_STATE(); - case 782: - if (lookahead == 'r') ADVANCE(878); - END_STATE(); - case 783: - if (lookahead == 'r') ADVANCE(182); - END_STATE(); - case 784: - if (lookahead == 'r') ADVANCE(883); - END_STATE(); - case 785: - if (lookahead == 'r') ADVANCE(609); - END_STATE(); - case 786: - if (lookahead == 'r') ADVANCE(832); - END_STATE(); - case 787: - if (lookahead == 'r') ADVANCE(833); - END_STATE(); - case 788: - if (lookahead == 's') ADVANCE(3425); - END_STATE(); - case 789: - if (lookahead == 's') ADVANCE(1066); - END_STATE(); - case 790: - if (lookahead == 's') ADVANCE(3168); - END_STATE(); - case 791: - if (lookahead == 's') ADVANCE(662); - END_STATE(); - case 792: - if (lookahead == 's') ADVANCE(552); - END_STATE(); - case 793: - if (lookahead == 's') ADVANCE(660); - END_STATE(); - case 794: - if (lookahead == 's') ADVANCE(806); - END_STATE(); - case 795: - if (lookahead == 's') ADVANCE(666); - END_STATE(); - case 796: - if (lookahead == 's') ADVANCE(807); - END_STATE(); - case 797: - if (lookahead == 's') ADVANCE(560); - END_STATE(); - case 798: - if (lookahead == 's') ADVANCE(561); - END_STATE(); - case 799: - if (lookahead == 's') ADVANCE(563); - END_STATE(); - case 800: - if (lookahead == 's') ADVANCE(564); - END_STATE(); - case 801: - if (lookahead == 's') ADVANCE(565); - END_STATE(); - case 802: - if (lookahead == 't') ADVANCE(629); - END_STATE(); - case 803: - if (lookahead == 't') ADVANCE(551); - END_STATE(); - case 804: - if (lookahead == 't') ADVANCE(643); - END_STATE(); - case 805: - if (lookahead == 't') ADVANCE(904); - END_STATE(); - case 806: - if (lookahead == 't') ADVANCE(2931); - END_STATE(); - case 807: - if (lookahead == 't') ADVANCE(1094); - END_STATE(); - case 808: - if (lookahead == 't') ADVANCE(553); - END_STATE(); - case 809: - if (lookahead == 't') ADVANCE(692); - END_STATE(); - case 810: - if (lookahead == 't') ADVANCE(547); - END_STATE(); - case 811: - if (lookahead == 't') ADVANCE(852); - END_STATE(); - case 812: - if (lookahead == 't') ADVANCE(670); - END_STATE(); - case 813: - if (lookahead == 't') ADVANCE(549); - END_STATE(); - case 814: - if (lookahead == 't') ADVANCE(555); - END_STATE(); - case 815: - if (lookahead == 't') ADVANCE(694); - END_STATE(); - case 816: - if (lookahead == 't') ADVANCE(602); - END_STATE(); - case 817: - if (lookahead == 't') ADVANCE(691); - END_STATE(); - case 818: - if (lookahead == 't') ADVANCE(684); - END_STATE(); - case 819: - if (lookahead == 't') ADVANCE(558); - END_STATE(); - case 820: - if (lookahead == 't') ADVANCE(687); - END_STATE(); - case 821: - if (lookahead == 't') ADVANCE(685); - END_STATE(); - case 822: - if (lookahead == 't') ADVANCE(686); - END_STATE(); - case 823: - if (lookahead == 't') ADVANCE(554); - END_STATE(); - case 824: - if (lookahead == 't') ADVANCE(644); - END_STATE(); - case 825: - if (lookahead == 't') ADVANCE(693); - END_STATE(); - case 826: - if (lookahead == 't') ADVANCE(556); - END_STATE(); - case 827: - if (lookahead == 't') ADVANCE(695); - END_STATE(); - case 828: - if (lookahead == 't') ADVANCE(830); - END_STATE(); - case 829: - if (lookahead == 't') ADVANCE(608); - END_STATE(); - case 830: - if (lookahead == 't') ADVANCE(672); - END_STATE(); - case 831: - if (lookahead == 't') ADVANCE(797); - END_STATE(); - case 832: - if (lookahead == 't') ADVANCE(799); - END_STATE(); - case 833: - if (lookahead == 't') ADVANCE(801); - END_STATE(); - case 834: - if (lookahead == 't') ADVANCE(639); - END_STATE(); - case 835: - if (lookahead == 't') ADVANCE(640); - END_STATE(); - case 836: - if (lookahead == 'u') ADVANCE(854); - if (lookahead == 'x') ADVANCE(923); - if (lookahead != 0) ADVANCE(3503); - END_STATE(); - case 837: - if (lookahead == 'u') ADVANCE(718); - END_STATE(); - case 838: - if (lookahead == 'u') ADVANCE(659); - END_STATE(); - case 839: - if (lookahead == 'u') ADVANCE(659); - if (lookahead == 'y') ADVANCE(3107); - END_STATE(); - case 840: - if (lookahead == 'u') ADVANCE(829); - END_STATE(); - case 841: - if (lookahead == 'u') ADVANCE(816); - END_STATE(); - case 842: - if (lookahead == 'u') ADVANCE(853); - if (lookahead == 'x') ADVANCE(924); - if (lookahead != 0) ADVANCE(3490); - END_STATE(); - case 843: - if (lookahead == 'w') ADVANCE(3161); - END_STATE(); - case 844: - if (lookahead == 'w') ADVANCE(700); - END_STATE(); - case 845: - if (lookahead == 'w') ADVANCE(709); - END_STATE(); - case 846: - if (lookahead == 'w') ADVANCE(702); - END_STATE(); - case 847: - if (lookahead == 'w') ADVANCE(710); - END_STATE(); - case 848: - if (lookahead == 'w') ADVANCE(703); - END_STATE(); - case 849: - if (lookahead == 'w') ADVANCE(704); - END_STATE(); - case 850: - if (lookahead == 'w') ADVANCE(705); - END_STATE(); - case 851: - if (lookahead == 'y') ADVANCE(3425); - END_STATE(); - case 852: - if (lookahead == 'y') ADVANCE(760); - END_STATE(); - case 853: - if (lookahead == '{') ADVANCE(919); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(925); - END_STATE(); - case 854: - if (lookahead == '{') ADVANCE(922); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(921); - END_STATE(); - case 855: - if (lookahead == '|') ADVANCE(2866); - END_STATE(); - case 856: - if (lookahead == '|') ADVANCE(2867); - END_STATE(); - case 857: - if (lookahead == '|') ADVANCE(2871); - END_STATE(); - case 858: - if (lookahead == '|') ADVANCE(2864); - END_STATE(); - case 859: - if (lookahead == '|') ADVANCE(2870); - END_STATE(); - case 860: - if (lookahead == '|') ADVANCE(2865); - END_STATE(); - case 861: - if (lookahead == '|') ADVANCE(2868); - END_STATE(); - case 862: - if (lookahead == '|') ADVANCE(2869); - END_STATE(); - case 863: - if (lookahead == '}') ADVANCE(3490); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(863); - END_STATE(); - case 864: - if (lookahead == '}') ADVANCE(3503); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(864); - END_STATE(); - case 865: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3220); - END_STATE(); - case 866: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3236); - END_STATE(); - case 867: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3224); - END_STATE(); - case 868: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3213); - END_STATE(); - case 869: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3214); - END_STATE(); - case 870: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3218); - END_STATE(); - case 871: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3235); - END_STATE(); - case 872: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3223); - END_STATE(); - case 873: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3231); - END_STATE(); - case 874: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3230); - END_STATE(); - case 875: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3228); - END_STATE(); - case 876: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3217); - END_STATE(); - case 877: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3229); - END_STATE(); - case 878: + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 3284, + '#', 4075, + '(', 2506, + ')', 2303, + '*', 2475, + '+', 2524, + '-', 2357, + '/', 2514, + ';', 2263, + '<', 2496, + '=', 3286, + '>', 2324, + 'a', 3373, + 'b', 3356, + 'e', 3262, + 'i', 3374, + 'm', 3386, + 'n', 3389, + 'o', 3264, + 's', 3429, + 'x', 3388, + '|', 2264, + '}', 2415, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3227); + lookahead == ' ') SKIP(716); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 879: + case 709: + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + '(', 2506, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 2559, + '/', 2512, + ':', 2297, + ';', 2263, + '<', 2495, + '=', 455, + '>', 2323, + '?', 2476, + 'B', 2731, + 'E', 470, + 'G', 470, + 'K', 470, + 'M', 470, + 'P', 470, + 'T', 470, + '[', 2300, + 'a', 554, + 'b', 2733, + 'c', 491, + 'd', 487, + 'e', 416, + 'g', 469, + 'h', 586, + 'i', 524, + 'k', 469, + 'm', 471, + 'n', 569, + 'o', 412, + 'p', 469, + 's', 515, + 't', 469, + 'u', 598, + 'w', 542, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 598, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3232); + lookahead == ' ') SKIP(712); END_STATE(); - case 880: + case 710: + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + '(', 2506, + ')', 2303, + '*', 2474, + '+', 2523, + '-', 2356, + '.', 2559, + '/', 2513, + ';', 2263, + '<', 2495, + '=', 840, + '>', 2323, + '?', 2476, + 'E', 480, + '_', 478, + 'a', 554, + 'b', 536, + 'e', 414, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3225); + lookahead == ' ') SKIP(719); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); END_STATE(); - case 881: + case 711: + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '.', 2545, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 455, + '>', 2323, + '?', 2476, + 'E', 480, + '[', 2752, + '_', 478, + 'a', 554, + 'b', 536, + 'e', 414, + 'i', 524, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3221); + lookahead == ' ') SKIP(713); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); END_STATE(); - case 882: + case 712: + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ':', 2297, + ';', 2263, + '<', 2495, + '=', 455, + '>', 2323, + '?', 2476, + '[', 2300, + 'a', 554, + 'b', 536, + 'c', 491, + 'e', 417, + 'i', 524, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3222); + lookahead == ' ') SKIP(712); END_STATE(); - case 883: + case 713: + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 455, + '>', 2323, + '?', 2476, + 'a', 554, + 'b', 536, + 'e', 419, + 'i', 524, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3226); + lookahead == ' ') SKIP(713); END_STATE(); - case 884: + case 714: + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 419, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3234); + lookahead == ' ') SKIP(714); END_STATE(); - case 885: + case 715: + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 419, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '|', 2264, + '}', 2415, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3233); + lookahead == ' ') SKIP(715); END_STATE(); - case 886: + case 716: + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 422, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 425, + 's', 607, + 'x', 565, + '|', 2264, + '}', 2415, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3238); + lookahead == ' ') SKIP(716); END_STATE(); - case 887: + case 717: + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2334, + '.', 2545, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 455, + '>', 2323, + '?', 2476, + 'E', 480, + 'a', 555, + 'b', 536, + 'e', 414, + 'i', 524, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, + ); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3240); - END_STATE(); - case 888: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(895); - END_STATE(); - case 889: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - END_STATE(); - case 890: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2226); - END_STATE(); - case 891: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2221); - END_STATE(); - case 892: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(899); - END_STATE(); - case 893: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(900); - END_STATE(); - case 894: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(890); - END_STATE(); - case 895: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - END_STATE(); - case 896: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(892); - END_STATE(); - case 897: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(891); - END_STATE(); - case 898: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(893); - END_STATE(); - case 899: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(901); - END_STATE(); - case 900: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(902); - END_STATE(); - case 901: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - END_STATE(); - case 902: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - END_STATE(); - case 903: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3454); - END_STATE(); - case 904: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3211); - END_STATE(); - case 905: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); - END_STATE(); - case 906: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(582); - END_STATE(); - case 907: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(906); - END_STATE(); - case 908: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - END_STATE(); - case 909: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3470); - END_STATE(); - case 910: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); - END_STATE(); - case 911: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(908); - END_STATE(); - case 912: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(559); - END_STATE(); - case 913: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3467); - END_STATE(); - case 914: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(912); - END_STATE(); - case 915: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(913); - END_STATE(); - case 916: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(581); - END_STATE(); - case 917: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(916); - END_STATE(); - case 918: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3490); - END_STATE(); - case 919: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(863); - END_STATE(); - case 920: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3503); - END_STATE(); - case 921: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(923); - END_STATE(); - case 922: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(864); - END_STATE(); - case 923: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(920); - END_STATE(); - case 924: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(918); - END_STATE(); - case 925: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(924); + lookahead == ' ') SKIP(718); END_STATE(); - case 926: - if (eof) ADVANCE(1055); + case 718: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '!', 584, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - '-', 2953, - '.', 3275, - ';', 2862, - '<', 3205, - '=', 592, - '>', 2942, - '?', 3181, - 'E', 620, - '[', 3442, - '_', 622, - 'a', 730, - 'e', 527, - 'i', 678, - 'n', 757, - 'o', 543, - 's', 835, - 'x', 750, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + ')', 2303, + '*', 2473, + '+', 2521, + '-', 2334, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 455, + '>', 2323, + '?', 2476, + 'a', 555, + 'b', 536, + 'e', 419, + 'i', 524, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(927); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == ' ') SKIP(718); END_STATE(); - case 927: - if (eof) ADVANCE(1055); + case 719: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '!', 584, - '#', 4780, - '$', 2912, - ')', 2910, - '-', 2953, - ';', 2862, - '<', 3205, - '=', 592, - '>', 2942, - '?', 3181, - 'a', 730, - 'e', 540, - 'i', 678, - 'n', 757, - 'o', 543, - 's', 835, - 'x', 750, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + ')', 2303, + '*', 2474, + '+', 2523, + '-', 2356, + '/', 2513, + ';', 2263, + '<', 2495, + '=', 840, + '>', 2323, + '?', 2476, + 'a', 554, + 'b', 536, + 'e', 419, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(927); + lookahead == ' ') SKIP(719); END_STATE(); - case 928: - if (eof) ADVANCE(1055); + case 720: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '!', 584, - '#', 4780, - ')', 2910, - '-', 2953, - '.', 3289, - ';', 2862, - '<', 3205, - '=', 592, - '>', 2942, - '?', 3181, - 'E', 620, - '_', 622, - 'a', 730, - 'e', 527, - 'i', 678, - 'n', 757, - 'o', 543, - 's', 835, - 'x', 750, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 419, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 412, + 's', 607, + 'x', 565, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(929); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == ' ') SKIP(720); END_STATE(); - case 929: - if (eof) ADVANCE(1055); + case 721: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '!', 584, - '#', 4780, - ')', 2910, - '-', 2953, - ';', 2862, - '<', 3205, - '=', 592, - '>', 2942, - '?', 3181, - 'a', 730, - 'e', 540, - 'i', 678, - 'n', 757, - 'o', 543, - 's', 835, - 'x', 750, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '!', 454, + '#', 4069, + '*', 2473, + '+', 2521, + '-', 2333, + '/', 2512, + ';', 2263, + '<', 2495, + '=', 456, + '>', 2323, + 'a', 554, + 'b', 536, + 'e', 422, + 'i', 556, + 'm', 570, + 'n', 568, + 'o', 425, + 's', 607, + 'x', 565, + '|', 2264, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(929); + lookahead == ' ') SKIP(721); END_STATE(); - case 930: - if (eof) ADVANCE(1055); + case 722: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4782, - '$', 2913, - '\'', 519, - '(', 2909, - '+', 1337, - '-', 2970, - '.', 1338, - '0', 3369, - ';', 2862, - 'I', 1569, - 'N', 1566, - '[', 2907, - '^', 3595, - '_', 1359, - '`', 626, - '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, - '{', 3091, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4071, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 1025, + '-', 2347, + '.', 1026, + '0', 2657, + ';', 2263, + 'I', 1244, + 'N', 1241, + '[', 2300, + '^', 2819, + '_', 1042, + '`', 485, + 'a', 1136, + 'b', 1178, + 'c', 1043, + 'd', 1069, + 'e', 1144, + 'f', 1046, + 'h', 1120, + 'i', 1040, + 'l', 1082, + 'm', 1048, + 'n', 1162, + 'o', 1237, + 'r', 1070, + 's', 1158, + 't', 1173, + 'u', 1200, + 'w', 1113, + '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(930); + lookahead == ' ') SKIP(722); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); + lookahead == '@') ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); END_STATE(); - case 931: - if (eof) ADVANCE(1055); + case 723: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3752, - '0', 3370, - ';', 2862, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2962, + '0', 2658, + ';', 2263, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 932: - if (eof) ADVANCE(1055); + case 724: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3871, - '-', 2959, - '.', 3867, - '0', 3323, - ';', 2862, - 'N', 3963, - '[', 2907, - '_', 3891, - '`', 626, - 'e', 3839, - 'f', 3905, - 'n', 3950, - 'o', 3840, - 't', 3934, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3080, + '-', 2338, + '.', 3076, + '0', 2588, + ';', 2263, + 'N', 3213, + '[', 2300, + '_', 3106, + '`', 485, + 'e', 3051, + 'f', 3120, + 'n', 3198, + 'o', 3053, + 't', 3173, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(975); + lookahead == ' ') SKIP(768); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 933: - if (eof) ADVANCE(1055); + case 725: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3871, - '-', 2959, - '.', 3279, - '0', 3323, - ';', 2862, - 'N', 3963, - '[', 2907, - '_', 3891, - '`', 626, - 'e', 3839, - 'f', 3905, - 'n', 3950, - 'o', 3840, - 't', 3934, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3080, + '-', 2338, + '.', 2548, + '0', 2588, + ';', 2263, + 'N', 3213, + '[', 2300, + '_', 3106, + '`', 485, + 'e', 3051, + 'f', 3120, + 'n', 3198, + 'o', 3053, + 't', 3173, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(975); + lookahead == ' ') SKIP(768); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 934: - if (eof) ADVANCE(1055); + case 726: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3869, - '0', 3323, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'N', 3963, - 'P', 3889, - 'T', 3889, - '[', 2907, - '_', 3891, - '`', 626, - 'd', 3906, - 'e', 3841, - 'f', 3905, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3941, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3887, - 'u', 3942, - 'w', 3918, - '{', 3091, - '|', 2863, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3078, + '0', 2588, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'N', 3213, + 'P', 3103, + 'T', 3103, + '[', 2300, + '_', 3106, + '`', 485, + 'd', 3121, + 'e', 3055, + 'f', 3120, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3181, + 'o', 3053, + 'p', 3102, + 's', 3133, + 't', 3101, + 'u', 3182, + 'w', 3146, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 935: - if (eof) ADVANCE(1055); + case 727: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3869, - '0', 3323, - ';', 2862, - 'E', 3901, - 'N', 3963, - '[', 2907, - '_', 3891, - '`', 626, - 'e', 3842, - 'f', 3905, - 'n', 3950, - 'o', 3840, - 't', 3934, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3078, + '0', 2588, + ';', 2263, + 'E', 3115, + 'N', 3213, + '[', 2300, + '_', 3106, + '`', 485, + 'e', 3056, + 'f', 3120, + 'n', 3198, + 'o', 3053, + 't', 3173, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 936: - if (eof) ADVANCE(1055); + case 728: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3869, - '0', 3374, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'N', 3963, - 'P', 3889, - 'T', 3889, - '[', 2907, - '_', 3896, - '`', 626, - 'd', 3906, - 'e', 3841, - 'f', 3905, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3941, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3887, - 'u', 3942, - 'w', 3918, - '{', 3091, - '|', 2863, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3078, + '0', 2662, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'N', 3213, + 'P', 3103, + 'T', 3103, + '[', 2300, + '_', 3119, + '`', 485, + 'd', 3121, + 'e', 3055, + 'f', 3120, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3181, + 'o', 3053, + 'p', 3102, + 's', 3133, + 't', 3101, + 'u', 3182, + 'w', 3146, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 937: - if (eof) ADVANCE(1055); + case 729: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3869, - '0', 3374, - ';', 2862, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'N', 3963, - 'P', 3889, - 'T', 3889, - '[', 2907, - '_', 3896, - '`', 626, - 'd', 3906, - 'e', 3838, - 'f', 3905, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3941, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3887, - 'u', 3942, - 'w', 3918, - '{', 3091, - '|', 2863, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3078, + '0', 2662, + ';', 2263, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'N', 3213, + 'P', 3103, + 'T', 3103, + '[', 2300, + '_', 3119, + '`', 485, + 'd', 3121, + 'e', 3049, + 'f', 3120, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3181, + 'o', 3053, + 'p', 3102, + 's', 3133, + 't', 3101, + 'u', 3182, + 'w', 3146, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 938: - if (eof) ADVANCE(1055); + case 730: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3869, - '0', 3374, - ';', 2862, - 'E', 3901, - 'N', 3963, - '[', 2907, - '_', 3896, - '`', 626, - 'e', 3842, - 'f', 3905, - 'n', 3950, - 'o', 3840, - 't', 3934, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3078, + '0', 2662, + ';', 2263, + 'E', 3115, + 'N', 3213, + '[', 2300, + '_', 3119, + '`', 485, + 'e', 3056, + 'f', 3120, + 'n', 3198, + 'o', 3053, + 't', 3173, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 939: - if (eof) ADVANCE(1055); + case 731: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3869, - '0', 3374, - ';', 2862, - 'N', 3963, - '[', 2907, - '_', 3896, - '`', 626, - 'e', 3839, - 'f', 3905, - 'n', 3950, - 'o', 3840, - 't', 3934, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3078, + '0', 2662, + ';', 2263, + 'N', 3213, + '[', 2300, + '_', 3119, + '`', 485, + 'e', 3051, + 'f', 3120, + 'n', 3198, + 'o', 3053, + 't', 3173, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 940: - if (eof) ADVANCE(1055); + case 732: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3868, - '0', 3323, - ';', 2862, - 'E', 3901, - 'N', 3963, - '[', 2907, - '_', 3891, - '`', 626, - 'e', 3842, - 'f', 3905, - 'n', 3950, - 'o', 3840, - 't', 3934, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3077, + '0', 2588, + ';', 2263, + 'E', 3115, + 'N', 3213, + '[', 2300, + '_', 3106, + '`', 485, + 'e', 3056, + 'f', 3120, + 'n', 3198, + 'o', 3053, + 't', 3173, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 941: - if (eof) ADVANCE(1055); + case 733: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3868, - '0', 3374, - ';', 2862, - 'E', 3901, - 'N', 3963, - '[', 2907, - '_', 3896, - '`', 626, - 'e', 3842, - 'f', 3905, - 'n', 3950, - 'o', 3840, - 't', 3934, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3077, + '0', 2662, + ';', 2263, + 'E', 3115, + 'N', 3213, + '[', 2300, + '_', 3119, + '`', 485, + 'e', 3056, + 'f', 3120, + 'n', 3198, + 'o', 3053, + 't', 3173, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 942: - if (eof) ADVANCE(1055); + case 734: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3868, - '0', 3374, - ';', 2862, - 'N', 3963, - '[', 2907, - '_', 3896, - '`', 626, - 'e', 3839, - 'f', 3905, - 'n', 3950, - 'o', 3840, - 't', 3934, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3077, + '0', 2662, + ';', 2263, + 'N', 3213, + '[', 2300, + '_', 3119, + '`', 485, + 'e', 3051, + 'f', 3120, + 'n', 3198, + 'o', 3053, + 't', 3173, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 943: - if (eof) ADVANCE(1055); + case 735: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3293, - '0', 3374, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'N', 3963, - 'P', 3889, - 'T', 3889, - '[', 2907, - '_', 3896, - '`', 626, - 'd', 3906, - 'e', 3841, - 'f', 3905, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3941, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3887, - 'u', 3942, - 'w', 3918, - '{', 3091, - '|', 2863, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 2563, + '0', 2662, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'N', 3213, + 'P', 3103, + 'T', 3103, + '[', 2300, + '_', 3119, + '`', 485, + 'd', 3121, + 'e', 3055, + 'f', 3120, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3181, + 'o', 3053, + 'p', 3102, + 's', 3133, + 't', 3101, + 'u', 3182, + 'w', 3146, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 944: - if (eof) ADVANCE(1055); + case 736: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3293, - '0', 3374, - ';', 2862, - 'E', 3901, - 'N', 3963, - '[', 2907, - '_', 3896, - '`', 626, - 'e', 3842, - 'f', 3905, - 'n', 3950, - 'o', 3840, - 't', 3934, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 2563, + '0', 2662, + ';', 2263, + 'E', 3115, + 'N', 3213, + '[', 2300, + '_', 3119, + '`', 485, + 'e', 3056, + 'f', 3120, + 'n', 3198, + 'o', 3053, + 't', 3173, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 945: - if (eof) ADVANCE(1055); + case 737: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3284, - '0', 3374, - ';', 2862, - 'E', 3901, - 'N', 3963, - '[', 2907, - '_', 3896, - '`', 626, - 'e', 3842, - 'f', 3905, - 'n', 3950, - 'o', 3840, - 't', 3934, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 2553, + '0', 2662, + ';', 2263, + 'E', 3115, + 'N', 3213, + '[', 2300, + '_', 3119, + '`', 485, + 'e', 3056, + 'f', 3120, + 'n', 3198, + 'o', 3053, + 't', 3173, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 946: - if (eof) ADVANCE(1055); + case 738: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3757, - '-', 2957, - '.', 3753, - '0', 3324, - ';', 2862, - 'N', 3814, - '[', 2907, - '_', 3778, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 2967, + '-', 2336, + '.', 2963, + '0', 2589, + ';', 2263, + 'N', 3024, + '[', 2300, + '_', 2988, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(975); + lookahead == ' ') SKIP(768); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3339); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2604); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 947: - if (eof) ADVANCE(1055); + case 739: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 3757, - '-', 2957, - '.', 3282, - '0', 3324, - ';', 2862, - 'N', 3814, - '[', 2907, - '_', 3778, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 2967, + '-', 2336, + '.', 2551, + '0', 2589, + ';', 2263, + 'N', 3024, + '[', 2300, + '_', 2988, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(975); + lookahead == ' ') SKIP(768); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3339); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2604); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 948: - if (eof) ADVANCE(1055); + case 740: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 3359, - '+', 1337, - '-', 2970, - '.', 1338, - '0', 3369, - ';', 2862, - '=', 604, - 'I', 1569, - 'N', 1566, - '[', 2907, - '^', 3595, - '_', 1359, - '`', 626, - '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, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2631, + '+', 1025, + '-', 2347, + '.', 1026, + '0', 2657, + ';', 2263, + '=', 458, + 'I', 1244, + 'N', 1241, + '[', 2300, + '^', 2819, + '_', 1042, + '`', 485, + 'a', 1136, + 'b', 1178, + 'c', 1043, + 'd', 1069, + 'e', 1144, + 'f', 1046, + 'h', 1120, + 'i', 1040, + 'l', 1082, + 'm', 1048, + 'n', 1162, + 'o', 1237, + 'r', 1070, + 's', 1158, + 't', 1173, + 'u', 1200, + 'w', 1113, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(949); + lookahead == ' ') SKIP(741); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); + lookahead == '@') ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1575); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1247); END_STATE(); - case 949: - if (eof) ADVANCE(1055); + case 741: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 1337, - '-', 2970, - '.', 1338, - '0', 3369, - ';', 2862, - '=', 604, - 'I', 1569, - 'N', 1566, - '[', 2907, - '^', 3595, - '_', 1359, - '`', 626, - '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, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 1025, + '-', 2347, + '.', 1026, + '0', 2657, + ';', 2263, + '=', 458, + 'I', 1244, + 'N', 1241, + '[', 2300, + '^', 2819, + '_', 1042, + '`', 485, + 'a', 1136, + 'b', 1178, + 'c', 1043, + 'd', 1069, + 'e', 1144, + 'f', 1046, + 'h', 1120, + 'i', 1040, + 'l', 1082, + 'm', 1048, + 'n', 1162, + 'o', 1237, + 'r', 1070, + 's', 1158, + 't', 1173, + 'u', 1200, + 'w', 1113, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(949); + lookahead == ' ') SKIP(741); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); + lookahead == '@') ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1575); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1247); END_STATE(); - case 950: - if (eof) ADVANCE(1055); + case 742: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 568, - '-', 2970, - '.', 569, - '0', 3372, - ';', 2862, - '=', 604, - 'I', 897, - 'N', 888, - '[', 2907, - '_', 615, - '`', 626, - 'a', 729, - 'c', 632, - 'd', 740, - 'e', 537, - 'f', 630, - 'i', 681, - 'm', 636, - 'n', 749, - 'o', 543, - 't', 766, - 'x', 750, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 1025, + '-', 2347, + '.', 1026, + '0', 2657, + ';', 2263, + 'I', 1244, + 'N', 1241, + '[', 2300, + '^', 2819, + '_', 1042, + '`', 485, + 'a', 1146, + 'b', 1178, + 'c', 1044, + 'd', 1083, + 'e', 868, + 'f', 1047, + 'h', 1124, + 'i', 1040, + 'l', 1092, + 'm', 1049, + 'n', 1162, + 'o', 869, + 'r', 1107, + 's', 1168, + 't', 1173, + 'u', 1209, + 'w', 1119, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(950); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); + lookahead == ' ') SKIP(742); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1247); END_STATE(); - case 951: - if (eof) ADVANCE(1055); + case 743: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3517, - '-', 2970, - '.', 1344, - '0', 3369, - ':', 2904, - ';', 2862, - '=', 1073, - '>', 2941, - 'I', 1569, - 'N', 1566, - '[', 2907, - ']', 2908, - '^', 3595, - '_', 1359, - '`', 626, - '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, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 442, + '-', 2348, + '.', 443, + '0', 2660, + ';', 2263, + '=', 458, + 'I', 667, + 'N', 654, + '[', 2300, + '_', 474, + '`', 485, + 'a', 554, + 'c', 491, + 'd', 563, + 'e', 418, + 'f', 488, + 'i', 525, + 'm', 496, + 'n', 574, + 'o', 412, + 't', 588, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(743); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); + END_STATE(); + case 744: + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2525, + '-', 2347, + '.', 1027, + '0', 2657, + ':', 2297, + ';', 2263, + '=', 839, + '>', 2322, + 'I', 1244, + 'N', 1241, + '[', 2300, + ']', 2301, + '^', 2819, + '_', 1042, + '`', 485, + 'a', 1135, + 'b', 1178, + 'c', 1057, + 'd', 1069, + 'e', 1148, + 'f', 1046, + 'h', 1120, + 'i', 1039, + 'l', 1082, + 'm', 1056, + 'n', 1162, + 'o', 1237, + 'r', 1070, + 's', 1158, + 't', 1173, + 'u', 1200, + 'w', 1113, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(951); + lookahead == ' ') SKIP(744); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); + lookahead == '@') ADVANCE(1560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2680); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead)) ADVANCE(1575); + (lookahead < '0' || '@' < lookahead)) ADVANCE(1247); END_STATE(); - case 952: - if (eof) ADVANCE(1055); + case 745: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3756, - '0', 3370, - ';', 2862, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, - 'I', 3818, - 'i', 3818, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2965, + '0', 2658, + ';', 2263, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, + 'I', 3027, + 'i', 3027, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 953: - if (eof) ADVANCE(1055); + case 746: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3752, - '0', 2666, - ';', 2862, - '=', 3652, - 'N', 2792, - '[', 2907, - '_', 2668, - '`', 626, - 'e', 2645, - 'f', 2676, - 'n', 2779, - 'o', 2646, - 't', 2745, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2962, + '0', 2054, + ';', 2263, + '=', 2876, + 'N', 2183, + '[', 2300, + '_', 2056, + '`', 485, + 'e', 2033, + 'f', 2063, + 'n', 2169, + 'o', 2034, + 't', 2137, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2800); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); + lookahead == 'i') ADVANCE(2195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2059); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 954: - if (eof) ADVANCE(1055); + case 747: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3752, - '0', 3370, - ';', 2862, - '=', 3652, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2962, + '0', 2658, + ';', 2263, + '=', 2876, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 955: - if (eof) ADVANCE(1055); + case 748: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3752, - '0', 3370, - ';', 2862, - '?', 3181, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2962, + '0', 2658, + ';', 2263, + '?', 2476, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(748); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 956: - if (eof) ADVANCE(1055); + case 749: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3752, - '0', 3370, - ';', 2862, - 'E', 3780, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3732, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2962, + '0', 2658, + ';', 2263, + 'E', 2990, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2954, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 957: - if (eof) ADVANCE(1055); + case 750: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3752, - '0', 3370, - ';', 2862, - 'N', 3814, - '[', 3442, - '_', 3769, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2962, + '0', 2658, + ';', 2263, + 'N', 3024, + '[', 2752, + '_', 2979, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 958: - if (eof) ADVANCE(1055); + case 751: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3752, - '0', 3370, - ';', 2862, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2962, + '0', 2658, + ';', 2263, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 959: - if (eof) ADVANCE(1055); + case 752: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3752, - '0', 3324, - ';', 2862, - 'E', 3780, - 'N', 3814, - '[', 2907, - '_', 3778, - '`', 626, - 'e', 3732, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2962, + '0', 2589, + ';', 2263, + 'E', 2990, + 'N', 3024, + '[', 2300, + '_', 2988, + '`', 485, + 'e', 2954, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3339); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2604); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 960: - if (eof) ADVANCE(1055); + case 753: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3754, - '0', 3370, - ';', 2862, - 'E', 3780, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3732, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2964, + '0', 2658, + ';', 2263, + 'E', 2990, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2954, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 961: - if (eof) ADVANCE(1055); + case 754: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3754, - '0', 3370, - ';', 2862, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2964, + '0', 2658, + ';', 2263, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 962: - if (eof) ADVANCE(1055); + case 755: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3754, - '0', 3324, - ';', 2862, - 'E', 3780, - 'N', 3814, - '[', 2907, - '_', 3778, - '`', 626, - 'e', 3732, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2964, + '0', 2589, + ';', 2263, + 'E', 2990, + 'N', 3024, + '[', 2300, + '_', 2988, + '`', 485, + 'e', 2954, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3339); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2604); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 963: - if (eof) ADVANCE(1055); + case 756: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3291, - '0', 3370, - ';', 2862, - '?', 3181, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2561, + '0', 2658, + ';', 2263, + '?', 2476, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(748); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 964: - if (eof) ADVANCE(1055); + case 757: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3291, - '0', 3370, - ';', 2862, - 'E', 3780, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3732, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2561, + '0', 2658, + ';', 2263, + 'E', 2990, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2954, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 965: - if (eof) ADVANCE(1055); + case 758: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3291, - '0', 3370, - ';', 2862, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2561, + '0', 2658, + ';', 2263, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 966: - if (eof) ADVANCE(1055); + case 759: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3277, - '0', 3370, - ';', 2862, - '?', 3181, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2546, + '0', 2658, + ';', 2263, + '?', 2476, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(748); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 967: - if (eof) ADVANCE(1055); + case 760: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3277, - '0', 3370, - ';', 2862, - 'E', 3780, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3732, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2546, + '0', 2658, + ';', 2263, + 'E', 2990, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2954, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 968: - if (eof) ADVANCE(1055); + case 761: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2956, - '.', 3277, - '0', 3370, - ';', 2862, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2335, + '.', 2546, + '0', 2658, + ';', 2263, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 969: - if (eof) ADVANCE(1055); + case 762: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3755, - '-', 2965, - '.', 3752, - '0', 3670, - ';', 2862, - '=', 3652, - 'N', 3697, - '[', 2907, - '_', 3672, - '`', 626, - 'e', 3653, - 'f', 3679, - 'n', 3696, - 'o', 3654, - 't', 3687, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2966, + '-', 2343, + '.', 2962, + '0', 2894, + ';', 2263, + '=', 2876, + 'N', 2921, + '[', 2300, + '_', 2896, + '`', 485, + 'e', 2877, + 'f', 2903, + 'n', 2920, + 'o', 2878, + 't', 2911, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3702); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3675); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'i') ADVANCE(2926); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2899); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 970: - if (eof) ADVANCE(1055); + case 763: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3869, - '0', 3323, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'N', 3963, - 'P', 3889, - 'T', 3889, - '[', 2907, - '_', 3891, - '`', 626, - 'd', 3906, - 'e', 3841, - 'f', 3905, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3941, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3887, - 'u', 3942, - 'w', 3918, - '{', 3091, - '|', 2863, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3078, + '0', 2588, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'N', 3213, + 'P', 3103, + 'T', 3103, + '[', 2300, + '_', 3106, + '`', 485, + 'd', 3121, + 'e', 3055, + 'f', 3120, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3181, + 'o', 3053, + 'p', 3102, + 's', 3133, + 't', 3101, + 'u', 3182, + 'w', 3146, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2603); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 971: - if (eof) ADVANCE(1055); + case 764: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3869, - '0', 3374, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'N', 3963, - 'P', 3889, - 'T', 3889, - '[', 2907, - '_', 3896, - '`', 626, - 'd', 3906, - 'e', 3841, - 'f', 3905, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3941, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3887, - 'u', 3942, - 'w', 3918, - '{', 3091, - '|', 2863, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3078, + '0', 2662, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'N', 3213, + 'P', 3103, + 'T', 3103, + '[', 2300, + '_', 3119, + '`', 485, + 'd', 3121, + 'e', 3055, + 'f', 3120, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3181, + 'o', 3053, + 'p', 3102, + 's', 3133, + 't', 3101, + 'u', 3182, + 'w', 3146, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 972: - if (eof) ADVANCE(1055); + case 765: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3869, - '0', 3374, - ';', 2862, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'N', 3963, - 'P', 3889, - 'T', 3889, - '[', 2907, - '_', 3896, - '`', 626, - 'd', 3906, - 'e', 3838, - 'f', 3905, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3941, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3887, - 'u', 3942, - 'w', 3918, - '{', 3091, - '|', 2863, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3078, + '0', 2662, + ';', 2263, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'N', 3213, + 'P', 3103, + 'T', 3103, + '[', 2300, + '_', 3119, + '`', 485, + 'd', 3121, + 'e', 3049, + 'f', 3120, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3181, + 'o', 3053, + 'p', 3102, + 's', 3133, + 't', 3101, + 'u', 3182, + 'w', 3146, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 973: - if (eof) ADVANCE(1055); + case 766: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3868, - '0', 3374, - ';', 2862, - 'N', 3963, - '[', 2907, - '_', 3896, - '`', 626, - 'e', 3839, - 'f', 3905, - 'n', 3950, - 'o', 3840, - 't', 3934, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 3077, + '0', 2662, + ';', 2263, + 'N', 3213, + '[', 2300, + '_', 3119, + '`', 485, + 'e', 3051, + 'f', 3120, + 'n', 3198, + 'o', 3053, + 't', 3173, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 974: - if (eof) ADVANCE(1055); + case 767: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3872, - '-', 2961, - '.', 3293, - '0', 3374, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'N', 3963, - 'P', 3889, - 'T', 3889, - '[', 2907, - '_', 3896, - '`', 626, - 'd', 3906, - 'e', 3841, - 'f', 3905, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3941, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3887, - 'u', 3942, - 'w', 3918, - '{', 3091, - '|', 2863, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 3081, + '-', 2340, + '.', 2563, + '0', 2662, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'N', 3213, + 'P', 3103, + 'T', 3103, + '[', 2300, + '_', 3119, + '`', 485, + 'd', 3121, + 'e', 3055, + 'f', 3120, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3181, + 'o', 3053, + 'p', 3102, + 's', 3133, + 't', 3101, + 'u', 3182, + 'w', 3146, + '{', 2414, + '|', 2264, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); + lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3970); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + lookahead == 'i') ADVANCE(3222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3993); + lookahead != ']') ADVANCE(3246); END_STATE(); - case 975: - if (eof) ADVANCE(1055); + case 768: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '$', 2913, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 3757, - '-', 2957, - '.', 3753, - '0', 3370, - ';', 2862, - 'N', 3814, - '[', 2907, - '_', 3769, - '`', 626, - 'e', 3730, - 'f', 3782, - 'n', 3810, - 'o', 3731, - 't', 3797, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 2967, + '-', 2336, + '.', 2963, + '0', 2658, + ';', 2263, + 'N', 3024, + '[', 2300, + '_', 2979, + '`', 485, + 'e', 2952, + 'f', 2992, + 'n', 3020, + 'o', 2953, + 't', 3007, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(975); + lookahead == ' ') SKIP(768); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3818); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + lookahead == 'i') ADVANCE(3027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3837); + lookahead != ']') ADVANCE(3047); END_STATE(); - case 976: - if (eof) ADVANCE(1055); + case 769: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '\'', 519, - ')', 2910, - '*', 3178, - '+', 1337, - '-', 567, - '.', 3301, - ';', 2862, - '?', 3181, - 'I', 1861, - 'N', 1856, - '[', 2907, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '\'', 411, + ')', 2303, + '*', 2472, + '+', 1025, + '-', 441, + '.', 2571, + ';', 2263, + '?', 2476, + 'I', 1548, + 'N', 1540, + '[', 2300, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(978); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 977: - if (eof) ADVANCE(1055); + case 770: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '\'', 519, - ')', 2910, - '*', 3178, - '+', 1337, - '-', 567, - '.', 3301, - ';', 2862, - 'I', 1861, - 'N', 1856, - '[', 2907, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '\'', 411, + ')', 2303, + '*', 2472, + '+', 1025, + '-', 441, + '.', 2571, + ';', 2263, + 'I', 1548, + 'N', 1540, + '[', 2300, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(772); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 978: - if (eof) ADVANCE(1055); + case 771: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '\'', 519, - ')', 2910, - '*', 3178, - '+', 1337, - '-', 567, - '.', 1593, - ';', 2862, - '?', 3181, - 'I', 1861, - 'N', 1856, - '[', 2907, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '\'', 411, + ')', 2303, + '*', 2472, + '+', 1025, + '-', 441, + '.', 1288, + ';', 2263, + '?', 2476, + 'I', 1548, + 'N', 1540, + '[', 2300, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(978); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 979: - if (eof) ADVANCE(1055); + case 772: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4780, - '\'', 519, - ')', 2910, - '*', 3178, - '+', 1337, - '-', 567, - '.', 1593, - ';', 2862, - 'I', 1861, - 'N', 1856, - '[', 2907, - '_', 1596, - '`', 626, - '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, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '\'', 411, + ')', 2303, + '*', 2472, + '+', 1025, + '-', 441, + '.', 1288, + ';', 2263, + 'I', 1548, + 'N', 1540, + '[', 2300, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + lookahead == ' ') SKIP(772); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 980: - if (eof) ADVANCE(1055); + case 773: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4787, - '$', 2914, - '\'', 519, - '(', 3212, - ')', 2910, - '+', 4016, - '-', 2963, - '.', 4017, - '0', 4035, - ';', 2862, - 'N', 4173, - '[', 2907, - '_', 4037, - '`', 626, - 'e', 4003, - 'f', 4047, - 'n', 4151, - 'o', 4004, - 't', 4118, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4075, + '$', 2307, + '\'', 411, + '(', 2506, + ')', 2303, + '+', 3276, + '-', 2341, + '.', 3277, + '0', 3298, + ';', 2263, + 'N', 3464, + '[', 2300, + '_', 3300, + '`', 485, + 'e', 3257, + 'f', 3310, + 'n', 3440, + 'o', 3259, + 't', 3397, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4040); + lookahead == 'i') ADVANCE(3474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3303); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4212); + lookahead != ']') ADVANCE(3505); END_STATE(); - case 981: - if (eof) ADVANCE(1055); + case 774: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '"', 3482, - '#', 4787, - '$', 2914, - '\'', 519, - '(', 2909, - ')', 2910, - '+', 4016, - '-', 2963, - '.', 4017, - '0', 4035, - ';', 2862, - 'N', 4173, - '[', 2907, - '_', 4037, - '`', 626, - 'e', 4003, - 'f', 4047, - 'n', 4151, - 'o', 4004, - 't', 4118, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4075, + '$', 2307, + '\'', 411, + '(', 2302, + ')', 2303, + '+', 3276, + '-', 2341, + '.', 3277, + '0', 3298, + ';', 2263, + 'N', 3464, + '[', 2300, + '_', 3300, + '`', 485, + 'e', 3257, + 'f', 3310, + 'n', 3440, + 'o', 3259, + 't', 3397, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(958); + lookahead == ' ') SKIP(751); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4182); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4040); + lookahead == 'i') ADVANCE(3474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3303); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4212); + lookahead != ']') ADVANCE(3505); END_STATE(); - case 982: - if (eof) ADVANCE(1055); + case 775: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - '+', 573, - '-', 2958, - '.', 3305, - ';', 2862, - '=', 604, - '_', 622, - 'a', 729, - 'e', 541, - 'i', 677, - 'o', 543, - 'x', 750, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + '+', 447, + '-', 2337, + '.', 2575, + ';', 2263, + '=', 458, + '_', 478, + 'a', 554, + 'e', 420, + 'i', 523, + 'o', 412, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(987); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + lookahead == ' ') SKIP(780); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); END_STATE(); - case 983: - if (eof) ADVANCE(1055); + case 776: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - '.', 3893, - ';', 2862, - '_', 3891, - 'a', 3924, - 'e', 3848, - 'o', 3849, - 'x', 3930, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + '.', 3108, + ';', 2263, + '_', 3106, + 'a', 3154, + 'e', 3065, + 'o', 3066, + 'x', 3163, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(989); + lookahead == ' ') SKIP(784); if (lookahead == '+' || - lookahead == '-') ADVANCE(3871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '-') ADVANCE(3080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 984: - if (eof) ADVANCE(1055); + case 777: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - '.', 3893, - ';', 2862, - '_', 3891, - 'e', 3848, - 'o', 3850, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, - '+', 3871, - '-', 3871, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + '.', 3108, + ';', 2263, + '_', 3106, + 'e', 3065, + 'o', 3067, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, + '+', 3080, + '-', 3080, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 985: - if (eof) ADVANCE(1055); + case 778: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - '.', 3302, - ';', 2862, - '[', 3442, - '_', 3891, - 'e', 3848, - 'o', 3850, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, - '+', 3871, - '-', 3871, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + '.', 2572, + ';', 2263, + '[', 2752, + '_', 3106, + 'e', 3065, + 'o', 3067, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, + '+', 3080, + '-', 3080, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -32086,17081 +31029,14939 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3993); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); END_STATE(); - case 986: - if (eof) ADVANCE(1055); + case 779: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - '(', 3212, - ')', 2910, - '.', 3302, - ';', 2862, - '_', 3891, - 'a', 3924, - 'e', 3848, - 'o', 3849, - 'x', 3930, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + '(', 2506, + ')', 2303, + '.', 2572, + ';', 2263, + '_', 3106, + 'a', 3154, + 'e', 3065, + 'o', 3066, + 'x', 3163, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(989); + lookahead == ' ') SKIP(784); if (lookahead == '+' || - lookahead == '-') ADVANCE(3871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '-') ADVANCE(3080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 987: - if (eof) ADVANCE(1055); + case 780: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - '+', 573, - '-', 2958, - '.', 623, - ';', 2862, - '=', 604, - 'a', 729, - 'e', 541, - 'i', 677, - 'o', 543, - 'x', 750, - '{', 3091, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + '+', 447, + '-', 2337, + '.', 482, + ';', 2263, + '=', 458, + 'a', 554, + 'e', 420, + 'i', 523, + 'o', 412, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(987); - END_STATE(); - case 988: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - '-', 2953, - '.', 3289, - ';', 2862, - '=', 3652, - '?', 3181, - 'e', 2650, - 'o', 2647, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, - ); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); + lookahead == ' ') SKIP(780); END_STATE(); - case 989: - if (eof) ADVANCE(1055); + case 781: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '$', 2912, - ')', 2910, - '.', 623, - ';', 2862, - 'a', 729, - 'e', 533, - 'o', 523, - 'x', 750, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + '-', 2334, + '.', 2559, + ':', 2297, + ';', 2263, + '=', 839, + '[', 2752, + 'a', 555, + 'e', 420, + 'i', 556, + 'o', 412, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(989); - if (lookahead == '+' || - lookahead == '-') ADVANCE(573); - END_STATE(); - case 990: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '*', 585, - '+', 530, - '-', 586, - '.', 3289, - '/', 588, - ';', 2862, - '=', 1073, - '?', 3181, - 'E', 611, - 'G', 611, - 'K', 611, - 'M', 611, - 'P', 611, - 'T', 611, - '[', 3442, - 'd', 628, - 'e', 536, - 'g', 610, - 'h', 765, - 'k', 610, - 'm', 612, - 'n', 788, - 'o', 546, - 'p', 610, - 's', 668, - 't', 610, - 'u', 788, - 'w', 711, - '{', 3091, - '|', 2863, - '}', 3092, - 0xb5, 788, - '\t', 25, - ' ', 25, - 'B', 3420, - 'b', 3420, - ); + lookahead == ' ') SKIP(783); END_STATE(); - case 991: - if (eof) ADVANCE(1055); + case 782: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '-', 2953, - '.', 3275, - ';', 2862, - '=', 604, - '?', 3181, - 'E', 620, - '[', 3442, - 'e', 528, - 'i', 677, - 'o', 546, - '{', 3091, - '|', 2863, - '}', 3092, - '\t', 26, - ' ', 26, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + '-', 2334, + '.', 2559, + ';', 2263, + '=', 2876, + '?', 2476, + 'e', 2037, + 'o', 2038, + '{', 2414, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, ); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); END_STATE(); - case 992: - if (eof) ADVANCE(1055); + case 783: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3289, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'a', 3924, - 'd', 3906, - 'e', 3844, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3849, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - 'x', 3930, - '|', 2863, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + '-', 2334, + ':', 2297, + ';', 2263, + '=', 839, + 'a', 555, + 'e', 420, + 'i', 556, + 'o', 412, + 'x', 565, + '{', 2414, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 993: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3289, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3841, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - '}', 3092, - 0xb5, 3942, - '\t', 27, - ' ', 27, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 994: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3289, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3844, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3850, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - '}', 3092, - 0xb5, 3942, - '\t', 2861, - ' ', 2861, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 995: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3289, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3844, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3850, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - '}', 3092, - 0xb5, 3942, - '\t', 28, - ' ', 28, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(783); END_STATE(); - case 996: - if (eof) ADVANCE(1055); + case 784: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3289, - ';', 2862, - 'E', 3901, - 'a', 3924, - 'e', 3845, - 'o', 3849, - 'x', 3930, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '$', 2305, + ')', 2303, + '.', 482, + ';', 2263, + 'a', 554, + 'e', 423, + 'o', 425, + 'x', 565, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 997: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3289, - ';', 2862, - 'E', 3901, - 'e', 3845, - 'o', 3850, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(784); + if (lookahead == '+' || + lookahead == '-') ADVANCE(447); END_STATE(); - case 998: - if (eof) ADVANCE(1055); + case 785: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'a', 3924, - 'd', 3906, - 'e', 3844, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3849, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - 'x', 3930, - '|', 2863, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 2559, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'd', 3121, + 'e', 3059, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'o', 3066, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '|', 2264, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); + lookahead == ' ') SKIP(821); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 999: - if (eof) ADVANCE(1055); + case 786: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3841, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - '}', 3092, - 0xb5, 3942, - '\t', 27, - ' ', 27, - 'B', 3420, - 'b', 3420, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 2559, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3059, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'o', 3067, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '|', 2264, + '}', 2415, + 0xb5, 3182, + '\t', 2262, + ' ', 2262, + 'B', 2731, + 'b', 2731, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1000: - if (eof) ADVANCE(1055); + case 787: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3844, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3850, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - '}', 3092, - 0xb5, 3942, - '\t', 2861, - ' ', 2861, - 'B', 3420, - 'b', 3420, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 2559, + ';', 2263, + 'E', 3115, + 'a', 3154, + 'e', 3060, + 'o', 3066, + 'x', 3163, + '|', 2264, + '}', 2415, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '\t' || + lookahead == ' ') SKIP(821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1001: - if (eof) ADVANCE(1055); + case 788: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'd', 3906, - 'e', 3844, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3850, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - '}', 3092, - 0xb5, 3942, - '\t', 28, - ' ', 28, - 'B', 3420, - 'b', 3420, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 2559, + ';', 2263, + 'E', 3115, + 'e', 3060, + 'o', 3067, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1002: - if (eof) ADVANCE(1055); + case 789: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'a', 3924, - 'd', 3906, - 'e', 3844, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3849, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - 'x', 3930, - '|', 2863, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 3079, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'a', 3154, + 'd', 3121, + 'e', 3059, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'o', 3066, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '|', 2264, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); + lookahead == ' ') SKIP(821); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 1003: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3841, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - '}', 3092, - 0xb5, 3942, - '\t', 27, - ' ', 27, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 1004: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3844, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3850, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - '}', 3092, - 0xb5, 3942, - '\t', 2861, - ' ', 2861, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1005: - if (eof) ADVANCE(1055); + case 790: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3844, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3850, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - '}', 3092, - 0xb5, 3942, - '\t', 28, - ' ', 28, - 'B', 3420, - 'b', 3420, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 3079, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'd', 3121, + 'e', 3059, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'o', 3067, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '|', 2264, + '}', 2415, + 0xb5, 3182, + '\t', 2262, + ' ', 2262, + 'B', 2731, + 'b', 2731, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1006: - if (eof) ADVANCE(1055); + case 791: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'a', 3924, - 'd', 3906, - 'e', 3847, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3849, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - 'x', 3930, - '|', 2863, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 3079, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'd', 3121, + 'e', 3059, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'o', 3066, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '|', 2264, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); + lookahead == ' ') SKIP(821); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1007: - if (eof) ADVANCE(1055); + case 792: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3838, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3840, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - '}', 3092, - 0xb5, 3942, - '\t', 27, - ' ', 27, - 'B', 3420, - 'b', 3420, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 3079, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3059, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'o', 3067, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '|', 2264, + '}', 2415, + 0xb5, 3182, + '\t', 2262, + ' ', 2262, + 'B', 2731, + 'b', 2731, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1008: - if (eof) ADVANCE(1055); + case 793: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3847, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3850, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - '}', 3092, - 0xb5, 3942, - '\t', 2861, - ' ', 2861, - 'B', 3420, - 'b', 3420, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 3079, + ';', 2263, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3154, + 'd', 3121, + 'e', 3063, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'o', 3066, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + 'x', 3163, + '|', 2264, + '}', 2415, + 0xb5, 3182, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '\t' || + lookahead == ' ') SKIP(821); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1009: - if (eof) ADVANCE(1055); + case 794: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'd', 3906, - 'e', 3847, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'o', 3850, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '|', 2863, - '}', 3092, - 0xb5, 3942, - '\t', 28, - ' ', 28, - 'B', 3420, - 'b', 3420, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 3079, + ';', 2263, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'd', 3121, + 'e', 3063, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'o', 3067, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '|', 2264, + '}', 2415, + 0xb5, 3182, + '\t', 2262, + ' ', 2262, + 'B', 2731, + 'b', 2731, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1010: - if (eof) ADVANCE(1055); + case 795: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3901, - '_', 3891, - 'a', 3924, - 'e', 3845, - 'o', 3849, - 'x', 3930, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 3079, + ';', 2263, + 'E', 3115, + '_', 3106, + 'a', 3154, + 'e', 3060, + 'o', 3066, + 'x', 3163, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(821); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1011: - if (eof) ADVANCE(1055); + case 796: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3901, - '_', 3891, - 'e', 3845, - 'o', 3850, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 3079, + ';', 2263, + 'E', 3115, + '_', 3106, + 'e', 3060, + 'o', 3067, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1012: - if (eof) ADVANCE(1055); + case 797: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3901, - 'a', 3924, - 'e', 3845, - 'o', 3849, - 'x', 3930, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 3079, + ';', 2263, + 'E', 3115, + 'a', 3154, + 'e', 3060, + 'o', 3066, + 'x', 3163, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1013: - if (eof) ADVANCE(1055); + case 798: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'E', 3901, - 'e', 3845, - 'o', 3850, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 3079, + ';', 2263, + 'E', 3115, + 'e', 3060, + 'o', 3067, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1014: - if (eof) ADVANCE(1055); + case 799: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'a', 3924, - 'e', 3848, - 'o', 3849, - 'x', 3930, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 3079, + ';', 2263, + 'a', 3154, + 'e', 3065, + 'o', 3066, + 'x', 3163, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1015: - if (eof) ADVANCE(1055); + case 800: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3870, - ';', 2862, - 'e', 3848, - 'o', 3850, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 3079, + ';', 2263, + 'e', 3065, + 'o', 3067, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1016: - if (eof) ADVANCE(1055); + case 801: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3275, - ';', 2862, - 'E', 3901, - 'a', 3924, - 'e', 3845, - 'o', 3849, - 'x', 3930, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 2545, + ';', 2263, + 'E', 3115, + 'a', 3154, + 'e', 3060, + 'o', 3066, + 'x', 3163, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1017: - if (eof) ADVANCE(1055); + case 802: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - '.', 3275, - ';', 2862, - 'E', 3901, - 'e', 3845, - 'o', 3850, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + '.', 2545, + ';', 2263, + 'E', 3115, + 'e', 3060, + 'o', 3067, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1018: - if (eof) ADVANCE(1055); + case 803: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - ';', 2862, - 'E', 3901, - '_', 3891, - 'a', 3924, - 'e', 3845, - 'o', 3849, - 'x', 3930, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + ';', 2263, + 'E', 3115, + '_', 3106, + 'a', 3154, + 'e', 3060, + 'o', 3066, + 'x', 3163, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(821); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1019: - if (eof) ADVANCE(1055); + case 804: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - ';', 2862, - 'E', 3901, - '_', 3891, - 'e', 3845, - 'o', 3850, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + ';', 2263, + 'E', 3115, + '_', 3106, + 'e', 3060, + 'o', 3067, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1020: - if (eof) ADVANCE(1055); + case 805: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - ';', 2862, - 'E', 3901, - 'a', 3924, - 'e', 3845, - 'o', 3849, - 'x', 3930, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + ';', 2263, + 'E', 3115, + 'a', 3154, + 'e', 3060, + 'o', 3066, + 'x', 3163, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1021: - if (eof) ADVANCE(1055); + case 806: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - ';', 2862, - 'E', 3901, - 'e', 3845, - 'o', 3850, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + ';', 2263, + 'E', 3115, + 'e', 3060, + 'o', 3067, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1022: - if (eof) ADVANCE(1055); + case 807: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - ';', 2862, - 'a', 3924, - 'e', 3848, - 'o', 3849, - 'x', 3930, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + ';', 2263, + 'a', 3154, + 'e', 3065, + 'o', 3066, + 'x', 3163, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1023: - if (eof) ADVANCE(1055); + case 808: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - '(', 3212, - ')', 2910, - ';', 2862, - 'e', 3848, - 'o', 3850, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, + '\n', 2259, + '\r', 17, + '#', 4069, + '(', 2506, + ')', 2303, + ';', 2263, + 'e', 3065, + 'o', 3067, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1024: - if (eof) ADVANCE(1055); + case 809: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '-', 2953, - '.', 3289, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'a', 3943, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + '-', 2334, + '.', 2559, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3183, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1031); + lookahead == ' ') SKIP(817); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1025: - if (eof) ADVANCE(1055); + case 810: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '-', 2953, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - '_', 3891, - 'a', 3943, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + '-', 2334, + '.', 3079, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + '_', 3106, + 'a', 3183, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1031); + lookahead == ' ') SKIP(817); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1026: - if (eof) ADVANCE(1055); + case 811: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '-', 2953, - '.', 3870, - ';', 2862, - 'E', 3886, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'a', 3943, - 'd', 3906, - 'e', 3885, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + '-', 2334, + '.', 3079, + ';', 2263, + 'E', 3099, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3183, + 'd', 3121, + 'e', 3098, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1031); + lookahead == ' ') SKIP(817); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1027: - if (eof) ADVANCE(1055); + case 812: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '-', 2953, - '.', 3870, - ';', 2862, - 'E', 3889, - 'G', 3889, - 'K', 3889, - 'M', 3889, - 'P', 3889, - 'T', 3889, - 'a', 3943, - 'd', 3906, - 'e', 3888, - 'g', 3888, - 'h', 3932, - 'k', 3888, - 'm', 3890, - 'n', 3942, - 'p', 3888, - 's', 3912, - 't', 3888, - 'u', 3942, - 'w', 3918, - '}', 3092, - 0xb5, 3942, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + '-', 2334, + '.', 3079, + ';', 2263, + 'E', 3103, + 'G', 3103, + 'K', 3103, + 'M', 3103, + 'P', 3103, + 'T', 3103, + 'a', 3183, + 'd', 3121, + 'e', 3102, + 'g', 3102, + 'h', 3172, + 'k', 3102, + 'm', 3105, + 'n', 3182, + 'p', 3102, + 's', 3133, + 't', 3102, + 'u', 3182, + 'w', 3146, + '}', 2415, + 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1031); + lookahead == ' ') SKIP(817); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1028: - if (eof) ADVANCE(1055); + case 813: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '-', 2953, - ';', 2862, - '=', 3652, - 'a', 2759, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + '-', 2334, + ';', 2263, + '=', 2876, + 'a', 2151, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1031); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); + lookahead == ' ') SKIP(817); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); END_STATE(); - case 1029: - if (eof) ADVANCE(1055); + case 814: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '-', 2953, - ';', 2862, - '=', 3652, - 'a', 790, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + '-', 2334, + ';', 2263, + '=', 2876, + 'a', 600, + 'i', 556, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1031); + lookahead == ' ') SKIP(816); END_STATE(); - case 1030: - if (eof) ADVANCE(1055); + case 815: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '-', 2953, - ';', 2862, - 'a', 3943, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + '-', 2334, + ';', 2263, + 'a', 3183, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') SKIP(817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 1031: - if (eof) ADVANCE(1055); + case 816: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '-', 2953, - ';', 2862, - 'a', 790, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + '-', 2334, + ';', 2263, + 'a', 600, + 'i', 556, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1031); + lookahead == ' ') SKIP(816); END_STATE(); - case 1032: - if (eof) ADVANCE(1055); + case 817: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '-', 2966, - ';', 2862, - '=', 3652, - 'a', 3690, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + '-', 2334, + ';', 2263, + 'a', 600, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1031); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); - END_STATE(); - case 1033: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '.', 3289, - ';', 2862, - '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, - '|', 2863, - '}', 3092, - 0xb5, 2287, - '\t', 27, - ' ', 27, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 1034: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '.', 3289, - ';', 2862, - '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, - '|', 2863, - '}', 3092, - 0xb5, 2287, - '\t', 28, - ' ', 28, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 1035: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '.', 2248, - ';', 2862, - '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, - '|', 2863, - '}', 3092, - 0xb5, 2287, - '\t', 27, - ' ', 27, - 'B', 3420, - 'b', 3420, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 1036: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '.', 2248, - ';', 2862, - '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, - '|', 2863, - '}', 3092, - 0xb5, 2287, - '\t', 28, - ' ', 28, - 'B', 3420, - 'b', 3420, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 1037: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '.', 2248, - ';', 2862, - '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, - '|', 2863, - '}', 3092, - 0xb5, 2287, - '\t', 27, - ' ', 27, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 1038: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '.', 2248, - ';', 2862, - '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, - '|', 2863, - '}', 3092, - 0xb5, 2287, - '\t', 28, - ' ', 28, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 1039: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '.', 2248, - ';', 2862, - '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, - '|', 2863, - '}', 3092, - 0xb5, 2287, - '\t', 27, - ' ', 27, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 1040: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '.', 2248, - ';', 2862, - '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, - '|', 2863, - '}', 3092, - 0xb5, 2287, - '\t', 28, - ' ', 28, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); - END_STATE(); - case 1041: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - '.', 3275, - ';', 2862, - '?', 3181, - 'e', 533, - 'o', 526, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, - ); - END_STATE(); - case 1042: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - ';', 2862, - '=', 3652, - 'e', 3658, - 'o', 3655, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, - ); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == ' ') SKIP(817); END_STATE(); - case 1043: - if (eof) ADVANCE(1055); + case 818: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - ';', 2862, - 'a', 729, - 'e', 533, - 'o', 523, - 'x', 750, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + '-', 2344, + ';', 2263, + '=', 2876, + 'a', 2914, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - END_STATE(); - case 1044: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - ';', 2862, - 'e', 3839, - 'o', 3840, - '|', 2863, - '}', 3092, - '\t', 27, - ' ', 27, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); - END_STATE(); - case 1045: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - ';', 2862, - 'e', 2238, - 'o', 2236, - '|', 2863, - '}', 3092, - '\t', 27, - ' ', 27, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + lookahead == ' ') SKIP(817); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 1046: - if (eof) ADVANCE(1055); + case 819: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - ';', 2862, - 'e', 3848, - 'o', 3850, - '|', 2863, - '}', 3092, - '\t', 28, - ' ', 28, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + '.', 2545, + ';', 2263, + '?', 2476, + 'e', 423, + 'o', 426, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 1047: - if (eof) ADVANCE(1055); + case 820: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4780, - ')', 2910, - ';', 2862, - 'e', 2241, - 'o', 2243, - '|', 2863, - '}', 3092, - '\t', 28, - ' ', 28, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + ';', 2263, + '=', 2876, + 'e', 2881, + 'o', 2882, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 1048: - if (eof) ADVANCE(1055); + case 821: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4787, - '(', 3212, - ')', 2910, - ';', 2862, - 'a', 4102, - 'e', 4007, - 'o', 4008, - 'x', 4113, - '|', 2863, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4069, + ')', 2303, + ';', 2263, + 'a', 554, + 'e', 423, + 'o', 425, + 'x', 565, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); - END_STATE(); - case 1049: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4787, - '(', 3212, - ')', 2910, - ';', 2862, - 'e', 4003, - 'o', 4004, - '|', 2863, - '}', 3092, - '\t', 27, - ' ', 27, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); - END_STATE(); - case 1050: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4787, - '(', 3212, - ')', 2910, - ';', 2862, - 'e', 4007, - 'o', 4009, - '|', 2863, - '}', 3092, - '\t', 2861, - ' ', 2861, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); - END_STATE(); - case 1051: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4787, - '(', 3212, - ')', 2910, - ';', 2862, - 'e', 4007, - 'o', 4009, - '|', 2863, - '}', 3092, - '\t', 28, - ' ', 28, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == ' ') SKIP(821); END_STATE(); - case 1052: - if (eof) ADVANCE(1055); + case 822: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4787, - ')', 2910, - '-', 2964, - ';', 2862, - 'a', 4135, - '}', 3092, + '\n', 2259, + '\r', 17, + '#', 4075, + '(', 2506, + ')', 2303, + ';', 2263, + 'a', 3373, + 'e', 3263, + 'o', 3264, + 'x', 3388, + '|', 2264, + '}', 2415, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == ' ') SKIP(821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 1053: - if (eof) ADVANCE(1055); + case 823: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4783, - ')', 2910, - ';', 2862, - 'e', 2158, - 'o', 2159, - '|', 2863, - '}', 3092, - '\t', 27, - ' ', 27, + '\n', 2259, + '\r', 17, + '#', 4075, + '(', 2506, + ')', 2303, + ';', 2263, + 'e', 3263, + 'o', 3265, + '|', 2264, + '}', 2415, + '\t', 2262, + ' ', 2262, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 1054: - if (eof) ADVANCE(1055); + case 824: + if (eof) ADVANCE(825); ADVANCE_MAP( - '\n', 2856, - '\r', 24, - '#', 4783, - ')', 2910, - ';', 2862, - 'e', 2162, - 'o', 2163, - '|', 2863, - '}', 3092, - '\t', 28, - ' ', 28, + '\n', 2259, + '\r', 17, + '#', 4075, + ')', 2303, + '-', 2342, + ';', 2263, + 'a', 3418, + '}', 2415, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + if (lookahead == '\t' || + lookahead == ' ') SKIP(817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 1055: + case 825: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 1056: + case 826: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 1057: + case 827: ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); - case 1058: + case 828: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1057); - if (lookahead == '\r') ADVANCE(1059); - if (lookahead == '#') ADVANCE(4781); + if (lookahead == '\n') ADVANCE(827); + if (lookahead == '\r') ADVANCE(829); + if (lookahead == '#') ADVANCE(4070); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1058); - if (lookahead != 0) ADVANCE(1059); + lookahead == ' ') ADVANCE(828); + if (lookahead != 0) ADVANCE(829); END_STATE(); - case 1059: + case 829: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1057); - if (lookahead == '\r') ADVANCE(1059); - if (lookahead != 0) ADVANCE(1059); - END_STATE(); - case 1060: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == '-') ADVANCE(2130); - if (lookahead == '@') ADVANCE(2137); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2139); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2136); - END_STATE(); - case 1061: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == '-') ADVANCE(2131); - if (lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2139); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2138); + if (lookahead == '\n') ADVANCE(827); + if (lookahead == '\r') ADVANCE(829); + if (lookahead != 0) ADVANCE(829); END_STATE(); - case 1062: + case 830: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == '-') ADVANCE(2131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2139); + if (lookahead == ',') ADVANCE(1728); + if (lookahead == '-') ADVANCE(1717); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1720); END_STATE(); - case 1063: + case 831: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == '-') ADVANCE(4635); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); + if (lookahead == ',') ADVANCE(1728); + if (lookahead == '-') ADVANCE(3937); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); END_STATE(); - case 1064: + case 832: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(2142); + if (lookahead == '-') ADVANCE(1721); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2149); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2148); + lookahead == '@') ADVANCE(1728); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1727); END_STATE(); - case 1065: + case 833: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(2142); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); - END_STATE(); - case 1066: - ACCEPT_TOKEN(anon_sym_alias); - END_STATE(); - case 1067: - ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1889); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1885); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1887); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1884); + if (lookahead == '-') ADVANCE(1721); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 1068: + case 834: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1889); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4628); END_STATE(); - case 1069: + case 835: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1889); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1887); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1886); + if (lookahead == ',') ADVANCE(1594); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3929); END_STATE(); - case 1070: + case 836: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1887); + if (lookahead == ',') ADVANCE(1594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1592); END_STATE(); - case 1071: + case 837: ACCEPT_TOKEN(anon_sym_alias); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1889); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1888); + lookahead == '@') ADVANCE(1594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1593); END_STATE(); - case 1072: + case 838: ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1889); - END_STATE(); - case 1073: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 1074: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(3727); - if (lookahead == '~') ADVANCE(3728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1594); END_STATE(); - case 1075: + case 839: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(871); - if (lookahead == '~') ADVANCE(872); END_STATE(); - case 1076: + case 840: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '~') ADVANCE(171); + if (lookahead == '=') ADVANCE(2490); + if (lookahead == '~') ADVANCE(2501); END_STATE(); - case 1077: + case 841: ACCEPT_TOKEN(anon_sym_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); - END_STATE(); - case 1078: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == '-') ADVANCE(1911); - if (lookahead == '@') ADVANCE(1918); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1920); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1917); - END_STATE(); - case 1079: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == '-') ADVANCE(1912); - if (lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1920); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1919); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 1080: + case 842: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == '-') ADVANCE(1912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1920); + if (lookahead == ',') ADVANCE(1617); + if (lookahead == '-') ADVANCE(1606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1609); END_STATE(); - case 1081: + case 843: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == '-') ADVANCE(4612); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4615); + if (lookahead == ',') ADVANCE(1617); + if (lookahead == '-') ADVANCE(3907); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3910); END_STATE(); - case 1082: + case 844: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1923); + if (lookahead == '-') ADVANCE(1610); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1930); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1929); + lookahead == '@') ADVANCE(1617); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1616); END_STATE(); - case 1083: + case 845: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); - END_STATE(); - case 1084: - ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1918); + if (lookahead == '-') ADVANCE(1610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 1085: + case 846: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1930); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4615); + if (lookahead == ',') ADVANCE(1617); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3910); END_STATE(); - case 1086: + case 847: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1920); + if (lookahead == ',') ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1609); END_STATE(); - case 1087: + case 848: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); - END_STATE(); - case 1088: - ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1936); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1932); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1934); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1931); - END_STATE(); - case 1089: - ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1936); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 1090: + case 849: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1936); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1934); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1933); + if (lookahead == ',') ADVANCE(1620); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3911); END_STATE(); - case 1091: + case 850: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1934); + if (lookahead == ',') ADVANCE(1620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1618); END_STATE(); - case 1092: + case 851: ACCEPT_TOKEN(anon_sym_mut); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1936); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1935); + lookahead == '@') ADVANCE(1620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1619); END_STATE(); - case 1093: + case 852: ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1936); - END_STATE(); - case 1094: - ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1620); END_STATE(); - case 1095: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1942); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1938); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1940); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1937); - END_STATE(); - case 1096: + case 853: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1942); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4631); END_STATE(); - case 1097: + case 854: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1942); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1940); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1939); + if (lookahead == ',') ADVANCE(1623); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3932); END_STATE(); - case 1098: + case 855: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1940); + if (lookahead == ',') ADVANCE(1623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1621); END_STATE(); - case 1099: + case 856: ACCEPT_TOKEN(anon_sym_const); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1942); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1941); + lookahead == '@') ADVANCE(1623); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1622); END_STATE(); - case 1100: + case 857: ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1623); END_STATE(); - case 1101: + case 858: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 1102: + case 859: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 1103: + case 860: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 1104: + case 861: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 1105: + case 862: ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); - case 1106: + case 863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3241); - if (lookahead == '\r') ADVANCE(7); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == '$') ADVANCE(2648); + if (lookahead == '(') ADVANCE(2540); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '{') ADVANCE(2804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1107: + case 864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3255); - if (lookahead == '\r') ADVANCE(16); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3227); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == '$') ADVANCE(2648); + if (lookahead == '(') ADVANCE(2540); + if (lookahead == '{') ADVANCE(2804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1108: + case 865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3253); - if (lookahead == '\r') ADVANCE(18); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == '+') ADVANCE(1434); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'l') ADVANCE(1487); + if (lookahead == 'n') ADVANCE(1328); + if (lookahead == 'r') ADVANCE(1452); + if (lookahead == 'x') ADVANCE(1449); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1109: + case 866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3249); - if (lookahead == '\r') ADVANCE(19); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == '+') ADVANCE(1346); + if (lookahead == '>') ADVANCE(2833); + if (lookahead == 'r') ADVANCE(2482); + if (lookahead == 'u') ADVANCE(1501); + if (lookahead == 'v') ADVANCE(1352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1110: + case 867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3250); - if (lookahead == '\r') ADVANCE(20); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3222); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == '+') ADVANCE(1436); + if (lookahead == '>') ADVANCE(2821); + if (lookahead == 'o') ADVANCE(1455); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1111: + case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3254); - if (lookahead == '\r') ADVANCE(21); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3226); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == '+') ADVANCE(1160); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == '>') ADVANCE(644); + if (lookahead == 'l') ADVANCE(1201); + if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'x') ADVANCE(1172); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1112: + case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3360); - if (lookahead == '(') ADVANCE(3269); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '{') ADVANCE(3505); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == '+') ADVANCE(1103); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == '>') ADVANCE(645); + if (lookahead == 'u') ADVANCE(1218); + if (lookahead == 'v') ADVANCE(1104); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1113: + case 870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3360); - if (lookahead == '(') ADVANCE(3269); - if (lookahead == '{') ADVANCE(3505); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '+') ADVANCE(1163); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == '>') ADVANCE(647); + if (lookahead == 'o') ADVANCE(1191); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1114: + case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '*') ADVANCE(1843); - if (lookahead == '=') ADVANCE(1103); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '+') ADVANCE(1359); + if (lookahead == '>') ADVANCE(2825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1115: + case 872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1738); - if (lookahead == '>') ADVANCE(3605); - 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); + if (lookahead == '+') ADVANCE(1099); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == '>') ADVANCE(649); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1116: + case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1738); - if (lookahead == '>') ADVANCE(3605); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '.') ADVANCE(875); + if (lookahead == '_') ADVANCE(889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1117: + case 874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1662); - if (lookahead == '>') ADVANCE(3609); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '.') ADVANCE(875); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1118: + case 875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1662); - if (lookahead == '>') ADVANCE(3609); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '.') ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1119: + case 876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1480); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == '>') ADVANCE(855); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '.') ADVANCE(2542); + if (lookahead == '_') ADVANCE(889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1120: + case 877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1424); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == '>') ADVANCE(856); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '.') ADVANCE(888); + if (lookahead == '_') ADVANCE(877); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1121: + case 878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1482); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == '>') ADVANCE(858); - 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(1741); - if (lookahead == '>') ADVANCE(3597); - 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(1670); - if (lookahead == '>') ADVANCE(3601); - 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(1421); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == '>') ADVANCE(860); - 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(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(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(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(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(1875); - if (lookahead == '.') ADVANCE(1147); - if (lookahead == '_') ADVANCE(1129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - 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(1875); - if (lookahead == '.') ADVANCE(3098); - if (lookahead == '_') ADVANCE(1148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3346); - 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(1875); - if (lookahead == '.') ADVANCE(1133); - if (lookahead == '_') ADVANCE(1148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3346); - 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(1875); - if (lookahead == '.') ADVANCE(1133); - if (lookahead == '_') ADVANCE(1153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); - 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(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(1875); - if (lookahead == '.') ADVANCE(3272); - if (lookahead == '_') ADVANCE(1153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); - 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(1875); - if (lookahead == '.') ADVANCE(1152); - if (lookahead == '_') ADVANCE(1135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - 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(1875); - if (lookahead == ':') ADVANCE(3745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '.') ADVANCE(893); + if (lookahead == '_') ADVANCE(878); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1137: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '=') ADVANCE(1105); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3214); - 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(1875); - if (lookahead == '=') ADVANCE(3204); - if (lookahead == '~') ADVANCE(3210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); - END_STATE(); - case 1139: + case 879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 1875, - 'I', 1314, - '_', 1159, - 'i', 1314, - 'l', 1279, - 'r', 1269, - 'x', 1259, - '+', 1159, - '-', 1159, - 'B', 3420, - 'b', 3420, + ',', 1560, + 'I', 1001, + '_', 899, + 'i', 1001, + 'l', 982, + 'r', 971, + 'x', 964, + '+', 899, + '-', 899, + 'B', 2731, + 'b', 2731, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1140: + case 880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 1875, - 'I', 1314, - '_', 1159, - 'i', 1171, - '+', 1159, - '-', 1159, - 'B', 3420, - 'b', 3420, + ',', 1560, + 'I', 1001, + '_', 899, + 'i', 907, + '+', 899, + '-', 899, + 'B', 2731, + 'b', 2731, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1141: + case 881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 1875, - 'I', 1314, - 'a', 1227, - 'i', 1245, - 'o', 1177, - 's', 3425, - 'u', 1286, - 'B', 3420, - 'b', 3420, + ',', 1560, + 'I', 1001, + 'a', 945, + 'i', 957, + 'o', 912, + 's', 2738, + 'u', 987, + 'B', 2731, + 'b', 2731, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1142: + case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 1875, - 'I', 1314, - 'i', 1314, - 'l', 1279, - 'r', 1269, - 'x', 1259, - 'B', 3420, - 'b', 3420, + ',', 1560, + 'I', 1001, + 'i', 1001, + 'l', 982, + 'r', 971, + 'x', 964, + 'B', 2731, + 'b', 2731, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1143: + case 883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'I') ADVANCE(1314); - if (lookahead == 'i') ADVANCE(1314); - if (lookahead == 'r') ADVANCE(1301); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'I') ADVANCE(1001); + if (lookahead == 'i') ADVANCE(1001); + if (lookahead == 'r') ADVANCE(993); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1144: + case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'I') ADVANCE(1314); - if (lookahead == 'i') ADVANCE(1314); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'I') ADVANCE(1001); + if (lookahead == 'i') ADVANCE(1001); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1145: + case 885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'I') ADVANCE(1314); - if (lookahead == 'i') ADVANCE(1171); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'I') ADVANCE(1001); + if (lookahead == 'i') ADVANCE(907); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - 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(1875); - if (lookahead == 'N') ADVANCE(1315); - if (lookahead == 'f') ADVANCE(3072); - if (lookahead == 'n') ADVANCE(3033); - 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(1875); - if (lookahead == '_') ADVANCE(1147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - 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); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '_') ADVANCE(1148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3346); - 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); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '_') ADVANCE(1150); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1150); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - 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); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '_') ADVANCE(1150); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - 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); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '_') ADVANCE(1151); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - 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(1875); - if (lookahead == '_') ADVANCE(1152); - 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 1153: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '_') ADVANCE(1153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); - 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(1875); - if (lookahead == '_') ADVANCE(1155); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - 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(1875); - if (lookahead == '_') ADVANCE(1155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - 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(1875); - if (lookahead == '_') ADVANCE(1156); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - 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(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(3344); - 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(1875); - if (lookahead == '_') ADVANCE(1159); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - 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(1875); - if (lookahead == '_') ADVANCE(1159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - 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(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(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(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(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(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(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(1875); - if (lookahead == 'a') ADVANCE(1311); - if (lookahead == 'e') ADVANCE(1204); - if (lookahead == 'o') ADVANCE(3065); - 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(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(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(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(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(1875); - if (lookahead == 'b') ADVANCE(3420); - 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(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(1875); - if (lookahead == 'c') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1174: + case 886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'N') ADVANCE(1002); + if (lookahead == 'f') ADVANCE(2400); + if (lookahead == 'n') ADVANCE(2372); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1175: + case 887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(887); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1176: + case 888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1177: + case 889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1178: + case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(891); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(891); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1179: + case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(891); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1180: + case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(892); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1181: + case 893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(2930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(893); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1182: + case 894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1183: + case 895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(896); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1184: + case 896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1185: + case 897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(2901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(899); + if (lookahead == 'l') ADVANCE(982); + if (lookahead == 'r') ADVANCE(971); + if (lookahead == 'x') ADVANCE(964); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1186: + case 898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(899); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1187: + case 899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3147); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == '_') ADVANCE(899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1188: + case 900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'a') ADVANCE(985); + if (lookahead == 'o') ADVANCE(954); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1189: + case 901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'a') ADVANCE(953); + if (lookahead == 'o') ADVANCE(966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1190: + case 902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(2894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'a') ADVANCE(945); + if (lookahead == 'o') ADVANCE(912); + if (lookahead == 'u') ADVANCE(987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1191: + case 903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'a') ADVANCE(944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1192: + case 904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'a') ADVANCE(998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1193: + case 905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(1306); - if (lookahead == 's') ADVANCE(3425); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'a') ADVANCE(976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1194: + case 906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'a') ADVANCE(999); + if (lookahead == 'e') ADVANCE(932); + if (lookahead == 'o') ADVANCE(2395); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1195: + case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1196: + case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(1204); - if (lookahead == 'o') ADVANCE(3065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'c') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1197: + case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'c') ADVANCE(934); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1198: + case 910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'c') ADVANCE(935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1199: + case 911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'c') ADVANCE(922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1200: + case 912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'd') ADVANCE(996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1201: + case 913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'd') ADVANCE(918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1202: + case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(932); + if (lookahead == 'o') ADVANCE(2395); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1203: + case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'f') ADVANCE(2929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1204: + case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'f') ADVANCE(2876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(2293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1205: + case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(2406); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1206: + case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(2452); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1207: + case 919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(2919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(2386); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1208: + case 920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(2390); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1209: + case 921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3199); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(2288); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1210: + case 922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(2441); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1211: + case 923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(2364); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1212: + case 924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(986); + if (lookahead == 'o') ADVANCE(960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1213: + case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1214: + case 926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(1222); - if (lookahead == 'k') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1215: + case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(908); + if (lookahead == 'o') ADVANCE(992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1216: + case 928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(1011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1217: + case 929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1218: + case 930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'i') ADVANCE(1179); - if (lookahead == 'r') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1219: + case 931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1220: + case 932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'f') ADVANCE(2275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1221: + case 933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'g') ADVANCE(942); + if (lookahead == 't') ADVANCE(994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1222: + case 934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'h') ADVANCE(2434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1223: + case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'h') ADVANCE(2411); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1224: + case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'h') ADVANCE(943); + if (lookahead == 'k') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1225: + case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'h') ADVANCE(943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1226: + case 938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'k') ADVANCE(3015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'i') ADVANCE(913); + if (lookahead == 'r') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1227: + case 939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'i') ADVANCE(913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1228: + case 940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'i') ADVANCE(905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1229: + case 941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'i') ADVANCE(958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1230: + case 942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'i') ADVANCE(983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1231: + case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'i') ADVANCE(950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1232: + case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'l') ADVANCE(1220); - if (lookahead == 's') ADVANCE(3172); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'k') ADVANCE(2360); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1233: + case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'k') ADVANCE(919); + if (lookahead == 't') ADVANCE(910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1234: + case 946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'l') ADVANCE(940); + if (lookahead == 's') ADVANCE(2466); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1235: + case 947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'l') ADVANCE(1009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1236: + case 948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'l') ADVANCE(947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1237: + case 949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'l') ADVANCE(904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1238: + case 950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'l') ADVANCE(920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1239: + case 951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'l') ADVANCE(921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1240: + case 952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(3197); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'l') ADVANCE(982); + if (lookahead == 'r') ADVANCE(971); + if (lookahead == 'x') ADVANCE(964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1241: + case 953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(2928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'l') ADVANCE(984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1242: + case 954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'n') ADVANCE(981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1243: + case 955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(2887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'n') ADVANCE(2283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1244: + case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(3125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'n') ADVANCE(2438); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1245: + case 957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(3425); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'n') ADVANCE(2738); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - 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(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(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(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(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(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(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(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(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(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(1875); - if (lookahead == 'p') ADVANCE(3045); - 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(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(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(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(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(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(1875); - if (lookahead == 'r') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1262: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'r') ADVANCE(3027); - 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(1875); - if (lookahead == 'r') ADVANCE(2923); - 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(1875); - if (lookahead == 'r') ADVANCE(3141); - 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(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(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(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(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(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(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: + case 958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'n') ADVANCE(995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1272: + case 959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'o') ADVANCE(992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1273: + case 960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'o') ADVANCE(963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1274: + case 961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'o') ADVANCE(967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1275: + case 962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'o') ADVANCE(974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1276: + case 963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 's') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'p') ADVANCE(2381); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1277: + case 964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 's') ADVANCE(3428); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'p') ADVANCE(962); + if (lookahead == 't') ADVANCE(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1278: + case 965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'r') ADVANCE(993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1279: + case 966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2368); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1280: + case 967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1281: + case 968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'r') ADVANCE(2449); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1282: + case 969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'r') ADVANCE(925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1283: + case 970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'r') ADVANCE(911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1284: + case 971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'r') ADVANCE(961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1285: + case 972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'r') ADVANCE(955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1286: + case 973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'r') ADVANCE(956); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1287: + case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(2935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'r') ADVANCE(989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1288: + case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'r') ADVANCE(949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1289: + case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 's') ADVANCE(836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1290: + case 977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 's') ADVANCE(2738); + if (lookahead == 'u') ADVANCE(948); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1291: + case 978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 's') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1292: + case 979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 's') ADVANCE(2739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1293: + case 980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 's') ADVANCE(916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1294: + case 981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 's') ADVANCE(988); + if (lookahead == 't') ADVANCE(941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1295: + case 982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 's') ADVANCE(917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1296: + case 983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 's') ADVANCE(990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1297: + case 984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 's') ADVANCE(928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1298: + case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 't') ADVANCE(909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1299: + case 986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 't') ADVANCE(842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1300: + case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 't') ADVANCE(850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1301: + case 988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'u') ADVANCE(1182); - if (lookahead == 'y') ADVANCE(3111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 't') ADVANCE(855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1302: + case 989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 't') ADVANCE(830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1303: + case 990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 't') ADVANCE(931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1304: + case 991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'u') ADVANCE(948); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1305: + case 992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'u') ADVANCE(970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1306: + case 993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'w') ADVANCE(3165); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'u') ADVANCE(926); + if (lookahead == 'y') ADVANCE(2429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1307: + case 994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'u') ADVANCE(973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1308: + case 995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'u') ADVANCE(923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1309: + case 996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'u') ADVANCE(951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1310: + case 997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'y') ADVANCE(3158); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'v') ADVANCE(929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1311: + case 998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'y') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'y') ADVANCE(2461); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1312: + case 999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (lookahead == 'y') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1313: + case 1000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); + if (lookahead == ',') ADVANCE(1560); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + lookahead == 'a') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1314: + case 1001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); + if (lookahead == ',') ADVANCE(1560); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1315: + case 1002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); + if (lookahead == ',') ADVANCE(1560); 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(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(1875); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + lookahead == 'f') ADVANCE(2705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1318: + case 1003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); + if (lookahead == ',') ADVANCE(1560); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + lookahead == 'n') ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1319: + case 1004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); + if (lookahead == ',') ADVANCE(1560); 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(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(1875); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + lookahead == 'n') ADVANCE(2723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1322: + case 1005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); + if (lookahead == ',') ADVANCE(1560); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3412); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + lookahead == '_') ADVANCE(2702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1323: + case 1006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); + if (lookahead == ',') ADVANCE(1560); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3413); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + lookahead == '_') ADVANCE(2703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1324: + case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1325: + case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1008); END_STATE(); - case 1326: + case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1736); END_STATE(); - case 1327: + case 1010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3460); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == ',') ADVANCE(1732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1730); END_STATE(); - case 1328: + case 1011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == ',') ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1733); END_STATE(); - case 1329: + case 1012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == '-') ADVANCE(1307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1330: + case 1013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3411); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == '-') ADVANCE(1534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1331: + case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); + if (lookahead == '-') ADVANCE(1390); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1332: + case 1015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '-') ADVANCE(1557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1333: + case 1016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '-') ADVANCE(1611); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1617); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1616); END_STATE(); - case 1334: + case 1017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1696); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '-') ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 1335: + case 1018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '-') ADVANCE(1629); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1635); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1634); END_STATE(); - case 1336: + case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '-') ADVANCE(1629); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 1337: + case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1592); - if (lookahead == '_') ADVANCE(1337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '-') ADVANCE(1722); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1728); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1727); END_STATE(); - case 1338: + case 1021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '-') ADVANCE(1722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 1339: + case 1022: 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(1875); + if (lookahead == '-') ADVANCE(1641); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1647); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1646); END_STATE(); - case 1340: + case 1023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1339); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '-') ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 1341: + case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1339); - if (lookahead == '_') ADVANCE(1598); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3348); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '-') ADVANCE(1535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1342: + case 1025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3274); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '.') ADVANCE(1287); + if (lookahead == '_') ADVANCE(1025); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1343: + case 1026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3271); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(1288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1344: + case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3099); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '.') ADVANCE(2420); + if (lookahead == '_') ADVANCE(1288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1345: + case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1597); - if (lookahead == '_') ADVANCE(1345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '.') ADVANCE(864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1346: + case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '/') ADVANCE(1844); - if (lookahead == '=') ADVANCE(1104); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '.') ADVANCE(2541); + if (lookahead == '_') ADVANCE(1288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1347: + case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '.') ADVANCE(1028); + if (lookahead == '_') ADVANCE(1288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1348: + case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(1103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '.') ADVANCE(1028); + if (lookahead == '_') ADVANCE(1293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1349: + case 1032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(1104); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '.') ADVANCE(2544); + if (lookahead == '_') ADVANCE(1288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1350: + case 1033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(1105); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '.') ADVANCE(1292); + if (lookahead == '_') ADVANCE(1033); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1351: + case 1034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(1105); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == ':') ADVANCE(681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1352: + case 1035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == '>') ADVANCE(857); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == '>') ADVANCE(646); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1353: + case 1036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == '>') ADVANCE(859); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == '>') ADVANCE(648); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1354: + case 1037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == '>') ADVANCE(861); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == '>') ADVANCE(650); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1355: + case 1038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == '>') ADVANCE(862); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == '>') ADVANCE(651); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1356: + case 1039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'N') ADVANCE(1567); - if (lookahead == 'f') ADVANCE(3073); - if (lookahead == 'n') ADVANCE(2098); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'N') ADVANCE(1242); + if (lookahead == 'f') ADVANCE(2401); + if (lookahead == 'n') ADVANCE(2374); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1357: + case 1040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'N') ADVANCE(1567); - if (lookahead == 'f') ADVANCE(3073); - if (lookahead == 'n') ADVANCE(3036); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'N') ADVANCE(1242); + if (lookahead == 'f') ADVANCE(2401); + if (lookahead == 'n') ADVANCE(1243); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1358: + case 1041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'N') ADVANCE(1567); - if (lookahead == 'f') ADVANCE(2029); - if (lookahead == 'n') ADVANCE(2098); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'N') ADVANCE(1242); + if (lookahead == 'f') ADVANCE(1250); + if (lookahead == 'n') ADVANCE(1243); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1359: + case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == '_') ADVANCE(1359); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == '_') ADVANCE(1042); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1360: + case 1043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1532); - if (lookahead == 'o') ADVANCE(1469); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1211); + if (lookahead == 'o') ADVANCE(1149); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1361: + case 1044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1532); - if (lookahead == 'o') ADVANCE(1475); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1211); + if (lookahead == 'o') ADVANCE(1155); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1362: + case 1045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1532); - if (lookahead == 'o') ADVANCE(1477); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1211); + if (lookahead == 'o') ADVANCE(1157); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1363: + case 1046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1467); - if (lookahead == 'o') ADVANCE(1493); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1147); + if (lookahead == 'o') ADVANCE(1174); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1364: + case 1047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1467); - if (lookahead == 'o') ADVANCE(1494); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1147); + if (lookahead == 'o') ADVANCE(1188); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1365: + case 1048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1451); - if (lookahead == 'o') ADVANCE(1382); - if (lookahead == 'u') ADVANCE(1534); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1130); + if (lookahead == 'o') ADVANCE(1065); + if (lookahead == 'u') ADVANCE(1213); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1366: + case 1049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1451); - if (lookahead == 'o') ADVANCE(1385); - if (lookahead == 'u') ADVANCE(1537); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1130); + if (lookahead == 'o') ADVANCE(1068); + if (lookahead == 'u') ADVANCE(1220); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1367: + case 1050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1449); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1129); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1368: + case 1051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1564); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1239); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1369: + case 1052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1450); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1199); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1370: + case 1053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1565); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1133); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1371: + case 1054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1518); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1240); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1372: + case 1055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1519); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1207); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1373: + case 1056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1453); - if (lookahead == 'o') ADVANCE(1382); - if (lookahead == 'u') ADVANCE(1534); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1132); + if (lookahead == 'o') ADVANCE(1065); + if (lookahead == 'u') ADVANCE(1213); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1374: + case 1057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1545); - if (lookahead == 'o') ADVANCE(1469); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1222); + if (lookahead == 'o') ADVANCE(1149); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1375: + case 1058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'a') ADVANCE(1452); - if (lookahead == 'o') ADVANCE(1385); - if (lookahead == 'u') ADVANCE(1537); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'a') ADVANCE(1131); + if (lookahead == 'o') ADVANCE(1068); + if (lookahead == 'u') ADVANCE(1220); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1376: + case 1059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'c') ADVANCE(1434); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'c') ADVANCE(1117); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1377: + case 1060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'c') ADVANCE(1435); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'c') ADVANCE(1114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1378: + case 1061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'c') ADVANCE(1437); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'c') ADVANCE(1115); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1379: + case 1062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'c') ADVANCE(1436); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'c') ADVANCE(1078); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1380: + case 1063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'c') ADVANCE(1399); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'c') ADVANCE(1089); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1381: + case 1064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'c') ADVANCE(1407); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'c') ADVANCE(1118); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1382: + case 1065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'd') ADVANCE(1557); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'd') ADVANCE(1233); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1383: + case 1066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'd') ADVANCE(1391); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'd') ADVANCE(1072); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1384: + case 1067: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'd') ADVANCE(1406); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'd') ADVANCE(1086); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1385: + case 1068: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'd') ADVANCE(1559); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'd') ADVANCE(1236); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1386: + case 1069: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1428); - if (lookahead == 'o') ADVANCE(3066); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1108); + if (lookahead == 'o') ADVANCE(2396); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1387: + case 1070: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1562); - if (lookahead == 'o') ADVANCE(1535); - if (lookahead == 'u') ADVANCE(1457); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1570); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1110); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1388: + case 1071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1430); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(2294); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1389: + case 1072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(2902); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(2454); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1390: + case 1073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(2035); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(2633); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1391: + case 1074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(3149); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(2641); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1392: + case 1075: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(2128); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(2477); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1393: + case 1076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(2150); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(2391); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1394: + case 1077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1894); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(2289); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1395: + case 1078: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(2195); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(2443); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1396: + case 1079: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(3182); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(2365); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1397: + case 1080: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(3059); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(2407); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1398: + case 1081: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(2895); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(2387); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1399: + case 1082: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(3132); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1212); + if (lookahead == 'o') ADVANCE(1159); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1400: + case 1083: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(2011); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1109); + if (lookahead == 'o') ADVANCE(2396); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1401: + case 1084: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1909); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1109); + if (lookahead == 'o') ADVANCE(1249); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1402: + case 1085: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(3022); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1050); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1403: + case 1086: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(2065); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1018); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1404: + case 1087: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(3081); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1256); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1405: + case 1088: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(3053); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1258); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1406: + case 1089: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1953); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1022); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1407: + case 1090: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1973); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1185); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1408: + case 1091: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1533); - if (lookahead == 'i') ADVANCE(1522); - if (lookahead == 'o') ADVANCE(1479); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1053); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1409: + case 1092: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1533); - if (lookahead == 'i') ADVANCE(1526); - if (lookahead == 'o') ADVANCE(1479); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1217); + if (lookahead == 'o') ADVANCE(1161); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1410: + case 1093: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1429); - if (lookahead == 'o') ADVANCE(3066); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1182); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1411: + case 1094: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1429); - if (lookahead == 'o') ADVANCE(2023); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1255); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1412: + case 1095: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1563); - if (lookahead == 'o') ADVANCE(1535); - if (lookahead == 'u') ADVANCE(1457); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1570); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1176); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1413: + case 1096: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1367); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1265); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1414: + case 1097: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1507); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1184); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1415: + case 1098: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1369); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1267); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1416: + case 1099: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1504); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1193); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1417: + case 1100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1542); - if (lookahead == 'i') ADVANCE(1522); - if (lookahead == 'o') ADVANCE(1481); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1270); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1418: + case 1101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1497); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1189); + if (lookahead == 'i') ADVANCE(1140); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1419: + case 1102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1506); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1189); + if (lookahead == 'i') ADVANCE(1142); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1420: + case 1103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1498); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1036); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1421: + case 1104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1513); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1187); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1422: + case 1105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1511); - if (lookahead == 'i') ADVANCE(1460); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1192); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1423: + case 1106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1511); - if (lookahead == 'i') ADVANCE(1462); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1112); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1424: + case 1107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1353); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'e') ADVANCE(1111); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1425: + case 1108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1509); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'f') ADVANCE(2276); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1426: + case 1109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1432); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'f') ADVANCE(1251); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1427: + case 1110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'e') ADVANCE(1431); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'g') ADVANCE(1123); + if (lookahead == 't') ADVANCE(1229); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1428: + case 1111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'f') ADVANCE(2877); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'g') ADVANCE(1128); + if (lookahead == 't') ADVANCE(1229); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1429: + case 1112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'f') ADVANCE(1882); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'g') ADVANCE(1128); + if (lookahead == 't') ADVANCE(1235); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1430: + case 1113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'g') ADVANCE(1445); - if (lookahead == 't') ADVANCE(1552); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'h') ADVANCE(1101); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1431: + case 1114: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'g') ADVANCE(1448); - if (lookahead == 't') ADVANCE(1552); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'h') ADVANCE(2412); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1432: + case 1115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'g') ADVANCE(1448); - if (lookahead == 't') ADVANCE(1555); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'h') ADVANCE(2435); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1433: + case 1116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'h') ADVANCE(1422); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'h') ADVANCE(1126); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1434: + case 1117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'h') ADVANCE(2047); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'h') ADVANCE(1261); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1435: + case 1118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'h') ADVANCE(3089); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'h') ADVANCE(1264); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1436: + case 1119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'h') ADVANCE(2053); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'h') ADVANCE(1102); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1437: + case 1120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'h') ADVANCE(3119); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'i') ADVANCE(1066); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1438: + case 1121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'h') ADVANCE(1446); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'i') ADVANCE(1052); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1439: + case 1122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'h') ADVANCE(1423); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'i') ADVANCE(1152); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1440: + case 1123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'i') ADVANCE(1383); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'i') ADVANCE(1203); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1441: + case 1124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'i') ADVANCE(1371); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'i') ADVANCE(1067); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1442: + case 1125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'i') ADVANCE(1474); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'i') ADVANCE(1055); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1443: + case 1126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'i') ADVANCE(1384); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'i') ADVANCE(1142); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1444: + case 1127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'i') ADVANCE(1372); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'i') ADVANCE(1156); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1445: + case 1128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'i') ADVANCE(1524); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'i') ADVANCE(1210); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1446: + case 1129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'i') ADVANCE(1462); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'k') ADVANCE(2361); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1447: + case 1130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'i') ADVANCE(1476); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'k') ADVANCE(1088); + if (lookahead == 't') ADVANCE(1060); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1448: + case 1131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'i') ADVANCE(1531); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'k') ADVANCE(1088); + if (lookahead == 't') ADVANCE(1064); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1449: + case 1132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'k') ADVANCE(3016); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'k') ADVANCE(1081); + if (lookahead == 't') ADVANCE(1060); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1450: + case 1133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'k') ADVANCE(2059); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'k') ADVANCE(1260); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1451: + case 1134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'k') ADVANCE(1392); - if (lookahead == 't') ADVANCE(1377); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(2625); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1452: + case 1135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'k') ADVANCE(1392); - if (lookahead == 't') ADVANCE(1379); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1121); + if (lookahead == 's') ADVANCE(2467); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1453: + case 1136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'k') ADVANCE(1405); - if (lookahead == 't') ADVANCE(1377); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1121); + if (lookahead == 's') ADVANCE(1248); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1454: + case 1137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(2203); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1134); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1455: + case 1138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1441); - if (lookahead == 's') ADVANCE(2077); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1051); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1456: + case 1139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1441); - if (lookahead == 's') ADVANCE(3173); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1054); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1457: + case 1140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1454); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1076); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1458: + case 1141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1368); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1077); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1459: + case 1142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1370); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1096); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1460: + case 1143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1397); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1098); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1461: + case 1144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1398); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1201); + if (lookahead == 'r') ADVANCE(1181); + if (lookahead == 'x') ADVANCE(1171); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1462: + case 1145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1400); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1201); + if (lookahead == 'r') ADVANCE(1197); + if (lookahead == 'x') ADVANCE(1172); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1463: + case 1146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1401); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1125); + if (lookahead == 's') ADVANCE(1248); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1464: + case 1147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1521); - if (lookahead == 'r') ADVANCE(1503); - if (lookahead == 'x') ADVANCE(1490); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1204); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1465: + case 1148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1521); - if (lookahead == 'r') ADVANCE(1516); - if (lookahead == 'x') ADVANCE(1491); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'l') ADVANCE(1208); + if (lookahead == 'r') ADVANCE(1181); + if (lookahead == 'x') ADVANCE(1171); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1466: + case 1149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1444); - if (lookahead == 's') ADVANCE(2077); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'n') ADVANCE(1202); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1467: + case 1150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1525); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'n') ADVANCE(2284); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1468: + case 1151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'l') ADVANCE(1529); - if (lookahead == 'r') ADVANCE(1503); - if (lookahead == 'x') ADVANCE(1490); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'n') ADVANCE(2439); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1469: + case 1152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'n') ADVANCE(1523); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'n') ADVANCE(1231); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1470: + case 1153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'n') ADVANCE(2888); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'n') ADVANCE(1266); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1471: + case 1154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'n') ADVANCE(3126); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'n') ADVANCE(1268); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1472: + case 1155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'n') ADVANCE(1903); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'n') ADVANCE(1205); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1473: + case 1156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'n') ADVANCE(2071); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'n') ADVANCE(1232); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1474: + case 1157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'n') ADVANCE(1553); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'n') ADVANCE(1206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1475: + case 1158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'n') ADVANCE(1527); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'o') ADVANCE(1226); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1476: + case 1159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'n') ADVANCE(1556); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'o') ADVANCE(1169); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1477: + case 1160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'n') ADVANCE(1528); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'o') ADVANCE(1035); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1478: + case 1161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'o') ADVANCE(1549); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'o') ADVANCE(1170); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1479: + case 1162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'o') ADVANCE(1488); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'o') ADVANCE(1214); + if (lookahead == 'u') ADVANCE(1137); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1245); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1480: + case 1163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'o') ADVANCE(1352); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'o') ADVANCE(1230); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1481: + case 1164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'o') ADVANCE(1489); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'o') ADVANCE(1175); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1482: + case 1165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'o') ADVANCE(1554); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'o') ADVANCE(1186); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1483: + case 1166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'o') ADVANCE(1495); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'o') ADVANCE(1191); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1484: + case 1167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'o') ADVANCE(1510); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'o') ADVANCE(1190); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1485: + case 1168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'o') ADVANCE(1496); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'o') ADVANCE(1234); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1486: + case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'o') ADVANCE(1512); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'p') ADVANCE(2382); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1487: + case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'o') ADVANCE(1558); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'p') ADVANCE(1257); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1488: + case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'p') ADVANCE(3046); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'p') ADVANCE(1165); + if (lookahead == 't') ADVANCE(1093); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1489: + case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'p') ADVANCE(2005); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'p') ADVANCE(1167); + if (lookahead == 't') ADVANCE(1097); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1490: + case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'p') ADVANCE(1484); - if (lookahead == 't') ADVANCE(1416); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1227); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1491: + case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'p') ADVANCE(1486); - if (lookahead == 't') ADVANCE(1419); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(2369); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1492: + case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1550); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(2315); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1493: + case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(3028); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(2450); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1494: + case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1999); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(870); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1495: + case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(2924); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1085); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1496: + case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(2017); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1228); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1497: + case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(3142); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1062); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1498: + case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1993); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1164); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1499: + case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1121); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1150); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1500: + case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1413); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1151); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1501: + case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1551); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1153); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1502: + case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1380); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1138); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1503: + case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1483); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1216); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1504: + case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1470); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1139); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1505: + case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1471); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1252); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1506: + case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1472); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1075); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1507: + case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1458); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1219); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1508: + case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1473); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1263); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1509: + case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1459); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1271); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1510: + case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1540); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1198); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1511: + case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1396); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1091); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1512: + case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1543); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1063); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1513: + case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1517); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1154); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1514: + case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1415); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1166); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1515: + case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1381); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'r') ADVANCE(1038); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1516: + case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1485); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 's') ADVANCE(837); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1517: + case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'r') ADVANCE(1355); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 's') ADVANCE(1071); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1518: + case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1071); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 's') ADVANCE(1087); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1519: + case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1888); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 's') ADVANCE(1215); + if (lookahead == 't') ADVANCE(1122); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1520: + case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1389); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 's') ADVANCE(1224); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1521: + case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1390); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 's') ADVANCE(1074); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1522: + case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1536); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 's') ADVANCE(1221); + if (lookahead == 't') ADVANCE(1122); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1523: + case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1538); - if (lookahead == 't') ADVANCE(1442); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 's') ADVANCE(1221); + if (lookahead == 't') ADVANCE(1127); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1524: + case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1547); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 's') ADVANCE(1259); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1525: + case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1395); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 's') ADVANCE(1080); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1526: + case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1541); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 's') ADVANCE(1094); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1527: + case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1539); - if (lookahead == 't') ADVANCE(1442); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 's') ADVANCE(1225); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1528: + case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1539); - if (lookahead == 't') ADVANCE(1447); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(1059); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1529: + case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1404); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(844); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1530: + case 1213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1394); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(851); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1531: + case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 's') ADVANCE(1548); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(1246); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1532: + case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1376); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') 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); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1533: + case 1216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1082); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(832); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1534: + case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1092); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(1016); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1535: + case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1574); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(872); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1536: + case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(2116); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(1020); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1537: + case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1935); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(1253); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1538: + case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1099); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(1262); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1539: + case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1941); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(1061); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1540: + case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1064); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(1037); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1541: + case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(2936); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(1095); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1542: + case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1921); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 't') ADVANCE(1105); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1543: + case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(2140); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'u') ADVANCE(1180); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1544: + case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1124); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'u') ADVANCE(1073); + if (lookahead == 'y') ADVANCE(2430); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1545: + case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1378); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'u') ADVANCE(1073); + if (lookahead == 'y') ADVANCE(1254); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1546: + case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1354); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'u') ADVANCE(1183); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1547: + case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1418); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'u') ADVANCE(1223); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1548: + case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 't') ADVANCE(1420); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'u') ADVANCE(1079); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1549: + case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'u') ADVANCE(1502); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'u') ADVANCE(1100); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1550: + case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'u') ADVANCE(1393); - if (lookahead == 'y') ADVANCE(3112); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'u') ADVANCE(1141); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1551: + case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'u') ADVANCE(1393); - if (lookahead == 'y') ADVANCE(2041); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'u') ADVANCE(1195); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1552: + case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'u') ADVANCE(1505); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'u') ADVANCE(1196); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1553: + case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'u') ADVANCE(1402); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'u') ADVANCE(1143); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1554: + case 1237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'u') ADVANCE(1546); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'v') ADVANCE(1090); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1555: + case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'u') ADVANCE(1508); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'v') ADVANCE(1104); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1556: + case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'u') ADVANCE(1403); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'y') ADVANCE(2462); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1557: + case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'u') ADVANCE(1461); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'y') ADVANCE(1269); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1558: + case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'u') ADVANCE(1515); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1245); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1559: + case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'u') ADVANCE(1463); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2706); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1560: + case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'v') ADVANCE(1414); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1702); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1713); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1712); END_STATE(); - case 1561: + case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'v') ADVANCE(1425); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1242); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1562: + case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'w') ADVANCE(2122); + if (lookahead == '=') ADVANCE(2817); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2724); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1563: + case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'w') ADVANCE(3166); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2505); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1564: + case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'y') ADVANCE(3159); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1247); END_STATE(); - case 1565: + case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'y') ADVANCE(1987); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1695); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1694); END_STATE(); - case 1566: + case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1570); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1668); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1667); END_STATE(); - case 1567: + case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2213); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1671); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1670); END_STATE(); - case 1568: + case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1572); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1591); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1590); END_STATE(); - case 1569: + case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1567); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1655); END_STATE(); - case 1570: + case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1620); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1619); END_STATE(); - case 1571: + case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1568); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1677); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1676); END_STATE(); - case 1572: + case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1573); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1597); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1596); END_STATE(); - case 1573: + case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1674); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1673); END_STATE(); - case 1574: + case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3211); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1659); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1658); END_STATE(); - case 1575: + case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3593); + if (lookahead == '=') ADVANCE(2817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); + lookahead == '@') ADVANCE(1716); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1715); END_STATE(); - case 1576: + case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(866); - if (lookahead == '~') ADVANCE(1842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1594); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1593); END_STATE(); - case 1577: + case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3625); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1685); END_STATE(); - case 1578: + case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1679); END_STATE(); - case 1579: + case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1623); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1622); END_STATE(); - case 1580: + case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1665); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1664); END_STATE(); - case 1581: + case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 1857, - '_', 1604, - 'i', 1857, - 'l', 1794, - 'r', 1781, - 'x', 1752, - '+', 1604, - '-', 1604, - 'B', 3420, - 'b', 3420, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1683); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1682); END_STATE(); - case 1582: + case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1661); END_STATE(); - case 1583: + case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 1857, - 'a', 1709, - 'i', 1730, - 'o', 1636, - 's', 3425, - 'u', 1799, - 'B', 3420, - 'b', 3420, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1602); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1601); END_STATE(); - case 1584: + case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1605); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1604); END_STATE(); - case 1585: + case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1857); - if (lookahead == 'i') ADVANCE(1857); - if (lookahead == 'r') ADVANCE(1822); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1692); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1691); END_STATE(); - case 1586: + case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1857); - if (lookahead == 'i') ADVANCE(1857); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1649); END_STATE(); - case 1587: + case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1857); - if (lookahead == 'i') ADVANCE(1621); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1689); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1688); END_STATE(); - case 1588: + case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == '=') ADVANCE(2817); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1653); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1652); END_STATE(); - case 1589: + case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1858); - if (lookahead == 'f') ADVANCE(3074); - if (lookahead == 'n') ADVANCE(3037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '=') ADVANCE(2492); + if (lookahead == '~') ADVANCE(2503); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1590: + case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1858); - if (lookahead == 'f') ADVANCE(3074); - if (lookahead == 'n') ADVANCE(3035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '>') ADVANCE(2849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1591: + case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1858); - if (lookahead == 'f') ADVANCE(3074); - if (lookahead == 'n') ADVANCE(2099); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '>') ADVANCE(2845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1592: + case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1592); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '>') ADVANCE(2837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1593: + case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '>') ADVANCE(2841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1594: + case 1277: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + ADVANCE_MAP( + 'I', 1541, + '_', 1298, + 'i', 1541, + 'l', 1494, + 'r', 1480, + 'x', 1450, + '+', 1298, + '-', 1298, + 'B', 2731, + 'b', 2731, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); + END_STATE(); + case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1595); + if (lookahead == 'I') ADVANCE(1541); + if (lookahead == '_') ADVANCE(1298); + if (lookahead == 'i') ADVANCE(1317); if (lookahead == '+' || - lookahead == '-') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + lookahead == '-') ADVANCE(1298); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1595: + case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + ADVANCE_MAP( + 'I', 1541, + 'a', 1402, + 'i', 1425, + 'o', 1332, + 's', 2738, + 'u', 1512, + 'B', 2731, + 'b', 2731, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1596: + case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'I') ADVANCE(1541); + if (lookahead == 'i') ADVANCE(1541); + if (lookahead == 'l') ADVANCE(1494); + if (lookahead == 'r') ADVANCE(1480); + if (lookahead == 'x') ADVANCE(1450); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1597: + case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'I') ADVANCE(1541); + if (lookahead == 'i') ADVANCE(1541); + if (lookahead == 'r') ADVANCE(1522); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1598: + case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1598); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3348); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'I') ADVANCE(1541); + if (lookahead == 'i') ADVANCE(1541); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1599: + case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1600); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'I') ADVANCE(1541); + if (lookahead == 'i') ADVANCE(1317); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1600: + case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'N') ADVANCE(1542); + if (lookahead == 'f') ADVANCE(2402); + if (lookahead == 'n') ADVANCE(2375); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1601: + case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1601); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'N') ADVANCE(1542); + if (lookahead == 'f') ADVANCE(2402); + if (lookahead == 'n') ADVANCE(1543); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1602: + case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'N') ADVANCE(1544); + if (lookahead == 'f') ADVANCE(1563); + if (lookahead == 'n') ADVANCE(1543); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1603: + case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1604); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1604); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '_') ADVANCE(1287); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1604: + case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1604); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '_') ADVANCE(1288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1605: + case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == '_') ADVANCE(1290); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1290); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1606: + case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == '_') ADVANCE(1290); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1607: + case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == '_') ADVANCE(1291); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1608: + case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == '_') ADVANCE(1292); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1609: + case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == '_') ADVANCE(1293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1610: + case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '_') ADVANCE(1295); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1295); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1611: + case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '_') ADVANCE(1295); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1612: + case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '_') ADVANCE(1298); + if (lookahead == 'l') ADVANCE(1487); + if (lookahead == 'r') ADVANCE(1478); + if (lookahead == 'x') ADVANCE(1449); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1613: + case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == '_') ADVANCE(1298); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1614: + case 1298: 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(1875); + if (lookahead == '_') ADVANCE(1298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1615: + case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == '_') ADVANCE(1299); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1616: + case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1417); + if (lookahead == 'o') ADVANCE(1453); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1617: + case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'a') ADVANCE(1417); + if (lookahead == 'o') ADVANCE(1469); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1618: + case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'a') ADVANCE(1400); + if (lookahead == 'o') ADVANCE(1326); + if (lookahead == 'u') ADVANCE(1500); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1619: + case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1400); + if (lookahead == 'o') ADVANCE(1329); + if (lookahead == 'u') ADVANCE(1500); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1620: + case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'a') ADVANCE(1399); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1621: + case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1536); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1622: + case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1498); + if (lookahead == 'o') ADVANCE(1421); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1623: + case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1683); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1427); + if (lookahead == 'o') ADVANCE(1456); + if (lookahead == 's') ADVANCE(1376); + if (lookahead == 'x') ADVANCE(1440); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1624: + case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1401); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1625: + case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1538); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1626: + case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1481); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1627: + case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1537); + if (lookahead == 'e') ADVANCE(1371); + if (lookahead == 'o') ADVANCE(1562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1628: + case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1491); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1629: + case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1466); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1630: + case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1402); + if (lookahead == 'o') ADVANCE(1332); + if (lookahead == 'u') ADVANCE(1512); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1631: + case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1786); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1514); + if (lookahead == 'o') ADVANCE(1430); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1632: + case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'a') ADVANCE(1419); + if (lookahead == 'o') ADVANCE(1469); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1633: + case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1651); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1634: + case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'c') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1635: + case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'c') ADVANCE(1374); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1636: + case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'c') ADVANCE(1375); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1637: + case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'c') ADVANCE(1380); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1638: + case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'c') ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1639: + case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'c') ADVANCE(1355); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1640: + case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'c') ADVANCE(1381); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1641: + case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'd') ADVANCE(2478); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1642: + case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'd') ADVANCE(2517); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1643: + case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2150); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'd') ADVANCE(2534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1644: + case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'd') ADVANCE(1485); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1645: + case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1678); - if (lookahead == 'o') ADVANCE(3067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'd') ADVANCE(1527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1646: + case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'd') ADVANCE(1337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1647: + case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'd') ADVANCE(1354); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1648: + case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'd') ADVANCE(1531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1649: + case 1333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1370); + if (lookahead == 'o') ADVANCE(2397); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1650: + case 1334: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1372); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1651: + case 1335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3150); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1652: + case 1336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2408); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1653: + case 1337: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2455); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1654: + case 1338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2388); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1655: + case 1339: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3133); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2392); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1656: + case 1340: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1657: + case 1341: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1954); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2444); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1658: + case 1342: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(2366); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1659: + case 1343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'e') ADVANCE(2637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1660: + case 1344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'e') ADVANCE(2645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1661: + case 1345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1610); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1371); + if (lookahead == 'o') ADVANCE(1562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1662: + case 1346: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1274); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1663: + case 1347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'e') ADVANCE(1574); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1664: + case 1348: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1835); - if (lookahead == 's') ADVANCE(3425); - 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); + if (lookahead == 'e') ADVANCE(1499); + if (lookahead == 'o') ADVANCE(1435); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1665: + case 1349: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'e') ADVANCE(1304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1666: + case 1350: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'e') ADVANCE(1318); + if (lookahead == 'o') ADVANCE(1528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1667: + case 1351: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1580); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1668: + case 1352: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1464); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1669: + case 1353: 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(1875); + if (lookahead == 'e') ADVANCE(1308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1670: + case 1354: 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(1875); + if (lookahead == 'e') ADVANCE(1019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1671: + case 1355: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'e') ADVANCE(1023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1672: + case 1356: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1673: + case 1357: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1569); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1674: + case 1358: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1675: + case 1359: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1471); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1676: + case 1360: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1677: + case 1361: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(1883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1458); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1678: + case 1362: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1582); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1679: + case 1363: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'e') ADVANCE(1467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1680: + case 1364: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'e') ADVANCE(1473); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1681: + case 1365: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1584); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1682: + case 1366: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1587); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1683: + case 1367: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3121); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1468); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1684: + case 1368: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3090); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1508); + if (lookahead == 'o') ADVANCE(1437); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1685: + case 1369: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1716); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'e') ADVANCE(1373); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1686: + case 1370: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1694); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'f') ADVANCE(2277); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1687: + case 1371: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'f') ADVANCE(1565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1688: + case 1372: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'g') ADVANCE(1388); + if (lookahead == 't') ADVANCE(1523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1689: + case 1373: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1703); - if (lookahead == 'k') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'g') ADVANCE(1398); + if (lookahead == 't') ADVANCE(1529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1690: + case 1374: 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(1875); + if (lookahead == 'h') ADVANCE(2436); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1691: + case 1375: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1633); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'h') ADVANCE(2413); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1692: + case 1376: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'h') ADVANCE(1403); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1693: + case 1377: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'h') ADVANCE(2488); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1694: + case 1378: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1717); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'h') ADVANCE(2486); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1695: + case 1379: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'h') ADVANCE(1389); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1696: + case 1380: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'h') ADVANCE(1577); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1697: + case 1381: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'h') ADVANCE(1581); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1698: + case 1382: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1635); - if (lookahead == 'r') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'h') ADVANCE(1396); + if (lookahead == 'k') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1699: + case 1383: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1635); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'h') ADVANCE(1396); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1700: + case 1384: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1505); + if (lookahead == 'r') ADVANCE(1349); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1701: + case 1385: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1792); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1702: + case 1386: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1816); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1330); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1703: + case 1387: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1719); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1426); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1704: + case 1388: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1489); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1705: + case 1389: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1412); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1706: + case 1390: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1423); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1707: + case 1391: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(3017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1509); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1708: + case 1392: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'i') ADVANCE(1510); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1709: + case 1393: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'i') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1710: + case 1394: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2203); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1331); + if (lookahead == 'r') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1711: + case 1395: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1692); - if (lookahead == 'n') ADVANCE(1632); - if (lookahead == 's') ADVANCE(3176); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1331); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1712: + case 1396: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1692); - if (lookahead == 's') ADVANCE(3176); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1414); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1713: + case 1397: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1710); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1431); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1714: + case 1398: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'i') ADVANCE(1497); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1715: + case 1399: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'k') ADVANCE(2362); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1716: + case 1400: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'k') ADVANCE(1338); + if (lookahead == 't') ADVANCE(1320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1717: + case 1401: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'k') ADVANCE(1576); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1718: + case 1402: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1654); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'k') ADVANCE(1360); + if (lookahead == 't') ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1719: + case 1403: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1640); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(2530); + if (lookahead == 'r') ADVANCE(2532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1720: + case 1404: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(2628); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1721: + case 1405: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'l') ADVANCE(1573); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1722: + case 1406: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'l') ADVANCE(1385); + if (lookahead == 'n') ADVANCE(1325); + if (lookahead == 's') ADVANCE(2470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1723: + case 1407: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1385); + if (lookahead == 's') ADVANCE(2470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1724: + case 1408: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'l') ADVANCE(1405); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1725: + case 1409: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1726: + case 1410: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1404); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1727: + case 1411: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1790); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1728: + case 1412: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1339); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1729: + case 1413: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1340); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1730: + case 1414: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3425); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1362); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1731: + case 1415: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1826); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1365); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1732: + case 1416: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1487); + if (lookahead == 'r') ADVANCE(1478); + if (lookahead == 'x') ADVANCE(1449); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1733: + case 1417: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1796); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1490); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1734: + case 1418: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1634); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1494); + if (lookahead == 'r') ADVANCE(1480); + if (lookahead == 'x') ADVANCE(1450); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1735: + case 1419: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1828); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'l') ADVANCE(1495); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1736: + case 1420: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'l') ADVANCE(1393); + if (lookahead == 's') ADVANCE(1561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1737: + case 1421: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'n') ADVANCE(1488); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1738: + case 1422: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'n') ADVANCE(2285); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1739: + case 1423: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1750); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'n') ADVANCE(2484); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1740: + case 1424: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'n') ADVANCE(2440); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1741: + case 1425: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'n') ADVANCE(2738); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1742: + case 1426: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'n') ADVANCE(1525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1743: + case 1427: 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(1875); + if (lookahead == 'n') ADVANCE(1327); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1744: + case 1428: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'n') ADVANCE(1583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1745: + case 1429: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'n') ADVANCE(1585); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1746: + case 1430: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1754); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'n') ADVANCE(1493); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1747: + case 1431: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'n') ADVANCE(1530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1748: + case 1432: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1520); + if (lookahead == 't') ADVANCE(1313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1749: + case 1433: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1520); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1750: + case 1434: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(3047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1273); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1751: + case 1435: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'o') ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1752: + case 1436: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'o') ADVANCE(1524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1753: + case 1437: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1448); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1754: + case 1438: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1454); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1755: + case 1439: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1455); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1756: + case 1440: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1823); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1457); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1757: + case 1441: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1504); + if (lookahead == 'u') ADVANCE(1410); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1758: + case 1442: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1472); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1759: + case 1443: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1479); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1760: + case 1444: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3143); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1506); + if (lookahead == 'u') ADVANCE(1408); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1761: + case 1445: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1762: + case 1446: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1822); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'o') ADVANCE(1528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1763: + case 1447: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1627); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'p') ADVANCE(2383); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1764: + case 1448: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'p') ADVANCE(1571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1765: + case 1449: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'p') ADVANCE(1445); + if (lookahead == 't') ADVANCE(1356); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1766: + case 1450: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'p') ADVANCE(1443); + if (lookahead == 't') ADVANCE(1363); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1767: + case 1451: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1521); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1768: + case 1452: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1715); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1769: + case 1453: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(2370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1770: + case 1454: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1725); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(2480); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1771: + case 1455: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(2317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1772: + case 1456: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(2538); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1773: + case 1457: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1808); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(2536); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1774: + case 1458: 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(1875); + if (lookahead == 'r') ADVANCE(2451); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1775: + case 1459: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1349); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1776: + case 1460: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1777: + case 1461: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1811); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1322); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1778: + case 1462: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1422); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1779: + case 1463: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1628); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1276); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1780: + case 1464: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1409); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1781: + case 1465: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1424); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1782: + case 1466: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1517); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1783: + case 1467: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1428); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1784: + case 1468: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1411); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1785: + case 1469: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(3427); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1566); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1786: + case 1470: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1333); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1503); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1787: + case 1471: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1463); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1788: + case 1472: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1806); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1789: + case 1473: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1588); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1790: + case 1474: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'r') ADVANCE(1353); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1791: + case 1475: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1792: + case 1476: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1793: + case 1477: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1794: + case 1478: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1638); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1439); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1795: + case 1479: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'r') ADVANCE(1511); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1796: + case 1480: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 'r') ADVANCE(1442); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1797: + case 1481: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1798: + case 1482: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1336); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(2738); + if (lookahead == 'u') ADVANCE(1408); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1799: + case 1483: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1800: + case 1484: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2117); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(2740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1801: + case 1485: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1802: + case 1486: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1335); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1803: + case 1487: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1336); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1804: + case 1488: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1093); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1502); + if (lookahead == 't') ADVANCE(1387); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1805: + case 1489: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1806: + case 1490: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1351); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1807: + case 1491: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1575); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1808: + case 1492: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1357); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1809: + case 1493: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1513); + if (lookahead == 't') ADVANCE(1397); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1810: + case 1494: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1358); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1811: + case 1495: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2141); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1344); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1812: + case 1496: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1332); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1813: + case 1497: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1334); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 's') ADVANCE(1516); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1814: + case 1498: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1579); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1815: + case 1499: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1816: + case 1500: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1688); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1817: + case 1501: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1625); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1818: + case 1502: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1819: + case 1503: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1820: + case 1504: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1798); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1821: + case 1505: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1822: + case 1506: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - 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); + if (lookahead == 't') ADVANCE(1014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1823: + case 1507: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1643); - if (lookahead == 'y') ADVANCE(3113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1824: + case 1508: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1825: + case 1509: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1814); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1377); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1826: + case 1510: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1378); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1827: + case 1511: 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(1875); + if (lookahead == 't') ADVANCE(1021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1828: + case 1512: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1829: + case 1513: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1718); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1830: + case 1514: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1718); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1831: + case 1515: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1361); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1832: + case 1516: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1720); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1364); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1833: + case 1517: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 't') ADVANCE(1496); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1834: + case 1518: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1675); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1408); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1835: + case 1519: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(2123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1408); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1836: + case 1520: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(3167); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1461); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1837: + case 1521: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1347); + if (lookahead == 'y') ADVANCE(2431); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1838: + case 1522: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1347); + if (lookahead == 'y') ADVANCE(1568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1839: + case 1523: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1465); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1840: + case 1524: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(3160); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1507); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1841: + case 1525: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1342); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1842: + case 1526: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3224); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1343); + if (lookahead == 'y') ADVANCE(1568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1843: + case 1527: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1413); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1844: + case 1528: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3218); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1476); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1845: + case 1529: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1477); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1846: + case 1530: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3228); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1366); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1847: + case 1531: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3229); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'u') ADVANCE(1415); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1848: + case 1532: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3227); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'v') ADVANCE(1352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1849: + case 1533: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'v') ADVANCE(1367); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1850: + case 1534: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'w') ADVANCE(1391); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1851: + case 1535: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'w') ADVANCE(1392); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1852: + case 1536: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3222); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'y') ADVANCE(2463); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1853: + case 1537: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3226); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'y') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1854: + case 1538: 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(1875); + if (lookahead == 'y') ADVANCE(1586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1855: + case 1539: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1856: + case 1540: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + lookahead == 'a') ADVANCE(1549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1857: + case 1541: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1858: + case 1542: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + lookahead == 'f') ADVANCE(2707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1859: + case 1543: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 1860: + case 1544: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1545); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1861: + case 1545: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + END_STATE(); + case 1546: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + lookahead == 'n') ADVANCE(1542); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1862: + case 1547: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + lookahead == 'n') ADVANCE(2725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1863: + case 1548: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1864: + case 1549: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1865: + case 1550: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3412); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + lookahead == '_') ADVANCE(2702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1866: + case 1551: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + lookahead == ' ') ADVANCE(2505); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1867: + case 1552: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3413); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + lookahead == '_') ADVANCE(2703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1868: + case 1553: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1335); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1869: + case 1554: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1347); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1870: + case 1555: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1871: + case 1556: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1872: + case 1557: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1873: + case 1558: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1555); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1874: + case 1559: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3411); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1875: + case 1560: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1560); END_STATE(); - case 1876: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1883); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1878); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1881); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1876); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1877); + case 1561: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1695); END_STATE(); - case 1877: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1883); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1878); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1881); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1877); + case 1562: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1668); END_STATE(); - case 1878: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1883); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1878); + case 1563: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1671); END_STATE(); - case 1879: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1883); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1881); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1879); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1880); + case 1564: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1766); END_STATE(); - case 1880: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1883); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1881); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1880); + case 1565: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1591); END_STATE(); - case 1881: + case 1566: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1656); + END_STATE(); + case 1567: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1620); + END_STATE(); + case 1568: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1677); + END_STATE(); + case 1569: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1597); + END_STATE(); + case 1570: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1674); + END_STATE(); + case 1571: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1659); + END_STATE(); + case 1572: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1716); + END_STATE(); + case 1573: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1738); + END_STATE(); + case 1574: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1732); + END_STATE(); + case 1575: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1594); + END_STATE(); + case 1576: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1686); + END_STATE(); + case 1577: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1680); + END_STATE(); + case 1578: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1623); + END_STATE(); + case 1579: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1665); + END_STATE(); + case 1580: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1735); + END_STATE(); + case 1581: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1683); + END_STATE(); + case 1582: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1662); + END_STATE(); + case 1583: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1602); + END_STATE(); + case 1584: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1605); + END_STATE(); + case 1585: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1692); + END_STATE(); + case 1586: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1650); + END_STATE(); + case 1587: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1689); + END_STATE(); + case 1588: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1653); + END_STATE(); + case 1589: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1881); + if (lookahead == ',') ADVANCE(1591); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1589); END_STATE(); - case 1882: + case 1590: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1883); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1882); + lookahead == '@') ADVANCE(1591); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1590); END_STATE(); - case 1883: + case 1591: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1883); - END_STATE(); - case 1884: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1889); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1885); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1887); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1884); - END_STATE(); - case 1885: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1889); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1885); - END_STATE(); - case 1886: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1889); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1887); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1591); END_STATE(); - case 1887: + case 1592: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1887); + if (lookahead == ',') ADVANCE(1594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1592); END_STATE(); - case 1888: + case 1593: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1889); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1888); + lookahead == '@') ADVANCE(1594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1593); END_STATE(); - case 1889: + case 1594: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1889); - END_STATE(); - case 1890: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1895); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1891); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1893); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1890); - END_STATE(); - case 1891: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1895); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1891); - END_STATE(); - case 1892: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1895); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1893); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1594); END_STATE(); - case 1893: + case 1595: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1893); + if (lookahead == ',') ADVANCE(1597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1595); END_STATE(); - case 1894: + case 1596: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1895); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1894); + lookahead == '@') ADVANCE(1597); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1596); END_STATE(); - case 1895: + case 1597: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1597); END_STATE(); - case 1896: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if (lookahead == ',') ADVANCE(1898); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1896); - END_STATE(); - case 1897: + case 1598: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if (lookahead == ',') ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1897); + if (lookahead == ',') ADVANCE(1599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1598); END_STATE(); - case 1898: + case 1599: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); - END_STATE(); - case 1899: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1904); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1900); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1902); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1899); - END_STATE(); - case 1900: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1904); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1900); - END_STATE(); - case 1901: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1904); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1902); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1599); END_STATE(); - case 1902: + case 1600: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1902); + if (lookahead == ',') ADVANCE(1602); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1600); END_STATE(); - case 1903: + case 1601: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1904); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1903); + lookahead == '@') ADVANCE(1602); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1601); END_STATE(); - case 1904: + case 1602: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); - END_STATE(); - case 1905: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1910); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1906); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1908); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1905); - END_STATE(); - case 1906: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1910); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1906); - END_STATE(); - case 1907: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1910); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1908); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1602); END_STATE(); - case 1908: + case 1603: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1908); + if (lookahead == ',') ADVANCE(1605); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1603); END_STATE(); - case 1909: + case 1604: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1910); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1909); + lookahead == '@') ADVANCE(1605); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1604); END_STATE(); - case 1910: + case 1605: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1605); END_STATE(); - case 1911: + case 1606: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == 'e') ADVANCE(1913); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1918); + if (lookahead == ',') ADVANCE(1617); + if (lookahead == 'e') ADVANCE(1607); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1609); END_STATE(); - case 1912: + case 1607: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - 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); + if (lookahead == ',') ADVANCE(1617); + if (lookahead == 'n') ADVANCE(1608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1609); END_STATE(); - case 1913: + case 1608: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == 'n') ADVANCE(1915); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1918); + if (lookahead == ',') ADVANCE(1617); + if (lookahead == 'v') ADVANCE(847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1609); END_STATE(); - case 1914: + case 1609: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - 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); + if (lookahead == ',') ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1609); END_STATE(); - case 1915: + case 1610: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == 'v') ADVANCE(1084); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1918); + if (lookahead == 'e') ADVANCE(1612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 1916: + case 1611: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - 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); + if (lookahead == 'e') ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 1917: + case 1612: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1918); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1920); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1917); + if (lookahead == 'n') ADVANCE(1615); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 1918: + case 1613: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1918); + if (lookahead == 'n') ADVANCE(1614); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 1919: + case 1614: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1920); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1919); + if (lookahead == 'v') ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 1920: + case 1615: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1920); + if (lookahead == 'v') ADVANCE(848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 1921: + case 1616: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == '-') ADVANCE(1924); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1930); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1929); - END_STATE(); - case 1922: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == '-') ADVANCE(1924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); - END_STATE(); - case 1923: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(1925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); - END_STATE(); - case 1924: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(1926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); - END_STATE(); - case 1925: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(1928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); - END_STATE(); - case 1926: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(1927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); + lookahead == '@') ADVANCE(1617); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1616); END_STATE(); - case 1927: + case 1617: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 1928: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); + case 1618: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); + if (lookahead == ',') ADVANCE(1620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1618); END_STATE(); - case 1929: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + case 1619: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1930); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1929); - END_STATE(); - case 1930: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); + lookahead == '@') ADVANCE(1620); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1619); END_STATE(); - case 1931: + case 1620: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(1936); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1932); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1934); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1620); END_STATE(); - case 1932: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(1936); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1932); + case 1621: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if (lookahead == ',') ADVANCE(1623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1621); END_STATE(); - case 1933: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(1936); - if (lookahead == '-' || - lookahead == '.' || + case 1622: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1934); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1933); + lookahead == '@') ADVANCE(1623); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1622); END_STATE(); - case 1934: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(1936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1934); + case 1623: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1623); END_STATE(); - case 1935: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1936); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1935); - END_STATE(); - case 1936: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1936); - END_STATE(); - case 1937: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(1942); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1938); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1940); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1937); - END_STATE(); - case 1938: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(1942); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1938); - END_STATE(); - case 1939: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(1942); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1940); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1939); - END_STATE(); - case 1940: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(1942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1940); - END_STATE(); - case 1941: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1942); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1941); - END_STATE(); - case 1942: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1942); - END_STATE(); - case 1943: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == 'e') ADVANCE(1945); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1952); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1950); - END_STATE(); - case 1944: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - 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 1945: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == 'n') ADVANCE(1947); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1952); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1950); - END_STATE(); - case 1946: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - 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 1947: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == 'v') ADVANCE(3151); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1952); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1950); - END_STATE(); - case 1948: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == 'v') ADVANCE(3153); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); - END_STATE(); - case 1949: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1950); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1952); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1949); - END_STATE(); - case 1950: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1952); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1950); - END_STATE(); - case 1951: + case 1624: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1952); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1951); + if (lookahead == ',') ADVANCE(1635); + if (lookahead == 'e') ADVANCE(1625); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1627); END_STATE(); - case 1952: + case 1625: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1962); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); + if (lookahead == ',') ADVANCE(1635); + if (lookahead == 'n') ADVANCE(1626); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1627); END_STATE(); - case 1953: + case 1626: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == '-') ADVANCE(1956); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1962); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1961); + if (lookahead == ',') ADVANCE(1635); + if (lookahead == 'v') ADVANCE(2458); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1627); END_STATE(); - case 1954: + case 1627: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == '-') ADVANCE(1956); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if (lookahead == ',') ADVANCE(1635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1627); END_STATE(); - case 1955: + case 1628: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(1957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 1956: + case 1629: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(1958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'e') ADVANCE(1631); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 1957: + case 1630: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(1960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'n') ADVANCE(1633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 1958: + case 1631: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(1959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'n') ADVANCE(1632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 1959: + case 1632: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(1962); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'v') ADVANCE(1635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 1960: + case 1633: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(3154); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'v') ADVANCE(2459); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 1961: + case 1634: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1962); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1961); + lookahead == '@') ADVANCE(1635); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1634); END_STATE(); - case 1962: + case 1635: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); - END_STATE(); - case 1963: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == 'e') ADVANCE(1965); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); - END_STATE(); - case 1964: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - 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 1965: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == 'n') ADVANCE(1967); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 1966: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - 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 1967: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == 'v') ADVANCE(3134); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); - END_STATE(); - case 1968: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == 'v') ADVANCE(3136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); - END_STATE(); - case 1969: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1970); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1972); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1969); - END_STATE(); - case 1970: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); - END_STATE(); - case 1971: + case 1636: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1972); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1971); + if (lookahead == ',') ADVANCE(1647); + if (lookahead == 'e') ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1639); END_STATE(); - case 1972: + case 1637: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); + if (lookahead == ',') ADVANCE(1647); + if (lookahead == 'n') ADVANCE(1638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1639); END_STATE(); - case 1973: + case 1638: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == '-') ADVANCE(1976); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1982); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1981); + if (lookahead == ',') ADVANCE(1647); + if (lookahead == 'v') ADVANCE(2446); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1639); END_STATE(); - case 1974: + case 1639: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == '-') ADVANCE(1976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); + if (lookahead == ',') ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1639); END_STATE(); - case 1975: + case 1640: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(1977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); + if (lookahead == 'e') ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 1976: + case 1641: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(1978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); + if (lookahead == 'e') ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 1977: + case 1642: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(1980); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); + if (lookahead == 'n') ADVANCE(1645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 1978: + case 1643: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(1979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); + if (lookahead == 'n') ADVANCE(1644); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 1979: + case 1644: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(1982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); + if (lookahead == 'v') ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 1980: + case 1645: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(3137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); + if (lookahead == 'v') ADVANCE(2447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 1981: + case 1646: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1982); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1981); + lookahead == '@') ADVANCE(1647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1646); END_STATE(); - case 1982: + case 1647: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); - END_STATE(); - case 1983: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(1988); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1984); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1986); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1983); - END_STATE(); - case 1984: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(1988); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1984); - END_STATE(); - case 1985: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(1988); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1986); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 1986: + case 1648: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(1988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); + if (lookahead == ',') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1648); END_STATE(); - case 1987: + case 1649: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1988); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1987); + lookahead == '@') ADVANCE(1650); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1649); END_STATE(); - case 1988: + case 1650: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1650); END_STATE(); - case 1989: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(1994); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1990); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1992); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1989); - END_STATE(); - case 1990: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(1994); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1990); - END_STATE(); - case 1991: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(1994); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1992); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1991); - END_STATE(); - case 1992: + case 1651: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(1994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1992); + if (lookahead == ',') ADVANCE(1653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1651); END_STATE(); - case 1993: + case 1652: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1994); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1993); + lookahead == '@') ADVANCE(1653); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1652); END_STATE(); - case 1994: + case 1653: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1994); - END_STATE(); - case 1995: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2000); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1996); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1998); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1995); - END_STATE(); - case 1996: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2000); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1996); - END_STATE(); - case 1997: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2000); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1998); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1653); END_STATE(); - case 1998: + case 1654: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == ',') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1654); END_STATE(); - case 1999: + case 1655: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2000); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1999); + lookahead == '@') ADVANCE(1656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1655); END_STATE(); - case 2000: + case 1656: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2000); - END_STATE(); - case 2001: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2006); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2002); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2004); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2001); - END_STATE(); - case 2002: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2006); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2002); - END_STATE(); - case 2003: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2006); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2004); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1656); END_STATE(); - case 2004: + case 1657: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2004); + if (lookahead == ',') ADVANCE(1659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1657); END_STATE(); - case 2005: + case 1658: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2006); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2005); + lookahead == '@') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1658); END_STATE(); - case 2006: + case 1659: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2006); - END_STATE(); - case 2007: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2012); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2008); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2010); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2007); - END_STATE(); - case 2008: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2012); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1659); END_STATE(); - case 2009: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2012); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2010); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2009); - END_STATE(); - case 2010: + case 1660: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2010); + if (lookahead == ',') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1660); END_STATE(); - case 2011: + case 1661: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2012); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2011); + lookahead == '@') ADVANCE(1662); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1661); END_STATE(); - case 2012: + case 1662: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2012); - END_STATE(); - case 2013: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2018); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2014); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2016); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1662); END_STATE(); - case 2014: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2018); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2014); - END_STATE(); - case 2015: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2018); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2016); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2015); - END_STATE(); - case 2016: + case 1663: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2016); + if (lookahead == ',') ADVANCE(1665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1663); END_STATE(); - case 2017: + case 1664: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2018); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2017); + lookahead == '@') ADVANCE(1665); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 2018: + case 1665: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); - END_STATE(); - case 2019: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2024); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2020); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2022); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2019); - END_STATE(); - case 2020: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2024); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2020); - END_STATE(); - case 2021: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2024); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2022); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1665); END_STATE(); - case 2022: + case 1666: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2022); + if (lookahead == ',') ADVANCE(1668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1666); END_STATE(); - case 2023: + case 1667: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2023); + lookahead == '@') ADVANCE(1668); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1667); END_STATE(); - case 2024: + case 1668: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2024); - END_STATE(); - case 2025: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2026); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2028); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2025); - END_STATE(); - case 2026: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2026); - END_STATE(); - case 2027: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2028); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1668); END_STATE(); - case 2028: + case 1669: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2028); + if (lookahead == ',') ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1669); END_STATE(); - case 2029: + case 1670: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2029); + lookahead == '@') ADVANCE(1671); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1670); END_STATE(); - case 2030: + case 1671: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); - END_STATE(); - case 2031: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2036); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2032); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2034); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2031); - END_STATE(); - case 2032: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2036); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2032); - END_STATE(); - case 2033: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2036); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2034); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1671); END_STATE(); - case 2034: + case 1672: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2034); + if (lookahead == ',') ADVANCE(1674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1672); END_STATE(); - case 2035: + case 1673: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2036); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2035); + lookahead == '@') ADVANCE(1674); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1673); END_STATE(); - case 2036: + case 1674: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2036); - END_STATE(); - case 2037: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2042); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2038); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2040); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); - END_STATE(); - case 2038: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2042); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2038); - END_STATE(); - case 2039: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2042); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2040); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1674); END_STATE(); - case 2040: + case 1675: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); + if (lookahead == ',') ADVANCE(1677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1675); END_STATE(); - case 2041: + case 1676: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2042); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2041); + lookahead == '@') ADVANCE(1677); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1676); END_STATE(); - case 2042: + case 1677: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2042); - END_STATE(); - case 2043: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2048); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2044); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2043); - END_STATE(); - case 2044: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2048); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); - END_STATE(); - case 2045: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2048); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1677); END_STATE(); - case 2046: + case 1678: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2046); + if (lookahead == ',') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1678); END_STATE(); - case 2047: + case 1679: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2048); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2047); + lookahead == '@') ADVANCE(1680); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1679); END_STATE(); - case 2048: + case 1680: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); - END_STATE(); - case 2049: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2054); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2050); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2052); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2049); - END_STATE(); - case 2050: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2054); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2050); - END_STATE(); - case 2051: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2054); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2052); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1680); END_STATE(); - case 2052: + case 1681: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); + if (lookahead == ',') ADVANCE(1683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1681); END_STATE(); - case 2053: + case 1682: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2054); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2053); + lookahead == '@') ADVANCE(1683); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1682); END_STATE(); - case 2054: + case 1683: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2054); - END_STATE(); - case 2055: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2060); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2056); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2058); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2055); - END_STATE(); - case 2056: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2060); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1683); END_STATE(); - case 2057: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2060); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2058); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2057); - END_STATE(); - case 2058: + case 1684: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2058); + if (lookahead == ',') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1684); END_STATE(); - case 2059: + case 1685: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2059); + lookahead == '@') ADVANCE(1686); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1685); END_STATE(); - case 2060: + case 1686: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2060); - END_STATE(); - case 2061: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2066); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2062); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2064); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2061); - END_STATE(); - case 2062: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2066); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2062); - END_STATE(); - case 2063: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2066); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2064); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1686); END_STATE(); - case 2064: + case 1687: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2064); + if (lookahead == ',') ADVANCE(1689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1687); END_STATE(); - case 2065: + case 1688: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2066); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2065); + lookahead == '@') ADVANCE(1689); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1688); END_STATE(); - case 2066: + case 1689: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2066); - END_STATE(); - case 2067: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2072); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2068); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2070); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2067); - END_STATE(); - case 2068: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2072); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2070); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2068); - END_STATE(); - case 2069: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2072); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2070); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1689); END_STATE(); - case 2070: + case 1690: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2070); + if (lookahead == ',') ADVANCE(1692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1690); END_STATE(); - case 2071: + case 1691: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2072); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2071); + lookahead == '@') ADVANCE(1692); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1691); END_STATE(); - case 2072: + case 1692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2072); - END_STATE(); - case 2073: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2078); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2074); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2076); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2073); - END_STATE(); - case 2074: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2078); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2074); - END_STATE(); - case 2075: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2078); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2076); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1692); END_STATE(); - case 2076: + case 1693: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2076); + if (lookahead == ',') ADVANCE(1695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1693); END_STATE(); - case 2077: + case 1694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2078); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2077); + lookahead == '@') ADVANCE(1695); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1694); END_STATE(); - case 2078: + case 1695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); - END_STATE(); - case 2079: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2085); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2097); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2081); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); - END_STATE(); - case 2080: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2085); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2097); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2082); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); - END_STATE(); - case 2081: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2085); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2097); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2080); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); - END_STATE(); - case 2082: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2085); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2097); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2083); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); - END_STATE(); - case 2083: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2085); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2097); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2084); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); - END_STATE(); - case 2084: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2085); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2097); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); - END_STATE(); - case 2085: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2085); - END_STATE(); - case 2086: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2090); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2097); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); - END_STATE(); - case 2087: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2092); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2097); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1695); END_STATE(); - case 2088: + case 1696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); + if (lookahead == ',') ADVANCE(1713); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); + lookahead == 'i') ADVANCE(1698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); END_STATE(); - case 2089: + case 1697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); + if (lookahead == ',') ADVANCE(1713); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2093); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); - END_STATE(); - case 2090: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2087); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2097); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); + lookahead == 'i') ADVANCE(1699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); END_STATE(); - case 2091: + case 1698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); + if (lookahead == ',') ADVANCE(1713); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2089); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); + lookahead == 'n') ADVANCE(1697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); END_STATE(); - case 2092: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2095); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2097); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); - END_STATE(); - case 2093: + case 1699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); + if (lookahead == ',') ADVANCE(1713); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); - END_STATE(); - case 2094: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); + lookahead == 't') ADVANCE(1700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); END_STATE(); - case 2095: + case 1700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); + if (lookahead == ',') ADVANCE(1713); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2096); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2097); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); - END_STATE(); - case 2096: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2097); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); + lookahead == 'y') ADVANCE(1701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); END_STATE(); - case 2097: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(2111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); - END_STATE(); - case 2098: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2100); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2111); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); - END_STATE(); - case 2099: + case 1701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2102); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + if (lookahead == ',') ADVANCE(1713); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); END_STATE(); - case 2100: + case 1702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2104); + lookahead == 'i') ADVANCE(1706); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2111); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); + lookahead == '@') ADVANCE(1713); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); END_STATE(); - case 2101: + case 1703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); + lookahead == 'i') ADVANCE(1708); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2111); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); + lookahead == '@') ADVANCE(1713); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); END_STATE(); - case 2102: + case 1704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2105); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + lookahead == 'i') ADVANCE(1707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2103: + case 1705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2107); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + lookahead == 'i') ADVANCE(1709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2104: + case 1706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2101); + lookahead == 'n') ADVANCE(1703); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2111); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); + lookahead == '@') ADVANCE(1713); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); END_STATE(); - case 2105: + case 1707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + lookahead == 'n') ADVANCE(1705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2106: + case 1708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2109); + lookahead == 't') ADVANCE(1711); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2111); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); + lookahead == '@') ADVANCE(1713); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); END_STATE(); - case 2107: + case 1709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2108); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + lookahead == 't') ADVANCE(1710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2108: + case 1710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + lookahead == 'y') ADVANCE(1713); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2109: + case 1711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2110); + lookahead == 'y') ADVANCE(1712); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2111); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); + lookahead == '@') ADVANCE(1713); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); END_STATE(); - case 2110: + case 1712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2111); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); + lookahead == '@') ADVANCE(1713); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); END_STATE(); - case 2111: + case 1713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); - END_STATE(); - case 2112: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(2117); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2113); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2115); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2113: + case 1714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(2117); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2113); + if (lookahead == ',') ADVANCE(1716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1714); END_STATE(); - case 2114: + case 1715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(2117); - if (lookahead == '-' || - lookahead == '.' || + if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2115); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2114); + lookahead == '@') ADVANCE(1716); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1715); END_STATE(); - case 2115: + case 1716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(2117); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1716); END_STATE(); - case 2116: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2117); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2116); + case 1717: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if (lookahead == ',') ADVANCE(1728); + if (lookahead == 'e') ADVANCE(1718); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1720); END_STATE(); - case 2117: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2117); + case 1718: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if (lookahead == ',') ADVANCE(1728); + if (lookahead == 'n') ADVANCE(1719); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1720); END_STATE(); - case 2118: + case 1719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(2123); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2119); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2121); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2118); + if (lookahead == ',') ADVANCE(1728); + if (lookahead == 'v') ADVANCE(2279); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1720); END_STATE(); - case 2119: + case 1720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(2123); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2121); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(1728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1720); END_STATE(); - case 2120: + case 1721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(2123); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2121); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2120); + if (lookahead == 'e') ADVANCE(1723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 2121: + case 1722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(2123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2121); + if (lookahead == 'e') ADVANCE(1724); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 2122: + case 1723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2123); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2122); + if (lookahead == 'n') ADVANCE(1725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 2123: + case 1724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2123); + if (lookahead == 'n') ADVANCE(1726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 2124: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(2129); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2125); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2127); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2124); + case 1725: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if (lookahead == 'v') ADVANCE(2280); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 2125: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(2129); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2125); + case 1726: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if (lookahead == 'v') ADVANCE(1729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 2126: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(2129); - if (lookahead == '-' || - lookahead == '.' || + case 1727: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2127); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2126); + lookahead == '@') ADVANCE(1728); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1727); END_STATE(); - case 2127: + case 1728: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + END_STATE(); + case 1729: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1599); + END_STATE(); + case 1730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(2129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2127); + if (lookahead == ',') ADVANCE(1732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1730); END_STATE(); - case 2128: + case 1731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2129); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2128); + lookahead == '@') ADVANCE(1732); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1731); END_STATE(); - case 2129: + case 1732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1732); END_STATE(); - case 2130: + case 1733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == 'e') ADVANCE(2132); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2139); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2137); + if (lookahead == ',') ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1733); END_STATE(); - case 2131: + case 1734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - 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); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1735); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1734); END_STATE(); - case 2132: + case 1735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == 'n') ADVANCE(2134); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2139); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1735); END_STATE(); - case 2133: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - 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); + case 1736: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if (lookahead == ',') ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1736); END_STATE(); - case 2134: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == 'v') ADVANCE(2879); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2139); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2137); + case 1737: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1738); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1737); END_STATE(); - case 2135: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == 'v') ADVANCE(2881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2139); + case 1738: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1738); END_STATE(); - case 2136: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2137); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2139); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2136); + case 1739: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == ',') ADVANCE(1753); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1743); END_STATE(); - case 2137: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2139); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2137); + case 1740: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == ',') ADVANCE(1753); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1743); END_STATE(); - case 2138: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2139); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2138); + case 1741: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == ',') ADVANCE(1753); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1743); END_STATE(); - case 2139: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(2149); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2139); + case 1742: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == ',') ADVANCE(1753); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1743); END_STATE(); - case 2140: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == '-') ADVANCE(2143); + case 1743: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == ',') ADVANCE(1753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1743); + END_STATE(); + case 1744: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1748); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2149); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2148); - END_STATE(); - case 2141: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == '-') ADVANCE(2143); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); + lookahead == '@') ADVANCE(1753); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); END_STATE(); - case 2142: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'e') ADVANCE(2144); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); + case 1745: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); END_STATE(); - case 2143: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'e') ADVANCE(2145); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); + case 1746: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1744); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1753); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); END_STATE(); - case 2144: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'n') ADVANCE(2147); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); + case 1747: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); END_STATE(); - case 2145: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'n') ADVANCE(2146); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); + case 1748: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1751); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1753); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); END_STATE(); - case 2146: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'v') ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); + case 1749: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); END_STATE(); - case 2147: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'v') ADVANCE(2882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); + case 1750: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); END_STATE(); - case 2148: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); + case 1751: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1752); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2149); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2148); + lookahead == '@') ADVANCE(1753); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); END_STATE(); - case 2149: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); + case 1752: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1753); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); END_STATE(); - case 2150: - ACCEPT_TOKEN(anon_sym_true); + case 1753: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); END_STATE(); - case 2151: - ACCEPT_TOKEN(anon_sym_true); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + case 1754: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == ',') ADVANCE(1763); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1758); END_STATE(); - case 2152: - ACCEPT_TOKEN(anon_sym_true); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + case 1755: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == ',') ADVANCE(1763); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1758); END_STATE(); - case 2153: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + case 1756: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == ',') ADVANCE(1763); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1758); END_STATE(); - case 2154: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + case 1757: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == ',') ADVANCE(1763); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1758); END_STATE(); - case 2155: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1758: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == ',') ADVANCE(1763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1758); END_STATE(); - case 2156: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + case 1759: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); END_STATE(); - case 2157: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + case 1760: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); END_STATE(); - case 2158: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2178); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'r') ADVANCE(2182); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1761: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); END_STATE(); - case 2159: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2175); - if (lookahead == '>') ADVANCE(3609); - if (lookahead == 'u') ADVANCE(2188); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1762: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); END_STATE(); - case 2160: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2179); - if (lookahead == '>') ADVANCE(3597); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1763: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); END_STATE(); - case 2161: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2174); - if (lookahead == '>') ADVANCE(3601); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1764: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); + if (lookahead == ',') ADVANCE(1766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1764); END_STATE(); - case 2162: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2180); - if (lookahead == '>') ADVANCE(855); - if (lookahead == 'r') ADVANCE(2184); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1765: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1766); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1765); END_STATE(); - case 2163: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2176); - if (lookahead == '>') ADVANCE(856); - if (lookahead == 'u') ADVANCE(2190); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1766: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1766); END_STATE(); - case 2164: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2181); - if (lookahead == '>') ADVANCE(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1767: + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 2165: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '+') ADVANCE(2177); - if (lookahead == '>') ADVANCE(860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1768: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 2166: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3625); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1769: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(1767); END_STATE(); - case 2167: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1770: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(1773); END_STATE(); - case 2168: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1771: + ACCEPT_TOKEN(anon_sym_SLASH); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2169: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1772: + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); - case 2170: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1773: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 2171: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1774: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1768); END_STATE(); - case 2172: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1775: + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 2173: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1776: + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); - case 2174: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(2183); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1777: + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); - case 2175: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(2167); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1778: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 2176: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(2171); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1779: + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 2177: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'e') ADVANCE(2187); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1780: + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); - case 2178: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(2166); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1781: + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); - case 2179: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(2192); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1782: + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); - case 2180: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(2170); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1783: + ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 2181: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'o') ADVANCE(2193); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1784: + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); - case 2182: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2160); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1785: + ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 2183: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2185); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1786: + ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 2184: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2164); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1787: + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); - case 2185: - 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(2194); + case 1788: + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); - case 2186: - 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(2194); + case 1789: + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); - case 2187: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'r') ADVANCE(2186); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1790: + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 2188: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(2161); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1791: + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 2189: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(2168); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1792: + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 2190: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(2165); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1793: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1794); END_STATE(); - case 2191: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 't') ADVANCE(2172); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1794: + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 2192: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'u') ADVANCE(2189); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1795: + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 2193: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == 'u') ADVANCE(2191); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1796: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1797); END_STATE(); - case 2194: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + case 1797: + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 2195: - ACCEPT_TOKEN(anon_sym_false); + case 1798: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ':', 2810, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + '_', 1874, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + '}', 2415, + 0xb5, 1928, + '\t', 9, + ' ', 9, + 0x0b, 450, + '\f', 450, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead != 0 && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1947); END_STATE(); - case 2196: - ACCEPT_TOKEN(anon_sym_false); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + case 1799: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ':', 2810, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + '}', 2415, + 0xb5, 1928, + '\t', 9, + ' ', 9, + 0x0b, 450, + '\f', 450, + ); + if (lookahead != 0 && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1947); END_STATE(); - case 2197: - ACCEPT_TOKEN(anon_sym_false); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + case 1800: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ':', 2810, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1872, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1846, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + '}', 2415, + 0xb5, 1928, + '\t', 9, + ' ', 9, + 0x0b, 450, + '\f', 450, + ); + if (lookahead != 0 && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1947); END_STATE(); - case 2198: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + case 1801: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2260, + '\r', 16, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 2559, + '/', 1770, + ':', 2810, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + '}', 2415, + 0xb5, 1928, + '\t', 9, + ' ', 9, + 0x0b, 450, + '\f', 450, + ); + if (lookahead != 0 && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1947); END_STATE(); - case 2199: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + case 1802: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + ')', 2303, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + '_', 1874, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2200: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1803: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + ')', 2303, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + '_', 1874, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1850, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2201: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + case 1804: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + ')', 2303, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2202: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + case 1805: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + ')', 2303, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1850, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2203: - ACCEPT_TOKEN(anon_sym_null); + case 1806: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + ')', 2303, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1872, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1846, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2204: - ACCEPT_TOKEN(anon_sym_null); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + case 1807: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + ')', 2303, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1872, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1848, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2205: - ACCEPT_TOKEN(anon_sym_null); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + case 1808: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + ')', 2303, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 2559, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2206: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + case 1809: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + ')', 2303, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 2559, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1850, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2207: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + case 1810: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + ')', 2303, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'a', 1902, + 'b', 1895, + 'e', 1847, + 'i', 1903, + 'm', 1910, + 'n', 1914, + 'o', 1843, + 's', 1932, + 'x', 1909, + '|', 2264, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2208: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1811: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + ')', 2303, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'a', 1902, + 'b', 1895, + 'e', 1849, + 'i', 1903, + 'm', 1910, + 'n', 1914, + 'o', 1851, + 's', 1932, + 'x', 1909, + '|', 2264, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2209: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + case 1812: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + '_', 1874, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + '}', 2415, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(28); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2210: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + case 1813: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + '_', 1874, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1850, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + '}', 2415, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2211: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + case 1814: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + '}', 2415, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2212: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2633); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1815: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1850, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + '}', 2415, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2213: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1571); + case 1816: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1872, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1846, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + '}', 2415, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2214: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1862); + case 1817: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1872, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1848, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + '}', 2415, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2215: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1319); + case 1818: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + '_', 1874, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2216: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3819); + case 1819: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + '_', 1874, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1850, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2217: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4284); + case 1820: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2218: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4545); + case 1821: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1850, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2219: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3971); + case 1822: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1872, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1846, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2220: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4390); + case 1823: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1872, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1848, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2221: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(898); + case 1824: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 2559, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + '}', 2415, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2222: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1825: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 2559, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1850, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + '}', 2415, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2223: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); + case 1826: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 2559, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2224: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3587); + case 1827: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 2559, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1850, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2225: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4234); + case 1828: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'a', 1902, + 'b', 1895, + 'e', 1847, + 'i', 1903, + 'm', 1910, + 'n', 1914, + 'o', 1843, + 's', 1932, + 'x', 1909, + '|', 2264, + '}', 2415, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2226: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(896); + case 1829: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'a', 1902, + 'b', 1895, + 'e', 1849, + 'i', 1903, + 'm', 1910, + 'n', 1914, + 'o', 1851, + 's', 1932, + 'x', 1909, + '|', 2264, + '}', 2415, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2227: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4588); + case 1830: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'a', 1902, + 'b', 1895, + 'e', 1847, + 'i', 1903, + 'm', 1910, + 'n', 1914, + 'o', 1843, + 's', 1932, + 'x', 1909, + '|', 2264, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2228: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4286); + case 1831: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'a', 1902, + 'b', 1895, + 'e', 1849, + 'i', 1903, + 'm', 1910, + 'n', 1914, + 'o', 1851, + 's', 1932, + 'x', 1909, + '|', 2264, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2229: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4547); + case 1832: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 2545, + '/', 1770, + ':', 2810, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1868, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1917, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + 0xb5, 1928, + '\t', 377, + ' ', 377, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2230: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3973); + case 1833: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 2545, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1868, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1917, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(394); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2231: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4392); + case 1834: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + ':', 2810, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + '_', 1874, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1868, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1917, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + 0xb5, 1928, + '\t', 377, + ' ', 377, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2232: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); + case 1835: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + ':', 2810, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1868, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1917, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + 0xb5, 1928, + '\t', 377, + ' ', 377, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2233: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1836: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + ':', 2810, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1872, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1870, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1917, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + 0xb5, 1928, + '\t', 377, + ' ', 377, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2234: + case 1837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 2262, - '-', 2264, - '>', 3605, - 'I', 2295, - '_', 2264, - 'i', 2295, - 'r', 2281, - 'B', 3420, - 'b', 3420, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + '_', 1874, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1868, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1917, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + 0xb5, 1928, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '\t' || + lookahead == ' ') SKIP(394); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2235: + case 1838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2277); - if (lookahead == '>') ADVANCE(3597); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + ADVANCE_MAP( + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1868, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1917, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(394); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2236: + case 1839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2270); - if (lookahead == '>') ADVANCE(3609); - if (lookahead == 'u') ADVANCE(2288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + ADVANCE_MAP( + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1872, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1870, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1917, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(394); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2237: + case 1840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2276); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'I') ADVANCE(2295); - if (lookahead == 'i') ADVANCE(2295); - if (lookahead == 'r') ADVANCE(2281); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + ADVANCE_MAP( + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + '<', 1793, + '=', 457, + '>', 1796, + 'a', 1902, + 'b', 1895, + 'e', 1905, + 'i', 1903, + 'm', 1910, + 'n', 1914, + 'o', 1917, + 's', 1932, + 'x', 1909, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(394); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2238: + case 1841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2276); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'r') ADVANCE(2281); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '\t' || + lookahead == ' ') SKIP(394); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2239: + case 1842: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + '+', 1875, + '-', 1877, + '>', 2829, + 'I', 1946, + '_', 1877, + 'i', 1946, + 'n', 1886, + 'r', 1918, + 'B', 2731, + 'b', 2731, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + END_STATE(); + case 1843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2271); - if (lookahead == '>') ADVANCE(3601); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '+') ADVANCE(1888); + if (lookahead == '>') ADVANCE(2833); + if (lookahead == 'r') ADVANCE(1785); + if (lookahead == 'u') ADVANCE(1934); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2240: + case 1844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2278); - if (lookahead == '>') ADVANCE(855); - if (lookahead == 'I') ADVANCE(2295); - if (lookahead == 'i') ADVANCE(2295); - if (lookahead == 'r') ADVANCE(2282); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '+') ADVANCE(1908); + if (lookahead == '>') ADVANCE(2821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2241: + case 1845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2278); - if (lookahead == '>') ADVANCE(855); - if (lookahead == 'r') ADVANCE(2282); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '+') ADVANCE(1889); + if (lookahead == '>') ADVANCE(2825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2242: + case 1846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 2263, - '-', 2264, - '>', 855, - 'I', 2295, - '_', 2264, - 'i', 2295, - 'r', 2282, - 'B', 3420, - 'b', 3420, + '+', 1907, + '>', 2829, + 'I', 1946, + 'i', 1946, + 'n', 1886, + 'r', 1918, + 'B', 2731, + 'b', 2731, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2243: + case 1847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2272); - if (lookahead == '>') ADVANCE(856); - if (lookahead == 'u') ADVANCE(2290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '+') ADVANCE(1907); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'n') ADVANCE(1886); + if (lookahead == 'r') ADVANCE(1918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2244: + case 1848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2273); - if (lookahead == '>') ADVANCE(860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + ADVANCE_MAP( + '+', 1911, + '>', 644, + 'I', 1946, + 'i', 1946, + 'n', 1886, + 'r', 1923, + 'B', 2731, + 'b', 2731, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2245: + case 1849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(2279); - if (lookahead == '>') ADVANCE(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '+') ADVANCE(1911); + if (lookahead == '>') ADVANCE(644); + if (lookahead == 'n') ADVANCE(1886); + if (lookahead == 'r') ADVANCE(1923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2246: + case 1850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == ',') ADVANCE(2296); - if (lookahead == ':') ADVANCE(3864); - if (lookahead == '_') ADVANCE(2246); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3854); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2247); + ADVANCE_MAP( + '+', 1876, + '-', 1877, + '>', 644, + 'I', 1946, + '_', 1877, + 'i', 1946, + 'n', 1886, + 'r', 1923, + 'B', 2731, + 'b', 2731, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2247: + case 1851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == ',') ADVANCE(2296); - if (lookahead == ':') ADVANCE(3864); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3854); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2247); + if (lookahead == '+') ADVANCE(1890); + if (lookahead == '>') ADVANCE(645); + if (lookahead == 'r') ADVANCE(1785); + if (lookahead == 'u') ADVANCE(1938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2248: + case 1852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '.') ADVANCE(3274); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '+') ADVANCE(1915); + if (lookahead == '>') ADVANCE(647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2249: + case 1853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3625); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '+') ADVANCE(1891); + if (lookahead == '>') ADVANCE(649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2250: + case 1854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '-') ADVANCE(1880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2251: + case 1855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '-') ADVANCE(1896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2252: + case 1856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '-') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2253: + case 1857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '-') ADVANCE(1944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2254: + case 1858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '.') ADVANCE(2544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2255: + case 1859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '=') ADVANCE(1791); + if (lookahead == '~') ADVANCE(1779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2256: + case 1860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '>') ADVANCE(2849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2257: + case 1861: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(2845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + END_STATE(); + case 1862: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(2837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + END_STATE(); + case 1863: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(2841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + END_STATE(); + case 1864: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + END_STATE(); + case 1865: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + END_STATE(); + case 1866: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + END_STATE(); + case 1867: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + END_STATE(); + case 1868: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + ADVANCE_MAP( + 'I', 1946, + '_', 1877, + 'i', 1946, + 'n', 1886, + '+', 1877, + '-', 1877, + 'B', 2731, + 'b', 2731, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); + END_STATE(); + case 1869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2295); - if (lookahead == '_') ADVANCE(2264); - if (lookahead == 'i') ADVANCE(2295); + if (lookahead == 'I') ADVANCE(1946); + if (lookahead == '_') ADVANCE(1877); + if (lookahead == 'i') ADVANCE(1881); if (lookahead == '+' || - lookahead == '-') ADVANCE(2264); + lookahead == '-') ADVANCE(1877); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2258: + case 1870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2295); - if (lookahead == '_') ADVANCE(2264); - if (lookahead == 'i') ADVANCE(2267); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2264); + if (lookahead == 'I') ADVANCE(1946); + if (lookahead == 'i') ADVANCE(1946); + if (lookahead == 'n') ADVANCE(1886); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2259: + case 1871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2295); - if (lookahead == 'i') ADVANCE(2295); + if (lookahead == 'I') ADVANCE(1946); + if (lookahead == 'i') ADVANCE(1946); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2260: + case 1872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2295); - if (lookahead == 'i') ADVANCE(2267); + if (lookahead == 'I') ADVANCE(1946); + if (lookahead == 'i') ADVANCE(1881); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2261: + case 1873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(2295); - if (lookahead == 'i') ADVANCE(2275); - if (lookahead == 's') ADVANCE(3425); + if (lookahead == 'I') ADVANCE(1946); + if (lookahead == 'i') ADVANCE(1901); + if (lookahead == 'o') ADVANCE(1884); + if (lookahead == 's') ADVANCE(2738); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2262: + case 1874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(2264); - if (lookahead == 'o') ADVANCE(2249); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '_') ADVANCE(1874); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2263: + case 1875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(2264); - if (lookahead == 'o') ADVANCE(2253); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '_') ADVANCE(1877); + if (lookahead == 'o') ADVANCE(1860); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2264: + case 1876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(2264); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '_') ADVANCE(1877); + if (lookahead == 'o') ADVANCE(1864); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2265: + case 1877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(2265); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == '_') ADVANCE(1877); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2266: + case 1878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(2294); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'a') ADVANCE(1945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2267: + case 1879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'a') ADVANCE(1922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2268: + case 1880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'c') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'a') ADVANCE(1906); + if (lookahead == 'o') ADVANCE(1920); + if (lookahead == 's') ADVANCE(1892); + if (lookahead == 'x') ADVANCE(1912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2269: + case 1881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2268); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2270: + case 1882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2250); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'c') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2271: + case 1883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'd') ADVANCE(1783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2272: + case 1884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'd') ADVANCE(1772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2273: + case 1885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(2286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'd') ADVANCE(1780); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2274: + case 1886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'k') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'd') ADVANCE(1929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2275: + case 1887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3425); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'e') ADVANCE(1882); + if (lookahead == 't') ADVANCE(1879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2276: + case 1888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(2249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'e') ADVANCE(1861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2277: + case 1889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(2292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'e') ADVANCE(1925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2278: + case 1890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(2253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'e') ADVANCE(1865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2279: + case 1891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(2293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'e') ADVANCE(1927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2280: + case 1892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'h') ADVANCE(1900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2281: + case 1893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'h') ADVANCE(1789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2282: + case 1894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2245); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'h') ADVANCE(1788); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2283: + case 1895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2284); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'i') ADVANCE(1931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2284: + case 1896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'i') ADVANCE(1904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2285: + case 1897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'i') ADVANCE(1935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2286: + case 1898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(2285); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'i') ADVANCE(1937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2287: + case 1899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'k') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2288: + case 1900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(2239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'l') ADVANCE(1776); + if (lookahead == 'r') ADVANCE(1777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2289: + case 1901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(2251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'n') ADVANCE(2738); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2290: + case 1902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(2244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'n') ADVANCE(1883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2291: + case 1903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(2255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'n') ADVANCE(1786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2292: + case 1904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(2289); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'n') ADVANCE(1787); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2293: + case 1905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(2291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'n') ADVANCE(1886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2294: + case 1906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'y') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'n') ADVANCE(1885); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2295: + case 1907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'o') ADVANCE(1860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2296: + case 1908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3993); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2296); + if (lookahead == 'o') ADVANCE(1941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2297: + case 1909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + if (lookahead == 'o') ADVANCE(1919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2298: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(3244); - if (lookahead == '\r') ADVANCE(4); - if (lookahead == '/') ADVANCE(2299); - if (lookahead == '=') ADVANCE(1104); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3216); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + case 1910: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'o') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2299: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(3246); - if (lookahead == '\r') ADVANCE(8); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3218); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1911: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'o') ADVANCE(1864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2300: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(3245); - if (lookahead == '\r') ADVANCE(14); - if (lookahead == 'u') ADVANCE(2474); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3217); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1912: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'o') ADVANCE(1921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2301: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2351); - if (lookahead == '-') ADVANCE(3902); - if (lookahead == 'I') ADVANCE(2628); - if (lookahead == '_') ADVANCE(2351); - if (lookahead == 'i') ADVANCE(2628); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1913: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'o') ADVANCE(1933); + if (lookahead == 's') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2302: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2351); - if (lookahead == '-') ADVANCE(3902); - if (lookahead == 'I') ADVANCE(2628); - if (lookahead == '_') ADVANCE(2351); - if (lookahead == 'i') ADVANCE(2377); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1914: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'o') ADVANCE(1933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2303: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2351); - if (lookahead == '-') ADVANCE(4349); - if (lookahead == 'I') ADVANCE(2628); - if (lookahead == '_') ADVANCE(2351); - if (lookahead == 'i') ADVANCE(2628); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1915: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'o') ADVANCE(1942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2304: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2351); - if (lookahead == '-') ADVANCE(4349); - if (lookahead == 'I') ADVANCE(2628); - if (lookahead == '_') ADVANCE(2351); - if (lookahead == 'i') ADVANCE(2377); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1916: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2305: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2351); - if (lookahead == '-') ADVANCE(4349); - if (lookahead == '_') ADVANCE(2351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1917: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(1785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2306: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2417); - if (lookahead == '>') ADVANCE(3609); - if (lookahead == 'n') ADVANCE(2422); - if (lookahead == 'r') ADVANCE(3193); - if (lookahead == 'u') ADVANCE(2581); - if (lookahead == 'v') ADVANCE(2432); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1918: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(1844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2307: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2496); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'l') ADVANCE(2568); - if (lookahead == 'n') ADVANCE(2391); - if (lookahead == 'r') ADVANCE(2553); - if (lookahead == 'x') ADVANCE(2516); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1919: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(1784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2308: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2499); - if (lookahead == '>') ADVANCE(3597); - if (lookahead == 'o') ADVANCE(2525); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1920: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(1782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2309: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2499); - if (lookahead == '>') ADVANCE(3597); - if (lookahead == 'o') ADVANCE(2526); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1921: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(1781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2310: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2501); - if (lookahead == '>') ADVANCE(855); - if (lookahead == 'l') ADVANCE(2572); - if (lookahead == 'r') ADVANCE(2531); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1922: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(1940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2311: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2421); - if (lookahead == '>') ADVANCE(856); - if (lookahead == 'n') ADVANCE(2426); - if (lookahead == 'r') ADVANCE(3194); - if (lookahead == 'u') ADVANCE(2594); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1923: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(1852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2312: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2505); - if (lookahead == '>') ADVANCE(858); - if (lookahead == 'o') ADVANCE(2529); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1924: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(1863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2313: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2428); - if (lookahead == '>') ADVANCE(3601); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1925: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(1924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2314: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2433); - if (lookahead == '>') ADVANCE(860); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1926: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(1867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2315: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3546); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3211); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1927: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(1926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2316: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3554); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1928: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 's') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2317: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3571); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1929: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 's') ADVANCE(1856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2318: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3556); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1930: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 's') ADVANCE(1857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2319: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3536); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1931: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(1854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2320: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1160); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1932: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(1879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2321: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1217); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3211); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1933: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(1855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2322: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1247); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1934: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(1845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2323: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1307); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1935: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(1893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2324: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1326); - if (lookahead == '_') ADVANCE(2358); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2360); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1936: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(1862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2325: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1254); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1937: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(1894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2326: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1172); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1938: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(1853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2327: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(762); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1939: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(1866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2328: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(645); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1940: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(1930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2329: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(747); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1941: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'u') ADVANCE(1936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2330: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3572); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1942: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'u') ADVANCE(1939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2331: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3559); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1943: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'w') ADVANCE(1897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2332: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1308); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1944: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'w') ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2333: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1258); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1945: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'y') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2334: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(763); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1946: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2335: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3573); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1947: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2336: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1309); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1948: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + '_', 1874, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2337: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(848); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1949: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + '_', 1874, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1850, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2338: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3625); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1950: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2339: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3621); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1951: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1850, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(721); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2340: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3613); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1952: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1872, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1846, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2341: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1953: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 1858, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1872, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1848, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(721); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2342: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(857); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1954: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 2559, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1842, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1843, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2343: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(859); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1955: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '.', 2559, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'B', 2731, + 'E', 1869, + 'G', 1872, + 'K', 1872, + 'M', 1872, + 'P', 1872, + 'T', 1872, + 'a', 1902, + 'b', 2732, + 'd', 1878, + 'e', 1850, + 'g', 1871, + 'h', 1916, + 'i', 1903, + 'k', 1871, + 'm', 1873, + 'n', 1913, + 'o', 1851, + 'p', 1871, + 's', 1887, + 't', 1871, + 'u', 1928, + 'w', 1899, + 'x', 1909, + '|', 2264, + 0xb5, 1928, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(721); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2344: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(861); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1956: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'a', 1902, + 'b', 1895, + 'e', 1847, + 'i', 1903, + 'm', 1910, + 'n', 1914, + 'o', 1843, + 's', 1932, + 'x', 1909, + '|', 2264, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2345: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(862); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 1957: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(825); + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '!', 1859, + '#', 4069, + '*', 1769, + '+', 1774, + '-', 1775, + '/', 1770, + ';', 2263, + '<', 1793, + '=', 457, + '>', 1796, + 'a', 1902, + 'b', 1895, + 'e', 1849, + 'i', 1903, + 'm', 1910, + 'n', 1914, + 'o', 1851, + 's', 1932, + 'x', 1909, + '|', 2264, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(721); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1947); END_STATE(); - case 2346: + case 1958: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2628); - if (lookahead == 'i') ADVANCE(2628); + if (lookahead == '+') ADVANCE(1974); + if (lookahead == '-') ADVANCE(3116); + if (lookahead == 'I') ADVANCE(2019); + if (lookahead == '_') ADVANCE(1974); + if (lookahead == 'i') ADVANCE(2019); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + lookahead == 'b') ADVANCE(2737); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2347: + case 1959: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2628); - if (lookahead == 'i') ADVANCE(2377); + if (lookahead == '+') ADVANCE(1974); + if (lookahead == '-') ADVANCE(3116); + if (lookahead == 'I') ADVANCE(2019); + if (lookahead == '_') ADVANCE(1974); + if (lookahead == 'i') ADVANCE(1978); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + lookahead == 'b') ADVANCE(2737); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2348: + case 1960: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2628); - if (lookahead == 'i') ADVANCE(2485); - if (lookahead == 's') ADVANCE(3429); + if (lookahead == '+') ADVANCE(1974); + if (lookahead == '-') ADVANCE(3640); + if (lookahead == 'I') ADVANCE(2019); + if (lookahead == '_') ADVANCE(1974); + if (lookahead == 'i') ADVANCE(2019); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + lookahead == 'b') ADVANCE(2737); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2349: + case 1961: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(2629); - if (lookahead == 'f') ADVANCE(3071); - if (lookahead == 'm') ADVANCE(2517); - if (lookahead == 'n') ADVANCE(3031); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '+') ADVANCE(1974); + if (lookahead == '-') ADVANCE(3640); + if (lookahead == 'I') ADVANCE(2019); + if (lookahead == '_') ADVANCE(1974); + if (lookahead == 'i') ADVANCE(1978); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2737); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2350: + case 1962: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2351); - if (lookahead == 'o') ADVANCE(2338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '+') ADVANCE(1974); + if (lookahead == '-') ADVANCE(3640); + if (lookahead == '_') ADVANCE(1974); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2351: + case 1963: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '-') ADVANCE(579); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2352: + case 1964: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2636); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2352); - if (('2' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '-') ADVANCE(501); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2353: + case 1965: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2353); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '-') ADVANCE(566); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2354: + case 1966: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2358); - if (lookahead == 'b') ADVANCE(3414); - if (lookahead == 'o') ADVANCE(3430); - if (lookahead == 'x') ADVANCE(3436); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2357); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '-') ADVANCE(580); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2355: + case 1967: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2358); - if (lookahead == 'b') ADVANCE(2636); - if (lookahead == 'o') ADVANCE(2638); - if (lookahead == 'x') ADVANCE(2643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2358); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '-') ADVANCE(639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2356: + case 1968: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2358); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2324); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'I') ADVANCE(2019); + if (lookahead == 'i') ADVANCE(2019); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2737); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2357: + case 1969: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2358); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2356); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'I') ADVANCE(2019); + if (lookahead == 'i') ADVANCE(1978); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2737); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2358: + case 1970: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2358); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2358); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'I') ADVANCE(2019); + if (lookahead == 'i') ADVANCE(1996); + if (lookahead == 's') ADVANCE(2741); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2737); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2359: + case 1971: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2358); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2357); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '_') ADVANCE(1972); + if (lookahead == 'b') ADVANCE(2028); + if (lookahead == 'o') ADVANCE(2030); + if (lookahead == 'x') ADVANCE(2031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1972); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2360: + case 1972: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2358); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2360); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '_') ADVANCE(1972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1972); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2361: + case 1973: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2456); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '_') ADVANCE(1973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2362: + case 1974: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2624); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '_') ADVANCE(1974); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2363: + case 1975: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2476); - if (lookahead == 'o') ADVANCE(2523); - if (lookahead == 'u') ADVANCE(2479); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'a') ADVANCE(2017); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2364: + case 1976: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2457); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'a') ADVANCE(2009); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2365: + case 1977: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2625); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'a') ADVANCE(1990); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2366: + case 1978: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2623); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'b') ADVANCE(2737); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2367: + case 1979: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2560); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'c') ADVANCE(2741); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2368: + case 1980: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2561); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'd') ADVANCE(1987); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2369: + case 1981: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2477); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'e') ADVANCE(1991); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2370: + case 1982: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2541); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'e') ADVANCE(1965); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2371: + case 1983: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2540); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'e') ADVANCE(2636); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2372: + case 1984: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2599); - if (lookahead == 'e') ADVANCE(2480); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'e') ADVANCE(2644); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2373: + case 1985: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2542); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'e') ADVANCE(1979); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2374: + case 1986: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2459); - if (lookahead == 'o') ADVANCE(2388); - if (lookahead == 'u') ADVANCE(2584); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'e') ADVANCE(2295); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2375: + case 1987: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2546); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'e') ADVANCE(2456); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2376: + case 1988: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2598); - if (lookahead == 'e') ADVANCE(2478); - if (lookahead == 'o') ADVANCE(2494); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'i') ADVANCE(1980); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2377: + case 1989: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(3424); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'k') ADVANCE(2741); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2378: + case 1990: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(3429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'l') ADVANCE(2011); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2379: + case 1991: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2440); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'l') ADVANCE(1992); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2380: + case 1992: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2441); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'l') ADVANCE(1963); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2381: + case 1993: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2442); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'l') ADVANCE(1964); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2382: + case 1994: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2443); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'l') ADVANCE(1993); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2383: + case 1995: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2444); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'm') ADVANCE(2002); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2384: + case 1996: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2408); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'n') ADVANCE(2741); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2737); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2385: + case 1997: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2411); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'n') ADVANCE(2378); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2386: + case 1998: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(3186); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'n') ADVANCE(1982); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2387: + case 1999: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(3185); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'o') ADVANCE(2013); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2023); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2388: + case 2000: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2300); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'o') ADVANCE(2004); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2389: + case 2001: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'o') ADVANCE(2005); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2390: + case 2002: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2573); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'p') ADVANCE(2001); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2391: + case 2003: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2574); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'r') ADVANCE(2000); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2392: + case 2004: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2397); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'r') ADVANCE(2316); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2393: + case 2005: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2405); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'r') ADVANCE(2014); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2394: + case 2006: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2378); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'r') ADVANCE(2741); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2395: + case 2007: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'r') ADVANCE(2003); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2396: + case 2008: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3077); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'r') ADVANCE(2015); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2397: + case 2009: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3145); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'r') ADVANCE(1967); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2398: + case 2010: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3049); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 's') ADVANCE(2741); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2399: + case 2011: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2155); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 's') ADVANCE(1984); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2400: + case 2012: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2900); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 's') ADVANCE(1986); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2401: + case 2013: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2200); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 't') ADVANCE(2029); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2402: + case 2014: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3183); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 't') ADVANCE(1966); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2403: + case 2015: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3055); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'u') ADVANCE(1983); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2404: + case 2016: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3079); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'u') ADVANCE(1994); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2405: + case 2017: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3146); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'y') ADVANCE(2741); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2406: + case 2018: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3051); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2023); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2407: + case 2019: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2891); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2737); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2408: + case 2020: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3128); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2409: + case 2021: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3057); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2410: + case 2022: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2893); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2411: + case 2023: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3129); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2412: + case 2024: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3018); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2020); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2413: + case 2025: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3020); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2021); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2414: + case 2026: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3082); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2027); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2415: + case 2027: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2437); - if (lookahead == 'o') ADVANCE(3064); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2416: + case 2028: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2621); - if (lookahead == 'o') ADVANCE(2593); - if (lookahead == 'u') ADVANCE(2462); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2632); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2028); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2417: + case 2029: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2505); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2418: + case 2030: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2361); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2030); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2419: + case 2031: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2364); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2031); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2420: + case 2032: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2538); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2421: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2033: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3002); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'r') ADVANCE(2138); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2422: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2322); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2034: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(2995); + if (lookahead == '>') ADVANCE(2833); + if (lookahead == 'u') ADVANCE(2162); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2423: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2583); - if (lookahead == 'i') ADVANCE(2567); - if (lookahead == 'o') ADVANCE(2498); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2035: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3003); + if (lookahead == '>') ADVANCE(2821); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2424: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2543); - if (lookahead == 'i') ADVANCE(2471); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2036: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(2996); + if (lookahead == '>') ADVANCE(2825); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2425: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2543); - if (lookahead == 'i') ADVANCE(2473); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2037: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(572); + if (lookahead == '>') ADVANCE(644); + if (lookahead == 'r') ADVANCE(2141); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2426: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2329); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2038: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(518); + if (lookahead == '>') ADVANCE(645); + if (lookahead == 'u') ADVANCE(2164); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2427: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2533); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2039: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(576); + if (lookahead == '>') ADVANCE(647); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2428: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2548); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2040: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(522); + if (lookahead == '>') ADVANCE(649); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2429: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2537); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2041: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2213); + if (lookahead == '_') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2430: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2527); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2042: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2079); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 2431: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2528); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2043: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2081); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 2432: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2555); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2044: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2084); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 2433: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2551); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2045: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2086); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 2434: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2439); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2046: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2215); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2435: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2480); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2047: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2219); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2436: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(2873); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2048: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(2221); + if (lookahead == '_') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2437: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(2875); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2049: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == ':') ADVANCE(681); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2438: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(2451); - if (lookahead == 't') ADVANCE(2611); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2050: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == ':') ADVANCE(3046); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2439: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(2454); - if (lookahead == 't') ADVANCE(2613); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2051: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N') ADVANCE(2186); + if (lookahead == 'f') ADVANCE(2226); + if (lookahead == 'n') ADVANCE(2187); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2440: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3115); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2052: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T') ADVANCE(2216); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2441: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3085); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2053: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T') ADVANCE(2217); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2442: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3117); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2054: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2056); + if (lookahead == 'b') ADVANCE(2728); + if (lookahead == 'o') ADVANCE(2744); + if (lookahead == 'x') ADVANCE(2749); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2058); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2443: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3087); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2055: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2056); + if (lookahead == 'b') ADVANCE(2728); + if (lookahead == 'o') ADVANCE(2744); + if (lookahead == 'x') ADVANCE(2749); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2061); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2444: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3120); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2056: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2445: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(2425); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2057: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2041); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2446: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2492); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2058: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2057); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2447: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2367); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2059: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2058); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2448: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2596); - if (lookahead == 'r') ADVANCE(2419); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2060: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2048); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2449: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2368); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2061: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2060); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2450: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2393); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2062: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2061); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2451: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2569); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2063: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2110); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2452: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2571); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2064: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2109); + if (lookahead == 'o') ADVANCE(2073); + if (lookahead == 'u') ADVANCE(2165); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2453: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2495); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2065: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2108); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2454: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2575); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2066: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2181); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2455: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(3429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2067: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2159); + if (lookahead == 'o') ADVANCE(2121); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2456: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(3012); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2068: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2155); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2457: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(3014); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2069: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(2118); + if (lookahead == 'o') ADVANCE(2147); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2458: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(2398); - if (lookahead == 't') ADVANCE(2380); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2070: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(2101); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2459: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(2406); - if (lookahead == 't') ADVANCE(2382); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2071: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(2085); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2460: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2208); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2072: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(2102); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2461: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2463); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2073: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'd') ADVANCE(2175); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2462: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2460); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2074: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'd') ADVANCE(2080); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2463: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2318); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2075: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2634); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2464: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2319); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2076: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2642); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2465: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2362); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2077: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2098); + if (lookahead == 'o') ADVANCE(2225); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2466: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2365); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2078: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2099); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2467: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2325); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2079: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2122); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 2468: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2326); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2080: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2043); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2469: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2327); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2081: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2124); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 2470: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2328); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2082: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(2065); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2471: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2403); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2472: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2407); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2473: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2409); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2474: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2410); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2475: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2464); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2476: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2566); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2477: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2566); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2478: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2467); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2479: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2468); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2480: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2469); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2481: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2470); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2482: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2449); - if (lookahead == 'n') ADVANCE(2387); - if (lookahead == 's') ADVANCE(3171); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2483: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(2518); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2484: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2386); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2485: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3429); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2486: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2564); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2487: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2884); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2488: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3122); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2489: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2886); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2490: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3124); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2491: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3040); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2492: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2614); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2493: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2426); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2494: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2570); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2495: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2496: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2338); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2497: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2512); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2498: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2513); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2499: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2612); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2500: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2522); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2501: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2342); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2502: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2524); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2503: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2529); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2504: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2591); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2632); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2505: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2616); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2506: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2544); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2507: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2545); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2508: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2547); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2509: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2549); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2510: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2550); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2511: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2618); - if (lookahead == 't') ADVANCE(2375); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2512: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(3042); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2513: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(3044); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2514: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2506); - if (lookahead == 't') ADVANCE(2427); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2515: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2507); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2516: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2508); - if (lookahead == 't') ADVANCE(2429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2517: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2509); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2518: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2510); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2519: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2520: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2308); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2521: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2522: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3190); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2523: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3026); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2524: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3189); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2525: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2920); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2526: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2922); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2527: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3138); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2528: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3140); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2529: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2925); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2530: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2609); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2531: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2312); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2532: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2317); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2533: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2487); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2534: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2384); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2535: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2488); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2536: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2537: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2489); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2538: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2465); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2539: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2490); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2540: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2323); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2541: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2605); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2542: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2337); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2543: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2402); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2544: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2587); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2545: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2602); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2546: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2606); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2547: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2589); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2548: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2536); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2549: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2603); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2550: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2604); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2551: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2556); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2552: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2558); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2553: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2309); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2554: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2385); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2555: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2466); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2556: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2345); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2557: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2558: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2503); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2559: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(3429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2560: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1067); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2561: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2562: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2582); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2563: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2396); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2564: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2585); - if (lookahead == 't') ADVANCE(2446); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2565: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2400); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2566: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2401); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2567: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2586); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2568: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2404); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2569: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2600); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2570: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2588); - if (lookahead == 't') ADVANCE(2453); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2571: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2590); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2572: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2414); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2573: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2330); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2574: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2332); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2575: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2601); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2576: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2335); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2577: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2336); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2578: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1078); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2579: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1088); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2580: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2315); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2581: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2313); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2582: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2932); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2583: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1079); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2584: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1090); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2585: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1095); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2586: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2934); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2587: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2588: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1097); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2589: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1061); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2590: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2937); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2591: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2637); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2592: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2379); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2593: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2321); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2594: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2314); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2595: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2596: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2320); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2597: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2344); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2598: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2381); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2599: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2383); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2600: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2430); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2601: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2431); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2602: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2331); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2603: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2333); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2604: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2334); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2605: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2576); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2606: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2577); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2607: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2534); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2608: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2399); - if (lookahead == 'y') ADVANCE(3108); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2609: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2399); - if (lookahead == 'y') ADVANCE(3110); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2610: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2399); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2611: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2535); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2612: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2595); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2613: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2539); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2614: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2412); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2615: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2413); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2616: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2597); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2617: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2472); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2618: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2554); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2619: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2481); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2620: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'w') ADVANCE(3162); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2621: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'w') ADVANCE(3164); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2622: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2623: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2624: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3155); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2625: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3157); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2626: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '{') ADVANCE(919); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2642); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2627: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2632); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2628: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2629: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2212); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2630: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2634); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2631: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2629); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2632: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2233); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2633: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2630); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2634: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2635); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2635: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2222); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2636: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2636); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2637: - ACCEPT_TOKEN(sym_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3211); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2638: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2638); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2639: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2640: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3491); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2641: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2640); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2642: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2641); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2643: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2643); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2644: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2645: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3792); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'r') ADVANCE(2746); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); - END_STATE(); - case 2646: + case 2083: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3785); - if (lookahead == '>') ADVANCE(3609); - if (lookahead == 'u') ADVANCE(2770); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'e') ADVANCE(2160); + if (lookahead == 'o') ADVANCE(2130); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2647: + case 2084: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(673); - if (lookahead == '>') ADVANCE(856); - if (lookahead == 'u') ADVANCE(2772); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'e') ADVANCE(2125); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 2648: + case 2085: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3793); - if (lookahead == '>') ADVANCE(3597); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'e') ADVANCE(2045); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2649: + case 2086: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3786); - if (lookahead == '>') ADVANCE(3601); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'e') ADVANCE(2126); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 2650: + case 2087: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(741); - if (lookahead == '>') ADVANCE(855); - if (lookahead == 'r') ADVANCE(2749); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'e') ADVANCE(2146); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2651: + case 2088: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(742); - if (lookahead == '>') ADVANCE(858); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'e') ADVANCE(2143); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2652: + case 2089: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(671); - if (lookahead == '>') ADVANCE(860); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'e') ADVANCE(2233); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2653: + case 2090: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2813); - if (lookahead == '_') ADVANCE(2668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2668); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'e') ADVANCE(2235); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2654: + case 2091: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2692); - 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(1930); + if (lookahead == 'e') ADVANCE(2238); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2655: + case 2092: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2694); - 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(1962); + if (lookahead == 'e') ADVANCE(2240); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2656: + case 2093: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2697); - 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(2149); + if (lookahead == 'e') ADVANCE(2246); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2657: + case 2094: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2699); - 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(1982); + if (lookahead == 'e') ADVANCE(2249); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2658: + case 2095: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2815); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'e') ADVANCE(2251); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2659: + case 2096: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2819); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'e') ADVANCE(2256); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2660: + case 2097: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2821); - if (lookahead == '_') ADVANCE(2668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2668); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'e') ADVANCE(2149); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2661: + case 2098: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(907); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'f') ADVANCE(2228); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2662: + case 2099: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(3836); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'g') ADVANCE(2106); + if (lookahead == 't') ADVANCE(2172); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2663: + case 2100: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(2793); - if (lookahead == 'f') ADVANCE(2826); - if (lookahead == 'n') ADVANCE(2794); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'h') ADVANCE(2107); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2664: + case 2101: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(2816); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'h') ADVANCE(2243); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2665: + case 2102: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(2817); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'h') ADVANCE(2248); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2666: + case 2103: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2668); - if (lookahead == 'b') ADVANCE(3418); - if (lookahead == 'o') ADVANCE(3434); - if (lookahead == 'x') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'i') ADVANCE(2074); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2667: + case 2104: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2668); - if (lookahead == 'b') ADVANCE(3418); - if (lookahead == 'o') ADVANCE(3434); - if (lookahead == 'x') ADVANCE(3440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'i') ADVANCE(2068); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2668: + case 2105: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2668); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'i') ADVANCE(2129); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2669: + case 2106: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2653); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'i') ADVANCE(2153); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2670: + case 2107: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2669); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'i') ADVANCE(2119); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2671: + case 2108: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'k') ADVANCE(2242); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2672: + case 2109: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2660); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'k') ADVANCE(2091); + if (lookahead == 't') ADVANCE(2072); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2673: + case 2110: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'l') ADVANCE(2152); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2674: + case 2111: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'l') ADVANCE(2626); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2675: + case 2112: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2721); - if (lookahead == 'o') ADVANCE(2755); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'l') ADVANCE(2104); + if (lookahead == 's') ADVANCE(2224); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2676: + case 2113: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2721); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'l') ADVANCE(2111); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2677: + case 2114: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2720); - if (lookahead == 'o') ADVANCE(2685); - if (lookahead == 'u') ADVANCE(2773); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'l') ADVANCE(2066); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2678: + case 2115: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2719); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'l') ADVANCE(2116); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2679: + case 2116: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2790); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'l') ADVANCE(2239); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2680: + case 2117: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2767); - if (lookahead == 'o') ADVANCE(2729); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'l') ADVANCE(2157); + if (lookahead == 'r') ADVANCE(2142); + if (lookahead == 'x') ADVANCE(2136); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2681: + case 2118: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2763); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'l') ADVANCE(2158); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2682: + case 2119: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2712); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'l') ADVANCE(2094); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2683: + case 2120: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2698); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'l') ADVANCE(2095); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2684: + case 2121: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2713); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'n') ADVANCE(2156); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2685: + case 2122: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(2783); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'n') ADVANCE(2177); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 2686: + case 2123: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(2693); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'n') ADVANCE(2376); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2687: + case 2124: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2153); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'n') ADVANCE(2178); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 2688: + case 2125: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2198); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'n') ADVANCE(2180); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 2689: + case 2126: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2709); - if (lookahead == 'o') ADVANCE(2825); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'n') ADVANCE(2179); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 2690: + case 2127: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2789); - if (lookahead == 'u') ADVANCE(2724); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2799); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'n') ADVANCE(2250); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2691: + case 2128: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2710); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'n') ADVANCE(2252); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2692: + case 2129: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2730); - 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(1930); + if (lookahead == 'n') ADVANCE(2174); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2693: + case 2130: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2655); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'o') ADVANCE(2135); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2694: + case 2131: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2732); - 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(1962); + if (lookahead == 'o') ADVANCE(2170); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2695: + case 2132: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2678); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'o') ADVANCE(2161); + if (lookahead == 'u') ADVANCE(2113); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2194); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2696: + case 2133: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2768); - if (lookahead == 'i') ADVANCE(2764); - if (lookahead == 'o') ADVANCE(2738); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'o') ADVANCE(2145); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2697: + case 2134: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2733); - 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(2149); + if (lookahead == 'o') ADVANCE(2148); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2698: + case 2135: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2657); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'p') ADVANCE(2237); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2699: + case 2136: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2734); - 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(1982); + if (lookahead == 'p') ADVANCE(2133); + if (lookahead == 't') ADVANCE(2088); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2700: + case 2137: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2753); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2168); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2701: + case 2138: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2833); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2035); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2702: + case 2139: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2751); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2173); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2703: + case 2140: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2834); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2071); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2704: + case 2141: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2838); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2039); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2705: + case 2142: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2846); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2134); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2706: + case 2143: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2848); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2127); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2707: + case 2144: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2853); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2082); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2708: + case 2145: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2757); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2163); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2709: + case 2146: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(2827); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2114); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2710: + case 2147: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(2718); - if (lookahead == 't') ADVANCE(2781); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2229); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2711: + case 2148: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2717); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2245); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2712: + case 2149: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2841); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2257); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2713: + case 2150: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2845); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'r') ADVANCE(2128); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2714: + case 2151: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2686); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 's') ADVANCE(2468); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2715: + case 2152: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2681); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 's') ADVANCE(2076); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2716: + case 2153: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2737); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 's') ADVANCE(2167); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2717: + case 2154: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2727); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 's') ADVANCE(2089); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2718: + case 2155: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2761); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 's') ADVANCE(2241); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2719: + case 2156: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(2840); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 's') ADVANCE(2166); + if (lookahead == 't') ADVANCE(2105); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2720: + case 2157: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(2704); - if (lookahead == 't') ADVANCE(2684); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 's') ADVANCE(2090); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2721: + case 2158: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2760); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 's') ADVANCE(2093); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2722: + case 2159: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2206); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 't') ADVANCE(2070); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2723: + case 2160: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2715); - if (lookahead == 's') ADVANCE(2824); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 't') ADVANCE(2042); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2724: + case 2161: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2722); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 't') ADVANCE(2208); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2725: + case 2162: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2679); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 't') ADVANCE(2036); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2726: + case 2163: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2765); - if (lookahead == 'r') ADVANCE(2750); - if (lookahead == 'x') ADVANCE(2744); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 't') ADVANCE(2044); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2727: + case 2164: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2705); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 't') ADVANCE(2040); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2728: + case 2165: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2706); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 't') ADVANCE(2231); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2729: + case 2166: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2766); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 't') ADVANCE(2244); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2730: + case 2167: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2785); - 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(1930); + if (lookahead == 't') ADVANCE(2097); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2731: + case 2168: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3038); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'u') ADVANCE(2075); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2732: + case 2169: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2786); - 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(1962); + if (lookahead == 'u') ADVANCE(2113); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2194); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2733: + case 2170: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2788); - 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(2149); + if (lookahead == 'u') ADVANCE(2140); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2734: + case 2171: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2787); - 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(1982); + if (lookahead == 'u') ADVANCE(2115); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2199); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2735: + case 2172: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2847); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'u') ADVANCE(2150); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2736: + case 2173: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2849); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'u') ADVANCE(2092); + if (lookahead == 'y') ADVANCE(2232); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2737: + case 2174: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2782); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'u') ADVANCE(2096); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2738: + case 2175: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2743); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'u') ADVANCE(2120); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2739: + case 2176: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2780); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'v') ADVANCE(2087); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2740: + case 2177: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2769); - if (lookahead == 'u') ADVANCE(2724); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2799); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'v') ADVANCE(2236); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 2741: + case 2178: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2756); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'v') ADVANCE(2247); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 2742: + case 2179: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2754); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'v') ADVANCE(2255); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 2743: + case 2180: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(2837); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'v') ADVANCE(2258); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 2744: + case 2181: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(2742); - if (lookahead == 't') ADVANCE(2702); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'y') ADVANCE(2254); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2745: + case 2182: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2778); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == '-' || + lookahead == '?') ADVANCE(2223); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2182); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2746: + case 2183: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2648); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2194); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2747: + case 2184: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2777); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2199); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2748: + case 2185: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2683); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2193); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2749: + case 2186: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2651); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2189); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2750: + case 2187: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2741); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2191); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2751: + case 2188: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2735); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2201); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2752: + case 2189: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2695); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2198); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); END_STATE(); - case 2753: + case 2190: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2725); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2202); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); END_STATE(); - case 2754: + case 2191: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2771); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2200); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2755: + case 2192: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2828); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2203); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2756: + case 2193: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2843); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2197); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2757: + case 2194: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2854); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2223); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2758: + case 2195: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2736); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2185); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2759: + case 2196: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3174); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2186); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2760: + case 2197: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2688); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2188); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2761: + case 2198: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2776); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2190); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); END_STATE(); - case 2762: + case 2199: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2701); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2227); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2763: + case 2200: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2839); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2192); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2764: + case 2201: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2774); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2204); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2765: + case 2202: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2703); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2206); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); END_STATE(); - case 2766: + case 2203: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2775); - if (lookahead == 't') ADVANCE(2716); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2205); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2767: + case 2204: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2682); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2768: + case 2205: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2654); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2230); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2769: + case 2206: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2808); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2234); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); END_STATE(); - case 2770: + case 2207: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2649); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2207); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2771: + case 2208: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2656); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2505); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2772: + case 2209: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2652); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2209); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2773: + case 2210: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2830); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2046); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2774: + case 2211: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2836); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2052); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2775: + case 2212: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2842); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2050); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2776: + case 2213: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2708); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2210); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2777: + case 2214: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2687); - if (lookahead == 'y') ADVANCE(2832); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2049); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2778: + case 2215: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2687); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2211); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2779: + case 2216: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2724); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2799); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2212); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2780: + case 2217: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2748); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2214); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2781: + case 2218: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2758); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2053); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2782: + case 2219: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2707); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2218); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2783: + case 2220: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2728); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2047); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2784: + case 2221: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2700); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2220); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2785: + case 2222: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2835); - 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(1930); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2222); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2786: + case 2223: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2844); - 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(1962); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 2787: + case 2224: 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(1982); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2224); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1695); END_STATE(); - case 2788: + case 2225: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2855); - 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(2149); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2225); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1668); END_STATE(); - case 2789: + case 2226: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'w') ADVANCE(2831); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2226); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1671); END_STATE(); - case 2790: + case 2227: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(2851); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2227); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1766); END_STATE(); - case 2791: + case 2228: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-' || - lookahead == '?') ADVANCE(2823); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2791); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1591); END_STATE(); - case 2792: + case 2229: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2799); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2229); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1656); END_STATE(); - case 2793: + case 2230: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2798); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 2794: + case 2231: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2796); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2231); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1620); END_STATE(); - case 2795: + case 2232: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2803); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1677); END_STATE(); - case 2796: + case 2233: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2802); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1597); END_STATE(); - case 2797: + case 2234: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2804); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); END_STATE(); - case 2798: + case 2235: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2801); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1674); END_STATE(); - case 2799: + case 2236: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2823); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); - case 2800: + case 2237: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2793); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1659); END_STATE(); - case 2801: + case 2238: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2795); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1716); END_STATE(); - case 2802: + case 2239: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2797); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1738); END_STATE(); - case 2803: + case 2240: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2805); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1732); END_STATE(); - case 2804: + case 2241: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2806); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1594); END_STATE(); - case 2805: + case 2242: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2823); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1686); END_STATE(); - case 2806: + case 2243: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2829); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2243); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1680); END_STATE(); - case 2807: + case 2244: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2807); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2244); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1623); END_STATE(); - case 2808: + case 2245: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3211); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1665); END_STATE(); - case 2809: + case 2246: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2809); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1735); END_STATE(); - case 2810: + case 2247: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2658); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 2811: + case 2248: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2664); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1683); END_STATE(); - case 2812: + case 2249: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2662); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1662); END_STATE(); - case 2813: + case 2250: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2810); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1602); END_STATE(); - case 2814: + case 2251: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2661); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1605); END_STATE(); - case 2815: + case 2252: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2811); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2252); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1692); END_STATE(); - case 2816: + case 2253: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2812); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); END_STATE(); - case 2817: + case 2254: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2814); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1650); END_STATE(); - case 2818: + case 2255: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2665); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 2819: + case 2256: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2818); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1689); END_STATE(); - case 2820: + case 2257: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2659); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1653); END_STATE(); - case 2821: + case 2258: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2820); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1599); END_STATE(); - case 2822: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2822); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + case 2259: + ACCEPT_TOKEN(sym__newline); END_STATE(); - case 2823: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + case 2260: + ACCEPT_TOKEN(sym__newline); + if (lookahead == ':') ADVANCE(2810); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(450); END_STATE(); - case 2824: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); + case 2261: + ACCEPT_TOKEN(sym__space); + if (lookahead == '\n') ADVANCE(2260); + if (lookahead == '\r') ADVANCE(16); + if (lookahead == ':') ADVANCE(2810); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2261); + if (lookahead == 0x0b || + lookahead == '\f') ADVANCE(450); END_STATE(); - case 2825: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2024); + case 2262: + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2262); END_STATE(); - case 2826: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2826); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); - END_STATE(); - case 2827: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1883); - END_STATE(); - case 2828: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2828); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2000); - END_STATE(); - case 2829: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); - END_STATE(); - case 2830: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1936); - END_STATE(); - case 2831: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2123); - END_STATE(); - case 2832: - ACCEPT_TOKEN(sym_long_flag_identifier); - 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(2042); - END_STATE(); - case 2833: - ACCEPT_TOKEN(sym_long_flag_identifier); - 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(1895); - END_STATE(); - case 2834: - ACCEPT_TOKEN(sym_long_flag_identifier); - 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(2036); - END_STATE(); - case 2835: - ACCEPT_TOKEN(sym_long_flag_identifier); - 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(1930); - END_STATE(); - case 2836: - ACCEPT_TOKEN(sym_long_flag_identifier); - 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(2117); - END_STATE(); - case 2837: - ACCEPT_TOKEN(sym_long_flag_identifier); - 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(2006); - END_STATE(); - case 2838: - ACCEPT_TOKEN(sym_long_flag_identifier); - 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(2129); - END_STATE(); - case 2839: - ACCEPT_TOKEN(sym_long_flag_identifier); - 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(1889); - 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(2060); - 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(2048); - 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(1942); - 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(2018); - 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(1962); - 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(2054); - 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(2012); - 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(1904); - 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(1910); - 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(2072); - 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(2149); - 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(1988); - 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(1982); - 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(2066); - 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(1994); - 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(1898); - END_STATE(); - case 2856: - ACCEPT_TOKEN(sym__newline); - END_STATE(); - case 2857: - ACCEPT_TOKEN(sym__newline); - ADVANCE_MAP( - '!', 593, - '*', 520, - '+', 163, - '/', 165, - ':', 3511, - '=', 599, - 'a', 722, - 'b', 696, - 'e', 728, - 'i', 732, - 'm', 754, - 'n', 745, - 'o', 776, - 's', 802, - 'x', 753, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(580); - END_STATE(); - case 2858: - ACCEPT_TOKEN(sym__newline); - ADVANCE_MAP( - '!', 593, - '*', 186, - '+', 162, - '-', 189, - '/', 165, - '<', 190, - '=', 599, - '>', 191, - 'a', 722, - 'b', 696, - 'e', 728, - 'i', 732, - 'm', 754, - 'n', 745, - 'o', 776, - 's', 802, - 'x', 753, - ); - END_STATE(); - case 2859: - ACCEPT_TOKEN(sym__newline); - if (lookahead == ':') ADVANCE(3511); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(580); - END_STATE(); - case 2860: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\n') ADVANCE(2859); - if (lookahead == '\r') ADVANCE(111); - if (lookahead == ':') ADVANCE(3511); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2860); - if (lookahead == 0x0b || - lookahead == '\f') ADVANCE(580); - END_STATE(); - case 2861: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2861); - END_STATE(); - case 2862: + case 2263: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 2863: + case 2264: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 2864: + case 2265: ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); - case 2865: + case 2266: ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); - case 2866: + case 2267: ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); - case 2867: + case 2268: ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); - case 2868: + case 2269: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); - case 2869: + case 2270: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); - case 2870: + case 2271: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); - case 2871: + case 2272: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); - case 2872: - ACCEPT_TOKEN(anon_sym_def); - END_STATE(); - case 2873: - ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1883); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1878); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1881); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1876); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1877); - END_STATE(); - case 2874: + case 2273: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1883); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4610); END_STATE(); - case 2875: + case 2274: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1883); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1881); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1879); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1880); + if (lookahead == ',') ADVANCE(1591); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3905); END_STATE(); - case 2876: + case 2275: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1881); + if (lookahead == ',') ADVANCE(1591); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1589); END_STATE(); - case 2877: + case 2276: ACCEPT_TOKEN(anon_sym_def); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1883); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1882); + lookahead == '@') ADVANCE(1591); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1590); END_STATE(); - case 2878: + case 2277: ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1883); - END_STATE(); - case 2879: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1898); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1591); END_STATE(); - case 2880: + case 2278: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1898); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4649); + if (lookahead == ',') ADVANCE(1599); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3951); END_STATE(); - case 2881: + case 2279: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1897); + if (lookahead == ',') ADVANCE(1599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1598); END_STATE(); - case 2882: + case 2280: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); - END_STATE(); - case 2883: - ACCEPT_TOKEN(anon_sym_extern); - END_STATE(); - case 2884: - ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1904); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1900); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1902); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1599); END_STATE(); - case 2885: + case 2281: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1904); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4639); END_STATE(); - case 2886: + case 2282: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1904); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1902); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1901); + if (lookahead == ',') ADVANCE(1602); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3941); END_STATE(); - case 2887: + case 2283: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1902); + if (lookahead == ',') ADVANCE(1602); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1600); END_STATE(); - case 2888: + case 2284: ACCEPT_TOKEN(anon_sym_extern); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1904); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1903); + lookahead == '@') ADVANCE(1602); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1601); END_STATE(); - case 2889: + case 2285: ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); - END_STATE(); - case 2890: - ACCEPT_TOKEN(anon_sym_module); - END_STATE(); - case 2891: - ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1910); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1906); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1908); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1602); END_STATE(); - case 2892: + case 2286: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1910); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4640); END_STATE(); - case 2893: + case 2287: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1910); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1908); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1907); + if (lookahead == ',') ADVANCE(1605); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3942); END_STATE(); - case 2894: + case 2288: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1908); + if (lookahead == ',') ADVANCE(1605); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1603); END_STATE(); - case 2895: + case 2289: ACCEPT_TOKEN(anon_sym_module); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1910); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1909); + lookahead == '@') ADVANCE(1605); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1604); END_STATE(); - case 2896: + case 2290: ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1605); END_STATE(); - case 2897: + case 2291: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 2898: + case 2292: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1895); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1891); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1893); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1890); + if (lookahead == ',') ADVANCE(1597); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3913); END_STATE(); - case 2899: + case 2293: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1895); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4619); + if (lookahead == ',') ADVANCE(1597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1595); END_STATE(); - case 2900: + case 2294: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1895); - if (lookahead == '-' || - lookahead == '.' || + if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1893); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1892); - END_STATE(); - case 2901: - ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1893); + lookahead == '@') ADVANCE(1597); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1596); END_STATE(); - case 2902: + case 2295: ACCEPT_TOKEN(anon_sym_use); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1895); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1894); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2903: + case 2296: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1597); END_STATE(); - case 2904: + case 2297: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 2905: + case 2298: ACCEPT_TOKEN(anon_sym_COLON); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 2906: + case 2299: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 2907: + case 2300: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 2908: + case 2301: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 2909: + case 2302: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 2910: + case 2303: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 2911: + case 2304: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 2912: + case 2305: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 2913: + case 2306: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(3500); - if (lookahead == '\'') ADVANCE(3496); + if (lookahead == '"') ADVANCE(2799); + if (lookahead == '\'') ADVANCE(2795); END_STATE(); - case 2914: + case 2307: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(3500); - if (lookahead == '\'') ADVANCE(3496); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '"') ADVANCE(2799); + if (lookahead == '\'') ADVANCE(2795); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 2915: + case 2308: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(3501); - if (lookahead == '\'') ADVANCE(3497); + if (lookahead == '"') ADVANCE(2800); + if (lookahead == '\'') ADVANCE(2796); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); END_STATE(); - case 2916: + case 2309: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); END_STATE(); - case 2917: + case 2310: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 2918: + case 2311: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 2919: + case 2312: ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); - case 2920: - ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2018); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2014); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2016); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2013); - END_STATE(); - case 2921: - ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2018); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4632); - END_STATE(); - case 2922: + case 2313: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2018); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2016); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2015); + if (lookahead == ',') ADVANCE(1665); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3933); END_STATE(); - case 2923: + case 2314: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2016); + if (lookahead == ',') ADVANCE(1665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1663); END_STATE(); - case 2924: + case 2315: ACCEPT_TOKEN(anon_sym_error); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2018); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2017); + lookahead == '@') ADVANCE(1665); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1664); END_STATE(); - case 2925: + case 2316: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 2926: + case 2317: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1665); END_STATE(); - case 2927: + case 2318: ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); - case 2928: + case 2319: ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); - case 2929: + case 2320: ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); - case 2930: + case 2321: ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); - case 2931: - ACCEPT_TOKEN(anon_sym_list); - END_STATE(); - case 2932: - ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(2117); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2113); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2115); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2112); - END_STATE(); - case 2933: - ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(2117); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4625); - END_STATE(); - case 2934: - ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(2117); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2115); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2114); - END_STATE(); - case 2935: - ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ',') ADVANCE(2117); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2115); - END_STATE(); - case 2936: - ACCEPT_TOKEN(anon_sym_list); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2117); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2116); - END_STATE(); - case 2937: - ACCEPT_TOKEN(anon_sym_list); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2938: - ACCEPT_TOKEN(anon_sym_list); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2117); - END_STATE(); - case 2939: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 2940: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(3206); + case 2322: + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); - case 2941: - ACCEPT_TOKEN(anon_sym_GT); + case 2323: + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(2499); END_STATE(); - case 2942: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(3207); + case 2324: + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(2500); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 2943: + case 2325: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 2944: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - END_STATE(); - case 2945: + case 2326: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if (lookahead == '$') ADVANCE(3360); - if (lookahead == '(') ADVANCE(3269); - if (lookahead == '{') ADVANCE(3505); END_STATE(); - case 2946: + case 2327: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 2947: + case 2328: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 2948: + case 2329: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 2949: + case 2330: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 2950: + case 2331: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 2951: + case 2332: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 2952: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 2953: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2948); - END_STATE(); - case 2954: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2948); - if (lookahead == '.') ADVANCE(2246); - if (lookahead == '=') ADVANCE(1102); - if (lookahead == '_') ADVANCE(3582); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3586); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + case 2333: + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); - case 2955: - ACCEPT_TOKEN(anon_sym_DASH); - ADVANCE_MAP( - '-', 2948, - '.', 4230, - '=', 1102, - '_', 4220, - '\t', 3220, - ' ', 3220, - 'I', 4233, - 'i', 4233, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + case 2334: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(2329); END_STATE(); - case 2956: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2948); - if (lookahead == '.') ADVANCE(613); - if (lookahead == '_') ADVANCE(568); + case 2335: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(2329); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '_') ADVANCE(442); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + lookahead == 'i') ADVANCE(666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); END_STATE(); - case 2957: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2948); - if (lookahead == '.') ADVANCE(614); - if (lookahead == '_') ADVANCE(573); + case 2336: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(2329); + if (lookahead == '.') ADVANCE(473); + if (lookahead == '_') ADVANCE(447); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + lookahead == 'i') ADVANCE(666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); END_STATE(); - case 2958: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2948); - if (lookahead == '.') ADVANCE(614); - if (lookahead == '_') ADVANCE(573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + case 2337: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(2329); + if (lookahead == '.') ADVANCE(473); + if (lookahead == '_') ADVANCE(447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); END_STATE(); - case 2959: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2948); - if (lookahead == '.') ADVANCE(3892); - if (lookahead == '_') ADVANCE(3871); + case 2338: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(2329); + if (lookahead == '.') ADVANCE(3107); + if (lookahead == '_') ADVANCE(3080); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + lookahead == 'i') ADVANCE(3224); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); END_STATE(); - case 2960: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2948); - if (lookahead == '.') ADVANCE(4340); - if (lookahead == '_') ADVANCE(4322); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + case 2339: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(2329); + if (lookahead == '.') ADVANCE(3632); + if (lookahead == '_') ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); END_STATE(); - case 2961: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2948); - if (lookahead == '.') ADVANCE(3897); - if (lookahead == '_') ADVANCE(3872); + case 2340: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(2329); + if (lookahead == '.') ADVANCE(3111); + if (lookahead == '_') ADVANCE(3081); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - END_STATE(); - case 2962: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2948); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3220); + lookahead == 'i') ADVANCE(3224); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); END_STATE(); - case 2963: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2951); - if (lookahead == '.') ADVANCE(4037); - if (lookahead == '_') ADVANCE(4016); + case 2341: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(2332); + if (lookahead == '.') ADVANCE(3300); + if (lookahead == '_') ADVANCE(3276); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4182); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'i') ADVANCE(3474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 2964: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2951); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + case 2342: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(2332); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 2965: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2949); - if (lookahead == '.') ADVANCE(613); - if (lookahead == '_') ADVANCE(3665); + case 2343: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(2330); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '_') ADVANCE(2889); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'i') ADVANCE(2926); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 2966: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2949); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + case 2344: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(2330); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 2967: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2950); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + case 2345: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(2331); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 2968: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(613); - if (lookahead == '=') ADVANCE(1102); - if (lookahead == '_') ADVANCE(568); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3220); + case 2346: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '=') ADVANCE(859); + if (lookahead == '_') ADVANCE(442); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + lookahead == 'i') ADVANCE(663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); END_STATE(); - case 2969: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(613); - if (lookahead == '=') ADVANCE(1102); - if (lookahead == '_') ADVANCE(568); + case 2347: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '_') ADVANCE(442); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + lookahead == 'i') ADVANCE(663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); END_STATE(); - case 2970: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(613); - if (lookahead == '_') ADVANCE(568); + case 2348: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '_') ADVANCE(442); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + lookahead == 'i') ADVANCE(666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); END_STATE(); - case 2971: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(613); - if (lookahead == '_') ADVANCE(3665); + case 2349: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '_') ADVANCE(2889); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'i') ADVANCE(2926); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 2972: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4567); - if (lookahead == '_') ADVANCE(4559); + case 2350: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(3859); + if (lookahead == '_') ADVANCE(3851); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4587); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + lookahead == 'i') ADVANCE(3878); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); END_STATE(); - case 2973: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4658); - if (lookahead == '_') ADVANCE(4651); + case 2351: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(3960); + if (lookahead == '_') ADVANCE(3953); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4762); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4658); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + lookahead == 'i') ADVANCE(4056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); END_STATE(); - case 2974: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4037); - if (lookahead == '_') ADVANCE(4016); + case 2352: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(3300); + if (lookahead == '_') ADVANCE(3276); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4182); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'i') ADVANCE(3474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 2975: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(614); - if (lookahead == '_') ADVANCE(573); + case 2353: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(473); + if (lookahead == '_') ADVANCE(447); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + lookahead == 'i') ADVANCE(663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); END_STATE(); - case 2976: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4568); - if (lookahead == '_') ADVANCE(4561); + case 2354: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(3860); + if (lookahead == '_') ADVANCE(3853); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4587); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + lookahead == 'i') ADVANCE(3878); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); END_STATE(); - case 2977: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(3897); - if (lookahead == '_') ADVANCE(3872); + case 2355: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(3111); + if (lookahead == '_') ADVANCE(3081); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - END_STATE(); - case 2978: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - END_STATE(); - case 2979: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '+') ADVANCE(2351); - if (lookahead == '-') ADVANCE(3532); - if (lookahead == 'I') ADVANCE(2628); - if (lookahead == '_') ADVANCE(2351); - if (lookahead == 'i') ADVANCE(2377); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3423); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3342); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2980: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - ADVANCE_MAP( - '+', 2350, - '-', 3532, - '>', 3605, - 'I', 2628, - '_', 2351, - 'i', 2628, - 'l', 2563, - 'n', 2390, - 'r', 2520, - 'x', 2514, - 'B', 3423, - 'b', 3423, - ); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3342); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2981: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '+') ADVANCE(2417); - if (lookahead == '>') ADVANCE(3609); - if (lookahead == 'n') ADVANCE(2395); - if (lookahead == 'r') ADVANCE(3194); - if (lookahead == 'u') ADVANCE(2581); - if (lookahead == 'v') ADVANCE(2420); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2982: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - ADVANCE_MAP( - ',', 3490, - ':', 3490, - '=', 3490, - 'u', 2626, - 'x', 2641, - '-', 3490, - '@', 3490, - '.', 3490, - '?', 3490, - '<', 3490, - '>', 3490, - '"', 3490, - '\'', 3490, - '`', 3490, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ';' || - lookahead == '[' || - lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(3490); - if (lookahead != 0) ADVANCE(3491); - END_STATE(); - case 2983: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '=') ADVANCE(3203); - if (lookahead == '~') ADVANCE(3209); - END_STATE(); - case 2984: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '=') ADVANCE(1104); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2644); - END_STATE(); - case 2985: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - ADVANCE_MAP( - 'I', 2628, - 'a', 2458, - 'i', 2485, - 'o', 2389, - 's', 3429, - 'u', 2579, - 'B', 3424, - 'b', 3424, - ); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2986: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'I') ADVANCE(2628); - if (lookahead == 'i') ADVANCE(2628); - if (lookahead == 'r') ADVANCE(2608); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2987: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'I') ADVANCE(2628); - if (lookahead == 'i') ADVANCE(2628); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2988: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'I') ADVANCE(2628); - if (lookahead == 'i') ADVANCE(2377); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3424); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2989: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'N') ADVANCE(2629); - if (lookahead == 'f') ADVANCE(3069); - if (lookahead == 'm') ADVANCE(2515); - if (lookahead == 'n') ADVANCE(3032); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2990: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '_') ADVANCE(3319); - if (lookahead == 'b') ADVANCE(3414); - if (lookahead == 'o') ADVANCE(3430); - if (lookahead == 'x') ADVANCE(3436); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3321); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2991: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '_') ADVANCE(3319); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3321); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2992: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '`') ADVANCE(3488); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ',' || - lookahead == '.' || - lookahead == ':' || - lookahead == ';' || - lookahead == '?' || - lookahead == '[' || - lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(626); - if (lookahead != 0) ADVANCE(3583); - END_STATE(); - case 2993: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2592); - if (lookahead == 'e') ADVANCE(2461); - if (lookahead == 'o') ADVANCE(2486); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2994: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2622); - if (lookahead == 'e') ADVANCE(2436); - if (lookahead == 'o') ADVANCE(3062); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2995: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2476); - if (lookahead == 'o') ADVANCE(2521); - if (lookahead == 'u') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2996: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2532); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2997: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2578); - if (lookahead == 'i') ADVANCE(2562); - if (lookahead == 'o') ADVANCE(2497); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2998: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2620); - if (lookahead == 'o') ADVANCE(2580); - if (lookahead == 's') ADVANCE(3429); - if (lookahead == 'u') ADVANCE(2462); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2632); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 2999: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2438); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 3000: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2378); - if (lookahead == 'o') ADVANCE(2607); - if (lookahead == 't') ADVANCE(2370); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 3001: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'h') ADVANCE(2424); - if (lookahead == 'k') ADVANCE(3429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + lookahead == 'i') ADVANCE(3224); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); END_STATE(); - case 3002: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'i') ADVANCE(2392); - if (lookahead == 'r') ADVANCE(3429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 3003: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2447); - if (lookahead == 'n') ADVANCE(2386); - if (lookahead == 's') ADVANCE(3169); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 3004: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'o') ADVANCE(2522); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 3005: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2418); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 3006: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 's') ADVANCE(3429); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 3007: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 's') ADVANCE(3426); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 3008: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2632); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 3009: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2629); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2356: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '=') ADVANCE(859); END_STATE(); - case 3010: - ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2357: + ACCEPT_TOKEN(anon_sym_DASH2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3011: + case 2358: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 3012: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2060); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2056); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2058); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2055); - END_STATE(); - case 3013: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2060); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4629); END_STATE(); - case 3014: + case 2359: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2060); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2058); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2057); + if (lookahead == ',') ADVANCE(1686); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3930); END_STATE(); - case 3015: + case 2360: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2058); + if (lookahead == ',') ADVANCE(1686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1684); END_STATE(); - case 3016: + case 2361: ACCEPT_TOKEN(anon_sym_break); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2059); + lookahead == '@') ADVANCE(1686); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1685); END_STATE(); - case 3017: + case 2362: ACCEPT_TOKEN(anon_sym_break); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2060); - END_STATE(); - case 3018: - ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2066); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2062); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2064); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2061); - END_STATE(); - case 3019: - ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2066); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1686); END_STATE(); - case 3020: + case 2363: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2066); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2064); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2063); + if (lookahead == ',') ADVANCE(1689); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3949); END_STATE(); - case 3021: + case 2364: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2064); + if (lookahead == ',') ADVANCE(1689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1687); END_STATE(); - case 3022: + case 2365: ACCEPT_TOKEN(anon_sym_continue); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2066); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2065); + lookahead == '@') ADVANCE(1689); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1688); END_STATE(); - case 3023: + case 2366: ACCEPT_TOKEN(anon_sym_continue); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2066); - END_STATE(); - case 3024: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2000); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1996); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1998); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1995); - END_STATE(); - case 3025: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2000); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1689); END_STATE(); - case 3026: + case 2367: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2000); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1998); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1997); + if (lookahead == ',') ADVANCE(1656); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); END_STATE(); - case 3027: + case 2368: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); + if (lookahead == ',') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1654); END_STATE(); - case 3028: + case 2369: ACCEPT_TOKEN(anon_sym_for); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2000); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1999); + lookahead == '@') ADVANCE(1656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1655); END_STATE(); - case 3029: + case 2370: ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2000); - END_STATE(); - case 3030: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); - case 3031: - ACCEPT_TOKEN(anon_sym_in); - ADVANCE_MAP( - '\n', 3259, - '\r', 11, - ',', 2111, - '\t', 3231, - ' ', 3231, - 'F', 2086, - 'f', 2086, - '-', 2097, - '.', 2097, - '?', 2097, - '@', 2097, - ); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); - END_STATE(); - case 3032: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2085); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2097); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2079); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1656); END_STATE(); - case 3033: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); + case 2371: + ACCEPT_TOKEN(anon_sym_in2); END_STATE(); - case 3034: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ',') ADVANCE(2111); + case 2372: + ACCEPT_TOKEN(anon_sym_in2); + if (lookahead == ',') ADVANCE(1713); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4604); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); + lookahead == 'f') ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1701); END_STATE(); - case 3035: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3231); + case 2373: + ACCEPT_TOKEN(anon_sym_in2); + if (lookahead == ',') ADVANCE(1713); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2102); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + lookahead == 'f') ADVANCE(3892); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); END_STATE(); - case 3036: - ACCEPT_TOKEN(anon_sym_in); + case 2374: + ACCEPT_TOKEN(anon_sym_in2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2100); + lookahead == 'f') ADVANCE(1702); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2111); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); + lookahead == '@') ADVANCE(1713); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1712); END_STATE(); - case 3037: - ACCEPT_TOKEN(anon_sym_in); + case 2375: + ACCEPT_TOKEN(anon_sym_in2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2102); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); - END_STATE(); - case 3038: - ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + lookahead == 'f') ADVANCE(1704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); - case 3039: - ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); - END_STATE(); - case 3040: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2376: + ACCEPT_TOKEN(anon_sym_in2); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 3041: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + case 2377: + ACCEPT_TOKEN(anon_sym_in2); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3042: - ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2006); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2002); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2004); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2001); + case 2378: + ACCEPT_TOKEN(anon_sym_in2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 3043: - ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2006); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4626); + case 2379: + ACCEPT_TOKEN(anon_sym_in2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3044: + case 2380: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2006); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2004); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2003); + if (lookahead == ',') ADVANCE(1659); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3925); END_STATE(); - case 3045: + case 2381: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2004); + if (lookahead == ',') ADVANCE(1659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1657); END_STATE(); - case 3046: + case 2382: ACCEPT_TOKEN(anon_sym_loop); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2006); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2005); + lookahead == '@') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1658); END_STATE(); - case 3047: + case 2383: ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2006); - END_STATE(); - case 3048: - ACCEPT_TOKEN(anon_sym_make); - END_STATE(); - case 3049: - ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(2129); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2125); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2127); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2124); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1659); END_STATE(); - case 3050: + case 2384: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(2129); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4627); END_STATE(); - case 3051: + case 2385: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(2129); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2127); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2126); + if (lookahead == ',') ADVANCE(1716); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3926); END_STATE(); - case 3052: + case 2386: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(2129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2127); + if (lookahead == ',') ADVANCE(1716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1714); END_STATE(); - case 3053: + case 2387: ACCEPT_TOKEN(anon_sym_make); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2129); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2128); + lookahead == '@') ADVANCE(1716); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1715); END_STATE(); - case 3054: + case 2388: ACCEPT_TOKEN(anon_sym_make); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2129); - END_STATE(); - case 3055: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2012); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2008); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2010); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2007); - END_STATE(); - case 3056: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2012); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1716); END_STATE(); - case 3057: + case 2389: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2012); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2010); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2009); + if (lookahead == ',') ADVANCE(1662); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3936); END_STATE(); - case 3058: + case 2390: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2010); + if (lookahead == ',') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1660); END_STATE(); - case 3059: + case 2391: ACCEPT_TOKEN(anon_sym_while); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2012); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2011); + lookahead == '@') ADVANCE(1662); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1661); END_STATE(); - case 3060: + case 2392: ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2012); - END_STATE(); - case 3061: - ACCEPT_TOKEN(anon_sym_do); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1662); END_STATE(); - case 3062: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2024); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2020); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2022); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2019); - END_STATE(); - case 3063: + case 2393: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2024); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4602); END_STATE(); - case 3064: + case 2394: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2024); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2022); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2021); + if (lookahead == ',') ADVANCE(1668); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3890); END_STATE(); - case 3065: + case 2395: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2022); + if (lookahead == ',') ADVANCE(1668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1666); END_STATE(); - case 3066: + case 2396: ACCEPT_TOKEN(anon_sym_do); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2023); + lookahead == '@') ADVANCE(1668); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1667); END_STATE(); - case 3067: + case 2397: ACCEPT_TOKEN(anon_sym_do); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2024); - END_STATE(); - case 3068: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 3069: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2026); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2028); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1668); END_STATE(); - case 3070: + case 2398: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2030); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4603); END_STATE(); - case 3071: + case 2399: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2030); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2028); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2027); + if (lookahead == ',') ADVANCE(1671); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3891); END_STATE(); - case 3072: + case 2400: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2028); + if (lookahead == ',') ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1669); END_STATE(); - case 3073: + case 2401: ACCEPT_TOKEN(anon_sym_if); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2029); + lookahead == '@') ADVANCE(1671); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1670); END_STATE(); - case 3074: + case 2402: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1671); END_STATE(); - case 3075: + case 2403: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); - END_STATE(); - case 3076: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 3077: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2036); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2032); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2034); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2031); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3078: + case 2404: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2036); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4620); END_STATE(); - case 3079: + case 2405: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2036); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2034); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2033); + if (lookahead == ',') ADVANCE(1674); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3920); END_STATE(); - case 3080: + case 2406: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2034); + if (lookahead == ',') ADVANCE(1674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1672); END_STATE(); - case 3081: + case 2407: ACCEPT_TOKEN(anon_sym_else); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2036); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2035); - END_STATE(); - case 3082: - ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + lookahead == '@') ADVANCE(1674); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1673); END_STATE(); - case 3083: + case 2408: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2036); - END_STATE(); - case 3084: - ACCEPT_TOKEN(anon_sym_match); - END_STATE(); - case 3085: - ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2054); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2050); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2052); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1674); END_STATE(); - case 3086: + case 2409: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2054); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 3087: + case 2410: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2054); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2052); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2051); + if (lookahead == ',') ADVANCE(1683); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3935); END_STATE(); - case 3088: + case 2411: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); + if (lookahead == ',') ADVANCE(1683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1681); END_STATE(); - case 3089: + case 2412: ACCEPT_TOKEN(anon_sym_match); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2054); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2053); + lookahead == '@') ADVANCE(1683); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1682); END_STATE(); - case 3090: + case 2413: ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1683); END_STATE(); - case 3091: + case 2414: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 3092: + case 2415: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 3093: + case 2416: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 3094: + case 2417: ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); - END_STATE(); - case 3095: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(3769); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3096: + case 2418: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2353); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '_') ADVANCE(1972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1972); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 3097: + case 2419: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2358); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2358); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 3098: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2945); - if (lookahead == '<') ADVANCE(3309); - if (lookahead == '=') ADVANCE(3306); + if (lookahead == '_') ADVANCE(2979); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); END_STATE(); - case 3099: + case 2420: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1113); - if (lookahead == '<') ADVANCE(3309); - if (lookahead == '=') ADVANCE(3306); + if (lookahead == '.') ADVANCE(864); + if (lookahead == '<') ADVANCE(2579); + if (lookahead == '=') ADVANCE(2576); END_STATE(); - case 3100: + case 2421: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(3729); - if (lookahead == '<') ADVANCE(3309); - if (lookahead == '=') ADVANCE(3306); + if (lookahead == '.') ADVANCE(2951); + if (lookahead == '<') ADVANCE(2579); + if (lookahead == '=') ADVANCE(2576); END_STATE(); - case 3101: + case 2422: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(4213); - if (lookahead == '<') ADVANCE(3309); - if (lookahead == '=') ADVANCE(3306); + if (lookahead == '.') ADVANCE(3506); + if (lookahead == '<') ADVANCE(2579); + if (lookahead == '=') ADVANCE(2576); END_STATE(); - case 3102: + case 2423: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3309); - if (lookahead == '=') ADVANCE(3306); + if (lookahead == '<') ADVANCE(2579); + if (lookahead == '=') ADVANCE(2576); END_STATE(); - case 3103: + case 2424: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3311); - if (lookahead == '=') ADVANCE(3308); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '<') ADVANCE(2581); + if (lookahead == '=') ADVANCE(2578); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3104: + case 2425: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3310); - if (lookahead == '=') ADVANCE(3307); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '<') ADVANCE(2580); + if (lookahead == '=') ADVANCE(2577); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3105: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - END_STATE(); - case 3106: + case 2426: ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(3500); - if (lookahead == '\'') ADVANCE(3496); - END_STATE(); - case 3107: - ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 3108: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2042); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2038); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2040); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); - END_STATE(); - case 3109: + case 2427: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2042); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); END_STATE(); - case 3110: + case 2428: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2042); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2040); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2039); + if (lookahead == ',') ADVANCE(1677); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3912); END_STATE(); - case 3111: + case 2429: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); + if (lookahead == ',') ADVANCE(1677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1675); END_STATE(); - case 3112: + case 2430: ACCEPT_TOKEN(anon_sym_try); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2042); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2041); + lookahead == '@') ADVANCE(1677); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1676); END_STATE(); - case 3113: + case 2431: ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2042); - END_STATE(); - case 3114: - ACCEPT_TOKEN(anon_sym_catch); - END_STATE(); - case 3115: - ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2048); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2044); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1677); END_STATE(); - case 3116: + case 2432: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2048); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4630); END_STATE(); - case 3117: + case 2433: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2048); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2045); + if (lookahead == ',') ADVANCE(1680); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3931); END_STATE(); - case 3118: + case 2434: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2046); + if (lookahead == ',') ADVANCE(1680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1678); END_STATE(); - case 3119: + case 2435: ACCEPT_TOKEN(anon_sym_catch); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2048); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2047); - END_STATE(); - case 3120: - ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + lookahead == '@') ADVANCE(1680); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1679); END_STATE(); - case 3121: + case 2436: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1680); END_STATE(); - case 3122: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2072); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2068); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2070); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2067); - END_STATE(); - case 3123: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2072); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); - END_STATE(); - case 3124: + case 2437: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2072); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2070); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2069); + if (lookahead == ',') ADVANCE(1692); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3943); END_STATE(); - case 3125: + case 2438: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2070); + if (lookahead == ',') ADVANCE(1692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1690); END_STATE(); - case 3126: + case 2439: ACCEPT_TOKEN(anon_sym_return); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2072); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2071); + lookahead == '@') ADVANCE(1692); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1691); END_STATE(); - case 3127: + case 2440: ACCEPT_TOKEN(anon_sym_return); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2072); - END_STATE(); - case 3128: - ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == '-') ADVANCE(1963); - if (lookahead == '@') ADVANCE(1970); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1972); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1969); - END_STATE(); - case 3129: - ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == '-') ADVANCE(1964); - if (lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1972); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1692); END_STATE(); - case 3130: + case 2441: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == '-') ADVANCE(1964); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); + if (lookahead == ',') ADVANCE(1647); + if (lookahead == '-') ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1639); END_STATE(); - case 3131: + case 2442: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == '-') ADVANCE(4642); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); + if (lookahead == ',') ADVANCE(1647); + if (lookahead == '-') ADVANCE(3944); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); - case 3132: + case 2443: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1975); + if (lookahead == '-') ADVANCE(1640); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1982); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1981); + lookahead == '@') ADVANCE(1647); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1646); END_STATE(); - case 3133: + case 2444: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); - END_STATE(); - case 3134: - ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); + if (lookahead == '-') ADVANCE(1640); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 3135: + case 2445: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(1982); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); + if (lookahead == ',') ADVANCE(1647); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); - case 3136: + case 2446: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(1982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); + if (lookahead == ',') ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1639); END_STATE(); - case 3137: + case 2447: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); - END_STATE(); - case 3138: - ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(1994); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1990); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1992); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1989); - END_STATE(); - case 3139: - ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(1994); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); - case 3140: + case 2448: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(1994); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1992); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1991); + if (lookahead == ',') ADVANCE(1653); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3950); END_STATE(); - case 3141: + case 2449: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(1994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1992); + if (lookahead == ',') ADVANCE(1653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1651); END_STATE(); - case 3142: + case 2450: ACCEPT_TOKEN(anon_sym_register); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1994); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1993); + lookahead == '@') ADVANCE(1653); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1652); END_STATE(); - case 3143: + case 2451: ACCEPT_TOKEN(anon_sym_register); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1994); - END_STATE(); - case 3144: - ACCEPT_TOKEN(anon_sym_hide); - END_STATE(); - case 3145: - ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == '-') ADVANCE(1943); - if (lookahead == '@') ADVANCE(1950); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1952); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1949); - END_STATE(); - case 3146: - ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == '-') ADVANCE(1944); - if (lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1952); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1653); END_STATE(); - case 3147: + case 2452: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == '-') ADVANCE(1944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); + if (lookahead == ',') ADVANCE(1635); + if (lookahead == '-') ADVANCE(1624); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1627); END_STATE(); - case 3148: + case 2453: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == '-') ADVANCE(4621); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); + if (lookahead == ',') ADVANCE(1635); + if (lookahead == '-') ADVANCE(3921); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); END_STATE(); - case 3149: + case 2454: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1955); + if (lookahead == '-') ADVANCE(1628); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1962); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1961); + lookahead == '@') ADVANCE(1635); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1634); END_STATE(); - case 3150: + case 2455: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if (lookahead == '-') ADVANCE(1628); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 3151: - ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1952); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1950); + case 2456: + ACCEPT_TOKEN(anon_sym_hide); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 3152: + case 2457: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(1962); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); + if (lookahead == ',') ADVANCE(1635); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); END_STATE(); - case 3153: + case 2458: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(1962); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); + if (lookahead == ',') ADVANCE(1635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1627); END_STATE(); - case 3154: + case 2459: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1635); END_STATE(); - case 3155: + case 2460: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1988); - if (lookahead == '-' || - lookahead == '@') ADVANCE(1984); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1986); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1983); + if (lookahead == ',') ADVANCE(1650); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3948); END_STATE(); - case 3156: + case 2461: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1988); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4646); + if (lookahead == ',') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1648); END_STATE(); - case 3157: + case 2462: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1988); - if (lookahead == '-' || - lookahead == '.' || + if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1986); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1985); + lookahead == '@') ADVANCE(1650); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1649); END_STATE(); - case 3158: + case 2463: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1650); END_STATE(); - case 3159: - ACCEPT_TOKEN(anon_sym_overlay); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1988); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1987); + case 2464: + ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 3160: - ACCEPT_TOKEN(anon_sym_overlay); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); + case 2465: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == ',') ADVANCE(1695); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3889); END_STATE(); - case 3161: - ACCEPT_TOKEN(anon_sym_new); + case 2466: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == ',') ADVANCE(1695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1693); END_STATE(); - case 3162: - ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(2123); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2119); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2121); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2118); + case 2467: + ACCEPT_TOKEN(anon_sym_as); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1695); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1694); END_STATE(); - case 3163: - ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(2123); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4617); + case 2468: + ACCEPT_TOKEN(anon_sym_as); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 3164: - ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(2123); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2121); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2120); - END_STATE(); - case 3165: - ACCEPT_TOKEN(anon_sym_new); - if (lookahead == ',') ADVANCE(2123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2121); - END_STATE(); - case 3166: - ACCEPT_TOKEN(anon_sym_new); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2123); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2122); - END_STATE(); - case 3167: - ACCEPT_TOKEN(anon_sym_new); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2123); - END_STATE(); - case 3168: - ACCEPT_TOKEN(anon_sym_as); - END_STATE(); - case 3169: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2078); - if (lookahead == '-' || - lookahead == '@') ADVANCE(2074); - if (lookahead == '.' || - lookahead == '?') ADVANCE(2076); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2073); - END_STATE(); - case 3170: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2078); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4601); - END_STATE(); - case 3171: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2078); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(2076); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2075); - END_STATE(); - case 3172: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2076); - END_STATE(); - case 3173: - ACCEPT_TOKEN(anon_sym_as); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2078); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2077); - END_STATE(); - case 3174: + case 2469: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3175: + case 2470: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1695); END_STATE(); - case 3176: + case 2471: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3177: - ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + case 2472: + ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); - case 3178: - ACCEPT_TOKEN(sym_wild_card); + case 2473: + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(2507); END_STATE(); - case 3179: - ACCEPT_TOKEN(sym_wild_card); - if (lookahead == '*') ADVANCE(1106); - if (lookahead == '=') ADVANCE(1103); + case 2474: + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(2507); + if (lookahead == '=') ADVANCE(860); END_STATE(); - case 3180: - ACCEPT_TOKEN(sym_wild_card); - if (lookahead == '=') ADVANCE(1103); + case 2475: + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(2508); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3181: + case 2476: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 3182: - ACCEPT_TOKEN(anon_sym_where); - END_STATE(); - case 3183: + case 2477: ACCEPT_TOKEN(anon_sym_where); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3184: - ACCEPT_TOKEN(anon_sym_and); + case 2478: + ACCEPT_TOKEN(anon_sym_and2); END_STATE(); - case 3185: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '\n') ADVANCE(3256); - if (lookahead == '\r') ADVANCE(13); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3228); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2479: + ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3186: - ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2480: + ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); - case 3187: - ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + case 2481: + ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3188: - ACCEPT_TOKEN(anon_sym_xor); + case 2482: + ACCEPT_TOKEN(anon_sym_or2); END_STATE(); - case 3189: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '\n') ADVANCE(3257); - if (lookahead == '\r') ADVANCE(15); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3229); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2483: + ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3190: - ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2484: + ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); - case 3191: - ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + case 2485: + ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3192: - ACCEPT_TOKEN(anon_sym_or); + case 2486: + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); - case 3193: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '\n') ADVANCE(3258); - if (lookahead == '\r') ADVANCE(12); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3230); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2487: + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3194: - ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2488: + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); - case 3195: - ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + case 2489: + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3196: - ACCEPT_TOKEN(anon_sym_not_DASHin); + case 2490: + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); - case 3197: - ACCEPT_TOKEN(anon_sym_not_DASHin); - if (lookahead == '\n') ADVANCE(3260); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3232); + case 2491: + ACCEPT_TOKEN(anon_sym_EQ_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3198: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + case 2492: + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); - case 3199: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (lookahead == '\n') ADVANCE(3261); - if (lookahead == '\r') ADVANCE(23); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3233); + case 2493: + ACCEPT_TOKEN(anon_sym_BANG_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3200: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + case 2494: + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); - case 3201: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (lookahead == '\n') ADVANCE(3262); - if (lookahead == '\r') ADVANCE(22); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3234); + case 2495: + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(2497); END_STATE(); - case 3202: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + case 2496: + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(2498); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3203: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + case 2497: + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); - case 3204: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\n') ADVANCE(3264); - if (lookahead == '\r') ADVANCE(5); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3236); + case 2498: + ACCEPT_TOKEN(anon_sym_LT_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3205: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(3206); + case 2499: + ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); - case 3206: - ACCEPT_TOKEN(anon_sym_LT_EQ); + case 2500: + ACCEPT_TOKEN(anon_sym_GT_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3207: - ACCEPT_TOKEN(anon_sym_GT_EQ); + case 2501: + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); - case 3208: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + case 2502: + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3209: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + case 2503: + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); - case 3210: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if (lookahead == '\n') ADVANCE(3252); - if (lookahead == '\r') ADVANCE(6); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3224); + case 2504: + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3211: + case 2505: ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); - case 3212: + case 2506: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 3213: - ACCEPT_TOKEN(aux_sym_expr_binary_token1); - END_STATE(); - case 3214: - ACCEPT_TOKEN(aux_sym_expr_binary_token2); - END_STATE(); - case 3215: - ACCEPT_TOKEN(aux_sym_expr_binary_token3); - END_STATE(); - case 3216: - ACCEPT_TOKEN(aux_sym_expr_binary_token4); - END_STATE(); - case 3217: - ACCEPT_TOKEN(aux_sym_expr_binary_token5); - END_STATE(); - case 3218: - ACCEPT_TOKEN(aux_sym_expr_binary_token6); - END_STATE(); - case 3219: - ACCEPT_TOKEN(aux_sym_expr_binary_token7); - END_STATE(); - case 3220: - ACCEPT_TOKEN(aux_sym_expr_binary_token8); - END_STATE(); - case 3221: - ACCEPT_TOKEN(aux_sym_expr_binary_token9); - END_STATE(); - case 3222: - ACCEPT_TOKEN(aux_sym_expr_binary_token10); - END_STATE(); - case 3223: - ACCEPT_TOKEN(aux_sym_expr_binary_token11); - END_STATE(); - case 3224: - ACCEPT_TOKEN(aux_sym_expr_binary_token12); - END_STATE(); - case 3225: - ACCEPT_TOKEN(aux_sym_expr_binary_token13); - END_STATE(); - case 3226: - ACCEPT_TOKEN(aux_sym_expr_binary_token14); - END_STATE(); - case 3227: - ACCEPT_TOKEN(aux_sym_expr_binary_token15); - END_STATE(); - case 3228: - ACCEPT_TOKEN(aux_sym_expr_binary_token16); - END_STATE(); - case 3229: - ACCEPT_TOKEN(aux_sym_expr_binary_token17); - END_STATE(); - case 3230: - ACCEPT_TOKEN(aux_sym_expr_binary_token18); - END_STATE(); - case 3231: - ACCEPT_TOKEN(aux_sym_expr_binary_token19); - END_STATE(); - case 3232: - ACCEPT_TOKEN(aux_sym_expr_binary_token20); - END_STATE(); - case 3233: - ACCEPT_TOKEN(aux_sym_expr_binary_token21); - END_STATE(); - case 3234: - ACCEPT_TOKEN(aux_sym_expr_binary_token22); - END_STATE(); - case 3235: - ACCEPT_TOKEN(aux_sym_expr_binary_token23); - END_STATE(); - case 3236: - ACCEPT_TOKEN(aux_sym_expr_binary_token24); + case 2507: + ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); - case 3237: - ACCEPT_TOKEN(aux_sym_expr_binary_token25); + case 2508: + ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3238: - ACCEPT_TOKEN(aux_sym_expr_binary_token26); + case 2509: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); - case 3239: - ACCEPT_TOKEN(aux_sym_expr_binary_token27); + case 2510: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if (lookahead == '=') ADVANCE(862); END_STATE(); - case 3240: - ACCEPT_TOKEN(aux_sym_expr_binary_token28); + case 2511: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3241: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token1); + case 2512: + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(2519); END_STATE(); - case 3242: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token2); + case 2513: + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(2519); + if (lookahead == '=') ADVANCE(861); END_STATE(); - case 3243: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token3); + case 2514: + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(2520); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3244: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token4); + case 2515: + ACCEPT_TOKEN(anon_sym_SLASH2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 3245: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token5); + case 2516: + ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); - case 3246: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token6); + case 2517: + ACCEPT_TOKEN(anon_sym_mod2); + if (lookahead == 'u') ADVANCE(1413); END_STATE(); - case 3247: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token7); + case 2518: + ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3248: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token8); + case 2519: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); - case 3249: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token9); + case 2520: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3250: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token10); + case 2521: + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(2509); END_STATE(); - case 3251: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token11); + case 2522: + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(2510); + if (lookahead == '.') ADVANCE(1287); + if (lookahead == '=') ADVANCE(858); + if (lookahead == '_') ADVANCE(1025); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); END_STATE(); - case 3252: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token12); + case 2523: + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(2510); + if (lookahead == '=') ADVANCE(858); END_STATE(); - case 3253: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token13); + case 2524: + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(2511); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3254: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token14); + case 2525: + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(1287); + if (lookahead == '_') ADVANCE(1025); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); END_STATE(); - case 3255: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token15); + case 2526: + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(3959); + if (lookahead == '_') ADVANCE(3952); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 3256: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token16); + case 2527: + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(888); + if (lookahead == '_') ADVANCE(877); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); END_STATE(); - case 3257: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token17); + case 2528: + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(1292); + if (lookahead == '_') ADVANCE(1033); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); END_STATE(); - case 3258: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token18); + case 2529: + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(893); + if (lookahead == '_') ADVANCE(878); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); END_STATE(); - case 3259: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token19); + case 2530: + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); - case 3260: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token20); + case 2531: + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3261: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token21); + case 2532: + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); - case 3262: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token22); + case 2533: + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3263: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token23); + case 2534: + ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); - case 3264: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token24); + case 2535: + ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3265: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token25); + case 2536: + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); - case 3266: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token26); + case 2537: + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3267: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token27); + case 2538: + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); - case 3268: - ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token28); + case 2539: + ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3269: + case 2540: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); - case 3270: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(2945); - if (lookahead == '<') ADVANCE(3313); - if (lookahead == '=') ADVANCE(3312); - END_STATE(); - case 3271: + case 2541: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1113); - if (lookahead == '<') ADVANCE(3313); - if (lookahead == '=') ADVANCE(3312); + if (lookahead == '.') ADVANCE(864); + if (lookahead == '<') ADVANCE(2583); + if (lookahead == '=') ADVANCE(2582); END_STATE(); - case 3272: + case 2542: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1112); - if (lookahead == '<') ADVANCE(3313); - if (lookahead == '=') ADVANCE(3312); + if (lookahead == '.') ADVANCE(863); + if (lookahead == '<') ADVANCE(2583); + if (lookahead == '=') ADVANCE(2582); END_STATE(); - case 3273: + case 2543: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(2944); - if (lookahead == '<') ADVANCE(3313); - if (lookahead == '=') ADVANCE(3312); + if (lookahead == '.') ADVANCE(2326); + if (lookahead == '<') ADVANCE(2583); + if (lookahead == '=') ADVANCE(2582); END_STATE(); - case 3274: + case 2544: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(3313); - if (lookahead == '=') ADVANCE(3312); + if (lookahead == '<') ADVANCE(2583); + if (lookahead == '=') ADVANCE(2582); END_STATE(); - case 3275: + case 2545: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 3276: + case 2546: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3270); - if (lookahead == '_') ADVANCE(1148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3346); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(2981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); END_STATE(); - case 3277: + case 2547: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(3771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); END_STATE(); - case 3278: + case 2548: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(4246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2614); END_STATE(); - case 3279: + case 2549: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(3893); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3349); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); END_STATE(); - case 3280: + case 2550: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(4341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(475); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2696); END_STATE(); - case 3281: + case 2551: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(2985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2615); END_STATE(); - case 3282: + case 2552: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(3775); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); END_STATE(); - case 3283: + case 2553: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(4251); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); END_STATE(); - case 3284: + case 2554: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(3898); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3637); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); END_STATE(); - case 3285: + case 2555: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(4346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if (lookahead == '.') ADVANCE(2541); + if (lookahead == '_') ADVANCE(1288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); END_STATE(); - case 3286: + case 2556: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1339); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); + if (lookahead == '.') ADVANCE(1028); + if (lookahead == '_') ADVANCE(1288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); END_STATE(); - case 3287: + case 2557: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1133); - if (lookahead == '_') ADVANCE(1148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3346); + if (lookahead == '.') ADVANCE(875); + if (lookahead == '_') ADVANCE(889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2693); END_STATE(); - case 3288: + case 2558: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1133); - if (lookahead == '_') ADVANCE(1153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); + if (lookahead == '.') ADVANCE(875); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2611); END_STATE(); - case 3289: + case 2559: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3274); + if (lookahead == '.') ADVANCE(2544); END_STATE(); - case 3290: + case 2560: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3274); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); + if (lookahead == '.') ADVANCE(2544); + if (lookahead == '_') ADVANCE(1288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); END_STATE(); - case 3291: + case 2561: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3274); - if (lookahead == '_') ADVANCE(3771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); + if (lookahead == '.') ADVANCE(2544); + if (lookahead == '_') ADVANCE(2981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); END_STATE(); - case 3292: + case 2562: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3274); - if (lookahead == '_') ADVANCE(4246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); + if (lookahead == '.') ADVANCE(2544); + if (lookahead == '_') ADVANCE(3534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); END_STATE(); - case 3293: + case 2563: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3274); - if (lookahead == '_') ADVANCE(3898); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (lookahead == '.') ADVANCE(2544); + if (lookahead == '_') ADVANCE(3112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); END_STATE(); - case 3294: + case 2564: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3274); - if (lookahead == '_') ADVANCE(4346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if (lookahead == '.') ADVANCE(2544); + if (lookahead == '_') ADVANCE(3637); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); END_STATE(); - case 3295: + case 2565: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(4320); + if (lookahead == '.') ADVANCE(3608); END_STATE(); - case 3296: + case 2566: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(4320); - if (lookahead == '_') ADVANCE(4341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (lookahead == '.') ADVANCE(3608); + if (lookahead == '_') ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); END_STATE(); - case 3297: + case 2567: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3271); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); + if (lookahead == '.') ADVANCE(444); END_STATE(); - case 3298: + case 2568: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(572); + if (lookahead == '.') ADVANCE(2542); + if (lookahead == '_') ADVANCE(889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2693); END_STATE(); - case 3299: + case 2569: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3272); - if (lookahead == '_') ADVANCE(1153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); + if (lookahead == '.') ADVANCE(2543); END_STATE(); - case 3300: + case 2570: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3273); + if (lookahead == '_') ADVANCE(3615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2689); END_STATE(); - case 3301: + case 2571: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); + if (lookahead == '_') ADVANCE(1288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); END_STATE(); - case 3302: + case 2572: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(3893); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3349); + if (lookahead == '_') ADVANCE(3108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2614); END_STATE(); - case 3303: + case 2573: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (lookahead == '_') ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); END_STATE(); - case 3304: + case 2574: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4570); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); + if (lookahead == '_') ADVANCE(3862); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2619); END_STATE(); - case 3305: + case 2575: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + if (lookahead == '_') ADVANCE(482); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2618); END_STATE(); - case 3306: + case 2576: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); - case 3307: + case 2577: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3308: + case 2578: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3309: + case 2579: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); - case 3310: + case 2580: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3311: + case 2581: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3312: + case 2582: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); - case 3313: + case 2583: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); - case 3314: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3578); - if (lookahead == '_') ADVANCE(3319); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); - END_STATE(); - case 3315: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3827); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - END_STATE(); - case 3316: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4295); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - END_STATE(); - case 3317: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3983); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - END_STATE(); - case 3318: + case 2584: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4401); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if (lookahead == '-') ADVANCE(3041); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); END_STATE(); - case 3319: + case 2585: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3319); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '-') ADVANCE(3583); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); END_STATE(); - case 3320: + case 2586: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3319); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3314); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '-') ADVANCE(3236); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); END_STATE(); - case 3321: + case 2587: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3319); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3320); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '-') ADVANCE(3693); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); END_STATE(); - case 3322: + case 2588: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3319); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '_') ADVANCE(2594); + if (lookahead == 'b') ADVANCE(2726); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); END_STATE(); - case 3323: + case 2589: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (lookahead == 'b') ADVANCE(3415); - if (lookahead == 'o') ADVANCE(3431); - if (lookahead == 'x') ADVANCE(3437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3331); + if (lookahead == '_') ADVANCE(2594); + if (lookahead == 'b') ADVANCE(2726); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2598); END_STATE(); - case 3324: + case 2590: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (lookahead == 'b') ADVANCE(3415); - if (lookahead == 'o') ADVANCE(3431); - if (lookahead == 'x') ADVANCE(3437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3333); + if (lookahead == '_') ADVANCE(2594); + if (lookahead == 'b') ADVANCE(2726); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2600); END_STATE(); - case 3325: + case 2591: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (lookahead == 'b') ADVANCE(3415); - if (lookahead == 'o') ADVANCE(3431); - if (lookahead == 'x') ADVANCE(3437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3335); + if (lookahead == '_') ADVANCE(2594); + if (lookahead == 'b') ADVANCE(2726); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); END_STATE(); - case 3326: + case 2592: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (lookahead == 'b') ADVANCE(3415); - if (lookahead == 'o') ADVANCE(3431); - if (lookahead == 'x') ADVANCE(3437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (lookahead == '_') ADVANCE(2594); + if (lookahead == 'b') ADVANCE(1550); + if (lookahead == 'o') ADVANCE(1552); + if (lookahead == 'x') ADVANCE(1559); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); END_STATE(); - case 3327: + case 2593: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (lookahead == 'b') ADVANCE(1865); - if (lookahead == 'o') ADVANCE(1867); - if (lookahead == 'x') ADVANCE(1874); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if (lookahead == '_') ADVANCE(2594); + if (lookahead == 'b') ADVANCE(1005); + if (lookahead == 'o') ADVANCE(1006); + if (lookahead == 'x') ADVANCE(1007); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); END_STATE(); - case 3328: + case 2594: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (lookahead == 'b') ADVANCE(1322); - if (lookahead == 'o') ADVANCE(1323); - if (lookahead == 'x') ADVANCE(1330); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); END_STATE(); - case 3329: + case 2595: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2586); END_STATE(); - case 3330: + case 2596: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3317); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); - case 3331: + case 2597: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3330); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2584); END_STATE(); - case 3332: + case 2598: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3315); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); END_STATE(); - case 3333: + case 2599: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3332); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2587); END_STATE(); - case 3334: + case 2600: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3318); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2599); END_STATE(); - case 3335: + case 2601: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3334); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2585); END_STATE(); - case 3336: + case 2602: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3316); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2601); END_STATE(); - case 3337: + case 2603: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3336); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); END_STATE(); - case 3338: + case 2604: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3331); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2598); END_STATE(); - case 3339: + case 2605: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3333); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2600); END_STATE(); - case 3340: + case 2606: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3335); + if (lookahead == '_') ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); END_STATE(); - case 3341: + case 2607: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - END_STATE(); - case 3342: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3342); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '_') ADVANCE(2607); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 3343: + case 2608: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == '_') ADVANCE(2608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); END_STATE(); - case 3344: + case 2609: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3344); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if (lookahead == '_') ADVANCE(2609); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 3345: + case 2610: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(3345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if (lookahead == '_') ADVANCE(2610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); END_STATE(); - case 3346: + case 2611: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3346); + if (lookahead == '_') ADVANCE(2611); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1149); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3346); + lookahead == 'e') ADVANCE(895); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2611); END_STATE(); - case 3347: + case 2612: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3347); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if (lookahead == '_') ADVANCE(2612); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); END_STATE(); - case 3348: + case 2613: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3348); + if (lookahead == '_') ADVANCE(2613); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1599); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3348); + lookahead == 'e') ADVANCE(1294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2613); END_STATE(); - case 3349: + case 2614: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3349); + if (lookahead == '_') ADVANCE(2614); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3894); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3349); + lookahead == 'e') ADVANCE(3109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2614); END_STATE(); - case 3350: + case 2615: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3350); + if (lookahead == '_') ADVANCE(2615); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3776); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); + lookahead == 'e') ADVANCE(2986); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2615); END_STATE(); - case 3351: + case 2616: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3351); + if (lookahead == '_') ADVANCE(2616); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(624); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); + lookahead == 'e') ADVANCE(3634); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); END_STATE(); - case 3352: + case 2617: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3352); + if (lookahead == '_') ADVANCE(2617); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4342); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + lookahead == 'e') ADVANCE(3539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); END_STATE(); - case 3353: + case 2618: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3353); + if (lookahead == '_') ADVANCE(2618); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4252); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + lookahead == 'e') ADVANCE(483); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2618); END_STATE(); - case 3354: + case 2619: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3354); + if (lookahead == '_') ADVANCE(2619); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4571); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); + lookahead == 'e') ADVANCE(3863); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2619); END_STATE(); - case 3355: + case 2620: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3355); + if (lookahead == '_') ADVANCE(2620); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4418); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + lookahead == 'e') ADVANCE(3710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2620); END_STATE(); - case 3356: + case 2621: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3356); + if (lookahead == '_') ADVANCE(2621); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3356); + lookahead == 'e') ADVANCE(3253); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2621); END_STATE(); - case 3357: + case 2622: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3357); + if (lookahead == '_') ADVANCE(2622); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); + lookahead == 'e') ADVANCE(3885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2622); END_STATE(); - case 3358: + case 2623: ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(3358); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if (lookahead == '_') ADVANCE(2623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); END_STATE(); - case 3359: + case 2624: + ACCEPT_TOKEN(anon_sym_null); + END_STATE(); + case 2625: + ACCEPT_TOKEN(anon_sym_null); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1738); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1737); + END_STATE(); + case 2626: + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + END_STATE(); + case 2627: + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + END_STATE(); + case 2628: + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1738); + END_STATE(); + case 2629: + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + END_STATE(); + case 2630: + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 2631: ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); - case 3360: + case 2632: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 2633: + ACCEPT_TOKEN(anon_sym_true); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1732); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1731); + END_STATE(); + case 2634: + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + END_STATE(); + case 2635: + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + END_STATE(); + case 2636: + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + END_STATE(); + case 2637: + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1732); + END_STATE(); + case 2638: + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + END_STATE(); + case 2639: + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 2640: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 2641: + ACCEPT_TOKEN(anon_sym_false); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1735); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1734); + END_STATE(); + case 2642: + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); + END_STATE(); + case 2643: + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); + END_STATE(); + case 2644: + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); + END_STATE(); + case 2645: + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1735); + END_STATE(); + case 2646: + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + END_STATE(); + case 2647: + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 2648: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); - case 3361: + case 2649: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 3362: + case 2650: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(1870); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '-') ADVANCE(1556); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); END_STATE(); - case 3363: + case 2651: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3827); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '-') ADVANCE(3041); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); END_STATE(); - case 3364: + case 2652: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4295); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '-') ADVANCE(3583); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); END_STATE(); - case 3365: + case 2653: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4554); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '-') ADVANCE(3846); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); END_STATE(); - case 3366: + case 2654: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3983); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '-') ADVANCE(3236); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); END_STATE(); - case 3367: + case 2655: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4401); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '-') ADVANCE(3693); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); END_STATE(); - case 3368: + case 2656: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(914); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '-') ADVANCE(685); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); END_STATE(); - case 3369: + case 2657: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (lookahead == 'b') ADVANCE(3415); - if (lookahead == 'o') ADVANCE(3431); - if (lookahead == 'x') ADVANCE(3437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3379); + if (lookahead == '_') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(2726); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2667); END_STATE(); - case 3370: + case 2658: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (lookahead == 'b') ADVANCE(3415); - if (lookahead == 'o') ADVANCE(3431); - if (lookahead == 'x') ADVANCE(3437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3381); + if (lookahead == '_') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(2726); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2669); END_STATE(); - case 3371: + case 2659: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (lookahead == 'b') ADVANCE(3415); - if (lookahead == 'o') ADVANCE(3431); - if (lookahead == 'x') ADVANCE(3437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3383); + if (lookahead == '_') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(2726); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); END_STATE(); - case 3372: + case 2660: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (lookahead == 'b') ADVANCE(3415); - if (lookahead == 'o') ADVANCE(3431); - if (lookahead == 'x') ADVANCE(3437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (lookahead == '_') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(2726); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); - case 3373: + case 2661: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (lookahead == 'b') ADVANCE(3415); - if (lookahead == 'o') ADVANCE(3431); - if (lookahead == 'x') ADVANCE(3437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); + if (lookahead == '_') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(2726); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); END_STATE(); - case 3374: + case 2662: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (lookahead == 'b') ADVANCE(3415); - if (lookahead == 'o') ADVANCE(3431); - if (lookahead == 'x') ADVANCE(3437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); + if (lookahead == '_') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(2726); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); END_STATE(); - case 3375: + case 2663: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (lookahead == 'b') ADVANCE(3415); - if (lookahead == 'o') ADVANCE(3431); - if (lookahead == 'x') ADVANCE(3437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); + if (lookahead == '_') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(2726); + if (lookahead == 'o') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); END_STATE(); - case 3376: + case 2664: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (lookahead == 'b') ADVANCE(1865); - if (lookahead == 'o') ADVANCE(1867); - if (lookahead == 'x') ADVANCE(1874); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '_') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(1550); + if (lookahead == 'o') ADVANCE(1552); + if (lookahead == 'x') ADVANCE(1559); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); END_STATE(); - case 3377: + case 2665: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (lookahead == 'b') ADVANCE(1322); - if (lookahead == 'o') ADVANCE(1323); - if (lookahead == 'x') ADVANCE(1330); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '_') ADVANCE(2687); + if (lookahead == 'b') ADVANCE(1005); + if (lookahead == 'o') ADVANCE(1006); + if (lookahead == 'x') ADVANCE(1007); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); END_STATE(); - case 3378: + case 2666: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2650); END_STATE(); - case 3379: + case 2667: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3378); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2666); END_STATE(); - case 3380: + case 2668: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2651); END_STATE(); - case 3381: + case 2669: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3380); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2668); END_STATE(); - case 3382: + case 2670: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3364); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2652); END_STATE(); - case 3383: + case 2671: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3382); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); END_STATE(); - case 3384: + case 2672: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3368); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2656); END_STATE(); - case 3385: + case 2673: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); - case 3386: + case 2674: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3365); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2653); END_STATE(); - case 3387: + case 2675: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); END_STATE(); - case 3388: + case 2676: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2654); END_STATE(); - case 3389: + case 2677: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); END_STATE(); - case 3390: + case 2678: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3367); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2655); END_STATE(); - case 3391: + case 2679: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); END_STATE(); - case 3392: + case 2680: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3379); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2667); END_STATE(); - case 3393: + case 2681: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3381); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2669); END_STATE(); - case 3394: + case 2682: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3383); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); END_STATE(); - case 3395: + case 2683: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); - case 3396: + case 2684: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); END_STATE(); - case 3397: + case 2685: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); END_STATE(); - case 3398: + case 2686: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); END_STATE(); - case 3399: + case 2687: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '_') ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); END_STATE(); - case 3400: + case 2688: ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(3400); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (lookahead == '_') ADVANCE(2688); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); END_STATE(); - case 3401: + case 2689: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3401); + if (lookahead == '_') ADVANCE(2689); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'e') ADVANCE(3616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2689); END_STATE(); - case 3402: + case 2690: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3402); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (lookahead == '_') ADVANCE(2690); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); END_STATE(); - case 3403: + case 2691: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3403); + if (lookahead == '_') ADVANCE(2691); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1154); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); + lookahead == 'e') ADVANCE(3523); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2691); END_STATE(); - case 3404: + case 2692: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3404); + if (lookahead == '_') ADVANCE(2692); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3772); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); + lookahead == 'e') ADVANCE(1289); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2692); END_STATE(); - case 3405: + case 2693: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3405); + if (lookahead == '_') ADVANCE(2693); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4247); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'e') ADVANCE(890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2693); END_STATE(); - case 3406: + case 2694: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3406); + if (lookahead == '_') ADVANCE(2694); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3406); + lookahead == 'e') ADVANCE(2982); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); END_STATE(); - case 3407: + case 2695: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3407); + if (lookahead == '_') ADVANCE(2695); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == 'e') ADVANCE(3535); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); END_STATE(); - case 3408: + case 2696: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3408); + if (lookahead == '_') ADVANCE(2696); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3903); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + lookahead == 'e') ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2696); END_STATE(); - case 3409: + case 2697: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3409); + if (lookahead == '_') ADVANCE(2697); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + lookahead == 'e') ADVANCE(3808); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2697); END_STATE(); - case 3410: + case 2698: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(2698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); + END_STATE(); + case 2699: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(2699); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); + END_STATE(); + case 2700: ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(3410); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if (lookahead == '_') ADVANCE(2700); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); END_STATE(); - case 3411: + case 2701: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3411); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2701); END_STATE(); - case 3412: + case 2702: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3412); + lookahead == '_') ADVANCE(2702); END_STATE(); - case 3413: + case 2703: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3413); + lookahead == '_') ADVANCE(2703); END_STATE(); - case 3414: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '_') ADVANCE(2636); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2352); - if (('2' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2704: + ACCEPT_TOKEN(aux_sym__val_number_token4); END_STATE(); - case 3415: + case 2705: + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == ',') ADVANCE(1753); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1743); + END_STATE(); + case 2706: + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1746); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1753); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1752); + END_STATE(); + case 2707: + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1753); + END_STATE(); + case 2708: + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3029); + END_STATE(); + case 2709: + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3572); + END_STATE(); + case 2710: + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3837); + END_STATE(); + case 2711: + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3223); + END_STATE(); + case 2712: + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3682); + END_STATE(); + case 2713: + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(669); + END_STATE(); + case 2714: + ACCEPT_TOKEN(aux_sym__val_number_token5); + END_STATE(); + case 2715: + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == ',') ADVANCE(1763); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1758); + END_STATE(); + case 2716: + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); + END_STATE(); + case 2717: + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(665); + END_STATE(); + case 2718: + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3574); + END_STATE(); + case 2719: + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3839); + END_STATE(); + case 2720: + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3226); + END_STATE(); + case 2721: + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3684); + END_STATE(); + case 2722: + ACCEPT_TOKEN(aux_sym__val_number_token6); + END_STATE(); + case 2723: + ACCEPT_TOKEN(aux_sym__val_number_token6); + if (lookahead == ',') ADVANCE(1766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1764); + END_STATE(); + case 2724: + ACCEPT_TOKEN(aux_sym__val_number_token6); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1766); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1765); + END_STATE(); + case 2725: + ACCEPT_TOKEN(aux_sym__val_number_token6); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1766); + END_STATE(); + case 2726: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3412); + lookahead == '_') ADVANCE(2702); END_STATE(); - case 3416: + case 2727: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4191); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == '_') ADVANCE(3484); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3417: + case 2728: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3707); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == '_') ADVANCE(2207); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 3418: + case 2729: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2807); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + lookahead == '_') ADVANCE(2931); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3419: + case 2730: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4480); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == '_') ADVANCE(3772); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3420: + case 2731: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 3421: + case 2732: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1198); + if (lookahead == 'i') ADVANCE(1931); END_STATE(); - case 3422: + case 2733: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1668); + if (lookahead == 'i') ADVANCE(608); END_STATE(); - case 3423: + case 2734: ACCEPT_TOKEN(sym_filesize_unit); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'i') ADVANCE(3189); END_STATE(); - case 3424: + case 2735: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'r') ADVANCE(925); END_STATE(); - case 3425: - ACCEPT_TOKEN(sym_duration_unit); + case 2736: + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'r') ADVANCE(1353); END_STATE(); - case 3426: - ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2898); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2737: + ACCEPT_TOKEN(sym_filesize_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 3427: + case 2738: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1895); END_STATE(); - case 3428: + case 2739: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2901); + if (lookahead == 'e') ADVANCE(2293); END_STATE(); - case 3429: + case 2740: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + if (lookahead == 'e') ADVANCE(1569); END_STATE(); - case 3430: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2638); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + case 2741: + ACCEPT_TOKEN(sym_duration_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 3431: + case 2742: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3413); + lookahead == '_') ADVANCE(2703); END_STATE(); - case 3432: + case 2743: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4197); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == '_') ADVANCE(3490); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3433: + case 2744: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3709); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == '_') ADVANCE(2209); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 3434: + case 2745: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2809); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + lookahead == '_') ADVANCE(2933); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3435: + case 2746: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4484); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); - END_STATE(); - case 3436: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2643); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + lookahead == '_') ADVANCE(3776); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3437: + case 2747: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3411); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2701); END_STATE(); - case 3438: + case 2748: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3504); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3439: + case 2749: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3722); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2222); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); END_STATE(); - case 3440: + case 2750: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2822); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2946); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3441: + case 2751: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4498); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3790); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3442: + case 2752: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 3443: + case 2753: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3443); - END_STATE(); - case 3444: - ACCEPT_TOKEN(sym_val_date); - END_STATE(); - case 3445: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3859); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3853); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2753); END_STATE(); - case 3446: + case 2754: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3747); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3739); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); END_STATE(); - case 3447: + case 2755: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(909); + if (lookahead == '.') ADVANCE(679); if (lookahead == '+' || - lookahead == '-') ADVANCE(578); + lookahead == '-') ADVANCE(448); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); + lookahead == 'z') ADVANCE(2754); END_STATE(); - case 3448: + case 2756: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3831); + if (lookahead == '.') ADVANCE(3039); if (lookahead == '+' || - lookahead == '-') ADVANCE(3758); + lookahead == '-') ADVANCE(2968); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); + lookahead == 'z') ADVANCE(2754); END_STATE(); - case 3449: + case 2757: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4300); + if (lookahead == '.') ADVANCE(3586); if (lookahead == '+' || - lookahead == '-') ADVANCE(4229); + lookahead == '-') ADVANCE(3521); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); + lookahead == 'z') ADVANCE(2754); END_STATE(); - case 3450: + case 2758: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3988); + if (lookahead == '.') ADVANCE(3239); if (lookahead == '+' || - lookahead == '-') ADVANCE(3873); + lookahead == '-') ADVANCE(3082); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); + lookahead == 'z') ADVANCE(2754); END_STATE(); - case 3451: + case 2759: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4406); + if (lookahead == '.') ADVANCE(3697); if (lookahead == '+' || - lookahead == '-') ADVANCE(4326); + lookahead == '-') ADVANCE(3614); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); - END_STATE(); - case 3452: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3475); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3858); - END_STATE(); - case 3453: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3476); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3743); - END_STATE(); - case 3454: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3477); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(905); - END_STATE(); - case 3455: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3478); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3824); - END_STATE(); - case 3456: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3479); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4292); + lookahead == 'z') ADVANCE(2754); END_STATE(); - case 3457: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3480); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3980); - END_STATE(); - case 3458: + case 2760: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3481); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4398); + if (lookahead == ':') ADVANCE(2777); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(678); END_STATE(); - case 3459: + case 2761: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3580); + if (lookahead == ':') ADVANCE(2778); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3034); END_STATE(); - case 3460: + case 2762: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1329); + if (lookahead == ':') ADVANCE(2779); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3580); END_STATE(); - case 3461: + case 2763: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1873); + if (lookahead == ':') ADVANCE(2780); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3233); END_STATE(); - case 3462: + case 2764: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3833); + if (lookahead == ':') ADVANCE(2781); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3690); END_STATE(); - case 3463: + case 2765: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4297); + if (lookahead == 'T') ADVANCE(1558); END_STATE(); - case 3464: + case 2766: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4556); + if (lookahead == 'T') ADVANCE(3043); END_STATE(); - case 3465: + case 2767: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3985); + if (lookahead == 'T') ADVANCE(3589); END_STATE(); - case 3466: + case 2768: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4403); + if (lookahead == 'T') ADVANCE(3848); END_STATE(); - case 3467: + case 2769: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(917); + if (lookahead == 'T') ADVANCE(3241); END_STATE(); - case 3468: + case 2770: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3853); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3468); + if (lookahead == 'T') ADVANCE(3695); END_STATE(); - case 3469: + case 2771: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3739); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3469); + if (lookahead == 'T') ADVANCE(688); END_STATE(); - case 3470: + case 2772: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(578); + lookahead == '-') ADVANCE(448); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3470); + lookahead == 'z') ADVANCE(2754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2772); END_STATE(); - case 3471: + case 2773: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3758); + lookahead == '-') ADVANCE(2968); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3471); + lookahead == 'z') ADVANCE(2754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2773); END_STATE(); - case 3472: + case 2774: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4229); + lookahead == '-') ADVANCE(3521); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3472); + lookahead == 'z') ADVANCE(2754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2774); END_STATE(); - case 3473: + case 2775: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3873); + lookahead == '-') ADVANCE(3082); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3473); + lookahead == 'z') ADVANCE(2754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2775); END_STATE(); - case 3474: + case 2776: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4326); + lookahead == '-') ADVANCE(3614); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3474); - END_STATE(); - case 3475: - ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3858); + lookahead == 'z') ADVANCE(2754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2776); END_STATE(); - case 3476: - ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3743); - END_STATE(); - case 3477: + case 2777: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(905); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(678); END_STATE(); - case 3478: + case 2778: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3824); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3034); END_STATE(); - case 3479: + case 2779: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4292); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3580); END_STATE(); - case 3480: + case 2780: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3980); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3233); END_STATE(); - case 3481: + case 2781: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4398); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3690); END_STATE(); - case 3482: + case 2782: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 3483: + case 2783: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49168,28 +45969,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); END_STATE(); - case 3484: + case 2784: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(3485); + if (lookahead == '#') ADVANCE(2785); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3484); + lookahead == ' ') ADVANCE(2784); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(3485); + lookahead != '\\') ADVANCE(2785); END_STATE(); - case 3485: + case 2785: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(3485); + lookahead != '\\') ADVANCE(2785); END_STATE(); - case 3486: + case 2786: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 3487: + case 2787: ACCEPT_TOKEN(sym__str_single_quotes); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49197,12 +45998,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); END_STATE(); - case 3488: + case 2788: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 3489: + case 2789: ACCEPT_TOKEN(sym__str_back_ticks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49210,52 +46011,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); - END_STATE(); - case 3490: - ACCEPT_TOKEN(sym_escape_sequence); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); END_STATE(); - case 3491: + case 2790: ACCEPT_TOKEN(sym_escape_sequence); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3492: + case 2791: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(3493); + if (lookahead == '#') ADVANCE(2792); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3492); + lookahead == ' ') ADVANCE(2791); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(3493); + lookahead != '\\') ADVANCE(2792); END_STATE(); - case 3493: + case 2792: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(3493); + lookahead != '\\') ADVANCE(2792); END_STATE(); - case 3494: + case 2793: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(3495); + if (lookahead == '#') ADVANCE(2794); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3494); + lookahead == ' ') ADVANCE(2793); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(3495); + lookahead != '(') ADVANCE(2794); END_STATE(); - case 3495: + case 2794: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(3495); + lookahead != '(') ADVANCE(2794); END_STATE(); - case 3496: + case 2795: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 3497: + case 2796: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49263,32 +46060,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); END_STATE(); - case 3498: + case 2797: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 3499: + case 2798: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(3486); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ',' || - lookahead == '.' || - lookahead == ':' || - lookahead == ';' || - lookahead == '?' || - lookahead == '[' || - lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(519); - if (lookahead != 0) ADVANCE(3524); + if (lookahead == '\'') ADVANCE(2786); + if (lookahead != 0) ADVANCE(411); END_STATE(); - case 3500: + case 2799: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 3501: + case 2800: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49296,140 +46081,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); END_STATE(); - case 3502: + case 2801: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 3503: + case 2802: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 3504: + case 2803: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 3505: + case 2804: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 3506: + case 2805: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 3507: + case 2806: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(3506); + if (lookahead == ',') ADVANCE(2805); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3507); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + lookahead == ' ') ADVANCE(2806); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); END_STATE(); - case 3508: + case 2807: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(3506); + if (lookahead == ',') ADVANCE(2805); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3508); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3509); + lookahead == ' ') ADVANCE(2807); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2808); END_STATE(); - case 3509: + case 2808: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(3523); + if (lookahead == ';') ADVANCE(2813); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(583); + lookahead == ' ') ADVANCE(453); END_STATE(); - case 3510: + case 2809: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3510); + lookahead == ' ') ADVANCE(2809); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3506); + lookahead == ',') ADVANCE(2805); END_STATE(); - case 3511: + case 2810: ACCEPT_TOKEN(aux_sym_record_entry_token1); END_STATE(); - case 3512: - ACCEPT_TOKEN(anon_sym_PLUS); - ADVANCE_MAP( - '\n', 3247, - '\r', 3, - '+', 1137, - '.', 1147, - '=', 1101, - '_', 1129, - '\t', 3219, - ' ', 3219, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - END_STATE(); - case 3513: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(3531); - if (lookahead == '.') ADVANCE(1147); - if (lookahead == '=') ADVANCE(1101); - if (lookahead == '_') ADVANCE(3529); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - END_STATE(); - case 3514: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1350); - if (lookahead == '.') ADVANCE(1592); - if (lookahead == '=') ADVANCE(1101); - if (lookahead == '_') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3219); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - END_STATE(); - case 3515: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1351); - if (lookahead == '.') ADVANCE(1592); - if (lookahead == '=') ADVANCE(1101); - if (lookahead == '_') ADVANCE(1337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - END_STATE(); - case 3516: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1147); - if (lookahead == '_') ADVANCE(1129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - END_STATE(); - case 3517: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1592); - if (lookahead == '_') ADVANCE(1337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - END_STATE(); - case 3518: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(4657); - if (lookahead == '_') ADVANCE(4650); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4657); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); - END_STATE(); - case 3519: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1152); - if (lookahead == '_') ADVANCE(1135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - END_STATE(); - case 3520: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(1597); - if (lookahead == '_') ADVANCE(1345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - END_STATE(); - case 3521: + case 2811: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(4785); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3522); + if (lookahead == '#') ADVANCE(4073); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2812); END_STATE(); - case 3522: + case 2812: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3522); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2812); END_STATE(); - case 3523: + case 2813: ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); - case 3524: + case 2814: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\'') ADVANCE(3486); + if (lookahead == '\'') ADVANCE(2786); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -49441,1499 +46154,725 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(519); - if (lookahead != 0) ADVANCE(3524); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(411); + if (lookahead != 0) ADVANCE(2814); END_STATE(); - case 3525: + case 2815: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '-') ADVANCE(3555); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); + if (lookahead == '`') ADVANCE(2788); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '(' || + lookahead == ')' || + lookahead == ',' || + lookahead == '.' || + lookahead == ':' || + lookahead == ';' || + lookahead == '?' || + lookahead == '[' || + lookahead == ']' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(485); + if (lookahead != 0) ADVANCE(2815); END_STATE(); - case 3526: + case 2816: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '-') ADVANCE(3563); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(2816); END_STATE(); - case 3527: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '-') ADVANCE(3579); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); + case 2817: + ACCEPT_TOKEN(aux_sym_env_var_token1); END_STATE(); - case 3528: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '-') ADVANCE(3560); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3529: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '.') ADVANCE(1147); - if (lookahead == '?') ADVANCE(1331); - if (lookahead == '_') ADVANCE(3529); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3530: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == ':') ADVANCE(3862); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3531: - ACCEPT_TOKEN(aux_sym_path_token1); - ADVANCE_MAP( - ',', 1875, - '=', 1105, - '.', 1331, - '?', 1331, - '<', 3591, - '>', 3591, - '"', 3592, - '\'', 3592, - '`', 3592, - ); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3532: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '_') ADVANCE(3532); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3533: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'a') ADVANCE(3566); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3534: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'a') ADVANCE(3565); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3535: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'a') ADVANCE(3570); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3536: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'c') ADVANCE(3537); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3537: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3550); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3538: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3561); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3539: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(2930); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3540: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'f') ADVANCE(2929); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3541: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(2919); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3542: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3200); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3543: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3198); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3544: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(2927); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3545: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3525); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3546: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'i') ADVANCE(3552); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3547: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'i') ADVANCE(3562); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3548: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'i') ADVANCE(3567); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3549: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'i') ADVANCE(3569); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3550: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'l') ADVANCE(3551); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3551: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'l') ADVANCE(3528); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3552: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(3196); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3553: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(2928); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3554: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'o') ADVANCE(3540); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3555: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'o') ADVANCE(3558); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3556: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'p') ADVANCE(3534); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3557: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'p') ADVANCE(3539); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3558: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'p') ADVANCE(3568); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3559: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'p') ADVANCE(3533); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3560: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'p') ADVANCE(3535); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3561: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'r') ADVANCE(3553); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3562: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3545); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3563: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3574); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3564: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3538); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3565: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3541); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3566: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3564); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3567: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3542); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3568: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3526); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3569: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3543); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3570: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3544); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3571: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'w') ADVANCE(3547); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3572: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'w') ADVANCE(3548); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3573: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'w') ADVANCE(3549); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3574: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'y') ADVANCE(3557); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3575: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3527); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3576: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3459); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3577: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3530); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3578: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3575); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3579: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3576); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3580: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3577); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3581: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == ',') ADVANCE(1875); - if (lookahead == '.' || - lookahead == '?') ADVANCE(1331); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); - END_STATE(); - case 3582: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '.') ADVANCE(2246); - if (lookahead == '_') ADVANCE(3582); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); - END_STATE(); - case 3583: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '`') ADVANCE(3488); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '(' || - lookahead == ')' || - lookahead == ',' || - lookahead == '.' || - lookahead == ':' || - lookahead == ';' || - lookahead == '?' || - lookahead == '[' || - lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(626); - if (lookahead != 0) ADVANCE(3583); - END_STATE(); - case 3584: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2224); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); - END_STATE(); - case 3585: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3588); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); - END_STATE(); - case 3586: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3584); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); - END_STATE(); - case 3587: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3585); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); - END_STATE(); - case 3588: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3589); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); - END_STATE(); - case 3589: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); - END_STATE(); - case 3590: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); - END_STATE(); - case 3591: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '`') ADVANCE(3592); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3591); - END_STATE(); - case 3592: - ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3592); - END_STATE(); - case 3593: - ACCEPT_TOKEN(aux_sym_env_var_token1); - END_STATE(); - case 3594: + case 2818: ACCEPT_TOKEN(aux_sym_env_var_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2818); END_STATE(); - case 3595: + case 2819: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 3596: + case 2820: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3628); + if (lookahead == '>') ADVANCE(2852); END_STATE(); - case 3597: + case 2821: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3628); - if (lookahead == '|') ADVANCE(2864); + if (lookahead == '>') ADVANCE(2852); + if (lookahead == '|') ADVANCE(2265); END_STATE(); - case 3598: + case 2822: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3630); - if (lookahead == '|') ADVANCE(2864); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2854); + if (lookahead == '|') ADVANCE(2265); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3599: + case 2823: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3629); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '>') ADVANCE(2853); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3600: + case 2824: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3631); + if (lookahead == '>') ADVANCE(2855); END_STATE(); - case 3601: + case 2825: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3631); - if (lookahead == '|') ADVANCE(2865); + if (lookahead == '>') ADVANCE(2855); + if (lookahead == '|') ADVANCE(2266); END_STATE(); - case 3602: + case 2826: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3633); - if (lookahead == '|') ADVANCE(2865); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2857); + if (lookahead == '|') ADVANCE(2266); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3603: + case 2827: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3632); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '>') ADVANCE(2856); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3604: + case 2828: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3634); + if (lookahead == '>') ADVANCE(2858); END_STATE(); - case 3605: + case 2829: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3634); - if (lookahead == '|') ADVANCE(2866); + if (lookahead == '>') ADVANCE(2858); + if (lookahead == '|') ADVANCE(2267); END_STATE(); - case 3606: + case 2830: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3636); - if (lookahead == '|') ADVANCE(2866); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2860); + if (lookahead == '|') ADVANCE(2267); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3607: + case 2831: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3635); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '>') ADVANCE(2859); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3608: + case 2832: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3637); + if (lookahead == '>') ADVANCE(2861); END_STATE(); - case 3609: + case 2833: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3637); - if (lookahead == '|') ADVANCE(2867); + if (lookahead == '>') ADVANCE(2861); + if (lookahead == '|') ADVANCE(2268); END_STATE(); - case 3610: + case 2834: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3639); - if (lookahead == '|') ADVANCE(2867); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2863); + if (lookahead == '|') ADVANCE(2268); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3611: + case 2835: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3638); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '>') ADVANCE(2862); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3612: + case 2836: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3640); + if (lookahead == '>') ADVANCE(2864); END_STATE(); - case 3613: + case 2837: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3640); - if (lookahead == '|') ADVANCE(2868); + if (lookahead == '>') ADVANCE(2864); + if (lookahead == '|') ADVANCE(2269); END_STATE(); - case 3614: + case 2838: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3642); - if (lookahead == '|') ADVANCE(2868); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2866); + if (lookahead == '|') ADVANCE(2269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3615: + case 2839: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3641); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '>') ADVANCE(2865); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3616: + case 2840: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3643); + if (lookahead == '>') ADVANCE(2867); END_STATE(); - case 3617: + case 2841: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3643); - if (lookahead == '|') ADVANCE(2869); + if (lookahead == '>') ADVANCE(2867); + if (lookahead == '|') ADVANCE(2270); END_STATE(); - case 3618: + case 2842: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3645); - if (lookahead == '|') ADVANCE(2869); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2869); + if (lookahead == '|') ADVANCE(2270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3619: + case 2843: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3644); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '>') ADVANCE(2868); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3620: + case 2844: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3646); + if (lookahead == '>') ADVANCE(2870); END_STATE(); - case 3621: + case 2845: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3646); - if (lookahead == '|') ADVANCE(2870); + if (lookahead == '>') ADVANCE(2870); + if (lookahead == '|') ADVANCE(2271); END_STATE(); - case 3622: + case 2846: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3648); - if (lookahead == '|') ADVANCE(2870); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2872); + if (lookahead == '|') ADVANCE(2271); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3623: + case 2847: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3647); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '>') ADVANCE(2871); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3624: + case 2848: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3649); + if (lookahead == '>') ADVANCE(2873); END_STATE(); - case 3625: + case 2849: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3649); - if (lookahead == '|') ADVANCE(2871); + if (lookahead == '>') ADVANCE(2873); + if (lookahead == '|') ADVANCE(2272); END_STATE(); - case 3626: + case 2850: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == '|') ADVANCE(2871); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2875); + if (lookahead == '|') ADVANCE(2272); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3627: + case 2851: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3650); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '>') ADVANCE(2874); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3628: + case 2852: ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); - case 3629: + case 2853: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3630: + case 2854: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3631: + case 2855: ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); - case 3632: + case 2856: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3633: + case 2857: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3634: + case 2858: ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); - case 3635: + case 2859: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3636: + case 2860: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3637: + case 2861: ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); - case 3638: + case 2862: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3639: + case 2863: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3640: + case 2864: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); - case 3641: + case 2865: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3642: + case 2866: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3643: + case 2867: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); - case 3644: + case 2868: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3645: + case 2869: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3646: + case 2870: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); - case 3647: + case 2871: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3648: + case 2872: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3649: + case 2873: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); - case 3650: + case 2874: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 3651: + case 2875: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 3652: + case 2876: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 3653: + case 2877: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3792); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'r') ADVANCE(3688); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '+') ADVANCE(3002); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'r') ADVANCE(2912); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3654: + case 2878: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3785); - if (lookahead == '>') ADVANCE(3609); - if (lookahead == 'u') ADVANCE(3693); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '+') ADVANCE(2995); + if (lookahead == '>') ADVANCE(2833); + if (lookahead == 'u') ADVANCE(2917); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3655: + case 2879: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(673); - if (lookahead == '>') ADVANCE(856); - if (lookahead == 'u') ADVANCE(3694); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '+') ADVANCE(3003); + if (lookahead == '>') ADVANCE(2821); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3656: + case 2880: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3793); - if (lookahead == '>') ADVANCE(3597); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '+') ADVANCE(2996); + if (lookahead == '>') ADVANCE(2825); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3657: + case 2881: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3786); - if (lookahead == '>') ADVANCE(3601); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '+') ADVANCE(572); + if (lookahead == '>') ADVANCE(644); + if (lookahead == 'r') ADVANCE(2913); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3658: + case 2882: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(741); - if (lookahead == '>') ADVANCE(855); - if (lookahead == 'r') ADVANCE(3689); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '+') ADVANCE(518); + if (lookahead == '>') ADVANCE(645); + if (lookahead == 'u') ADVANCE(2918); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3659: + case 2883: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(742); - if (lookahead == '>') ADVANCE(858); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '+') ADVANCE(576); + if (lookahead == '>') ADVANCE(647); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3660: + case 2884: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(671); - if (lookahead == '>') ADVANCE(860); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '+') ADVANCE(522); + if (lookahead == '>') ADVANCE(649); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3661: + case 2885: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3713); - if (lookahead == '_') ADVANCE(3672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '-') ADVANCE(2937); + if (lookahead == '_') ADVANCE(2896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3662: + case 2886: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3715); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '-') ADVANCE(2939); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3663: + case 2887: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3719); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '-') ADVANCE(2943); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3664: + case 2888: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3721); - if (lookahead == '_') ADVANCE(3672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '-') ADVANCE(2945); + if (lookahead == '_') ADVANCE(2896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3665: + case 2889: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '.') ADVANCE(613); - if (lookahead == '_') ADVANCE(3665); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '.') ADVANCE(472); + if (lookahead == '_') ADVANCE(2889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3666: + case 2890: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(907); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == ':') ADVANCE(681); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3667: + case 2891: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(3836); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == ':') ADVANCE(3046); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3668: + case 2892: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(3716); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'T') ADVANCE(2940); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3669: + case 2893: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(3717); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'T') ADVANCE(2941); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3670: + case 2894: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3672); - if (lookahead == 'b') ADVANCE(3417); - if (lookahead == 'o') ADVANCE(3433); - if (lookahead == 'x') ADVANCE(3439); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3674); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '_') ADVANCE(2896); + if (lookahead == 'b') ADVANCE(2729); + if (lookahead == 'o') ADVANCE(2745); + if (lookahead == 'x') ADVANCE(2750); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2898); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3671: + case 2895: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3672); - if (lookahead == 'b') ADVANCE(3417); - if (lookahead == 'o') ADVANCE(3433); - if (lookahead == 'x') ADVANCE(3439); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3677); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '_') ADVANCE(2896); + if (lookahead == 'b') ADVANCE(2729); + if (lookahead == 'o') ADVANCE(2745); + if (lookahead == 'x') ADVANCE(2750); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2901); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3672: + case 2896: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '_') ADVANCE(2896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3673: + case 2897: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3661); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '_') ADVANCE(2896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2885); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3674: + case 2898: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3673); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '_') ADVANCE(2896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2897); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3675: + case 2899: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3674); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '_') ADVANCE(2896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2898); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3676: + case 2900: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3664); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '_') ADVANCE(2896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2888); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3677: + case 2901: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3676); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '_') ADVANCE(2896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2900); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3678: + case 2902: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3677); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == '_') ADVANCE(2896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2901); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3679: + case 2903: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'a') ADVANCE(3682); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'a') ADVANCE(2906); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3680: + case 2904: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2154); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'e') ADVANCE(2635); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3681: + case 2905: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2199); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'e') ADVANCE(2643); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3682: + case 2906: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(3691); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'l') ADVANCE(2915); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3683: + case 2907: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2207); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'l') ADVANCE(2627); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3684: + case 2908: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(3683); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'l') ADVANCE(2907); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3685: + case 2909: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'n') ADVANCE(3039); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'n') ADVANCE(2377); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3686: + case 2910: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'o') ADVANCE(3692); - if (lookahead == 'u') ADVANCE(3684); + if (lookahead == 'o') ADVANCE(2916); + if (lookahead == 'u') ADVANCE(2908); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3701); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'a') ADVANCE(2925); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3687: + case 2911: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(3695); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'r') ADVANCE(2919); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3688: + case 2912: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(3656); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'r') ADVANCE(2879); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3689: + case 2913: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(3659); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'r') ADVANCE(2883); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3690: + case 2914: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(3175); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 's') ADVANCE(2469); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3691: + case 2915: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(3681); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 's') ADVANCE(2905); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3692: + case 2916: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(3708); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 't') ADVANCE(2932); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3693: + case 2917: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(3657); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 't') ADVANCE(2880); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3694: + case 2918: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(3660); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 't') ADVANCE(2884); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3695: + case 2919: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(3680); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (lookahead == 'u') ADVANCE(2904); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3696: + case 2920: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(3684); + if (lookahead == 'u') ADVANCE(2908); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3701); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'a') ADVANCE(2925); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3697: + case 2921: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3701); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'a') ADVANCE(2925); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3698: + case 2922: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3700); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'f') ADVANCE(2924); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3699: + case 2923: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3704); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'i') ADVANCE(2928); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3700: + case 2924: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3703); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'i') ADVANCE(2927); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3701: + case 2925: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3723); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'n') ADVANCE(2947); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3702: + case 2926: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3698); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'n') ADVANCE(2922); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3703: + case 2927: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3699); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'n') ADVANCE(2923); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3704: + case 2928: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3705); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 't') ADVANCE(2929); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3705: + case 2929: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3723); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == 'y') ADVANCE(2947); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3706: + case 2930: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '-' || lookahead == '?' || - lookahead == '@') ADVANCE(3723); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3706); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + lookahead == '@') ADVANCE(2947); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2930); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); END_STATE(); - case 3707: + case 2931: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3707); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == '_') ADVANCE(2931); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3708: + case 2932: ACCEPT_TOKEN(sym_short_flag_identifier); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3211); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == ' ') ADVANCE(2505); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3709: + case 2933: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3709); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + lookahead == '_') ADVANCE(2933); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3710: + case 2934: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3662); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2886); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3711: + case 2935: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3668); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2892); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3712: + case 2936: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3667); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2891); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3713: + case 2937: 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(3723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2934); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3714: + case 2938: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3666); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2890); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3715: + case 2939: 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(3723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2935); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3716: + case 2940: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3712); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2936); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3717: + case 2941: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2938); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3718: + case 2942: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3669); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2893); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3719: + case 2943: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3718); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2942); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3720: + case 2944: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3663); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2887); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3721: + case 2945: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3720); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2944); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3722: + case 2946: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3722); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2946); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3723: + case 2947: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2947); END_STATE(); - case 3724: + case 2948: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '\'') ADVANCE(3487); + if (lookahead == '\'') ADVANCE(2787); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(519); - if (lookahead != 0) ADVANCE(3724); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(411); + if (lookahead != 0) ADVANCE(2948); END_STATE(); - case 3725: + case 2949: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '`') ADVANCE(3489); + if (lookahead == '`') ADVANCE(2789); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(626); - if (lookahead != 0) ADVANCE(3725); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(485); + if (lookahead != 0) ADVANCE(2949); END_STATE(); - case 3726: + case 2950: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -50941,6480 +46880,6870 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); - END_STATE(); - case 3727: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\n') ADVANCE(3263); - if (lookahead == '\r') ADVANCE(9); - if (lookahead == ',') ADVANCE(3837); - if (lookahead == ':') ADVANCE(3750); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3235); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3740); - END_STATE(); - case 3728: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\n') ADVANCE(3251); - if (lookahead == '\r') ADVANCE(10); - if (lookahead == ',') ADVANCE(3837); - if (lookahead == ':') ADVANCE(3750); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3223); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3740); - END_STATE(); - case 3729: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(3360); - if (lookahead == '(') ADVANCE(3269); - if (lookahead == '[') ADVANCE(3504); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); - END_STATE(); - case 3730: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3792); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'r') ADVANCE(3798); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); - END_STATE(); - case 3731: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3785); - if (lookahead == '>') ADVANCE(3609); - if (lookahead == 'u') ADVANCE(3806); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); - END_STATE(); - case 3732: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3779); - if (lookahead == '-') ADVANCE(3781); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == '_') ADVANCE(3781); - if (lookahead == 'r') ADVANCE(3798); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); - END_STATE(); - case 3733: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3793); - if (lookahead == '>') ADVANCE(3597); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); - END_STATE(); - case 3734: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3786); - if (lookahead == '>') ADVANCE(3601); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); END_STATE(); - case 3735: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3795); - if (lookahead == '>') ADVANCE(3604); - if (lookahead == 'r') ADVANCE(3799); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); - END_STATE(); - case 3736: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3787); - if (lookahead == '>') ADVANCE(3608); - if (lookahead == 'u') ADVANCE(3808); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); - END_STATE(); - case 3737: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3796); - if (lookahead == '>') ADVANCE(3596); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); - END_STATE(); - case 3738: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3788); - if (lookahead == '>') ADVANCE(3600); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); - END_STATE(); - case 3739: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3837); - if (lookahead == '2') ADVANCE(3742); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3748); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); - END_STATE(); - case 3740: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3837); - if (lookahead == ':') ADVANCE(3750); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3740); - END_STATE(); - case 3741: + case 2951: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3837); - if (lookahead == ':') ADVANCE(3749); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); + if (lookahead == '$') ADVANCE(2648); + if (lookahead == '(') ADVANCE(2540); + if (lookahead == '[') ADVANCE(2803); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3742: + case 2952: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3837); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); + if (lookahead == '+') ADVANCE(3002); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'r') ADVANCE(3008); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3743: + case 2953: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3837); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); + if (lookahead == '+') ADVANCE(2995); + if (lookahead == '>') ADVANCE(2833); + if (lookahead == 'u') ADVANCE(3016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3744: + case 2954: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3837); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3741); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); + if (lookahead == '+') ADVANCE(2989); + if (lookahead == '-') ADVANCE(2991); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == '_') ADVANCE(2991); + if (lookahead == 'r') ADVANCE(3008); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3745: + case 2955: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3837); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3744); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); + if (lookahead == '+') ADVANCE(3003); + if (lookahead == '>') ADVANCE(2821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3746: + case 2956: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3837); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); + if (lookahead == '+') ADVANCE(2996); + if (lookahead == '>') ADVANCE(2825); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3747: + case 2957: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3837); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3469); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); + if (lookahead == '+') ADVANCE(3005); + if (lookahead == '>') ADVANCE(2828); + if (lookahead == 'r') ADVANCE(3009); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3748: + case 2958: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3837); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); + if (lookahead == '+') ADVANCE(2997); + if (lookahead == '>') ADVANCE(2832); + if (lookahead == 'u') ADVANCE(3018); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3749: + case 2959: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3837); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3746); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); + if (lookahead == '+') ADVANCE(3006); + if (lookahead == '>') ADVANCE(2820); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3750: + case 2960: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3837); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); + if (lookahead == '+') ADVANCE(2998); + if (lookahead == '>') ADVANCE(2824); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3751: + case 2961: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3828); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '-') ADVANCE(3042); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3752: + case 2962: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(3771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(2981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3753: + case 2963: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(3775); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(2985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2615); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3754: + case 2964: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3274); - if (lookahead == '_') ADVANCE(3771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '.') ADVANCE(2544); + if (lookahead == '_') ADVANCE(2981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3755: + case 2965: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(3755); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '.') ADVANCE(2421); + if (lookahead == '_') ADVANCE(2981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3756: + case 2966: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3100); - if (lookahead == '_') ADVANCE(3771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '.') ADVANCE(2980); + if (lookahead == '_') ADVANCE(2966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3757: + case 2967: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3774); - if (lookahead == '_') ADVANCE(3757); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '.') ADVANCE(2984); + if (lookahead == '_') ADVANCE(2967); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3758: + case 2968: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(3822); + if (lookahead == '2') ADVANCE(3032); if (lookahead == '0' || - lookahead == '1') ADVANCE(3832); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == '1') ADVANCE(3040); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3759: + case 2969: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(3834); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == ':') ADVANCE(3044); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3760: + case 2970: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(3836); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == ':') ADVANCE(3046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3761: + case 2971: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3625); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '>') ADVANCE(2849); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3762: + case 2972: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3621); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '>') ADVANCE(2845); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3763: + case 2973: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3613); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '>') ADVANCE(2837); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3764: + case 2974: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3617); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '>') ADVANCE(2841); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3765: + case 2975: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3624); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '>') ADVANCE(2848); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3766: + case 2976: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3620); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '>') ADVANCE(2844); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3767: + case 2977: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '>') ADVANCE(2836); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3768: + case 2978: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3616); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '>') ADVANCE(2840); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3769: + case 2979: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3769); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '_') ADVANCE(2979); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3770: + case 2980: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3770); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '_') ADVANCE(2980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3771: + case 2981: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '_') ADVANCE(2981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2694); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3772: + case 2982: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3773); + if (lookahead == '_') ADVANCE(2983); if (lookahead == '+' || - lookahead == '-') ADVANCE(3773); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == '-') ADVANCE(2983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3773: + case 2983: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3773); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '_') ADVANCE(2983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3774: + case 2984: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3774); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '_') ADVANCE(2984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3775: + case 2985: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3775); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '_') ADVANCE(2985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2615); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3776: + case 2986: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3777); + if (lookahead == '_') ADVANCE(2987); if (lookahead == '+' || - lookahead == '-') ADVANCE(3777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == '-') ADVANCE(2987); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3777: + case 2987: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3777); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '_') ADVANCE(2987); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3778: + case 2988: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3778); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '_') ADVANCE(2988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3779: + case 2989: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3781); - if (lookahead == 'o') ADVANCE(3761); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '_') ADVANCE(2991); + if (lookahead == 'o') ADVANCE(2971); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3780: + case 2990: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3781); + if (lookahead == '_') ADVANCE(2991); if (lookahead == '+' || - lookahead == '-') ADVANCE(3781); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == '-') ADVANCE(2991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3781: + case 2991: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3781); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == '_') ADVANCE(2991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3782: + case 2992: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(3790); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'a') ADVANCE(2999); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3783: + case 2993: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2150); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'e') ADVANCE(2632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3784: + case 2994: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2195); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'e') ADVANCE(2640); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3785: + case 2995: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3762); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'e') ADVANCE(2972); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3786: + case 2996: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3800); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'e') ADVANCE(3010); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3787: + case 2997: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3766); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'e') ADVANCE(2976); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3788: + case 2998: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3803); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'e') ADVANCE(3013); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3789: + case 2999: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2203); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'l') ADVANCE(3014); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3790: + case 3000: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3804); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'l') ADVANCE(2624); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3791: + case 3001: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3789); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'l') ADVANCE(3000); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3792: + case 3002: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3761); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'o') ADVANCE(2971); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3793: + case 3003: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3812); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'o') ADVANCE(3022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3794: + case 3004: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3805); - if (lookahead == 'u') ADVANCE(3791); + if (lookahead == 'o') ADVANCE(3015); + if (lookahead == 'u') ADVANCE(3001); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == 'a') ADVANCE(3028); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3795: + case 3005: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3765); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'o') ADVANCE(2975); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3796: + case 3006: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3813); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'o') ADVANCE(3023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3797: + case 3007: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3811); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'r') ADVANCE(3021); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3798: + case 3008: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3733); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'r') ADVANCE(2955); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3799: + case 3009: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3737); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'r') ADVANCE(2959); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3800: + case 3010: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3801); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'r') ADVANCE(3011); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3801: + case 3011: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3764); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'r') ADVANCE(2974); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3802: + case 3012: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'r') ADVANCE(2978); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3803: + case 3013: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3802); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'r') ADVANCE(3012); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3804: + case 3014: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(3784); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 's') ADVANCE(2994); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3805: + case 3015: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3823); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 't') ADVANCE(3033); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3806: + case 3016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3734); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 't') ADVANCE(2956); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3807: + case 3017: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3763); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 't') ADVANCE(2973); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3808: + case 3018: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 't') ADVANCE(2960); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3809: + case 3019: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3767); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 't') ADVANCE(2977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3810: + case 3020: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3791); + if (lookahead == 'u') ADVANCE(3001); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == 'a') ADVANCE(3028); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3811: + case 3021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3783); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'u') ADVANCE(2993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3812: + case 3022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3807); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'u') ADVANCE(3017); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3813: + case 3023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3809); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (lookahead == 'u') ADVANCE(3019); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3814: + case 3024: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == 'a') ADVANCE(3028); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3815: + case 3025: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2216); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == 'f') ADVANCE(2708); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3816: + case 3026: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3820); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == 'i') ADVANCE(3030); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3817: + case 3027: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == 'n') ADVANCE(3025); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3818: + case 3028: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3815); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == 'n') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3819: + case 3029: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3816); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == 'n') ADVANCE(3026); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3820: + case 3030: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == 't') ADVANCE(3031); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3821: + case 3031: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == 'y') ADVANCE(2704); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3822: + case 3032: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3455); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2761); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3823: + case 3033: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + lookahead == ' ') ADVANCE(2505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3824: + case 3034: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3825: + case 3035: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3751); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2961); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3826: + case 3036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3760); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2970); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3827: + case 3037: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3825); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2766); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3828: + case 3038: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3829); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2756); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3829: + case 3039: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2773); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3830: + case 3040: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2761); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3831: + case 3041: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3471); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3832: + case 3042: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3037); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3833: + case 3043: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3036); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3834: + case 3044: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3830); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3835: + case 3045: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3759); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2969); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3836: + case 3046: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3835); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3045); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3837: + case 3047: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3838: + case 3048: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + ADVANCE_MAP( + '+', 3157, + '>', 2829, + 'I', 3214, + 'i', 3214, + 'n', 3129, + 'r', 3174, + 'B', 2731, + 'b', 2731, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3049: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3925); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'I') ADVANCE(3964); - if (lookahead == 'i') ADVANCE(3964); - if (lookahead == 'r') ADVANCE(3935); + if (lookahead == '+') ADVANCE(3157); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'I') ADVANCE(3214); + if (lookahead == 'i') ADVANCE(3214); + if (lookahead == 'r') ADVANCE(3174); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3839: + case 3050: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3925); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == 'r') ADVANCE(3935); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '+') ADVANCE(3157); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'n') ADVANCE(3129); + if (lookahead == 'r') ADVANCE(3174); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3840: + case 3051: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3913); - if (lookahead == '>') ADVANCE(3609); - if (lookahead == 'u') ADVANCE(3946); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '+') ADVANCE(3157); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'r') ADVANCE(3174); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3841: + case 3052: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3134); + if (lookahead == '>') ADVANCE(2833); + if (lookahead == 'r') ADVANCE(2482); + if (lookahead == 'u') ADVANCE(3188); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3053: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3134); + if (lookahead == '>') ADVANCE(2833); + if (lookahead == 'u') ADVANCE(3188); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3054: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 3899, - '-', 3902, - '>', 3605, - 'I', 3964, - '_', 3902, - 'i', 3964, - 'r', 3935, - 'B', 3420, - 'b', 3420, + '+', 3113, + '-', 3116, + '>', 2829, + 'I', 3214, + '_', 3116, + 'i', 3214, + 'n', 3129, + 'r', 3174, + 'B', 2731, + 'b', 2731, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3842: + case 3055: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3899); - if (lookahead == '-') ADVANCE(3902); - if (lookahead == '>') ADVANCE(3605); - if (lookahead == '_') ADVANCE(3902); - if (lookahead == 'r') ADVANCE(3935); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + ADVANCE_MAP( + '+', 3113, + '-', 3116, + '>', 2829, + 'I', 3214, + '_', 3116, + 'i', 3214, + 'r', 3174, + 'B', 2731, + 'b', 2731, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3843: + case 3056: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3926); - if (lookahead == '>') ADVANCE(3597); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '+') ADVANCE(3113); + if (lookahead == '-') ADVANCE(3116); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == '_') ADVANCE(3116); + if (lookahead == 'r') ADVANCE(3174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3844: + case 3057: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3158); + if (lookahead == '>') ADVANCE(2821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3058: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 3900, - '-', 3902, - '>', 3955, - 'I', 3964, - '_', 3902, - 'i', 3964, - 'r', 3936, - 'B', 3420, - 'b', 3420, + '+', 3114, + '-', 3116, + '>', 3205, + 'I', 3214, + '_', 3116, + 'i', 3214, + 'n', 3129, + 'r', 3175, + 'B', 2731, + 'b', 2731, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3845: + case 3059: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3900); - if (lookahead == '-') ADVANCE(3902); - if (lookahead == '>') ADVANCE(3955); - if (lookahead == '_') ADVANCE(3902); - if (lookahead == 'r') ADVANCE(3936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + ADVANCE_MAP( + '+', 3114, + '-', 3116, + '>', 3205, + 'I', 3214, + '_', 3116, + 'i', 3214, + 'r', 3175, + 'B', 2731, + 'b', 2731, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3846: + case 3060: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3914); - if (lookahead == '>') ADVANCE(3601); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '+') ADVANCE(3114); + if (lookahead == '-') ADVANCE(3116); + if (lookahead == '>') ADVANCE(3205); + if (lookahead == '_') ADVANCE(3116); + if (lookahead == 'r') ADVANCE(3175); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3847: + case 3061: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3929); - if (lookahead == '>') ADVANCE(3955); - if (lookahead == 'I') ADVANCE(3964); - if (lookahead == 'i') ADVANCE(3964); - if (lookahead == 'r') ADVANCE(3936); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '+') ADVANCE(3135); + if (lookahead == '>') ADVANCE(2825); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3848: + case 3062: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3929); - if (lookahead == '>') ADVANCE(3955); - if (lookahead == 'r') ADVANCE(3936); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + ADVANCE_MAP( + '+', 3162, + '>', 3205, + 'I', 3214, + 'i', 3214, + 'n', 3129, + 'r', 3175, + 'B', 2731, + 'b', 2731, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3849: + case 3063: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3915); - if (lookahead == '>') ADVANCE(3956); - if (lookahead == 'r') ADVANCE(3192); - if (lookahead == 'u') ADVANCE(3948); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '+') ADVANCE(3162); + if (lookahead == '>') ADVANCE(3205); + if (lookahead == 'I') ADVANCE(3214); + if (lookahead == 'i') ADVANCE(3214); + if (lookahead == 'r') ADVANCE(3175); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3850: + case 3064: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3915); - if (lookahead == '>') ADVANCE(3956); - if (lookahead == 'u') ADVANCE(3948); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '+') ADVANCE(3162); + if (lookahead == '>') ADVANCE(3205); + if (lookahead == 'n') ADVANCE(3129); + if (lookahead == 'r') ADVANCE(3175); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3851: + case 3065: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3931); - if (lookahead == '>') ADVANCE(3958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '+') ADVANCE(3162); + if (lookahead == '>') ADVANCE(3205); + if (lookahead == 'r') ADVANCE(3175); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3852: + case 3066: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3916); - if (lookahead == '>') ADVANCE(3960); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '+') ADVANCE(3136); + if (lookahead == '>') ADVANCE(3206); + if (lookahead == 'r') ADVANCE(2482); + if (lookahead == 'u') ADVANCE(3195); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3853: + case 3067: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(3993); - if (lookahead == '2') ADVANCE(3856); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3860); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); + if (lookahead == '+') ADVANCE(3136); + if (lookahead == '>') ADVANCE(3206); + if (lookahead == 'u') ADVANCE(3195); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3854: + case 3068: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(3993); - if (lookahead == ':') ADVANCE(3864); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3854); + if (lookahead == '+') ADVANCE(3167); + if (lookahead == '>') ADVANCE(3208); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3855: + case 3069: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(3993); - if (lookahead == ':') ADVANCE(3863); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); + if (lookahead == '+') ADVANCE(3137); + if (lookahead == '>') ADVANCE(3210); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3856: + case 3070: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3452); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); + if (lookahead == '-') ADVANCE(2329); + if (lookahead == '.') ADVANCE(3111); + if (lookahead == '_') ADVANCE(3081); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3225); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3857: + case 3071: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); + if (lookahead == '-') ADVANCE(3123); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3858: + case 3072: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); + if (lookahead == '-') ADVANCE(3143); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3859: + case 3073: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3468); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); + if (lookahead == '-') ADVANCE(3202); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3860: + case 3074: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3452); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); + if (lookahead == '-') ADVANCE(3237); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3861: + case 3075: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3855); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); + if (lookahead == '-') ADVANCE(3203); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3862: + case 3076: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3861); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2614); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3863: + case 3077: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(3993); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3857); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3864: + case 3078: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); + if (lookahead == '.') ADVANCE(2544); + if (lookahead == '_') ADVANCE(3112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3865: + case 3079: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(2948); - if (lookahead == '.') ADVANCE(3897); - if (lookahead == '_') ADVANCE(3872); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '.') ADVANCE(2544); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3866: + case 3080: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '.') ADVANCE(3107); + if (lookahead == '_') ADVANCE(3080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3867: + case 3081: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(3893); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3349); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '.') ADVANCE(3111); + if (lookahead == '_') ADVANCE(3081); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3868: + case 3082: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(3898); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '2') ADVANCE(3231); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3240); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3869: + case 3083: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3274); - if (lookahead == '_') ADVANCE(3898); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == ':') ADVANCE(3242); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3870: + case 3084: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3274); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == ':') ADVANCE(3245); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3871: + case 3085: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3892); - if (lookahead == '_') ADVANCE(3871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '=') ADVANCE(2492); + if (lookahead == '~') ADVANCE(2503); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3872: + case 3086: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3897); - if (lookahead == '_') ADVANCE(3872); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '=') ADVANCE(2490); + if (lookahead == '>') ADVANCE(2416); + if (lookahead == '~') ADVANCE(2501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3873: + case 3087: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '2') ADVANCE(3978); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3989); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '=') ADVANCE(2490); + if (lookahead == '~') ADVANCE(2501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3874: + case 3088: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(3986); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '>') ADVANCE(2416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3875: + case 3089: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(3992); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '>') ADVANCE(2849); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3876: + case 3090: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3625); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '>') ADVANCE(2845); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3877: + case 3091: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3621); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '>') ADVANCE(2837); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3878: + case 3092: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3613); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '>') ADVANCE(2841); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3879: + case 3093: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3617); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '>') ADVANCE(3207); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3880: + case 3094: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3093); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '>') ADVANCE(3209); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3881: + case 3095: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3957); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '>') ADVANCE(3211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3882: + case 3096: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '>') ADVANCE(3212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3883: + case 3097: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3961); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + ADVANCE_MAP( + 'I', 3214, + '_', 3116, + 'i', 3214, + 'n', 3129, + '+', 3116, + '-', 3116, + 'B', 2731, + 'b', 2731, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3884: + case 3098: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3962); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'I') ADVANCE(3214); + if (lookahead == '_') ADVANCE(3116); + if (lookahead == 'i') ADVANCE(3214); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3116); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3885: + case 3099: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3964); - if (lookahead == '_') ADVANCE(3902); - if (lookahead == 'i') ADVANCE(3964); + if (lookahead == 'I') ADVANCE(3214); + if (lookahead == '_') ADVANCE(3116); + if (lookahead == 'i') ADVANCE(3124); if (lookahead == '+' || - lookahead == '-') ADVANCE(3902); + lookahead == '-') ADVANCE(3116); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3886: + case 3100: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3964); - if (lookahead == '_') ADVANCE(3902); - if (lookahead == 'i') ADVANCE(3907); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3902); + if (lookahead == 'I') ADVANCE(3214); + if (lookahead == 'i') ADVANCE(3214); + if (lookahead == 'n') ADVANCE(3129); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3887: + case 3101: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3964); - if (lookahead == 'i') ADVANCE(3964); - if (lookahead == 'r') ADVANCE(3951); + if (lookahead == 'I') ADVANCE(3214); + if (lookahead == 'i') ADVANCE(3214); + if (lookahead == 'r') ADVANCE(3199); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3888: + case 3102: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3964); - if (lookahead == 'i') ADVANCE(3964); + if (lookahead == 'I') ADVANCE(3214); + if (lookahead == 'i') ADVANCE(3214); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3889: + case 3103: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3964); - if (lookahead == 'i') ADVANCE(3907); + if (lookahead == 'I') ADVANCE(3214); + if (lookahead == 'i') ADVANCE(3124); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3890: + case 3104: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3964); - if (lookahead == 'i') ADVANCE(3922); - if (lookahead == 's') ADVANCE(3425); + if (lookahead == 'I') ADVANCE(3214); + if (lookahead == 'i') ADVANCE(3152); + if (lookahead == 'o') ADVANCE(3128); + if (lookahead == 's') ADVANCE(2738); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3891: + case 3105: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3891); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'I') ADVANCE(3214); + if (lookahead == 'i') ADVANCE(3152); + if (lookahead == 's') ADVANCE(2738); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3892: + case 3106: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3892); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '_') ADVANCE(3106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3893: + case 3107: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3893); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3349); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '_') ADVANCE(3107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3894: + case 3108: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3895); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3895); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '_') ADVANCE(3108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2614); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3895: + case 3109: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3895); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '_') ADVANCE(3110); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3896: + case 3110: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3896); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '_') ADVANCE(3110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3897: + case 3111: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3897); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '_') ADVANCE(3111); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3898: + case 3112: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3898); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '_') ADVANCE(3112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3899: + case 3113: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3902); - if (lookahead == 'o') ADVANCE(3876); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '_') ADVANCE(3116); + if (lookahead == 'o') ADVANCE(3089); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3900: + case 3114: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3902); - if (lookahead == 'o') ADVANCE(3881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '_') ADVANCE(3116); + if (lookahead == 'o') ADVANCE(3093); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3901: + case 3115: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3902); + if (lookahead == '_') ADVANCE(3116); if (lookahead == '+' || - lookahead == '-') ADVANCE(3902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '-') ADVANCE(3116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3902: + case 3116: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '_') ADVANCE(3116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3903: + case 3117: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3904); + if (lookahead == '_') ADVANCE(3118); if (lookahead == '+' || - lookahead == '-') ADVANCE(3904); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == '-') ADVANCE(3118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3904: + case 3118: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3904); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '_') ADVANCE(3118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3905: + case 3119: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3920); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == '_') ADVANCE(3119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3906: + case 3120: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3954); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'a') ADVANCE(3149); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3907: + case 3121: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'a') ADVANCE(3204); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3908: + case 3122: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'c') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'a') ADVANCE(3178); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3909: + case 3123: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3184); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'a') ADVANCE(3156); + if (lookahead == 'o') ADVANCE(3170); + if (lookahead == 's') ADVANCE(3141); + if (lookahead == 'x') ADVANCE(3164); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3910: + case 3124: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(2150); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3911: + case 3125: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(2195); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'c') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3912: + case 3126: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3908); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'd') ADVANCE(2478); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3913: + case 3127: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3877); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'd') ADVANCE(2534); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3914: + case 3128: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3937); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'd') ADVANCE(2516); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3915: + case 3129: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3882); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'd') ADVANCE(3185); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3916: + case 3130: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3939); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'e') ADVANCE(2632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3917: + case 3131: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(3068); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'e') ADVANCE(2640); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3918: + case 3132: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'k') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'e') ADVANCE(3125); + if (lookahead == 't') ADVANCE(3122); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3919: + case 3133: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(2203); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'e') ADVANCE(3125); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3920: + case 3134: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3944); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'e') ADVANCE(3090); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3921: + case 3135: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3919); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'e') ADVANCE(3176); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3922: + case 3136: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3425); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'e') ADVANCE(3094); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3923: + case 3137: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3030); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'e') ADVANCE(3179); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3924: + case 3138: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3909); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'f') ADVANCE(2398); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3925: + case 3139: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3876); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'h') ADVANCE(2488); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3926: + case 3140: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3952); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'h') ADVANCE(2486); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3927: + case 3141: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3945); - if (lookahead == 's') ADVANCE(3425); - if (lookahead == 'u') ADVANCE(3921); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3969); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'h') ADVANCE(3147); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3928: + case 3142: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3945); - if (lookahead == 'u') ADVANCE(3921); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3969); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'i') ADVANCE(3189); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3929: + case 3143: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3881); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'i') ADVANCE(3151); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3930: + case 3144: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3933); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'i') ADVANCE(3190); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3931: + case 3145: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3953); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'i') ADVANCE(3194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3932: + case 3146: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'k') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3933: + case 3147: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3188); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'l') ADVANCE(2530); + if (lookahead == 'r') ADVANCE(2532); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3934: + case 3148: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3951); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'l') ADVANCE(2624); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3935: + case 3149: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3843); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'l') ADVANCE(3184); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3936: + case 3150: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3851); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'l') ADVANCE(3148); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3937: + case 3151: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3938); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'n') ADVANCE(2484); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3938: + case 3152: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'n') ADVANCE(2738); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3939: + case 3153: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3940); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'n') ADVANCE(2371); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3940: + case 3154: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3884); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'n') ADVANCE(3126); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3941: + case 3155: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3425); - if (lookahead == 'u') ADVANCE(3921); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3969); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'n') ADVANCE(3129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3942: + case 3156: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'n') ADVANCE(3127); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3943: + case 3157: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3168); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'o') ADVANCE(3089); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3944: + case 3158: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3911); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'o') ADVANCE(3200); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3945: + case 3159: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3979); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'o') ADVANCE(3128); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3946: + case 3160: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3846); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'o') ADVANCE(3193); + if (lookahead == 's') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3947: + case 3161: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3878); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'o') ADVANCE(3193); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3948: + case 3162: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3852); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'o') ADVANCE(3093); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3949: + case 3163: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3883); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'o') ADVANCE(3169); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3950: + case 3164: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3921); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3969); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'o') ADVANCE(3171); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3951: + case 3165: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'o') ADVANCE(3187); + if (lookahead == 's') ADVANCE(2738); + if (lookahead == 'u') ADVANCE(3150); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3952: + case 3166: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3947); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'o') ADVANCE(3187); + if (lookahead == 'u') ADVANCE(3150); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3953: + case 3167: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3949); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'o') ADVANCE(3201); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3954: + case 3168: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'y') ADVANCE(3425); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'r') ADVANCE(2482); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3955: + case 3169: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2866); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'r') ADVANCE(2480); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3956: + case 3170: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2867); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'r') ADVANCE(2538); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3957: + case 3171: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2871); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'r') ADVANCE(2536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3958: + case 3172: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2864); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'r') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3959: + case 3173: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2870); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'r') ADVANCE(3199); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3960: + case 3174: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2865); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'r') ADVANCE(3057); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3961: + case 3175: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2868); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'r') ADVANCE(3068); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3962: + case 3176: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2869); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (lookahead == 'r') ADVANCE(3177); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3963: + case 3177: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3092); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3178: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3197); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3179: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3180); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3180: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'r') ADVANCE(3096); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3181: ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(2738); + if (lookahead == 'u') ADVANCE(3150); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3969); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'a') ADVANCE(3221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3964: + case 3182: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3183: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(2464); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3184: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(3131); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3185: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(3073); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3186: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 's') ADVANCE(3075); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3187: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3232); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3188: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3061); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3189: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3071); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3190: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3139); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3191: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3122); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3192: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3091); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3193: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3072); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3194: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3140); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3195: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3069); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3196: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3095); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3197: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 't') ADVANCE(3186); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3198: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(3150); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3199: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(3130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3200: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(3192); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3201: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'u') ADVANCE(3196); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3202: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'w') ADVANCE(3144); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3203: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'w') ADVANCE(3145); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3204: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'y') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3205: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2267); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3206: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2268); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3207: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2272); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3208: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2265); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3209: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2271); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3210: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2266); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3211: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3212: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(2270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3213: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3214: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3965: + case 3215: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2230); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'f') ADVANCE(3218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3966: + case 3216: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2219); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'f') ADVANCE(2720); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3967: + case 3217: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2711); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3218: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3974); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'i') ADVANCE(1760); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1763); END_STATE(); - case 3968: + case 3219: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3975); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'i') ADVANCE(3227); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3969: + case 3220: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3228); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3221: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'n') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3970: + case 3222: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3966); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'n') ADVANCE(3217); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3971: + case 3223: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3967); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'n') ADVANCE(3219); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3972: + case 3224: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3965); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'n') ADVANCE(3216); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3973: + case 3225: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3968); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'n') ADVANCE(3215); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3974: + case 3226: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3220); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); + END_STATE(); + case 3227: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 't') ADVANCE(3229); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3975: + case 3228: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3976); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 't') ADVANCE(3230); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3976: + case 3229: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'y') ADVANCE(2704); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3977: + case 3230: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == 'y') ADVANCE(2714); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3978: + case 3231: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3457); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3979: + case 3232: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + lookahead == ' ') ADVANCE(2505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3980: + case 3233: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3981: + case 3234: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3866); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3074); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3982: + case 3235: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3875); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3084); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3983: + case 3236: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3234); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3984: + case 3237: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3243); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3985: + case 3238: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2758); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3986: + case 3239: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2775); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3987: + case 3240: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3988: + case 3241: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3473); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3235); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3989: + case 3242: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3457); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3238); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3990: + case 3243: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3465); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2769); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3991: + case 3244: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3874); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3083); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3992: + case 3245: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3244); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3993: + case 3246: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3246); END_STATE(); - case 3994: + case 3247: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(3997); - if (lookahead == '_') ADVANCE(3998); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(3250); + if (lookahead == '_') ADVANCE(3251); if (lookahead == '\t' || - lookahead == ' ') SKIP(402); + lookahead == ' ') SKIP(304); if (lookahead == '+' || - lookahead == '-') ADVANCE(3996); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); END_STATE(); - case 3995: + case 3248: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '.') ADVANCE(3997); - if (lookahead == '_') ADVANCE(3998); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '.') ADVANCE(3250); + if (lookahead == '_') ADVANCE(3251); if (lookahead == '\t' || - lookahead == ' ') SKIP(477); + lookahead == ' ') SKIP(376); if (lookahead == '+' || - lookahead == '-') ADVANCE(3996); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); END_STATE(); - case 3996: + case 3249: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(3999); - if (lookahead == '_') ADVANCE(3996); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '.') ADVANCE(3252); + if (lookahead == '_') ADVANCE(3249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); END_STATE(); - case 3997: + case 3250: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(3997); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3356); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2621); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); END_STATE(); - case 3998: + case 3251: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(3998); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); END_STATE(); - case 3999: + case 3252: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(3999); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3252); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); END_STATE(); - case 4000: + case 3253: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4001); + if (lookahead == '_') ADVANCE(3254); if (lookahead == '+' || - lookahead == '-') ADVANCE(4001); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); END_STATE(); - case 4001: + case 3254: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4001); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); END_STATE(); - case 4002: + case 3255: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); END_STATE(); - case 4003: + case 3256: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4106); - if (lookahead == '>') ADVANCE(3606); - if (lookahead == 'r') ADVANCE(4119); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '+') ADVANCE(3382); + if (lookahead == '>') ADVANCE(2830); + if (lookahead == 'n') ADVANCE(3324); + if (lookahead == 'r') ADVANCE(3398); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4004: + case 3257: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4068); - if (lookahead == '>') ADVANCE(3610); - if (lookahead == 'u') ADVANCE(4146); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '+') ADVANCE(3382); + if (lookahead == '>') ADVANCE(2830); + if (lookahead == 'r') ADVANCE(3398); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4005: + case 3258: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4109); - if (lookahead == '>') ADVANCE(3598); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '+') ADVANCE(3333); + if (lookahead == '>') ADVANCE(2834); + if (lookahead == 'r') ADVANCE(2483); + if (lookahead == 'u') ADVANCE(3430); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4006: + case 3259: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4071); - if (lookahead == '>') ADVANCE(3602); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '+') ADVANCE(3333); + if (lookahead == '>') ADVANCE(2834); + if (lookahead == 'u') ADVANCE(3430); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4007: + case 3260: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4112); - if (lookahead == '>') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(4126); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '+') ADVANCE(3385); + if (lookahead == '>') ADVANCE(2822); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4008: + case 3261: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4075); - if (lookahead == '>') ADVANCE(4165); - if (lookahead == 'r') ADVANCE(3195); - if (lookahead == 'u') ADVANCE(4148); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '+') ADVANCE(3336); + if (lookahead == '>') ADVANCE(2826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4009: + case 3262: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4075); - if (lookahead == '>') ADVANCE(4165); - if (lookahead == 'u') ADVANCE(4148); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '+') ADVANCE(3390); + if (lookahead == '>') ADVANCE(3455); + if (lookahead == 'n') ADVANCE(3324); + if (lookahead == 'r') ADVANCE(3408); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4010: + case 3263: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4115); - if (lookahead == '>') ADVANCE(4167); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '+') ADVANCE(3390); + if (lookahead == '>') ADVANCE(3455); + if (lookahead == 'r') ADVANCE(3408); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4011: + case 3264: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4077); - if (lookahead == '>') ADVANCE(4169); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '+') ADVANCE(3340); + if (lookahead == '>') ADVANCE(3456); + if (lookahead == 'r') ADVANCE(2483); + if (lookahead == 'u') ADVANCE(3436); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4012: + case 3265: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(3340); + if (lookahead == '>') ADVANCE(3456); + if (lookahead == 'u') ADVANCE(3436); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3266: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(3394); + if (lookahead == '>') ADVANCE(3458); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3267: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(2951); - if (lookahead == '.') ADVANCE(4037); - if (lookahead == '_') ADVANCE(4016); + if (lookahead == '+') ADVANCE(3342); + if (lookahead == '>') ADVANCE(3460); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3268: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(2332); + if (lookahead == '.') ADVANCE(3300); + if (lookahead == '_') ADVANCE(3276); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4182); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'i') ADVANCE(3477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4013: + case 3269: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4205); - if (lookahead == '_') ADVANCE(4037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '-') ADVANCE(3498); + if (lookahead == '_') ADVANCE(3300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4014: + case 3270: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(3318); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3271: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(3452); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3272: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '-') ADVANCE(3354); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3273: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4073); + if (lookahead == '-') ADVANCE(3338); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4015: + case 3274: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4206); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '-') ADVANCE(3499); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4016: + case 3275: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4037); - if (lookahead == '_') ADVANCE(4016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '-') ADVANCE(3453); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4017: + case 3276: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3103); - if (lookahead == '_') ADVANCE(4044); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '.') ADVANCE(3300); + if (lookahead == '_') ADVANCE(3276); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4018: + case 3277: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4046); - if (lookahead == '_') ADVANCE(4018); + if (lookahead == '.') ADVANCE(2424); + if (lookahead == '_') ADVANCE(3307); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3304); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3278: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '.') ADVANCE(3309); + if (lookahead == '_') ADVANCE(3278); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3309); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4019: + case 3279: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4203); + if (lookahead == '.') ADVANCE(3496); if (lookahead == '+' || - lookahead == '-') ADVANCE(4020); + lookahead == '-') ADVANCE(3280); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'z') ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4020: + case 3280: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '2') ADVANCE(4193); + if (lookahead == '2') ADVANCE(3486); if (lookahead == '0' || - lookahead == '1') ADVANCE(4204); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == '1') ADVANCE(3497); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4021: + case 3281: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4195); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4198); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == ':') ADVANCE(3488); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3491); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4022: + case 3282: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4208); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == ':') ADVANCE(3501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4023: + case 3283: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4210); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == ':') ADVANCE(3503); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4024: + case 3284: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3626); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '=') ADVANCE(2493); + if (lookahead == '~') ADVANCE(2504); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4025: + case 3285: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3622); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '=') ADVANCE(2491); + if (lookahead == '>') ADVANCE(2417); + if (lookahead == '~') ADVANCE(2502); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4026: + case 3286: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3614); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '=') ADVANCE(2491); + if (lookahead == '~') ADVANCE(2502); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4027: + case 3287: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3618); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2850); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4028: + case 3288: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3094); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2846); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4029: + case 3289: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4166); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2838); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4030: + case 3290: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4168); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2842); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4031: + case 3291: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4170); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(2417); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4032: + case 3292: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4171); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '>') ADVANCE(3457); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4033: + case 3293: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3459); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3294: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(4176); - if (lookahead == 'f') ADVANCE(4192); - if (lookahead == 'n') ADVANCE(4176); + if (lookahead == '>') ADVANCE(3461); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3295: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '>') ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3296: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N') ADVANCE(3467); + if (lookahead == 'f') ADVANCE(3485); + if (lookahead == 'n') ADVANCE(3467); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4034: + case 3297: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T') ADVANCE(4207); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'T') ADVANCE(3500); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4035: + case 3298: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4037); - if (lookahead == 'b') ADVANCE(3416); - if (lookahead == 'o') ADVANCE(3432); - if (lookahead == 'x') ADVANCE(3438); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '_') ADVANCE(3300); + if (lookahead == 'b') ADVANCE(2727); + if (lookahead == 'o') ADVANCE(2743); + if (lookahead == 'x') ADVANCE(2748); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3302); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4036: + case 3299: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4037); + if (lookahead == '_') ADVANCE(3300); if (lookahead == '+' || - lookahead == '-') ADVANCE(4037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == '-') ADVANCE(3300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4037: + case 3300: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '_') ADVANCE(3300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4038: + case 3301: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '_') ADVANCE(3300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4039: + case 3302: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4038); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '_') ADVANCE(3300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3301); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4040: + case 3303: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '_') ADVANCE(3300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3302); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4041: + case 3304: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4041); + if (lookahead == '_') ADVANCE(3304); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4036); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'e') ADVANCE(3299); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3304); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4042: + case 3305: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4042); + if (lookahead == '_') ADVANCE(3305); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3306); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4043: + case 3306: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4043); + if (lookahead == '_') ADVANCE(3306); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4045); + lookahead == 'e') ADVANCE(3308); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3306); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4044: + case 3307: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4044); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '_') ADVANCE(3307); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3304); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4045: + case 3308: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4046); + if (lookahead == '_') ADVANCE(3309); if (lookahead == '+' || - lookahead == '-') ADVANCE(4046); + lookahead == '-') ADVANCE(3309); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3309); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4046: + case 3309: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4046); + if (lookahead == '_') ADVANCE(3309); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3309); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4047: + case 3310: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4090); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'a') ADVANCE(3362); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4048: + case 3311: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4143); - if (lookahead == 'o') ADVANCE(4101); + if (lookahead == 'a') ADVANCE(3426); + if (lookahead == 'o') ADVANCE(3377); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4049: + case 3312: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4099); - if (lookahead == 'o') ADVANCE(4120); + if (lookahead == 'a') ADVANCE(3366); + if (lookahead == 'o') ADVANCE(3403); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4050: + case 3313: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4089); - if (lookahead == 'o') ADVANCE(4057); - if (lookahead == 'u') ADVANCE(4142); + if (lookahead == 'a') ADVANCE(3361); + if (lookahead == 'o') ADVANCE(3325); + if (lookahead == 'u') ADVANCE(3425); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4051: + case 3314: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4088); + if (lookahead == 'a') ADVANCE(3360); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4052: + case 3315: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4163); + if (lookahead == 'a') ADVANCE(3454); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4053: + case 3316: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4134); + if (lookahead == 'a') ADVANCE(3417); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4054: + case 3317: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4081); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + if (lookahead == 'a') ADVANCE(3414); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4055: + case 3318: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4065); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + if (lookahead == 'a') ADVANCE(3381); + if (lookahead == 'o') ADVANCE(3401); + if (lookahead == 's') ADVANCE(3346); + if (lookahead == 'x') ADVANCE(3392); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4056: + case 3319: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3187); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'c') ADVANCE(3349); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4057: + case 3320: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4155); + if (lookahead == 'c') ADVANCE(3332); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4058: + case 3321: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4065); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + if (lookahead == 'd') ADVANCE(2479); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4059: + case 3322: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2157); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'd') ADVANCE(2518); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4060: + case 3323: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2202); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'd') ADVANCE(2535); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4061: + case 3324: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4192); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + if (lookahead == 'd') ADVANCE(3421); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4062: + case 3325: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4078); - if (lookahead == 'o') ADVANCE(4192); + if (lookahead == 'd') ADVANCE(3446); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4063: + case 3326: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4162); - if (lookahead == 'u') ADVANCE(4096); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4183); + if (lookahead == 'd') ADVANCE(3332); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4064: + case 3327: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(2639); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3328: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'e') ADVANCE(2647); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3329: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4080); + if (lookahead == 'e') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4065: + case 3330: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4014); + if (lookahead == 'e') ADVANCE(3343); + if (lookahead == 'o') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4066: + case 3331: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2152); + if (lookahead == 'e') ADVANCE(3345); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4067: + case 3332: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2197); + if (lookahead == 'e') ADVANCE(3273); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4068: + case 3333: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4025); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'e') ADVANCE(3288); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4069: + case 3334: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4144); - if (lookahead == 'i') ADVANCE(4138); - if (lookahead == 'o') ADVANCE(4108); + if (lookahead == 'e') ADVANCE(3427); + if (lookahead == 'o') ADVANCE(3384); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4070: + case 3335: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4051); + if (lookahead == 'e') ADVANCE(3314); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4071: + case 3336: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'e') ADVANCE(3411); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4072: + case 3337: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4120); + if (lookahead == 'e') ADVANCE(3403); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4073: + case 3338: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4104); + if (lookahead == 'e') ADVANCE(3379); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4074: + case 3339: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4131); + if (lookahead == 'e') ADVANCE(3413); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4075: + case 3340: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4030); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'e') ADVANCE(3293); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4076: + case 3341: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4128); + if (lookahead == 'e') ADVANCE(3410); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4077: + case 3342: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4132); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'e') ADVANCE(3415); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4078: + case 3343: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(4192); + if (lookahead == 'f') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4079: + case 3344: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(3075); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'f') ADVANCE(2403); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4080: + case 3345: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'g') ADVANCE(4087); - if (lookahead == 't') ADVANCE(4158); + if (lookahead == 'g') ADVANCE(3355); + if (lookahead == 't') ADVANCE(3448); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4081: + case 3346: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4192); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + if (lookahead == 'h') ADVANCE(3364); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4082: + case 3347: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4086); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + if (lookahead == 'h') ADVANCE(2489); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3348: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'h') ADVANCE(2487); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4083: + case 3349: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4058); + if (lookahead == 'h') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4084: + case 3350: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4053); + if (lookahead == 'h') ADVANCE(3357); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4085: + case 3351: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4105); + if (lookahead == 'i') ADVANCE(3326); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4086: + case 3352: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4098); + if (lookahead == 'i') ADVANCE(3316); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4087: + case 3353: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4140); + if (lookahead == 'i') ADVANCE(3380); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + END_STATE(); + case 3354: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(3375); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4088: + case 3355: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4192); + if (lookahead == 'i') ADVANCE(3423); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + END_STATE(); + case 3356: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'i') ADVANCE(3431); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4089: + case 3357: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4061); - if (lookahead == 't') ADVANCE(4054); + if (lookahead == 'i') ADVANCE(3372); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4090: + case 3358: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4136); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'i') ADVANCE(3432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4091: + case 3359: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(2210); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'i') ADVANCE(3435); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4092: + case 3360: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4139); - if (lookahead == 'r') ADVANCE(4127); - if (lookahead == 'x') ADVANCE(4117); + if (lookahead == 'k') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4093: + case 3361: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(2205); + if (lookahead == 'k') ADVANCE(3329); + if (lookahead == 't') ADVANCE(3319); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + END_STATE(); + case 3362: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(3419); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3363: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(2630); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3364: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(2531); + if (lookahead == 'r') ADVANCE(2533); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4094: + case 3365: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4084); - if (lookahead == 's') ADVANCE(4192); + if (lookahead == 'l') ADVANCE(3422); + if (lookahead == 'r') ADVANCE(3409); + if (lookahead == 'x') ADVANCE(3396); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4095: + case 3366: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4091); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'l') ADVANCE(3422); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4096: + case 3367: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4093); + if (lookahead == 'l') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4097: + case 3368: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4052); + if (lookahead == 'l') ADVANCE(3352); + if (lookahead == 's') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + END_STATE(); + case 3369: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'l') ADVANCE(3363); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4098: + case 3370: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4061); + if (lookahead == 'l') ADVANCE(3367); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4099: + case 3371: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4141); + if (lookahead == 'l') ADVANCE(3315); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4100: + case 3372: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4192); + if (lookahead == 'l') ADVANCE(3329); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + END_STATE(); + case 3373: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(3321); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3374: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(2379); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3375: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(2485); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4101: + case 3376: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4137); + if (lookahead == 'n') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4102: + case 3377: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4056); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'n') ADVANCE(3420); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4103: + case 3378: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3041); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'n') ADVANCE(3324); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4104: + case 3379: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4160); + if (lookahead == 'n') ADVANCE(3450); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4105: + case 3380: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4154); + if (lookahead == 'n') ADVANCE(3445); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + END_STATE(); + case 3381: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'n') ADVANCE(3323); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4106: + case 3382: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'o') ADVANCE(3287); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4107: + case 3383: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4156); + if (lookahead == 'o') ADVANCE(3447); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4108: + case 3384: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4116); + if (lookahead == 'o') ADVANCE(3395); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4109: + case 3385: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4153); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'o') ADVANCE(3442); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4110: + case 3386: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4145); - if (lookahead == 'u') ADVANCE(4095); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4181); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'o') ADVANCE(3322); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4111: + case 3387: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4120); + if (lookahead == 'o') ADVANCE(3403); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4112: + case 3388: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(3400); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3389: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4029); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'o') ADVANCE(3434); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4113: + case 3390: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4122); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'o') ADVANCE(3292); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4114: + case 3391: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4124); + if (lookahead == 'o') ADVANCE(3406); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + END_STATE(); + case 3392: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(3402); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3393: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'o') ADVANCE(3428); + if (lookahead == 'u') ADVANCE(3369); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3473); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4115: + case 3394: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4159); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'o') ADVANCE(3449); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4116: + case 3395: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4192); + if (lookahead == 'p') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4117: + case 3396: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4114); - if (lookahead == 't') ADVANCE(4076); + if (lookahead == 'p') ADVANCE(3391); + if (lookahead == 't') ADVANCE(3341); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4118: + case 3397: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4152); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'r') ADVANCE(3441); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4119: + case 3398: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4005); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'r') ADVANCE(3260); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4120: + case 3399: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4192); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + if (lookahead == 'r') ADVANCE(2483); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3400: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(2481); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3401: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(2539); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4121: + case 3402: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(2537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3403: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4157); + if (lookahead == 'r') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4122: + case 3404: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3191); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'r') ADVANCE(3444); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4123: + case 3405: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4070); + if (lookahead == 'r') ADVANCE(3335); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4124: + case 3406: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4144); + if (lookahead == 'r') ADVANCE(3427); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4125: + case 3407: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4055); + if (lookahead == 'r') ADVANCE(3320); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4126: + case 3408: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4010); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'r') ADVANCE(3266); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4127: + case 3409: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4111); + if (lookahead == 'r') ADVANCE(3387); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4128: + case 3410: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4100); + if (lookahead == 'r') ADVANCE(3376); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4129: + case 3411: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4130); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'r') ADVANCE(3412); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4130: + case 3412: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4027); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'r') ADVANCE(3290); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4131: + case 3413: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4097); + if (lookahead == 'r') ADVANCE(3371); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4132: + case 3414: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'r') ADVANCE(3439); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3415: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4133); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'r') ADVANCE(3416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4133: + case 3416: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4032); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'r') ADVANCE(3295); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4134: + case 3417: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4192); + if (lookahead == 's') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4135: + case 3418: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3177); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 's') ADVANCE(2471); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4136: + case 3419: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4060); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 's') ADVANCE(3328); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4137: + case 3420: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4142); - if (lookahead == 't') ADVANCE(4085); + if (lookahead == 's') ADVANCE(3425); + if (lookahead == 't') ADVANCE(3353); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4138: + case 3421: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4142); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + if (lookahead == 's') ADVANCE(3271); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4139: + case 3422: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4061); + if (lookahead == 's') ADVANCE(3329); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4140: + case 3423: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4150); + if (lookahead == 's') ADVANCE(3438); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4141: + case 3424: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4067); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + if (lookahead == 's') ADVANCE(3275); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4142: + case 3425: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4192); + if (lookahead == 't') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4143: + case 3426: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4054); + if (lookahead == 't') ADVANCE(3319); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4144: + case 3427: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4014); + if (lookahead == 't') ADVANCE(3273); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + END_STATE(); + case 3428: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(3487); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3429: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(3317); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3430: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(3261); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4145: + case 3431: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(3270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3432: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4194); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 't') ADVANCE(3347); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4146: + case 3433: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(3289); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3434: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4006); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 't') ADVANCE(3272); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4147: + case 3435: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4026); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 't') ADVANCE(3348); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4148: + case 3436: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4011); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 't') ADVANCE(3267); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4149: + case 3437: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 't') ADVANCE(3294); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4150: + case 3438: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4072); + if (lookahead == 't') ADVANCE(3337); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4151: + case 3439: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 't') ADVANCE(3424); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3440: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4095); + if (lookahead == 'u') ADVANCE(3369); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4181); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'a') ADVANCE(3473); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4152: + case 3441: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'u') ADVANCE(3327); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); + END_STATE(); + case 3442: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4059); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'u') ADVANCE(3433); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4153: + case 3443: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4147); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'u') ADVANCE(3370); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3475); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4154: + case 3444: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4061); + if (lookahead == 'u') ADVANCE(3329); + if (lookahead == 'y') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4155: + case 3445: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4098); + if (lookahead == 'u') ADVANCE(3329); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4156: + case 3446: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4125); + if (lookahead == 'u') ADVANCE(3372); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4157: + case 3447: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4066); - if (lookahead == 'y') ADVANCE(4192); + if (lookahead == 'u') ADVANCE(3407); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4158: + case 3448: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4128); + if (lookahead == 'u') ADVANCE(3410); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4159: + case 3449: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4149); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == 'u') ADVANCE(3437); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4160: + case 3450: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4192); + if (lookahead == 'v') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4161: + case 3451: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4074); + if (lookahead == 'v') ADVANCE(3339); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + END_STATE(); + case 3452: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'w') ADVANCE(3358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4162: + case 3453: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(4192); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + if (lookahead == 'w') ADVANCE(3359); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4163: + case 3454: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'y') ADVANCE(4192); + if (lookahead == 'y') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4164: + case 3455: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2866); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '|') ADVANCE(2267); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4165: + case 3456: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2867); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '|') ADVANCE(2268); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4166: + case 3457: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2871); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '|') ADVANCE(2272); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4167: + case 3458: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2864); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '|') ADVANCE(2265); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4168: + case 3459: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2870); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '|') ADVANCE(2271); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4169: + case 3460: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2865); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '|') ADVANCE(2266); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4170: + case 3461: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2868); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '|') ADVANCE(2269); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4171: + case 3462: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2869); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (lookahead == '|') ADVANCE(2270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4172: + case 3463: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '+' || - lookahead == '-') ADVANCE(4020); + lookahead == '-') ADVANCE(3280); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4212); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4172); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'z') ADVANCE(3505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3463); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4173: + case 3464: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4181); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'a') ADVANCE(3473); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4174: + case 3465: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4183); + lookahead == 'a') ADVANCE(3475); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4175: + case 3466: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4179); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'f') ADVANCE(3471); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4176: + case 3467: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4180); + lookahead == 'f') ADVANCE(3472); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + END_STATE(); + case 3468: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3472); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4177: + case 3469: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4187); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'i') ADVANCE(3480); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4178: + case 3470: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4188); + lookahead == 'i') ADVANCE(3481); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4179: + case 3471: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4185); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'i') ADVANCE(3478); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4180: + case 3472: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4186); + lookahead == 'i') ADVANCE(3479); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4181: + case 3473: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'n') ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4182: + case 3474: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4175); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'n') ADVANCE(3466); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4183: + case 3475: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4192); + lookahead == 'n') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4184: + case 3476: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4176); + lookahead == 'n') ADVANCE(3467); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); + END_STATE(); + case 3477: + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3468); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4185: + case 3478: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4177); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'n') ADVANCE(3469); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4186: + case 3479: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4178); + lookahead == 'n') ADVANCE(3470); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4187: + case 3480: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4189); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 't') ADVANCE(3482); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4188: + case 3481: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4190); + lookahead == 't') ADVANCE(3483); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4189: + case 3482: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == 'y') ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4190: + case 3483: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4192); + lookahead == 'y') ADVANCE(3485); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4191: + case 3484: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4191); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == '_') ADVANCE(3484); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4192: + case 3485: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3485); END_STATE(); - case 4193: + case 3486: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4021); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3281); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4194: + case 3487: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == ' ') ADVANCE(2505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4195: + case 3488: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4198); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3491); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4196: + case 3489: ACCEPT_TOKEN(aux_sym_unquoted_token4); if ((',' <= lookahead && lookahead <= '.') || lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4196); + ('<' <= lookahead && lookahead <= '@')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3489); END_STATE(); - case 4197: + case 3490: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4197); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + lookahead == '_') ADVANCE(3490); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4198: + case 3491: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4199: + case 3492: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3274); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4200: + case 3493: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3297); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4201: + case 3494: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4023); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3283); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4202: + case 3495: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4019); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3279); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4203: + case 3496: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4172); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3463); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4204: + case 3497: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4021); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3281); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4205: + case 3498: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4199); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3492); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4206: + case 3499: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4200); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3493); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4207: + case 3500: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4201); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3494); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4208: + case 3501: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4202); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3495); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4209: + case 3502: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3282); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4210: + case 3503: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4209); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3502); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4211: + case 3504: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3504); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4212: + case 3505: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4213: + case 3506: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(3360); - if (lookahead == '(') ADVANCE(3269); - if (lookahead == '[') ADVANCE(3504); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '$') ADVANCE(2648); + if (lookahead == '(') ADVANCE(2540); + if (lookahead == '[') ADVANCE(2803); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4214: + case 3507: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4265); - if (lookahead == '>') ADVANCE(3604); - if (lookahead == 'r') ADVANCE(4268); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '+') ADVANCE(3553); + if (lookahead == '>') ADVANCE(2828); + if (lookahead == 'r') ADVANCE(3556); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4215: + case 3508: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4260); - if (lookahead == '>') ADVANCE(3608); - if (lookahead == 'u') ADVANCE(4272); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '+') ADVANCE(3548); + if (lookahead == '>') ADVANCE(2832); + if (lookahead == 'u') ADVANCE(3560); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4216: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4254); - if (lookahead == '-') ADVANCE(4256); - if (lookahead == '>') ADVANCE(3604); - if (lookahead == '_') ADVANCE(4256); - if (lookahead == 'r') ADVANCE(4268); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); - END_STATE(); - case 4217: + case 3509: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4266); - if (lookahead == '>') ADVANCE(3596); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '+') ADVANCE(3542); + if (lookahead == '-') ADVANCE(3544); + if (lookahead == '>') ADVANCE(2828); + if (lookahead == '_') ADVANCE(3544); + if (lookahead == 'r') ADVANCE(3556); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4218: + case 3510: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4261); - if (lookahead == '>') ADVANCE(3600); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '+') ADVANCE(3554); + if (lookahead == '>') ADVANCE(2820); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4219: + case 3511: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(4296); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '+') ADVANCE(3549); + if (lookahead == '>') ADVANCE(2824); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4220: + case 3512: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4230); - if (lookahead == ':') ADVANCE(4305); - if (lookahead == '_') ADVANCE(4220); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); + if (lookahead == '-') ADVANCE(3588); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4221: + case 3513: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(4246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4222: + case 3514: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(4251); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4223: + case 3515: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3274); - if (lookahead == '_') ADVANCE(4246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '.') ADVANCE(2544); + if (lookahead == '_') ADVANCE(3534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4224: + case 3516: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4245); - if (lookahead == '_') ADVANCE(4225); + if (lookahead == '.') ADVANCE(3533); + if (lookahead == '_') ADVANCE(3517); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4285); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'i') ADVANCE(3573); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4225: + case 3517: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4245); - if (lookahead == '_') ADVANCE(4225); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '.') ADVANCE(3533); + if (lookahead == '_') ADVANCE(3517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4226: + case 3518: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3101); - if (lookahead == '_') ADVANCE(4246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '.') ADVANCE(2422); + if (lookahead == '_') ADVANCE(3534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4227: + case 3519: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4250); - if (lookahead == '_') ADVANCE(4228); + if (lookahead == '.') ADVANCE(3537); + if (lookahead == '_') ADVANCE(3520); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4285); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'i') ADVANCE(3573); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4228: + case 3520: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4250); - if (lookahead == '_') ADVANCE(4228); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '.') ADVANCE(3537); + if (lookahead == '_') ADVANCE(3520); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4229: + case 3521: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(4291); + if (lookahead == '2') ADVANCE(3579); if (lookahead == '0' || - lookahead == '1') ADVANCE(4301); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); - END_STATE(); - case 4230: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4305); - if (lookahead == '_') ADVANCE(4230); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); - END_STATE(); - case 4231: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4305); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2225); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); - END_STATE(); - case 4232: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4305); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4235); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); - END_STATE(); - case 4233: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4305); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4231); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); + lookahead == '1') ADVANCE(3587); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4234: + case 3522: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4305); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4232); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); + if (lookahead == ':') ADVANCE(3593); + if (lookahead == '_') ADVANCE(3522); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2691); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3525); END_STATE(); - case 4235: + case 3523: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4305); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4236); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); + if (lookahead == ':') ADVANCE(3593); + if (lookahead == '_') ADVANCE(3524); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3525); END_STATE(); - case 4236: + case 3524: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4305); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); + if (lookahead == ':') ADVANCE(3593); + if (lookahead == '_') ADVANCE(3524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3525); END_STATE(); - case 4237: + case 3525: 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(4237); + if (lookahead == ':') ADVANCE(3593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3525); END_STATE(); - case 4238: + case 3526: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4302); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == ':') ADVANCE(3590); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4239: + case 3527: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4304); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == ':') ADVANCE(3592); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4240: + case 3528: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3624); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '>') ADVANCE(2848); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4241: + case 3529: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3620); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '>') ADVANCE(2844); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4242: + case 3530: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3612); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '>') ADVANCE(2836); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4243: + case 3531: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3616); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '>') ADVANCE(2840); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4244: + case 3532: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4244); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '_') ADVANCE(3532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4245: + case 3533: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4245); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '_') ADVANCE(3533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4246: + case 3534: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '_') ADVANCE(3534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2695); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4247: + case 3535: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4248); + if (lookahead == '_') ADVANCE(3536); if (lookahead == '+' || - lookahead == '-') ADVANCE(4248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == '-') ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4248: + case 3536: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '_') ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4249: + case 3537: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4249); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '_') ADVANCE(3537); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4250: + case 3538: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '_') ADVANCE(3538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4251: + case 3539: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4251); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '_') ADVANCE(3540); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4252: + case 3540: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4253); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4253); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '_') ADVANCE(3540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4253: + case 3541: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4253); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '_') ADVANCE(3541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4254: + case 3542: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4256); - if (lookahead == 'o') ADVANCE(4240); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '_') ADVANCE(3544); + if (lookahead == 'o') ADVANCE(3528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4255: + case 3543: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4256); + if (lookahead == '_') ADVANCE(3544); if (lookahead == '+' || - lookahead == '-') ADVANCE(4256); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == '-') ADVANCE(3544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4256: + case 3544: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4256); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == '_') ADVANCE(3544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4257: + case 3545: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(4263); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'a') ADVANCE(3551); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4258: + case 3546: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2150); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'e') ADVANCE(2632); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4259: + case 3547: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2195); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'e') ADVANCE(2640); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4260: + case 3548: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4241); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'e') ADVANCE(3529); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4261: + case 3549: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4269); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'e') ADVANCE(3557); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4262: + case 3550: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2203); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'l') ADVANCE(2624); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4263: + case 3551: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4271); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'l') ADVANCE(3559); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4264: + case 3552: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4262); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'l') ADVANCE(3550); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4265: + case 3553: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4240); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'o') ADVANCE(3528); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4266: + case 3554: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4276); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'o') ADVANCE(3564); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4267: + case 3555: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4275); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'r') ADVANCE(3563); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4268: + case 3556: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4217); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'r') ADVANCE(3510); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4269: + case 3557: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4270); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'r') ADVANCE(3558); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4270: + case 3558: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4243); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'r') ADVANCE(3531); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4271: + case 3559: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(4259); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 's') ADVANCE(3547); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4272: + case 3560: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4218); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 't') ADVANCE(3511); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4273: + case 3561: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4242); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 't') ADVANCE(3530); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4274: + case 3562: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4264); + if (lookahead == 'u') ADVANCE(3552); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4282); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'a') ADVANCE(3570); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4275: + case 3563: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4258); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'u') ADVANCE(3546); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4276: + case 3564: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4273); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (lookahead == 'u') ADVANCE(3561); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4277: + case 3565: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4282); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'a') ADVANCE(3570); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4278: + case 3566: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2228); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'f') ADVANCE(2709); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4279: + case 3567: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2217); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'f') ADVANCE(2718); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4280: + case 3568: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4287); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'i') ADVANCE(3575); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4281: + case 3569: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4288); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'i') ADVANCE(3576); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4282: + case 3570: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'n') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4283: + case 3571: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4279); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'n') ADVANCE(3566); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4284: + case 3572: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4280); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'n') ADVANCE(3568); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4285: + case 3573: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4278); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'n') ADVANCE(3567); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4286: + case 3574: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4281); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'n') ADVANCE(3569); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4287: + case 3575: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4290); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 't') ADVANCE(3577); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4288: + case 3576: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4289); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 't') ADVANCE(3578); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4289: + case 3577: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'y') ADVANCE(2704); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4290: + case 3578: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + lookahead == 'y') ADVANCE(2714); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4291: + case 3579: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3456); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2762); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4292: + case 3580: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4293: + case 3581: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4219); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4294: + case 3582: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4239); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3527); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4295: + case 3583: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4293); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3581); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4296: + case 3584: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4298); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2767); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4297: + case 3585: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4294); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2757); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4298: + case 3586: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3463); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2774); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4299: + case 3587: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2762); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4300: + case 3588: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3472); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3584); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4301: + case 3589: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3456); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3582); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4302: + case 3590: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4299); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3585); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4303: + case 3591: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4238); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3526); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4304: + case 3592: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4303); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4305: + case 3593: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); - case 4306: + case 3594: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4366); - if (lookahead == '>') ADVANCE(3604); - if (lookahead == 'I') ADVANCE(4383); - if (lookahead == 'i') ADVANCE(4383); - if (lookahead == 'r') ADVANCE(4370); + if (lookahead == '+') ADVANCE(3658); + if (lookahead == '>') ADVANCE(2828); + if (lookahead == 'I') ADVANCE(3675); + if (lookahead == 'i') ADVANCE(3675); + if (lookahead == 'r') ADVANCE(3662); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4307: + case 3595: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4366); - if (lookahead == '>') ADVANCE(3604); - if (lookahead == 'r') ADVANCE(4370); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '+') ADVANCE(3658); + if (lookahead == '>') ADVANCE(2828); + if (lookahead == 'r') ADVANCE(3662); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4308: + case 3596: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4359); - if (lookahead == '>') ADVANCE(3608); - if (lookahead == 'u') ADVANCE(4376); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '+') ADVANCE(3651); + if (lookahead == '>') ADVANCE(2832); + if (lookahead == 'u') ADVANCE(3668); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4309: + case 3597: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); ADVANCE_MAP( - '+', 4347, - '-', 4349, - '>', 3604, - 'I', 4383, - '_', 4349, - 'i', 4383, - 'r', 4370, - 'B', 3420, - 'b', 3420, + '+', 3638, + '-', 3640, + '>', 2828, + 'I', 3675, + '_', 3640, + 'i', 3675, + 'r', 3662, + 'B', 2731, + 'b', 2731, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4310: + case 3598: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4347); - if (lookahead == '-') ADVANCE(4349); - if (lookahead == '>') ADVANCE(3604); - if (lookahead == '_') ADVANCE(4349); - if (lookahead == 'r') ADVANCE(4370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); - END_STATE(); - case 4311: + if (lookahead == '+') ADVANCE(3638); + if (lookahead == '-') ADVANCE(3640); + if (lookahead == '>') ADVANCE(2828); + if (lookahead == '_') ADVANCE(3640); + if (lookahead == 'r') ADVANCE(3662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + END_STATE(); + case 3599: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4367); - if (lookahead == '>') ADVANCE(3596); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '+') ADVANCE(3659); + if (lookahead == '>') ADVANCE(2820); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4312: + case 3600: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4360); - if (lookahead == '>') ADVANCE(3600); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '+') ADVANCE(3652); + if (lookahead == '>') ADVANCE(2824); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4313: + case 3601: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '-') ADVANCE(4402); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '-') ADVANCE(3694); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4314: + case 3602: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(4341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4315: + case 3603: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(4346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3637); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4316: + case 3604: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3274); - if (lookahead == '_') ADVANCE(4346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '.') ADVANCE(2544); + if (lookahead == '_') ADVANCE(3637); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4317: + case 3605: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3274); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '.') ADVANCE(2544); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4318: + case 3606: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4320); - if (lookahead == '_') ADVANCE(4341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '.') ADVANCE(3608); + if (lookahead == '_') ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4319: + case 3607: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4320); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '.') ADVANCE(3608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4320: + case 3608: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2944); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '.') ADVANCE(2326); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4321: + case 3609: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4340); - if (lookahead == '_') ADVANCE(4322); + if (lookahead == '.') ADVANCE(3632); + if (lookahead == '_') ADVANCE(3610); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4391); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'i') ADVANCE(3683); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4322: + case 3610: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4340); - if (lookahead == '_') ADVANCE(4322); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '.') ADVANCE(3632); + if (lookahead == '_') ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4323: + case 3611: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3273); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '.') ADVANCE(2543); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4324: + case 3612: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4345); - if (lookahead == '_') ADVANCE(4325); + if (lookahead == '.') ADVANCE(3636); + if (lookahead == '_') ADVANCE(3613); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4391); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'i') ADVANCE(3683); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4325: + case 3613: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4345); - if (lookahead == '_') ADVANCE(4325); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '.') ADVANCE(3636); + if (lookahead == '_') ADVANCE(3613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4326: + case 3614: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '2') ADVANCE(4397); + if (lookahead == '2') ADVANCE(3689); if (lookahead == '0' || - lookahead == '1') ADVANCE(4407); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == '1') ADVANCE(3698); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + END_STATE(); + case 3615: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == ':') ADVANCE(3703); + if (lookahead == '_') ADVANCE(3615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2689); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3618); END_STATE(); - case 4327: + case 3616: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == ':') ADVANCE(3703); + if (lookahead == '_') ADVANCE(3617); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3618); + END_STATE(); + case 3617: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == ':') ADVANCE(3703); + if (lookahead == '_') ADVANCE(3617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3618); + END_STATE(); + case 3618: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(4404); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == ':') ADVANCE(3703); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3618); END_STATE(); - case 4328: + case 3619: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == ':') ADVANCE(3699); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + END_STATE(); + case 3620: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(4410); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == ':') ADVANCE(3702); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4329: + case 3621: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3624); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '>') ADVANCE(2848); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4330: + case 3622: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3620); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '>') ADVANCE(2844); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4331: + case 3623: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3612); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '>') ADVANCE(2836); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4332: + case 3624: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3616); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '>') ADVANCE(2840); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4333: + case 3625: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4383); - if (lookahead == '_') ADVANCE(4349); - if (lookahead == 'i') ADVANCE(4383); + if (lookahead == 'I') ADVANCE(3675); + if (lookahead == '_') ADVANCE(3640); + if (lookahead == 'i') ADVANCE(3675); if (lookahead == '+' || - lookahead == '-') ADVANCE(4349); + lookahead == '-') ADVANCE(3640); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4334: + case 3626: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4383); - if (lookahead == '_') ADVANCE(4349); - if (lookahead == 'i') ADVANCE(4354); + if (lookahead == 'I') ADVANCE(3675); + if (lookahead == '_') ADVANCE(3640); + if (lookahead == 'i') ADVANCE(3646); if (lookahead == '+' || - lookahead == '-') ADVANCE(4349); + lookahead == '-') ADVANCE(3640); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4335: + case 3627: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4383); - if (lookahead == 'i') ADVANCE(4383); - if (lookahead == 'r') ADVANCE(4379); + if (lookahead == 'I') ADVANCE(3675); + if (lookahead == 'i') ADVANCE(3675); + if (lookahead == 'r') ADVANCE(3671); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4336: + case 3628: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4383); - if (lookahead == 'i') ADVANCE(4383); + if (lookahead == 'I') ADVANCE(3675); + if (lookahead == 'i') ADVANCE(3675); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4337: + case 3629: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4383); - if (lookahead == 'i') ADVANCE(4354); + if (lookahead == 'I') ADVANCE(3675); + if (lookahead == 'i') ADVANCE(3646); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4338: + case 3630: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4383); - if (lookahead == 'i') ADVANCE(4365); - if (lookahead == 's') ADVANCE(3425); + if (lookahead == 'I') ADVANCE(3675); + if (lookahead == 'i') ADVANCE(3657); + if (lookahead == 's') ADVANCE(2738); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4339: + case 3631: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '_') ADVANCE(3631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4340: + case 3632: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4340); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '_') ADVANCE(3632); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4341: + case 3633: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '_') ADVANCE(3633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2616); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4342: + case 3634: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4343); + if (lookahead == '_') ADVANCE(3635); if (lookahead == '+' || - lookahead == '-') ADVANCE(4343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); - END_STATE(); - case 4343: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == '-') ADVANCE(3635); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4344: + case 3635: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4344); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '_') ADVANCE(3635); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4345: + case 3636: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '_') ADVANCE(3636); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4346: + case 3637: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '_') ADVANCE(3637); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4347: + case 3638: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4349); - if (lookahead == 'o') ADVANCE(4329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '_') ADVANCE(3640); + if (lookahead == 'o') ADVANCE(3621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4348: + case 3639: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4349); + if (lookahead == '_') ADVANCE(3640); if (lookahead == '+' || - lookahead == '-') ADVANCE(4349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == '-') ADVANCE(3640); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4349: + case 3640: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '_') ADVANCE(3640); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4350: + case 3641: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4351); + if (lookahead == '_') ADVANCE(3642); if (lookahead == '+' || - lookahead == '-') ADVANCE(4351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == '-') ADVANCE(3642); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4351: + case 3642: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(3642); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); + END_STATE(); + case 3643: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == '_') ADVANCE(3643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4352: + case 3644: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(4363); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'a') ADVANCE(3655); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4353: + case 3645: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(4381); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'a') ADVANCE(3673); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4354: + case 3646: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4355: + case 3647: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'c') ADVANCE(3425); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'c') ADVANCE(2738); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4356: + case 3648: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(2150); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'e') ADVANCE(2632); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4357: + case 3649: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(2195); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'e') ADVANCE(2640); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4358: + case 3650: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4355); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'e') ADVANCE(3647); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4359: + case 3651: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4330); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'e') ADVANCE(3622); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4360: + case 3652: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4371); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'e') ADVANCE(3663); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4361: + case 3653: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'k') ADVANCE(3425); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'k') ADVANCE(2738); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4362: + case 3654: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(2203); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'l') ADVANCE(2624); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4363: + case 3655: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(4375); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'l') ADVANCE(3667); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4364: + case 3656: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(4362); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'l') ADVANCE(3654); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4365: + case 3657: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'n') ADVANCE(3425); + if (lookahead == 'n') ADVANCE(2738); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4366: + case 3658: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(4329); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'o') ADVANCE(3621); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4367: + case 3659: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(4380); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'o') ADVANCE(3672); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4368: + case 3660: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3425); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'r') ADVANCE(2738); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4369: + case 3661: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4379); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'r') ADVANCE(3671); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4370: + case 3662: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4311); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'r') ADVANCE(3599); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4371: + case 3663: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4372); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'r') ADVANCE(3664); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4372: + case 3664: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4332); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'r') ADVANCE(3624); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4373: + case 3665: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(3425); - if (lookahead == 'u') ADVANCE(4364); + if (lookahead == 's') ADVANCE(2738); + if (lookahead == 'u') ADVANCE(3656); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'a') ADVANCE(3680); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4374: + case 3666: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(3425); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 's') ADVANCE(2738); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4375: + case 3667: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(4357); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 's') ADVANCE(3649); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4376: + case 3668: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(4312); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 't') ADVANCE(3600); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4377: + case 3669: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(4331); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 't') ADVANCE(3623); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4378: + case 3670: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4364); + if (lookahead == 'u') ADVANCE(3656); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'a') ADVANCE(3680); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4379: + case 3671: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4356); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'u') ADVANCE(3648); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4380: + case 3672: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4377); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'u') ADVANCE(3669); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4381: + case 3673: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'y') ADVANCE(3425); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (lookahead == 'y') ADVANCE(2738); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4382: + case 3674: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'a') ADVANCE(3680); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4383: + case 3675: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4384: + case 3676: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2231); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'f') ADVANCE(2721); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4385: + case 3677: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2220); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'f') ADVANCE(2712); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4386: + case 3678: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4393); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'i') ADVANCE(3685); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4387: + case 3679: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4394); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'i') ADVANCE(3686); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4388: + case 3680: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'n') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4389: + case 3681: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'n') ADVANCE(3677); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4390: + case 3682: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4386); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'n') ADVANCE(3678); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4391: + case 3683: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4384); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'n') ADVANCE(3676); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4392: + case 3684: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4387); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'n') ADVANCE(3679); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4393: + case 3685: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4396); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 't') ADVANCE(3687); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4394: + case 3686: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4395); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 't') ADVANCE(3688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4395: + case 3687: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'y') ADVANCE(2704); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4396: + case 3688: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + lookahead == 'y') ADVANCE(2714); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4397: + case 3689: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3458); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2764); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4398: + case 3690: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4399: + case 3691: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4313); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3601); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4400: + case 3692: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4328); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3620); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4401: + case 3693: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4399); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3691); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4402: + case 3694: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3700); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4403: + case 3695: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4400); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3692); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4404: + case 3696: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4405); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2759); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4405: + case 3697: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2776); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4406: + case 3698: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3474); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2764); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4407: + case 3699: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3458); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3696); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4408: + case 3700: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3466); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2770); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4409: + case 3701: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4327); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3619); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4410: + case 3702: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4409); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3701); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4411: + case 3703: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); - case 4412: + case 3704: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(4415); - if (lookahead == '_') ADVANCE(4416); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2426); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(3707); + if (lookahead == ']') ADVANCE(2301); + if (lookahead == '_') ADVANCE(3708); if (lookahead == '\t' || - lookahead == ' ') SKIP(402); + lookahead == ' ') SKIP(302); if (lookahead == '+' || - lookahead == '-') ADVANCE(4414); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + lookahead == '-') ADVANCE(3706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); END_STATE(); - case 4413: + case 3705: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(3105); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(4415); - if (lookahead == ']') ADVANCE(2908); - if (lookahead == '_') ADVANCE(4416); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(3707); + if (lookahead == '_') ADVANCE(3708); if (lookahead == '\t' || - lookahead == ' ') SKIP(400); + lookahead == ' ') SKIP(304); if (lookahead == '+' || - lookahead == '-') ADVANCE(4414); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + lookahead == '-') ADVANCE(3706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); END_STATE(); - case 4414: + case 3706: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(4417); - if (lookahead == '_') ADVANCE(4414); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '.') ADVANCE(3709); + if (lookahead == '_') ADVANCE(3706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); END_STATE(); - case 4415: + case 3707: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4415); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(3707); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2620); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); END_STATE(); - case 4416: + case 3708: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4416); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(3708); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); END_STATE(); - case 4417: + case 3709: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4417); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(3709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); END_STATE(); - case 4418: + case 3710: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4419); + if (lookahead == '_') ADVANCE(3711); if (lookahead == '+' || - lookahead == '-') ADVANCE(4419); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + lookahead == '-') ADVANCE(3711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); END_STATE(); - case 4419: + case 3711: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4419); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(3711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); END_STATE(); - case 4420: + case 3712: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3712); END_STATE(); - case 4421: + case 3713: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4458); - if (lookahead == '>') ADVANCE(3607); - if (lookahead == 'r') ADVANCE(4461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '+') ADVANCE(3750); + if (lookahead == '>') ADVANCE(2831); + if (lookahead == 'r') ADVANCE(3753); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4422: + case 3714: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4453); - if (lookahead == '>') ADVANCE(3611); - if (lookahead == 'u') ADVANCE(4465); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '+') ADVANCE(3745); + if (lookahead == '>') ADVANCE(2835); + if (lookahead == 'u') ADVANCE(3757); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4423: + case 3715: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4459); - if (lookahead == '>') ADVANCE(3599); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '+') ADVANCE(3751); + if (lookahead == '>') ADVANCE(2823); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4424: + case 3716: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4454); - if (lookahead == '>') ADVANCE(3603); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '+') ADVANCE(3746); + if (lookahead == '>') ADVANCE(2827); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4425: + case 3717: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(4492); - if (lookahead == '_') ADVANCE(4444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '-') ADVANCE(3784); + if (lookahead == '_') ADVANCE(3736); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3736); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4426: + case 3718: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(4493); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '-') ADVANCE(3785); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4427: + case 3719: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4444); - if (lookahead == '_') ADVANCE(4428); + if (lookahead == '.') ADVANCE(3736); + if (lookahead == '_') ADVANCE(3720); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4476); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'i') ADVANCE(3768); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3736); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4428: + case 3720: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4444); - if (lookahead == '_') ADVANCE(4428); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '.') ADVANCE(3736); + if (lookahead == '_') ADVANCE(3720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3736); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4429: + case 3721: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3104); - if (lookahead == '_') ADVANCE(4449); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4448); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '.') ADVANCE(2425); + if (lookahead == '_') ADVANCE(3741); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3740); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4430: + case 3722: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(2946); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '.') ADVANCE(2327); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4431: + case 3723: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4430); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '.') ADVANCE(3722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4432: + case 3724: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4490); + if (lookahead == '.') ADVANCE(3782); if (lookahead == '+' || - lookahead == '-') ADVANCE(4433); + lookahead == '-') ADVANCE(3725); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4499); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'z') ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4433: + case 3725: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '2') ADVANCE(4481); + if (lookahead == '2') ADVANCE(3773); if (lookahead == '0' || - lookahead == '1') ADVANCE(4491); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == '1') ADVANCE(3783); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4434: + case 3726: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(4482); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4485); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == ':') ADVANCE(3774); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3777); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4435: + case 3727: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(4495); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == ':') ADVANCE(3787); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4436: + case 3728: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(4497); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == ':') ADVANCE(3789); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4437: + case 3729: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3627); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '>') ADVANCE(2851); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4438: + case 3730: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3623); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '>') ADVANCE(2847); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4439: + case 3731: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3615); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '>') ADVANCE(2839); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4440: + case 3732: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3619); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '>') ADVANCE(2843); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4441: + case 3733: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T') ADVANCE(4494); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'T') ADVANCE(3786); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4442: + case 3734: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4444); - if (lookahead == 'b') ADVANCE(3419); - if (lookahead == 'o') ADVANCE(3435); - if (lookahead == 'x') ADVANCE(3441); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4446); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); - END_STATE(); - case 4443: + if (lookahead == '_') ADVANCE(3736); + if (lookahead == 'b') ADVANCE(2730); + if (lookahead == 'o') ADVANCE(2746); + if (lookahead == 'x') ADVANCE(2751); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3738); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); + END_STATE(); + case 3735: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4444); + if (lookahead == '_') ADVANCE(3736); if (lookahead == '+' || - lookahead == '-') ADVANCE(4444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == '-') ADVANCE(3736); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3736); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4444: + case 3736: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '_') ADVANCE(3736); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3736); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4445: + case 3737: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4425); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '_') ADVANCE(3736); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3717); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4446: + case 3738: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4445); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '_') ADVANCE(3736); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3737); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4447: + case 3739: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4446); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '_') ADVANCE(3736); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3738); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4448: + case 3740: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4448); + if (lookahead == '_') ADVANCE(3740); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4448); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'e') ADVANCE(3735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3740); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4449: + case 3741: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4449); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4448); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == '_') ADVANCE(3741); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3740); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4450: + case 3742: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(4455); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'a') ADVANCE(3747); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4451: + case 3743: 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(4499); + if (lookahead == 'e') ADVANCE(2638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4452: + case 3744: 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(4499); + if (lookahead == 'e') ADVANCE(2646); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4453: + case 3745: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(4438); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'e') ADVANCE(3730); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4454: + case 3746: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(4462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'e') ADVANCE(3754); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4455: + case 3747: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(4464); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'l') ADVANCE(3756); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4456: + case 3748: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(2209); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'l') ADVANCE(2629); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4457: + case 3749: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(4456); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'l') ADVANCE(3748); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4458: + case 3750: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(4437); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'o') ADVANCE(3729); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4459: + case 3751: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(4469); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'o') ADVANCE(3761); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4460: + case 3752: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4468); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'r') ADVANCE(3760); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4461: + case 3753: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4423); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'r') ADVANCE(3715); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4462: + case 3754: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4463); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'r') ADVANCE(3755); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4463: + case 3755: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4440); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'r') ADVANCE(3732); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4464: + case 3756: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 's') ADVANCE(4452); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 's') ADVANCE(3744); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4465: + case 3757: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(4424); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 't') ADVANCE(3716); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4466: + case 3758: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(4439); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 't') ADVANCE(3731); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4467: + case 3759: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4457); + if (lookahead == 'u') ADVANCE(3749); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4475); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'a') ADVANCE(3767); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4468: + case 3760: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4451); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'u') ADVANCE(3743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4469: + case 3761: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4466); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (lookahead == 'u') ADVANCE(3758); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4470: + case 3762: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '+' || - lookahead == '-') ADVANCE(4433); + lookahead == '-') ADVANCE(3725); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4470); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'z') ADVANCE(3791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3762); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4471: + case 3763: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4475); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'a') ADVANCE(3767); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4472: + case 3764: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4474); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'f') ADVANCE(3766); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4473: + case 3765: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4478); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'i') ADVANCE(3770); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4474: + case 3766: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4477); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'i') ADVANCE(3769); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4475: + case 3767: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4499); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'n') ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4476: + case 3768: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4472); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'n') ADVANCE(3764); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4477: + case 3769: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4473); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'n') ADVANCE(3765); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4478: + case 3770: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4479); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 't') ADVANCE(3771); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4479: + case 3771: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4499); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == 'y') ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4480: + case 3772: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4480); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == '_') ADVANCE(3772); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4481: + case 3773: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4434); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3726); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4482: + case 3774: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4485); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3777); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4483: + case 3775: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '-' || lookahead == '.' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4499); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4483); + ('<' <= lookahead && lookahead <= '@')) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3775); END_STATE(); - case 4484: + case 3776: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4484); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + lookahead == '_') ADVANCE(3776); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4485: + case 3777: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4499); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3791); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4486: + case 3778: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4426); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3718); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4487: + case 3779: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4441); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3733); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4488: + case 3780: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4436); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3728); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4489: + case 3781: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3724); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4490: + case 3782: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4470); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3762); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4491: + case 3783: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4434); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3726); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4492: + case 3784: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3778); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4493: + case 3785: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4487); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3779); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4494: + case 3786: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4488); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3780); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4495: + case 3787: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4489); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3781); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4496: + case 3788: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4435); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3727); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4497: + case 3789: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4496); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3788); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4498: + case 3790: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4498); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3790); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4499: + case 3791: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4500: + case 3792: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4526); - if (lookahead == '>') ADVANCE(3604); - if (lookahead == 'r') ADVANCE(4529); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '+') ADVANCE(3818); + if (lookahead == '>') ADVANCE(2828); + if (lookahead == 'r') ADVANCE(3821); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4501: + case 3793: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4521); - if (lookahead == '>') ADVANCE(3608); - if (lookahead == 'u') ADVANCE(4533); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '+') ADVANCE(3813); + if (lookahead == '>') ADVANCE(2832); + if (lookahead == 'u') ADVANCE(3825); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4502: + case 3794: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4527); - if (lookahead == '>') ADVANCE(3596); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '+') ADVANCE(3819); + if (lookahead == '>') ADVANCE(2820); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4503: + case 3795: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4522); - if (lookahead == '>') ADVANCE(3600); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '+') ADVANCE(3814); + if (lookahead == '>') ADVANCE(2824); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4504: + case 3796: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(4555); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '-') ADVANCE(3847); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4505: + case 3797: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3102); - if (lookahead == '_') ADVANCE(4515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '.') ADVANCE(2423); + if (lookahead == '_') ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2697); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4506: + case 3798: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(4514); - if (lookahead == '_') ADVANCE(4507); + if (lookahead == '.') ADVANCE(3806); + if (lookahead == '_') ADVANCE(3799); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4546); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'i') ADVANCE(3838); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4507: + case 3799: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(4514); - if (lookahead == '_') ADVANCE(4507); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '.') ADVANCE(3806); + if (lookahead == '_') ADVANCE(3799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4508: + case 3800: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(907); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4558); + if (lookahead == ':') ADVANCE(681); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4509: + case 3801: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3624); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '>') ADVANCE(2848); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4510: + case 3802: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3620); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '>') ADVANCE(2844); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4511: + case 3803: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3612); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '>') ADVANCE(2836); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4512: + case 3804: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3616); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '>') ADVANCE(2840); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4513: + case 3805: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4513); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '_') ADVANCE(3805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4514: + case 3806: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '_') ADVANCE(3806); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4515: + case 3807: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '_') ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2697); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4516: + case 3808: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4517); + if (lookahead == '_') ADVANCE(3809); if (lookahead == '+' || - lookahead == '-') ADVANCE(4517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == '-') ADVANCE(3809); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4517: + case 3809: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == '_') ADVANCE(3809); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4518: + case 3810: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(4524); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 'a') ADVANCE(3816); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4519: + case 3811: 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(4558); + if (lookahead == 'e') ADVANCE(2632); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4520: + case 3812: 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(4558); + if (lookahead == 'e') ADVANCE(2640); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4521: + case 3813: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(4510); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 'e') ADVANCE(3802); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4522: + case 3814: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(4530); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 'e') ADVANCE(3822); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4523: + case 3815: 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(4558); + if (lookahead == 'l') ADVANCE(2624); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4524: + case 3816: 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(4558); + if (lookahead == 'l') ADVANCE(3824); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4525: + case 3817: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(4523); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 'l') ADVANCE(3815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4526: + case 3818: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(4509); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 'o') ADVANCE(3801); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4527: + case 3819: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(4537); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 'o') ADVANCE(3829); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4528: + case 3820: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4536); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 'r') ADVANCE(3828); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4529: + case 3821: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4502); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 'r') ADVANCE(3794); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4530: + case 3822: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4531); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 'r') ADVANCE(3823); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4531: + case 3823: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4512); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 'r') ADVANCE(3804); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4532: + case 3824: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(4520); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 's') ADVANCE(3812); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4533: + case 3825: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(4503); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 't') ADVANCE(3795); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4534: + case 3826: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(4511); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 't') ADVANCE(3803); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4535: + case 3827: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4525); + if (lookahead == 'u') ADVANCE(3817); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4543); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'a') ADVANCE(3835); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4536: + case 3828: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4519); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 'u') ADVANCE(3811); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4537: + case 3829: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (lookahead == 'u') ADVANCE(3826); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4538: + case 3830: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4543); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'a') ADVANCE(3835); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4539: + case 3831: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'f') ADVANCE(2719); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4540: + case 3832: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2218); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'f') ADVANCE(2710); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4541: + case 3833: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4548); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'i') ADVANCE(3840); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4542: + case 3834: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4549); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'i') ADVANCE(3841); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4543: + case 3835: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'n') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4544: + case 3836: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4540); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'n') ADVANCE(3832); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4545: + case 3837: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4541); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'n') ADVANCE(3833); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4546: + case 3838: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4539); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'n') ADVANCE(3831); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4547: + case 3839: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4542); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'n') ADVANCE(3834); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4548: + case 3840: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4551); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 't') ADVANCE(3842); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4549: + case 3841: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4550); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 't') ADVANCE(3843); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4550: + case 3842: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'y') ADVANCE(2704); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4551: + case 3843: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + lookahead == 'y') ADVANCE(2714); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4552: + case 3844: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4504); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3796); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4553: + case 3845: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4508); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3800); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4554: + case 3846: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4552); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3844); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4555: + case 3847: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4557); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3849); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4556: + case 3848: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4553); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3845); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4557: + case 3849: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3464); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2768); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4558: + case 3850: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3850); END_STATE(); - case 4559: + case 3851: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(4567); - if (lookahead == '_') ADVANCE(4559); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == '.') ADVANCE(3859); + if (lookahead == '_') ADVANCE(3851); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4560: + case 3852: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3274); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == '.') ADVANCE(2544); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4561: + case 3853: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(4568); - if (lookahead == '_') ADVANCE(4561); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == '.') ADVANCE(3860); + if (lookahead == '_') ADVANCE(3853); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4562: + case 3854: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4584); - if (lookahead == '_') ADVANCE(4574); - if (lookahead == 'i') ADVANCE(4584); + if (lookahead == 'I') ADVANCE(3876); + if (lookahead == '_') ADVANCE(3866); + if (lookahead == 'i') ADVANCE(3876); if (lookahead == '+' || - lookahead == '-') ADVANCE(4574); + lookahead == '-') ADVANCE(3866); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4563: + case 3855: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4584); - if (lookahead == '_') ADVANCE(4574); - if (lookahead == 'i') ADVANCE(4576); + if (lookahead == 'I') ADVANCE(3876); + if (lookahead == '_') ADVANCE(3866); + if (lookahead == 'i') ADVANCE(3868); if (lookahead == '+' || - lookahead == '-') ADVANCE(4574); + lookahead == '-') ADVANCE(3866); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == 'b') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4564: + case 3856: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4584); - if (lookahead == 'i') ADVANCE(4584); + if (lookahead == 'I') ADVANCE(3876); + if (lookahead == 'i') ADVANCE(3876); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4565: + case 3857: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4584); - if (lookahead == 'i') ADVANCE(4576); + if (lookahead == 'I') ADVANCE(3876); + if (lookahead == 'i') ADVANCE(3868); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4566: + case 3858: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4584); - if (lookahead == 'i') ADVANCE(4580); - if (lookahead == 's') ADVANCE(3425); + if (lookahead == 'I') ADVANCE(3876); + if (lookahead == 'i') ADVANCE(3872); + if (lookahead == 's') ADVANCE(2738); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4567: + case 3859: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4567); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == '_') ADVANCE(3859); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4568: + case 3860: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4568); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == '_') ADVANCE(3860); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4569: + case 3861: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4569); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == '_') ADVANCE(3861); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4570: + case 3862: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4570); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == '_') ADVANCE(3862); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2619); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4571: + case 3863: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4572); + if (lookahead == '_') ADVANCE(3864); if (lookahead == '+' || - lookahead == '-') ADVANCE(4572); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == '-') ADVANCE(3864); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4572: + case 3864: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4572); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == '_') ADVANCE(3864); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4573: + case 3865: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4574); + if (lookahead == '_') ADVANCE(3866); if (lookahead == '+' || - lookahead == '-') ADVANCE(4574); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == '-') ADVANCE(3866); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4574: + case 3866: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4574); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == '_') ADVANCE(3866); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4575: + case 3867: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(4583); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == 'a') ADVANCE(3875); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4576: + case 3868: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4577: + case 3869: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'c') ADVANCE(3425); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == 'c') ADVANCE(2738); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4578: + case 3870: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(4577); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == 'e') ADVANCE(3869); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4579: + case 3871: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'k') ADVANCE(3425); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == 'k') ADVANCE(2738); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4580: + case 3872: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'n') ADVANCE(3425); + if (lookahead == 'n') ADVANCE(2738); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4581: + case 3873: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'r') ADVANCE(3425); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == 'r') ADVANCE(2738); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4582: + case 3874: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 's') ADVANCE(3425); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == 's') ADVANCE(2738); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4583: + case 3875: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'y') ADVANCE(3425); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if (lookahead == 'y') ADVANCE(2738); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4584: + case 3876: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3420); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == 'b') ADVANCE(2731); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4585: + case 3877: 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(4591); - END_STATE(); - case 4586: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4589); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); - END_STATE(); - case 4587: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4585); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == 'f') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4588: + case 3878: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4586); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); - END_STATE(); - case 4589: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4590); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + lookahead == 'n') ADVANCE(3877); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4590: - 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(4591); - END_STATE(); - case 4591: + case 3879: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3879); END_STATE(); - case 4592: + case 3880: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(4780); - if (lookahead == '$') ADVANCE(2912); - if (lookahead == '(') ADVANCE(3212); - if (lookahead == '.') ADVANCE(4594); - if (lookahead == '_') ADVANCE(4595); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '$') ADVANCE(2305); + if (lookahead == '(') ADVANCE(2506); + if (lookahead == '.') ADVANCE(3882); + if (lookahead == '_') ADVANCE(3883); if (lookahead == '\t' || - lookahead == ' ') SKIP(402); + lookahead == ' ') SKIP(304); if (lookahead == '+' || - lookahead == '-') ADVANCE(4593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4599); + lookahead == '-') ADVANCE(3881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3887); END_STATE(); - case 4593: + case 3881: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(4596); - if (lookahead == '_') ADVANCE(4593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); + if (lookahead == '.') ADVANCE(3884); + if (lookahead == '_') ADVANCE(3881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); END_STATE(); - case 4594: + case 3882: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); + if (lookahead == '_') ADVANCE(3882); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2622); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); END_STATE(); - case 4595: + case 3883: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); + if (lookahead == '_') ADVANCE(3883); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); END_STATE(); - case 4596: + case 3884: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); + if (lookahead == '_') ADVANCE(3884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); END_STATE(); - case 4597: + case 3885: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4598); + if (lookahead == '_') ADVANCE(3886); if (lookahead == '+' || - lookahead == '-') ADVANCE(4598); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); + lookahead == '-') ADVANCE(3886); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); END_STATE(); - case 4598: + case 3886: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4598); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); + if (lookahead == '_') ADVANCE(3886); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); END_STATE(); - case 4599: + case 3887: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); END_STATE(); - case 4600: + case 3888: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '$') ADVANCE(3361); - if (lookahead == '(') ADVANCE(3269); - if (lookahead == '{') ADVANCE(3505); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4772); + if (lookahead == '$') ADVANCE(2649); + if (lookahead == '(') ADVANCE(2540); + if (lookahead == '{') ADVANCE(2804); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4061); END_STATE(); - case 4601: + case 3889: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2078); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4601); + if (lookahead == ',') ADVANCE(1695); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3889); END_STATE(); - case 4602: + case 3890: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2024); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4602); + if (lookahead == ',') ADVANCE(1668); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3890); END_STATE(); - case 4603: + case 3891: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2030); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4603); + if (lookahead == ',') ADVANCE(1671); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3891); END_STATE(); - case 4604: + case 3892: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2111); + if (lookahead == ',') ADVANCE(1713); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4606); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); + lookahead == 'i') ADVANCE(3894); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); END_STATE(); - case 4605: + case 3893: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2111); + if (lookahead == ',') ADVANCE(1713); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4607); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); + lookahead == 'i') ADVANCE(3895); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); END_STATE(); - case 4606: + case 3894: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2111); + if (lookahead == ',') ADVANCE(1713); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4605); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); + lookahead == 'n') ADVANCE(3893); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); END_STATE(); - case 4607: + case 3895: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2111); + if (lookahead == ',') ADVANCE(1713); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4608); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); + lookahead == 't') ADVANCE(3896); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); END_STATE(); - case 4608: + case 3896: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2111); + if (lookahead == ',') ADVANCE(1713); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4609); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); + lookahead == 'y') ADVANCE(3897); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); END_STATE(); - case 4609: + case 3897: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2111); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); + if (lookahead == ',') ADVANCE(1713); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3897); END_STATE(); - case 4610: + case 3898: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1883); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4610); + if (lookahead == ',') ADVANCE(1753); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3900); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3903); END_STATE(); - case 4611: + case 3899: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2000); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4611); + if (lookahead == ',') ADVANCE(1753); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3901); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3903); END_STATE(); - case 4612: + case 3900: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == 'e') ADVANCE(4613); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4615); + if (lookahead == ',') ADVANCE(1753); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3899); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3903); END_STATE(); - case 4613: + case 3901: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == 'n') ADVANCE(4614); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4615); + if (lookahead == ',') ADVANCE(1753); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3902); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3903); END_STATE(); - case 4614: + case 3902: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == 'v') ADVANCE(1085); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4615); + if (lookahead == ',') ADVANCE(1753); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3903); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3903); END_STATE(); - case 4615: + case 3903: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1930); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4615); + if (lookahead == ',') ADVANCE(1753); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3903); END_STATE(); - case 4616: + case 3904: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1936); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4616); + if (lookahead == ',') ADVANCE(1766); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3904); END_STATE(); - case 4617: + case 3905: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2123); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4617); + if (lookahead == ',') ADVANCE(1591); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3905); END_STATE(); - case 4618: + case 3906: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2042); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); + if (lookahead == ',') ADVANCE(1656); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); END_STATE(); - case 4619: + case 3907: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1895); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4619); + if (lookahead == ',') ADVANCE(1617); + if (lookahead == 'e') ADVANCE(3908); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3910); END_STATE(); - case 4620: + case 3908: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2036); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4620); + if (lookahead == ',') ADVANCE(1617); + if (lookahead == 'n') ADVANCE(3909); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3910); END_STATE(); - case 4621: + case 3909: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == 'e') ADVANCE(4622); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); + if (lookahead == ',') ADVANCE(1617); + if (lookahead == 'v') ADVANCE(846); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3910); END_STATE(); - case 4622: + case 3910: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == 'n') ADVANCE(4623); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); + if (lookahead == ',') ADVANCE(1617); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3910); END_STATE(); - case 4623: + case 3911: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == 'v') ADVANCE(3152); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); + if (lookahead == ',') ADVANCE(1620); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3911); END_STATE(); - case 4624: + case 3912: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1962); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); + if (lookahead == ',') ADVANCE(1677); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3912); END_STATE(); - case 4625: + case 3913: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2117); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4625); + if (lookahead == ',') ADVANCE(1597); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3913); END_STATE(); - case 4626: + case 3914: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2006); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4626); + if (lookahead == ',') ADVANCE(1763); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3916); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); END_STATE(); - case 4627: + case 3915: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2129); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4627); + if (lookahead == ',') ADVANCE(1763); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3917); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); END_STATE(); - case 4628: + case 3916: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1889); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4628); + if (lookahead == ',') ADVANCE(1763); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3915); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); END_STATE(); - case 4629: + case 3917: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2060); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4629); + if (lookahead == ',') ADVANCE(1763); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3918); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); END_STATE(); - case 4630: + case 3918: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2048); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4630); + if (lookahead == ',') ADVANCE(1763); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3919); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); END_STATE(); - case 4631: + case 3919: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1942); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4631); + if (lookahead == ',') ADVANCE(1763); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); END_STATE(); - case 4632: + case 3920: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2018); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4632); + if (lookahead == ',') ADVANCE(1674); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3920); END_STATE(); - case 4633: + case 3921: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2054); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + if (lookahead == ',') ADVANCE(1635); + if (lookahead == 'e') ADVANCE(3922); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); END_STATE(); - case 4634: + case 3922: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2012); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4634); + if (lookahead == ',') ADVANCE(1635); + if (lookahead == 'n') ADVANCE(3923); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); END_STATE(); - case 4635: + case 3923: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == 'e') ADVANCE(4636); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); + if (lookahead == ',') ADVANCE(1635); + if (lookahead == 'v') ADVANCE(2457); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); END_STATE(); - case 4636: + case 3924: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == 'n') ADVANCE(4637); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); + if (lookahead == ',') ADVANCE(1635); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); END_STATE(); - case 4637: + case 3925: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == 'v') ADVANCE(2880); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); + if (lookahead == ',') ADVANCE(1659); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3925); END_STATE(); - case 4638: + case 3926: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2149); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); + if (lookahead == ',') ADVANCE(1716); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3926); END_STATE(); - case 4639: + case 3927: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1904); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4639); + if (lookahead == ',') ADVANCE(1738); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3927); END_STATE(); - case 4640: + case 3928: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1910); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4640); + if (lookahead == ',') ADVANCE(1732); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3928); END_STATE(); - case 4641: + case 3929: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2072); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); + if (lookahead == ',') ADVANCE(1594); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3929); END_STATE(); - case 4642: + case 3930: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == 'e') ADVANCE(4643); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); + if (lookahead == ',') ADVANCE(1686); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3930); END_STATE(); - case 4643: + case 3931: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == 'n') ADVANCE(4644); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); + if (lookahead == ',') ADVANCE(1680); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3931); END_STATE(); - case 4644: + case 3932: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == 'v') ADVANCE(3135); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); + if (lookahead == ',') ADVANCE(1623); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3932); END_STATE(); - case 4645: + case 3933: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1982); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); + if (lookahead == ',') ADVANCE(1665); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3933); END_STATE(); - case 4646: + case 3934: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1988); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4646); + if (lookahead == ',') ADVANCE(1735); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3934); END_STATE(); - case 4647: + case 3935: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2066); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); + if (lookahead == ',') ADVANCE(1683); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3935); END_STATE(); - case 4648: + case 3936: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1994); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4648); + if (lookahead == ',') ADVANCE(1662); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3936); END_STATE(); - case 4649: + case 3937: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1898); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4649); + if (lookahead == ',') ADVANCE(1728); + if (lookahead == 'e') ADVANCE(3938); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); END_STATE(); - case 4650: + case 3938: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4657); - if (lookahead == '_') ADVANCE(4650); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4657); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == ',') ADVANCE(1728); + if (lookahead == 'n') ADVANCE(3939); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); END_STATE(); - case 4651: + case 3939: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4658); - if (lookahead == '_') ADVANCE(4651); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4658); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + if (lookahead == ',') ADVANCE(1728); + if (lookahead == 'v') ADVANCE(2278); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); END_STATE(); - case 4652: + case 3940: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4653); - if (lookahead == '_') ADVANCE(4660); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4659); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == ',') ADVANCE(1728); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); END_STATE(); - case 4653: + case 3941: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4600); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == ',') ADVANCE(1602); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3941); END_STATE(); - case 4654: + case 3942: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N') ADVANCE(4754); - if (lookahead == 'f') ADVANCE(3070); - if (lookahead == 'n') ADVANCE(3034); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == ',') ADVANCE(1605); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3942); END_STATE(); - case 4655: + case 3943: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4657); - if (lookahead == 'b') ADVANCE(4769); - if (lookahead == 'o') ADVANCE(4770); - if (lookahead == 'x') ADVANCE(4771); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4657); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); - END_STATE(); - case 4656: + if (lookahead == ',') ADVANCE(1692); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3943); + END_STATE(); + case 3944: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4657); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4657); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4657); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == ',') ADVANCE(1647); + if (lookahead == 'e') ADVANCE(3945); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); - case 4657: + case 3945: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4657); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4657); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == ',') ADVANCE(1647); + if (lookahead == 'n') ADVANCE(3946); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); - case 4658: + case 3946: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4658); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4658); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + if (lookahead == ',') ADVANCE(1647); + if (lookahead == 'v') ADVANCE(2445); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); - case 4659: + case 3947: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4659); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4656); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4659); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == ',') ADVANCE(1647); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); - case 4660: + case 3948: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4660); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4659); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == ',') ADVANCE(1650); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3948); END_STATE(); - case 4661: + case 3949: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4738); - if (lookahead == 'o') ADVANCE(4710); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == ',') ADVANCE(1689); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3949); END_STATE(); - case 4662: + case 3950: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4709); - if (lookahead == 'o') ADVANCE(4721); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == ',') ADVANCE(1653); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3950); END_STATE(); - case 4663: + case 3951: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4701); - if (lookahead == 'o') ADVANCE(4670); - if (lookahead == 'u') ADVANCE(4740); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == ',') ADVANCE(1599); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3951); END_STATE(); - case 4664: + case 3952: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4700); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == '.') ADVANCE(3959); + if (lookahead == '_') ADVANCE(3952); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4665: + case 3953: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4752); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == '.') ADVANCE(3960); + if (lookahead == '_') ADVANCE(3953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); END_STATE(); - case 4666: + case 3954: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4731); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == '.') ADVANCE(3955); + if (lookahead == '_') ADVANCE(3962); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4667: + case 3955: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4692); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == '.') ADVANCE(3888); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4668: + case 3956: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4693); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'N') ADVANCE(4053); + if (lookahead == 'f') ADVANCE(2399); + if (lookahead == 'n') ADVANCE(2373); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4669: + case 3957: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4683); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == '_') ADVANCE(3959); + if (lookahead == 'b') ADVANCE(4058); + if (lookahead == 'o') ADVANCE(4059); + if (lookahead == 'x') ADVANCE(4060); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4670: + case 3958: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(4749); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == '_') ADVANCE(3959); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3959); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4671: + case 3959: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(4677); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == '_') ADVANCE(3959); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4672: + case 3960: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4690); - if (lookahead == 'o') ADVANCE(3063); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == '_') ADVANCE(3960); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); END_STATE(); - case 4673: + case 3961: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4751); - if (lookahead == 'u') ADVANCE(4704); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4760); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == '_') ADVANCE(3961); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3958); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4674: + case 3962: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4691); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == '_') ADVANCE(3962); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4675: + case 3963: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2899); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'a') ADVANCE(4038); + if (lookahead == 'o') ADVANCE(4011); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4676: + case 3964: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3078); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'a') ADVANCE(4010); + if (lookahead == 'o') ADVANCE(4022); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4677: + case 3965: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3148); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'a') ADVANCE(4002); + if (lookahead == 'o') ADVANCE(3972); + if (lookahead == 'u') ADVANCE(4040); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4678: + case 3966: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3050); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'a') ADVANCE(4001); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4679: + case 3967: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2151); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'a') ADVANCE(4051); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4680: + case 3968: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2196); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'a') ADVANCE(4032); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4681: + case 3969: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3056); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'c') ADVANCE(3993); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4682: + case 3970: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2892); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'c') ADVANCE(3994); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4683: + case 3971: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3131); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'c') ADVANCE(3982); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4684: + case 3972: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3019); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'd') ADVANCE(4049); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4685: + case 3973: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4739); - if (lookahead == 'i') ADVANCE(4733); - if (lookahead == 'o') ADVANCE(4715); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'd') ADVANCE(3978); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4686: + case 3974: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4664); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(3991); + if (lookahead == 'o') ADVANCE(2394); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4687: + case 3975: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4729); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(3992); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4688: + case 3976: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4727); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(2292); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4689: + case 3977: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4723); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(2405); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4690: + case 3978: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'f') ADVANCE(2874); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(2453); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4691: + case 3979: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'g') ADVANCE(4699); - if (lookahead == 't') ADVANCE(4747); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(2385); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4692: + case 3980: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3116); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(2389); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4693: + case 3981: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3086); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(2287); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4694: + case 3982: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(4698); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(2442); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4695: + case 3983: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4671); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(2363); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4696: + case 3984: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4666); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(4039); + if (lookahead == 'o') ADVANCE(4016); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4697: + case 3985: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4713); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(3966); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4698: + case 3986: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4706); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(4031); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4699: + case 3987: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4736); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(4028); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4700: + case 3988: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(3013); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(4024); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4701: + case 3989: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(4678); - if (lookahead == 't') ADVANCE(4668); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(3928); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4702: + case 3990: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(2204); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'e') ADVANCE(3934); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4703: + case 3991: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4696); - if (lookahead == 's') ADVANCE(3170); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'f') ADVANCE(2274); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4704: + case 3992: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4702); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'g') ADVANCE(3999); + if (lookahead == 't') ADVANCE(4047); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4705: + case 3993: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4665); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'h') ADVANCE(2433); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4706: + case 3994: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4681); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'h') ADVANCE(2410); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4707: + case 3995: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4682); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'h') ADVANCE(4000); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4708: + case 3996: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4734); - if (lookahead == 'r') ADVANCE(4726); - if (lookahead == 'x') ADVANCE(4719); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'i') ADVANCE(3973); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4709: + case 3997: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4737); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'i') ADVANCE(3968); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4710: + case 3998: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(4735); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'i') ADVANCE(4014); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4711: + case 3999: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(2885); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'i') ADVANCE(4036); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4712: + case 4000: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(3123); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'i') ADVANCE(4006); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4713: + case 4001: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(4748); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'k') ADVANCE(2359); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4714: + case 4002: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4745); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'k') ADVANCE(3979); + if (lookahead == 't') ADVANCE(3970); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4715: + case 4003: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4718); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'l') ADVANCE(3997); + if (lookahead == 's') ADVANCE(2465); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4716: + case 4004: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4722); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'l') ADVANCE(4008); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4717: + case 4005: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4730); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'l') ADVANCE(3967); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4718: + case 4006: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(3043); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'l') ADVANCE(3980); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4719: + case 4007: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(4717); - if (lookahead == 't') ADVANCE(4688); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'l') ADVANCE(3981); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4720: + case 4008: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4746); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'l') ADVANCE(3927); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4721: + case 4009: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3025); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'l') ADVANCE(4035); + if (lookahead == 'r') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4020); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4722: + case 4010: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(2921); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'l') ADVANCE(4037); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4723: + case 4011: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'n') ADVANCE(4034); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); + END_STATE(); + case 4012: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3139); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'n') ADVANCE(2282); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4724: + case 4013: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4686); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'n') ADVANCE(2437); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4725: + case 4014: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4669); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'n') ADVANCE(4048); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4726: + case 4015: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4716); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'o') ADVANCE(4045); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4727: + case 4016: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4711); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'o') ADVANCE(4019); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4728: + case 4017: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4712); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'o') ADVANCE(4023); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4729: + case 4018: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4705); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'o') ADVANCE(4030); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4730: + case 4019: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4743); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'p') ADVANCE(2380); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4731: + case 4020: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(1068); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'p') ADVANCE(4018); + if (lookahead == 't') ADVANCE(3987); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4732: + case 4021: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4675); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'r') ADVANCE(4046); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4733: + case 4022: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4741); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'r') ADVANCE(2367); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4734: + case 4023: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4676); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'r') ADVANCE(2313); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4735: + case 4024: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4742); - if (lookahead == 't') ADVANCE(4697); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'r') ADVANCE(2448); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4736: + case 4025: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4744); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'r') ADVANCE(3985); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4737: + case 4026: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4680); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'r') ADVANCE(3971); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4738: + case 4027: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(4667); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'r') ADVANCE(4017); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4739: + case 4028: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1081); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'r') ADVANCE(4012); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4740: + case 4029: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1089); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'r') ADVANCE(4013); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4741: + case 4030: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(2933); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'r') ADVANCE(4042); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4742: + case 4031: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1096); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'r') ADVANCE(4005); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4743: + case 4032: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1063); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 's') ADVANCE(835); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4744: + case 4033: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(4689); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 's') ADVANCE(3976); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4745: + case 4034: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4725); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 's') ADVANCE(4041); + if (lookahead == 't') ADVANCE(3998); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4746: + case 4035: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4679); - if (lookahead == 'y') ADVANCE(3109); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 's') ADVANCE(3977); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4747: + case 4036: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4728); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 's') ADVANCE(4043); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4748: + case 4037: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4684); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 's') ADVANCE(3990); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4749: + case 4038: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4707); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 't') ADVANCE(3969); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4750: + case 4039: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'v') ADVANCE(4687); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 't') ADVANCE(843); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4751: + case 4040: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'w') ADVANCE(3163); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 't') ADVANCE(849); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4752: + case 4041: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'y') ADVANCE(3156); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 't') ADVANCE(854); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4753: + case 4042: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4760); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 't') ADVANCE(831); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4754: + case 4043: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4759); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 't') ADVANCE(3988); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4755: + case 4044: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4758); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + if (lookahead == 'u') ADVANCE(4004); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4057); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4756: + case 4045: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4765); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'u') ADVANCE(4026); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4757: + case 4046: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4766); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + if (lookahead == 'u') ADVANCE(3989); + if (lookahead == 'y') ADVANCE(2428); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4758: + case 4047: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4764); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + if (lookahead == 'u') ADVANCE(4029); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4759: + case 4048: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4763); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'u') ADVANCE(3983); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4760: + case 4049: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4772); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'u') ADVANCE(4007); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4761: + case 4050: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4754); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'v') ADVANCE(3986); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4762: + case 4051: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4755); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + if (lookahead == 'y') ADVANCE(2460); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4763: + case 4052: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4756); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4057); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4764: + case 4053: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4757); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3898); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4765: + case 4054: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4768); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3914); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); END_STATE(); - case 4766: + case 4055: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4767); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4053); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4767: + case 4056: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4054); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); END_STATE(); - case 4768: + case 4057: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4772); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3904); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4769: + case 4058: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4769); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + lookahead == '_') ADVANCE(4058); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4770: + case 4059: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4770); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + lookahead == '_') ADVANCE(4059); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4771: + case 4060: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4771); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4060); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4772: + case 4061: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4062); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4061); END_STATE(); - case 4773: + case 4062: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); END_STATE(); - case 4774: + case 4063: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(4791); + if (lookahead == '#') ADVANCE(4079); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4775); + lookahead != '|') ADVANCE(4064); END_STATE(); - case 4775: + case 4064: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57422,20 +53751,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4775); + lookahead != '|') ADVANCE(4064); END_STATE(); - case 4776: + case 4065: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(4789); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4777); + if (lookahead == '#') ADVANCE(4077); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4066); END_STATE(); - case 4777: + case 4066: 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(4777); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4066); END_STATE(); - case 4778: + case 4067: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(4788); + if (lookahead == '#') ADVANCE(4076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -57444,9 +53773,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4779); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4068); END_STATE(); - case 4779: + case 4068: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57456,42 +53785,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4779); - END_STATE(); - case 4780: - ACCEPT_TOKEN(anon_sym_POUND); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4068); END_STATE(); - case 4781: + case 4069: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(1057); - if (lookahead == '\r') ADVANCE(1059); - if (lookahead != 0) ADVANCE(1059); END_STATE(); - case 4782: + case 4070: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(1056); + if (lookahead == '\n') ADVANCE(827); + if (lookahead == '\r') ADVANCE(829); + if (lookahead != 0) ADVANCE(829); END_STATE(); - case 4783: + case 4071: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); + if (lookahead == '!') ADVANCE(826); END_STATE(); - case 4784: + case 4072: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4062); END_STATE(); - case 4785: + case 4073: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3522); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2812); END_STATE(); - case 4786: + case 4074: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3791); END_STATE(); - case 4787: + case 4075: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3505); END_STATE(); - case 4788: + case 4076: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57501,13 +53826,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4779); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4068); END_STATE(); - case 4789: + case 4077: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4777); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4066); END_STATE(); - case 4790: + case 4078: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57515,9 +53840,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2950); END_STATE(); - case 4791: + case 4079: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57525,26 +53850,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4775); + lookahead != '|') ADVANCE(4064); END_STATE(); - case 4792: + case 4080: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(4794); + lookahead != '\n') ADVANCE(4082); END_STATE(); - case 4793: + case 4081: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(4792); + if (lookahead == '#') ADVANCE(4080); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4793); + lookahead == ' ') ADVANCE(4081); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(4794); + lookahead != '\n') ADVANCE(4082); END_STATE(); - case 4794: + case 4082: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(4794); + lookahead != '\n') ADVANCE(4082); END_STATE(); default: return false; @@ -57566,484 +53891,504 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 'g', 7, 'i', 8, 'k', 9, - 'm', 10, - 'n', 11, - 'o', 12, - 'p', 13, - 'r', 14, - 's', 15, - 't', 16, - 'v', 17, + 'l', 10, + 'm', 11, + 'n', 12, + 'o', 13, + 'p', 14, + 'r', 15, + 's', 16, + 't', 17, + 'v', 18, ); if (lookahead == '\t' || lookahead == ' ') SKIP(0); END_STATE(); case 1: - if (lookahead == 'n') ADVANCE(18); + if (lookahead == 'n') ADVANCE(19); END_STATE(); case 2: - if (lookahead == 'i') ADVANCE(19); - if (lookahead == 'l') ADVANCE(20); - if (lookahead == 'o') ADVANCE(21); + if (lookahead == 'i') ADVANCE(20); + if (lookahead == 'l') ADVANCE(21); + if (lookahead == 'o') ADVANCE(22); END_STATE(); case 3: - if (lookahead == 'l') ADVANCE(22); - if (lookahead == 'o') ADVANCE(23); + if (lookahead == 'l') ADVANCE(23); + if (lookahead == 'o') ADVANCE(24); END_STATE(); case 4: - if (lookahead == 'a') ADVANCE(24); - if (lookahead == 'e') ADVANCE(25); - if (lookahead == 'i') ADVANCE(26); - if (lookahead == 'u') ADVANCE(27); + if (lookahead == 'a') ADVANCE(25); + if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'u') ADVANCE(28); END_STATE(); case 5: - if (lookahead == 'n') ADVANCE(28); - if (lookahead == 'x') ADVANCE(29); + if (lookahead == 'n') ADVANCE(29); + if (lookahead == 'x') ADVANCE(30); END_STATE(); case 6: - if (lookahead == 'i') ADVANCE(30); - if (lookahead == 'l') ADVANCE(31); + if (lookahead == 'i') ADVANCE(31); + if (lookahead == 'l') ADVANCE(32); END_STATE(); case 7: - if (lookahead == 'l') ADVANCE(32); + if (lookahead == 'l') ADVANCE(33); END_STATE(); case 8: - if (lookahead == 'n') ADVANCE(33); + if (lookahead == 'n') ADVANCE(34); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(34); + if (lookahead == 'e') ADVANCE(35); END_STATE(); case 10: - if (lookahead == 'a') ADVANCE(35); + if (lookahead == 'i') ADVANCE(36); END_STATE(); case 11: - if (lookahead == 'o') ADVANCE(36); - if (lookahead == 'u') ADVANCE(37); + if (lookahead == 'a') ADVANCE(37); END_STATE(); case 12: - if (lookahead == 'p') ADVANCE(38); + if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'o') ADVANCE(39); + if (lookahead == 'u') ADVANCE(40); END_STATE(); case 13: - if (lookahead == 'a') ADVANCE(39); + if (lookahead == 'p') ADVANCE(41); END_STATE(); case 14: - if (lookahead == 'a') ADVANCE(40); - if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'a') ADVANCE(42); END_STATE(); case 15: - if (lookahead == 'i') ADVANCE(42); - if (lookahead == 't') ADVANCE(43); + if (lookahead == 'a') ADVANCE(43); + if (lookahead == 'e') ADVANCE(44); END_STATE(); case 16: - if (lookahead == 'a') ADVANCE(44); + if (lookahead == 'i') ADVANCE(45); + if (lookahead == 't') ADVANCE(46); END_STATE(); case 17: - if (lookahead == 'a') ADVANCE(45); + if (lookahead == 'a') ADVANCE(47); END_STATE(); case 18: - if (lookahead == 'y') ADVANCE(46); + if (lookahead == 'a') ADVANCE(48); END_STATE(); case 19: - if (lookahead == 'n') ADVANCE(47); + if (lookahead == 'y') ADVANCE(49); END_STATE(); case 20: - if (lookahead == 'o') ADVANCE(48); + if (lookahead == 'n') ADVANCE(50); END_STATE(); case 21: - if (lookahead == 'o') ADVANCE(49); + if (lookahead == 'o') ADVANCE(51); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(50); + if (lookahead == 'o') ADVANCE(52); END_STATE(); case 23: - if (lookahead == 'n') ADVANCE(51); + if (lookahead == 'o') ADVANCE(53); END_STATE(); case 24: - if (lookahead == 't') ADVANCE(52); + if (lookahead == 'n') ADVANCE(54); END_STATE(); case 25: - if (lookahead == 'c') ADVANCE(53); + if (lookahead == 't') ADVANCE(55); END_STATE(); case 26: - if (lookahead == 'r') ADVANCE(54); + if (lookahead == 'c') ADVANCE(56); END_STATE(); case 27: - if (lookahead == 'r') ADVANCE(55); + if (lookahead == 'r') ADVANCE(57); END_STATE(); case 28: - if (lookahead == 'v') ADVANCE(56); + if (lookahead == 'r') ADVANCE(58); END_STATE(); case 29: - if (lookahead == 'p') ADVANCE(57); + if (lookahead == 'v') ADVANCE(59); END_STATE(); case 30: - if (lookahead == 'l') ADVANCE(58); + if (lookahead == 'p') ADVANCE(60); END_STATE(); case 31: - if (lookahead == 'o') ADVANCE(59); + if (lookahead == 'l') ADVANCE(61); END_STATE(); case 32: - if (lookahead == 'o') ADVANCE(60); + if (lookahead == 'o') ADVANCE(62); END_STATE(); case 33: - if (lookahead == 't') ADVANCE(61); + if (lookahead == 'o') ADVANCE(63); END_STATE(); case 34: - if (lookahead == 'y') ADVANCE(62); + if (lookahead == 't') ADVANCE(64); END_STATE(); case 35: - if (lookahead == 't') ADVANCE(63); + if (lookahead == 'y') ADVANCE(65); END_STATE(); case 36: - if (lookahead == 't') ADVANCE(64); + if (lookahead == 's') ADVANCE(66); END_STATE(); case 37: - ACCEPT_TOKEN(anon_sym_nu); - if (lookahead == 'm') ADVANCE(65); + if (lookahead == 't') ADVANCE(67); END_STATE(); case 38: - if (lookahead == 'e') ADVANCE(66); + if (lookahead == 'w') ADVANCE(68); END_STATE(); case 39: - if (lookahead == 't') ADVANCE(67); + if (lookahead == 't') ADVANCE(69); END_STATE(); case 40: - if (lookahead == 'n') ADVANCE(68); + ACCEPT_TOKEN(anon_sym_nu); + if (lookahead == 'm') ADVANCE(70); END_STATE(); case 41: - if (lookahead == 'c') ADVANCE(69); + if (lookahead == 'e') ADVANCE(71); END_STATE(); case 42: - if (lookahead == 'g') ADVANCE(70); + if (lookahead == 't') ADVANCE(72); END_STATE(); case 43: - if (lookahead == 'r') ADVANCE(71); + if (lookahead == 'n') ADVANCE(73); END_STATE(); case 44: - if (lookahead == 'b') ADVANCE(72); + if (lookahead == 'c') ADVANCE(74); END_STATE(); case 45: - if (lookahead == 'r') ADVANCE(73); + if (lookahead == 'g') ADVANCE(75); END_STATE(); case 46: - ACCEPT_TOKEN(anon_sym_any); + if (lookahead == 'r') ADVANCE(76); END_STATE(); case 47: - if (lookahead == 'a') ADVANCE(74); + if (lookahead == 'b') ADVANCE(77); END_STATE(); case 48: - if (lookahead == 'c') ADVANCE(75); + if (lookahead == 'r') ADVANCE(78); END_STATE(); case 49: - if (lookahead == 'l') ADVANCE(76); + ACCEPT_TOKEN(anon_sym_any); END_STATE(); case 50: - if (lookahead == 's') ADVANCE(77); + if (lookahead == 'a') ADVANCE(79); END_STATE(); case 51: - if (lookahead == 'd') ADVANCE(78); + if (lookahead == 'c') ADVANCE(80); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(79); + if (lookahead == 'l') ADVANCE(81); END_STATE(); case 53: - if (lookahead == 'i') ADVANCE(80); + if (lookahead == 's') ADVANCE(82); END_STATE(); case 54: - if (lookahead == 'e') ADVANCE(81); + if (lookahead == 'd') ADVANCE(83); END_STATE(); case 55: - if (lookahead == 'a') ADVANCE(82); + if (lookahead == 'e') ADVANCE(84); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_env); + if (lookahead == 'i') ADVANCE(85); END_STATE(); case 57: - if (lookahead == 'r') ADVANCE(83); + if (lookahead == 'e') ADVANCE(86); END_STATE(); case 58: - if (lookahead == 'e') ADVANCE(84); + if (lookahead == 'a') ADVANCE(87); END_STATE(); case 59: - if (lookahead == 'a') ADVANCE(85); + ACCEPT_TOKEN(anon_sym_env); END_STATE(); case 60: - if (lookahead == 'b') ADVANCE(86); + if (lookahead == 'r') ADVANCE(88); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_int); + if (lookahead == 'e') ADVANCE(89); END_STATE(); case 62: - if (lookahead == 'w') ADVANCE(87); + if (lookahead == 'a') ADVANCE(90); END_STATE(); case 63: - if (lookahead == 'h') ADVANCE(88); + if (lookahead == 'b') ADVANCE(91); END_STATE(); case 64: - if (lookahead == 'h') ADVANCE(89); + ACCEPT_TOKEN(anon_sym_int); END_STATE(); case 65: - if (lookahead == 'b') ADVANCE(90); + if (lookahead == 'w') ADVANCE(92); END_STATE(); case 66: - if (lookahead == 'r') ADVANCE(91); + if (lookahead == 't') ADVANCE(93); END_STATE(); case 67: - if (lookahead == 'h') ADVANCE(92); + if (lookahead == 'h') ADVANCE(94); END_STATE(); case 68: - if (lookahead == 'g') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 69: - if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'h') ADVANCE(95); END_STATE(); case 70: - if (lookahead == 'n') ADVANCE(95); + if (lookahead == 'b') ADVANCE(96); END_STATE(); case 71: - if (lookahead == 'i') ADVANCE(96); + if (lookahead == 'r') ADVANCE(97); END_STATE(); case 72: - if (lookahead == 'l') ADVANCE(97); + if (lookahead == 'h') ADVANCE(98); END_STATE(); case 73: - if (lookahead == 'i') ADVANCE(98); + if (lookahead == 'g') ADVANCE(99); END_STATE(); case 74: - if (lookahead == 'r') ADVANCE(99); + if (lookahead == 'o') ADVANCE(100); END_STATE(); case 75: - if (lookahead == 'k') ADVANCE(100); + if (lookahead == 'n') ADVANCE(101); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 'i') ADVANCE(102); END_STATE(); case 77: - if (lookahead == 'u') ADVANCE(101); + if (lookahead == 'l') ADVANCE(103); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_cond); + if (lookahead == 'i') ADVANCE(104); END_STATE(); case 79: - if (lookahead == 't') ADVANCE(102); + if (lookahead == 'r') ADVANCE(105); END_STATE(); case 80: - if (lookahead == 'm') ADVANCE(103); + if (lookahead == 'k') ADVANCE(106); END_STATE(); case 81: - if (lookahead == 'c') ADVANCE(104); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 82: - if (lookahead == 't') ADVANCE(105); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_expr); + ACCEPT_TOKEN(anon_sym_cond); END_STATE(); case 84: - if (lookahead == 's') ADVANCE(106); + if (lookahead == 't') ADVANCE(108); END_STATE(); case 85: - if (lookahead == 't') ADVANCE(107); + if (lookahead == 'm') ADVANCE(109); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_glob); + if (lookahead == 'c') ADVANCE(110); END_STATE(); case 87: - if (lookahead == 'o') ADVANCE(108); + if (lookahead == 't') ADVANCE(111); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_math); + ACCEPT_TOKEN(anon_sym_expr); END_STATE(); case 89: - if (lookahead == 'i') ADVANCE(109); + if (lookahead == 's') ADVANCE(112); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(110); + if (lookahead == 't') ADVANCE(113); END_STATE(); case 91: - if (lookahead == 'a') ADVANCE(111); + ACCEPT_TOKEN(anon_sym_glob); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_path); + if (lookahead == 'o') ADVANCE(114); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_list); END_STATE(); case 94: - if (lookahead == 'r') ADVANCE(113); + ACCEPT_TOKEN(anon_sym_math); END_STATE(); case 95: - if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'i') ADVANCE(115); END_STATE(); case 96: - if (lookahead == 'n') ADVANCE(115); + if (lookahead == 'e') ADVANCE(116); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(116); + if (lookahead == 'a') ADVANCE(117); END_STATE(); case 98: - if (lookahead == 'a') ADVANCE(117); + ACCEPT_TOKEN(anon_sym_path); END_STATE(); case 99: - if (lookahead == 'y') ADVANCE(118); + if (lookahead == 'e') ADVANCE(118); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_block); + if (lookahead == 'r') ADVANCE(119); END_STATE(); case 101: - if (lookahead == 'r') ADVANCE(119); + if (lookahead == 'a') ADVANCE(120); END_STATE(); case 102: - if (lookahead == 'i') ADVANCE(120); + if (lookahead == 'n') ADVANCE(121); END_STATE(); case 103: - if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'e') ADVANCE(122); END_STATE(); case 104: - if (lookahead == 't') ADVANCE(122); + if (lookahead == 'a') ADVANCE(123); END_STATE(); case 105: - if (lookahead == 'i') ADVANCE(123); + if (lookahead == 'y') ADVANCE(124); END_STATE(); case 106: - if (lookahead == 'i') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_block); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_float); + if (lookahead == 'r') ADVANCE(125); END_STATE(); case 108: - if (lookahead == 'r') ADVANCE(125); + if (lookahead == 'i') ADVANCE(126); END_STATE(); case 109: - if (lookahead == 'n') ADVANCE(126); + if (lookahead == 'a') ADVANCE(127); END_STATE(); case 110: - if (lookahead == 'r') ADVANCE(127); + if (lookahead == 't') ADVANCE(128); END_STATE(); case 111: - if (lookahead == 't') ADVANCE(128); + if (lookahead == 'i') ADVANCE(129); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_range); + if (lookahead == 'i') ADVANCE(130); END_STATE(); case 113: - if (lookahead == 'd') ADVANCE(129); + ACCEPT_TOKEN(anon_sym_float); END_STATE(); case 114: - if (lookahead == 't') ADVANCE(130); + if (lookahead == 'r') ADVANCE(131); END_STATE(); case 115: - if (lookahead == 'g') ADVANCE(131); + if (lookahead == 'n') ADVANCE(132); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_table); + if (lookahead == 'r') ADVANCE(133); END_STATE(); case 117: - if (lookahead == 'b') ADVANCE(132); + if (lookahead == 't') ADVANCE(134); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_binary); + ACCEPT_TOKEN(anon_sym_range); END_STATE(); case 119: - if (lookahead == 'e') ADVANCE(133); + if (lookahead == 'd') ADVANCE(135); END_STATE(); case 120: - if (lookahead == 'm') ADVANCE(134); + if (lookahead == 't') ADVANCE(136); END_STATE(); case 121: - if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'g') ADVANCE(137); END_STATE(); case 122: - if (lookahead == 'o') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_table); END_STATE(); case 123: - if (lookahead == 'o') ADVANCE(137); + if (lookahead == 'b') ADVANCE(138); END_STATE(); case 124: - if (lookahead == 'z') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_binary); END_STATE(); case 125: - if (lookahead == 'd') ADVANCE(139); + if (lookahead == 'e') ADVANCE(139); END_STATE(); case 126: - if (lookahead == 'g') ADVANCE(140); + if (lookahead == 'm') ADVANCE(140); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_number); + if (lookahead == 'l') ADVANCE(141); END_STATE(); case 128: - if (lookahead == 'o') ADVANCE(141); + if (lookahead == 'o') ADVANCE(142); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_record); + if (lookahead == 'o') ADVANCE(143); END_STATE(); case 130: - if (lookahead == 'u') ADVANCE(142); + if (lookahead == 'z') ADVANCE(144); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_string); + if (lookahead == 'd') ADVANCE(145); END_STATE(); case 132: - if (lookahead == 'l') ADVANCE(143); + if (lookahead == 'g') ADVANCE(146); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_closure); + ACCEPT_TOKEN(anon_sym_number); END_STATE(); case 134: - if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'o') ADVANCE(147); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_decimal); + ACCEPT_TOKEN(anon_sym_record); END_STATE(); case 136: - if (lookahead == 'r') ADVANCE(145); + if (lookahead == 'u') ADVANCE(148); END_STATE(); case 137: - if (lookahead == 'n') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_string); END_STATE(); case 138: - if (lookahead == 'e') ADVANCE(147); + if (lookahead == 'l') ADVANCE(149); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_keyword); + ACCEPT_TOKEN(anon_sym_closure); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_nothing); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 141: - if (lookahead == 'r') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_decimal); END_STATE(); case 142: - if (lookahead == 'r') ADVANCE(149); + if (lookahead == 'r') ADVANCE(151); END_STATE(); case 143: - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'n') ADVANCE(152); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_datetime); + if (lookahead == 'e') ADVANCE(153); END_STATE(); case 145: - if (lookahead == 'y') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_keyword); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_duration); + ACCEPT_TOKEN(anon_sym_nothing); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_filesize); + if (lookahead == 'r') ADVANCE(154); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_operator); + if (lookahead == 'r') ADVANCE(155); END_STATE(); case 149: - if (lookahead == 'e') ADVANCE(152); + if (lookahead == 'e') ADVANCE(156); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_variable); + ACCEPT_TOKEN(anon_sym_datetime); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_directory); + if (lookahead == 'y') ADVANCE(157); END_STATE(); case 152: + ACCEPT_TOKEN(anon_sym_duration); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_filesize); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_operator); + END_STATE(); + case 155: + if (lookahead == 'e') ADVANCE(158); + END_STATE(); + case 156: + ACCEPT_TOKEN(anon_sym_variable); + END_STATE(); + case 157: + ACCEPT_TOKEN(anon_sym_directory); + END_STATE(); + case 158: ACCEPT_TOKEN(anon_sym_signature); END_STATE(); default: @@ -58053,8085 +54398,8012 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 930, .external_lex_state = 2}, - [2] = {.lex_state = 951, .external_lex_state = 2}, - [3] = {.lex_state = 951, .external_lex_state = 2}, - [4] = {.lex_state = 951, .external_lex_state = 2}, - [5] = {.lex_state = 951, .external_lex_state = 2}, - [6] = {.lex_state = 951, .external_lex_state = 2}, - [7] = {.lex_state = 951, .external_lex_state = 2}, - [8] = {.lex_state = 951, .external_lex_state = 2}, - [9] = {.lex_state = 951, .external_lex_state = 2}, - [10] = {.lex_state = 951, .external_lex_state = 2}, - [11] = {.lex_state = 951, .external_lex_state = 2}, - [12] = {.lex_state = 951, .external_lex_state = 2}, - [13] = {.lex_state = 951, .external_lex_state = 2}, - [14] = {.lex_state = 951, .external_lex_state = 2}, - [15] = {.lex_state = 951, .external_lex_state = 2}, - [16] = {.lex_state = 951, .external_lex_state = 2}, - [17] = {.lex_state = 951, .external_lex_state = 2}, - [18] = {.lex_state = 951, .external_lex_state = 2}, - [19] = {.lex_state = 951, .external_lex_state = 2}, - [20] = {.lex_state = 951, .external_lex_state = 2}, - [21] = {.lex_state = 951, .external_lex_state = 2}, - [22] = {.lex_state = 951, .external_lex_state = 2}, - [23] = {.lex_state = 951, .external_lex_state = 2}, - [24] = {.lex_state = 951, .external_lex_state = 2}, - [25] = {.lex_state = 951, .external_lex_state = 2}, - [26] = {.lex_state = 951, .external_lex_state = 2}, - [27] = {.lex_state = 951, .external_lex_state = 2}, - [28] = {.lex_state = 951, .external_lex_state = 2}, - [29] = {.lex_state = 951, .external_lex_state = 2}, - [30] = {.lex_state = 951, .external_lex_state = 2}, - [31] = {.lex_state = 951, .external_lex_state = 2}, - [32] = {.lex_state = 951, .external_lex_state = 2}, - [33] = {.lex_state = 951, .external_lex_state = 2}, - [34] = {.lex_state = 951, .external_lex_state = 2}, - [35] = {.lex_state = 951, .external_lex_state = 2}, - [36] = {.lex_state = 951, .external_lex_state = 2}, - [37] = {.lex_state = 951, .external_lex_state = 2}, - [38] = {.lex_state = 951, .external_lex_state = 2}, - [39] = {.lex_state = 951, .external_lex_state = 2}, - [40] = {.lex_state = 951, .external_lex_state = 2}, - [41] = {.lex_state = 948, .external_lex_state = 2}, - [42] = {.lex_state = 948, .external_lex_state = 2}, - [43] = {.lex_state = 948, .external_lex_state = 2}, - [44] = {.lex_state = 948, .external_lex_state = 2}, - [45] = {.lex_state = 948, .external_lex_state = 2}, - [46] = {.lex_state = 948, .external_lex_state = 2}, - [47] = {.lex_state = 948, .external_lex_state = 2}, - [48] = {.lex_state = 948, .external_lex_state = 2}, - [49] = {.lex_state = 948, .external_lex_state = 2}, - [50] = {.lex_state = 948, .external_lex_state = 2}, - [51] = {.lex_state = 948, .external_lex_state = 2}, - [52] = {.lex_state = 948, .external_lex_state = 2}, - [53] = {.lex_state = 948, .external_lex_state = 2}, - [54] = {.lex_state = 948, .external_lex_state = 2}, - [55] = {.lex_state = 948, .external_lex_state = 2}, - [56] = {.lex_state = 948, .external_lex_state = 2}, - [57] = {.lex_state = 948, .external_lex_state = 2}, - [58] = {.lex_state = 948, .external_lex_state = 2}, - [59] = {.lex_state = 948, .external_lex_state = 2}, - [60] = {.lex_state = 948, .external_lex_state = 2}, - [61] = {.lex_state = 948, .external_lex_state = 2}, - [62] = {.lex_state = 948, .external_lex_state = 2}, - [63] = {.lex_state = 948, .external_lex_state = 2}, - [64] = {.lex_state = 948, .external_lex_state = 2}, - [65] = {.lex_state = 948, .external_lex_state = 2}, - [66] = {.lex_state = 948, .external_lex_state = 2}, - [67] = {.lex_state = 948, .external_lex_state = 2}, - [68] = {.lex_state = 948, .external_lex_state = 2}, - [69] = {.lex_state = 948, .external_lex_state = 2}, - [70] = {.lex_state = 948, .external_lex_state = 2}, - [71] = {.lex_state = 948, .external_lex_state = 2}, - [72] = {.lex_state = 948, .external_lex_state = 2}, - [73] = {.lex_state = 948, .external_lex_state = 2}, - [74] = {.lex_state = 29, .external_lex_state = 2}, - [75] = {.lex_state = 29, .external_lex_state = 2}, - [76] = {.lex_state = 29, .external_lex_state = 2}, - [77] = {.lex_state = 29, .external_lex_state = 2}, - [78] = {.lex_state = 29, .external_lex_state = 2}, - [79] = {.lex_state = 29, .external_lex_state = 2}, - [80] = {.lex_state = 29, .external_lex_state = 2}, - [81] = {.lex_state = 29, .external_lex_state = 2}, - [82] = {.lex_state = 29, .external_lex_state = 2}, - [83] = {.lex_state = 948, .external_lex_state = 2}, - [84] = {.lex_state = 29, .external_lex_state = 2}, - [85] = {.lex_state = 29, .external_lex_state = 2}, - [86] = {.lex_state = 29, .external_lex_state = 2}, - [87] = {.lex_state = 29, .external_lex_state = 2}, - [88] = {.lex_state = 29, .external_lex_state = 2}, - [89] = {.lex_state = 29, .external_lex_state = 2}, - [90] = {.lex_state = 29, .external_lex_state = 2}, - [91] = {.lex_state = 29, .external_lex_state = 2}, - [92] = {.lex_state = 29, .external_lex_state = 2}, - [93] = {.lex_state = 948, .external_lex_state = 2}, - [94] = {.lex_state = 29, .external_lex_state = 2}, - [95] = {.lex_state = 29, .external_lex_state = 2}, - [96] = {.lex_state = 29, .external_lex_state = 2}, - [97] = {.lex_state = 29, .external_lex_state = 2}, - [98] = {.lex_state = 29, .external_lex_state = 2}, - [99] = {.lex_state = 948, .external_lex_state = 2}, - [100] = {.lex_state = 29, .external_lex_state = 2}, - [101] = {.lex_state = 29, .external_lex_state = 2}, - [102] = {.lex_state = 29, .external_lex_state = 2}, - [103] = {.lex_state = 29, .external_lex_state = 2}, - [104] = {.lex_state = 29, .external_lex_state = 2}, - [105] = {.lex_state = 29, .external_lex_state = 2}, - [106] = {.lex_state = 29, .external_lex_state = 2}, - [107] = {.lex_state = 29, .external_lex_state = 2}, - [108] = {.lex_state = 29, .external_lex_state = 2}, - [109] = {.lex_state = 29, .external_lex_state = 2}, - [110] = {.lex_state = 29, .external_lex_state = 2}, - [111] = {.lex_state = 29, .external_lex_state = 2}, - [112] = {.lex_state = 29, .external_lex_state = 2}, - [113] = {.lex_state = 29, .external_lex_state = 2}, - [114] = {.lex_state = 29, .external_lex_state = 2}, - [115] = {.lex_state = 29, .external_lex_state = 2}, - [116] = {.lex_state = 948, .external_lex_state = 2}, - [117] = {.lex_state = 948, .external_lex_state = 2}, - [118] = {.lex_state = 29, .external_lex_state = 2}, - [119] = {.lex_state = 948, .external_lex_state = 2}, - [120] = {.lex_state = 948, .external_lex_state = 2}, - [121] = {.lex_state = 948, .external_lex_state = 2}, - [122] = {.lex_state = 948, .external_lex_state = 2}, - [123] = {.lex_state = 948, .external_lex_state = 2}, - [124] = {.lex_state = 948, .external_lex_state = 2}, - [125] = {.lex_state = 948, .external_lex_state = 2}, - [126] = {.lex_state = 948, .external_lex_state = 2}, - [127] = {.lex_state = 948, .external_lex_state = 2}, - [128] = {.lex_state = 948, .external_lex_state = 2}, - [129] = {.lex_state = 948, .external_lex_state = 2}, - [130] = {.lex_state = 948, .external_lex_state = 2}, - [131] = {.lex_state = 948, .external_lex_state = 2}, - [132] = {.lex_state = 948, .external_lex_state = 2}, - [133] = {.lex_state = 948, .external_lex_state = 2}, - [134] = {.lex_state = 948, .external_lex_state = 2}, - [135] = {.lex_state = 948, .external_lex_state = 2}, - [136] = {.lex_state = 948, .external_lex_state = 2}, - [137] = {.lex_state = 948, .external_lex_state = 2}, - [138] = {.lex_state = 948, .external_lex_state = 2}, - [139] = {.lex_state = 948, .external_lex_state = 2}, - [140] = {.lex_state = 948, .external_lex_state = 2}, - [141] = {.lex_state = 948, .external_lex_state = 2}, - [142] = {.lex_state = 948, .external_lex_state = 2}, - [143] = {.lex_state = 948, .external_lex_state = 2}, - [144] = {.lex_state = 948, .external_lex_state = 2}, - [145] = {.lex_state = 948, .external_lex_state = 2}, - [146] = {.lex_state = 948, .external_lex_state = 2}, - [147] = {.lex_state = 948, .external_lex_state = 2}, - [148] = {.lex_state = 948, .external_lex_state = 2}, - [149] = {.lex_state = 948, .external_lex_state = 2}, - [150] = {.lex_state = 948, .external_lex_state = 2}, - [151] = {.lex_state = 948, .external_lex_state = 2}, - [152] = {.lex_state = 948, .external_lex_state = 2}, - [153] = {.lex_state = 948, .external_lex_state = 2}, - [154] = {.lex_state = 948, .external_lex_state = 2}, - [155] = {.lex_state = 948, .external_lex_state = 2}, - [156] = {.lex_state = 948, .external_lex_state = 2}, - [157] = {.lex_state = 948, .external_lex_state = 2}, - [158] = {.lex_state = 948, .external_lex_state = 2}, - [159] = {.lex_state = 948, .external_lex_state = 2}, - [160] = {.lex_state = 948, .external_lex_state = 2}, - [161] = {.lex_state = 948, .external_lex_state = 2}, - [162] = {.lex_state = 948, .external_lex_state = 2}, - [163] = {.lex_state = 100, .external_lex_state = 2}, - [164] = {.lex_state = 100, .external_lex_state = 2}, - [165] = {.lex_state = 100, .external_lex_state = 2}, - [166] = {.lex_state = 99, .external_lex_state = 2}, - [167] = {.lex_state = 99, .external_lex_state = 2}, - [168] = {.lex_state = 99, .external_lex_state = 2}, - [169] = {.lex_state = 99, .external_lex_state = 2}, - [170] = {.lex_state = 99, .external_lex_state = 2}, - [171] = {.lex_state = 99, .external_lex_state = 2}, - [172] = {.lex_state = 100, .external_lex_state = 2}, - [173] = {.lex_state = 100, .external_lex_state = 2}, - [174] = {.lex_state = 100, .external_lex_state = 2}, - [175] = {.lex_state = 101, .external_lex_state = 2}, - [176] = {.lex_state = 101, .external_lex_state = 2}, - [177] = {.lex_state = 200, .external_lex_state = 2}, - [178] = {.lex_state = 200, .external_lex_state = 2}, - [179] = {.lex_state = 200, .external_lex_state = 2}, - [180] = {.lex_state = 200, .external_lex_state = 2}, - [181] = {.lex_state = 200, .external_lex_state = 2}, - [182] = {.lex_state = 200, .external_lex_state = 2}, - [183] = {.lex_state = 200, .external_lex_state = 2}, - [184] = {.lex_state = 200, .external_lex_state = 2}, - [185] = {.lex_state = 200, .external_lex_state = 2}, - [186] = {.lex_state = 200, .external_lex_state = 2}, - [187] = {.lex_state = 200, .external_lex_state = 2}, - [188] = {.lex_state = 200, .external_lex_state = 2}, - [189] = {.lex_state = 200, .external_lex_state = 2}, - [190] = {.lex_state = 200, .external_lex_state = 2}, - [191] = {.lex_state = 200, .external_lex_state = 2}, - [192] = {.lex_state = 200, .external_lex_state = 2}, - [193] = {.lex_state = 200, .external_lex_state = 2}, - [194] = {.lex_state = 200, .external_lex_state = 2}, - [195] = {.lex_state = 200, .external_lex_state = 2}, - [196] = {.lex_state = 200, .external_lex_state = 2}, - [197] = {.lex_state = 42, .external_lex_state = 2}, - [198] = {.lex_state = 951, .external_lex_state = 2}, - [199] = {.lex_state = 951, .external_lex_state = 2}, - [200] = {.lex_state = 42, .external_lex_state = 2}, - [201] = {.lex_state = 42, .external_lex_state = 2}, - [202] = {.lex_state = 42, .external_lex_state = 2}, - [203] = {.lex_state = 42, .external_lex_state = 2}, - [204] = {.lex_state = 951, .external_lex_state = 2}, - [205] = {.lex_state = 42, .external_lex_state = 2}, - [206] = {.lex_state = 42, .external_lex_state = 2}, - [207] = {.lex_state = 42, .external_lex_state = 2}, - [208] = {.lex_state = 42, .external_lex_state = 2}, - [209] = {.lex_state = 42, .external_lex_state = 2}, - [210] = {.lex_state = 42, .external_lex_state = 2}, - [211] = {.lex_state = 42, .external_lex_state = 2}, - [212] = {.lex_state = 42, .external_lex_state = 2}, - [213] = {.lex_state = 42, .external_lex_state = 2}, - [214] = {.lex_state = 262, .external_lex_state = 2}, - [215] = {.lex_state = 241, .external_lex_state = 2}, - [216] = {.lex_state = 239, .external_lex_state = 2}, - [217] = {.lex_state = 263, .external_lex_state = 2}, - [218] = {.lex_state = 262, .external_lex_state = 2}, - [219] = {.lex_state = 263, .external_lex_state = 2}, - [220] = {.lex_state = 260, .external_lex_state = 2}, - [221] = {.lex_state = 260, .external_lex_state = 2}, - [222] = {.lex_state = 243, .external_lex_state = 2}, - [223] = {.lex_state = 243, .external_lex_state = 2}, - [224] = {.lex_state = 263, .external_lex_state = 2}, - [225] = {.lex_state = 263, .external_lex_state = 2}, - [226] = {.lex_state = 263, .external_lex_state = 2}, - [227] = {.lex_state = 227, .external_lex_state = 2}, - [228] = {.lex_state = 263, .external_lex_state = 2}, - [229] = {.lex_state = 229, .external_lex_state = 2}, - [230] = {.lex_state = 244, .external_lex_state = 2}, - [231] = {.lex_state = 261, .external_lex_state = 2}, - [232] = {.lex_state = 261, .external_lex_state = 2}, - [233] = {.lex_state = 29, .external_lex_state = 2}, - [234] = {.lex_state = 231, .external_lex_state = 2}, - [235] = {.lex_state = 272, .external_lex_state = 2}, - [236] = {.lex_state = 272, .external_lex_state = 2}, - [237] = {.lex_state = 29, .external_lex_state = 2}, - [238] = {.lex_state = 29, .external_lex_state = 2}, - [239] = {.lex_state = 261, .external_lex_state = 2}, - [240] = {.lex_state = 272, .external_lex_state = 2}, - [241] = {.lex_state = 261, .external_lex_state = 2}, - [242] = {.lex_state = 231, .external_lex_state = 2}, - [243] = {.lex_state = 261, .external_lex_state = 2}, - [244] = {.lex_state = 232, .external_lex_state = 2}, - [245] = {.lex_state = 29, .external_lex_state = 2}, - [246] = {.lex_state = 244, .external_lex_state = 2}, - [247] = {.lex_state = 242, .external_lex_state = 2}, - [248] = {.lex_state = 244, .external_lex_state = 2}, - [249] = {.lex_state = 244, .external_lex_state = 2}, - [250] = {.lex_state = 240, .external_lex_state = 2}, - [251] = {.lex_state = 244, .external_lex_state = 2}, - [252] = {.lex_state = 261, .external_lex_state = 2}, - [253] = {.lex_state = 33, .external_lex_state = 2}, - [254] = {.lex_state = 228, .external_lex_state = 2}, - [255] = {.lex_state = 948, .external_lex_state = 2}, - [256] = {.lex_state = 33, .external_lex_state = 2}, - [257] = {.lex_state = 272, .external_lex_state = 2}, - [258] = {.lex_state = 272, .external_lex_state = 2}, - [259] = {.lex_state = 33, .external_lex_state = 2}, - [260] = {.lex_state = 33, .external_lex_state = 2}, - [261] = {.lex_state = 33, .external_lex_state = 2}, - [262] = {.lex_state = 230, .external_lex_state = 2}, - [263] = {.lex_state = 948, .external_lex_state = 2}, - [264] = {.lex_state = 33, .external_lex_state = 2}, - [265] = {.lex_state = 33, .external_lex_state = 2}, - [266] = {.lex_state = 33, .external_lex_state = 2}, - [267] = {.lex_state = 33, .external_lex_state = 2}, - [268] = {.lex_state = 33, .external_lex_state = 2}, - [269] = {.lex_state = 33, .external_lex_state = 2}, - [270] = {.lex_state = 33, .external_lex_state = 2}, - [271] = {.lex_state = 930, .external_lex_state = 2}, - [272] = {.lex_state = 33, .external_lex_state = 2}, - [273] = {.lex_state = 285, .external_lex_state = 2}, - [274] = {.lex_state = 33, .external_lex_state = 2}, - [275] = {.lex_state = 33, .external_lex_state = 2}, - [276] = {.lex_state = 33, .external_lex_state = 2}, - [277] = {.lex_state = 33, .external_lex_state = 2}, - [278] = {.lex_state = 33, .external_lex_state = 2}, - [279] = {.lex_state = 33, .external_lex_state = 2}, - [280] = {.lex_state = 33, .external_lex_state = 2}, - [281] = {.lex_state = 33, .external_lex_state = 2}, - [282] = {.lex_state = 33, .external_lex_state = 2}, - [283] = {.lex_state = 33, .external_lex_state = 2}, - [284] = {.lex_state = 29, .external_lex_state = 2}, - [285] = {.lex_state = 232, .external_lex_state = 2}, - [286] = {.lex_state = 948, .external_lex_state = 2}, - [287] = {.lex_state = 285, .external_lex_state = 2}, - [288] = {.lex_state = 232, .external_lex_state = 2}, - [289] = {.lex_state = 232, .external_lex_state = 2}, - [290] = {.lex_state = 232, .external_lex_state = 2}, - [291] = {.lex_state = 948, .external_lex_state = 2}, - [292] = {.lex_state = 245, .external_lex_state = 2}, - [293] = {.lex_state = 948, .external_lex_state = 2}, - [294] = {.lex_state = 245, .external_lex_state = 2}, - [295] = {.lex_state = 948, .external_lex_state = 2}, - [296] = {.lex_state = 948, .external_lex_state = 2}, - [297] = {.lex_state = 948, .external_lex_state = 2}, - [298] = {.lex_state = 285, .external_lex_state = 2}, - [299] = {.lex_state = 33, .external_lex_state = 2}, - [300] = {.lex_state = 246, .external_lex_state = 2}, - [301] = {.lex_state = 285, .external_lex_state = 2}, - [302] = {.lex_state = 273, .external_lex_state = 2}, - [303] = {.lex_state = 948, .external_lex_state = 2}, - [304] = {.lex_state = 948, .external_lex_state = 2}, - [305] = {.lex_state = 29, .external_lex_state = 2}, - [306] = {.lex_state = 233, .external_lex_state = 2}, - [307] = {.lex_state = 273, .external_lex_state = 2}, - [308] = {.lex_state = 246, .external_lex_state = 2}, - [309] = {.lex_state = 948, .external_lex_state = 2}, - [310] = {.lex_state = 282, .external_lex_state = 2}, - [311] = {.lex_state = 273, .external_lex_state = 2}, - [312] = {.lex_state = 273, .external_lex_state = 2}, - [313] = {.lex_state = 246, .external_lex_state = 2}, - [314] = {.lex_state = 948, .external_lex_state = 2}, - [315] = {.lex_state = 273, .external_lex_state = 2}, - [316] = {.lex_state = 285, .external_lex_state = 2}, - [317] = {.lex_state = 273, .external_lex_state = 2}, - [318] = {.lex_state = 948, .external_lex_state = 2}, - [319] = {.lex_state = 246, .external_lex_state = 2}, - [320] = {.lex_state = 246, .external_lex_state = 2}, - [321] = {.lex_state = 948, .external_lex_state = 2}, - [322] = {.lex_state = 271, .external_lex_state = 2}, - [323] = {.lex_state = 274, .external_lex_state = 2}, - [324] = {.lex_state = 246, .external_lex_state = 2}, - [325] = {.lex_state = 233, .external_lex_state = 2}, - [326] = {.lex_state = 279, .external_lex_state = 2}, - [327] = {.lex_state = 271, .external_lex_state = 2}, - [328] = {.lex_state = 271, .external_lex_state = 2}, - [329] = {.lex_state = 948, .external_lex_state = 2}, - [330] = {.lex_state = 948, .external_lex_state = 2}, - [331] = {.lex_state = 33, .external_lex_state = 2}, - [332] = {.lex_state = 948, .external_lex_state = 2}, - [333] = {.lex_state = 283, .external_lex_state = 2}, - [334] = {.lex_state = 279, .external_lex_state = 2}, - [335] = {.lex_state = 283, .external_lex_state = 2}, - [336] = {.lex_state = 283, .external_lex_state = 2}, - [337] = {.lex_state = 283, .external_lex_state = 2}, - [338] = {.lex_state = 283, .external_lex_state = 2}, - [339] = {.lex_state = 283, .external_lex_state = 2}, - [340] = {.lex_state = 272, .external_lex_state = 2}, - [341] = {.lex_state = 272, .external_lex_state = 2}, - [342] = {.lex_state = 272, .external_lex_state = 2}, - [343] = {.lex_state = 234, .external_lex_state = 2}, - [344] = {.lex_state = 234, .external_lex_state = 2}, - [345] = {.lex_state = 234, .external_lex_state = 2}, - [346] = {.lex_state = 234, .external_lex_state = 2}, - [347] = {.lex_state = 295, .external_lex_state = 2}, - [348] = {.lex_state = 279, .external_lex_state = 2}, - [349] = {.lex_state = 279, .external_lex_state = 2}, - [350] = {.lex_state = 279, .external_lex_state = 2}, - [351] = {.lex_state = 236, .external_lex_state = 2}, - [352] = {.lex_state = 279, .external_lex_state = 2}, - [353] = {.lex_state = 280, .external_lex_state = 2}, - [354] = {.lex_state = 201, .external_lex_state = 2}, - [355] = {.lex_state = 284, .external_lex_state = 2}, - [356] = {.lex_state = 247, .external_lex_state = 2}, - [357] = {.lex_state = 948, .external_lex_state = 2}, - [358] = {.lex_state = 201, .external_lex_state = 2}, - [359] = {.lex_state = 948, .external_lex_state = 2}, - [360] = {.lex_state = 279, .external_lex_state = 2}, - [361] = {.lex_state = 201, .external_lex_state = 2}, - [362] = {.lex_state = 952, .external_lex_state = 2}, - [363] = {.lex_state = 279, .external_lex_state = 2}, - [364] = {.lex_state = 279, .external_lex_state = 2}, - [365] = {.lex_state = 279, .external_lex_state = 2}, - [366] = {.lex_state = 279, .external_lex_state = 2}, - [367] = {.lex_state = 279, .external_lex_state = 2}, - [368] = {.lex_state = 279, .external_lex_state = 2}, - [369] = {.lex_state = 279, .external_lex_state = 2}, - [370] = {.lex_state = 279, .external_lex_state = 2}, - [371] = {.lex_state = 33, .external_lex_state = 2}, - [372] = {.lex_state = 279, .external_lex_state = 2}, - [373] = {.lex_state = 279, .external_lex_state = 2}, - [374] = {.lex_state = 279, .external_lex_state = 2}, - [375] = {.lex_state = 279, .external_lex_state = 2}, - [376] = {.lex_state = 279, .external_lex_state = 2}, - [377] = {.lex_state = 279, .external_lex_state = 2}, - [378] = {.lex_state = 279, .external_lex_state = 2}, - [379] = {.lex_state = 279, .external_lex_state = 2}, - [380] = {.lex_state = 279, .external_lex_state = 2}, - [381] = {.lex_state = 279, .external_lex_state = 2}, - [382] = {.lex_state = 279, .external_lex_state = 2}, - [383] = {.lex_state = 279, .external_lex_state = 2}, - [384] = {.lex_state = 234, .external_lex_state = 2}, - [385] = {.lex_state = 279, .external_lex_state = 2}, - [386] = {.lex_state = 234, .external_lex_state = 2}, - [387] = {.lex_state = 280, .external_lex_state = 2}, - [388] = {.lex_state = 281, .external_lex_state = 2}, - [389] = {.lex_state = 281, .external_lex_state = 2}, - [390] = {.lex_state = 281, .external_lex_state = 2}, - [391] = {.lex_state = 952, .external_lex_state = 2}, - [392] = {.lex_state = 292, .external_lex_state = 2}, - [393] = {.lex_state = 292, .external_lex_state = 2}, - [394] = {.lex_state = 292, .external_lex_state = 2}, - [395] = {.lex_state = 292, .external_lex_state = 2}, - [396] = {.lex_state = 292, .external_lex_state = 2}, - [397] = {.lex_state = 292, .external_lex_state = 2}, - [398] = {.lex_state = 292, .external_lex_state = 2}, - [399] = {.lex_state = 292, .external_lex_state = 2}, - [400] = {.lex_state = 292, .external_lex_state = 2}, - [401] = {.lex_state = 292, .external_lex_state = 2}, - [402] = {.lex_state = 292, .external_lex_state = 2}, - [403] = {.lex_state = 292, .external_lex_state = 2}, - [404] = {.lex_state = 292, .external_lex_state = 2}, - [405] = {.lex_state = 292, .external_lex_state = 2}, - [406] = {.lex_state = 292, .external_lex_state = 2}, - [407] = {.lex_state = 292, .external_lex_state = 2}, - [408] = {.lex_state = 292, .external_lex_state = 2}, - [409] = {.lex_state = 292, .external_lex_state = 2}, - [410] = {.lex_state = 270, .external_lex_state = 2}, - [411] = {.lex_state = 279, .external_lex_state = 2}, - [412] = {.lex_state = 279, .external_lex_state = 2}, - [413] = {.lex_state = 292, .external_lex_state = 2}, - [414] = {.lex_state = 270, .external_lex_state = 2}, - [415] = {.lex_state = 270, .external_lex_state = 2}, - [416] = {.lex_state = 281, .external_lex_state = 2}, - [417] = {.lex_state = 224, .external_lex_state = 2}, - [418] = {.lex_state = 293, .external_lex_state = 2}, - [419] = {.lex_state = 952, .external_lex_state = 2}, - [420] = {.lex_state = 292, .external_lex_state = 2}, - [421] = {.lex_state = 293, .external_lex_state = 2}, - [422] = {.lex_state = 292, .external_lex_state = 2}, - [423] = {.lex_state = 285, .external_lex_state = 2}, - [424] = {.lex_state = 292, .external_lex_state = 2}, - [425] = {.lex_state = 270, .external_lex_state = 2}, - [426] = {.lex_state = 292, .external_lex_state = 2}, - [427] = {.lex_state = 270, .external_lex_state = 2}, - [428] = {.lex_state = 237, .external_lex_state = 2}, - [429] = {.lex_state = 270, .external_lex_state = 2}, - [430] = {.lex_state = 281, .external_lex_state = 2}, - [431] = {.lex_state = 285, .external_lex_state = 2}, - [432] = {.lex_state = 281, .external_lex_state = 2}, - [433] = {.lex_state = 281, .external_lex_state = 2}, - [434] = {.lex_state = 237, .external_lex_state = 2}, - [435] = {.lex_state = 292, .external_lex_state = 2}, - [436] = {.lex_state = 292, .external_lex_state = 2}, - [437] = {.lex_state = 292, .external_lex_state = 2}, - [438] = {.lex_state = 281, .external_lex_state = 2}, - [439] = {.lex_state = 285, .external_lex_state = 2}, - [440] = {.lex_state = 281, .external_lex_state = 2}, - [441] = {.lex_state = 281, .external_lex_state = 2}, - [442] = {.lex_state = 281, .external_lex_state = 2}, - [443] = {.lex_state = 281, .external_lex_state = 2}, - [444] = {.lex_state = 235, .external_lex_state = 2}, - [445] = {.lex_state = 281, .external_lex_state = 2}, - [446] = {.lex_state = 281, .external_lex_state = 2}, - [447] = {.lex_state = 281, .external_lex_state = 2}, - [448] = {.lex_state = 292, .external_lex_state = 2}, - [449] = {.lex_state = 281, .external_lex_state = 2}, - [450] = {.lex_state = 292, .external_lex_state = 2}, - [451] = {.lex_state = 238, .external_lex_state = 2}, - [452] = {.lex_state = 238, .external_lex_state = 2}, - [453] = {.lex_state = 238, .external_lex_state = 2}, - [454] = {.lex_state = 294, .external_lex_state = 2}, - [455] = {.lex_state = 238, .external_lex_state = 2}, - [456] = {.lex_state = 292, .external_lex_state = 2}, - [457] = {.lex_state = 238, .external_lex_state = 2}, - [458] = {.lex_state = 238, .external_lex_state = 2}, - [459] = {.lex_state = 277, .external_lex_state = 2}, - [460] = {.lex_state = 277, .external_lex_state = 2}, - [461] = {.lex_state = 277, .external_lex_state = 2}, - [462] = {.lex_state = 276, .external_lex_state = 2}, - [463] = {.lex_state = 277, .external_lex_state = 2}, - [464] = {.lex_state = 277, .external_lex_state = 2}, - [465] = {.lex_state = 277, .external_lex_state = 2}, - [466] = {.lex_state = 292, .external_lex_state = 2}, - [467] = {.lex_state = 278, .external_lex_state = 2}, - [468] = {.lex_state = 271, .external_lex_state = 2}, - [469] = {.lex_state = 355, .external_lex_state = 2}, - [470] = {.lex_state = 238, .external_lex_state = 2}, - [471] = {.lex_state = 294, .external_lex_state = 2}, - [472] = {.lex_state = 294, .external_lex_state = 2}, - [473] = {.lex_state = 355, .external_lex_state = 2}, - [474] = {.lex_state = 355, .external_lex_state = 2}, - [475] = {.lex_state = 294, .external_lex_state = 2}, - [476] = {.lex_state = 225, .external_lex_state = 2}, - [477] = {.lex_state = 355, .external_lex_state = 2}, - [478] = {.lex_state = 294, .external_lex_state = 2}, - [479] = {.lex_state = 225, .external_lex_state = 2}, - [480] = {.lex_state = 294, .external_lex_state = 2}, - [481] = {.lex_state = 238, .external_lex_state = 2}, - [482] = {.lex_state = 355, .external_lex_state = 2}, - [483] = {.lex_state = 238, .external_lex_state = 2}, - [484] = {.lex_state = 238, .external_lex_state = 2}, - [485] = {.lex_state = 238, .external_lex_state = 2}, - [486] = {.lex_state = 238, .external_lex_state = 2}, - [487] = {.lex_state = 294, .external_lex_state = 2}, - [488] = {.lex_state = 294, .external_lex_state = 2}, - [489] = {.lex_state = 294, .external_lex_state = 2}, - [490] = {.lex_state = 294, .external_lex_state = 2}, - [491] = {.lex_state = 294, .external_lex_state = 2}, - [492] = {.lex_state = 294, .external_lex_state = 2}, - [493] = {.lex_state = 294, .external_lex_state = 2}, - [494] = {.lex_state = 271, .external_lex_state = 2}, - [495] = {.lex_state = 294, .external_lex_state = 2}, - [496] = {.lex_state = 294, .external_lex_state = 2}, - [497] = {.lex_state = 238, .external_lex_state = 2}, - [498] = {.lex_state = 238, .external_lex_state = 2}, - [499] = {.lex_state = 238, .external_lex_state = 2}, - [500] = {.lex_state = 271, .external_lex_state = 2}, - [501] = {.lex_state = 294, .external_lex_state = 2}, - [502] = {.lex_state = 226, .external_lex_state = 2}, - [503] = {.lex_state = 326, .external_lex_state = 2}, - [504] = {.lex_state = 290, .external_lex_state = 2}, - [505] = {.lex_state = 290, .external_lex_state = 2}, - [506] = {.lex_state = 290, .external_lex_state = 2}, - [507] = {.lex_state = 354, .external_lex_state = 2}, - [508] = {.lex_state = 326, .external_lex_state = 2}, - [509] = {.lex_state = 290, .external_lex_state = 2}, - [510] = {.lex_state = 354, .external_lex_state = 2}, - [511] = {.lex_state = 269, .external_lex_state = 2}, - [512] = {.lex_state = 326, .external_lex_state = 2}, - [513] = {.lex_state = 354, .external_lex_state = 2}, - [514] = {.lex_state = 354, .external_lex_state = 2}, - [515] = {.lex_state = 326, .external_lex_state = 2}, - [516] = {.lex_state = 326, .external_lex_state = 2}, - [517] = {.lex_state = 226, .external_lex_state = 2}, - [518] = {.lex_state = 279, .external_lex_state = 2}, - [519] = {.lex_state = 226, .external_lex_state = 2}, - [520] = {.lex_state = 290, .external_lex_state = 2}, - [521] = {.lex_state = 226, .external_lex_state = 2}, - [522] = {.lex_state = 354, .external_lex_state = 2}, - [523] = {.lex_state = 226, .external_lex_state = 2}, - [524] = {.lex_state = 226, .external_lex_state = 2}, - [525] = {.lex_state = 226, .external_lex_state = 2}, - [526] = {.lex_state = 226, .external_lex_state = 2}, - [527] = {.lex_state = 226, .external_lex_state = 2}, - [528] = {.lex_state = 326, .external_lex_state = 2}, - [529] = {.lex_state = 238, .external_lex_state = 2}, - [530] = {.lex_state = 226, .external_lex_state = 2}, - [531] = {.lex_state = 275, .external_lex_state = 2}, - [532] = {.lex_state = 275, .external_lex_state = 2}, - [533] = {.lex_state = 238, .external_lex_state = 2}, - [534] = {.lex_state = 291, .external_lex_state = 2}, - [535] = {.lex_state = 226, .external_lex_state = 2}, - [536] = {.lex_state = 289, .external_lex_state = 2}, - [537] = {.lex_state = 290, .external_lex_state = 2}, - [538] = {.lex_state = 279, .external_lex_state = 2}, - [539] = {.lex_state = 326, .external_lex_state = 2}, - [540] = {.lex_state = 326, .external_lex_state = 2}, - [541] = {.lex_state = 226, .external_lex_state = 2}, - [542] = {.lex_state = 226, .external_lex_state = 2}, - [543] = {.lex_state = 226, .external_lex_state = 2}, - [544] = {.lex_state = 269, .external_lex_state = 2}, - [545] = {.lex_state = 279, .external_lex_state = 2}, - [546] = {.lex_state = 226, .external_lex_state = 2}, - [547] = {.lex_state = 326, .external_lex_state = 2}, - [548] = {.lex_state = 326, .external_lex_state = 2}, - [549] = {.lex_state = 326, .external_lex_state = 2}, - [550] = {.lex_state = 326, .external_lex_state = 2}, - [551] = {.lex_state = 326, .external_lex_state = 2}, - [552] = {.lex_state = 326, .external_lex_state = 2}, - [553] = {.lex_state = 326, .external_lex_state = 2}, - [554] = {.lex_state = 326, .external_lex_state = 2}, - [555] = {.lex_state = 326, .external_lex_state = 2}, - [556] = {.lex_state = 326, .external_lex_state = 2}, - [557] = {.lex_state = 326, .external_lex_state = 2}, - [558] = {.lex_state = 42, .external_lex_state = 2}, - [559] = {.lex_state = 226, .external_lex_state = 2}, - [560] = {.lex_state = 326, .external_lex_state = 2}, - [561] = {.lex_state = 326, .external_lex_state = 2}, - [562] = {.lex_state = 326, .external_lex_state = 2}, - [563] = {.lex_state = 326, .external_lex_state = 2}, - [564] = {.lex_state = 326, .external_lex_state = 2}, - [565] = {.lex_state = 326, .external_lex_state = 2}, - [566] = {.lex_state = 326, .external_lex_state = 2}, - [567] = {.lex_state = 226, .external_lex_state = 2}, - [568] = {.lex_state = 326, .external_lex_state = 2}, - [569] = {.lex_state = 326, .external_lex_state = 2}, - [570] = {.lex_state = 326, .external_lex_state = 2}, - [571] = {.lex_state = 326, .external_lex_state = 2}, - [572] = {.lex_state = 326, .external_lex_state = 2}, - [573] = {.lex_state = 326, .external_lex_state = 2}, - [574] = {.lex_state = 326, .external_lex_state = 2}, - [575] = {.lex_state = 326, .external_lex_state = 2}, - [576] = {.lex_state = 326, .external_lex_state = 2}, - [577] = {.lex_state = 326, .external_lex_state = 2}, - [578] = {.lex_state = 326, .external_lex_state = 2}, - [579] = {.lex_state = 326, .external_lex_state = 2}, - [580] = {.lex_state = 326, .external_lex_state = 2}, - [581] = {.lex_state = 326, .external_lex_state = 2}, - [582] = {.lex_state = 326, .external_lex_state = 2}, - [583] = {.lex_state = 326, .external_lex_state = 2}, - [584] = {.lex_state = 326, .external_lex_state = 2}, - [585] = {.lex_state = 326, .external_lex_state = 2}, - [586] = {.lex_state = 326, .external_lex_state = 2}, - [587] = {.lex_state = 326, .external_lex_state = 2}, - [588] = {.lex_state = 326, .external_lex_state = 2}, - [589] = {.lex_state = 326, .external_lex_state = 2}, - [590] = {.lex_state = 326, .external_lex_state = 2}, - [591] = {.lex_state = 326, .external_lex_state = 2}, - [592] = {.lex_state = 326, .external_lex_state = 2}, - [593] = {.lex_state = 326, .external_lex_state = 2}, - [594] = {.lex_state = 326, .external_lex_state = 2}, - [595] = {.lex_state = 326, .external_lex_state = 2}, - [596] = {.lex_state = 326, .external_lex_state = 2}, - [597] = {.lex_state = 326, .external_lex_state = 2}, - [598] = {.lex_state = 326, .external_lex_state = 2}, - [599] = {.lex_state = 326, .external_lex_state = 2}, - [600] = {.lex_state = 42, .external_lex_state = 2}, - [601] = {.lex_state = 326, .external_lex_state = 2}, - [602] = {.lex_state = 326, .external_lex_state = 2}, - [603] = {.lex_state = 287, .external_lex_state = 2}, - [604] = {.lex_state = 326, .external_lex_state = 2}, - [605] = {.lex_state = 42, .external_lex_state = 2}, - [606] = {.lex_state = 326, .external_lex_state = 2}, - [607] = {.lex_state = 326, .external_lex_state = 2}, - [608] = {.lex_state = 326, .external_lex_state = 2}, - [609] = {.lex_state = 326, .external_lex_state = 2}, - [610] = {.lex_state = 326, .external_lex_state = 2}, - [611] = {.lex_state = 326, .external_lex_state = 2}, - [612] = {.lex_state = 326, .external_lex_state = 2}, - [613] = {.lex_state = 326, .external_lex_state = 2}, - [614] = {.lex_state = 326, .external_lex_state = 2}, - [615] = {.lex_state = 326, .external_lex_state = 2}, - [616] = {.lex_state = 326, .external_lex_state = 2}, - [617] = {.lex_state = 287, .external_lex_state = 2}, - [618] = {.lex_state = 326, .external_lex_state = 2}, - [619] = {.lex_state = 326, .external_lex_state = 2}, - [620] = {.lex_state = 326, .external_lex_state = 2}, - [621] = {.lex_state = 326, .external_lex_state = 2}, - [622] = {.lex_state = 326, .external_lex_state = 2}, - [623] = {.lex_state = 326, .external_lex_state = 2}, - [624] = {.lex_state = 292, .external_lex_state = 2}, - [625] = {.lex_state = 292, .external_lex_state = 2}, - [626] = {.lex_state = 326, .external_lex_state = 2}, - [627] = {.lex_state = 326, .external_lex_state = 2}, - [628] = {.lex_state = 326, .external_lex_state = 2}, - [629] = {.lex_state = 326, .external_lex_state = 2}, - [630] = {.lex_state = 326, .external_lex_state = 2}, - [631] = {.lex_state = 292, .external_lex_state = 2}, - [632] = {.lex_state = 42, .external_lex_state = 2}, - [633] = {.lex_state = 42, .external_lex_state = 2}, - [634] = {.lex_state = 42, .external_lex_state = 2}, - [635] = {.lex_state = 42, .external_lex_state = 2}, - [636] = {.lex_state = 42, .external_lex_state = 2}, - [637] = {.lex_state = 42, .external_lex_state = 2}, - [638] = {.lex_state = 42, .external_lex_state = 2}, - [639] = {.lex_state = 42, .external_lex_state = 2}, - [640] = {.lex_state = 42, .external_lex_state = 2}, - [641] = {.lex_state = 42, .external_lex_state = 2}, - [642] = {.lex_state = 42, .external_lex_state = 2}, - [643] = {.lex_state = 42, .external_lex_state = 2}, - [644] = {.lex_state = 42, .external_lex_state = 2}, - [645] = {.lex_state = 42, .external_lex_state = 2}, - [646] = {.lex_state = 42, .external_lex_state = 2}, - [647] = {.lex_state = 42, .external_lex_state = 2}, - [648] = {.lex_state = 42, .external_lex_state = 2}, - [649] = {.lex_state = 42, .external_lex_state = 2}, - [650] = {.lex_state = 42, .external_lex_state = 2}, - [651] = {.lex_state = 42, .external_lex_state = 2}, - [652] = {.lex_state = 42, .external_lex_state = 2}, - [653] = {.lex_state = 42, .external_lex_state = 2}, - [654] = {.lex_state = 42, .external_lex_state = 2}, - [655] = {.lex_state = 42, .external_lex_state = 2}, - [656] = {.lex_state = 42, .external_lex_state = 2}, - [657] = {.lex_state = 42, .external_lex_state = 2}, - [658] = {.lex_state = 42, .external_lex_state = 2}, - [659] = {.lex_state = 42, .external_lex_state = 2}, - [660] = {.lex_state = 42, .external_lex_state = 2}, - [661] = {.lex_state = 42, .external_lex_state = 2}, - [662] = {.lex_state = 42, .external_lex_state = 2}, - [663] = {.lex_state = 42, .external_lex_state = 2}, - [664] = {.lex_state = 42, .external_lex_state = 2}, - [665] = {.lex_state = 42, .external_lex_state = 2}, - [666] = {.lex_state = 42, .external_lex_state = 2}, - [667] = {.lex_state = 42, .external_lex_state = 2}, - [668] = {.lex_state = 42, .external_lex_state = 2}, - [669] = {.lex_state = 42, .external_lex_state = 2}, - [670] = {.lex_state = 42, .external_lex_state = 2}, - [671] = {.lex_state = 42, .external_lex_state = 2}, - [672] = {.lex_state = 42, .external_lex_state = 2}, - [673] = {.lex_state = 42, .external_lex_state = 2}, - [674] = {.lex_state = 42, .external_lex_state = 2}, - [675] = {.lex_state = 42, .external_lex_state = 2}, - [676] = {.lex_state = 42, .external_lex_state = 2}, - [677] = {.lex_state = 42, .external_lex_state = 2}, - [678] = {.lex_state = 42, .external_lex_state = 2}, - [679] = {.lex_state = 42, .external_lex_state = 2}, - [680] = {.lex_state = 42, .external_lex_state = 2}, - [681] = {.lex_state = 42, .external_lex_state = 2}, - [682] = {.lex_state = 42, .external_lex_state = 2}, - [683] = {.lex_state = 42, .external_lex_state = 2}, - [684] = {.lex_state = 42, .external_lex_state = 2}, - [685] = {.lex_state = 42, .external_lex_state = 2}, - [686] = {.lex_state = 42, .external_lex_state = 2}, - [687] = {.lex_state = 42, .external_lex_state = 2}, - [688] = {.lex_state = 42, .external_lex_state = 2}, - [689] = {.lex_state = 42, .external_lex_state = 2}, - [690] = {.lex_state = 42, .external_lex_state = 2}, - [691] = {.lex_state = 42, .external_lex_state = 2}, - [692] = {.lex_state = 42, .external_lex_state = 2}, - [693] = {.lex_state = 42, .external_lex_state = 2}, - [694] = {.lex_state = 42, .external_lex_state = 2}, - [695] = {.lex_state = 42, .external_lex_state = 2}, - [696] = {.lex_state = 42, .external_lex_state = 2}, - [697] = {.lex_state = 42, .external_lex_state = 2}, - [698] = {.lex_state = 42, .external_lex_state = 2}, - [699] = {.lex_state = 42, .external_lex_state = 2}, - [700] = {.lex_state = 42, .external_lex_state = 2}, - [701] = {.lex_state = 42, .external_lex_state = 2}, - [702] = {.lex_state = 42, .external_lex_state = 2}, - [703] = {.lex_state = 42, .external_lex_state = 2}, - [704] = {.lex_state = 42, .external_lex_state = 2}, - [705] = {.lex_state = 42, .external_lex_state = 2}, - [706] = {.lex_state = 42, .external_lex_state = 2}, - [707] = {.lex_state = 42, .external_lex_state = 2}, - [708] = {.lex_state = 36, .external_lex_state = 2}, - [709] = {.lex_state = 36, .external_lex_state = 2}, - [710] = {.lex_state = 958, .external_lex_state = 2}, - [711] = {.lex_state = 958, .external_lex_state = 2}, - [712] = {.lex_state = 958, .external_lex_state = 2}, - [713] = {.lex_state = 958, .external_lex_state = 2}, - [714] = {.lex_state = 958, .external_lex_state = 2}, - [715] = {.lex_state = 958, .external_lex_state = 2}, - [716] = {.lex_state = 958, .external_lex_state = 2}, - [717] = {.lex_state = 958, .external_lex_state = 2}, - [718] = {.lex_state = 958, .external_lex_state = 2}, - [719] = {.lex_state = 958, .external_lex_state = 2}, - [720] = {.lex_state = 958, .external_lex_state = 2}, - [721] = {.lex_state = 958, .external_lex_state = 2}, - [722] = {.lex_state = 958, .external_lex_state = 2}, - [723] = {.lex_state = 958, .external_lex_state = 2}, - [724] = {.lex_state = 958, .external_lex_state = 2}, - [725] = {.lex_state = 32, .external_lex_state = 2}, - [726] = {.lex_state = 32, .external_lex_state = 2}, - [727] = {.lex_state = 32, .external_lex_state = 2}, - [728] = {.lex_state = 32, .external_lex_state = 2}, - [729] = {.lex_state = 32, .external_lex_state = 2}, - [730] = {.lex_state = 36, .external_lex_state = 2}, - [731] = {.lex_state = 36, .external_lex_state = 2}, - [732] = {.lex_state = 36, .external_lex_state = 2}, - [733] = {.lex_state = 36, .external_lex_state = 2}, - [734] = {.lex_state = 32, .external_lex_state = 2}, - [735] = {.lex_state = 36, .external_lex_state = 2}, - [736] = {.lex_state = 36, .external_lex_state = 2}, - [737] = {.lex_state = 36, .external_lex_state = 2}, - [738] = {.lex_state = 36, .external_lex_state = 2}, - [739] = {.lex_state = 36, .external_lex_state = 2}, - [740] = {.lex_state = 36, .external_lex_state = 2}, - [741] = {.lex_state = 36, .external_lex_state = 2}, - [742] = {.lex_state = 36, .external_lex_state = 2}, - [743] = {.lex_state = 36, .external_lex_state = 2}, - [744] = {.lex_state = 36, .external_lex_state = 2}, - [745] = {.lex_state = 36, .external_lex_state = 2}, - [746] = {.lex_state = 32, .external_lex_state = 2}, - [747] = {.lex_state = 36, .external_lex_state = 2}, - [748] = {.lex_state = 36, .external_lex_state = 2}, - [749] = {.lex_state = 36, .external_lex_state = 2}, - [750] = {.lex_state = 36, .external_lex_state = 2}, - [751] = {.lex_state = 36, .external_lex_state = 2}, - [752] = {.lex_state = 36, .external_lex_state = 2}, - [753] = {.lex_state = 36, .external_lex_state = 2}, - [754] = {.lex_state = 36, .external_lex_state = 2}, - [755] = {.lex_state = 32, .external_lex_state = 2}, - [756] = {.lex_state = 36, .external_lex_state = 2}, - [757] = {.lex_state = 32, .external_lex_state = 2}, - [758] = {.lex_state = 36, .external_lex_state = 2}, - [759] = {.lex_state = 36, .external_lex_state = 2}, - [760] = {.lex_state = 36, .external_lex_state = 2}, - [761] = {.lex_state = 36, .external_lex_state = 2}, - [762] = {.lex_state = 36, .external_lex_state = 2}, - [763] = {.lex_state = 36, .external_lex_state = 2}, - [764] = {.lex_state = 36, .external_lex_state = 2}, - [765] = {.lex_state = 36, .external_lex_state = 2}, - [766] = {.lex_state = 36, .external_lex_state = 2}, - [767] = {.lex_state = 36, .external_lex_state = 2}, - [768] = {.lex_state = 36, .external_lex_state = 2}, - [769] = {.lex_state = 36, .external_lex_state = 2}, - [770] = {.lex_state = 36, .external_lex_state = 2}, - [771] = {.lex_state = 36, .external_lex_state = 2}, - [772] = {.lex_state = 36, .external_lex_state = 2}, - [773] = {.lex_state = 36, .external_lex_state = 2}, - [774] = {.lex_state = 36, .external_lex_state = 2}, - [775] = {.lex_state = 36, .external_lex_state = 2}, - [776] = {.lex_state = 36, .external_lex_state = 2}, - [777] = {.lex_state = 36, .external_lex_state = 2}, - [778] = {.lex_state = 36, .external_lex_state = 2}, - [779] = {.lex_state = 36, .external_lex_state = 2}, - [780] = {.lex_state = 36, .external_lex_state = 2}, - [781] = {.lex_state = 36, .external_lex_state = 2}, - [782] = {.lex_state = 36, .external_lex_state = 2}, - [783] = {.lex_state = 36, .external_lex_state = 2}, - [784] = {.lex_state = 34, .external_lex_state = 2}, - [785] = {.lex_state = 35, .external_lex_state = 2}, - [786] = {.lex_state = 34, .external_lex_state = 2}, - [787] = {.lex_state = 34, .external_lex_state = 2}, - [788] = {.lex_state = 34, .external_lex_state = 2}, - [789] = {.lex_state = 34, .external_lex_state = 2}, - [790] = {.lex_state = 34, .external_lex_state = 2}, - [791] = {.lex_state = 34, .external_lex_state = 2}, - [792] = {.lex_state = 34, .external_lex_state = 2}, - [793] = {.lex_state = 34, .external_lex_state = 2}, - [794] = {.lex_state = 34, .external_lex_state = 2}, - [795] = {.lex_state = 34, .external_lex_state = 2}, - [796] = {.lex_state = 34, .external_lex_state = 2}, - [797] = {.lex_state = 34, .external_lex_state = 2}, - [798] = {.lex_state = 34, .external_lex_state = 2}, - [799] = {.lex_state = 34, .external_lex_state = 2}, - [800] = {.lex_state = 34, .external_lex_state = 2}, - [801] = {.lex_state = 34, .external_lex_state = 2}, - [802] = {.lex_state = 34, .external_lex_state = 2}, - [803] = {.lex_state = 34, .external_lex_state = 2}, - [804] = {.lex_state = 34, .external_lex_state = 2}, - [805] = {.lex_state = 34, .external_lex_state = 2}, - [806] = {.lex_state = 34, .external_lex_state = 2}, - [807] = {.lex_state = 34, .external_lex_state = 2}, - [808] = {.lex_state = 34, .external_lex_state = 2}, - [809] = {.lex_state = 34, .external_lex_state = 2}, - [810] = {.lex_state = 34, .external_lex_state = 2}, - [811] = {.lex_state = 34, .external_lex_state = 2}, - [812] = {.lex_state = 34, .external_lex_state = 2}, - [813] = {.lex_state = 34, .external_lex_state = 2}, - [814] = {.lex_state = 34, .external_lex_state = 2}, - [815] = {.lex_state = 34, .external_lex_state = 2}, - [816] = {.lex_state = 34, .external_lex_state = 2}, - [817] = {.lex_state = 34, .external_lex_state = 2}, - [818] = {.lex_state = 34, .external_lex_state = 2}, - [819] = {.lex_state = 34, .external_lex_state = 2}, - [820] = {.lex_state = 34, .external_lex_state = 2}, - [821] = {.lex_state = 34, .external_lex_state = 2}, - [822] = {.lex_state = 34, .external_lex_state = 2}, - [823] = {.lex_state = 34, .external_lex_state = 2}, - [824] = {.lex_state = 34, .external_lex_state = 2}, - [825] = {.lex_state = 34, .external_lex_state = 2}, - [826] = {.lex_state = 34, .external_lex_state = 2}, - [827] = {.lex_state = 34, .external_lex_state = 2}, - [828] = {.lex_state = 34, .external_lex_state = 2}, - [829] = {.lex_state = 34, .external_lex_state = 2}, - [830] = {.lex_state = 34, .external_lex_state = 2}, - [831] = {.lex_state = 34, .external_lex_state = 2}, - [832] = {.lex_state = 34, .external_lex_state = 2}, - [833] = {.lex_state = 34, .external_lex_state = 2}, - [834] = {.lex_state = 34, .external_lex_state = 2}, - [835] = {.lex_state = 34, .external_lex_state = 2}, - [836] = {.lex_state = 34, .external_lex_state = 2}, - [837] = {.lex_state = 34, .external_lex_state = 2}, - [838] = {.lex_state = 34, .external_lex_state = 2}, - [839] = {.lex_state = 34, .external_lex_state = 2}, - [840] = {.lex_state = 34, .external_lex_state = 2}, - [841] = {.lex_state = 34, .external_lex_state = 2}, - [842] = {.lex_state = 34, .external_lex_state = 2}, - [843] = {.lex_state = 34, .external_lex_state = 2}, - [844] = {.lex_state = 34, .external_lex_state = 2}, - [845] = {.lex_state = 34, .external_lex_state = 2}, - [846] = {.lex_state = 34, .external_lex_state = 2}, - [847] = {.lex_state = 34, .external_lex_state = 2}, - [848] = {.lex_state = 34, .external_lex_state = 2}, - [849] = {.lex_state = 34, .external_lex_state = 2}, - [850] = {.lex_state = 34, .external_lex_state = 2}, - [851] = {.lex_state = 34, .external_lex_state = 2}, - [852] = {.lex_state = 34, .external_lex_state = 2}, - [853] = {.lex_state = 34, .external_lex_state = 2}, - [854] = {.lex_state = 34, .external_lex_state = 2}, - [855] = {.lex_state = 34, .external_lex_state = 2}, - [856] = {.lex_state = 34, .external_lex_state = 2}, - [857] = {.lex_state = 34, .external_lex_state = 2}, - [858] = {.lex_state = 34, .external_lex_state = 2}, - [859] = {.lex_state = 34, .external_lex_state = 2}, - [860] = {.lex_state = 34, .external_lex_state = 2}, - [861] = {.lex_state = 34, .external_lex_state = 2}, - [862] = {.lex_state = 34, .external_lex_state = 2}, - [863] = {.lex_state = 34, .external_lex_state = 2}, - [864] = {.lex_state = 34, .external_lex_state = 2}, - [865] = {.lex_state = 34, .external_lex_state = 2}, - [866] = {.lex_state = 34, .external_lex_state = 2}, - [867] = {.lex_state = 34, .external_lex_state = 2}, - [868] = {.lex_state = 34, .external_lex_state = 2}, - [869] = {.lex_state = 34, .external_lex_state = 2}, - [870] = {.lex_state = 34, .external_lex_state = 2}, - [871] = {.lex_state = 34, .external_lex_state = 2}, - [872] = {.lex_state = 34, .external_lex_state = 2}, - [873] = {.lex_state = 34, .external_lex_state = 2}, - [874] = {.lex_state = 34, .external_lex_state = 2}, - [875] = {.lex_state = 34, .external_lex_state = 2}, - [876] = {.lex_state = 34, .external_lex_state = 2}, - [877] = {.lex_state = 34, .external_lex_state = 2}, - [878] = {.lex_state = 34, .external_lex_state = 2}, - [879] = {.lex_state = 34, .external_lex_state = 2}, - [880] = {.lex_state = 34, .external_lex_state = 2}, - [881] = {.lex_state = 34, .external_lex_state = 2}, - [882] = {.lex_state = 34, .external_lex_state = 2}, - [883] = {.lex_state = 34, .external_lex_state = 2}, - [884] = {.lex_state = 34, .external_lex_state = 2}, - [885] = {.lex_state = 34, .external_lex_state = 2}, - [886] = {.lex_state = 34, .external_lex_state = 2}, - [887] = {.lex_state = 34, .external_lex_state = 2}, - [888] = {.lex_state = 34, .external_lex_state = 2}, - [889] = {.lex_state = 34, .external_lex_state = 2}, - [890] = {.lex_state = 34, .external_lex_state = 2}, - [891] = {.lex_state = 34, .external_lex_state = 2}, - [892] = {.lex_state = 34, .external_lex_state = 2}, - [893] = {.lex_state = 34, .external_lex_state = 2}, - [894] = {.lex_state = 34, .external_lex_state = 2}, - [895] = {.lex_state = 34, .external_lex_state = 2}, - [896] = {.lex_state = 34, .external_lex_state = 2}, - [897] = {.lex_state = 34, .external_lex_state = 2}, - [898] = {.lex_state = 34, .external_lex_state = 2}, - [899] = {.lex_state = 34, .external_lex_state = 2}, - [900] = {.lex_state = 34, .external_lex_state = 2}, - [901] = {.lex_state = 34, .external_lex_state = 2}, - [902] = {.lex_state = 34, .external_lex_state = 2}, - [903] = {.lex_state = 34, .external_lex_state = 2}, - [904] = {.lex_state = 34, .external_lex_state = 2}, - [905] = {.lex_state = 34, .external_lex_state = 2}, - [906] = {.lex_state = 34, .external_lex_state = 2}, - [907] = {.lex_state = 34, .external_lex_state = 2}, - [908] = {.lex_state = 34, .external_lex_state = 2}, - [909] = {.lex_state = 34, .external_lex_state = 2}, - [910] = {.lex_state = 34, .external_lex_state = 2}, - [911] = {.lex_state = 34, .external_lex_state = 2}, - [912] = {.lex_state = 34, .external_lex_state = 2}, - [913] = {.lex_state = 34, .external_lex_state = 2}, - [914] = {.lex_state = 34, .external_lex_state = 2}, - [915] = {.lex_state = 34, .external_lex_state = 2}, - [916] = {.lex_state = 34, .external_lex_state = 2}, - [917] = {.lex_state = 34, .external_lex_state = 2}, - [918] = {.lex_state = 34, .external_lex_state = 2}, - [919] = {.lex_state = 34, .external_lex_state = 2}, - [920] = {.lex_state = 34, .external_lex_state = 2}, - [921] = {.lex_state = 34, .external_lex_state = 2}, - [922] = {.lex_state = 34, .external_lex_state = 2}, - [923] = {.lex_state = 34, .external_lex_state = 2}, - [924] = {.lex_state = 34, .external_lex_state = 2}, - [925] = {.lex_state = 34, .external_lex_state = 2}, - [926] = {.lex_state = 34, .external_lex_state = 2}, - [927] = {.lex_state = 34, .external_lex_state = 2}, - [928] = {.lex_state = 34, .external_lex_state = 2}, - [929] = {.lex_state = 34, .external_lex_state = 2}, - [930] = {.lex_state = 34, .external_lex_state = 2}, - [931] = {.lex_state = 34, .external_lex_state = 2}, - [932] = {.lex_state = 34, .external_lex_state = 2}, - [933] = {.lex_state = 34, .external_lex_state = 2}, - [934] = {.lex_state = 34, .external_lex_state = 2}, - [935] = {.lex_state = 34, .external_lex_state = 2}, - [936] = {.lex_state = 34, .external_lex_state = 2}, - [937] = {.lex_state = 34, .external_lex_state = 2}, - [938] = {.lex_state = 34, .external_lex_state = 2}, - [939] = {.lex_state = 34, .external_lex_state = 2}, - [940] = {.lex_state = 34, .external_lex_state = 2}, - [941] = {.lex_state = 98, .external_lex_state = 2}, - [942] = {.lex_state = 98, .external_lex_state = 2}, - [943] = {.lex_state = 950, .external_lex_state = 2}, - [944] = {.lex_state = 34, .external_lex_state = 2}, - [945] = {.lex_state = 34, .external_lex_state = 2}, - [946] = {.lex_state = 34, .external_lex_state = 2}, - [947] = {.lex_state = 34, .external_lex_state = 2}, - [948] = {.lex_state = 34, .external_lex_state = 2}, - [949] = {.lex_state = 34, .external_lex_state = 2}, - [950] = {.lex_state = 34, .external_lex_state = 2}, - [951] = {.lex_state = 34, .external_lex_state = 2}, - [952] = {.lex_state = 34, .external_lex_state = 2}, - [953] = {.lex_state = 34, .external_lex_state = 2}, - [954] = {.lex_state = 34, .external_lex_state = 2}, - [955] = {.lex_state = 34, .external_lex_state = 2}, - [956] = {.lex_state = 34, .external_lex_state = 2}, - [957] = {.lex_state = 34, .external_lex_state = 2}, - [958] = {.lex_state = 34, .external_lex_state = 2}, - [959] = {.lex_state = 34, .external_lex_state = 2}, - [960] = {.lex_state = 34, .external_lex_state = 2}, - [961] = {.lex_state = 34, .external_lex_state = 2}, - [962] = {.lex_state = 34, .external_lex_state = 2}, - [963] = {.lex_state = 34, .external_lex_state = 2}, - [964] = {.lex_state = 34, .external_lex_state = 2}, - [965] = {.lex_state = 34, .external_lex_state = 2}, - [966] = {.lex_state = 34, .external_lex_state = 2}, - [967] = {.lex_state = 34, .external_lex_state = 2}, - [968] = {.lex_state = 34, .external_lex_state = 2}, - [969] = {.lex_state = 34, .external_lex_state = 2}, - [970] = {.lex_state = 34, .external_lex_state = 2}, - [971] = {.lex_state = 34, .external_lex_state = 2}, - [972] = {.lex_state = 34, .external_lex_state = 2}, - [973] = {.lex_state = 34, .external_lex_state = 2}, - [974] = {.lex_state = 34, .external_lex_state = 2}, - [975] = {.lex_state = 34, .external_lex_state = 2}, - [976] = {.lex_state = 34, .external_lex_state = 2}, - [977] = {.lex_state = 34, .external_lex_state = 2}, - [978] = {.lex_state = 34, .external_lex_state = 2}, - [979] = {.lex_state = 34, .external_lex_state = 2}, - [980] = {.lex_state = 34, .external_lex_state = 2}, - [981] = {.lex_state = 34, .external_lex_state = 2}, - [982] = {.lex_state = 34, .external_lex_state = 2}, - [983] = {.lex_state = 34, .external_lex_state = 2}, - [984] = {.lex_state = 34, .external_lex_state = 2}, - [985] = {.lex_state = 34, .external_lex_state = 2}, - [986] = {.lex_state = 34, .external_lex_state = 2}, - [987] = {.lex_state = 34, .external_lex_state = 2}, - [988] = {.lex_state = 34, .external_lex_state = 2}, - [989] = {.lex_state = 34, .external_lex_state = 2}, - [990] = {.lex_state = 34, .external_lex_state = 2}, - [991] = {.lex_state = 950, .external_lex_state = 2}, - [992] = {.lex_state = 34, .external_lex_state = 2}, - [993] = {.lex_state = 34, .external_lex_state = 2}, - [994] = {.lex_state = 34, .external_lex_state = 2}, - [995] = {.lex_state = 34, .external_lex_state = 2}, - [996] = {.lex_state = 34, .external_lex_state = 2}, - [997] = {.lex_state = 34, .external_lex_state = 2}, - [998] = {.lex_state = 34, .external_lex_state = 2}, - [999] = {.lex_state = 34, .external_lex_state = 2}, - [1000] = {.lex_state = 34, .external_lex_state = 2}, - [1001] = {.lex_state = 34, .external_lex_state = 2}, - [1002] = {.lex_state = 34, .external_lex_state = 2}, - [1003] = {.lex_state = 34, .external_lex_state = 2}, - [1004] = {.lex_state = 34, .external_lex_state = 2}, - [1005] = {.lex_state = 34, .external_lex_state = 2}, - [1006] = {.lex_state = 34, .external_lex_state = 2}, - [1007] = {.lex_state = 34, .external_lex_state = 2}, - [1008] = {.lex_state = 34, .external_lex_state = 2}, - [1009] = {.lex_state = 34, .external_lex_state = 2}, - [1010] = {.lex_state = 34, .external_lex_state = 2}, - [1011] = {.lex_state = 34, .external_lex_state = 2}, - [1012] = {.lex_state = 34, .external_lex_state = 2}, - [1013] = {.lex_state = 34, .external_lex_state = 2}, - [1014] = {.lex_state = 34, .external_lex_state = 2}, - [1015] = {.lex_state = 34, .external_lex_state = 2}, - [1016] = {.lex_state = 34, .external_lex_state = 2}, - [1017] = {.lex_state = 34, .external_lex_state = 2}, - [1018] = {.lex_state = 34, .external_lex_state = 2}, - [1019] = {.lex_state = 34, .external_lex_state = 2}, - [1020] = {.lex_state = 34, .external_lex_state = 2}, - [1021] = {.lex_state = 34, .external_lex_state = 2}, - [1022] = {.lex_state = 34, .external_lex_state = 2}, - [1023] = {.lex_state = 34, .external_lex_state = 2}, - [1024] = {.lex_state = 34, .external_lex_state = 2}, - [1025] = {.lex_state = 34, .external_lex_state = 2}, - [1026] = {.lex_state = 34, .external_lex_state = 2}, - [1027] = {.lex_state = 34, .external_lex_state = 2}, - [1028] = {.lex_state = 34, .external_lex_state = 2}, - [1029] = {.lex_state = 34, .external_lex_state = 2}, - [1030] = {.lex_state = 34, .external_lex_state = 2}, - [1031] = {.lex_state = 34, .external_lex_state = 2}, - [1032] = {.lex_state = 34, .external_lex_state = 2}, - [1033] = {.lex_state = 34, .external_lex_state = 2}, - [1034] = {.lex_state = 34, .external_lex_state = 2}, - [1035] = {.lex_state = 34, .external_lex_state = 2}, - [1036] = {.lex_state = 34, .external_lex_state = 2}, - [1037] = {.lex_state = 34, .external_lex_state = 2}, - [1038] = {.lex_state = 34, .external_lex_state = 2}, - [1039] = {.lex_state = 34, .external_lex_state = 2}, - [1040] = {.lex_state = 34, .external_lex_state = 2}, - [1041] = {.lex_state = 34, .external_lex_state = 2}, - [1042] = {.lex_state = 37, .external_lex_state = 2}, - [1043] = {.lex_state = 37, .external_lex_state = 2}, - [1044] = {.lex_state = 37, .external_lex_state = 2}, - [1045] = {.lex_state = 41, .external_lex_state = 2}, - [1046] = {.lex_state = 41, .external_lex_state = 2}, - [1047] = {.lex_state = 37, .external_lex_state = 2}, - [1048] = {.lex_state = 41, .external_lex_state = 2}, - [1049] = {.lex_state = 41, .external_lex_state = 2}, - [1050] = {.lex_state = 41, .external_lex_state = 2}, - [1051] = {.lex_state = 41, .external_lex_state = 2}, - [1052] = {.lex_state = 41, .external_lex_state = 2}, - [1053] = {.lex_state = 41, .external_lex_state = 2}, - [1054] = {.lex_state = 213, .external_lex_state = 2}, - [1055] = {.lex_state = 213, .external_lex_state = 2}, - [1056] = {.lex_state = 213, .external_lex_state = 2}, - [1057] = {.lex_state = 213, .external_lex_state = 2}, - [1058] = {.lex_state = 213, .external_lex_state = 2}, - [1059] = {.lex_state = 213, .external_lex_state = 2}, - [1060] = {.lex_state = 37, .external_lex_state = 2}, - [1061] = {.lex_state = 37, .external_lex_state = 2}, - [1062] = {.lex_state = 31, .external_lex_state = 2}, - [1063] = {.lex_state = 31, .external_lex_state = 2}, - [1064] = {.lex_state = 209, .external_lex_state = 2}, - [1065] = {.lex_state = 41, .external_lex_state = 2}, - [1066] = {.lex_state = 41, .external_lex_state = 2}, - [1067] = {.lex_state = 41, .external_lex_state = 2}, - [1068] = {.lex_state = 41, .external_lex_state = 2}, - [1069] = {.lex_state = 41, .external_lex_state = 2}, - [1070] = {.lex_state = 41, .external_lex_state = 2}, - [1071] = {.lex_state = 41, .external_lex_state = 2}, - [1072] = {.lex_state = 41, .external_lex_state = 2}, - [1073] = {.lex_state = 41, .external_lex_state = 2}, - [1074] = {.lex_state = 209, .external_lex_state = 2}, - [1075] = {.lex_state = 201, .external_lex_state = 2}, - [1076] = {.lex_state = 31, .external_lex_state = 2}, - [1077] = {.lex_state = 31, .external_lex_state = 2}, - [1078] = {.lex_state = 201, .external_lex_state = 2}, - [1079] = {.lex_state = 33, .external_lex_state = 2}, - [1080] = {.lex_state = 35, .external_lex_state = 2}, - [1081] = {.lex_state = 31, .external_lex_state = 2}, - [1082] = {.lex_state = 35, .external_lex_state = 2}, - [1083] = {.lex_state = 933, .external_lex_state = 2}, - [1084] = {.lex_state = 947, .external_lex_state = 2}, - [1085] = {.lex_state = 932, .external_lex_state = 2}, - [1086] = {.lex_state = 31, .external_lex_state = 2}, - [1087] = {.lex_state = 943, .external_lex_state = 2}, - [1088] = {.lex_state = 934, .external_lex_state = 2}, - [1089] = {.lex_state = 933, .external_lex_state = 2}, - [1090] = {.lex_state = 33, .external_lex_state = 2}, - [1091] = {.lex_state = 932, .external_lex_state = 2}, - [1092] = {.lex_state = 102}, - [1093] = {.lex_state = 121}, - [1094] = {.lex_state = 35, .external_lex_state = 2}, - [1095] = {.lex_state = 102}, - [1096] = {.lex_state = 102}, - [1097] = {.lex_state = 35, .external_lex_state = 2}, - [1098] = {.lex_state = 35, .external_lex_state = 2}, - [1099] = {.lex_state = 936, .external_lex_state = 2}, - [1100] = {.lex_state = 974, .external_lex_state = 2}, - [1101] = {.lex_state = 946, .external_lex_state = 2}, - [1102] = {.lex_state = 37, .external_lex_state = 2}, - [1103] = {.lex_state = 970, .external_lex_state = 2}, - [1104] = {.lex_state = 936, .external_lex_state = 2}, - [1105] = {.lex_state = 35, .external_lex_state = 2}, - [1106] = {.lex_state = 35, .external_lex_state = 2}, - [1107] = {.lex_state = 35, .external_lex_state = 2}, - [1108] = {.lex_state = 990}, - [1109] = {.lex_state = 35, .external_lex_state = 2}, - [1110] = {.lex_state = 35, .external_lex_state = 2}, - [1111] = {.lex_state = 35, .external_lex_state = 2}, - [1112] = {.lex_state = 35, .external_lex_state = 2}, - [1113] = {.lex_state = 35, .external_lex_state = 2}, - [1114] = {.lex_state = 932, .external_lex_state = 2}, - [1115] = {.lex_state = 35, .external_lex_state = 2}, - [1116] = {.lex_state = 35, .external_lex_state = 2}, - [1117] = {.lex_state = 35, .external_lex_state = 2}, - [1118] = {.lex_state = 35, .external_lex_state = 2}, - [1119] = {.lex_state = 35, .external_lex_state = 2}, - [1120] = {.lex_state = 35, .external_lex_state = 2}, - [1121] = {.lex_state = 35, .external_lex_state = 2}, - [1122] = {.lex_state = 35, .external_lex_state = 2}, - [1123] = {.lex_state = 35, .external_lex_state = 2}, - [1124] = {.lex_state = 934, .external_lex_state = 2}, - [1125] = {.lex_state = 35, .external_lex_state = 2}, - [1126] = {.lex_state = 35, .external_lex_state = 2}, - [1127] = {.lex_state = 35, .external_lex_state = 2}, - [1128] = {.lex_state = 35, .external_lex_state = 2}, - [1129] = {.lex_state = 35, .external_lex_state = 2}, - [1130] = {.lex_state = 35, .external_lex_state = 2}, - [1131] = {.lex_state = 35, .external_lex_state = 2}, - [1132] = {.lex_state = 35, .external_lex_state = 2}, - [1133] = {.lex_state = 35, .external_lex_state = 2}, - [1134] = {.lex_state = 35, .external_lex_state = 2}, - [1135] = {.lex_state = 35, .external_lex_state = 2}, - [1136] = {.lex_state = 35, .external_lex_state = 2}, - [1137] = {.lex_state = 35, .external_lex_state = 2}, - [1138] = {.lex_state = 35, .external_lex_state = 2}, - [1139] = {.lex_state = 35, .external_lex_state = 2}, - [1140] = {.lex_state = 35, .external_lex_state = 2}, - [1141] = {.lex_state = 35, .external_lex_state = 2}, - [1142] = {.lex_state = 35, .external_lex_state = 2}, - [1143] = {.lex_state = 946, .external_lex_state = 2}, - [1144] = {.lex_state = 35, .external_lex_state = 2}, - [1145] = {.lex_state = 35, .external_lex_state = 2}, - [1146] = {.lex_state = 35, .external_lex_state = 2}, - [1147] = {.lex_state = 35, .external_lex_state = 2}, - [1148] = {.lex_state = 37, .external_lex_state = 2}, - [1149] = {.lex_state = 35, .external_lex_state = 2}, - [1150] = {.lex_state = 35, .external_lex_state = 2}, - [1151] = {.lex_state = 35, .external_lex_state = 2}, - [1152] = {.lex_state = 35, .external_lex_state = 2}, - [1153] = {.lex_state = 35, .external_lex_state = 2}, - [1154] = {.lex_state = 35, .external_lex_state = 2}, - [1155] = {.lex_state = 35, .external_lex_state = 2}, - [1156] = {.lex_state = 35, .external_lex_state = 2}, - [1157] = {.lex_state = 35, .external_lex_state = 2}, - [1158] = {.lex_state = 35, .external_lex_state = 2}, - [1159] = {.lex_state = 35, .external_lex_state = 2}, - [1160] = {.lex_state = 946, .external_lex_state = 2}, - [1161] = {.lex_state = 932, .external_lex_state = 2}, - [1162] = {.lex_state = 946, .external_lex_state = 2}, - [1163] = {.lex_state = 943, .external_lex_state = 2}, - [1164] = {.lex_state = 35, .external_lex_state = 2}, - [1165] = {.lex_state = 937, .external_lex_state = 2}, - [1166] = {.lex_state = 947, .external_lex_state = 2}, - [1167] = {.lex_state = 35, .external_lex_state = 2}, - [1168] = {.lex_state = 35, .external_lex_state = 2}, - [1169] = {.lex_state = 35, .external_lex_state = 2}, - [1170] = {.lex_state = 35, .external_lex_state = 2}, - [1171] = {.lex_state = 102}, - [1172] = {.lex_state = 937, .external_lex_state = 2}, - [1173] = {.lex_state = 936, .external_lex_state = 2}, - [1174] = {.lex_state = 937, .external_lex_state = 2}, - [1175] = {.lex_state = 937, .external_lex_state = 2}, - [1176] = {.lex_state = 971, .external_lex_state = 2}, - [1177] = {.lex_state = 102}, - [1178] = {.lex_state = 965, .external_lex_state = 2}, - [1179] = {.lex_state = 944, .external_lex_state = 2}, - [1180] = {.lex_state = 974, .external_lex_state = 2}, - [1181] = {.lex_state = 970, .external_lex_state = 2}, - [1182] = {.lex_state = 936, .external_lex_state = 2}, - [1183] = {.lex_state = 965, .external_lex_state = 2}, - [1184] = {.lex_state = 965, .external_lex_state = 2}, - [1185] = {.lex_state = 937, .external_lex_state = 2}, - [1186] = {.lex_state = 937, .external_lex_state = 2}, - [1187] = {.lex_state = 935, .external_lex_state = 2}, - [1188] = {.lex_state = 102}, - [1189] = {.lex_state = 102}, - [1190] = {.lex_state = 102}, - [1191] = {.lex_state = 102}, - [1192] = {.lex_state = 121}, - [1193] = {.lex_state = 990}, - [1194] = {.lex_state = 990}, - [1195] = {.lex_state = 121}, - [1196] = {.lex_state = 971, .external_lex_state = 2}, - [1197] = {.lex_state = 946, .external_lex_state = 2}, - [1198] = {.lex_state = 37, .external_lex_state = 2}, - [1199] = {.lex_state = 946, .external_lex_state = 2}, - [1200] = {.lex_state = 946, .external_lex_state = 2}, - [1201] = {.lex_state = 946, .external_lex_state = 2}, - [1202] = {.lex_state = 990}, - [1203] = {.lex_state = 965, .external_lex_state = 2}, - [1204] = {.lex_state = 121}, - [1205] = {.lex_state = 121}, - [1206] = {.lex_state = 35, .external_lex_state = 2}, - [1207] = {.lex_state = 102}, - [1208] = {.lex_state = 965, .external_lex_state = 2}, - [1209] = {.lex_state = 937, .external_lex_state = 2}, - [1210] = {.lex_state = 121}, - [1211] = {.lex_state = 965, .external_lex_state = 2}, - [1212] = {.lex_state = 937, .external_lex_state = 2}, - [1213] = {.lex_state = 938, .external_lex_state = 2}, - [1214] = {.lex_state = 972, .external_lex_state = 2}, - [1215] = {.lex_state = 972, .external_lex_state = 2}, - [1216] = {.lex_state = 102}, - [1217] = {.lex_state = 990}, - [1218] = {.lex_state = 990}, - [1219] = {.lex_state = 121}, - [1220] = {.lex_state = 972, .external_lex_state = 2}, - [1221] = {.lex_state = 971, .external_lex_state = 2}, - [1222] = {.lex_state = 121}, - [1223] = {.lex_state = 965, .external_lex_state = 2}, - [1224] = {.lex_state = 990}, - [1225] = {.lex_state = 990}, - [1226] = {.lex_state = 937, .external_lex_state = 2}, - [1227] = {.lex_state = 121}, - [1228] = {.lex_state = 938, .external_lex_state = 2}, - [1229] = {.lex_state = 990}, - [1230] = {.lex_state = 990}, - [1231] = {.lex_state = 944, .external_lex_state = 2}, - [1232] = {.lex_state = 965, .external_lex_state = 2}, - [1233] = {.lex_state = 102}, - [1234] = {.lex_state = 971, .external_lex_state = 2}, - [1235] = {.lex_state = 935, .external_lex_state = 2}, - [1236] = {.lex_state = 972, .external_lex_state = 2}, - [1237] = {.lex_state = 990}, - [1238] = {.lex_state = 972, .external_lex_state = 2}, - [1239] = {.lex_state = 990}, - [1240] = {.lex_state = 937, .external_lex_state = 2}, - [1241] = {.lex_state = 939, .external_lex_state = 2}, - [1242] = {.lex_state = 939, .external_lex_state = 2}, - [1243] = {.lex_state = 990}, - [1244] = {.lex_state = 990}, - [1245] = {.lex_state = 990}, - [1246] = {.lex_state = 972, .external_lex_state = 2}, - [1247] = {.lex_state = 990}, - [1248] = {.lex_state = 990}, - [1249] = {.lex_state = 990}, - [1250] = {.lex_state = 939, .external_lex_state = 2}, - [1251] = {.lex_state = 965, .external_lex_state = 2}, - [1252] = {.lex_state = 963, .external_lex_state = 2}, - [1253] = {.lex_state = 963, .external_lex_state = 2}, - [1254] = {.lex_state = 963, .external_lex_state = 2}, - [1255] = {.lex_state = 939, .external_lex_state = 2}, - [1256] = {.lex_state = 972, .external_lex_state = 2}, - [1257] = {.lex_state = 972, .external_lex_state = 2}, - [1258] = {.lex_state = 121}, - [1259] = {.lex_state = 121}, - [1260] = {.lex_state = 938, .external_lex_state = 2}, - [1261] = {.lex_state = 938, .external_lex_state = 2}, - [1262] = {.lex_state = 972, .external_lex_state = 2}, - [1263] = {.lex_state = 990}, - [1264] = {.lex_state = 963, .external_lex_state = 2}, - [1265] = {.lex_state = 964, .external_lex_state = 2}, - [1266] = {.lex_state = 990}, - [1267] = {.lex_state = 939, .external_lex_state = 2}, - [1268] = {.lex_state = 121}, - [1269] = {.lex_state = 972, .external_lex_state = 2}, - [1270] = {.lex_state = 963, .external_lex_state = 2}, - [1271] = {.lex_state = 939, .external_lex_state = 2}, - [1272] = {.lex_state = 963, .external_lex_state = 2}, - [1273] = {.lex_state = 990}, - [1274] = {.lex_state = 965, .external_lex_state = 2}, - [1275] = {.lex_state = 102}, - [1276] = {.lex_state = 962, .external_lex_state = 2}, - [1277] = {.lex_state = 963, .external_lex_state = 2}, - [1278] = {.lex_state = 963, .external_lex_state = 2}, - [1279] = {.lex_state = 939, .external_lex_state = 2}, - [1280] = {.lex_state = 939, .external_lex_state = 2}, - [1281] = {.lex_state = 940, .external_lex_state = 2}, - [1282] = {.lex_state = 993}, - [1283] = {.lex_state = 999}, - [1284] = {.lex_state = 939, .external_lex_state = 2}, - [1285] = {.lex_state = 963, .external_lex_state = 2}, - [1286] = {.lex_state = 963, .external_lex_state = 2}, - [1287] = {.lex_state = 963, .external_lex_state = 2}, - [1288] = {.lex_state = 965, .external_lex_state = 2}, - [1289] = {.lex_state = 965, .external_lex_state = 2}, - [1290] = {.lex_state = 965, .external_lex_state = 2}, - [1291] = {.lex_state = 945, .external_lex_state = 2}, - [1292] = {.lex_state = 939, .external_lex_state = 2}, - [1293] = {.lex_state = 960, .external_lex_state = 2}, - [1294] = {.lex_state = 990}, - [1295] = {.lex_state = 960, .external_lex_state = 2}, - [1296] = {.lex_state = 990}, - [1297] = {.lex_state = 968, .external_lex_state = 2}, - [1298] = {.lex_state = 968, .external_lex_state = 2}, - [1299] = {.lex_state = 990}, - [1300] = {.lex_state = 939, .external_lex_state = 2}, - [1301] = {.lex_state = 963, .external_lex_state = 2}, - [1302] = {.lex_state = 968, .external_lex_state = 2}, - [1303] = {.lex_state = 968, .external_lex_state = 2}, - [1304] = {.lex_state = 968, .external_lex_state = 2}, - [1305] = {.lex_state = 968, .external_lex_state = 2}, - [1306] = {.lex_state = 968, .external_lex_state = 2}, - [1307] = {.lex_state = 968, .external_lex_state = 2}, - [1308] = {.lex_state = 968, .external_lex_state = 2}, - [1309] = {.lex_state = 968, .external_lex_state = 2}, - [1310] = {.lex_state = 968, .external_lex_state = 2}, - [1311] = {.lex_state = 968, .external_lex_state = 2}, - [1312] = {.lex_state = 968, .external_lex_state = 2}, - [1313] = {.lex_state = 968, .external_lex_state = 2}, - [1314] = {.lex_state = 968, .external_lex_state = 2}, - [1315] = {.lex_state = 939, .external_lex_state = 2}, - [1316] = {.lex_state = 968, .external_lex_state = 2}, - [1317] = {.lex_state = 968, .external_lex_state = 2}, - [1318] = {.lex_state = 968, .external_lex_state = 2}, - [1319] = {.lex_state = 968, .external_lex_state = 2}, - [1320] = {.lex_state = 990}, - [1321] = {.lex_state = 968, .external_lex_state = 2}, - [1322] = {.lex_state = 968, .external_lex_state = 2}, - [1323] = {.lex_state = 102}, - [1324] = {.lex_state = 990}, - [1325] = {.lex_state = 990}, - [1326] = {.lex_state = 121}, - [1327] = {.lex_state = 962, .external_lex_state = 2}, - [1328] = {.lex_state = 105}, - [1329] = {.lex_state = 106}, - [1330] = {.lex_state = 968, .external_lex_state = 2}, - [1331] = {.lex_state = 964, .external_lex_state = 2}, - [1332] = {.lex_state = 968, .external_lex_state = 2}, - [1333] = {.lex_state = 968, .external_lex_state = 2}, - [1334] = {.lex_state = 968, .external_lex_state = 2}, - [1335] = {.lex_state = 1033}, - [1336] = {.lex_state = 961, .external_lex_state = 2}, - [1337] = {.lex_state = 1035}, - [1338] = {.lex_state = 961, .external_lex_state = 2}, - [1339] = {.lex_state = 968, .external_lex_state = 2}, - [1340] = {.lex_state = 968, .external_lex_state = 2}, - [1341] = {.lex_state = 961, .external_lex_state = 2}, - [1342] = {.lex_state = 968, .external_lex_state = 2}, - [1343] = {.lex_state = 961, .external_lex_state = 2}, - [1344] = {.lex_state = 961, .external_lex_state = 2}, - [1345] = {.lex_state = 940, .external_lex_state = 2}, - [1346] = {.lex_state = 961, .external_lex_state = 2}, - [1347] = {.lex_state = 968, .external_lex_state = 2}, - [1348] = {.lex_state = 965, .external_lex_state = 2}, - [1349] = {.lex_state = 961, .external_lex_state = 2}, - [1350] = {.lex_state = 961, .external_lex_state = 2}, - [1351] = {.lex_state = 961, .external_lex_state = 2}, - [1352] = {.lex_state = 961, .external_lex_state = 2}, - [1353] = {.lex_state = 941, .external_lex_state = 2}, - [1354] = {.lex_state = 965, .external_lex_state = 2}, - [1355] = {.lex_state = 941, .external_lex_state = 2}, - [1356] = {.lex_state = 968, .external_lex_state = 2}, - [1357] = {.lex_state = 1003}, - [1358] = {.lex_state = 968, .external_lex_state = 2}, - [1359] = {.lex_state = 968, .external_lex_state = 2}, - [1360] = {.lex_state = 1003}, - [1361] = {.lex_state = 121}, - [1362] = {.lex_state = 993}, - [1363] = {.lex_state = 1007}, - [1364] = {.lex_state = 990}, - [1365] = {.lex_state = 968, .external_lex_state = 2}, - [1366] = {.lex_state = 999}, - [1367] = {.lex_state = 968, .external_lex_state = 2}, - [1368] = {.lex_state = 961, .external_lex_state = 2}, - [1369] = {.lex_state = 965, .external_lex_state = 2}, - [1370] = {.lex_state = 968, .external_lex_state = 2}, - [1371] = {.lex_state = 961, .external_lex_state = 2}, - [1372] = {.lex_state = 102}, - [1373] = {.lex_state = 137}, - [1374] = {.lex_state = 945, .external_lex_state = 2}, - [1375] = {.lex_state = 961, .external_lex_state = 2}, - [1376] = {.lex_state = 968, .external_lex_state = 2}, - [1377] = {.lex_state = 102}, - [1378] = {.lex_state = 968, .external_lex_state = 2}, - [1379] = {.lex_state = 961, .external_lex_state = 2}, - [1380] = {.lex_state = 960, .external_lex_state = 2}, - [1381] = {.lex_state = 968, .external_lex_state = 2}, - [1382] = {.lex_state = 960, .external_lex_state = 2}, - [1383] = {.lex_state = 122}, - [1384] = {.lex_state = 124}, - [1385] = {.lex_state = 107}, - [1386] = {.lex_state = 961, .external_lex_state = 2}, - [1387] = {.lex_state = 968, .external_lex_state = 2}, - [1388] = {.lex_state = 968, .external_lex_state = 2}, - [1389] = {.lex_state = 968, .external_lex_state = 2}, - [1390] = {.lex_state = 107}, - [1391] = {.lex_state = 968, .external_lex_state = 2}, - [1392] = {.lex_state = 968, .external_lex_state = 2}, - [1393] = {.lex_state = 968, .external_lex_state = 2}, - [1394] = {.lex_state = 968, .external_lex_state = 2}, - [1395] = {.lex_state = 968, .external_lex_state = 2}, - [1396] = {.lex_state = 968, .external_lex_state = 2}, - [1397] = {.lex_state = 968, .external_lex_state = 2}, - [1398] = {.lex_state = 135}, - [1399] = {.lex_state = 103}, - [1400] = {.lex_state = 931, .external_lex_state = 2}, - [1401] = {.lex_state = 961, .external_lex_state = 2}, - [1402] = {.lex_state = 931, .external_lex_state = 2}, - [1403] = {.lex_state = 1003}, - [1404] = {.lex_state = 990}, - [1405] = {.lex_state = 139}, - [1406] = {.lex_state = 959, .external_lex_state = 2}, - [1407] = {.lex_state = 961, .external_lex_state = 2}, - [1408] = {.lex_state = 931, .external_lex_state = 2}, - [1409] = {.lex_state = 942, .external_lex_state = 2}, - [1410] = {.lex_state = 961, .external_lex_state = 2}, - [1411] = {.lex_state = 1037}, - [1412] = {.lex_state = 980, .external_lex_state = 2}, - [1413] = {.lex_state = 941, .external_lex_state = 2}, - [1414] = {.lex_state = 961, .external_lex_state = 2}, - [1415] = {.lex_state = 942, .external_lex_state = 2}, - [1416] = {.lex_state = 961, .external_lex_state = 2}, - [1417] = {.lex_state = 128}, - [1418] = {.lex_state = 931, .external_lex_state = 2}, - [1419] = {.lex_state = 931, .external_lex_state = 2}, - [1420] = {.lex_state = 967, .external_lex_state = 2}, - [1421] = {.lex_state = 942, .external_lex_state = 2}, - [1422] = {.lex_state = 961, .external_lex_state = 2}, - [1423] = {.lex_state = 139}, - [1424] = {.lex_state = 942, .external_lex_state = 2}, - [1425] = {.lex_state = 961, .external_lex_state = 2}, - [1426] = {.lex_state = 103}, - [1427] = {.lex_state = 961, .external_lex_state = 2}, - [1428] = {.lex_state = 961, .external_lex_state = 2}, - [1429] = {.lex_state = 980, .external_lex_state = 2}, - [1430] = {.lex_state = 1007}, - [1431] = {.lex_state = 961, .external_lex_state = 2}, - [1432] = {.lex_state = 202, .external_lex_state = 2}, - [1433] = {.lex_state = 961, .external_lex_state = 2}, - [1434] = {.lex_state = 968, .external_lex_state = 2}, - [1435] = {.lex_state = 980, .external_lex_state = 2}, - [1436] = {.lex_state = 980, .external_lex_state = 2}, - [1437] = {.lex_state = 1007}, - [1438] = {.lex_state = 961, .external_lex_state = 2}, - [1439] = {.lex_state = 968, .external_lex_state = 2}, - [1440] = {.lex_state = 966, .external_lex_state = 2}, - [1441] = {.lex_state = 961, .external_lex_state = 2}, - [1442] = {.lex_state = 961, .external_lex_state = 2}, - [1443] = {.lex_state = 966, .external_lex_state = 2}, - [1444] = {.lex_state = 126}, - [1445] = {.lex_state = 1007}, - [1446] = {.lex_state = 126}, - [1447] = {.lex_state = 966, .external_lex_state = 2}, - [1448] = {.lex_state = 108}, - [1449] = {.lex_state = 979, .external_lex_state = 2}, - [1450] = {.lex_state = 1033}, - [1451] = {.lex_state = 961, .external_lex_state = 2}, - [1452] = {.lex_state = 1035}, - [1453] = {.lex_state = 979, .external_lex_state = 2}, - [1454] = {.lex_state = 1007}, - [1455] = {.lex_state = 961, .external_lex_state = 2}, - [1456] = {.lex_state = 108}, - [1457] = {.lex_state = 942, .external_lex_state = 2}, - [1458] = {.lex_state = 1007}, - [1459] = {.lex_state = 1037}, - [1460] = {.lex_state = 108}, - [1461] = {.lex_state = 942, .external_lex_state = 2}, - [1462] = {.lex_state = 942, .external_lex_state = 2}, - [1463] = {.lex_state = 202, .external_lex_state = 2}, - [1464] = {.lex_state = 961, .external_lex_state = 2}, - [1465] = {.lex_state = 966, .external_lex_state = 2}, - [1466] = {.lex_state = 966, .external_lex_state = 2}, - [1467] = {.lex_state = 108}, - [1468] = {.lex_state = 942, .external_lex_state = 2}, - [1469] = {.lex_state = 969, .external_lex_state = 2}, - [1470] = {.lex_state = 1003}, - [1471] = {.lex_state = 121}, - [1472] = {.lex_state = 121}, - [1473] = {.lex_state = 942, .external_lex_state = 2}, - [1474] = {.lex_state = 966, .external_lex_state = 2}, - [1475] = {.lex_state = 979, .external_lex_state = 2}, - [1476] = {.lex_state = 953, .external_lex_state = 2}, - [1477] = {.lex_state = 980, .external_lex_state = 2}, - [1478] = {.lex_state = 941, .external_lex_state = 2}, - [1479] = {.lex_state = 990}, - [1480] = {.lex_state = 202, .external_lex_state = 2}, - [1481] = {.lex_state = 1007}, - [1482] = {.lex_state = 981, .external_lex_state = 2}, - [1483] = {.lex_state = 942, .external_lex_state = 2}, - [1484] = {.lex_state = 981, .external_lex_state = 2}, - [1485] = {.lex_state = 942, .external_lex_state = 2}, - [1486] = {.lex_state = 968, .external_lex_state = 2}, - [1487] = {.lex_state = 968, .external_lex_state = 2}, - [1488] = {.lex_state = 990}, - [1489] = {.lex_state = 954, .external_lex_state = 2}, - [1490] = {.lex_state = 931, .external_lex_state = 2}, - [1491] = {.lex_state = 931, .external_lex_state = 2}, - [1492] = {.lex_state = 931, .external_lex_state = 2}, - [1493] = {.lex_state = 956, .external_lex_state = 2}, - [1494] = {.lex_state = 931, .external_lex_state = 2}, - [1495] = {.lex_state = 973, .external_lex_state = 2}, - [1496] = {.lex_state = 973, .external_lex_state = 2}, - [1497] = {.lex_state = 942, .external_lex_state = 2}, - [1498] = {.lex_state = 1007}, - [1499] = {.lex_state = 956, .external_lex_state = 2}, - [1500] = {.lex_state = 1007}, - [1501] = {.lex_state = 1039}, - [1502] = {.lex_state = 141}, - [1503] = {.lex_state = 991}, - [1504] = {.lex_state = 991}, - [1505] = {.lex_state = 979, .external_lex_state = 2}, - [1506] = {.lex_state = 1007}, - [1507] = {.lex_state = 942, .external_lex_state = 2}, - [1508] = {.lex_state = 1039}, - [1509] = {.lex_state = 981, .external_lex_state = 2}, - [1510] = {.lex_state = 141}, - [1511] = {.lex_state = 979, .external_lex_state = 2}, - [1512] = {.lex_state = 990}, - [1513] = {.lex_state = 942, .external_lex_state = 2}, - [1514] = {.lex_state = 981, .external_lex_state = 2}, - [1515] = {.lex_state = 141}, - [1516] = {.lex_state = 942, .external_lex_state = 2}, - [1517] = {.lex_state = 207, .external_lex_state = 2}, - [1518] = {.lex_state = 942, .external_lex_state = 2}, - [1519] = {.lex_state = 931, .external_lex_state = 2}, - [1520] = {.lex_state = 141}, - [1521] = {.lex_state = 954, .external_lex_state = 2}, - [1522] = {.lex_state = 931, .external_lex_state = 2}, - [1523] = {.lex_state = 957, .external_lex_state = 2}, - [1524] = {.lex_state = 966, .external_lex_state = 2}, - [1525] = {.lex_state = 966, .external_lex_state = 2}, - [1526] = {.lex_state = 207, .external_lex_state = 2}, - [1527] = {.lex_state = 128}, - [1528] = {.lex_state = 942, .external_lex_state = 2}, - [1529] = {.lex_state = 207, .external_lex_state = 2}, - [1530] = {.lex_state = 128}, - [1531] = {.lex_state = 959, .external_lex_state = 2}, - [1532] = {.lex_state = 128}, - [1533] = {.lex_state = 981, .external_lex_state = 2}, - [1534] = {.lex_state = 128}, - [1535] = {.lex_state = 979, .external_lex_state = 2}, - [1536] = {.lex_state = 980, .external_lex_state = 2}, - [1537] = {.lex_state = 980, .external_lex_state = 2}, - [1538] = {.lex_state = 968, .external_lex_state = 2}, - [1539] = {.lex_state = 931, .external_lex_state = 2}, - [1540] = {.lex_state = 104}, - [1541] = {.lex_state = 953, .external_lex_state = 2}, - [1542] = {.lex_state = 969, .external_lex_state = 2}, - [1543] = {.lex_state = 1039}, - [1544] = {.lex_state = 104}, - [1545] = {.lex_state = 104}, - [1546] = {.lex_state = 980, .external_lex_state = 2}, - [1547] = {.lex_state = 942, .external_lex_state = 2}, - [1548] = {.lex_state = 991}, - [1549] = {.lex_state = 104}, - [1550] = {.lex_state = 980, .external_lex_state = 2}, - [1551] = {.lex_state = 980, .external_lex_state = 2}, - [1552] = {.lex_state = 966, .external_lex_state = 2}, - [1553] = {.lex_state = 1037}, - [1554] = {.lex_state = 991}, - [1555] = {.lex_state = 931, .external_lex_state = 2}, - [1556] = {.lex_state = 991}, - [1557] = {.lex_state = 966, .external_lex_state = 2}, - [1558] = {.lex_state = 966, .external_lex_state = 2}, - [1559] = {.lex_state = 966, .external_lex_state = 2}, - [1560] = {.lex_state = 931, .external_lex_state = 2}, - [1561] = {.lex_state = 207, .external_lex_state = 2}, - [1562] = {.lex_state = 1037}, - [1563] = {.lex_state = 207, .external_lex_state = 2}, - [1564] = {.lex_state = 207, .external_lex_state = 2}, - [1565] = {.lex_state = 991}, - [1566] = {.lex_state = 207, .external_lex_state = 2}, - [1567] = {.lex_state = 991}, - [1568] = {.lex_state = 991}, - [1569] = {.lex_state = 1039}, - [1570] = {.lex_state = 991}, - [1571] = {.lex_state = 991}, - [1572] = {.lex_state = 991}, - [1573] = {.lex_state = 991}, - [1574] = {.lex_state = 991}, - [1575] = {.lex_state = 991}, - [1576] = {.lex_state = 991}, - [1577] = {.lex_state = 991}, - [1578] = {.lex_state = 991}, - [1579] = {.lex_state = 967, .external_lex_state = 2}, - [1580] = {.lex_state = 1039}, - [1581] = {.lex_state = 991}, - [1582] = {.lex_state = 991}, - [1583] = {.lex_state = 207, .external_lex_state = 2}, - [1584] = {.lex_state = 108}, - [1585] = {.lex_state = 1039}, - [1586] = {.lex_state = 958, .external_lex_state = 2}, - [1587] = {.lex_state = 958, .external_lex_state = 2}, - [1588] = {.lex_state = 958, .external_lex_state = 2}, - [1589] = {.lex_state = 968, .external_lex_state = 2}, - [1590] = {.lex_state = 958, .external_lex_state = 2}, - [1591] = {.lex_state = 958, .external_lex_state = 2}, - [1592] = {.lex_state = 981, .external_lex_state = 2}, - [1593] = {.lex_state = 958, .external_lex_state = 2}, - [1594] = {.lex_state = 958, .external_lex_state = 2}, - [1595] = {.lex_state = 958, .external_lex_state = 2}, - [1596] = {.lex_state = 958, .external_lex_state = 2}, - [1597] = {.lex_state = 958, .external_lex_state = 2}, - [1598] = {.lex_state = 958, .external_lex_state = 2}, - [1599] = {.lex_state = 958, .external_lex_state = 2}, - [1600] = {.lex_state = 958, .external_lex_state = 2}, - [1601] = {.lex_state = 958, .external_lex_state = 2}, - [1602] = {.lex_state = 968, .external_lex_state = 2}, - [1603] = {.lex_state = 968, .external_lex_state = 2}, - [1604] = {.lex_state = 958, .external_lex_state = 2}, - [1605] = {.lex_state = 981, .external_lex_state = 2}, - [1606] = {.lex_state = 958, .external_lex_state = 2}, - [1607] = {.lex_state = 958, .external_lex_state = 2}, - [1608] = {.lex_state = 991}, - [1609] = {.lex_state = 957, .external_lex_state = 2}, - [1610] = {.lex_state = 956, .external_lex_state = 2}, - [1611] = {.lex_state = 958, .external_lex_state = 2}, - [1612] = {.lex_state = 958, .external_lex_state = 2}, - [1613] = {.lex_state = 991}, - [1614] = {.lex_state = 958, .external_lex_state = 2}, - [1615] = {.lex_state = 958, .external_lex_state = 2}, - [1616] = {.lex_state = 958, .external_lex_state = 2}, - [1617] = {.lex_state = 956, .external_lex_state = 2}, - [1618] = {.lex_state = 958, .external_lex_state = 2}, - [1619] = {.lex_state = 958, .external_lex_state = 2}, - [1620] = {.lex_state = 981, .external_lex_state = 2}, - [1621] = {.lex_state = 931, .external_lex_state = 2}, - [1622] = {.lex_state = 958, .external_lex_state = 2}, - [1623] = {.lex_state = 958, .external_lex_state = 2}, - [1624] = {.lex_state = 958, .external_lex_state = 2}, - [1625] = {.lex_state = 991}, - [1626] = {.lex_state = 991}, - [1627] = {.lex_state = 958, .external_lex_state = 2}, - [1628] = {.lex_state = 958, .external_lex_state = 2}, - [1629] = {.lex_state = 958, .external_lex_state = 2}, - [1630] = {.lex_state = 958, .external_lex_state = 2}, - [1631] = {.lex_state = 958, .external_lex_state = 2}, - [1632] = {.lex_state = 1039}, - [1633] = {.lex_state = 1039}, - [1634] = {.lex_state = 958, .external_lex_state = 2}, - [1635] = {.lex_state = 120}, - [1636] = {.lex_state = 958, .external_lex_state = 2}, - [1637] = {.lex_state = 958, .external_lex_state = 2}, - [1638] = {.lex_state = 958, .external_lex_state = 2}, - [1639] = {.lex_state = 958, .external_lex_state = 2}, - [1640] = {.lex_state = 958, .external_lex_state = 2}, - [1641] = {.lex_state = 958, .external_lex_state = 2}, - [1642] = {.lex_state = 958, .external_lex_state = 2}, - [1643] = {.lex_state = 958, .external_lex_state = 2}, - [1644] = {.lex_state = 958, .external_lex_state = 2}, - [1645] = {.lex_state = 958, .external_lex_state = 2}, - [1646] = {.lex_state = 958, .external_lex_state = 2}, - [1647] = {.lex_state = 958, .external_lex_state = 2}, - [1648] = {.lex_state = 958, .external_lex_state = 2}, - [1649] = {.lex_state = 1039}, - [1650] = {.lex_state = 958, .external_lex_state = 2}, - [1651] = {.lex_state = 958, .external_lex_state = 2}, - [1652] = {.lex_state = 954, .external_lex_state = 2}, - [1653] = {.lex_state = 958, .external_lex_state = 2}, - [1654] = {.lex_state = 958, .external_lex_state = 2}, - [1655] = {.lex_state = 958, .external_lex_state = 2}, - [1656] = {.lex_state = 958, .external_lex_state = 2}, - [1657] = {.lex_state = 958, .external_lex_state = 2}, - [1658] = {.lex_state = 958, .external_lex_state = 2}, - [1659] = {.lex_state = 954, .external_lex_state = 2}, - [1660] = {.lex_state = 931, .external_lex_state = 2}, - [1661] = {.lex_state = 958, .external_lex_state = 2}, - [1662] = {.lex_state = 958, .external_lex_state = 2}, - [1663] = {.lex_state = 958, .external_lex_state = 2}, - [1664] = {.lex_state = 981, .external_lex_state = 2}, - [1665] = {.lex_state = 1039}, - [1666] = {.lex_state = 958, .external_lex_state = 2}, - [1667] = {.lex_state = 958, .external_lex_state = 2}, - [1668] = {.lex_state = 958, .external_lex_state = 2}, - [1669] = {.lex_state = 958, .external_lex_state = 2}, - [1670] = {.lex_state = 973, .external_lex_state = 2}, - [1671] = {.lex_state = 958, .external_lex_state = 2}, - [1672] = {.lex_state = 958, .external_lex_state = 2}, - [1673] = {.lex_state = 958, .external_lex_state = 2}, - [1674] = {.lex_state = 141}, - [1675] = {.lex_state = 958, .external_lex_state = 2}, - [1676] = {.lex_state = 991}, - [1677] = {.lex_state = 981, .external_lex_state = 2}, - [1678] = {.lex_state = 958, .external_lex_state = 2}, - [1679] = {.lex_state = 958, .external_lex_state = 2}, - [1680] = {.lex_state = 958, .external_lex_state = 2}, - [1681] = {.lex_state = 120}, - [1682] = {.lex_state = 958, .external_lex_state = 2}, - [1683] = {.lex_state = 958, .external_lex_state = 2}, - [1684] = {.lex_state = 958, .external_lex_state = 2}, - [1685] = {.lex_state = 958, .external_lex_state = 2}, - [1686] = {.lex_state = 958, .external_lex_state = 2}, - [1687] = {.lex_state = 958, .external_lex_state = 2}, - [1688] = {.lex_state = 958, .external_lex_state = 2}, - [1689] = {.lex_state = 958, .external_lex_state = 2}, - [1690] = {.lex_state = 973, .external_lex_state = 2}, - [1691] = {.lex_state = 958, .external_lex_state = 2}, - [1692] = {.lex_state = 958, .external_lex_state = 2}, - [1693] = {.lex_state = 991}, - [1694] = {.lex_state = 958, .external_lex_state = 2}, - [1695] = {.lex_state = 958, .external_lex_state = 2}, - [1696] = {.lex_state = 958, .external_lex_state = 2}, - [1697] = {.lex_state = 143}, - [1698] = {.lex_state = 958, .external_lex_state = 2}, - [1699] = {.lex_state = 958, .external_lex_state = 2}, - [1700] = {.lex_state = 143}, - [1701] = {.lex_state = 991}, - [1702] = {.lex_state = 991}, - [1703] = {.lex_state = 958, .external_lex_state = 2}, - [1704] = {.lex_state = 958, .external_lex_state = 2}, - [1705] = {.lex_state = 143}, - [1706] = {.lex_state = 958, .external_lex_state = 2}, - [1707] = {.lex_state = 991}, - [1708] = {.lex_state = 958, .external_lex_state = 2}, - [1709] = {.lex_state = 991}, - [1710] = {.lex_state = 991}, - [1711] = {.lex_state = 958, .external_lex_state = 2}, - [1712] = {.lex_state = 958, .external_lex_state = 2}, - [1713] = {.lex_state = 991}, - [1714] = {.lex_state = 991}, - [1715] = {.lex_state = 991}, - [1716] = {.lex_state = 991}, - [1717] = {.lex_state = 991}, - [1718] = {.lex_state = 991}, - [1719] = {.lex_state = 991}, - [1720] = {.lex_state = 958, .external_lex_state = 2}, - [1721] = {.lex_state = 991}, - [1722] = {.lex_state = 143}, - [1723] = {.lex_state = 991}, - [1724] = {.lex_state = 991}, - [1725] = {.lex_state = 958, .external_lex_state = 2}, - [1726] = {.lex_state = 958, .external_lex_state = 2}, - [1727] = {.lex_state = 958, .external_lex_state = 2}, - [1728] = {.lex_state = 958, .external_lex_state = 2}, - [1729] = {.lex_state = 958, .external_lex_state = 2}, - [1730] = {.lex_state = 958, .external_lex_state = 2}, - [1731] = {.lex_state = 991}, - [1732] = {.lex_state = 991}, - [1733] = {.lex_state = 143}, - [1734] = {.lex_state = 958, .external_lex_state = 2}, - [1735] = {.lex_state = 991}, - [1736] = {.lex_state = 991}, - [1737] = {.lex_state = 958, .external_lex_state = 2}, - [1738] = {.lex_state = 991}, - [1739] = {.lex_state = 991}, - [1740] = {.lex_state = 991}, - [1741] = {.lex_state = 34, .external_lex_state = 2}, - [1742] = {.lex_state = 34, .external_lex_state = 2}, - [1743] = {.lex_state = 991}, - [1744] = {.lex_state = 958, .external_lex_state = 2}, - [1745] = {.lex_state = 991}, - [1746] = {.lex_state = 991}, - [1747] = {.lex_state = 958, .external_lex_state = 2}, - [1748] = {.lex_state = 958, .external_lex_state = 2}, - [1749] = {.lex_state = 958, .external_lex_state = 2}, - [1750] = {.lex_state = 958, .external_lex_state = 2}, - [1751] = {.lex_state = 958, .external_lex_state = 2}, - [1752] = {.lex_state = 958, .external_lex_state = 2}, - [1753] = {.lex_state = 958, .external_lex_state = 2}, - [1754] = {.lex_state = 958, .external_lex_state = 2}, - [1755] = {.lex_state = 958, .external_lex_state = 2}, - [1756] = {.lex_state = 991}, - [1757] = {.lex_state = 991}, - [1758] = {.lex_state = 958, .external_lex_state = 2}, - [1759] = {.lex_state = 958, .external_lex_state = 2}, - [1760] = {.lex_state = 958, .external_lex_state = 2}, - [1761] = {.lex_state = 958, .external_lex_state = 2}, - [1762] = {.lex_state = 958, .external_lex_state = 2}, - [1763] = {.lex_state = 958, .external_lex_state = 2}, - [1764] = {.lex_state = 958, .external_lex_state = 2}, - [1765] = {.lex_state = 991}, - [1766] = {.lex_state = 958, .external_lex_state = 2}, - [1767] = {.lex_state = 958, .external_lex_state = 2}, - [1768] = {.lex_state = 958, .external_lex_state = 2}, - [1769] = {.lex_state = 991}, - [1770] = {.lex_state = 958, .external_lex_state = 2}, - [1771] = {.lex_state = 958, .external_lex_state = 2}, - [1772] = {.lex_state = 958, .external_lex_state = 2}, - [1773] = {.lex_state = 958, .external_lex_state = 2}, - [1774] = {.lex_state = 958, .external_lex_state = 2}, - [1775] = {.lex_state = 958, .external_lex_state = 2}, - [1776] = {.lex_state = 958, .external_lex_state = 2}, - [1777] = {.lex_state = 991}, - [1778] = {.lex_state = 958, .external_lex_state = 2}, - [1779] = {.lex_state = 958, .external_lex_state = 2}, - [1780] = {.lex_state = 958, .external_lex_state = 2}, - [1781] = {.lex_state = 958, .external_lex_state = 2}, - [1782] = {.lex_state = 958, .external_lex_state = 2}, - [1783] = {.lex_state = 991}, - [1784] = {.lex_state = 143}, - [1785] = {.lex_state = 958, .external_lex_state = 2}, - [1786] = {.lex_state = 958, .external_lex_state = 2}, - [1787] = {.lex_state = 958, .external_lex_state = 2}, - [1788] = {.lex_state = 958, .external_lex_state = 2}, - [1789] = {.lex_state = 958, .external_lex_state = 2}, - [1790] = {.lex_state = 143}, - [1791] = {.lex_state = 991}, - [1792] = {.lex_state = 958, .external_lex_state = 2}, - [1793] = {.lex_state = 958, .external_lex_state = 2}, - [1794] = {.lex_state = 991}, - [1795] = {.lex_state = 958, .external_lex_state = 2}, - [1796] = {.lex_state = 958, .external_lex_state = 2}, - [1797] = {.lex_state = 958, .external_lex_state = 2}, - [1798] = {.lex_state = 991}, - [1799] = {.lex_state = 991}, - [1800] = {.lex_state = 958, .external_lex_state = 2}, - [1801] = {.lex_state = 991}, - [1802] = {.lex_state = 958, .external_lex_state = 2}, - [1803] = {.lex_state = 991}, - [1804] = {.lex_state = 991}, - [1805] = {.lex_state = 143}, - [1806] = {.lex_state = 958, .external_lex_state = 2}, - [1807] = {.lex_state = 958, .external_lex_state = 2}, - [1808] = {.lex_state = 991}, - [1809] = {.lex_state = 958, .external_lex_state = 2}, - [1810] = {.lex_state = 958, .external_lex_state = 2}, - [1811] = {.lex_state = 958, .external_lex_state = 2}, - [1812] = {.lex_state = 991}, - [1813] = {.lex_state = 143}, - [1814] = {.lex_state = 991}, - [1815] = {.lex_state = 958, .external_lex_state = 2}, - [1816] = {.lex_state = 958, .external_lex_state = 2}, - [1817] = {.lex_state = 143}, - [1818] = {.lex_state = 143}, - [1819] = {.lex_state = 958, .external_lex_state = 2}, - [1820] = {.lex_state = 143}, - [1821] = {.lex_state = 958, .external_lex_state = 2}, - [1822] = {.lex_state = 958, .external_lex_state = 2}, - [1823] = {.lex_state = 991}, - [1824] = {.lex_state = 958, .external_lex_state = 2}, - [1825] = {.lex_state = 958, .external_lex_state = 2}, - [1826] = {.lex_state = 958, .external_lex_state = 2}, - [1827] = {.lex_state = 991}, - [1828] = {.lex_state = 991}, - [1829] = {.lex_state = 958, .external_lex_state = 2}, - [1830] = {.lex_state = 958, .external_lex_state = 2}, - [1831] = {.lex_state = 143}, - [1832] = {.lex_state = 143}, - [1833] = {.lex_state = 958, .external_lex_state = 2}, - [1834] = {.lex_state = 958, .external_lex_state = 2}, - [1835] = {.lex_state = 958, .external_lex_state = 2}, - [1836] = {.lex_state = 143}, - [1837] = {.lex_state = 143}, - [1838] = {.lex_state = 143}, - [1839] = {.lex_state = 991}, - [1840] = {.lex_state = 143}, - [1841] = {.lex_state = 991}, - [1842] = {.lex_state = 991}, - [1843] = {.lex_state = 991}, - [1844] = {.lex_state = 958, .external_lex_state = 2}, - [1845] = {.lex_state = 991}, - [1846] = {.lex_state = 991}, - [1847] = {.lex_state = 991}, - [1848] = {.lex_state = 991}, - [1849] = {.lex_state = 991}, - [1850] = {.lex_state = 991}, - [1851] = {.lex_state = 991}, - [1852] = {.lex_state = 991}, - [1853] = {.lex_state = 991}, - [1854] = {.lex_state = 991}, - [1855] = {.lex_state = 991}, - [1856] = {.lex_state = 991}, - [1857] = {.lex_state = 991}, - [1858] = {.lex_state = 991}, - [1859] = {.lex_state = 991}, - [1860] = {.lex_state = 991}, - [1861] = {.lex_state = 991}, - [1862] = {.lex_state = 991}, - [1863] = {.lex_state = 991}, - [1864] = {.lex_state = 991}, - [1865] = {.lex_state = 991}, - [1866] = {.lex_state = 991}, - [1867] = {.lex_state = 143}, - [1868] = {.lex_state = 143}, - [1869] = {.lex_state = 143}, - [1870] = {.lex_state = 143}, - [1871] = {.lex_state = 143}, - [1872] = {.lex_state = 143}, - [1873] = {.lex_state = 958, .external_lex_state = 2}, - [1874] = {.lex_state = 143}, - [1875] = {.lex_state = 958, .external_lex_state = 2}, - [1876] = {.lex_state = 143}, - [1877] = {.lex_state = 143}, - [1878] = {.lex_state = 143}, - [1879] = {.lex_state = 103}, - [1880] = {.lex_state = 958, .external_lex_state = 2}, - [1881] = {.lex_state = 991}, - [1882] = {.lex_state = 991}, - [1883] = {.lex_state = 103}, - [1884] = {.lex_state = 991}, - [1885] = {.lex_state = 991}, - [1886] = {.lex_state = 958, .external_lex_state = 2}, - [1887] = {.lex_state = 991}, - [1888] = {.lex_state = 143}, - [1889] = {.lex_state = 991}, - [1890] = {.lex_state = 991}, - [1891] = {.lex_state = 991}, - [1892] = {.lex_state = 991}, - [1893] = {.lex_state = 991}, - [1894] = {.lex_state = 991}, - [1895] = {.lex_state = 958, .external_lex_state = 2}, - [1896] = {.lex_state = 991}, - [1897] = {.lex_state = 991}, - [1898] = {.lex_state = 991}, - [1899] = {.lex_state = 121}, - [1900] = {.lex_state = 120}, - [1901] = {.lex_state = 990}, - [1902] = {.lex_state = 991}, - [1903] = {.lex_state = 991}, - [1904] = {.lex_state = 991}, - [1905] = {.lex_state = 121}, - [1906] = {.lex_state = 120}, - [1907] = {.lex_state = 991}, - [1908] = {.lex_state = 121}, - [1909] = {.lex_state = 143}, - [1910] = {.lex_state = 977, .external_lex_state = 2}, - [1911] = {.lex_state = 121}, - [1912] = {.lex_state = 121}, - [1913] = {.lex_state = 102}, - [1914] = {.lex_state = 991}, - [1915] = {.lex_state = 121}, - [1916] = {.lex_state = 121}, - [1917] = {.lex_state = 121}, - [1918] = {.lex_state = 121}, - [1919] = {.lex_state = 121}, - [1920] = {.lex_state = 121}, - [1921] = {.lex_state = 121}, - [1922] = {.lex_state = 990}, - [1923] = {.lex_state = 121}, - [1924] = {.lex_state = 121}, - [1925] = {.lex_state = 991}, - [1926] = {.lex_state = 991}, - [1927] = {.lex_state = 121}, - [1928] = {.lex_state = 121}, - [1929] = {.lex_state = 990}, - [1930] = {.lex_state = 202, .external_lex_state = 2}, - [1931] = {.lex_state = 121}, - [1932] = {.lex_state = 120}, - [1933] = {.lex_state = 121}, - [1934] = {.lex_state = 121}, - [1935] = {.lex_state = 121}, - [1936] = {.lex_state = 121}, - [1937] = {.lex_state = 991}, - [1938] = {.lex_state = 202, .external_lex_state = 2}, - [1939] = {.lex_state = 98, .external_lex_state = 2}, - [1940] = {.lex_state = 98, .external_lex_state = 2}, - [1941] = {.lex_state = 121}, - [1942] = {.lex_state = 121}, - [1943] = {.lex_state = 102}, - [1944] = {.lex_state = 98, .external_lex_state = 2}, - [1945] = {.lex_state = 121}, - [1946] = {.lex_state = 991}, - [1947] = {.lex_state = 121}, - [1948] = {.lex_state = 991}, - [1949] = {.lex_state = 121}, - [1950] = {.lex_state = 121}, - [1951] = {.lex_state = 121}, - [1952] = {.lex_state = 121}, - [1953] = {.lex_state = 121}, - [1954] = {.lex_state = 121}, - [1955] = {.lex_state = 121}, - [1956] = {.lex_state = 143}, - [1957] = {.lex_state = 44, .external_lex_state = 2}, - [1958] = {.lex_state = 121}, - [1959] = {.lex_state = 121}, - [1960] = {.lex_state = 121}, - [1961] = {.lex_state = 121}, - [1962] = {.lex_state = 991}, - [1963] = {.lex_state = 991}, - [1964] = {.lex_state = 991}, - [1965] = {.lex_state = 991}, - [1966] = {.lex_state = 991}, - [1967] = {.lex_state = 98, .external_lex_state = 2}, - [1968] = {.lex_state = 121}, - [1969] = {.lex_state = 121}, - [1970] = {.lex_state = 121}, - [1971] = {.lex_state = 991}, - [1972] = {.lex_state = 121}, - [1973] = {.lex_state = 991}, - [1974] = {.lex_state = 121}, - [1975] = {.lex_state = 977, .external_lex_state = 2}, - [1976] = {.lex_state = 121}, - [1977] = {.lex_state = 121}, - [1978] = {.lex_state = 991}, - [1979] = {.lex_state = 121}, - [1980] = {.lex_state = 991}, - [1981] = {.lex_state = 121}, - [1982] = {.lex_state = 991}, - [1983] = {.lex_state = 44, .external_lex_state = 2}, - [1984] = {.lex_state = 121}, - [1985] = {.lex_state = 121}, - [1986] = {.lex_state = 121}, - [1987] = {.lex_state = 991}, - [1988] = {.lex_state = 121}, - [1989] = {.lex_state = 121}, - [1990] = {.lex_state = 991}, - [1991] = {.lex_state = 121}, - [1992] = {.lex_state = 991}, - [1993] = {.lex_state = 977, .external_lex_state = 2}, - [1994] = {.lex_state = 991}, - [1995] = {.lex_state = 991}, - [1996] = {.lex_state = 990}, - [1997] = {.lex_state = 121}, - [1998] = {.lex_state = 991}, - [1999] = {.lex_state = 202, .external_lex_state = 2}, - [2000] = {.lex_state = 120}, - [2001] = {.lex_state = 121}, - [2002] = {.lex_state = 120}, - [2003] = {.lex_state = 34, .external_lex_state = 2}, - [2004] = {.lex_state = 977, .external_lex_state = 2}, - [2005] = {.lex_state = 120}, - [2006] = {.lex_state = 990}, - [2007] = {.lex_state = 120}, - [2008] = {.lex_state = 34, .external_lex_state = 2}, - [2009] = {.lex_state = 990}, - [2010] = {.lex_state = 121}, - [2011] = {.lex_state = 120}, - [2012] = {.lex_state = 120}, - [2013] = {.lex_state = 120}, - [2014] = {.lex_state = 991}, - [2015] = {.lex_state = 44, .external_lex_state = 2}, - [2016] = {.lex_state = 1049}, - [2017] = {.lex_state = 34, .external_lex_state = 2}, - [2018] = {.lex_state = 991}, - [2019] = {.lex_state = 120}, - [2020] = {.lex_state = 120}, - [2021] = {.lex_state = 977, .external_lex_state = 2}, - [2022] = {.lex_state = 120}, - [2023] = {.lex_state = 120}, - [2024] = {.lex_state = 120}, - [2025] = {.lex_state = 202, .external_lex_state = 2}, - [2026] = {.lex_state = 991}, - [2027] = {.lex_state = 120}, - [2028] = {.lex_state = 121}, - [2029] = {.lex_state = 120}, - [2030] = {.lex_state = 120}, - [2031] = {.lex_state = 120}, - [2032] = {.lex_state = 202, .external_lex_state = 2}, - [2033] = {.lex_state = 120}, - [2034] = {.lex_state = 120}, - [2035] = {.lex_state = 121}, - [2036] = {.lex_state = 991}, - [2037] = {.lex_state = 44, .external_lex_state = 2}, - [2038] = {.lex_state = 1049}, - [2039] = {.lex_state = 34, .external_lex_state = 2}, - [2040] = {.lex_state = 991}, - [2041] = {.lex_state = 34, .external_lex_state = 2}, - [2042] = {.lex_state = 990}, - [2043] = {.lex_state = 34, .external_lex_state = 2}, - [2044] = {.lex_state = 977, .external_lex_state = 2}, - [2045] = {.lex_state = 1049}, - [2046] = {.lex_state = 991}, - [2047] = {.lex_state = 120}, - [2048] = {.lex_state = 1049}, - [2049] = {.lex_state = 120}, - [2050] = {.lex_state = 34, .external_lex_state = 2}, - [2051] = {.lex_state = 991}, - [2052] = {.lex_state = 34, .external_lex_state = 2}, - [2053] = {.lex_state = 121}, - [2054] = {.lex_state = 202, .external_lex_state = 2}, - [2055] = {.lex_state = 990}, - [2056] = {.lex_state = 202, .external_lex_state = 2}, - [2057] = {.lex_state = 202, .external_lex_state = 2}, - [2058] = {.lex_state = 351, .external_lex_state = 2}, - [2059] = {.lex_state = 202, .external_lex_state = 2}, - [2060] = {.lex_state = 120}, - [2061] = {.lex_state = 991}, - [2062] = {.lex_state = 34, .external_lex_state = 2}, - [2063] = {.lex_state = 121}, - [2064] = {.lex_state = 143}, - [2065] = {.lex_state = 991}, - [2066] = {.lex_state = 202, .external_lex_state = 2}, - [2067] = {.lex_state = 34, .external_lex_state = 2}, - [2068] = {.lex_state = 34, .external_lex_state = 2}, - [2069] = {.lex_state = 34, .external_lex_state = 2}, - [2070] = {.lex_state = 977, .external_lex_state = 2}, - [2071] = {.lex_state = 977, .external_lex_state = 2}, - [2072] = {.lex_state = 34, .external_lex_state = 2}, - [2073] = {.lex_state = 143}, - [2074] = {.lex_state = 991}, - [2075] = {.lex_state = 1049}, - [2076] = {.lex_state = 120}, - [2077] = {.lex_state = 349, .external_lex_state = 2}, - [2078] = {.lex_state = 120}, - [2079] = {.lex_state = 990}, - [2080] = {.lex_state = 990}, - [2081] = {.lex_state = 991}, - [2082] = {.lex_state = 991}, - [2083] = {.lex_state = 990}, - [2084] = {.lex_state = 990}, - [2085] = {.lex_state = 990}, - [2086] = {.lex_state = 990}, - [2087] = {.lex_state = 121}, - [2088] = {.lex_state = 121}, - [2089] = {.lex_state = 121}, - [2090] = {.lex_state = 121}, - [2091] = {.lex_state = 121}, - [2092] = {.lex_state = 976, .external_lex_state = 2}, - [2093] = {.lex_state = 121}, - [2094] = {.lex_state = 121}, - [2095] = {.lex_state = 976, .external_lex_state = 2}, - [2096] = {.lex_state = 976, .external_lex_state = 2}, - [2097] = {.lex_state = 121}, - [2098] = {.lex_state = 121}, - [2099] = {.lex_state = 976, .external_lex_state = 2}, - [2100] = {.lex_state = 121}, - [2101] = {.lex_state = 121}, - [2102] = {.lex_state = 121}, - [2103] = {.lex_state = 121}, - [2104] = {.lex_state = 121}, - [2105] = {.lex_state = 121}, - [2106] = {.lex_state = 121}, - [2107] = {.lex_state = 121}, - [2108] = {.lex_state = 121}, - [2109] = {.lex_state = 121}, - [2110] = {.lex_state = 121}, - [2111] = {.lex_state = 121}, - [2112] = {.lex_state = 121}, - [2113] = {.lex_state = 121}, - [2114] = {.lex_state = 121}, - [2115] = {.lex_state = 121}, - [2116] = {.lex_state = 121}, - [2117] = {.lex_state = 121}, - [2118] = {.lex_state = 121}, - [2119] = {.lex_state = 148}, - [2120] = {.lex_state = 148}, - [2121] = {.lex_state = 121}, - [2122] = {.lex_state = 121}, - [2123] = {.lex_state = 121}, - [2124] = {.lex_state = 121}, - [2125] = {.lex_state = 148}, - [2126] = {.lex_state = 148}, - [2127] = {.lex_state = 121}, - [2128] = {.lex_state = 121}, - [2129] = {.lex_state = 121}, - [2130] = {.lex_state = 121}, - [2131] = {.lex_state = 121}, - [2132] = {.lex_state = 143}, - [2133] = {.lex_state = 121}, - [2134] = {.lex_state = 121}, - [2135] = {.lex_state = 121}, - [2136] = {.lex_state = 143}, - [2137] = {.lex_state = 143}, - [2138] = {.lex_state = 121}, - [2139] = {.lex_state = 1049}, - [2140] = {.lex_state = 121}, - [2141] = {.lex_state = 121}, - [2142] = {.lex_state = 223, .external_lex_state = 2}, - [2143] = {.lex_state = 110}, - [2144] = {.lex_state = 121}, - [2145] = {.lex_state = 121}, - [2146] = {.lex_state = 121}, - [2147] = {.lex_state = 990}, - [2148] = {.lex_state = 121}, - [2149] = {.lex_state = 121}, - [2150] = {.lex_state = 121}, - [2151] = {.lex_state = 991}, - [2152] = {.lex_state = 121}, - [2153] = {.lex_state = 121}, - [2154] = {.lex_state = 990}, - [2155] = {.lex_state = 121}, - [2156] = {.lex_state = 121}, - [2157] = {.lex_state = 121}, - [2158] = {.lex_state = 348, .external_lex_state = 2}, - [2159] = {.lex_state = 121}, - [2160] = {.lex_state = 1044}, - [2161] = {.lex_state = 1053}, - [2162] = {.lex_state = 1053}, - [2163] = {.lex_state = 121}, - [2164] = {.lex_state = 121}, - [2165] = {.lex_state = 121}, - [2166] = {.lex_state = 990}, - [2167] = {.lex_state = 1045}, - [2168] = {.lex_state = 1045}, - [2169] = {.lex_state = 121}, - [2170] = {.lex_state = 121}, - [2171] = {.lex_state = 121}, - [2172] = {.lex_state = 121}, - [2173] = {.lex_state = 990}, - [2174] = {.lex_state = 990}, - [2175] = {.lex_state = 348, .external_lex_state = 2}, - [2176] = {.lex_state = 121}, - [2177] = {.lex_state = 121}, - [2178] = {.lex_state = 121}, - [2179] = {.lex_state = 121}, - [2180] = {.lex_state = 121}, - [2181] = {.lex_state = 121}, - [2182] = {.lex_state = 121}, - [2183] = {.lex_state = 121}, - [2184] = {.lex_state = 121}, - [2185] = {.lex_state = 121}, - [2186] = {.lex_state = 121}, - [2187] = {.lex_state = 121}, - [2188] = {.lex_state = 121}, - [2189] = {.lex_state = 121}, - [2190] = {.lex_state = 121}, - [2191] = {.lex_state = 121}, - [2192] = {.lex_state = 121}, - [2193] = {.lex_state = 1053}, - [2194] = {.lex_state = 121}, - [2195] = {.lex_state = 148}, - [2196] = {.lex_state = 121}, - [2197] = {.lex_state = 121}, - [2198] = {.lex_state = 121}, - [2199] = {.lex_state = 121}, - [2200] = {.lex_state = 121}, - [2201] = {.lex_state = 121}, - [2202] = {.lex_state = 121}, - [2203] = {.lex_state = 121}, - [2204] = {.lex_state = 121}, - [2205] = {.lex_state = 121}, - [2206] = {.lex_state = 121}, - [2207] = {.lex_state = 121}, - [2208] = {.lex_state = 121}, - [2209] = {.lex_state = 121}, - [2210] = {.lex_state = 121}, - [2211] = {.lex_state = 121}, - [2212] = {.lex_state = 121}, - [2213] = {.lex_state = 121}, - [2214] = {.lex_state = 121}, - [2215] = {.lex_state = 990}, - [2216] = {.lex_state = 990}, - [2217] = {.lex_state = 990}, - [2218] = {.lex_state = 1049}, - [2219] = {.lex_state = 976, .external_lex_state = 2}, - [2220] = {.lex_state = 976, .external_lex_state = 2}, - [2221] = {.lex_state = 1049}, - [2222] = {.lex_state = 990}, - [2223] = {.lex_state = 990}, - [2224] = {.lex_state = 121}, - [2225] = {.lex_state = 121}, - [2226] = {.lex_state = 121}, - [2227] = {.lex_state = 121}, - [2228] = {.lex_state = 121}, - [2229] = {.lex_state = 977, .external_lex_state = 2}, - [2230] = {.lex_state = 121}, - [2231] = {.lex_state = 1049}, - [2232] = {.lex_state = 1049}, - [2233] = {.lex_state = 121}, - [2234] = {.lex_state = 121}, - [2235] = {.lex_state = 121}, - [2236] = {.lex_state = 121}, - [2237] = {.lex_state = 121}, - [2238] = {.lex_state = 121}, - [2239] = {.lex_state = 977, .external_lex_state = 2}, - [2240] = {.lex_state = 121}, - [2241] = {.lex_state = 121}, - [2242] = {.lex_state = 990}, - [2243] = {.lex_state = 990}, - [2244] = {.lex_state = 990}, - [2245] = {.lex_state = 121}, - [2246] = {.lex_state = 990}, - [2247] = {.lex_state = 990}, - [2248] = {.lex_state = 990}, - [2249] = {.lex_state = 121}, - [2250] = {.lex_state = 121}, - [2251] = {.lex_state = 121}, - [2252] = {.lex_state = 202, .external_lex_state = 2}, - [2253] = {.lex_state = 121}, - [2254] = {.lex_state = 121}, - [2255] = {.lex_state = 350, .external_lex_state = 2}, - [2256] = {.lex_state = 121}, - [2257] = {.lex_state = 121}, - [2258] = {.lex_state = 121}, - [2259] = {.lex_state = 121}, - [2260] = {.lex_state = 121}, - [2261] = {.lex_state = 121}, - [2262] = {.lex_state = 121}, - [2263] = {.lex_state = 202, .external_lex_state = 2}, - [2264] = {.lex_state = 121}, - [2265] = {.lex_state = 1045}, - [2266] = {.lex_state = 121}, - [2267] = {.lex_state = 350, .external_lex_state = 2}, - [2268] = {.lex_state = 121}, - [2269] = {.lex_state = 1045}, - [2270] = {.lex_state = 121}, - [2271] = {.lex_state = 990}, - [2272] = {.lex_state = 144}, - [2273] = {.lex_state = 202, .external_lex_state = 2}, - [2274] = {.lex_state = 121}, - [2275] = {.lex_state = 121}, - [2276] = {.lex_state = 121}, - [2277] = {.lex_state = 121}, - [2278] = {.lex_state = 121}, - [2279] = {.lex_state = 121}, - [2280] = {.lex_state = 151}, - [2281] = {.lex_state = 121}, - [2282] = {.lex_state = 121}, - [2283] = {.lex_state = 121}, - [2284] = {.lex_state = 121}, - [2285] = {.lex_state = 257, .external_lex_state = 2}, - [2286] = {.lex_state = 248, .external_lex_state = 2}, - [2287] = {.lex_state = 350, .external_lex_state = 2}, - [2288] = {.lex_state = 121}, - [2289] = {.lex_state = 121}, - [2290] = {.lex_state = 121}, - [2291] = {.lex_state = 121}, - [2292] = {.lex_state = 121}, - [2293] = {.lex_state = 121}, - [2294] = {.lex_state = 121}, - [2295] = {.lex_state = 121}, - [2296] = {.lex_state = 151}, - [2297] = {.lex_state = 121}, - [2298] = {.lex_state = 121}, - [2299] = {.lex_state = 121}, - [2300] = {.lex_state = 100}, - [2301] = {.lex_state = 121}, - [2302] = {.lex_state = 990}, - [2303] = {.lex_state = 121}, - [2304] = {.lex_state = 121}, - [2305] = {.lex_state = 121}, - [2306] = {.lex_state = 121}, - [2307] = {.lex_state = 121}, - [2308] = {.lex_state = 350, .external_lex_state = 2}, - [2309] = {.lex_state = 121}, - [2310] = {.lex_state = 121}, - [2311] = {.lex_state = 121}, - [2312] = {.lex_state = 121}, - [2313] = {.lex_state = 121}, - [2314] = {.lex_state = 202, .external_lex_state = 2}, - [2315] = {.lex_state = 121}, - [2316] = {.lex_state = 121}, - [2317] = {.lex_state = 121}, - [2318] = {.lex_state = 121}, - [2319] = {.lex_state = 121}, - [2320] = {.lex_state = 350, .external_lex_state = 2}, - [2321] = {.lex_state = 121}, - [2322] = {.lex_state = 121}, - [2323] = {.lex_state = 121}, - [2324] = {.lex_state = 121}, - [2325] = {.lex_state = 121}, - [2326] = {.lex_state = 121}, - [2327] = {.lex_state = 121}, - [2328] = {.lex_state = 121}, - [2329] = {.lex_state = 1044}, - [2330] = {.lex_state = 121}, - [2331] = {.lex_state = 121}, - [2332] = {.lex_state = 121}, - [2333] = {.lex_state = 121}, - [2334] = {.lex_state = 121}, - [2335] = {.lex_state = 121}, - [2336] = {.lex_state = 121}, - [2337] = {.lex_state = 202, .external_lex_state = 2}, - [2338] = {.lex_state = 121}, - [2339] = {.lex_state = 121}, - [2340] = {.lex_state = 222, .external_lex_state = 2}, - [2341] = {.lex_state = 990}, - [2342] = {.lex_state = 121}, - [2343] = {.lex_state = 121}, - [2344] = {.lex_state = 151}, - [2345] = {.lex_state = 121}, - [2346] = {.lex_state = 121}, - [2347] = {.lex_state = 121}, - [2348] = {.lex_state = 1053}, - [2349] = {.lex_state = 121}, - [2350] = {.lex_state = 1053}, - [2351] = {.lex_state = 121}, - [2352] = {.lex_state = 121}, - [2353] = {.lex_state = 121}, - [2354] = {.lex_state = 121}, - [2355] = {.lex_state = 121}, - [2356] = {.lex_state = 121}, - [2357] = {.lex_state = 121}, - [2358] = {.lex_state = 121}, - [2359] = {.lex_state = 121}, - [2360] = {.lex_state = 222, .external_lex_state = 2}, - [2361] = {.lex_state = 121}, - [2362] = {.lex_state = 121}, - [2363] = {.lex_state = 121}, - [2364] = {.lex_state = 121}, - [2365] = {.lex_state = 121}, - [2366] = {.lex_state = 976, .external_lex_state = 2}, - [2367] = {.lex_state = 121}, - [2368] = {.lex_state = 976, .external_lex_state = 2}, - [2369] = {.lex_state = 976, .external_lex_state = 2}, - [2370] = {.lex_state = 202, .external_lex_state = 2}, - [2371] = {.lex_state = 976, .external_lex_state = 2}, - [2372] = {.lex_state = 145}, - [2373] = {.lex_state = 1053}, - [2374] = {.lex_state = 202, .external_lex_state = 2}, - [2375] = {.lex_state = 202, .external_lex_state = 2}, - [2376] = {.lex_state = 202, .external_lex_state = 2}, - [2377] = {.lex_state = 977, .external_lex_state = 2}, - [2378] = {.lex_state = 202, .external_lex_state = 2}, - [2379] = {.lex_state = 100}, - [2380] = {.lex_state = 121}, - [2381] = {.lex_state = 121}, - [2382] = {.lex_state = 145}, - [2383] = {.lex_state = 202, .external_lex_state = 2}, - [2384] = {.lex_state = 121}, - [2385] = {.lex_state = 121}, - [2386] = {.lex_state = 121}, - [2387] = {.lex_state = 202, .external_lex_state = 2}, - [2388] = {.lex_state = 977, .external_lex_state = 2}, - [2389] = {.lex_state = 977, .external_lex_state = 2}, - [2390] = {.lex_state = 121}, - [2391] = {.lex_state = 121}, - [2392] = {.lex_state = 121}, - [2393] = {.lex_state = 121}, - [2394] = {.lex_state = 1053}, - [2395] = {.lex_state = 121}, - [2396] = {.lex_state = 202, .external_lex_state = 2}, - [2397] = {.lex_state = 121}, - [2398] = {.lex_state = 1045}, - [2399] = {.lex_state = 1045}, - [2400] = {.lex_state = 121}, - [2401] = {.lex_state = 121}, - [2402] = {.lex_state = 121}, - [2403] = {.lex_state = 121}, - [2404] = {.lex_state = 121}, - [2405] = {.lex_state = 267, .external_lex_state = 2}, - [2406] = {.lex_state = 121}, - [2407] = {.lex_state = 221, .external_lex_state = 2}, - [2408] = {.lex_state = 121}, - [2409] = {.lex_state = 121}, - [2410] = {.lex_state = 121}, - [2411] = {.lex_state = 121}, - [2412] = {.lex_state = 121}, - [2413] = {.lex_state = 990}, - [2414] = {.lex_state = 121}, - [2415] = {.lex_state = 990}, - [2416] = {.lex_state = 976, .external_lex_state = 2}, - [2417] = {.lex_state = 976, .external_lex_state = 2}, - [2418] = {.lex_state = 990}, - [2419] = {.lex_state = 121}, - [2420] = {.lex_state = 990}, - [2421] = {.lex_state = 121}, - [2422] = {.lex_state = 990}, - [2423] = {.lex_state = 990}, - [2424] = {.lex_state = 990}, - [2425] = {.lex_state = 1053}, - [2426] = {.lex_state = 990}, - [2427] = {.lex_state = 990}, - [2428] = {.lex_state = 121}, - [2429] = {.lex_state = 990}, - [2430] = {.lex_state = 979, .external_lex_state = 2}, - [2431] = {.lex_state = 979, .external_lex_state = 2}, - [2432] = {.lex_state = 979, .external_lex_state = 2}, - [2433] = {.lex_state = 979, .external_lex_state = 2}, - [2434] = {.lex_state = 250, .external_lex_state = 2}, - [2435] = {.lex_state = 250, .external_lex_state = 2}, - [2436] = {.lex_state = 990}, - [2437] = {.lex_state = 202, .external_lex_state = 2}, - [2438] = {.lex_state = 990}, - [2439] = {.lex_state = 265, .external_lex_state = 2}, - [2440] = {.lex_state = 990}, - [2441] = {.lex_state = 990}, - [2442] = {.lex_state = 202, .external_lex_state = 2}, - [2443] = {.lex_state = 202, .external_lex_state = 2}, - [2444] = {.lex_state = 202, .external_lex_state = 2}, - [2445] = {.lex_state = 202, .external_lex_state = 2}, - [2446] = {.lex_state = 202, .external_lex_state = 2}, - [2447] = {.lex_state = 202, .external_lex_state = 2}, - [2448] = {.lex_state = 979, .external_lex_state = 2}, - [2449] = {.lex_state = 979, .external_lex_state = 2}, - [2450] = {.lex_state = 979, .external_lex_state = 2}, - [2451] = {.lex_state = 202, .external_lex_state = 2}, - [2452] = {.lex_state = 202, .external_lex_state = 2}, - [2453] = {.lex_state = 990}, - [2454] = {.lex_state = 979, .external_lex_state = 2}, - [2455] = {.lex_state = 979, .external_lex_state = 2}, - [2456] = {.lex_state = 251, .external_lex_state = 2}, - [2457] = {.lex_state = 202, .external_lex_state = 2}, - [2458] = {.lex_state = 990}, - [2459] = {.lex_state = 202, .external_lex_state = 2}, - [2460] = {.lex_state = 990}, - [2461] = {.lex_state = 202, .external_lex_state = 2}, - [2462] = {.lex_state = 990}, - [2463] = {.lex_state = 990}, - [2464] = {.lex_state = 990}, - [2465] = {.lex_state = 990}, - [2466] = {.lex_state = 202, .external_lex_state = 2}, - [2467] = {.lex_state = 266, .external_lex_state = 2}, - [2468] = {.lex_state = 202, .external_lex_state = 2}, - [2469] = {.lex_state = 220, .external_lex_state = 2}, - [2470] = {.lex_state = 202, .external_lex_state = 2}, - [2471] = {.lex_state = 979, .external_lex_state = 2}, - [2472] = {.lex_state = 990}, - [2473] = {.lex_state = 266, .external_lex_state = 2}, - [2474] = {.lex_state = 266, .external_lex_state = 2}, - [2475] = {.lex_state = 266, .external_lex_state = 2}, - [2476] = {.lex_state = 202, .external_lex_state = 2}, - [2477] = {.lex_state = 990}, - [2478] = {.lex_state = 202, .external_lex_state = 2}, - [2479] = {.lex_state = 990}, - [2480] = {.lex_state = 202, .external_lex_state = 2}, - [2481] = {.lex_state = 990}, - [2482] = {.lex_state = 990}, - [2483] = {.lex_state = 990}, - [2484] = {.lex_state = 202, .external_lex_state = 2}, - [2485] = {.lex_state = 220, .external_lex_state = 2}, - [2486] = {.lex_state = 990}, - [2487] = {.lex_state = 202, .external_lex_state = 2}, - [2488] = {.lex_state = 990}, - [2489] = {.lex_state = 990}, - [2490] = {.lex_state = 990}, - [2491] = {.lex_state = 990}, - [2492] = {.lex_state = 202, .external_lex_state = 2}, - [2493] = {.lex_state = 979, .external_lex_state = 2}, - [2494] = {.lex_state = 979, .external_lex_state = 2}, - [2495] = {.lex_state = 990}, - [2496] = {.lex_state = 979, .external_lex_state = 2}, - [2497] = {.lex_state = 990}, - [2498] = {.lex_state = 68}, - [2499] = {.lex_state = 979, .external_lex_state = 2}, - [2500] = {.lex_state = 979, .external_lex_state = 2}, - [2501] = {.lex_state = 979, .external_lex_state = 2}, - [2502] = {.lex_state = 990}, - [2503] = {.lex_state = 202, .external_lex_state = 2}, - [2504] = {.lex_state = 990}, - [2505] = {.lex_state = 979, .external_lex_state = 2}, - [2506] = {.lex_state = 990}, - [2507] = {.lex_state = 990}, - [2508] = {.lex_state = 979, .external_lex_state = 2}, - [2509] = {.lex_state = 990}, - [2510] = {.lex_state = 990}, - [2511] = {.lex_state = 202, .external_lex_state = 2}, - [2512] = {.lex_state = 990}, - [2513] = {.lex_state = 990}, - [2514] = {.lex_state = 990}, - [2515] = {.lex_state = 990}, - [2516] = {.lex_state = 202, .external_lex_state = 2}, - [2517] = {.lex_state = 202, .external_lex_state = 2}, - [2518] = {.lex_state = 202, .external_lex_state = 2}, - [2519] = {.lex_state = 990}, - [2520] = {.lex_state = 202, .external_lex_state = 2}, - [2521] = {.lex_state = 202, .external_lex_state = 2}, - [2522] = {.lex_state = 990}, - [2523] = {.lex_state = 990}, - [2524] = {.lex_state = 990}, - [2525] = {.lex_state = 979, .external_lex_state = 2}, - [2526] = {.lex_state = 990}, - [2527] = {.lex_state = 990}, - [2528] = {.lex_state = 990}, - [2529] = {.lex_state = 990}, - [2530] = {.lex_state = 990}, - [2531] = {.lex_state = 990}, - [2532] = {.lex_state = 990}, - [2533] = {.lex_state = 990}, - [2534] = {.lex_state = 990}, - [2535] = {.lex_state = 202, .external_lex_state = 2}, - [2536] = {.lex_state = 979, .external_lex_state = 2}, - [2537] = {.lex_state = 977, .external_lex_state = 2}, - [2538] = {.lex_state = 990}, - [2539] = {.lex_state = 990}, - [2540] = {.lex_state = 990}, - [2541] = {.lex_state = 990}, - [2542] = {.lex_state = 990}, - [2543] = {.lex_state = 977, .external_lex_state = 2}, - [2544] = {.lex_state = 977, .external_lex_state = 2}, - [2545] = {.lex_state = 990}, - [2546] = {.lex_state = 990}, - [2547] = {.lex_state = 990}, - [2548] = {.lex_state = 990}, - [2549] = {.lex_state = 990}, - [2550] = {.lex_state = 990}, - [2551] = {.lex_state = 990}, - [2552] = {.lex_state = 990}, - [2553] = {.lex_state = 990}, - [2554] = {.lex_state = 990}, - [2555] = {.lex_state = 202, .external_lex_state = 2}, - [2556] = {.lex_state = 990}, - [2557] = {.lex_state = 990}, - [2558] = {.lex_state = 990}, - [2559] = {.lex_state = 990}, - [2560] = {.lex_state = 990}, - [2561] = {.lex_state = 990}, - [2562] = {.lex_state = 202, .external_lex_state = 2}, - [2563] = {.lex_state = 990}, - [2564] = {.lex_state = 344, .external_lex_state = 2}, - [2565] = {.lex_state = 979, .external_lex_state = 2}, - [2566] = {.lex_state = 979, .external_lex_state = 2}, - [2567] = {.lex_state = 979, .external_lex_state = 2}, - [2568] = {.lex_state = 979, .external_lex_state = 2}, - [2569] = {.lex_state = 344, .external_lex_state = 2}, - [2570] = {.lex_state = 979, .external_lex_state = 2}, - [2571] = {.lex_state = 344, .external_lex_state = 2}, - [2572] = {.lex_state = 979, .external_lex_state = 2}, - [2573] = {.lex_state = 344, .external_lex_state = 2}, - [2574] = {.lex_state = 979, .external_lex_state = 2}, - [2575] = {.lex_state = 344, .external_lex_state = 2}, - [2576] = {.lex_state = 344, .external_lex_state = 2}, - [2577] = {.lex_state = 344, .external_lex_state = 2}, - [2578] = {.lex_state = 344, .external_lex_state = 2}, - [2579] = {.lex_state = 344, .external_lex_state = 2}, - [2580] = {.lex_state = 344, .external_lex_state = 2}, - [2581] = {.lex_state = 344, .external_lex_state = 2}, - [2582] = {.lex_state = 979, .external_lex_state = 2}, - [2583] = {.lex_state = 344, .external_lex_state = 2}, - [2584] = {.lex_state = 344, .external_lex_state = 2}, - [2585] = {.lex_state = 344, .external_lex_state = 2}, - [2586] = {.lex_state = 979, .external_lex_state = 2}, - [2587] = {.lex_state = 344, .external_lex_state = 2}, - [2588] = {.lex_state = 344, .external_lex_state = 2}, - [2589] = {.lex_state = 344, .external_lex_state = 2}, - [2590] = {.lex_state = 979, .external_lex_state = 2}, - [2591] = {.lex_state = 344, .external_lex_state = 2}, - [2592] = {.lex_state = 258, .external_lex_state = 2}, - [2593] = {.lex_state = 68}, - [2594] = {.lex_state = 264, .external_lex_state = 2}, - [2595] = {.lex_state = 979, .external_lex_state = 2}, - [2596] = {.lex_state = 251, .external_lex_state = 2}, - [2597] = {.lex_state = 344, .external_lex_state = 2}, - [2598] = {.lex_state = 336, .external_lex_state = 2}, - [2599] = {.lex_state = 327, .external_lex_state = 2}, - [2600] = {.lex_state = 264, .external_lex_state = 2}, - [2601] = {.lex_state = 264, .external_lex_state = 2}, - [2602] = {.lex_state = 344, .external_lex_state = 2}, - [2603] = {.lex_state = 264, .external_lex_state = 2}, - [2604] = {.lex_state = 979, .external_lex_state = 2}, - [2605] = {.lex_state = 249, .external_lex_state = 2}, - [2606] = {.lex_state = 321, .external_lex_state = 2}, - [2607] = {.lex_state = 251, .external_lex_state = 2}, - [2608] = {.lex_state = 251, .external_lex_state = 2}, - [2609] = {.lex_state = 344, .external_lex_state = 2}, - [2610] = {.lex_state = 321, .external_lex_state = 2}, - [2611] = {.lex_state = 979, .external_lex_state = 2}, - [2612] = {.lex_state = 979, .external_lex_state = 2}, - [2613] = {.lex_state = 344, .external_lex_state = 2}, - [2614] = {.lex_state = 979, .external_lex_state = 2}, - [2615] = {.lex_state = 979, .external_lex_state = 2}, - [2616] = {.lex_state = 979, .external_lex_state = 2}, - [2617] = {.lex_state = 979, .external_lex_state = 2}, - [2618] = {.lex_state = 979, .external_lex_state = 2}, - [2619] = {.lex_state = 251, .external_lex_state = 2}, - [2620] = {.lex_state = 979, .external_lex_state = 2}, - [2621] = {.lex_state = 344, .external_lex_state = 2}, - [2622] = {.lex_state = 321, .external_lex_state = 2}, - [2623] = {.lex_state = 321, .external_lex_state = 2}, - [2624] = {.lex_state = 308, .external_lex_state = 2}, - [2625] = {.lex_state = 329, .external_lex_state = 2}, - [2626] = {.lex_state = 329, .external_lex_state = 2}, - [2627] = {.lex_state = 308, .external_lex_state = 2}, - [2628] = {.lex_state = 252, .external_lex_state = 2}, - [2629] = {.lex_state = 252, .external_lex_state = 2}, - [2630] = {.lex_state = 344, .external_lex_state = 2}, - [2631] = {.lex_state = 308, .external_lex_state = 2}, - [2632] = {.lex_state = 344, .external_lex_state = 2}, - [2633] = {.lex_state = 321, .external_lex_state = 2}, - [2634] = {.lex_state = 322, .external_lex_state = 2}, - [2635] = {.lex_state = 342, .external_lex_state = 2}, - [2636] = {.lex_state = 342, .external_lex_state = 2}, - [2637] = {.lex_state = 308, .external_lex_state = 2}, - [2638] = {.lex_state = 343, .external_lex_state = 2}, - [2639] = {.lex_state = 210, .external_lex_state = 2}, - [2640] = {.lex_state = 343, .external_lex_state = 2}, - [2641] = {.lex_state = 345, .external_lex_state = 2}, - [2642] = {.lex_state = 330, .external_lex_state = 2}, - [2643] = {.lex_state = 212, .external_lex_state = 2}, - [2644] = {.lex_state = 330, .external_lex_state = 2}, - [2645] = {.lex_state = 212, .external_lex_state = 2}, - [2646] = {.lex_state = 343, .external_lex_state = 2}, - [2647] = {.lex_state = 958, .external_lex_state = 2}, - [2648] = {.lex_state = 330, .external_lex_state = 2}, - [2649] = {.lex_state = 958, .external_lex_state = 2}, - [2650] = {.lex_state = 210, .external_lex_state = 2}, - [2651] = {.lex_state = 330, .external_lex_state = 2}, - [2652] = {.lex_state = 342, .external_lex_state = 2}, - [2653] = {.lex_state = 337, .external_lex_state = 2}, - [2654] = {.lex_state = 253, .external_lex_state = 2}, - [2655] = {.lex_state = 328, .external_lex_state = 2}, - [2656] = {.lex_state = 342, .external_lex_state = 2}, - [2657] = {.lex_state = 253, .external_lex_state = 2}, - [2658] = {.lex_state = 342, .external_lex_state = 2}, - [2659] = {.lex_state = 253, .external_lex_state = 2}, - [2660] = {.lex_state = 253, .external_lex_state = 2}, - [2661] = {.lex_state = 319, .external_lex_state = 2}, - [2662] = {.lex_state = 342, .external_lex_state = 2}, - [2663] = {.lex_state = 36, .external_lex_state = 2}, - [2664] = {.lex_state = 343, .external_lex_state = 2}, - [2665] = {.lex_state = 343, .external_lex_state = 2}, - [2666] = {.lex_state = 342, .external_lex_state = 2}, - [2667] = {.lex_state = 253, .external_lex_state = 2}, - [2668] = {.lex_state = 319, .external_lex_state = 2}, - [2669] = {.lex_state = 319, .external_lex_state = 2}, - [2670] = {.lex_state = 210, .external_lex_state = 2}, - [2671] = {.lex_state = 343, .external_lex_state = 2}, - [2672] = {.lex_state = 210, .external_lex_state = 2}, - [2673] = {.lex_state = 319, .external_lex_state = 2}, - [2674] = {.lex_state = 320, .external_lex_state = 2}, - [2675] = {.lex_state = 308, .external_lex_state = 2}, - [2676] = {.lex_state = 253, .external_lex_state = 2}, - [2677] = {.lex_state = 319, .external_lex_state = 2}, - [2678] = {.lex_state = 319, .external_lex_state = 2}, - [2679] = {.lex_state = 212, .external_lex_state = 2}, - [2680] = {.lex_state = 212, .external_lex_state = 2}, - [2681] = {.lex_state = 318, .external_lex_state = 2}, - [2682] = {.lex_state = 926}, - [2683] = {.lex_state = 926}, - [2684] = {.lex_state = 342, .external_lex_state = 2}, - [2685] = {.lex_state = 202, .external_lex_state = 2}, - [2686] = {.lex_state = 342, .external_lex_state = 2}, - [2687] = {.lex_state = 330, .external_lex_state = 2}, - [2688] = {.lex_state = 212, .external_lex_state = 2}, - [2689] = {.lex_state = 321, .external_lex_state = 2}, - [2690] = {.lex_state = 344, .external_lex_state = 2}, - [2691] = {.lex_state = 309, .external_lex_state = 2}, - [2692] = {.lex_state = 357, .external_lex_state = 2}, - [2693] = {.lex_state = 357, .external_lex_state = 2}, - [2694] = {.lex_state = 342, .external_lex_state = 2}, - [2695] = {.lex_state = 259, .external_lex_state = 2}, - [2696] = {.lex_state = 342, .external_lex_state = 2}, - [2697] = {.lex_state = 306, .external_lex_state = 2}, - [2698] = {.lex_state = 357, .external_lex_state = 2}, - [2699] = {.lex_state = 212, .external_lex_state = 2}, - [2700] = {.lex_state = 306, .external_lex_state = 2}, - [2701] = {.lex_state = 306, .external_lex_state = 2}, - [2702] = {.lex_state = 331, .external_lex_state = 2}, - [2703] = {.lex_state = 202, .external_lex_state = 2}, - [2704] = {.lex_state = 254, .external_lex_state = 2}, - [2705] = {.lex_state = 307, .external_lex_state = 2}, - [2706] = {.lex_state = 306, .external_lex_state = 2}, - [2707] = {.lex_state = 325, .external_lex_state = 2}, - [2708] = {.lex_state = 325, .external_lex_state = 2}, - [2709] = {.lex_state = 36, .external_lex_state = 2}, - [2710] = {.lex_state = 321, .external_lex_state = 2}, - [2711] = {.lex_state = 325, .external_lex_state = 2}, - [2712] = {.lex_state = 325, .external_lex_state = 2}, - [2713] = {.lex_state = 44, .external_lex_state = 2}, - [2714] = {.lex_state = 325, .external_lex_state = 2}, - [2715] = {.lex_state = 325, .external_lex_state = 2}, - [2716] = {.lex_state = 325, .external_lex_state = 2}, - [2717] = {.lex_state = 212, .external_lex_state = 2}, - [2718] = {.lex_state = 325, .external_lex_state = 2}, - [2719] = {.lex_state = 306, .external_lex_state = 2}, - [2720] = {.lex_state = 325, .external_lex_state = 2}, - [2721] = {.lex_state = 325, .external_lex_state = 2}, - [2722] = {.lex_state = 316, .external_lex_state = 2}, - [2723] = {.lex_state = 325, .external_lex_state = 2}, - [2724] = {.lex_state = 305, .external_lex_state = 2}, - [2725] = {.lex_state = 325, .external_lex_state = 2}, - [2726] = {.lex_state = 325, .external_lex_state = 2}, - [2727] = {.lex_state = 325, .external_lex_state = 2}, - [2728] = {.lex_state = 325, .external_lex_state = 2}, - [2729] = {.lex_state = 211, .external_lex_state = 2}, - [2730] = {.lex_state = 211, .external_lex_state = 2}, - [2731] = {.lex_state = 325, .external_lex_state = 2}, - [2732] = {.lex_state = 325, .external_lex_state = 2}, - [2733] = {.lex_state = 211, .external_lex_state = 2}, - [2734] = {.lex_state = 325, .external_lex_state = 2}, - [2735] = {.lex_state = 325, .external_lex_state = 2}, - [2736] = {.lex_state = 331, .external_lex_state = 2}, - [2737] = {.lex_state = 321, .external_lex_state = 2}, - [2738] = {.lex_state = 316, .external_lex_state = 2}, - [2739] = {.lex_state = 325, .external_lex_state = 2}, - [2740] = {.lex_state = 344, .external_lex_state = 2}, - [2741] = {.lex_state = 926}, - [2742] = {.lex_state = 202, .external_lex_state = 2}, - [2743] = {.lex_state = 357, .external_lex_state = 2}, - [2744] = {.lex_state = 44, .external_lex_state = 2}, - [2745] = {.lex_state = 357, .external_lex_state = 2}, - [2746] = {.lex_state = 211, .external_lex_state = 2}, - [2747] = {.lex_state = 926}, - [2748] = {.lex_state = 306, .external_lex_state = 2}, - [2749] = {.lex_state = 211, .external_lex_state = 2}, - [2750] = {.lex_state = 211, .external_lex_state = 2}, - [2751] = {.lex_state = 344, .external_lex_state = 2}, - [2752] = {.lex_state = 926}, - [2753] = {.lex_state = 202, .external_lex_state = 2}, - [2754] = {.lex_state = 202, .external_lex_state = 2}, - [2755] = {.lex_state = 35, .external_lex_state = 2}, - [2756] = {.lex_state = 202, .external_lex_state = 2}, - [2757] = {.lex_state = 308, .external_lex_state = 2}, - [2758] = {.lex_state = 308, .external_lex_state = 2}, - [2759] = {.lex_state = 202, .external_lex_state = 2}, - [2760] = {.lex_state = 202, .external_lex_state = 2}, - [2761] = {.lex_state = 202, .external_lex_state = 2}, - [2762] = {.lex_state = 309, .external_lex_state = 2}, - [2763] = {.lex_state = 202, .external_lex_state = 2}, - [2764] = {.lex_state = 202, .external_lex_state = 2}, - [2765] = {.lex_state = 202, .external_lex_state = 2}, - [2766] = {.lex_state = 202, .external_lex_state = 2}, - [2767] = {.lex_state = 202, .external_lex_state = 2}, - [2768] = {.lex_state = 202, .external_lex_state = 2}, - [2769] = {.lex_state = 202, .external_lex_state = 2}, - [2770] = {.lex_state = 202, .external_lex_state = 2}, - [2771] = {.lex_state = 202, .external_lex_state = 2}, - [2772] = {.lex_state = 317, .external_lex_state = 2}, - [2773] = {.lex_state = 202, .external_lex_state = 2}, - [2774] = {.lex_state = 202, .external_lex_state = 2}, - [2775] = {.lex_state = 202, .external_lex_state = 2}, - [2776] = {.lex_state = 202, .external_lex_state = 2}, - [2777] = {.lex_state = 317, .external_lex_state = 2}, - [2778] = {.lex_state = 317, .external_lex_state = 2}, - [2779] = {.lex_state = 317, .external_lex_state = 2}, - [2780] = {.lex_state = 317, .external_lex_state = 2}, - [2781] = {.lex_state = 317, .external_lex_state = 2}, - [2782] = {.lex_state = 255, .external_lex_state = 2}, - [2783] = {.lex_state = 202, .external_lex_state = 2}, - [2784] = {.lex_state = 202, .external_lex_state = 2}, - [2785] = {.lex_state = 202, .external_lex_state = 2}, - [2786] = {.lex_state = 202, .external_lex_state = 2}, - [2787] = {.lex_state = 308, .external_lex_state = 2}, - [2788] = {.lex_state = 309, .external_lex_state = 2}, - [2789] = {.lex_state = 202, .external_lex_state = 2}, - [2790] = {.lex_state = 202, .external_lex_state = 2}, - [2791] = {.lex_state = 202, .external_lex_state = 2}, - [2792] = {.lex_state = 44, .external_lex_state = 2}, - [2793] = {.lex_state = 332, .external_lex_state = 2}, - [2794] = {.lex_state = 317, .external_lex_state = 2}, - [2795] = {.lex_state = 202, .external_lex_state = 2}, - [2796] = {.lex_state = 202, .external_lex_state = 2}, - [2797] = {.lex_state = 202, .external_lex_state = 2}, - [2798] = {.lex_state = 202, .external_lex_state = 2}, - [2799] = {.lex_state = 202, .external_lex_state = 2}, - [2800] = {.lex_state = 202, .external_lex_state = 2}, - [2801] = {.lex_state = 317, .external_lex_state = 2}, - [2802] = {.lex_state = 317, .external_lex_state = 2}, - [2803] = {.lex_state = 255, .external_lex_state = 2}, - [2804] = {.lex_state = 202, .external_lex_state = 2}, - [2805] = {.lex_state = 36, .external_lex_state = 2}, - [2806] = {.lex_state = 317, .external_lex_state = 2}, - [2807] = {.lex_state = 317, .external_lex_state = 2}, - [2808] = {.lex_state = 317, .external_lex_state = 2}, - [2809] = {.lex_state = 303, .external_lex_state = 2}, - [2810] = {.lex_state = 202, .external_lex_state = 2}, - [2811] = {.lex_state = 317, .external_lex_state = 2}, - [2812] = {.lex_state = 202, .external_lex_state = 2}, - [2813] = {.lex_state = 202, .external_lex_state = 2}, - [2814] = {.lex_state = 202, .external_lex_state = 2}, - [2815] = {.lex_state = 317, .external_lex_state = 2}, - [2816] = {.lex_state = 202, .external_lex_state = 2}, - [2817] = {.lex_state = 309, .external_lex_state = 2}, - [2818] = {.lex_state = 202, .external_lex_state = 2}, - [2819] = {.lex_state = 332, .external_lex_state = 2}, - [2820] = {.lex_state = 309, .external_lex_state = 2}, - [2821] = {.lex_state = 309, .external_lex_state = 2}, - [2822] = {.lex_state = 309, .external_lex_state = 2}, - [2823] = {.lex_state = 34, .external_lex_state = 2}, - [2824] = {.lex_state = 309, .external_lex_state = 2}, - [2825] = {.lex_state = 309, .external_lex_state = 2}, - [2826] = {.lex_state = 309, .external_lex_state = 2}, - [2827] = {.lex_state = 309, .external_lex_state = 2}, - [2828] = {.lex_state = 309, .external_lex_state = 2}, - [2829] = {.lex_state = 303, .external_lex_state = 2}, - [2830] = {.lex_state = 332, .external_lex_state = 2}, - [2831] = {.lex_state = 309, .external_lex_state = 2}, - [2832] = {.lex_state = 309, .external_lex_state = 2}, - [2833] = {.lex_state = 309, .external_lex_state = 2}, - [2834] = {.lex_state = 332, .external_lex_state = 2}, - [2835] = {.lex_state = 202, .external_lex_state = 2}, - [2836] = {.lex_state = 325, .external_lex_state = 2}, - [2837] = {.lex_state = 309, .external_lex_state = 2}, - [2838] = {.lex_state = 309, .external_lex_state = 2}, - [2839] = {.lex_state = 202, .external_lex_state = 2}, - [2840] = {.lex_state = 309, .external_lex_state = 2}, - [2841] = {.lex_state = 202, .external_lex_state = 2}, - [2842] = {.lex_state = 309, .external_lex_state = 2}, - [2843] = {.lex_state = 202, .external_lex_state = 2}, - [2844] = {.lex_state = 309, .external_lex_state = 2}, - [2845] = {.lex_state = 309, .external_lex_state = 2}, - [2846] = {.lex_state = 202, .external_lex_state = 2}, - [2847] = {.lex_state = 202, .external_lex_state = 2}, - [2848] = {.lex_state = 202, .external_lex_state = 2}, - [2849] = {.lex_state = 332, .external_lex_state = 2}, - [2850] = {.lex_state = 202, .external_lex_state = 2}, - [2851] = {.lex_state = 202, .external_lex_state = 2}, - [2852] = {.lex_state = 202, .external_lex_state = 2}, - [2853] = {.lex_state = 202, .external_lex_state = 2}, - [2854] = {.lex_state = 325, .external_lex_state = 2}, - [2855] = {.lex_state = 317, .external_lex_state = 2}, - [2856] = {.lex_state = 332, .external_lex_state = 2}, - [2857] = {.lex_state = 309, .external_lex_state = 2}, - [2858] = {.lex_state = 256, .external_lex_state = 2}, - [2859] = {.lex_state = 358, .external_lex_state = 2}, - [2860] = {.lex_state = 358, .external_lex_state = 2}, - [2861] = {.lex_state = 34, .external_lex_state = 2}, - [2862] = {.lex_state = 304, .external_lex_state = 2}, - [2863] = {.lex_state = 304, .external_lex_state = 2}, - [2864] = {.lex_state = 358, .external_lex_state = 2}, - [2865] = {.lex_state = 358, .external_lex_state = 2}, - [2866] = {.lex_state = 304, .external_lex_state = 2}, - [2867] = {.lex_state = 323, .external_lex_state = 2}, - [2868] = {.lex_state = 338, .external_lex_state = 2}, - [2869] = {.lex_state = 1001}, - [2870] = {.lex_state = 323, .external_lex_state = 2}, - [2871] = {.lex_state = 323, .external_lex_state = 2}, - [2872] = {.lex_state = 304, .external_lex_state = 2}, - [2873] = {.lex_state = 304, .external_lex_state = 2}, - [2874] = {.lex_state = 304, .external_lex_state = 2}, - [2875] = {.lex_state = 304, .external_lex_state = 2}, - [2876] = {.lex_state = 324, .external_lex_state = 2}, - [2877] = {.lex_state = 304, .external_lex_state = 2}, - [2878] = {.lex_state = 304, .external_lex_state = 2}, - [2879] = {.lex_state = 256, .external_lex_state = 2}, - [2880] = {.lex_state = 323, .external_lex_state = 2}, - [2881] = {.lex_state = 315, .external_lex_state = 2}, - [2882] = {.lex_state = 219, .external_lex_state = 2}, - [2883] = {.lex_state = 256, .external_lex_state = 2}, - [2884] = {.lex_state = 309, .external_lex_state = 2}, - [2885] = {.lex_state = 256, .external_lex_state = 2}, - [2886] = {.lex_state = 995}, - [2887] = {.lex_state = 309, .external_lex_state = 2}, - [2888] = {.lex_state = 304, .external_lex_state = 2}, - [2889] = {.lex_state = 256, .external_lex_state = 2}, - [2890] = {.lex_state = 256, .external_lex_state = 2}, - [2891] = {.lex_state = 926}, - [2892] = {.lex_state = 323, .external_lex_state = 2}, - [2893] = {.lex_state = 256, .external_lex_state = 2}, - [2894] = {.lex_state = 304, .external_lex_state = 2}, - [2895] = {.lex_state = 256, .external_lex_state = 2}, - [2896] = {.lex_state = 323, .external_lex_state = 2}, - [2897] = {.lex_state = 304, .external_lex_state = 2}, - [2898] = {.lex_state = 35, .external_lex_state = 2}, - [2899] = {.lex_state = 926}, - [2900] = {.lex_state = 358, .external_lex_state = 2}, - [2901] = {.lex_state = 304, .external_lex_state = 2}, - [2902] = {.lex_state = 304, .external_lex_state = 2}, - [2903] = {.lex_state = 333, .external_lex_state = 2}, - [2904] = {.lex_state = 304, .external_lex_state = 2}, - [2905] = {.lex_state = 256, .external_lex_state = 2}, - [2906] = {.lex_state = 310, .external_lex_state = 2}, - [2907] = {.lex_state = 296, .external_lex_state = 2}, - [2908] = {.lex_state = 296, .external_lex_state = 2}, - [2909] = {.lex_state = 312, .external_lex_state = 2}, - [2910] = {.lex_state = 296, .external_lex_state = 2}, - [2911] = {.lex_state = 296, .external_lex_state = 2}, - [2912] = {.lex_state = 296, .external_lex_state = 2}, - [2913] = {.lex_state = 296, .external_lex_state = 2}, - [2914] = {.lex_state = 334, .external_lex_state = 2}, - [2915] = {.lex_state = 1034}, - [2916] = {.lex_state = 313, .external_lex_state = 2}, - [2917] = {.lex_state = 1005}, - [2918] = {.lex_state = 37, .external_lex_state = 2}, - [2919] = {.lex_state = 296, .external_lex_state = 2}, - [2920] = {.lex_state = 123}, - [2921] = {.lex_state = 310, .external_lex_state = 2}, - [2922] = {.lex_state = 296, .external_lex_state = 2}, - [2923] = {.lex_state = 296, .external_lex_state = 2}, - [2924] = {.lex_state = 296, .external_lex_state = 2}, - [2925] = {.lex_state = 125}, - [2926] = {.lex_state = 1009}, - [2927] = {.lex_state = 1036}, - [2928] = {.lex_state = 310, .external_lex_state = 2}, - [2929] = {.lex_state = 995}, - [2930] = {.lex_state = 310, .external_lex_state = 2}, - [2931] = {.lex_state = 310, .external_lex_state = 2}, - [2932] = {.lex_state = 926}, - [2933] = {.lex_state = 310, .external_lex_state = 2}, - [2934] = {.lex_state = 312, .external_lex_state = 2}, - [2935] = {.lex_state = 926}, - [2936] = {.lex_state = 339, .external_lex_state = 2}, - [2937] = {.lex_state = 219, .external_lex_state = 2}, - [2938] = {.lex_state = 325, .external_lex_state = 2}, - [2939] = {.lex_state = 926}, - [2940] = {.lex_state = 1005}, - [2941] = {.lex_state = 311, .external_lex_state = 2}, - [2942] = {.lex_state = 926}, - [2943] = {.lex_state = 219, .external_lex_state = 2}, - [2944] = {.lex_state = 1001}, - [2945] = {.lex_state = 334, .external_lex_state = 2}, - [2946] = {.lex_state = 325, .external_lex_state = 2}, - [2947] = {.lex_state = 302, .external_lex_state = 2}, - [2948] = {.lex_state = 296, .external_lex_state = 2}, - [2949] = {.lex_state = 296, .external_lex_state = 2}, - [2950] = {.lex_state = 296, .external_lex_state = 2}, - [2951] = {.lex_state = 325, .external_lex_state = 2}, - [2952] = {.lex_state = 314, .external_lex_state = 2}, - [2953] = {.lex_state = 314, .external_lex_state = 2}, - [2954] = {.lex_state = 309, .external_lex_state = 2}, - [2955] = {.lex_state = 309, .external_lex_state = 2}, - [2956] = {.lex_state = 314, .external_lex_state = 2}, - [2957] = {.lex_state = 127}, - [2958] = {.lex_state = 314, .external_lex_state = 2}, - [2959] = {.lex_state = 314, .external_lex_state = 2}, - [2960] = {.lex_state = 314, .external_lex_state = 2}, - [2961] = {.lex_state = 314, .external_lex_state = 2}, - [2962] = {.lex_state = 314, .external_lex_state = 2}, - [2963] = {.lex_state = 314, .external_lex_state = 2}, - [2964] = {.lex_state = 314, .external_lex_state = 2}, - [2965] = {.lex_state = 314, .external_lex_state = 2}, - [2966] = {.lex_state = 314, .external_lex_state = 2}, - [2967] = {.lex_state = 314, .external_lex_state = 2}, - [2968] = {.lex_state = 314, .external_lex_state = 2}, - [2969] = {.lex_state = 314, .external_lex_state = 2}, - [2970] = {.lex_state = 314, .external_lex_state = 2}, - [2971] = {.lex_state = 314, .external_lex_state = 2}, - [2972] = {.lex_state = 314, .external_lex_state = 2}, - [2973] = {.lex_state = 314, .external_lex_state = 2}, - [2974] = {.lex_state = 314, .external_lex_state = 2}, - [2975] = {.lex_state = 314, .external_lex_state = 2}, - [2976] = {.lex_state = 314, .external_lex_state = 2}, - [2977] = {.lex_state = 314, .external_lex_state = 2}, - [2978] = {.lex_state = 314, .external_lex_state = 2}, - [2979] = {.lex_state = 314, .external_lex_state = 2}, - [2980] = {.lex_state = 335, .external_lex_state = 2}, - [2981] = {.lex_state = 335, .external_lex_state = 2}, - [2982] = {.lex_state = 359, .external_lex_state = 2}, - [2983] = {.lex_state = 314, .external_lex_state = 2}, - [2984] = {.lex_state = 1009}, - [2985] = {.lex_state = 127}, - [2986] = {.lex_state = 359, .external_lex_state = 2}, - [2987] = {.lex_state = 1034}, - [2988] = {.lex_state = 1036}, - [2989] = {.lex_state = 335, .external_lex_state = 2}, - [2990] = {.lex_state = 314, .external_lex_state = 2}, - [2991] = {.lex_state = 1038}, - [2992] = {.lex_state = 314, .external_lex_state = 2}, - [2993] = {.lex_state = 335, .external_lex_state = 2}, - [2994] = {.lex_state = 314, .external_lex_state = 2}, - [2995] = {.lex_state = 314, .external_lex_state = 2}, - [2996] = {.lex_state = 300, .external_lex_state = 2}, - [2997] = {.lex_state = 314, .external_lex_state = 2}, - [2998] = {.lex_state = 359, .external_lex_state = 2}, - [2999] = {.lex_state = 314, .external_lex_state = 2}, - [3000] = {.lex_state = 37, .external_lex_state = 2}, - [3001] = {.lex_state = 314, .external_lex_state = 2}, - [3002] = {.lex_state = 314, .external_lex_state = 2}, - [3003] = {.lex_state = 314, .external_lex_state = 2}, - [3004] = {.lex_state = 1005}, - [3005] = {.lex_state = 335, .external_lex_state = 2}, - [3006] = {.lex_state = 1038}, - [3007] = {.lex_state = 41, .external_lex_state = 2}, - [3008] = {.lex_state = 1009}, - [3009] = {.lex_state = 314, .external_lex_state = 2}, - [3010] = {.lex_state = 1009}, - [3011] = {.lex_state = 314, .external_lex_state = 2}, - [3012] = {.lex_state = 359, .external_lex_state = 2}, - [3013] = {.lex_state = 1009}, - [3014] = {.lex_state = 314, .external_lex_state = 2}, - [3015] = {.lex_state = 314, .external_lex_state = 2}, - [3016] = {.lex_state = 136}, - [3017] = {.lex_state = 296, .external_lex_state = 2}, - [3018] = {.lex_state = 335, .external_lex_state = 2}, - [3019] = {.lex_state = 299, .external_lex_state = 2}, - [3020] = {.lex_state = 138}, - [3021] = {.lex_state = 309, .external_lex_state = 2}, - [3022] = {.lex_state = 314, .external_lex_state = 2}, - [3023] = {.lex_state = 335, .external_lex_state = 2}, - [3024] = {.lex_state = 1009}, - [3025] = {.lex_state = 129}, - [3026] = {.lex_state = 314, .external_lex_state = 2}, - [3027] = {.lex_state = 314, .external_lex_state = 2}, - [3028] = {.lex_state = 314, .external_lex_state = 2}, - [3029] = {.lex_state = 314, .external_lex_state = 2}, - [3030] = {.lex_state = 314, .external_lex_state = 2}, - [3031] = {.lex_state = 314, .external_lex_state = 2}, - [3032] = {.lex_state = 335, .external_lex_state = 2}, - [3033] = {.lex_state = 314, .external_lex_state = 2}, - [3034] = {.lex_state = 296, .external_lex_state = 2}, - [3035] = {.lex_state = 314, .external_lex_state = 2}, - [3036] = {.lex_state = 314, .external_lex_state = 2}, - [3037] = {.lex_state = 314, .external_lex_state = 2}, - [3038] = {.lex_state = 335, .external_lex_state = 2}, - [3039] = {.lex_state = 314, .external_lex_state = 2}, - [3040] = {.lex_state = 1005}, - [3041] = {.lex_state = 314, .external_lex_state = 2}, - [3042] = {.lex_state = 359, .external_lex_state = 2}, - [3043] = {.lex_state = 299, .external_lex_state = 2}, - [3044] = {.lex_state = 335, .external_lex_state = 2}, - [3045] = {.lex_state = 37, .external_lex_state = 2}, - [3046] = {.lex_state = 1040}, - [3047] = {.lex_state = 129}, - [3048] = {.lex_state = 129}, - [3049] = {.lex_state = 1040}, - [3050] = {.lex_state = 37, .external_lex_state = 2}, - [3051] = {.lex_state = 37, .external_lex_state = 2}, - [3052] = {.lex_state = 37, .external_lex_state = 2}, - [3053] = {.lex_state = 1040}, - [3054] = {.lex_state = 37, .external_lex_state = 2}, - [3055] = {.lex_state = 41, .external_lex_state = 2}, - [3056] = {.lex_state = 37, .external_lex_state = 2}, - [3057] = {.lex_state = 37, .external_lex_state = 2}, - [3058] = {.lex_state = 1038}, - [3059] = {.lex_state = 37, .external_lex_state = 2}, - [3060] = {.lex_state = 37, .external_lex_state = 2}, - [3061] = {.lex_state = 37, .external_lex_state = 2}, - [3062] = {.lex_state = 37, .external_lex_state = 2}, - [3063] = {.lex_state = 129}, - [3064] = {.lex_state = 37, .external_lex_state = 2}, - [3065] = {.lex_state = 37, .external_lex_state = 2}, - [3066] = {.lex_state = 37, .external_lex_state = 2}, - [3067] = {.lex_state = 37, .external_lex_state = 2}, - [3068] = {.lex_state = 1009}, - [3069] = {.lex_state = 37, .external_lex_state = 2}, - [3070] = {.lex_state = 140}, - [3071] = {.lex_state = 37, .external_lex_state = 2}, - [3072] = {.lex_state = 37, .external_lex_state = 2}, - [3073] = {.lex_state = 37, .external_lex_state = 2}, - [3074] = {.lex_state = 37, .external_lex_state = 2}, - [3075] = {.lex_state = 37, .external_lex_state = 2}, - [3076] = {.lex_state = 37, .external_lex_state = 2}, - [3077] = {.lex_state = 1009}, - [3078] = {.lex_state = 37, .external_lex_state = 2}, - [3079] = {.lex_state = 37, .external_lex_state = 2}, - [3080] = {.lex_state = 1040}, - [3081] = {.lex_state = 37, .external_lex_state = 2}, - [3082] = {.lex_state = 37, .external_lex_state = 2}, - [3083] = {.lex_state = 37, .external_lex_state = 2}, - [3084] = {.lex_state = 37, .external_lex_state = 2}, - [3085] = {.lex_state = 37, .external_lex_state = 2}, - [3086] = {.lex_state = 140}, - [3087] = {.lex_state = 37, .external_lex_state = 2}, - [3088] = {.lex_state = 37, .external_lex_state = 2}, - [3089] = {.lex_state = 37, .external_lex_state = 2}, - [3090] = {.lex_state = 129}, - [3091] = {.lex_state = 37, .external_lex_state = 2}, - [3092] = {.lex_state = 37, .external_lex_state = 2}, - [3093] = {.lex_state = 37, .external_lex_state = 2}, - [3094] = {.lex_state = 37, .external_lex_state = 2}, - [3095] = {.lex_state = 37, .external_lex_state = 2}, - [3096] = {.lex_state = 1038}, - [3097] = {.lex_state = 37, .external_lex_state = 2}, - [3098] = {.lex_state = 37, .external_lex_state = 2}, - [3099] = {.lex_state = 37, .external_lex_state = 2}, - [3100] = {.lex_state = 37, .external_lex_state = 2}, - [3101] = {.lex_state = 37, .external_lex_state = 2}, - [3102] = {.lex_state = 37, .external_lex_state = 2}, - [3103] = {.lex_state = 37, .external_lex_state = 2}, - [3104] = {.lex_state = 37, .external_lex_state = 2}, - [3105] = {.lex_state = 37, .external_lex_state = 2}, - [3106] = {.lex_state = 37, .external_lex_state = 2}, - [3107] = {.lex_state = 1009}, - [3108] = {.lex_state = 37, .external_lex_state = 2}, - [3109] = {.lex_state = 37, .external_lex_state = 2}, - [3110] = {.lex_state = 37, .external_lex_state = 2}, - [3111] = {.lex_state = 37, .external_lex_state = 2}, - [3112] = {.lex_state = 1040}, - [3113] = {.lex_state = 37, .external_lex_state = 2}, - [3114] = {.lex_state = 37, .external_lex_state = 2}, - [3115] = {.lex_state = 37, .external_lex_state = 2}, - [3116] = {.lex_state = 37, .external_lex_state = 2}, - [3117] = {.lex_state = 37, .external_lex_state = 2}, - [3118] = {.lex_state = 1009}, - [3119] = {.lex_state = 37, .external_lex_state = 2}, - [3120] = {.lex_state = 37, .external_lex_state = 2}, - [3121] = {.lex_state = 37, .external_lex_state = 2}, - [3122] = {.lex_state = 37, .external_lex_state = 2}, - [3123] = {.lex_state = 37, .external_lex_state = 2}, - [3124] = {.lex_state = 37, .external_lex_state = 2}, - [3125] = {.lex_state = 37, .external_lex_state = 2}, - [3126] = {.lex_state = 142}, - [3127] = {.lex_state = 1040}, - [3128] = {.lex_state = 142}, - [3129] = {.lex_state = 37, .external_lex_state = 2}, - [3130] = {.lex_state = 1040}, - [3131] = {.lex_state = 1040}, - [3132] = {.lex_state = 142}, - [3133] = {.lex_state = 1040}, - [3134] = {.lex_state = 142}, - [3135] = {.lex_state = 142}, - [3136] = {.lex_state = 990}, - [3137] = {.lex_state = 1040}, - [3138] = {.lex_state = 77}, - [3139] = {.lex_state = 77}, - [3140] = {.lex_state = 77}, - [3141] = {.lex_state = 77}, - [3142] = {.lex_state = 77}, - [3143] = {.lex_state = 77}, - [3144] = {.lex_state = 990}, - [3145] = {.lex_state = 991}, - [3146] = {.lex_state = 77}, - [3147] = {.lex_state = 77}, - [3148] = {.lex_state = 77}, - [3149] = {.lex_state = 77}, - [3150] = {.lex_state = 77}, - [3151] = {.lex_state = 77}, - [3152] = {.lex_state = 77}, - [3153] = {.lex_state = 77}, - [3154] = {.lex_state = 991}, - [3155] = {.lex_state = 77}, - [3156] = {.lex_state = 991}, - [3157] = {.lex_state = 77}, - [3158] = {.lex_state = 991}, - [3159] = {.lex_state = 143}, - [3160] = {.lex_state = 991}, - [3161] = {.lex_state = 1051}, - [3162] = {.lex_state = 1051}, - [3163] = {.lex_state = 1051}, - [3164] = {.lex_state = 1051}, - [3165] = {.lex_state = 928}, - [3166] = {.lex_state = 77}, - [3167] = {.lex_state = 928}, - [3168] = {.lex_state = 69}, - [3169] = {.lex_state = 1051}, - [3170] = {.lex_state = 928}, - [3171] = {.lex_state = 928}, - [3172] = {.lex_state = 928}, - [3173] = {.lex_state = 1051}, - [3174] = {.lex_state = 149}, - [3175] = {.lex_state = 982}, - [3176] = {.lex_state = 928}, - [3177] = {.lex_state = 149}, - [3178] = {.lex_state = 149}, - [3179] = {.lex_state = 149}, - [3180] = {.lex_state = 77}, - [3181] = {.lex_state = 1054}, - [3182] = {.lex_state = 1054}, - [3183] = {.lex_state = 1051}, - [3184] = {.lex_state = 1047}, - [3185] = {.lex_state = 1047}, - [3186] = {.lex_state = 1054}, - [3187] = {.lex_state = 1051}, - [3188] = {.lex_state = 149}, - [3189] = {.lex_state = 928}, - [3190] = {.lex_state = 928}, - [3191] = {.lex_state = 1051}, - [3192] = {.lex_state = 1051}, - [3193] = {.lex_state = 928}, - [3194] = {.lex_state = 928}, - [3195] = {.lex_state = 928}, - [3196] = {.lex_state = 1046}, - [3197] = {.lex_state = 152}, - [3198] = {.lex_state = 77}, - [3199] = {.lex_state = 77}, - [3200] = {.lex_state = 928}, - [3201] = {.lex_state = 928}, - [3202] = {.lex_state = 146}, - [3203] = {.lex_state = 982}, - [3204] = {.lex_state = 982}, - [3205] = {.lex_state = 982}, - [3206] = {.lex_state = 77}, - [3207] = {.lex_state = 77}, - [3208] = {.lex_state = 77}, - [3209] = {.lex_state = 77}, - [3210] = {.lex_state = 77}, - [3211] = {.lex_state = 77}, - [3212] = {.lex_state = 1054}, - [3213] = {.lex_state = 1054}, - [3214] = {.lex_state = 1047}, - [3215] = {.lex_state = 1047}, - [3216] = {.lex_state = 990}, - [3217] = {.lex_state = 152}, - [3218] = {.lex_state = 152}, - [3219] = {.lex_state = 982}, - [3220] = {.lex_state = 77}, - [3221] = {.lex_state = 147}, - [3222] = {.lex_state = 147}, - [3223] = {.lex_state = 990}, - [3224] = {.lex_state = 990}, - [3225] = {.lex_state = 990}, - [3226] = {.lex_state = 990}, - [3227] = {.lex_state = 990}, - [3228] = {.lex_state = 990}, - [3229] = {.lex_state = 990}, - [3230] = {.lex_state = 990}, - [3231] = {.lex_state = 990}, - [3232] = {.lex_state = 990}, - [3233] = {.lex_state = 990}, - [3234] = {.lex_state = 990}, - [3235] = {.lex_state = 1046}, - [3236] = {.lex_state = 121}, - [3237] = {.lex_state = 121}, - [3238] = {.lex_state = 121}, - [3239] = {.lex_state = 121}, - [3240] = {.lex_state = 121}, - [3241] = {.lex_state = 121}, - [3242] = {.lex_state = 121}, - [3243] = {.lex_state = 121}, - [3244] = {.lex_state = 121}, - [3245] = {.lex_state = 121}, - [3246] = {.lex_state = 121}, - [3247] = {.lex_state = 121}, - [3248] = {.lex_state = 77}, - [3249] = {.lex_state = 121}, - [3250] = {.lex_state = 121}, - [3251] = {.lex_state = 121}, - [3252] = {.lex_state = 121}, - [3253] = {.lex_state = 121}, - [3254] = {.lex_state = 121}, - [3255] = {.lex_state = 121}, - [3256] = {.lex_state = 121}, - [3257] = {.lex_state = 121}, - [3258] = {.lex_state = 121}, - [3259] = {.lex_state = 121}, - [3260] = {.lex_state = 121}, - [3261] = {.lex_state = 121}, - [3262] = {.lex_state = 121}, - [3263] = {.lex_state = 121}, - [3264] = {.lex_state = 121}, - [3265] = {.lex_state = 121}, - [3266] = {.lex_state = 121}, - [3267] = {.lex_state = 121}, - [3268] = {.lex_state = 121}, - [3269] = {.lex_state = 121}, - [3270] = {.lex_state = 121}, - [3271] = {.lex_state = 121}, - [3272] = {.lex_state = 121}, - [3273] = {.lex_state = 121}, - [3274] = {.lex_state = 121}, - [3275] = {.lex_state = 121}, - [3276] = {.lex_state = 121}, - [3277] = {.lex_state = 121}, - [3278] = {.lex_state = 121}, - [3279] = {.lex_state = 121}, - [3280] = {.lex_state = 121}, - [3281] = {.lex_state = 121}, - [3282] = {.lex_state = 121}, - [3283] = {.lex_state = 121}, - [3284] = {.lex_state = 121}, - [3285] = {.lex_state = 121}, - [3286] = {.lex_state = 121}, - [3287] = {.lex_state = 121}, - [3288] = {.lex_state = 121}, - [3289] = {.lex_state = 121}, - [3290] = {.lex_state = 121}, - [3291] = {.lex_state = 121}, - [3292] = {.lex_state = 121}, - [3293] = {.lex_state = 121}, - [3294] = {.lex_state = 121}, - [3295] = {.lex_state = 121}, - [3296] = {.lex_state = 121}, - [3297] = {.lex_state = 121}, - [3298] = {.lex_state = 121}, - [3299] = {.lex_state = 121}, - [3300] = {.lex_state = 121}, - [3301] = {.lex_state = 121}, - [3302] = {.lex_state = 121}, - [3303] = {.lex_state = 121}, - [3304] = {.lex_state = 121}, - [3305] = {.lex_state = 121}, - [3306] = {.lex_state = 121}, - [3307] = {.lex_state = 121}, - [3308] = {.lex_state = 121}, - [3309] = {.lex_state = 121}, - [3310] = {.lex_state = 121}, - [3311] = {.lex_state = 121}, - [3312] = {.lex_state = 121}, - [3313] = {.lex_state = 121}, - [3314] = {.lex_state = 121}, - [3315] = {.lex_state = 121}, - [3316] = {.lex_state = 121}, - [3317] = {.lex_state = 121}, - [3318] = {.lex_state = 121}, - [3319] = {.lex_state = 121}, - [3320] = {.lex_state = 121}, - [3321] = {.lex_state = 121}, - [3322] = {.lex_state = 121}, - [3323] = {.lex_state = 121}, - [3324] = {.lex_state = 121}, - [3325] = {.lex_state = 121}, - [3326] = {.lex_state = 121}, - [3327] = {.lex_state = 121}, - [3328] = {.lex_state = 121}, - [3329] = {.lex_state = 121}, - [3330] = {.lex_state = 121}, - [3331] = {.lex_state = 121}, - [3332] = {.lex_state = 121}, - [3333] = {.lex_state = 77}, - [3334] = {.lex_state = 1054}, - [3335] = {.lex_state = 928}, - [3336] = {.lex_state = 928}, - [3337] = {.lex_state = 928}, - [3338] = {.lex_state = 990}, - [3339] = {.lex_state = 77}, - [3340] = {.lex_state = 77}, - [3341] = {.lex_state = 77}, - [3342] = {.lex_state = 990}, - [3343] = {.lex_state = 77}, - [3344] = {.lex_state = 990}, - [3345] = {.lex_state = 928}, - [3346] = {.lex_state = 77}, - [3347] = {.lex_state = 928}, - [3348] = {.lex_state = 121}, - [3349] = {.lex_state = 77}, - [3350] = {.lex_state = 218, .external_lex_state = 2}, - [3351] = {.lex_state = 990}, - [3352] = {.lex_state = 990}, - [3353] = {.lex_state = 990}, - [3354] = {.lex_state = 990}, - [3355] = {.lex_state = 990}, - [3356] = {.lex_state = 990}, - [3357] = {.lex_state = 990}, - [3358] = {.lex_state = 990}, - [3359] = {.lex_state = 990}, - [3360] = {.lex_state = 990}, - [3361] = {.lex_state = 990}, - [3362] = {.lex_state = 990}, - [3363] = {.lex_state = 214, .external_lex_state = 2}, - [3364] = {.lex_state = 77}, - [3365] = {.lex_state = 77}, - [3366] = {.lex_state = 928}, - [3367] = {.lex_state = 926}, - [3368] = {.lex_state = 77}, - [3369] = {.lex_state = 77}, - [3370] = {.lex_state = 928}, - [3371] = {.lex_state = 77}, - [3372] = {.lex_state = 928}, - [3373] = {.lex_state = 406}, - [3374] = {.lex_state = 407}, - [3375] = {.lex_state = 928}, - [3376] = {.lex_state = 990}, - [3377] = {.lex_state = 130}, - [3378] = {.lex_state = 131}, - [3379] = {.lex_state = 103}, - [3380] = {.lex_state = 215, .external_lex_state = 2}, - [3381] = {.lex_state = 103}, - [3382] = {.lex_state = 410}, - [3383] = {.lex_state = 210}, - [3384] = {.lex_state = 409}, - [3385] = {.lex_state = 210}, - [3386] = {.lex_state = 416}, - [3387] = {.lex_state = 982}, - [3388] = {.lex_state = 408}, - [3389] = {.lex_state = 926}, - [3390] = {.lex_state = 408}, - [3391] = {.lex_state = 215, .external_lex_state = 2}, - [3392] = {.lex_state = 103}, - [3393] = {.lex_state = 409}, - [3394] = {.lex_state = 77}, - [3395] = {.lex_state = 419}, - [3396] = {.lex_state = 982}, - [3397] = {.lex_state = 216, .external_lex_state = 2}, - [3398] = {.lex_state = 211}, - [3399] = {.lex_state = 132}, - [3400] = {.lex_state = 493}, - [3401] = {.lex_state = 77}, - [3402] = {.lex_state = 132}, - [3403] = {.lex_state = 411}, - [3404] = {.lex_state = 211}, - [3405] = {.lex_state = 103}, - [3406] = {.lex_state = 77}, - [3407] = {.lex_state = 216, .external_lex_state = 2}, - [3408] = {.lex_state = 216, .external_lex_state = 2}, - [3409] = {.lex_state = 133}, - [3410] = {.lex_state = 216, .external_lex_state = 2}, - [3411] = {.lex_state = 103}, - [3412] = {.lex_state = 417}, - [3413] = {.lex_state = 216, .external_lex_state = 2}, - [3414] = {.lex_state = 417}, - [3415] = {.lex_state = 982}, - [3416] = {.lex_state = 409}, - [3417] = {.lex_state = 77}, - [3418] = {.lex_state = 982}, - [3419] = {.lex_state = 409}, - [3420] = {.lex_state = 409}, - [3421] = {.lex_state = 982}, - [3422] = {.lex_state = 926}, - [3423] = {.lex_state = 926}, - [3424] = {.lex_state = 926}, - [3425] = {.lex_state = 926}, - [3426] = {.lex_state = 493}, - [3427] = {.lex_state = 926}, - [3428] = {.lex_state = 926}, - [3429] = {.lex_state = 418}, - [3430] = {.lex_state = 926}, - [3431] = {.lex_state = 926}, - [3432] = {.lex_state = 418}, - [3433] = {.lex_state = 926}, - [3434] = {.lex_state = 418}, - [3435] = {.lex_state = 493}, - [3436] = {.lex_state = 418}, - [3437] = {.lex_state = 493}, - [3438] = {.lex_state = 420}, - [3439] = {.lex_state = 926}, - [3440] = {.lex_state = 982}, - [3441] = {.lex_state = 926}, - [3442] = {.lex_state = 493}, - [3443] = {.lex_state = 103}, - [3444] = {.lex_state = 103}, - [3445] = {.lex_state = 418}, - [3446] = {.lex_state = 982}, - [3447] = {.lex_state = 982}, - [3448] = {.lex_state = 982}, - [3449] = {.lex_state = 982}, - [3450] = {.lex_state = 133}, - [3451] = {.lex_state = 982}, - [3452] = {.lex_state = 133}, - [3453] = {.lex_state = 926}, - [3454] = {.lex_state = 133}, - [3455] = {.lex_state = 133}, - [3456] = {.lex_state = 103}, - [3457] = {.lex_state = 420}, - [3458] = {.lex_state = 103}, - [3459] = {.lex_state = 421}, - [3460] = {.lex_state = 103}, - [3461] = {.lex_state = 926}, - [3462] = {.lex_state = 103}, - [3463] = {.lex_state = 926}, - [3464] = {.lex_state = 493}, - [3465] = {.lex_state = 926}, - [3466] = {.lex_state = 98, .external_lex_state = 2}, - [3467] = {.lex_state = 928}, - [3468] = {.lex_state = 103}, - [3469] = {.lex_state = 103}, - [3470] = {.lex_state = 493}, - [3471] = {.lex_state = 991}, - [3472] = {.lex_state = 991}, - [3473] = {.lex_state = 991}, - [3474] = {.lex_state = 991}, - [3475] = {.lex_state = 991}, - [3476] = {.lex_state = 991}, - [3477] = {.lex_state = 991}, - [3478] = {.lex_state = 991}, - [3479] = {.lex_state = 991}, - [3480] = {.lex_state = 98, .external_lex_state = 2}, - [3481] = {.lex_state = 991}, - [3482] = {.lex_state = 98, .external_lex_state = 2}, - [3483] = {.lex_state = 421}, - [3484] = {.lex_state = 991}, - [3485] = {.lex_state = 421}, - [3486] = {.lex_state = 991}, - [3487] = {.lex_state = 991}, - [3488] = {.lex_state = 98, .external_lex_state = 2}, - [3489] = {.lex_state = 421}, - [3490] = {.lex_state = 928}, - [3491] = {.lex_state = 421}, - [3492] = {.lex_state = 98, .external_lex_state = 2}, - [3493] = {.lex_state = 991}, - [3494] = {.lex_state = 103}, - [3495] = {.lex_state = 98, .external_lex_state = 2}, - [3496] = {.lex_state = 98, .external_lex_state = 2}, - [3497] = {.lex_state = 98, .external_lex_state = 2}, - [3498] = {.lex_state = 98, .external_lex_state = 2}, - [3499] = {.lex_state = 98, .external_lex_state = 2}, - [3500] = {.lex_state = 98, .external_lex_state = 2}, - [3501] = {.lex_state = 98, .external_lex_state = 2}, - [3502] = {.lex_state = 98, .external_lex_state = 2}, - [3503] = {.lex_state = 103}, - [3504] = {.lex_state = 98, .external_lex_state = 2}, - [3505] = {.lex_state = 98, .external_lex_state = 2}, - [3506] = {.lex_state = 98, .external_lex_state = 2}, - [3507] = {.lex_state = 98, .external_lex_state = 2}, - [3508] = {.lex_state = 991}, - [3509] = {.lex_state = 991}, - [3510] = {.lex_state = 98, .external_lex_state = 2}, - [3511] = {.lex_state = 98, .external_lex_state = 2}, - [3512] = {.lex_state = 98, .external_lex_state = 2}, - [3513] = {.lex_state = 98, .external_lex_state = 2}, - [3514] = {.lex_state = 991}, - [3515] = {.lex_state = 991}, - [3516] = {.lex_state = 991}, - [3517] = {.lex_state = 98, .external_lex_state = 2}, - [3518] = {.lex_state = 991}, - [3519] = {.lex_state = 991}, - [3520] = {.lex_state = 991}, - [3521] = {.lex_state = 991}, - [3522] = {.lex_state = 991}, - [3523] = {.lex_state = 991}, - [3524] = {.lex_state = 98, .external_lex_state = 2}, - [3525] = {.lex_state = 928}, - [3526] = {.lex_state = 121}, - [3527] = {.lex_state = 98, .external_lex_state = 2}, - [3528] = {.lex_state = 199, .external_lex_state = 2}, - [3529] = {.lex_state = 926}, - [3530] = {.lex_state = 928}, - [3531] = {.lex_state = 991}, - [3532] = {.lex_state = 103}, - [3533] = {.lex_state = 928}, - [3534] = {.lex_state = 928}, - [3535] = {.lex_state = 928}, - [3536] = {.lex_state = 928}, - [3537] = {.lex_state = 926}, - [3538] = {.lex_state = 98, .external_lex_state = 2}, - [3539] = {.lex_state = 991}, - [3540] = {.lex_state = 928}, - [3541] = {.lex_state = 98, .external_lex_state = 2}, - [3542] = {.lex_state = 103}, - [3543] = {.lex_state = 103}, - [3544] = {.lex_state = 98, .external_lex_state = 2}, - [3545] = {.lex_state = 98, .external_lex_state = 2}, - [3546] = {.lex_state = 928}, - [3547] = {.lex_state = 105}, - [3548] = {.lex_state = 98, .external_lex_state = 2}, - [3549] = {.lex_state = 98, .external_lex_state = 2}, - [3550] = {.lex_state = 98, .external_lex_state = 2}, - [3551] = {.lex_state = 206, .external_lex_state = 2}, - [3552] = {.lex_state = 928}, - [3553] = {.lex_state = 928}, - [3554] = {.lex_state = 928}, - [3555] = {.lex_state = 928}, - [3556] = {.lex_state = 102}, - [3557] = {.lex_state = 926}, - [3558] = {.lex_state = 98, .external_lex_state = 2}, - [3559] = {.lex_state = 98, .external_lex_state = 2}, - [3560] = {.lex_state = 356, .external_lex_state = 2}, - [3561] = {.lex_state = 509}, - [3562] = {.lex_state = 926}, - [3563] = {.lex_state = 121}, - [3564] = {.lex_state = 926}, - [3565] = {.lex_state = 356, .external_lex_state = 2}, - [3566] = {.lex_state = 356, .external_lex_state = 2}, - [3567] = {.lex_state = 356, .external_lex_state = 2}, - [3568] = {.lex_state = 926}, - [3569] = {.lex_state = 926}, - [3570] = {.lex_state = 509}, - [3571] = {.lex_state = 509}, - [3572] = {.lex_state = 509}, - [3573] = {.lex_state = 926}, - [3574] = {.lex_state = 926}, - [3575] = {.lex_state = 204, .external_lex_state = 2}, - [3576] = {.lex_state = 926}, - [3577] = {.lex_state = 991}, - [3578] = {.lex_state = 98, .external_lex_state = 2}, - [3579] = {.lex_state = 217, .external_lex_state = 2}, - [3580] = {.lex_state = 121}, - [3581] = {.lex_state = 926}, - [3582] = {.lex_state = 356, .external_lex_state = 2}, - [3583] = {.lex_state = 98, .external_lex_state = 2}, - [3584] = {.lex_state = 98, .external_lex_state = 2}, - [3585] = {.lex_state = 509}, - [3586] = {.lex_state = 105}, - [3587] = {.lex_state = 926}, - [3588] = {.lex_state = 34, .external_lex_state = 2}, - [3589] = {.lex_state = 34, .external_lex_state = 2}, - [3590] = {.lex_state = 926}, - [3591] = {.lex_state = 34, .external_lex_state = 2}, - [3592] = {.lex_state = 150}, - [3593] = {.lex_state = 34, .external_lex_state = 2}, - [3594] = {.lex_state = 102}, - [3595] = {.lex_state = 510}, - [3596] = {.lex_state = 510}, - [3597] = {.lex_state = 510}, - [3598] = {.lex_state = 34, .external_lex_state = 2}, - [3599] = {.lex_state = 34, .external_lex_state = 2}, - [3600] = {.lex_state = 34, .external_lex_state = 2}, - [3601] = {.lex_state = 990}, - [3602] = {.lex_state = 510}, - [3603] = {.lex_state = 34, .external_lex_state = 2}, - [3604] = {.lex_state = 34, .external_lex_state = 2}, - [3605] = {.lex_state = 34, .external_lex_state = 2}, - [3606] = {.lex_state = 926}, - [3607] = {.lex_state = 34, .external_lex_state = 2}, - [3608] = {.lex_state = 34, .external_lex_state = 2}, - [3609] = {.lex_state = 34, .external_lex_state = 2}, - [3610] = {.lex_state = 34, .external_lex_state = 2}, - [3611] = {.lex_state = 926}, - [3612] = {.lex_state = 926}, - [3613] = {.lex_state = 34, .external_lex_state = 2}, - [3614] = {.lex_state = 150}, - [3615] = {.lex_state = 34, .external_lex_state = 2}, - [3616] = {.lex_state = 926}, - [3617] = {.lex_state = 926}, - [3618] = {.lex_state = 926}, - [3619] = {.lex_state = 34, .external_lex_state = 2}, - [3620] = {.lex_state = 34, .external_lex_state = 2}, - [3621] = {.lex_state = 34, .external_lex_state = 2}, - [3622] = {.lex_state = 34, .external_lex_state = 2}, - [3623] = {.lex_state = 34, .external_lex_state = 2}, - [3624] = {.lex_state = 34, .external_lex_state = 2}, - [3625] = {.lex_state = 34, .external_lex_state = 2}, - [3626] = {.lex_state = 990}, - [3627] = {.lex_state = 34, .external_lex_state = 2}, - [3628] = {.lex_state = 34, .external_lex_state = 2}, - [3629] = {.lex_state = 34, .external_lex_state = 2}, - [3630] = {.lex_state = 34, .external_lex_state = 2}, - [3631] = {.lex_state = 34, .external_lex_state = 2}, - [3632] = {.lex_state = 34, .external_lex_state = 2}, - [3633] = {.lex_state = 34, .external_lex_state = 2}, - [3634] = {.lex_state = 34, .external_lex_state = 2}, - [3635] = {.lex_state = 34, .external_lex_state = 2}, - [3636] = {.lex_state = 34, .external_lex_state = 2}, - [3637] = {.lex_state = 34, .external_lex_state = 2}, - [3638] = {.lex_state = 34, .external_lex_state = 2}, - [3639] = {.lex_state = 34, .external_lex_state = 2}, - [3640] = {.lex_state = 34, .external_lex_state = 2}, - [3641] = {.lex_state = 34, .external_lex_state = 2}, - [3642] = {.lex_state = 61}, - [3643] = {.lex_state = 34, .external_lex_state = 2}, - [3644] = {.lex_state = 34, .external_lex_state = 2}, - [3645] = {.lex_state = 61}, - [3646] = {.lex_state = 34, .external_lex_state = 2}, - [3647] = {.lex_state = 34, .external_lex_state = 2}, - [3648] = {.lex_state = 34, .external_lex_state = 2}, - [3649] = {.lex_state = 102}, - [3650] = {.lex_state = 34, .external_lex_state = 2}, - [3651] = {.lex_state = 150}, - [3652] = {.lex_state = 34, .external_lex_state = 2}, - [3653] = {.lex_state = 34, .external_lex_state = 2}, - [3654] = {.lex_state = 150}, - [3655] = {.lex_state = 451}, - [3656] = {.lex_state = 105}, - [3657] = {.lex_state = 34, .external_lex_state = 2}, - [3658] = {.lex_state = 34, .external_lex_state = 2}, - [3659] = {.lex_state = 34, .external_lex_state = 2}, - [3660] = {.lex_state = 150}, - [3661] = {.lex_state = 34, .external_lex_state = 2}, - [3662] = {.lex_state = 103}, - [3663] = {.lex_state = 121}, - [3664] = {.lex_state = 121}, - [3665] = {.lex_state = 950}, - [3666] = {.lex_state = 950}, - [3667] = {.lex_state = 950}, - [3668] = {.lex_state = 950}, - [3669] = {.lex_state = 121}, - [3670] = {.lex_state = 926}, - [3671] = {.lex_state = 950}, - [3672] = {.lex_state = 950}, - [3673] = {.lex_state = 950}, - [3674] = {.lex_state = 950}, - [3675] = {.lex_state = 121}, - [3676] = {.lex_state = 121}, - [3677] = {.lex_state = 121}, - [3678] = {.lex_state = 950}, - [3679] = {.lex_state = 121}, - [3680] = {.lex_state = 121}, - [3681] = {.lex_state = 950}, - [3682] = {.lex_state = 121}, - [3683] = {.lex_state = 990}, - [3684] = {.lex_state = 121}, - [3685] = {.lex_state = 511}, - [3686] = {.lex_state = 121}, - [3687] = {.lex_state = 121}, - [3688] = {.lex_state = 511}, - [3689] = {.lex_state = 121}, - [3690] = {.lex_state = 950}, - [3691] = {.lex_state = 121}, - [3692] = {.lex_state = 121}, - [3693] = {.lex_state = 121}, - [3694] = {.lex_state = 990}, - [3695] = {.lex_state = 950}, - [3696] = {.lex_state = 990}, - [3697] = {.lex_state = 121}, - [3698] = {.lex_state = 121}, - [3699] = {.lex_state = 121}, - [3700] = {.lex_state = 121}, - [3701] = {.lex_state = 121}, - [3702] = {.lex_state = 121}, - [3703] = {.lex_state = 990}, - [3704] = {.lex_state = 121}, - [3705] = {.lex_state = 121}, - [3706] = {.lex_state = 990}, - [3707] = {.lex_state = 950}, - [3708] = {.lex_state = 990}, - [3709] = {.lex_state = 121}, - [3710] = {.lex_state = 121}, - [3711] = {.lex_state = 121}, - [3712] = {.lex_state = 121}, - [3713] = {.lex_state = 121}, - [3714] = {.lex_state = 121}, - [3715] = {.lex_state = 121}, - [3716] = {.lex_state = 121}, - [3717] = {.lex_state = 121}, - [3718] = {.lex_state = 103}, - [3719] = {.lex_state = 103}, - [3720] = {.lex_state = 103}, - [3721] = {.lex_state = 103}, - [3722] = {.lex_state = 103}, - [3723] = {.lex_state = 103}, - [3724] = {.lex_state = 103}, - [3725] = {.lex_state = 103}, - [3726] = {.lex_state = 103}, - [3727] = {.lex_state = 103}, - [3728] = {.lex_state = 103}, - [3729] = {.lex_state = 121}, - [3730] = {.lex_state = 121}, - [3731] = {.lex_state = 121}, - [3732] = {.lex_state = 121}, - [3733] = {.lex_state = 121}, - [3734] = {.lex_state = 121}, - [3735] = {.lex_state = 121}, - [3736] = {.lex_state = 121}, - [3737] = {.lex_state = 121}, - [3738] = {.lex_state = 121}, - [3739] = {.lex_state = 121}, - [3740] = {.lex_state = 950}, - [3741] = {.lex_state = 121}, - [3742] = {.lex_state = 121}, - [3743] = {.lex_state = 121}, - [3744] = {.lex_state = 926}, - [3745] = {.lex_state = 121}, - [3746] = {.lex_state = 121}, - [3747] = {.lex_state = 121}, - [3748] = {.lex_state = 121}, - [3749] = {.lex_state = 121}, - [3750] = {.lex_state = 121}, - [3751] = {.lex_state = 511}, - [3752] = {.lex_state = 121}, - [3753] = {.lex_state = 926}, - [3754] = {.lex_state = 926}, - [3755] = {.lex_state = 121}, - [3756] = {.lex_state = 121}, - [3757] = {.lex_state = 121}, - [3758] = {.lex_state = 121}, - [3759] = {.lex_state = 121}, - [3760] = {.lex_state = 121}, - [3761] = {.lex_state = 121}, - [3762] = {.lex_state = 121}, - [3763] = {.lex_state = 121}, - [3764] = {.lex_state = 121}, - [3765] = {.lex_state = 121}, - [3766] = {.lex_state = 121}, - [3767] = {.lex_state = 121}, - [3768] = {.lex_state = 121}, - [3769] = {.lex_state = 121}, - [3770] = {.lex_state = 121}, - [3771] = {.lex_state = 121}, - [3772] = {.lex_state = 121}, - [3773] = {.lex_state = 134}, - [3774] = {.lex_state = 121}, - [3775] = {.lex_state = 121}, - [3776] = {.lex_state = 121}, - [3777] = {.lex_state = 121}, - [3778] = {.lex_state = 121}, - [3779] = {.lex_state = 121}, - [3780] = {.lex_state = 928}, - [3781] = {.lex_state = 950}, - [3782] = {.lex_state = 121}, - [3783] = {.lex_state = 121}, - [3784] = {.lex_state = 121}, - [3785] = {.lex_state = 121}, - [3786] = {.lex_state = 121}, - [3787] = {.lex_state = 121}, - [3788] = {.lex_state = 121}, - [3789] = {.lex_state = 510}, - [3790] = {.lex_state = 928}, - [3791] = {.lex_state = 121}, - [3792] = {.lex_state = 926}, - [3793] = {.lex_state = 121}, - [3794] = {.lex_state = 121}, - [3795] = {.lex_state = 121}, - [3796] = {.lex_state = 121}, - [3797] = {.lex_state = 511}, - [3798] = {.lex_state = 511}, - [3799] = {.lex_state = 121}, - [3800] = {.lex_state = 121}, - [3801] = {.lex_state = 121}, - [3802] = {.lex_state = 121}, - [3803] = {.lex_state = 121}, - [3804] = {.lex_state = 121}, - [3805] = {.lex_state = 61}, - [3806] = {.lex_state = 61}, - [3807] = {.lex_state = 61}, - [3808] = {.lex_state = 61}, - [3809] = {.lex_state = 61}, - [3810] = {.lex_state = 61}, - [3811] = {.lex_state = 121}, - [3812] = {.lex_state = 61}, - [3813] = {.lex_state = 61}, - [3814] = {.lex_state = 491}, - [3815] = {.lex_state = 61}, - [3816] = {.lex_state = 61}, - [3817] = {.lex_state = 61}, - [3818] = {.lex_state = 61}, - [3819] = {.lex_state = 61}, - [3820] = {.lex_state = 61}, - [3821] = {.lex_state = 61}, - [3822] = {.lex_state = 121}, - [3823] = {.lex_state = 61}, - [3824] = {.lex_state = 61}, - [3825] = {.lex_state = 61}, - [3826] = {.lex_state = 61}, - [3827] = {.lex_state = 928}, - [3828] = {.lex_state = 61}, - [3829] = {.lex_state = 121}, - [3830] = {.lex_state = 61}, - [3831] = {.lex_state = 121}, - [3832] = {.lex_state = 958}, - [3833] = {.lex_state = 61}, - [3834] = {.lex_state = 121}, - [3835] = {.lex_state = 61}, - [3836] = {.lex_state = 498}, - [3837] = {.lex_state = 958}, - [3838] = {.lex_state = 928}, - [3839] = {.lex_state = 121}, - [3840] = {.lex_state = 121}, - [3841] = {.lex_state = 121}, - [3842] = {.lex_state = 61}, - [3843] = {.lex_state = 61}, - [3844] = {.lex_state = 61}, - [3845] = {.lex_state = 121}, - [3846] = {.lex_state = 100}, - [3847] = {.lex_state = 958}, - [3848] = {.lex_state = 100}, - [3849] = {.lex_state = 100}, - [3850] = {.lex_state = 100}, - [3851] = {.lex_state = 100}, - [3852] = {.lex_state = 958}, - [3853] = {.lex_state = 100}, - [3854] = {.lex_state = 100}, - [3855] = {.lex_state = 958}, - [3856] = {.lex_state = 958}, - [3857] = {.lex_state = 105}, - [3858] = {.lex_state = 100}, - [3859] = {.lex_state = 100}, - [3860] = {.lex_state = 105}, - [3861] = {.lex_state = 100}, - [3862] = {.lex_state = 105}, - [3863] = {.lex_state = 105}, - [3864] = {.lex_state = 105}, - [3865] = {.lex_state = 105}, - [3866] = {.lex_state = 105}, - [3867] = {.lex_state = 105}, - [3868] = {.lex_state = 100}, - [3869] = {.lex_state = 105}, - [3870] = {.lex_state = 105}, - [3871] = {.lex_state = 105}, - [3872] = {.lex_state = 105}, - [3873] = {.lex_state = 958}, - [3874] = {.lex_state = 100}, - [3875] = {.lex_state = 61}, - [3876] = {.lex_state = 100}, - [3877] = {.lex_state = 100}, - [3878] = {.lex_state = 958}, - [3879] = {.lex_state = 100}, - [3880] = {.lex_state = 958}, - [3881] = {.lex_state = 100}, - [3882] = {.lex_state = 61}, - [3883] = {.lex_state = 61}, - [3884] = {.lex_state = 100}, - [3885] = {.lex_state = 61}, - [3886] = {.lex_state = 958}, - [3887] = {.lex_state = 61}, - [3888] = {.lex_state = 958}, - [3889] = {.lex_state = 958}, - [3890] = {.lex_state = 61}, - [3891] = {.lex_state = 61}, - [3892] = {.lex_state = 61}, - [3893] = {.lex_state = 61}, - [3894] = {.lex_state = 100}, - [3895] = {.lex_state = 100}, - [3896] = {.lex_state = 61}, - [3897] = {.lex_state = 61}, - [3898] = {.lex_state = 926}, - [3899] = {.lex_state = 61}, - [3900] = {.lex_state = 958}, - [3901] = {.lex_state = 986}, - [3902] = {.lex_state = 926}, - [3903] = {.lex_state = 983}, - [3904] = {.lex_state = 986}, - [3905] = {.lex_state = 983}, - [3906] = {.lex_state = 998}, - [3907] = {.lex_state = 983}, - [3908] = {.lex_state = 983}, - [3909] = {.lex_state = 985}, - [3910] = {.lex_state = 982}, - [3911] = {.lex_state = 992}, - [3912] = {.lex_state = 926}, - [3913] = {.lex_state = 984}, - [3914] = {.lex_state = 926}, - [3915] = {.lex_state = 926}, - [3916] = {.lex_state = 992}, - [3917] = {.lex_state = 926}, - [3918] = {.lex_state = 926}, - [3919] = {.lex_state = 926}, - [3920] = {.lex_state = 1002}, - [3921] = {.lex_state = 1006}, - [3922] = {.lex_state = 985}, - [3923] = {.lex_state = 982}, - [3924] = {.lex_state = 982}, - [3925] = {.lex_state = 982}, - [3926] = {.lex_state = 982}, - [3927] = {.lex_state = 926}, - [3928] = {.lex_state = 1002}, - [3929] = {.lex_state = 984}, - [3930] = {.lex_state = 926}, - [3931] = {.lex_state = 926}, - [3932] = {.lex_state = 926}, - [3933] = {.lex_state = 926}, - [3934] = {.lex_state = 926}, - [3935] = {.lex_state = 926}, - [3936] = {.lex_state = 926}, - [3937] = {.lex_state = 926}, - [3938] = {.lex_state = 926}, - [3939] = {.lex_state = 926}, - [3940] = {.lex_state = 926}, - [3941] = {.lex_state = 926}, - [3942] = {.lex_state = 926}, - [3943] = {.lex_state = 926}, - [3944] = {.lex_state = 985}, - [3945] = {.lex_state = 998}, - [3946] = {.lex_state = 926}, - [3947] = {.lex_state = 985}, - [3948] = {.lex_state = 984}, - [3949] = {.lex_state = 1006}, - [3950] = {.lex_state = 1006}, - [3951] = {.lex_state = 984}, - [3952] = {.lex_state = 985}, - [3953] = {.lex_state = 985}, - [3954] = {.lex_state = 1000}, - [3955] = {.lex_state = 1006}, - [3956] = {.lex_state = 985}, - [3957] = {.lex_state = 928}, - [3958] = {.lex_state = 1010}, - [3959] = {.lex_state = 996}, - [3960] = {.lex_state = 985}, - [3961] = {.lex_state = 1006}, - [3962] = {.lex_state = 928}, - [3963] = {.lex_state = 1006}, - [3964] = {.lex_state = 994}, - [3965] = {.lex_state = 1002}, - [3966] = {.lex_state = 1002}, - [3967] = {.lex_state = 926}, - [3968] = {.lex_state = 928}, - [3969] = {.lex_state = 926}, - [3970] = {.lex_state = 926}, - [3971] = {.lex_state = 1012}, - [3972] = {.lex_state = 1010}, - [3973] = {.lex_state = 985}, - [3974] = {.lex_state = 928}, - [3975] = {.lex_state = 926}, - [3976] = {.lex_state = 926}, - [3977] = {.lex_state = 1012}, - [3978] = {.lex_state = 1006}, - [3979] = {.lex_state = 926}, - [3980] = {.lex_state = 926}, - [3981] = {.lex_state = 926}, - [3982] = {.lex_state = 926}, - [3983] = {.lex_state = 926}, - [3984] = {.lex_state = 926}, - [3985] = {.lex_state = 1006}, - [3986] = {.lex_state = 926}, - [3987] = {.lex_state = 994}, - [3988] = {.lex_state = 926}, - [3989] = {.lex_state = 1006}, - [3990] = {.lex_state = 1000}, - [3991] = {.lex_state = 926}, - [3992] = {.lex_state = 928}, - [3993] = {.lex_state = 926}, - [3994] = {.lex_state = 926}, - [3995] = {.lex_state = 926}, - [3996] = {.lex_state = 1008}, - [3997] = {.lex_state = 1006}, - [3998] = {.lex_state = 1004}, - [3999] = {.lex_state = 985}, - [4000] = {.lex_state = 985}, - [4001] = {.lex_state = 926}, - [4002] = {.lex_state = 926}, - [4003] = {.lex_state = 985}, - [4004] = {.lex_state = 46}, - [4005] = {.lex_state = 926}, - [4006] = {.lex_state = 926}, - [4007] = {.lex_state = 926}, - [4008] = {.lex_state = 1004}, - [4009] = {.lex_state = 926}, - [4010] = {.lex_state = 996}, - [4011] = {.lex_state = 928}, - [4012] = {.lex_state = 997}, - [4013] = {.lex_state = 1014}, - [4014] = {.lex_state = 1012}, - [4015] = {.lex_state = 1014}, - [4016] = {.lex_state = 1008}, - [4017] = {.lex_state = 926}, - [4018] = {.lex_state = 1014}, - [4019] = {.lex_state = 45}, - [4020] = {.lex_state = 994}, - [4021] = {.lex_state = 928}, - [4022] = {.lex_state = 47}, - [4023] = {.lex_state = 926}, - [4024] = {.lex_state = 1014}, - [4025] = {.lex_state = 1008}, - [4026] = {.lex_state = 1011}, - [4027] = {.lex_state = 1012}, - [4028] = {.lex_state = 926}, - [4029] = {.lex_state = 928}, - [4030] = {.lex_state = 1014}, - [4031] = {.lex_state = 994}, - [4032] = {.lex_state = 1008}, - [4033] = {.lex_state = 1004}, - [4034] = {.lex_state = 46}, - [4035] = {.lex_state = 1014}, - [4036] = {.lex_state = 49}, - [4037] = {.lex_state = 45}, - [4038] = {.lex_state = 1008}, - [4039] = {.lex_state = 1008}, - [4040] = {.lex_state = 994}, - [4041] = {.lex_state = 1004}, - [4042] = {.lex_state = 926}, - [4043] = {.lex_state = 928}, - [4044] = {.lex_state = 928}, - [4045] = {.lex_state = 928}, - [4046] = {.lex_state = 928}, - [4047] = {.lex_state = 926}, - [4048] = {.lex_state = 926}, - [4049] = {.lex_state = 994}, - [4050] = {.lex_state = 926}, - [4051] = {.lex_state = 926}, - [4052] = {.lex_state = 926}, - [4053] = {.lex_state = 926}, - [4054] = {.lex_state = 926}, - [4055] = {.lex_state = 926}, - [4056] = {.lex_state = 926}, - [4057] = {.lex_state = 926}, - [4058] = {.lex_state = 926}, - [4059] = {.lex_state = 1016}, - [4060] = {.lex_state = 1011}, - [4061] = {.lex_state = 926}, - [4062] = {.lex_state = 926}, - [4063] = {.lex_state = 926}, - [4064] = {.lex_state = 926}, - [4065] = {.lex_state = 926}, - [4066] = {.lex_state = 50}, - [4067] = {.lex_state = 926}, - [4068] = {.lex_state = 926}, - [4069] = {.lex_state = 926}, - [4070] = {.lex_state = 926}, - [4071] = {.lex_state = 926}, - [4072] = {.lex_state = 926}, - [4073] = {.lex_state = 50}, - [4074] = {.lex_state = 926}, - [4075] = {.lex_state = 926}, - [4076] = {.lex_state = 926}, - [4077] = {.lex_state = 926}, - [4078] = {.lex_state = 994}, - [4079] = {.lex_state = 926}, - [4080] = {.lex_state = 997}, - [4081] = {.lex_state = 1008}, - [4082] = {.lex_state = 926}, - [4083] = {.lex_state = 1014}, - [4084] = {.lex_state = 1008}, - [4085] = {.lex_state = 46}, - [4086] = {.lex_state = 1008}, - [4087] = {.lex_state = 926}, - [4088] = {.lex_state = 1014}, - [4089] = {.lex_state = 1014}, - [4090] = {.lex_state = 1014}, - [4091] = {.lex_state = 1014}, - [4092] = {.lex_state = 1008}, - [4093] = {.lex_state = 46}, - [4094] = {.lex_state = 46}, - [4095] = {.lex_state = 46}, - [4096] = {.lex_state = 994}, - [4097] = {.lex_state = 994}, - [4098] = {.lex_state = 51}, - [4099] = {.lex_state = 1014}, - [4100] = {.lex_state = 1013}, - [4101] = {.lex_state = 926}, - [4102] = {.lex_state = 926}, - [4103] = {.lex_state = 926}, - [4104] = {.lex_state = 926}, - [4105] = {.lex_state = 926}, - [4106] = {.lex_state = 61}, - [4107] = {.lex_state = 1018}, - [4108] = {.lex_state = 1008}, - [4109] = {.lex_state = 1013}, - [4110] = {.lex_state = 928}, - [4111] = {.lex_state = 928}, - [4112] = {.lex_state = 994}, - [4113] = {.lex_state = 926}, - [4114] = {.lex_state = 988}, - [4115] = {.lex_state = 51}, - [4116] = {.lex_state = 1013}, - [4117] = {.lex_state = 988}, - [4118] = {.lex_state = 51}, - [4119] = {.lex_state = 38}, - [4120] = {.lex_state = 48}, - [4121] = {.lex_state = 53}, - [4122] = {.lex_state = 1008}, - [4123] = {.lex_state = 994}, - [4124] = {.lex_state = 1013}, - [4125] = {.lex_state = 38}, - [4126] = {.lex_state = 51}, - [4127] = {.lex_state = 38}, - [4128] = {.lex_state = 1018}, - [4129] = {.lex_state = 988}, - [4130] = {.lex_state = 988}, - [4131] = {.lex_state = 1015}, - [4132] = {.lex_state = 994}, - [4133] = {.lex_state = 926}, - [4134] = {.lex_state = 988}, - [4135] = {.lex_state = 1015}, - [4136] = {.lex_state = 51}, - [4137] = {.lex_state = 1015}, - [4138] = {.lex_state = 1015}, - [4139] = {.lex_state = 1020}, - [4140] = {.lex_state = 38}, - [4141] = {.lex_state = 928}, - [4142] = {.lex_state = 1016}, - [4143] = {.lex_state = 1015}, - [4144] = {.lex_state = 1020}, - [4145] = {.lex_state = 1015}, - [4146] = {.lex_state = 928}, - [4147] = {.lex_state = 928}, - [4148] = {.lex_state = 928}, - [4149] = {.lex_state = 928}, - [4150] = {.lex_state = 926}, - [4151] = {.lex_state = 928}, - [4152] = {.lex_state = 988}, - [4153] = {.lex_state = 926}, - [4154] = {.lex_state = 61}, - [4155] = {.lex_state = 928}, - [4156] = {.lex_state = 1015}, - [4157] = {.lex_state = 1017}, - [4158] = {.lex_state = 1017}, - [4159] = {.lex_state = 1022}, - [4160] = {.lex_state = 1019}, - [4161] = {.lex_state = 1017}, - [4162] = {.lex_state = 38}, - [4163] = {.lex_state = 38}, - [4164] = {.lex_state = 1015}, - [4165] = {.lex_state = 928}, - [4166] = {.lex_state = 1015}, - [4167] = {.lex_state = 1017}, - [4168] = {.lex_state = 38}, - [4169] = {.lex_state = 1048}, - [4170] = {.lex_state = 926}, - [4171] = {.lex_state = 1020}, - [4172] = {.lex_state = 988}, - [4173] = {.lex_state = 1017}, - [4174] = {.lex_state = 54}, - [4175] = {.lex_state = 988}, - [4176] = {.lex_state = 994}, - [4177] = {.lex_state = 926}, - [4178] = {.lex_state = 1017}, - [4179] = {.lex_state = 1017}, - [4180] = {.lex_state = 1017}, - [4181] = {.lex_state = 1017}, - [4182] = {.lex_state = 926}, - [4183] = {.lex_state = 1020}, - [4184] = {.lex_state = 994}, - [4185] = {.lex_state = 38}, - [4186] = {.lex_state = 994}, - [4187] = {.lex_state = 38}, - [4188] = {.lex_state = 1048}, - [4189] = {.lex_state = 1017}, - [4190] = {.lex_state = 1017}, - [4191] = {.lex_state = 1017}, - [4192] = {.lex_state = 38}, - [4193] = {.lex_state = 1022}, - [4194] = {.lex_state = 1022}, - [4195] = {.lex_state = 1017}, - [4196] = {.lex_state = 926}, - [4197] = {.lex_state = 1017}, - [4198] = {.lex_state = 926}, - [4199] = {.lex_state = 1017}, - [4200] = {.lex_state = 926}, - [4201] = {.lex_state = 926}, - [4202] = {.lex_state = 1015}, - [4203] = {.lex_state = 1017}, - [4204] = {.lex_state = 1017}, - [4205] = {.lex_state = 1017}, - [4206] = {.lex_state = 1048}, - [4207] = {.lex_state = 1017}, - [4208] = {.lex_state = 926}, - [4209] = {.lex_state = 928}, - [4210] = {.lex_state = 926}, - [4211] = {.lex_state = 1048}, - [4212] = {.lex_state = 1048}, - [4213] = {.lex_state = 1022}, - [4214] = {.lex_state = 1017}, - [4215] = {.lex_state = 1017}, - [4216] = {.lex_state = 926}, - [4217] = {.lex_state = 926}, - [4218] = {.lex_state = 926}, - [4219] = {.lex_state = 1017}, - [4220] = {.lex_state = 928}, - [4221] = {.lex_state = 1017}, - [4222] = {.lex_state = 1022}, - [4223] = {.lex_state = 926}, - [4224] = {.lex_state = 926}, - [4225] = {.lex_state = 926}, - [4226] = {.lex_state = 1017}, - [4227] = {.lex_state = 926}, - [4228] = {.lex_state = 926}, - [4229] = {.lex_state = 926}, - [4230] = {.lex_state = 1017}, - [4231] = {.lex_state = 1015}, - [4232] = {.lex_state = 926}, - [4233] = {.lex_state = 1022}, - [4234] = {.lex_state = 926}, - [4235] = {.lex_state = 926}, - [4236] = {.lex_state = 926}, - [4237] = {.lex_state = 1017}, - [4238] = {.lex_state = 1022}, - [4239] = {.lex_state = 926}, - [4240] = {.lex_state = 54}, - [4241] = {.lex_state = 1022}, - [4242] = {.lex_state = 926}, - [4243] = {.lex_state = 926}, - [4244] = {.lex_state = 926}, - [4245] = {.lex_state = 926}, - [4246] = {.lex_state = 926}, - [4247] = {.lex_state = 928}, - [4248] = {.lex_state = 926}, - [4249] = {.lex_state = 1017}, - [4250] = {.lex_state = 926}, - [4251] = {.lex_state = 926}, - [4252] = {.lex_state = 1015}, - [4253] = {.lex_state = 926}, - [4254] = {.lex_state = 926}, - [4255] = {.lex_state = 1017}, - [4256] = {.lex_state = 926}, - [4257] = {.lex_state = 988}, - [4258] = {.lex_state = 926}, - [4259] = {.lex_state = 1017}, - [4260] = {.lex_state = 926}, - [4261] = {.lex_state = 928}, - [4262] = {.lex_state = 1017}, - [4263] = {.lex_state = 926}, - [4264] = {.lex_state = 988}, - [4265] = {.lex_state = 1017}, - [4266] = {.lex_state = 988}, - [4267] = {.lex_state = 926}, - [4268] = {.lex_state = 926}, - [4269] = {.lex_state = 926}, - [4270] = {.lex_state = 928}, - [4271] = {.lex_state = 926}, - [4272] = {.lex_state = 928}, - [4273] = {.lex_state = 928}, - [4274] = {.lex_state = 928}, - [4275] = {.lex_state = 988}, - [4276] = {.lex_state = 926}, - [4277] = {.lex_state = 926}, - [4278] = {.lex_state = 1022}, - [4279] = {.lex_state = 926}, - [4280] = {.lex_state = 926}, - [4281] = {.lex_state = 38}, - [4282] = {.lex_state = 1022}, - [4283] = {.lex_state = 1000}, - [4284] = {.lex_state = 926}, - [4285] = {.lex_state = 1017}, - [4286] = {.lex_state = 1000}, - [4287] = {.lex_state = 1017}, - [4288] = {.lex_state = 1017}, - [4289] = {.lex_state = 1017}, - [4290] = {.lex_state = 361, .external_lex_state = 2}, - [4291] = {.lex_state = 1017}, - [4292] = {.lex_state = 926}, - [4293] = {.lex_state = 1017}, - [4294] = {.lex_state = 38}, - [4295] = {.lex_state = 1017}, - [4296] = {.lex_state = 38}, - [4297] = {.lex_state = 1017}, - [4298] = {.lex_state = 38}, - [4299] = {.lex_state = 1017}, - [4300] = {.lex_state = 1017}, - [4301] = {.lex_state = 361, .external_lex_state = 2}, - [4302] = {.lex_state = 994}, - [4303] = {.lex_state = 52}, - [4304] = {.lex_state = 926}, - [4305] = {.lex_state = 994}, - [4306] = {.lex_state = 1048}, - [4307] = {.lex_state = 38}, - [4308] = {.lex_state = 1017}, - [4309] = {.lex_state = 38}, - [4310] = {.lex_state = 1000}, - [4311] = {.lex_state = 1019}, - [4312] = {.lex_state = 52}, - [4313] = {.lex_state = 1022}, - [4314] = {.lex_state = 1022}, - [4315] = {.lex_state = 1017}, - [4316] = {.lex_state = 1017}, - [4317] = {.lex_state = 1017}, - [4318] = {.lex_state = 52}, - [4319] = {.lex_state = 52}, - [4320] = {.lex_state = 1000}, - [4321] = {.lex_state = 1022}, - [4322] = {.lex_state = 1017}, - [4323] = {.lex_state = 1022}, - [4324] = {.lex_state = 1017}, - [4325] = {.lex_state = 361, .external_lex_state = 2}, - [4326] = {.lex_state = 1017}, - [4327] = {.lex_state = 1022}, - [4328] = {.lex_state = 1021}, - [4329] = {.lex_state = 1022}, - [4330] = {.lex_state = 1000}, - [4331] = {.lex_state = 361, .external_lex_state = 2}, - [4332] = {.lex_state = 926}, - [4333] = {.lex_state = 1017}, - [4334] = {.lex_state = 1017}, - [4335] = {.lex_state = 1017}, - [4336] = {.lex_state = 926}, - [4337] = {.lex_state = 1017}, - [4338] = {.lex_state = 1022}, - [4339] = {.lex_state = 1017}, - [4340] = {.lex_state = 1017}, - [4341] = {.lex_state = 1017}, - [4342] = {.lex_state = 1017}, - [4343] = {.lex_state = 1000}, - [4344] = {.lex_state = 1017}, - [4345] = {.lex_state = 38}, - [4346] = {.lex_state = 38}, - [4347] = {.lex_state = 38}, - [4348] = {.lex_state = 1048}, - [4349] = {.lex_state = 1000}, - [4350] = {.lex_state = 1000}, - [4351] = {.lex_state = 38}, - [4352] = {.lex_state = 1022}, - [4353] = {.lex_state = 52}, - [4354] = {.lex_state = 1000}, - [4355] = {.lex_state = 1017}, - [4356] = {.lex_state = 1017}, - [4357] = {.lex_state = 1017}, - [4358] = {.lex_state = 1017}, - [4359] = {.lex_state = 926}, - [4360] = {.lex_state = 926}, - [4361] = {.lex_state = 38}, - [4362] = {.lex_state = 1000}, - [4363] = {.lex_state = 1000}, - [4364] = {.lex_state = 926}, - [4365] = {.lex_state = 1017}, - [4366] = {.lex_state = 1017}, - [4367] = {.lex_state = 926}, - [4368] = {.lex_state = 1021}, - [4369] = {.lex_state = 1048}, - [4370] = {.lex_state = 38}, - [4371] = {.lex_state = 1017}, - [4372] = {.lex_state = 1048}, - [4373] = {.lex_state = 1048}, - [4374] = {.lex_state = 994}, - [4375] = {.lex_state = 52}, - [4376] = {.lex_state = 1022}, - [4377] = {.lex_state = 950}, - [4378] = {.lex_state = 950}, - [4379] = {.lex_state = 950}, - [4380] = {.lex_state = 1000}, - [4381] = {.lex_state = 1000}, - [4382] = {.lex_state = 950}, - [4383] = {.lex_state = 1000}, - [4384] = {.lex_state = 950}, - [4385] = {.lex_state = 63}, - [4386] = {.lex_state = 950}, - [4387] = {.lex_state = 950}, - [4388] = {.lex_state = 950}, - [4389] = {.lex_state = 985}, - [4390] = {.lex_state = 950}, - [4391] = {.lex_state = 63}, - [4392] = {.lex_state = 950}, - [4393] = {.lex_state = 1021}, - [4394] = {.lex_state = 926}, - [4395] = {.lex_state = 950}, - [4396] = {.lex_state = 950}, - [4397] = {.lex_state = 38}, - [4398] = {.lex_state = 950}, - [4399] = {.lex_state = 950}, - [4400] = {.lex_state = 950}, - [4401] = {.lex_state = 950}, - [4402] = {.lex_state = 58}, - [4403] = {.lex_state = 950}, - [4404] = {.lex_state = 950}, - [4405] = {.lex_state = 950}, - [4406] = {.lex_state = 950}, - [4407] = {.lex_state = 950}, - [4408] = {.lex_state = 950}, - [4409] = {.lex_state = 950}, - [4410] = {.lex_state = 950}, - [4411] = {.lex_state = 950}, - [4412] = {.lex_state = 950}, - [4413] = {.lex_state = 950}, - [4414] = {.lex_state = 1041}, - [4415] = {.lex_state = 950}, - [4416] = {.lex_state = 950}, - [4417] = {.lex_state = 1000}, - [4418] = {.lex_state = 38}, - [4419] = {.lex_state = 950}, - [4420] = {.lex_state = 950}, - [4421] = {.lex_state = 950}, - [4422] = {.lex_state = 950}, - [4423] = {.lex_state = 950}, - [4424] = {.lex_state = 950}, - [4425] = {.lex_state = 1000}, - [4426] = {.lex_state = 950}, - [4427] = {.lex_state = 950}, - [4428] = {.lex_state = 950}, - [4429] = {.lex_state = 950}, - [4430] = {.lex_state = 950}, - [4431] = {.lex_state = 988}, - [4432] = {.lex_state = 1021}, - [4433] = {.lex_state = 950}, - [4434] = {.lex_state = 59}, - [4435] = {.lex_state = 1050}, - [4436] = {.lex_state = 950}, - [4437] = {.lex_state = 950}, - [4438] = {.lex_state = 950}, - [4439] = {.lex_state = 1050}, - [4440] = {.lex_state = 950}, - [4441] = {.lex_state = 950}, - [4442] = {.lex_state = 950}, - [4443] = {.lex_state = 950}, - [4444] = {.lex_state = 950}, - [4445] = {.lex_state = 950}, - [4446] = {.lex_state = 950}, - [4447] = {.lex_state = 950}, - [4448] = {.lex_state = 1000}, - [4449] = {.lex_state = 950}, - [4450] = {.lex_state = 950}, - [4451] = {.lex_state = 1023}, - [4452] = {.lex_state = 950}, - [4453] = {.lex_state = 950}, - [4454] = {.lex_state = 1023}, - [4455] = {.lex_state = 950}, - [4456] = {.lex_state = 950}, - [4457] = {.lex_state = 950}, - [4458] = {.lex_state = 950}, - [4459] = {.lex_state = 950}, - [4460] = {.lex_state = 1023}, - [4461] = {.lex_state = 1050}, - [4462] = {.lex_state = 950}, - [4463] = {.lex_state = 950}, - [4464] = {.lex_state = 1000}, - [4465] = {.lex_state = 950}, - [4466] = {.lex_state = 950}, - [4467] = {.lex_state = 950}, - [4468] = {.lex_state = 985}, - [4469] = {.lex_state = 950}, - [4470] = {.lex_state = 926}, - [4471] = {.lex_state = 950}, - [4472] = {.lex_state = 1042}, - [4473] = {.lex_state = 950}, - [4474] = {.lex_state = 950}, - [4475] = {.lex_state = 63}, - [4476] = {.lex_state = 950}, - [4477] = {.lex_state = 950}, - [4478] = {.lex_state = 950}, - [4479] = {.lex_state = 950}, - [4480] = {.lex_state = 1000}, - [4481] = {.lex_state = 59}, - [4482] = {.lex_state = 950}, - [4483] = {.lex_state = 950}, - [4484] = {.lex_state = 1023}, - [4485] = {.lex_state = 1000}, - [4486] = {.lex_state = 63}, - [4487] = {.lex_state = 1050}, - [4488] = {.lex_state = 38}, - [4489] = {.lex_state = 1023}, - [4490] = {.lex_state = 38}, - [4491] = {.lex_state = 950}, - [4492] = {.lex_state = 1050}, - [4493] = {.lex_state = 950}, - [4494] = {.lex_state = 55}, - [4495] = {.lex_state = 63}, - [4496] = {.lex_state = 950}, - [4497] = {.lex_state = 1041}, - [4498] = {.lex_state = 63}, - [4499] = {.lex_state = 63}, - [4500] = {.lex_state = 63}, - [4501] = {.lex_state = 63}, - [4502] = {.lex_state = 63}, - [4503] = {.lex_state = 63}, - [4504] = {.lex_state = 950}, - [4505] = {.lex_state = 63}, - [4506] = {.lex_state = 63}, - [4507] = {.lex_state = 63}, - [4508] = {.lex_state = 950}, - [4509] = {.lex_state = 63}, - [4510] = {.lex_state = 63}, - [4511] = {.lex_state = 63}, - [4512] = {.lex_state = 63}, - [4513] = {.lex_state = 1000}, - [4514] = {.lex_state = 63}, - [4515] = {.lex_state = 63}, - [4516] = {.lex_state = 950}, - [4517] = {.lex_state = 63}, - [4518] = {.lex_state = 63}, - [4519] = {.lex_state = 950}, - [4520] = {.lex_state = 950}, - [4521] = {.lex_state = 950}, - [4522] = {.lex_state = 950}, - [4523] = {.lex_state = 950}, - [4524] = {.lex_state = 950}, - [4525] = {.lex_state = 950}, - [4526] = {.lex_state = 950}, - [4527] = {.lex_state = 1023}, - [4528] = {.lex_state = 950}, - [4529] = {.lex_state = 1022}, - [4530] = {.lex_state = 1041}, - [4531] = {.lex_state = 950}, - [4532] = {.lex_state = 985}, - [4533] = {.lex_state = 985}, - [4534] = {.lex_state = 1017}, - [4535] = {.lex_state = 950}, - [4536] = {.lex_state = 950}, - [4537] = {.lex_state = 950}, - [4538] = {.lex_state = 950}, - [4539] = {.lex_state = 950}, - [4540] = {.lex_state = 950}, - [4541] = {.lex_state = 1023}, - [4542] = {.lex_state = 1017}, - [4543] = {.lex_state = 1023}, - [4544] = {.lex_state = 950}, - [4545] = {.lex_state = 950}, - [4546] = {.lex_state = 950}, - [4547] = {.lex_state = 59}, - [4548] = {.lex_state = 1041}, - [4549] = {.lex_state = 950}, - [4550] = {.lex_state = 1000}, - [4551] = {.lex_state = 950}, - [4552] = {.lex_state = 950}, - [4553] = {.lex_state = 950}, - [4554] = {.lex_state = 1041}, - [4555] = {.lex_state = 926}, - [4556] = {.lex_state = 985}, - [4557] = {.lex_state = 926}, - [4558] = {.lex_state = 1023}, - [4559] = {.lex_state = 1041}, - [4560] = {.lex_state = 950}, - [4561] = {.lex_state = 950}, - [4562] = {.lex_state = 950}, - [4563] = {.lex_state = 950}, - [4564] = {.lex_state = 950}, - [4565] = {.lex_state = 950}, - [4566] = {.lex_state = 950}, - [4567] = {.lex_state = 63}, - [4568] = {.lex_state = 950}, - [4569] = {.lex_state = 950}, - [4570] = {.lex_state = 950}, - [4571] = {.lex_state = 950}, - [4572] = {.lex_state = 59}, - [4573] = {.lex_state = 950}, - [4574] = {.lex_state = 950}, - [4575] = {.lex_state = 950}, - [4576] = {.lex_state = 950}, - [4577] = {.lex_state = 950}, - [4578] = {.lex_state = 950}, - [4579] = {.lex_state = 950}, - [4580] = {.lex_state = 950}, - [4581] = {.lex_state = 950}, - [4582] = {.lex_state = 950}, - [4583] = {.lex_state = 950}, - [4584] = {.lex_state = 950}, - [4585] = {.lex_state = 1017}, - [4586] = {.lex_state = 950}, - [4587] = {.lex_state = 38}, - [4588] = {.lex_state = 958}, - [4589] = {.lex_state = 950}, - [4590] = {.lex_state = 950}, - [4591] = {.lex_state = 950}, - [4592] = {.lex_state = 950}, - [4593] = {.lex_state = 38}, - [4594] = {.lex_state = 985}, - [4595] = {.lex_state = 950}, - [4596] = {.lex_state = 950}, - [4597] = {.lex_state = 38}, - [4598] = {.lex_state = 1023}, - [4599] = {.lex_state = 926}, - [4600] = {.lex_state = 1023}, - [4601] = {.lex_state = 950}, - [4602] = {.lex_state = 38}, - [4603] = {.lex_state = 1023}, - [4604] = {.lex_state = 38}, - [4605] = {.lex_state = 38}, - [4606] = {.lex_state = 1050}, - [4607] = {.lex_state = 950}, - [4608] = {.lex_state = 950}, - [4609] = {.lex_state = 950}, - [4610] = {.lex_state = 63}, - [4611] = {.lex_state = 38}, - [4612] = {.lex_state = 1017}, - [4613] = {.lex_state = 952}, - [4614] = {.lex_state = 926}, - [4615] = {.lex_state = 1024}, - [4616] = {.lex_state = 952}, - [4617] = {.lex_state = 950}, - [4618] = {.lex_state = 958}, - [4619] = {.lex_state = 950}, - [4620] = {.lex_state = 1025}, - [4621] = {.lex_state = 950}, - [4622] = {.lex_state = 1023}, - [4623] = {.lex_state = 950}, - [4624] = {.lex_state = 1050}, - [4625] = {.lex_state = 56}, - [4626] = {.lex_state = 38}, - [4627] = {.lex_state = 1050}, - [4628] = {.lex_state = 926}, - [4629] = {.lex_state = 952}, - [4630] = {.lex_state = 1041}, - [4631] = {.lex_state = 950}, - [4632] = {.lex_state = 950}, - [4633] = {.lex_state = 985}, - [4634] = {.lex_state = 1042}, - [4635] = {.lex_state = 38}, - [4636] = {.lex_state = 985}, - [4637] = {.lex_state = 1041}, - [4638] = {.lex_state = 38}, - [4639] = {.lex_state = 1023}, - [4640] = {.lex_state = 38}, - [4641] = {.lex_state = 38}, - [4642] = {.lex_state = 109}, - [4643] = {.lex_state = 985}, - [4644] = {.lex_state = 1023}, - [4645] = {.lex_state = 38}, - [4646] = {.lex_state = 1023}, - [4647] = {.lex_state = 38}, - [4648] = {.lex_state = 38}, - [4649] = {.lex_state = 950}, - [4650] = {.lex_state = 38}, - [4651] = {.lex_state = 950}, - [4652] = {.lex_state = 1041}, - [4653] = {.lex_state = 1041}, - [4654] = {.lex_state = 38}, - [4655] = {.lex_state = 38}, - [4656] = {.lex_state = 109}, - [4657] = {.lex_state = 63}, - [4658] = {.lex_state = 38}, - [4659] = {.lex_state = 1041}, - [4660] = {.lex_state = 1041}, - [4661] = {.lex_state = 988}, - [4662] = {.lex_state = 988}, - [4663] = {.lex_state = 950}, - [4664] = {.lex_state = 985}, - [4665] = {.lex_state = 950}, - [4666] = {.lex_state = 985}, - [4667] = {.lex_state = 950}, - [4668] = {.lex_state = 952}, - [4669] = {.lex_state = 38}, - [4670] = {.lex_state = 1050}, - [4671] = {.lex_state = 1050}, - [4672] = {.lex_state = 1017}, - [4673] = {.lex_state = 1017}, - [4674] = {.lex_state = 952}, - [4675] = {.lex_state = 950}, - [4676] = {.lex_state = 1023}, - [4677] = {.lex_state = 985}, - [4678] = {.lex_state = 950}, - [4679] = {.lex_state = 38}, - [4680] = {.lex_state = 38}, - [4681] = {.lex_state = 1023}, - [4682] = {.lex_state = 38}, - [4683] = {.lex_state = 985}, - [4684] = {.lex_state = 950}, - [4685] = {.lex_state = 950}, - [4686] = {.lex_state = 38}, - [4687] = {.lex_state = 950}, - [4688] = {.lex_state = 1023}, - [4689] = {.lex_state = 1017}, - [4690] = {.lex_state = 988}, - [4691] = {.lex_state = 56}, - [4692] = {.lex_state = 950}, - [4693] = {.lex_state = 952}, - [4694] = {.lex_state = 952}, - [4695] = {.lex_state = 1025}, - [4696] = {.lex_state = 57}, - [4697] = {.lex_state = 63}, - [4698] = {.lex_state = 988}, - [4699] = {.lex_state = 52}, - [4700] = {.lex_state = 952}, - [4701] = {.lex_state = 952}, - [4702] = {.lex_state = 63}, - [4703] = {.lex_state = 952}, - [4704] = {.lex_state = 952}, - [4705] = {.lex_state = 988}, - [4706] = {.lex_state = 952}, - [4707] = {.lex_state = 952}, - [4708] = {.lex_state = 952}, - [4709] = {.lex_state = 952}, - [4710] = {.lex_state = 52}, - [4711] = {.lex_state = 952}, - [4712] = {.lex_state = 958}, - [4713] = {.lex_state = 958}, - [4714] = {.lex_state = 952}, - [4715] = {.lex_state = 57}, - [4716] = {.lex_state = 952}, - [4717] = {.lex_state = 950}, - [4718] = {.lex_state = 952}, - [4719] = {.lex_state = 950}, - [4720] = {.lex_state = 952}, - [4721] = {.lex_state = 58}, - [4722] = {.lex_state = 52}, - [4723] = {.lex_state = 952}, - [4724] = {.lex_state = 952}, - [4725] = {.lex_state = 952}, - [4726] = {.lex_state = 952}, - [4727] = {.lex_state = 1017}, - [4728] = {.lex_state = 952}, - [4729] = {.lex_state = 952}, - [4730] = {.lex_state = 38}, - [4731] = {.lex_state = 109}, - [4732] = {.lex_state = 57}, - [4733] = {.lex_state = 38}, - [4734] = {.lex_state = 38}, - [4735] = {.lex_state = 952}, - [4736] = {.lex_state = 38}, - [4737] = {.lex_state = 950}, - [4738] = {.lex_state = 952}, - [4739] = {.lex_state = 952}, - [4740] = {.lex_state = 952}, - [4741] = {.lex_state = 952}, - [4742] = {.lex_state = 952}, - [4743] = {.lex_state = 952}, - [4744] = {.lex_state = 952}, - [4745] = {.lex_state = 952}, - [4746] = {.lex_state = 952}, - [4747] = {.lex_state = 950}, - [4748] = {.lex_state = 52}, - [4749] = {.lex_state = 88}, - [4750] = {.lex_state = 109}, - [4751] = {.lex_state = 988}, - [4752] = {.lex_state = 952}, - [4753] = {.lex_state = 952}, - [4754] = {.lex_state = 952}, - [4755] = {.lex_state = 952}, - [4756] = {.lex_state = 952}, - [4757] = {.lex_state = 952}, - [4758] = {.lex_state = 985}, - [4759] = {.lex_state = 952}, - [4760] = {.lex_state = 1017}, - [4761] = {.lex_state = 1017}, - [4762] = {.lex_state = 952}, - [4763] = {.lex_state = 57}, - [4764] = {.lex_state = 88}, - [4765] = {.lex_state = 958}, - [4766] = {.lex_state = 1026}, - [4767] = {.lex_state = 88}, - [4768] = {.lex_state = 63}, - [4769] = {.lex_state = 952}, - [4770] = {.lex_state = 985}, - [4771] = {.lex_state = 366}, - [4772] = {.lex_state = 952}, - [4773] = {.lex_state = 926}, - [4774] = {.lex_state = 952}, - [4775] = {.lex_state = 926}, - [4776] = {.lex_state = 950}, - [4777] = {.lex_state = 52}, - [4778] = {.lex_state = 952}, - [4779] = {.lex_state = 952}, - [4780] = {.lex_state = 950}, - [4781] = {.lex_state = 1024}, - [4782] = {.lex_state = 958}, - [4783] = {.lex_state = 63}, - [4784] = {.lex_state = 57}, - [4785] = {.lex_state = 57}, - [4786] = {.lex_state = 952}, - [4787] = {.lex_state = 952}, - [4788] = {.lex_state = 952}, - [4789] = {.lex_state = 952}, - [4790] = {.lex_state = 57}, - [4791] = {.lex_state = 952}, - [4792] = {.lex_state = 950}, - [4793] = {.lex_state = 952}, - [4794] = {.lex_state = 950}, - [4795] = {.lex_state = 952}, - [4796] = {.lex_state = 952}, - [4797] = {.lex_state = 63}, - [4798] = {.lex_state = 952}, - [4799] = {.lex_state = 952}, - [4800] = {.lex_state = 952}, - [4801] = {.lex_state = 950}, - [4802] = {.lex_state = 952}, - [4803] = {.lex_state = 952}, - [4804] = {.lex_state = 926}, - [4805] = {.lex_state = 952}, - [4806] = {.lex_state = 952}, - [4807] = {.lex_state = 952}, - [4808] = {.lex_state = 950}, - [4809] = {.lex_state = 52}, - [4810] = {.lex_state = 952}, - [4811] = {.lex_state = 950}, - [4812] = {.lex_state = 952}, - [4813] = {.lex_state = 952}, - [4814] = {.lex_state = 950}, - [4815] = {.lex_state = 952}, - [4816] = {.lex_state = 88}, - [4817] = {.lex_state = 952}, - [4818] = {.lex_state = 950}, - [4819] = {.lex_state = 952}, - [4820] = {.lex_state = 38}, - [4821] = {.lex_state = 952}, - [4822] = {.lex_state = 952}, - [4823] = {.lex_state = 88}, - [4824] = {.lex_state = 950}, - [4825] = {.lex_state = 952}, - [4826] = {.lex_state = 952}, - [4827] = {.lex_state = 1026}, - [4828] = {.lex_state = 63}, - [4829] = {.lex_state = 952}, - [4830] = {.lex_state = 988}, - [4831] = {.lex_state = 950}, - [4832] = {.lex_state = 950}, - [4833] = {.lex_state = 952}, - [4834] = {.lex_state = 952}, - [4835] = {.lex_state = 952}, - [4836] = {.lex_state = 950}, - [4837] = {.lex_state = 952}, - [4838] = {.lex_state = 952}, - [4839] = {.lex_state = 952}, - [4840] = {.lex_state = 952}, - [4841] = {.lex_state = 952}, - [4842] = {.lex_state = 57}, - [4843] = {.lex_state = 38}, - [4844] = {.lex_state = 57}, - [4845] = {.lex_state = 952}, - [4846] = {.lex_state = 952}, - [4847] = {.lex_state = 1023}, - [4848] = {.lex_state = 952}, - [4849] = {.lex_state = 950}, - [4850] = {.lex_state = 985}, - [4851] = {.lex_state = 926}, - [4852] = {.lex_state = 950}, - [4853] = {.lex_state = 952}, - [4854] = {.lex_state = 950}, - [4855] = {.lex_state = 52}, - [4856] = {.lex_state = 952}, - [4857] = {.lex_state = 109}, - [4858] = {.lex_state = 950}, - [4859] = {.lex_state = 52}, - [4860] = {.lex_state = 952}, - [4861] = {.lex_state = 952}, - [4862] = {.lex_state = 950}, - [4863] = {.lex_state = 952}, - [4864] = {.lex_state = 952}, - [4865] = {.lex_state = 952}, - [4866] = {.lex_state = 952}, - [4867] = {.lex_state = 952}, - [4868] = {.lex_state = 952}, - [4869] = {.lex_state = 958}, - [4870] = {.lex_state = 952}, - [4871] = {.lex_state = 952}, - [4872] = {.lex_state = 952}, - [4873] = {.lex_state = 958}, - [4874] = {.lex_state = 958}, - [4875] = {.lex_state = 958}, - [4876] = {.lex_state = 958}, - [4877] = {.lex_state = 38}, - [4878] = {.lex_state = 958}, - [4879] = {.lex_state = 958}, - [4880] = {.lex_state = 952}, - [4881] = {.lex_state = 952}, - [4882] = {.lex_state = 952}, - [4883] = {.lex_state = 371}, - [4884] = {.lex_state = 38}, - [4885] = {.lex_state = 958}, - [4886] = {.lex_state = 958}, - [4887] = {.lex_state = 38}, - [4888] = {.lex_state = 958}, - [4889] = {.lex_state = 363}, - [4890] = {.lex_state = 958}, - [4891] = {.lex_state = 38}, - [4892] = {.lex_state = 38}, - [4893] = {.lex_state = 63}, - [4894] = {.lex_state = 38}, - [4895] = {.lex_state = 63}, - [4896] = {.lex_state = 63}, - [4897] = {.lex_state = 38}, - [4898] = {.lex_state = 958}, - [4899] = {.lex_state = 38}, - [4900] = {.lex_state = 958}, - [4901] = {.lex_state = 38}, - [4902] = {.lex_state = 38}, - [4903] = {.lex_state = 38}, - [4904] = {.lex_state = 38}, - [4905] = {.lex_state = 38}, - [4906] = {.lex_state = 38}, - [4907] = {.lex_state = 38}, - [4908] = {.lex_state = 38}, - [4909] = {.lex_state = 38}, - [4910] = {.lex_state = 38}, - [4911] = {.lex_state = 38}, - [4912] = {.lex_state = 38}, - [4913] = {.lex_state = 38}, - [4914] = {.lex_state = 38}, - [4915] = {.lex_state = 38}, - [4916] = {.lex_state = 38}, - [4917] = {.lex_state = 38}, - [4918] = {.lex_state = 38}, - [4919] = {.lex_state = 958}, - [4920] = {.lex_state = 958}, - [4921] = {.lex_state = 958}, - [4922] = {.lex_state = 958}, - [4923] = {.lex_state = 38}, - [4924] = {.lex_state = 57}, - [4925] = {.lex_state = 52}, - [4926] = {.lex_state = 958}, - [4927] = {.lex_state = 38}, - [4928] = {.lex_state = 38}, - [4929] = {.lex_state = 38}, - [4930] = {.lex_state = 38}, - [4931] = {.lex_state = 100}, - [4932] = {.lex_state = 100}, - [4933] = {.lex_state = 383}, - [4934] = {.lex_state = 52}, - [4935] = {.lex_state = 1026}, - [4936] = {.lex_state = 38}, - [4937] = {.lex_state = 38}, - [4938] = {.lex_state = 1026}, - [4939] = {.lex_state = 1027}, - [4940] = {.lex_state = 1027}, - [4941] = {.lex_state = 38}, - [4942] = {.lex_state = 38}, - [4943] = {.lex_state = 1027}, - [4944] = {.lex_state = 1027}, - [4945] = {.lex_state = 38}, - [4946] = {.lex_state = 38}, - [4947] = {.lex_state = 38}, - [4948] = {.lex_state = 38}, - [4949] = {.lex_state = 38}, - [4950] = {.lex_state = 952}, - [4951] = {.lex_state = 950}, - [4952] = {.lex_state = 64}, - [4953] = {.lex_state = 38}, - [4954] = {.lex_state = 952}, - [4955] = {.lex_state = 38}, - [4956] = {.lex_state = 958}, - [4957] = {.lex_state = 38}, - [4958] = {.lex_state = 958}, - [4959] = {.lex_state = 367}, - [4960] = {.lex_state = 38}, - [4961] = {.lex_state = 38}, - [4962] = {.lex_state = 38}, - [4963] = {.lex_state = 950}, - [4964] = {.lex_state = 952}, - [4965] = {.lex_state = 952}, - [4966] = {.lex_state = 38}, - [4967] = {.lex_state = 38}, - [4968] = {.lex_state = 952}, - [4969] = {.lex_state = 952}, - [4970] = {.lex_state = 38}, - [4971] = {.lex_state = 38}, - [4972] = {.lex_state = 38}, - [4973] = {.lex_state = 952}, - [4974] = {.lex_state = 38}, - [4975] = {.lex_state = 38}, - [4976] = {.lex_state = 982}, - [4977] = {.lex_state = 952}, - [4978] = {.lex_state = 372}, - [4979] = {.lex_state = 952}, - [4980] = {.lex_state = 952}, - [4981] = {.lex_state = 952}, - [4982] = {.lex_state = 952}, - [4983] = {.lex_state = 952}, - [4984] = {.lex_state = 952}, - [4985] = {.lex_state = 952}, - [4986] = {.lex_state = 952}, - [4987] = {.lex_state = 952}, - [4988] = {.lex_state = 952}, - [4989] = {.lex_state = 952}, - [4990] = {.lex_state = 1027}, - [4991] = {.lex_state = 952}, - [4992] = {.lex_state = 952}, - [4993] = {.lex_state = 952}, - [4994] = {.lex_state = 952}, - [4995] = {.lex_state = 952}, - [4996] = {.lex_state = 952}, - [4997] = {.lex_state = 952}, - [4998] = {.lex_state = 952}, - [4999] = {.lex_state = 952}, - [5000] = {.lex_state = 952}, - [5001] = {.lex_state = 952}, - [5002] = {.lex_state = 952}, - [5003] = {.lex_state = 952}, - [5004] = {.lex_state = 952}, - [5005] = {.lex_state = 958}, - [5006] = {.lex_state = 958}, - [5007] = {.lex_state = 958}, - [5008] = {.lex_state = 958}, - [5009] = {.lex_state = 958}, - [5010] = {.lex_state = 952}, - [5011] = {.lex_state = 952}, - [5012] = {.lex_state = 952}, - [5013] = {.lex_state = 958}, - [5014] = {.lex_state = 952}, - [5015] = {.lex_state = 952}, - [5016] = {.lex_state = 952}, - [5017] = {.lex_state = 952}, - [5018] = {.lex_state = 952}, - [5019] = {.lex_state = 952}, - [5020] = {.lex_state = 952}, - [5021] = {.lex_state = 952}, - [5022] = {.lex_state = 958}, - [5023] = {.lex_state = 952}, - [5024] = {.lex_state = 958}, - [5025] = {.lex_state = 952}, - [5026] = {.lex_state = 952}, - [5027] = {.lex_state = 958}, - [5028] = {.lex_state = 952}, - [5029] = {.lex_state = 952}, - [5030] = {.lex_state = 371}, - [5031] = {.lex_state = 952}, - [5032] = {.lex_state = 100}, - [5033] = {.lex_state = 100}, - [5034] = {.lex_state = 383}, - [5035] = {.lex_state = 952}, - [5036] = {.lex_state = 952}, - [5037] = {.lex_state = 952}, - [5038] = {.lex_state = 952}, - [5039] = {.lex_state = 952}, - [5040] = {.lex_state = 952}, - [5041] = {.lex_state = 952}, - [5042] = {.lex_state = 952}, - [5043] = {.lex_state = 952}, - [5044] = {.lex_state = 952}, - [5045] = {.lex_state = 982}, - [5046] = {.lex_state = 982}, - [5047] = {.lex_state = 952}, - [5048] = {.lex_state = 952}, - [5049] = {.lex_state = 952}, - [5050] = {.lex_state = 952}, - [5051] = {.lex_state = 952}, - [5052] = {.lex_state = 952}, - [5053] = {.lex_state = 952}, - [5054] = {.lex_state = 952}, - [5055] = {.lex_state = 38}, - [5056] = {.lex_state = 38}, - [5057] = {.lex_state = 952}, - [5058] = {.lex_state = 363}, - [5059] = {.lex_state = 38}, - [5060] = {.lex_state = 982}, - [5061] = {.lex_state = 958}, - [5062] = {.lex_state = 958}, - [5063] = {.lex_state = 958}, - [5064] = {.lex_state = 958}, - [5065] = {.lex_state = 958}, - [5066] = {.lex_state = 958}, - [5067] = {.lex_state = 926}, - [5068] = {.lex_state = 958}, - [5069] = {.lex_state = 958}, - [5070] = {.lex_state = 381}, - [5071] = {.lex_state = 364}, - [5072] = {.lex_state = 958}, - [5073] = {.lex_state = 958}, - [5074] = {.lex_state = 958}, - [5075] = {.lex_state = 38}, - [5076] = {.lex_state = 38}, - [5077] = {.lex_state = 38}, - [5078] = {.lex_state = 38}, - [5079] = {.lex_state = 38}, - [5080] = {.lex_state = 4413}, - [5081] = {.lex_state = 38}, - [5082] = {.lex_state = 38}, - [5083] = {.lex_state = 364}, - [5084] = {.lex_state = 958}, - [5085] = {.lex_state = 958}, - [5086] = {.lex_state = 4413}, - [5087] = {.lex_state = 958}, - [5088] = {.lex_state = 38}, - [5089] = {.lex_state = 958}, - [5090] = {.lex_state = 369}, - [5091] = {.lex_state = 38}, - [5092] = {.lex_state = 958}, - [5093] = {.lex_state = 926}, - [5094] = {.lex_state = 958}, - [5095] = {.lex_state = 38}, - [5096] = {.lex_state = 958}, - [5097] = {.lex_state = 958}, - [5098] = {.lex_state = 958}, - [5099] = {.lex_state = 1027}, - [5100] = {.lex_state = 958}, - [5101] = {.lex_state = 958}, - [5102] = {.lex_state = 958}, - [5103] = {.lex_state = 958}, - [5104] = {.lex_state = 958}, - [5105] = {.lex_state = 958}, - [5106] = {.lex_state = 926}, - [5107] = {.lex_state = 926}, - [5108] = {.lex_state = 958}, - [5109] = {.lex_state = 958}, - [5110] = {.lex_state = 958}, - [5111] = {.lex_state = 38}, - [5112] = {.lex_state = 370}, - [5113] = {.lex_state = 958}, - [5114] = {.lex_state = 958}, - [5115] = {.lex_state = 68}, - [5116] = {.lex_state = 38}, - [5117] = {.lex_state = 958}, - [5118] = {.lex_state = 958}, - [5119] = {.lex_state = 958}, - [5120] = {.lex_state = 38}, - [5121] = {.lex_state = 958}, - [5122] = {.lex_state = 958}, - [5123] = {.lex_state = 958}, - [5124] = {.lex_state = 958}, - [5125] = {.lex_state = 958}, - [5126] = {.lex_state = 958}, - [5127] = {.lex_state = 958}, - [5128] = {.lex_state = 371}, - [5129] = {.lex_state = 958}, - [5130] = {.lex_state = 958}, - [5131] = {.lex_state = 371}, - [5132] = {.lex_state = 958}, - [5133] = {.lex_state = 958}, - [5134] = {.lex_state = 958}, - [5135] = {.lex_state = 958}, - [5136] = {.lex_state = 958}, - [5137] = {.lex_state = 958}, - [5138] = {.lex_state = 958}, - [5139] = {.lex_state = 1027}, - [5140] = {.lex_state = 958}, - [5141] = {.lex_state = 958}, - [5142] = {.lex_state = 958}, - [5143] = {.lex_state = 370}, - [5144] = {.lex_state = 958}, - [5145] = {.lex_state = 958}, - [5146] = {.lex_state = 958}, - [5147] = {.lex_state = 958}, - [5148] = {.lex_state = 1027}, - [5149] = {.lex_state = 371}, - [5150] = {.lex_state = 38}, - [5151] = {.lex_state = 1027}, - [5152] = {.lex_state = 1027}, - [5153] = {.lex_state = 38}, - [5154] = {.lex_state = 958}, - [5155] = {.lex_state = 958}, - [5156] = {.lex_state = 38}, - [5157] = {.lex_state = 38}, - [5158] = {.lex_state = 68}, - [5159] = {.lex_state = 38}, - [5160] = {.lex_state = 38}, - [5161] = {.lex_state = 38}, - [5162] = {.lex_state = 958}, - [5163] = {.lex_state = 38}, - [5164] = {.lex_state = 38}, - [5165] = {.lex_state = 958}, - [5166] = {.lex_state = 38}, - [5167] = {.lex_state = 38}, - [5168] = {.lex_state = 38}, - [5169] = {.lex_state = 38}, - [5170] = {.lex_state = 958}, - [5171] = {.lex_state = 4413}, - [5172] = {.lex_state = 38}, - [5173] = {.lex_state = 375}, - [5174] = {.lex_state = 38}, - [5175] = {.lex_state = 958}, - [5176] = {.lex_state = 377}, - [5177] = {.lex_state = 958}, - [5178] = {.lex_state = 958}, - [5179] = {.lex_state = 958}, - [5180] = {.lex_state = 958}, - [5181] = {.lex_state = 369}, - [5182] = {.lex_state = 4413}, - [5183] = {.lex_state = 368}, - [5184] = {.lex_state = 958}, - [5185] = {.lex_state = 958}, - [5186] = {.lex_state = 958}, - [5187] = {.lex_state = 4413}, - [5188] = {.lex_state = 958}, - [5189] = {.lex_state = 958}, - [5190] = {.lex_state = 68}, - [5191] = {.lex_state = 958}, - [5192] = {.lex_state = 371}, - [5193] = {.lex_state = 68}, - [5194] = {.lex_state = 958}, - [5195] = {.lex_state = 926}, - [5196] = {.lex_state = 926}, - [5197] = {.lex_state = 38}, - [5198] = {.lex_state = 38}, - [5199] = {.lex_state = 68}, - [5200] = {.lex_state = 38}, - [5201] = {.lex_state = 412}, - [5202] = {.lex_state = 982}, - [5203] = {.lex_state = 38}, - [5204] = {.lex_state = 982}, - [5205] = {.lex_state = 982}, - [5206] = {.lex_state = 982}, - [5207] = {.lex_state = 982}, - [5208] = {.lex_state = 982}, - [5209] = {.lex_state = 38}, - [5210] = {.lex_state = 38}, - [5211] = {.lex_state = 982}, - [5212] = {.lex_state = 376}, - [5213] = {.lex_state = 38}, - [5214] = {.lex_state = 958}, - [5215] = {.lex_state = 120}, - [5216] = {.lex_state = 120}, - [5217] = {.lex_state = 120}, - [5218] = {.lex_state = 120}, - [5219] = {.lex_state = 431}, - [5220] = {.lex_state = 958}, - [5221] = {.lex_state = 371}, - [5222] = {.lex_state = 982}, - [5223] = {.lex_state = 454}, - [5224] = {.lex_state = 68}, - [5225] = {.lex_state = 383}, - [5226] = {.lex_state = 68}, - [5227] = {.lex_state = 378}, - [5228] = {.lex_state = 371}, - [5229] = {.lex_state = 373}, - [5230] = {.lex_state = 459}, - [5231] = {.lex_state = 38}, - [5232] = {.lex_state = 38}, - [5233] = {.lex_state = 38}, - [5234] = {.lex_state = 383}, - [5235] = {.lex_state = 982}, - [5236] = {.lex_state = 38}, - [5237] = {.lex_state = 982}, - [5238] = {.lex_state = 378}, - [5239] = {.lex_state = 432}, - [5240] = {.lex_state = 926}, - [5241] = {.lex_state = 373}, - [5242] = {.lex_state = 982}, - [5243] = {.lex_state = 926}, - [5244] = {.lex_state = 432}, - [5245] = {.lex_state = 371}, - [5246] = {.lex_state = 373}, - [5247] = {.lex_state = 38}, - [5248] = {.lex_state = 449}, - [5249] = {.lex_state = 38}, - [5250] = {.lex_state = 38}, - [5251] = {.lex_state = 382}, - [5252] = {.lex_state = 365}, - [5253] = {.lex_state = 373}, - [5254] = {.lex_state = 926}, - [5255] = {.lex_state = 72}, - [5256] = {.lex_state = 413}, - [5257] = {.lex_state = 373}, - [5258] = {.lex_state = 982}, - [5259] = {.lex_state = 926}, - [5260] = {.lex_state = 72}, - [5261] = {.lex_state = 365}, - [5262] = {.lex_state = 982}, - [5263] = {.lex_state = 425}, - [5264] = {.lex_state = 373}, - [5265] = {.lex_state = 958}, - [5266] = {.lex_state = 982}, - [5267] = {.lex_state = 982}, - [5268] = {.lex_state = 373}, - [5269] = {.lex_state = 382}, - [5270] = {.lex_state = 982}, - [5271] = {.lex_state = 926}, - [5272] = {.lex_state = 447}, - [5273] = {.lex_state = 103}, - [5274] = {.lex_state = 926}, - [5275] = {.lex_state = 38}, - [5276] = {.lex_state = 4412}, - [5277] = {.lex_state = 4412}, - [5278] = {.lex_state = 926}, - [5279] = {.lex_state = 3994}, - [5280] = {.lex_state = 926}, - [5281] = {.lex_state = 38, .external_lex_state = 2}, - [5282] = {.lex_state = 433}, - [5283] = {.lex_state = 3994}, - [5284] = {.lex_state = 3994}, - [5285] = {.lex_state = 412}, - [5286] = {.lex_state = 450}, - [5287] = {.lex_state = 926}, - [5288] = {.lex_state = 433}, - [5289] = {.lex_state = 450}, - [5290] = {.lex_state = 59}, - [5291] = {.lex_state = 4412}, - [5292] = {.lex_state = 4592}, - [5293] = {.lex_state = 4592}, - [5294] = {.lex_state = 38, .external_lex_state = 2}, - [5295] = {.lex_state = 79}, - [5296] = {.lex_state = 434}, - [5297] = {.lex_state = 433}, - [5298] = {.lex_state = 80}, - [5299] = {.lex_state = 380}, - [5300] = {.lex_state = 59}, - [5301] = {.lex_state = 38, .external_lex_state = 2}, - [5302] = {.lex_state = 38, .external_lex_state = 2}, - [5303] = {.lex_state = 433}, - [5304] = {.lex_state = 926}, - [5305] = {.lex_state = 4412}, - [5306] = {.lex_state = 38, .external_lex_state = 2}, - [5307] = {.lex_state = 103}, - [5308] = {.lex_state = 103}, - [5309] = {.lex_state = 38}, - [5310] = {.lex_state = 4412}, - [5311] = {.lex_state = 3994}, - [5312] = {.lex_state = 3994}, - [5313] = {.lex_state = 414}, - [5314] = {.lex_state = 3994}, - [5315] = {.lex_state = 3994}, - [5316] = {.lex_state = 380}, - [5317] = {.lex_state = 394}, - [5318] = {.lex_state = 4592}, - [5319] = {.lex_state = 4592}, - [5320] = {.lex_state = 38, .external_lex_state = 2}, - [5321] = {.lex_state = 396}, - [5322] = {.lex_state = 38}, - [5323] = {.lex_state = 412}, - [5324] = {.lex_state = 38, .external_lex_state = 2}, - [5325] = {.lex_state = 3994}, - [5326] = {.lex_state = 3994}, - [5327] = {.lex_state = 4412}, - [5328] = {.lex_state = 4412}, - [5329] = {.lex_state = 383}, - [5330] = {.lex_state = 3994}, - [5331] = {.lex_state = 3994}, - [5332] = {.lex_state = 38, .external_lex_state = 2}, - [5333] = {.lex_state = 380}, - [5334] = {.lex_state = 38, .external_lex_state = 2}, - [5335] = {.lex_state = 3994}, - [5336] = {.lex_state = 3994}, - [5337] = {.lex_state = 3994}, - [5338] = {.lex_state = 3994}, - [5339] = {.lex_state = 433}, - [5340] = {.lex_state = 379}, - [5341] = {.lex_state = 412}, - [5342] = {.lex_state = 379}, - [5343] = {.lex_state = 380}, - [5344] = {.lex_state = 379}, - [5345] = {.lex_state = 38}, - [5346] = {.lex_state = 379}, - [5347] = {.lex_state = 380}, - [5348] = {.lex_state = 383}, - [5349] = {.lex_state = 460}, - [5350] = {.lex_state = 38}, - [5351] = {.lex_state = 4592}, - [5352] = {.lex_state = 4592}, - [5353] = {.lex_state = 460}, - [5354] = {.lex_state = 379}, - [5355] = {.lex_state = 427}, - [5356] = {.lex_state = 3994}, - [5357] = {.lex_state = 3994}, - [5358] = {.lex_state = 426}, - [5359] = {.lex_state = 120}, - [5360] = {.lex_state = 120}, - [5361] = {.lex_state = 38}, - [5362] = {.lex_state = 426}, - [5363] = {.lex_state = 3994}, - [5364] = {.lex_state = 120}, - [5365] = {.lex_state = 120}, - [5366] = {.lex_state = 120}, - [5367] = {.lex_state = 120}, - [5368] = {.lex_state = 120}, - [5369] = {.lex_state = 120}, - [5370] = {.lex_state = 415}, - [5371] = {.lex_state = 38, .external_lex_state = 2}, - [5372] = {.lex_state = 120}, - [5373] = {.lex_state = 120}, - [5374] = {.lex_state = 38, .external_lex_state = 2}, - [5375] = {.lex_state = 81}, - [5376] = {.lex_state = 458}, - [5377] = {.lex_state = 120}, - [5378] = {.lex_state = 448}, - [5379] = {.lex_state = 1028}, - [5380] = {.lex_state = 120}, - [5381] = {.lex_state = 120}, - [5382] = {.lex_state = 120}, - [5383] = {.lex_state = 120}, - [5384] = {.lex_state = 120}, - [5385] = {.lex_state = 120}, - [5386] = {.lex_state = 448}, - [5387] = {.lex_state = 120}, - [5388] = {.lex_state = 120}, - [5389] = {.lex_state = 69}, - [5390] = {.lex_state = 120}, - [5391] = {.lex_state = 448}, - [5392] = {.lex_state = 120}, - [5393] = {.lex_state = 448}, - [5394] = {.lex_state = 120}, - [5395] = {.lex_state = 461}, - [5396] = {.lex_state = 120}, - [5397] = {.lex_state = 120}, - [5398] = {.lex_state = 120}, - [5399] = {.lex_state = 1032}, - [5400] = {.lex_state = 120}, - [5401] = {.lex_state = 120}, - [5402] = {.lex_state = 428}, - [5403] = {.lex_state = 120}, - [5404] = {.lex_state = 59}, - [5405] = {.lex_state = 59}, - [5406] = {.lex_state = 120}, - [5407] = {.lex_state = 120}, - [5408] = {.lex_state = 120}, - [5409] = {.lex_state = 120}, - [5410] = {.lex_state = 448}, - [5411] = {.lex_state = 120}, - [5412] = {.lex_state = 38}, - [5413] = {.lex_state = 397}, - [5414] = {.lex_state = 461}, - [5415] = {.lex_state = 120}, - [5416] = {.lex_state = 69}, - [5417] = {.lex_state = 120}, - [5418] = {.lex_state = 461}, - [5419] = {.lex_state = 120}, - [5420] = {.lex_state = 120}, - [5421] = {.lex_state = 435}, - [5422] = {.lex_state = 120}, - [5423] = {.lex_state = 461}, - [5424] = {.lex_state = 38, .external_lex_state = 2}, - [5425] = {.lex_state = 38, .external_lex_state = 2}, - [5426] = {.lex_state = 120}, - [5427] = {.lex_state = 120}, - [5428] = {.lex_state = 462}, - [5429] = {.lex_state = 397}, - [5430] = {.lex_state = 461}, - [5431] = {.lex_state = 81}, - [5432] = {.lex_state = 120}, - [5433] = {.lex_state = 120}, - [5434] = {.lex_state = 120}, - [5435] = {.lex_state = 427}, - [5436] = {.lex_state = 120}, - [5437] = {.lex_state = 435}, - [5438] = {.lex_state = 455}, - [5439] = {.lex_state = 468}, - [5440] = {.lex_state = 120}, - [5441] = {.lex_state = 412}, - [5442] = {.lex_state = 120}, - [5443] = {.lex_state = 120}, - [5444] = {.lex_state = 120}, - [5445] = {.lex_state = 427}, - [5446] = {.lex_state = 120}, - [5447] = {.lex_state = 73}, - [5448] = {.lex_state = 427}, - [5449] = {.lex_state = 38}, - [5450] = {.lex_state = 427}, - [5451] = {.lex_state = 38}, - [5452] = {.lex_state = 412}, - [5453] = {.lex_state = 120}, - [5454] = {.lex_state = 120}, - [5455] = {.lex_state = 74}, - [5456] = {.lex_state = 120}, - [5457] = {.lex_state = 120}, - [5458] = {.lex_state = 38, .external_lex_state = 2}, - [5459] = {.lex_state = 68}, - [5460] = {.lex_state = 68}, - [5461] = {.lex_state = 68}, - [5462] = {.lex_state = 68}, - [5463] = {.lex_state = 68}, - [5464] = {.lex_state = 68}, - [5465] = {.lex_state = 68}, - [5466] = {.lex_state = 68}, - [5467] = {.lex_state = 68}, - [5468] = {.lex_state = 436}, - [5469] = {.lex_state = 457}, - [5470] = {.lex_state = 457}, - [5471] = {.lex_state = 38, .external_lex_state = 2}, - [5472] = {.lex_state = 59}, - [5473] = {.lex_state = 102}, - [5474] = {.lex_state = 991}, - [5475] = {.lex_state = 59}, - [5476] = {.lex_state = 991}, - [5477] = {.lex_state = 353, .external_lex_state = 2}, - [5478] = {.lex_state = 59}, - [5479] = {.lex_state = 353, .external_lex_state = 2}, - [5480] = {.lex_state = 68}, - [5481] = {.lex_state = 68}, - [5482] = {.lex_state = 59}, - [5483] = {.lex_state = 59}, - [5484] = {.lex_state = 59}, - [5485] = {.lex_state = 353, .external_lex_state = 2}, - [5486] = {.lex_state = 59}, - [5487] = {.lex_state = 59}, - [5488] = {.lex_state = 59}, - [5489] = {.lex_state = 59}, - [5490] = {.lex_state = 353, .external_lex_state = 2}, - [5491] = {.lex_state = 59}, - [5492] = {.lex_state = 59}, - [5493] = {.lex_state = 59}, - [5494] = {.lex_state = 926}, - [5495] = {.lex_state = 353, .external_lex_state = 2}, - [5496] = {.lex_state = 59}, - [5497] = {.lex_state = 59}, - [5498] = {.lex_state = 59}, - [5499] = {.lex_state = 59}, - [5500] = {.lex_state = 353, .external_lex_state = 2}, - [5501] = {.lex_state = 59}, - [5502] = {.lex_state = 926}, - [5503] = {.lex_state = 59}, - [5504] = {.lex_state = 926}, - [5505] = {.lex_state = 59}, - [5506] = {.lex_state = 353, .external_lex_state = 2}, - [5507] = {.lex_state = 353, .external_lex_state = 2}, - [5508] = {.lex_state = 38}, - [5509] = {.lex_state = 75}, - [5510] = {.lex_state = 926}, - [5511] = {.lex_state = 429}, - [5512] = {.lex_state = 353, .external_lex_state = 2}, - [5513] = {.lex_state = 457}, - [5514] = {.lex_state = 457}, - [5515] = {.lex_state = 82}, - [5516] = {.lex_state = 353, .external_lex_state = 2}, - [5517] = {.lex_state = 991}, - [5518] = {.lex_state = 988}, - [5519] = {.lex_state = 59}, - [5520] = {.lex_state = 353, .external_lex_state = 2}, - [5521] = {.lex_state = 457}, - [5522] = {.lex_state = 38}, - [5523] = {.lex_state = 469}, - [5524] = {.lex_state = 353, .external_lex_state = 2}, - [5525] = {.lex_state = 1032}, - [5526] = {.lex_state = 429}, - [5527] = {.lex_state = 353, .external_lex_state = 2}, - [5528] = {.lex_state = 436}, - [5529] = {.lex_state = 463}, - [5530] = {.lex_state = 353, .external_lex_state = 2}, - [5531] = {.lex_state = 353, .external_lex_state = 2}, - [5532] = {.lex_state = 926}, - [5533] = {.lex_state = 353, .external_lex_state = 2}, - [5534] = {.lex_state = 353, .external_lex_state = 2}, - [5535] = {.lex_state = 456}, - [5536] = {.lex_state = 353, .external_lex_state = 2}, - [5537] = {.lex_state = 353, .external_lex_state = 2}, - [5538] = {.lex_state = 353, .external_lex_state = 2}, - [5539] = {.lex_state = 353, .external_lex_state = 2}, - [5540] = {.lex_state = 353, .external_lex_state = 2}, - [5541] = {.lex_state = 353, .external_lex_state = 2}, - [5542] = {.lex_state = 353, .external_lex_state = 2}, - [5543] = {.lex_state = 353, .external_lex_state = 2}, - [5544] = {.lex_state = 353, .external_lex_state = 2}, - [5545] = {.lex_state = 353, .external_lex_state = 2}, - [5546] = {.lex_state = 353, .external_lex_state = 2}, - [5547] = {.lex_state = 353, .external_lex_state = 2}, - [5548] = {.lex_state = 353, .external_lex_state = 2}, - [5549] = {.lex_state = 353, .external_lex_state = 2}, - [5550] = {.lex_state = 1028}, - [5551] = {.lex_state = 353, .external_lex_state = 2}, - [5552] = {.lex_state = 353, .external_lex_state = 2}, - [5553] = {.lex_state = 353, .external_lex_state = 2}, - [5554] = {.lex_state = 353, .external_lex_state = 2}, - [5555] = {.lex_state = 353, .external_lex_state = 2}, - [5556] = {.lex_state = 353, .external_lex_state = 2}, - [5557] = {.lex_state = 353, .external_lex_state = 2}, - [5558] = {.lex_state = 353, .external_lex_state = 2}, - [5559] = {.lex_state = 353, .external_lex_state = 2}, - [5560] = {.lex_state = 353, .external_lex_state = 2}, - [5561] = {.lex_state = 1052}, - [5562] = {.lex_state = 395}, - [5563] = {.lex_state = 38, .external_lex_state = 2}, - [5564] = {.lex_state = 82}, - [5565] = {.lex_state = 1030}, - [5566] = {.lex_state = 59}, - [5567] = {.lex_state = 59}, - [5568] = {.lex_state = 991}, - [5569] = {.lex_state = 395}, - [5570] = {.lex_state = 1052}, - [5571] = {.lex_state = 464}, - [5572] = {.lex_state = 38, .external_lex_state = 2}, - [5573] = {.lex_state = 395}, - [5574] = {.lex_state = 38, .external_lex_state = 2}, - [5575] = {.lex_state = 1052}, - [5576] = {.lex_state = 1052}, - [5577] = {.lex_state = 82}, - [5578] = {.lex_state = 436}, - [5579] = {.lex_state = 1029}, - [5580] = {.lex_state = 82}, - [5581] = {.lex_state = 926}, - [5582] = {.lex_state = 395}, - [5583] = {.lex_state = 926}, - [5584] = {.lex_state = 75}, - [5585] = {.lex_state = 38, .external_lex_state = 2}, - [5586] = {.lex_state = 102}, - [5587] = {.lex_state = 1029}, - [5588] = {.lex_state = 102}, - [5589] = {.lex_state = 38, .external_lex_state = 2}, - [5590] = {.lex_state = 1052}, - [5591] = {.lex_state = 469}, - [5592] = {.lex_state = 464}, - [5593] = {.lex_state = 395}, - [5594] = {.lex_state = 418}, - [5595] = {.lex_state = 353, .external_lex_state = 2}, - [5596] = {.lex_state = 38, .external_lex_state = 2}, - [5597] = {.lex_state = 82}, - [5598] = {.lex_state = 38, .external_lex_state = 2}, - [5599] = {.lex_state = 353, .external_lex_state = 2}, - [5600] = {.lex_state = 59}, - [5601] = {.lex_state = 436}, - [5602] = {.lex_state = 38, .external_lex_state = 2}, - [5603] = {.lex_state = 38, .external_lex_state = 2}, - [5604] = {.lex_state = 353, .external_lex_state = 2}, - [5605] = {.lex_state = 353, .external_lex_state = 2}, - [5606] = {.lex_state = 38, .external_lex_state = 2}, - [5607] = {.lex_state = 457}, - [5608] = {.lex_state = 68}, - [5609] = {.lex_state = 38, .external_lex_state = 2}, - [5610] = {.lex_state = 38, .external_lex_state = 2}, - [5611] = {.lex_state = 926}, - [5612] = {.lex_state = 59}, - [5613] = {.lex_state = 926}, - [5614] = {.lex_state = 68}, - [5615] = {.lex_state = 59}, - [5616] = {.lex_state = 68}, - [5617] = {.lex_state = 68}, - [5618] = {.lex_state = 68}, - [5619] = {.lex_state = 68}, - [5620] = {.lex_state = 68}, - [5621] = {.lex_state = 68}, - [5622] = {.lex_state = 68}, - [5623] = {.lex_state = 68}, - [5624] = {.lex_state = 68}, - [5625] = {.lex_state = 68}, - [5626] = {.lex_state = 353, .external_lex_state = 2}, - [5627] = {.lex_state = 68}, - [5628] = {.lex_state = 422}, - [5629] = {.lex_state = 422}, - [5630] = {.lex_state = 470}, - [5631] = {.lex_state = 422}, - [5632] = {.lex_state = 465}, - [5633] = {.lex_state = 470}, - [5634] = {.lex_state = 926}, - [5635] = {.lex_state = 465}, - [5636] = {.lex_state = 38}, - [5637] = {.lex_state = 470}, - [5638] = {.lex_state = 133}, - [5639] = {.lex_state = 98}, - [5640] = {.lex_state = 68}, - [5641] = {.lex_state = 68}, - [5642] = {.lex_state = 68}, - [5643] = {.lex_state = 76}, - [5644] = {.lex_state = 991}, - [5645] = {.lex_state = 68}, - [5646] = {.lex_state = 68}, - [5647] = {.lex_state = 38}, - [5648] = {.lex_state = 38, .external_lex_state = 2}, - [5649] = {.lex_state = 68}, - [5650] = {.lex_state = 38, .external_lex_state = 2}, - [5651] = {.lex_state = 991}, - [5652] = {.lex_state = 991}, - [5653] = {.lex_state = 991}, - [5654] = {.lex_state = 38, .external_lex_state = 2}, - [5655] = {.lex_state = 991}, - [5656] = {.lex_state = 422}, - [5657] = {.lex_state = 68}, - [5658] = {.lex_state = 991}, - [5659] = {.lex_state = 991}, - [5660] = {.lex_state = 38, .external_lex_state = 2}, - [5661] = {.lex_state = 991}, - [5662] = {.lex_state = 991}, - [5663] = {.lex_state = 991}, - [5664] = {.lex_state = 991}, - [5665] = {.lex_state = 991}, - [5666] = {.lex_state = 422}, - [5667] = {.lex_state = 991}, - [5668] = {.lex_state = 991}, - [5669] = {.lex_state = 446}, - [5670] = {.lex_state = 991}, - [5671] = {.lex_state = 991}, - [5672] = {.lex_state = 991}, - [5673] = {.lex_state = 991}, - [5674] = {.lex_state = 422}, - [5675] = {.lex_state = 68}, - [5676] = {.lex_state = 991}, - [5677] = {.lex_state = 465}, - [5678] = {.lex_state = 68}, - [5679] = {.lex_state = 68}, - [5680] = {.lex_state = 422}, - [5681] = {.lex_state = 436}, - [5682] = {.lex_state = 422}, - [5683] = {.lex_state = 422}, - [5684] = {.lex_state = 68}, - [5685] = {.lex_state = 422}, - [5686] = {.lex_state = 76}, - [5687] = {.lex_state = 430}, - [5688] = {.lex_state = 38, .external_lex_state = 2}, - [5689] = {.lex_state = 470}, - [5690] = {.lex_state = 412}, - [5691] = {.lex_state = 422}, - [5692] = {.lex_state = 430}, - [5693] = {.lex_state = 1030}, - [5694] = {.lex_state = 422}, - [5695] = {.lex_state = 422}, - [5696] = {.lex_state = 38}, - [5697] = {.lex_state = 476}, - [5698] = {.lex_state = 430}, - [5699] = {.lex_state = 430}, - [5700] = {.lex_state = 422}, - [5701] = {.lex_state = 422}, - [5702] = {.lex_state = 422}, - [5703] = {.lex_state = 422}, - [5704] = {.lex_state = 466}, - [5705] = {.lex_state = 470}, - [5706] = {.lex_state = 422}, - [5707] = {.lex_state = 422}, - [5708] = {.lex_state = 38}, - [5709] = {.lex_state = 412}, - [5710] = {.lex_state = 98}, - [5711] = {.lex_state = 991}, - [5712] = {.lex_state = 1029}, - [5713] = {.lex_state = 430}, - [5714] = {.lex_state = 76}, - [5715] = {.lex_state = 466}, - [5716] = {.lex_state = 1052}, - [5717] = {.lex_state = 476}, - [5718] = {.lex_state = 1029}, - [5719] = {.lex_state = 422}, - [5720] = {.lex_state = 38, .external_lex_state = 2}, - [5721] = {.lex_state = 436}, - [5722] = {.lex_state = 38, .external_lex_state = 2}, - [5723] = {.lex_state = 38, .external_lex_state = 2}, - [5724] = {.lex_state = 1052}, - [5725] = {.lex_state = 1052}, - [5726] = {.lex_state = 991}, - [5727] = {.lex_state = 102}, - [5728] = {.lex_state = 102}, - [5729] = {.lex_state = 38}, - [5730] = {.lex_state = 988}, - [5731] = {.lex_state = 422}, - [5732] = {.lex_state = 1052}, - [5733] = {.lex_state = 133}, - [5734] = {.lex_state = 1052}, - [5735] = {.lex_state = 465}, - [5736] = {.lex_state = 68}, - [5737] = {.lex_state = 68}, - [5738] = {.lex_state = 68}, - [5739] = {.lex_state = 68}, - [5740] = {.lex_state = 68}, - [5741] = {.lex_state = 68}, - [5742] = {.lex_state = 430}, - [5743] = {.lex_state = 422}, - [5744] = {.lex_state = 446}, - [5745] = {.lex_state = 422}, - [5746] = {.lex_state = 412}, - [5747] = {.lex_state = 68}, - [5748] = {.lex_state = 422}, - [5749] = {.lex_state = 465}, - [5750] = {.lex_state = 465}, - [5751] = {.lex_state = 422}, - [5752] = {.lex_state = 76}, - [5753] = {.lex_state = 412}, - [5754] = {.lex_state = 422}, - [5755] = {.lex_state = 383}, - [5756] = {.lex_state = 362}, - [5757] = {.lex_state = 3995}, - [5758] = {.lex_state = 3995}, - [5759] = {.lex_state = 383}, - [5760] = {.lex_state = 362}, - [5761] = {.lex_state = 362}, - [5762] = {.lex_state = 951}, - [5763] = {.lex_state = 383}, - [5764] = {.lex_state = 951}, - [5765] = {.lex_state = 951}, - [5766] = {.lex_state = 362}, - [5767] = {.lex_state = 3995}, - [5768] = {.lex_state = 3995}, - [5769] = {.lex_state = 362}, - [5770] = {.lex_state = 951}, - [5771] = {.lex_state = 446}, - [5772] = {.lex_state = 412}, - [5773] = {.lex_state = 951}, - [5774] = {.lex_state = 412}, - [5775] = {.lex_state = 471}, - [5776] = {.lex_state = 362}, - [5777] = {.lex_state = 3995}, - [5778] = {.lex_state = 3995}, - [5779] = {.lex_state = 362}, - [5780] = {.lex_state = 951}, - [5781] = {.lex_state = 926}, - [5782] = {.lex_state = 392}, - [5783] = {.lex_state = 412}, - [5784] = {.lex_state = 951}, - [5785] = {.lex_state = 926}, - [5786] = {.lex_state = 507}, - [5787] = {.lex_state = 362}, - [5788] = {.lex_state = 3995}, - [5789] = {.lex_state = 3995}, - [5790] = {.lex_state = 362}, - [5791] = {.lex_state = 951}, - [5792] = {.lex_state = 951}, - [5793] = {.lex_state = 422}, - [5794] = {.lex_state = 412}, - [5795] = {.lex_state = 926}, - [5796] = {.lex_state = 362}, - [5797] = {.lex_state = 3995}, - [5798] = {.lex_state = 3995}, - [5799] = {.lex_state = 362}, - [5800] = {.lex_state = 951}, - [5801] = {.lex_state = 475}, - [5802] = {.lex_state = 951}, - [5803] = {.lex_state = 951}, - [5804] = {.lex_state = 951}, - [5805] = {.lex_state = 362}, - [5806] = {.lex_state = 98}, - [5807] = {.lex_state = 3995}, - [5808] = {.lex_state = 3995}, - [5809] = {.lex_state = 3995}, - [5810] = {.lex_state = 362}, - [5811] = {.lex_state = 951}, - [5812] = {.lex_state = 951}, - [5813] = {.lex_state = 412}, - [5814] = {.lex_state = 412}, - [5815] = {.lex_state = 951}, - [5816] = {.lex_state = 951}, - [5817] = {.lex_state = 38, .external_lex_state = 2}, - [5818] = {.lex_state = 38, .external_lex_state = 2}, - [5819] = {.lex_state = 362}, - [5820] = {.lex_state = 3995}, - [5821] = {.lex_state = 3995}, - [5822] = {.lex_state = 3995}, - [5823] = {.lex_state = 362}, - [5824] = {.lex_state = 926}, - [5825] = {.lex_state = 951}, - [5826] = {.lex_state = 467}, - [5827] = {.lex_state = 951}, - [5828] = {.lex_state = 446}, - [5829] = {.lex_state = 362}, - [5830] = {.lex_state = 951}, - [5831] = {.lex_state = 3995}, - [5832] = {.lex_state = 3995}, - [5833] = {.lex_state = 951}, - [5834] = {.lex_state = 362}, - [5835] = {.lex_state = 951}, - [5836] = {.lex_state = 951}, - [5837] = {.lex_state = 38, .external_lex_state = 2}, - [5838] = {.lex_state = 951}, - [5839] = {.lex_state = 362}, - [5840] = {.lex_state = 362}, - [5841] = {.lex_state = 951}, - [5842] = {.lex_state = 926}, - [5843] = {.lex_state = 951}, - [5844] = {.lex_state = 362}, - [5845] = {.lex_state = 362}, - [5846] = {.lex_state = 951}, - [5847] = {.lex_state = 951}, - [5848] = {.lex_state = 951}, - [5849] = {.lex_state = 507}, - [5850] = {.lex_state = 422}, - [5851] = {.lex_state = 362}, - [5852] = {.lex_state = 362}, - [5853] = {.lex_state = 951}, - [5854] = {.lex_state = 951}, - [5855] = {.lex_state = 362}, - [5856] = {.lex_state = 926}, - [5857] = {.lex_state = 362}, - [5858] = {.lex_state = 478}, - [5859] = {.lex_state = 362}, - [5860] = {.lex_state = 951}, - [5861] = {.lex_state = 951}, - [5862] = {.lex_state = 3995}, - [5863] = {.lex_state = 3995}, - [5864] = {.lex_state = 362}, - [5865] = {.lex_state = 362}, - [5866] = {.lex_state = 951}, - [5867] = {.lex_state = 951}, - [5868] = {.lex_state = 133}, - [5869] = {.lex_state = 951}, - [5870] = {.lex_state = 951}, - [5871] = {.lex_state = 422}, - [5872] = {.lex_state = 951}, - [5873] = {.lex_state = 951}, - [5874] = {.lex_state = 951}, - [5875] = {.lex_state = 951}, - [5876] = {.lex_state = 951}, - [5877] = {.lex_state = 3995}, - [5878] = {.lex_state = 951}, - [5879] = {.lex_state = 951}, - [5880] = {.lex_state = 951}, - [5881] = {.lex_state = 475}, - [5882] = {.lex_state = 362}, - [5883] = {.lex_state = 951}, - [5884] = {.lex_state = 3995}, - [5885] = {.lex_state = 3995}, - [5886] = {.lex_state = 467}, - [5887] = {.lex_state = 362}, - [5888] = {.lex_state = 951}, - [5889] = {.lex_state = 133}, - [5890] = {.lex_state = 3995}, - [5891] = {.lex_state = 3995}, - [5892] = {.lex_state = 951}, - [5893] = {.lex_state = 951}, - [5894] = {.lex_state = 133}, - [5895] = {.lex_state = 383}, - [5896] = {.lex_state = 383}, - [5897] = {.lex_state = 383}, - [5898] = {.lex_state = 467}, - [5899] = {.lex_state = 103}, - [5900] = {.lex_state = 103}, - [5901] = {.lex_state = 422}, - [5902] = {.lex_state = 951}, - [5903] = {.lex_state = 926}, - [5904] = {.lex_state = 412}, - [5905] = {.lex_state = 951}, - [5906] = {.lex_state = 467}, - [5907] = {.lex_state = 951}, - [5908] = {.lex_state = 951}, - [5909] = {.lex_state = 77}, - [5910] = {.lex_state = 77}, - [5911] = {.lex_state = 441}, - [5912] = {.lex_state = 437}, - [5913] = {.lex_state = 98}, - [5914] = {.lex_state = 386}, - [5915] = {.lex_state = 467}, - [5916] = {.lex_state = 3995}, - [5917] = {.lex_state = 3995}, - [5918] = {.lex_state = 362}, - [5919] = {.lex_state = 991}, - [5920] = {.lex_state = 991}, - [5921] = {.lex_state = 362}, - [5922] = {.lex_state = 38, .external_lex_state = 2}, - [5923] = {.lex_state = 926}, - [5924] = {.lex_state = 3995}, - [5925] = {.lex_state = 3995}, - [5926] = {.lex_state = 412}, - [5927] = {.lex_state = 38, .external_lex_state = 2}, - [5928] = {.lex_state = 133}, - [5929] = {.lex_state = 507}, - [5930] = {.lex_state = 951}, - [5931] = {.lex_state = 951}, - [5932] = {.lex_state = 507}, - [5933] = {.lex_state = 951}, - [5934] = {.lex_state = 951}, - [5935] = {.lex_state = 362}, - [5936] = {.lex_state = 507}, - [5937] = {.lex_state = 951}, - [5938] = {.lex_state = 951}, - [5939] = {.lex_state = 951}, - [5940] = {.lex_state = 362}, - [5941] = {.lex_state = 3995}, - [5942] = {.lex_state = 951}, - [5943] = {.lex_state = 951}, - [5944] = {.lex_state = 951}, - [5945] = {.lex_state = 422}, - [5946] = {.lex_state = 393}, - [5947] = {.lex_state = 467}, - [5948] = {.lex_state = 951}, - [5949] = {.lex_state = 926}, - [5950] = {.lex_state = 38, .external_lex_state = 2}, - [5951] = {.lex_state = 951}, - [5952] = {.lex_state = 951}, - [5953] = {.lex_state = 422}, - [5954] = {.lex_state = 988}, - [5955] = {.lex_state = 385}, - [5956] = {.lex_state = 926}, - [5957] = {.lex_state = 422}, - [5958] = {.lex_state = 487}, - [5959] = {.lex_state = 412}, - [5960] = {.lex_state = 926}, - [5961] = {.lex_state = 472}, - [5962] = {.lex_state = 98}, - [5963] = {.lex_state = 475}, - [5964] = {.lex_state = 926}, - [5965] = {.lex_state = 926}, - [5966] = {.lex_state = 928}, - [5967] = {.lex_state = 928}, - [5968] = {.lex_state = 928}, - [5969] = {.lex_state = 928}, - [5970] = {.lex_state = 928}, - [5971] = {.lex_state = 928}, - [5972] = {.lex_state = 362}, - [5973] = {.lex_state = 103}, - [5974] = {.lex_state = 103}, - [5975] = {.lex_state = 103}, - [5976] = {.lex_state = 103}, - [5977] = {.lex_state = 422}, - [5978] = {.lex_state = 412}, - [5979] = {.lex_state = 926}, - [5980] = {.lex_state = 424}, - [5981] = {.lex_state = 475}, - [5982] = {.lex_state = 951}, - [5983] = {.lex_state = 474}, - [5984] = {.lex_state = 38}, - [5985] = {.lex_state = 440}, - [5986] = {.lex_state = 38}, - [5987] = {.lex_state = 388}, - [5988] = {.lex_state = 76}, - [5989] = {.lex_state = 951}, - [5990] = {.lex_state = 77}, - [5991] = {.lex_state = 104}, - [5992] = {.lex_state = 76}, - [5993] = {.lex_state = 518}, - [5994] = {.lex_state = 951}, - [5995] = {.lex_state = 952}, - [5996] = {.lex_state = 950}, - [5997] = {.lex_state = 38}, - [5998] = {.lex_state = 474}, - [5999] = {.lex_state = 390}, - [6000] = {.lex_state = 473}, - [6001] = {.lex_state = 518}, - [6002] = {.lex_state = 951}, - [6003] = {.lex_state = 991}, - [6004] = {.lex_state = 991}, - [6005] = {.lex_state = 38}, - [6006] = {.lex_state = 474}, - [6007] = {.lex_state = 474}, - [6008] = {.lex_state = 98}, - [6009] = {.lex_state = 38}, - [6010] = {.lex_state = 951}, - [6011] = {.lex_state = 76}, - [6012] = {.lex_state = 383}, - [6013] = {.lex_state = 38}, - [6014] = {.lex_state = 518}, - [6015] = {.lex_state = 383}, - [6016] = {.lex_state = 38}, - [6017] = {.lex_state = 443}, - [6018] = {.lex_state = 38}, - [6019] = {.lex_state = 446}, - [6020] = {.lex_state = 951}, - [6021] = {.lex_state = 951}, - [6022] = {.lex_state = 77}, - [6023] = {.lex_state = 951}, - [6024] = {.lex_state = 77}, - [6025] = {.lex_state = 412}, - [6026] = {.lex_state = 383}, - [6027] = {.lex_state = 991}, - [6028] = {.lex_state = 518}, - [6029] = {.lex_state = 991}, - [6030] = {.lex_state = 952}, - [6031] = {.lex_state = 951}, - [6032] = {.lex_state = 518}, - [6033] = {.lex_state = 991}, - [6034] = {.lex_state = 991}, - [6035] = {.lex_state = 951}, - [6036] = {.lex_state = 518}, - [6037] = {.lex_state = 412}, - [6038] = {.lex_state = 518}, - [6039] = {.lex_state = 383}, - [6040] = {.lex_state = 991}, - [6041] = {.lex_state = 518}, - [6042] = {.lex_state = 38}, - [6043] = {.lex_state = 393}, - [6044] = {.lex_state = 38}, - [6045] = {.lex_state = 518}, - [6046] = {.lex_state = 412}, - [6047] = {.lex_state = 951}, - [6048] = {.lex_state = 518}, - [6049] = {.lex_state = 474}, - [6050] = {.lex_state = 518}, - [6051] = {.lex_state = 518}, - [6052] = {.lex_state = 38}, - [6053] = {.lex_state = 991}, - [6054] = {.lex_state = 518}, - [6055] = {.lex_state = 991}, - [6056] = {.lex_state = 991}, - [6057] = {.lex_state = 951}, - [6058] = {.lex_state = 518}, - [6059] = {.lex_state = 518}, - [6060] = {.lex_state = 443}, - [6061] = {.lex_state = 518}, - [6062] = {.lex_state = 38}, - [6063] = {.lex_state = 991}, - [6064] = {.lex_state = 518}, - [6065] = {.lex_state = 446}, - [6066] = {.lex_state = 479}, - [6067] = {.lex_state = 991}, - [6068] = {.lex_state = 951}, - [6069] = {.lex_state = 98}, - [6070] = {.lex_state = 38}, - [6071] = {.lex_state = 518}, - [6072] = {.lex_state = 77}, - [6073] = {.lex_state = 518}, - [6074] = {.lex_state = 518}, - [6075] = {.lex_state = 991}, - [6076] = {.lex_state = 38}, - [6077] = {.lex_state = 518}, - [6078] = {.lex_state = 38}, - [6079] = {.lex_state = 518}, - [6080] = {.lex_state = 77}, - [6081] = {.lex_state = 38}, - [6082] = {.lex_state = 518}, - [6083] = {.lex_state = 38}, - [6084] = {.lex_state = 991}, - [6085] = {.lex_state = 991}, - [6086] = {.lex_state = 951}, - [6087] = {.lex_state = 518}, - [6088] = {.lex_state = 383}, - [6089] = {.lex_state = 38}, - [6090] = {.lex_state = 951}, - [6091] = {.lex_state = 951}, - [6092] = {.lex_state = 386}, - [6093] = {.lex_state = 991}, - [6094] = {.lex_state = 383}, - [6095] = {.lex_state = 991}, - [6096] = {.lex_state = 990}, - [6097] = {.lex_state = 412}, - [6098] = {.lex_state = 990}, - [6099] = {.lex_state = 518}, - [6100] = {.lex_state = 991}, - [6101] = {.lex_state = 446}, - [6102] = {.lex_state = 423}, - [6103] = {.lex_state = 518}, - [6104] = {.lex_state = 446}, - [6105] = {.lex_state = 951}, - [6106] = {.lex_state = 488}, - [6107] = {.lex_state = 412}, - [6108] = {.lex_state = 991}, - [6109] = {.lex_state = 951}, - [6110] = {.lex_state = 951}, - [6111] = {.lex_state = 990}, - [6112] = {.lex_state = 951}, - [6113] = {.lex_state = 951}, - [6114] = {.lex_state = 446}, - [6115] = {.lex_state = 951}, - [6116] = {.lex_state = 951}, - [6117] = {.lex_state = 412}, - [6118] = {.lex_state = 952}, - [6119] = {.lex_state = 104}, - [6120] = {.lex_state = 951}, - [6121] = {.lex_state = 951}, - [6122] = {.lex_state = 518}, - [6123] = {.lex_state = 951}, - [6124] = {.lex_state = 951}, - [6125] = {.lex_state = 951}, - [6126] = {.lex_state = 951}, - [6127] = {.lex_state = 77}, - [6128] = {.lex_state = 38}, - [6129] = {.lex_state = 951}, - [6130] = {.lex_state = 951}, - [6131] = {.lex_state = 951}, - [6132] = {.lex_state = 951}, - [6133] = {.lex_state = 951}, - [6134] = {.lex_state = 951}, - [6135] = {.lex_state = 518}, - [6136] = {.lex_state = 518}, - [6137] = {.lex_state = 951}, - [6138] = {.lex_state = 951}, - [6139] = {.lex_state = 951}, - [6140] = {.lex_state = 991}, - [6141] = {.lex_state = 951}, - [6142] = {.lex_state = 951}, - [6143] = {.lex_state = 518}, - [6144] = {.lex_state = 518}, - [6145] = {.lex_state = 951}, - [6146] = {.lex_state = 951}, - [6147] = {.lex_state = 951}, - [6148] = {.lex_state = 951}, - [6149] = {.lex_state = 951}, - [6150] = {.lex_state = 951}, - [6151] = {.lex_state = 951}, - [6152] = {.lex_state = 951}, - [6153] = {.lex_state = 951}, - [6154] = {.lex_state = 951}, - [6155] = {.lex_state = 951}, - [6156] = {.lex_state = 951}, - [6157] = {.lex_state = 951}, - [6158] = {.lex_state = 951}, - [6159] = {.lex_state = 951}, - [6160] = {.lex_state = 951}, - [6161] = {.lex_state = 120}, - [6162] = {.lex_state = 990}, - [6163] = {.lex_state = 446}, - [6164] = {.lex_state = 412}, - [6165] = {.lex_state = 518}, - [6166] = {.lex_state = 104}, - [6167] = {.lex_state = 422}, - [6168] = {.lex_state = 518}, - [6169] = {.lex_state = 951}, - [6170] = {.lex_state = 991}, - [6171] = {.lex_state = 518}, - [6172] = {.lex_state = 438}, - [6173] = {.lex_state = 991}, - [6174] = {.lex_state = 38}, - [6175] = {.lex_state = 120}, - [6176] = {.lex_state = 951}, - [6177] = {.lex_state = 474}, - [6178] = {.lex_state = 76}, - [6179] = {.lex_state = 77}, - [6180] = {.lex_state = 489}, - [6181] = {.lex_state = 38}, - [6182] = {.lex_state = 489}, - [6183] = {.lex_state = 951}, - [6184] = {.lex_state = 438}, - [6185] = {.lex_state = 990}, - [6186] = {.lex_state = 479}, - [6187] = {.lex_state = 38}, - [6188] = {.lex_state = 518}, - [6189] = {.lex_state = 990}, - [6190] = {.lex_state = 360}, - [6191] = {.lex_state = 951}, - [6192] = {.lex_state = 360}, - [6193] = {.lex_state = 262}, - [6194] = {.lex_state = 951}, - [6195] = {.lex_state = 951}, - [6196] = {.lex_state = 951}, - [6197] = {.lex_state = 360}, - [6198] = {.lex_state = 951}, - [6199] = {.lex_state = 951}, - [6200] = {.lex_state = 951}, - [6201] = {.lex_state = 951}, - [6202] = {.lex_state = 951}, - [6203] = {.lex_state = 439}, - [6204] = {.lex_state = 513}, - [6205] = {.lex_state = 513}, - [6206] = {.lex_state = 513}, - [6207] = {.lex_state = 951}, - [6208] = {.lex_state = 516}, - [6209] = {.lex_state = 951}, - [6210] = {.lex_state = 439}, - [6211] = {.lex_state = 444}, - [6212] = {.lex_state = 360}, - [6213] = {.lex_state = 439}, - [6214] = {.lex_state = 512}, - [6215] = {.lex_state = 262}, - [6216] = {.lex_state = 951}, - [6217] = {.lex_state = 262}, - [6218] = {.lex_state = 951}, - [6219] = {.lex_state = 951}, - [6220] = {.lex_state = 951}, - [6221] = {.lex_state = 951}, - [6222] = {.lex_state = 490}, - [6223] = {.lex_state = 490}, - [6224] = {.lex_state = 262}, - [6225] = {.lex_state = 38}, - [6226] = {.lex_state = 444}, - [6227] = {.lex_state = 951}, - [6228] = {.lex_state = 444}, - [6229] = {.lex_state = 951}, - [6230] = {.lex_state = 490}, - [6231] = {.lex_state = 439}, - [6232] = {.lex_state = 951}, - [6233] = {.lex_state = 262}, - [6234] = {.lex_state = 262}, - [6235] = {.lex_state = 262}, - [6236] = {.lex_state = 262}, - [6237] = {.lex_state = 442}, - [6238] = {.lex_state = 444}, - [6239] = {.lex_state = 496}, - [6240] = {.lex_state = 951}, - [6241] = {.lex_state = 951}, - [6242] = {.lex_state = 951}, - [6243] = {.lex_state = 439}, - [6244] = {.lex_state = 951}, - [6245] = {.lex_state = 444}, - [6246] = {.lex_state = 262}, - [6247] = {.lex_state = 262}, - [6248] = {.lex_state = 262}, - [6249] = {.lex_state = 951}, - [6250] = {.lex_state = 262}, - [6251] = {.lex_state = 951}, - [6252] = {.lex_state = 951}, - [6253] = {.lex_state = 480}, - [6254] = {.lex_state = 505}, - [6255] = {.lex_state = 241}, - [6256] = {.lex_state = 512}, - [6257] = {.lex_state = 512}, - [6258] = {.lex_state = 516}, - [6259] = {.lex_state = 513}, - [6260] = {.lex_state = 951}, - [6261] = {.lex_state = 951}, - [6262] = {.lex_state = 951}, - [6263] = {.lex_state = 951}, - [6264] = {.lex_state = 490}, - [6265] = {.lex_state = 496}, - [6266] = {.lex_state = 951}, - [6267] = {.lex_state = 98}, - [6268] = {.lex_state = 360}, - [6269] = {.lex_state = 951}, - [6270] = {.lex_state = 496}, - [6271] = {.lex_state = 951}, - [6272] = {.lex_state = 360}, - [6273] = {.lex_state = 951}, - [6274] = {.lex_state = 951}, - [6275] = {.lex_state = 951}, - [6276] = {.lex_state = 422}, - [6277] = {.lex_state = 360}, - [6278] = {.lex_state = 360}, - [6279] = {.lex_state = 422}, - [6280] = {.lex_state = 951}, - [6281] = {.lex_state = 262}, - [6282] = {.lex_state = 951}, - [6283] = {.lex_state = 262}, - [6284] = {.lex_state = 262}, - [6285] = {.lex_state = 262}, - [6286] = {.lex_state = 262}, - [6287] = {.lex_state = 262}, - [6288] = {.lex_state = 262}, - [6289] = {.lex_state = 262}, - [6290] = {.lex_state = 951}, - [6291] = {.lex_state = 951}, - [6292] = {.lex_state = 490}, - [6293] = {.lex_state = 362}, - [6294] = {.lex_state = 362}, - [6295] = {.lex_state = 360}, - [6296] = {.lex_state = 951}, - [6297] = {.lex_state = 951}, - [6298] = {.lex_state = 490}, - [6299] = {.lex_state = 951}, - [6300] = {.lex_state = 951}, - [6301] = {.lex_state = 951}, - [6302] = {.lex_state = 496}, - [6303] = {.lex_state = 951}, - [6304] = {.lex_state = 360}, - [6305] = {.lex_state = 262}, - [6306] = {.lex_state = 490}, - [6307] = {.lex_state = 262}, - [6308] = {.lex_state = 951}, - [6309] = {.lex_state = 360}, - [6310] = {.lex_state = 505}, - [6311] = {.lex_state = 386}, - [6312] = {.lex_state = 505}, - [6313] = {.lex_state = 951}, - [6314] = {.lex_state = 951}, - [6315] = {.lex_state = 516}, - [6316] = {.lex_state = 262}, - [6317] = {.lex_state = 262}, - [6318] = {.lex_state = 262}, - [6319] = {.lex_state = 262}, - [6320] = {.lex_state = 262}, - [6321] = {.lex_state = 262}, - [6322] = {.lex_state = 262}, - [6323] = {.lex_state = 262}, - [6324] = {.lex_state = 496}, - [6325] = {.lex_state = 360}, - [6326] = {.lex_state = 951}, - [6327] = {.lex_state = 951}, - [6328] = {.lex_state = 360}, - [6329] = {.lex_state = 446}, - [6330] = {.lex_state = 951}, - [6331] = {.lex_state = 262}, - [6332] = {.lex_state = 262}, - [6333] = {.lex_state = 262}, - [6334] = {.lex_state = 262}, - [6335] = {.lex_state = 262}, - [6336] = {.lex_state = 262}, - [6337] = {.lex_state = 262}, - [6338] = {.lex_state = 262}, - [6339] = {.lex_state = 83}, - [6340] = {.lex_state = 496}, - [6341] = {.lex_state = 360}, - [6342] = {.lex_state = 439}, - [6343] = {.lex_state = 360}, - [6344] = {.lex_state = 262}, - [6345] = {.lex_state = 262}, - [6346] = {.lex_state = 262}, - [6347] = {.lex_state = 262}, - [6348] = {.lex_state = 262}, - [6349] = {.lex_state = 262}, - [6350] = {.lex_state = 262}, - [6351] = {.lex_state = 262}, - [6352] = {.lex_state = 951}, - [6353] = {.lex_state = 496}, - [6354] = {.lex_state = 360}, - [6355] = {.lex_state = 360}, - [6356] = {.lex_state = 951}, - [6357] = {.lex_state = 262}, - [6358] = {.lex_state = 262}, - [6359] = {.lex_state = 262}, - [6360] = {.lex_state = 262}, - [6361] = {.lex_state = 262}, - [6362] = {.lex_state = 262}, - [6363] = {.lex_state = 262}, - [6364] = {.lex_state = 262}, - [6365] = {.lex_state = 262}, - [6366] = {.lex_state = 951}, - [6367] = {.lex_state = 496}, - [6368] = {.lex_state = 480}, - [6369] = {.lex_state = 951}, - [6370] = {.lex_state = 360}, - [6371] = {.lex_state = 951}, - [6372] = {.lex_state = 262}, - [6373] = {.lex_state = 505}, - [6374] = {.lex_state = 262}, - [6375] = {.lex_state = 262}, - [6376] = {.lex_state = 262}, - [6377] = {.lex_state = 262}, - [6378] = {.lex_state = 262}, - [6379] = {.lex_state = 262}, - [6380] = {.lex_state = 262}, - [6381] = {.lex_state = 262}, - [6382] = {.lex_state = 36}, - [6383] = {.lex_state = 496}, - [6384] = {.lex_state = 360}, - [6385] = {.lex_state = 360}, - [6386] = {.lex_state = 490}, - [6387] = {.lex_state = 262}, - [6388] = {.lex_state = 262}, - [6389] = {.lex_state = 262}, - [6390] = {.lex_state = 262}, - [6391] = {.lex_state = 262}, - [6392] = {.lex_state = 262}, - [6393] = {.lex_state = 262}, - [6394] = {.lex_state = 262}, - [6395] = {.lex_state = 496}, - [6396] = {.lex_state = 360}, - [6397] = {.lex_state = 951}, - [6398] = {.lex_state = 951}, - [6399] = {.lex_state = 262}, - [6400] = {.lex_state = 951}, - [6401] = {.lex_state = 360}, - [6402] = {.lex_state = 951}, - [6403] = {.lex_state = 480}, - [6404] = {.lex_state = 262}, - [6405] = {.lex_state = 362}, - [6406] = {.lex_state = 262}, - [6407] = {.lex_state = 262}, - [6408] = {.lex_state = 262}, - [6409] = {.lex_state = 262}, - [6410] = {.lex_state = 262}, - [6411] = {.lex_state = 262}, - [6412] = {.lex_state = 262}, - [6413] = {.lex_state = 262}, - [6414] = {.lex_state = 480}, - [6415] = {.lex_state = 951}, - [6416] = {.lex_state = 496}, - [6417] = {.lex_state = 951}, - [6418] = {.lex_state = 360}, - [6419] = {.lex_state = 951}, - [6420] = {.lex_state = 951}, - [6421] = {.lex_state = 951}, - [6422] = {.lex_state = 360}, - [6423] = {.lex_state = 951}, - [6424] = {.lex_state = 951}, - [6425] = {.lex_state = 84}, - [6426] = {.lex_state = 951}, - [6427] = {.lex_state = 951}, - [6428] = {.lex_state = 262}, - [6429] = {.lex_state = 262}, - [6430] = {.lex_state = 262}, - [6431] = {.lex_state = 262}, - [6432] = {.lex_state = 262}, - [6433] = {.lex_state = 262}, - [6434] = {.lex_state = 262}, - [6435] = {.lex_state = 262}, - [6436] = {.lex_state = 496}, - [6437] = {.lex_state = 403}, - [6438] = {.lex_state = 360}, - [6439] = {.lex_state = 951}, - [6440] = {.lex_state = 951}, - [6441] = {.lex_state = 360}, - [6442] = {.lex_state = 512}, - [6443] = {.lex_state = 951}, - [6444] = {.lex_state = 262}, - [6445] = {.lex_state = 262}, - [6446] = {.lex_state = 262}, - [6447] = {.lex_state = 262}, - [6448] = {.lex_state = 262}, - [6449] = {.lex_state = 262}, - [6450] = {.lex_state = 262}, - [6451] = {.lex_state = 262}, - [6452] = {.lex_state = 951}, - [6453] = {.lex_state = 496}, - [6454] = {.lex_state = 360}, - [6455] = {.lex_state = 951}, - [6456] = {.lex_state = 951}, - [6457] = {.lex_state = 360}, - [6458] = {.lex_state = 262}, - [6459] = {.lex_state = 262}, - [6460] = {.lex_state = 262}, - [6461] = {.lex_state = 262}, - [6462] = {.lex_state = 262}, - [6463] = {.lex_state = 262}, - [6464] = {.lex_state = 262}, - [6465] = {.lex_state = 262}, - [6466] = {.lex_state = 951}, - [6467] = {.lex_state = 496}, - [6468] = {.lex_state = 360}, - [6469] = {.lex_state = 951}, - [6470] = {.lex_state = 951}, - [6471] = {.lex_state = 360}, - [6472] = {.lex_state = 951}, - [6473] = {.lex_state = 262}, - [6474] = {.lex_state = 262}, - [6475] = {.lex_state = 262}, - [6476] = {.lex_state = 262}, - [6477] = {.lex_state = 262}, - [6478] = {.lex_state = 262}, - [6479] = {.lex_state = 262}, - [6480] = {.lex_state = 262}, - [6481] = {.lex_state = 496}, - [6482] = {.lex_state = 360}, - [6483] = {.lex_state = 262}, - [6484] = {.lex_state = 360}, - [6485] = {.lex_state = 492}, - [6486] = {.lex_state = 951}, - [6487] = {.lex_state = 951}, - [6488] = {.lex_state = 262}, - [6489] = {.lex_state = 262}, - [6490] = {.lex_state = 262}, - [6491] = {.lex_state = 262}, - [6492] = {.lex_state = 262}, - [6493] = {.lex_state = 262}, - [6494] = {.lex_state = 262}, - [6495] = {.lex_state = 262}, - [6496] = {.lex_state = 480}, - [6497] = {.lex_state = 496}, - [6498] = {.lex_state = 360}, - [6499] = {.lex_state = 360}, - [6500] = {.lex_state = 951}, - [6501] = {.lex_state = 262}, - [6502] = {.lex_state = 262}, - [6503] = {.lex_state = 262}, - [6504] = {.lex_state = 262}, - [6505] = {.lex_state = 262}, - [6506] = {.lex_state = 496}, - [6507] = {.lex_state = 262}, - [6508] = {.lex_state = 262}, - [6509] = {.lex_state = 446}, - [6510] = {.lex_state = 446}, - [6511] = {.lex_state = 496}, - [6512] = {.lex_state = 360}, - [6513] = {.lex_state = 360}, - [6514] = {.lex_state = 262}, - [6515] = {.lex_state = 262}, - [6516] = {.lex_state = 262}, - [6517] = {.lex_state = 262}, - [6518] = {.lex_state = 262}, - [6519] = {.lex_state = 262}, - [6520] = {.lex_state = 262}, - [6521] = {.lex_state = 262}, - [6522] = {.lex_state = 496}, - [6523] = {.lex_state = 360}, - [6524] = {.lex_state = 360}, - [6525] = {.lex_state = 262}, - [6526] = {.lex_state = 262}, - [6527] = {.lex_state = 262}, - [6528] = {.lex_state = 262}, - [6529] = {.lex_state = 262}, - [6530] = {.lex_state = 262}, - [6531] = {.lex_state = 262}, - [6532] = {.lex_state = 262}, - [6533] = {.lex_state = 496}, - [6534] = {.lex_state = 360}, - [6535] = {.lex_state = 360}, - [6536] = {.lex_state = 262}, - [6537] = {.lex_state = 262}, - [6538] = {.lex_state = 262}, - [6539] = {.lex_state = 262}, - [6540] = {.lex_state = 262}, - [6541] = {.lex_state = 262}, - [6542] = {.lex_state = 262}, - [6543] = {.lex_state = 262}, - [6544] = {.lex_state = 951}, - [6545] = {.lex_state = 496}, - [6546] = {.lex_state = 360}, - [6547] = {.lex_state = 951}, - [6548] = {.lex_state = 360}, - [6549] = {.lex_state = 262}, - [6550] = {.lex_state = 262}, - [6551] = {.lex_state = 262}, - [6552] = {.lex_state = 262}, - [6553] = {.lex_state = 262}, - [6554] = {.lex_state = 262}, - [6555] = {.lex_state = 262}, - [6556] = {.lex_state = 262}, - [6557] = {.lex_state = 496}, - [6558] = {.lex_state = 360}, - [6559] = {.lex_state = 360}, - [6560] = {.lex_state = 492}, - [6561] = {.lex_state = 496}, - [6562] = {.lex_state = 360}, - [6563] = {.lex_state = 360}, - [6564] = {.lex_state = 496}, - [6565] = {.lex_state = 360}, - [6566] = {.lex_state = 360}, - [6567] = {.lex_state = 951}, - [6568] = {.lex_state = 496}, - [6569] = {.lex_state = 360}, - [6570] = {.lex_state = 360}, - [6571] = {.lex_state = 951}, - [6572] = {.lex_state = 496}, - [6573] = {.lex_state = 360}, - [6574] = {.lex_state = 360}, - [6575] = {.lex_state = 496}, - [6576] = {.lex_state = 360}, - [6577] = {.lex_state = 360}, - [6578] = {.lex_state = 496}, - [6579] = {.lex_state = 360}, - [6580] = {.lex_state = 360}, - [6581] = {.lex_state = 951}, - [6582] = {.lex_state = 496}, - [6583] = {.lex_state = 360}, - [6584] = {.lex_state = 360}, - [6585] = {.lex_state = 496}, - [6586] = {.lex_state = 360}, - [6587] = {.lex_state = 360}, - [6588] = {.lex_state = 496}, - [6589] = {.lex_state = 360}, - [6590] = {.lex_state = 360}, - [6591] = {.lex_state = 496}, - [6592] = {.lex_state = 360}, - [6593] = {.lex_state = 360}, - [6594] = {.lex_state = 496}, - [6595] = {.lex_state = 360}, - [6596] = {.lex_state = 360}, - [6597] = {.lex_state = 496}, - [6598] = {.lex_state = 360}, - [6599] = {.lex_state = 360}, - [6600] = {.lex_state = 496}, - [6601] = {.lex_state = 360}, - [6602] = {.lex_state = 360}, - [6603] = {.lex_state = 951}, - [6604] = {.lex_state = 496}, - [6605] = {.lex_state = 360}, - [6606] = {.lex_state = 360}, - [6607] = {.lex_state = 496}, - [6608] = {.lex_state = 360}, - [6609] = {.lex_state = 360}, - [6610] = {.lex_state = 951}, - [6611] = {.lex_state = 496}, - [6612] = {.lex_state = 360}, - [6613] = {.lex_state = 360}, - [6614] = {.lex_state = 439}, - [6615] = {.lex_state = 496}, - [6616] = {.lex_state = 360}, - [6617] = {.lex_state = 360}, - [6618] = {.lex_state = 496}, - [6619] = {.lex_state = 360}, - [6620] = {.lex_state = 360}, - [6621] = {.lex_state = 496}, - [6622] = {.lex_state = 360}, - [6623] = {.lex_state = 360}, - [6624] = {.lex_state = 496}, - [6625] = {.lex_state = 360}, - [6626] = {.lex_state = 360}, - [6627] = {.lex_state = 496}, - [6628] = {.lex_state = 360}, - [6629] = {.lex_state = 360}, - [6630] = {.lex_state = 496}, - [6631] = {.lex_state = 360}, - [6632] = {.lex_state = 360}, - [6633] = {.lex_state = 496}, - [6634] = {.lex_state = 360}, - [6635] = {.lex_state = 360}, - [6636] = {.lex_state = 496}, - [6637] = {.lex_state = 360}, - [6638] = {.lex_state = 360}, - [6639] = {.lex_state = 496}, - [6640] = {.lex_state = 360}, - [6641] = {.lex_state = 360}, - [6642] = {.lex_state = 360}, - [6643] = {.lex_state = 360}, - [6644] = {.lex_state = 360}, - [6645] = {.lex_state = 360}, - [6646] = {.lex_state = 360}, - [6647] = {.lex_state = 360}, - [6648] = {.lex_state = 360}, - [6649] = {.lex_state = 360}, - [6650] = {.lex_state = 360}, - [6651] = {.lex_state = 360}, - [6652] = {.lex_state = 951}, - [6653] = {.lex_state = 951}, - [6654] = {.lex_state = 951}, - [6655] = {.lex_state = 102}, - [6656] = {.lex_state = 951}, - [6657] = {.lex_state = 951}, - [6658] = {.lex_state = 951}, - [6659] = {.lex_state = 262}, - [6660] = {.lex_state = 262}, - [6661] = {.lex_state = 262}, - [6662] = {.lex_state = 951}, - [6663] = {.lex_state = 951}, - [6664] = {.lex_state = 444}, - [6665] = {.lex_state = 951}, - [6666] = {.lex_state = 951}, - [6667] = {.lex_state = 262}, - [6668] = {.lex_state = 951}, - [6669] = {.lex_state = 444}, - [6670] = {.lex_state = 951}, - [6671] = {.lex_state = 439}, - [6672] = {.lex_state = 439}, - [6673] = {.lex_state = 951}, - [6674] = {.lex_state = 262}, - [6675] = {.lex_state = 442}, - [6676] = {.lex_state = 951}, - [6677] = {.lex_state = 444}, - [6678] = {.lex_state = 77}, - [6679] = {.lex_state = 444}, - [6680] = {.lex_state = 951}, - [6681] = {.lex_state = 951}, - [6682] = {.lex_state = 262}, - [6683] = {.lex_state = 951}, - [6684] = {.lex_state = 262}, - [6685] = {.lex_state = 951}, - [6686] = {.lex_state = 262}, - [6687] = {.lex_state = 951}, - [6688] = {.lex_state = 951}, - [6689] = {.lex_state = 383}, - [6690] = {.lex_state = 383}, - [6691] = {.lex_state = 951}, - [6692] = {.lex_state = 102}, - [6693] = {.lex_state = 262}, - [6694] = {.lex_state = 262}, - [6695] = {.lex_state = 262}, - [6696] = {.lex_state = 262}, - [6697] = {.lex_state = 262}, - [6698] = {.lex_state = 262}, - [6699] = {.lex_state = 262}, - [6700] = {.lex_state = 262}, - [6701] = {.lex_state = 262}, - [6702] = {.lex_state = 496}, - [6703] = {.lex_state = 490}, - [6704] = {.lex_state = 452}, - [6705] = {.lex_state = 262}, - [6706] = {.lex_state = 262}, - [6707] = {.lex_state = 512}, - [6708] = {.lex_state = 991}, - [6709] = {.lex_state = 360}, - [6710] = {.lex_state = 383}, - [6711] = {.lex_state = 262}, - [6712] = {.lex_state = 262}, - [6713] = {.lex_state = 383}, - [6714] = {.lex_state = 262}, - [6715] = {.lex_state = 98}, - [6716] = {.lex_state = 262}, - [6717] = {.lex_state = 951}, - [6718] = {.lex_state = 951}, - [6719] = {.lex_state = 516}, - [6720] = {.lex_state = 516}, - [6721] = {.lex_state = 951}, - [6722] = {.lex_state = 951}, - [6723] = {.lex_state = 262}, - [6724] = {.lex_state = 104}, - [6725] = {.lex_state = 422}, - [6726] = {.lex_state = 951}, - [6727] = {.lex_state = 383}, - [6728] = {.lex_state = 383}, - [6729] = {.lex_state = 104}, - [6730] = {.lex_state = 76}, - [6731] = {.lex_state = 951}, - [6732] = {.lex_state = 490}, - [6733] = {.lex_state = 951}, - [6734] = {.lex_state = 951}, - [6735] = {.lex_state = 951}, - [6736] = {.lex_state = 951}, - [6737] = {.lex_state = 951}, - [6738] = {.lex_state = 105}, - [6739] = {.lex_state = 105}, - [6740] = {.lex_state = 951}, - [6741] = {.lex_state = 76}, - [6742] = {.lex_state = 513}, - [6743] = {.lex_state = 951}, - [6744] = {.lex_state = 951}, - [6745] = {.lex_state = 951}, - [6746] = {.lex_state = 951}, - [6747] = {.lex_state = 505}, - [6748] = {.lex_state = 951}, - [6749] = {.lex_state = 951}, - [6750] = {.lex_state = 38}, - [6751] = {.lex_state = 262}, - [6752] = {.lex_state = 445}, - [6753] = {.lex_state = 262}, - [6754] = {.lex_state = 445}, - [6755] = {.lex_state = 262}, - [6756] = {.lex_state = 262}, - [6757] = {.lex_state = 150}, - [6758] = {.lex_state = 445}, - [6759] = {.lex_state = 262}, - [6760] = {.lex_state = 951}, - [6761] = {.lex_state = 262}, - [6762] = {.lex_state = 150}, - [6763] = {.lex_state = 262}, - [6764] = {.lex_state = 262}, - [6765] = {.lex_state = 262}, - [6766] = {.lex_state = 262}, - [6767] = {.lex_state = 262}, - [6768] = {.lex_state = 262}, - [6769] = {.lex_state = 262}, - [6770] = {.lex_state = 951}, - [6771] = {.lex_state = 262}, - [6772] = {.lex_state = 510}, - [6773] = {.lex_state = 480}, - [6774] = {.lex_state = 951}, - [6775] = {.lex_state = 480}, - [6776] = {.lex_state = 322}, - [6777] = {.lex_state = 445}, - [6778] = {.lex_state = 262}, - [6779] = {.lex_state = 262}, - [6780] = {.lex_state = 951}, - [6781] = {.lex_state = 150}, - [6782] = {.lex_state = 445}, - [6783] = {.lex_state = 262}, - [6784] = {.lex_state = 262}, - [6785] = {.lex_state = 262}, - [6786] = {.lex_state = 262}, - [6787] = {.lex_state = 262}, - [6788] = {.lex_state = 262}, - [6789] = {.lex_state = 262}, - [6790] = {.lex_state = 87}, - [6791] = {.lex_state = 951}, - [6792] = {.lex_state = 262}, - [6793] = {.lex_state = 262}, - [6794] = {.lex_state = 951}, - [6795] = {.lex_state = 951}, - [6796] = {.lex_state = 517}, - [6797] = {.lex_state = 951}, - [6798] = {.lex_state = 445}, - [6799] = {.lex_state = 385}, - [6800] = {.lex_state = 134}, - [6801] = {.lex_state = 445}, - [6802] = {.lex_state = 262}, - [6803] = {.lex_state = 262}, - [6804] = {.lex_state = 951}, - [6805] = {.lex_state = 150}, - [6806] = {.lex_state = 445}, - [6807] = {.lex_state = 98}, - [6808] = {.lex_state = 262}, - [6809] = {.lex_state = 262}, - [6810] = {.lex_state = 951}, - [6811] = {.lex_state = 262}, - [6812] = {.lex_state = 262}, - [6813] = {.lex_state = 262}, - [6814] = {.lex_state = 262}, - [6815] = {.lex_state = 482}, - [6816] = {.lex_state = 262}, - [6817] = {.lex_state = 262}, - [6818] = {.lex_state = 262}, - [6819] = {.lex_state = 262}, - [6820] = {.lex_state = 262}, - [6821] = {.lex_state = 262}, - [6822] = {.lex_state = 262}, - [6823] = {.lex_state = 951}, - [6824] = {.lex_state = 951}, - [6825] = {.lex_state = 484}, - [6826] = {.lex_state = 951}, - [6827] = {.lex_state = 262}, - [6828] = {.lex_state = 930}, - [6829] = {.lex_state = 262}, - [6830] = {.lex_state = 262}, - [6831] = {.lex_state = 445}, - [6832] = {.lex_state = 134}, - [6833] = {.lex_state = 951}, - [6834] = {.lex_state = 445}, - [6835] = {.lex_state = 262}, - [6836] = {.lex_state = 951}, - [6837] = {.lex_state = 262}, - [6838] = {.lex_state = 951}, - [6839] = {.lex_state = 262}, - [6840] = {.lex_state = 262}, - [6841] = {.lex_state = 262}, - [6842] = {.lex_state = 262}, - [6843] = {.lex_state = 262}, - [6844] = {.lex_state = 951}, - [6845] = {.lex_state = 262}, - [6846] = {.lex_state = 262}, - [6847] = {.lex_state = 951}, - [6848] = {.lex_state = 262}, - [6849] = {.lex_state = 262}, - [6850] = {.lex_state = 262}, - [6851] = {.lex_state = 262}, - [6852] = {.lex_state = 951}, - [6853] = {.lex_state = 262}, - [6854] = {.lex_state = 262}, - [6855] = {.lex_state = 262}, - [6856] = {.lex_state = 262}, - [6857] = {.lex_state = 445}, - [6858] = {.lex_state = 150}, - [6859] = {.lex_state = 445}, - [6860] = {.lex_state = 262}, - [6861] = {.lex_state = 262}, - [6862] = {.lex_state = 262}, - [6863] = {.lex_state = 262}, - [6864] = {.lex_state = 262}, - [6865] = {.lex_state = 262}, - [6866] = {.lex_state = 262}, - [6867] = {.lex_state = 262}, - [6868] = {.lex_state = 262}, - [6869] = {.lex_state = 383}, - [6870] = {.lex_state = 262}, - [6871] = {.lex_state = 262}, - [6872] = {.lex_state = 262}, - [6873] = {.lex_state = 383}, - [6874] = {.lex_state = 383}, - [6875] = {.lex_state = 262}, - [6876] = {.lex_state = 383}, - [6877] = {.lex_state = 951}, - [6878] = {.lex_state = 262}, - [6879] = {.lex_state = 262}, - [6880] = {.lex_state = 951}, - [6881] = {.lex_state = 262}, - [6882] = {.lex_state = 262}, - [6883] = {.lex_state = 445}, - [6884] = {.lex_state = 262}, - [6885] = {.lex_state = 262}, - [6886] = {.lex_state = 150}, - [6887] = {.lex_state = 445}, - [6888] = {.lex_state = 262}, - [6889] = {.lex_state = 951}, - [6890] = {.lex_state = 262}, - [6891] = {.lex_state = 950}, - [6892] = {.lex_state = 951}, - [6893] = {.lex_state = 262}, - [6894] = {.lex_state = 262}, - [6895] = {.lex_state = 262}, - [6896] = {.lex_state = 262}, - [6897] = {.lex_state = 262}, - [6898] = {.lex_state = 262}, - [6899] = {.lex_state = 134}, - [6900] = {.lex_state = 445}, - [6901] = {.lex_state = 262}, - [6902] = {.lex_state = 950}, - [6903] = {.lex_state = 445}, - [6904] = {.lex_state = 951}, - [6905] = {.lex_state = 950}, - [6906] = {.lex_state = 445}, - [6907] = {.lex_state = 262}, - [6908] = {.lex_state = 951}, - [6909] = {.lex_state = 445}, - [6910] = {.lex_state = 951}, - [6911] = {.lex_state = 262}, - [6912] = {.lex_state = 951}, - [6913] = {.lex_state = 951}, - [6914] = {.lex_state = 262}, - [6915] = {.lex_state = 262}, - [6916] = {.lex_state = 262}, - [6917] = {.lex_state = 262}, - [6918] = {.lex_state = 262}, - [6919] = {.lex_state = 262}, - [6920] = {.lex_state = 262}, - [6921] = {.lex_state = 262}, - [6922] = {.lex_state = 262}, - [6923] = {.lex_state = 262}, - [6924] = {.lex_state = 445}, - [6925] = {.lex_state = 950}, - [6926] = {.lex_state = 950}, - [6927] = {.lex_state = 262}, - [6928] = {.lex_state = 262}, - [6929] = {.lex_state = 950}, - [6930] = {.lex_state = 262}, - [6931] = {.lex_state = 445}, - [6932] = {.lex_state = 506}, - [6933] = {.lex_state = 445}, - [6934] = {.lex_state = 262}, - [6935] = {.lex_state = 262}, - [6936] = {.lex_state = 262}, - [6937] = {.lex_state = 262}, - [6938] = {.lex_state = 262}, - [6939] = {.lex_state = 950}, - [6940] = {.lex_state = 262}, - [6941] = {.lex_state = 262}, - [6942] = {.lex_state = 262}, - [6943] = {.lex_state = 262}, - [6944] = {.lex_state = 262}, - [6945] = {.lex_state = 951}, - [6946] = {.lex_state = 518}, - [6947] = {.lex_state = 491}, - [6948] = {.lex_state = 262}, - [6949] = {.lex_state = 404}, - [6950] = {.lex_state = 445}, - [6951] = {.lex_state = 262}, - [6952] = {.lex_state = 445}, - [6953] = {.lex_state = 262}, - [6954] = {.lex_state = 491}, - [6955] = {.lex_state = 262}, - [6956] = {.lex_state = 262}, - [6957] = {.lex_state = 262}, - [6958] = {.lex_state = 262}, - [6959] = {.lex_state = 262}, - [6960] = {.lex_state = 951}, - [6961] = {.lex_state = 262}, - [6962] = {.lex_state = 262}, - [6963] = {.lex_state = 262}, - [6964] = {.lex_state = 262}, - [6965] = {.lex_state = 262}, - [6966] = {.lex_state = 262}, - [6967] = {.lex_state = 950}, - [6968] = {.lex_state = 262}, - [6969] = {.lex_state = 262}, - [6970] = {.lex_state = 262}, - [6971] = {.lex_state = 951}, - [6972] = {.lex_state = 262}, - [6973] = {.lex_state = 262}, - [6974] = {.lex_state = 445}, - [6975] = {.lex_state = 262}, - [6976] = {.lex_state = 445}, - [6977] = {.lex_state = 262}, - [6978] = {.lex_state = 262}, - [6979] = {.lex_state = 262}, - [6980] = {.lex_state = 262}, - [6981] = {.lex_state = 480}, - [6982] = {.lex_state = 262}, - [6983] = {.lex_state = 950}, - [6984] = {.lex_state = 262}, - [6985] = {.lex_state = 262}, - [6986] = {.lex_state = 360}, - [6987] = {.lex_state = 262}, - [6988] = {.lex_state = 951}, - [6989] = {.lex_state = 951}, - [6990] = {.lex_state = 445}, - [6991] = {.lex_state = 262}, - [6992] = {.lex_state = 951}, - [6993] = {.lex_state = 445}, - [6994] = {.lex_state = 445}, - [6995] = {.lex_state = 491}, - [6996] = {.lex_state = 951}, - [6997] = {.lex_state = 262}, - [6998] = {.lex_state = 262}, - [6999] = {.lex_state = 262}, - [7000] = {.lex_state = 262}, - [7001] = {.lex_state = 262}, - [7002] = {.lex_state = 480}, - [7003] = {.lex_state = 262}, - [7004] = {.lex_state = 262}, - [7005] = {.lex_state = 262}, - [7006] = {.lex_state = 262}, - [7007] = {.lex_state = 439}, - [7008] = {.lex_state = 98}, - [7009] = {.lex_state = 262}, - [7010] = {.lex_state = 951}, - [7011] = {.lex_state = 951}, - [7012] = {.lex_state = 262}, - [7013] = {.lex_state = 262}, - [7014] = {.lex_state = 262}, - [7015] = {.lex_state = 262}, - [7016] = {.lex_state = 262}, - [7017] = {.lex_state = 262}, - [7018] = {.lex_state = 262}, - [7019] = {.lex_state = 262}, - [7020] = {.lex_state = 445}, - [7021] = {.lex_state = 950}, - [7022] = {.lex_state = 262}, - [7023] = {.lex_state = 948}, - [7024] = {.lex_state = 262}, - [7025] = {.lex_state = 930}, - [7026] = {.lex_state = 951}, - [7027] = {.lex_state = 951}, - [7028] = {.lex_state = 262}, - [7029] = {.lex_state = 951}, - [7030] = {.lex_state = 262}, - [7031] = {.lex_state = 262}, - [7032] = {.lex_state = 262}, - [7033] = {.lex_state = 262}, - [7034] = {.lex_state = 951}, - [7035] = {.lex_state = 262}, - [7036] = {.lex_state = 262}, - [7037] = {.lex_state = 517}, - [7038] = {.lex_state = 262}, - [7039] = {.lex_state = 150}, - [7040] = {.lex_state = 951}, - [7041] = {.lex_state = 445}, - [7042] = {.lex_state = 951}, - [7043] = {.lex_state = 262}, - [7044] = {.lex_state = 262}, - [7045] = {.lex_state = 518}, - [7046] = {.lex_state = 262}, - [7047] = {.lex_state = 262}, - [7048] = {.lex_state = 262}, - [7049] = {.lex_state = 262}, - [7050] = {.lex_state = 262}, - [7051] = {.lex_state = 262}, - [7052] = {.lex_state = 262}, - [7053] = {.lex_state = 262}, - [7054] = {.lex_state = 262}, - [7055] = {.lex_state = 262}, - [7056] = {.lex_state = 262}, - [7057] = {.lex_state = 951}, - [7058] = {.lex_state = 262}, - [7059] = {.lex_state = 262}, - [7060] = {.lex_state = 262}, - [7061] = {.lex_state = 262}, - [7062] = {.lex_state = 262}, - [7063] = {.lex_state = 262}, - [7064] = {.lex_state = 262}, - [7065] = {.lex_state = 262}, - [7066] = {.lex_state = 262}, - [7067] = {.lex_state = 262}, - [7068] = {.lex_state = 951}, - [7069] = {.lex_state = 262}, - [7070] = {.lex_state = 98}, - [7071] = {.lex_state = 951}, - [7072] = {.lex_state = 951}, - [7073] = {.lex_state = 262}, - [7074] = {.lex_state = 262}, - [7075] = {.lex_state = 262}, - [7076] = {.lex_state = 491}, - [7077] = {.lex_state = 262}, - [7078] = {.lex_state = 951}, - [7079] = {.lex_state = 951}, - [7080] = {.lex_state = 262}, - [7081] = {.lex_state = 31}, - [7082] = {.lex_state = 951}, - [7083] = {.lex_state = 262}, - [7084] = {.lex_state = 262}, - [7085] = {.lex_state = 518}, - [7086] = {.lex_state = 951}, - [7087] = {.lex_state = 951}, - [7088] = {.lex_state = 262}, - [7089] = {.lex_state = 207}, - [7090] = {.lex_state = 445}, - [7091] = {.lex_state = 951}, - [7092] = {.lex_state = 262}, - [7093] = {.lex_state = 207}, - [7094] = {.lex_state = 272}, - [7095] = {.lex_state = 517}, - [7096] = {.lex_state = 262}, - [7097] = {.lex_state = 951}, - [7098] = {.lex_state = 951}, - [7099] = {.lex_state = 951}, - [7100] = {.lex_state = 491}, - [7101] = {.lex_state = 207}, - [7102] = {.lex_state = 951}, - [7103] = {.lex_state = 444}, - [7104] = {.lex_state = 272}, - [7105] = {.lex_state = 262}, - [7106] = {.lex_state = 262}, - [7107] = {.lex_state = 480}, - [7108] = {.lex_state = 491}, - [7109] = {.lex_state = 87}, - [7110] = {.lex_state = 445}, - [7111] = {.lex_state = 491}, - [7112] = {.lex_state = 506}, - [7113] = {.lex_state = 951}, - [7114] = {.lex_state = 948}, - [7115] = {.lex_state = 383}, - [7116] = {.lex_state = 150}, - [7117] = {.lex_state = 445}, - [7118] = {.lex_state = 262}, - [7119] = {.lex_state = 951}, - [7120] = {.lex_state = 262}, - [7121] = {.lex_state = 262}, - [7122] = {.lex_state = 262}, - [7123] = {.lex_state = 87}, - [7124] = {.lex_state = 951}, - [7125] = {.lex_state = 951}, - [7126] = {.lex_state = 262}, - [7127] = {.lex_state = 262}, - [7128] = {.lex_state = 951}, - [7129] = {.lex_state = 322}, - [7130] = {.lex_state = 951}, - [7131] = {.lex_state = 262}, - [7132] = {.lex_state = 100}, - [7133] = {.lex_state = 262}, - [7134] = {.lex_state = 262}, - [7135] = {.lex_state = 100}, - [7136] = {.lex_state = 262}, - [7137] = {.lex_state = 100}, - [7138] = {.lex_state = 98}, - [7139] = {.lex_state = 262}, - [7140] = {.lex_state = 951}, - [7141] = {.lex_state = 262}, - [7142] = {.lex_state = 262}, - [7143] = {.lex_state = 951}, - [7144] = {.lex_state = 262}, - [7145] = {.lex_state = 262}, - [7146] = {.lex_state = 262}, - [7147] = {.lex_state = 951}, - [7148] = {.lex_state = 322}, - [7149] = {.lex_state = 262}, - [7150] = {.lex_state = 262}, - [7151] = {.lex_state = 951}, - [7152] = {.lex_state = 262}, - [7153] = {.lex_state = 951}, - [7154] = {.lex_state = 87}, - [7155] = {.lex_state = 951}, - [7156] = {.lex_state = 950}, - [7157] = {.lex_state = 951}, - [7158] = {.lex_state = 951}, - [7159] = {.lex_state = 951}, - [7160] = {.lex_state = 951}, - [7161] = {.lex_state = 951}, - [7162] = {.lex_state = 951}, - [7163] = {.lex_state = 951}, - [7164] = {.lex_state = 951}, - [7165] = {.lex_state = 951}, - [7166] = {.lex_state = 951}, - [7167] = {.lex_state = 951}, - [7168] = {.lex_state = 262}, - [7169] = {.lex_state = 951}, - [7170] = {.lex_state = 207}, - [7171] = {.lex_state = 491}, - [7172] = {.lex_state = 951}, - [7173] = {.lex_state = 262}, - [7174] = {.lex_state = 262}, - [7175] = {.lex_state = 951}, - [7176] = {.lex_state = 951}, - [7177] = {.lex_state = 951}, - [7178] = {.lex_state = 87}, - [7179] = {.lex_state = 262}, - [7180] = {.lex_state = 951}, - [7181] = {.lex_state = 445}, - [7182] = {.lex_state = 951}, - [7183] = {.lex_state = 508}, - [7184] = {.lex_state = 134}, - [7185] = {.lex_state = 951}, - [7186] = {.lex_state = 951}, - [7187] = {.lex_state = 262}, - [7188] = {.lex_state = 951}, - [7189] = {.lex_state = 262}, - [7190] = {.lex_state = 951}, - [7191] = {.lex_state = 480}, - [7192] = {.lex_state = 383}, - [7193] = {.lex_state = 951}, - [7194] = {.lex_state = 262}, - [7195] = {.lex_state = 262}, - [7196] = {.lex_state = 951}, - [7197] = {.lex_state = 445}, - [7198] = {.lex_state = 951}, - [7199] = {.lex_state = 262}, - [7200] = {.lex_state = 951}, - [7201] = {.lex_state = 491}, - [7202] = {.lex_state = 508}, - [7203] = {.lex_state = 262}, - [7204] = {.lex_state = 262}, - [7205] = {.lex_state = 262}, - [7206] = {.lex_state = 262}, - [7207] = {.lex_state = 483}, - [7208] = {.lex_state = 262}, - [7209] = {.lex_state = 262}, - [7210] = {.lex_state = 262}, - [7211] = {.lex_state = 262}, - [7212] = {.lex_state = 150}, - [7213] = {.lex_state = 322}, - [7214] = {.lex_state = 322}, - [7215] = {.lex_state = 322}, - [7216] = {.lex_state = 445}, - [7217] = {.lex_state = 951}, - [7218] = {.lex_state = 951}, - [7219] = {.lex_state = 951}, - [7220] = {.lex_state = 951}, - [7221] = {.lex_state = 950}, - [7222] = {.lex_state = 950}, - [7223] = {.lex_state = 262}, - [7224] = {.lex_state = 262}, - [7225] = {.lex_state = 508}, - [7226] = {.lex_state = 950}, - [7227] = {.lex_state = 951}, - [7228] = {.lex_state = 322}, - [7229] = {.lex_state = 262}, - [7230] = {.lex_state = 951}, - [7231] = {.lex_state = 262}, - [7232] = {.lex_state = 322}, - [7233] = {.lex_state = 951}, - [7234] = {.lex_state = 951}, - [7235] = {.lex_state = 951}, - [7236] = {.lex_state = 951}, - [7237] = {.lex_state = 951}, - [7238] = {.lex_state = 322}, - [7239] = {.lex_state = 322}, - [7240] = {.lex_state = 951}, - [7241] = {.lex_state = 951}, - [7242] = {.lex_state = 951}, - [7243] = {.lex_state = 951}, - [7244] = {.lex_state = 322}, - [7245] = {.lex_state = 262}, - [7246] = {.lex_state = 951}, - [7247] = {.lex_state = 322}, - [7248] = {.lex_state = 100}, - [7249] = {.lex_state = 951}, - [7250] = {.lex_state = 951}, - [7251] = {.lex_state = 951}, - [7252] = {.lex_state = 951}, - [7253] = {.lex_state = 951}, - [7254] = {.lex_state = 322}, - [7255] = {.lex_state = 951}, - [7256] = {.lex_state = 322}, - [7257] = {.lex_state = 951}, - [7258] = {.lex_state = 951}, - [7259] = {.lex_state = 951}, - [7260] = {.lex_state = 951}, - [7261] = {.lex_state = 322}, - [7262] = {.lex_state = 322}, - [7263] = {.lex_state = 951}, - [7264] = {.lex_state = 951}, - [7265] = {.lex_state = 951}, - [7266] = {.lex_state = 951}, - [7267] = {.lex_state = 322}, - [7268] = {.lex_state = 322}, - [7269] = {.lex_state = 951}, - [7270] = {.lex_state = 951}, - [7271] = {.lex_state = 951}, - [7272] = {.lex_state = 262}, - [7273] = {.lex_state = 951}, - [7274] = {.lex_state = 951}, - [7275] = {.lex_state = 322}, - [7276] = {.lex_state = 322}, - [7277] = {.lex_state = 951}, - [7278] = {.lex_state = 951}, - [7279] = {.lex_state = 951}, - [7280] = {.lex_state = 951}, - [7281] = {.lex_state = 262}, - [7282] = {.lex_state = 951}, - [7283] = {.lex_state = 951}, - [7284] = {.lex_state = 322}, - [7285] = {.lex_state = 262}, - [7286] = {.lex_state = 322}, - [7287] = {.lex_state = 951}, - [7288] = {.lex_state = 951}, - [7289] = {.lex_state = 951}, - [7290] = {.lex_state = 951}, - [7291] = {.lex_state = 951}, - [7292] = {.lex_state = 322}, - [7293] = {.lex_state = 31}, - [7294] = {.lex_state = 322}, - [7295] = {.lex_state = 262}, - [7296] = {.lex_state = 951}, - [7297] = {.lex_state = 951}, - [7298] = {.lex_state = 951}, - [7299] = {.lex_state = 951}, - [7300] = {.lex_state = 322}, - [7301] = {.lex_state = 262}, - [7302] = {.lex_state = 322}, - [7303] = {.lex_state = 322}, - [7304] = {.lex_state = 951}, - [7305] = {.lex_state = 951}, - [7306] = {.lex_state = 100}, - [7307] = {.lex_state = 951}, - [7308] = {.lex_state = 951}, - [7309] = {.lex_state = 322}, - [7310] = {.lex_state = 86}, - [7311] = {.lex_state = 322}, - [7312] = {.lex_state = 480}, - [7313] = {.lex_state = 262}, - [7314] = {.lex_state = 951}, - [7315] = {.lex_state = 951}, - [7316] = {.lex_state = 262}, - [7317] = {.lex_state = 951}, - [7318] = {.lex_state = 951}, - [7319] = {.lex_state = 322}, - [7320] = {.lex_state = 262}, - [7321] = {.lex_state = 322}, - [7322] = {.lex_state = 951}, - [7323] = {.lex_state = 383}, - [7324] = {.lex_state = 951}, - [7325] = {.lex_state = 951}, - [7326] = {.lex_state = 951}, - [7327] = {.lex_state = 951}, - [7328] = {.lex_state = 322}, - [7329] = {.lex_state = 322}, - [7330] = {.lex_state = 951}, - [7331] = {.lex_state = 951}, - [7332] = {.lex_state = 951}, - [7333] = {.lex_state = 262}, - [7334] = {.lex_state = 951}, - [7335] = {.lex_state = 951}, - [7336] = {.lex_state = 322}, - [7337] = {.lex_state = 322}, - [7338] = {.lex_state = 262}, - [7339] = {.lex_state = 951}, - [7340] = {.lex_state = 951}, - [7341] = {.lex_state = 262}, - [7342] = {.lex_state = 951}, - [7343] = {.lex_state = 951}, - [7344] = {.lex_state = 322}, - [7345] = {.lex_state = 322}, - [7346] = {.lex_state = 262}, - [7347] = {.lex_state = 951}, - [7348] = {.lex_state = 951}, - [7349] = {.lex_state = 506}, - [7350] = {.lex_state = 951}, - [7351] = {.lex_state = 951}, - [7352] = {.lex_state = 322}, - [7353] = {.lex_state = 322}, - [7354] = {.lex_state = 951}, - [7355] = {.lex_state = 951}, - [7356] = {.lex_state = 262}, - [7357] = {.lex_state = 951}, - [7358] = {.lex_state = 951}, - [7359] = {.lex_state = 322}, - [7360] = {.lex_state = 322}, - [7361] = {.lex_state = 951}, - [7362] = {.lex_state = 951}, - [7363] = {.lex_state = 262}, - [7364] = {.lex_state = 951}, - [7365] = {.lex_state = 951}, - [7366] = {.lex_state = 322}, - [7367] = {.lex_state = 322}, - [7368] = {.lex_state = 87}, - [7369] = {.lex_state = 951}, - [7370] = {.lex_state = 951}, - [7371] = {.lex_state = 262}, - [7372] = {.lex_state = 951}, - [7373] = {.lex_state = 951}, - [7374] = {.lex_state = 383}, - [7375] = {.lex_state = 951}, - [7376] = {.lex_state = 951}, - [7377] = {.lex_state = 383}, - [7378] = {.lex_state = 951}, - [7379] = {.lex_state = 951}, - [7380] = {.lex_state = 951}, - [7381] = {.lex_state = 951}, - [7382] = {.lex_state = 951}, - [7383] = {.lex_state = 262}, - [7384] = {.lex_state = 952}, - [7385] = {.lex_state = 262}, - [7386] = {.lex_state = 262}, - [7387] = {.lex_state = 262}, - [7388] = {.lex_state = 262}, - [7389] = {.lex_state = 951}, - [7390] = {.lex_state = 87}, - [7391] = {.lex_state = 951}, - [7392] = {.lex_state = 491}, - [7393] = {.lex_state = 951}, - [7394] = {.lex_state = 951}, - [7395] = {.lex_state = 322}, - [7396] = {.lex_state = 508}, - [7397] = {.lex_state = 508}, - [7398] = {.lex_state = 262}, - [7399] = {.lex_state = 262}, - [7400] = {.lex_state = 100}, - [7401] = {.lex_state = 951}, - [7402] = {.lex_state = 951}, - [7403] = {.lex_state = 480}, - [7404] = {.lex_state = 262}, - [7405] = {.lex_state = 951}, - [7406] = {.lex_state = 262}, - [7407] = {.lex_state = 262}, - [7408] = {.lex_state = 951}, - [7409] = {.lex_state = 262}, - [7410] = {.lex_state = 134}, - [7411] = {.lex_state = 134}, - [7412] = {.lex_state = 952}, - [7413] = {.lex_state = 951}, - [7414] = {.lex_state = 262}, - [7415] = {.lex_state = 262}, - [7416] = {.lex_state = 4774}, - [7417] = {.lex_state = 4774}, - [7418] = {.lex_state = 951}, - [7419] = {.lex_state = 506}, - [7420] = {.lex_state = 4774}, - [7421] = {.lex_state = 4774}, - [7422] = {.lex_state = 260}, - [7423] = {.lex_state = 262}, - [7424] = {.lex_state = 4774}, - [7425] = {.lex_state = 262}, - [7426] = {.lex_state = 4778}, - [7427] = {.lex_state = 4778}, - [7428] = {.lex_state = 262}, - [7429] = {.lex_state = 951}, - [7430] = {.lex_state = 262}, - [7431] = {.lex_state = 262}, - [7432] = {.lex_state = 951}, - [7433] = {.lex_state = 260}, - [7434] = {.lex_state = 262}, - [7435] = {.lex_state = 4778}, - [7436] = {.lex_state = 262}, - [7437] = {.lex_state = 262}, - [7438] = {.lex_state = 4774}, - [7439] = {.lex_state = 4774}, - [7440] = {.lex_state = 4774}, - [7441] = {.lex_state = 951}, - [7442] = {.lex_state = 4774}, - [7443] = {.lex_state = 260}, - [7444] = {.lex_state = 4774}, - [7445] = {.lex_state = 4774}, - [7446] = {.lex_state = 4774}, - [7447] = {.lex_state = 4776}, - [7448] = {.lex_state = 98}, - [7449] = {.lex_state = 4778}, - [7450] = {.lex_state = 4778}, - [7451] = {.lex_state = 951}, - [7452] = {.lex_state = 951}, - [7453] = {.lex_state = 262}, - [7454] = {.lex_state = 951}, - [7455] = {.lex_state = 951}, - [7456] = {.lex_state = 262}, - [7457] = {.lex_state = 262}, - [7458] = {.lex_state = 262}, - [7459] = {.lex_state = 514}, - [7460] = {.lex_state = 4774}, - [7461] = {.lex_state = 951}, - [7462] = {.lex_state = 494}, - [7463] = {.lex_state = 260}, - [7464] = {.lex_state = 951}, - [7465] = {.lex_state = 262}, - [7466] = {.lex_state = 262}, - [7467] = {.lex_state = 952}, - [7468] = {.lex_state = 951}, - [7469] = {.lex_state = 260}, - [7470] = {.lex_state = 951}, - [7471] = {.lex_state = 951}, - [7472] = {.lex_state = 4774}, - [7473] = {.lex_state = 262}, - [7474] = {.lex_state = 134}, - [7475] = {.lex_state = 517}, - [7476] = {.lex_state = 951}, - [7477] = {.lex_state = 134}, - [7478] = {.lex_state = 262}, - [7479] = {.lex_state = 4774}, - [7480] = {.lex_state = 951}, - [7481] = {.lex_state = 4776}, - [7482] = {.lex_state = 260}, - [7483] = {.lex_state = 951}, - [7484] = {.lex_state = 262}, - [7485] = {.lex_state = 951}, - [7486] = {.lex_state = 951}, - [7487] = {.lex_state = 951}, - [7488] = {.lex_state = 4776}, - [7489] = {.lex_state = 951}, - [7490] = {.lex_state = 260}, - [7491] = {.lex_state = 951}, - [7492] = {.lex_state = 262}, - [7493] = {.lex_state = 4774}, - [7494] = {.lex_state = 4778}, - [7495] = {.lex_state = 4778}, - [7496] = {.lex_state = 4778}, - [7497] = {.lex_state = 262}, - [7498] = {.lex_state = 951}, - [7499] = {.lex_state = 4774}, - [7500] = {.lex_state = 4774}, - [7501] = {.lex_state = 262}, - [7502] = {.lex_state = 4776}, - [7503] = {.lex_state = 134}, - [7504] = {.lex_state = 951}, - [7505] = {.lex_state = 951}, - [7506] = {.lex_state = 262}, - [7507] = {.lex_state = 262}, - [7508] = {.lex_state = 951}, - [7509] = {.lex_state = 260}, - [7510] = {.lex_state = 514}, - [7511] = {.lex_state = 262}, - [7512] = {.lex_state = 951}, - [7513] = {.lex_state = 952}, - [7514] = {.lex_state = 4776}, - [7515] = {.lex_state = 29}, - [7516] = {.lex_state = 4774}, - [7517] = {.lex_state = 4774}, - [7518] = {.lex_state = 4776}, - [7519] = {.lex_state = 262}, - [7520] = {.lex_state = 951}, - [7521] = {.lex_state = 514}, - [7522] = {.lex_state = 951}, - [7523] = {.lex_state = 4776}, - [7524] = {.lex_state = 260}, - [7525] = {.lex_state = 4776}, - [7526] = {.lex_state = 260}, - [7527] = {.lex_state = 262}, - [7528] = {.lex_state = 951}, - [7529] = {.lex_state = 262}, - [7530] = {.lex_state = 262}, - [7531] = {.lex_state = 262}, - [7532] = {.lex_state = 262}, - [7533] = {.lex_state = 260}, - [7534] = {.lex_state = 4774}, - [7535] = {.lex_state = 4774}, - [7536] = {.lex_state = 514}, - [7537] = {.lex_state = 514}, - [7538] = {.lex_state = 951}, - [7539] = {.lex_state = 262}, - [7540] = {.lex_state = 260}, - [7541] = {.lex_state = 4778}, - [7542] = {.lex_state = 262}, - [7543] = {.lex_state = 134}, - [7544] = {.lex_state = 4774}, - [7545] = {.lex_state = 951}, - [7546] = {.lex_state = 260}, - [7547] = {.lex_state = 951}, - [7548] = {.lex_state = 134}, - [7549] = {.lex_state = 260}, - [7550] = {.lex_state = 98}, - [7551] = {.lex_state = 951}, - [7552] = {.lex_state = 260}, - [7553] = {.lex_state = 4774}, - [7554] = {.lex_state = 515}, - [7555] = {.lex_state = 4774}, - [7556] = {.lex_state = 373}, - [7557] = {.lex_state = 260}, - [7558] = {.lex_state = 951}, - [7559] = {.lex_state = 262}, - [7560] = {.lex_state = 98}, - [7561] = {.lex_state = 951}, - [7562] = {.lex_state = 3521}, - [7563] = {.lex_state = 373}, - [7564] = {.lex_state = 4774}, - [7565] = {.lex_state = 948}, - [7566] = {.lex_state = 4774}, - [7567] = {.lex_state = 4774}, - [7568] = {.lex_state = 260}, - [7569] = {.lex_state = 4778}, - [7570] = {.lex_state = 4778}, - [7571] = {.lex_state = 262}, - [7572] = {.lex_state = 951}, - [7573] = {.lex_state = 4778}, - [7574] = {.lex_state = 4778}, - [7575] = {.lex_state = 29}, - [7576] = {.lex_state = 951}, - [7577] = {.lex_state = 373}, - [7578] = {.lex_state = 951}, - [7579] = {.lex_state = 930}, - [7580] = {.lex_state = 4774}, - [7581] = {.lex_state = 134}, - [7582] = {.lex_state = 4774}, - [7583] = {.lex_state = 4774}, - [7584] = {.lex_state = 951}, - [7585] = {.lex_state = 952}, - [7586] = {.lex_state = 4774}, - [7587] = {.lex_state = 4774}, - [7588] = {.lex_state = 262}, - [7589] = {.lex_state = 4774}, - [7590] = {.lex_state = 38}, - [7591] = {.lex_state = 4774}, - [7592] = {.lex_state = 951}, - [7593] = {.lex_state = 4776}, - [7594] = {.lex_state = 951}, - [7595] = {.lex_state = 4774}, - [7596] = {.lex_state = 262}, - [7597] = {.lex_state = 445}, - [7598] = {.lex_state = 134}, - [7599] = {.lex_state = 262}, - [7600] = {.lex_state = 262}, - [7601] = {.lex_state = 150}, - [7602] = {.lex_state = 134}, - [7603] = {.lex_state = 4774}, - [7604] = {.lex_state = 262}, - [7605] = {.lex_state = 262}, - [7606] = {.lex_state = 262}, - [7607] = {.lex_state = 951}, - [7608] = {.lex_state = 951, .external_lex_state = 3}, - [7609] = {.lex_state = 100}, - [7610] = {.lex_state = 150}, - [7611] = {.lex_state = 200}, - [7612] = {.lex_state = 500}, - [7613] = {.lex_state = 951}, - [7614] = {.lex_state = 926}, - [7615] = {.lex_state = 951}, - [7616] = {.lex_state = 502}, - [7617] = {.lex_state = 951}, - [7618] = {.lex_state = 951}, - [7619] = {.lex_state = 502}, - [7620] = {.lex_state = 948}, - [7621] = {.lex_state = 951}, - [7622] = {.lex_state = 150}, - [7623] = {.lex_state = 952}, - [7624] = {.lex_state = 951}, - [7625] = {.lex_state = 951, .external_lex_state = 3}, - [7626] = {.lex_state = 951}, - [7627] = {.lex_state = 951, .external_lex_state = 3}, - [7628] = {.lex_state = 951}, - [7629] = {.lex_state = 951}, - [7630] = {.lex_state = 134}, - [7631] = {.lex_state = 951, .external_lex_state = 3}, - [7632] = {.lex_state = 134}, - [7633] = {.lex_state = 948}, - [7634] = {.lex_state = 4778}, - [7635] = {.lex_state = 951}, - [7636] = {.lex_state = 150}, - [7637] = {.lex_state = 200}, - [7638] = {.lex_state = 951}, - [7639] = {.lex_state = 951, .external_lex_state = 3}, - [7640] = {.lex_state = 100}, - [7641] = {.lex_state = 951}, - [7642] = {.lex_state = 200}, - [7643] = {.lex_state = 951, .external_lex_state = 3}, - [7644] = {.lex_state = 951}, - [7645] = {.lex_state = 134}, - [7646] = {.lex_state = 951}, - [7647] = {.lex_state = 951}, - [7648] = {.lex_state = 951}, - [7649] = {.lex_state = 951}, - [7650] = {.lex_state = 951}, - [7651] = {.lex_state = 951, .external_lex_state = 3}, - [7652] = {.lex_state = 504}, - [7653] = {.lex_state = 134}, - [7654] = {.lex_state = 951, .external_lex_state = 3}, - [7655] = {.lex_state = 951, .external_lex_state = 3}, - [7656] = {.lex_state = 515}, - [7657] = {.lex_state = 4776}, - [7658] = {.lex_state = 951}, - [7659] = {.lex_state = 134}, - [7660] = {.lex_state = 951}, - [7661] = {.lex_state = 951, .external_lex_state = 3}, - [7662] = {.lex_state = 951}, - [7663] = {.lex_state = 951}, - [7664] = {.lex_state = 951}, - [7665] = {.lex_state = 951}, - [7666] = {.lex_state = 98}, - [7667] = {.lex_state = 951}, - [7668] = {.lex_state = 951}, - [7669] = {.lex_state = 951, .external_lex_state = 3}, - [7670] = {.lex_state = 150}, - [7671] = {.lex_state = 951}, - [7672] = {.lex_state = 951}, - [7673] = {.lex_state = 515}, - [7674] = {.lex_state = 951}, - [7675] = {.lex_state = 951, .external_lex_state = 3}, - [7676] = {.lex_state = 134}, - [7677] = {.lex_state = 38}, - [7678] = {.lex_state = 951}, - [7679] = {.lex_state = 951}, - [7680] = {.lex_state = 951}, - [7681] = {.lex_state = 951}, - [7682] = {.lex_state = 951, .external_lex_state = 3}, - [7683] = {.lex_state = 951}, - [7684] = {.lex_state = 951}, - [7685] = {.lex_state = 150}, - [7686] = {.lex_state = 951}, - [7687] = {.lex_state = 951}, - [7688] = {.lex_state = 951}, - [7689] = {.lex_state = 503}, - [7690] = {.lex_state = 951}, - [7691] = {.lex_state = 951}, - [7692] = {.lex_state = 951, .external_lex_state = 3}, - [7693] = {.lex_state = 502}, - [7694] = {.lex_state = 501}, - [7695] = {.lex_state = 951, .external_lex_state = 3}, - [7696] = {.lex_state = 951}, - [7697] = {.lex_state = 4776}, - [7698] = {.lex_state = 948}, - [7699] = {.lex_state = 948}, - [7700] = {.lex_state = 951}, - [7701] = {.lex_state = 951}, - [7702] = {.lex_state = 502}, - [7703] = {.lex_state = 951, .external_lex_state = 3}, - [7704] = {.lex_state = 951}, - [7705] = {.lex_state = 951}, - [7706] = {.lex_state = 951}, - [7707] = {.lex_state = 951}, - [7708] = {.lex_state = 951}, - [7709] = {.lex_state = 951}, - [7710] = {.lex_state = 502}, - [7711] = {.lex_state = 951}, - [7712] = {.lex_state = 502}, - [7713] = {.lex_state = 951, .external_lex_state = 3}, - [7714] = {.lex_state = 951}, - [7715] = {.lex_state = 951}, - [7716] = {.lex_state = 951}, - [7717] = {.lex_state = 951}, - [7718] = {.lex_state = 951}, - [7719] = {.lex_state = 951}, - [7720] = {.lex_state = 951}, - [7721] = {.lex_state = 951}, - [7722] = {.lex_state = 951}, - [7723] = {.lex_state = 951, .external_lex_state = 3}, - [7724] = {.lex_state = 951, .external_lex_state = 3}, - [7725] = {.lex_state = 951}, - [7726] = {.lex_state = 951}, - [7727] = {.lex_state = 951}, - [7728] = {.lex_state = 951, .external_lex_state = 4}, - [7729] = {.lex_state = 100}, - [7730] = {.lex_state = 951, .external_lex_state = 3}, - [7731] = {.lex_state = 951}, - [7732] = {.lex_state = 951, .external_lex_state = 3}, - [7733] = {.lex_state = 100}, - [7734] = {.lex_state = 134}, - [7735] = {.lex_state = 951, .external_lex_state = 3}, - [7736] = {.lex_state = 951}, - [7737] = {.lex_state = 951}, - [7738] = {.lex_state = 951}, - [7739] = {.lex_state = 951}, - [7740] = {.lex_state = 948}, - [7741] = {.lex_state = 951}, - [7742] = {.lex_state = 951}, - [7743] = {.lex_state = 951}, - [7744] = {.lex_state = 951, .external_lex_state = 3}, - [7745] = {.lex_state = 951}, - [7746] = {.lex_state = 951}, - [7747] = {.lex_state = 951}, - [7748] = {.lex_state = 951, .external_lex_state = 3}, - [7749] = {.lex_state = 951}, - [7750] = {.lex_state = 3521}, - [7751] = {.lex_state = 951, .external_lex_state = 3}, - [7752] = {.lex_state = 951}, - [7753] = {.lex_state = 948}, - [7754] = {.lex_state = 951}, - [7755] = {.lex_state = 948}, - [7756] = {.lex_state = 515}, - [7757] = {.lex_state = 951}, - [7758] = {.lex_state = 951}, - [7759] = {.lex_state = 951, .external_lex_state = 4}, - [7760] = {.lex_state = 502}, - [7761] = {.lex_state = 951}, - [7762] = {.lex_state = 951, .external_lex_state = 3}, - [7763] = {.lex_state = 951}, - [7764] = {.lex_state = 951, .external_lex_state = 4}, - [7765] = {.lex_state = 100}, - [7766] = {.lex_state = 150}, - [7767] = {.lex_state = 134}, - [7768] = {.lex_state = 948}, - [7769] = {.lex_state = 951}, - [7770] = {.lex_state = 150}, - [7771] = {.lex_state = 1058}, - [7772] = {.lex_state = 951, .external_lex_state = 3}, - [7773] = {.lex_state = 38}, - [7774] = {.lex_state = 4778}, - [7775] = {.lex_state = 951}, - [7776] = {.lex_state = 150}, - [7777] = {.lex_state = 951}, - [7778] = {.lex_state = 951}, - [7779] = {.lex_state = 951}, - [7780] = {.lex_state = 134}, - [7781] = {.lex_state = 951, .external_lex_state = 4}, - [7782] = {.lex_state = 100}, - [7783] = {.lex_state = 951}, - [7784] = {.lex_state = 951, .external_lex_state = 3}, - [7785] = {.lex_state = 951}, - [7786] = {.lex_state = 951}, - [7787] = {.lex_state = 951, .external_lex_state = 3}, - [7788] = {.lex_state = 951}, - [7789] = {.lex_state = 951}, - [7790] = {.lex_state = 951, .external_lex_state = 3}, - [7791] = {.lex_state = 4774}, - [7792] = {.lex_state = 951, .external_lex_state = 3}, - [7793] = {.lex_state = 951}, - [7794] = {.lex_state = 134}, - [7795] = {.lex_state = 951}, - [7796] = {.lex_state = 951, .external_lex_state = 4}, - [7797] = {.lex_state = 100}, - [7798] = {.lex_state = 951}, - [7799] = {.lex_state = 951}, - [7800] = {.lex_state = 951, .external_lex_state = 3}, - [7801] = {.lex_state = 4778}, - [7802] = {.lex_state = 150}, - [7803] = {.lex_state = 503}, - [7804] = {.lex_state = 951}, - [7805] = {.lex_state = 134}, - [7806] = {.lex_state = 100}, - [7807] = {.lex_state = 951, .external_lex_state = 3}, - [7808] = {.lex_state = 951}, - [7809] = {.lex_state = 951}, - [7810] = {.lex_state = 951, .external_lex_state = 4}, - [7811] = {.lex_state = 100}, - [7812] = {.lex_state = 951}, - [7813] = {.lex_state = 951, .external_lex_state = 4}, - [7814] = {.lex_state = 200}, - [7815] = {.lex_state = 4793}, - [7816] = {.lex_state = 951}, - [7817] = {.lex_state = 515}, - [7818] = {.lex_state = 948}, - [7819] = {.lex_state = 200}, - [7820] = {.lex_state = 951, .external_lex_state = 3}, - [7821] = {.lex_state = 951}, - [7822] = {.lex_state = 951}, - [7823] = {.lex_state = 951}, - [7824] = {.lex_state = 951, .external_lex_state = 4}, - [7825] = {.lex_state = 100}, - [7826] = {.lex_state = 951}, - [7827] = {.lex_state = 98}, - [7828] = {.lex_state = 951, .external_lex_state = 3}, - [7829] = {.lex_state = 951}, - [7830] = {.lex_state = 100}, - [7831] = {.lex_state = 951}, - [7832] = {.lex_state = 951}, - [7833] = {.lex_state = 100}, - [7834] = {.lex_state = 134}, - [7835] = {.lex_state = 951}, - [7836] = {.lex_state = 515}, - [7837] = {.lex_state = 951}, - [7838] = {.lex_state = 951, .external_lex_state = 4}, - [7839] = {.lex_state = 100}, - [7840] = {.lex_state = 951, .external_lex_state = 3}, - [7841] = {.lex_state = 951}, - [7842] = {.lex_state = 41}, - [7843] = {.lex_state = 134}, - [7844] = {.lex_state = 951}, - [7845] = {.lex_state = 517}, - [7846] = {.lex_state = 951}, - [7847] = {.lex_state = 951}, - [7848] = {.lex_state = 134}, - [7849] = {.lex_state = 951}, - [7850] = {.lex_state = 951, .external_lex_state = 3}, - [7851] = {.lex_state = 515}, - [7852] = {.lex_state = 951, .external_lex_state = 4}, - [7853] = {.lex_state = 100}, - [7854] = {.lex_state = 134}, - [7855] = {.lex_state = 951}, - [7856] = {.lex_state = 951, .external_lex_state = 3}, - [7857] = {.lex_state = 951}, - [7858] = {.lex_state = 951}, - [7859] = {.lex_state = 150}, - [7860] = {.lex_state = 150}, - [7861] = {.lex_state = 951}, - [7862] = {.lex_state = 951}, - [7863] = {.lex_state = 38}, - [7864] = {.lex_state = 504}, - [7865] = {.lex_state = 951, .external_lex_state = 4}, - [7866] = {.lex_state = 100}, - [7867] = {.lex_state = 1058}, - [7868] = {.lex_state = 951}, - [7869] = {.lex_state = 134}, - [7870] = {.lex_state = 41}, - [7871] = {.lex_state = 951}, - [7872] = {.lex_state = 100}, - [7873] = {.lex_state = 951}, - [7874] = {.lex_state = 951}, - [7875] = {.lex_state = 951}, - [7876] = {.lex_state = 100}, - [7877] = {.lex_state = 951}, - [7878] = {.lex_state = 951, .external_lex_state = 4}, - [7879] = {.lex_state = 100}, - [7880] = {.lex_state = 951}, - [7881] = {.lex_state = 951}, - [7882] = {.lex_state = 951}, - [7883] = {.lex_state = 150}, - [7884] = {.lex_state = 951}, - [7885] = {.lex_state = 951}, - [7886] = {.lex_state = 951}, - [7887] = {.lex_state = 951}, - [7888] = {.lex_state = 951}, - [7889] = {.lex_state = 951}, - [7890] = {.lex_state = 951}, - [7891] = {.lex_state = 951, .external_lex_state = 4}, - [7892] = {.lex_state = 100}, - [7893] = {.lex_state = 951}, - [7894] = {.lex_state = 4774}, - [7895] = {.lex_state = 951, .external_lex_state = 3}, - [7896] = {.lex_state = 951}, - [7897] = {.lex_state = 38}, - [7898] = {.lex_state = 951}, - [7899] = {.lex_state = 951}, - [7900] = {.lex_state = 951}, - [7901] = {.lex_state = 951}, - [7902] = {.lex_state = 385}, - [7903] = {.lex_state = 951}, - [7904] = {.lex_state = 951, .external_lex_state = 4}, - [7905] = {.lex_state = 100}, - [7906] = {.lex_state = 38}, - [7907] = {.lex_state = 951}, - [7908] = {.lex_state = 951}, - [7909] = {.lex_state = 951, .external_lex_state = 3}, - [7910] = {.lex_state = 502}, - [7911] = {.lex_state = 100}, - [7912] = {.lex_state = 502}, - [7913] = {.lex_state = 503}, - [7914] = {.lex_state = 951, .external_lex_state = 3}, - [7915] = {.lex_state = 951}, - [7916] = {.lex_state = 951}, - [7917] = {.lex_state = 951, .external_lex_state = 4}, - [7918] = {.lex_state = 100}, - [7919] = {.lex_state = 951}, - [7920] = {.lex_state = 951}, - [7921] = {.lex_state = 951}, - [7922] = {.lex_state = 951}, - [7923] = {.lex_state = 100}, - [7924] = {.lex_state = 951}, - [7925] = {.lex_state = 951}, - [7926] = {.lex_state = 951, .external_lex_state = 3}, - [7927] = {.lex_state = 951, .external_lex_state = 3}, - [7928] = {.lex_state = 504}, - [7929] = {.lex_state = 134}, - [7930] = {.lex_state = 951, .external_lex_state = 4}, - [7931] = {.lex_state = 100}, - [7932] = {.lex_state = 951}, - [7933] = {.lex_state = 951}, - [7934] = {.lex_state = 951}, - [7935] = {.lex_state = 951}, - [7936] = {.lex_state = 150}, - [7937] = {.lex_state = 951}, - [7938] = {.lex_state = 951}, - [7939] = {.lex_state = 951}, - [7940] = {.lex_state = 951, .external_lex_state = 4}, - [7941] = {.lex_state = 100}, - [7942] = {.lex_state = 951}, - [7943] = {.lex_state = 951}, - [7944] = {.lex_state = 951}, - [7945] = {.lex_state = 951, .external_lex_state = 3}, - [7946] = {.lex_state = 951}, - [7947] = {.lex_state = 951}, - [7948] = {.lex_state = 515}, - [7949] = {.lex_state = 951}, - [7950] = {.lex_state = 951, .external_lex_state = 4}, - [7951] = {.lex_state = 951}, - [7952] = {.lex_state = 951, .external_lex_state = 3}, - [7953] = {.lex_state = 951}, - [7954] = {.lex_state = 951}, - [7955] = {.lex_state = 951}, - [7956] = {.lex_state = 948}, - [7957] = {.lex_state = 951}, - [7958] = {.lex_state = 951}, - [7959] = {.lex_state = 951, .external_lex_state = 4}, - [7960] = {.lex_state = 951}, - [7961] = {.lex_state = 951}, - [7962] = {.lex_state = 4776}, - [7963] = {.lex_state = 951}, - [7964] = {.lex_state = 951}, - [7965] = {.lex_state = 951}, - [7966] = {.lex_state = 951}, - [7967] = {.lex_state = 948}, - [7968] = {.lex_state = 951, .external_lex_state = 4}, - [7969] = {.lex_state = 951}, - [7970] = {.lex_state = 504}, - [7971] = {.lex_state = 260}, - [7972] = {.lex_state = 951}, - [7973] = {.lex_state = 134}, - [7974] = {.lex_state = 951}, - [7975] = {.lex_state = 951}, - [7976] = {.lex_state = 948}, - [7977] = {.lex_state = 951, .external_lex_state = 4}, - [7978] = {.lex_state = 951}, - [7979] = {.lex_state = 951}, - [7980] = {.lex_state = 951}, - [7981] = {.lex_state = 951}, - [7982] = {.lex_state = 951}, - [7983] = {.lex_state = 951}, - [7984] = {.lex_state = 951}, - [7985] = {.lex_state = 951, .external_lex_state = 3}, - [7986] = {.lex_state = 951, .external_lex_state = 4}, - [7987] = {.lex_state = 951}, - [7988] = {.lex_state = 951}, - [7989] = {.lex_state = 951}, - [7990] = {.lex_state = 38}, - [7991] = {.lex_state = 951}, - [7992] = {.lex_state = 150}, - [7993] = {.lex_state = 951, .external_lex_state = 4}, - [7994] = {.lex_state = 951, .external_lex_state = 4}, - [7995] = {.lex_state = 951, .external_lex_state = 4}, - [7996] = {.lex_state = 951, .external_lex_state = 4}, - [7997] = {.lex_state = 951, .external_lex_state = 4}, - [7998] = {.lex_state = 951, .external_lex_state = 4}, - [7999] = {.lex_state = 951, .external_lex_state = 4}, - [8000] = {.lex_state = 951, .external_lex_state = 4}, - [8001] = {.lex_state = 951, .external_lex_state = 4}, - [8002] = {.lex_state = 951, .external_lex_state = 4}, - [8003] = {.lex_state = 951, .external_lex_state = 4}, - [8004] = {.lex_state = 951, .external_lex_state = 4}, - [8005] = {.lex_state = 951, .external_lex_state = 4}, - [8006] = {.lex_state = 951, .external_lex_state = 4}, - [8007] = {.lex_state = 951, .external_lex_state = 4}, - [8008] = {.lex_state = 951, .external_lex_state = 4}, - [8009] = {.lex_state = 951, .external_lex_state = 4}, - [8010] = {.lex_state = 951, .external_lex_state = 4}, - [8011] = {.lex_state = 951, .external_lex_state = 4}, - [8012] = {.lex_state = 951, .external_lex_state = 4}, - [8013] = {.lex_state = 951, .external_lex_state = 4}, - [8014] = {.lex_state = 951, .external_lex_state = 4}, - [8015] = {.lex_state = 951, .external_lex_state = 4}, - [8016] = {.lex_state = 951, .external_lex_state = 4}, - [8017] = {.lex_state = 951, .external_lex_state = 4}, - [8018] = {.lex_state = 951, .external_lex_state = 4}, - [8019] = {.lex_state = 951, .external_lex_state = 4}, - [8020] = {.lex_state = 951, .external_lex_state = 4}, - [8021] = {.lex_state = 951, .external_lex_state = 4}, - [8022] = {.lex_state = 951, .external_lex_state = 4}, - [8023] = {.lex_state = 951}, - [8024] = {.lex_state = 260}, - [8025] = {.lex_state = 951}, - [8026] = {.lex_state = 951, .external_lex_state = 3}, - [8027] = {.lex_state = 38}, - [8028] = {.lex_state = 951}, - [8029] = {.lex_state = 951}, - [8030] = {.lex_state = 200}, - [8031] = {.lex_state = 951}, - [8032] = {.lex_state = 926}, - [8033] = {.lex_state = 515}, - [8034] = {.lex_state = 951}, - [8035] = {.lex_state = 951}, - [8036] = {.lex_state = 134}, - [8037] = {.lex_state = 926}, - [8038] = {.lex_state = 951}, - [8039] = {.lex_state = 951}, - [8040] = {.lex_state = 951}, - [8041] = {.lex_state = 951}, - [8042] = {.lex_state = 951}, - [8043] = {.lex_state = 951}, - [8044] = {.lex_state = 38}, - [8045] = {.lex_state = 952}, - [8046] = {.lex_state = 260}, - [8047] = {.lex_state = 4774}, - [8048] = {.lex_state = 951, .external_lex_state = 3}, - [8049] = {.lex_state = 951}, - [8050] = {.lex_state = 951}, - [8051] = {.lex_state = 948}, - [8052] = {.lex_state = 951, .external_lex_state = 3}, - [8053] = {.lex_state = 951}, - [8054] = {.lex_state = 260}, - [8055] = {.lex_state = 926}, - [8056] = {.lex_state = 260}, - [8057] = {.lex_state = 951}, - [8058] = {.lex_state = 951, .external_lex_state = 3}, - [8059] = {.lex_state = 951}, - [8060] = {.lex_state = 951}, - [8061] = {.lex_state = 951}, - [8062] = {.lex_state = 515}, - [8063] = {.lex_state = 951, .external_lex_state = 3}, - [8064] = {.lex_state = 951}, - [8065] = {.lex_state = 951}, - [8066] = {.lex_state = 951}, - [8067] = {.lex_state = 134}, - [8068] = {.lex_state = 951}, - [8069] = {.lex_state = 951}, - [8070] = {.lex_state = 100}, - [8071] = {.lex_state = 150}, - [8072] = {.lex_state = 951}, - [8073] = {.lex_state = 951}, - [8074] = {.lex_state = 951}, - [8075] = {.lex_state = 951}, - [8076] = {.lex_state = 951}, - [8077] = {.lex_state = 951}, - [8078] = {.lex_state = 951, .external_lex_state = 3}, - [8079] = {(TSStateId)(-1)}, + [1] = {.lex_state = 722, .external_lex_state = 2}, + [2] = {.lex_state = 744, .external_lex_state = 2}, + [3] = {.lex_state = 744, .external_lex_state = 2}, + [4] = {.lex_state = 744, .external_lex_state = 2}, + [5] = {.lex_state = 744, .external_lex_state = 2}, + [6] = {.lex_state = 744, .external_lex_state = 2}, + [7] = {.lex_state = 744, .external_lex_state = 2}, + [8] = {.lex_state = 744, .external_lex_state = 2}, + [9] = {.lex_state = 744, .external_lex_state = 2}, + [10] = {.lex_state = 744, .external_lex_state = 2}, + [11] = {.lex_state = 744, .external_lex_state = 2}, + [12] = {.lex_state = 744, .external_lex_state = 2}, + [13] = {.lex_state = 744, .external_lex_state = 2}, + [14] = {.lex_state = 744, .external_lex_state = 2}, + [15] = {.lex_state = 744, .external_lex_state = 2}, + [16] = {.lex_state = 744, .external_lex_state = 2}, + [17] = {.lex_state = 744, .external_lex_state = 2}, + [18] = {.lex_state = 744, .external_lex_state = 2}, + [19] = {.lex_state = 744, .external_lex_state = 2}, + [20] = {.lex_state = 744, .external_lex_state = 2}, + [21] = {.lex_state = 744, .external_lex_state = 2}, + [22] = {.lex_state = 744, .external_lex_state = 2}, + [23] = {.lex_state = 744, .external_lex_state = 2}, + [24] = {.lex_state = 744, .external_lex_state = 2}, + [25] = {.lex_state = 744, .external_lex_state = 2}, + [26] = {.lex_state = 744, .external_lex_state = 2}, + [27] = {.lex_state = 744, .external_lex_state = 2}, + [28] = {.lex_state = 744, .external_lex_state = 2}, + [29] = {.lex_state = 744, .external_lex_state = 2}, + [30] = {.lex_state = 744, .external_lex_state = 2}, + [31] = {.lex_state = 744, .external_lex_state = 2}, + [32] = {.lex_state = 744, .external_lex_state = 2}, + [33] = {.lex_state = 744, .external_lex_state = 2}, + [34] = {.lex_state = 744, .external_lex_state = 2}, + [35] = {.lex_state = 744, .external_lex_state = 2}, + [36] = {.lex_state = 744, .external_lex_state = 2}, + [37] = {.lex_state = 740, .external_lex_state = 2}, + [38] = {.lex_state = 740, .external_lex_state = 2}, + [39] = {.lex_state = 740, .external_lex_state = 2}, + [40] = {.lex_state = 740, .external_lex_state = 2}, + [41] = {.lex_state = 740, .external_lex_state = 2}, + [42] = {.lex_state = 740, .external_lex_state = 2}, + [43] = {.lex_state = 740, .external_lex_state = 2}, + [44] = {.lex_state = 740, .external_lex_state = 2}, + [45] = {.lex_state = 740, .external_lex_state = 2}, + [46] = {.lex_state = 740, .external_lex_state = 2}, + [47] = {.lex_state = 740, .external_lex_state = 2}, + [48] = {.lex_state = 740, .external_lex_state = 2}, + [49] = {.lex_state = 740, .external_lex_state = 2}, + [50] = {.lex_state = 740, .external_lex_state = 2}, + [51] = {.lex_state = 740, .external_lex_state = 2}, + [52] = {.lex_state = 740, .external_lex_state = 2}, + [53] = {.lex_state = 740, .external_lex_state = 2}, + [54] = {.lex_state = 740, .external_lex_state = 2}, + [55] = {.lex_state = 740, .external_lex_state = 2}, + [56] = {.lex_state = 740, .external_lex_state = 2}, + [57] = {.lex_state = 740, .external_lex_state = 2}, + [58] = {.lex_state = 740, .external_lex_state = 2}, + [59] = {.lex_state = 740, .external_lex_state = 2}, + [60] = {.lex_state = 740, .external_lex_state = 2}, + [61] = {.lex_state = 740, .external_lex_state = 2}, + [62] = {.lex_state = 740, .external_lex_state = 2}, + [63] = {.lex_state = 740, .external_lex_state = 2}, + [64] = {.lex_state = 740, .external_lex_state = 2}, + [65] = {.lex_state = 740, .external_lex_state = 2}, + [66] = {.lex_state = 740, .external_lex_state = 2}, + [67] = {.lex_state = 38, .external_lex_state = 2}, + [68] = {.lex_state = 38, .external_lex_state = 2}, + [69] = {.lex_state = 38, .external_lex_state = 2}, + [70] = {.lex_state = 740, .external_lex_state = 2}, + [71] = {.lex_state = 38, .external_lex_state = 2}, + [72] = {.lex_state = 38, .external_lex_state = 2}, + [73] = {.lex_state = 740, .external_lex_state = 2}, + [74] = {.lex_state = 38, .external_lex_state = 2}, + [75] = {.lex_state = 38, .external_lex_state = 2}, + [76] = {.lex_state = 38, .external_lex_state = 2}, + [77] = {.lex_state = 38, .external_lex_state = 2}, + [78] = {.lex_state = 38, .external_lex_state = 2}, + [79] = {.lex_state = 38, .external_lex_state = 2}, + [80] = {.lex_state = 38, .external_lex_state = 2}, + [81] = {.lex_state = 38, .external_lex_state = 2}, + [82] = {.lex_state = 38, .external_lex_state = 2}, + [83] = {.lex_state = 38, .external_lex_state = 2}, + [84] = {.lex_state = 38, .external_lex_state = 2}, + [85] = {.lex_state = 38, .external_lex_state = 2}, + [86] = {.lex_state = 38, .external_lex_state = 2}, + [87] = {.lex_state = 38, .external_lex_state = 2}, + [88] = {.lex_state = 38, .external_lex_state = 2}, + [89] = {.lex_state = 38, .external_lex_state = 2}, + [90] = {.lex_state = 38, .external_lex_state = 2}, + [91] = {.lex_state = 38, .external_lex_state = 2}, + [92] = {.lex_state = 38, .external_lex_state = 2}, + [93] = {.lex_state = 38, .external_lex_state = 2}, + [94] = {.lex_state = 38, .external_lex_state = 2}, + [95] = {.lex_state = 38, .external_lex_state = 2}, + [96] = {.lex_state = 38, .external_lex_state = 2}, + [97] = {.lex_state = 38, .external_lex_state = 2}, + [98] = {.lex_state = 38, .external_lex_state = 2}, + [99] = {.lex_state = 38, .external_lex_state = 2}, + [100] = {.lex_state = 38, .external_lex_state = 2}, + [101] = {.lex_state = 740, .external_lex_state = 2}, + [102] = {.lex_state = 38, .external_lex_state = 2}, + [103] = {.lex_state = 38, .external_lex_state = 2}, + [104] = {.lex_state = 38, .external_lex_state = 2}, + [105] = {.lex_state = 740, .external_lex_state = 2}, + [106] = {.lex_state = 740, .external_lex_state = 2}, + [107] = {.lex_state = 740, .external_lex_state = 2}, + [108] = {.lex_state = 740, .external_lex_state = 2}, + [109] = {.lex_state = 740, .external_lex_state = 2}, + [110] = {.lex_state = 38, .external_lex_state = 2}, + [111] = {.lex_state = 740, .external_lex_state = 2}, + [112] = {.lex_state = 740, .external_lex_state = 2}, + [113] = {.lex_state = 740, .external_lex_state = 2}, + [114] = {.lex_state = 740, .external_lex_state = 2}, + [115] = {.lex_state = 740, .external_lex_state = 2}, + [116] = {.lex_state = 38, .external_lex_state = 2}, + [117] = {.lex_state = 740, .external_lex_state = 2}, + [118] = {.lex_state = 740, .external_lex_state = 2}, + [119] = {.lex_state = 740, .external_lex_state = 2}, + [120] = {.lex_state = 740, .external_lex_state = 2}, + [121] = {.lex_state = 740, .external_lex_state = 2}, + [122] = {.lex_state = 740, .external_lex_state = 2}, + [123] = {.lex_state = 740, .external_lex_state = 2}, + [124] = {.lex_state = 740, .external_lex_state = 2}, + [125] = {.lex_state = 740, .external_lex_state = 2}, + [126] = {.lex_state = 740, .external_lex_state = 2}, + [127] = {.lex_state = 740, .external_lex_state = 2}, + [128] = {.lex_state = 740, .external_lex_state = 2}, + [129] = {.lex_state = 740, .external_lex_state = 2}, + [130] = {.lex_state = 740, .external_lex_state = 2}, + [131] = {.lex_state = 740, .external_lex_state = 2}, + [132] = {.lex_state = 740, .external_lex_state = 2}, + [133] = {.lex_state = 740, .external_lex_state = 2}, + [134] = {.lex_state = 740, .external_lex_state = 2}, + [135] = {.lex_state = 740, .external_lex_state = 2}, + [136] = {.lex_state = 740, .external_lex_state = 2}, + [137] = {.lex_state = 740, .external_lex_state = 2}, + [138] = {.lex_state = 740, .external_lex_state = 2}, + [139] = {.lex_state = 740, .external_lex_state = 2}, + [140] = {.lex_state = 740, .external_lex_state = 2}, + [141] = {.lex_state = 740, .external_lex_state = 2}, + [142] = {.lex_state = 740, .external_lex_state = 2}, + [143] = {.lex_state = 740, .external_lex_state = 2}, + [144] = {.lex_state = 740, .external_lex_state = 2}, + [145] = {.lex_state = 740, .external_lex_state = 2}, + [146] = {.lex_state = 740, .external_lex_state = 2}, + [147] = {.lex_state = 740, .external_lex_state = 2}, + [148] = {.lex_state = 740, .external_lex_state = 2}, + [149] = {.lex_state = 740, .external_lex_state = 2}, + [150] = {.lex_state = 740, .external_lex_state = 2}, + [151] = {.lex_state = 740, .external_lex_state = 2}, + [152] = {.lex_state = 2, .external_lex_state = 2}, + [153] = {.lex_state = 2, .external_lex_state = 2}, + [154] = {.lex_state = 2, .external_lex_state = 2}, + [155] = {.lex_state = 1, .external_lex_state = 2}, + [156] = {.lex_state = 1, .external_lex_state = 2}, + [157] = {.lex_state = 1, .external_lex_state = 2}, + [158] = {.lex_state = 1, .external_lex_state = 2}, + [159] = {.lex_state = 1, .external_lex_state = 2}, + [160] = {.lex_state = 1, .external_lex_state = 2}, + [161] = {.lex_state = 2, .external_lex_state = 2}, + [162] = {.lex_state = 2, .external_lex_state = 2}, + [163] = {.lex_state = 2, .external_lex_state = 2}, + [164] = {.lex_state = 6, .external_lex_state = 2}, + [165] = {.lex_state = 6, .external_lex_state = 2}, + [166] = {.lex_state = 227, .external_lex_state = 2}, + [167] = {.lex_state = 227, .external_lex_state = 2}, + [168] = {.lex_state = 227, .external_lex_state = 2}, + [169] = {.lex_state = 227, .external_lex_state = 2}, + [170] = {.lex_state = 227, .external_lex_state = 2}, + [171] = {.lex_state = 227, .external_lex_state = 2}, + [172] = {.lex_state = 227, .external_lex_state = 2}, + [173] = {.lex_state = 227, .external_lex_state = 2}, + [174] = {.lex_state = 227, .external_lex_state = 2}, + [175] = {.lex_state = 227, .external_lex_state = 2}, + [176] = {.lex_state = 227, .external_lex_state = 2}, + [177] = {.lex_state = 227, .external_lex_state = 2}, + [178] = {.lex_state = 227, .external_lex_state = 2}, + [179] = {.lex_state = 227, .external_lex_state = 2}, + [180] = {.lex_state = 227, .external_lex_state = 2}, + [181] = {.lex_state = 227, .external_lex_state = 2}, + [182] = {.lex_state = 227, .external_lex_state = 2}, + [183] = {.lex_state = 227, .external_lex_state = 2}, + [184] = {.lex_state = 227, .external_lex_state = 2}, + [185] = {.lex_state = 227, .external_lex_state = 2}, + [186] = {.lex_state = 227, .external_lex_state = 2}, + [187] = {.lex_state = 227, .external_lex_state = 2}, + [188] = {.lex_state = 227, .external_lex_state = 2}, + [189] = {.lex_state = 227, .external_lex_state = 2}, + [190] = {.lex_state = 227, .external_lex_state = 2}, + [191] = {.lex_state = 227, .external_lex_state = 2}, + [192] = {.lex_state = 227, .external_lex_state = 2}, + [193] = {.lex_state = 227, .external_lex_state = 2}, + [194] = {.lex_state = 227, .external_lex_state = 2}, + [195] = {.lex_state = 227, .external_lex_state = 2}, + [196] = {.lex_state = 227, .external_lex_state = 2}, + [197] = {.lex_state = 227, .external_lex_state = 2}, + [198] = {.lex_state = 227, .external_lex_state = 2}, + [199] = {.lex_state = 227, .external_lex_state = 2}, + [200] = {.lex_state = 227, .external_lex_state = 2}, + [201] = {.lex_state = 227, .external_lex_state = 2}, + [202] = {.lex_state = 227, .external_lex_state = 2}, + [203] = {.lex_state = 227, .external_lex_state = 2}, + [204] = {.lex_state = 744, .external_lex_state = 2}, + [205] = {.lex_state = 744, .external_lex_state = 2}, + [206] = {.lex_state = 744, .external_lex_state = 2}, + [207] = {.lex_state = 37, .external_lex_state = 2}, + [208] = {.lex_state = 37, .external_lex_state = 2}, + [209] = {.lex_state = 37, .external_lex_state = 2}, + [210] = {.lex_state = 37, .external_lex_state = 2}, + [211] = {.lex_state = 37, .external_lex_state = 2}, + [212] = {.lex_state = 37, .external_lex_state = 2}, + [213] = {.lex_state = 37, .external_lex_state = 2}, + [214] = {.lex_state = 37, .external_lex_state = 2}, + [215] = {.lex_state = 37, .external_lex_state = 2}, + [216] = {.lex_state = 37, .external_lex_state = 2}, + [217] = {.lex_state = 37, .external_lex_state = 2}, + [218] = {.lex_state = 37, .external_lex_state = 2}, + [219] = {.lex_state = 37, .external_lex_state = 2}, + [220] = {.lex_state = 37, .external_lex_state = 2}, + [221] = {.lex_state = 38, .external_lex_state = 2}, + [222] = {.lex_state = 38, .external_lex_state = 2}, + [223] = {.lex_state = 38, .external_lex_state = 2}, + [224] = {.lex_state = 38, .external_lex_state = 2}, + [225] = {.lex_state = 722, .external_lex_state = 2}, + [226] = {.lex_state = 740, .external_lex_state = 2}, + [227] = {.lex_state = 740, .external_lex_state = 2}, + [228] = {.lex_state = 740, .external_lex_state = 2}, + [229] = {.lex_state = 740, .external_lex_state = 2}, + [230] = {.lex_state = 740, .external_lex_state = 2}, + [231] = {.lex_state = 740, .external_lex_state = 2}, + [232] = {.lex_state = 41, .external_lex_state = 2}, + [233] = {.lex_state = 41, .external_lex_state = 2}, + [234] = {.lex_state = 41, .external_lex_state = 2}, + [235] = {.lex_state = 41, .external_lex_state = 2}, + [236] = {.lex_state = 41, .external_lex_state = 2}, + [237] = {.lex_state = 41, .external_lex_state = 2}, + [238] = {.lex_state = 41, .external_lex_state = 2}, + [239] = {.lex_state = 41, .external_lex_state = 2}, + [240] = {.lex_state = 41, .external_lex_state = 2}, + [241] = {.lex_state = 41, .external_lex_state = 2}, + [242] = {.lex_state = 41, .external_lex_state = 2}, + [243] = {.lex_state = 41, .external_lex_state = 2}, + [244] = {.lex_state = 41, .external_lex_state = 2}, + [245] = {.lex_state = 41, .external_lex_state = 2}, + [246] = {.lex_state = 41, .external_lex_state = 2}, + [247] = {.lex_state = 41, .external_lex_state = 2}, + [248] = {.lex_state = 41, .external_lex_state = 2}, + [249] = {.lex_state = 41, .external_lex_state = 2}, + [250] = {.lex_state = 41, .external_lex_state = 2}, + [251] = {.lex_state = 41, .external_lex_state = 2}, + [252] = {.lex_state = 41, .external_lex_state = 2}, + [253] = {.lex_state = 41, .external_lex_state = 2}, + [254] = {.lex_state = 41, .external_lex_state = 2}, + [255] = {.lex_state = 41, .external_lex_state = 2}, + [256] = {.lex_state = 41, .external_lex_state = 2}, + [257] = {.lex_state = 41, .external_lex_state = 2}, + [258] = {.lex_state = 41, .external_lex_state = 2}, + [259] = {.lex_state = 41, .external_lex_state = 2}, + [260] = {.lex_state = 41, .external_lex_state = 2}, + [261] = {.lex_state = 41, .external_lex_state = 2}, + [262] = {.lex_state = 41, .external_lex_state = 2}, + [263] = {.lex_state = 41, .external_lex_state = 2}, + [264] = {.lex_state = 41, .external_lex_state = 2}, + [265] = {.lex_state = 41, .external_lex_state = 2}, + [266] = {.lex_state = 41, .external_lex_state = 2}, + [267] = {.lex_state = 41, .external_lex_state = 2}, + [268] = {.lex_state = 41, .external_lex_state = 2}, + [269] = {.lex_state = 41, .external_lex_state = 2}, + [270] = {.lex_state = 41, .external_lex_state = 2}, + [271] = {.lex_state = 41, .external_lex_state = 2}, + [272] = {.lex_state = 41, .external_lex_state = 2}, + [273] = {.lex_state = 41, .external_lex_state = 2}, + [274] = {.lex_state = 41, .external_lex_state = 2}, + [275] = {.lex_state = 41, .external_lex_state = 2}, + [276] = {.lex_state = 41, .external_lex_state = 2}, + [277] = {.lex_state = 41, .external_lex_state = 2}, + [278] = {.lex_state = 41, .external_lex_state = 2}, + [279] = {.lex_state = 41, .external_lex_state = 2}, + [280] = {.lex_state = 41, .external_lex_state = 2}, + [281] = {.lex_state = 41, .external_lex_state = 2}, + [282] = {.lex_state = 41, .external_lex_state = 2}, + [283] = {.lex_state = 41, .external_lex_state = 2}, + [284] = {.lex_state = 41, .external_lex_state = 2}, + [285] = {.lex_state = 41, .external_lex_state = 2}, + [286] = {.lex_state = 41, .external_lex_state = 2}, + [287] = {.lex_state = 41, .external_lex_state = 2}, + [288] = {.lex_state = 41, .external_lex_state = 2}, + [289] = {.lex_state = 41, .external_lex_state = 2}, + [290] = {.lex_state = 41, .external_lex_state = 2}, + [291] = {.lex_state = 41, .external_lex_state = 2}, + [292] = {.lex_state = 41, .external_lex_state = 2}, + [293] = {.lex_state = 41, .external_lex_state = 2}, + [294] = {.lex_state = 41, .external_lex_state = 2}, + [295] = {.lex_state = 41, .external_lex_state = 2}, + [296] = {.lex_state = 41, .external_lex_state = 2}, + [297] = {.lex_state = 41, .external_lex_state = 2}, + [298] = {.lex_state = 41, .external_lex_state = 2}, + [299] = {.lex_state = 41, .external_lex_state = 2}, + [300] = {.lex_state = 41, .external_lex_state = 2}, + [301] = {.lex_state = 41, .external_lex_state = 2}, + [302] = {.lex_state = 41, .external_lex_state = 2}, + [303] = {.lex_state = 740, .external_lex_state = 2}, + [304] = {.lex_state = 38, .external_lex_state = 2}, + [305] = {.lex_state = 740, .external_lex_state = 2}, + [306] = {.lex_state = 41, .external_lex_state = 2}, + [307] = {.lex_state = 740, .external_lex_state = 2}, + [308] = {.lex_state = 740, .external_lex_state = 2}, + [309] = {.lex_state = 740, .external_lex_state = 2}, + [310] = {.lex_state = 146, .external_lex_state = 2}, + [311] = {.lex_state = 740, .external_lex_state = 2}, + [312] = {.lex_state = 38, .external_lex_state = 2}, + [313] = {.lex_state = 740, .external_lex_state = 2}, + [314] = {.lex_state = 740, .external_lex_state = 2}, + [315] = {.lex_state = 41, .external_lex_state = 2}, + [316] = {.lex_state = 147, .external_lex_state = 2}, + [317] = {.lex_state = 146, .external_lex_state = 2}, + [318] = {.lex_state = 228, .external_lex_state = 2}, + [319] = {.lex_state = 228, .external_lex_state = 2}, + [320] = {.lex_state = 740, .external_lex_state = 2}, + [321] = {.lex_state = 740, .external_lex_state = 2}, + [322] = {.lex_state = 147, .external_lex_state = 2}, + [323] = {.lex_state = 144, .external_lex_state = 2}, + [324] = {.lex_state = 123, .external_lex_state = 2}, + [325] = {.lex_state = 41, .external_lex_state = 2}, + [326] = {.lex_state = 740, .external_lex_state = 2}, + [327] = {.lex_state = 228, .external_lex_state = 2}, + [328] = {.lex_state = 126, .external_lex_state = 2}, + [329] = {.lex_state = 228, .external_lex_state = 2}, + [330] = {.lex_state = 41, .external_lex_state = 2}, + [331] = {.lex_state = 228, .external_lex_state = 2}, + [332] = {.lex_state = 41, .external_lex_state = 2}, + [333] = {.lex_state = 740, .external_lex_state = 2}, + [334] = {.lex_state = 228, .external_lex_state = 2}, + [335] = {.lex_state = 740, .external_lex_state = 2}, + [336] = {.lex_state = 228, .external_lex_state = 2}, + [337] = {.lex_state = 41, .external_lex_state = 2}, + [338] = {.lex_state = 228, .external_lex_state = 2}, + [339] = {.lex_state = 147, .external_lex_state = 2}, + [340] = {.lex_state = 128, .external_lex_state = 2}, + [341] = {.lex_state = 145, .external_lex_state = 2}, + [342] = {.lex_state = 147, .external_lex_state = 2}, + [343] = {.lex_state = 128, .external_lex_state = 2}, + [344] = {.lex_state = 147, .external_lex_state = 2}, + [345] = {.lex_state = 144, .external_lex_state = 2}, + [346] = {.lex_state = 147, .external_lex_state = 2}, + [347] = {.lex_state = 129, .external_lex_state = 2}, + [348] = {.lex_state = 145, .external_lex_state = 2}, + [349] = {.lex_state = 111, .external_lex_state = 2}, + [350] = {.lex_state = 114, .external_lex_state = 2}, + [351] = {.lex_state = 156, .external_lex_state = 2}, + [352] = {.lex_state = 129, .external_lex_state = 2}, + [353] = {.lex_state = 129, .external_lex_state = 2}, + [354] = {.lex_state = 156, .external_lex_state = 2}, + [355] = {.lex_state = 129, .external_lex_state = 2}, + [356] = {.lex_state = 127, .external_lex_state = 2}, + [357] = {.lex_state = 145, .external_lex_state = 2}, + [358] = {.lex_state = 124, .external_lex_state = 2}, + [359] = {.lex_state = 116, .external_lex_state = 2}, + [360] = {.lex_state = 129, .external_lex_state = 2}, + [361] = {.lex_state = 116, .external_lex_state = 2}, + [362] = {.lex_state = 156, .external_lex_state = 2}, + [363] = {.lex_state = 117, .external_lex_state = 2}, + [364] = {.lex_state = 145, .external_lex_state = 2}, + [365] = {.lex_state = 145, .external_lex_state = 2}, + [366] = {.lex_state = 145, .external_lex_state = 2}, + [367] = {.lex_state = 117, .external_lex_state = 2}, + [368] = {.lex_state = 117, .external_lex_state = 2}, + [369] = {.lex_state = 130, .external_lex_state = 2}, + [370] = {.lex_state = 130, .external_lex_state = 2}, + [371] = {.lex_state = 112, .external_lex_state = 2}, + [372] = {.lex_state = 169, .external_lex_state = 2}, + [373] = {.lex_state = 169, .external_lex_state = 2}, + [374] = {.lex_state = 169, .external_lex_state = 2}, + [375] = {.lex_state = 117, .external_lex_state = 2}, + [376] = {.lex_state = 156, .external_lex_state = 2}, + [377] = {.lex_state = 156, .external_lex_state = 2}, + [378] = {.lex_state = 115, .external_lex_state = 2}, + [379] = {.lex_state = 117, .external_lex_state = 2}, + [380] = {.lex_state = 169, .external_lex_state = 2}, + [381] = {.lex_state = 745, .external_lex_state = 2}, + [382] = {.lex_state = 158, .external_lex_state = 2}, + [383] = {.lex_state = 131, .external_lex_state = 2}, + [384] = {.lex_state = 131, .external_lex_state = 2}, + [385] = {.lex_state = 131, .external_lex_state = 2}, + [386] = {.lex_state = 155, .external_lex_state = 2}, + [387] = {.lex_state = 131, .external_lex_state = 2}, + [388] = {.lex_state = 131, .external_lex_state = 2}, + [389] = {.lex_state = 131, .external_lex_state = 2}, + [390] = {.lex_state = 169, .external_lex_state = 2}, + [391] = {.lex_state = 157, .external_lex_state = 2}, + [392] = {.lex_state = 157, .external_lex_state = 2}, + [393] = {.lex_state = 118, .external_lex_state = 2}, + [394] = {.lex_state = 166, .external_lex_state = 2}, + [395] = {.lex_state = 118, .external_lex_state = 2}, + [396] = {.lex_state = 157, .external_lex_state = 2}, + [397] = {.lex_state = 157, .external_lex_state = 2}, + [398] = {.lex_state = 157, .external_lex_state = 2}, + [399] = {.lex_state = 157, .external_lex_state = 2}, + [400] = {.lex_state = 156, .external_lex_state = 2}, + [401] = {.lex_state = 163, .external_lex_state = 2}, + [402] = {.lex_state = 163, .external_lex_state = 2}, + [403] = {.lex_state = 125, .external_lex_state = 2}, + [404] = {.lex_state = 745, .external_lex_state = 2}, + [405] = {.lex_state = 163, .external_lex_state = 2}, + [406] = {.lex_state = 119, .external_lex_state = 2}, + [407] = {.lex_state = 163, .external_lex_state = 2}, + [408] = {.lex_state = 119, .external_lex_state = 2}, + [409] = {.lex_state = 155, .external_lex_state = 2}, + [410] = {.lex_state = 155, .external_lex_state = 2}, + [411] = {.lex_state = 163, .external_lex_state = 2}, + [412] = {.lex_state = 163, .external_lex_state = 2}, + [413] = {.lex_state = 163, .external_lex_state = 2}, + [414] = {.lex_state = 163, .external_lex_state = 2}, + [415] = {.lex_state = 167, .external_lex_state = 2}, + [416] = {.lex_state = 167, .external_lex_state = 2}, + [417] = {.lex_state = 163, .external_lex_state = 2}, + [418] = {.lex_state = 156, .external_lex_state = 2}, + [419] = {.lex_state = 120, .external_lex_state = 2}, + [420] = {.lex_state = 163, .external_lex_state = 2}, + [421] = {.lex_state = 163, .external_lex_state = 2}, + [422] = {.lex_state = 164, .external_lex_state = 2}, + [423] = {.lex_state = 163, .external_lex_state = 2}, + [424] = {.lex_state = 168, .external_lex_state = 2}, + [425] = {.lex_state = 119, .external_lex_state = 2}, + [426] = {.lex_state = 163, .external_lex_state = 2}, + [427] = {.lex_state = 163, .external_lex_state = 2}, + [428] = {.lex_state = 119, .external_lex_state = 2}, + [429] = {.lex_state = 163, .external_lex_state = 2}, + [430] = {.lex_state = 119, .external_lex_state = 2}, + [431] = {.lex_state = 119, .external_lex_state = 2}, + [432] = {.lex_state = 167, .external_lex_state = 2}, + [433] = {.lex_state = 167, .external_lex_state = 2}, + [434] = {.lex_state = 167, .external_lex_state = 2}, + [435] = {.lex_state = 167, .external_lex_state = 2}, + [436] = {.lex_state = 163, .external_lex_state = 2}, + [437] = {.lex_state = 163, .external_lex_state = 2}, + [438] = {.lex_state = 163, .external_lex_state = 2}, + [439] = {.lex_state = 745, .external_lex_state = 2}, + [440] = {.lex_state = 179, .external_lex_state = 2}, + [441] = {.lex_state = 163, .external_lex_state = 2}, + [442] = {.lex_state = 163, .external_lex_state = 2}, + [443] = {.lex_state = 164, .external_lex_state = 2}, + [444] = {.lex_state = 163, .external_lex_state = 2}, + [445] = {.lex_state = 163, .external_lex_state = 2}, + [446] = {.lex_state = 163, .external_lex_state = 2}, + [447] = {.lex_state = 163, .external_lex_state = 2}, + [448] = {.lex_state = 163, .external_lex_state = 2}, + [449] = {.lex_state = 163, .external_lex_state = 2}, + [450] = {.lex_state = 163, .external_lex_state = 2}, + [451] = {.lex_state = 163, .external_lex_state = 2}, + [452] = {.lex_state = 156, .external_lex_state = 2}, + [453] = {.lex_state = 176, .external_lex_state = 2}, + [454] = {.lex_state = 176, .external_lex_state = 2}, + [455] = {.lex_state = 165, .external_lex_state = 2}, + [456] = {.lex_state = 176, .external_lex_state = 2}, + [457] = {.lex_state = 121, .external_lex_state = 2}, + [458] = {.lex_state = 163, .external_lex_state = 2}, + [459] = {.lex_state = 163, .external_lex_state = 2}, + [460] = {.lex_state = 169, .external_lex_state = 2}, + [461] = {.lex_state = 165, .external_lex_state = 2}, + [462] = {.lex_state = 176, .external_lex_state = 2}, + [463] = {.lex_state = 176, .external_lex_state = 2}, + [464] = {.lex_state = 165, .external_lex_state = 2}, + [465] = {.lex_state = 169, .external_lex_state = 2}, + [466] = {.lex_state = 169, .external_lex_state = 2}, + [467] = {.lex_state = 176, .external_lex_state = 2}, + [468] = {.lex_state = 165, .external_lex_state = 2}, + [469] = {.lex_state = 176, .external_lex_state = 2}, + [470] = {.lex_state = 165, .external_lex_state = 2}, + [471] = {.lex_state = 176, .external_lex_state = 2}, + [472] = {.lex_state = 113, .external_lex_state = 2}, + [473] = {.lex_state = 165, .external_lex_state = 2}, + [474] = {.lex_state = 176, .external_lex_state = 2}, + [475] = {.lex_state = 165, .external_lex_state = 2}, + [476] = {.lex_state = 121, .external_lex_state = 2}, + [477] = {.lex_state = 176, .external_lex_state = 2}, + [478] = {.lex_state = 176, .external_lex_state = 2}, + [479] = {.lex_state = 176, .external_lex_state = 2}, + [480] = {.lex_state = 165, .external_lex_state = 2}, + [481] = {.lex_state = 165, .external_lex_state = 2}, + [482] = {.lex_state = 176, .external_lex_state = 2}, + [483] = {.lex_state = 176, .external_lex_state = 2}, + [484] = {.lex_state = 176, .external_lex_state = 2}, + [485] = {.lex_state = 108, .external_lex_state = 2}, + [486] = {.lex_state = 176, .external_lex_state = 2}, + [487] = {.lex_state = 176, .external_lex_state = 2}, + [488] = {.lex_state = 177, .external_lex_state = 2}, + [489] = {.lex_state = 176, .external_lex_state = 2}, + [490] = {.lex_state = 176, .external_lex_state = 2}, + [491] = {.lex_state = 154, .external_lex_state = 2}, + [492] = {.lex_state = 154, .external_lex_state = 2}, + [493] = {.lex_state = 176, .external_lex_state = 2}, + [494] = {.lex_state = 165, .external_lex_state = 2}, + [495] = {.lex_state = 177, .external_lex_state = 2}, + [496] = {.lex_state = 176, .external_lex_state = 2}, + [497] = {.lex_state = 176, .external_lex_state = 2}, + [498] = {.lex_state = 154, .external_lex_state = 2}, + [499] = {.lex_state = 176, .external_lex_state = 2}, + [500] = {.lex_state = 176, .external_lex_state = 2}, + [501] = {.lex_state = 165, .external_lex_state = 2}, + [502] = {.lex_state = 154, .external_lex_state = 2}, + [503] = {.lex_state = 154, .external_lex_state = 2}, + [504] = {.lex_state = 165, .external_lex_state = 2}, + [505] = {.lex_state = 176, .external_lex_state = 2}, + [506] = {.lex_state = 176, .external_lex_state = 2}, + [507] = {.lex_state = 154, .external_lex_state = 2}, + [508] = {.lex_state = 176, .external_lex_state = 2}, + [509] = {.lex_state = 176, .external_lex_state = 2}, + [510] = {.lex_state = 165, .external_lex_state = 2}, + [511] = {.lex_state = 165, .external_lex_state = 2}, + [512] = {.lex_state = 165, .external_lex_state = 2}, + [513] = {.lex_state = 165, .external_lex_state = 2}, + [514] = {.lex_state = 178, .external_lex_state = 2}, + [515] = {.lex_state = 122, .external_lex_state = 2}, + [516] = {.lex_state = 178, .external_lex_state = 2}, + [517] = {.lex_state = 155, .external_lex_state = 2}, + [518] = {.lex_state = 122, .external_lex_state = 2}, + [519] = {.lex_state = 155, .external_lex_state = 2}, + [520] = {.lex_state = 155, .external_lex_state = 2}, + [521] = {.lex_state = 122, .external_lex_state = 2}, + [522] = {.lex_state = 176, .external_lex_state = 2}, + [523] = {.lex_state = 160, .external_lex_state = 2}, + [524] = {.lex_state = 176, .external_lex_state = 2}, + [525] = {.lex_state = 162, .external_lex_state = 2}, + [526] = {.lex_state = 259, .external_lex_state = 2}, + [527] = {.lex_state = 259, .external_lex_state = 2}, + [528] = {.lex_state = 259, .external_lex_state = 2}, + [529] = {.lex_state = 259, .external_lex_state = 2}, + [530] = {.lex_state = 178, .external_lex_state = 2}, + [531] = {.lex_state = 178, .external_lex_state = 2}, + [532] = {.lex_state = 122, .external_lex_state = 2}, + [533] = {.lex_state = 178, .external_lex_state = 2}, + [534] = {.lex_state = 161, .external_lex_state = 2}, + [535] = {.lex_state = 161, .external_lex_state = 2}, + [536] = {.lex_state = 259, .external_lex_state = 2}, + [537] = {.lex_state = 122, .external_lex_state = 2}, + [538] = {.lex_state = 122, .external_lex_state = 2}, + [539] = {.lex_state = 178, .external_lex_state = 2}, + [540] = {.lex_state = 161, .external_lex_state = 2}, + [541] = {.lex_state = 161, .external_lex_state = 2}, + [542] = {.lex_state = 178, .external_lex_state = 2}, + [543] = {.lex_state = 161, .external_lex_state = 2}, + [544] = {.lex_state = 122, .external_lex_state = 2}, + [545] = {.lex_state = 109, .external_lex_state = 2}, + [546] = {.lex_state = 109, .external_lex_state = 2}, + [547] = {.lex_state = 178, .external_lex_state = 2}, + [548] = {.lex_state = 178, .external_lex_state = 2}, + [549] = {.lex_state = 178, .external_lex_state = 2}, + [550] = {.lex_state = 178, .external_lex_state = 2}, + [551] = {.lex_state = 178, .external_lex_state = 2}, + [552] = {.lex_state = 178, .external_lex_state = 2}, + [553] = {.lex_state = 178, .external_lex_state = 2}, + [554] = {.lex_state = 122, .external_lex_state = 2}, + [555] = {.lex_state = 178, .external_lex_state = 2}, + [556] = {.lex_state = 122, .external_lex_state = 2}, + [557] = {.lex_state = 122, .external_lex_state = 2}, + [558] = {.lex_state = 122, .external_lex_state = 2}, + [559] = {.lex_state = 122, .external_lex_state = 2}, + [560] = {.lex_state = 122, .external_lex_state = 2}, + [561] = {.lex_state = 122, .external_lex_state = 2}, + [562] = {.lex_state = 178, .external_lex_state = 2}, + [563] = {.lex_state = 122, .external_lex_state = 2}, + [564] = {.lex_state = 161, .external_lex_state = 2}, + [565] = {.lex_state = 258, .external_lex_state = 2}, + [566] = {.lex_state = 159, .external_lex_state = 2}, + [567] = {.lex_state = 110, .external_lex_state = 2}, + [568] = {.lex_state = 258, .external_lex_state = 2}, + [569] = {.lex_state = 163, .external_lex_state = 2}, + [570] = {.lex_state = 210, .external_lex_state = 2}, + [571] = {.lex_state = 159, .external_lex_state = 2}, + [572] = {.lex_state = 163, .external_lex_state = 2}, + [573] = {.lex_state = 163, .external_lex_state = 2}, + [574] = {.lex_state = 174, .external_lex_state = 2}, + [575] = {.lex_state = 175, .external_lex_state = 2}, + [576] = {.lex_state = 174, .external_lex_state = 2}, + [577] = {.lex_state = 110, .external_lex_state = 2}, + [578] = {.lex_state = 110, .external_lex_state = 2}, + [579] = {.lex_state = 210, .external_lex_state = 2}, + [580] = {.lex_state = 110, .external_lex_state = 2}, + [581] = {.lex_state = 110, .external_lex_state = 2}, + [582] = {.lex_state = 110, .external_lex_state = 2}, + [583] = {.lex_state = 110, .external_lex_state = 2}, + [584] = {.lex_state = 210, .external_lex_state = 2}, + [585] = {.lex_state = 174, .external_lex_state = 2}, + [586] = {.lex_state = 110, .external_lex_state = 2}, + [587] = {.lex_state = 210, .external_lex_state = 2}, + [588] = {.lex_state = 258, .external_lex_state = 2}, + [589] = {.lex_state = 210, .external_lex_state = 2}, + [590] = {.lex_state = 173, .external_lex_state = 2}, + [591] = {.lex_state = 210, .external_lex_state = 2}, + [592] = {.lex_state = 258, .external_lex_state = 2}, + [593] = {.lex_state = 110, .external_lex_state = 2}, + [594] = {.lex_state = 258, .external_lex_state = 2}, + [595] = {.lex_state = 110, .external_lex_state = 2}, + [596] = {.lex_state = 110, .external_lex_state = 2}, + [597] = {.lex_state = 110, .external_lex_state = 2}, + [598] = {.lex_state = 110, .external_lex_state = 2}, + [599] = {.lex_state = 110, .external_lex_state = 2}, + [600] = {.lex_state = 210, .external_lex_state = 2}, + [601] = {.lex_state = 122, .external_lex_state = 2}, + [602] = {.lex_state = 153, .external_lex_state = 2}, + [603] = {.lex_state = 153, .external_lex_state = 2}, + [604] = {.lex_state = 122, .external_lex_state = 2}, + [605] = {.lex_state = 174, .external_lex_state = 2}, + [606] = {.lex_state = 174, .external_lex_state = 2}, + [607] = {.lex_state = 174, .external_lex_state = 2}, + [608] = {.lex_state = 210, .external_lex_state = 2}, + [609] = {.lex_state = 110, .external_lex_state = 2}, + [610] = {.lex_state = 210, .external_lex_state = 2}, + [611] = {.lex_state = 210, .external_lex_state = 2}, + [612] = {.lex_state = 210, .external_lex_state = 2}, + [613] = {.lex_state = 210, .external_lex_state = 2}, + [614] = {.lex_state = 210, .external_lex_state = 2}, + [615] = {.lex_state = 176, .external_lex_state = 2}, + [616] = {.lex_state = 210, .external_lex_state = 2}, + [617] = {.lex_state = 210, .external_lex_state = 2}, + [618] = {.lex_state = 210, .external_lex_state = 2}, + [619] = {.lex_state = 210, .external_lex_state = 2}, + [620] = {.lex_state = 210, .external_lex_state = 2}, + [621] = {.lex_state = 210, .external_lex_state = 2}, + [622] = {.lex_state = 210, .external_lex_state = 2}, + [623] = {.lex_state = 210, .external_lex_state = 2}, + [624] = {.lex_state = 210, .external_lex_state = 2}, + [625] = {.lex_state = 210, .external_lex_state = 2}, + [626] = {.lex_state = 210, .external_lex_state = 2}, + [627] = {.lex_state = 210, .external_lex_state = 2}, + [628] = {.lex_state = 210, .external_lex_state = 2}, + [629] = {.lex_state = 210, .external_lex_state = 2}, + [630] = {.lex_state = 210, .external_lex_state = 2}, + [631] = {.lex_state = 210, .external_lex_state = 2}, + [632] = {.lex_state = 210, .external_lex_state = 2}, + [633] = {.lex_state = 210, .external_lex_state = 2}, + [634] = {.lex_state = 210, .external_lex_state = 2}, + [635] = {.lex_state = 210, .external_lex_state = 2}, + [636] = {.lex_state = 210, .external_lex_state = 2}, + [637] = {.lex_state = 210, .external_lex_state = 2}, + [638] = {.lex_state = 210, .external_lex_state = 2}, + [639] = {.lex_state = 210, .external_lex_state = 2}, + [640] = {.lex_state = 210, .external_lex_state = 2}, + [641] = {.lex_state = 210, .external_lex_state = 2}, + [642] = {.lex_state = 171, .external_lex_state = 2}, + [643] = {.lex_state = 210, .external_lex_state = 2}, + [644] = {.lex_state = 37, .external_lex_state = 2}, + [645] = {.lex_state = 210, .external_lex_state = 2}, + [646] = {.lex_state = 210, .external_lex_state = 2}, + [647] = {.lex_state = 210, .external_lex_state = 2}, + [648] = {.lex_state = 210, .external_lex_state = 2}, + [649] = {.lex_state = 210, .external_lex_state = 2}, + [650] = {.lex_state = 210, .external_lex_state = 2}, + [651] = {.lex_state = 37, .external_lex_state = 2}, + [652] = {.lex_state = 110, .external_lex_state = 2}, + [653] = {.lex_state = 210, .external_lex_state = 2}, + [654] = {.lex_state = 176, .external_lex_state = 2}, + [655] = {.lex_state = 210, .external_lex_state = 2}, + [656] = {.lex_state = 210, .external_lex_state = 2}, + [657] = {.lex_state = 210, .external_lex_state = 2}, + [658] = {.lex_state = 210, .external_lex_state = 2}, + [659] = {.lex_state = 110, .external_lex_state = 2}, + [660] = {.lex_state = 210, .external_lex_state = 2}, + [661] = {.lex_state = 210, .external_lex_state = 2}, + [662] = {.lex_state = 210, .external_lex_state = 2}, + [663] = {.lex_state = 210, .external_lex_state = 2}, + [664] = {.lex_state = 210, .external_lex_state = 2}, + [665] = {.lex_state = 210, .external_lex_state = 2}, + [666] = {.lex_state = 37, .external_lex_state = 2}, + [667] = {.lex_state = 210, .external_lex_state = 2}, + [668] = {.lex_state = 210, .external_lex_state = 2}, + [669] = {.lex_state = 210, .external_lex_state = 2}, + [670] = {.lex_state = 210, .external_lex_state = 2}, + [671] = {.lex_state = 210, .external_lex_state = 2}, + [672] = {.lex_state = 210, .external_lex_state = 2}, + [673] = {.lex_state = 210, .external_lex_state = 2}, + [674] = {.lex_state = 210, .external_lex_state = 2}, + [675] = {.lex_state = 210, .external_lex_state = 2}, + [676] = {.lex_state = 210, .external_lex_state = 2}, + [677] = {.lex_state = 210, .external_lex_state = 2}, + [678] = {.lex_state = 210, .external_lex_state = 2}, + [679] = {.lex_state = 210, .external_lex_state = 2}, + [680] = {.lex_state = 210, .external_lex_state = 2}, + [681] = {.lex_state = 210, .external_lex_state = 2}, + [682] = {.lex_state = 210, .external_lex_state = 2}, + [683] = {.lex_state = 210, .external_lex_state = 2}, + [684] = {.lex_state = 210, .external_lex_state = 2}, + [685] = {.lex_state = 210, .external_lex_state = 2}, + [686] = {.lex_state = 210, .external_lex_state = 2}, + [687] = {.lex_state = 210, .external_lex_state = 2}, + [688] = {.lex_state = 210, .external_lex_state = 2}, + [689] = {.lex_state = 176, .external_lex_state = 2}, + [690] = {.lex_state = 210, .external_lex_state = 2}, + [691] = {.lex_state = 210, .external_lex_state = 2}, + [692] = {.lex_state = 210, .external_lex_state = 2}, + [693] = {.lex_state = 210, .external_lex_state = 2}, + [694] = {.lex_state = 171, .external_lex_state = 2}, + [695] = {.lex_state = 37, .external_lex_state = 2}, + [696] = {.lex_state = 37, .external_lex_state = 2}, + [697] = {.lex_state = 37, .external_lex_state = 2}, + [698] = {.lex_state = 37, .external_lex_state = 2}, + [699] = {.lex_state = 37, .external_lex_state = 2}, + [700] = {.lex_state = 37, .external_lex_state = 2}, + [701] = {.lex_state = 37, .external_lex_state = 2}, + [702] = {.lex_state = 37, .external_lex_state = 2}, + [703] = {.lex_state = 37, .external_lex_state = 2}, + [704] = {.lex_state = 37, .external_lex_state = 2}, + [705] = {.lex_state = 37, .external_lex_state = 2}, + [706] = {.lex_state = 37, .external_lex_state = 2}, + [707] = {.lex_state = 37, .external_lex_state = 2}, + [708] = {.lex_state = 37, .external_lex_state = 2}, + [709] = {.lex_state = 37, .external_lex_state = 2}, + [710] = {.lex_state = 37, .external_lex_state = 2}, + [711] = {.lex_state = 37, .external_lex_state = 2}, + [712] = {.lex_state = 37, .external_lex_state = 2}, + [713] = {.lex_state = 37, .external_lex_state = 2}, + [714] = {.lex_state = 37, .external_lex_state = 2}, + [715] = {.lex_state = 37, .external_lex_state = 2}, + [716] = {.lex_state = 37, .external_lex_state = 2}, + [717] = {.lex_state = 37, .external_lex_state = 2}, + [718] = {.lex_state = 37, .external_lex_state = 2}, + [719] = {.lex_state = 37, .external_lex_state = 2}, + [720] = {.lex_state = 37, .external_lex_state = 2}, + [721] = {.lex_state = 37, .external_lex_state = 2}, + [722] = {.lex_state = 37, .external_lex_state = 2}, + [723] = {.lex_state = 37, .external_lex_state = 2}, + [724] = {.lex_state = 37, .external_lex_state = 2}, + [725] = {.lex_state = 37, .external_lex_state = 2}, + [726] = {.lex_state = 37, .external_lex_state = 2}, + [727] = {.lex_state = 37, .external_lex_state = 2}, + [728] = {.lex_state = 37, .external_lex_state = 2}, + [729] = {.lex_state = 37, .external_lex_state = 2}, + [730] = {.lex_state = 37, .external_lex_state = 2}, + [731] = {.lex_state = 37, .external_lex_state = 2}, + [732] = {.lex_state = 37, .external_lex_state = 2}, + [733] = {.lex_state = 37, .external_lex_state = 2}, + [734] = {.lex_state = 37, .external_lex_state = 2}, + [735] = {.lex_state = 37, .external_lex_state = 2}, + [736] = {.lex_state = 37, .external_lex_state = 2}, + [737] = {.lex_state = 37, .external_lex_state = 2}, + [738] = {.lex_state = 37, .external_lex_state = 2}, + [739] = {.lex_state = 37, .external_lex_state = 2}, + [740] = {.lex_state = 37, .external_lex_state = 2}, + [741] = {.lex_state = 37, .external_lex_state = 2}, + [742] = {.lex_state = 37, .external_lex_state = 2}, + [743] = {.lex_state = 37, .external_lex_state = 2}, + [744] = {.lex_state = 37, .external_lex_state = 2}, + [745] = {.lex_state = 37, .external_lex_state = 2}, + [746] = {.lex_state = 37, .external_lex_state = 2}, + [747] = {.lex_state = 37, .external_lex_state = 2}, + [748] = {.lex_state = 37, .external_lex_state = 2}, + [749] = {.lex_state = 37, .external_lex_state = 2}, + [750] = {.lex_state = 37, .external_lex_state = 2}, + [751] = {.lex_state = 37, .external_lex_state = 2}, + [752] = {.lex_state = 37, .external_lex_state = 2}, + [753] = {.lex_state = 37, .external_lex_state = 2}, + [754] = {.lex_state = 37, .external_lex_state = 2}, + [755] = {.lex_state = 37, .external_lex_state = 2}, + [756] = {.lex_state = 37, .external_lex_state = 2}, + [757] = {.lex_state = 37, .external_lex_state = 2}, + [758] = {.lex_state = 37, .external_lex_state = 2}, + [759] = {.lex_state = 37, .external_lex_state = 2}, + [760] = {.lex_state = 37, .external_lex_state = 2}, + [761] = {.lex_state = 37, .external_lex_state = 2}, + [762] = {.lex_state = 37, .external_lex_state = 2}, + [763] = {.lex_state = 37, .external_lex_state = 2}, + [764] = {.lex_state = 37, .external_lex_state = 2}, + [765] = {.lex_state = 37, .external_lex_state = 2}, + [766] = {.lex_state = 37, .external_lex_state = 2}, + [767] = {.lex_state = 37, .external_lex_state = 2}, + [768] = {.lex_state = 37, .external_lex_state = 2}, + [769] = {.lex_state = 37, .external_lex_state = 2}, + [770] = {.lex_state = 37, .external_lex_state = 2}, + [771] = {.lex_state = 742, .external_lex_state = 2}, + [772] = {.lex_state = 742, .external_lex_state = 2}, + [773] = {.lex_state = 46, .external_lex_state = 2}, + [774] = {.lex_state = 742, .external_lex_state = 2}, + [775] = {.lex_state = 46, .external_lex_state = 2}, + [776] = {.lex_state = 742, .external_lex_state = 2}, + [777] = {.lex_state = 742, .external_lex_state = 2}, + [778] = {.lex_state = 751, .external_lex_state = 2}, + [779] = {.lex_state = 751, .external_lex_state = 2}, + [780] = {.lex_state = 751, .external_lex_state = 2}, + [781] = {.lex_state = 751, .external_lex_state = 2}, + [782] = {.lex_state = 751, .external_lex_state = 2}, + [783] = {.lex_state = 751, .external_lex_state = 2}, + [784] = {.lex_state = 751, .external_lex_state = 2}, + [785] = {.lex_state = 751, .external_lex_state = 2}, + [786] = {.lex_state = 751, .external_lex_state = 2}, + [787] = {.lex_state = 1798}, + [788] = {.lex_state = 751, .external_lex_state = 2}, + [789] = {.lex_state = 1801}, + [790] = {.lex_state = 751, .external_lex_state = 2}, + [791] = {.lex_state = 751, .external_lex_state = 2}, + [792] = {.lex_state = 1824}, + [793] = {.lex_state = 751, .external_lex_state = 2}, + [794] = {.lex_state = 742, .external_lex_state = 2}, + [795] = {.lex_state = 742, .external_lex_state = 2}, + [796] = {.lex_state = 742, .external_lex_state = 2}, + [797] = {.lex_state = 1954}, + [798] = {.lex_state = 1799}, + [799] = {.lex_state = 1799}, + [800] = {.lex_state = 751, .external_lex_state = 2}, + [801] = {.lex_state = 742, .external_lex_state = 2}, + [802] = {.lex_state = 1812}, + [803] = {.lex_state = 1808}, + [804] = {.lex_state = 1802}, + [805] = {.lex_state = 1948}, + [806] = {.lex_state = 751, .external_lex_state = 2}, + [807] = {.lex_state = 1950}, + [808] = {.lex_state = 1814}, + [809] = {.lex_state = 1948}, + [810] = {.lex_state = 1800}, + [811] = {.lex_state = 1950}, + [812] = {.lex_state = 1800}, + [813] = {.lex_state = 1954}, + [814] = {.lex_state = 1800}, + [815] = {.lex_state = 1800}, + [816] = {.lex_state = 1800}, + [817] = {.lex_state = 1814}, + [818] = {.lex_state = 1804}, + [819] = {.lex_state = 1804}, + [820] = {.lex_state = 1816}, + [821] = {.lex_state = 1950}, + [822] = {.lex_state = 1952}, + [823] = {.lex_state = 1816}, + [824] = {.lex_state = 1952}, + [825] = {.lex_state = 1816}, + [826] = {.lex_state = 1952}, + [827] = {.lex_state = 1816}, + [828] = {.lex_state = 1950}, + [829] = {.lex_state = 1806}, + [830] = {.lex_state = 1818}, + [831] = {.lex_state = 1826}, + [832] = {.lex_state = 1806}, + [833] = {.lex_state = 1806}, + [834] = {.lex_state = 1952}, + [835] = {.lex_state = 1816}, + [836] = {.lex_state = 1806}, + [837] = {.lex_state = 1952}, + [838] = {.lex_state = 1806}, + [839] = {.lex_state = 1952}, + [840] = {.lex_state = 1820}, + [841] = {.lex_state = 1952}, + [842] = {.lex_state = 1952}, + [843] = {.lex_state = 1820}, + [844] = {.lex_state = 1952}, + [845] = {.lex_state = 1952}, + [846] = {.lex_state = 46, .external_lex_state = 2}, + [847] = {.lex_state = 1822}, + [848] = {.lex_state = 46, .external_lex_state = 2}, + [849] = {.lex_state = 46, .external_lex_state = 2}, + [850] = {.lex_state = 46, .external_lex_state = 2}, + [851] = {.lex_state = 46, .external_lex_state = 2}, + [852] = {.lex_state = 46, .external_lex_state = 2}, + [853] = {.lex_state = 46, .external_lex_state = 2}, + [854] = {.lex_state = 46, .external_lex_state = 2}, + [855] = {.lex_state = 46, .external_lex_state = 2}, + [856] = {.lex_state = 46, .external_lex_state = 2}, + [857] = {.lex_state = 46, .external_lex_state = 2}, + [858] = {.lex_state = 46, .external_lex_state = 2}, + [859] = {.lex_state = 46, .external_lex_state = 2}, + [860] = {.lex_state = 46, .external_lex_state = 2}, + [861] = {.lex_state = 1822}, + [862] = {.lex_state = 46, .external_lex_state = 2}, + [863] = {.lex_state = 46, .external_lex_state = 2}, + [864] = {.lex_state = 1822}, + [865] = {.lex_state = 46, .external_lex_state = 2}, + [866] = {.lex_state = 46, .external_lex_state = 2}, + [867] = {.lex_state = 46, .external_lex_state = 2}, + [868] = {.lex_state = 46, .external_lex_state = 2}, + [869] = {.lex_state = 1822}, + [870] = {.lex_state = 46, .external_lex_state = 2}, + [871] = {.lex_state = 1822}, + [872] = {.lex_state = 46, .external_lex_state = 2}, + [873] = {.lex_state = 46, .external_lex_state = 2}, + [874] = {.lex_state = 1810}, + [875] = {.lex_state = 1810}, + [876] = {.lex_state = 1828}, + [877] = {.lex_state = 1828}, + [878] = {.lex_state = 1828}, + [879] = {.lex_state = 1956}, + [880] = {.lex_state = 1956}, + [881] = {.lex_state = 1828}, + [882] = {.lex_state = 46, .external_lex_state = 2}, + [883] = {.lex_state = 46, .external_lex_state = 2}, + [884] = {.lex_state = 1956}, + [885] = {.lex_state = 46, .external_lex_state = 2}, + [886] = {.lex_state = 46, .external_lex_state = 2}, + [887] = {.lex_state = 46, .external_lex_state = 2}, + [888] = {.lex_state = 46, .external_lex_state = 2}, + [889] = {.lex_state = 1956}, + [890] = {.lex_state = 46, .external_lex_state = 2}, + [891] = {.lex_state = 46, .external_lex_state = 2}, + [892] = {.lex_state = 46, .external_lex_state = 2}, + [893] = {.lex_state = 46, .external_lex_state = 2}, + [894] = {.lex_state = 46, .external_lex_state = 2}, + [895] = {.lex_state = 46, .external_lex_state = 2}, + [896] = {.lex_state = 46, .external_lex_state = 2}, + [897] = {.lex_state = 46, .external_lex_state = 2}, + [898] = {.lex_state = 46, .external_lex_state = 2}, + [899] = {.lex_state = 46, .external_lex_state = 2}, + [900] = {.lex_state = 46, .external_lex_state = 2}, + [901] = {.lex_state = 46, .external_lex_state = 2}, + [902] = {.lex_state = 46, .external_lex_state = 2}, + [903] = {.lex_state = 46, .external_lex_state = 2}, + [904] = {.lex_state = 1830}, + [905] = {.lex_state = 1830}, + [906] = {.lex_state = 46, .external_lex_state = 2}, + [907] = {.lex_state = 46, .external_lex_state = 2}, + [908] = {.lex_state = 46, .external_lex_state = 2}, + [909] = {.lex_state = 45, .external_lex_state = 2}, + [910] = {.lex_state = 45, .external_lex_state = 2}, + [911] = {.lex_state = 45, .external_lex_state = 2}, + [912] = {.lex_state = 45, .external_lex_state = 2}, + [913] = {.lex_state = 45, .external_lex_state = 2}, + [914] = {.lex_state = 45, .external_lex_state = 2}, + [915] = {.lex_state = 45, .external_lex_state = 2}, + [916] = {.lex_state = 45, .external_lex_state = 2}, + [917] = {.lex_state = 45, .external_lex_state = 2}, + [918] = {.lex_state = 45, .external_lex_state = 2}, + [919] = {.lex_state = 45, .external_lex_state = 2}, + [920] = {.lex_state = 45, .external_lex_state = 2}, + [921] = {.lex_state = 45, .external_lex_state = 2}, + [922] = {.lex_state = 45, .external_lex_state = 2}, + [923] = {.lex_state = 45, .external_lex_state = 2}, + [924] = {.lex_state = 45, .external_lex_state = 2}, + [925] = {.lex_state = 45, .external_lex_state = 2}, + [926] = {.lex_state = 45, .external_lex_state = 2}, + [927] = {.lex_state = 45, .external_lex_state = 2}, + [928] = {.lex_state = 45, .external_lex_state = 2}, + [929] = {.lex_state = 45, .external_lex_state = 2}, + [930] = {.lex_state = 45, .external_lex_state = 2}, + [931] = {.lex_state = 45, .external_lex_state = 2}, + [932] = {.lex_state = 45, .external_lex_state = 2}, + [933] = {.lex_state = 45, .external_lex_state = 2}, + [934] = {.lex_state = 45, .external_lex_state = 2}, + [935] = {.lex_state = 45, .external_lex_state = 2}, + [936] = {.lex_state = 45, .external_lex_state = 2}, + [937] = {.lex_state = 45, .external_lex_state = 2}, + [938] = {.lex_state = 45, .external_lex_state = 2}, + [939] = {.lex_state = 45, .external_lex_state = 2}, + [940] = {.lex_state = 45, .external_lex_state = 2}, + [941] = {.lex_state = 45, .external_lex_state = 2}, + [942] = {.lex_state = 45, .external_lex_state = 2}, + [943] = {.lex_state = 45, .external_lex_state = 2}, + [944] = {.lex_state = 45, .external_lex_state = 2}, + [945] = {.lex_state = 45, .external_lex_state = 2}, + [946] = {.lex_state = 45, .external_lex_state = 2}, + [947] = {.lex_state = 45, .external_lex_state = 2}, + [948] = {.lex_state = 45, .external_lex_state = 2}, + [949] = {.lex_state = 45, .external_lex_state = 2}, + [950] = {.lex_state = 45, .external_lex_state = 2}, + [951] = {.lex_state = 45, .external_lex_state = 2}, + [952] = {.lex_state = 45, .external_lex_state = 2}, + [953] = {.lex_state = 45, .external_lex_state = 2}, + [954] = {.lex_state = 45, .external_lex_state = 2}, + [955] = {.lex_state = 45, .external_lex_state = 2}, + [956] = {.lex_state = 45, .external_lex_state = 2}, + [957] = {.lex_state = 45, .external_lex_state = 2}, + [958] = {.lex_state = 45, .external_lex_state = 2}, + [959] = {.lex_state = 45, .external_lex_state = 2}, + [960] = {.lex_state = 45, .external_lex_state = 2}, + [961] = {.lex_state = 45, .external_lex_state = 2}, + [962] = {.lex_state = 45, .external_lex_state = 2}, + [963] = {.lex_state = 45, .external_lex_state = 2}, + [964] = {.lex_state = 45, .external_lex_state = 2}, + [965] = {.lex_state = 45, .external_lex_state = 2}, + [966] = {.lex_state = 45, .external_lex_state = 2}, + [967] = {.lex_state = 44, .external_lex_state = 2}, + [968] = {.lex_state = 45, .external_lex_state = 2}, + [969] = {.lex_state = 45, .external_lex_state = 2}, + [970] = {.lex_state = 45, .external_lex_state = 2}, + [971] = {.lex_state = 45, .external_lex_state = 2}, + [972] = {.lex_state = 45, .external_lex_state = 2}, + [973] = {.lex_state = 45, .external_lex_state = 2}, + [974] = {.lex_state = 45, .external_lex_state = 2}, + [975] = {.lex_state = 45, .external_lex_state = 2}, + [976] = {.lex_state = 45, .external_lex_state = 2}, + [977] = {.lex_state = 45, .external_lex_state = 2}, + [978] = {.lex_state = 45, .external_lex_state = 2}, + [979] = {.lex_state = 45, .external_lex_state = 2}, + [980] = {.lex_state = 45, .external_lex_state = 2}, + [981] = {.lex_state = 45, .external_lex_state = 2}, + [982] = {.lex_state = 45, .external_lex_state = 2}, + [983] = {.lex_state = 45, .external_lex_state = 2}, + [984] = {.lex_state = 45, .external_lex_state = 2}, + [985] = {.lex_state = 45, .external_lex_state = 2}, + [986] = {.lex_state = 45, .external_lex_state = 2}, + [987] = {.lex_state = 45, .external_lex_state = 2}, + [988] = {.lex_state = 45, .external_lex_state = 2}, + [989] = {.lex_state = 45, .external_lex_state = 2}, + [990] = {.lex_state = 45, .external_lex_state = 2}, + [991] = {.lex_state = 45, .external_lex_state = 2}, + [992] = {.lex_state = 45, .external_lex_state = 2}, + [993] = {.lex_state = 45, .external_lex_state = 2}, + [994] = {.lex_state = 45, .external_lex_state = 2}, + [995] = {.lex_state = 45, .external_lex_state = 2}, + [996] = {.lex_state = 45, .external_lex_state = 2}, + [997] = {.lex_state = 45, .external_lex_state = 2}, + [998] = {.lex_state = 45, .external_lex_state = 2}, + [999] = {.lex_state = 45, .external_lex_state = 2}, + [1000] = {.lex_state = 45, .external_lex_state = 2}, + [1001] = {.lex_state = 45, .external_lex_state = 2}, + [1002] = {.lex_state = 45, .external_lex_state = 2}, + [1003] = {.lex_state = 45, .external_lex_state = 2}, + [1004] = {.lex_state = 45, .external_lex_state = 2}, + [1005] = {.lex_state = 45, .external_lex_state = 2}, + [1006] = {.lex_state = 45, .external_lex_state = 2}, + [1007] = {.lex_state = 45, .external_lex_state = 2}, + [1008] = {.lex_state = 45, .external_lex_state = 2}, + [1009] = {.lex_state = 45, .external_lex_state = 2}, + [1010] = {.lex_state = 45, .external_lex_state = 2}, + [1011] = {.lex_state = 45, .external_lex_state = 2}, + [1012] = {.lex_state = 45, .external_lex_state = 2}, + [1013] = {.lex_state = 45, .external_lex_state = 2}, + [1014] = {.lex_state = 45, .external_lex_state = 2}, + [1015] = {.lex_state = 45, .external_lex_state = 2}, + [1016] = {.lex_state = 45, .external_lex_state = 2}, + [1017] = {.lex_state = 45, .external_lex_state = 2}, + [1018] = {.lex_state = 45, .external_lex_state = 2}, + [1019] = {.lex_state = 45, .external_lex_state = 2}, + [1020] = {.lex_state = 45, .external_lex_state = 2}, + [1021] = {.lex_state = 45, .external_lex_state = 2}, + [1022] = {.lex_state = 45, .external_lex_state = 2}, + [1023] = {.lex_state = 45, .external_lex_state = 2}, + [1024] = {.lex_state = 45, .external_lex_state = 2}, + [1025] = {.lex_state = 45, .external_lex_state = 2}, + [1026] = {.lex_state = 45, .external_lex_state = 2}, + [1027] = {.lex_state = 45, .external_lex_state = 2}, + [1028] = {.lex_state = 45, .external_lex_state = 2}, + [1029] = {.lex_state = 45, .external_lex_state = 2}, + [1030] = {.lex_state = 45, .external_lex_state = 2}, + [1031] = {.lex_state = 45, .external_lex_state = 2}, + [1032] = {.lex_state = 45, .external_lex_state = 2}, + [1033] = {.lex_state = 45, .external_lex_state = 2}, + [1034] = {.lex_state = 45, .external_lex_state = 2}, + [1035] = {.lex_state = 45, .external_lex_state = 2}, + [1036] = {.lex_state = 45, .external_lex_state = 2}, + [1037] = {.lex_state = 45, .external_lex_state = 2}, + [1038] = {.lex_state = 45, .external_lex_state = 2}, + [1039] = {.lex_state = 45, .external_lex_state = 2}, + [1040] = {.lex_state = 45, .external_lex_state = 2}, + [1041] = {.lex_state = 45, .external_lex_state = 2}, + [1042] = {.lex_state = 45, .external_lex_state = 2}, + [1043] = {.lex_state = 45, .external_lex_state = 2}, + [1044] = {.lex_state = 45, .external_lex_state = 2}, + [1045] = {.lex_state = 45, .external_lex_state = 2}, + [1046] = {.lex_state = 45, .external_lex_state = 2}, + [1047] = {.lex_state = 45, .external_lex_state = 2}, + [1048] = {.lex_state = 45, .external_lex_state = 2}, + [1049] = {.lex_state = 45, .external_lex_state = 2}, + [1050] = {.lex_state = 45, .external_lex_state = 2}, + [1051] = {.lex_state = 45, .external_lex_state = 2}, + [1052] = {.lex_state = 45, .external_lex_state = 2}, + [1053] = {.lex_state = 45, .external_lex_state = 2}, + [1054] = {.lex_state = 45, .external_lex_state = 2}, + [1055] = {.lex_state = 45, .external_lex_state = 2}, + [1056] = {.lex_state = 45, .external_lex_state = 2}, + [1057] = {.lex_state = 45, .external_lex_state = 2}, + [1058] = {.lex_state = 45, .external_lex_state = 2}, + [1059] = {.lex_state = 45, .external_lex_state = 2}, + [1060] = {.lex_state = 45, .external_lex_state = 2}, + [1061] = {.lex_state = 45, .external_lex_state = 2}, + [1062] = {.lex_state = 45, .external_lex_state = 2}, + [1063] = {.lex_state = 45, .external_lex_state = 2}, + [1064] = {.lex_state = 45, .external_lex_state = 2}, + [1065] = {.lex_state = 45, .external_lex_state = 2}, + [1066] = {.lex_state = 14, .external_lex_state = 2}, + [1067] = {.lex_state = 14, .external_lex_state = 2}, + [1068] = {.lex_state = 45, .external_lex_state = 2}, + [1069] = {.lex_state = 45, .external_lex_state = 2}, + [1070] = {.lex_state = 45, .external_lex_state = 2}, + [1071] = {.lex_state = 45, .external_lex_state = 2}, + [1072] = {.lex_state = 45, .external_lex_state = 2}, + [1073] = {.lex_state = 45, .external_lex_state = 2}, + [1074] = {.lex_state = 45, .external_lex_state = 2}, + [1075] = {.lex_state = 45, .external_lex_state = 2}, + [1076] = {.lex_state = 45, .external_lex_state = 2}, + [1077] = {.lex_state = 45, .external_lex_state = 2}, + [1078] = {.lex_state = 45, .external_lex_state = 2}, + [1079] = {.lex_state = 45, .external_lex_state = 2}, + [1080] = {.lex_state = 45, .external_lex_state = 2}, + [1081] = {.lex_state = 45, .external_lex_state = 2}, + [1082] = {.lex_state = 45, .external_lex_state = 2}, + [1083] = {.lex_state = 45, .external_lex_state = 2}, + [1084] = {.lex_state = 45, .external_lex_state = 2}, + [1085] = {.lex_state = 45, .external_lex_state = 2}, + [1086] = {.lex_state = 45, .external_lex_state = 2}, + [1087] = {.lex_state = 45, .external_lex_state = 2}, + [1088] = {.lex_state = 45, .external_lex_state = 2}, + [1089] = {.lex_state = 45, .external_lex_state = 2}, + [1090] = {.lex_state = 45, .external_lex_state = 2}, + [1091] = {.lex_state = 45, .external_lex_state = 2}, + [1092] = {.lex_state = 45, .external_lex_state = 2}, + [1093] = {.lex_state = 45, .external_lex_state = 2}, + [1094] = {.lex_state = 45, .external_lex_state = 2}, + [1095] = {.lex_state = 45, .external_lex_state = 2}, + [1096] = {.lex_state = 45, .external_lex_state = 2}, + [1097] = {.lex_state = 45, .external_lex_state = 2}, + [1098] = {.lex_state = 45, .external_lex_state = 2}, + [1099] = {.lex_state = 743, .external_lex_state = 2}, + [1100] = {.lex_state = 45, .external_lex_state = 2}, + [1101] = {.lex_state = 45, .external_lex_state = 2}, + [1102] = {.lex_state = 45, .external_lex_state = 2}, + [1103] = {.lex_state = 45, .external_lex_state = 2}, + [1104] = {.lex_state = 45, .external_lex_state = 2}, + [1105] = {.lex_state = 45, .external_lex_state = 2}, + [1106] = {.lex_state = 45, .external_lex_state = 2}, + [1107] = {.lex_state = 45, .external_lex_state = 2}, + [1108] = {.lex_state = 45, .external_lex_state = 2}, + [1109] = {.lex_state = 45, .external_lex_state = 2}, + [1110] = {.lex_state = 45, .external_lex_state = 2}, + [1111] = {.lex_state = 45, .external_lex_state = 2}, + [1112] = {.lex_state = 45, .external_lex_state = 2}, + [1113] = {.lex_state = 45, .external_lex_state = 2}, + [1114] = {.lex_state = 45, .external_lex_state = 2}, + [1115] = {.lex_state = 45, .external_lex_state = 2}, + [1116] = {.lex_state = 45, .external_lex_state = 2}, + [1117] = {.lex_state = 45, .external_lex_state = 2}, + [1118] = {.lex_state = 45, .external_lex_state = 2}, + [1119] = {.lex_state = 45, .external_lex_state = 2}, + [1120] = {.lex_state = 45, .external_lex_state = 2}, + [1121] = {.lex_state = 45, .external_lex_state = 2}, + [1122] = {.lex_state = 45, .external_lex_state = 2}, + [1123] = {.lex_state = 45, .external_lex_state = 2}, + [1124] = {.lex_state = 45, .external_lex_state = 2}, + [1125] = {.lex_state = 45, .external_lex_state = 2}, + [1126] = {.lex_state = 45, .external_lex_state = 2}, + [1127] = {.lex_state = 45, .external_lex_state = 2}, + [1128] = {.lex_state = 45, .external_lex_state = 2}, + [1129] = {.lex_state = 45, .external_lex_state = 2}, + [1130] = {.lex_state = 45, .external_lex_state = 2}, + [1131] = {.lex_state = 45, .external_lex_state = 2}, + [1132] = {.lex_state = 743, .external_lex_state = 2}, + [1133] = {.lex_state = 45, .external_lex_state = 2}, + [1134] = {.lex_state = 45, .external_lex_state = 2}, + [1135] = {.lex_state = 45, .external_lex_state = 2}, + [1136] = {.lex_state = 45, .external_lex_state = 2}, + [1137] = {.lex_state = 45, .external_lex_state = 2}, + [1138] = {.lex_state = 45, .external_lex_state = 2}, + [1139] = {.lex_state = 45, .external_lex_state = 2}, + [1140] = {.lex_state = 45, .external_lex_state = 2}, + [1141] = {.lex_state = 45, .external_lex_state = 2}, + [1142] = {.lex_state = 45, .external_lex_state = 2}, + [1143] = {.lex_state = 45, .external_lex_state = 2}, + [1144] = {.lex_state = 45, .external_lex_state = 2}, + [1145] = {.lex_state = 45, .external_lex_state = 2}, + [1146] = {.lex_state = 45, .external_lex_state = 2}, + [1147] = {.lex_state = 45, .external_lex_state = 2}, + [1148] = {.lex_state = 45, .external_lex_state = 2}, + [1149] = {.lex_state = 45, .external_lex_state = 2}, + [1150] = {.lex_state = 45, .external_lex_state = 2}, + [1151] = {.lex_state = 45, .external_lex_state = 2}, + [1152] = {.lex_state = 45, .external_lex_state = 2}, + [1153] = {.lex_state = 45, .external_lex_state = 2}, + [1154] = {.lex_state = 45, .external_lex_state = 2}, + [1155] = {.lex_state = 45, .external_lex_state = 2}, + [1156] = {.lex_state = 45, .external_lex_state = 2}, + [1157] = {.lex_state = 45, .external_lex_state = 2}, + [1158] = {.lex_state = 45, .external_lex_state = 2}, + [1159] = {.lex_state = 743, .external_lex_state = 2}, + [1160] = {.lex_state = 45, .external_lex_state = 2}, + [1161] = {.lex_state = 45, .external_lex_state = 2}, + [1162] = {.lex_state = 45, .external_lex_state = 2}, + [1163] = {.lex_state = 45, .external_lex_state = 2}, + [1164] = {.lex_state = 45, .external_lex_state = 2}, + [1165] = {.lex_state = 45, .external_lex_state = 2}, + [1166] = {.lex_state = 45, .external_lex_state = 2}, + [1167] = {.lex_state = 45, .external_lex_state = 2}, + [1168] = {.lex_state = 743, .external_lex_state = 2}, + [1169] = {.lex_state = 40, .external_lex_state = 2}, + [1170] = {.lex_state = 743, .external_lex_state = 2}, + [1171] = {.lex_state = 40, .external_lex_state = 2}, + [1172] = {.lex_state = 1825}, + [1173] = {.lex_state = 47, .external_lex_state = 2}, + [1174] = {.lex_state = 36, .external_lex_state = 2}, + [1175] = {.lex_state = 36, .external_lex_state = 2}, + [1176] = {.lex_state = 1809}, + [1177] = {.lex_state = 40, .external_lex_state = 2}, + [1178] = {.lex_state = 36, .external_lex_state = 2}, + [1179] = {.lex_state = 36, .external_lex_state = 2}, + [1180] = {.lex_state = 228, .external_lex_state = 2}, + [1181] = {.lex_state = 40, .external_lex_state = 2}, + [1182] = {.lex_state = 1955}, + [1183] = {.lex_state = 40, .external_lex_state = 2}, + [1184] = {.lex_state = 41, .external_lex_state = 2}, + [1185] = {.lex_state = 1803}, + [1186] = {.lex_state = 1949}, + [1187] = {.lex_state = 47, .external_lex_state = 2}, + [1188] = {.lex_state = 47, .external_lex_state = 2}, + [1189] = {.lex_state = 228, .external_lex_state = 2}, + [1190] = {.lex_state = 47, .external_lex_state = 2}, + [1191] = {.lex_state = 1813}, + [1192] = {.lex_state = 1949}, + [1193] = {.lex_state = 36, .external_lex_state = 2}, + [1194] = {.lex_state = 36, .external_lex_state = 2}, + [1195] = {.lex_state = 1951}, + [1196] = {.lex_state = 1805}, + [1197] = {.lex_state = 36, .external_lex_state = 2}, + [1198] = {.lex_state = 41, .external_lex_state = 2}, + [1199] = {.lex_state = 36, .external_lex_state = 2}, + [1200] = {.lex_state = 40, .external_lex_state = 2}, + [1201] = {.lex_state = 1951}, + [1202] = {.lex_state = 1955}, + [1203] = {.lex_state = 1815}, + [1204] = {.lex_state = 1805}, + [1205] = {.lex_state = 1815}, + [1206] = {.lex_state = 1951}, + [1207] = {.lex_state = 1807}, + [1208] = {.lex_state = 238, .external_lex_state = 2}, + [1209] = {.lex_state = 1807}, + [1210] = {.lex_state = 1817}, + [1211] = {.lex_state = 1817}, + [1212] = {.lex_state = 1807}, + [1213] = {.lex_state = 1819}, + [1214] = {.lex_state = 1827}, + [1215] = {.lex_state = 1953}, + [1216] = {.lex_state = 1807}, + [1217] = {.lex_state = 1953}, + [1218] = {.lex_state = 1807}, + [1219] = {.lex_state = 238, .external_lex_state = 2}, + [1220] = {.lex_state = 1953}, + [1221] = {.lex_state = 238, .external_lex_state = 2}, + [1222] = {.lex_state = 1817}, + [1223] = {.lex_state = 238, .external_lex_state = 2}, + [1224] = {.lex_state = 238, .external_lex_state = 2}, + [1225] = {.lex_state = 1953}, + [1226] = {.lex_state = 1817}, + [1227] = {.lex_state = 1951}, + [1228] = {.lex_state = 238, .external_lex_state = 2}, + [1229] = {.lex_state = 1817}, + [1230] = {.lex_state = 1953}, + [1231] = {.lex_state = 47, .external_lex_state = 2}, + [1232] = {.lex_state = 1953}, + [1233] = {.lex_state = 47, .external_lex_state = 2}, + [1234] = {.lex_state = 36, .external_lex_state = 2}, + [1235] = {.lex_state = 36, .external_lex_state = 2}, + [1236] = {.lex_state = 36, .external_lex_state = 2}, + [1237] = {.lex_state = 234, .external_lex_state = 2}, + [1238] = {.lex_state = 36, .external_lex_state = 2}, + [1239] = {.lex_state = 1953}, + [1240] = {.lex_state = 36, .external_lex_state = 2}, + [1241] = {.lex_state = 36, .external_lex_state = 2}, + [1242] = {.lex_state = 234, .external_lex_state = 2}, + [1243] = {.lex_state = 36, .external_lex_state = 2}, + [1244] = {.lex_state = 1821}, + [1245] = {.lex_state = 1821}, + [1246] = {.lex_state = 36, .external_lex_state = 2}, + [1247] = {.lex_state = 1953}, + [1248] = {.lex_state = 1953}, + [1249] = {.lex_state = 1953}, + [1250] = {.lex_state = 36, .external_lex_state = 2}, + [1251] = {.lex_state = 44, .external_lex_state = 2}, + [1252] = {.lex_state = 1823}, + [1253] = {.lex_state = 1823}, + [1254] = {.lex_state = 1823}, + [1255] = {.lex_state = 1823}, + [1256] = {.lex_state = 1823}, + [1257] = {.lex_state = 44, .external_lex_state = 2}, + [1258] = {.lex_state = 725, .external_lex_state = 2}, + [1259] = {.lex_state = 725, .external_lex_state = 2}, + [1260] = {.lex_state = 739, .external_lex_state = 2}, + [1261] = {.lex_state = 724, .external_lex_state = 2}, + [1262] = {.lex_state = 726, .external_lex_state = 2}, + [1263] = {.lex_state = 724, .external_lex_state = 2}, + [1264] = {.lex_state = 735, .external_lex_state = 2}, + [1265] = {.lex_state = 763, .external_lex_state = 2}, + [1266] = {.lex_state = 739, .external_lex_state = 2}, + [1267] = {.lex_state = 44, .external_lex_state = 2}, + [1268] = {.lex_state = 44, .external_lex_state = 2}, + [1269] = {.lex_state = 728, .external_lex_state = 2}, + [1270] = {.lex_state = 728, .external_lex_state = 2}, + [1271] = {.lex_state = 44, .external_lex_state = 2}, + [1272] = {.lex_state = 47, .external_lex_state = 2}, + [1273] = {.lex_state = 47, .external_lex_state = 2}, + [1274] = {.lex_state = 44, .external_lex_state = 2}, + [1275] = {.lex_state = 44, .external_lex_state = 2}, + [1276] = {.lex_state = 44, .external_lex_state = 2}, + [1277] = {.lex_state = 44, .external_lex_state = 2}, + [1278] = {.lex_state = 44, .external_lex_state = 2}, + [1279] = {.lex_state = 44, .external_lex_state = 2}, + [1280] = {.lex_state = 767, .external_lex_state = 2}, + [1281] = {.lex_state = 710}, + [1282] = {.lex_state = 44, .external_lex_state = 2}, + [1283] = {.lex_state = 724, .external_lex_state = 2}, + [1284] = {.lex_state = 44, .external_lex_state = 2}, + [1285] = {.lex_state = 44, .external_lex_state = 2}, + [1286] = {.lex_state = 44, .external_lex_state = 2}, + [1287] = {.lex_state = 44, .external_lex_state = 2}, + [1288] = {.lex_state = 44, .external_lex_state = 2}, + [1289] = {.lex_state = 729, .external_lex_state = 2}, + [1290] = {.lex_state = 44, .external_lex_state = 2}, + [1291] = {.lex_state = 44, .external_lex_state = 2}, + [1292] = {.lex_state = 44, .external_lex_state = 2}, + [1293] = {.lex_state = 44, .external_lex_state = 2}, + [1294] = {.lex_state = 44, .external_lex_state = 2}, + [1295] = {.lex_state = 44, .external_lex_state = 2}, + [1296] = {.lex_state = 44, .external_lex_state = 2}, + [1297] = {.lex_state = 44, .external_lex_state = 2}, + [1298] = {.lex_state = 44, .external_lex_state = 2}, + [1299] = {.lex_state = 44, .external_lex_state = 2}, + [1300] = {.lex_state = 44, .external_lex_state = 2}, + [1301] = {.lex_state = 44, .external_lex_state = 2}, + [1302] = {.lex_state = 44, .external_lex_state = 2}, + [1303] = {.lex_state = 44, .external_lex_state = 2}, + [1304] = {.lex_state = 44, .external_lex_state = 2}, + [1305] = {.lex_state = 44, .external_lex_state = 2}, + [1306] = {.lex_state = 10}, + [1307] = {.lex_state = 44, .external_lex_state = 2}, + [1308] = {.lex_state = 44, .external_lex_state = 2}, + [1309] = {.lex_state = 44, .external_lex_state = 2}, + [1310] = {.lex_state = 44, .external_lex_state = 2}, + [1311] = {.lex_state = 44, .external_lex_state = 2}, + [1312] = {.lex_state = 44, .external_lex_state = 2}, + [1313] = {.lex_state = 44, .external_lex_state = 2}, + [1314] = {.lex_state = 44, .external_lex_state = 2}, + [1315] = {.lex_state = 44, .external_lex_state = 2}, + [1316] = {.lex_state = 44, .external_lex_state = 2}, + [1317] = {.lex_state = 44, .external_lex_state = 2}, + [1318] = {.lex_state = 44, .external_lex_state = 2}, + [1319] = {.lex_state = 44, .external_lex_state = 2}, + [1320] = {.lex_state = 44, .external_lex_state = 2}, + [1321] = {.lex_state = 44, .external_lex_state = 2}, + [1322] = {.lex_state = 44, .external_lex_state = 2}, + [1323] = {.lex_state = 44, .external_lex_state = 2}, + [1324] = {.lex_state = 738, .external_lex_state = 2}, + [1325] = {.lex_state = 44, .external_lex_state = 2}, + [1326] = {.lex_state = 44, .external_lex_state = 2}, + [1327] = {.lex_state = 44, .external_lex_state = 2}, + [1328] = {.lex_state = 44, .external_lex_state = 2}, + [1329] = {.lex_state = 44, .external_lex_state = 2}, + [1330] = {.lex_state = 44, .external_lex_state = 2}, + [1331] = {.lex_state = 44, .external_lex_state = 2}, + [1332] = {.lex_state = 738, .external_lex_state = 2}, + [1333] = {.lex_state = 738, .external_lex_state = 2}, + [1334] = {.lex_state = 738, .external_lex_state = 2}, + [1335] = {.lex_state = 44, .external_lex_state = 2}, + [1336] = {.lex_state = 735, .external_lex_state = 2}, + [1337] = {.lex_state = 724, .external_lex_state = 2}, + [1338] = {.lex_state = 44, .external_lex_state = 2}, + [1339] = {.lex_state = 726, .external_lex_state = 2}, + [1340] = {.lex_state = 44, .external_lex_state = 2}, + [1341] = {.lex_state = 1811}, + [1342] = {.lex_state = 1957}, + [1343] = {.lex_state = 1957}, + [1344] = {.lex_state = 710}, + [1345] = {.lex_state = 758, .external_lex_state = 2}, + [1346] = {.lex_state = 764, .external_lex_state = 2}, + [1347] = {.lex_state = 710}, + [1348] = {.lex_state = 758, .external_lex_state = 2}, + [1349] = {.lex_state = 1811}, + [1350] = {.lex_state = 710}, + [1351] = {.lex_state = 764, .external_lex_state = 2}, + [1352] = {.lex_state = 729, .external_lex_state = 2}, + [1353] = {.lex_state = 738, .external_lex_state = 2}, + [1354] = {.lex_state = 736, .external_lex_state = 2}, + [1355] = {.lex_state = 729, .external_lex_state = 2}, + [1356] = {.lex_state = 758, .external_lex_state = 2}, + [1357] = {.lex_state = 47, .external_lex_state = 2}, + [1358] = {.lex_state = 729, .external_lex_state = 2}, + [1359] = {.lex_state = 729, .external_lex_state = 2}, + [1360] = {.lex_state = 728, .external_lex_state = 2}, + [1361] = {.lex_state = 710}, + [1362] = {.lex_state = 738, .external_lex_state = 2}, + [1363] = {.lex_state = 738, .external_lex_state = 2}, + [1364] = {.lex_state = 738, .external_lex_state = 2}, + [1365] = {.lex_state = 10}, + [1366] = {.lex_state = 767, .external_lex_state = 2}, + [1367] = {.lex_state = 763, .external_lex_state = 2}, + [1368] = {.lex_state = 1829}, + [1369] = {.lex_state = 1829}, + [1370] = {.lex_state = 10}, + [1371] = {.lex_state = 727, .external_lex_state = 2}, + [1372] = {.lex_state = 710}, + [1373] = {.lex_state = 728, .external_lex_state = 2}, + [1374] = {.lex_state = 710}, + [1375] = {.lex_state = 729, .external_lex_state = 2}, + [1376] = {.lex_state = 710}, + [1377] = {.lex_state = 710}, + [1378] = {.lex_state = 10}, + [1379] = {.lex_state = 727, .external_lex_state = 2}, + [1380] = {.lex_state = 765, .external_lex_state = 2}, + [1381] = {.lex_state = 765, .external_lex_state = 2}, + [1382] = {.lex_state = 758, .external_lex_state = 2}, + [1383] = {.lex_state = 729, .external_lex_state = 2}, + [1384] = {.lex_state = 730, .external_lex_state = 2}, + [1385] = {.lex_state = 10}, + [1386] = {.lex_state = 764, .external_lex_state = 2}, + [1387] = {.lex_state = 44, .external_lex_state = 2}, + [1388] = {.lex_state = 765, .external_lex_state = 2}, + [1389] = {.lex_state = 764, .external_lex_state = 2}, + [1390] = {.lex_state = 758, .external_lex_state = 2}, + [1391] = {.lex_state = 765, .external_lex_state = 2}, + [1392] = {.lex_state = 10}, + [1393] = {.lex_state = 10}, + [1394] = {.lex_state = 765, .external_lex_state = 2}, + [1395] = {.lex_state = 729, .external_lex_state = 2}, + [1396] = {.lex_state = 758, .external_lex_state = 2}, + [1397] = {.lex_state = 758, .external_lex_state = 2}, + [1398] = {.lex_state = 729, .external_lex_state = 2}, + [1399] = {.lex_state = 758, .external_lex_state = 2}, + [1400] = {.lex_state = 736, .external_lex_state = 2}, + [1401] = {.lex_state = 10}, + [1402] = {.lex_state = 729, .external_lex_state = 2}, + [1403] = {.lex_state = 10}, + [1404] = {.lex_state = 710}, + [1405] = {.lex_state = 710}, + [1406] = {.lex_state = 730, .external_lex_state = 2}, + [1407] = {.lex_state = 1957}, + [1408] = {.lex_state = 710}, + [1409] = {.lex_state = 1957}, + [1410] = {.lex_state = 756, .external_lex_state = 2}, + [1411] = {.lex_state = 731, .external_lex_state = 2}, + [1412] = {.lex_state = 730, .external_lex_state = 2}, + [1413] = {.lex_state = 756, .external_lex_state = 2}, + [1414] = {.lex_state = 756, .external_lex_state = 2}, + [1415] = {.lex_state = 755, .external_lex_state = 2}, + [1416] = {.lex_state = 731, .external_lex_state = 2}, + [1417] = {.lex_state = 756, .external_lex_state = 2}, + [1418] = {.lex_state = 697}, + [1419] = {.lex_state = 699}, + [1420] = {.lex_state = 710}, + [1421] = {.lex_state = 10}, + [1422] = {.lex_state = 710}, + [1423] = {.lex_state = 765, .external_lex_state = 2}, + [1424] = {.lex_state = 731, .external_lex_state = 2}, + [1425] = {.lex_state = 765, .external_lex_state = 2}, + [1426] = {.lex_state = 731, .external_lex_state = 2}, + [1427] = {.lex_state = 757, .external_lex_state = 2}, + [1428] = {.lex_state = 765, .external_lex_state = 2}, + [1429] = {.lex_state = 765, .external_lex_state = 2}, + [1430] = {.lex_state = 756, .external_lex_state = 2}, + [1431] = {.lex_state = 710}, + [1432] = {.lex_state = 10}, + [1433] = {.lex_state = 10}, + [1434] = {.lex_state = 1831}, + [1435] = {.lex_state = 1831}, + [1436] = {.lex_state = 710}, + [1437] = {.lex_state = 710}, + [1438] = {.lex_state = 710}, + [1439] = {.lex_state = 710}, + [1440] = {.lex_state = 731, .external_lex_state = 2}, + [1441] = {.lex_state = 765, .external_lex_state = 2}, + [1442] = {.lex_state = 730, .external_lex_state = 2}, + [1443] = {.lex_state = 710}, + [1444] = {.lex_state = 758, .external_lex_state = 2}, + [1445] = {.lex_state = 710}, + [1446] = {.lex_state = 758, .external_lex_state = 2}, + [1447] = {.lex_state = 756, .external_lex_state = 2}, + [1448] = {.lex_state = 731, .external_lex_state = 2}, + [1449] = {.lex_state = 761, .external_lex_state = 2}, + [1450] = {.lex_state = 758, .external_lex_state = 2}, + [1451] = {.lex_state = 732, .external_lex_state = 2}, + [1452] = {.lex_state = 756, .external_lex_state = 2}, + [1453] = {.lex_state = 756, .external_lex_state = 2}, + [1454] = {.lex_state = 10}, + [1455] = {.lex_state = 710}, + [1456] = {.lex_state = 731, .external_lex_state = 2}, + [1457] = {.lex_state = 761, .external_lex_state = 2}, + [1458] = {.lex_state = 710}, + [1459] = {.lex_state = 761, .external_lex_state = 2}, + [1460] = {.lex_state = 758, .external_lex_state = 2}, + [1461] = {.lex_state = 701}, + [1462] = {.lex_state = 731, .external_lex_state = 2}, + [1463] = {.lex_state = 710}, + [1464] = {.lex_state = 761, .external_lex_state = 2}, + [1465] = {.lex_state = 761, .external_lex_state = 2}, + [1466] = {.lex_state = 761, .external_lex_state = 2}, + [1467] = {.lex_state = 757, .external_lex_state = 2}, + [1468] = {.lex_state = 731, .external_lex_state = 2}, + [1469] = {.lex_state = 761, .external_lex_state = 2}, + [1470] = {.lex_state = 761, .external_lex_state = 2}, + [1471] = {.lex_state = 710}, + [1472] = {.lex_state = 756, .external_lex_state = 2}, + [1473] = {.lex_state = 737, .external_lex_state = 2}, + [1474] = {.lex_state = 761, .external_lex_state = 2}, + [1475] = {.lex_state = 701}, + [1476] = {.lex_state = 761, .external_lex_state = 2}, + [1477] = {.lex_state = 761, .external_lex_state = 2}, + [1478] = {.lex_state = 761, .external_lex_state = 2}, + [1479] = {.lex_state = 731, .external_lex_state = 2}, + [1480] = {.lex_state = 761, .external_lex_state = 2}, + [1481] = {.lex_state = 761, .external_lex_state = 2}, + [1482] = {.lex_state = 10}, + [1483] = {.lex_state = 761, .external_lex_state = 2}, + [1484] = {.lex_state = 761, .external_lex_state = 2}, + [1485] = {.lex_state = 761, .external_lex_state = 2}, + [1486] = {.lex_state = 755, .external_lex_state = 2}, + [1487] = {.lex_state = 756, .external_lex_state = 2}, + [1488] = {.lex_state = 710}, + [1489] = {.lex_state = 761, .external_lex_state = 2}, + [1490] = {.lex_state = 756, .external_lex_state = 2}, + [1491] = {.lex_state = 761, .external_lex_state = 2}, + [1492] = {.lex_state = 761, .external_lex_state = 2}, + [1493] = {.lex_state = 761, .external_lex_state = 2}, + [1494] = {.lex_state = 756, .external_lex_state = 2}, + [1495] = {.lex_state = 753, .external_lex_state = 2}, + [1496] = {.lex_state = 731, .external_lex_state = 2}, + [1497] = {.lex_state = 758, .external_lex_state = 2}, + [1498] = {.lex_state = 731, .external_lex_state = 2}, + [1499] = {.lex_state = 761, .external_lex_state = 2}, + [1500] = {.lex_state = 761, .external_lex_state = 2}, + [1501] = {.lex_state = 753, .external_lex_state = 2}, + [1502] = {.lex_state = 758, .external_lex_state = 2}, + [1503] = {.lex_state = 761, .external_lex_state = 2}, + [1504] = {.lex_state = 761, .external_lex_state = 2}, + [1505] = {.lex_state = 761, .external_lex_state = 2}, + [1506] = {.lex_state = 761, .external_lex_state = 2}, + [1507] = {.lex_state = 710}, + [1508] = {.lex_state = 710}, + [1509] = {.lex_state = 761, .external_lex_state = 2}, + [1510] = {.lex_state = 758, .external_lex_state = 2}, + [1511] = {.lex_state = 761, .external_lex_state = 2}, + [1512] = {.lex_state = 761, .external_lex_state = 2}, + [1513] = {.lex_state = 761, .external_lex_state = 2}, + [1514] = {.lex_state = 753, .external_lex_state = 2}, + [1515] = {.lex_state = 761, .external_lex_state = 2}, + [1516] = {.lex_state = 761, .external_lex_state = 2}, + [1517] = {.lex_state = 761, .external_lex_state = 2}, + [1518] = {.lex_state = 754, .external_lex_state = 2}, + [1519] = {.lex_state = 761, .external_lex_state = 2}, + [1520] = {.lex_state = 761, .external_lex_state = 2}, + [1521] = {.lex_state = 754, .external_lex_state = 2}, + [1522] = {.lex_state = 754, .external_lex_state = 2}, + [1523] = {.lex_state = 754, .external_lex_state = 2}, + [1524] = {.lex_state = 754, .external_lex_state = 2}, + [1525] = {.lex_state = 737, .external_lex_state = 2}, + [1526] = {.lex_state = 761, .external_lex_state = 2}, + [1527] = {.lex_state = 754, .external_lex_state = 2}, + [1528] = {.lex_state = 754, .external_lex_state = 2}, + [1529] = {.lex_state = 754, .external_lex_state = 2}, + [1530] = {.lex_state = 697}, + [1531] = {.lex_state = 753, .external_lex_state = 2}, + [1532] = {.lex_state = 733, .external_lex_state = 2}, + [1533] = {.lex_state = 703}, + [1534] = {.lex_state = 761, .external_lex_state = 2}, + [1535] = {.lex_state = 761, .external_lex_state = 2}, + [1536] = {.lex_state = 754, .external_lex_state = 2}, + [1537] = {.lex_state = 761, .external_lex_state = 2}, + [1538] = {.lex_state = 709}, + [1539] = {.lex_state = 761, .external_lex_state = 2}, + [1540] = {.lex_state = 758, .external_lex_state = 2}, + [1541] = {.lex_state = 754, .external_lex_state = 2}, + [1542] = {.lex_state = 697}, + [1543] = {.lex_state = 754, .external_lex_state = 2}, + [1544] = {.lex_state = 699}, + [1545] = {.lex_state = 754, .external_lex_state = 2}, + [1546] = {.lex_state = 761, .external_lex_state = 2}, + [1547] = {.lex_state = 761, .external_lex_state = 2}, + [1548] = {.lex_state = 761, .external_lex_state = 2}, + [1549] = {.lex_state = 761, .external_lex_state = 2}, + [1550] = {.lex_state = 703}, + [1551] = {.lex_state = 7}, + [1552] = {.lex_state = 732, .external_lex_state = 2}, + [1553] = {.lex_state = 761, .external_lex_state = 2}, + [1554] = {.lex_state = 697}, + [1555] = {.lex_state = 703}, + [1556] = {.lex_state = 7}, + [1557] = {.lex_state = 733, .external_lex_state = 2}, + [1558] = {.lex_state = 7}, + [1559] = {.lex_state = 761, .external_lex_state = 2}, + [1560] = {.lex_state = 710}, + [1561] = {.lex_state = 697}, + [1562] = {.lex_state = 761, .external_lex_state = 2}, + [1563] = {.lex_state = 703}, + [1564] = {.lex_state = 7}, + [1565] = {.lex_state = 710}, + [1566] = {.lex_state = 703}, + [1567] = {.lex_state = 754, .external_lex_state = 2}, + [1568] = {.lex_state = 754, .external_lex_state = 2}, + [1569] = {.lex_state = 709}, + [1570] = {.lex_state = 754, .external_lex_state = 2}, + [1571] = {.lex_state = 733, .external_lex_state = 2}, + [1572] = {.lex_state = 734, .external_lex_state = 2}, + [1573] = {.lex_state = 703}, + [1574] = {.lex_state = 711}, + [1575] = {.lex_state = 709}, + [1576] = {.lex_state = 754, .external_lex_state = 2}, + [1577] = {.lex_state = 754, .external_lex_state = 2}, + [1578] = {.lex_state = 711}, + [1579] = {.lex_state = 754, .external_lex_state = 2}, + [1580] = {.lex_state = 754, .external_lex_state = 2}, + [1581] = {.lex_state = 711}, + [1582] = {.lex_state = 711}, + [1583] = {.lex_state = 754, .external_lex_state = 2}, + [1584] = {.lex_state = 773, .external_lex_state = 2}, + [1585] = {.lex_state = 711}, + [1586] = {.lex_state = 733, .external_lex_state = 2}, + [1587] = {.lex_state = 773, .external_lex_state = 2}, + [1588] = {.lex_state = 754, .external_lex_state = 2}, + [1589] = {.lex_state = 723, .external_lex_state = 2}, + [1590] = {.lex_state = 734, .external_lex_state = 2}, + [1591] = {.lex_state = 773, .external_lex_state = 2}, + [1592] = {.lex_state = 752, .external_lex_state = 2}, + [1593] = {.lex_state = 709}, + [1594] = {.lex_state = 711}, + [1595] = {.lex_state = 773, .external_lex_state = 2}, + [1596] = {.lex_state = 754, .external_lex_state = 2}, + [1597] = {.lex_state = 759, .external_lex_state = 2}, + [1598] = {.lex_state = 754, .external_lex_state = 2}, + [1599] = {.lex_state = 759, .external_lex_state = 2}, + [1600] = {.lex_state = 711}, + [1601] = {.lex_state = 754, .external_lex_state = 2}, + [1602] = {.lex_state = 711}, + [1603] = {.lex_state = 711}, + [1604] = {.lex_state = 701}, + [1605] = {.lex_state = 759, .external_lex_state = 2}, + [1606] = {.lex_state = 711}, + [1607] = {.lex_state = 711}, + [1608] = {.lex_state = 711}, + [1609] = {.lex_state = 759, .external_lex_state = 2}, + [1610] = {.lex_state = 746, .external_lex_state = 2}, + [1611] = {.lex_state = 711}, + [1612] = {.lex_state = 710}, + [1613] = {.lex_state = 711}, + [1614] = {.lex_state = 759, .external_lex_state = 2}, + [1615] = {.lex_state = 773, .external_lex_state = 2}, + [1616] = {.lex_state = 754, .external_lex_state = 2}, + [1617] = {.lex_state = 754, .external_lex_state = 2}, + [1618] = {.lex_state = 734, .external_lex_state = 2}, + [1619] = {.lex_state = 711}, + [1620] = {.lex_state = 754, .external_lex_state = 2}, + [1621] = {.lex_state = 754, .external_lex_state = 2}, + [1622] = {.lex_state = 734, .external_lex_state = 2}, + [1623] = {.lex_state = 734, .external_lex_state = 2}, + [1624] = {.lex_state = 710}, + [1625] = {.lex_state = 754, .external_lex_state = 2}, + [1626] = {.lex_state = 759, .external_lex_state = 2}, + [1627] = {.lex_state = 754, .external_lex_state = 2}, + [1628] = {.lex_state = 762, .external_lex_state = 2}, + [1629] = {.lex_state = 734, .external_lex_state = 2}, + [1630] = {.lex_state = 760, .external_lex_state = 2}, + [1631] = {.lex_state = 734, .external_lex_state = 2}, + [1632] = {.lex_state = 711}, + [1633] = {.lex_state = 761, .external_lex_state = 2}, + [1634] = {.lex_state = 761, .external_lex_state = 2}, + [1635] = {.lex_state = 734, .external_lex_state = 2}, + [1636] = {.lex_state = 711}, + [1637] = {.lex_state = 723, .external_lex_state = 2}, + [1638] = {.lex_state = 723, .external_lex_state = 2}, + [1639] = {.lex_state = 711}, + [1640] = {.lex_state = 734, .external_lex_state = 2}, + [1641] = {.lex_state = 723, .external_lex_state = 2}, + [1642] = {.lex_state = 709}, + [1643] = {.lex_state = 711}, + [1644] = {.lex_state = 723, .external_lex_state = 2}, + [1645] = {.lex_state = 697}, + [1646] = {.lex_state = 754, .external_lex_state = 2}, + [1647] = {.lex_state = 7}, + [1648] = {.lex_state = 754, .external_lex_state = 2}, + [1649] = {.lex_state = 697}, + [1650] = {.lex_state = 7}, + [1651] = {.lex_state = 701}, + [1652] = {.lex_state = 711}, + [1653] = {.lex_state = 703}, + [1654] = {.lex_state = 774, .external_lex_state = 2}, + [1655] = {.lex_state = 759, .external_lex_state = 2}, + [1656] = {.lex_state = 229, .external_lex_state = 2}, + [1657] = {.lex_state = 709}, + [1658] = {.lex_state = 747, .external_lex_state = 2}, + [1659] = {.lex_state = 229, .external_lex_state = 2}, + [1660] = {.lex_state = 229, .external_lex_state = 2}, + [1661] = {.lex_state = 723, .external_lex_state = 2}, + [1662] = {.lex_state = 749, .external_lex_state = 2}, + [1663] = {.lex_state = 734, .external_lex_state = 2}, + [1664] = {.lex_state = 7}, + [1665] = {.lex_state = 229, .external_lex_state = 2}, + [1666] = {.lex_state = 734, .external_lex_state = 2}, + [1667] = {.lex_state = 774, .external_lex_state = 2}, + [1668] = {.lex_state = 7}, + [1669] = {.lex_state = 723, .external_lex_state = 2}, + [1670] = {.lex_state = 774, .external_lex_state = 2}, + [1671] = {.lex_state = 734, .external_lex_state = 2}, + [1672] = {.lex_state = 774, .external_lex_state = 2}, + [1673] = {.lex_state = 772, .external_lex_state = 2}, + [1674] = {.lex_state = 229, .external_lex_state = 2}, + [1675] = {.lex_state = 734, .external_lex_state = 2}, + [1676] = {.lex_state = 697}, + [1677] = {.lex_state = 229, .external_lex_state = 2}, + [1678] = {.lex_state = 229, .external_lex_state = 2}, + [1679] = {.lex_state = 709}, + [1680] = {.lex_state = 747, .external_lex_state = 2}, + [1681] = {.lex_state = 723, .external_lex_state = 2}, + [1682] = {.lex_state = 759, .external_lex_state = 2}, + [1683] = {.lex_state = 711}, + [1684] = {.lex_state = 773, .external_lex_state = 2}, + [1685] = {.lex_state = 773, .external_lex_state = 2}, + [1686] = {.lex_state = 711}, + [1687] = {.lex_state = 750, .external_lex_state = 2}, + [1688] = {.lex_state = 709}, + [1689] = {.lex_state = 723, .external_lex_state = 2}, + [1690] = {.lex_state = 746, .external_lex_state = 2}, + [1691] = {.lex_state = 697}, + [1692] = {.lex_state = 723, .external_lex_state = 2}, + [1693] = {.lex_state = 773, .external_lex_state = 2}, + [1694] = {.lex_state = 709}, + [1695] = {.lex_state = 774, .external_lex_state = 2}, + [1696] = {.lex_state = 697}, + [1697] = {.lex_state = 772, .external_lex_state = 2}, + [1698] = {.lex_state = 709}, + [1699] = {.lex_state = 759, .external_lex_state = 2}, + [1700] = {.lex_state = 723, .external_lex_state = 2}, + [1701] = {.lex_state = 766, .external_lex_state = 2}, + [1702] = {.lex_state = 711}, + [1703] = {.lex_state = 761, .external_lex_state = 2}, + [1704] = {.lex_state = 759, .external_lex_state = 2}, + [1705] = {.lex_state = 759, .external_lex_state = 2}, + [1706] = {.lex_state = 734, .external_lex_state = 2}, + [1707] = {.lex_state = 773, .external_lex_state = 2}, + [1708] = {.lex_state = 773, .external_lex_state = 2}, + [1709] = {.lex_state = 711}, + [1710] = {.lex_state = 734, .external_lex_state = 2}, + [1711] = {.lex_state = 711}, + [1712] = {.lex_state = 762, .external_lex_state = 2}, + [1713] = {.lex_state = 229, .external_lex_state = 2}, + [1714] = {.lex_state = 766, .external_lex_state = 2}, + [1715] = {.lex_state = 761, .external_lex_state = 2}, + [1716] = {.lex_state = 703}, + [1717] = {.lex_state = 711}, + [1718] = {.lex_state = 734, .external_lex_state = 2}, + [1719] = {.lex_state = 703}, + [1720] = {.lex_state = 723, .external_lex_state = 2}, + [1721] = {.lex_state = 760, .external_lex_state = 2}, + [1722] = {.lex_state = 709}, + [1723] = {.lex_state = 749, .external_lex_state = 2}, + [1724] = {.lex_state = 711}, + [1725] = {.lex_state = 703}, + [1726] = {.lex_state = 772, .external_lex_state = 2}, + [1727] = {.lex_state = 723, .external_lex_state = 2}, + [1728] = {.lex_state = 734, .external_lex_state = 2}, + [1729] = {.lex_state = 734, .external_lex_state = 2}, + [1730] = {.lex_state = 709}, + [1731] = {.lex_state = 759, .external_lex_state = 2}, + [1732] = {.lex_state = 761, .external_lex_state = 2}, + [1733] = {.lex_state = 723, .external_lex_state = 2}, + [1734] = {.lex_state = 752, .external_lex_state = 2}, + [1735] = {.lex_state = 42, .external_lex_state = 2}, + [1736] = {.lex_state = 751, .external_lex_state = 2}, + [1737] = {.lex_state = 751, .external_lex_state = 2}, + [1738] = {.lex_state = 751, .external_lex_state = 2}, + [1739] = {.lex_state = 751, .external_lex_state = 2}, + [1740] = {.lex_state = 751, .external_lex_state = 2}, + [1741] = {.lex_state = 751, .external_lex_state = 2}, + [1742] = {.lex_state = 772, .external_lex_state = 2}, + [1743] = {.lex_state = 751, .external_lex_state = 2}, + [1744] = {.lex_state = 751, .external_lex_state = 2}, + [1745] = {.lex_state = 751, .external_lex_state = 2}, + [1746] = {.lex_state = 751, .external_lex_state = 2}, + [1747] = {.lex_state = 751, .external_lex_state = 2}, + [1748] = {.lex_state = 751, .external_lex_state = 2}, + [1749] = {.lex_state = 751, .external_lex_state = 2}, + [1750] = {.lex_state = 751, .external_lex_state = 2}, + [1751] = {.lex_state = 751, .external_lex_state = 2}, + [1752] = {.lex_state = 751, .external_lex_state = 2}, + [1753] = {.lex_state = 751, .external_lex_state = 2}, + [1754] = {.lex_state = 751, .external_lex_state = 2}, + [1755] = {.lex_state = 751, .external_lex_state = 2}, + [1756] = {.lex_state = 751, .external_lex_state = 2}, + [1757] = {.lex_state = 751, .external_lex_state = 2}, + [1758] = {.lex_state = 751, .external_lex_state = 2}, + [1759] = {.lex_state = 751, .external_lex_state = 2}, + [1760] = {.lex_state = 751, .external_lex_state = 2}, + [1761] = {.lex_state = 751, .external_lex_state = 2}, + [1762] = {.lex_state = 751, .external_lex_state = 2}, + [1763] = {.lex_state = 751, .external_lex_state = 2}, + [1764] = {.lex_state = 751, .external_lex_state = 2}, + [1765] = {.lex_state = 751, .external_lex_state = 2}, + [1766] = {.lex_state = 751, .external_lex_state = 2}, + [1767] = {.lex_state = 751, .external_lex_state = 2}, + [1768] = {.lex_state = 751, .external_lex_state = 2}, + [1769] = {.lex_state = 751, .external_lex_state = 2}, + [1770] = {.lex_state = 751, .external_lex_state = 2}, + [1771] = {.lex_state = 751, .external_lex_state = 2}, + [1772] = {.lex_state = 751, .external_lex_state = 2}, + [1773] = {.lex_state = 751, .external_lex_state = 2}, + [1774] = {.lex_state = 761, .external_lex_state = 2}, + [1775] = {.lex_state = 751, .external_lex_state = 2}, + [1776] = {.lex_state = 751, .external_lex_state = 2}, + [1777] = {.lex_state = 751, .external_lex_state = 2}, + [1778] = {.lex_state = 751, .external_lex_state = 2}, + [1779] = {.lex_state = 761, .external_lex_state = 2}, + [1780] = {.lex_state = 761, .external_lex_state = 2}, + [1781] = {.lex_state = 7}, + [1782] = {.lex_state = 7}, + [1783] = {.lex_state = 751, .external_lex_state = 2}, + [1784] = {.lex_state = 749, .external_lex_state = 2}, + [1785] = {.lex_state = 751, .external_lex_state = 2}, + [1786] = {.lex_state = 751, .external_lex_state = 2}, + [1787] = {.lex_state = 751, .external_lex_state = 2}, + [1788] = {.lex_state = 751, .external_lex_state = 2}, + [1789] = {.lex_state = 749, .external_lex_state = 2}, + [1790] = {.lex_state = 772, .external_lex_state = 2}, + [1791] = {.lex_state = 42, .external_lex_state = 2}, + [1792] = {.lex_state = 751, .external_lex_state = 2}, + [1793] = {.lex_state = 751, .external_lex_state = 2}, + [1794] = {.lex_state = 766, .external_lex_state = 2}, + [1795] = {.lex_state = 751, .external_lex_state = 2}, + [1796] = {.lex_state = 697}, + [1797] = {.lex_state = 774, .external_lex_state = 2}, + [1798] = {.lex_state = 774, .external_lex_state = 2}, + [1799] = {.lex_state = 774, .external_lex_state = 2}, + [1800] = {.lex_state = 751, .external_lex_state = 2}, + [1801] = {.lex_state = 751, .external_lex_state = 2}, + [1802] = {.lex_state = 774, .external_lex_state = 2}, + [1803] = {.lex_state = 697}, + [1804] = {.lex_state = 751, .external_lex_state = 2}, + [1805] = {.lex_state = 751, .external_lex_state = 2}, + [1806] = {.lex_state = 42, .external_lex_state = 2}, + [1807] = {.lex_state = 751, .external_lex_state = 2}, + [1808] = {.lex_state = 751, .external_lex_state = 2}, + [1809] = {.lex_state = 751, .external_lex_state = 2}, + [1810] = {.lex_state = 711}, + [1811] = {.lex_state = 711}, + [1812] = {.lex_state = 772, .external_lex_state = 2}, + [1813] = {.lex_state = 747, .external_lex_state = 2}, + [1814] = {.lex_state = 751, .external_lex_state = 2}, + [1815] = {.lex_state = 750, .external_lex_state = 2}, + [1816] = {.lex_state = 709}, + [1817] = {.lex_state = 751, .external_lex_state = 2}, + [1818] = {.lex_state = 711}, + [1819] = {.lex_state = 711}, + [1820] = {.lex_state = 766, .external_lex_state = 2}, + [1821] = {.lex_state = 711}, + [1822] = {.lex_state = 723, .external_lex_state = 2}, + [1823] = {.lex_state = 711}, + [1824] = {.lex_state = 711}, + [1825] = {.lex_state = 747, .external_lex_state = 2}, + [1826] = {.lex_state = 723, .external_lex_state = 2}, + [1827] = {.lex_state = 711}, + [1828] = {.lex_state = 751, .external_lex_state = 2}, + [1829] = {.lex_state = 751, .external_lex_state = 2}, + [1830] = {.lex_state = 751, .external_lex_state = 2}, + [1831] = {.lex_state = 751, .external_lex_state = 2}, + [1832] = {.lex_state = 751, .external_lex_state = 2}, + [1833] = {.lex_state = 751, .external_lex_state = 2}, + [1834] = {.lex_state = 751, .external_lex_state = 2}, + [1835] = {.lex_state = 751, .external_lex_state = 2}, + [1836] = {.lex_state = 751, .external_lex_state = 2}, + [1837] = {.lex_state = 751, .external_lex_state = 2}, + [1838] = {.lex_state = 751, .external_lex_state = 2}, + [1839] = {.lex_state = 751, .external_lex_state = 2}, + [1840] = {.lex_state = 751, .external_lex_state = 2}, + [1841] = {.lex_state = 751, .external_lex_state = 2}, + [1842] = {.lex_state = 751, .external_lex_state = 2}, + [1843] = {.lex_state = 751, .external_lex_state = 2}, + [1844] = {.lex_state = 751, .external_lex_state = 2}, + [1845] = {.lex_state = 751, .external_lex_state = 2}, + [1846] = {.lex_state = 751, .external_lex_state = 2}, + [1847] = {.lex_state = 751, .external_lex_state = 2}, + [1848] = {.lex_state = 751, .external_lex_state = 2}, + [1849] = {.lex_state = 751, .external_lex_state = 2}, + [1850] = {.lex_state = 751, .external_lex_state = 2}, + [1851] = {.lex_state = 774, .external_lex_state = 2}, + [1852] = {.lex_state = 751, .external_lex_state = 2}, + [1853] = {.lex_state = 751, .external_lex_state = 2}, + [1854] = {.lex_state = 751, .external_lex_state = 2}, + [1855] = {.lex_state = 709}, + [1856] = {.lex_state = 45, .external_lex_state = 2}, + [1857] = {.lex_state = 751, .external_lex_state = 2}, + [1858] = {.lex_state = 709}, + [1859] = {.lex_state = 709}, + [1860] = {.lex_state = 709}, + [1861] = {.lex_state = 709}, + [1862] = {.lex_state = 709}, + [1863] = {.lex_state = 709}, + [1864] = {.lex_state = 709}, + [1865] = {.lex_state = 709}, + [1866] = {.lex_state = 709}, + [1867] = {.lex_state = 709}, + [1868] = {.lex_state = 709}, + [1869] = {.lex_state = 709}, + [1870] = {.lex_state = 709}, + [1871] = {.lex_state = 709}, + [1872] = {.lex_state = 709}, + [1873] = {.lex_state = 751, .external_lex_state = 2}, + [1874] = {.lex_state = 751, .external_lex_state = 2}, + [1875] = {.lex_state = 711}, + [1876] = {.lex_state = 751, .external_lex_state = 2}, + [1877] = {.lex_state = 709}, + [1878] = {.lex_state = 709}, + [1879] = {.lex_state = 709}, + [1880] = {.lex_state = 709}, + [1881] = {.lex_state = 751, .external_lex_state = 2}, + [1882] = {.lex_state = 751, .external_lex_state = 2}, + [1883] = {.lex_state = 45, .external_lex_state = 2}, + [1884] = {.lex_state = 751, .external_lex_state = 2}, + [1885] = {.lex_state = 751, .external_lex_state = 2}, + [1886] = {.lex_state = 7}, + [1887] = {.lex_state = 45, .external_lex_state = 2}, + [1888] = {.lex_state = 751, .external_lex_state = 2}, + [1889] = {.lex_state = 751, .external_lex_state = 2}, + [1890] = {.lex_state = 751, .external_lex_state = 2}, + [1891] = {.lex_state = 751, .external_lex_state = 2}, + [1892] = {.lex_state = 751, .external_lex_state = 2}, + [1893] = {.lex_state = 751, .external_lex_state = 2}, + [1894] = {.lex_state = 711}, + [1895] = {.lex_state = 751, .external_lex_state = 2}, + [1896] = {.lex_state = 751, .external_lex_state = 2}, + [1897] = {.lex_state = 751, .external_lex_state = 2}, + [1898] = {.lex_state = 751, .external_lex_state = 2}, + [1899] = {.lex_state = 751, .external_lex_state = 2}, + [1900] = {.lex_state = 751, .external_lex_state = 2}, + [1901] = {.lex_state = 751, .external_lex_state = 2}, + [1902] = {.lex_state = 751, .external_lex_state = 2}, + [1903] = {.lex_state = 751, .external_lex_state = 2}, + [1904] = {.lex_state = 751, .external_lex_state = 2}, + [1905] = {.lex_state = 751, .external_lex_state = 2}, + [1906] = {.lex_state = 751, .external_lex_state = 2}, + [1907] = {.lex_state = 751, .external_lex_state = 2}, + [1908] = {.lex_state = 751, .external_lex_state = 2}, + [1909] = {.lex_state = 751, .external_lex_state = 2}, + [1910] = {.lex_state = 751, .external_lex_state = 2}, + [1911] = {.lex_state = 751, .external_lex_state = 2}, + [1912] = {.lex_state = 751, .external_lex_state = 2}, + [1913] = {.lex_state = 711}, + [1914] = {.lex_state = 711}, + [1915] = {.lex_state = 751, .external_lex_state = 2}, + [1916] = {.lex_state = 7}, + [1917] = {.lex_state = 751, .external_lex_state = 2}, + [1918] = {.lex_state = 751, .external_lex_state = 2}, + [1919] = {.lex_state = 751, .external_lex_state = 2}, + [1920] = {.lex_state = 751, .external_lex_state = 2}, + [1921] = {.lex_state = 751, .external_lex_state = 2}, + [1922] = {.lex_state = 751, .external_lex_state = 2}, + [1923] = {.lex_state = 751, .external_lex_state = 2}, + [1924] = {.lex_state = 751, .external_lex_state = 2}, + [1925] = {.lex_state = 751, .external_lex_state = 2}, + [1926] = {.lex_state = 751, .external_lex_state = 2}, + [1927] = {.lex_state = 751, .external_lex_state = 2}, + [1928] = {.lex_state = 751, .external_lex_state = 2}, + [1929] = {.lex_state = 751, .external_lex_state = 2}, + [1930] = {.lex_state = 751, .external_lex_state = 2}, + [1931] = {.lex_state = 751, .external_lex_state = 2}, + [1932] = {.lex_state = 751, .external_lex_state = 2}, + [1933] = {.lex_state = 751, .external_lex_state = 2}, + [1934] = {.lex_state = 751, .external_lex_state = 2}, + [1935] = {.lex_state = 751, .external_lex_state = 2}, + [1936] = {.lex_state = 751, .external_lex_state = 2}, + [1937] = {.lex_state = 751, .external_lex_state = 2}, + [1938] = {.lex_state = 751, .external_lex_state = 2}, + [1939] = {.lex_state = 751, .external_lex_state = 2}, + [1940] = {.lex_state = 751, .external_lex_state = 2}, + [1941] = {.lex_state = 751, .external_lex_state = 2}, + [1942] = {.lex_state = 751, .external_lex_state = 2}, + [1943] = {.lex_state = 7}, + [1944] = {.lex_state = 751, .external_lex_state = 2}, + [1945] = {.lex_state = 751, .external_lex_state = 2}, + [1946] = {.lex_state = 751, .external_lex_state = 2}, + [1947] = {.lex_state = 751, .external_lex_state = 2}, + [1948] = {.lex_state = 751, .external_lex_state = 2}, + [1949] = {.lex_state = 751, .external_lex_state = 2}, + [1950] = {.lex_state = 751, .external_lex_state = 2}, + [1951] = {.lex_state = 709}, + [1952] = {.lex_state = 709}, + [1953] = {.lex_state = 751, .external_lex_state = 2}, + [1954] = {.lex_state = 709}, + [1955] = {.lex_state = 709}, + [1956] = {.lex_state = 751, .external_lex_state = 2}, + [1957] = {.lex_state = 751, .external_lex_state = 2}, + [1958] = {.lex_state = 751, .external_lex_state = 2}, + [1959] = {.lex_state = 751, .external_lex_state = 2}, + [1960] = {.lex_state = 751, .external_lex_state = 2}, + [1961] = {.lex_state = 751, .external_lex_state = 2}, + [1962] = {.lex_state = 709}, + [1963] = {.lex_state = 751, .external_lex_state = 2}, + [1964] = {.lex_state = 709}, + [1965] = {.lex_state = 751, .external_lex_state = 2}, + [1966] = {.lex_state = 751, .external_lex_state = 2}, + [1967] = {.lex_state = 751, .external_lex_state = 2}, + [1968] = {.lex_state = 751, .external_lex_state = 2}, + [1969] = {.lex_state = 751, .external_lex_state = 2}, + [1970] = {.lex_state = 751, .external_lex_state = 2}, + [1971] = {.lex_state = 751, .external_lex_state = 2}, + [1972] = {.lex_state = 45, .external_lex_state = 2}, + [1973] = {.lex_state = 45, .external_lex_state = 2}, + [1974] = {.lex_state = 45, .external_lex_state = 2}, + [1975] = {.lex_state = 751, .external_lex_state = 2}, + [1976] = {.lex_state = 697}, + [1977] = {.lex_state = 14, .external_lex_state = 2}, + [1978] = {.lex_state = 697}, + [1979] = {.lex_state = 697}, + [1980] = {.lex_state = 697}, + [1981] = {.lex_state = 697}, + [1982] = {.lex_state = 697}, + [1983] = {.lex_state = 709}, + [1984] = {.lex_state = 709}, + [1985] = {.lex_state = 697}, + [1986] = {.lex_state = 697}, + [1987] = {.lex_state = 711}, + [1988] = {.lex_state = 709}, + [1989] = {.lex_state = 711}, + [1990] = {.lex_state = 709}, + [1991] = {.lex_state = 709}, + [1992] = {.lex_state = 709}, + [1993] = {.lex_state = 709}, + [1994] = {.lex_state = 709}, + [1995] = {.lex_state = 697}, + [1996] = {.lex_state = 711}, + [1997] = {.lex_state = 709}, + [1998] = {.lex_state = 709}, + [1999] = {.lex_state = 709}, + [2000] = {.lex_state = 709}, + [2001] = {.lex_state = 709}, + [2002] = {.lex_state = 697}, + [2003] = {.lex_state = 711}, + [2004] = {.lex_state = 709}, + [2005] = {.lex_state = 697}, + [2006] = {.lex_state = 709}, + [2007] = {.lex_state = 709}, + [2008] = {.lex_state = 709}, + [2009] = {.lex_state = 709}, + [2010] = {.lex_state = 697}, + [2011] = {.lex_state = 697}, + [2012] = {.lex_state = 709}, + [2013] = {.lex_state = 711}, + [2014] = {.lex_state = 711}, + [2015] = {.lex_state = 697}, + [2016] = {.lex_state = 7}, + [2017] = {.lex_state = 711}, + [2018] = {.lex_state = 711}, + [2019] = {.lex_state = 711}, + [2020] = {.lex_state = 711}, + [2021] = {.lex_state = 697}, + [2022] = {.lex_state = 7}, + [2023] = {.lex_state = 711}, + [2024] = {.lex_state = 697}, + [2025] = {.lex_state = 697}, + [2026] = {.lex_state = 697}, + [2027] = {.lex_state = 697}, + [2028] = {.lex_state = 697}, + [2029] = {.lex_state = 697}, + [2030] = {.lex_state = 697}, + [2031] = {.lex_state = 697}, + [2032] = {.lex_state = 697}, + [2033] = {.lex_state = 697}, + [2034] = {.lex_state = 711}, + [2035] = {.lex_state = 697}, + [2036] = {.lex_state = 697}, + [2037] = {.lex_state = 697}, + [2038] = {.lex_state = 711}, + [2039] = {.lex_state = 709}, + [2040] = {.lex_state = 697}, + [2041] = {.lex_state = 697}, + [2042] = {.lex_state = 697}, + [2043] = {.lex_state = 697}, + [2044] = {.lex_state = 697}, + [2045] = {.lex_state = 697}, + [2046] = {.lex_state = 14, .external_lex_state = 2}, + [2047] = {.lex_state = 697}, + [2048] = {.lex_state = 697}, + [2049] = {.lex_state = 697}, + [2050] = {.lex_state = 697}, + [2051] = {.lex_state = 697}, + [2052] = {.lex_state = 711}, + [2053] = {.lex_state = 711}, + [2054] = {.lex_state = 711}, + [2055] = {.lex_state = 711}, + [2056] = {.lex_state = 711}, + [2057] = {.lex_state = 711}, + [2058] = {.lex_state = 697}, + [2059] = {.lex_state = 711}, + [2060] = {.lex_state = 697}, + [2061] = {.lex_state = 14, .external_lex_state = 2}, + [2062] = {.lex_state = 14, .external_lex_state = 2}, + [2063] = {.lex_state = 7}, + [2064] = {.lex_state = 711}, + [2065] = {.lex_state = 711}, + [2066] = {.lex_state = 711}, + [2067] = {.lex_state = 711}, + [2068] = {.lex_state = 711}, + [2069] = {.lex_state = 697}, + [2070] = {.lex_state = 697}, + [2071] = {.lex_state = 697}, + [2072] = {.lex_state = 697}, + [2073] = {.lex_state = 697}, + [2074] = {.lex_state = 7}, + [2075] = {.lex_state = 697}, + [2076] = {.lex_state = 697}, + [2077] = {.lex_state = 697}, + [2078] = {.lex_state = 697}, + [2079] = {.lex_state = 697}, + [2080] = {.lex_state = 697}, + [2081] = {.lex_state = 697}, + [2082] = {.lex_state = 697}, + [2083] = {.lex_state = 709}, + [2084] = {.lex_state = 697}, + [2085] = {.lex_state = 711}, + [2086] = {.lex_state = 711}, + [2087] = {.lex_state = 697}, + [2088] = {.lex_state = 697}, + [2089] = {.lex_state = 709}, + [2090] = {.lex_state = 45, .external_lex_state = 2}, + [2091] = {.lex_state = 711}, + [2092] = {.lex_state = 711}, + [2093] = {.lex_state = 709}, + [2094] = {.lex_state = 711}, + [2095] = {.lex_state = 709}, + [2096] = {.lex_state = 709}, + [2097] = {.lex_state = 709}, + [2098] = {.lex_state = 709}, + [2099] = {.lex_state = 709}, + [2100] = {.lex_state = 709}, + [2101] = {.lex_state = 709}, + [2102] = {.lex_state = 709}, + [2103] = {.lex_state = 709}, + [2104] = {.lex_state = 709}, + [2105] = {.lex_state = 709}, + [2106] = {.lex_state = 709}, + [2107] = {.lex_state = 709}, + [2108] = {.lex_state = 709}, + [2109] = {.lex_state = 711}, + [2110] = {.lex_state = 709}, + [2111] = {.lex_state = 697}, + [2112] = {.lex_state = 709}, + [2113] = {.lex_state = 697}, + [2114] = {.lex_state = 711}, + [2115] = {.lex_state = 709}, + [2116] = {.lex_state = 709}, + [2117] = {.lex_state = 709}, + [2118] = {.lex_state = 709}, + [2119] = {.lex_state = 709}, + [2120] = {.lex_state = 709}, + [2121] = {.lex_state = 45, .external_lex_state = 2}, + [2122] = {.lex_state = 697}, + [2123] = {.lex_state = 709}, + [2124] = {.lex_state = 697}, + [2125] = {.lex_state = 707}, + [2126] = {.lex_state = 45, .external_lex_state = 2}, + [2127] = {.lex_state = 697}, + [2128] = {.lex_state = 697}, + [2129] = {.lex_state = 709}, + [2130] = {.lex_state = 45, .external_lex_state = 2}, + [2131] = {.lex_state = 709}, + [2132] = {.lex_state = 709}, + [2133] = {.lex_state = 709}, + [2134] = {.lex_state = 709}, + [2135] = {.lex_state = 45, .external_lex_state = 2}, + [2136] = {.lex_state = 709}, + [2137] = {.lex_state = 709}, + [2138] = {.lex_state = 707}, + [2139] = {.lex_state = 711}, + [2140] = {.lex_state = 45, .external_lex_state = 2}, + [2141] = {.lex_state = 45, .external_lex_state = 2}, + [2142] = {.lex_state = 45, .external_lex_state = 2}, + [2143] = {.lex_state = 709}, + [2144] = {.lex_state = 709}, + [2145] = {.lex_state = 709}, + [2146] = {.lex_state = 45, .external_lex_state = 2}, + [2147] = {.lex_state = 45, .external_lex_state = 2}, + [2148] = {.lex_state = 45, .external_lex_state = 2}, + [2149] = {.lex_state = 45, .external_lex_state = 2}, + [2150] = {.lex_state = 45, .external_lex_state = 2}, + [2151] = {.lex_state = 45, .external_lex_state = 2}, + [2152] = {.lex_state = 45, .external_lex_state = 2}, + [2153] = {.lex_state = 707}, + [2154] = {.lex_state = 707}, + [2155] = {.lex_state = 709}, + [2156] = {.lex_state = 707}, + [2157] = {.lex_state = 45, .external_lex_state = 2}, + [2158] = {.lex_state = 697}, + [2159] = {.lex_state = 697}, + [2160] = {.lex_state = 697}, + [2161] = {.lex_state = 697}, + [2162] = {.lex_state = 697}, + [2163] = {.lex_state = 697}, + [2164] = {.lex_state = 697}, + [2165] = {.lex_state = 697}, + [2166] = {.lex_state = 697}, + [2167] = {.lex_state = 697}, + [2168] = {.lex_state = 697}, + [2169] = {.lex_state = 697}, + [2170] = {.lex_state = 697}, + [2171] = {.lex_state = 697}, + [2172] = {.lex_state = 697}, + [2173] = {.lex_state = 697}, + [2174] = {.lex_state = 697}, + [2175] = {.lex_state = 697}, + [2176] = {.lex_state = 697}, + [2177] = {.lex_state = 697}, + [2178] = {.lex_state = 697}, + [2179] = {.lex_state = 697}, + [2180] = {.lex_state = 697}, + [2181] = {.lex_state = 697}, + [2182] = {.lex_state = 697}, + [2183] = {.lex_state = 697}, + [2184] = {.lex_state = 697}, + [2185] = {.lex_state = 697}, + [2186] = {.lex_state = 697}, + [2187] = {.lex_state = 697}, + [2188] = {.lex_state = 697}, + [2189] = {.lex_state = 697}, + [2190] = {.lex_state = 697}, + [2191] = {.lex_state = 697}, + [2192] = {.lex_state = 697}, + [2193] = {.lex_state = 697}, + [2194] = {.lex_state = 697}, + [2195] = {.lex_state = 42, .external_lex_state = 2}, + [2196] = {.lex_state = 697}, + [2197] = {.lex_state = 711}, + [2198] = {.lex_state = 697}, + [2199] = {.lex_state = 697}, + [2200] = {.lex_state = 697}, + [2201] = {.lex_state = 697}, + [2202] = {.lex_state = 697}, + [2203] = {.lex_state = 697}, + [2204] = {.lex_state = 697}, + [2205] = {.lex_state = 697}, + [2206] = {.lex_state = 697}, + [2207] = {.lex_state = 697}, + [2208] = {.lex_state = 42, .external_lex_state = 2}, + [2209] = {.lex_state = 697}, + [2210] = {.lex_state = 107, .external_lex_state = 2}, + [2211] = {.lex_state = 697}, + [2212] = {.lex_state = 697}, + [2213] = {.lex_state = 697}, + [2214] = {.lex_state = 697}, + [2215] = {.lex_state = 697}, + [2216] = {.lex_state = 697}, + [2217] = {.lex_state = 247, .external_lex_state = 2}, + [2218] = {.lex_state = 697}, + [2219] = {.lex_state = 697}, + [2220] = {.lex_state = 697}, + [2221] = {.lex_state = 770, .external_lex_state = 2}, + [2222] = {.lex_state = 697}, + [2223] = {.lex_state = 697}, + [2224] = {.lex_state = 697}, + [2225] = {.lex_state = 697}, + [2226] = {.lex_state = 697}, + [2227] = {.lex_state = 697}, + [2228] = {.lex_state = 697}, + [2229] = {.lex_state = 697}, + [2230] = {.lex_state = 697}, + [2231] = {.lex_state = 697}, + [2232] = {.lex_state = 697}, + [2233] = {.lex_state = 697}, + [2234] = {.lex_state = 697}, + [2235] = {.lex_state = 697}, + [2236] = {.lex_state = 697}, + [2237] = {.lex_state = 697}, + [2238] = {.lex_state = 697}, + [2239] = {.lex_state = 697}, + [2240] = {.lex_state = 707}, + [2241] = {.lex_state = 707}, + [2242] = {.lex_state = 697}, + [2243] = {.lex_state = 711}, + [2244] = {.lex_state = 707}, + [2245] = {.lex_state = 707}, + [2246] = {.lex_state = 711}, + [2247] = {.lex_state = 697}, + [2248] = {.lex_state = 697}, + [2249] = {.lex_state = 697}, + [2250] = {.lex_state = 697}, + [2251] = {.lex_state = 697}, + [2252] = {.lex_state = 697}, + [2253] = {.lex_state = 697}, + [2254] = {.lex_state = 697}, + [2255] = {.lex_state = 697}, + [2256] = {.lex_state = 697}, + [2257] = {.lex_state = 697}, + [2258] = {.lex_state = 697}, + [2259] = {.lex_state = 697}, + [2260] = {.lex_state = 697}, + [2261] = {.lex_state = 697}, + [2262] = {.lex_state = 697}, + [2263] = {.lex_state = 697}, + [2264] = {.lex_state = 697}, + [2265] = {.lex_state = 697}, + [2266] = {.lex_state = 707}, + [2267] = {.lex_state = 697}, + [2268] = {.lex_state = 697}, + [2269] = {.lex_state = 697}, + [2270] = {.lex_state = 697}, + [2271] = {.lex_state = 705}, + [2272] = {.lex_state = 697}, + [2273] = {.lex_state = 697}, + [2274] = {.lex_state = 697}, + [2275] = {.lex_state = 697}, + [2276] = {.lex_state = 697}, + [2277] = {.lex_state = 697}, + [2278] = {.lex_state = 697}, + [2279] = {.lex_state = 697}, + [2280] = {.lex_state = 697}, + [2281] = {.lex_state = 697}, + [2282] = {.lex_state = 697}, + [2283] = {.lex_state = 697}, + [2284] = {.lex_state = 697}, + [2285] = {.lex_state = 247, .external_lex_state = 2}, + [2286] = {.lex_state = 697}, + [2287] = {.lex_state = 697}, + [2288] = {.lex_state = 697}, + [2289] = {.lex_state = 697}, + [2290] = {.lex_state = 697}, + [2291] = {.lex_state = 697}, + [2292] = {.lex_state = 697}, + [2293] = {.lex_state = 697}, + [2294] = {.lex_state = 697}, + [2295] = {.lex_state = 697}, + [2296] = {.lex_state = 697}, + [2297] = {.lex_state = 770, .external_lex_state = 2}, + [2298] = {.lex_state = 697}, + [2299] = {.lex_state = 697}, + [2300] = {.lex_state = 697}, + [2301] = {.lex_state = 697}, + [2302] = {.lex_state = 770, .external_lex_state = 2}, + [2303] = {.lex_state = 697}, + [2304] = {.lex_state = 697}, + [2305] = {.lex_state = 697}, + [2306] = {.lex_state = 697}, + [2307] = {.lex_state = 42, .external_lex_state = 2}, + [2308] = {.lex_state = 705}, + [2309] = {.lex_state = 697}, + [2310] = {.lex_state = 770, .external_lex_state = 2}, + [2311] = {.lex_state = 697}, + [2312] = {.lex_state = 697}, + [2313] = {.lex_state = 42, .external_lex_state = 2}, + [2314] = {.lex_state = 697}, + [2315] = {.lex_state = 697}, + [2316] = {.lex_state = 105, .external_lex_state = 2}, + [2317] = {.lex_state = 697}, + [2318] = {.lex_state = 697}, + [2319] = {.lex_state = 697}, + [2320] = {.lex_state = 697}, + [2321] = {.lex_state = 697}, + [2322] = {.lex_state = 697}, + [2323] = {.lex_state = 697}, + [2324] = {.lex_state = 697}, + [2325] = {.lex_state = 132, .external_lex_state = 2}, + [2326] = {.lex_state = 697}, + [2327] = {.lex_state = 697}, + [2328] = {.lex_state = 697}, + [2329] = {.lex_state = 697}, + [2330] = {.lex_state = 697}, + [2331] = {.lex_state = 697}, + [2332] = {.lex_state = 697}, + [2333] = {.lex_state = 697}, + [2334] = {.lex_state = 697}, + [2335] = {.lex_state = 697}, + [2336] = {.lex_state = 697}, + [2337] = {.lex_state = 697}, + [2338] = {.lex_state = 697}, + [2339] = {.lex_state = 697}, + [2340] = {.lex_state = 697}, + [2341] = {.lex_state = 697}, + [2342] = {.lex_state = 697}, + [2343] = {.lex_state = 697}, + [2344] = {.lex_state = 697}, + [2345] = {.lex_state = 697}, + [2346] = {.lex_state = 697}, + [2347] = {.lex_state = 697}, + [2348] = {.lex_state = 697}, + [2349] = {.lex_state = 697}, + [2350] = {.lex_state = 697}, + [2351] = {.lex_state = 697}, + [2352] = {.lex_state = 255, .external_lex_state = 2}, + [2353] = {.lex_state = 697}, + [2354] = {.lex_state = 697}, + [2355] = {.lex_state = 697}, + [2356] = {.lex_state = 253, .external_lex_state = 2}, + [2357] = {.lex_state = 697}, + [2358] = {.lex_state = 770, .external_lex_state = 2}, + [2359] = {.lex_state = 106, .external_lex_state = 2}, + [2360] = {.lex_state = 697}, + [2361] = {.lex_state = 697}, + [2362] = {.lex_state = 697}, + [2363] = {.lex_state = 697}, + [2364] = {.lex_state = 697}, + [2365] = {.lex_state = 697}, + [2366] = {.lex_state = 697}, + [2367] = {.lex_state = 697}, + [2368] = {.lex_state = 697}, + [2369] = {.lex_state = 770, .external_lex_state = 2}, + [2370] = {.lex_state = 697}, + [2371] = {.lex_state = 697}, + [2372] = {.lex_state = 697}, + [2373] = {.lex_state = 770, .external_lex_state = 2}, + [2374] = {.lex_state = 697}, + [2375] = {.lex_state = 697}, + [2376] = {.lex_state = 697}, + [2377] = {.lex_state = 697}, + [2378] = {.lex_state = 697}, + [2379] = {.lex_state = 697}, + [2380] = {.lex_state = 697}, + [2381] = {.lex_state = 697}, + [2382] = {.lex_state = 697}, + [2383] = {.lex_state = 697}, + [2384] = {.lex_state = 697}, + [2385] = {.lex_state = 697}, + [2386] = {.lex_state = 697}, + [2387] = {.lex_state = 697}, + [2388] = {.lex_state = 697}, + [2389] = {.lex_state = 697}, + [2390] = {.lex_state = 697}, + [2391] = {.lex_state = 697}, + [2392] = {.lex_state = 697}, + [2393] = {.lex_state = 42, .external_lex_state = 2}, + [2394] = {.lex_state = 697}, + [2395] = {.lex_state = 697}, + [2396] = {.lex_state = 697}, + [2397] = {.lex_state = 697}, + [2398] = {.lex_state = 697}, + [2399] = {.lex_state = 106, .external_lex_state = 2}, + [2400] = {.lex_state = 697}, + [2401] = {.lex_state = 697}, + [2402] = {.lex_state = 697}, + [2403] = {.lex_state = 697}, + [2404] = {.lex_state = 697}, + [2405] = {.lex_state = 697}, + [2406] = {.lex_state = 697}, + [2407] = {.lex_state = 697}, + [2408] = {.lex_state = 697}, + [2409] = {.lex_state = 697}, + [2410] = {.lex_state = 697}, + [2411] = {.lex_state = 697}, + [2412] = {.lex_state = 42, .external_lex_state = 2}, + [2413] = {.lex_state = 697}, + [2414] = {.lex_state = 7}, + [2415] = {.lex_state = 697}, + [2416] = {.lex_state = 42, .external_lex_state = 2}, + [2417] = {.lex_state = 697}, + [2418] = {.lex_state = 151, .external_lex_state = 2}, + [2419] = {.lex_state = 697}, + [2420] = {.lex_state = 697}, + [2421] = {.lex_state = 697}, + [2422] = {.lex_state = 770, .external_lex_state = 2}, + [2423] = {.lex_state = 697}, + [2424] = {.lex_state = 697}, + [2425] = {.lex_state = 697}, + [2426] = {.lex_state = 697}, + [2427] = {.lex_state = 141, .external_lex_state = 2}, + [2428] = {.lex_state = 697}, + [2429] = {.lex_state = 42, .external_lex_state = 2}, + [2430] = {.lex_state = 697}, + [2431] = {.lex_state = 7}, + [2432] = {.lex_state = 697}, + [2433] = {.lex_state = 697}, + [2434] = {.lex_state = 7}, + [2435] = {.lex_state = 42, .external_lex_state = 2}, + [2436] = {.lex_state = 697}, + [2437] = {.lex_state = 42, .external_lex_state = 2}, + [2438] = {.lex_state = 42, .external_lex_state = 2}, + [2439] = {.lex_state = 7}, + [2440] = {.lex_state = 42, .external_lex_state = 2}, + [2441] = {.lex_state = 697}, + [2442] = {.lex_state = 697}, + [2443] = {.lex_state = 697}, + [2444] = {.lex_state = 697}, + [2445] = {.lex_state = 150, .external_lex_state = 2}, + [2446] = {.lex_state = 104, .external_lex_state = 2}, + [2447] = {.lex_state = 697}, + [2448] = {.lex_state = 697}, + [2449] = {.lex_state = 104, .external_lex_state = 2}, + [2450] = {.lex_state = 697}, + [2451] = {.lex_state = 770, .external_lex_state = 2}, + [2452] = {.lex_state = 697}, + [2453] = {.lex_state = 697}, + [2454] = {.lex_state = 134, .external_lex_state = 2}, + [2455] = {.lex_state = 150, .external_lex_state = 2}, + [2456] = {.lex_state = 697}, + [2457] = {.lex_state = 697}, + [2458] = {.lex_state = 697}, + [2459] = {.lex_state = 697}, + [2460] = {.lex_state = 697}, + [2461] = {.lex_state = 149, .external_lex_state = 2}, + [2462] = {.lex_state = 697}, + [2463] = {.lex_state = 697}, + [2464] = {.lex_state = 697}, + [2465] = {.lex_state = 697}, + [2466] = {.lex_state = 697}, + [2467] = {.lex_state = 697}, + [2468] = {.lex_state = 697}, + [2469] = {.lex_state = 697}, + [2470] = {.lex_state = 697}, + [2471] = {.lex_state = 697}, + [2472] = {.lex_state = 769, .external_lex_state = 2}, + [2473] = {.lex_state = 252, .external_lex_state = 2}, + [2474] = {.lex_state = 697}, + [2475] = {.lex_state = 697}, + [2476] = {.lex_state = 697}, + [2477] = {.lex_state = 697}, + [2478] = {.lex_state = 697}, + [2479] = {.lex_state = 697}, + [2480] = {.lex_state = 697}, + [2481] = {.lex_state = 697}, + [2482] = {.lex_state = 697}, + [2483] = {.lex_state = 697}, + [2484] = {.lex_state = 697}, + [2485] = {.lex_state = 697}, + [2486] = {.lex_state = 697}, + [2487] = {.lex_state = 697}, + [2488] = {.lex_state = 697}, + [2489] = {.lex_state = 697}, + [2490] = {.lex_state = 697}, + [2491] = {.lex_state = 697}, + [2492] = {.lex_state = 697}, + [2493] = {.lex_state = 697}, + [2494] = {.lex_state = 697}, + [2495] = {.lex_state = 697}, + [2496] = {.lex_state = 697}, + [2497] = {.lex_state = 150, .external_lex_state = 2}, + [2498] = {.lex_state = 697}, + [2499] = {.lex_state = 697}, + [2500] = {.lex_state = 252, .external_lex_state = 2}, + [2501] = {.lex_state = 697}, + [2502] = {.lex_state = 697}, + [2503] = {.lex_state = 697}, + [2504] = {.lex_state = 697}, + [2505] = {.lex_state = 769, .external_lex_state = 2}, + [2506] = {.lex_state = 697}, + [2507] = {.lex_state = 697}, + [2508] = {.lex_state = 697}, + [2509] = {.lex_state = 134, .external_lex_state = 2}, + [2510] = {.lex_state = 697}, + [2511] = {.lex_state = 769, .external_lex_state = 2}, + [2512] = {.lex_state = 769, .external_lex_state = 2}, + [2513] = {.lex_state = 697}, + [2514] = {.lex_state = 135, .external_lex_state = 2}, + [2515] = {.lex_state = 697}, + [2516] = {.lex_state = 697}, + [2517] = {.lex_state = 697}, + [2518] = {.lex_state = 697}, + [2519] = {.lex_state = 697}, + [2520] = {.lex_state = 769, .external_lex_state = 2}, + [2521] = {.lex_state = 697}, + [2522] = {.lex_state = 697}, + [2523] = {.lex_state = 769, .external_lex_state = 2}, + [2524] = {.lex_state = 697}, + [2525] = {.lex_state = 697}, + [2526] = {.lex_state = 697}, + [2527] = {.lex_state = 770, .external_lex_state = 2}, + [2528] = {.lex_state = 697}, + [2529] = {.lex_state = 697}, + [2530] = {.lex_state = 697}, + [2531] = {.lex_state = 697}, + [2532] = {.lex_state = 697}, + [2533] = {.lex_state = 697}, + [2534] = {.lex_state = 697}, + [2535] = {.lex_state = 150, .external_lex_state = 2}, + [2536] = {.lex_state = 220, .external_lex_state = 2}, + [2537] = {.lex_state = 247, .external_lex_state = 2}, + [2538] = {.lex_state = 211, .external_lex_state = 2}, + [2539] = {.lex_state = 770, .external_lex_state = 2}, + [2540] = {.lex_state = 247, .external_lex_state = 2}, + [2541] = {.lex_state = 254, .external_lex_state = 2}, + [2542] = {.lex_state = 205, .external_lex_state = 2}, + [2543] = {.lex_state = 142, .external_lex_state = 2}, + [2544] = {.lex_state = 769, .external_lex_state = 2}, + [2545] = {.lex_state = 254, .external_lex_state = 2}, + [2546] = {.lex_state = 247, .external_lex_state = 2}, + [2547] = {.lex_state = 769, .external_lex_state = 2}, + [2548] = {.lex_state = 247, .external_lex_state = 2}, + [2549] = {.lex_state = 247, .external_lex_state = 2}, + [2550] = {.lex_state = 42, .external_lex_state = 2}, + [2551] = {.lex_state = 135, .external_lex_state = 2}, + [2552] = {.lex_state = 254, .external_lex_state = 2}, + [2553] = {.lex_state = 247, .external_lex_state = 2}, + [2554] = {.lex_state = 247, .external_lex_state = 2}, + [2555] = {.lex_state = 135, .external_lex_state = 2}, + [2556] = {.lex_state = 42, .external_lex_state = 2}, + [2557] = {.lex_state = 769, .external_lex_state = 2}, + [2558] = {.lex_state = 770, .external_lex_state = 2}, + [2559] = {.lex_state = 133, .external_lex_state = 2}, + [2560] = {.lex_state = 247, .external_lex_state = 2}, + [2561] = {.lex_state = 42, .external_lex_state = 2}, + [2562] = {.lex_state = 769, .external_lex_state = 2}, + [2563] = {.lex_state = 148, .external_lex_state = 2}, + [2564] = {.lex_state = 148, .external_lex_state = 2}, + [2565] = {.lex_state = 770, .external_lex_state = 2}, + [2566] = {.lex_state = 148, .external_lex_state = 2}, + [2567] = {.lex_state = 205, .external_lex_state = 2}, + [2568] = {.lex_state = 769, .external_lex_state = 2}, + [2569] = {.lex_state = 205, .external_lex_state = 2}, + [2570] = {.lex_state = 148, .external_lex_state = 2}, + [2571] = {.lex_state = 42, .external_lex_state = 2}, + [2572] = {.lex_state = 254, .external_lex_state = 2}, + [2573] = {.lex_state = 769, .external_lex_state = 2}, + [2574] = {.lex_state = 254, .external_lex_state = 2}, + [2575] = {.lex_state = 135, .external_lex_state = 2}, + [2576] = {.lex_state = 42, .external_lex_state = 2}, + [2577] = {.lex_state = 135, .external_lex_state = 2}, + [2578] = {.lex_state = 42, .external_lex_state = 2}, + [2579] = {.lex_state = 192, .external_lex_state = 2}, + [2580] = {.lex_state = 42, .external_lex_state = 2}, + [2581] = {.lex_state = 42, .external_lex_state = 2}, + [2582] = {.lex_state = 213, .external_lex_state = 2}, + [2583] = {.lex_state = 213, .external_lex_state = 2}, + [2584] = {.lex_state = 136, .external_lex_state = 2}, + [2585] = {.lex_state = 136, .external_lex_state = 2}, + [2586] = {.lex_state = 205, .external_lex_state = 2}, + [2587] = {.lex_state = 42, .external_lex_state = 2}, + [2588] = {.lex_state = 205, .external_lex_state = 2}, + [2589] = {.lex_state = 42, .external_lex_state = 2}, + [2590] = {.lex_state = 42, .external_lex_state = 2}, + [2591] = {.lex_state = 42, .external_lex_state = 2}, + [2592] = {.lex_state = 42, .external_lex_state = 2}, + [2593] = {.lex_state = 42, .external_lex_state = 2}, + [2594] = {.lex_state = 42, .external_lex_state = 2}, + [2595] = {.lex_state = 42, .external_lex_state = 2}, + [2596] = {.lex_state = 42, .external_lex_state = 2}, + [2597] = {.lex_state = 42, .external_lex_state = 2}, + [2598] = {.lex_state = 42, .external_lex_state = 2}, + [2599] = {.lex_state = 42, .external_lex_state = 2}, + [2600] = {.lex_state = 42, .external_lex_state = 2}, + [2601] = {.lex_state = 772, .external_lex_state = 2}, + [2602] = {.lex_state = 772, .external_lex_state = 2}, + [2603] = {.lex_state = 772, .external_lex_state = 2}, + [2604] = {.lex_state = 42, .external_lex_state = 2}, + [2605] = {.lex_state = 772, .external_lex_state = 2}, + [2606] = {.lex_state = 42, .external_lex_state = 2}, + [2607] = {.lex_state = 42, .external_lex_state = 2}, + [2608] = {.lex_state = 772, .external_lex_state = 2}, + [2609] = {.lex_state = 42, .external_lex_state = 2}, + [2610] = {.lex_state = 42, .external_lex_state = 2}, + [2611] = {.lex_state = 42, .external_lex_state = 2}, + [2612] = {.lex_state = 772, .external_lex_state = 2}, + [2613] = {.lex_state = 772, .external_lex_state = 2}, + [2614] = {.lex_state = 772, .external_lex_state = 2}, + [2615] = {.lex_state = 772, .external_lex_state = 2}, + [2616] = {.lex_state = 770, .external_lex_state = 2}, + [2617] = {.lex_state = 772, .external_lex_state = 2}, + [2618] = {.lex_state = 772, .external_lex_state = 2}, + [2619] = {.lex_state = 770, .external_lex_state = 2}, + [2620] = {.lex_state = 770, .external_lex_state = 2}, + [2621] = {.lex_state = 42, .external_lex_state = 2}, + [2622] = {.lex_state = 772, .external_lex_state = 2}, + [2623] = {.lex_state = 772, .external_lex_state = 2}, + [2624] = {.lex_state = 772, .external_lex_state = 2}, + [2625] = {.lex_state = 42, .external_lex_state = 2}, + [2626] = {.lex_state = 42, .external_lex_state = 2}, + [2627] = {.lex_state = 772, .external_lex_state = 2}, + [2628] = {.lex_state = 772, .external_lex_state = 2}, + [2629] = {.lex_state = 772, .external_lex_state = 2}, + [2630] = {.lex_state = 192, .external_lex_state = 2}, + [2631] = {.lex_state = 42, .external_lex_state = 2}, + [2632] = {.lex_state = 42, .external_lex_state = 2}, + [2633] = {.lex_state = 42, .external_lex_state = 2}, + [2634] = {.lex_state = 42, .external_lex_state = 2}, + [2635] = {.lex_state = 192, .external_lex_state = 2}, + [2636] = {.lex_state = 772, .external_lex_state = 2}, + [2637] = {.lex_state = 42, .external_lex_state = 2}, + [2638] = {.lex_state = 42, .external_lex_state = 2}, + [2639] = {.lex_state = 42, .external_lex_state = 2}, + [2640] = {.lex_state = 42, .external_lex_state = 2}, + [2641] = {.lex_state = 42, .external_lex_state = 2}, + [2642] = {.lex_state = 772, .external_lex_state = 2}, + [2643] = {.lex_state = 772, .external_lex_state = 2}, + [2644] = {.lex_state = 772, .external_lex_state = 2}, + [2645] = {.lex_state = 42, .external_lex_state = 2}, + [2646] = {.lex_state = 42, .external_lex_state = 2}, + [2647] = {.lex_state = 42, .external_lex_state = 2}, + [2648] = {.lex_state = 772, .external_lex_state = 2}, + [2649] = {.lex_state = 246, .external_lex_state = 2}, + [2650] = {.lex_state = 46, .external_lex_state = 2}, + [2651] = {.lex_state = 203, .external_lex_state = 2}, + [2652] = {.lex_state = 203, .external_lex_state = 2}, + [2653] = {.lex_state = 237, .external_lex_state = 2}, + [2654] = {.lex_state = 235, .external_lex_state = 2}, + [2655] = {.lex_state = 751, .external_lex_state = 2}, + [2656] = {.lex_state = 237, .external_lex_state = 2}, + [2657] = {.lex_state = 772, .external_lex_state = 2}, + [2658] = {.lex_state = 237, .external_lex_state = 2}, + [2659] = {.lex_state = 206, .external_lex_state = 2}, + [2660] = {.lex_state = 203, .external_lex_state = 2}, + [2661] = {.lex_state = 203, .external_lex_state = 2}, + [2662] = {.lex_state = 772, .external_lex_state = 2}, + [2663] = {.lex_state = 203, .external_lex_state = 2}, + [2664] = {.lex_state = 237, .external_lex_state = 2}, + [2665] = {.lex_state = 203, .external_lex_state = 2}, + [2666] = {.lex_state = 772, .external_lex_state = 2}, + [2667] = {.lex_state = 772, .external_lex_state = 2}, + [2668] = {.lex_state = 772, .external_lex_state = 2}, + [2669] = {.lex_state = 772, .external_lex_state = 2}, + [2670] = {.lex_state = 772, .external_lex_state = 2}, + [2671] = {.lex_state = 751, .external_lex_state = 2}, + [2672] = {.lex_state = 772, .external_lex_state = 2}, + [2673] = {.lex_state = 772, .external_lex_state = 2}, + [2674] = {.lex_state = 772, .external_lex_state = 2}, + [2675] = {.lex_state = 246, .external_lex_state = 2}, + [2676] = {.lex_state = 772, .external_lex_state = 2}, + [2677] = {.lex_state = 214, .external_lex_state = 2}, + [2678] = {.lex_state = 246, .external_lex_state = 2}, + [2679] = {.lex_state = 202, .external_lex_state = 2}, + [2680] = {.lex_state = 137, .external_lex_state = 2}, + [2681] = {.lex_state = 772, .external_lex_state = 2}, + [2682] = {.lex_state = 772, .external_lex_state = 2}, + [2683] = {.lex_state = 772, .external_lex_state = 2}, + [2684] = {.lex_state = 772, .external_lex_state = 2}, + [2685] = {.lex_state = 246, .external_lex_state = 2}, + [2686] = {.lex_state = 772, .external_lex_state = 2}, + [2687] = {.lex_state = 772, .external_lex_state = 2}, + [2688] = {.lex_state = 204, .external_lex_state = 2}, + [2689] = {.lex_state = 772, .external_lex_state = 2}, + [2690] = {.lex_state = 214, .external_lex_state = 2}, + [2691] = {.lex_state = 772, .external_lex_state = 2}, + [2692] = {.lex_state = 214, .external_lex_state = 2}, + [2693] = {.lex_state = 772, .external_lex_state = 2}, + [2694] = {.lex_state = 237, .external_lex_state = 2}, + [2695] = {.lex_state = 235, .external_lex_state = 2}, + [2696] = {.lex_state = 246, .external_lex_state = 2}, + [2697] = {.lex_state = 246, .external_lex_state = 2}, + [2698] = {.lex_state = 137, .external_lex_state = 2}, + [2699] = {.lex_state = 246, .external_lex_state = 2}, + [2700] = {.lex_state = 246, .external_lex_state = 2}, + [2701] = {.lex_state = 246, .external_lex_state = 2}, + [2702] = {.lex_state = 214, .external_lex_state = 2}, + [2703] = {.lex_state = 221, .external_lex_state = 2}, + [2704] = {.lex_state = 137, .external_lex_state = 2}, + [2705] = {.lex_state = 246, .external_lex_state = 2}, + [2706] = {.lex_state = 246, .external_lex_state = 2}, + [2707] = {.lex_state = 246, .external_lex_state = 2}, + [2708] = {.lex_state = 246, .external_lex_state = 2}, + [2709] = {.lex_state = 246, .external_lex_state = 2}, + [2710] = {.lex_state = 772, .external_lex_state = 2}, + [2711] = {.lex_state = 192, .external_lex_state = 2}, + [2712] = {.lex_state = 246, .external_lex_state = 2}, + [2713] = {.lex_state = 246, .external_lex_state = 2}, + [2714] = {.lex_state = 246, .external_lex_state = 2}, + [2715] = {.lex_state = 246, .external_lex_state = 2}, + [2716] = {.lex_state = 246, .external_lex_state = 2}, + [2717] = {.lex_state = 246, .external_lex_state = 2}, + [2718] = {.lex_state = 137, .external_lex_state = 2}, + [2719] = {.lex_state = 246, .external_lex_state = 2}, + [2720] = {.lex_state = 212, .external_lex_state = 2}, + [2721] = {.lex_state = 246, .external_lex_state = 2}, + [2722] = {.lex_state = 137, .external_lex_state = 2}, + [2723] = {.lex_state = 772, .external_lex_state = 2}, + [2724] = {.lex_state = 137, .external_lex_state = 2}, + [2725] = {.lex_state = 192, .external_lex_state = 2}, + [2726] = {.lex_state = 235, .external_lex_state = 2}, + [2727] = {.lex_state = 214, .external_lex_state = 2}, + [2728] = {.lex_state = 246, .external_lex_state = 2}, + [2729] = {.lex_state = 235, .external_lex_state = 2}, + [2730] = {.lex_state = 209, .external_lex_state = 2}, + [2731] = {.lex_state = 209, .external_lex_state = 2}, + [2732] = {.lex_state = 209, .external_lex_state = 2}, + [2733] = {.lex_state = 209, .external_lex_state = 2}, + [2734] = {.lex_state = 209, .external_lex_state = 2}, + [2735] = {.lex_state = 209, .external_lex_state = 2}, + [2736] = {.lex_state = 246, .external_lex_state = 2}, + [2737] = {.lex_state = 209, .external_lex_state = 2}, + [2738] = {.lex_state = 209, .external_lex_state = 2}, + [2739] = {.lex_state = 209, .external_lex_state = 2}, + [2740] = {.lex_state = 215, .external_lex_state = 2}, + [2741] = {.lex_state = 237, .external_lex_state = 2}, + [2742] = {.lex_state = 246, .external_lex_state = 2}, + [2743] = {.lex_state = 190, .external_lex_state = 2}, + [2744] = {.lex_state = 190, .external_lex_state = 2}, + [2745] = {.lex_state = 190, .external_lex_state = 2}, + [2746] = {.lex_state = 215, .external_lex_state = 2}, + [2747] = {.lex_state = 200, .external_lex_state = 2}, + [2748] = {.lex_state = 190, .external_lex_state = 2}, + [2749] = {.lex_state = 190, .external_lex_state = 2}, + [2750] = {.lex_state = 200, .external_lex_state = 2}, + [2751] = {.lex_state = 143, .external_lex_state = 2}, + [2752] = {.lex_state = 236, .external_lex_state = 2}, + [2753] = {.lex_state = 236, .external_lex_state = 2}, + [2754] = {.lex_state = 209, .external_lex_state = 2}, + [2755] = {.lex_state = 190, .external_lex_state = 2}, + [2756] = {.lex_state = 209, .external_lex_state = 2}, + [2757] = {.lex_state = 236, .external_lex_state = 2}, + [2758] = {.lex_state = 236, .external_lex_state = 2}, + [2759] = {.lex_state = 205, .external_lex_state = 2}, + [2760] = {.lex_state = 236, .external_lex_state = 2}, + [2761] = {.lex_state = 237, .external_lex_state = 2}, + [2762] = {.lex_state = 138, .external_lex_state = 2}, + [2763] = {.lex_state = 46, .external_lex_state = 2}, + [2764] = {.lex_state = 193, .external_lex_state = 2}, + [2765] = {.lex_state = 236, .external_lex_state = 2}, + [2766] = {.lex_state = 205, .external_lex_state = 2}, + [2767] = {.lex_state = 205, .external_lex_state = 2}, + [2768] = {.lex_state = 209, .external_lex_state = 2}, + [2769] = {.lex_state = 189, .external_lex_state = 2}, + [2770] = {.lex_state = 209, .external_lex_state = 2}, + [2771] = {.lex_state = 209, .external_lex_state = 2}, + [2772] = {.lex_state = 209, .external_lex_state = 2}, + [2773] = {.lex_state = 209, .external_lex_state = 2}, + [2774] = {.lex_state = 209, .external_lex_state = 2}, + [2775] = {.lex_state = 209, .external_lex_state = 2}, + [2776] = {.lex_state = 209, .external_lex_state = 2}, + [2777] = {.lex_state = 209, .external_lex_state = 2}, + [2778] = {.lex_state = 191, .external_lex_state = 2}, + [2779] = {.lex_state = 244, .external_lex_state = 2}, + [2780] = {.lex_state = 216, .external_lex_state = 2}, + [2781] = {.lex_state = 192, .external_lex_state = 2}, + [2782] = {.lex_state = 193, .external_lex_state = 2}, + [2783] = {.lex_state = 244, .external_lex_state = 2}, + [2784] = {.lex_state = 201, .external_lex_state = 2}, + [2785] = {.lex_state = 45, .external_lex_state = 2}, + [2786] = {.lex_state = 193, .external_lex_state = 2}, + [2787] = {.lex_state = 201, .external_lex_state = 2}, + [2788] = {.lex_state = 193, .external_lex_state = 2}, + [2789] = {.lex_state = 193, .external_lex_state = 2}, + [2790] = {.lex_state = 201, .external_lex_state = 2}, + [2791] = {.lex_state = 244, .external_lex_state = 2}, + [2792] = {.lex_state = 193, .external_lex_state = 2}, + [2793] = {.lex_state = 192, .external_lex_state = 2}, + [2794] = {.lex_state = 46, .external_lex_state = 2}, + [2795] = {.lex_state = 193, .external_lex_state = 2}, + [2796] = {.lex_state = 192, .external_lex_state = 2}, + [2797] = {.lex_state = 201, .external_lex_state = 2}, + [2798] = {.lex_state = 245, .external_lex_state = 2}, + [2799] = {.lex_state = 216, .external_lex_state = 2}, + [2800] = {.lex_state = 216, .external_lex_state = 2}, + [2801] = {.lex_state = 201, .external_lex_state = 2}, + [2802] = {.lex_state = 245, .external_lex_state = 2}, + [2803] = {.lex_state = 244, .external_lex_state = 2}, + [2804] = {.lex_state = 216, .external_lex_state = 2}, + [2805] = {.lex_state = 42, .external_lex_state = 2}, + [2806] = {.lex_state = 193, .external_lex_state = 2}, + [2807] = {.lex_state = 139, .external_lex_state = 2}, + [2808] = {.lex_state = 193, .external_lex_state = 2}, + [2809] = {.lex_state = 244, .external_lex_state = 2}, + [2810] = {.lex_state = 201, .external_lex_state = 2}, + [2811] = {.lex_state = 216, .external_lex_state = 2}, + [2812] = {.lex_state = 245, .external_lex_state = 2}, + [2813] = {.lex_state = 193, .external_lex_state = 2}, + [2814] = {.lex_state = 245, .external_lex_state = 2}, + [2815] = {.lex_state = 201, .external_lex_state = 2}, + [2816] = {.lex_state = 245, .external_lex_state = 2}, + [2817] = {.lex_state = 245, .external_lex_state = 2}, + [2818] = {.lex_state = 193, .external_lex_state = 2}, + [2819] = {.lex_state = 193, .external_lex_state = 2}, + [2820] = {.lex_state = 193, .external_lex_state = 2}, + [2821] = {.lex_state = 44, .external_lex_state = 2}, + [2822] = {.lex_state = 201, .external_lex_state = 2}, + [2823] = {.lex_state = 201, .external_lex_state = 2}, + [2824] = {.lex_state = 201, .external_lex_state = 2}, + [2825] = {.lex_state = 201, .external_lex_state = 2}, + [2826] = {.lex_state = 139, .external_lex_state = 2}, + [2827] = {.lex_state = 248, .external_lex_state = 2}, + [2828] = {.lex_state = 201, .external_lex_state = 2}, + [2829] = {.lex_state = 187, .external_lex_state = 2}, + [2830] = {.lex_state = 244, .external_lex_state = 2}, + [2831] = {.lex_state = 201, .external_lex_state = 2}, + [2832] = {.lex_state = 244, .external_lex_state = 2}, + [2833] = {.lex_state = 209, .external_lex_state = 2}, + [2834] = {.lex_state = 193, .external_lex_state = 2}, + [2835] = {.lex_state = 201, .external_lex_state = 2}, + [2836] = {.lex_state = 209, .external_lex_state = 2}, + [2837] = {.lex_state = 193, .external_lex_state = 2}, + [2838] = {.lex_state = 193, .external_lex_state = 2}, + [2839] = {.lex_state = 201, .external_lex_state = 2}, + [2840] = {.lex_state = 193, .external_lex_state = 2}, + [2841] = {.lex_state = 187, .external_lex_state = 2}, + [2842] = {.lex_state = 193, .external_lex_state = 2}, + [2843] = {.lex_state = 193, .external_lex_state = 2}, + [2844] = {.lex_state = 244, .external_lex_state = 2}, + [2845] = {.lex_state = 244, .external_lex_state = 2}, + [2846] = {.lex_state = 193, .external_lex_state = 2}, + [2847] = {.lex_state = 193, .external_lex_state = 2}, + [2848] = {.lex_state = 216, .external_lex_state = 2}, + [2849] = {.lex_state = 193, .external_lex_state = 2}, + [2850] = {.lex_state = 262, .external_lex_state = 2}, + [2851] = {.lex_state = 246, .external_lex_state = 2}, + [2852] = {.lex_state = 140, .external_lex_state = 2}, + [2853] = {.lex_state = 262, .external_lex_state = 2}, + [2854] = {.lex_state = 140, .external_lex_state = 2}, + [2855] = {.lex_state = 188, .external_lex_state = 2}, + [2856] = {.lex_state = 103, .external_lex_state = 2}, + [2857] = {.lex_state = 140, .external_lex_state = 2}, + [2858] = {.lex_state = 262, .external_lex_state = 2}, + [2859] = {.lex_state = 140, .external_lex_state = 2}, + [2860] = {.lex_state = 188, .external_lex_state = 2}, + [2861] = {.lex_state = 45, .external_lex_state = 2}, + [2862] = {.lex_state = 244, .external_lex_state = 2}, + [2863] = {.lex_state = 188, .external_lex_state = 2}, + [2864] = {.lex_state = 207, .external_lex_state = 2}, + [2865] = {.lex_state = 207, .external_lex_state = 2}, + [2866] = {.lex_state = 188, .external_lex_state = 2}, + [2867] = {.lex_state = 188, .external_lex_state = 2}, + [2868] = {.lex_state = 140, .external_lex_state = 2}, + [2869] = {.lex_state = 42, .external_lex_state = 2}, + [2870] = {.lex_state = 246, .external_lex_state = 2}, + [2871] = {.lex_state = 246, .external_lex_state = 2}, + [2872] = {.lex_state = 251, .external_lex_state = 2}, + [2873] = {.lex_state = 188, .external_lex_state = 2}, + [2874] = {.lex_state = 140, .external_lex_state = 2}, + [2875] = {.lex_state = 44, .external_lex_state = 2}, + [2876] = {.lex_state = 42, .external_lex_state = 2}, + [2877] = {.lex_state = 207, .external_lex_state = 2}, + [2878] = {.lex_state = 188, .external_lex_state = 2}, + [2879] = {.lex_state = 261, .external_lex_state = 2}, + [2880] = {.lex_state = 261, .external_lex_state = 2}, + [2881] = {.lex_state = 207, .external_lex_state = 2}, + [2882] = {.lex_state = 207, .external_lex_state = 2}, + [2883] = {.lex_state = 188, .external_lex_state = 2}, + [2884] = {.lex_state = 262, .external_lex_state = 2}, + [2885] = {.lex_state = 207, .external_lex_state = 2}, + [2886] = {.lex_state = 261, .external_lex_state = 2}, + [2887] = {.lex_state = 261, .external_lex_state = 2}, + [2888] = {.lex_state = 188, .external_lex_state = 2}, + [2889] = {.lex_state = 199, .external_lex_state = 2}, + [2890] = {.lex_state = 188, .external_lex_state = 2}, + [2891] = {.lex_state = 140, .external_lex_state = 2}, + [2892] = {.lex_state = 188, .external_lex_state = 2}, + [2893] = {.lex_state = 244, .external_lex_state = 2}, + [2894] = {.lex_state = 140, .external_lex_state = 2}, + [2895] = {.lex_state = 193, .external_lex_state = 2}, + [2896] = {.lex_state = 217, .external_lex_state = 2}, + [2897] = {.lex_state = 188, .external_lex_state = 2}, + [2898] = {.lex_state = 208, .external_lex_state = 2}, + [2899] = {.lex_state = 42, .external_lex_state = 2}, + [2900] = {.lex_state = 140, .external_lex_state = 2}, + [2901] = {.lex_state = 698}, + [2902] = {.lex_state = 700}, + [2903] = {.lex_state = 261, .external_lex_state = 2}, + [2904] = {.lex_state = 193, .external_lex_state = 2}, + [2905] = {.lex_state = 222, .external_lex_state = 2}, + [2906] = {.lex_state = 188, .external_lex_state = 2}, + [2907] = {.lex_state = 188, .external_lex_state = 2}, + [2908] = {.lex_state = 188, .external_lex_state = 2}, + [2909] = {.lex_state = 262, .external_lex_state = 2}, + [2910] = {.lex_state = 42, .external_lex_state = 2}, + [2911] = {.lex_state = 180, .external_lex_state = 2}, + [2912] = {.lex_state = 103, .external_lex_state = 2}, + [2913] = {.lex_state = 223, .external_lex_state = 2}, + [2914] = {.lex_state = 42, .external_lex_state = 2}, + [2915] = {.lex_state = 103, .external_lex_state = 2}, + [2916] = {.lex_state = 209, .external_lex_state = 2}, + [2917] = {.lex_state = 209, .external_lex_state = 2}, + [2918] = {.lex_state = 194, .external_lex_state = 2}, + [2919] = {.lex_state = 42, .external_lex_state = 2}, + [2920] = {.lex_state = 180, .external_lex_state = 2}, + [2921] = {.lex_state = 180, .external_lex_state = 2}, + [2922] = {.lex_state = 42, .external_lex_state = 2}, + [2923] = {.lex_state = 180, .external_lex_state = 2}, + [2924] = {.lex_state = 180, .external_lex_state = 2}, + [2925] = {.lex_state = 186, .external_lex_state = 2}, + [2926] = {.lex_state = 180, .external_lex_state = 2}, + [2927] = {.lex_state = 42, .external_lex_state = 2}, + [2928] = {.lex_state = 42, .external_lex_state = 2}, + [2929] = {.lex_state = 42, .external_lex_state = 2}, + [2930] = {.lex_state = 196, .external_lex_state = 2}, + [2931] = {.lex_state = 180, .external_lex_state = 2}, + [2932] = {.lex_state = 42, .external_lex_state = 2}, + [2933] = {.lex_state = 180, .external_lex_state = 2}, + [2934] = {.lex_state = 42, .external_lex_state = 2}, + [2935] = {.lex_state = 42, .external_lex_state = 2}, + [2936] = {.lex_state = 196, .external_lex_state = 2}, + [2937] = {.lex_state = 42, .external_lex_state = 2}, + [2938] = {.lex_state = 42, .external_lex_state = 2}, + [2939] = {.lex_state = 42, .external_lex_state = 2}, + [2940] = {.lex_state = 42, .external_lex_state = 2}, + [2941] = {.lex_state = 42, .external_lex_state = 2}, + [2942] = {.lex_state = 42, .external_lex_state = 2}, + [2943] = {.lex_state = 42, .external_lex_state = 2}, + [2944] = {.lex_state = 42, .external_lex_state = 2}, + [2945] = {.lex_state = 42, .external_lex_state = 2}, + [2946] = {.lex_state = 42, .external_lex_state = 2}, + [2947] = {.lex_state = 42, .external_lex_state = 2}, + [2948] = {.lex_state = 42, .external_lex_state = 2}, + [2949] = {.lex_state = 42, .external_lex_state = 2}, + [2950] = {.lex_state = 42, .external_lex_state = 2}, + [2951] = {.lex_state = 42, .external_lex_state = 2}, + [2952] = {.lex_state = 42, .external_lex_state = 2}, + [2953] = {.lex_state = 42, .external_lex_state = 2}, + [2954] = {.lex_state = 42, .external_lex_state = 2}, + [2955] = {.lex_state = 180, .external_lex_state = 2}, + [2956] = {.lex_state = 42, .external_lex_state = 2}, + [2957] = {.lex_state = 218, .external_lex_state = 2}, + [2958] = {.lex_state = 194, .external_lex_state = 2}, + [2959] = {.lex_state = 42, .external_lex_state = 2}, + [2960] = {.lex_state = 209, .external_lex_state = 2}, + [2961] = {.lex_state = 42, .external_lex_state = 2}, + [2962] = {.lex_state = 42, .external_lex_state = 2}, + [2963] = {.lex_state = 47, .external_lex_state = 2}, + [2964] = {.lex_state = 42, .external_lex_state = 2}, + [2965] = {.lex_state = 195, .external_lex_state = 2}, + [2966] = {.lex_state = 218, .external_lex_state = 2}, + [2967] = {.lex_state = 42, .external_lex_state = 2}, + [2968] = {.lex_state = 42, .external_lex_state = 2}, + [2969] = {.lex_state = 42, .external_lex_state = 2}, + [2970] = {.lex_state = 42, .external_lex_state = 2}, + [2971] = {.lex_state = 180, .external_lex_state = 2}, + [2972] = {.lex_state = 42, .external_lex_state = 2}, + [2973] = {.lex_state = 42, .external_lex_state = 2}, + [2974] = {.lex_state = 180, .external_lex_state = 2}, + [2975] = {.lex_state = 42, .external_lex_state = 2}, + [2976] = {.lex_state = 42, .external_lex_state = 2}, + [2977] = {.lex_state = 194, .external_lex_state = 2}, + [2978] = {.lex_state = 42, .external_lex_state = 2}, + [2979] = {.lex_state = 702}, + [2980] = {.lex_state = 42, .external_lex_state = 2}, + [2981] = {.lex_state = 702}, + [2982] = {.lex_state = 698}, + [2983] = {.lex_state = 700}, + [2984] = {.lex_state = 180, .external_lex_state = 2}, + [2985] = {.lex_state = 42, .external_lex_state = 2}, + [2986] = {.lex_state = 42, .external_lex_state = 2}, + [2987] = {.lex_state = 194, .external_lex_state = 2}, + [2988] = {.lex_state = 42, .external_lex_state = 2}, + [2989] = {.lex_state = 42, .external_lex_state = 2}, + [2990] = {.lex_state = 194, .external_lex_state = 2}, + [2991] = {.lex_state = 42, .external_lex_state = 2}, + [2992] = {.lex_state = 194, .external_lex_state = 2}, + [2993] = {.lex_state = 42, .external_lex_state = 2}, + [2994] = {.lex_state = 197, .external_lex_state = 2}, + [2995] = {.lex_state = 704}, + [2996] = {.lex_state = 180, .external_lex_state = 2}, + [2997] = {.lex_state = 42, .external_lex_state = 2}, + [2998] = {.lex_state = 42, .external_lex_state = 2}, + [2999] = {.lex_state = 263, .external_lex_state = 2}, + [3000] = {.lex_state = 704}, + [3001] = {.lex_state = 219, .external_lex_state = 2}, + [3002] = {.lex_state = 198, .external_lex_state = 2}, + [3003] = {.lex_state = 198, .external_lex_state = 2}, + [3004] = {.lex_state = 198, .external_lex_state = 2}, + [3005] = {.lex_state = 183, .external_lex_state = 2}, + [3006] = {.lex_state = 198, .external_lex_state = 2}, + [3007] = {.lex_state = 36, .external_lex_state = 2}, + [3008] = {.lex_state = 198, .external_lex_state = 2}, + [3009] = {.lex_state = 198, .external_lex_state = 2}, + [3010] = {.lex_state = 198, .external_lex_state = 2}, + [3011] = {.lex_state = 198, .external_lex_state = 2}, + [3012] = {.lex_state = 198, .external_lex_state = 2}, + [3013] = {.lex_state = 198, .external_lex_state = 2}, + [3014] = {.lex_state = 198, .external_lex_state = 2}, + [3015] = {.lex_state = 198, .external_lex_state = 2}, + [3016] = {.lex_state = 198, .external_lex_state = 2}, + [3017] = {.lex_state = 263, .external_lex_state = 2}, + [3018] = {.lex_state = 193, .external_lex_state = 2}, + [3019] = {.lex_state = 198, .external_lex_state = 2}, + [3020] = {.lex_state = 198, .external_lex_state = 2}, + [3021] = {.lex_state = 183, .external_lex_state = 2}, + [3022] = {.lex_state = 198, .external_lex_state = 2}, + [3023] = {.lex_state = 198, .external_lex_state = 2}, + [3024] = {.lex_state = 263, .external_lex_state = 2}, + [3025] = {.lex_state = 193, .external_lex_state = 2}, + [3026] = {.lex_state = 198, .external_lex_state = 2}, + [3027] = {.lex_state = 219, .external_lex_state = 2}, + [3028] = {.lex_state = 184, .external_lex_state = 2}, + [3029] = {.lex_state = 198, .external_lex_state = 2}, + [3030] = {.lex_state = 198, .external_lex_state = 2}, + [3031] = {.lex_state = 219, .external_lex_state = 2}, + [3032] = {.lex_state = 198, .external_lex_state = 2}, + [3033] = {.lex_state = 198, .external_lex_state = 2}, + [3034] = {.lex_state = 198, .external_lex_state = 2}, + [3035] = {.lex_state = 198, .external_lex_state = 2}, + [3036] = {.lex_state = 198, .external_lex_state = 2}, + [3037] = {.lex_state = 47, .external_lex_state = 2}, + [3038] = {.lex_state = 219, .external_lex_state = 2}, + [3039] = {.lex_state = 198, .external_lex_state = 2}, + [3040] = {.lex_state = 219, .external_lex_state = 2}, + [3041] = {.lex_state = 198, .external_lex_state = 2}, + [3042] = {.lex_state = 198, .external_lex_state = 2}, + [3043] = {.lex_state = 193, .external_lex_state = 2}, + [3044] = {.lex_state = 180, .external_lex_state = 2}, + [3045] = {.lex_state = 198, .external_lex_state = 2}, + [3046] = {.lex_state = 198, .external_lex_state = 2}, + [3047] = {.lex_state = 198, .external_lex_state = 2}, + [3048] = {.lex_state = 219, .external_lex_state = 2}, + [3049] = {.lex_state = 219, .external_lex_state = 2}, + [3050] = {.lex_state = 198, .external_lex_state = 2}, + [3051] = {.lex_state = 198, .external_lex_state = 2}, + [3052] = {.lex_state = 198, .external_lex_state = 2}, + [3053] = {.lex_state = 180, .external_lex_state = 2}, + [3054] = {.lex_state = 219, .external_lex_state = 2}, + [3055] = {.lex_state = 219, .external_lex_state = 2}, + [3056] = {.lex_state = 198, .external_lex_state = 2}, + [3057] = {.lex_state = 198, .external_lex_state = 2}, + [3058] = {.lex_state = 198, .external_lex_state = 2}, + [3059] = {.lex_state = 198, .external_lex_state = 2}, + [3060] = {.lex_state = 704}, + [3061] = {.lex_state = 198, .external_lex_state = 2}, + [3062] = {.lex_state = 198, .external_lex_state = 2}, + [3063] = {.lex_state = 198, .external_lex_state = 2}, + [3064] = {.lex_state = 704}, + [3065] = {.lex_state = 198, .external_lex_state = 2}, + [3066] = {.lex_state = 704}, + [3067] = {.lex_state = 704}, + [3068] = {.lex_state = 702}, + [3069] = {.lex_state = 198, .external_lex_state = 2}, + [3070] = {.lex_state = 702}, + [3071] = {.lex_state = 198, .external_lex_state = 2}, + [3072] = {.lex_state = 198, .external_lex_state = 2}, + [3073] = {.lex_state = 198, .external_lex_state = 2}, + [3074] = {.lex_state = 198, .external_lex_state = 2}, + [3075] = {.lex_state = 198, .external_lex_state = 2}, + [3076] = {.lex_state = 219, .external_lex_state = 2}, + [3077] = {.lex_state = 198, .external_lex_state = 2}, + [3078] = {.lex_state = 198, .external_lex_state = 2}, + [3079] = {.lex_state = 263, .external_lex_state = 2}, + [3080] = {.lex_state = 263, .external_lex_state = 2}, + [3081] = {.lex_state = 198, .external_lex_state = 2}, + [3082] = {.lex_state = 198, .external_lex_state = 2}, + [3083] = {.lex_state = 47, .external_lex_state = 2}, + [3084] = {.lex_state = 47, .external_lex_state = 2}, + [3085] = {.lex_state = 47, .external_lex_state = 2}, + [3086] = {.lex_state = 47, .external_lex_state = 2}, + [3087] = {.lex_state = 47, .external_lex_state = 2}, + [3088] = {.lex_state = 47, .external_lex_state = 2}, + [3089] = {.lex_state = 47, .external_lex_state = 2}, + [3090] = {.lex_state = 47, .external_lex_state = 2}, + [3091] = {.lex_state = 47, .external_lex_state = 2}, + [3092] = {.lex_state = 47, .external_lex_state = 2}, + [3093] = {.lex_state = 47, .external_lex_state = 2}, + [3094] = {.lex_state = 47, .external_lex_state = 2}, + [3095] = {.lex_state = 47, .external_lex_state = 2}, + [3096] = {.lex_state = 47, .external_lex_state = 2}, + [3097] = {.lex_state = 47, .external_lex_state = 2}, + [3098] = {.lex_state = 47, .external_lex_state = 2}, + [3099] = {.lex_state = 47, .external_lex_state = 2}, + [3100] = {.lex_state = 47, .external_lex_state = 2}, + [3101] = {.lex_state = 47, .external_lex_state = 2}, + [3102] = {.lex_state = 47, .external_lex_state = 2}, + [3103] = {.lex_state = 47, .external_lex_state = 2}, + [3104] = {.lex_state = 47, .external_lex_state = 2}, + [3105] = {.lex_state = 47, .external_lex_state = 2}, + [3106] = {.lex_state = 47, .external_lex_state = 2}, + [3107] = {.lex_state = 47, .external_lex_state = 2}, + [3108] = {.lex_state = 47, .external_lex_state = 2}, + [3109] = {.lex_state = 47, .external_lex_state = 2}, + [3110] = {.lex_state = 47, .external_lex_state = 2}, + [3111] = {.lex_state = 47, .external_lex_state = 2}, + [3112] = {.lex_state = 47, .external_lex_state = 2}, + [3113] = {.lex_state = 47, .external_lex_state = 2}, + [3114] = {.lex_state = 47, .external_lex_state = 2}, + [3115] = {.lex_state = 47, .external_lex_state = 2}, + [3116] = {.lex_state = 47, .external_lex_state = 2}, + [3117] = {.lex_state = 47, .external_lex_state = 2}, + [3118] = {.lex_state = 47, .external_lex_state = 2}, + [3119] = {.lex_state = 47, .external_lex_state = 2}, + [3120] = {.lex_state = 47, .external_lex_state = 2}, + [3121] = {.lex_state = 47, .external_lex_state = 2}, + [3122] = {.lex_state = 47, .external_lex_state = 2}, + [3123] = {.lex_state = 704}, + [3124] = {.lex_state = 47, .external_lex_state = 2}, + [3125] = {.lex_state = 47, .external_lex_state = 2}, + [3126] = {.lex_state = 704}, + [3127] = {.lex_state = 47, .external_lex_state = 2}, + [3128] = {.lex_state = 704}, + [3129] = {.lex_state = 704}, + [3130] = {.lex_state = 47, .external_lex_state = 2}, + [3131] = {.lex_state = 47, .external_lex_state = 2}, + [3132] = {.lex_state = 47, .external_lex_state = 2}, + [3133] = {.lex_state = 47, .external_lex_state = 2}, + [3134] = {.lex_state = 47, .external_lex_state = 2}, + [3135] = {.lex_state = 47, .external_lex_state = 2}, + [3136] = {.lex_state = 47, .external_lex_state = 2}, + [3137] = {.lex_state = 47, .external_lex_state = 2}, + [3138] = {.lex_state = 47, .external_lex_state = 2}, + [3139] = {.lex_state = 47, .external_lex_state = 2}, + [3140] = {.lex_state = 47, .external_lex_state = 2}, + [3141] = {.lex_state = 47, .external_lex_state = 2}, + [3142] = {.lex_state = 47, .external_lex_state = 2}, + [3143] = {.lex_state = 47, .external_lex_state = 2}, + [3144] = {.lex_state = 47, .external_lex_state = 2}, + [3145] = {.lex_state = 47, .external_lex_state = 2}, + [3146] = {.lex_state = 47, .external_lex_state = 2}, + [3147] = {.lex_state = 47, .external_lex_state = 2}, + [3148] = {.lex_state = 47, .external_lex_state = 2}, + [3149] = {.lex_state = 47, .external_lex_state = 2}, + [3150] = {.lex_state = 36, .external_lex_state = 2}, + [3151] = {.lex_state = 47, .external_lex_state = 2}, + [3152] = {.lex_state = 697}, + [3153] = {.lex_state = 71}, + [3154] = {.lex_state = 71}, + [3155] = {.lex_state = 71}, + [3156] = {.lex_state = 71}, + [3157] = {.lex_state = 71}, + [3158] = {.lex_state = 71}, + [3159] = {.lex_state = 71}, + [3160] = {.lex_state = 71}, + [3161] = {.lex_state = 71}, + [3162] = {.lex_state = 71}, + [3163] = {.lex_state = 697}, + [3164] = {.lex_state = 71}, + [3165] = {.lex_state = 711}, + [3166] = {.lex_state = 71}, + [3167] = {.lex_state = 71}, + [3168] = {.lex_state = 71}, + [3169] = {.lex_state = 71}, + [3170] = {.lex_state = 71}, + [3171] = {.lex_state = 711}, + [3172] = {.lex_state = 708}, + [3173] = {.lex_state = 71}, + [3174] = {.lex_state = 709}, + [3175] = {.lex_state = 781}, + [3176] = {.lex_state = 708}, + [3177] = {.lex_state = 709}, + [3178] = {.lex_state = 708}, + [3179] = {.lex_state = 708}, + [3180] = {.lex_state = 708}, + [3181] = {.lex_state = 24}, + [3182] = {.lex_state = 706}, + [3183] = {.lex_state = 708}, + [3184] = {.lex_state = 708}, + [3185] = {.lex_state = 775}, + [3186] = {.lex_state = 708}, + [3187] = {.lex_state = 708}, + [3188] = {.lex_state = 24}, + [3189] = {.lex_state = 71}, + [3190] = {.lex_state = 708}, + [3191] = {.lex_state = 71}, + [3192] = {.lex_state = 71}, + [3193] = {.lex_state = 697}, + [3194] = {.lex_state = 71}, + [3195] = {.lex_state = 71}, + [3196] = {.lex_state = 775}, + [3197] = {.lex_state = 71}, + [3198] = {.lex_state = 71}, + [3199] = {.lex_state = 71}, + [3200] = {.lex_state = 697}, + [3201] = {.lex_state = 697}, + [3202] = {.lex_state = 697}, + [3203] = {.lex_state = 697}, + [3204] = {.lex_state = 697}, + [3205] = {.lex_state = 697}, + [3206] = {.lex_state = 697}, + [3207] = {.lex_state = 697}, + [3208] = {.lex_state = 697}, + [3209] = {.lex_state = 697}, + [3210] = {.lex_state = 697}, + [3211] = {.lex_state = 697}, + [3212] = {.lex_state = 71}, + [3213] = {.lex_state = 697}, + [3214] = {.lex_state = 697}, + [3215] = {.lex_state = 697}, + [3216] = {.lex_state = 697}, + [3217] = {.lex_state = 697}, + [3218] = {.lex_state = 697}, + [3219] = {.lex_state = 697}, + [3220] = {.lex_state = 697}, + [3221] = {.lex_state = 697}, + [3222] = {.lex_state = 697}, + [3223] = {.lex_state = 697}, + [3224] = {.lex_state = 697}, + [3225] = {.lex_state = 697}, + [3226] = {.lex_state = 697}, + [3227] = {.lex_state = 697}, + [3228] = {.lex_state = 697}, + [3229] = {.lex_state = 697}, + [3230] = {.lex_state = 697}, + [3231] = {.lex_state = 697}, + [3232] = {.lex_state = 697}, + [3233] = {.lex_state = 697}, + [3234] = {.lex_state = 697}, + [3235] = {.lex_state = 697}, + [3236] = {.lex_state = 697}, + [3237] = {.lex_state = 697}, + [3238] = {.lex_state = 697}, + [3239] = {.lex_state = 697}, + [3240] = {.lex_state = 697}, + [3241] = {.lex_state = 697}, + [3242] = {.lex_state = 697}, + [3243] = {.lex_state = 697}, + [3244] = {.lex_state = 697}, + [3245] = {.lex_state = 697}, + [3246] = {.lex_state = 697}, + [3247] = {.lex_state = 697}, + [3248] = {.lex_state = 697}, + [3249] = {.lex_state = 697}, + [3250] = {.lex_state = 697}, + [3251] = {.lex_state = 697}, + [3252] = {.lex_state = 697}, + [3253] = {.lex_state = 697}, + [3254] = {.lex_state = 697}, + [3255] = {.lex_state = 706}, + [3256] = {.lex_state = 697}, + [3257] = {.lex_state = 697}, + [3258] = {.lex_state = 697}, + [3259] = {.lex_state = 697}, + [3260] = {.lex_state = 697}, + [3261] = {.lex_state = 697}, + [3262] = {.lex_state = 697}, + [3263] = {.lex_state = 697}, + [3264] = {.lex_state = 697}, + [3265] = {.lex_state = 697}, + [3266] = {.lex_state = 697}, + [3267] = {.lex_state = 697}, + [3268] = {.lex_state = 697}, + [3269] = {.lex_state = 697}, + [3270] = {.lex_state = 697}, + [3271] = {.lex_state = 697}, + [3272] = {.lex_state = 697}, + [3273] = {.lex_state = 697}, + [3274] = {.lex_state = 697}, + [3275] = {.lex_state = 697}, + [3276] = {.lex_state = 697}, + [3277] = {.lex_state = 697}, + [3278] = {.lex_state = 697}, + [3279] = {.lex_state = 697}, + [3280] = {.lex_state = 697}, + [3281] = {.lex_state = 697}, + [3282] = {.lex_state = 697}, + [3283] = {.lex_state = 697}, + [3284] = {.lex_state = 697}, + [3285] = {.lex_state = 697}, + [3286] = {.lex_state = 697}, + [3287] = {.lex_state = 697}, + [3288] = {.lex_state = 697}, + [3289] = {.lex_state = 697}, + [3290] = {.lex_state = 697}, + [3291] = {.lex_state = 697}, + [3292] = {.lex_state = 697}, + [3293] = {.lex_state = 697}, + [3294] = {.lex_state = 697}, + [3295] = {.lex_state = 697}, + [3296] = {.lex_state = 697}, + [3297] = {.lex_state = 24}, + [3298] = {.lex_state = 697}, + [3299] = {.lex_state = 697}, + [3300] = {.lex_state = 697}, + [3301] = {.lex_state = 697}, + [3302] = {.lex_state = 697}, + [3303] = {.lex_state = 697}, + [3304] = {.lex_state = 697}, + [3305] = {.lex_state = 697}, + [3306] = {.lex_state = 697}, + [3307] = {.lex_state = 697}, + [3308] = {.lex_state = 697}, + [3309] = {.lex_state = 697}, + [3310] = {.lex_state = 71}, + [3311] = {.lex_state = 24}, + [3312] = {.lex_state = 775}, + [3313] = {.lex_state = 775}, + [3314] = {.lex_state = 775}, + [3315] = {.lex_state = 775}, + [3316] = {.lex_state = 71}, + [3317] = {.lex_state = 71}, + [3318] = {.lex_state = 697}, + [3319] = {.lex_state = 71}, + [3320] = {.lex_state = 775}, + [3321] = {.lex_state = 71}, + [3322] = {.lex_state = 24}, + [3323] = {.lex_state = 697}, + [3324] = {.lex_state = 71}, + [3325] = {.lex_state = 24}, + [3326] = {.lex_state = 71}, + [3327] = {.lex_state = 775}, + [3328] = {.lex_state = 71}, + [3329] = {.lex_state = 24}, + [3330] = {.lex_state = 71}, + [3331] = {.lex_state = 71}, + [3332] = {.lex_state = 24}, + [3333] = {.lex_state = 71}, + [3334] = {.lex_state = 24}, + [3335] = {.lex_state = 24}, + [3336] = {.lex_state = 24}, + [3337] = {.lex_state = 24}, + [3338] = {.lex_state = 24}, + [3339] = {.lex_state = 71}, + [3340] = {.lex_state = 697}, + [3341] = {.lex_state = 710}, + [3342] = {.lex_state = 243, .external_lex_state = 2}, + [3343] = {.lex_state = 239, .external_lex_state = 2}, + [3344] = {.lex_state = 71}, + [3345] = {.lex_state = 71}, + [3346] = {.lex_state = 697}, + [3347] = {.lex_state = 24}, + [3348] = {.lex_state = 697}, + [3349] = {.lex_state = 697}, + [3350] = {.lex_state = 775}, + [3351] = {.lex_state = 697}, + [3352] = {.lex_state = 697}, + [3353] = {.lex_state = 697}, + [3354] = {.lex_state = 697}, + [3355] = {.lex_state = 697}, + [3356] = {.lex_state = 697}, + [3357] = {.lex_state = 697}, + [3358] = {.lex_state = 697}, + [3359] = {.lex_state = 697}, + [3360] = {.lex_state = 697}, + [3361] = {.lex_state = 775}, + [3362] = {.lex_state = 709}, + [3363] = {.lex_state = 240, .external_lex_state = 2}, + [3364] = {.lex_state = 235}, + [3365] = {.lex_state = 709}, + [3366] = {.lex_state = 18}, + [3367] = {.lex_state = 19}, + [3368] = {.lex_state = 235}, + [3369] = {.lex_state = 91}, + [3370] = {.lex_state = 92}, + [3371] = {.lex_state = 709}, + [3372] = {.lex_state = 710}, + [3373] = {.lex_state = 710}, + [3374] = {.lex_state = 240, .external_lex_state = 2}, + [3375] = {.lex_state = 717}, + [3376] = {.lex_state = 775}, + [3377] = {.lex_state = 71}, + [3378] = {.lex_state = 87}, + [3379] = {.lex_state = 88}, + [3380] = {.lex_state = 775}, + [3381] = {.lex_state = 236}, + [3382] = {.lex_state = 236}, + [3383] = {.lex_state = 389}, + [3384] = {.lex_state = 775}, + [3385] = {.lex_state = 21}, + [3386] = {.lex_state = 93}, + [3387] = {.lex_state = 94}, + [3388] = {.lex_state = 710}, + [3389] = {.lex_state = 775}, + [3390] = {.lex_state = 709}, + [3391] = {.lex_state = 709}, + [3392] = {.lex_state = 241, .external_lex_state = 2}, + [3393] = {.lex_state = 71}, + [3394] = {.lex_state = 71}, + [3395] = {.lex_state = 20}, + [3396] = {.lex_state = 93}, + [3397] = {.lex_state = 241, .external_lex_state = 2}, + [3398] = {.lex_state = 71}, + [3399] = {.lex_state = 20}, + [3400] = {.lex_state = 241, .external_lex_state = 2}, + [3401] = {.lex_state = 241, .external_lex_state = 2}, + [3402] = {.lex_state = 241, .external_lex_state = 2}, + [3403] = {.lex_state = 710}, + [3404] = {.lex_state = 24}, + [3405] = {.lex_state = 24}, + [3406] = {.lex_state = 21}, + [3407] = {.lex_state = 24}, + [3408] = {.lex_state = 24}, + [3409] = {.lex_state = 21}, + [3410] = {.lex_state = 24}, + [3411] = {.lex_state = 21}, + [3412] = {.lex_state = 21}, + [3413] = {.lex_state = 24}, + [3414] = {.lex_state = 89}, + [3415] = {.lex_state = 710}, + [3416] = {.lex_state = 89}, + [3417] = {.lex_state = 90}, + [3418] = {.lex_state = 389}, + [3419] = {.lex_state = 775}, + [3420] = {.lex_state = 389}, + [3421] = {.lex_state = 389}, + [3422] = {.lex_state = 94}, + [3423] = {.lex_state = 24}, + [3424] = {.lex_state = 24}, + [3425] = {.lex_state = 24}, + [3426] = {.lex_state = 94}, + [3427] = {.lex_state = 24}, + [3428] = {.lex_state = 24}, + [3429] = {.lex_state = 389}, + [3430] = {.lex_state = 24}, + [3431] = {.lex_state = 24}, + [3432] = {.lex_state = 24}, + [3433] = {.lex_state = 24}, + [3434] = {.lex_state = 24}, + [3435] = {.lex_state = 711}, + [3436] = {.lex_state = 24}, + [3437] = {.lex_state = 94}, + [3438] = {.lex_state = 94}, + [3439] = {.lex_state = 24}, + [3440] = {.lex_state = 775}, + [3441] = {.lex_state = 389}, + [3442] = {.lex_state = 24}, + [3443] = {.lex_state = 14, .external_lex_state = 2}, + [3444] = {.lex_state = 14, .external_lex_state = 2}, + [3445] = {.lex_state = 14, .external_lex_state = 2}, + [3446] = {.lex_state = 90}, + [3447] = {.lex_state = 14, .external_lex_state = 2}, + [3448] = {.lex_state = 710}, + [3449] = {.lex_state = 90}, + [3450] = {.lex_state = 90}, + [3451] = {.lex_state = 24}, + [3452] = {.lex_state = 14, .external_lex_state = 2}, + [3453] = {.lex_state = 14, .external_lex_state = 2}, + [3454] = {.lex_state = 14, .external_lex_state = 2}, + [3455] = {.lex_state = 14, .external_lex_state = 2}, + [3456] = {.lex_state = 71}, + [3457] = {.lex_state = 710}, + [3458] = {.lex_state = 14, .external_lex_state = 2}, + [3459] = {.lex_state = 14, .external_lex_state = 2}, + [3460] = {.lex_state = 14, .external_lex_state = 2}, + [3461] = {.lex_state = 14, .external_lex_state = 2}, + [3462] = {.lex_state = 14, .external_lex_state = 2}, + [3463] = {.lex_state = 24}, + [3464] = {.lex_state = 14, .external_lex_state = 2}, + [3465] = {.lex_state = 14, .external_lex_state = 2}, + [3466] = {.lex_state = 14, .external_lex_state = 2}, + [3467] = {.lex_state = 14, .external_lex_state = 2}, + [3468] = {.lex_state = 711}, + [3469] = {.lex_state = 14, .external_lex_state = 2}, + [3470] = {.lex_state = 389}, + [3471] = {.lex_state = 14, .external_lex_state = 2}, + [3472] = {.lex_state = 90}, + [3473] = {.lex_state = 14, .external_lex_state = 2}, + [3474] = {.lex_state = 14, .external_lex_state = 2}, + [3475] = {.lex_state = 24}, + [3476] = {.lex_state = 24}, + [3477] = {.lex_state = 14, .external_lex_state = 2}, + [3478] = {.lex_state = 14, .external_lex_state = 2}, + [3479] = {.lex_state = 226, .external_lex_state = 2}, + [3480] = {.lex_state = 24}, + [3481] = {.lex_state = 710}, + [3482] = {.lex_state = 99}, + [3483] = {.lex_state = 24}, + [3484] = {.lex_state = 24}, + [3485] = {.lex_state = 99}, + [3486] = {.lex_state = 24}, + [3487] = {.lex_state = 24}, + [3488] = {.lex_state = 24}, + [3489] = {.lex_state = 24}, + [3490] = {.lex_state = 24}, + [3491] = {.lex_state = 24}, + [3492] = {.lex_state = 24}, + [3493] = {.lex_state = 24}, + [3494] = {.lex_state = 24}, + [3495] = {.lex_state = 24}, + [3496] = {.lex_state = 24}, + [3497] = {.lex_state = 24}, + [3498] = {.lex_state = 24}, + [3499] = {.lex_state = 71}, + [3500] = {.lex_state = 24}, + [3501] = {.lex_state = 24}, + [3502] = {.lex_state = 24}, + [3503] = {.lex_state = 24}, + [3504] = {.lex_state = 24}, + [3505] = {.lex_state = 24}, + [3506] = {.lex_state = 24}, + [3507] = {.lex_state = 24}, + [3508] = {.lex_state = 24}, + [3509] = {.lex_state = 710}, + [3510] = {.lex_state = 24}, + [3511] = {.lex_state = 24}, + [3512] = {.lex_state = 14, .external_lex_state = 2}, + [3513] = {.lex_state = 710}, + [3514] = {.lex_state = 24}, + [3515] = {.lex_state = 24}, + [3516] = {.lex_state = 24}, + [3517] = {.lex_state = 24}, + [3518] = {.lex_state = 24}, + [3519] = {.lex_state = 710}, + [3520] = {.lex_state = 24}, + [3521] = {.lex_state = 14, .external_lex_state = 2}, + [3522] = {.lex_state = 24}, + [3523] = {.lex_state = 24}, + [3524] = {.lex_state = 24}, + [3525] = {.lex_state = 24}, + [3526] = {.lex_state = 24}, + [3527] = {.lex_state = 24}, + [3528] = {.lex_state = 24}, + [3529] = {.lex_state = 710}, + [3530] = {.lex_state = 710}, + [3531] = {.lex_state = 697}, + [3532] = {.lex_state = 24}, + [3533] = {.lex_state = 710}, + [3534] = {.lex_state = 710}, + [3535] = {.lex_state = 717}, + [3536] = {.lex_state = 717}, + [3537] = {.lex_state = 717}, + [3538] = {.lex_state = 710}, + [3539] = {.lex_state = 717}, + [3540] = {.lex_state = 717}, + [3541] = {.lex_state = 24}, + [3542] = {.lex_state = 717}, + [3543] = {.lex_state = 99}, + [3544] = {.lex_state = 710}, + [3545] = {.lex_state = 710}, + [3546] = {.lex_state = 717}, + [3547] = {.lex_state = 99}, + [3548] = {.lex_state = 99}, + [3549] = {.lex_state = 717}, + [3550] = {.lex_state = 710}, + [3551] = {.lex_state = 14, .external_lex_state = 2}, + [3552] = {.lex_state = 717}, + [3553] = {.lex_state = 14, .external_lex_state = 2}, + [3554] = {.lex_state = 710}, + [3555] = {.lex_state = 717}, + [3556] = {.lex_state = 99}, + [3557] = {.lex_state = 24}, + [3558] = {.lex_state = 710}, + [3559] = {.lex_state = 24}, + [3560] = {.lex_state = 709}, + [3561] = {.lex_state = 99}, + [3562] = {.lex_state = 717}, + [3563] = {.lex_state = 710}, + [3564] = {.lex_state = 717}, + [3565] = {.lex_state = 717}, + [3566] = {.lex_state = 717}, + [3567] = {.lex_state = 717}, + [3568] = {.lex_state = 717}, + [3569] = {.lex_state = 697}, + [3570] = {.lex_state = 717}, + [3571] = {.lex_state = 717}, + [3572] = {.lex_state = 717}, + [3573] = {.lex_state = 233, .external_lex_state = 2}, + [3574] = {.lex_state = 717}, + [3575] = {.lex_state = 717}, + [3576] = {.lex_state = 710}, + [3577] = {.lex_state = 717}, + [3578] = {.lex_state = 717}, + [3579] = {.lex_state = 1832}, + [3580] = {.lex_state = 717}, + [3581] = {.lex_state = 717}, + [3582] = {.lex_state = 14, .external_lex_state = 2}, + [3583] = {.lex_state = 14, .external_lex_state = 2}, + [3584] = {.lex_state = 99}, + [3585] = {.lex_state = 14, .external_lex_state = 2}, + [3586] = {.lex_state = 14, .external_lex_state = 2}, + [3587] = {.lex_state = 1834}, + [3588] = {.lex_state = 24}, + [3589] = {.lex_state = 1837}, + [3590] = {.lex_state = 24}, + [3591] = {.lex_state = 14, .external_lex_state = 2}, + [3592] = {.lex_state = 1833}, + [3593] = {.lex_state = 1835}, + [3594] = {.lex_state = 24}, + [3595] = {.lex_state = 260, .external_lex_state = 2}, + [3596] = {.lex_state = 99}, + [3597] = {.lex_state = 24}, + [3598] = {.lex_state = 99}, + [3599] = {.lex_state = 24}, + [3600] = {.lex_state = 99}, + [3601] = {.lex_state = 14, .external_lex_state = 2}, + [3602] = {.lex_state = 24}, + [3603] = {.lex_state = 24}, + [3604] = {.lex_state = 24}, + [3605] = {.lex_state = 260, .external_lex_state = 2}, + [3606] = {.lex_state = 14, .external_lex_state = 2}, + [3607] = {.lex_state = 24}, + [3608] = {.lex_state = 697}, + [3609] = {.lex_state = 260, .external_lex_state = 2}, + [3610] = {.lex_state = 260, .external_lex_state = 2}, + [3611] = {.lex_state = 14, .external_lex_state = 2}, + [3612] = {.lex_state = 260, .external_lex_state = 2}, + [3613] = {.lex_state = 697}, + [3614] = {.lex_state = 14, .external_lex_state = 2}, + [3615] = {.lex_state = 1835}, + [3616] = {.lex_state = 24}, + [3617] = {.lex_state = 711}, + [3618] = {.lex_state = 231, .external_lex_state = 2}, + [3619] = {.lex_state = 24}, + [3620] = {.lex_state = 242, .external_lex_state = 2}, + [3621] = {.lex_state = 24}, + [3622] = {.lex_state = 45, .external_lex_state = 2}, + [3623] = {.lex_state = 24}, + [3624] = {.lex_state = 45, .external_lex_state = 2}, + [3625] = {.lex_state = 24}, + [3626] = {.lex_state = 24}, + [3627] = {.lex_state = 24}, + [3628] = {.lex_state = 24}, + [3629] = {.lex_state = 24}, + [3630] = {.lex_state = 1836}, + [3631] = {.lex_state = 45, .external_lex_state = 2}, + [3632] = {.lex_state = 1836}, + [3633] = {.lex_state = 45, .external_lex_state = 2}, + [3634] = {.lex_state = 45, .external_lex_state = 2}, + [3635] = {.lex_state = 1838}, + [3636] = {.lex_state = 23}, + [3637] = {.lex_state = 45, .external_lex_state = 2}, + [3638] = {.lex_state = 710}, + [3639] = {.lex_state = 23}, + [3640] = {.lex_state = 45, .external_lex_state = 2}, + [3641] = {.lex_state = 697}, + [3642] = {.lex_state = 45, .external_lex_state = 2}, + [3643] = {.lex_state = 45, .external_lex_state = 2}, + [3644] = {.lex_state = 45, .external_lex_state = 2}, + [3645] = {.lex_state = 24}, + [3646] = {.lex_state = 45, .external_lex_state = 2}, + [3647] = {.lex_state = 45, .external_lex_state = 2}, + [3648] = {.lex_state = 45, .external_lex_state = 2}, + [3649] = {.lex_state = 45, .external_lex_state = 2}, + [3650] = {.lex_state = 45, .external_lex_state = 2}, + [3651] = {.lex_state = 45, .external_lex_state = 2}, + [3652] = {.lex_state = 45, .external_lex_state = 2}, + [3653] = {.lex_state = 45, .external_lex_state = 2}, + [3654] = {.lex_state = 45, .external_lex_state = 2}, + [3655] = {.lex_state = 45, .external_lex_state = 2}, + [3656] = {.lex_state = 45, .external_lex_state = 2}, + [3657] = {.lex_state = 45, .external_lex_state = 2}, + [3658] = {.lex_state = 697}, + [3659] = {.lex_state = 45, .external_lex_state = 2}, + [3660] = {.lex_state = 45, .external_lex_state = 2}, + [3661] = {.lex_state = 45, .external_lex_state = 2}, + [3662] = {.lex_state = 98}, + [3663] = {.lex_state = 45, .external_lex_state = 2}, + [3664] = {.lex_state = 98}, + [3665] = {.lex_state = 1836}, + [3666] = {.lex_state = 710}, + [3667] = {.lex_state = 45, .external_lex_state = 2}, + [3668] = {.lex_state = 64}, + [3669] = {.lex_state = 24}, + [3670] = {.lex_state = 45, .external_lex_state = 2}, + [3671] = {.lex_state = 45, .external_lex_state = 2}, + [3672] = {.lex_state = 45, .external_lex_state = 2}, + [3673] = {.lex_state = 98}, + [3674] = {.lex_state = 24}, + [3675] = {.lex_state = 45, .external_lex_state = 2}, + [3676] = {.lex_state = 45, .external_lex_state = 2}, + [3677] = {.lex_state = 45, .external_lex_state = 2}, + [3678] = {.lex_state = 45, .external_lex_state = 2}, + [3679] = {.lex_state = 45, .external_lex_state = 2}, + [3680] = {.lex_state = 24}, + [3681] = {.lex_state = 24}, + [3682] = {.lex_state = 1836}, + [3683] = {.lex_state = 709}, + [3684] = {.lex_state = 709}, + [3685] = {.lex_state = 98}, + [3686] = {.lex_state = 24}, + [3687] = {.lex_state = 45, .external_lex_state = 2}, + [3688] = {.lex_state = 45, .external_lex_state = 2}, + [3689] = {.lex_state = 23}, + [3690] = {.lex_state = 45, .external_lex_state = 2}, + [3691] = {.lex_state = 45, .external_lex_state = 2}, + [3692] = {.lex_state = 98}, + [3693] = {.lex_state = 1836}, + [3694] = {.lex_state = 24}, + [3695] = {.lex_state = 23}, + [3696] = {.lex_state = 23}, + [3697] = {.lex_state = 24}, + [3698] = {.lex_state = 45, .external_lex_state = 2}, + [3699] = {.lex_state = 45, .external_lex_state = 2}, + [3700] = {.lex_state = 45, .external_lex_state = 2}, + [3701] = {.lex_state = 64}, + [3702] = {.lex_state = 45, .external_lex_state = 2}, + [3703] = {.lex_state = 45, .external_lex_state = 2}, + [3704] = {.lex_state = 45, .external_lex_state = 2}, + [3705] = {.lex_state = 45, .external_lex_state = 2}, + [3706] = {.lex_state = 45, .external_lex_state = 2}, + [3707] = {.lex_state = 45, .external_lex_state = 2}, + [3708] = {.lex_state = 1838}, + [3709] = {.lex_state = 24}, + [3710] = {.lex_state = 45, .external_lex_state = 2}, + [3711] = {.lex_state = 24}, + [3712] = {.lex_state = 45, .external_lex_state = 2}, + [3713] = {.lex_state = 697}, + [3714] = {.lex_state = 697}, + [3715] = {.lex_state = 697}, + [3716] = {.lex_state = 697}, + [3717] = {.lex_state = 697}, + [3718] = {.lex_state = 697}, + [3719] = {.lex_state = 697}, + [3720] = {.lex_state = 697}, + [3721] = {.lex_state = 697}, + [3722] = {.lex_state = 697}, + [3723] = {.lex_state = 1839}, + [3724] = {.lex_state = 697}, + [3725] = {.lex_state = 97}, + [3726] = {.lex_state = 697}, + [3727] = {.lex_state = 97}, + [3728] = {.lex_state = 697}, + [3729] = {.lex_state = 697}, + [3730] = {.lex_state = 1839}, + [3731] = {.lex_state = 697}, + [3732] = {.lex_state = 697}, + [3733] = {.lex_state = 697}, + [3734] = {.lex_state = 97}, + [3735] = {.lex_state = 697}, + [3736] = {.lex_state = 697}, + [3737] = {.lex_state = 743}, + [3738] = {.lex_state = 697}, + [3739] = {.lex_state = 743}, + [3740] = {.lex_state = 1839}, + [3741] = {.lex_state = 743}, + [3742] = {.lex_state = 697}, + [3743] = {.lex_state = 697}, + [3744] = {.lex_state = 697}, + [3745] = {.lex_state = 697}, + [3746] = {.lex_state = 697}, + [3747] = {.lex_state = 697}, + [3748] = {.lex_state = 697}, + [3749] = {.lex_state = 697}, + [3750] = {.lex_state = 697}, + [3751] = {.lex_state = 697}, + [3752] = {.lex_state = 697}, + [3753] = {.lex_state = 97}, + [3754] = {.lex_state = 697}, + [3755] = {.lex_state = 697}, + [3756] = {.lex_state = 697}, + [3757] = {.lex_state = 1839}, + [3758] = {.lex_state = 697}, + [3759] = {.lex_state = 697}, + [3760] = {.lex_state = 697}, + [3761] = {.lex_state = 1839}, + [3762] = {.lex_state = 1839}, + [3763] = {.lex_state = 697}, + [3764] = {.lex_state = 697}, + [3765] = {.lex_state = 1839}, + [3766] = {.lex_state = 697}, + [3767] = {.lex_state = 697}, + [3768] = {.lex_state = 697}, + [3769] = {.lex_state = 697}, + [3770] = {.lex_state = 697}, + [3771] = {.lex_state = 743}, + [3772] = {.lex_state = 743}, + [3773] = {.lex_state = 743}, + [3774] = {.lex_state = 697}, + [3775] = {.lex_state = 1839}, + [3776] = {.lex_state = 697}, + [3777] = {.lex_state = 697}, + [3778] = {.lex_state = 1839}, + [3779] = {.lex_state = 710}, + [3780] = {.lex_state = 697}, + [3781] = {.lex_state = 697}, + [3782] = {.lex_state = 697}, + [3783] = {.lex_state = 697}, + [3784] = {.lex_state = 697}, + [3785] = {.lex_state = 697}, + [3786] = {.lex_state = 697}, + [3787] = {.lex_state = 697}, + [3788] = {.lex_state = 743}, + [3789] = {.lex_state = 697}, + [3790] = {.lex_state = 697}, + [3791] = {.lex_state = 697}, + [3792] = {.lex_state = 697}, + [3793] = {.lex_state = 697}, + [3794] = {.lex_state = 697}, + [3795] = {.lex_state = 697}, + [3796] = {.lex_state = 697}, + [3797] = {.lex_state = 697}, + [3798] = {.lex_state = 743}, + [3799] = {.lex_state = 697}, + [3800] = {.lex_state = 697}, + [3801] = {.lex_state = 743}, + [3802] = {.lex_state = 697}, + [3803] = {.lex_state = 697}, + [3804] = {.lex_state = 697}, + [3805] = {.lex_state = 697}, + [3806] = {.lex_state = 697}, + [3807] = {.lex_state = 697}, + [3808] = {.lex_state = 743}, + [3809] = {.lex_state = 697}, + [3810] = {.lex_state = 697}, + [3811] = {.lex_state = 697}, + [3812] = {.lex_state = 697}, + [3813] = {.lex_state = 697}, + [3814] = {.lex_state = 743}, + [3815] = {.lex_state = 743}, + [3816] = {.lex_state = 697}, + [3817] = {.lex_state = 697}, + [3818] = {.lex_state = 743}, + [3819] = {.lex_state = 1839}, + [3820] = {.lex_state = 710}, + [3821] = {.lex_state = 697}, + [3822] = {.lex_state = 697}, + [3823] = {.lex_state = 697}, + [3824] = {.lex_state = 743}, + [3825] = {.lex_state = 697}, + [3826] = {.lex_state = 697}, + [3827] = {.lex_state = 22}, + [3828] = {.lex_state = 697}, + [3829] = {.lex_state = 697}, + [3830] = {.lex_state = 697}, + [3831] = {.lex_state = 97}, + [3832] = {.lex_state = 697}, + [3833] = {.lex_state = 96}, + [3834] = {.lex_state = 743}, + [3835] = {.lex_state = 1839}, + [3836] = {.lex_state = 697}, + [3837] = {.lex_state = 697}, + [3838] = {.lex_state = 697}, + [3839] = {.lex_state = 697}, + [3840] = {.lex_state = 697}, + [3841] = {.lex_state = 697}, + [3842] = {.lex_state = 1839}, + [3843] = {.lex_state = 697}, + [3844] = {.lex_state = 697}, + [3845] = {.lex_state = 24}, + [3846] = {.lex_state = 24}, + [3847] = {.lex_state = 24}, + [3848] = {.lex_state = 64}, + [3849] = {.lex_state = 24}, + [3850] = {.lex_state = 24}, + [3851] = {.lex_state = 751}, + [3852] = {.lex_state = 751}, + [3853] = {.lex_state = 24}, + [3854] = {.lex_state = 24}, + [3855] = {.lex_state = 64}, + [3856] = {.lex_state = 24}, + [3857] = {.lex_state = 24}, + [3858] = {.lex_state = 64}, + [3859] = {.lex_state = 64}, + [3860] = {.lex_state = 697}, + [3861] = {.lex_state = 24}, + [3862] = {.lex_state = 24}, + [3863] = {.lex_state = 697}, + [3864] = {.lex_state = 64}, + [3865] = {.lex_state = 95}, + [3866] = {.lex_state = 24}, + [3867] = {.lex_state = 64}, + [3868] = {.lex_state = 24}, + [3869] = {.lex_state = 64}, + [3870] = {.lex_state = 64}, + [3871] = {.lex_state = 64}, + [3872] = {.lex_state = 697}, + [3873] = {.lex_state = 64}, + [3874] = {.lex_state = 64}, + [3875] = {.lex_state = 64}, + [3876] = {.lex_state = 697}, + [3877] = {.lex_state = 64}, + [3878] = {.lex_state = 24}, + [3879] = {.lex_state = 24}, + [3880] = {.lex_state = 24}, + [3881] = {.lex_state = 24}, + [3882] = {.lex_state = 24}, + [3883] = {.lex_state = 64}, + [3884] = {.lex_state = 24}, + [3885] = {.lex_state = 64}, + [3886] = {.lex_state = 64}, + [3887] = {.lex_state = 64}, + [3888] = {.lex_state = 64}, + [3889] = {.lex_state = 64}, + [3890] = {.lex_state = 64}, + [3891] = {.lex_state = 24}, + [3892] = {.lex_state = 64}, + [3893] = {.lex_state = 24}, + [3894] = {.lex_state = 24}, + [3895] = {.lex_state = 24}, + [3896] = {.lex_state = 24}, + [3897] = {.lex_state = 24}, + [3898] = {.lex_state = 64}, + [3899] = {.lex_state = 24}, + [3900] = {.lex_state = 24}, + [3901] = {.lex_state = 64}, + [3902] = {.lex_state = 24}, + [3903] = {.lex_state = 697}, + [3904] = {.lex_state = 24}, + [3905] = {.lex_state = 24}, + [3906] = {.lex_state = 24}, + [3907] = {.lex_state = 24}, + [3908] = {.lex_state = 697}, + [3909] = {.lex_state = 64}, + [3910] = {.lex_state = 24}, + [3911] = {.lex_state = 24}, + [3912] = {.lex_state = 64}, + [3913] = {.lex_state = 24}, + [3914] = {.lex_state = 64}, + [3915] = {.lex_state = 697}, + [3916] = {.lex_state = 1840}, + [3917] = {.lex_state = 709}, + [3918] = {.lex_state = 697}, + [3919] = {.lex_state = 1840}, + [3920] = {.lex_state = 697}, + [3921] = {.lex_state = 697}, + [3922] = {.lex_state = 709}, + [3923] = {.lex_state = 709}, + [3924] = {.lex_state = 709}, + [3925] = {.lex_state = 751}, + [3926] = {.lex_state = 709}, + [3927] = {.lex_state = 1840}, + [3928] = {.lex_state = 709}, + [3929] = {.lex_state = 697}, + [3930] = {.lex_state = 1840}, + [3931] = {.lex_state = 709}, + [3932] = {.lex_state = 751}, + [3933] = {.lex_state = 697}, + [3934] = {.lex_state = 697}, + [3935] = {.lex_state = 697}, + [3936] = {.lex_state = 697}, + [3937] = {.lex_state = 697}, + [3938] = {.lex_state = 697}, + [3939] = {.lex_state = 709}, + [3940] = {.lex_state = 697}, + [3941] = {.lex_state = 1840}, + [3942] = {.lex_state = 751}, + [3943] = {.lex_state = 709}, + [3944] = {.lex_state = 709}, + [3945] = {.lex_state = 1840}, + [3946] = {.lex_state = 709}, + [3947] = {.lex_state = 1840}, + [3948] = {.lex_state = 709}, + [3949] = {.lex_state = 1840}, + [3950] = {.lex_state = 1840}, + [3951] = {.lex_state = 751}, + [3952] = {.lex_state = 751}, + [3953] = {.lex_state = 64}, + [3954] = {.lex_state = 751}, + [3955] = {.lex_state = 64}, + [3956] = {.lex_state = 64}, + [3957] = {.lex_state = 64}, + [3958] = {.lex_state = 64}, + [3959] = {.lex_state = 64}, + [3960] = {.lex_state = 64}, + [3961] = {.lex_state = 697}, + [3962] = {.lex_state = 751}, + [3963] = {.lex_state = 64}, + [3964] = {.lex_state = 64}, + [3965] = {.lex_state = 64}, + [3966] = {.lex_state = 64}, + [3967] = {.lex_state = 64}, + [3968] = {.lex_state = 710}, + [3969] = {.lex_state = 697}, + [3970] = {.lex_state = 751}, + [3971] = {.lex_state = 751}, + [3972] = {.lex_state = 751}, + [3973] = {.lex_state = 751}, + [3974] = {.lex_state = 697}, + [3975] = {.lex_state = 697}, + [3976] = {.lex_state = 697}, + [3977] = {.lex_state = 697}, + [3978] = {.lex_state = 697}, + [3979] = {.lex_state = 710}, + [3980] = {.lex_state = 779}, + [3981] = {.lex_state = 776}, + [3982] = {.lex_state = 779}, + [3983] = {.lex_state = 776}, + [3984] = {.lex_state = 776}, + [3985] = {.lex_state = 776}, + [3986] = {.lex_state = 778}, + [3987] = {.lex_state = 789}, + [3988] = {.lex_state = 785}, + [3989] = {.lex_state = 785}, + [3990] = {.lex_state = 791}, + [3991] = {.lex_state = 789}, + [3992] = {.lex_state = 778}, + [3993] = {.lex_state = 791}, + [3994] = {.lex_state = 778}, + [3995] = {.lex_state = 793}, + [3996] = {.lex_state = 777}, + [3997] = {.lex_state = 777}, + [3998] = {.lex_state = 793}, + [3999] = {.lex_state = 786}, + [4000] = {.lex_state = 790}, + [4001] = {.lex_state = 777}, + [4002] = {.lex_state = 795}, + [4003] = {.lex_state = 791}, + [4004] = {.lex_state = 791}, + [4005] = {.lex_state = 793}, + [4006] = {.lex_state = 793}, + [4007] = {.lex_state = 777}, + [4008] = {.lex_state = 793}, + [4009] = {.lex_state = 787}, + [4010] = {.lex_state = 793}, + [4011] = {.lex_state = 778}, + [4012] = {.lex_state = 778}, + [4013] = {.lex_state = 778}, + [4014] = {.lex_state = 778}, + [4015] = {.lex_state = 778}, + [4016] = {.lex_state = 710}, + [4017] = {.lex_state = 710}, + [4018] = {.lex_state = 794}, + [4019] = {.lex_state = 795}, + [4020] = {.lex_state = 797}, + [4021] = {.lex_state = 790}, + [4022] = {.lex_state = 797}, + [4023] = {.lex_state = 793}, + [4024] = {.lex_state = 792}, + [4025] = {.lex_state = 778}, + [4026] = {.lex_state = 64}, + [4027] = {.lex_state = 778}, + [4028] = {.lex_state = 778}, + [4029] = {.lex_state = 778}, + [4030] = {.lex_state = 787}, + [4031] = {.lex_state = 793}, + [4032] = {.lex_state = 792}, + [4033] = {.lex_state = 793}, + [4034] = {.lex_state = 786}, + [4035] = {.lex_state = 49}, + [4036] = {.lex_state = 710}, + [4037] = {.lex_state = 710}, + [4038] = {.lex_state = 793}, + [4039] = {.lex_state = 794}, + [4040] = {.lex_state = 49}, + [4041] = {.lex_state = 799}, + [4042] = {.lex_state = 786}, + [4043] = {.lex_state = 788}, + [4044] = {.lex_state = 799}, + [4045] = {.lex_state = 786}, + [4046] = {.lex_state = 799}, + [4047] = {.lex_state = 799}, + [4048] = {.lex_state = 792}, + [4049] = {.lex_state = 794}, + [4050] = {.lex_state = 794}, + [4051] = {.lex_state = 794}, + [4052] = {.lex_state = 794}, + [4053] = {.lex_state = 796}, + [4054] = {.lex_state = 50}, + [4055] = {.lex_state = 52}, + [4056] = {.lex_state = 64}, + [4057] = {.lex_state = 786}, + [4058] = {.lex_state = 797}, + [4059] = {.lex_state = 799}, + [4060] = {.lex_state = 799}, + [4061] = {.lex_state = 797}, + [4062] = {.lex_state = 48}, + [4063] = {.lex_state = 792}, + [4064] = {.lex_state = 48}, + [4065] = {.lex_state = 799}, + [4066] = {.lex_state = 49}, + [4067] = {.lex_state = 786}, + [4068] = {.lex_state = 798}, + [4069] = {.lex_state = 786}, + [4070] = {.lex_state = 801}, + [4071] = {.lex_state = 794}, + [4072] = {.lex_state = 53}, + [4073] = {.lex_state = 53}, + [4074] = {.lex_state = 794}, + [4075] = {.lex_state = 786}, + [4076] = {.lex_state = 794}, + [4077] = {.lex_state = 799}, + [4078] = {.lex_state = 799}, + [4079] = {.lex_state = 799}, + [4080] = {.lex_state = 786}, + [4081] = {.lex_state = 799}, + [4082] = {.lex_state = 798}, + [4083] = {.lex_state = 796}, + [4084] = {.lex_state = 794}, + [4085] = {.lex_state = 788}, + [4086] = {.lex_state = 799}, + [4087] = {.lex_state = 803}, + [4088] = {.lex_state = 49}, + [4089] = {.lex_state = 794}, + [4090] = {.lex_state = 786}, + [4091] = {.lex_state = 54}, + [4092] = {.lex_state = 49}, + [4093] = {.lex_state = 49}, + [4094] = {.lex_state = 33}, + [4095] = {.lex_state = 54}, + [4096] = {.lex_state = 33}, + [4097] = {.lex_state = 786}, + [4098] = {.lex_state = 786}, + [4099] = {.lex_state = 800}, + [4100] = {.lex_state = 33}, + [4101] = {.lex_state = 54}, + [4102] = {.lex_state = 710}, + [4103] = {.lex_state = 710}, + [4104] = {.lex_state = 782}, + [4105] = {.lex_state = 710}, + [4106] = {.lex_state = 54}, + [4107] = {.lex_state = 798}, + [4108] = {.lex_state = 54}, + [4109] = {.lex_state = 805}, + [4110] = {.lex_state = 805}, + [4111] = {.lex_state = 51}, + [4112] = {.lex_state = 800}, + [4113] = {.lex_state = 794}, + [4114] = {.lex_state = 798}, + [4115] = {.lex_state = 801}, + [4116] = {.lex_state = 800}, + [4117] = {.lex_state = 800}, + [4118] = {.lex_state = 33}, + [4119] = {.lex_state = 782}, + [4120] = {.lex_state = 782}, + [4121] = {.lex_state = 782}, + [4122] = {.lex_state = 803}, + [4123] = {.lex_state = 782}, + [4124] = {.lex_state = 56}, + [4125] = {.lex_state = 782}, + [4126] = {.lex_state = 800}, + [4127] = {.lex_state = 800}, + [4128] = {.lex_state = 33}, + [4129] = {.lex_state = 33}, + [4130] = {.lex_state = 57}, + [4131] = {.lex_state = 802}, + [4132] = {.lex_state = 57}, + [4133] = {.lex_state = 822}, + [4134] = {.lex_state = 710}, + [4135] = {.lex_state = 33}, + [4136] = {.lex_state = 710}, + [4137] = {.lex_state = 802}, + [4138] = {.lex_state = 805}, + [4139] = {.lex_state = 786}, + [4140] = {.lex_state = 800}, + [4141] = {.lex_state = 822}, + [4142] = {.lex_state = 822}, + [4143] = {.lex_state = 802}, + [4144] = {.lex_state = 802}, + [4145] = {.lex_state = 805}, + [4146] = {.lex_state = 786}, + [4147] = {.lex_state = 786}, + [4148] = {.lex_state = 782}, + [4149] = {.lex_state = 782}, + [4150] = {.lex_state = 782}, + [4151] = {.lex_state = 782}, + [4152] = {.lex_state = 802}, + [4153] = {.lex_state = 802}, + [4154] = {.lex_state = 802}, + [4155] = {.lex_state = 800}, + [4156] = {.lex_state = 710}, + [4157] = {.lex_state = 802}, + [4158] = {.lex_state = 807}, + [4159] = {.lex_state = 33}, + [4160] = {.lex_state = 804}, + [4161] = {.lex_state = 710}, + [4162] = {.lex_state = 807}, + [4163] = {.lex_state = 807}, + [4164] = {.lex_state = 33}, + [4165] = {.lex_state = 33}, + [4166] = {.lex_state = 802}, + [4167] = {.lex_state = 807}, + [4168] = {.lex_state = 807}, + [4169] = {.lex_state = 802}, + [4170] = {.lex_state = 807}, + [4171] = {.lex_state = 807}, + [4172] = {.lex_state = 802}, + [4173] = {.lex_state = 807}, + [4174] = {.lex_state = 802}, + [4175] = {.lex_state = 802}, + [4176] = {.lex_state = 807}, + [4177] = {.lex_state = 802}, + [4178] = {.lex_state = 802}, + [4179] = {.lex_state = 802}, + [4180] = {.lex_state = 802}, + [4181] = {.lex_state = 802}, + [4182] = {.lex_state = 802}, + [4183] = {.lex_state = 802}, + [4184] = {.lex_state = 802}, + [4185] = {.lex_state = 802}, + [4186] = {.lex_state = 802}, + [4187] = {.lex_state = 802}, + [4188] = {.lex_state = 802}, + [4189] = {.lex_state = 802}, + [4190] = {.lex_state = 802}, + [4191] = {.lex_state = 802}, + [4192] = {.lex_state = 802}, + [4193] = {.lex_state = 800}, + [4194] = {.lex_state = 710}, + [4195] = {.lex_state = 33}, + [4196] = {.lex_state = 802}, + [4197] = {.lex_state = 800}, + [4198] = {.lex_state = 802}, + [4199] = {.lex_state = 782}, + [4200] = {.lex_state = 782}, + [4201] = {.lex_state = 800}, + [4202] = {.lex_state = 33}, + [4203] = {.lex_state = 800}, + [4204] = {.lex_state = 33}, + [4205] = {.lex_state = 822}, + [4206] = {.lex_state = 710}, + [4207] = {.lex_state = 822}, + [4208] = {.lex_state = 802}, + [4209] = {.lex_state = 786}, + [4210] = {.lex_state = 265, .external_lex_state = 2}, + [4211] = {.lex_state = 807}, + [4212] = {.lex_state = 33}, + [4213] = {.lex_state = 807}, + [4214] = {.lex_state = 786}, + [4215] = {.lex_state = 710}, + [4216] = {.lex_state = 802}, + [4217] = {.lex_state = 802}, + [4218] = {.lex_state = 807}, + [4219] = {.lex_state = 822}, + [4220] = {.lex_state = 807}, + [4221] = {.lex_state = 265, .external_lex_state = 2}, + [4222] = {.lex_state = 807}, + [4223] = {.lex_state = 710}, + [4224] = {.lex_state = 55}, + [4225] = {.lex_state = 807}, + [4226] = {.lex_state = 807}, + [4227] = {.lex_state = 710}, + [4228] = {.lex_state = 807}, + [4229] = {.lex_state = 807}, + [4230] = {.lex_state = 55}, + [4231] = {.lex_state = 822}, + [4232] = {.lex_state = 806}, + [4233] = {.lex_state = 802}, + [4234] = {.lex_state = 786}, + [4235] = {.lex_state = 33}, + [4236] = {.lex_state = 822}, + [4237] = {.lex_state = 802}, + [4238] = {.lex_state = 33}, + [4239] = {.lex_state = 33}, + [4240] = {.lex_state = 786}, + [4241] = {.lex_state = 33}, + [4242] = {.lex_state = 802}, + [4243] = {.lex_state = 33}, + [4244] = {.lex_state = 802}, + [4245] = {.lex_state = 786}, + [4246] = {.lex_state = 802}, + [4247] = {.lex_state = 55}, + [4248] = {.lex_state = 33}, + [4249] = {.lex_state = 33}, + [4250] = {.lex_state = 806}, + [4251] = {.lex_state = 802}, + [4252] = {.lex_state = 786}, + [4253] = {.lex_state = 786}, + [4254] = {.lex_state = 786}, + [4255] = {.lex_state = 55}, + [4256] = {.lex_state = 802}, + [4257] = {.lex_state = 786}, + [4258] = {.lex_state = 822}, + [4259] = {.lex_state = 802}, + [4260] = {.lex_state = 802}, + [4261] = {.lex_state = 265, .external_lex_state = 2}, + [4262] = {.lex_state = 802}, + [4263] = {.lex_state = 802}, + [4264] = {.lex_state = 802}, + [4265] = {.lex_state = 807}, + [4266] = {.lex_state = 55}, + [4267] = {.lex_state = 802}, + [4268] = {.lex_state = 802}, + [4269] = {.lex_state = 802}, + [4270] = {.lex_state = 786}, + [4271] = {.lex_state = 802}, + [4272] = {.lex_state = 802}, + [4273] = {.lex_state = 786}, + [4274] = {.lex_state = 802}, + [4275] = {.lex_state = 802}, + [4276] = {.lex_state = 55}, + [4277] = {.lex_state = 786}, + [4278] = {.lex_state = 802}, + [4279] = {.lex_state = 802}, + [4280] = {.lex_state = 802}, + [4281] = {.lex_state = 802}, + [4282] = {.lex_state = 802}, + [4283] = {.lex_state = 786}, + [4284] = {.lex_state = 786}, + [4285] = {.lex_state = 711}, + [4286] = {.lex_state = 802}, + [4287] = {.lex_state = 802}, + [4288] = {.lex_state = 804}, + [4289] = {.lex_state = 802}, + [4290] = {.lex_state = 265, .external_lex_state = 2}, + [4291] = {.lex_state = 822}, + [4292] = {.lex_state = 802}, + [4293] = {.lex_state = 802}, + [4294] = {.lex_state = 711}, + [4295] = {.lex_state = 33}, + [4296] = {.lex_state = 33}, + [4297] = {.lex_state = 33}, + [4298] = {.lex_state = 802}, + [4299] = {.lex_state = 70}, + [4300] = {.lex_state = 70}, + [4301] = {.lex_state = 743}, + [4302] = {.lex_state = 743}, + [4303] = {.lex_state = 802}, + [4304] = {.lex_state = 33}, + [4305] = {.lex_state = 808}, + [4306] = {.lex_state = 33}, + [4307] = {.lex_state = 33}, + [4308] = {.lex_state = 70}, + [4309] = {.lex_state = 808}, + [4310] = {.lex_state = 70}, + [4311] = {.lex_state = 808}, + [4312] = {.lex_state = 808}, + [4313] = {.lex_state = 819}, + [4314] = {.lex_state = 61}, + [4315] = {.lex_state = 808}, + [4316] = {.lex_state = 819}, + [4317] = {.lex_state = 808}, + [4318] = {.lex_state = 808}, + [4319] = {.lex_state = 743}, + [4320] = {.lex_state = 743}, + [4321] = {.lex_state = 778}, + [4322] = {.lex_state = 778}, + [4323] = {.lex_state = 743}, + [4324] = {.lex_state = 743}, + [4325] = {.lex_state = 743}, + [4326] = {.lex_state = 743}, + [4327] = {.lex_state = 743}, + [4328] = {.lex_state = 743}, + [4329] = {.lex_state = 743}, + [4330] = {.lex_state = 743}, + [4331] = {.lex_state = 808}, + [4332] = {.lex_state = 743}, + [4333] = {.lex_state = 743}, + [4334] = {.lex_state = 778}, + [4335] = {.lex_state = 778}, + [4336] = {.lex_state = 743}, + [4337] = {.lex_state = 743}, + [4338] = {.lex_state = 743}, + [4339] = {.lex_state = 743}, + [4340] = {.lex_state = 743}, + [4341] = {.lex_state = 743}, + [4342] = {.lex_state = 743}, + [4343] = {.lex_state = 743}, + [4344] = {.lex_state = 743}, + [4345] = {.lex_state = 743}, + [4346] = {.lex_state = 743}, + [4347] = {.lex_state = 743}, + [4348] = {.lex_state = 743}, + [4349] = {.lex_state = 743}, + [4350] = {.lex_state = 743}, + [4351] = {.lex_state = 743}, + [4352] = {.lex_state = 743}, + [4353] = {.lex_state = 743}, + [4354] = {.lex_state = 743}, + [4355] = {.lex_state = 743}, + [4356] = {.lex_state = 743}, + [4357] = {.lex_state = 743}, + [4358] = {.lex_state = 786}, + [4359] = {.lex_state = 743}, + [4360] = {.lex_state = 743}, + [4361] = {.lex_state = 743}, + [4362] = {.lex_state = 786}, + [4363] = {.lex_state = 786}, + [4364] = {.lex_state = 743}, + [4365] = {.lex_state = 786}, + [4366] = {.lex_state = 70}, + [4367] = {.lex_state = 808}, + [4368] = {.lex_state = 70}, + [4369] = {.lex_state = 70}, + [4370] = {.lex_state = 70}, + [4371] = {.lex_state = 70}, + [4372] = {.lex_state = 70}, + [4373] = {.lex_state = 70}, + [4374] = {.lex_state = 70}, + [4375] = {.lex_state = 70}, + [4376] = {.lex_state = 743}, + [4377] = {.lex_state = 743}, + [4378] = {.lex_state = 70}, + [4379] = {.lex_state = 743}, + [4380] = {.lex_state = 786}, + [4381] = {.lex_state = 743}, + [4382] = {.lex_state = 70}, + [4383] = {.lex_state = 711}, + [4384] = {.lex_state = 70}, + [4385] = {.lex_state = 786}, + [4386] = {.lex_state = 62}, + [4387] = {.lex_state = 70}, + [4388] = {.lex_state = 70}, + [4389] = {.lex_state = 70}, + [4390] = {.lex_state = 711}, + [4391] = {.lex_state = 786}, + [4392] = {.lex_state = 70}, + [4393] = {.lex_state = 70}, + [4394] = {.lex_state = 786}, + [4395] = {.lex_state = 823}, + [4396] = {.lex_state = 823}, + [4397] = {.lex_state = 743}, + [4398] = {.lex_state = 743}, + [4399] = {.lex_state = 743}, + [4400] = {.lex_state = 62}, + [4401] = {.lex_state = 823}, + [4402] = {.lex_state = 823}, + [4403] = {.lex_state = 743}, + [4404] = {.lex_state = 743}, + [4405] = {.lex_state = 743}, + [4406] = {.lex_state = 743}, + [4407] = {.lex_state = 743}, + [4408] = {.lex_state = 743}, + [4409] = {.lex_state = 743}, + [4410] = {.lex_state = 711}, + [4411] = {.lex_state = 62}, + [4412] = {.lex_state = 743}, + [4413] = {.lex_state = 743}, + [4414] = {.lex_state = 743}, + [4415] = {.lex_state = 743}, + [4416] = {.lex_state = 743}, + [4417] = {.lex_state = 743}, + [4418] = {.lex_state = 743}, + [4419] = {.lex_state = 743}, + [4420] = {.lex_state = 743}, + [4421] = {.lex_state = 743}, + [4422] = {.lex_state = 743}, + [4423] = {.lex_state = 743}, + [4424] = {.lex_state = 743}, + [4425] = {.lex_state = 743}, + [4426] = {.lex_state = 743}, + [4427] = {.lex_state = 743}, + [4428] = {.lex_state = 743}, + [4429] = {.lex_state = 743}, + [4430] = {.lex_state = 743}, + [4431] = {.lex_state = 743}, + [4432] = {.lex_state = 743}, + [4433] = {.lex_state = 743}, + [4434] = {.lex_state = 743}, + [4435] = {.lex_state = 743}, + [4436] = {.lex_state = 743}, + [4437] = {.lex_state = 743}, + [4438] = {.lex_state = 743}, + [4439] = {.lex_state = 743}, + [4440] = {.lex_state = 743}, + [4441] = {.lex_state = 743}, + [4442] = {.lex_state = 743}, + [4443] = {.lex_state = 743}, + [4444] = {.lex_state = 743}, + [4445] = {.lex_state = 743}, + [4446] = {.lex_state = 743}, + [4447] = {.lex_state = 743}, + [4448] = {.lex_state = 743}, + [4449] = {.lex_state = 743}, + [4450] = {.lex_state = 743}, + [4451] = {.lex_state = 743}, + [4452] = {.lex_state = 743}, + [4453] = {.lex_state = 743}, + [4454] = {.lex_state = 786}, + [4455] = {.lex_state = 743}, + [4456] = {.lex_state = 786}, + [4457] = {.lex_state = 743}, + [4458] = {.lex_state = 743}, + [4459] = {.lex_state = 743}, + [4460] = {.lex_state = 743}, + [4461] = {.lex_state = 743}, + [4462] = {.lex_state = 743}, + [4463] = {.lex_state = 823}, + [4464] = {.lex_state = 778}, + [4465] = {.lex_state = 819}, + [4466] = {.lex_state = 782}, + [4467] = {.lex_state = 807}, + [4468] = {.lex_state = 820}, + [4469] = {.lex_state = 711}, + [4470] = {.lex_state = 819}, + [4471] = {.lex_state = 819}, + [4472] = {.lex_state = 743}, + [4473] = {.lex_state = 743}, + [4474] = {.lex_state = 743}, + [4475] = {.lex_state = 743}, + [4476] = {.lex_state = 743}, + [4477] = {.lex_state = 743}, + [4478] = {.lex_state = 802}, + [4479] = {.lex_state = 743}, + [4480] = {.lex_state = 819}, + [4481] = {.lex_state = 743}, + [4482] = {.lex_state = 743}, + [4483] = {.lex_state = 743}, + [4484] = {.lex_state = 743}, + [4485] = {.lex_state = 743}, + [4486] = {.lex_state = 743}, + [4487] = {.lex_state = 743}, + [4488] = {.lex_state = 743}, + [4489] = {.lex_state = 743}, + [4490] = {.lex_state = 802}, + [4491] = {.lex_state = 806}, + [4492] = {.lex_state = 62}, + [4493] = {.lex_state = 786}, + [4494] = {.lex_state = 743}, + [4495] = {.lex_state = 806}, + [4496] = {.lex_state = 743}, + [4497] = {.lex_state = 70}, + [4498] = {.lex_state = 33}, + [4499] = {.lex_state = 70}, + [4500] = {.lex_state = 743}, + [4501] = {.lex_state = 743}, + [4502] = {.lex_state = 743}, + [4503] = {.lex_state = 58}, + [4504] = {.lex_state = 743}, + [4505] = {.lex_state = 743}, + [4506] = {.lex_state = 15}, + [4507] = {.lex_state = 33}, + [4508] = {.lex_state = 743}, + [4509] = {.lex_state = 743}, + [4510] = {.lex_state = 33}, + [4511] = {.lex_state = 743}, + [4512] = {.lex_state = 743}, + [4513] = {.lex_state = 778}, + [4514] = {.lex_state = 33}, + [4515] = {.lex_state = 742}, + [4516] = {.lex_state = 778}, + [4517] = {.lex_state = 819}, + [4518] = {.lex_state = 782}, + [4519] = {.lex_state = 820}, + [4520] = {.lex_state = 743}, + [4521] = {.lex_state = 33}, + [4522] = {.lex_state = 33}, + [4523] = {.lex_state = 819}, + [4524] = {.lex_state = 743}, + [4525] = {.lex_state = 819}, + [4526] = {.lex_state = 819}, + [4527] = {.lex_state = 745}, + [4528] = {.lex_state = 743}, + [4529] = {.lex_state = 809}, + [4530] = {.lex_state = 810}, + [4531] = {.lex_state = 743}, + [4532] = {.lex_state = 33}, + [4533] = {.lex_state = 33}, + [4534] = {.lex_state = 802}, + [4535] = {.lex_state = 70}, + [4536] = {.lex_state = 743}, + [4537] = {.lex_state = 802}, + [4538] = {.lex_state = 743}, + [4539] = {.lex_state = 743}, + [4540] = {.lex_state = 802}, + [4541] = {.lex_state = 743}, + [4542] = {.lex_state = 808}, + [4543] = {.lex_state = 743}, + [4544] = {.lex_state = 33}, + [4545] = {.lex_state = 70}, + [4546] = {.lex_state = 823}, + [4547] = {.lex_state = 778}, + [4548] = {.lex_state = 778}, + [4549] = {.lex_state = 743}, + [4550] = {.lex_state = 743}, + [4551] = {.lex_state = 823}, + [4552] = {.lex_state = 33}, + [4553] = {.lex_state = 808}, + [4554] = {.lex_state = 808}, + [4555] = {.lex_state = 33}, + [4556] = {.lex_state = 808}, + [4557] = {.lex_state = 745}, + [4558] = {.lex_state = 778}, + [4559] = {.lex_state = 33}, + [4560] = {.lex_state = 823}, + [4561] = {.lex_state = 823}, + [4562] = {.lex_state = 711}, + [4563] = {.lex_state = 711}, + [4564] = {.lex_state = 59}, + [4565] = {.lex_state = 33}, + [4566] = {.lex_state = 778}, + [4567] = {.lex_state = 778}, + [4568] = {.lex_state = 808}, + [4569] = {.lex_state = 33}, + [4570] = {.lex_state = 33}, + [4571] = {.lex_state = 33}, + [4572] = {.lex_state = 33}, + [4573] = {.lex_state = 711}, + [4574] = {.lex_state = 743}, + [4575] = {.lex_state = 743}, + [4576] = {.lex_state = 33}, + [4577] = {.lex_state = 33}, + [4578] = {.lex_state = 33}, + [4579] = {.lex_state = 743}, + [4580] = {.lex_state = 743}, + [4581] = {.lex_state = 823}, + [4582] = {.lex_state = 745}, + [4583] = {.lex_state = 33}, + [4584] = {.lex_state = 819}, + [4585] = {.lex_state = 802}, + [4586] = {.lex_state = 819}, + [4587] = {.lex_state = 808}, + [4588] = {.lex_state = 808}, + [4589] = {.lex_state = 33}, + [4590] = {.lex_state = 33}, + [4591] = {.lex_state = 15}, + [4592] = {.lex_state = 745}, + [4593] = {.lex_state = 33}, + [4594] = {.lex_state = 742}, + [4595] = {.lex_state = 808}, + [4596] = {.lex_state = 782}, + [4597] = {.lex_state = 782}, + [4598] = {.lex_state = 808}, + [4599] = {.lex_state = 743}, + [4600] = {.lex_state = 743}, + [4601] = {.lex_state = 743}, + [4602] = {.lex_state = 808}, + [4603] = {.lex_state = 59}, + [4604] = {.lex_state = 33}, + [4605] = {.lex_state = 745}, + [4606] = {.lex_state = 778}, + [4607] = {.lex_state = 745}, + [4608] = {.lex_state = 745}, + [4609] = {.lex_state = 745}, + [4610] = {.lex_state = 745}, + [4611] = {.lex_state = 745}, + [4612] = {.lex_state = 745}, + [4613] = {.lex_state = 745}, + [4614] = {.lex_state = 743}, + [4615] = {.lex_state = 745}, + [4616] = {.lex_state = 745}, + [4617] = {.lex_state = 745}, + [4618] = {.lex_state = 743}, + [4619] = {.lex_state = 782}, + [4620] = {.lex_state = 743}, + [4621] = {.lex_state = 745}, + [4622] = {.lex_state = 745}, + [4623] = {.lex_state = 745}, + [4624] = {.lex_state = 745}, + [4625] = {.lex_state = 745}, + [4626] = {.lex_state = 745}, + [4627] = {.lex_state = 745}, + [4628] = {.lex_state = 745}, + [4629] = {.lex_state = 745}, + [4630] = {.lex_state = 745}, + [4631] = {.lex_state = 745}, + [4632] = {.lex_state = 745}, + [4633] = {.lex_state = 55}, + [4634] = {.lex_state = 745}, + [4635] = {.lex_state = 86}, + [4636] = {.lex_state = 745}, + [4637] = {.lex_state = 743}, + [4638] = {.lex_state = 808}, + [4639] = {.lex_state = 745}, + [4640] = {.lex_state = 743}, + [4641] = {.lex_state = 745}, + [4642] = {.lex_state = 778}, + [4643] = {.lex_state = 745}, + [4644] = {.lex_state = 742}, + [4645] = {.lex_state = 60}, + [4646] = {.lex_state = 745}, + [4647] = {.lex_state = 745}, + [4648] = {.lex_state = 809}, + [4649] = {.lex_state = 55}, + [4650] = {.lex_state = 745}, + [4651] = {.lex_state = 742}, + [4652] = {.lex_state = 86}, + [4653] = {.lex_state = 743}, + [4654] = {.lex_state = 745}, + [4655] = {.lex_state = 743}, + [4656] = {.lex_state = 745}, + [4657] = {.lex_state = 60}, + [4658] = {.lex_state = 745}, + [4659] = {.lex_state = 745}, + [4660] = {.lex_state = 745}, + [4661] = {.lex_state = 745}, + [4662] = {.lex_state = 745}, + [4663] = {.lex_state = 745}, + [4664] = {.lex_state = 743}, + [4665] = {.lex_state = 55}, + [4666] = {.lex_state = 743}, + [4667] = {.lex_state = 55}, + [4668] = {.lex_state = 745}, + [4669] = {.lex_state = 745}, + [4670] = {.lex_state = 86}, + [4671] = {.lex_state = 55}, + [4672] = {.lex_state = 745}, + [4673] = {.lex_state = 745}, + [4674] = {.lex_state = 782}, + [4675] = {.lex_state = 743}, + [4676] = {.lex_state = 745}, + [4677] = {.lex_state = 745}, + [4678] = {.lex_state = 745}, + [4679] = {.lex_state = 745}, + [4680] = {.lex_state = 745}, + [4681] = {.lex_state = 743}, + [4682] = {.lex_state = 711}, + [4683] = {.lex_state = 86}, + [4684] = {.lex_state = 745}, + [4685] = {.lex_state = 745}, + [4686] = {.lex_state = 742}, + [4687] = {.lex_state = 742}, + [4688] = {.lex_state = 745}, + [4689] = {.lex_state = 745}, + [4690] = {.lex_state = 782}, + [4691] = {.lex_state = 743}, + [4692] = {.lex_state = 745}, + [4693] = {.lex_state = 745}, + [4694] = {.lex_state = 778}, + [4695] = {.lex_state = 711}, + [4696] = {.lex_state = 33}, + [4697] = {.lex_state = 743}, + [4698] = {.lex_state = 745}, + [4699] = {.lex_state = 745}, + [4700] = {.lex_state = 60}, + [4701] = {.lex_state = 745}, + [4702] = {.lex_state = 745}, + [4703] = {.lex_state = 810}, + [4704] = {.lex_state = 743}, + [4705] = {.lex_state = 811}, + [4706] = {.lex_state = 745}, + [4707] = {.lex_state = 15}, + [4708] = {.lex_state = 802}, + [4709] = {.lex_state = 745}, + [4710] = {.lex_state = 743}, + [4711] = {.lex_state = 743}, + [4712] = {.lex_state = 711}, + [4713] = {.lex_state = 745}, + [4714] = {.lex_state = 745}, + [4715] = {.lex_state = 745}, + [4716] = {.lex_state = 745}, + [4717] = {.lex_state = 745}, + [4718] = {.lex_state = 15}, + [4719] = {.lex_state = 811}, + [4720] = {.lex_state = 745}, + [4721] = {.lex_state = 745}, + [4722] = {.lex_state = 70}, + [4723] = {.lex_state = 60}, + [4724] = {.lex_state = 745}, + [4725] = {.lex_state = 60}, + [4726] = {.lex_state = 745}, + [4727] = {.lex_state = 61}, + [4728] = {.lex_state = 743}, + [4729] = {.lex_state = 743}, + [4730] = {.lex_state = 745}, + [4731] = {.lex_state = 70}, + [4732] = {.lex_state = 711}, + [4733] = {.lex_state = 745}, + [4734] = {.lex_state = 745}, + [4735] = {.lex_state = 60}, + [4736] = {.lex_state = 745}, + [4737] = {.lex_state = 70}, + [4738] = {.lex_state = 60}, + [4739] = {.lex_state = 70}, + [4740] = {.lex_state = 86}, + [4741] = {.lex_state = 60}, + [4742] = {.lex_state = 778}, + [4743] = {.lex_state = 55}, + [4744] = {.lex_state = 745}, + [4745] = {.lex_state = 743}, + [4746] = {.lex_state = 15}, + [4747] = {.lex_state = 802}, + [4748] = {.lex_state = 745}, + [4749] = {.lex_state = 15}, + [4750] = {.lex_state = 745}, + [4751] = {.lex_state = 745}, + [4752] = {.lex_state = 33}, + [4753] = {.lex_state = 33}, + [4754] = {.lex_state = 802}, + [4755] = {.lex_state = 745}, + [4756] = {.lex_state = 15}, + [4757] = {.lex_state = 271}, + [4758] = {.lex_state = 33}, + [4759] = {.lex_state = 55}, + [4760] = {.lex_state = 745}, + [4761] = {.lex_state = 745}, + [4762] = {.lex_state = 745}, + [4763] = {.lex_state = 70}, + [4764] = {.lex_state = 745}, + [4765] = {.lex_state = 745}, + [4766] = {.lex_state = 745}, + [4767] = {.lex_state = 745}, + [4768] = {.lex_state = 743}, + [4769] = {.lex_state = 60}, + [4770] = {.lex_state = 55}, + [4771] = {.lex_state = 745}, + [4772] = {.lex_state = 745}, + [4773] = {.lex_state = 745}, + [4774] = {.lex_state = 745}, + [4775] = {.lex_state = 782}, + [4776] = {.lex_state = 70}, + [4777] = {.lex_state = 745}, + [4778] = {.lex_state = 33}, + [4779] = {.lex_state = 745}, + [4780] = {.lex_state = 743}, + [4781] = {.lex_state = 33}, + [4782] = {.lex_state = 745}, + [4783] = {.lex_state = 742}, + [4784] = {.lex_state = 272}, + [4785] = {.lex_state = 33}, + [4786] = {.lex_state = 745}, + [4787] = {.lex_state = 745}, + [4788] = {.lex_state = 742}, + [4789] = {.lex_state = 743}, + [4790] = {.lex_state = 60}, + [4791] = {.lex_state = 745}, + [4792] = {.lex_state = 745}, + [4793] = {.lex_state = 55}, + [4794] = {.lex_state = 742}, + [4795] = {.lex_state = 33}, + [4796] = {.lex_state = 33}, + [4797] = {.lex_state = 742}, + [4798] = {.lex_state = 33}, + [4799] = {.lex_state = 33}, + [4800] = {.lex_state = 33}, + [4801] = {.lex_state = 33}, + [4802] = {.lex_state = 33}, + [4803] = {.lex_state = 33}, + [4804] = {.lex_state = 745}, + [4805] = {.lex_state = 742}, + [4806] = {.lex_state = 33}, + [4807] = {.lex_state = 745}, + [4808] = {.lex_state = 745}, + [4809] = {.lex_state = 745}, + [4810] = {.lex_state = 2}, + [4811] = {.lex_state = 811}, + [4812] = {.lex_state = 811}, + [4813] = {.lex_state = 745}, + [4814] = {.lex_state = 812}, + [4815] = {.lex_state = 2}, + [4816] = {.lex_state = 745}, + [4817] = {.lex_state = 745}, + [4818] = {.lex_state = 812}, + [4819] = {.lex_state = 99}, + [4820] = {.lex_state = 812}, + [4821] = {.lex_state = 33}, + [4822] = {.lex_state = 812}, + [4823] = {.lex_state = 33}, + [4824] = {.lex_state = 275}, + [4825] = {.lex_state = 745}, + [4826] = {.lex_state = 745}, + [4827] = {.lex_state = 745}, + [4828] = {.lex_state = 745}, + [4829] = {.lex_state = 745}, + [4830] = {.lex_state = 745}, + [4831] = {.lex_state = 55}, + [4832] = {.lex_state = 745}, + [4833] = {.lex_state = 745}, + [4834] = {.lex_state = 745}, + [4835] = {.lex_state = 745}, + [4836] = {.lex_state = 745}, + [4837] = {.lex_state = 745}, + [4838] = {.lex_state = 745}, + [4839] = {.lex_state = 745}, + [4840] = {.lex_state = 745}, + [4841] = {.lex_state = 745}, + [4842] = {.lex_state = 745}, + [4843] = {.lex_state = 745}, + [4844] = {.lex_state = 745}, + [4845] = {.lex_state = 745}, + [4846] = {.lex_state = 745}, + [4847] = {.lex_state = 745}, + [4848] = {.lex_state = 745}, + [4849] = {.lex_state = 745}, + [4850] = {.lex_state = 745}, + [4851] = {.lex_state = 745}, + [4852] = {.lex_state = 745}, + [4853] = {.lex_state = 745}, + [4854] = {.lex_state = 745}, + [4855] = {.lex_state = 745}, + [4856] = {.lex_state = 745}, + [4857] = {.lex_state = 745}, + [4858] = {.lex_state = 745}, + [4859] = {.lex_state = 745}, + [4860] = {.lex_state = 745}, + [4861] = {.lex_state = 745}, + [4862] = {.lex_state = 745}, + [4863] = {.lex_state = 745}, + [4864] = {.lex_state = 745}, + [4865] = {.lex_state = 742}, + [4866] = {.lex_state = 745}, + [4867] = {.lex_state = 745}, + [4868] = {.lex_state = 745}, + [4869] = {.lex_state = 745}, + [4870] = {.lex_state = 745}, + [4871] = {.lex_state = 745}, + [4872] = {.lex_state = 742}, + [4873] = {.lex_state = 742}, + [4874] = {.lex_state = 742}, + [4875] = {.lex_state = 745}, + [4876] = {.lex_state = 745}, + [4877] = {.lex_state = 33}, + [4878] = {.lex_state = 33}, + [4879] = {.lex_state = 745}, + [4880] = {.lex_state = 745}, + [4881] = {.lex_state = 745}, + [4882] = {.lex_state = 745}, + [4883] = {.lex_state = 745}, + [4884] = {.lex_state = 33}, + [4885] = {.lex_state = 33}, + [4886] = {.lex_state = 745}, + [4887] = {.lex_state = 745}, + [4888] = {.lex_state = 745}, + [4889] = {.lex_state = 745}, + [4890] = {.lex_state = 745}, + [4891] = {.lex_state = 745}, + [4892] = {.lex_state = 745}, + [4893] = {.lex_state = 745}, + [4894] = {.lex_state = 742}, + [4895] = {.lex_state = 742}, + [4896] = {.lex_state = 742}, + [4897] = {.lex_state = 742}, + [4898] = {.lex_state = 267}, + [4899] = {.lex_state = 33}, + [4900] = {.lex_state = 742}, + [4901] = {.lex_state = 743}, + [4902] = {.lex_state = 745}, + [4903] = {.lex_state = 745}, + [4904] = {.lex_state = 743}, + [4905] = {.lex_state = 745}, + [4906] = {.lex_state = 745}, + [4907] = {.lex_state = 33}, + [4908] = {.lex_state = 33}, + [4909] = {.lex_state = 276}, + [4910] = {.lex_state = 745}, + [4911] = {.lex_state = 742}, + [4912] = {.lex_state = 33}, + [4913] = {.lex_state = 33}, + [4914] = {.lex_state = 33}, + [4915] = {.lex_state = 275}, + [4916] = {.lex_state = 742}, + [4917] = {.lex_state = 33}, + [4918] = {.lex_state = 33}, + [4919] = {.lex_state = 33}, + [4920] = {.lex_state = 267}, + [4921] = {.lex_state = 33}, + [4922] = {.lex_state = 33}, + [4923] = {.lex_state = 33}, + [4924] = {.lex_state = 33}, + [4925] = {.lex_state = 33}, + [4926] = {.lex_state = 33}, + [4927] = {.lex_state = 812}, + [4928] = {.lex_state = 33}, + [4929] = {.lex_state = 33}, + [4930] = {.lex_state = 33}, + [4931] = {.lex_state = 33}, + [4932] = {.lex_state = 33}, + [4933] = {.lex_state = 33}, + [4934] = {.lex_state = 33}, + [4935] = {.lex_state = 33}, + [4936] = {.lex_state = 33}, + [4937] = {.lex_state = 33}, + [4938] = {.lex_state = 33}, + [4939] = {.lex_state = 33}, + [4940] = {.lex_state = 33}, + [4941] = {.lex_state = 745}, + [4942] = {.lex_state = 70}, + [4943] = {.lex_state = 70}, + [4944] = {.lex_state = 70}, + [4945] = {.lex_state = 33}, + [4946] = {.lex_state = 33}, + [4947] = {.lex_state = 33}, + [4948] = {.lex_state = 745}, + [4949] = {.lex_state = 33}, + [4950] = {.lex_state = 745}, + [4951] = {.lex_state = 745}, + [4952] = {.lex_state = 33}, + [4953] = {.lex_state = 33}, + [4954] = {.lex_state = 742}, + [4955] = {.lex_state = 742}, + [4956] = {.lex_state = 742}, + [4957] = {.lex_state = 2}, + [4958] = {.lex_state = 2}, + [4959] = {.lex_state = 99}, + [4960] = {.lex_state = 33}, + [4961] = {.lex_state = 33}, + [4962] = {.lex_state = 742}, + [4963] = {.lex_state = 742}, + [4964] = {.lex_state = 742}, + [4965] = {.lex_state = 742}, + [4966] = {.lex_state = 742}, + [4967] = {.lex_state = 742}, + [4968] = {.lex_state = 775}, + [4969] = {.lex_state = 743}, + [4970] = {.lex_state = 775}, + [4971] = {.lex_state = 33}, + [4972] = {.lex_state = 33}, + [4973] = {.lex_state = 743}, + [4974] = {.lex_state = 743}, + [4975] = {.lex_state = 743}, + [4976] = {.lex_state = 743}, + [4977] = {.lex_state = 743}, + [4978] = {.lex_state = 743}, + [4979] = {.lex_state = 743}, + [4980] = {.lex_state = 743}, + [4981] = {.lex_state = 743}, + [4982] = {.lex_state = 743}, + [4983] = {.lex_state = 743}, + [4984] = {.lex_state = 743}, + [4985] = {.lex_state = 775}, + [4986] = {.lex_state = 33}, + [4987] = {.lex_state = 742}, + [4988] = {.lex_state = 742}, + [4989] = {.lex_state = 33}, + [4990] = {.lex_state = 742}, + [4991] = {.lex_state = 742}, + [4992] = {.lex_state = 66}, + [4993] = {.lex_state = 33}, + [4994] = {.lex_state = 283}, + [4995] = {.lex_state = 71}, + [4996] = {.lex_state = 742}, + [4997] = {.lex_state = 742}, + [4998] = {.lex_state = 71}, + [4999] = {.lex_state = 3704}, + [5000] = {.lex_state = 273}, + [5001] = {.lex_state = 742}, + [5002] = {.lex_state = 710}, + [5003] = {.lex_state = 742}, + [5004] = {.lex_state = 742}, + [5005] = {.lex_state = 742}, + [5006] = {.lex_state = 270}, + [5007] = {.lex_state = 742}, + [5008] = {.lex_state = 742}, + [5009] = {.lex_state = 742}, + [5010] = {.lex_state = 742}, + [5011] = {.lex_state = 71}, + [5012] = {.lex_state = 742}, + [5013] = {.lex_state = 742}, + [5014] = {.lex_state = 742}, + [5015] = {.lex_state = 33}, + [5016] = {.lex_state = 710}, + [5017] = {.lex_state = 710}, + [5018] = {.lex_state = 742}, + [5019] = {.lex_state = 742}, + [5020] = {.lex_state = 710}, + [5021] = {.lex_state = 268}, + [5022] = {.lex_state = 742}, + [5023] = {.lex_state = 270}, + [5024] = {.lex_state = 268}, + [5025] = {.lex_state = 33}, + [5026] = {.lex_state = 277}, + [5027] = {.lex_state = 275}, + [5028] = {.lex_state = 33}, + [5029] = {.lex_state = 710}, + [5030] = {.lex_state = 275}, + [5031] = {.lex_state = 812}, + [5032] = {.lex_state = 71}, + [5033] = {.lex_state = 275}, + [5034] = {.lex_state = 742}, + [5035] = {.lex_state = 279}, + [5036] = {.lex_state = 812}, + [5037] = {.lex_state = 742}, + [5038] = {.lex_state = 3704}, + [5039] = {.lex_state = 742}, + [5040] = {.lex_state = 3704}, + [5041] = {.lex_state = 812}, + [5042] = {.lex_state = 742}, + [5043] = {.lex_state = 742}, + [5044] = {.lex_state = 742}, + [5045] = {.lex_state = 742}, + [5046] = {.lex_state = 742}, + [5047] = {.lex_state = 33}, + [5048] = {.lex_state = 742}, + [5049] = {.lex_state = 742}, + [5050] = {.lex_state = 742}, + [5051] = {.lex_state = 274}, + [5052] = {.lex_state = 742}, + [5053] = {.lex_state = 742}, + [5054] = {.lex_state = 812}, + [5055] = {.lex_state = 308}, + [5056] = {.lex_state = 742}, + [5057] = {.lex_state = 742}, + [5058] = {.lex_state = 33}, + [5059] = {.lex_state = 33}, + [5060] = {.lex_state = 33}, + [5061] = {.lex_state = 33}, + [5062] = {.lex_state = 33}, + [5063] = {.lex_state = 33}, + [5064] = {.lex_state = 742}, + [5065] = {.lex_state = 742}, + [5066] = {.lex_state = 33}, + [5067] = {.lex_state = 33}, + [5068] = {.lex_state = 33}, + [5069] = {.lex_state = 33}, + [5070] = {.lex_state = 33}, + [5071] = {.lex_state = 33}, + [5072] = {.lex_state = 33}, + [5073] = {.lex_state = 33}, + [5074] = {.lex_state = 33}, + [5075] = {.lex_state = 742}, + [5076] = {.lex_state = 742}, + [5077] = {.lex_state = 742}, + [5078] = {.lex_state = 742}, + [5079] = {.lex_state = 742}, + [5080] = {.lex_state = 742}, + [5081] = {.lex_state = 742}, + [5082] = {.lex_state = 742}, + [5083] = {.lex_state = 742}, + [5084] = {.lex_state = 742}, + [5085] = {.lex_state = 278}, + [5086] = {.lex_state = 742}, + [5087] = {.lex_state = 742}, + [5088] = {.lex_state = 742}, + [5089] = {.lex_state = 742}, + [5090] = {.lex_state = 742}, + [5091] = {.lex_state = 742}, + [5092] = {.lex_state = 742}, + [5093] = {.lex_state = 742}, + [5094] = {.lex_state = 742}, + [5095] = {.lex_state = 742}, + [5096] = {.lex_state = 275}, + [5097] = {.lex_state = 742}, + [5098] = {.lex_state = 33}, + [5099] = {.lex_state = 33}, + [5100] = {.lex_state = 33}, + [5101] = {.lex_state = 742}, + [5102] = {.lex_state = 33}, + [5103] = {.lex_state = 742}, + [5104] = {.lex_state = 742}, + [5105] = {.lex_state = 3704}, + [5106] = {.lex_state = 742}, + [5107] = {.lex_state = 743}, + [5108] = {.lex_state = 742}, + [5109] = {.lex_state = 743}, + [5110] = {.lex_state = 743}, + [5111] = {.lex_state = 743}, + [5112] = {.lex_state = 321}, + [5113] = {.lex_state = 743}, + [5114] = {.lex_state = 743}, + [5115] = {.lex_state = 743}, + [5116] = {.lex_state = 743}, + [5117] = {.lex_state = 743}, + [5118] = {.lex_state = 743}, + [5119] = {.lex_state = 743}, + [5120] = {.lex_state = 743}, + [5121] = {.lex_state = 33}, + [5122] = {.lex_state = 775}, + [5123] = {.lex_state = 775}, + [5124] = {.lex_state = 775}, + [5125] = {.lex_state = 775}, + [5126] = {.lex_state = 775}, + [5127] = {.lex_state = 775}, + [5128] = {.lex_state = 742}, + [5129] = {.lex_state = 33}, + [5130] = {.lex_state = 742}, + [5131] = {.lex_state = 742}, + [5132] = {.lex_state = 33}, + [5133] = {.lex_state = 742}, + [5134] = {.lex_state = 3704}, + [5135] = {.lex_state = 812}, + [5136] = {.lex_state = 742}, + [5137] = {.lex_state = 274}, + [5138] = {.lex_state = 742}, + [5139] = {.lex_state = 33}, + [5140] = {.lex_state = 742}, + [5141] = {.lex_state = 742}, + [5142] = {.lex_state = 775}, + [5143] = {.lex_state = 775}, + [5144] = {.lex_state = 775}, + [5145] = {.lex_state = 775}, + [5146] = {.lex_state = 33}, + [5147] = {.lex_state = 743}, + [5148] = {.lex_state = 33}, + [5149] = {.lex_state = 33}, + [5150] = {.lex_state = 33}, + [5151] = {.lex_state = 275}, + [5152] = {.lex_state = 742}, + [5153] = {.lex_state = 33}, + [5154] = {.lex_state = 33}, + [5155] = {.lex_state = 742}, + [5156] = {.lex_state = 742}, + [5157] = {.lex_state = 775}, + [5158] = {.lex_state = 775}, + [5159] = {.lex_state = 742}, + [5160] = {.lex_state = 742}, + [5161] = {.lex_state = 742}, + [5162] = {.lex_state = 710}, + [5163] = {.lex_state = 33}, + [5164] = {.lex_state = 742}, + [5165] = {.lex_state = 742}, + [5166] = {.lex_state = 742}, + [5167] = {.lex_state = 33}, + [5168] = {.lex_state = 775}, + [5169] = {.lex_state = 269}, + [5170] = {.lex_state = 717}, + [5171] = {.lex_state = 717}, + [5172] = {.lex_state = 742}, + [5173] = {.lex_state = 775}, + [5174] = {.lex_state = 717}, + [5175] = {.lex_state = 717}, + [5176] = {.lex_state = 717}, + [5177] = {.lex_state = 717}, + [5178] = {.lex_state = 717}, + [5179] = {.lex_state = 322}, + [5180] = {.lex_state = 781}, + [5181] = {.lex_state = 315}, + [5182] = {.lex_state = 775}, + [5183] = {.lex_state = 717}, + [5184] = {.lex_state = 717}, + [5185] = {.lex_state = 269}, + [5186] = {.lex_state = 280}, + [5187] = {.lex_state = 781}, + [5188] = {.lex_state = 33}, + [5189] = {.lex_state = 781}, + [5190] = {.lex_state = 7}, + [5191] = {.lex_state = 7}, + [5192] = {.lex_state = 717}, + [5193] = {.lex_state = 717}, + [5194] = {.lex_state = 33}, + [5195] = {.lex_state = 33}, + [5196] = {.lex_state = 62}, + [5197] = {.lex_state = 717}, + [5198] = {.lex_state = 717}, + [5199] = {.lex_state = 717}, + [5200] = {.lex_state = 717}, + [5201] = {.lex_state = 781}, + [5202] = {.lex_state = 717}, + [5203] = {.lex_state = 7}, + [5204] = {.lex_state = 743}, + [5205] = {.lex_state = 284}, + [5206] = {.lex_state = 284}, + [5207] = {.lex_state = 7}, + [5208] = {.lex_state = 717}, + [5209] = {.lex_state = 275}, + [5210] = {.lex_state = 775}, + [5211] = {.lex_state = 775}, + [5212] = {.lex_state = 775}, + [5213] = {.lex_state = 717}, + [5214] = {.lex_state = 353}, + [5215] = {.lex_state = 7}, + [5216] = {.lex_state = 717}, + [5217] = {.lex_state = 775}, + [5218] = {.lex_state = 338}, + [5219] = {.lex_state = 71}, + [5220] = {.lex_state = 322}, + [5221] = {.lex_state = 33}, + [5222] = {.lex_state = 717}, + [5223] = {.lex_state = 275}, + [5224] = {.lex_state = 62}, + [5225] = {.lex_state = 775}, + [5226] = {.lex_state = 340}, + [5227] = {.lex_state = 33}, + [5228] = {.lex_state = 33}, + [5229] = {.lex_state = 285}, + [5230] = {.lex_state = 717}, + [5231] = {.lex_state = 717}, + [5232] = {.lex_state = 285}, + [5233] = {.lex_state = 346}, + [5234] = {.lex_state = 717}, + [5235] = {.lex_state = 781}, + [5236] = {.lex_state = 309}, + [5237] = {.lex_state = 280}, + [5238] = {.lex_state = 775}, + [5239] = {.lex_state = 3705}, + [5240] = {.lex_state = 3705}, + [5241] = {.lex_state = 296}, + [5242] = {.lex_state = 281}, + [5243] = {.lex_state = 33}, + [5244] = {.lex_state = 78}, + [5245] = {.lex_state = 298}, + [5246] = {.lex_state = 308}, + [5247] = {.lex_state = 347}, + [5248] = {.lex_state = 282}, + [5249] = {.lex_state = 282}, + [5250] = {.lex_state = 62}, + [5251] = {.lex_state = 62}, + [5252] = {.lex_state = 354}, + [5253] = {.lex_state = 33, .external_lex_state = 2}, + [5254] = {.lex_state = 282}, + [5255] = {.lex_state = 781}, + [5256] = {.lex_state = 282}, + [5257] = {.lex_state = 3705}, + [5258] = {.lex_state = 33}, + [5259] = {.lex_state = 3247}, + [5260] = {.lex_state = 3247}, + [5261] = {.lex_state = 3705}, + [5262] = {.lex_state = 282}, + [5263] = {.lex_state = 3247}, + [5264] = {.lex_state = 3247}, + [5265] = {.lex_state = 781}, + [5266] = {.lex_state = 781}, + [5267] = {.lex_state = 781}, + [5268] = {.lex_state = 3880}, + [5269] = {.lex_state = 3880}, + [5270] = {.lex_state = 33, .external_lex_state = 2}, + [5271] = {.lex_state = 33}, + [5272] = {.lex_state = 3247}, + [5273] = {.lex_state = 717}, + [5274] = {.lex_state = 33, .external_lex_state = 2}, + [5275] = {.lex_state = 3247}, + [5276] = {.lex_state = 308}, + [5277] = {.lex_state = 33}, + [5278] = {.lex_state = 3705}, + [5279] = {.lex_state = 3705}, + [5280] = {.lex_state = 781}, + [5281] = {.lex_state = 717}, + [5282] = {.lex_state = 3247}, + [5283] = {.lex_state = 3247}, + [5284] = {.lex_state = 717}, + [5285] = {.lex_state = 717}, + [5286] = {.lex_state = 781}, + [5287] = {.lex_state = 3247}, + [5288] = {.lex_state = 3247}, + [5289] = {.lex_state = 3247}, + [5290] = {.lex_state = 33, .external_lex_state = 2}, + [5291] = {.lex_state = 33, .external_lex_state = 2}, + [5292] = {.lex_state = 717}, + [5293] = {.lex_state = 717}, + [5294] = {.lex_state = 717}, + [5295] = {.lex_state = 717}, + [5296] = {.lex_state = 717}, + [5297] = {.lex_state = 717}, + [5298] = {.lex_state = 717}, + [5299] = {.lex_state = 316}, + [5300] = {.lex_state = 323}, + [5301] = {.lex_state = 33, .external_lex_state = 2}, + [5302] = {.lex_state = 717}, + [5303] = {.lex_state = 3247}, + [5304] = {.lex_state = 3247}, + [5305] = {.lex_state = 3247}, + [5306] = {.lex_state = 3247}, + [5307] = {.lex_state = 717}, + [5308] = {.lex_state = 717}, + [5309] = {.lex_state = 717}, + [5310] = {.lex_state = 717}, + [5311] = {.lex_state = 717}, + [5312] = {.lex_state = 717}, + [5313] = {.lex_state = 717}, + [5314] = {.lex_state = 308}, + [5315] = {.lex_state = 717}, + [5316] = {.lex_state = 281}, + [5317] = {.lex_state = 3247}, + [5318] = {.lex_state = 3247}, + [5319] = {.lex_state = 281}, + [5320] = {.lex_state = 310}, + [5321] = {.lex_state = 717}, + [5322] = {.lex_state = 281}, + [5323] = {.lex_state = 717}, + [5324] = {.lex_state = 285}, + [5325] = {.lex_state = 717}, + [5326] = {.lex_state = 717}, + [5327] = {.lex_state = 281}, + [5328] = {.lex_state = 3880}, + [5329] = {.lex_state = 3880}, + [5330] = {.lex_state = 3880}, + [5331] = {.lex_state = 3880}, + [5332] = {.lex_state = 33, .external_lex_state = 2}, + [5333] = {.lex_state = 355}, + [5334] = {.lex_state = 323}, + [5335] = {.lex_state = 323}, + [5336] = {.lex_state = 324}, + [5337] = {.lex_state = 285}, + [5338] = {.lex_state = 3247}, + [5339] = {.lex_state = 323}, + [5340] = {.lex_state = 355}, + [5341] = {.lex_state = 775}, + [5342] = {.lex_state = 775}, + [5343] = {.lex_state = 317}, + [5344] = {.lex_state = 341}, + [5345] = {.lex_state = 33, .external_lex_state = 2}, + [5346] = {.lex_state = 33, .external_lex_state = 2}, + [5347] = {.lex_state = 77}, + [5348] = {.lex_state = 33}, + [5349] = {.lex_state = 33}, + [5350] = {.lex_state = 316}, + [5351] = {.lex_state = 3705}, + [5352] = {.lex_state = 341}, + [5353] = {.lex_state = 717}, + [5354] = {.lex_state = 323}, + [5355] = {.lex_state = 62}, + [5356] = {.lex_state = 351}, + [5357] = {.lex_state = 339}, + [5358] = {.lex_state = 717}, + [5359] = {.lex_state = 717}, + [5360] = {.lex_state = 717}, + [5361] = {.lex_state = 62}, + [5362] = {.lex_state = 339}, + [5363] = {.lex_state = 308}, + [5364] = {.lex_state = 717}, + [5365] = {.lex_state = 62}, + [5366] = {.lex_state = 365}, + [5367] = {.lex_state = 33, .external_lex_state = 2}, + [5368] = {.lex_state = 33, .external_lex_state = 2}, + [5369] = {.lex_state = 62}, + [5370] = {.lex_state = 348}, + [5371] = {.lex_state = 366}, + [5372] = {.lex_state = 775}, + [5373] = {.lex_state = 818}, + [5374] = {.lex_state = 359}, + [5375] = {.lex_state = 62}, + [5376] = {.lex_state = 775}, + [5377] = {.lex_state = 813}, + [5378] = {.lex_state = 711}, + [5379] = {.lex_state = 62}, + [5380] = {.lex_state = 62}, + [5381] = {.lex_state = 62}, + [5382] = {.lex_state = 62}, + [5383] = {.lex_state = 775}, + [5384] = {.lex_state = 318}, + [5385] = {.lex_state = 62}, + [5386] = {.lex_state = 62}, + [5387] = {.lex_state = 775}, + [5388] = {.lex_state = 775}, + [5389] = {.lex_state = 62}, + [5390] = {.lex_state = 62}, + [5391] = {.lex_state = 62}, + [5392] = {.lex_state = 62}, + [5393] = {.lex_state = 62}, + [5394] = {.lex_state = 62}, + [5395] = {.lex_state = 775}, + [5396] = {.lex_state = 775}, + [5397] = {.lex_state = 62}, + [5398] = {.lex_state = 62}, + [5399] = {.lex_state = 62}, + [5400] = {.lex_state = 62}, + [5401] = {.lex_state = 62}, + [5402] = {.lex_state = 775}, + [5403] = {.lex_state = 775}, + [5404] = {.lex_state = 775}, + [5405] = {.lex_state = 775}, + [5406] = {.lex_state = 33}, + [5407] = {.lex_state = 317}, + [5408] = {.lex_state = 775}, + [5409] = {.lex_state = 775}, + [5410] = {.lex_state = 717}, + [5411] = {.lex_state = 775}, + [5412] = {.lex_state = 775}, + [5413] = {.lex_state = 299}, + [5414] = {.lex_state = 775}, + [5415] = {.lex_state = 775}, + [5416] = {.lex_state = 352}, + [5417] = {.lex_state = 775}, + [5418] = {.lex_state = 775}, + [5419] = {.lex_state = 317}, + [5420] = {.lex_state = 775}, + [5421] = {.lex_state = 775}, + [5422] = {.lex_state = 775}, + [5423] = {.lex_state = 775}, + [5424] = {.lex_state = 62}, + [5425] = {.lex_state = 33}, + [5426] = {.lex_state = 711}, + [5427] = {.lex_state = 33}, + [5428] = {.lex_state = 775}, + [5429] = {.lex_state = 74}, + [5430] = {.lex_state = 62}, + [5431] = {.lex_state = 775}, + [5432] = {.lex_state = 775}, + [5433] = {.lex_state = 325}, + [5434] = {.lex_state = 775}, + [5435] = {.lex_state = 775}, + [5436] = {.lex_state = 775}, + [5437] = {.lex_state = 775}, + [5438] = {.lex_state = 775}, + [5439] = {.lex_state = 33, .external_lex_state = 2}, + [5440] = {.lex_state = 79}, + [5441] = {.lex_state = 775}, + [5442] = {.lex_state = 356}, + [5443] = {.lex_state = 356}, + [5444] = {.lex_state = 775}, + [5445] = {.lex_state = 711}, + [5446] = {.lex_state = 717}, + [5447] = {.lex_state = 717}, + [5448] = {.lex_state = 325}, + [5449] = {.lex_state = 775}, + [5450] = {.lex_state = 775}, + [5451] = {.lex_state = 775}, + [5452] = {.lex_state = 775}, + [5453] = {.lex_state = 357}, + [5454] = {.lex_state = 775}, + [5455] = {.lex_state = 311}, + [5456] = {.lex_state = 775}, + [5457] = {.lex_state = 775}, + [5458] = {.lex_state = 775}, + [5459] = {.lex_state = 775}, + [5460] = {.lex_state = 357}, + [5461] = {.lex_state = 775}, + [5462] = {.lex_state = 73}, + [5463] = {.lex_state = 357}, + [5464] = {.lex_state = 775}, + [5465] = {.lex_state = 775}, + [5466] = {.lex_state = 33, .external_lex_state = 2}, + [5467] = {.lex_state = 775}, + [5468] = {.lex_state = 781}, + [5469] = {.lex_state = 775}, + [5470] = {.lex_state = 357}, + [5471] = {.lex_state = 339}, + [5472] = {.lex_state = 357}, + [5473] = {.lex_state = 775}, + [5474] = {.lex_state = 299}, + [5475] = {.lex_state = 317}, + [5476] = {.lex_state = 339}, + [5477] = {.lex_state = 308}, + [5478] = {.lex_state = 79}, + [5479] = {.lex_state = 775}, + [5480] = {.lex_state = 781}, + [5481] = {.lex_state = 339}, + [5482] = {.lex_state = 717}, + [5483] = {.lex_state = 62}, + [5484] = {.lex_state = 317}, + [5485] = {.lex_state = 775}, + [5486] = {.lex_state = 782}, + [5487] = {.lex_state = 33, .external_lex_state = 2}, + [5488] = {.lex_state = 257, .external_lex_state = 2}, + [5489] = {.lex_state = 717}, + [5490] = {.lex_state = 326}, + [5491] = {.lex_state = 33, .external_lex_state = 2}, + [5492] = {.lex_state = 257, .external_lex_state = 2}, + [5493] = {.lex_state = 33, .external_lex_state = 2}, + [5494] = {.lex_state = 319}, + [5495] = {.lex_state = 257, .external_lex_state = 2}, + [5496] = {.lex_state = 257, .external_lex_state = 2}, + [5497] = {.lex_state = 350}, + [5498] = {.lex_state = 80}, + [5499] = {.lex_state = 257, .external_lex_state = 2}, + [5500] = {.lex_state = 711}, + [5501] = {.lex_state = 257, .external_lex_state = 2}, + [5502] = {.lex_state = 297}, + [5503] = {.lex_state = 257, .external_lex_state = 2}, + [5504] = {.lex_state = 717}, + [5505] = {.lex_state = 257, .external_lex_state = 2}, + [5506] = {.lex_state = 257, .external_lex_state = 2}, + [5507] = {.lex_state = 257, .external_lex_state = 2}, + [5508] = {.lex_state = 257, .external_lex_state = 2}, + [5509] = {.lex_state = 257, .external_lex_state = 2}, + [5510] = {.lex_state = 257, .external_lex_state = 2}, + [5511] = {.lex_state = 257, .external_lex_state = 2}, + [5512] = {.lex_state = 257, .external_lex_state = 2}, + [5513] = {.lex_state = 257, .external_lex_state = 2}, + [5514] = {.lex_state = 257, .external_lex_state = 2}, + [5515] = {.lex_state = 257, .external_lex_state = 2}, + [5516] = {.lex_state = 257, .external_lex_state = 2}, + [5517] = {.lex_state = 257, .external_lex_state = 2}, + [5518] = {.lex_state = 257, .external_lex_state = 2}, + [5519] = {.lex_state = 257, .external_lex_state = 2}, + [5520] = {.lex_state = 257, .external_lex_state = 2}, + [5521] = {.lex_state = 257, .external_lex_state = 2}, + [5522] = {.lex_state = 257, .external_lex_state = 2}, + [5523] = {.lex_state = 257, .external_lex_state = 2}, + [5524] = {.lex_state = 257, .external_lex_state = 2}, + [5525] = {.lex_state = 257, .external_lex_state = 2}, + [5526] = {.lex_state = 257, .external_lex_state = 2}, + [5527] = {.lex_state = 257, .external_lex_state = 2}, + [5528] = {.lex_state = 257, .external_lex_state = 2}, + [5529] = {.lex_state = 358}, + [5530] = {.lex_state = 717}, + [5531] = {.lex_state = 824}, + [5532] = {.lex_state = 824}, + [5533] = {.lex_state = 781}, + [5534] = {.lex_state = 358}, + [5535] = {.lex_state = 319}, + [5536] = {.lex_state = 350}, + [5537] = {.lex_state = 368}, + [5538] = {.lex_state = 326}, + [5539] = {.lex_state = 257, .external_lex_state = 2}, + [5540] = {.lex_state = 257, .external_lex_state = 2}, + [5541] = {.lex_state = 824}, + [5542] = {.lex_state = 781}, + [5543] = {.lex_state = 824}, + [5544] = {.lex_state = 75}, + [5545] = {.lex_state = 80}, + [5546] = {.lex_state = 360}, + [5547] = {.lex_state = 781}, + [5548] = {.lex_state = 815}, + [5549] = {.lex_state = 717}, + [5550] = {.lex_state = 297}, + [5551] = {.lex_state = 358}, + [5552] = {.lex_state = 717}, + [5553] = {.lex_state = 358}, + [5554] = {.lex_state = 257, .external_lex_state = 2}, + [5555] = {.lex_state = 717}, + [5556] = {.lex_state = 33, .external_lex_state = 2}, + [5557] = {.lex_state = 814}, + [5558] = {.lex_state = 368}, + [5559] = {.lex_state = 361}, + [5560] = {.lex_state = 349}, + [5561] = {.lex_state = 71}, + [5562] = {.lex_state = 257, .external_lex_state = 2}, + [5563] = {.lex_state = 814}, + [5564] = {.lex_state = 33, .external_lex_state = 2}, + [5565] = {.lex_state = 297}, + [5566] = {.lex_state = 257, .external_lex_state = 2}, + [5567] = {.lex_state = 33}, + [5568] = {.lex_state = 350}, + [5569] = {.lex_state = 80}, + [5570] = {.lex_state = 781}, + [5571] = {.lex_state = 33, .external_lex_state = 2}, + [5572] = {.lex_state = 33, .external_lex_state = 2}, + [5573] = {.lex_state = 326}, + [5574] = {.lex_state = 33, .external_lex_state = 2}, + [5575] = {.lex_state = 257, .external_lex_state = 2}, + [5576] = {.lex_state = 717}, + [5577] = {.lex_state = 33, .external_lex_state = 2}, + [5578] = {.lex_state = 350}, + [5579] = {.lex_state = 824}, + [5580] = {.lex_state = 297}, + [5581] = {.lex_state = 80}, + [5582] = {.lex_state = 367}, + [5583] = {.lex_state = 367}, + [5584] = {.lex_state = 33, .external_lex_state = 2}, + [5585] = {.lex_state = 257, .external_lex_state = 2}, + [5586] = {.lex_state = 350}, + [5587] = {.lex_state = 80}, + [5588] = {.lex_state = 257, .external_lex_state = 2}, + [5589] = {.lex_state = 781}, + [5590] = {.lex_state = 361}, + [5591] = {.lex_state = 257, .external_lex_state = 2}, + [5592] = {.lex_state = 717}, + [5593] = {.lex_state = 781}, + [5594] = {.lex_state = 62}, + [5595] = {.lex_state = 717}, + [5596] = {.lex_state = 257, .external_lex_state = 2}, + [5597] = {.lex_state = 33, .external_lex_state = 2}, + [5598] = {.lex_state = 358}, + [5599] = {.lex_state = 297}, + [5600] = {.lex_state = 75}, + [5601] = {.lex_state = 350}, + [5602] = {.lex_state = 257, .external_lex_state = 2}, + [5603] = {.lex_state = 257, .external_lex_state = 2}, + [5604] = {.lex_state = 818}, + [5605] = {.lex_state = 711}, + [5606] = {.lex_state = 710}, + [5607] = {.lex_state = 33, .external_lex_state = 2}, + [5608] = {.lex_state = 711}, + [5609] = {.lex_state = 33}, + [5610] = {.lex_state = 813}, + [5611] = {.lex_state = 33, .external_lex_state = 2}, + [5612] = {.lex_state = 781}, + [5613] = {.lex_state = 711}, + [5614] = {.lex_state = 326}, + [5615] = {.lex_state = 257, .external_lex_state = 2}, + [5616] = {.lex_state = 781}, + [5617] = {.lex_state = 781}, + [5618] = {.lex_state = 33, .external_lex_state = 2}, + [5619] = {.lex_state = 76}, + [5620] = {.lex_state = 71}, + [5621] = {.lex_state = 824}, + [5622] = {.lex_state = 370}, + [5623] = {.lex_state = 33, .external_lex_state = 2}, + [5624] = {.lex_state = 312}, + [5625] = {.lex_state = 717}, + [5626] = {.lex_state = 71}, + [5627] = {.lex_state = 320}, + [5628] = {.lex_state = 370}, + [5629] = {.lex_state = 33, .external_lex_state = 2}, + [5630] = {.lex_state = 375}, + [5631] = {.lex_state = 308}, + [5632] = {.lex_state = 362}, + [5633] = {.lex_state = 33, .external_lex_state = 2}, + [5634] = {.lex_state = 312}, + [5635] = {.lex_state = 71}, + [5636] = {.lex_state = 824}, + [5637] = {.lex_state = 824}, + [5638] = {.lex_state = 312}, + [5639] = {.lex_state = 814}, + [5640] = {.lex_state = 312}, + [5641] = {.lex_state = 312}, + [5642] = {.lex_state = 781}, + [5643] = {.lex_state = 33, .external_lex_state = 2}, + [5644] = {.lex_state = 717}, + [5645] = {.lex_state = 369}, + [5646] = {.lex_state = 71}, + [5647] = {.lex_state = 71}, + [5648] = {.lex_state = 312}, + [5649] = {.lex_state = 71}, + [5650] = {.lex_state = 717}, + [5651] = {.lex_state = 362}, + [5652] = {.lex_state = 33, .external_lex_state = 2}, + [5653] = {.lex_state = 33, .external_lex_state = 2}, + [5654] = {.lex_state = 369}, + [5655] = {.lex_state = 33}, + [5656] = {.lex_state = 71}, + [5657] = {.lex_state = 71}, + [5658] = {.lex_state = 71}, + [5659] = {.lex_state = 337}, + [5660] = {.lex_state = 320}, + [5661] = {.lex_state = 308}, + [5662] = {.lex_state = 308}, + [5663] = {.lex_state = 76}, + [5664] = {.lex_state = 312}, + [5665] = {.lex_state = 71}, + [5666] = {.lex_state = 370}, + [5667] = {.lex_state = 369}, + [5668] = {.lex_state = 320}, + [5669] = {.lex_state = 815}, + [5670] = {.lex_state = 370}, + [5671] = {.lex_state = 362}, + [5672] = {.lex_state = 369}, + [5673] = {.lex_state = 76}, + [5674] = {.lex_state = 312}, + [5675] = {.lex_state = 14}, + [5676] = {.lex_state = 308}, + [5677] = {.lex_state = 781}, + [5678] = {.lex_state = 312}, + [5679] = {.lex_state = 14}, + [5680] = {.lex_state = 363}, + [5681] = {.lex_state = 711}, + [5682] = {.lex_state = 814}, + [5683] = {.lex_state = 320}, + [5684] = {.lex_state = 33}, + [5685] = {.lex_state = 33, .external_lex_state = 2}, + [5686] = {.lex_state = 312}, + [5687] = {.lex_state = 71}, + [5688] = {.lex_state = 370}, + [5689] = {.lex_state = 76}, + [5690] = {.lex_state = 363}, + [5691] = {.lex_state = 711}, + [5692] = {.lex_state = 312}, + [5693] = {.lex_state = 362}, + [5694] = {.lex_state = 717}, + [5695] = {.lex_state = 71}, + [5696] = {.lex_state = 782}, + [5697] = {.lex_state = 312}, + [5698] = {.lex_state = 33}, + [5699] = {.lex_state = 824}, + [5700] = {.lex_state = 370}, + [5701] = {.lex_state = 824}, + [5702] = {.lex_state = 312}, + [5703] = {.lex_state = 312}, + [5704] = {.lex_state = 320}, + [5705] = {.lex_state = 33}, + [5706] = {.lex_state = 312}, + [5707] = {.lex_state = 33}, + [5708] = {.lex_state = 320}, + [5709] = {.lex_state = 71}, + [5710] = {.lex_state = 375}, + [5711] = {.lex_state = 326}, + [5712] = {.lex_state = 33, .external_lex_state = 2}, + [5713] = {.lex_state = 337}, + [5714] = {.lex_state = 312}, + [5715] = {.lex_state = 71}, + [5716] = {.lex_state = 312}, + [5717] = {.lex_state = 71}, + [5718] = {.lex_state = 71}, + [5719] = {.lex_state = 33, .external_lex_state = 2}, + [5720] = {.lex_state = 33, .external_lex_state = 2}, + [5721] = {.lex_state = 362}, + [5722] = {.lex_state = 312}, + [5723] = {.lex_state = 312}, + [5724] = {.lex_state = 362}, + [5725] = {.lex_state = 326}, + [5726] = {.lex_state = 71}, + [5727] = {.lex_state = 312}, + [5728] = {.lex_state = 312}, + [5729] = {.lex_state = 312}, + [5730] = {.lex_state = 312}, + [5731] = {.lex_state = 312}, + [5732] = {.lex_state = 312}, + [5733] = {.lex_state = 312}, + [5734] = {.lex_state = 71}, + [5735] = {.lex_state = 369}, + [5736] = {.lex_state = 781}, + [5737] = {.lex_state = 744}, + [5738] = {.lex_state = 744}, + [5739] = {.lex_state = 781}, + [5740] = {.lex_state = 744}, + [5741] = {.lex_state = 308}, + [5742] = {.lex_state = 744}, + [5743] = {.lex_state = 781}, + [5744] = {.lex_state = 266}, + [5745] = {.lex_state = 3248}, + [5746] = {.lex_state = 3248}, + [5747] = {.lex_state = 401}, + [5748] = {.lex_state = 266}, + [5749] = {.lex_state = 3248}, + [5750] = {.lex_state = 744}, + [5751] = {.lex_state = 3248}, + [5752] = {.lex_state = 744}, + [5753] = {.lex_state = 781}, + [5754] = {.lex_state = 744}, + [5755] = {.lex_state = 266}, + [5756] = {.lex_state = 781}, + [5757] = {.lex_state = 744}, + [5758] = {.lex_state = 781}, + [5759] = {.lex_state = 266}, + [5760] = {.lex_state = 3248}, + [5761] = {.lex_state = 3248}, + [5762] = {.lex_state = 3248}, + [5763] = {.lex_state = 266}, + [5764] = {.lex_state = 308}, + [5765] = {.lex_state = 744}, + [5766] = {.lex_state = 744}, + [5767] = {.lex_state = 371}, + [5768] = {.lex_state = 285}, + [5769] = {.lex_state = 33, .external_lex_state = 2}, + [5770] = {.lex_state = 33, .external_lex_state = 2}, + [5771] = {.lex_state = 266}, + [5772] = {.lex_state = 266}, + [5773] = {.lex_state = 374}, + [5774] = {.lex_state = 744}, + [5775] = {.lex_state = 744}, + [5776] = {.lex_state = 266}, + [5777] = {.lex_state = 266}, + [5778] = {.lex_state = 781}, + [5779] = {.lex_state = 781}, + [5780] = {.lex_state = 266}, + [5781] = {.lex_state = 781}, + [5782] = {.lex_state = 266}, + [5783] = {.lex_state = 744}, + [5784] = {.lex_state = 744}, + [5785] = {.lex_state = 3248}, + [5786] = {.lex_state = 374}, + [5787] = {.lex_state = 3248}, + [5788] = {.lex_state = 266}, + [5789] = {.lex_state = 744}, + [5790] = {.lex_state = 266}, + [5791] = {.lex_state = 744}, + [5792] = {.lex_state = 744}, + [5793] = {.lex_state = 285}, + [5794] = {.lex_state = 781}, + [5795] = {.lex_state = 14}, + [5796] = {.lex_state = 401}, + [5797] = {.lex_state = 744}, + [5798] = {.lex_state = 744}, + [5799] = {.lex_state = 781}, + [5800] = {.lex_state = 709}, + [5801] = {.lex_state = 744}, + [5802] = {.lex_state = 744}, + [5803] = {.lex_state = 744}, + [5804] = {.lex_state = 370}, + [5805] = {.lex_state = 266}, + [5806] = {.lex_state = 744}, + [5807] = {.lex_state = 744}, + [5808] = {.lex_state = 327}, + [5809] = {.lex_state = 14}, + [5810] = {.lex_state = 709}, + [5811] = {.lex_state = 308}, + [5812] = {.lex_state = 3248}, + [5813] = {.lex_state = 744}, + [5814] = {.lex_state = 3248}, + [5815] = {.lex_state = 781}, + [5816] = {.lex_state = 781}, + [5817] = {.lex_state = 781}, + [5818] = {.lex_state = 781}, + [5819] = {.lex_state = 401}, + [5820] = {.lex_state = 266}, + [5821] = {.lex_state = 401}, + [5822] = {.lex_state = 3248}, + [5823] = {.lex_state = 744}, + [5824] = {.lex_state = 781}, + [5825] = {.lex_state = 744}, + [5826] = {.lex_state = 308}, + [5827] = {.lex_state = 781}, + [5828] = {.lex_state = 266}, + [5829] = {.lex_state = 266}, + [5830] = {.lex_state = 295}, + [5831] = {.lex_state = 781}, + [5832] = {.lex_state = 308}, + [5833] = {.lex_state = 781}, + [5834] = {.lex_state = 781}, + [5835] = {.lex_state = 401}, + [5836] = {.lex_state = 364}, + [5837] = {.lex_state = 744}, + [5838] = {.lex_state = 285}, + [5839] = {.lex_state = 285}, + [5840] = {.lex_state = 285}, + [5841] = {.lex_state = 3248}, + [5842] = {.lex_state = 781}, + [5843] = {.lex_state = 781}, + [5844] = {.lex_state = 781}, + [5845] = {.lex_state = 285}, + [5846] = {.lex_state = 383}, + [5847] = {.lex_state = 3248}, + [5848] = {.lex_state = 781}, + [5849] = {.lex_state = 744}, + [5850] = {.lex_state = 744}, + [5851] = {.lex_state = 364}, + [5852] = {.lex_state = 3248}, + [5853] = {.lex_state = 266}, + [5854] = {.lex_state = 308}, + [5855] = {.lex_state = 370}, + [5856] = {.lex_state = 266}, + [5857] = {.lex_state = 312}, + [5858] = {.lex_state = 331}, + [5859] = {.lex_state = 364}, + [5860] = {.lex_state = 3248}, + [5861] = {.lex_state = 744}, + [5862] = {.lex_state = 781}, + [5863] = {.lex_state = 782}, + [5864] = {.lex_state = 3248}, + [5865] = {.lex_state = 266}, + [5866] = {.lex_state = 781}, + [5867] = {.lex_state = 744}, + [5868] = {.lex_state = 781}, + [5869] = {.lex_state = 744}, + [5870] = {.lex_state = 781}, + [5871] = {.lex_state = 744}, + [5872] = {.lex_state = 744}, + [5873] = {.lex_state = 744}, + [5874] = {.lex_state = 312}, + [5875] = {.lex_state = 285}, + [5876] = {.lex_state = 337}, + [5877] = {.lex_state = 781}, + [5878] = {.lex_state = 312}, + [5879] = {.lex_state = 312}, + [5880] = {.lex_state = 781}, + [5881] = {.lex_state = 14}, + [5882] = {.lex_state = 744}, + [5883] = {.lex_state = 266}, + [5884] = {.lex_state = 781}, + [5885] = {.lex_state = 781}, + [5886] = {.lex_state = 781}, + [5887] = {.lex_state = 781}, + [5888] = {.lex_state = 364}, + [5889] = {.lex_state = 744}, + [5890] = {.lex_state = 3248}, + [5891] = {.lex_state = 3248}, + [5892] = {.lex_state = 3248}, + [5893] = {.lex_state = 266}, + [5894] = {.lex_state = 364}, + [5895] = {.lex_state = 3248}, + [5896] = {.lex_state = 744}, + [5897] = {.lex_state = 266}, + [5898] = {.lex_state = 781}, + [5899] = {.lex_state = 744}, + [5900] = {.lex_state = 3248}, + [5901] = {.lex_state = 3248}, + [5902] = {.lex_state = 3248}, + [5903] = {.lex_state = 3248}, + [5904] = {.lex_state = 744}, + [5905] = {.lex_state = 3248}, + [5906] = {.lex_state = 370}, + [5907] = {.lex_state = 781}, + [5908] = {.lex_state = 744}, + [5909] = {.lex_state = 744}, + [5910] = {.lex_state = 781}, + [5911] = {.lex_state = 781}, + [5912] = {.lex_state = 781}, + [5913] = {.lex_state = 266}, + [5914] = {.lex_state = 781}, + [5915] = {.lex_state = 744}, + [5916] = {.lex_state = 744}, + [5917] = {.lex_state = 781}, + [5918] = {.lex_state = 744}, + [5919] = {.lex_state = 374}, + [5920] = {.lex_state = 308}, + [5921] = {.lex_state = 744}, + [5922] = {.lex_state = 781}, + [5923] = {.lex_state = 3248}, + [5924] = {.lex_state = 3248}, + [5925] = {.lex_state = 744}, + [5926] = {.lex_state = 781}, + [5927] = {.lex_state = 266}, + [5928] = {.lex_state = 744}, + [5929] = {.lex_state = 781}, + [5930] = {.lex_state = 744}, + [5931] = {.lex_state = 337}, + [5932] = {.lex_state = 344}, + [5933] = {.lex_state = 308}, + [5934] = {.lex_state = 744}, + [5935] = {.lex_state = 374}, + [5936] = {.lex_state = 266}, + [5937] = {.lex_state = 266}, + [5938] = {.lex_state = 3248}, + [5939] = {.lex_state = 3248}, + [5940] = {.lex_state = 312}, + [5941] = {.lex_state = 744}, + [5942] = {.lex_state = 266}, + [5943] = {.lex_state = 287}, + [5944] = {.lex_state = 294}, + [5945] = {.lex_state = 266}, + [5946] = {.lex_state = 33, .external_lex_state = 2}, + [5947] = {.lex_state = 33, .external_lex_state = 2}, + [5948] = {.lex_state = 285}, + [5949] = {.lex_state = 781}, + [5950] = {.lex_state = 312}, + [5951] = {.lex_state = 744}, + [5952] = {.lex_state = 744}, + [5953] = {.lex_state = 370}, + [5954] = {.lex_state = 781}, + [5955] = {.lex_state = 781}, + [5956] = {.lex_state = 744}, + [5957] = {.lex_state = 308}, + [5958] = {.lex_state = 781}, + [5959] = {.lex_state = 364}, + [5960] = {.lex_state = 744}, + [5961] = {.lex_state = 744}, + [5962] = {.lex_state = 744}, + [5963] = {.lex_state = 744}, + [5964] = {.lex_state = 781}, + [5965] = {.lex_state = 781}, + [5966] = {.lex_state = 781}, + [5967] = {.lex_state = 781}, + [5968] = {.lex_state = 781}, + [5969] = {.lex_state = 781}, + [5970] = {.lex_state = 709}, + [5971] = {.lex_state = 781}, + [5972] = {.lex_state = 781}, + [5973] = {.lex_state = 781}, + [5974] = {.lex_state = 781}, + [5975] = {.lex_state = 33, .external_lex_state = 2}, + [5976] = {.lex_state = 14}, + [5977] = {.lex_state = 744}, + [5978] = {.lex_state = 781}, + [5979] = {.lex_state = 266}, + [5980] = {.lex_state = 709}, + [5981] = {.lex_state = 709}, + [5982] = {.lex_state = 709}, + [5983] = {.lex_state = 14}, + [5984] = {.lex_state = 266}, + [5985] = {.lex_state = 3248}, + [5986] = {.lex_state = 314}, + [5987] = {.lex_state = 312}, + [5988] = {.lex_state = 781}, + [5989] = {.lex_state = 308}, + [5990] = {.lex_state = 3248}, + [5991] = {.lex_state = 312}, + [5992] = {.lex_state = 33, .external_lex_state = 2}, + [5993] = {.lex_state = 344}, + [5994] = {.lex_state = 781}, + [5995] = {.lex_state = 14}, + [5996] = {.lex_state = 266}, + [5997] = {.lex_state = 744}, + [5998] = {.lex_state = 266}, + [5999] = {.lex_state = 288}, + [6000] = {.lex_state = 744}, + [6001] = {.lex_state = 33}, + [6002] = {.lex_state = 33}, + [6003] = {.lex_state = 344}, + [6004] = {.lex_state = 99}, + [6005] = {.lex_state = 744}, + [6006] = {.lex_state = 744}, + [6007] = {.lex_state = 337}, + [6008] = {.lex_state = 337}, + [6009] = {.lex_state = 710}, + [6010] = {.lex_state = 410}, + [6011] = {.lex_state = 744}, + [6012] = {.lex_state = 744}, + [6013] = {.lex_state = 711}, + [6014] = {.lex_state = 344}, + [6015] = {.lex_state = 710}, + [6016] = {.lex_state = 710}, + [6017] = {.lex_state = 710}, + [6018] = {.lex_state = 710}, + [6019] = {.lex_state = 384}, + [6020] = {.lex_state = 711}, + [6021] = {.lex_state = 711}, + [6022] = {.lex_state = 99}, + [6023] = {.lex_state = 99}, + [6024] = {.lex_state = 744}, + [6025] = {.lex_state = 744}, + [6026] = {.lex_state = 410}, + [6027] = {.lex_state = 744}, + [6028] = {.lex_state = 711}, + [6029] = {.lex_state = 711}, + [6030] = {.lex_state = 711}, + [6031] = {.lex_state = 711}, + [6032] = {.lex_state = 410}, + [6033] = {.lex_state = 308}, + [6034] = {.lex_state = 99}, + [6035] = {.lex_state = 711}, + [6036] = {.lex_state = 711}, + [6037] = {.lex_state = 711}, + [6038] = {.lex_state = 711}, + [6039] = {.lex_state = 711}, + [6040] = {.lex_state = 711}, + [6041] = {.lex_state = 711}, + [6042] = {.lex_state = 711}, + [6043] = {.lex_state = 711}, + [6044] = {.lex_state = 711}, + [6045] = {.lex_state = 711}, + [6046] = {.lex_state = 337}, + [6047] = {.lex_state = 385}, + [6048] = {.lex_state = 337}, + [6049] = {.lex_state = 33}, + [6050] = {.lex_state = 33}, + [6051] = {.lex_state = 337}, + [6052] = {.lex_state = 328}, + [6053] = {.lex_state = 744}, + [6054] = {.lex_state = 744}, + [6055] = {.lex_state = 744}, + [6056] = {.lex_state = 344}, + [6057] = {.lex_state = 337}, + [6058] = {.lex_state = 372}, + [6059] = {.lex_state = 33}, + [6060] = {.lex_state = 33}, + [6061] = {.lex_state = 33}, + [6062] = {.lex_state = 385}, + [6063] = {.lex_state = 33}, + [6064] = {.lex_state = 33}, + [6065] = {.lex_state = 33}, + [6066] = {.lex_state = 775}, + [6067] = {.lex_state = 373}, + [6068] = {.lex_state = 373}, + [6069] = {.lex_state = 373}, + [6070] = {.lex_state = 410}, + [6071] = {.lex_state = 373}, + [6072] = {.lex_state = 76}, + [6073] = {.lex_state = 410}, + [6074] = {.lex_state = 744}, + [6075] = {.lex_state = 328}, + [6076] = {.lex_state = 410}, + [6077] = {.lex_state = 292}, + [6078] = {.lex_state = 33}, + [6079] = {.lex_state = 308}, + [6080] = {.lex_state = 744}, + [6081] = {.lex_state = 744}, + [6082] = {.lex_state = 410}, + [6083] = {.lex_state = 308}, + [6084] = {.lex_state = 410}, + [6085] = {.lex_state = 410}, + [6086] = {.lex_state = 33}, + [6087] = {.lex_state = 33}, + [6088] = {.lex_state = 33}, + [6089] = {.lex_state = 33}, + [6090] = {.lex_state = 373}, + [6091] = {.lex_state = 410}, + [6092] = {.lex_state = 373}, + [6093] = {.lex_state = 76}, + [6094] = {.lex_state = 410}, + [6095] = {.lex_state = 33}, + [6096] = {.lex_state = 410}, + [6097] = {.lex_state = 410}, + [6098] = {.lex_state = 33}, + [6099] = {.lex_state = 744}, + [6100] = {.lex_state = 410}, + [6101] = {.lex_state = 745}, + [6102] = {.lex_state = 410}, + [6103] = {.lex_state = 410}, + [6104] = {.lex_state = 33}, + [6105] = {.lex_state = 410}, + [6106] = {.lex_state = 410}, + [6107] = {.lex_state = 410}, + [6108] = {.lex_state = 410}, + [6109] = {.lex_state = 410}, + [6110] = {.lex_state = 410}, + [6111] = {.lex_state = 744}, + [6112] = {.lex_state = 775}, + [6113] = {.lex_state = 410}, + [6114] = {.lex_state = 410}, + [6115] = {.lex_state = 76}, + [6116] = {.lex_state = 711}, + [6117] = {.lex_state = 410}, + [6118] = {.lex_state = 410}, + [6119] = {.lex_state = 743}, + [6120] = {.lex_state = 410}, + [6121] = {.lex_state = 410}, + [6122] = {.lex_state = 410}, + [6123] = {.lex_state = 410}, + [6124] = {.lex_state = 410}, + [6125] = {.lex_state = 410}, + [6126] = {.lex_state = 33}, + [6127] = {.lex_state = 344}, + [6128] = {.lex_state = 33}, + [6129] = {.lex_state = 344}, + [6130] = {.lex_state = 33}, + [6131] = {.lex_state = 334}, + [6132] = {.lex_state = 290}, + [6133] = {.lex_state = 312}, + [6134] = {.lex_state = 711}, + [6135] = {.lex_state = 33}, + [6136] = {.lex_state = 33}, + [6137] = {.lex_state = 744}, + [6138] = {.lex_state = 344}, + [6139] = {.lex_state = 308}, + [6140] = {.lex_state = 744}, + [6141] = {.lex_state = 99}, + [6142] = {.lex_state = 285}, + [6143] = {.lex_state = 744}, + [6144] = {.lex_state = 76}, + [6145] = {.lex_state = 744}, + [6146] = {.lex_state = 308}, + [6147] = {.lex_state = 334}, + [6148] = {.lex_state = 285}, + [6149] = {.lex_state = 295}, + [6150] = {.lex_state = 308}, + [6151] = {.lex_state = 33}, + [6152] = {.lex_state = 33}, + [6153] = {.lex_state = 33}, + [6154] = {.lex_state = 33}, + [6155] = {.lex_state = 33}, + [6156] = {.lex_state = 285}, + [6157] = {.lex_state = 744}, + [6158] = {.lex_state = 744}, + [6159] = {.lex_state = 313}, + [6160] = {.lex_state = 710}, + [6161] = {.lex_state = 288}, + [6162] = {.lex_state = 285}, + [6163] = {.lex_state = 33}, + [6164] = {.lex_state = 33}, + [6165] = {.lex_state = 33}, + [6166] = {.lex_state = 33}, + [6167] = {.lex_state = 744}, + [6168] = {.lex_state = 744}, + [6169] = {.lex_state = 744}, + [6170] = {.lex_state = 744}, + [6171] = {.lex_state = 744}, + [6172] = {.lex_state = 744}, + [6173] = {.lex_state = 744}, + [6174] = {.lex_state = 744}, + [6175] = {.lex_state = 744}, + [6176] = {.lex_state = 744}, + [6177] = {.lex_state = 744}, + [6178] = {.lex_state = 744}, + [6179] = {.lex_state = 745}, + [6180] = {.lex_state = 745}, + [6181] = {.lex_state = 744}, + [6182] = {.lex_state = 744}, + [6183] = {.lex_state = 744}, + [6184] = {.lex_state = 744}, + [6185] = {.lex_state = 744}, + [6186] = {.lex_state = 744}, + [6187] = {.lex_state = 344}, + [6188] = {.lex_state = 744}, + [6189] = {.lex_state = 744}, + [6190] = {.lex_state = 744}, + [6191] = {.lex_state = 744}, + [6192] = {.lex_state = 744}, + [6193] = {.lex_state = 744}, + [6194] = {.lex_state = 744}, + [6195] = {.lex_state = 744}, + [6196] = {.lex_state = 744}, + [6197] = {.lex_state = 744}, + [6198] = {.lex_state = 744}, + [6199] = {.lex_state = 744}, + [6200] = {.lex_state = 744}, + [6201] = {.lex_state = 744}, + [6202] = {.lex_state = 330}, + [6203] = {.lex_state = 33}, + [6204] = {.lex_state = 33}, + [6205] = {.lex_state = 33}, + [6206] = {.lex_state = 33}, + [6207] = {.lex_state = 344}, + [6208] = {.lex_state = 344}, + [6209] = {.lex_state = 744}, + [6210] = {.lex_state = 308}, + [6211] = {.lex_state = 410}, + [6212] = {.lex_state = 146}, + [6213] = {.lex_state = 264}, + [6214] = {.lex_state = 744}, + [6215] = {.lex_state = 744}, + [6216] = {.lex_state = 392}, + [6217] = {.lex_state = 146}, + [6218] = {.lex_state = 744}, + [6219] = {.lex_state = 744}, + [6220] = {.lex_state = 744}, + [6221] = {.lex_state = 744}, + [6222] = {.lex_state = 146}, + [6223] = {.lex_state = 146}, + [6224] = {.lex_state = 146}, + [6225] = {.lex_state = 146}, + [6226] = {.lex_state = 146}, + [6227] = {.lex_state = 146}, + [6228] = {.lex_state = 146}, + [6229] = {.lex_state = 146}, + [6230] = {.lex_state = 335}, + [6231] = {.lex_state = 744}, + [6232] = {.lex_state = 744}, + [6233] = {.lex_state = 329}, + [6234] = {.lex_state = 312}, + [6235] = {.lex_state = 744}, + [6236] = {.lex_state = 744}, + [6237] = {.lex_state = 329}, + [6238] = {.lex_state = 146}, + [6239] = {.lex_state = 329}, + [6240] = {.lex_state = 744}, + [6241] = {.lex_state = 332}, + [6242] = {.lex_state = 744}, + [6243] = {.lex_state = 264}, + [6244] = {.lex_state = 335}, + [6245] = {.lex_state = 392}, + [6246] = {.lex_state = 744}, + [6247] = {.lex_state = 264}, + [6248] = {.lex_state = 744}, + [6249] = {.lex_state = 146}, + [6250] = {.lex_state = 744}, + [6251] = {.lex_state = 146}, + [6252] = {.lex_state = 264}, + [6253] = {.lex_state = 264}, + [6254] = {.lex_state = 744}, + [6255] = {.lex_state = 329}, + [6256] = {.lex_state = 146}, + [6257] = {.lex_state = 146}, + [6258] = {.lex_state = 146}, + [6259] = {.lex_state = 146}, + [6260] = {.lex_state = 146}, + [6261] = {.lex_state = 146}, + [6262] = {.lex_state = 146}, + [6263] = {.lex_state = 146}, + [6264] = {.lex_state = 744}, + [6265] = {.lex_state = 744}, + [6266] = {.lex_state = 392}, + [6267] = {.lex_state = 264}, + [6268] = {.lex_state = 744}, + [6269] = {.lex_state = 386}, + [6270] = {.lex_state = 744}, + [6271] = {.lex_state = 744}, + [6272] = {.lex_state = 744}, + [6273] = {.lex_state = 744}, + [6274] = {.lex_state = 264}, + [6275] = {.lex_state = 744}, + [6276] = {.lex_state = 744}, + [6277] = {.lex_state = 392}, + [6278] = {.lex_state = 744}, + [6279] = {.lex_state = 146}, + [6280] = {.lex_state = 146}, + [6281] = {.lex_state = 146}, + [6282] = {.lex_state = 146}, + [6283] = {.lex_state = 146}, + [6284] = {.lex_state = 146}, + [6285] = {.lex_state = 146}, + [6286] = {.lex_state = 146}, + [6287] = {.lex_state = 386}, + [6288] = {.lex_state = 386}, + [6289] = {.lex_state = 344}, + [6290] = {.lex_state = 392}, + [6291] = {.lex_state = 264}, + [6292] = {.lex_state = 399}, + [6293] = {.lex_state = 399}, + [6294] = {.lex_state = 264}, + [6295] = {.lex_state = 744}, + [6296] = {.lex_state = 264}, + [6297] = {.lex_state = 744}, + [6298] = {.lex_state = 710}, + [6299] = {.lex_state = 744}, + [6300] = {.lex_state = 744}, + [6301] = {.lex_state = 146}, + [6302] = {.lex_state = 146}, + [6303] = {.lex_state = 146}, + [6304] = {.lex_state = 146}, + [6305] = {.lex_state = 146}, + [6306] = {.lex_state = 146}, + [6307] = {.lex_state = 146}, + [6308] = {.lex_state = 146}, + [6309] = {.lex_state = 146}, + [6310] = {.lex_state = 392}, + [6311] = {.lex_state = 264}, + [6312] = {.lex_state = 344}, + [6313] = {.lex_state = 146}, + [6314] = {.lex_state = 305}, + [6315] = {.lex_state = 264}, + [6316] = {.lex_state = 399}, + [6317] = {.lex_state = 312}, + [6318] = {.lex_state = 312}, + [6319] = {.lex_state = 146}, + [6320] = {.lex_state = 146}, + [6321] = {.lex_state = 146}, + [6322] = {.lex_state = 146}, + [6323] = {.lex_state = 146}, + [6324] = {.lex_state = 146}, + [6325] = {.lex_state = 146}, + [6326] = {.lex_state = 146}, + [6327] = {.lex_state = 744}, + [6328] = {.lex_state = 392}, + [6329] = {.lex_state = 264}, + [6330] = {.lex_state = 744}, + [6331] = {.lex_state = 744}, + [6332] = {.lex_state = 33}, + [6333] = {.lex_state = 337}, + [6334] = {.lex_state = 264}, + [6335] = {.lex_state = 337}, + [6336] = {.lex_state = 744}, + [6337] = {.lex_state = 744}, + [6338] = {.lex_state = 146}, + [6339] = {.lex_state = 146}, + [6340] = {.lex_state = 146}, + [6341] = {.lex_state = 146}, + [6342] = {.lex_state = 146}, + [6343] = {.lex_state = 146}, + [6344] = {.lex_state = 146}, + [6345] = {.lex_state = 146}, + [6346] = {.lex_state = 264}, + [6347] = {.lex_state = 146}, + [6348] = {.lex_state = 392}, + [6349] = {.lex_state = 264}, + [6350] = {.lex_state = 744}, + [6351] = {.lex_state = 264}, + [6352] = {.lex_state = 146}, + [6353] = {.lex_state = 264}, + [6354] = {.lex_state = 146}, + [6355] = {.lex_state = 146}, + [6356] = {.lex_state = 146}, + [6357] = {.lex_state = 146}, + [6358] = {.lex_state = 146}, + [6359] = {.lex_state = 146}, + [6360] = {.lex_state = 146}, + [6361] = {.lex_state = 146}, + [6362] = {.lex_state = 392}, + [6363] = {.lex_state = 264}, + [6364] = {.lex_state = 404}, + [6365] = {.lex_state = 744}, + [6366] = {.lex_state = 146}, + [6367] = {.lex_state = 264}, + [6368] = {.lex_state = 744}, + [6369] = {.lex_state = 744}, + [6370] = {.lex_state = 146}, + [6371] = {.lex_state = 146}, + [6372] = {.lex_state = 146}, + [6373] = {.lex_state = 146}, + [6374] = {.lex_state = 146}, + [6375] = {.lex_state = 146}, + [6376] = {.lex_state = 146}, + [6377] = {.lex_state = 146}, + [6378] = {.lex_state = 744}, + [6379] = {.lex_state = 392}, + [6380] = {.lex_state = 405}, + [6381] = {.lex_state = 264}, + [6382] = {.lex_state = 81}, + [6383] = {.lex_state = 264}, + [6384] = {.lex_state = 264}, + [6385] = {.lex_state = 329}, + [6386] = {.lex_state = 744}, + [6387] = {.lex_state = 146}, + [6388] = {.lex_state = 146}, + [6389] = {.lex_state = 146}, + [6390] = {.lex_state = 146}, + [6391] = {.lex_state = 146}, + [6392] = {.lex_state = 146}, + [6393] = {.lex_state = 146}, + [6394] = {.lex_state = 146}, + [6395] = {.lex_state = 744}, + [6396] = {.lex_state = 392}, + [6397] = {.lex_state = 264}, + [6398] = {.lex_state = 404}, + [6399] = {.lex_state = 266}, + [6400] = {.lex_state = 264}, + [6401] = {.lex_state = 82}, + [6402] = {.lex_state = 404}, + [6403] = {.lex_state = 146}, + [6404] = {.lex_state = 146}, + [6405] = {.lex_state = 146}, + [6406] = {.lex_state = 146}, + [6407] = {.lex_state = 146}, + [6408] = {.lex_state = 146}, + [6409] = {.lex_state = 146}, + [6410] = {.lex_state = 146}, + [6411] = {.lex_state = 392}, + [6412] = {.lex_state = 264}, + [6413] = {.lex_state = 408}, + [6414] = {.lex_state = 744}, + [6415] = {.lex_state = 264}, + [6416] = {.lex_state = 266}, + [6417] = {.lex_state = 146}, + [6418] = {.lex_state = 146}, + [6419] = {.lex_state = 146}, + [6420] = {.lex_state = 146}, + [6421] = {.lex_state = 146}, + [6422] = {.lex_state = 146}, + [6423] = {.lex_state = 744}, + [6424] = {.lex_state = 146}, + [6425] = {.lex_state = 744}, + [6426] = {.lex_state = 392}, + [6427] = {.lex_state = 264}, + [6428] = {.lex_state = 408}, + [6429] = {.lex_state = 264}, + [6430] = {.lex_state = 146}, + [6431] = {.lex_state = 146}, + [6432] = {.lex_state = 146}, + [6433] = {.lex_state = 146}, + [6434] = {.lex_state = 146}, + [6435] = {.lex_state = 146}, + [6436] = {.lex_state = 146}, + [6437] = {.lex_state = 146}, + [6438] = {.lex_state = 146}, + [6439] = {.lex_state = 392}, + [6440] = {.lex_state = 264}, + [6441] = {.lex_state = 386}, + [6442] = {.lex_state = 264}, + [6443] = {.lex_state = 744}, + [6444] = {.lex_state = 146}, + [6445] = {.lex_state = 146}, + [6446] = {.lex_state = 146}, + [6447] = {.lex_state = 146}, + [6448] = {.lex_state = 146}, + [6449] = {.lex_state = 146}, + [6450] = {.lex_state = 146}, + [6451] = {.lex_state = 146}, + [6452] = {.lex_state = 404}, + [6453] = {.lex_state = 744}, + [6454] = {.lex_state = 392}, + [6455] = {.lex_state = 264}, + [6456] = {.lex_state = 264}, + [6457] = {.lex_state = 744}, + [6458] = {.lex_state = 146}, + [6459] = {.lex_state = 146}, + [6460] = {.lex_state = 146}, + [6461] = {.lex_state = 146}, + [6462] = {.lex_state = 146}, + [6463] = {.lex_state = 146}, + [6464] = {.lex_state = 146}, + [6465] = {.lex_state = 146}, + [6466] = {.lex_state = 744}, + [6467] = {.lex_state = 392}, + [6468] = {.lex_state = 264}, + [6469] = {.lex_state = 744}, + [6470] = {.lex_state = 264}, + [6471] = {.lex_state = 744}, + [6472] = {.lex_state = 146}, + [6473] = {.lex_state = 146}, + [6474] = {.lex_state = 146}, + [6475] = {.lex_state = 146}, + [6476] = {.lex_state = 146}, + [6477] = {.lex_state = 146}, + [6478] = {.lex_state = 146}, + [6479] = {.lex_state = 146}, + [6480] = {.lex_state = 744}, + [6481] = {.lex_state = 392}, + [6482] = {.lex_state = 264}, + [6483] = {.lex_state = 264}, + [6484] = {.lex_state = 146}, + [6485] = {.lex_state = 146}, + [6486] = {.lex_state = 146}, + [6487] = {.lex_state = 146}, + [6488] = {.lex_state = 146}, + [6489] = {.lex_state = 146}, + [6490] = {.lex_state = 146}, + [6491] = {.lex_state = 146}, + [6492] = {.lex_state = 392}, + [6493] = {.lex_state = 264}, + [6494] = {.lex_state = 264}, + [6495] = {.lex_state = 744}, + [6496] = {.lex_state = 392}, + [6497] = {.lex_state = 264}, + [6498] = {.lex_state = 264}, + [6499] = {.lex_state = 392}, + [6500] = {.lex_state = 264}, + [6501] = {.lex_state = 264}, + [6502] = {.lex_state = 392}, + [6503] = {.lex_state = 264}, + [6504] = {.lex_state = 264}, + [6505] = {.lex_state = 46}, + [6506] = {.lex_state = 392}, + [6507] = {.lex_state = 264}, + [6508] = {.lex_state = 264}, + [6509] = {.lex_state = 392}, + [6510] = {.lex_state = 264}, + [6511] = {.lex_state = 264}, + [6512] = {.lex_state = 329}, + [6513] = {.lex_state = 264}, + [6514] = {.lex_state = 264}, + [6515] = {.lex_state = 744}, + [6516] = {.lex_state = 392}, + [6517] = {.lex_state = 264}, + [6518] = {.lex_state = 264}, + [6519] = {.lex_state = 744}, + [6520] = {.lex_state = 392}, + [6521] = {.lex_state = 264}, + [6522] = {.lex_state = 264}, + [6523] = {.lex_state = 392}, + [6524] = {.lex_state = 264}, + [6525] = {.lex_state = 264}, + [6526] = {.lex_state = 392}, + [6527] = {.lex_state = 264}, + [6528] = {.lex_state = 264}, + [6529] = {.lex_state = 392}, + [6530] = {.lex_state = 264}, + [6531] = {.lex_state = 264}, + [6532] = {.lex_state = 337}, + [6533] = {.lex_state = 392}, + [6534] = {.lex_state = 264}, + [6535] = {.lex_state = 264}, + [6536] = {.lex_state = 392}, + [6537] = {.lex_state = 264}, + [6538] = {.lex_state = 264}, + [6539] = {.lex_state = 392}, + [6540] = {.lex_state = 264}, + [6541] = {.lex_state = 264}, + [6542] = {.lex_state = 392}, + [6543] = {.lex_state = 264}, + [6544] = {.lex_state = 264}, + [6545] = {.lex_state = 392}, + [6546] = {.lex_state = 264}, + [6547] = {.lex_state = 264}, + [6548] = {.lex_state = 392}, + [6549] = {.lex_state = 264}, + [6550] = {.lex_state = 264}, + [6551] = {.lex_state = 335}, + [6552] = {.lex_state = 392}, + [6553] = {.lex_state = 264}, + [6554] = {.lex_state = 264}, + [6555] = {.lex_state = 392}, + [6556] = {.lex_state = 264}, + [6557] = {.lex_state = 264}, + [6558] = {.lex_state = 744}, + [6559] = {.lex_state = 392}, + [6560] = {.lex_state = 264}, + [6561] = {.lex_state = 264}, + [6562] = {.lex_state = 392}, + [6563] = {.lex_state = 264}, + [6564] = {.lex_state = 264}, + [6565] = {.lex_state = 744}, + [6566] = {.lex_state = 392}, + [6567] = {.lex_state = 264}, + [6568] = {.lex_state = 264}, + [6569] = {.lex_state = 392}, + [6570] = {.lex_state = 264}, + [6571] = {.lex_state = 264}, + [6572] = {.lex_state = 392}, + [6573] = {.lex_state = 264}, + [6574] = {.lex_state = 264}, + [6575] = {.lex_state = 392}, + [6576] = {.lex_state = 264}, + [6577] = {.lex_state = 264}, + [6578] = {.lex_state = 392}, + [6579] = {.lex_state = 264}, + [6580] = {.lex_state = 264}, + [6581] = {.lex_state = 392}, + [6582] = {.lex_state = 264}, + [6583] = {.lex_state = 264}, + [6584] = {.lex_state = 264}, + [6585] = {.lex_state = 264}, + [6586] = {.lex_state = 264}, + [6587] = {.lex_state = 264}, + [6588] = {.lex_state = 264}, + [6589] = {.lex_state = 264}, + [6590] = {.lex_state = 392}, + [6591] = {.lex_state = 744}, + [6592] = {.lex_state = 744}, + [6593] = {.lex_state = 744}, + [6594] = {.lex_state = 147}, + [6595] = {.lex_state = 744}, + [6596] = {.lex_state = 710}, + [6597] = {.lex_state = 146}, + [6598] = {.lex_state = 329}, + [6599] = {.lex_state = 744}, + [6600] = {.lex_state = 744}, + [6601] = {.lex_state = 146}, + [6602] = {.lex_state = 399}, + [6603] = {.lex_state = 744}, + [6604] = {.lex_state = 744}, + [6605] = {.lex_state = 744}, + [6606] = {.lex_state = 744}, + [6607] = {.lex_state = 744}, + [6608] = {.lex_state = 744}, + [6609] = {.lex_state = 744}, + [6610] = {.lex_state = 744}, + [6611] = {.lex_state = 744}, + [6612] = {.lex_state = 146}, + [6613] = {.lex_state = 744}, + [6614] = {.lex_state = 146}, + [6615] = {.lex_state = 744}, + [6616] = {.lex_state = 744}, + [6617] = {.lex_state = 744}, + [6618] = {.lex_state = 744}, + [6619] = {.lex_state = 744}, + [6620] = {.lex_state = 744}, + [6621] = {.lex_state = 335}, + [6622] = {.lex_state = 146}, + [6623] = {.lex_state = 744}, + [6624] = {.lex_state = 146}, + [6625] = {.lex_state = 744}, + [6626] = {.lex_state = 405}, + [6627] = {.lex_state = 405}, + [6628] = {.lex_state = 744}, + [6629] = {.lex_state = 146}, + [6630] = {.lex_state = 744}, + [6631] = {.lex_state = 335}, + [6632] = {.lex_state = 744}, + [6633] = {.lex_state = 744}, + [6634] = {.lex_state = 146}, + [6635] = {.lex_state = 386}, + [6636] = {.lex_state = 744}, + [6637] = {.lex_state = 744}, + [6638] = {.lex_state = 387}, + [6639] = {.lex_state = 744}, + [6640] = {.lex_state = 744}, + [6641] = {.lex_state = 335}, + [6642] = {.lex_state = 744}, + [6643] = {.lex_state = 744}, + [6644] = {.lex_state = 744}, + [6645] = {.lex_state = 744}, + [6646] = {.lex_state = 392}, + [6647] = {.lex_state = 392}, + [6648] = {.lex_state = 744}, + [6649] = {.lex_state = 744}, + [6650] = {.lex_state = 744}, + [6651] = {.lex_state = 288}, + [6652] = {.lex_state = 744}, + [6653] = {.lex_state = 744}, + [6654] = {.lex_state = 344}, + [6655] = {.lex_state = 744}, + [6656] = {.lex_state = 408}, + [6657] = {.lex_state = 744}, + [6658] = {.lex_state = 335}, + [6659] = {.lex_state = 146}, + [6660] = {.lex_state = 744}, + [6661] = {.lex_state = 146}, + [6662] = {.lex_state = 146}, + [6663] = {.lex_state = 146}, + [6664] = {.lex_state = 342}, + [6665] = {.lex_state = 266}, + [6666] = {.lex_state = 146}, + [6667] = {.lex_state = 146}, + [6668] = {.lex_state = 146}, + [6669] = {.lex_state = 744}, + [6670] = {.lex_state = 386}, + [6671] = {.lex_state = 744}, + [6672] = {.lex_state = 386}, + [6673] = {.lex_state = 285}, + [6674] = {.lex_state = 744}, + [6675] = {.lex_state = 744}, + [6676] = {.lex_state = 285}, + [6677] = {.lex_state = 405}, + [6678] = {.lex_state = 744}, + [6679] = {.lex_state = 744}, + [6680] = {.lex_state = 387}, + [6681] = {.lex_state = 386}, + [6682] = {.lex_state = 744}, + [6683] = {.lex_state = 146}, + [6684] = {.lex_state = 744}, + [6685] = {.lex_state = 146}, + [6686] = {.lex_state = 744}, + [6687] = {.lex_state = 744}, + [6688] = {.lex_state = 329}, + [6689] = {.lex_state = 146}, + [6690] = {.lex_state = 744}, + [6691] = {.lex_state = 744}, + [6692] = {.lex_state = 332}, + [6693] = {.lex_state = 392}, + [6694] = {.lex_state = 386}, + [6695] = {.lex_state = 744}, + [6696] = {.lex_state = 744}, + [6697] = {.lex_state = 386}, + [6698] = {.lex_state = 744}, + [6699] = {.lex_state = 744}, + [6700] = {.lex_state = 146}, + [6701] = {.lex_state = 146}, + [6702] = {.lex_state = 744}, + [6703] = {.lex_state = 744}, + [6704] = {.lex_state = 264}, + [6705] = {.lex_state = 744}, + [6706] = {.lex_state = 408}, + [6707] = {.lex_state = 335}, + [6708] = {.lex_state = 744}, + [6709] = {.lex_state = 335}, + [6710] = {.lex_state = 76}, + [6711] = {.lex_state = 408}, + [6712] = {.lex_state = 392}, + [6713] = {.lex_state = 711}, + [6714] = {.lex_state = 744}, + [6715] = {.lex_state = 744}, + [6716] = {.lex_state = 744}, + [6717] = {.lex_state = 404}, + [6718] = {.lex_state = 264}, + [6719] = {.lex_state = 146}, + [6720] = {.lex_state = 744}, + [6721] = {.lex_state = 744}, + [6722] = {.lex_state = 744}, + [6723] = {.lex_state = 744}, + [6724] = {.lex_state = 744}, + [6725] = {.lex_state = 744}, + [6726] = {.lex_state = 744}, + [6727] = {.lex_state = 744}, + [6728] = {.lex_state = 405}, + [6729] = {.lex_state = 146}, + [6730] = {.lex_state = 146}, + [6731] = {.lex_state = 146}, + [6732] = {.lex_state = 76}, + [6733] = {.lex_state = 744}, + [6734] = {.lex_state = 744}, + [6735] = {.lex_state = 744}, + [6736] = {.lex_state = 744}, + [6737] = {.lex_state = 709}, + [6738] = {.lex_state = 709}, + [6739] = {.lex_state = 329}, + [6740] = {.lex_state = 744}, + [6741] = {.lex_state = 399}, + [6742] = {.lex_state = 744}, + [6743] = {.lex_state = 744}, + [6744] = {.lex_state = 33}, + [6745] = {.lex_state = 146}, + [6746] = {.lex_state = 744}, + [6747] = {.lex_state = 392}, + [6748] = {.lex_state = 336}, + [6749] = {.lex_state = 744}, + [6750] = {.lex_state = 146}, + [6751] = {.lex_state = 146}, + [6752] = {.lex_state = 744}, + [6753] = {.lex_state = 229}, + [6754] = {.lex_state = 744}, + [6755] = {.lex_state = 336}, + [6756] = {.lex_state = 403}, + [6757] = {.lex_state = 336}, + [6758] = {.lex_state = 306}, + [6759] = {.lex_state = 146}, + [6760] = {.lex_state = 229}, + [6761] = {.lex_state = 146}, + [6762] = {.lex_state = 146}, + [6763] = {.lex_state = 146}, + [6764] = {.lex_state = 381}, + [6765] = {.lex_state = 146}, + [6766] = {.lex_state = 146}, + [6767] = {.lex_state = 146}, + [6768] = {.lex_state = 146}, + [6769] = {.lex_state = 146}, + [6770] = {.lex_state = 146}, + [6771] = {.lex_state = 400}, + [6772] = {.lex_state = 744}, + [6773] = {.lex_state = 744}, + [6774] = {.lex_state = 744}, + [6775] = {.lex_state = 744}, + [6776] = {.lex_state = 336}, + [6777] = {.lex_state = 388}, + [6778] = {.lex_state = 146}, + [6779] = {.lex_state = 146}, + [6780] = {.lex_state = 409}, + [6781] = {.lex_state = 406}, + [6782] = {.lex_state = 336}, + [6783] = {.lex_state = 146}, + [6784] = {.lex_state = 146}, + [6785] = {.lex_state = 146}, + [6786] = {.lex_state = 146}, + [6787] = {.lex_state = 146}, + [6788] = {.lex_state = 146}, + [6789] = {.lex_state = 146}, + [6790] = {.lex_state = 744}, + [6791] = {.lex_state = 744}, + [6792] = {.lex_state = 146}, + [6793] = {.lex_state = 146}, + [6794] = {.lex_state = 744}, + [6795] = {.lex_state = 146}, + [6796] = {.lex_state = 744}, + [6797] = {.lex_state = 744}, + [6798] = {.lex_state = 744}, + [6799] = {.lex_state = 744}, + [6800] = {.lex_state = 146}, + [6801] = {.lex_state = 744}, + [6802] = {.lex_state = 40}, + [6803] = {.lex_state = 336}, + [6804] = {.lex_state = 380}, + [6805] = {.lex_state = 206}, + [6806] = {.lex_state = 146}, + [6807] = {.lex_state = 388}, + [6808] = {.lex_state = 336}, + [6809] = {.lex_state = 146}, + [6810] = {.lex_state = 146}, + [6811] = {.lex_state = 146}, + [6812] = {.lex_state = 146}, + [6813] = {.lex_state = 146}, + [6814] = {.lex_state = 146}, + [6815] = {.lex_state = 146}, + [6816] = {.lex_state = 146}, + [6817] = {.lex_state = 146}, + [6818] = {.lex_state = 146}, + [6819] = {.lex_state = 146}, + [6820] = {.lex_state = 744}, + [6821] = {.lex_state = 744}, + [6822] = {.lex_state = 146}, + [6823] = {.lex_state = 336}, + [6824] = {.lex_state = 146}, + [6825] = {.lex_state = 406}, + [6826] = {.lex_state = 146}, + [6827] = {.lex_state = 744}, + [6828] = {.lex_state = 406}, + [6829] = {.lex_state = 146}, + [6830] = {.lex_state = 336}, + [6831] = {.lex_state = 743}, + [6832] = {.lex_state = 336}, + [6833] = {.lex_state = 264}, + [6834] = {.lex_state = 336}, + [6835] = {.lex_state = 743}, + [6836] = {.lex_state = 206}, + [6837] = {.lex_state = 146}, + [6838] = {.lex_state = 744}, + [6839] = {.lex_state = 146}, + [6840] = {.lex_state = 146}, + [6841] = {.lex_state = 146}, + [6842] = {.lex_state = 743}, + [6843] = {.lex_state = 146}, + [6844] = {.lex_state = 85}, + [6845] = {.lex_state = 744}, + [6846] = {.lex_state = 146}, + [6847] = {.lex_state = 146}, + [6848] = {.lex_state = 745}, + [6849] = {.lex_state = 146}, + [6850] = {.lex_state = 722}, + [6851] = {.lex_state = 146}, + [6852] = {.lex_state = 336}, + [6853] = {.lex_state = 146}, + [6854] = {.lex_state = 336}, + [6855] = {.lex_state = 410}, + [6856] = {.lex_state = 2}, + [6857] = {.lex_state = 336}, + [6858] = {.lex_state = 146}, + [6859] = {.lex_state = 744}, + [6860] = {.lex_state = 146}, + [6861] = {.lex_state = 146}, + [6862] = {.lex_state = 146}, + [6863] = {.lex_state = 146}, + [6864] = {.lex_state = 146}, + [6865] = {.lex_state = 146}, + [6866] = {.lex_state = 146}, + [6867] = {.lex_state = 14}, + [6868] = {.lex_state = 146}, + [6869] = {.lex_state = 146}, + [6870] = {.lex_state = 743}, + [6871] = {.lex_state = 146}, + [6872] = {.lex_state = 146}, + [6873] = {.lex_state = 146}, + [6874] = {.lex_state = 146}, + [6875] = {.lex_state = 336}, + [6876] = {.lex_state = 146}, + [6877] = {.lex_state = 146}, + [6878] = {.lex_state = 406}, + [6879] = {.lex_state = 744}, + [6880] = {.lex_state = 744}, + [6881] = {.lex_state = 336}, + [6882] = {.lex_state = 146}, + [6883] = {.lex_state = 146}, + [6884] = {.lex_state = 146}, + [6885] = {.lex_state = 146}, + [6886] = {.lex_state = 146}, + [6887] = {.lex_state = 146}, + [6888] = {.lex_state = 146}, + [6889] = {.lex_state = 146}, + [6890] = {.lex_state = 744}, + [6891] = {.lex_state = 146}, + [6892] = {.lex_state = 85}, + [6893] = {.lex_state = 85}, + [6894] = {.lex_state = 146}, + [6895] = {.lex_state = 146}, + [6896] = {.lex_state = 146}, + [6897] = {.lex_state = 146}, + [6898] = {.lex_state = 146}, + [6899] = {.lex_state = 146}, + [6900] = {.lex_state = 722}, + [6901] = {.lex_state = 744}, + [6902] = {.lex_state = 410}, + [6903] = {.lex_state = 146}, + [6904] = {.lex_state = 388}, + [6905] = {.lex_state = 146}, + [6906] = {.lex_state = 744}, + [6907] = {.lex_state = 744}, + [6908] = {.lex_state = 336}, + [6909] = {.lex_state = 744}, + [6910] = {.lex_state = 146}, + [6911] = {.lex_state = 336}, + [6912] = {.lex_state = 743}, + [6913] = {.lex_state = 146}, + [6914] = {.lex_state = 744}, + [6915] = {.lex_state = 744}, + [6916] = {.lex_state = 146}, + [6917] = {.lex_state = 146}, + [6918] = {.lex_state = 146}, + [6919] = {.lex_state = 410}, + [6920] = {.lex_state = 146}, + [6921] = {.lex_state = 744}, + [6922] = {.lex_state = 146}, + [6923] = {.lex_state = 146}, + [6924] = {.lex_state = 744}, + [6925] = {.lex_state = 146}, + [6926] = {.lex_state = 403}, + [6927] = {.lex_state = 744}, + [6928] = {.lex_state = 336}, + [6929] = {.lex_state = 744}, + [6930] = {.lex_state = 744}, + [6931] = {.lex_state = 744}, + [6932] = {.lex_state = 743}, + [6933] = {.lex_state = 336}, + [6934] = {.lex_state = 336}, + [6935] = {.lex_state = 146}, + [6936] = {.lex_state = 744}, + [6937] = {.lex_state = 146}, + [6938] = {.lex_state = 146}, + [6939] = {.lex_state = 146}, + [6940] = {.lex_state = 146}, + [6941] = {.lex_state = 146}, + [6942] = {.lex_state = 146}, + [6943] = {.lex_state = 146}, + [6944] = {.lex_state = 146}, + [6945] = {.lex_state = 388}, + [6946] = {.lex_state = 146}, + [6947] = {.lex_state = 146}, + [6948] = {.lex_state = 146}, + [6949] = {.lex_state = 336}, + [6950] = {.lex_state = 336}, + [6951] = {.lex_state = 388}, + [6952] = {.lex_state = 744}, + [6953] = {.lex_state = 146}, + [6954] = {.lex_state = 744}, + [6955] = {.lex_state = 336}, + [6956] = {.lex_state = 146}, + [6957] = {.lex_state = 744}, + [6958] = {.lex_state = 206}, + [6959] = {.lex_state = 146}, + [6960] = {.lex_state = 146}, + [6961] = {.lex_state = 146}, + [6962] = {.lex_state = 336}, + [6963] = {.lex_state = 146}, + [6964] = {.lex_state = 146}, + [6965] = {.lex_state = 146}, + [6966] = {.lex_state = 146}, + [6967] = {.lex_state = 146}, + [6968] = {.lex_state = 146}, + [6969] = {.lex_state = 146}, + [6970] = {.lex_state = 146}, + [6971] = {.lex_state = 744}, + [6972] = {.lex_state = 743}, + [6973] = {.lex_state = 388}, + [6974] = {.lex_state = 744}, + [6975] = {.lex_state = 744}, + [6976] = {.lex_state = 336}, + [6977] = {.lex_state = 146}, + [6978] = {.lex_state = 409}, + [6979] = {.lex_state = 744}, + [6980] = {.lex_state = 146}, + [6981] = {.lex_state = 40}, + [6982] = {.lex_state = 146}, + [6983] = {.lex_state = 146}, + [6984] = {.lex_state = 146}, + [6985] = {.lex_state = 146}, + [6986] = {.lex_state = 388}, + [6987] = {.lex_state = 388}, + [6988] = {.lex_state = 146}, + [6989] = {.lex_state = 146}, + [6990] = {.lex_state = 146}, + [6991] = {.lex_state = 146}, + [6992] = {.lex_state = 146}, + [6993] = {.lex_state = 743}, + [6994] = {.lex_state = 744}, + [6995] = {.lex_state = 743}, + [6996] = {.lex_state = 744}, + [6997] = {.lex_state = 403}, + [6998] = {.lex_state = 744}, + [6999] = {.lex_state = 146}, + [7000] = {.lex_state = 85}, + [7001] = {.lex_state = 146}, + [7002] = {.lex_state = 146}, + [7003] = {.lex_state = 146}, + [7004] = {.lex_state = 744}, + [7005] = {.lex_state = 146}, + [7006] = {.lex_state = 744}, + [7007] = {.lex_state = 146}, + [7008] = {.lex_state = 146}, + [7009] = {.lex_state = 333}, + [7010] = {.lex_state = 146}, + [7011] = {.lex_state = 146}, + [7012] = {.lex_state = 744}, + [7013] = {.lex_state = 744}, + [7014] = {.lex_state = 2}, + [7015] = {.lex_state = 146}, + [7016] = {.lex_state = 146}, + [7017] = {.lex_state = 146}, + [7018] = {.lex_state = 146}, + [7019] = {.lex_state = 146}, + [7020] = {.lex_state = 146}, + [7021] = {.lex_state = 146}, + [7022] = {.lex_state = 146}, + [7023] = {.lex_state = 146}, + [7024] = {.lex_state = 744}, + [7025] = {.lex_state = 146}, + [7026] = {.lex_state = 146}, + [7027] = {.lex_state = 146}, + [7028] = {.lex_state = 146}, + [7029] = {.lex_state = 744}, + [7030] = {.lex_state = 146}, + [7031] = {.lex_state = 146}, + [7032] = {.lex_state = 146}, + [7033] = {.lex_state = 146}, + [7034] = {.lex_state = 146}, + [7035] = {.lex_state = 744}, + [7036] = {.lex_state = 146}, + [7037] = {.lex_state = 146}, + [7038] = {.lex_state = 146}, + [7039] = {.lex_state = 146}, + [7040] = {.lex_state = 744}, + [7041] = {.lex_state = 402}, + [7042] = {.lex_state = 402}, + [7043] = {.lex_state = 743}, + [7044] = {.lex_state = 744}, + [7045] = {.lex_state = 146}, + [7046] = {.lex_state = 329}, + [7047] = {.lex_state = 146}, + [7048] = {.lex_state = 744}, + [7049] = {.lex_state = 744}, + [7050] = {.lex_state = 744}, + [7051] = {.lex_state = 146}, + [7052] = {.lex_state = 146}, + [7053] = {.lex_state = 409}, + [7054] = {.lex_state = 744}, + [7055] = {.lex_state = 744}, + [7056] = {.lex_state = 146}, + [7057] = {.lex_state = 14}, + [7058] = {.lex_state = 336}, + [7059] = {.lex_state = 744}, + [7060] = {.lex_state = 146}, + [7061] = {.lex_state = 146}, + [7062] = {.lex_state = 744}, + [7063] = {.lex_state = 743}, + [7064] = {.lex_state = 744}, + [7065] = {.lex_state = 403}, + [7066] = {.lex_state = 336}, + [7067] = {.lex_state = 744}, + [7068] = {.lex_state = 146}, + [7069] = {.lex_state = 336}, + [7070] = {.lex_state = 744}, + [7071] = {.lex_state = 744}, + [7072] = {.lex_state = 206}, + [7073] = {.lex_state = 146}, + [7074] = {.lex_state = 146}, + [7075] = {.lex_state = 146}, + [7076] = {.lex_state = 14}, + [7077] = {.lex_state = 146}, + [7078] = {.lex_state = 146}, + [7079] = {.lex_state = 146}, + [7080] = {.lex_state = 146}, + [7081] = {.lex_state = 388}, + [7082] = {.lex_state = 146}, + [7083] = {.lex_state = 744}, + [7084] = {.lex_state = 744}, + [7085] = {.lex_state = 744}, + [7086] = {.lex_state = 743}, + [7087] = {.lex_state = 744}, + [7088] = {.lex_state = 744}, + [7089] = {.lex_state = 146}, + [7090] = {.lex_state = 206}, + [7091] = {.lex_state = 287}, + [7092] = {.lex_state = 146}, + [7093] = {.lex_state = 2}, + [7094] = {.lex_state = 229}, + [7095] = {.lex_state = 743}, + [7096] = {.lex_state = 2}, + [7097] = {.lex_state = 146}, + [7098] = {.lex_state = 743}, + [7099] = {.lex_state = 402}, + [7100] = {.lex_state = 402}, + [7101] = {.lex_state = 2}, + [7102] = {.lex_state = 146}, + [7103] = {.lex_state = 740}, + [7104] = {.lex_state = 146}, + [7105] = {.lex_state = 2}, + [7106] = {.lex_state = 744}, + [7107] = {.lex_state = 229}, + [7108] = {.lex_state = 744}, + [7109] = {.lex_state = 333}, + [7110] = {.lex_state = 333}, + [7111] = {.lex_state = 744}, + [7112] = {.lex_state = 744}, + [7113] = {.lex_state = 744}, + [7114] = {.lex_state = 206}, + [7115] = {.lex_state = 85}, + [7116] = {.lex_state = 146}, + [7117] = {.lex_state = 744}, + [7118] = {.lex_state = 744}, + [7119] = {.lex_state = 85}, + [7120] = {.lex_state = 156}, + [7121] = {.lex_state = 744}, + [7122] = {.lex_state = 403}, + [7123] = {.lex_state = 146}, + [7124] = {.lex_state = 146}, + [7125] = {.lex_state = 744}, + [7126] = {.lex_state = 744}, + [7127] = {.lex_state = 744}, + [7128] = {.lex_state = 146}, + [7129] = {.lex_state = 146}, + [7130] = {.lex_state = 146}, + [7131] = {.lex_state = 400}, + [7132] = {.lex_state = 744}, + [7133] = {.lex_state = 382}, + [7134] = {.lex_state = 146}, + [7135] = {.lex_state = 335}, + [7136] = {.lex_state = 146}, + [7137] = {.lex_state = 146}, + [7138] = {.lex_state = 146}, + [7139] = {.lex_state = 146}, + [7140] = {.lex_state = 146}, + [7141] = {.lex_state = 146}, + [7142] = {.lex_state = 336}, + [7143] = {.lex_state = 740}, + [7144] = {.lex_state = 146}, + [7145] = {.lex_state = 146}, + [7146] = {.lex_state = 744}, + [7147] = {.lex_state = 146}, + [7148] = {.lex_state = 744}, + [7149] = {.lex_state = 146}, + [7150] = {.lex_state = 403}, + [7151] = {.lex_state = 744}, + [7152] = {.lex_state = 206}, + [7153] = {.lex_state = 146}, + [7154] = {.lex_state = 206}, + [7155] = {.lex_state = 336}, + [7156] = {.lex_state = 146}, + [7157] = {.lex_state = 744}, + [7158] = {.lex_state = 744}, + [7159] = {.lex_state = 744}, + [7160] = {.lex_state = 744}, + [7161] = {.lex_state = 744}, + [7162] = {.lex_state = 146}, + [7163] = {.lex_state = 744}, + [7164] = {.lex_state = 744}, + [7165] = {.lex_state = 744}, + [7166] = {.lex_state = 744}, + [7167] = {.lex_state = 336}, + [7168] = {.lex_state = 146}, + [7169] = {.lex_state = 146}, + [7170] = {.lex_state = 744}, + [7171] = {.lex_state = 146}, + [7172] = {.lex_state = 146}, + [7173] = {.lex_state = 146}, + [7174] = {.lex_state = 285}, + [7175] = {.lex_state = 146}, + [7176] = {.lex_state = 744}, + [7177] = {.lex_state = 744}, + [7178] = {.lex_state = 146}, + [7179] = {.lex_state = 744}, + [7180] = {.lex_state = 85}, + [7181] = {.lex_state = 744}, + [7182] = {.lex_state = 400}, + [7183] = {.lex_state = 206}, + [7184] = {.lex_state = 406}, + [7185] = {.lex_state = 206}, + [7186] = {.lex_state = 146}, + [7187] = {.lex_state = 744}, + [7188] = {.lex_state = 146}, + [7189] = {.lex_state = 744}, + [7190] = {.lex_state = 744}, + [7191] = {.lex_state = 744}, + [7192] = {.lex_state = 744}, + [7193] = {.lex_state = 146}, + [7194] = {.lex_state = 206}, + [7195] = {.lex_state = 206}, + [7196] = {.lex_state = 146}, + [7197] = {.lex_state = 744}, + [7198] = {.lex_state = 744}, + [7199] = {.lex_state = 146}, + [7200] = {.lex_state = 744}, + [7201] = {.lex_state = 744}, + [7202] = {.lex_state = 206}, + [7203] = {.lex_state = 744}, + [7204] = {.lex_state = 744}, + [7205] = {.lex_state = 206}, + [7206] = {.lex_state = 744}, + [7207] = {.lex_state = 146}, + [7208] = {.lex_state = 744}, + [7209] = {.lex_state = 744}, + [7210] = {.lex_state = 744}, + [7211] = {.lex_state = 744}, + [7212] = {.lex_state = 206}, + [7213] = {.lex_state = 146}, + [7214] = {.lex_state = 206}, + [7215] = {.lex_state = 744}, + [7216] = {.lex_state = 744}, + [7217] = {.lex_state = 744}, + [7218] = {.lex_state = 744}, + [7219] = {.lex_state = 744}, + [7220] = {.lex_state = 206}, + [7221] = {.lex_state = 744}, + [7222] = {.lex_state = 744}, + [7223] = {.lex_state = 206}, + [7224] = {.lex_state = 744}, + [7225] = {.lex_state = 744}, + [7226] = {.lex_state = 744}, + [7227] = {.lex_state = 744}, + [7228] = {.lex_state = 206}, + [7229] = {.lex_state = 744}, + [7230] = {.lex_state = 206}, + [7231] = {.lex_state = 744}, + [7232] = {.lex_state = 744}, + [7233] = {.lex_state = 744}, + [7234] = {.lex_state = 744}, + [7235] = {.lex_state = 206}, + [7236] = {.lex_state = 156}, + [7237] = {.lex_state = 206}, + [7238] = {.lex_state = 744}, + [7239] = {.lex_state = 744}, + [7240] = {.lex_state = 84}, + [7241] = {.lex_state = 744}, + [7242] = {.lex_state = 744}, + [7243] = {.lex_state = 206}, + [7244] = {.lex_state = 146}, + [7245] = {.lex_state = 206}, + [7246] = {.lex_state = 744}, + [7247] = {.lex_state = 744}, + [7248] = {.lex_state = 744}, + [7249] = {.lex_state = 744}, + [7250] = {.lex_state = 206}, + [7251] = {.lex_state = 206}, + [7252] = {.lex_state = 744}, + [7253] = {.lex_state = 744}, + [7254] = {.lex_state = 744}, + [7255] = {.lex_state = 744}, + [7256] = {.lex_state = 206}, + [7257] = {.lex_state = 744}, + [7258] = {.lex_state = 146}, + [7259] = {.lex_state = 206}, + [7260] = {.lex_state = 744}, + [7261] = {.lex_state = 744}, + [7262] = {.lex_state = 744}, + [7263] = {.lex_state = 744}, + [7264] = {.lex_state = 206}, + [7265] = {.lex_state = 146}, + [7266] = {.lex_state = 206}, + [7267] = {.lex_state = 146}, + [7268] = {.lex_state = 744}, + [7269] = {.lex_state = 744}, + [7270] = {.lex_state = 336}, + [7271] = {.lex_state = 744}, + [7272] = {.lex_state = 744}, + [7273] = {.lex_state = 206}, + [7274] = {.lex_state = 206}, + [7275] = {.lex_state = 744}, + [7276] = {.lex_state = 744}, + [7277] = {.lex_state = 744}, + [7278] = {.lex_state = 744}, + [7279] = {.lex_state = 206}, + [7280] = {.lex_state = 206}, + [7281] = {.lex_state = 744}, + [7282] = {.lex_state = 744}, + [7283] = {.lex_state = 744}, + [7284] = {.lex_state = 744}, + [7285] = {.lex_state = 744}, + [7286] = {.lex_state = 206}, + [7287] = {.lex_state = 206}, + [7288] = {.lex_state = 285}, + [7289] = {.lex_state = 744}, + [7290] = {.lex_state = 744}, + [7291] = {.lex_state = 744}, + [7292] = {.lex_state = 744}, + [7293] = {.lex_state = 744}, + [7294] = {.lex_state = 206}, + [7295] = {.lex_state = 206}, + [7296] = {.lex_state = 744}, + [7297] = {.lex_state = 744}, + [7298] = {.lex_state = 744}, + [7299] = {.lex_state = 744}, + [7300] = {.lex_state = 744}, + [7301] = {.lex_state = 744}, + [7302] = {.lex_state = 206}, + [7303] = {.lex_state = 206}, + [7304] = {.lex_state = 744}, + [7305] = {.lex_state = 744}, + [7306] = {.lex_state = 744}, + [7307] = {.lex_state = 744}, + [7308] = {.lex_state = 744}, + [7309] = {.lex_state = 403}, + [7310] = {.lex_state = 336}, + [7311] = {.lex_state = 14}, + [7312] = {.lex_state = 146}, + [7313] = {.lex_state = 146}, + [7314] = {.lex_state = 146}, + [7315] = {.lex_state = 146}, + [7316] = {.lex_state = 146}, + [7317] = {.lex_state = 146}, + [7318] = {.lex_state = 744}, + [7319] = {.lex_state = 146}, + [7320] = {.lex_state = 146}, + [7321] = {.lex_state = 146}, + [7322] = {.lex_state = 146}, + [7323] = {.lex_state = 146}, + [7324] = {.lex_state = 146}, + [7325] = {.lex_state = 744}, + [7326] = {.lex_state = 388}, + [7327] = {.lex_state = 146}, + [7328] = {.lex_state = 333}, + [7329] = {.lex_state = 146}, + [7330] = {.lex_state = 146}, + [7331] = {.lex_state = 744}, + [7332] = {.lex_state = 146}, + [7333] = {.lex_state = 146}, + [7334] = {.lex_state = 744}, + [7335] = {.lex_state = 146}, + [7336] = {.lex_state = 146}, + [7337] = {.lex_state = 146}, + [7338] = {.lex_state = 146}, + [7339] = {.lex_state = 402}, + [7340] = {.lex_state = 146}, + [7341] = {.lex_state = 146}, + [7342] = {.lex_state = 146}, + [7343] = {.lex_state = 146}, + [7344] = {.lex_state = 146}, + [7345] = {.lex_state = 744}, + [7346] = {.lex_state = 744}, + [7347] = {.lex_state = 146}, + [7348] = {.lex_state = 403}, + [7349] = {.lex_state = 146}, + [7350] = {.lex_state = 744}, + [7351] = {.lex_state = 744}, + [7352] = {.lex_state = 4063}, + [7353] = {.lex_state = 744}, + [7354] = {.lex_state = 333}, + [7355] = {.lex_state = 744}, + [7356] = {.lex_state = 407}, + [7357] = {.lex_state = 407}, + [7358] = {.lex_state = 4067}, + [7359] = {.lex_state = 144}, + [7360] = {.lex_state = 744}, + [7361] = {.lex_state = 744}, + [7362] = {.lex_state = 744}, + [7363] = {.lex_state = 144}, + [7364] = {.lex_state = 4067}, + [7365] = {.lex_state = 336}, + [7366] = {.lex_state = 407}, + [7367] = {.lex_state = 744}, + [7368] = {.lex_state = 4067}, + [7369] = {.lex_state = 4067}, + [7370] = {.lex_state = 403}, + [7371] = {.lex_state = 144}, + [7372] = {.lex_state = 146}, + [7373] = {.lex_state = 144}, + [7374] = {.lex_state = 333}, + [7375] = {.lex_state = 146}, + [7376] = {.lex_state = 333}, + [7377] = {.lex_state = 14}, + [7378] = {.lex_state = 38}, + [7379] = {.lex_state = 4067}, + [7380] = {.lex_state = 4063}, + [7381] = {.lex_state = 144}, + [7382] = {.lex_state = 744}, + [7383] = {.lex_state = 146}, + [7384] = {.lex_state = 4063}, + [7385] = {.lex_state = 146}, + [7386] = {.lex_state = 4063}, + [7387] = {.lex_state = 146}, + [7388] = {.lex_state = 744}, + [7389] = {.lex_state = 744}, + [7390] = {.lex_state = 744}, + [7391] = {.lex_state = 146}, + [7392] = {.lex_state = 4063}, + [7393] = {.lex_state = 4067}, + [7394] = {.lex_state = 146}, + [7395] = {.lex_state = 744}, + [7396] = {.lex_state = 4063}, + [7397] = {.lex_state = 146}, + [7398] = {.lex_state = 146}, + [7399] = {.lex_state = 744}, + [7400] = {.lex_state = 146}, + [7401] = {.lex_state = 4065}, + [7402] = {.lex_state = 4063}, + [7403] = {.lex_state = 744}, + [7404] = {.lex_state = 333}, + [7405] = {.lex_state = 4065}, + [7406] = {.lex_state = 146}, + [7407] = {.lex_state = 744}, + [7408] = {.lex_state = 144}, + [7409] = {.lex_state = 745}, + [7410] = {.lex_state = 4063}, + [7411] = {.lex_state = 146}, + [7412] = {.lex_state = 4063}, + [7413] = {.lex_state = 146}, + [7414] = {.lex_state = 744}, + [7415] = {.lex_state = 744}, + [7416] = {.lex_state = 146}, + [7417] = {.lex_state = 744}, + [7418] = {.lex_state = 4063}, + [7419] = {.lex_state = 146}, + [7420] = {.lex_state = 814}, + [7421] = {.lex_state = 333}, + [7422] = {.lex_state = 38}, + [7423] = {.lex_state = 744}, + [7424] = {.lex_state = 144}, + [7425] = {.lex_state = 146}, + [7426] = {.lex_state = 745}, + [7427] = {.lex_state = 144}, + [7428] = {.lex_state = 407}, + [7429] = {.lex_state = 333}, + [7430] = {.lex_state = 146}, + [7431] = {.lex_state = 744}, + [7432] = {.lex_state = 146}, + [7433] = {.lex_state = 146}, + [7434] = {.lex_state = 744}, + [7435] = {.lex_state = 391}, + [7436] = {.lex_state = 4065}, + [7437] = {.lex_state = 4063}, + [7438] = {.lex_state = 744}, + [7439] = {.lex_state = 744}, + [7440] = {.lex_state = 744}, + [7441] = {.lex_state = 4065}, + [7442] = {.lex_state = 4065}, + [7443] = {.lex_state = 697}, + [7444] = {.lex_state = 146}, + [7445] = {.lex_state = 146}, + [7446] = {.lex_state = 4067}, + [7447] = {.lex_state = 744}, + [7448] = {.lex_state = 744}, + [7449] = {.lex_state = 400}, + [7450] = {.lex_state = 146}, + [7451] = {.lex_state = 333}, + [7452] = {.lex_state = 744}, + [7453] = {.lex_state = 4065}, + [7454] = {.lex_state = 146}, + [7455] = {.lex_state = 144}, + [7456] = {.lex_state = 4065}, + [7457] = {.lex_state = 740}, + [7458] = {.lex_state = 403}, + [7459] = {.lex_state = 333}, + [7460] = {.lex_state = 2811}, + [7461] = {.lex_state = 146}, + [7462] = {.lex_state = 4065}, + [7463] = {.lex_state = 744}, + [7464] = {.lex_state = 744}, + [7465] = {.lex_state = 144}, + [7466] = {.lex_state = 146}, + [7467] = {.lex_state = 333}, + [7468] = {.lex_state = 744}, + [7469] = {.lex_state = 144}, + [7470] = {.lex_state = 744}, + [7471] = {.lex_state = 744}, + [7472] = {.lex_state = 744}, + [7473] = {.lex_state = 146}, + [7474] = {.lex_state = 146}, + [7475] = {.lex_state = 333}, + [7476] = {.lex_state = 4067}, + [7477] = {.lex_state = 146}, + [7478] = {.lex_state = 146}, + [7479] = {.lex_state = 146}, + [7480] = {.lex_state = 144}, + [7481] = {.lex_state = 146}, + [7482] = {.lex_state = 146}, + [7483] = {.lex_state = 403}, + [7484] = {.lex_state = 144}, + [7485] = {.lex_state = 4063}, + [7486] = {.lex_state = 744}, + [7487] = {.lex_state = 144}, + [7488] = {.lex_state = 14}, + [7489] = {.lex_state = 4063}, + [7490] = {.lex_state = 146}, + [7491] = {.lex_state = 4063}, + [7492] = {.lex_state = 14}, + [7493] = {.lex_state = 4067}, + [7494] = {.lex_state = 744}, + [7495] = {.lex_state = 744}, + [7496] = {.lex_state = 745}, + [7497] = {.lex_state = 146}, + [7498] = {.lex_state = 407}, + [7499] = {.lex_state = 146}, + [7500] = {.lex_state = 4067}, + [7501] = {.lex_state = 4063}, + [7502] = {.lex_state = 744}, + [7503] = {.lex_state = 4063}, + [7504] = {.lex_state = 4063}, + [7505] = {.lex_state = 4063}, + [7506] = {.lex_state = 409}, + [7507] = {.lex_state = 4063}, + [7508] = {.lex_state = 4063}, + [7509] = {.lex_state = 744}, + [7510] = {.lex_state = 4067}, + [7511] = {.lex_state = 4063}, + [7512] = {.lex_state = 146}, + [7513] = {.lex_state = 146}, + [7514] = {.lex_state = 745}, + [7515] = {.lex_state = 4063}, + [7516] = {.lex_state = 4063}, + [7517] = {.lex_state = 4063}, + [7518] = {.lex_state = 146}, + [7519] = {.lex_state = 4063}, + [7520] = {.lex_state = 4063}, + [7521] = {.lex_state = 146}, + [7522] = {.lex_state = 33}, + [7523] = {.lex_state = 4063}, + [7524] = {.lex_state = 146}, + [7525] = {.lex_state = 4063}, + [7526] = {.lex_state = 744}, + [7527] = {.lex_state = 744}, + [7528] = {.lex_state = 4063}, + [7529] = {.lex_state = 744}, + [7530] = {.lex_state = 744}, + [7531] = {.lex_state = 146}, + [7532] = {.lex_state = 4067}, + [7533] = {.lex_state = 4067}, + [7534] = {.lex_state = 744}, + [7535] = {.lex_state = 146}, + [7536] = {.lex_state = 403}, + [7537] = {.lex_state = 146}, + [7538] = {.lex_state = 744}, + [7539] = {.lex_state = 744}, + [7540] = {.lex_state = 722}, + [7541] = {.lex_state = 744}, + [7542] = {.lex_state = 4065}, + [7543] = {.lex_state = 146}, + [7544] = {.lex_state = 814}, + [7545] = {.lex_state = 146}, + [7546] = {.lex_state = 144}, + [7547] = {.lex_state = 403}, + [7548] = {.lex_state = 744, .external_lex_state = 3}, + [7549] = {.lex_state = 1841}, + [7550] = {.lex_state = 744}, + [7551] = {.lex_state = 2}, + [7552] = {.lex_state = 744}, + [7553] = {.lex_state = 744}, + [7554] = {.lex_state = 744}, + [7555] = {.lex_state = 740}, + [7556] = {.lex_state = 745}, + [7557] = {.lex_state = 744, .external_lex_state = 3}, + [7558] = {.lex_state = 744}, + [7559] = {.lex_state = 828}, + [7560] = {.lex_state = 744}, + [7561] = {.lex_state = 744}, + [7562] = {.lex_state = 4065}, + [7563] = {.lex_state = 744, .external_lex_state = 3}, + [7564] = {.lex_state = 744}, + [7565] = {.lex_state = 333}, + [7566] = {.lex_state = 403}, + [7567] = {.lex_state = 744}, + [7568] = {.lex_state = 744}, + [7569] = {.lex_state = 744}, + [7570] = {.lex_state = 744}, + [7571] = {.lex_state = 397}, + [7572] = {.lex_state = 333}, + [7573] = {.lex_state = 744, .external_lex_state = 3}, + [7574] = {.lex_state = 744}, + [7575] = {.lex_state = 744}, + [7576] = {.lex_state = 744}, + [7577] = {.lex_state = 1841}, + [7578] = {.lex_state = 397}, + [7579] = {.lex_state = 744}, + [7580] = {.lex_state = 744}, + [7581] = {.lex_state = 227}, + [7582] = {.lex_state = 4067}, + [7583] = {.lex_state = 744}, + [7584] = {.lex_state = 744}, + [7585] = {.lex_state = 403}, + [7586] = {.lex_state = 144}, + [7587] = {.lex_state = 333}, + [7588] = {.lex_state = 1841}, + [7589] = {.lex_state = 403}, + [7590] = {.lex_state = 227}, + [7591] = {.lex_state = 744}, + [7592] = {.lex_state = 33}, + [7593] = {.lex_state = 744}, + [7594] = {.lex_state = 745}, + [7595] = {.lex_state = 744}, + [7596] = {.lex_state = 744}, + [7597] = {.lex_state = 744}, + [7598] = {.lex_state = 744}, + [7599] = {.lex_state = 744}, + [7600] = {.lex_state = 744}, + [7601] = {.lex_state = 744}, + [7602] = {.lex_state = 4065}, + [7603] = {.lex_state = 744}, + [7604] = {.lex_state = 744}, + [7605] = {.lex_state = 744}, + [7606] = {.lex_state = 2}, + [7607] = {.lex_state = 744}, + [7608] = {.lex_state = 740}, + [7609] = {.lex_state = 744}, + [7610] = {.lex_state = 1841}, + [7611] = {.lex_state = 744, .external_lex_state = 3}, + [7612] = {.lex_state = 744}, + [7613] = {.lex_state = 740}, + [7614] = {.lex_state = 740}, + [7615] = {.lex_state = 227}, + [7616] = {.lex_state = 744}, + [7617] = {.lex_state = 744, .external_lex_state = 3}, + [7618] = {.lex_state = 744, .external_lex_state = 3}, + [7619] = {.lex_state = 744}, + [7620] = {.lex_state = 1841}, + [7621] = {.lex_state = 744}, + [7622] = {.lex_state = 398}, + [7623] = {.lex_state = 744}, + [7624] = {.lex_state = 2811}, + [7625] = {.lex_state = 744}, + [7626] = {.lex_state = 397}, + [7627] = {.lex_state = 333}, + [7628] = {.lex_state = 744}, + [7629] = {.lex_state = 744}, + [7630] = {.lex_state = 403}, + [7631] = {.lex_state = 744}, + [7632] = {.lex_state = 744}, + [7633] = {.lex_state = 744}, + [7634] = {.lex_state = 744}, + [7635] = {.lex_state = 744}, + [7636] = {.lex_state = 744}, + [7637] = {.lex_state = 744, .external_lex_state = 4}, + [7638] = {.lex_state = 2}, + [7639] = {.lex_state = 744}, + [7640] = {.lex_state = 2}, + [7641] = {.lex_state = 744}, + [7642] = {.lex_state = 409}, + [7643] = {.lex_state = 2}, + [7644] = {.lex_state = 744}, + [7645] = {.lex_state = 2}, + [7646] = {.lex_state = 744}, + [7647] = {.lex_state = 744}, + [7648] = {.lex_state = 333}, + [7649] = {.lex_state = 744}, + [7650] = {.lex_state = 744}, + [7651] = {.lex_state = 1841}, + [7652] = {.lex_state = 744}, + [7653] = {.lex_state = 740}, + [7654] = {.lex_state = 33}, + [7655] = {.lex_state = 333}, + [7656] = {.lex_state = 740}, + [7657] = {.lex_state = 744}, + [7658] = {.lex_state = 333}, + [7659] = {.lex_state = 744}, + [7660] = {.lex_state = 744}, + [7661] = {.lex_state = 744}, + [7662] = {.lex_state = 744, .external_lex_state = 3}, + [7663] = {.lex_state = 744, .external_lex_state = 3}, + [7664] = {.lex_state = 744}, + [7665] = {.lex_state = 744}, + [7666] = {.lex_state = 403}, + [7667] = {.lex_state = 744}, + [7668] = {.lex_state = 744}, + [7669] = {.lex_state = 36}, + [7670] = {.lex_state = 744}, + [7671] = {.lex_state = 744}, + [7672] = {.lex_state = 396}, + [7673] = {.lex_state = 333}, + [7674] = {.lex_state = 744, .external_lex_state = 3}, + [7675] = {.lex_state = 744}, + [7676] = {.lex_state = 744}, + [7677] = {.lex_state = 403}, + [7678] = {.lex_state = 744}, + [7679] = {.lex_state = 744}, + [7680] = {.lex_state = 744}, + [7681] = {.lex_state = 744}, + [7682] = {.lex_state = 33}, + [7683] = {.lex_state = 744}, + [7684] = {.lex_state = 744}, + [7685] = {.lex_state = 744}, + [7686] = {.lex_state = 333}, + [7687] = {.lex_state = 744}, + [7688] = {.lex_state = 744}, + [7689] = {.lex_state = 710}, + [7690] = {.lex_state = 744}, + [7691] = {.lex_state = 744}, + [7692] = {.lex_state = 744}, + [7693] = {.lex_state = 4063}, + [7694] = {.lex_state = 744, .external_lex_state = 3}, + [7695] = {.lex_state = 744}, + [7696] = {.lex_state = 1841}, + [7697] = {.lex_state = 744}, + [7698] = {.lex_state = 744, .external_lex_state = 4}, + [7699] = {.lex_state = 1841}, + [7700] = {.lex_state = 744}, + [7701] = {.lex_state = 2}, + [7702] = {.lex_state = 744}, + [7703] = {.lex_state = 4067}, + [7704] = {.lex_state = 4067}, + [7705] = {.lex_state = 744}, + [7706] = {.lex_state = 333}, + [7707] = {.lex_state = 744, .external_lex_state = 3}, + [7708] = {.lex_state = 744}, + [7709] = {.lex_state = 744}, + [7710] = {.lex_state = 14}, + [7711] = {.lex_state = 744}, + [7712] = {.lex_state = 744}, + [7713] = {.lex_state = 1841}, + [7714] = {.lex_state = 828}, + [7715] = {.lex_state = 744, .external_lex_state = 3}, + [7716] = {.lex_state = 744, .external_lex_state = 3}, + [7717] = {.lex_state = 740}, + [7718] = {.lex_state = 744}, + [7719] = {.lex_state = 744, .external_lex_state = 3}, + [7720] = {.lex_state = 744, .external_lex_state = 4}, + [7721] = {.lex_state = 744}, + [7722] = {.lex_state = 2}, + [7723] = {.lex_state = 403}, + [7724] = {.lex_state = 744, .external_lex_state = 3}, + [7725] = {.lex_state = 744, .external_lex_state = 3}, + [7726] = {.lex_state = 744}, + [7727] = {.lex_state = 333}, + [7728] = {.lex_state = 744, .external_lex_state = 4}, + [7729] = {.lex_state = 33}, + [7730] = {.lex_state = 744}, + [7731] = {.lex_state = 744, .external_lex_state = 3}, + [7732] = {.lex_state = 744}, + [7733] = {.lex_state = 744}, + [7734] = {.lex_state = 744, .external_lex_state = 3}, + [7735] = {.lex_state = 744, .external_lex_state = 4}, + [7736] = {.lex_state = 2}, + [7737] = {.lex_state = 744}, + [7738] = {.lex_state = 744, .external_lex_state = 3}, + [7739] = {.lex_state = 744}, + [7740] = {.lex_state = 744}, + [7741] = {.lex_state = 398}, + [7742] = {.lex_state = 333}, + [7743] = {.lex_state = 744, .external_lex_state = 3}, + [7744] = {.lex_state = 744}, + [7745] = {.lex_state = 403}, + [7746] = {.lex_state = 744}, + [7747] = {.lex_state = 333}, + [7748] = {.lex_state = 744}, + [7749] = {.lex_state = 744, .external_lex_state = 4}, + [7750] = {.lex_state = 2}, + [7751] = {.lex_state = 744, .external_lex_state = 3}, + [7752] = {.lex_state = 2}, + [7753] = {.lex_state = 403}, + [7754] = {.lex_state = 744}, + [7755] = {.lex_state = 33}, + [7756] = {.lex_state = 398}, + [7757] = {.lex_state = 744, .external_lex_state = 3}, + [7758] = {.lex_state = 744}, + [7759] = {.lex_state = 4081}, + [7760] = {.lex_state = 744}, + [7761] = {.lex_state = 744}, + [7762] = {.lex_state = 744, .external_lex_state = 3}, + [7763] = {.lex_state = 744, .external_lex_state = 4}, + [7764] = {.lex_state = 2}, + [7765] = {.lex_state = 744}, + [7766] = {.lex_state = 744}, + [7767] = {.lex_state = 744}, + [7768] = {.lex_state = 744}, + [7769] = {.lex_state = 744, .external_lex_state = 3}, + [7770] = {.lex_state = 744}, + [7771] = {.lex_state = 744}, + [7772] = {.lex_state = 744}, + [7773] = {.lex_state = 744}, + [7774] = {.lex_state = 744}, + [7775] = {.lex_state = 744, .external_lex_state = 3}, + [7776] = {.lex_state = 744, .external_lex_state = 4}, + [7777] = {.lex_state = 2}, + [7778] = {.lex_state = 744}, + [7779] = {.lex_state = 33}, + [7780] = {.lex_state = 1841}, + [7781] = {.lex_state = 744}, + [7782] = {.lex_state = 2}, + [7783] = {.lex_state = 744, .external_lex_state = 3}, + [7784] = {.lex_state = 744}, + [7785] = {.lex_state = 744}, + [7786] = {.lex_state = 744}, + [7787] = {.lex_state = 744}, + [7788] = {.lex_state = 744, .external_lex_state = 3}, + [7789] = {.lex_state = 744, .external_lex_state = 4}, + [7790] = {.lex_state = 2}, + [7791] = {.lex_state = 744}, + [7792] = {.lex_state = 744}, + [7793] = {.lex_state = 744}, + [7794] = {.lex_state = 744, .external_lex_state = 3}, + [7795] = {.lex_state = 744, .external_lex_state = 3}, + [7796] = {.lex_state = 744}, + [7797] = {.lex_state = 744}, + [7798] = {.lex_state = 1841}, + [7799] = {.lex_state = 2}, + [7800] = {.lex_state = 744, .external_lex_state = 3}, + [7801] = {.lex_state = 744, .external_lex_state = 4}, + [7802] = {.lex_state = 2}, + [7803] = {.lex_state = 403}, + [7804] = {.lex_state = 33}, + [7805] = {.lex_state = 744}, + [7806] = {.lex_state = 744}, + [7807] = {.lex_state = 744}, + [7808] = {.lex_state = 744, .external_lex_state = 3}, + [7809] = {.lex_state = 710}, + [7810] = {.lex_state = 2}, + [7811] = {.lex_state = 403}, + [7812] = {.lex_state = 1841}, + [7813] = {.lex_state = 744}, + [7814] = {.lex_state = 744, .external_lex_state = 4}, + [7815] = {.lex_state = 2}, + [7816] = {.lex_state = 744, .external_lex_state = 3}, + [7817] = {.lex_state = 333}, + [7818] = {.lex_state = 4065}, + [7819] = {.lex_state = 740}, + [7820] = {.lex_state = 744}, + [7821] = {.lex_state = 403}, + [7822] = {.lex_state = 744}, + [7823] = {.lex_state = 744}, + [7824] = {.lex_state = 744}, + [7825] = {.lex_state = 744}, + [7826] = {.lex_state = 744, .external_lex_state = 3}, + [7827] = {.lex_state = 744, .external_lex_state = 4}, + [7828] = {.lex_state = 2}, + [7829] = {.lex_state = 744}, + [7830] = {.lex_state = 744}, + [7831] = {.lex_state = 744}, + [7832] = {.lex_state = 744}, + [7833] = {.lex_state = 744}, + [7834] = {.lex_state = 744}, + [7835] = {.lex_state = 744, .external_lex_state = 3}, + [7836] = {.lex_state = 744}, + [7837] = {.lex_state = 744}, + [7838] = {.lex_state = 744}, + [7839] = {.lex_state = 33}, + [7840] = {.lex_state = 744, .external_lex_state = 4}, + [7841] = {.lex_state = 2}, + [7842] = {.lex_state = 744}, + [7843] = {.lex_state = 744, .external_lex_state = 3}, + [7844] = {.lex_state = 744}, + [7845] = {.lex_state = 744, .external_lex_state = 3}, + [7846] = {.lex_state = 744}, + [7847] = {.lex_state = 744}, + [7848] = {.lex_state = 744, .external_lex_state = 3}, + [7849] = {.lex_state = 744}, + [7850] = {.lex_state = 1841}, + [7851] = {.lex_state = 744}, + [7852] = {.lex_state = 744}, + [7853] = {.lex_state = 744, .external_lex_state = 4}, + [7854] = {.lex_state = 2}, + [7855] = {.lex_state = 744, .external_lex_state = 3}, + [7856] = {.lex_state = 1841}, + [7857] = {.lex_state = 744}, + [7858] = {.lex_state = 1841}, + [7859] = {.lex_state = 744, .external_lex_state = 3}, + [7860] = {.lex_state = 744}, + [7861] = {.lex_state = 744}, + [7862] = {.lex_state = 744, .external_lex_state = 3}, + [7863] = {.lex_state = 744, .external_lex_state = 4}, + [7864] = {.lex_state = 2}, + [7865] = {.lex_state = 744, .external_lex_state = 3}, + [7866] = {.lex_state = 333}, + [7867] = {.lex_state = 744}, + [7868] = {.lex_state = 744}, + [7869] = {.lex_state = 744}, + [7870] = {.lex_state = 1841}, + [7871] = {.lex_state = 744}, + [7872] = {.lex_state = 744}, + [7873] = {.lex_state = 744, .external_lex_state = 4}, + [7874] = {.lex_state = 744}, + [7875] = {.lex_state = 744, .external_lex_state = 3}, + [7876] = {.lex_state = 744}, + [7877] = {.lex_state = 744}, + [7878] = {.lex_state = 744}, + [7879] = {.lex_state = 744, .external_lex_state = 3}, + [7880] = {.lex_state = 744}, + [7881] = {.lex_state = 744}, + [7882] = {.lex_state = 744, .external_lex_state = 4}, + [7883] = {.lex_state = 744, .external_lex_state = 3}, + [7884] = {.lex_state = 740}, + [7885] = {.lex_state = 744}, + [7886] = {.lex_state = 744, .external_lex_state = 3}, + [7887] = {.lex_state = 740}, + [7888] = {.lex_state = 398}, + [7889] = {.lex_state = 744, .external_lex_state = 3}, + [7890] = {.lex_state = 744}, + [7891] = {.lex_state = 744, .external_lex_state = 4}, + [7892] = {.lex_state = 744, .external_lex_state = 4}, + [7893] = {.lex_state = 2}, + [7894] = {.lex_state = 744}, + [7895] = {.lex_state = 744}, + [7896] = {.lex_state = 14}, + [7897] = {.lex_state = 744}, + [7898] = {.lex_state = 744}, + [7899] = {.lex_state = 744}, + [7900] = {.lex_state = 744, .external_lex_state = 4}, + [7901] = {.lex_state = 744, .external_lex_state = 4}, + [7902] = {.lex_state = 744, .external_lex_state = 4}, + [7903] = {.lex_state = 744, .external_lex_state = 4}, + [7904] = {.lex_state = 744, .external_lex_state = 4}, + [7905] = {.lex_state = 744, .external_lex_state = 4}, + [7906] = {.lex_state = 744, .external_lex_state = 4}, + [7907] = {.lex_state = 744, .external_lex_state = 4}, + [7908] = {.lex_state = 744, .external_lex_state = 4}, + [7909] = {.lex_state = 744, .external_lex_state = 4}, + [7910] = {.lex_state = 744, .external_lex_state = 4}, + [7911] = {.lex_state = 744, .external_lex_state = 4}, + [7912] = {.lex_state = 744, .external_lex_state = 4}, + [7913] = {.lex_state = 744, .external_lex_state = 4}, + [7914] = {.lex_state = 744, .external_lex_state = 4}, + [7915] = {.lex_state = 744, .external_lex_state = 4}, + [7916] = {.lex_state = 744, .external_lex_state = 4}, + [7917] = {.lex_state = 744, .external_lex_state = 4}, + [7918] = {.lex_state = 744, .external_lex_state = 4}, + [7919] = {.lex_state = 744, .external_lex_state = 4}, + [7920] = {.lex_state = 744, .external_lex_state = 4}, + [7921] = {.lex_state = 744, .external_lex_state = 4}, + [7922] = {.lex_state = 744, .external_lex_state = 4}, + [7923] = {.lex_state = 744, .external_lex_state = 4}, + [7924] = {.lex_state = 744, .external_lex_state = 4}, + [7925] = {.lex_state = 744, .external_lex_state = 4}, + [7926] = {.lex_state = 744, .external_lex_state = 4}, + [7927] = {.lex_state = 744, .external_lex_state = 4}, + [7928] = {.lex_state = 744, .external_lex_state = 4}, + [7929] = {.lex_state = 744, .external_lex_state = 4}, + [7930] = {.lex_state = 744, .external_lex_state = 4}, + [7931] = {.lex_state = 2}, + [7932] = {.lex_state = 744}, + [7933] = {.lex_state = 144}, + [7934] = {.lex_state = 744}, + [7935] = {.lex_state = 744}, + [7936] = {.lex_state = 744}, + [7937] = {.lex_state = 744}, + [7938] = {.lex_state = 744}, + [7939] = {.lex_state = 744}, + [7940] = {.lex_state = 1841}, + [7941] = {.lex_state = 1841}, + [7942] = {.lex_state = 744}, + [7943] = {.lex_state = 744}, + [7944] = {.lex_state = 740}, + [7945] = {.lex_state = 744}, + [7946] = {.lex_state = 227}, + [7947] = {.lex_state = 403}, + [7948] = {.lex_state = 710}, + [7949] = {.lex_state = 287}, + [7950] = {.lex_state = 744}, + [7951] = {.lex_state = 744, .external_lex_state = 3}, + [7952] = {.lex_state = 710}, + [7953] = {.lex_state = 744}, + [7954] = {.lex_state = 744}, + [7955] = {.lex_state = 744}, + [7956] = {.lex_state = 740}, + [7957] = {.lex_state = 744}, + [7958] = {.lex_state = 744}, + [7959] = {.lex_state = 744}, + [7960] = {.lex_state = 744}, + [7961] = {.lex_state = 4063}, + [7962] = {.lex_state = 36}, + [7963] = {.lex_state = 744}, + [7964] = {.lex_state = 744}, + [7965] = {.lex_state = 744}, + [7966] = {.lex_state = 144}, + [7967] = {.lex_state = 744}, + [7968] = {.lex_state = 744, .external_lex_state = 3}, + [7969] = {.lex_state = 744}, + [7970] = {.lex_state = 744}, + [7971] = {.lex_state = 744}, + [7972] = {.lex_state = 2}, + [7973] = {.lex_state = 333}, + [7974] = {.lex_state = 403}, + [7975] = {.lex_state = 395}, + [7976] = {.lex_state = 744}, + [7977] = {.lex_state = 744}, + [7978] = {.lex_state = 744, .external_lex_state = 3}, + [7979] = {.lex_state = 744}, + [7980] = {.lex_state = 744}, + [7981] = {.lex_state = 744}, + [7982] = {.lex_state = 333}, + [7983] = {.lex_state = 744}, + [7984] = {.lex_state = 740}, + [7985] = {.lex_state = 2}, + [7986] = {.lex_state = 744}, + [7987] = {.lex_state = 744}, + [7988] = {.lex_state = 744}, + [7989] = {.lex_state = 744}, + [7990] = {.lex_state = 744}, + [7991] = {.lex_state = 333}, + [7992] = {.lex_state = 744}, + [7993] = {.lex_state = 744}, + [7994] = {.lex_state = 333}, + [7995] = {.lex_state = 744}, + [7996] = {.lex_state = 1841}, + [7997] = {.lex_state = 744}, + [7998] = {.lex_state = 744}, + [7999] = {.lex_state = 4063}, + [8000] = {.lex_state = 403}, + [8001] = {.lex_state = 744}, + [8002] = {.lex_state = 744}, + [8003] = {.lex_state = 744}, + [8004] = {.lex_state = 1841}, + [8005] = {.lex_state = 744}, + [8006] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -66140,77 +62412,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [anon_sym_POUND_BANG] = ACTIONS(1), - [anon_sym_export] = ACTIONS(1), - [anon_sym_alias] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), - [anon_sym_let] = ACTIONS(1), - [anon_sym_let_DASHenv] = ACTIONS(1), - [anon_sym_mut] = ACTIONS(1), - [anon_sym_const] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1), - [aux_sym_cmd_identifier_token1] = ACTIONS(1), - [aux_sym_cmd_identifier_token2] = ACTIONS(1), - [aux_sym_cmd_identifier_token3] = ACTIONS(1), - [aux_sym_cmd_identifier_token4] = ACTIONS(1), - [aux_sym_cmd_identifier_token5] = ACTIONS(1), - [aux_sym_cmd_identifier_token6] = ACTIONS(1), - [aux_sym_cmd_identifier_token7] = ACTIONS(1), - [aux_sym_cmd_identifier_token8] = ACTIONS(1), - [aux_sym_cmd_identifier_token9] = ACTIONS(1), - [aux_sym_cmd_identifier_token10] = ACTIONS(1), - [aux_sym_cmd_identifier_token11] = ACTIONS(1), - [aux_sym_cmd_identifier_token12] = ACTIONS(1), - [aux_sym_cmd_identifier_token13] = ACTIONS(1), - [aux_sym_cmd_identifier_token14] = ACTIONS(1), - [aux_sym_cmd_identifier_token15] = ACTIONS(1), - [aux_sym_cmd_identifier_token16] = ACTIONS(1), - [aux_sym_cmd_identifier_token17] = ACTIONS(1), - [aux_sym_cmd_identifier_token18] = ACTIONS(1), - [aux_sym_cmd_identifier_token19] = ACTIONS(1), - [aux_sym_cmd_identifier_token20] = ACTIONS(1), - [aux_sym_cmd_identifier_token21] = ACTIONS(1), - [aux_sym_cmd_identifier_token22] = ACTIONS(1), - [aux_sym_cmd_identifier_token23] = ACTIONS(1), - [aux_sym_cmd_identifier_token24] = ACTIONS(1), - [aux_sym_cmd_identifier_token25] = ACTIONS(1), - [aux_sym_cmd_identifier_token26] = ACTIONS(1), - [aux_sym_cmd_identifier_token27] = ACTIONS(1), - [aux_sym_cmd_identifier_token28] = ACTIONS(1), - [aux_sym_cmd_identifier_token29] = ACTIONS(1), - [aux_sym_cmd_identifier_token30] = ACTIONS(1), - [aux_sym_cmd_identifier_token31] = ACTIONS(1), - [aux_sym_cmd_identifier_token32] = ACTIONS(1), - [aux_sym_cmd_identifier_token33] = ACTIONS(1), - [aux_sym_cmd_identifier_token34] = ACTIONS(1), - [aux_sym_cmd_identifier_token35] = ACTIONS(1), - [aux_sym_cmd_identifier_token36] = ACTIONS(1), - [anon_sym_true] = ACTIONS(1), - [anon_sym_false] = ACTIONS(1), - [anon_sym_null] = ACTIONS(1), - [aux_sym_cmd_identifier_token38] = ACTIONS(1), - [aux_sym_cmd_identifier_token39] = ACTIONS(1), - [aux_sym_cmd_identifier_token40] = ACTIONS(1), - [aux_sym_cmd_identifier_token41] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), [sym__newline] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_err_GT_PIPE] = ACTIONS(1), - [anon_sym_out_GT_PIPE] = ACTIONS(1), - [anon_sym_e_GT_PIPE] = ACTIONS(1), - [anon_sym_o_GT_PIPE] = ACTIONS(1), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1), - [anon_sym_def] = ACTIONS(1), - [anon_sym_export_DASHenv] = ACTIONS(1), - [anon_sym_extern] = ACTIONS(1), - [anon_sym_module] = ACTIONS(1), - [anon_sym_use] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), @@ -66222,26 +62435,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_binary] = ACTIONS(1), [anon_sym_block] = ACTIONS(1), [anon_sym_bool] = ACTIONS(1), - [anon_sym_cell_DASHpath] = ACTIONS(1), [anon_sym_closure] = ACTIONS(1), [anon_sym_cond] = ACTIONS(1), [anon_sym_datetime] = ACTIONS(1), [anon_sym_directory] = ACTIONS(1), [anon_sym_duration] = ACTIONS(1), - [anon_sym_error] = ACTIONS(1), [anon_sym_expr] = ACTIONS(1), [anon_sym_float] = ACTIONS(1), [anon_sym_decimal] = ACTIONS(1), [anon_sym_filesize] = ACTIONS(1), - [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1), [anon_sym_glob] = ACTIONS(1), [anon_sym_int] = ACTIONS(1), - [anon_sym_import_DASHpattern] = ACTIONS(1), [anon_sym_keyword] = ACTIONS(1), [anon_sym_math] = ACTIONS(1), [anon_sym_nothing] = ACTIONS(1), [anon_sym_number] = ACTIONS(1), - [anon_sym_one_DASHof] = ACTIONS(1), [anon_sym_operator] = ACTIONS(1), [anon_sym_path] = ACTIONS(1), [anon_sym_range] = ACTIONS(1), @@ -66249,168 +62457,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1), [anon_sym_table] = ACTIONS(1), [anon_sym_variable] = ACTIONS(1), - [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1), [anon_sym_record] = ACTIONS(1), [anon_sym_list] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), + [anon_sym_GT2] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [sym_param_short_flag_identifier] = ACTIONS(1), - [anon_sym_break] = ACTIONS(1), - [anon_sym_continue] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_loop] = ACTIONS(1), - [anon_sym_make] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_match] = ACTIONS(1), + [anon_sym_DASH2] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym__] = ACTIONS(1), - [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_DOLLAR2] = ACTIONS(1), - [anon_sym_try] = ACTIONS(1), - [anon_sym_catch] = ACTIONS(1), - [anon_sym_return] = ACTIONS(1), - [anon_sym_source] = ACTIONS(1), - [anon_sym_source_DASHenv] = ACTIONS(1), - [anon_sym_register] = ACTIONS(1), - [anon_sym_hide] = ACTIONS(1), - [anon_sym_hide_DASHenv] = ACTIONS(1), - [anon_sym_overlay] = ACTIONS(1), [anon_sym_new] = ACTIONS(1), - [anon_sym_as] = ACTIONS(1), - [sym_wild_card] = ACTIONS(1), + [anon_sym_STAR2] = ACTIONS(1), [anon_sym_QMARK2] = ACTIONS(1), - [anon_sym_where] = ACTIONS(1), - [anon_sym_and] = ACTIONS(1), - [anon_sym_xor] = ACTIONS(1), - [anon_sym_or] = ACTIONS(1), - [anon_sym_not_DASHin] = ACTIONS(1), - [anon_sym_starts_DASHwith] = ACTIONS(1), - [anon_sym_ends_DASHwith] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), [anon_sym_LT2] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_BANG_TILDE] = ACTIONS(1), - [aux_sym_expr_unary_token1] = ACTIONS(1), [anon_sym_LPAREN2] = ACTIONS(1), - [aux_sym_expr_binary_token1] = ACTIONS(1), - [aux_sym_expr_binary_token2] = ACTIONS(1), - [aux_sym_expr_binary_token4] = ACTIONS(1), - [aux_sym_expr_binary_token5] = ACTIONS(1), - [aux_sym_expr_binary_token6] = ACTIONS(1), - [aux_sym_expr_binary_token7] = ACTIONS(1), - [aux_sym_expr_binary_token8] = ACTIONS(1), - [aux_sym_expr_binary_token9] = ACTIONS(1), - [aux_sym_expr_binary_token10] = ACTIONS(1), - [aux_sym_expr_binary_token11] = ACTIONS(1), - [aux_sym_expr_binary_token12] = ACTIONS(1), - [aux_sym_expr_binary_token13] = ACTIONS(1), - [aux_sym_expr_binary_token14] = ACTIONS(1), - [aux_sym_expr_binary_token15] = ACTIONS(1), - [aux_sym_expr_binary_token16] = ACTIONS(1), - [aux_sym_expr_binary_token17] = ACTIONS(1), - [aux_sym_expr_binary_token18] = ACTIONS(1), - [aux_sym_expr_binary_token19] = ACTIONS(1), - [aux_sym_expr_binary_token20] = ACTIONS(1), - [aux_sym_expr_binary_token21] = ACTIONS(1), - [aux_sym_expr_binary_token22] = ACTIONS(1), - [aux_sym_expr_binary_token23] = ACTIONS(1), - [aux_sym_expr_binary_token24] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1), - [anon_sym_DOT_DOT2] = ACTIONS(1), + [anon_sym_STAR_STAR2] = ACTIONS(1), + [anon_sym_PLUS_PLUS2] = ACTIONS(1), + [anon_sym_SLASH2] = ACTIONS(1), + [anon_sym_PLUS2] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1), - [anon_sym_DOT_DOT_LT] = ACTIONS(1), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1), - [aux_sym__immediate_decimal_token1] = ACTIONS(1), - [aux_sym__immediate_decimal_token2] = ACTIONS(1), - [aux_sym__immediate_decimal_token3] = ACTIONS(1), - [aux_sym__immediate_decimal_token4] = ACTIONS(1), - [aux_sym__immediate_decimal_token5] = ACTIONS(1), [anon_sym_RPAREN2] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1), [anon_sym_nu] = ACTIONS(1), [anon_sym_env] = ACTIONS(1), [aux_sym__val_number_decimal_token1] = ACTIONS(1), - [aux_sym__val_number_decimal_token2] = ACTIONS(1), [aux_sym__val_number_decimal_token3] = ACTIONS(1), - [aux_sym__val_number_decimal_token4] = ACTIONS(1), [aux_sym__val_number_token1] = ACTIONS(1), [aux_sym__val_number_token2] = ACTIONS(1), [aux_sym__val_number_token3] = ACTIONS(1), - [anon_sym_0b] = ACTIONS(1), - [sym_filesize_unit] = ACTIONS(1), - [sym_duration_unit] = ACTIONS(1), - [anon_sym_0o] = ACTIONS(1), - [anon_sym_0x] = ACTIONS(1), + [aux_sym__val_number_token4] = ACTIONS(1), + [aux_sym__val_number_token6] = ACTIONS(1), [anon_sym_LBRACK2] = ACTIONS(1), - [sym_hex_digit] = ACTIONS(1), - [sym_val_date] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [sym__str_single_quotes] = ACTIONS(1), [sym__str_back_ticks] = ACTIONS(1), - [sym_escape_sequence] = ACTIONS(1), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1), - [sym_inter_escape_sequence] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1), [aux_sym_record_entry_token1] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [aux_sym_path_token1] = ACTIONS(1), [aux_sym_env_var_token1] = ACTIONS(1), [anon_sym_CARET] = ACTIONS(1), - [anon_sym_err_GT] = ACTIONS(1), - [anon_sym_out_GT] = ACTIONS(1), - [anon_sym_e_GT] = ACTIONS(1), - [anon_sym_o_GT] = ACTIONS(1), - [anon_sym_err_PLUSout_GT] = ACTIONS(1), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1), - [anon_sym_o_PLUSe_GT] = ACTIONS(1), - [anon_sym_e_PLUSo_GT] = ACTIONS(1), - [anon_sym_err_GT_GT] = ACTIONS(1), - [anon_sym_out_GT_GT] = ACTIONS(1), - [anon_sym_e_GT_GT] = ACTIONS(1), - [anon_sym_o_GT_GT] = ACTIONS(1), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1), - [anon_sym_EQ2] = ACTIONS(1), - [aux_sym_unquoted_token1] = ACTIONS(1), - [aux_sym_unquoted_token2] = ACTIONS(1), [aux_sym__unquoted_in_list_token1] = ACTIONS(1), [aux_sym__unquoted_in_list_token2] = ACTIONS(1), [aux_sym__unquoted_in_record_token1] = ACTIONS(1), @@ -66421,83 +62505,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [1] = { - [sym_nu_script] = STATE(7964), - [sym_shebang] = STATE(93), - [sym__block_body_statement] = STATE(6369), - [sym__declaration] = STATE(6892), - [sym_decl_alias] = STATE(7011), - [sym_stmt_let] = STATE(6877), - [sym_stmt_mut] = STATE(6877), - [sym_stmt_const] = STATE(6877), - [sym_assignment] = STATE(6877), - [sym__mutable_assignment_pattern] = STATE(6904), - [sym__statement] = STATE(6892), - [sym_pipeline] = STATE(6877), - [sym__block_body] = STATE(7875), - [sym_cmd_identifier] = STATE(4714), - [sym_decl_def] = STATE(7011), - [sym_decl_export] = STATE(7011), - [sym_decl_extern] = STATE(7011), - [sym_decl_module] = STATE(7011), - [sym_decl_use] = STATE(7011), - [sym__ctrl_statement] = STATE(6877), - [sym__ctrl_expression] = STATE(5155), - [sym_ctrl_for] = STATE(7034), - [sym_ctrl_loop] = STATE(7034), - [sym_ctrl_error] = STATE(7034), - [sym_ctrl_while] = STATE(7034), - [sym_ctrl_do] = STATE(5175), - [sym_ctrl_if] = STATE(5175), - [sym_ctrl_match] = STATE(5175), - [sym_ctrl_try] = STATE(5175), - [sym_ctrl_return] = STATE(5175), - [sym_pipe_element] = STATE(4782), - [sym_stmt_source] = STATE(6877), - [sym_stmt_register] = STATE(6877), - [sym__stmt_hide] = STATE(6877), - [sym_hide_mod] = STATE(6852), - [sym_hide_env] = STATE(6852), - [sym__stmt_overlay] = STATE(6877), - [sym_overlay_list] = STATE(6913), - [sym_overlay_hide] = STATE(6913), - [sym_overlay_new] = STATE(6913), - [sym_overlay_use] = STATE(6913), - [sym_where_command] = STATE(5180), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(1364), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1665), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5180), + [sym_nu_script] = STATE(7688), + [sym_shebang] = STATE(73), + [sym__block_body_statement] = STATE(6678), + [sym__declaration] = STATE(7048), + [sym_decl_alias] = STATE(7040), + [sym_stmt_let] = STATE(7055), + [sym_stmt_mut] = STATE(7055), + [sym_stmt_const] = STATE(7055), + [sym_assignment] = STATE(7055), + [sym__mutable_assignment_pattern] = STATE(7059), + [sym__statement] = STATE(7048), + [sym_pipeline] = STATE(7055), + [sym__block_body] = STATE(7631), + [sym_cmd_identifier] = STATE(4748), + [sym_decl_def] = STATE(7040), + [sym_decl_export] = STATE(7040), + [sym_decl_extern] = STATE(7040), + [sym_decl_module] = STATE(7040), + [sym_decl_use] = STATE(7040), + [sym__ctrl_statement] = STATE(7055), + [sym__ctrl_expression] = STATE(5131), + [sym_ctrl_for] = STATE(7087), + [sym_ctrl_loop] = STATE(7087), + [sym_ctrl_error] = STATE(7087), + [sym_ctrl_while] = STATE(7087), + [sym_ctrl_do] = STATE(5133), + [sym_ctrl_if] = STATE(5133), + [sym_ctrl_match] = STATE(5133), + [sym_ctrl_try] = STATE(5133), + [sym_ctrl_return] = STATE(5133), + [sym_pipe_element] = STATE(4686), + [sym_stmt_source] = STATE(7055), + [sym_stmt_register] = STATE(7055), + [sym__stmt_hide] = STATE(7055), + [sym_hide_mod] = STATE(7049), + [sym_hide_env] = STATE(7049), + [sym__stmt_overlay] = STATE(7055), + [sym_overlay_list] = STATE(7088), + [sym_overlay_hide] = STATE(7088), + [sym_overlay_new] = STATE(7088), + [sym_overlay_use] = STATE(7088), + [sym_where_command] = STATE(5165), + [sym__expression] = STATE(3942), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(5165), [sym_comment] = STATE(1), - [aux_sym_shebang_repeat1] = STATE(6828), - [aux_sym_pipeline_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(121), - [aux_sym__block_body_repeat2] = STATE(159), - [aux_sym_pipe_element_repeat2] = STATE(354), + [aux_sym_shebang_repeat1] = STATE(6850), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym__block_body_repeat2] = STATE(146), + [aux_sym_pipe_element_repeat2] = STATE(318), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -66507,209 +62591,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(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_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), [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_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(19), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), [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_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_token34] = ACTIONS(19), [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(31), - [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), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [sym__newline] = ACTIONS(23), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(123), + [sym_raw_string_begin] = ACTIONS(121), }, [2] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7678), - [sym_cmd_identifier] = STATE(4642), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym__match_pattern_record_variable] = STATE(688), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1943), - [sym__spread_parenthesized] = STATE(572), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(573), - [sym_val_variable] = STATE(176), - [sym_val_number] = STATE(2379), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2379), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(572), - [sym_record_body] = STATE(7711), - [sym_record_entry] = STATE(508), - [sym__record_key] = STATE(7733), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7813), + [sym_cmd_identifier] = STATE(4591), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym__match_pattern_record_variable] = STATE(744), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2063), + [sym__spread_parenthesized] = STATE(664), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(665), + [sym_val_variable] = STATE(165), + [sym_val_number] = STATE(2414), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2414), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(664), + [sym_record_body] = STATE(7880), + [sym_record_entry] = STATE(579), + [sym__record_key] = STATE(7645), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(2), - [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym__match_pattern_record_repeat1] = STATE(210), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(125), - [anon_sym_alias] = ACTIONS(127), - [anon_sym_let] = ACTIONS(129), - [anon_sym_let_DASHenv] = ACTIONS(129), - [anon_sym_mut] = ACTIONS(131), - [anon_sym_const] = ACTIONS(133), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym__match_pattern_record_repeat1] = STATE(212), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(123), + [anon_sym_alias] = ACTIONS(125), + [anon_sym_let] = ACTIONS(127), + [anon_sym_let_DASHenv] = ACTIONS(127), + [anon_sym_mut] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -66728,67 +62816,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(151), - [anon_sym_export_DASHenv] = ACTIONS(153), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_module] = ACTIONS(157), - [anon_sym_use] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_error] = ACTIONS(167), - [anon_sym_list] = ACTIONS(169), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(173), - [anon_sym_continue] = ACTIONS(175), - [anon_sym_for] = ACTIONS(177), - [anon_sym_in] = ACTIONS(169), - [anon_sym_loop] = ACTIONS(179), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(143), + [anon_sym_export_DASHenv] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym_module] = ACTIONS(149), + [anon_sym_use] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_error] = ACTIONS(159), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(163), + [anon_sym_continue] = ACTIONS(165), + [anon_sym_for] = ACTIONS(167), + [anon_sym_in2] = ACTIONS(169), + [anon_sym_loop] = ACTIONS(171), [anon_sym_make] = ACTIONS(169), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_if] = ACTIONS(185), + [anon_sym_while] = ACTIONS(173), + [anon_sym_do] = ACTIONS(175), + [anon_sym_if] = ACTIONS(177), [anon_sym_else] = ACTIONS(169), - [anon_sym_match] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(191), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(195), + [anon_sym_match] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(187), [anon_sym_catch] = ACTIONS(169), - [anon_sym_return] = ACTIONS(197), - [anon_sym_source] = ACTIONS(199), - [anon_sym_source_DASHenv] = ACTIONS(199), - [anon_sym_register] = ACTIONS(201), - [anon_sym_hide] = ACTIONS(203), - [anon_sym_hide_DASHenv] = ACTIONS(205), - [anon_sym_overlay] = ACTIONS(207), - [anon_sym_new] = ACTIONS(169), + [anon_sym_return] = ACTIONS(189), + [anon_sym_source] = ACTIONS(191), + [anon_sym_source_DASHenv] = ACTIONS(191), + [anon_sym_register] = ACTIONS(193), + [anon_sym_hide] = ACTIONS(195), + [anon_sym_hide_DASHenv] = ACTIONS(197), + [anon_sym_overlay] = ACTIONS(199), [anon_sym_as] = ACTIONS(169), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(213), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(217), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -66799,117 +62890,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [3] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7747), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7933), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(8002), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(107), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7852), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(3), - [aux_sym_shebang_repeat1] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -66928,67 +63018,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(295), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -66998,118 +63091,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [4] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7893), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7708), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7607), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(107), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7852), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(4), - [aux_sym_shebang_repeat1] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -67128,67 +63220,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(317), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -67198,118 +63293,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [5] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7935), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7933), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7813), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7880), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(5), - [aux_sym_shebang_repeat1] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -67328,67 +63422,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(319), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -67398,118 +63495,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [6] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7678), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7711), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7793), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7796), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(6), - [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -67528,67 +63624,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -67598,118 +63697,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [7] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7731), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(8065), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7791), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7796), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(7), - [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -67728,67 +63826,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(323), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -67798,118 +63899,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [8] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8061), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(8065), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7632), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7880), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(8), - [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -67928,67 +64028,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -67998,118 +64101,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [9] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7722), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7711), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7791), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7767), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(9), - [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -68128,67 +64230,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -68198,118 +64303,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [10] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7893), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7896), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7765), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7604), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(10), [aux_sym_shebang_repeat1] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -68328,67 +64432,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -68398,118 +64505,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [11] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7937), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7708), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7599), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(125), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7837), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(11), - [aux_sym_shebang_repeat1] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(27), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -68528,67 +64634,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(331), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(329), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -68598,118 +64707,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [12] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8061), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7687), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7834), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(127), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7595), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(12), [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -68728,67 +64836,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(333), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -68798,118 +64909,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [13] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7683), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(134), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7593), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(129), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), [sym_record_body] = STATE(7691), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(13), - [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -68928,67 +65038,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(335), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -68998,118 +65111,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [14] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7690), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(138), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(8035), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7684), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7683), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(14), [aux_sym_shebang_repeat1] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -69128,67 +65240,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(337), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -69198,118 +65313,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [15] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8077), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(140), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(8042), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7681), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(105), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7570), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(15), [aux_sym_shebang_repeat1] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -69328,67 +65442,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(339), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -69398,118 +65515,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [16] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8041), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(142), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(8049), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7569), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7786), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(16), - [aux_sym_shebang_repeat1] = STATE(34), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(30), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -69528,67 +65644,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(339), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -69598,118 +65717,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [17] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7889), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(116), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7783), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7684), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7989), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(17), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(32), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -69728,67 +65846,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -69798,118 +65919,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [18] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7889), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(116), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7944), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7778), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(134), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7639), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(18), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(34), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -69928,67 +66048,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -69998,118 +66121,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [19] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7980), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7988), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), [sym_parameter_pipes] = STATE(136), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7717), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7740), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(19), - [aux_sym_shebang_repeat1] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(35), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -70128,67 +66250,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -70198,118 +66323,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [20] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7779), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(146), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7903), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7681), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(105), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7874), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(20), - [aux_sym_shebang_repeat1] = STATE(37), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(33), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -70328,67 +66452,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(349), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -70398,118 +66525,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [21] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7943), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(148), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7649), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7636), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(138), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7986), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(21), - [aux_sym_shebang_repeat1] = STATE(38), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(36), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -70528,67 +66654,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -70598,118 +66727,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [22] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7889), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(116), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7743), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7733), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(140), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7576), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(22), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(23), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -70728,67 +66856,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -70798,118 +66929,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [23] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7674), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(150), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7812), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7772), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(106), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(23), - [aux_sym_shebang_repeat1] = STATE(39), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -70928,67 +67057,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(355), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -70998,118 +67129,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [24] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7901), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(152), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7874), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7846), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(115), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(24), - [aux_sym_shebang_repeat1] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -71128,67 +67257,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(357), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -71198,118 +67329,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [25] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7648), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(117), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7919), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7851), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(25), - [aux_sym_shebang_repeat1] = STATE(35), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -71328,67 +67457,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -71398,117 +67529,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [26] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7618), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(145), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7628), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(120), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(26), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -71527,66 +67657,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -71596,117 +67729,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [27] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7861), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7937), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(27), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -71725,66 +67857,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -71794,117 +67929,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [28] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7949), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(132), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7805), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(28), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -71923,66 +68057,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -71992,117 +68129,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [29] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7978), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(126), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7935), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(130), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(29), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -72121,66 +68257,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -72190,117 +68329,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [30] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7745), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(135), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7647), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(30), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -72319,66 +68457,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -72388,117 +68529,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [31] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7635), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(129), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7965), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(31), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -72517,66 +68657,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -72586,117 +68729,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [32] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7638), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(139), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7842), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(132), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(32), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -72715,66 +68857,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -72784,117 +68929,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [33] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7709), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(141), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7600), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(133), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(33), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -72913,66 +69057,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -72982,117 +69129,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [34] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7960), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(143), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7831), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(135), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(34), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -73111,66 +69257,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -73180,117 +69329,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [35] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7664), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(144), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7553), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(137), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(35), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -73309,66 +69457,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -73378,117 +69529,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [36] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7737), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(137), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7660), + [sym_cmd_identifier] = STATE(4506), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(139), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2074), + [sym__spread_parenthesized] = STATE(7543), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(1482), + [sym_val_number] = STATE(2434), + [sym__val_number_decimal] = STATE(816), + [sym__val_number] = STATE(2439), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2434), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(36), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_shebang_repeat1] = STATE(205), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(251), + [anon_sym_alias] = ACTIONS(253), + [anon_sym_let] = ACTIONS(255), + [anon_sym_let_DASHenv] = ACTIONS(255), + [anon_sym_mut] = ACTIONS(257), + [anon_sym_const] = ACTIONS(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), [aux_sym_cmd_identifier_token4] = ACTIONS(135), [aux_sym_cmd_identifier_token5] = ACTIONS(135), [aux_sym_cmd_identifier_token6] = ACTIONS(135), [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), [aux_sym_cmd_identifier_token10] = ACTIONS(135), [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [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(135), [aux_sym_cmd_identifier_token17] = ACTIONS(135), [aux_sym_cmd_identifier_token18] = ACTIONS(135), @@ -73507,66 +69657,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(135), [aux_sym_cmd_identifier_token32] = ACTIONS(135), [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), [aux_sym_cmd_identifier_token35] = ACTIONS(135), [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), + [sym__newline] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(261), + [anon_sym_export_DASHenv] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_use] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_error] = ACTIONS(273), + [anon_sym_DASH2] = ACTIONS(161), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(283), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(297), + [anon_sym_source] = ACTIONS(299), + [anon_sym_source_DASHenv] = ACTIONS(299), + [anon_sym_register] = ACTIONS(301), + [anon_sym_hide] = ACTIONS(303), + [anon_sym_hide_DASHenv] = ACTIONS(305), + [anon_sym_overlay] = ACTIONS(307), + [anon_sym_as] = ACTIONS(281), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(217), + [aux_sym__val_number_decimal_token2] = ACTIONS(219), + [aux_sym__val_number_decimal_token3] = ACTIONS(221), + [aux_sym__val_number_decimal_token4] = ACTIONS(223), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), @@ -73576,15242 +69729,6720 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(237), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [37] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7823), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(147), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7657), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(37), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(45), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [38] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7966), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(149), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(8001), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(38), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(42), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [39] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8059), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(151), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(8002), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(107), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(39), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(44), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [40] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8040), - [sym_cmd_identifier] = STATE(4656), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(153), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1913), - [sym__spread_parenthesized] = STATE(7465), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(1323), - [sym_val_number] = STATE(2300), - [sym__val_number_decimal] = STATE(1584), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(2300), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7793), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(40), - [aux_sym_shebang_repeat1] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(253), - [anon_sym_alias] = ACTIONS(255), - [anon_sym_let] = ACTIONS(257), - [anon_sym_let_DASHenv] = ACTIONS(257), - [anon_sym_mut] = ACTIONS(259), - [anon_sym_const] = ACTIONS(261), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [anon_sym_true] = ACTIONS(137), - [anon_sym_false] = ACTIONS(137), - [anon_sym_null] = ACTIONS(139), - [aux_sym_cmd_identifier_token38] = ACTIONS(141), - [aux_sym_cmd_identifier_token39] = ACTIONS(143), - [aux_sym_cmd_identifier_token40] = ACTIONS(143), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(263), - [anon_sym_export_DASHenv] = ACTIONS(265), - [anon_sym_extern] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_use] = ACTIONS(271), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_error] = ACTIONS(275), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(289), - [anon_sym_if] = ACTIONS(291), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(293), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(297), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(299), - [anon_sym_source] = ACTIONS(301), - [anon_sym_source_DASHenv] = ACTIONS(301), - [anon_sym_register] = ACTIONS(303), - [anon_sym_hide] = ACTIONS(305), - [anon_sym_hide_DASHenv] = ACTIONS(307), - [anon_sym_overlay] = ACTIONS(309), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(46), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [41] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8074), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(134), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7607), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(107), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(41), - [aux_sym_shebang_repeat1] = STATE(46), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(44), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [42] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7937), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7805), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(42), - [aux_sym_shebang_repeat1] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(229), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [43] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7935), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7791), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(43), - [aux_sym_shebang_repeat1] = STATE(48), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(46), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [44] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7761), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(136), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7851), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(44), - [aux_sym_shebang_repeat1] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(455), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(229), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [45] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7737), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(137), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7647), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(45), - [aux_sym_shebang_repeat1] = STATE(296), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(229), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [46] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7745), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(135), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7628), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym_parameter_pipes] = STATE(120), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(46), - [aux_sym_shebang_repeat1] = STATE(296), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(229), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [47] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7747), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7942), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(47), - [aux_sym_shebang_repeat1] = STATE(48), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(453), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(469), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [48] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7861), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7748), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(48), - [aux_sym_shebang_repeat1] = STATE(296), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(483), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [49] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7949), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(132), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7760), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(49), - [aux_sym_shebang_repeat1] = STATE(296), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [50] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7893), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7597), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(50), - [aux_sym_shebang_repeat1] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7954), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7987), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(479), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(501), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(491), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(493), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7916), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7732), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(533), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(495), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(497), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7907), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7833), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(537), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(499), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(469), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7660), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7872), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(539), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(541), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(503), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7877), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7568), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(541), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7987), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7980), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(547), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(509), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7647), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7575), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(547), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(511), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(513), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [58] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(8064), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7665), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(551), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(541), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(515), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(517), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [59] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7979), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7695), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(555), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(519), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(521), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [60] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7809), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7621), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(547), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(523), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(509), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [61] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7955), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7708), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(559), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(561), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(527), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [62] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7629), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7718), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(565), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(531), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [63] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(8076), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7726), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(63), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(569), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(535), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [64] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7680), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7634), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(547), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [65] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7658), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(575), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [66] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7700), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(579), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [67] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7738), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(583), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [68] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7844), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(587), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [69] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7920), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(591), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [70] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7707), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(541), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [71] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7887), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(547), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [72] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7741), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(599), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [73] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7688), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(73), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(601), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [anon_sym_RPAREN2] = ACTIONS(537), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [74] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(8075), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(74), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [75] = { - [sym__block_body_statement] = STATE(6021), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(75), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(238), - [aux_sym__block_body_repeat2] = STATE(158), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_RPAREN] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7697), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(65), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), - }, - [76] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(8043), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [77] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7660), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [78] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7696), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [79] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7665), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(79), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [80] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7647), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [81] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7621), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [82] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7757), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(82), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [83] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7988), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [66] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(83), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7601), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(66), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(541), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_RPAREN2] = ACTIONS(469), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), - }, - [84] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7662), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(84), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [85] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7826), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [86] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7809), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(86), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(625), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [87] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7975), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(87), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(627), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [88] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7882), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [89] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7829), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(89), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [90] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7924), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [91] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7886), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [92] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7958), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(92), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(637), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [93] = { - [sym__block_body_statement] = STATE(6369), - [sym__declaration] = STATE(6892), - [sym_decl_alias] = STATE(7011), - [sym_stmt_let] = STATE(6877), - [sym_stmt_mut] = STATE(6877), - [sym_stmt_const] = STATE(6877), - [sym_assignment] = STATE(6877), - [sym__mutable_assignment_pattern] = STATE(6904), - [sym__statement] = STATE(6892), - [sym_pipeline] = STATE(6877), - [sym__block_body] = STATE(7982), - [sym_cmd_identifier] = STATE(4714), - [sym_decl_def] = STATE(7011), - [sym_decl_export] = STATE(7011), - [sym_decl_extern] = STATE(7011), - [sym_decl_module] = STATE(7011), - [sym_decl_use] = STATE(7011), - [sym__ctrl_statement] = STATE(6877), - [sym__ctrl_expression] = STATE(5155), - [sym_ctrl_for] = STATE(7034), - [sym_ctrl_loop] = STATE(7034), - [sym_ctrl_error] = STATE(7034), - [sym_ctrl_while] = STATE(7034), - [sym_ctrl_do] = STATE(5175), - [sym_ctrl_if] = STATE(5175), - [sym_ctrl_match] = STATE(5175), - [sym_ctrl_try] = STATE(5175), - [sym_ctrl_return] = STATE(5175), - [sym_pipe_element] = STATE(4782), - [sym_stmt_source] = STATE(6877), - [sym_stmt_register] = STATE(6877), - [sym__stmt_hide] = STATE(6877), - [sym_hide_mod] = STATE(6852), - [sym_hide_env] = STATE(6852), - [sym__stmt_overlay] = STATE(6877), - [sym_overlay_list] = STATE(6913), - [sym_overlay_hide] = STATE(6913), - [sym_overlay_new] = STATE(6913), - [sym_overlay_use] = STATE(6913), - [sym_where_command] = STATE(5180), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(1364), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1665), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5180), - [sym_comment] = STATE(93), - [aux_sym_pipeline_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(121), - [aux_sym__block_body_repeat2] = STATE(159), - [aux_sym_pipe_element_repeat2] = STATE(354), - [ts_builtin_sym_end] = ACTIONS(639), - [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(249), - [sym_raw_string_begin] = ACTIONS(123), - }, - [94] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7785), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(94), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(641), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [95] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7873), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(95), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [96] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(8039), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(96), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [97] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7922), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(97), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(647), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [98] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7969), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(98), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [99] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7701), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [67] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(99), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7936), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(67), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), - }, - [100] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7951), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(100), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [101] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7688), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(101), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [102] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7972), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(102), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(655), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [103] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7718), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(103), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [104] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7947), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(104), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [105] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7715), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(105), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [106] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7746), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(106), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [107] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7799), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(107), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [108] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7617), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(108), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [109] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7778), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(109), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(669), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [110] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7739), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(110), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(671), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [111] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(8073), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(111), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [112] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7981), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(112), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [113] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7939), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(113), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [114] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7671), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(114), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [115] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7991), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(115), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [116] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7615), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [68] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(116), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7568), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(68), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [117] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7663), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [69] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(117), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7938), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [118] = { - [sym__block_body_statement_parenthesized] = STATE(5930), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(118), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(238), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(157), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [70] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7950), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(70), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [119] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7804), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [71] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(119), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7761), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [120] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8053), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [72] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(120), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7990), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(551), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [121] = { - [sym__block_body_statement] = STATE(6547), - [sym__declaration] = STATE(6892), - [sym_decl_alias] = STATE(7011), - [sym_stmt_let] = STATE(6877), - [sym_stmt_mut] = STATE(6877), - [sym_stmt_const] = STATE(6877), - [sym_assignment] = STATE(6877), - [sym__mutable_assignment_pattern] = STATE(6904), - [sym__statement] = STATE(6892), - [sym_pipeline] = STATE(6877), - [sym_cmd_identifier] = STATE(4714), - [sym_decl_def] = STATE(7011), - [sym_decl_export] = STATE(7011), - [sym_decl_extern] = STATE(7011), - [sym_decl_module] = STATE(7011), - [sym_decl_use] = STATE(7011), - [sym__ctrl_statement] = STATE(6877), - [sym__ctrl_expression] = STATE(5155), - [sym_ctrl_for] = STATE(7034), - [sym_ctrl_loop] = STATE(7034), - [sym_ctrl_error] = STATE(7034), - [sym_ctrl_while] = STATE(7034), - [sym_ctrl_do] = STATE(5175), - [sym_ctrl_if] = STATE(5175), - [sym_ctrl_match] = STATE(5175), - [sym_ctrl_try] = STATE(5175), - [sym_ctrl_return] = STATE(5175), - [sym_pipe_element] = STATE(4782), - [sym_stmt_source] = STATE(6877), - [sym_stmt_register] = STATE(6877), - [sym__stmt_hide] = STATE(6877), - [sym_hide_mod] = STATE(6852), - [sym_hide_env] = STATE(6852), - [sym__stmt_overlay] = STATE(6877), - [sym_overlay_list] = STATE(6913), - [sym_overlay_hide] = STATE(6913), - [sym_overlay_new] = STATE(6913), - [sym_overlay_use] = STATE(6913), - [sym_where_command] = STATE(5180), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(1364), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1665), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5180), - [sym_comment] = STATE(121), - [aux_sym_pipeline_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(263), - [aux_sym__block_body_repeat2] = STATE(155), - [aux_sym_pipe_element_repeat2] = STATE(354), - [ts_builtin_sym_end] = ACTIONS(605), + [73] = { + [sym__block_body_statement] = STATE(6678), + [sym__declaration] = STATE(7048), + [sym_decl_alias] = STATE(7040), + [sym_stmt_let] = STATE(7055), + [sym_stmt_mut] = STATE(7055), + [sym_stmt_const] = STATE(7055), + [sym_assignment] = STATE(7055), + [sym__mutable_assignment_pattern] = STATE(7059), + [sym__statement] = STATE(7048), + [sym_pipeline] = STATE(7055), + [sym__block_body] = STATE(7650), + [sym_cmd_identifier] = STATE(4748), + [sym_decl_def] = STATE(7040), + [sym_decl_export] = STATE(7040), + [sym_decl_extern] = STATE(7040), + [sym_decl_module] = STATE(7040), + [sym_decl_use] = STATE(7040), + [sym__ctrl_statement] = STATE(7055), + [sym__ctrl_expression] = STATE(5131), + [sym_ctrl_for] = STATE(7087), + [sym_ctrl_loop] = STATE(7087), + [sym_ctrl_error] = STATE(7087), + [sym_ctrl_while] = STATE(7087), + [sym_ctrl_do] = STATE(5133), + [sym_ctrl_if] = STATE(5133), + [sym_ctrl_match] = STATE(5133), + [sym_ctrl_try] = STATE(5133), + [sym_ctrl_return] = STATE(5133), + [sym_pipe_element] = STATE(4686), + [sym_stmt_source] = STATE(7055), + [sym_stmt_register] = STATE(7055), + [sym__stmt_hide] = STATE(7055), + [sym_hide_mod] = STATE(7049), + [sym_hide_env] = STATE(7049), + [sym__stmt_overlay] = STATE(7055), + [sym_overlay_list] = STATE(7088), + [sym_overlay_hide] = STATE(7088), + [sym_overlay_new] = STATE(7088), + [sym_overlay_use] = STATE(7088), + [sym_where_command] = STATE(5165), + [sym__expression] = STATE(3942), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(5165), + [sym_comment] = STATE(73), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym__block_body_repeat2] = STATE(146), + [aux_sym_pipe_element_repeat2] = STATE(318), + [ts_builtin_sym_end] = ACTIONS(553), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -88819,6049 +76450,6400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(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_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), [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_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(19), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), [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_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_token34] = ACTIONS(19), [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(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, - [122] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7963), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [74] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(122), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7635), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(74), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [123] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7725), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [75] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(123), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7869), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(75), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [124] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7899), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [76] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(124), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7580), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(76), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), - }, - [125] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7847), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(125), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [126] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8023), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [77] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(126), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7621), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(77), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [127] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7858), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [78] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(127), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7844), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(78), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [128] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7862), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [79] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(128), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7876), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(79), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [129] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7705), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [80] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(129), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7603), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(80), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [130] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7934), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [81] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(130), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7667), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(81), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [131] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7946), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [82] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(131), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7832), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(82), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [132] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7983), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [83] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(132), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7847), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [133] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7721), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [84] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(133), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7554), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(84), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(575), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [134] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7742), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [85] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(134), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7671), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [135] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7795), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [86] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(135), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7661), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(86), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [136] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7727), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [87] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(136), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7787), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(87), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [137] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7793), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [88] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(137), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7774), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [138] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7624), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [89] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(138), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7806), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(89), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [139] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7974), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [90] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(139), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7894), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [140] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7684), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [91] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(140), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7955), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [141] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7641), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [92] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(141), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7993), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(92), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [142] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7957), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [93] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(142), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7934), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(93), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [143] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8031), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [94] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(143), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7584), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(94), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [144] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7672), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [95] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(144), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7629), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(95), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [145] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7668), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [96] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(145), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7670), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(96), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [146] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7822), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [97] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(146), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7702), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(97), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [147] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7849), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [98] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(147), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7711), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(98), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [148] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7965), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [99] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(148), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7680), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(99), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [149] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7989), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [100] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(149), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7625), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(100), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [150] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8050), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(150), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [101] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7623), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(101), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [151] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(7628), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [102] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(151), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7649), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(102), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [152] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8038), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [103] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7958), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [153] = { - [sym__block_body_statement] = STATE(6057), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym__block_body] = STATE(8060), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [104] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7833), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(104), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [154] = { - [sym__block_body_statement_parenthesized] = STATE(5872), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym__parenthesized_body] = STATE(7961), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(154), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(161), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [105] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7598), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(105), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [155] = { - [sym__block_body_statement] = STATE(6653), - [sym__declaration] = STATE(6892), - [sym_decl_alias] = STATE(7011), - [sym_stmt_let] = STATE(6877), - [sym_stmt_mut] = STATE(6877), - [sym_stmt_const] = STATE(6877), - [sym_assignment] = STATE(6877), - [sym__mutable_assignment_pattern] = STATE(6904), - [sym__statement] = STATE(6892), - [sym_pipeline] = STATE(6877), - [sym_cmd_identifier] = STATE(4714), - [sym_decl_def] = STATE(7011), - [sym_decl_export] = STATE(7011), - [sym_decl_extern] = STATE(7011), - [sym_decl_module] = STATE(7011), - [sym_decl_use] = STATE(7011), - [sym__ctrl_statement] = STATE(6877), - [sym__ctrl_expression] = STATE(5155), - [sym_ctrl_for] = STATE(7034), - [sym_ctrl_loop] = STATE(7034), - [sym_ctrl_error] = STATE(7034), - [sym_ctrl_while] = STATE(7034), - [sym_ctrl_do] = STATE(5175), - [sym_ctrl_if] = STATE(5175), - [sym_ctrl_match] = STATE(5175), - [sym_ctrl_try] = STATE(5175), - [sym_ctrl_return] = STATE(5175), - [sym_pipe_element] = STATE(4782), - [sym_stmt_source] = STATE(6877), - [sym_stmt_register] = STATE(6877), - [sym__stmt_hide] = STATE(6877), - [sym_hide_mod] = STATE(6852), - [sym_hide_env] = STATE(6852), - [sym__stmt_overlay] = STATE(6877), - [sym_overlay_list] = STATE(6913), - [sym_overlay_hide] = STATE(6913), - [sym_overlay_new] = STATE(6913), - [sym_overlay_use] = STATE(6913), - [sym_where_command] = STATE(5180), + [106] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7797), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(1364), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1665), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5180), - [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(194), - [aux_sym__block_body_repeat2] = STATE(156), - [aux_sym_pipe_element_repeat2] = STATE(354), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(106), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [107] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7721), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(107), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [108] = { + [sym__block_body_statement] = STATE(6466), + [sym__declaration] = STATE(7048), + [sym_decl_alias] = STATE(7040), + [sym_stmt_let] = STATE(7055), + [sym_stmt_mut] = STATE(7055), + [sym_stmt_const] = STATE(7055), + [sym_assignment] = STATE(7055), + [sym__mutable_assignment_pattern] = STATE(7059), + [sym__statement] = STATE(7048), + [sym_pipeline] = STATE(7055), + [sym_cmd_identifier] = STATE(4748), + [sym_decl_def] = STATE(7040), + [sym_decl_export] = STATE(7040), + [sym_decl_extern] = STATE(7040), + [sym_decl_module] = STATE(7040), + [sym_decl_use] = STATE(7040), + [sym__ctrl_statement] = STATE(7055), + [sym__ctrl_expression] = STATE(5131), + [sym_ctrl_for] = STATE(7087), + [sym_ctrl_loop] = STATE(7087), + [sym_ctrl_error] = STATE(7087), + [sym_ctrl_while] = STATE(7087), + [sym_ctrl_do] = STATE(5133), + [sym_ctrl_if] = STATE(5133), + [sym_ctrl_match] = STATE(5133), + [sym_ctrl_try] = STATE(5133), + [sym_ctrl_return] = STATE(5133), + [sym_pipe_element] = STATE(4686), + [sym_stmt_source] = STATE(7055), + [sym_stmt_register] = STATE(7055), + [sym__stmt_hide] = STATE(7055), + [sym_hide_mod] = STATE(7049), + [sym_hide_env] = STATE(7049), + [sym__stmt_overlay] = STATE(7055), + [sym_overlay_list] = STATE(7088), + [sym_overlay_hide] = STATE(7088), + [sym_overlay_new] = STATE(7088), + [sym_overlay_use] = STATE(7088), + [sym_where_command] = STATE(5165), + [sym__expression] = STATE(3942), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(5165), + [sym_comment] = STATE(108), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat1] = STATE(305), + [aux_sym__block_body_repeat2] = STATE(150), + [aux_sym_pipe_element_repeat2] = STATE(318), + [ts_builtin_sym_end] = ACTIONS(615), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -94869,3833 +82851,6903 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(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_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), [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_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(19), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), [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_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_token34] = ACTIONS(19), [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(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, - [156] = { - [sym__block_body_statement] = STATE(7128), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [109] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(156), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat2] = STATE(156), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(685), - [anon_sym_alias] = ACTIONS(688), - [anon_sym_let] = ACTIONS(691), - [anon_sym_let_DASHenv] = ACTIONS(691), - [anon_sym_mut] = ACTIONS(694), - [anon_sym_const] = ACTIONS(697), - [aux_sym_cmd_identifier_token1] = ACTIONS(700), - [aux_sym_cmd_identifier_token2] = ACTIONS(700), - [aux_sym_cmd_identifier_token3] = ACTIONS(700), - [aux_sym_cmd_identifier_token4] = ACTIONS(700), - [aux_sym_cmd_identifier_token5] = ACTIONS(700), - [aux_sym_cmd_identifier_token6] = ACTIONS(700), - [aux_sym_cmd_identifier_token7] = ACTIONS(700), - [aux_sym_cmd_identifier_token8] = ACTIONS(700), - [aux_sym_cmd_identifier_token9] = ACTIONS(700), - [aux_sym_cmd_identifier_token10] = ACTIONS(700), - [aux_sym_cmd_identifier_token11] = ACTIONS(700), - [aux_sym_cmd_identifier_token12] = ACTIONS(700), - [aux_sym_cmd_identifier_token13] = ACTIONS(700), - [aux_sym_cmd_identifier_token14] = ACTIONS(700), - [aux_sym_cmd_identifier_token15] = ACTIONS(700), - [aux_sym_cmd_identifier_token16] = ACTIONS(700), - [aux_sym_cmd_identifier_token17] = ACTIONS(700), - [aux_sym_cmd_identifier_token18] = ACTIONS(700), - [aux_sym_cmd_identifier_token19] = ACTIONS(700), - [aux_sym_cmd_identifier_token20] = ACTIONS(700), - [aux_sym_cmd_identifier_token21] = ACTIONS(700), - [aux_sym_cmd_identifier_token22] = ACTIONS(700), - [aux_sym_cmd_identifier_token23] = ACTIONS(700), - [aux_sym_cmd_identifier_token24] = ACTIONS(703), - [aux_sym_cmd_identifier_token25] = ACTIONS(700), - [aux_sym_cmd_identifier_token26] = ACTIONS(703), - [aux_sym_cmd_identifier_token27] = ACTIONS(700), - [aux_sym_cmd_identifier_token28] = ACTIONS(700), - [aux_sym_cmd_identifier_token29] = ACTIONS(700), - [aux_sym_cmd_identifier_token30] = ACTIONS(700), - [aux_sym_cmd_identifier_token31] = ACTIONS(703), - [aux_sym_cmd_identifier_token32] = ACTIONS(703), - [aux_sym_cmd_identifier_token33] = ACTIONS(703), - [aux_sym_cmd_identifier_token34] = ACTIONS(703), - [aux_sym_cmd_identifier_token35] = ACTIONS(703), - [aux_sym_cmd_identifier_token36] = ACTIONS(700), - [anon_sym_true] = ACTIONS(706), - [anon_sym_false] = ACTIONS(706), - [anon_sym_null] = ACTIONS(709), - [aux_sym_cmd_identifier_token38] = ACTIONS(712), - [aux_sym_cmd_identifier_token39] = ACTIONS(715), - [aux_sym_cmd_identifier_token40] = ACTIONS(715), - [anon_sym_def] = ACTIONS(718), - [anon_sym_export_DASHenv] = ACTIONS(721), - [anon_sym_extern] = ACTIONS(724), - [anon_sym_module] = ACTIONS(727), - [anon_sym_use] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_DOLLAR] = ACTIONS(739), - [anon_sym_error] = ACTIONS(742), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_break] = ACTIONS(748), - [anon_sym_continue] = ACTIONS(751), - [anon_sym_for] = ACTIONS(754), - [anon_sym_loop] = ACTIONS(757), - [anon_sym_while] = ACTIONS(760), - [anon_sym_do] = ACTIONS(763), - [anon_sym_if] = ACTIONS(766), - [anon_sym_match] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_DOT_DOT] = ACTIONS(775), - [anon_sym_try] = ACTIONS(778), - [anon_sym_return] = ACTIONS(781), - [anon_sym_source] = ACTIONS(784), - [anon_sym_source_DASHenv] = ACTIONS(784), - [anon_sym_register] = ACTIONS(787), - [anon_sym_hide] = ACTIONS(790), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(796), - [anon_sym_where] = ACTIONS(799), - [aux_sym_expr_unary_token1] = ACTIONS(802), - [anon_sym_DOT_DOT_EQ] = ACTIONS(805), - [anon_sym_DOT_DOT_LT] = ACTIONS(805), - [aux_sym__val_number_decimal_token1] = ACTIONS(808), - [aux_sym__val_number_decimal_token2] = ACTIONS(811), - [aux_sym__val_number_decimal_token3] = ACTIONS(814), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(820), - [aux_sym__val_number_token2] = ACTIONS(820), - [aux_sym__val_number_token3] = ACTIONS(820), - [anon_sym_0b] = ACTIONS(823), - [anon_sym_0o] = ACTIONS(826), - [anon_sym_0x] = ACTIONS(826), - [sym_val_date] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(832), - [sym__str_single_quotes] = ACTIONS(835), - [sym__str_back_ticks] = ACTIONS(835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(841), - [aux_sym_env_var_token1] = ACTIONS(844), - [anon_sym_CARET] = ACTIONS(847), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(850), - }, - [157] = { - [sym__block_body_statement_parenthesized] = STATE(5879), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(157), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(162), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7768), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(109), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [158] = { - [sym__block_body_statement] = STATE(5994), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [110] = { + [sym__block_body_statement_parenthesized] = STATE(5861), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat2] = STATE(156), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(110), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(223), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(144), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [159] = { - [sym__block_body_statement] = STATE(6547), - [sym__declaration] = STATE(6892), - [sym_decl_alias] = STATE(7011), - [sym_stmt_let] = STATE(6877), - [sym_stmt_mut] = STATE(6877), - [sym_stmt_const] = STATE(6877), - [sym_assignment] = STATE(6877), - [sym__mutable_assignment_pattern] = STATE(6904), - [sym__statement] = STATE(6892), - [sym_pipeline] = STATE(6877), - [sym_cmd_identifier] = STATE(4714), - [sym_decl_def] = STATE(7011), - [sym_decl_export] = STATE(7011), - [sym_decl_extern] = STATE(7011), - [sym_decl_module] = STATE(7011), - [sym_decl_use] = STATE(7011), - [sym__ctrl_statement] = STATE(6877), - [sym__ctrl_expression] = STATE(5155), - [sym_ctrl_for] = STATE(7034), - [sym_ctrl_loop] = STATE(7034), - [sym_ctrl_error] = STATE(7034), - [sym_ctrl_while] = STATE(7034), - [sym_ctrl_do] = STATE(5175), - [sym_ctrl_if] = STATE(5175), - [sym_ctrl_match] = STATE(5175), - [sym_ctrl_try] = STATE(5175), - [sym_ctrl_return] = STATE(5175), - [sym_pipe_element] = STATE(4782), - [sym_stmt_source] = STATE(6877), - [sym_stmt_register] = STATE(6877), - [sym__stmt_hide] = STATE(6877), - [sym_hide_mod] = STATE(6852), - [sym_hide_env] = STATE(6852), - [sym__stmt_overlay] = STATE(6877), - [sym_overlay_list] = STATE(6913), - [sym_overlay_hide] = STATE(6913), - [sym_overlay_new] = STATE(6913), - [sym_overlay_use] = STATE(6913), - [sym_where_command] = STATE(5180), + [111] = { + [sym__block_body_statement] = STATE(6053), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(1364), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1665), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5180), - [sym_comment] = STATE(159), - [aux_sym_pipeline_repeat1] = STATE(194), - [aux_sym__block_body_repeat2] = STATE(156), - [aux_sym_pipe_element_repeat2] = STATE(354), - [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(249), - [sym_raw_string_begin] = ACTIONS(123), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(111), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(223), + [aux_sym__block_body_repeat2] = STATE(148), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [160] = { - [sym__block_body_statement] = STATE(6021), - [sym__declaration] = STATE(6260), - [sym_decl_alias] = STATE(6261), - [sym_stmt_let] = STATE(6262), - [sym_stmt_mut] = STATE(6262), - [sym_stmt_const] = STATE(6262), - [sym_assignment] = STATE(6262), - [sym__mutable_assignment_pattern] = STATE(6263), - [sym__statement] = STATE(6260), - [sym_pipeline] = STATE(6262), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6261), - [sym_decl_export] = STATE(6261), - [sym_decl_extern] = STATE(6261), - [sym_decl_module] = STATE(6261), - [sym_decl_use] = STATE(6261), - [sym__ctrl_statement] = STATE(6262), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [112] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7641), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1560), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(112), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(116), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(327), + [anon_sym_export] = ACTIONS(619), + [anon_sym_alias] = ACTIONS(621), + [anon_sym_let] = ACTIONS(623), + [anon_sym_let_DASHenv] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(625), + [anon_sym_const] = ACTIONS(627), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [113] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7770), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(113), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [114] = { + [sym__block_body_statement_parenthesized] = STATE(5813), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_stmt_source] = STATE(6262), - [sym_stmt_register] = STATE(6262), - [sym__stmt_hide] = STATE(6262), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(6262), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1296), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat2] = STATE(156), - [aux_sym_pipe_element_repeat2] = STATE(361), - [anon_sym_export] = ACTIONS(361), - [anon_sym_alias] = ACTIONS(363), - [anon_sym_let] = ACTIONS(365), - [anon_sym_let_DASHenv] = ACTIONS(365), - [anon_sym_mut] = ACTIONS(367), - [anon_sym_const] = ACTIONS(369), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym__parenthesized_body] = STATE(7878), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(114), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(143), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [161] = { - [sym__block_body_statement_parenthesized] = STATE(5930), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(161), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(162), - [anon_sym_export] = ACTIONS(457), - [anon_sym_alias] = ACTIONS(459), - [anon_sym_let] = ACTIONS(461), - [anon_sym_let_DASHenv] = ACTIONS(461), - [anon_sym_mut] = ACTIONS(463), - [anon_sym_const] = ACTIONS(465), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(371), - [aux_sym_cmd_identifier_token3] = ACTIONS(371), - [aux_sym_cmd_identifier_token4] = ACTIONS(371), - [aux_sym_cmd_identifier_token5] = ACTIONS(371), - [aux_sym_cmd_identifier_token6] = ACTIONS(371), - [aux_sym_cmd_identifier_token7] = ACTIONS(371), - [aux_sym_cmd_identifier_token8] = ACTIONS(371), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(371), - [aux_sym_cmd_identifier_token11] = ACTIONS(371), - [aux_sym_cmd_identifier_token12] = ACTIONS(371), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(371), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(371), - [aux_sym_cmd_identifier_token17] = ACTIONS(371), - [aux_sym_cmd_identifier_token18] = ACTIONS(371), - [aux_sym_cmd_identifier_token19] = ACTIONS(371), - [aux_sym_cmd_identifier_token20] = ACTIONS(371), - [aux_sym_cmd_identifier_token21] = ACTIONS(371), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [anon_sym_def] = ACTIONS(385), - [anon_sym_export_DASHenv] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_module] = ACTIONS(391), - [anon_sym_use] = ACTIONS(393), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_error] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_for] = ACTIONS(407), - [anon_sym_loop] = ACTIONS(409), - [anon_sym_while] = ACTIONS(411), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_source] = ACTIONS(425), - [anon_sym_source_DASHenv] = ACTIONS(425), - [anon_sym_register] = ACTIONS(427), - [anon_sym_hide] = ACTIONS(429), - [anon_sym_hide_DASHenv] = ACTIONS(431), - [anon_sym_overlay] = ACTIONS(433), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [115] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7583), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(115), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [162] = { - [sym__block_body_statement_parenthesized] = STATE(6731), - [sym__declaration_parenthesized] = STATE(7040), - [sym_decl_alias_parenthesized] = STATE(7072), - [sym_stmt_let_parenthesized] = STATE(7124), - [sym_stmt_mut_parenthesized] = STATE(7124), - [sym_stmt_const_parenthesized] = STATE(7124), - [sym_assignment_parenthesized] = STATE(7124), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), - [sym__statement_parenthesized] = STATE(7040), - [sym_pipeline_parenthesized] = STATE(7124), - [sym_cmd_identifier] = STATE(4817), - [sym_decl_def] = STATE(7072), - [sym_decl_export] = STATE(7072), - [sym_decl_extern] = STATE(7072), - [sym_decl_module] = STATE(7072), - [sym_decl_use] = STATE(7072), - [sym__ctrl_statement] = STATE(7124), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_for] = STATE(6269), - [sym_ctrl_loop] = STATE(6269), - [sym_ctrl_error] = STATE(6269), - [sym_ctrl_while] = STATE(6269), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_stmt_source] = STATE(7124), - [sym_stmt_register] = STATE(7124), - [sym__stmt_hide] = STATE(7124), - [sym_hide_mod] = STATE(6273), - [sym_hide_env] = STATE(6273), - [sym__stmt_overlay] = STATE(7124), - [sym_overlay_list] = STATE(6274), - [sym_overlay_hide] = STATE(6274), - [sym_overlay_new] = STATE(6274), - [sym_overlay_use] = STATE(6274), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(1361), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(162), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym__parenthesized_body_repeat2] = STATE(162), - [anon_sym_export] = ACTIONS(853), - [anon_sym_alias] = ACTIONS(856), - [anon_sym_let] = ACTIONS(859), - [anon_sym_let_DASHenv] = ACTIONS(859), - [anon_sym_mut] = ACTIONS(862), - [anon_sym_const] = ACTIONS(865), - [aux_sym_cmd_identifier_token1] = ACTIONS(868), - [aux_sym_cmd_identifier_token2] = ACTIONS(868), - [aux_sym_cmd_identifier_token3] = ACTIONS(868), - [aux_sym_cmd_identifier_token4] = ACTIONS(868), - [aux_sym_cmd_identifier_token5] = ACTIONS(868), - [aux_sym_cmd_identifier_token6] = ACTIONS(868), - [aux_sym_cmd_identifier_token7] = ACTIONS(868), - [aux_sym_cmd_identifier_token8] = ACTIONS(868), - [aux_sym_cmd_identifier_token9] = ACTIONS(868), - [aux_sym_cmd_identifier_token10] = ACTIONS(868), - [aux_sym_cmd_identifier_token11] = ACTIONS(868), - [aux_sym_cmd_identifier_token12] = ACTIONS(868), - [aux_sym_cmd_identifier_token13] = ACTIONS(868), - [aux_sym_cmd_identifier_token14] = ACTIONS(868), - [aux_sym_cmd_identifier_token15] = ACTIONS(868), - [aux_sym_cmd_identifier_token16] = ACTIONS(868), - [aux_sym_cmd_identifier_token17] = ACTIONS(868), - [aux_sym_cmd_identifier_token18] = ACTIONS(868), - [aux_sym_cmd_identifier_token19] = ACTIONS(868), - [aux_sym_cmd_identifier_token20] = ACTIONS(868), - [aux_sym_cmd_identifier_token21] = ACTIONS(868), - [aux_sym_cmd_identifier_token22] = ACTIONS(868), - [aux_sym_cmd_identifier_token23] = ACTIONS(868), - [aux_sym_cmd_identifier_token24] = ACTIONS(871), - [aux_sym_cmd_identifier_token25] = ACTIONS(868), - [aux_sym_cmd_identifier_token26] = ACTIONS(871), - [aux_sym_cmd_identifier_token27] = ACTIONS(868), - [aux_sym_cmd_identifier_token28] = ACTIONS(868), - [aux_sym_cmd_identifier_token29] = ACTIONS(868), - [aux_sym_cmd_identifier_token30] = ACTIONS(868), - [aux_sym_cmd_identifier_token31] = ACTIONS(871), - [aux_sym_cmd_identifier_token32] = ACTIONS(871), - [aux_sym_cmd_identifier_token33] = ACTIONS(871), - [aux_sym_cmd_identifier_token34] = ACTIONS(871), - [aux_sym_cmd_identifier_token35] = ACTIONS(871), - [aux_sym_cmd_identifier_token36] = ACTIONS(868), - [anon_sym_true] = ACTIONS(874), - [anon_sym_false] = ACTIONS(874), - [anon_sym_null] = ACTIONS(877), - [aux_sym_cmd_identifier_token38] = ACTIONS(880), - [aux_sym_cmd_identifier_token39] = ACTIONS(883), - [aux_sym_cmd_identifier_token40] = ACTIONS(883), - [anon_sym_def] = ACTIONS(886), - [anon_sym_export_DASHenv] = ACTIONS(889), - [anon_sym_extern] = ACTIONS(892), - [anon_sym_module] = ACTIONS(895), - [anon_sym_use] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_error] = ACTIONS(910), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_break] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_for] = ACTIONS(922), - [anon_sym_loop] = ACTIONS(925), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(931), - [anon_sym_if] = ACTIONS(934), - [anon_sym_match] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_DOT_DOT] = ACTIONS(943), - [anon_sym_try] = ACTIONS(946), - [anon_sym_return] = ACTIONS(949), - [anon_sym_source] = ACTIONS(952), - [anon_sym_source_DASHenv] = ACTIONS(952), - [anon_sym_register] = ACTIONS(955), - [anon_sym_hide] = ACTIONS(958), - [anon_sym_hide_DASHenv] = ACTIONS(961), - [anon_sym_overlay] = ACTIONS(964), - [anon_sym_where] = ACTIONS(967), - [aux_sym_expr_unary_token1] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(973), - [anon_sym_DOT_DOT_LT] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(979), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(985), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(991), - [anon_sym_0o] = ACTIONS(994), - [anon_sym_0x] = ACTIONS(994), - [sym_val_date] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1003), - [sym__str_back_ticks] = ACTIONS(1003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1009), - [aux_sym_env_var_token1] = ACTIONS(1012), - [anon_sym_CARET] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1018), + [116] = { + [sym__block_body_statement] = STATE(6053), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1560), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(116), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(223), + [aux_sym__block_body_repeat2] = STATE(149), + [aux_sym_pipe_element_repeat2] = STATE(327), + [anon_sym_export] = ACTIONS(619), + [anon_sym_alias] = ACTIONS(621), + [anon_sym_let] = ACTIONS(623), + [anon_sym_let_DASHenv] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(625), + [anon_sym_const] = ACTIONS(627), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [163] = { - [sym_cell_path] = STATE(175), - [sym_path] = STATE(174), - [sym_comment] = STATE(163), - [aux_sym_cell_path_repeat1] = STATE(164), - [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), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1023), + [117] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7995), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1560), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(117), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(116), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(327), + [anon_sym_export] = ACTIONS(619), + [anon_sym_alias] = ACTIONS(621), + [anon_sym_let] = ACTIONS(623), + [anon_sym_let_DASHenv] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(625), + [anon_sym_const] = ACTIONS(627), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [164] = { - [sym_path] = STATE(174), - [sym_comment] = STATE(164), - [aux_sym_cell_path_repeat1] = STATE(165), - [anon_sym_export] = ACTIONS(1027), - [anon_sym_alias] = ACTIONS(1027), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_let_DASHenv] = ACTIONS(1027), - [anon_sym_mut] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [anon_sym_PLUS_EQ] = ACTIONS(1029), - [anon_sym_DASH_EQ] = ACTIONS(1029), - [anon_sym_STAR_EQ] = ACTIONS(1029), - [anon_sym_SLASH_EQ] = ACTIONS(1029), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1029), - [aux_sym_cmd_identifier_token1] = ACTIONS(1027), - [aux_sym_cmd_identifier_token2] = ACTIONS(1027), - [aux_sym_cmd_identifier_token3] = ACTIONS(1027), - [aux_sym_cmd_identifier_token4] = ACTIONS(1027), - [aux_sym_cmd_identifier_token5] = ACTIONS(1027), - [aux_sym_cmd_identifier_token6] = ACTIONS(1027), - [aux_sym_cmd_identifier_token7] = ACTIONS(1027), - [aux_sym_cmd_identifier_token8] = ACTIONS(1027), - [aux_sym_cmd_identifier_token9] = ACTIONS(1027), - [aux_sym_cmd_identifier_token10] = ACTIONS(1027), - [aux_sym_cmd_identifier_token11] = ACTIONS(1027), - [aux_sym_cmd_identifier_token12] = ACTIONS(1027), - [aux_sym_cmd_identifier_token13] = ACTIONS(1027), - [aux_sym_cmd_identifier_token14] = ACTIONS(1027), - [aux_sym_cmd_identifier_token15] = ACTIONS(1027), - [aux_sym_cmd_identifier_token16] = ACTIONS(1027), - [aux_sym_cmd_identifier_token17] = ACTIONS(1027), - [aux_sym_cmd_identifier_token18] = ACTIONS(1027), - [aux_sym_cmd_identifier_token19] = ACTIONS(1027), - [aux_sym_cmd_identifier_token20] = ACTIONS(1027), - [aux_sym_cmd_identifier_token21] = ACTIONS(1027), - [aux_sym_cmd_identifier_token22] = ACTIONS(1027), - [aux_sym_cmd_identifier_token23] = ACTIONS(1027), - [aux_sym_cmd_identifier_token24] = ACTIONS(1027), - [aux_sym_cmd_identifier_token25] = ACTIONS(1027), - [aux_sym_cmd_identifier_token26] = ACTIONS(1027), - [aux_sym_cmd_identifier_token27] = ACTIONS(1027), - [aux_sym_cmd_identifier_token28] = ACTIONS(1027), - [aux_sym_cmd_identifier_token29] = ACTIONS(1027), - [aux_sym_cmd_identifier_token30] = ACTIONS(1027), - [aux_sym_cmd_identifier_token31] = ACTIONS(1027), - [aux_sym_cmd_identifier_token32] = ACTIONS(1027), - [aux_sym_cmd_identifier_token33] = ACTIONS(1027), - [aux_sym_cmd_identifier_token34] = ACTIONS(1027), - [aux_sym_cmd_identifier_token35] = ACTIONS(1027), - [aux_sym_cmd_identifier_token36] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1029), - [aux_sym_cmd_identifier_token38] = ACTIONS(1027), - [aux_sym_cmd_identifier_token39] = ACTIONS(1029), - [aux_sym_cmd_identifier_token40] = ACTIONS(1029), - [sym__newline] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_err_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_GT_PIPE] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), - [anon_sym_def] = ACTIONS(1027), - [anon_sym_export_DASHenv] = ACTIONS(1027), - [anon_sym_extern] = ACTIONS(1027), - [anon_sym_module] = ACTIONS(1027), - [anon_sym_use] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_COMMA] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_error] = ACTIONS(1027), - [anon_sym_list] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1027), - [anon_sym_continue] = ACTIONS(1027), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(1027), - [anon_sym_make] = ACTIONS(1027), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(1027), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_else] = ACTIONS(1027), - [anon_sym_match] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1027), - [anon_sym_catch] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_source] = ACTIONS(1027), - [anon_sym_source_DASHenv] = ACTIONS(1027), - [anon_sym_register] = ACTIONS(1027), - [anon_sym_hide] = ACTIONS(1027), - [anon_sym_hide_DASHenv] = ACTIONS(1027), - [anon_sym_overlay] = ACTIONS(1027), - [anon_sym_new] = ACTIONS(1027), - [anon_sym_as] = ACTIONS(1027), - [aux_sym_expr_binary_token1] = ACTIONS(1029), - [aux_sym_expr_binary_token2] = ACTIONS(1029), - [aux_sym_expr_binary_token3] = ACTIONS(1029), - [aux_sym_expr_binary_token4] = ACTIONS(1029), - [aux_sym_expr_binary_token5] = ACTIONS(1029), - [aux_sym_expr_binary_token6] = ACTIONS(1029), - [aux_sym_expr_binary_token7] = ACTIONS(1029), - [aux_sym_expr_binary_token8] = ACTIONS(1029), - [aux_sym_expr_binary_token9] = ACTIONS(1029), - [aux_sym_expr_binary_token10] = ACTIONS(1029), - [aux_sym_expr_binary_token11] = ACTIONS(1029), - [aux_sym_expr_binary_token12] = ACTIONS(1029), - [aux_sym_expr_binary_token13] = ACTIONS(1029), - [aux_sym_expr_binary_token14] = ACTIONS(1029), - [aux_sym_expr_binary_token15] = ACTIONS(1029), - [aux_sym_expr_binary_token16] = ACTIONS(1029), - [aux_sym_expr_binary_token17] = ACTIONS(1029), - [aux_sym_expr_binary_token18] = ACTIONS(1029), - [aux_sym_expr_binary_token19] = ACTIONS(1029), - [aux_sym_expr_binary_token20] = ACTIONS(1029), - [aux_sym_expr_binary_token21] = ACTIONS(1029), - [aux_sym_expr_binary_token22] = ACTIONS(1029), - [aux_sym_expr_binary_token23] = ACTIONS(1029), - [aux_sym_expr_binary_token24] = ACTIONS(1029), - [aux_sym_expr_binary_token25] = ACTIONS(1029), - [aux_sym_expr_binary_token26] = ACTIONS(1029), - [aux_sym_expr_binary_token27] = ACTIONS(1029), - [aux_sym_expr_binary_token28] = ACTIONS(1029), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1029), - [anon_sym_DOT_DOT2] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1029), - [aux_sym__val_number_decimal_token1] = ACTIONS(1027), - [aux_sym__val_number_decimal_token2] = ACTIONS(1029), - [aux_sym__val_number_decimal_token3] = ACTIONS(1029), - [aux_sym__val_number_decimal_token4] = ACTIONS(1029), - [aux_sym__val_number_token1] = ACTIONS(1029), - [aux_sym__val_number_token2] = ACTIONS(1029), - [aux_sym__val_number_token3] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1029), - [aux_sym_record_entry_token1] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_err_GT] = ACTIONS(1027), - [anon_sym_out_GT] = ACTIONS(1027), - [anon_sym_e_GT] = ACTIONS(1027), - [anon_sym_o_GT] = ACTIONS(1027), - [anon_sym_err_PLUSout_GT] = ACTIONS(1027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), - [anon_sym_o_PLUSe_GT] = ACTIONS(1027), - [anon_sym_e_PLUSo_GT] = ACTIONS(1027), - [anon_sym_err_GT_GT] = ACTIONS(1029), - [anon_sym_out_GT_GT] = ACTIONS(1029), - [anon_sym_e_GT_GT] = ACTIONS(1029), - [anon_sym_o_GT_GT] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1029), + [118] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7616), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(118), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [165] = { - [sym_path] = STATE(174), - [sym_comment] = STATE(165), - [aux_sym_cell_path_repeat1] = STATE(165), - [anon_sym_export] = ACTIONS(1031), - [anon_sym_alias] = ACTIONS(1031), - [anon_sym_EQ] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1031), - [anon_sym_let_DASHenv] = ACTIONS(1031), - [anon_sym_mut] = ACTIONS(1031), - [anon_sym_const] = ACTIONS(1031), - [anon_sym_PLUS_EQ] = ACTIONS(1033), - [anon_sym_DASH_EQ] = ACTIONS(1033), - [anon_sym_STAR_EQ] = ACTIONS(1033), - [anon_sym_SLASH_EQ] = ACTIONS(1033), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1033), - [aux_sym_cmd_identifier_token1] = ACTIONS(1031), - [aux_sym_cmd_identifier_token2] = ACTIONS(1031), - [aux_sym_cmd_identifier_token3] = ACTIONS(1031), - [aux_sym_cmd_identifier_token4] = ACTIONS(1031), - [aux_sym_cmd_identifier_token5] = ACTIONS(1031), - [aux_sym_cmd_identifier_token6] = ACTIONS(1031), - [aux_sym_cmd_identifier_token7] = ACTIONS(1031), - [aux_sym_cmd_identifier_token8] = ACTIONS(1031), - [aux_sym_cmd_identifier_token9] = ACTIONS(1031), - [aux_sym_cmd_identifier_token10] = ACTIONS(1031), - [aux_sym_cmd_identifier_token11] = ACTIONS(1031), - [aux_sym_cmd_identifier_token12] = ACTIONS(1031), - [aux_sym_cmd_identifier_token13] = ACTIONS(1031), - [aux_sym_cmd_identifier_token14] = ACTIONS(1031), - [aux_sym_cmd_identifier_token15] = ACTIONS(1031), - [aux_sym_cmd_identifier_token16] = ACTIONS(1031), - [aux_sym_cmd_identifier_token17] = ACTIONS(1031), - [aux_sym_cmd_identifier_token18] = ACTIONS(1031), - [aux_sym_cmd_identifier_token19] = ACTIONS(1031), - [aux_sym_cmd_identifier_token20] = ACTIONS(1031), - [aux_sym_cmd_identifier_token21] = ACTIONS(1031), - [aux_sym_cmd_identifier_token22] = ACTIONS(1031), - [aux_sym_cmd_identifier_token23] = ACTIONS(1031), - [aux_sym_cmd_identifier_token24] = ACTIONS(1031), - [aux_sym_cmd_identifier_token25] = ACTIONS(1031), - [aux_sym_cmd_identifier_token26] = ACTIONS(1031), - [aux_sym_cmd_identifier_token27] = ACTIONS(1031), - [aux_sym_cmd_identifier_token28] = ACTIONS(1031), - [aux_sym_cmd_identifier_token29] = ACTIONS(1031), - [aux_sym_cmd_identifier_token30] = ACTIONS(1031), - [aux_sym_cmd_identifier_token31] = ACTIONS(1031), - [aux_sym_cmd_identifier_token32] = ACTIONS(1031), - [aux_sym_cmd_identifier_token33] = ACTIONS(1031), - [aux_sym_cmd_identifier_token34] = ACTIONS(1031), - [aux_sym_cmd_identifier_token35] = ACTIONS(1031), - [aux_sym_cmd_identifier_token36] = ACTIONS(1031), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [aux_sym_cmd_identifier_token38] = ACTIONS(1031), - [aux_sym_cmd_identifier_token39] = ACTIONS(1033), - [aux_sym_cmd_identifier_token40] = ACTIONS(1033), - [sym__newline] = ACTIONS(1031), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_err_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_GT_PIPE] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), - [anon_sym_def] = ACTIONS(1031), - [anon_sym_export_DASHenv] = ACTIONS(1031), - [anon_sym_extern] = ACTIONS(1031), - [anon_sym_module] = ACTIONS(1031), - [anon_sym_use] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1031), - [anon_sym_list] = ACTIONS(1031), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_break] = ACTIONS(1031), - [anon_sym_continue] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(1031), - [anon_sym_in] = ACTIONS(1031), - [anon_sym_loop] = ACTIONS(1031), - [anon_sym_make] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1031), - [anon_sym_else] = ACTIONS(1031), - [anon_sym_match] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1031), - [anon_sym_catch] = ACTIONS(1031), - [anon_sym_return] = ACTIONS(1031), - [anon_sym_source] = ACTIONS(1031), - [anon_sym_source_DASHenv] = ACTIONS(1031), - [anon_sym_register] = ACTIONS(1031), - [anon_sym_hide] = ACTIONS(1031), - [anon_sym_hide_DASHenv] = ACTIONS(1031), - [anon_sym_overlay] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_as] = ACTIONS(1031), - [aux_sym_expr_binary_token1] = ACTIONS(1033), - [aux_sym_expr_binary_token2] = ACTIONS(1033), - [aux_sym_expr_binary_token3] = ACTIONS(1033), - [aux_sym_expr_binary_token4] = ACTIONS(1033), - [aux_sym_expr_binary_token5] = ACTIONS(1033), - [aux_sym_expr_binary_token6] = ACTIONS(1033), - [aux_sym_expr_binary_token7] = ACTIONS(1033), - [aux_sym_expr_binary_token8] = ACTIONS(1033), - [aux_sym_expr_binary_token9] = ACTIONS(1033), - [aux_sym_expr_binary_token10] = ACTIONS(1033), - [aux_sym_expr_binary_token11] = ACTIONS(1033), - [aux_sym_expr_binary_token12] = ACTIONS(1033), - [aux_sym_expr_binary_token13] = ACTIONS(1033), - [aux_sym_expr_binary_token14] = ACTIONS(1033), - [aux_sym_expr_binary_token15] = ACTIONS(1033), - [aux_sym_expr_binary_token16] = ACTIONS(1033), - [aux_sym_expr_binary_token17] = ACTIONS(1033), - [aux_sym_expr_binary_token18] = ACTIONS(1033), - [aux_sym_expr_binary_token19] = ACTIONS(1033), - [aux_sym_expr_binary_token20] = ACTIONS(1033), - [aux_sym_expr_binary_token21] = ACTIONS(1033), - [aux_sym_expr_binary_token22] = ACTIONS(1033), - [aux_sym_expr_binary_token23] = ACTIONS(1033), - [aux_sym_expr_binary_token24] = ACTIONS(1033), - [aux_sym_expr_binary_token25] = ACTIONS(1033), - [aux_sym_expr_binary_token26] = ACTIONS(1033), - [aux_sym_expr_binary_token27] = ACTIONS(1033), - [aux_sym_expr_binary_token28] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1033), - [anon_sym_DOT_DOT2] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(1035), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1031), - [aux_sym__val_number_decimal_token2] = ACTIONS(1033), - [aux_sym__val_number_decimal_token3] = ACTIONS(1033), - [aux_sym__val_number_decimal_token4] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1033), - [aux_sym_record_entry_token1] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1031), - [anon_sym_err_GT] = ACTIONS(1031), - [anon_sym_out_GT] = ACTIONS(1031), - [anon_sym_e_GT] = ACTIONS(1031), - [anon_sym_o_GT] = ACTIONS(1031), - [anon_sym_err_PLUSout_GT] = ACTIONS(1031), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), - [anon_sym_o_PLUSe_GT] = ACTIONS(1031), - [anon_sym_e_PLUSo_GT] = ACTIONS(1031), - [anon_sym_err_GT_GT] = ACTIONS(1033), - [anon_sym_out_GT_GT] = ACTIONS(1033), - [anon_sym_e_GT_GT] = ACTIONS(1033), - [anon_sym_o_GT_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1033), + [119] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(8003), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(119), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [166] = { - [sym_comment] = STATE(166), - [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(249), - [sym_raw_string_begin] = ACTIONS(1040), + [120] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7591), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(120), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [167] = { - [sym_comment] = STATE(167), - [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(1046), - [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(249), - [sym_raw_string_begin] = ACTIONS(1044), + [121] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(8005), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(121), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [168] = { - [sym_comment] = STATE(168), - [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(1052), - [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(249), - [sym_raw_string_begin] = ACTIONS(1050), + [122] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7838), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(122), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [169] = { - [sym_comment] = STATE(169), - [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), - [anon_sym_QMARK2] = 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_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(249), - [sym_raw_string_begin] = ACTIONS(1056), + [123] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7646), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(123), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [170] = { - [sym_comment] = STATE(170), - [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), - [anon_sym_QMARK2] = 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_DOT_DOT_LPAREN] = ACTIONS(1060), - [anon_sym_DOT_DOT2] = ACTIONS(1058), - [anon_sym_DOT] = 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(249), - [sym_raw_string_begin] = ACTIONS(1060), + [124] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7675), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(124), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [171] = { - [sym_comment] = STATE(171), - [anon_sym_export] = ACTIONS(1062), - [anon_sym_alias] = ACTIONS(1062), - [anon_sym_EQ] = ACTIONS(1062), - [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(1064), - [anon_sym_DASH_EQ] = ACTIONS(1064), - [anon_sym_STAR_EQ] = ACTIONS(1064), - [anon_sym_SLASH_EQ] = ACTIONS(1064), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1064), - [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(1064), - [anon_sym_false] = ACTIONS(1064), - [anon_sym_null] = ACTIONS(1064), - [aux_sym_cmd_identifier_token38] = ACTIONS(1062), - [aux_sym_cmd_identifier_token39] = ACTIONS(1064), - [aux_sym_cmd_identifier_token40] = ACTIONS(1064), - [sym__newline] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_err_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_GT_PIPE] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), - [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(1064), - [anon_sym_COMMA] = ACTIONS(1064), - [anon_sym_DOLLAR] = ACTIONS(1064), - [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(1064), - [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_QMARK2] = ACTIONS(1064), - [aux_sym_expr_binary_token1] = ACTIONS(1064), - [aux_sym_expr_binary_token2] = ACTIONS(1064), - [aux_sym_expr_binary_token3] = ACTIONS(1064), - [aux_sym_expr_binary_token4] = ACTIONS(1064), - [aux_sym_expr_binary_token5] = ACTIONS(1064), - [aux_sym_expr_binary_token6] = ACTIONS(1064), - [aux_sym_expr_binary_token7] = ACTIONS(1064), - [aux_sym_expr_binary_token8] = ACTIONS(1064), - [aux_sym_expr_binary_token9] = ACTIONS(1064), - [aux_sym_expr_binary_token10] = ACTIONS(1064), - [aux_sym_expr_binary_token11] = ACTIONS(1064), - [aux_sym_expr_binary_token12] = ACTIONS(1064), - [aux_sym_expr_binary_token13] = ACTIONS(1064), - [aux_sym_expr_binary_token14] = ACTIONS(1064), - [aux_sym_expr_binary_token15] = ACTIONS(1064), - [aux_sym_expr_binary_token16] = ACTIONS(1064), - [aux_sym_expr_binary_token17] = ACTIONS(1064), - [aux_sym_expr_binary_token18] = ACTIONS(1064), - [aux_sym_expr_binary_token19] = ACTIONS(1064), - [aux_sym_expr_binary_token20] = ACTIONS(1064), - [aux_sym_expr_binary_token21] = ACTIONS(1064), - [aux_sym_expr_binary_token22] = ACTIONS(1064), - [aux_sym_expr_binary_token23] = ACTIONS(1064), - [aux_sym_expr_binary_token24] = ACTIONS(1064), - [aux_sym_expr_binary_token25] = ACTIONS(1064), - [aux_sym_expr_binary_token26] = ACTIONS(1064), - [aux_sym_expr_binary_token27] = ACTIONS(1064), - [aux_sym_expr_binary_token28] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), - [anon_sym_DOT_DOT2] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [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), - [aux_sym_record_entry_token1] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_err_GT] = ACTIONS(1062), - [anon_sym_out_GT] = ACTIONS(1062), - [anon_sym_e_GT] = ACTIONS(1062), - [anon_sym_o_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT] = ACTIONS(1062), - [anon_sym_err_GT_GT] = ACTIONS(1064), - [anon_sym_out_GT_GT] = ACTIONS(1064), - [anon_sym_e_GT_GT] = ACTIONS(1064), - [anon_sym_o_GT_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1064), + [125] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7932), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(125), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [172] = { - [sym_comment] = STATE(172), - [anon_sym_export] = ACTIONS(1066), - [anon_sym_alias] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1066), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_let_DASHenv] = ACTIONS(1066), - [anon_sym_mut] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1068), - [anon_sym_DASH_EQ] = ACTIONS(1068), - [anon_sym_STAR_EQ] = ACTIONS(1068), - [anon_sym_SLASH_EQ] = ACTIONS(1068), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1068), - [aux_sym_cmd_identifier_token1] = ACTIONS(1066), - [aux_sym_cmd_identifier_token2] = ACTIONS(1066), - [aux_sym_cmd_identifier_token3] = ACTIONS(1066), - [aux_sym_cmd_identifier_token4] = ACTIONS(1066), - [aux_sym_cmd_identifier_token5] = ACTIONS(1066), - [aux_sym_cmd_identifier_token6] = ACTIONS(1066), - [aux_sym_cmd_identifier_token7] = ACTIONS(1066), - [aux_sym_cmd_identifier_token8] = ACTIONS(1066), - [aux_sym_cmd_identifier_token9] = ACTIONS(1066), - [aux_sym_cmd_identifier_token10] = ACTIONS(1066), - [aux_sym_cmd_identifier_token11] = ACTIONS(1066), - [aux_sym_cmd_identifier_token12] = ACTIONS(1066), - [aux_sym_cmd_identifier_token13] = ACTIONS(1066), - [aux_sym_cmd_identifier_token14] = ACTIONS(1066), - [aux_sym_cmd_identifier_token15] = ACTIONS(1066), - [aux_sym_cmd_identifier_token16] = ACTIONS(1066), - [aux_sym_cmd_identifier_token17] = ACTIONS(1066), - [aux_sym_cmd_identifier_token18] = ACTIONS(1066), - [aux_sym_cmd_identifier_token19] = ACTIONS(1066), - [aux_sym_cmd_identifier_token20] = ACTIONS(1066), - [aux_sym_cmd_identifier_token21] = ACTIONS(1066), - [aux_sym_cmd_identifier_token22] = ACTIONS(1066), - [aux_sym_cmd_identifier_token23] = ACTIONS(1066), - [aux_sym_cmd_identifier_token24] = ACTIONS(1066), - [aux_sym_cmd_identifier_token25] = ACTIONS(1066), - [aux_sym_cmd_identifier_token26] = ACTIONS(1066), - [aux_sym_cmd_identifier_token27] = ACTIONS(1066), - [aux_sym_cmd_identifier_token28] = ACTIONS(1066), - [aux_sym_cmd_identifier_token29] = ACTIONS(1066), - [aux_sym_cmd_identifier_token30] = ACTIONS(1066), - [aux_sym_cmd_identifier_token31] = ACTIONS(1066), - [aux_sym_cmd_identifier_token32] = ACTIONS(1066), - [aux_sym_cmd_identifier_token33] = ACTIONS(1066), - [aux_sym_cmd_identifier_token34] = ACTIONS(1066), - [aux_sym_cmd_identifier_token35] = ACTIONS(1066), - [aux_sym_cmd_identifier_token36] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), - [anon_sym_null] = ACTIONS(1068), - [aux_sym_cmd_identifier_token38] = ACTIONS(1066), - [aux_sym_cmd_identifier_token39] = ACTIONS(1068), - [aux_sym_cmd_identifier_token40] = ACTIONS(1068), - [sym__newline] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_err_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_GT_PIPE] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), - [anon_sym_def] = ACTIONS(1066), - [anon_sym_export_DASHenv] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym_module] = ACTIONS(1066), - [anon_sym_use] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_error] = ACTIONS(1066), - [anon_sym_list] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_in] = ACTIONS(1066), - [anon_sym_loop] = ACTIONS(1066), - [anon_sym_make] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_else] = ACTIONS(1066), - [anon_sym_match] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_try] = ACTIONS(1066), - [anon_sym_catch] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_source] = ACTIONS(1066), - [anon_sym_source_DASHenv] = ACTIONS(1066), - [anon_sym_register] = ACTIONS(1066), - [anon_sym_hide] = ACTIONS(1066), - [anon_sym_hide_DASHenv] = ACTIONS(1066), - [anon_sym_overlay] = ACTIONS(1066), - [anon_sym_new] = ACTIONS(1066), - [anon_sym_as] = ACTIONS(1066), - [aux_sym_expr_binary_token1] = ACTIONS(1068), - [aux_sym_expr_binary_token2] = ACTIONS(1068), - [aux_sym_expr_binary_token3] = ACTIONS(1068), - [aux_sym_expr_binary_token4] = ACTIONS(1068), - [aux_sym_expr_binary_token5] = ACTIONS(1068), - [aux_sym_expr_binary_token6] = ACTIONS(1068), - [aux_sym_expr_binary_token7] = ACTIONS(1068), - [aux_sym_expr_binary_token8] = ACTIONS(1068), - [aux_sym_expr_binary_token9] = ACTIONS(1068), - [aux_sym_expr_binary_token10] = ACTIONS(1068), - [aux_sym_expr_binary_token11] = ACTIONS(1068), - [aux_sym_expr_binary_token12] = ACTIONS(1068), - [aux_sym_expr_binary_token13] = ACTIONS(1068), - [aux_sym_expr_binary_token14] = ACTIONS(1068), - [aux_sym_expr_binary_token15] = ACTIONS(1068), - [aux_sym_expr_binary_token16] = ACTIONS(1068), - [aux_sym_expr_binary_token17] = ACTIONS(1068), - [aux_sym_expr_binary_token18] = ACTIONS(1068), - [aux_sym_expr_binary_token19] = ACTIONS(1068), - [aux_sym_expr_binary_token20] = ACTIONS(1068), - [aux_sym_expr_binary_token21] = ACTIONS(1068), - [aux_sym_expr_binary_token22] = ACTIONS(1068), - [aux_sym_expr_binary_token23] = ACTIONS(1068), - [aux_sym_expr_binary_token24] = ACTIONS(1068), - [aux_sym_expr_binary_token25] = ACTIONS(1068), - [aux_sym_expr_binary_token26] = ACTIONS(1068), - [aux_sym_expr_binary_token27] = ACTIONS(1068), - [aux_sym_expr_binary_token28] = ACTIONS(1068), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1068), - [anon_sym_DOT_DOT2] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1068), - [aux_sym__val_number_decimal_token1] = ACTIONS(1066), - [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(1068), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_err_GT] = ACTIONS(1066), - [anon_sym_out_GT] = ACTIONS(1066), - [anon_sym_e_GT] = ACTIONS(1066), - [anon_sym_o_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT] = ACTIONS(1066), - [anon_sym_err_GT_GT] = ACTIONS(1068), - [anon_sym_out_GT_GT] = ACTIONS(1068), - [anon_sym_e_GT_GT] = ACTIONS(1068), - [anon_sym_o_GT_GT] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1068), + [126] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7957), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(126), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [173] = { - [sym_comment] = STATE(173), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_EQ] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = 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), - [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), - [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(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_COMMA] = 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), - [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(1072), - [anon_sym_DOT_DOT2] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = 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), - [aux_sym_record_entry_token1] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [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(249), - [sym_raw_string_begin] = ACTIONS(1072), + [127] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7959), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(127), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [174] = { - [sym_comment] = STATE(174), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_alias] = ACTIONS(1074), - [anon_sym_EQ] = ACTIONS(1074), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_let_DASHenv] = ACTIONS(1074), - [anon_sym_mut] = ACTIONS(1074), - [anon_sym_const] = ACTIONS(1074), - [anon_sym_PLUS_EQ] = ACTIONS(1076), - [anon_sym_DASH_EQ] = ACTIONS(1076), - [anon_sym_STAR_EQ] = ACTIONS(1076), - [anon_sym_SLASH_EQ] = ACTIONS(1076), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1076), - [aux_sym_cmd_identifier_token1] = ACTIONS(1074), - [aux_sym_cmd_identifier_token2] = ACTIONS(1074), - [aux_sym_cmd_identifier_token3] = ACTIONS(1074), - [aux_sym_cmd_identifier_token4] = ACTIONS(1074), - [aux_sym_cmd_identifier_token5] = ACTIONS(1074), - [aux_sym_cmd_identifier_token6] = ACTIONS(1074), - [aux_sym_cmd_identifier_token7] = ACTIONS(1074), - [aux_sym_cmd_identifier_token8] = ACTIONS(1074), - [aux_sym_cmd_identifier_token9] = ACTIONS(1074), - [aux_sym_cmd_identifier_token10] = ACTIONS(1074), - [aux_sym_cmd_identifier_token11] = ACTIONS(1074), - [aux_sym_cmd_identifier_token12] = ACTIONS(1074), - [aux_sym_cmd_identifier_token13] = ACTIONS(1074), - [aux_sym_cmd_identifier_token14] = ACTIONS(1074), - [aux_sym_cmd_identifier_token15] = ACTIONS(1074), - [aux_sym_cmd_identifier_token16] = ACTIONS(1074), - [aux_sym_cmd_identifier_token17] = ACTIONS(1074), - [aux_sym_cmd_identifier_token18] = ACTIONS(1074), - [aux_sym_cmd_identifier_token19] = ACTIONS(1074), - [aux_sym_cmd_identifier_token20] = ACTIONS(1074), - [aux_sym_cmd_identifier_token21] = ACTIONS(1074), - [aux_sym_cmd_identifier_token22] = ACTIONS(1074), - [aux_sym_cmd_identifier_token23] = ACTIONS(1074), - [aux_sym_cmd_identifier_token24] = ACTIONS(1074), - [aux_sym_cmd_identifier_token25] = ACTIONS(1074), - [aux_sym_cmd_identifier_token26] = ACTIONS(1074), - [aux_sym_cmd_identifier_token27] = ACTIONS(1074), - [aux_sym_cmd_identifier_token28] = ACTIONS(1074), - [aux_sym_cmd_identifier_token29] = ACTIONS(1074), - [aux_sym_cmd_identifier_token30] = ACTIONS(1074), - [aux_sym_cmd_identifier_token31] = ACTIONS(1074), - [aux_sym_cmd_identifier_token32] = ACTIONS(1074), - [aux_sym_cmd_identifier_token33] = ACTIONS(1074), - [aux_sym_cmd_identifier_token34] = ACTIONS(1074), - [aux_sym_cmd_identifier_token35] = ACTIONS(1074), - [aux_sym_cmd_identifier_token36] = ACTIONS(1074), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_null] = ACTIONS(1076), - [aux_sym_cmd_identifier_token38] = ACTIONS(1074), - [aux_sym_cmd_identifier_token39] = ACTIONS(1076), - [aux_sym_cmd_identifier_token40] = ACTIONS(1076), - [sym__newline] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_err_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_GT_PIPE] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), - [anon_sym_def] = ACTIONS(1074), - [anon_sym_export_DASHenv] = ACTIONS(1074), - [anon_sym_extern] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_use] = ACTIONS(1074), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_COMMA] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_error] = ACTIONS(1074), - [anon_sym_list] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_in] = ACTIONS(1074), - [anon_sym_loop] = ACTIONS(1074), - [anon_sym_make] = ACTIONS(1074), - [anon_sym_while] = ACTIONS(1074), - [anon_sym_do] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1074), - [anon_sym_else] = ACTIONS(1074), - [anon_sym_match] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_try] = ACTIONS(1074), - [anon_sym_catch] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_source] = ACTIONS(1074), - [anon_sym_source_DASHenv] = ACTIONS(1074), - [anon_sym_register] = ACTIONS(1074), - [anon_sym_hide] = ACTIONS(1074), - [anon_sym_hide_DASHenv] = ACTIONS(1074), - [anon_sym_overlay] = ACTIONS(1074), - [anon_sym_new] = ACTIONS(1074), - [anon_sym_as] = ACTIONS(1074), - [aux_sym_expr_binary_token1] = ACTIONS(1076), - [aux_sym_expr_binary_token2] = ACTIONS(1076), - [aux_sym_expr_binary_token3] = ACTIONS(1076), - [aux_sym_expr_binary_token4] = ACTIONS(1076), - [aux_sym_expr_binary_token5] = ACTIONS(1076), - [aux_sym_expr_binary_token6] = ACTIONS(1076), - [aux_sym_expr_binary_token7] = ACTIONS(1076), - [aux_sym_expr_binary_token8] = ACTIONS(1076), - [aux_sym_expr_binary_token9] = ACTIONS(1076), - [aux_sym_expr_binary_token10] = ACTIONS(1076), - [aux_sym_expr_binary_token11] = ACTIONS(1076), - [aux_sym_expr_binary_token12] = ACTIONS(1076), - [aux_sym_expr_binary_token13] = ACTIONS(1076), - [aux_sym_expr_binary_token14] = ACTIONS(1076), - [aux_sym_expr_binary_token15] = ACTIONS(1076), - [aux_sym_expr_binary_token16] = ACTIONS(1076), - [aux_sym_expr_binary_token17] = ACTIONS(1076), - [aux_sym_expr_binary_token18] = ACTIONS(1076), - [aux_sym_expr_binary_token19] = ACTIONS(1076), - [aux_sym_expr_binary_token20] = ACTIONS(1076), - [aux_sym_expr_binary_token21] = ACTIONS(1076), - [aux_sym_expr_binary_token22] = ACTIONS(1076), - [aux_sym_expr_binary_token23] = ACTIONS(1076), - [aux_sym_expr_binary_token24] = ACTIONS(1076), - [aux_sym_expr_binary_token25] = ACTIONS(1076), - [aux_sym_expr_binary_token26] = ACTIONS(1076), - [aux_sym_expr_binary_token27] = ACTIONS(1076), - [aux_sym_expr_binary_token28] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), - [anon_sym_DOT_DOT2] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1074), - [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), - [aux_sym_record_entry_token1] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1074), - [anon_sym_err_GT] = ACTIONS(1074), - [anon_sym_out_GT] = ACTIONS(1074), - [anon_sym_e_GT] = ACTIONS(1074), - [anon_sym_o_GT] = ACTIONS(1074), - [anon_sym_err_PLUSout_GT] = ACTIONS(1074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), - [anon_sym_o_PLUSe_GT] = ACTIONS(1074), - [anon_sym_e_PLUSo_GT] = ACTIONS(1074), - [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), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1076), + [128] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7644), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(128), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [175] = { - [sym_comment] = STATE(175), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_alias] = ACTIONS(1078), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_let] = ACTIONS(1078), - [anon_sym_let_DASHenv] = ACTIONS(1078), - [anon_sym_mut] = ACTIONS(1078), - [anon_sym_const] = ACTIONS(1078), - [anon_sym_PLUS_EQ] = ACTIONS(1080), - [anon_sym_DASH_EQ] = ACTIONS(1080), - [anon_sym_STAR_EQ] = ACTIONS(1080), - [anon_sym_SLASH_EQ] = ACTIONS(1080), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1080), - [aux_sym_cmd_identifier_token1] = ACTIONS(1078), - [aux_sym_cmd_identifier_token2] = ACTIONS(1078), - [aux_sym_cmd_identifier_token3] = ACTIONS(1078), - [aux_sym_cmd_identifier_token4] = ACTIONS(1078), - [aux_sym_cmd_identifier_token5] = ACTIONS(1078), - [aux_sym_cmd_identifier_token6] = ACTIONS(1078), - [aux_sym_cmd_identifier_token7] = ACTIONS(1078), - [aux_sym_cmd_identifier_token8] = ACTIONS(1078), - [aux_sym_cmd_identifier_token9] = ACTIONS(1078), - [aux_sym_cmd_identifier_token10] = ACTIONS(1078), - [aux_sym_cmd_identifier_token11] = ACTIONS(1078), - [aux_sym_cmd_identifier_token12] = ACTIONS(1078), - [aux_sym_cmd_identifier_token13] = ACTIONS(1078), - [aux_sym_cmd_identifier_token14] = ACTIONS(1078), - [aux_sym_cmd_identifier_token15] = ACTIONS(1078), - [aux_sym_cmd_identifier_token16] = ACTIONS(1078), - [aux_sym_cmd_identifier_token17] = ACTIONS(1078), - [aux_sym_cmd_identifier_token18] = ACTIONS(1078), - [aux_sym_cmd_identifier_token19] = ACTIONS(1078), - [aux_sym_cmd_identifier_token20] = ACTIONS(1078), - [aux_sym_cmd_identifier_token21] = ACTIONS(1078), - [aux_sym_cmd_identifier_token22] = ACTIONS(1078), - [aux_sym_cmd_identifier_token23] = ACTIONS(1078), - [aux_sym_cmd_identifier_token24] = ACTIONS(1078), - [aux_sym_cmd_identifier_token25] = ACTIONS(1078), - [aux_sym_cmd_identifier_token26] = ACTIONS(1078), - [aux_sym_cmd_identifier_token27] = ACTIONS(1078), - [aux_sym_cmd_identifier_token28] = ACTIONS(1078), - [aux_sym_cmd_identifier_token29] = ACTIONS(1078), - [aux_sym_cmd_identifier_token30] = ACTIONS(1078), - [aux_sym_cmd_identifier_token31] = ACTIONS(1078), - [aux_sym_cmd_identifier_token32] = ACTIONS(1078), - [aux_sym_cmd_identifier_token33] = ACTIONS(1078), - [aux_sym_cmd_identifier_token34] = ACTIONS(1078), - [aux_sym_cmd_identifier_token35] = ACTIONS(1078), - [aux_sym_cmd_identifier_token36] = ACTIONS(1078), - [anon_sym_true] = ACTIONS(1080), - [anon_sym_false] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(1080), - [aux_sym_cmd_identifier_token38] = ACTIONS(1078), - [aux_sym_cmd_identifier_token39] = ACTIONS(1080), - [aux_sym_cmd_identifier_token40] = ACTIONS(1080), - [sym__newline] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_err_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_GT_PIPE] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), - [anon_sym_def] = ACTIONS(1078), - [anon_sym_export_DASHenv] = ACTIONS(1078), - [anon_sym_extern] = ACTIONS(1078), - [anon_sym_module] = ACTIONS(1078), - [anon_sym_use] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1080), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_error] = ACTIONS(1078), - [anon_sym_list] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_in] = ACTIONS(1078), - [anon_sym_loop] = ACTIONS(1078), - [anon_sym_make] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_else] = ACTIONS(1078), - [anon_sym_match] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_try] = ACTIONS(1078), - [anon_sym_catch] = ACTIONS(1078), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_source] = ACTIONS(1078), - [anon_sym_source_DASHenv] = ACTIONS(1078), - [anon_sym_register] = ACTIONS(1078), - [anon_sym_hide] = ACTIONS(1078), - [anon_sym_hide_DASHenv] = ACTIONS(1078), - [anon_sym_overlay] = ACTIONS(1078), - [anon_sym_new] = ACTIONS(1078), - [anon_sym_as] = ACTIONS(1078), - [aux_sym_expr_binary_token1] = ACTIONS(1080), - [aux_sym_expr_binary_token2] = ACTIONS(1080), - [aux_sym_expr_binary_token3] = ACTIONS(1080), - [aux_sym_expr_binary_token4] = ACTIONS(1080), - [aux_sym_expr_binary_token5] = ACTIONS(1080), - [aux_sym_expr_binary_token6] = ACTIONS(1080), - [aux_sym_expr_binary_token7] = ACTIONS(1080), - [aux_sym_expr_binary_token8] = ACTIONS(1080), - [aux_sym_expr_binary_token9] = ACTIONS(1080), - [aux_sym_expr_binary_token10] = ACTIONS(1080), - [aux_sym_expr_binary_token11] = ACTIONS(1080), - [aux_sym_expr_binary_token12] = ACTIONS(1080), - [aux_sym_expr_binary_token13] = ACTIONS(1080), - [aux_sym_expr_binary_token14] = ACTIONS(1080), - [aux_sym_expr_binary_token15] = ACTIONS(1080), - [aux_sym_expr_binary_token16] = ACTIONS(1080), - [aux_sym_expr_binary_token17] = ACTIONS(1080), - [aux_sym_expr_binary_token18] = ACTIONS(1080), - [aux_sym_expr_binary_token19] = ACTIONS(1080), - [aux_sym_expr_binary_token20] = ACTIONS(1080), - [aux_sym_expr_binary_token21] = ACTIONS(1080), - [aux_sym_expr_binary_token22] = ACTIONS(1080), - [aux_sym_expr_binary_token23] = ACTIONS(1080), - [aux_sym_expr_binary_token24] = ACTIONS(1080), - [aux_sym_expr_binary_token25] = ACTIONS(1080), - [aux_sym_expr_binary_token26] = ACTIONS(1080), - [aux_sym_expr_binary_token27] = ACTIONS(1080), - [aux_sym_expr_binary_token28] = ACTIONS(1080), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1080), - [anon_sym_DOT_DOT2] = ACTIONS(1078), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1080), - [aux_sym__val_number_decimal_token1] = ACTIONS(1078), - [aux_sym__val_number_decimal_token2] = ACTIONS(1080), - [aux_sym__val_number_decimal_token3] = ACTIONS(1080), - [aux_sym__val_number_decimal_token4] = ACTIONS(1080), - [aux_sym__val_number_token1] = ACTIONS(1080), - [aux_sym__val_number_token2] = ACTIONS(1080), - [aux_sym__val_number_token3] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym__str_single_quotes] = ACTIONS(1080), - [sym__str_back_ticks] = ACTIONS(1080), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1080), - [aux_sym_record_entry_token1] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_err_GT] = ACTIONS(1078), - [anon_sym_out_GT] = ACTIONS(1078), - [anon_sym_e_GT] = ACTIONS(1078), - [anon_sym_o_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT] = ACTIONS(1078), - [anon_sym_err_GT_GT] = ACTIONS(1080), - [anon_sym_out_GT_GT] = ACTIONS(1080), - [anon_sym_e_GT_GT] = ACTIONS(1080), - [anon_sym_o_GT_GT] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1080), + [129] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7899), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(129), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [176] = { - [sym_comment] = STATE(176), - [anon_sym_export] = ACTIONS(1082), - [anon_sym_alias] = ACTIONS(1082), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_let] = ACTIONS(1082), - [anon_sym_let_DASHenv] = ACTIONS(1082), - [anon_sym_mut] = ACTIONS(1082), - [anon_sym_const] = ACTIONS(1082), - [anon_sym_PLUS_EQ] = ACTIONS(1086), - [anon_sym_DASH_EQ] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1086), - [anon_sym_SLASH_EQ] = ACTIONS(1086), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1086), - [aux_sym_cmd_identifier_token1] = ACTIONS(1082), - [aux_sym_cmd_identifier_token2] = ACTIONS(1082), - [aux_sym_cmd_identifier_token3] = ACTIONS(1082), - [aux_sym_cmd_identifier_token4] = ACTIONS(1082), - [aux_sym_cmd_identifier_token5] = ACTIONS(1082), - [aux_sym_cmd_identifier_token6] = ACTIONS(1082), - [aux_sym_cmd_identifier_token7] = ACTIONS(1082), - [aux_sym_cmd_identifier_token8] = ACTIONS(1082), - [aux_sym_cmd_identifier_token9] = ACTIONS(1082), - [aux_sym_cmd_identifier_token10] = ACTIONS(1082), - [aux_sym_cmd_identifier_token11] = ACTIONS(1082), - [aux_sym_cmd_identifier_token12] = ACTIONS(1082), - [aux_sym_cmd_identifier_token13] = ACTIONS(1082), - [aux_sym_cmd_identifier_token14] = ACTIONS(1082), - [aux_sym_cmd_identifier_token15] = ACTIONS(1082), - [aux_sym_cmd_identifier_token16] = ACTIONS(1082), - [aux_sym_cmd_identifier_token17] = ACTIONS(1082), - [aux_sym_cmd_identifier_token18] = ACTIONS(1082), - [aux_sym_cmd_identifier_token19] = ACTIONS(1082), - [aux_sym_cmd_identifier_token20] = ACTIONS(1082), - [aux_sym_cmd_identifier_token21] = ACTIONS(1082), - [aux_sym_cmd_identifier_token22] = ACTIONS(1082), - [aux_sym_cmd_identifier_token23] = ACTIONS(1082), - [aux_sym_cmd_identifier_token24] = ACTIONS(1082), - [aux_sym_cmd_identifier_token25] = ACTIONS(1082), - [aux_sym_cmd_identifier_token26] = ACTIONS(1082), - [aux_sym_cmd_identifier_token27] = ACTIONS(1082), - [aux_sym_cmd_identifier_token28] = ACTIONS(1082), - [aux_sym_cmd_identifier_token29] = ACTIONS(1082), - [aux_sym_cmd_identifier_token30] = ACTIONS(1082), - [aux_sym_cmd_identifier_token31] = ACTIONS(1082), - [aux_sym_cmd_identifier_token32] = ACTIONS(1082), - [aux_sym_cmd_identifier_token33] = ACTIONS(1082), - [aux_sym_cmd_identifier_token34] = ACTIONS(1082), - [aux_sym_cmd_identifier_token35] = ACTIONS(1082), - [aux_sym_cmd_identifier_token36] = ACTIONS(1082), - [anon_sym_true] = ACTIONS(1088), - [anon_sym_false] = ACTIONS(1088), - [anon_sym_null] = ACTIONS(1088), - [aux_sym_cmd_identifier_token38] = ACTIONS(1082), - [aux_sym_cmd_identifier_token39] = ACTIONS(1088), - [aux_sym_cmd_identifier_token40] = ACTIONS(1088), - [sym__newline] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_err_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_GT_PIPE] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), - [anon_sym_def] = ACTIONS(1082), - [anon_sym_export_DASHenv] = ACTIONS(1082), - [anon_sym_extern] = ACTIONS(1082), - [anon_sym_module] = ACTIONS(1082), - [anon_sym_use] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1094), - [anon_sym_DOLLAR] = ACTIONS(1088), - [anon_sym_error] = ACTIONS(1082), - [anon_sym_list] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_break] = ACTIONS(1082), - [anon_sym_continue] = ACTIONS(1082), - [anon_sym_for] = ACTIONS(1082), - [anon_sym_in] = ACTIONS(1082), - [anon_sym_loop] = ACTIONS(1082), - [anon_sym_make] = ACTIONS(1082), - [anon_sym_while] = ACTIONS(1082), - [anon_sym_do] = ACTIONS(1082), - [anon_sym_if] = ACTIONS(1082), - [anon_sym_else] = ACTIONS(1082), - [anon_sym_match] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1096), - [anon_sym_try] = ACTIONS(1082), - [anon_sym_catch] = ACTIONS(1082), - [anon_sym_return] = ACTIONS(1082), - [anon_sym_source] = ACTIONS(1082), - [anon_sym_source_DASHenv] = ACTIONS(1082), - [anon_sym_register] = ACTIONS(1082), - [anon_sym_hide] = ACTIONS(1082), - [anon_sym_hide_DASHenv] = ACTIONS(1082), - [anon_sym_overlay] = ACTIONS(1082), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_as] = ACTIONS(1082), - [aux_sym_expr_binary_token1] = ACTIONS(1092), - [aux_sym_expr_binary_token2] = ACTIONS(1092), - [aux_sym_expr_binary_token3] = ACTIONS(1092), - [aux_sym_expr_binary_token4] = ACTIONS(1092), - [aux_sym_expr_binary_token5] = ACTIONS(1092), - [aux_sym_expr_binary_token6] = ACTIONS(1092), - [aux_sym_expr_binary_token7] = ACTIONS(1092), - [aux_sym_expr_binary_token8] = ACTIONS(1092), - [aux_sym_expr_binary_token9] = ACTIONS(1092), - [aux_sym_expr_binary_token10] = ACTIONS(1092), - [aux_sym_expr_binary_token11] = ACTIONS(1092), - [aux_sym_expr_binary_token12] = ACTIONS(1092), - [aux_sym_expr_binary_token13] = ACTIONS(1092), - [aux_sym_expr_binary_token14] = ACTIONS(1092), - [aux_sym_expr_binary_token15] = ACTIONS(1092), - [aux_sym_expr_binary_token16] = ACTIONS(1092), - [aux_sym_expr_binary_token17] = ACTIONS(1092), - [aux_sym_expr_binary_token18] = ACTIONS(1092), - [aux_sym_expr_binary_token19] = ACTIONS(1092), - [aux_sym_expr_binary_token20] = ACTIONS(1092), - [aux_sym_expr_binary_token21] = ACTIONS(1092), - [aux_sym_expr_binary_token22] = ACTIONS(1092), - [aux_sym_expr_binary_token23] = ACTIONS(1092), - [aux_sym_expr_binary_token24] = ACTIONS(1092), - [aux_sym_expr_binary_token25] = ACTIONS(1092), - [aux_sym_expr_binary_token26] = ACTIONS(1092), - [aux_sym_expr_binary_token27] = ACTIONS(1092), - [aux_sym_expr_binary_token28] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1088), - [anon_sym_DOT_DOT2] = ACTIONS(1099), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1101), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1101), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1088), - [aux_sym__val_number_decimal_token1] = ACTIONS(1082), - [aux_sym__val_number_decimal_token2] = ACTIONS(1088), - [aux_sym__val_number_decimal_token3] = ACTIONS(1088), - [aux_sym__val_number_decimal_token4] = ACTIONS(1088), - [aux_sym__val_number_token1] = ACTIONS(1088), - [aux_sym__val_number_token2] = ACTIONS(1088), - [aux_sym__val_number_token3] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [sym__str_single_quotes] = ACTIONS(1088), - [sym__str_back_ticks] = ACTIONS(1088), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1088), - [aux_sym_record_entry_token1] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_err_GT] = ACTIONS(1090), - [anon_sym_out_GT] = ACTIONS(1090), - [anon_sym_e_GT] = ACTIONS(1090), - [anon_sym_o_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT] = ACTIONS(1090), - [anon_sym_err_GT_GT] = ACTIONS(1092), - [anon_sym_out_GT_GT] = ACTIONS(1092), - [anon_sym_e_GT_GT] = ACTIONS(1092), - [anon_sym_o_GT_GT] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1088), + [130] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7969), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(130), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [177] = { - [sym_pipeline] = STATE(6439), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [131] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7822), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(131), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [132] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7897), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(132), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [133] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7652), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(133), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [134] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7829), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(134), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [135] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7860), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(135), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [136] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7550), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(136), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [137] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7564), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(137), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [138] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7659), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(138), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [139] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7676), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(139), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [140] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7771), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(140), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(111), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [141] = { + [sym__block_body_statement] = STATE(6000), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym__block_body] = STATE(7746), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1560), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(141), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(116), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(327), + [anon_sym_export] = ACTIONS(619), + [anon_sym_alias] = ACTIONS(621), + [anon_sym_let] = ACTIONS(623), + [anon_sym_let_DASHenv] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(625), + [anon_sym_const] = ACTIONS(627), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [142] = { + [sym__block_body_statement] = STATE(6053), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(142), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [143] = { + [sym__block_body_statement_parenthesized] = STATE(5861), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1929), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(145), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [178] = { - [sym_pipeline] = STATE(7158), - [sym_cmd_identifier] = STATE(4714), - [sym__ctrl_expression] = STATE(5155), - [sym_ctrl_do] = STATE(5175), - [sym_ctrl_if] = STATE(5175), - [sym_ctrl_match] = STATE(5175), - [sym_ctrl_try] = STATE(5175), - [sym_ctrl_return] = STATE(5175), - [sym_pipe_element] = STATE(4782), - [sym_where_command] = STATE(5180), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(2055), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1665), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5180), - [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(194), - [aux_sym_pipe_element_repeat2] = STATE(354), + [144] = { + [sym__block_body_statement_parenthesized] = STATE(5882), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1565), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(144), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym__parenthesized_body_repeat2] = STATE(145), + [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(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [145] = { + [sym__block_body_statement_parenthesized] = STATE(6652), + [sym__declaration_parenthesized] = STATE(7024), + [sym_decl_alias_parenthesized] = STATE(7299), + [sym_stmt_let_parenthesized] = STATE(7306), + [sym_stmt_mut_parenthesized] = STATE(7306), + [sym_stmt_const_parenthesized] = STATE(7306), + [sym_assignment_parenthesized] = STATE(7306), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), + [sym__statement_parenthesized] = STATE(7024), + [sym_pipeline_parenthesized] = STATE(7306), + [sym_cmd_identifier] = STATE(4636), + [sym_decl_def] = STATE(7299), + [sym_decl_export] = STATE(7299), + [sym_decl_extern] = STATE(7299), + [sym_decl_module] = STATE(7299), + [sym_decl_use] = STATE(7299), + [sym__ctrl_statement] = STATE(7306), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_stmt_source] = STATE(7306), + [sym_stmt_register] = STATE(7306), + [sym__stmt_hide] = STATE(7306), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(7306), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1612), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(145), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [aux_sym__parenthesized_body_repeat2] = STATE(145), + [anon_sym_export] = ACTIONS(631), + [anon_sym_alias] = ACTIONS(634), + [anon_sym_let] = ACTIONS(637), + [anon_sym_let_DASHenv] = ACTIONS(637), + [anon_sym_mut] = ACTIONS(640), + [anon_sym_const] = ACTIONS(643), + [aux_sym_cmd_identifier_token1] = ACTIONS(646), + [aux_sym_cmd_identifier_token2] = ACTIONS(649), + [aux_sym_cmd_identifier_token3] = ACTIONS(649), + [aux_sym_cmd_identifier_token4] = ACTIONS(649), + [aux_sym_cmd_identifier_token5] = ACTIONS(649), + [aux_sym_cmd_identifier_token6] = ACTIONS(649), + [aux_sym_cmd_identifier_token7] = ACTIONS(649), + [aux_sym_cmd_identifier_token8] = ACTIONS(646), + [aux_sym_cmd_identifier_token9] = ACTIONS(646), + [aux_sym_cmd_identifier_token10] = ACTIONS(649), + [aux_sym_cmd_identifier_token11] = ACTIONS(649), + [aux_sym_cmd_identifier_token12] = ACTIONS(646), + [aux_sym_cmd_identifier_token13] = ACTIONS(646), + [aux_sym_cmd_identifier_token14] = ACTIONS(646), + [aux_sym_cmd_identifier_token15] = ACTIONS(646), + [aux_sym_cmd_identifier_token16] = ACTIONS(649), + [aux_sym_cmd_identifier_token17] = ACTIONS(649), + [aux_sym_cmd_identifier_token18] = ACTIONS(649), + [aux_sym_cmd_identifier_token19] = ACTIONS(649), + [aux_sym_cmd_identifier_token20] = ACTIONS(649), + [aux_sym_cmd_identifier_token21] = ACTIONS(649), + [aux_sym_cmd_identifier_token22] = ACTIONS(649), + [aux_sym_cmd_identifier_token23] = ACTIONS(649), + [aux_sym_cmd_identifier_token24] = ACTIONS(649), + [aux_sym_cmd_identifier_token25] = ACTIONS(649), + [aux_sym_cmd_identifier_token26] = ACTIONS(649), + [aux_sym_cmd_identifier_token27] = ACTIONS(649), + [aux_sym_cmd_identifier_token28] = ACTIONS(649), + [aux_sym_cmd_identifier_token29] = ACTIONS(649), + [aux_sym_cmd_identifier_token30] = ACTIONS(649), + [aux_sym_cmd_identifier_token31] = ACTIONS(649), + [aux_sym_cmd_identifier_token32] = ACTIONS(649), + [aux_sym_cmd_identifier_token33] = ACTIONS(649), + [aux_sym_cmd_identifier_token34] = ACTIONS(646), + [aux_sym_cmd_identifier_token35] = ACTIONS(649), + [aux_sym_cmd_identifier_token36] = ACTIONS(649), + [aux_sym_cmd_identifier_token37] = ACTIONS(649), + [aux_sym_cmd_identifier_token38] = ACTIONS(646), + [aux_sym_cmd_identifier_token39] = ACTIONS(649), + [aux_sym_cmd_identifier_token40] = ACTIONS(649), + [anon_sym_def] = ACTIONS(652), + [anon_sym_export_DASHenv] = ACTIONS(655), + [anon_sym_extern] = ACTIONS(658), + [anon_sym_module] = ACTIONS(661), + [anon_sym_use] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(667), + [anon_sym_LPAREN] = ACTIONS(670), + [anon_sym_DOLLAR] = ACTIONS(673), + [anon_sym_error] = ACTIONS(676), + [anon_sym_DASH2] = ACTIONS(679), + [anon_sym_break] = ACTIONS(682), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_for] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(691), + [anon_sym_while] = ACTIONS(694), + [anon_sym_do] = ACTIONS(697), + [anon_sym_if] = ACTIONS(700), + [anon_sym_match] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_DOT_DOT] = ACTIONS(709), + [anon_sym_try] = ACTIONS(712), + [anon_sym_return] = ACTIONS(715), + [anon_sym_source] = ACTIONS(718), + [anon_sym_source_DASHenv] = ACTIONS(718), + [anon_sym_register] = ACTIONS(721), + [anon_sym_hide] = ACTIONS(724), + [anon_sym_hide_DASHenv] = ACTIONS(727), + [anon_sym_overlay] = ACTIONS(730), + [anon_sym_where] = ACTIONS(733), + [aux_sym_expr_unary_token1] = ACTIONS(736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(739), + [anon_sym_DOT_DOT_LT] = ACTIONS(739), + [anon_sym_null] = ACTIONS(742), + [anon_sym_true] = ACTIONS(745), + [anon_sym_false] = ACTIONS(745), + [aux_sym__val_number_decimal_token1] = ACTIONS(748), + [aux_sym__val_number_decimal_token2] = ACTIONS(751), + [aux_sym__val_number_decimal_token3] = ACTIONS(754), + [aux_sym__val_number_decimal_token4] = ACTIONS(757), + [aux_sym__val_number_token1] = ACTIONS(760), + [aux_sym__val_number_token2] = ACTIONS(760), + [aux_sym__val_number_token3] = ACTIONS(760), + [aux_sym__val_number_token4] = ACTIONS(763), + [aux_sym__val_number_token5] = ACTIONS(763), + [aux_sym__val_number_token6] = ACTIONS(763), + [anon_sym_0b] = ACTIONS(766), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(775), + [sym__str_single_quotes] = ACTIONS(778), + [sym__str_back_ticks] = ACTIONS(778), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(784), + [aux_sym_env_var_token1] = ACTIONS(787), + [anon_sym_CARET] = ACTIONS(790), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(793), + }, + [146] = { + [sym__block_body_statement] = STATE(6466), + [sym__declaration] = STATE(7048), + [sym_decl_alias] = STATE(7040), + [sym_stmt_let] = STATE(7055), + [sym_stmt_mut] = STATE(7055), + [sym_stmt_const] = STATE(7055), + [sym_assignment] = STATE(7055), + [sym__mutable_assignment_pattern] = STATE(7059), + [sym__statement] = STATE(7048), + [sym_pipeline] = STATE(7055), + [sym_cmd_identifier] = STATE(4748), + [sym_decl_def] = STATE(7040), + [sym_decl_export] = STATE(7040), + [sym_decl_extern] = STATE(7040), + [sym_decl_module] = STATE(7040), + [sym_decl_use] = STATE(7040), + [sym__ctrl_statement] = STATE(7055), + [sym__ctrl_expression] = STATE(5131), + [sym_ctrl_for] = STATE(7087), + [sym_ctrl_loop] = STATE(7087), + [sym_ctrl_error] = STATE(7087), + [sym_ctrl_while] = STATE(7087), + [sym_ctrl_do] = STATE(5133), + [sym_ctrl_if] = STATE(5133), + [sym_ctrl_match] = STATE(5133), + [sym_ctrl_try] = STATE(5133), + [sym_ctrl_return] = STATE(5133), + [sym_pipe_element] = STATE(4686), + [sym_stmt_source] = STATE(7055), + [sym_stmt_register] = STATE(7055), + [sym__stmt_hide] = STATE(7055), + [sym_hide_mod] = STATE(7049), + [sym_hide_env] = STATE(7049), + [sym__stmt_overlay] = STATE(7055), + [sym_overlay_list] = STATE(7088), + [sym_overlay_hide] = STATE(7088), + [sym_overlay_new] = STATE(7088), + [sym_overlay_use] = STATE(7088), + [sym_where_command] = STATE(5165), + [sym__expression] = STATE(3942), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(5165), + [sym_comment] = STATE(146), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(318), + [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), @@ -98703,13 +89755,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_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), @@ -98717,600 +89769,697 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), [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_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_token34] = ACTIONS(19), [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(249), - [sym_raw_string_begin] = ACTIONS(123), - }, - [179] = { - [sym_pipeline_parenthesized] = STATE(6960), - [sym_cmd_identifier] = STATE(4817), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, - [180] = { - [sym_pipeline] = STATE(6466), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1929), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), - [sym_comment] = STATE(180), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [147] = { + [sym__block_body_statement] = STATE(6053), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1560), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(147), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(327), + [anon_sym_export] = ACTIONS(619), + [anon_sym_alias] = ACTIONS(621), + [anon_sym_let] = ACTIONS(623), + [anon_sym_let_DASHenv] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(625), + [anon_sym_const] = ACTIONS(627), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), - }, - [181] = { - [sym_pipeline_parenthesized] = STATE(7026), - [sym_cmd_identifier] = STATE(4817), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [182] = { - [sym_pipeline_parenthesized] = STATE(7172), - [sym_cmd_identifier] = STATE(4817), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [148] = { + [sym__block_body_statement] = STATE(6025), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1507), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(148), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(334), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [183] = { - [sym_pipeline] = STATE(7151), - [sym_cmd_identifier] = STATE(4714), - [sym__ctrl_expression] = STATE(5155), - [sym_ctrl_do] = STATE(5175), - [sym_ctrl_if] = STATE(5175), - [sym_ctrl_match] = STATE(5175), - [sym_ctrl_try] = STATE(5175), - [sym_ctrl_return] = STATE(5175), - [sym_pipe_element] = STATE(4782), - [sym_where_command] = STATE(5180), + [149] = { + [sym__block_body_statement] = STATE(6025), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(2055), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1665), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5180), - [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(194), - [aux_sym_pipe_element_repeat2] = STATE(354), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1560), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(149), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(327), + [anon_sym_export] = ACTIONS(619), + [anon_sym_alias] = ACTIONS(621), + [anon_sym_let] = ACTIONS(623), + [anon_sym_let_DASHenv] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(625), + [anon_sym_const] = ACTIONS(627), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [150] = { + [sym__block_body_statement] = STATE(6675), + [sym__declaration] = STATE(7048), + [sym_decl_alias] = STATE(7040), + [sym_stmt_let] = STATE(7055), + [sym_stmt_mut] = STATE(7055), + [sym_stmt_const] = STATE(7055), + [sym_assignment] = STATE(7055), + [sym__mutable_assignment_pattern] = STATE(7059), + [sym__statement] = STATE(7048), + [sym_pipeline] = STATE(7055), + [sym_cmd_identifier] = STATE(4748), + [sym_decl_def] = STATE(7040), + [sym_decl_export] = STATE(7040), + [sym_decl_extern] = STATE(7040), + [sym_decl_module] = STATE(7040), + [sym_decl_use] = STATE(7040), + [sym__ctrl_statement] = STATE(7055), + [sym__ctrl_expression] = STATE(5131), + [sym_ctrl_for] = STATE(7087), + [sym_ctrl_loop] = STATE(7087), + [sym_ctrl_error] = STATE(7087), + [sym_ctrl_while] = STATE(7087), + [sym_ctrl_do] = STATE(5133), + [sym_ctrl_if] = STATE(5133), + [sym_ctrl_match] = STATE(5133), + [sym_ctrl_try] = STATE(5133), + [sym_ctrl_return] = STATE(5133), + [sym_pipe_element] = STATE(4686), + [sym_stmt_source] = STATE(7055), + [sym_stmt_register] = STATE(7055), + [sym__stmt_hide] = STATE(7055), + [sym_hide_mod] = STATE(7049), + [sym_hide_env] = STATE(7049), + [sym__stmt_overlay] = STATE(7055), + [sym_overlay_list] = STATE(7088), + [sym_overlay_hide] = STATE(7088), + [sym_overlay_new] = STATE(7088), + [sym_overlay_use] = STATE(7088), + [sym_where_command] = STATE(5165), + [sym__expression] = STATE(3942), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(5165), + [sym_comment] = STATE(150), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(318), + [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), @@ -99318,13 +90467,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_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), @@ -99332,354 +90481,3360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), [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_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_token34] = ACTIONS(19), [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(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, - [184] = { - [sym_pipeline_parenthesized] = STATE(7180), - [sym_cmd_identifier] = STATE(4817), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(184), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [151] = { + [sym__block_body_statement] = STATE(7106), + [sym__declaration] = STATE(6604), + [sym_decl_alias] = STATE(6606), + [sym_stmt_let] = STATE(6607), + [sym_stmt_mut] = STATE(6607), + [sym_stmt_const] = STATE(6607), + [sym_assignment] = STATE(6607), + [sym__mutable_assignment_pattern] = STATE(6608), + [sym__statement] = STATE(6604), + [sym_pipeline] = STATE(6607), + [sym_cmd_identifier] = STATE(4592), + [sym_decl_def] = STATE(6606), + [sym_decl_export] = STATE(6606), + [sym_decl_extern] = STATE(6606), + [sym_decl_module] = STATE(6606), + [sym_decl_use] = STATE(6606), + [sym__ctrl_statement] = STATE(6607), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_for] = STATE(6616), + [sym_ctrl_loop] = STATE(6616), + [sym_ctrl_error] = STATE(6616), + [sym_ctrl_while] = STATE(6616), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_stmt_source] = STATE(6607), + [sym_stmt_register] = STATE(6607), + [sym__stmt_hide] = STATE(6607), + [sym_hide_mod] = STATE(6618), + [sym_hide_env] = STATE(6618), + [sym__stmt_overlay] = STATE(6607), + [sym_overlay_list] = STATE(6619), + [sym_overlay_hide] = STATE(6619), + [sym_overlay_new] = STATE(6619), + [sym_overlay_use] = STATE(6619), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1624), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(151), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym__block_body_repeat2] = STATE(151), + [aux_sym_pipe_element_repeat2] = STATE(329), + [anon_sym_export] = ACTIONS(796), + [anon_sym_alias] = ACTIONS(799), + [anon_sym_let] = ACTIONS(802), + [anon_sym_let_DASHenv] = ACTIONS(802), + [anon_sym_mut] = ACTIONS(805), + [anon_sym_const] = ACTIONS(808), + [aux_sym_cmd_identifier_token1] = ACTIONS(811), + [aux_sym_cmd_identifier_token2] = ACTIONS(814), + [aux_sym_cmd_identifier_token3] = ACTIONS(814), + [aux_sym_cmd_identifier_token4] = ACTIONS(814), + [aux_sym_cmd_identifier_token5] = ACTIONS(814), + [aux_sym_cmd_identifier_token6] = ACTIONS(814), + [aux_sym_cmd_identifier_token7] = ACTIONS(814), + [aux_sym_cmd_identifier_token8] = ACTIONS(811), + [aux_sym_cmd_identifier_token9] = ACTIONS(811), + [aux_sym_cmd_identifier_token10] = ACTIONS(814), + [aux_sym_cmd_identifier_token11] = ACTIONS(814), + [aux_sym_cmd_identifier_token12] = ACTIONS(811), + [aux_sym_cmd_identifier_token13] = ACTIONS(811), + [aux_sym_cmd_identifier_token14] = ACTIONS(811), + [aux_sym_cmd_identifier_token15] = ACTIONS(811), + [aux_sym_cmd_identifier_token16] = ACTIONS(814), + [aux_sym_cmd_identifier_token17] = ACTIONS(814), + [aux_sym_cmd_identifier_token18] = ACTIONS(814), + [aux_sym_cmd_identifier_token19] = ACTIONS(814), + [aux_sym_cmd_identifier_token20] = ACTIONS(814), + [aux_sym_cmd_identifier_token21] = ACTIONS(814), + [aux_sym_cmd_identifier_token22] = ACTIONS(814), + [aux_sym_cmd_identifier_token23] = ACTIONS(814), + [aux_sym_cmd_identifier_token24] = ACTIONS(814), + [aux_sym_cmd_identifier_token25] = ACTIONS(814), + [aux_sym_cmd_identifier_token26] = ACTIONS(814), + [aux_sym_cmd_identifier_token27] = ACTIONS(814), + [aux_sym_cmd_identifier_token28] = ACTIONS(814), + [aux_sym_cmd_identifier_token29] = ACTIONS(814), + [aux_sym_cmd_identifier_token30] = ACTIONS(814), + [aux_sym_cmd_identifier_token31] = ACTIONS(814), + [aux_sym_cmd_identifier_token32] = ACTIONS(814), + [aux_sym_cmd_identifier_token33] = ACTIONS(814), + [aux_sym_cmd_identifier_token34] = ACTIONS(811), + [aux_sym_cmd_identifier_token35] = ACTIONS(814), + [aux_sym_cmd_identifier_token36] = ACTIONS(814), + [aux_sym_cmd_identifier_token37] = ACTIONS(814), + [aux_sym_cmd_identifier_token38] = ACTIONS(811), + [aux_sym_cmd_identifier_token39] = ACTIONS(814), + [aux_sym_cmd_identifier_token40] = ACTIONS(814), + [anon_sym_def] = ACTIONS(817), + [anon_sym_export_DASHenv] = ACTIONS(820), + [anon_sym_extern] = ACTIONS(823), + [anon_sym_module] = ACTIONS(826), + [anon_sym_use] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(838), + [anon_sym_error] = ACTIONS(841), + [anon_sym_DASH2] = ACTIONS(844), + [anon_sym_break] = ACTIONS(847), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_for] = ACTIONS(853), + [anon_sym_loop] = ACTIONS(856), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(862), + [anon_sym_if] = ACTIONS(865), + [anon_sym_match] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_DOT_DOT] = ACTIONS(874), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(880), + [anon_sym_source] = ACTIONS(883), + [anon_sym_source_DASHenv] = ACTIONS(883), + [anon_sym_register] = ACTIONS(886), + [anon_sym_hide] = ACTIONS(889), + [anon_sym_hide_DASHenv] = ACTIONS(892), + [anon_sym_overlay] = ACTIONS(895), + [anon_sym_where] = ACTIONS(898), + [aux_sym_expr_unary_token1] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(904), + [anon_sym_DOT_DOT_LT] = ACTIONS(904), + [anon_sym_null] = ACTIONS(907), + [anon_sym_true] = ACTIONS(910), + [anon_sym_false] = ACTIONS(910), + [aux_sym__val_number_decimal_token1] = ACTIONS(913), + [aux_sym__val_number_decimal_token2] = ACTIONS(916), + [aux_sym__val_number_decimal_token3] = ACTIONS(919), + [aux_sym__val_number_decimal_token4] = ACTIONS(922), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(928), + [aux_sym__val_number_token5] = ACTIONS(928), + [aux_sym__val_number_token6] = ACTIONS(928), + [anon_sym_0b] = ACTIONS(931), + [anon_sym_0o] = ACTIONS(934), + [anon_sym_0x] = ACTIONS(934), + [sym_val_date] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(943), + [sym__str_back_ticks] = ACTIONS(943), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(949), + [aux_sym_env_var_token1] = ACTIONS(952), + [anon_sym_CARET] = ACTIONS(955), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(958), }, - [185] = { - [sym_pipeline_parenthesized] = STATE(7330), - [sym_cmd_identifier] = STATE(4817), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4765), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), - [sym_comment] = STATE(185), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [152] = { + [sym_cell_path] = STATE(164), + [sym_path] = STATE(161), + [sym_comment] = STATE(152), + [aux_sym_cell_path_repeat1] = STATE(153), + [anon_sym_export] = ACTIONS(961), + [anon_sym_alias] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_let_DASHenv] = ACTIONS(961), + [anon_sym_mut] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(963), + [aux_sym_cmd_identifier_token1] = ACTIONS(961), + [aux_sym_cmd_identifier_token2] = ACTIONS(963), + [aux_sym_cmd_identifier_token3] = ACTIONS(963), + [aux_sym_cmd_identifier_token4] = ACTIONS(963), + [aux_sym_cmd_identifier_token5] = ACTIONS(963), + [aux_sym_cmd_identifier_token6] = ACTIONS(963), + [aux_sym_cmd_identifier_token7] = ACTIONS(963), + [aux_sym_cmd_identifier_token8] = ACTIONS(961), + [aux_sym_cmd_identifier_token9] = ACTIONS(961), + [aux_sym_cmd_identifier_token10] = ACTIONS(963), + [aux_sym_cmd_identifier_token11] = ACTIONS(963), + [aux_sym_cmd_identifier_token12] = ACTIONS(961), + [aux_sym_cmd_identifier_token13] = ACTIONS(961), + [aux_sym_cmd_identifier_token14] = ACTIONS(961), + [aux_sym_cmd_identifier_token15] = ACTIONS(961), + [aux_sym_cmd_identifier_token16] = ACTIONS(963), + [aux_sym_cmd_identifier_token17] = ACTIONS(963), + [aux_sym_cmd_identifier_token18] = ACTIONS(963), + [aux_sym_cmd_identifier_token19] = ACTIONS(963), + [aux_sym_cmd_identifier_token20] = ACTIONS(963), + [aux_sym_cmd_identifier_token21] = ACTIONS(963), + [aux_sym_cmd_identifier_token22] = ACTIONS(963), + [aux_sym_cmd_identifier_token23] = ACTIONS(963), + [aux_sym_cmd_identifier_token24] = ACTIONS(963), + [aux_sym_cmd_identifier_token25] = ACTIONS(963), + [aux_sym_cmd_identifier_token26] = ACTIONS(963), + [aux_sym_cmd_identifier_token27] = ACTIONS(963), + [aux_sym_cmd_identifier_token28] = ACTIONS(963), + [aux_sym_cmd_identifier_token29] = ACTIONS(963), + [aux_sym_cmd_identifier_token30] = ACTIONS(963), + [aux_sym_cmd_identifier_token31] = ACTIONS(963), + [aux_sym_cmd_identifier_token32] = ACTIONS(963), + [aux_sym_cmd_identifier_token33] = ACTIONS(963), + [aux_sym_cmd_identifier_token34] = ACTIONS(961), + [aux_sym_cmd_identifier_token35] = ACTIONS(963), + [aux_sym_cmd_identifier_token36] = ACTIONS(963), + [aux_sym_cmd_identifier_token37] = ACTIONS(963), + [aux_sym_cmd_identifier_token38] = ACTIONS(961), + [aux_sym_cmd_identifier_token39] = ACTIONS(963), + [aux_sym_cmd_identifier_token40] = ACTIONS(963), + [sym__newline] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_def] = ACTIONS(961), + [anon_sym_export_DASHenv] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_error] = ACTIONS(961), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_make] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_try] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_source] = ACTIONS(961), + [anon_sym_source_DASHenv] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_hide_DASHenv] = ACTIONS(961), + [anon_sym_overlay] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_STAR2] = ACTIONS(961), + [anon_sym_and2] = ACTIONS(963), + [anon_sym_xor2] = ACTIONS(963), + [anon_sym_or2] = ACTIONS(963), + [anon_sym_not_DASHin2] = ACTIONS(963), + [anon_sym_starts_DASHwith2] = ACTIONS(963), + [anon_sym_ends_DASHwith2] = ACTIONS(963), + [anon_sym_EQ_EQ2] = ACTIONS(963), + [anon_sym_BANG_EQ2] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_LT_EQ2] = ACTIONS(963), + [anon_sym_GT_EQ2] = ACTIONS(963), + [anon_sym_EQ_TILDE2] = ACTIONS(963), + [anon_sym_BANG_TILDE2] = ACTIONS(963), + [anon_sym_STAR_STAR2] = ACTIONS(963), + [anon_sym_PLUS_PLUS2] = ACTIONS(961), + [anon_sym_SLASH2] = ACTIONS(961), + [anon_sym_mod2] = ACTIONS(961), + [anon_sym_SLASH_SLASH2] = ACTIONS(963), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_bit_DASHshl2] = ACTIONS(963), + [anon_sym_bit_DASHshr2] = ACTIONS(963), + [anon_sym_bit_DASHand2] = ACTIONS(963), + [anon_sym_bit_DASHxor2] = ACTIONS(963), + [anon_sym_bit_DASHor2] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(961), + [aux_sym__val_number_token5] = ACTIONS(961), + [aux_sym__val_number_token6] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), + [aux_sym_record_entry_token1] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), }, - [186] = { - [sym_pipeline] = STATE(7027), - [sym_cmd_identifier] = STATE(4714), - [sym__ctrl_expression] = STATE(5155), - [sym_ctrl_do] = STATE(5175), - [sym_ctrl_if] = STATE(5175), - [sym_ctrl_match] = STATE(5175), - [sym_ctrl_try] = STATE(5175), - [sym_ctrl_return] = STATE(5175), - [sym_pipe_element] = STATE(4782), - [sym_where_command] = STATE(5180), + [153] = { + [sym_path] = STATE(161), + [sym_comment] = STATE(153), + [aux_sym_cell_path_repeat1] = STATE(154), + [anon_sym_export] = ACTIONS(967), + [anon_sym_alias] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_let_DASHenv] = ACTIONS(967), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(969), + [anon_sym_DASH_EQ] = ACTIONS(969), + [anon_sym_STAR_EQ] = ACTIONS(969), + [anon_sym_SLASH_EQ] = ACTIONS(969), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(969), + [aux_sym_cmd_identifier_token1] = ACTIONS(967), + [aux_sym_cmd_identifier_token2] = ACTIONS(969), + [aux_sym_cmd_identifier_token3] = ACTIONS(969), + [aux_sym_cmd_identifier_token4] = ACTIONS(969), + [aux_sym_cmd_identifier_token5] = ACTIONS(969), + [aux_sym_cmd_identifier_token6] = ACTIONS(969), + [aux_sym_cmd_identifier_token7] = ACTIONS(969), + [aux_sym_cmd_identifier_token8] = ACTIONS(967), + [aux_sym_cmd_identifier_token9] = ACTIONS(967), + [aux_sym_cmd_identifier_token10] = ACTIONS(969), + [aux_sym_cmd_identifier_token11] = ACTIONS(969), + [aux_sym_cmd_identifier_token12] = ACTIONS(967), + [aux_sym_cmd_identifier_token13] = ACTIONS(967), + [aux_sym_cmd_identifier_token14] = ACTIONS(967), + [aux_sym_cmd_identifier_token15] = ACTIONS(967), + [aux_sym_cmd_identifier_token16] = ACTIONS(969), + [aux_sym_cmd_identifier_token17] = ACTIONS(969), + [aux_sym_cmd_identifier_token18] = ACTIONS(969), + [aux_sym_cmd_identifier_token19] = ACTIONS(969), + [aux_sym_cmd_identifier_token20] = ACTIONS(969), + [aux_sym_cmd_identifier_token21] = ACTIONS(969), + [aux_sym_cmd_identifier_token22] = ACTIONS(969), + [aux_sym_cmd_identifier_token23] = ACTIONS(969), + [aux_sym_cmd_identifier_token24] = ACTIONS(969), + [aux_sym_cmd_identifier_token25] = ACTIONS(969), + [aux_sym_cmd_identifier_token26] = ACTIONS(969), + [aux_sym_cmd_identifier_token27] = ACTIONS(969), + [aux_sym_cmd_identifier_token28] = ACTIONS(969), + [aux_sym_cmd_identifier_token29] = ACTIONS(969), + [aux_sym_cmd_identifier_token30] = ACTIONS(969), + [aux_sym_cmd_identifier_token31] = ACTIONS(969), + [aux_sym_cmd_identifier_token32] = ACTIONS(969), + [aux_sym_cmd_identifier_token33] = ACTIONS(969), + [aux_sym_cmd_identifier_token34] = ACTIONS(967), + [aux_sym_cmd_identifier_token35] = ACTIONS(969), + [aux_sym_cmd_identifier_token36] = ACTIONS(969), + [aux_sym_cmd_identifier_token37] = ACTIONS(969), + [aux_sym_cmd_identifier_token38] = ACTIONS(967), + [aux_sym_cmd_identifier_token39] = ACTIONS(969), + [aux_sym_cmd_identifier_token40] = ACTIONS(969), + [sym__newline] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_def] = ACTIONS(967), + [anon_sym_export_DASHenv] = ACTIONS(967), + [anon_sym_extern] = ACTIONS(967), + [anon_sym_module] = ACTIONS(967), + [anon_sym_use] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_error] = ACTIONS(967), + [anon_sym_GT2] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_in2] = ACTIONS(967), + [anon_sym_loop] = ACTIONS(967), + [anon_sym_make] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(967), + [anon_sym_match] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_try] = ACTIONS(967), + [anon_sym_catch] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_source] = ACTIONS(967), + [anon_sym_source_DASHenv] = ACTIONS(967), + [anon_sym_register] = ACTIONS(967), + [anon_sym_hide] = ACTIONS(967), + [anon_sym_hide_DASHenv] = ACTIONS(967), + [anon_sym_overlay] = ACTIONS(967), + [anon_sym_as] = ACTIONS(967), + [anon_sym_STAR2] = ACTIONS(967), + [anon_sym_and2] = ACTIONS(969), + [anon_sym_xor2] = ACTIONS(969), + [anon_sym_or2] = ACTIONS(969), + [anon_sym_not_DASHin2] = ACTIONS(969), + [anon_sym_starts_DASHwith2] = ACTIONS(969), + [anon_sym_ends_DASHwith2] = ACTIONS(969), + [anon_sym_EQ_EQ2] = ACTIONS(969), + [anon_sym_BANG_EQ2] = ACTIONS(969), + [anon_sym_LT2] = ACTIONS(967), + [anon_sym_LT_EQ2] = ACTIONS(969), + [anon_sym_GT_EQ2] = ACTIONS(969), + [anon_sym_EQ_TILDE2] = ACTIONS(969), + [anon_sym_BANG_TILDE2] = ACTIONS(969), + [anon_sym_STAR_STAR2] = ACTIONS(969), + [anon_sym_PLUS_PLUS2] = ACTIONS(967), + [anon_sym_SLASH2] = ACTIONS(967), + [anon_sym_mod2] = ACTIONS(967), + [anon_sym_SLASH_SLASH2] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_bit_DASHshl2] = ACTIONS(969), + [anon_sym_bit_DASHshr2] = ACTIONS(969), + [anon_sym_bit_DASHand2] = ACTIONS(969), + [anon_sym_bit_DASHxor2] = ACTIONS(969), + [anon_sym_bit_DASHor2] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(969), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(969), + [aux_sym__val_number_token1] = ACTIONS(969), + [aux_sym__val_number_token2] = ACTIONS(969), + [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_token4] = ACTIONS(967), + [aux_sym__val_number_token5] = ACTIONS(967), + [aux_sym__val_number_token6] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), + [aux_sym_record_entry_token1] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(969), + }, + [154] = { + [sym_path] = STATE(161), + [sym_comment] = STATE(154), + [aux_sym_cell_path_repeat1] = STATE(154), + [anon_sym_export] = ACTIONS(971), + [anon_sym_alias] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_let] = ACTIONS(971), + [anon_sym_let_DASHenv] = ACTIONS(971), + [anon_sym_mut] = ACTIONS(971), + [anon_sym_const] = ACTIONS(971), + [anon_sym_PLUS_EQ] = ACTIONS(973), + [anon_sym_DASH_EQ] = ACTIONS(973), + [anon_sym_STAR_EQ] = ACTIONS(973), + [anon_sym_SLASH_EQ] = ACTIONS(973), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), + [aux_sym_cmd_identifier_token1] = ACTIONS(971), + [aux_sym_cmd_identifier_token2] = ACTIONS(973), + [aux_sym_cmd_identifier_token3] = ACTIONS(973), + [aux_sym_cmd_identifier_token4] = ACTIONS(973), + [aux_sym_cmd_identifier_token5] = ACTIONS(973), + [aux_sym_cmd_identifier_token6] = ACTIONS(973), + [aux_sym_cmd_identifier_token7] = ACTIONS(973), + [aux_sym_cmd_identifier_token8] = ACTIONS(971), + [aux_sym_cmd_identifier_token9] = ACTIONS(971), + [aux_sym_cmd_identifier_token10] = ACTIONS(973), + [aux_sym_cmd_identifier_token11] = ACTIONS(973), + [aux_sym_cmd_identifier_token12] = ACTIONS(971), + [aux_sym_cmd_identifier_token13] = ACTIONS(971), + [aux_sym_cmd_identifier_token14] = ACTIONS(971), + [aux_sym_cmd_identifier_token15] = ACTIONS(971), + [aux_sym_cmd_identifier_token16] = ACTIONS(973), + [aux_sym_cmd_identifier_token17] = ACTIONS(973), + [aux_sym_cmd_identifier_token18] = ACTIONS(973), + [aux_sym_cmd_identifier_token19] = ACTIONS(973), + [aux_sym_cmd_identifier_token20] = ACTIONS(973), + [aux_sym_cmd_identifier_token21] = ACTIONS(973), + [aux_sym_cmd_identifier_token22] = ACTIONS(973), + [aux_sym_cmd_identifier_token23] = ACTIONS(973), + [aux_sym_cmd_identifier_token24] = ACTIONS(973), + [aux_sym_cmd_identifier_token25] = ACTIONS(973), + [aux_sym_cmd_identifier_token26] = ACTIONS(973), + [aux_sym_cmd_identifier_token27] = ACTIONS(973), + [aux_sym_cmd_identifier_token28] = ACTIONS(973), + [aux_sym_cmd_identifier_token29] = ACTIONS(973), + [aux_sym_cmd_identifier_token30] = ACTIONS(973), + [aux_sym_cmd_identifier_token31] = ACTIONS(973), + [aux_sym_cmd_identifier_token32] = ACTIONS(973), + [aux_sym_cmd_identifier_token33] = ACTIONS(973), + [aux_sym_cmd_identifier_token34] = ACTIONS(971), + [aux_sym_cmd_identifier_token35] = ACTIONS(973), + [aux_sym_cmd_identifier_token36] = ACTIONS(973), + [aux_sym_cmd_identifier_token37] = ACTIONS(973), + [aux_sym_cmd_identifier_token38] = ACTIONS(971), + [aux_sym_cmd_identifier_token39] = ACTIONS(973), + [aux_sym_cmd_identifier_token40] = ACTIONS(973), + [sym__newline] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_def] = ACTIONS(971), + [anon_sym_export_DASHenv] = ACTIONS(971), + [anon_sym_extern] = ACTIONS(971), + [anon_sym_module] = ACTIONS(971), + [anon_sym_use] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_COMMA] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(971), + [anon_sym_GT2] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_break] = ACTIONS(971), + [anon_sym_continue] = ACTIONS(971), + [anon_sym_for] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(971), + [anon_sym_loop] = ACTIONS(971), + [anon_sym_make] = ACTIONS(971), + [anon_sym_while] = ACTIONS(971), + [anon_sym_do] = ACTIONS(971), + [anon_sym_if] = ACTIONS(971), + [anon_sym_else] = ACTIONS(971), + [anon_sym_match] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_try] = ACTIONS(971), + [anon_sym_catch] = ACTIONS(971), + [anon_sym_return] = ACTIONS(971), + [anon_sym_source] = ACTIONS(971), + [anon_sym_source_DASHenv] = ACTIONS(971), + [anon_sym_register] = ACTIONS(971), + [anon_sym_hide] = ACTIONS(971), + [anon_sym_hide_DASHenv] = ACTIONS(971), + [anon_sym_overlay] = ACTIONS(971), + [anon_sym_as] = ACTIONS(971), + [anon_sym_STAR2] = ACTIONS(971), + [anon_sym_and2] = ACTIONS(973), + [anon_sym_xor2] = ACTIONS(973), + [anon_sym_or2] = ACTIONS(973), + [anon_sym_not_DASHin2] = ACTIONS(973), + [anon_sym_starts_DASHwith2] = ACTIONS(973), + [anon_sym_ends_DASHwith2] = ACTIONS(973), + [anon_sym_EQ_EQ2] = ACTIONS(973), + [anon_sym_BANG_EQ2] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(971), + [anon_sym_LT_EQ2] = ACTIONS(973), + [anon_sym_GT_EQ2] = ACTIONS(973), + [anon_sym_EQ_TILDE2] = ACTIONS(973), + [anon_sym_BANG_TILDE2] = ACTIONS(973), + [anon_sym_STAR_STAR2] = ACTIONS(973), + [anon_sym_PLUS_PLUS2] = ACTIONS(971), + [anon_sym_SLASH2] = ACTIONS(971), + [anon_sym_mod2] = ACTIONS(971), + [anon_sym_SLASH_SLASH2] = ACTIONS(973), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_bit_DASHshl2] = ACTIONS(973), + [anon_sym_bit_DASHshr2] = ACTIONS(973), + [anon_sym_bit_DASHand2] = ACTIONS(973), + [anon_sym_bit_DASHxor2] = ACTIONS(973), + [anon_sym_bit_DASHor2] = ACTIONS(973), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(971), + [aux_sym__val_number_decimal_token2] = ACTIONS(973), + [aux_sym__val_number_decimal_token3] = ACTIONS(973), + [aux_sym__val_number_decimal_token4] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(971), + [aux_sym__val_number_token5] = ACTIONS(971), + [aux_sym__val_number_token6] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(973), + [aux_sym_record_entry_token1] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(973), + }, + [155] = { + [sym_comment] = STATE(155), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [aux_sym_cmd_identifier_token37] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_COMMA] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(978), + [anon_sym_GT2] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_register] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_STAR2] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_starts_DASHwith2] = ACTIONS(980), + [anon_sym_ends_DASHwith2] = ACTIONS(980), + [anon_sym_EQ_EQ2] = ACTIONS(980), + [anon_sym_BANG_EQ2] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(978), + [anon_sym_LT_EQ2] = ACTIONS(980), + [anon_sym_GT_EQ2] = ACTIONS(980), + [anon_sym_EQ_TILDE2] = ACTIONS(980), + [anon_sym_BANG_TILDE2] = ACTIONS(980), + [anon_sym_STAR_STAR2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(978), + [anon_sym_SLASH2] = ACTIONS(978), + [anon_sym_mod2] = ACTIONS(978), + [anon_sym_SLASH_SLASH2] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_bit_DASHshl2] = ACTIONS(980), + [anon_sym_bit_DASHshr2] = ACTIONS(980), + [anon_sym_bit_DASHand2] = ACTIONS(980), + [anon_sym_bit_DASHxor2] = ACTIONS(980), + [anon_sym_bit_DASHor2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [aux_sym_record_entry_token1] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), + }, + [156] = { + [sym_comment] = STATE(156), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(984), + [anon_sym_GT2] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_STAR2] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(988), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(984), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [aux_sym_record_entry_token1] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(986), + }, + [157] = { + [sym_comment] = STATE(157), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [anon_sym_PLUS_EQ] = ACTIONS(992), + [anon_sym_DASH_EQ] = ACTIONS(992), + [anon_sym_STAR_EQ] = ACTIONS(992), + [anon_sym_SLASH_EQ] = ACTIONS(992), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(992), + [aux_sym_cmd_identifier_token3] = ACTIONS(992), + [aux_sym_cmd_identifier_token4] = ACTIONS(992), + [aux_sym_cmd_identifier_token5] = ACTIONS(992), + [aux_sym_cmd_identifier_token6] = ACTIONS(992), + [aux_sym_cmd_identifier_token7] = ACTIONS(992), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(992), + [aux_sym_cmd_identifier_token11] = ACTIONS(992), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(992), + [aux_sym_cmd_identifier_token17] = ACTIONS(992), + [aux_sym_cmd_identifier_token18] = ACTIONS(992), + [aux_sym_cmd_identifier_token19] = ACTIONS(992), + [aux_sym_cmd_identifier_token20] = ACTIONS(992), + [aux_sym_cmd_identifier_token21] = ACTIONS(992), + [aux_sym_cmd_identifier_token22] = ACTIONS(992), + [aux_sym_cmd_identifier_token23] = ACTIONS(992), + [aux_sym_cmd_identifier_token24] = ACTIONS(992), + [aux_sym_cmd_identifier_token25] = ACTIONS(992), + [aux_sym_cmd_identifier_token26] = ACTIONS(992), + [aux_sym_cmd_identifier_token27] = ACTIONS(992), + [aux_sym_cmd_identifier_token28] = ACTIONS(992), + [aux_sym_cmd_identifier_token29] = ACTIONS(992), + [aux_sym_cmd_identifier_token30] = ACTIONS(992), + [aux_sym_cmd_identifier_token31] = ACTIONS(992), + [aux_sym_cmd_identifier_token32] = ACTIONS(992), + [aux_sym_cmd_identifier_token33] = ACTIONS(992), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(992), + [aux_sym_cmd_identifier_token36] = ACTIONS(992), + [aux_sym_cmd_identifier_token37] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_GT2] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_STAR2] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_and2] = ACTIONS(992), + [anon_sym_xor2] = ACTIONS(992), + [anon_sym_or2] = ACTIONS(992), + [anon_sym_not_DASHin2] = ACTIONS(992), + [anon_sym_starts_DASHwith2] = ACTIONS(992), + [anon_sym_ends_DASHwith2] = ACTIONS(992), + [anon_sym_EQ_EQ2] = ACTIONS(992), + [anon_sym_BANG_EQ2] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(990), + [anon_sym_LT_EQ2] = ACTIONS(992), + [anon_sym_GT_EQ2] = ACTIONS(992), + [anon_sym_EQ_TILDE2] = ACTIONS(992), + [anon_sym_BANG_TILDE2] = ACTIONS(992), + [anon_sym_STAR_STAR2] = ACTIONS(992), + [anon_sym_PLUS_PLUS2] = ACTIONS(990), + [anon_sym_SLASH2] = ACTIONS(990), + [anon_sym_mod2] = ACTIONS(990), + [anon_sym_SLASH_SLASH2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_bit_DASHshl2] = ACTIONS(992), + [anon_sym_bit_DASHshr2] = ACTIONS(992), + [anon_sym_bit_DASHand2] = ACTIONS(992), + [anon_sym_bit_DASHxor2] = ACTIONS(992), + [anon_sym_bit_DASHor2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [aux_sym_record_entry_token1] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), + }, + [158] = { + [sym_comment] = STATE(158), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(996), + [aux_sym_cmd_identifier_token3] = ACTIONS(996), + [aux_sym_cmd_identifier_token4] = ACTIONS(996), + [aux_sym_cmd_identifier_token5] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(996), + [aux_sym_cmd_identifier_token7] = ACTIONS(996), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(996), + [aux_sym_cmd_identifier_token11] = ACTIONS(996), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(996), + [aux_sym_cmd_identifier_token17] = ACTIONS(996), + [aux_sym_cmd_identifier_token18] = ACTIONS(996), + [aux_sym_cmd_identifier_token19] = ACTIONS(996), + [aux_sym_cmd_identifier_token20] = ACTIONS(996), + [aux_sym_cmd_identifier_token21] = ACTIONS(996), + [aux_sym_cmd_identifier_token22] = ACTIONS(996), + [aux_sym_cmd_identifier_token23] = ACTIONS(996), + [aux_sym_cmd_identifier_token24] = ACTIONS(996), + [aux_sym_cmd_identifier_token25] = ACTIONS(996), + [aux_sym_cmd_identifier_token26] = ACTIONS(996), + [aux_sym_cmd_identifier_token27] = ACTIONS(996), + [aux_sym_cmd_identifier_token28] = ACTIONS(996), + [aux_sym_cmd_identifier_token29] = ACTIONS(996), + [aux_sym_cmd_identifier_token30] = ACTIONS(996), + [aux_sym_cmd_identifier_token31] = ACTIONS(996), + [aux_sym_cmd_identifier_token32] = ACTIONS(996), + [aux_sym_cmd_identifier_token33] = ACTIONS(996), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(996), + [aux_sym_cmd_identifier_token36] = ACTIONS(996), + [aux_sym_cmd_identifier_token37] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_error] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(996), + [anon_sym_xor2] = ACTIONS(996), + [anon_sym_or2] = ACTIONS(996), + [anon_sym_not_DASHin2] = ACTIONS(996), + [anon_sym_starts_DASHwith2] = ACTIONS(996), + [anon_sym_ends_DASHwith2] = ACTIONS(996), + [anon_sym_EQ_EQ2] = ACTIONS(996), + [anon_sym_BANG_EQ2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(996), + [anon_sym_GT_EQ2] = ACTIONS(996), + [anon_sym_EQ_TILDE2] = ACTIONS(996), + [anon_sym_BANG_TILDE2] = ACTIONS(996), + [anon_sym_STAR_STAR2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(996), + [anon_sym_bit_DASHshr2] = ACTIONS(996), + [anon_sym_bit_DASHand2] = ACTIONS(996), + [anon_sym_bit_DASHxor2] = ACTIONS(996), + [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(994), + [aux_sym__val_number_token5] = ACTIONS(994), + [aux_sym__val_number_token6] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [aux_sym_record_entry_token1] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), + }, + [159] = { + [sym_comment] = STATE(159), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_EQ] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [anon_sym_PLUS_EQ] = ACTIONS(1000), + [anon_sym_DASH_EQ] = ACTIONS(1000), + [anon_sym_STAR_EQ] = ACTIONS(1000), + [anon_sym_SLASH_EQ] = ACTIONS(1000), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1000), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(1000), + [aux_sym_cmd_identifier_token3] = ACTIONS(1000), + [aux_sym_cmd_identifier_token4] = ACTIONS(1000), + [aux_sym_cmd_identifier_token5] = ACTIONS(1000), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [aux_sym_cmd_identifier_token7] = ACTIONS(1000), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(1000), + [aux_sym_cmd_identifier_token11] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(1000), + [aux_sym_cmd_identifier_token17] = ACTIONS(1000), + [aux_sym_cmd_identifier_token18] = ACTIONS(1000), + [aux_sym_cmd_identifier_token19] = ACTIONS(1000), + [aux_sym_cmd_identifier_token20] = ACTIONS(1000), + [aux_sym_cmd_identifier_token21] = ACTIONS(1000), + [aux_sym_cmd_identifier_token22] = ACTIONS(1000), + [aux_sym_cmd_identifier_token23] = ACTIONS(1000), + [aux_sym_cmd_identifier_token24] = ACTIONS(1000), + [aux_sym_cmd_identifier_token25] = ACTIONS(1000), + [aux_sym_cmd_identifier_token26] = ACTIONS(1000), + [aux_sym_cmd_identifier_token27] = ACTIONS(1000), + [aux_sym_cmd_identifier_token28] = ACTIONS(1000), + [aux_sym_cmd_identifier_token29] = ACTIONS(1000), + [aux_sym_cmd_identifier_token30] = ACTIONS(1000), + [aux_sym_cmd_identifier_token31] = ACTIONS(1000), + [aux_sym_cmd_identifier_token32] = ACTIONS(1000), + [aux_sym_cmd_identifier_token33] = ACTIONS(1000), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(1000), + [aux_sym_cmd_identifier_token36] = ACTIONS(1000), + [aux_sym_cmd_identifier_token37] = ACTIONS(1000), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(1000), + [aux_sym_cmd_identifier_token40] = ACTIONS(1000), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_error] = ACTIONS(998), + [anon_sym_GT2] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_STAR2] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(998), + [anon_sym_SLASH2] = ACTIONS(998), + [anon_sym_mod2] = ACTIONS(998), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [aux_sym_record_entry_token1] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [160] = { + [sym_comment] = STATE(160), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [anon_sym_DASH_EQ] = ACTIONS(1004), + [anon_sym_STAR_EQ] = ACTIONS(1004), + [anon_sym_SLASH_EQ] = ACTIONS(1004), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1004), + [aux_sym_cmd_identifier_token3] = ACTIONS(1004), + [aux_sym_cmd_identifier_token4] = ACTIONS(1004), + [aux_sym_cmd_identifier_token5] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1004), + [aux_sym_cmd_identifier_token7] = ACTIONS(1004), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1004), + [aux_sym_cmd_identifier_token11] = ACTIONS(1004), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1004), + [aux_sym_cmd_identifier_token17] = ACTIONS(1004), + [aux_sym_cmd_identifier_token18] = ACTIONS(1004), + [aux_sym_cmd_identifier_token19] = ACTIONS(1004), + [aux_sym_cmd_identifier_token20] = ACTIONS(1004), + [aux_sym_cmd_identifier_token21] = ACTIONS(1004), + [aux_sym_cmd_identifier_token22] = ACTIONS(1004), + [aux_sym_cmd_identifier_token23] = ACTIONS(1004), + [aux_sym_cmd_identifier_token24] = ACTIONS(1004), + [aux_sym_cmd_identifier_token25] = ACTIONS(1004), + [aux_sym_cmd_identifier_token26] = ACTIONS(1004), + [aux_sym_cmd_identifier_token27] = ACTIONS(1004), + [aux_sym_cmd_identifier_token28] = ACTIONS(1004), + [aux_sym_cmd_identifier_token29] = ACTIONS(1004), + [aux_sym_cmd_identifier_token30] = ACTIONS(1004), + [aux_sym_cmd_identifier_token31] = ACTIONS(1004), + [aux_sym_cmd_identifier_token32] = ACTIONS(1004), + [aux_sym_cmd_identifier_token33] = ACTIONS(1004), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1004), + [aux_sym_cmd_identifier_token36] = ACTIONS(1004), + [aux_sym_cmd_identifier_token37] = ACTIONS(1004), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [aux_sym_record_entry_token1] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1004), + }, + [161] = { + [sym_comment] = STATE(161), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_EQ] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1008), + [aux_sym_cmd_identifier_token3] = ACTIONS(1008), + [aux_sym_cmd_identifier_token4] = ACTIONS(1008), + [aux_sym_cmd_identifier_token5] = ACTIONS(1008), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [aux_sym_cmd_identifier_token7] = ACTIONS(1008), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1008), + [aux_sym_cmd_identifier_token11] = ACTIONS(1008), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1008), + [aux_sym_cmd_identifier_token17] = ACTIONS(1008), + [aux_sym_cmd_identifier_token18] = ACTIONS(1008), + [aux_sym_cmd_identifier_token19] = ACTIONS(1008), + [aux_sym_cmd_identifier_token20] = ACTIONS(1008), + [aux_sym_cmd_identifier_token21] = ACTIONS(1008), + [aux_sym_cmd_identifier_token22] = ACTIONS(1008), + [aux_sym_cmd_identifier_token23] = ACTIONS(1008), + [aux_sym_cmd_identifier_token24] = ACTIONS(1008), + [aux_sym_cmd_identifier_token25] = ACTIONS(1008), + [aux_sym_cmd_identifier_token26] = ACTIONS(1008), + [aux_sym_cmd_identifier_token27] = ACTIONS(1008), + [aux_sym_cmd_identifier_token28] = ACTIONS(1008), + [aux_sym_cmd_identifier_token29] = ACTIONS(1008), + [aux_sym_cmd_identifier_token30] = ACTIONS(1008), + [aux_sym_cmd_identifier_token31] = ACTIONS(1008), + [aux_sym_cmd_identifier_token32] = ACTIONS(1008), + [aux_sym_cmd_identifier_token33] = ACTIONS(1008), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1008), + [aux_sym_cmd_identifier_token36] = ACTIONS(1008), + [aux_sym_cmd_identifier_token37] = ACTIONS(1008), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [sym__newline] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_GT2] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_STAR2] = ACTIONS(1006), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1006), + [anon_sym_SLASH2] = ACTIONS(1006), + [anon_sym_mod2] = ACTIONS(1006), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), + [aux_sym_record_entry_token1] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1008), + }, + [162] = { + [sym_comment] = STATE(162), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_EQ] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1012), + [anon_sym_DASH_EQ] = ACTIONS(1012), + [anon_sym_STAR_EQ] = ACTIONS(1012), + [anon_sym_SLASH_EQ] = ACTIONS(1012), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1012), + [aux_sym_cmd_identifier_token1] = ACTIONS(1010), + [aux_sym_cmd_identifier_token2] = ACTIONS(1012), + [aux_sym_cmd_identifier_token3] = ACTIONS(1012), + [aux_sym_cmd_identifier_token4] = ACTIONS(1012), + [aux_sym_cmd_identifier_token5] = ACTIONS(1012), + [aux_sym_cmd_identifier_token6] = ACTIONS(1012), + [aux_sym_cmd_identifier_token7] = ACTIONS(1012), + [aux_sym_cmd_identifier_token8] = ACTIONS(1010), + [aux_sym_cmd_identifier_token9] = ACTIONS(1010), + [aux_sym_cmd_identifier_token10] = ACTIONS(1012), + [aux_sym_cmd_identifier_token11] = ACTIONS(1012), + [aux_sym_cmd_identifier_token12] = ACTIONS(1010), + [aux_sym_cmd_identifier_token13] = ACTIONS(1010), + [aux_sym_cmd_identifier_token14] = ACTIONS(1010), + [aux_sym_cmd_identifier_token15] = ACTIONS(1010), + [aux_sym_cmd_identifier_token16] = ACTIONS(1012), + [aux_sym_cmd_identifier_token17] = ACTIONS(1012), + [aux_sym_cmd_identifier_token18] = ACTIONS(1012), + [aux_sym_cmd_identifier_token19] = ACTIONS(1012), + [aux_sym_cmd_identifier_token20] = ACTIONS(1012), + [aux_sym_cmd_identifier_token21] = ACTIONS(1012), + [aux_sym_cmd_identifier_token22] = ACTIONS(1012), + [aux_sym_cmd_identifier_token23] = ACTIONS(1012), + [aux_sym_cmd_identifier_token24] = ACTIONS(1012), + [aux_sym_cmd_identifier_token25] = ACTIONS(1012), + [aux_sym_cmd_identifier_token26] = ACTIONS(1012), + [aux_sym_cmd_identifier_token27] = ACTIONS(1012), + [aux_sym_cmd_identifier_token28] = ACTIONS(1012), + [aux_sym_cmd_identifier_token29] = ACTIONS(1012), + [aux_sym_cmd_identifier_token30] = ACTIONS(1012), + [aux_sym_cmd_identifier_token31] = ACTIONS(1012), + [aux_sym_cmd_identifier_token32] = ACTIONS(1012), + [aux_sym_cmd_identifier_token33] = ACTIONS(1012), + [aux_sym_cmd_identifier_token34] = ACTIONS(1010), + [aux_sym_cmd_identifier_token35] = ACTIONS(1012), + [aux_sym_cmd_identifier_token36] = ACTIONS(1012), + [aux_sym_cmd_identifier_token37] = ACTIONS(1012), + [aux_sym_cmd_identifier_token38] = ACTIONS(1010), + [aux_sym_cmd_identifier_token39] = ACTIONS(1012), + [aux_sym_cmd_identifier_token40] = ACTIONS(1012), + [sym__newline] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_GT2] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in2] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_make] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_catch] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_STAR2] = ACTIONS(1010), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1010), + [anon_sym_SLASH2] = ACTIONS(1010), + [anon_sym_mod2] = ACTIONS(1010), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1010), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), + [aux_sym__val_number_token1] = ACTIONS(1012), + [aux_sym__val_number_token2] = ACTIONS(1012), + [aux_sym__val_number_token3] = ACTIONS(1012), + [aux_sym__val_number_token4] = ACTIONS(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), + [aux_sym_record_entry_token1] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1012), + }, + [163] = { + [sym_comment] = STATE(163), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [anon_sym_PLUS_EQ] = ACTIONS(1016), + [anon_sym_DASH_EQ] = ACTIONS(1016), + [anon_sym_STAR_EQ] = ACTIONS(1016), + [anon_sym_SLASH_EQ] = ACTIONS(1016), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1016), + [aux_sym_cmd_identifier_token1] = ACTIONS(1014), + [aux_sym_cmd_identifier_token2] = ACTIONS(1016), + [aux_sym_cmd_identifier_token3] = ACTIONS(1016), + [aux_sym_cmd_identifier_token4] = ACTIONS(1016), + [aux_sym_cmd_identifier_token5] = ACTIONS(1016), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [aux_sym_cmd_identifier_token7] = ACTIONS(1016), + [aux_sym_cmd_identifier_token8] = ACTIONS(1014), + [aux_sym_cmd_identifier_token9] = ACTIONS(1014), + [aux_sym_cmd_identifier_token10] = ACTIONS(1016), + [aux_sym_cmd_identifier_token11] = ACTIONS(1016), + [aux_sym_cmd_identifier_token12] = ACTIONS(1014), + [aux_sym_cmd_identifier_token13] = ACTIONS(1014), + [aux_sym_cmd_identifier_token14] = ACTIONS(1014), + [aux_sym_cmd_identifier_token15] = ACTIONS(1014), + [aux_sym_cmd_identifier_token16] = ACTIONS(1016), + [aux_sym_cmd_identifier_token17] = ACTIONS(1016), + [aux_sym_cmd_identifier_token18] = ACTIONS(1016), + [aux_sym_cmd_identifier_token19] = ACTIONS(1016), + [aux_sym_cmd_identifier_token20] = ACTIONS(1016), + [aux_sym_cmd_identifier_token21] = ACTIONS(1016), + [aux_sym_cmd_identifier_token22] = ACTIONS(1016), + [aux_sym_cmd_identifier_token23] = ACTIONS(1016), + [aux_sym_cmd_identifier_token24] = ACTIONS(1016), + [aux_sym_cmd_identifier_token25] = ACTIONS(1016), + [aux_sym_cmd_identifier_token26] = ACTIONS(1016), + [aux_sym_cmd_identifier_token27] = ACTIONS(1016), + [aux_sym_cmd_identifier_token28] = ACTIONS(1016), + [aux_sym_cmd_identifier_token29] = ACTIONS(1016), + [aux_sym_cmd_identifier_token30] = ACTIONS(1016), + [aux_sym_cmd_identifier_token31] = ACTIONS(1016), + [aux_sym_cmd_identifier_token32] = ACTIONS(1016), + [aux_sym_cmd_identifier_token33] = ACTIONS(1016), + [aux_sym_cmd_identifier_token34] = ACTIONS(1014), + [aux_sym_cmd_identifier_token35] = ACTIONS(1016), + [aux_sym_cmd_identifier_token36] = ACTIONS(1016), + [aux_sym_cmd_identifier_token37] = ACTIONS(1016), + [aux_sym_cmd_identifier_token38] = ACTIONS(1014), + [aux_sym_cmd_identifier_token39] = ACTIONS(1016), + [aux_sym_cmd_identifier_token40] = ACTIONS(1016), + [sym__newline] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_err_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_GT_PIPE] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_COMMA] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_GT2] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_make] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_catch] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_as] = ACTIONS(1014), + [anon_sym_STAR2] = ACTIONS(1014), + [anon_sym_and2] = ACTIONS(1016), + [anon_sym_xor2] = ACTIONS(1016), + [anon_sym_or2] = ACTIONS(1016), + [anon_sym_not_DASHin2] = ACTIONS(1016), + [anon_sym_starts_DASHwith2] = ACTIONS(1016), + [anon_sym_ends_DASHwith2] = ACTIONS(1016), + [anon_sym_EQ_EQ2] = ACTIONS(1016), + [anon_sym_BANG_EQ2] = ACTIONS(1016), + [anon_sym_LT2] = ACTIONS(1014), + [anon_sym_LT_EQ2] = ACTIONS(1016), + [anon_sym_GT_EQ2] = ACTIONS(1016), + [anon_sym_EQ_TILDE2] = ACTIONS(1016), + [anon_sym_BANG_TILDE2] = ACTIONS(1016), + [anon_sym_STAR_STAR2] = ACTIONS(1016), + [anon_sym_PLUS_PLUS2] = ACTIONS(1014), + [anon_sym_SLASH2] = ACTIONS(1014), + [anon_sym_mod2] = ACTIONS(1014), + [anon_sym_SLASH_SLASH2] = ACTIONS(1016), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_bit_DASHshl2] = ACTIONS(1016), + [anon_sym_bit_DASHshr2] = ACTIONS(1016), + [anon_sym_bit_DASHand2] = ACTIONS(1016), + [anon_sym_bit_DASHxor2] = ACTIONS(1016), + [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), + [anon_sym_DOT_DOT2] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1016), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(1016), + [aux_sym__val_number_token2] = ACTIONS(1016), + [aux_sym__val_number_token3] = ACTIONS(1016), + [aux_sym__val_number_token4] = ACTIONS(1014), + [aux_sym__val_number_token5] = ACTIONS(1014), + [aux_sym__val_number_token6] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1016), + [sym__str_single_quotes] = ACTIONS(1016), + [sym__str_back_ticks] = ACTIONS(1016), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), + [aux_sym_record_entry_token1] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [anon_sym_err_GT_GT] = ACTIONS(1016), + [anon_sym_out_GT_GT] = ACTIONS(1016), + [anon_sym_e_GT_GT] = ACTIONS(1016), + [anon_sym_o_GT_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1016), + }, + [164] = { + [sym_comment] = STATE(164), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_EQ] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [anon_sym_PLUS_EQ] = ACTIONS(1020), + [anon_sym_DASH_EQ] = ACTIONS(1020), + [anon_sym_STAR_EQ] = ACTIONS(1020), + [anon_sym_SLASH_EQ] = ACTIONS(1020), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), + [aux_sym_cmd_identifier_token1] = ACTIONS(1018), + [aux_sym_cmd_identifier_token2] = ACTIONS(1020), + [aux_sym_cmd_identifier_token3] = ACTIONS(1020), + [aux_sym_cmd_identifier_token4] = ACTIONS(1020), + [aux_sym_cmd_identifier_token5] = ACTIONS(1020), + [aux_sym_cmd_identifier_token6] = ACTIONS(1020), + [aux_sym_cmd_identifier_token7] = ACTIONS(1020), + [aux_sym_cmd_identifier_token8] = ACTIONS(1018), + [aux_sym_cmd_identifier_token9] = ACTIONS(1018), + [aux_sym_cmd_identifier_token10] = ACTIONS(1020), + [aux_sym_cmd_identifier_token11] = ACTIONS(1020), + [aux_sym_cmd_identifier_token12] = ACTIONS(1018), + [aux_sym_cmd_identifier_token13] = ACTIONS(1018), + [aux_sym_cmd_identifier_token14] = ACTIONS(1018), + [aux_sym_cmd_identifier_token15] = ACTIONS(1018), + [aux_sym_cmd_identifier_token16] = ACTIONS(1020), + [aux_sym_cmd_identifier_token17] = ACTIONS(1020), + [aux_sym_cmd_identifier_token18] = ACTIONS(1020), + [aux_sym_cmd_identifier_token19] = ACTIONS(1020), + [aux_sym_cmd_identifier_token20] = ACTIONS(1020), + [aux_sym_cmd_identifier_token21] = ACTIONS(1020), + [aux_sym_cmd_identifier_token22] = ACTIONS(1020), + [aux_sym_cmd_identifier_token23] = ACTIONS(1020), + [aux_sym_cmd_identifier_token24] = ACTIONS(1020), + [aux_sym_cmd_identifier_token25] = ACTIONS(1020), + [aux_sym_cmd_identifier_token26] = ACTIONS(1020), + [aux_sym_cmd_identifier_token27] = ACTIONS(1020), + [aux_sym_cmd_identifier_token28] = ACTIONS(1020), + [aux_sym_cmd_identifier_token29] = ACTIONS(1020), + [aux_sym_cmd_identifier_token30] = ACTIONS(1020), + [aux_sym_cmd_identifier_token31] = ACTIONS(1020), + [aux_sym_cmd_identifier_token32] = ACTIONS(1020), + [aux_sym_cmd_identifier_token33] = ACTIONS(1020), + [aux_sym_cmd_identifier_token34] = ACTIONS(1018), + [aux_sym_cmd_identifier_token35] = ACTIONS(1020), + [aux_sym_cmd_identifier_token36] = ACTIONS(1020), + [aux_sym_cmd_identifier_token37] = ACTIONS(1020), + [aux_sym_cmd_identifier_token38] = ACTIONS(1018), + [aux_sym_cmd_identifier_token39] = ACTIONS(1020), + [aux_sym_cmd_identifier_token40] = ACTIONS(1020), + [sym__newline] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_GT2] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_make] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_catch] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_as] = ACTIONS(1018), + [anon_sym_STAR2] = ACTIONS(1018), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1018), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1018), + [anon_sym_SLASH2] = ACTIONS(1018), + [anon_sym_mod2] = ACTIONS(1018), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_decimal_token4] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1018), + [aux_sym__val_number_token5] = ACTIONS(1018), + [aux_sym__val_number_token6] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), + [aux_sym_record_entry_token1] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1020), + }, + [165] = { + [sym_comment] = STATE(165), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(1024), + [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(1026), + [anon_sym_DASH_EQ] = ACTIONS(1026), + [anon_sym_STAR_EQ] = ACTIONS(1026), + [anon_sym_SLASH_EQ] = ACTIONS(1026), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1026), + [aux_sym_cmd_identifier_token1] = ACTIONS(1022), + [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(1022), + [aux_sym_cmd_identifier_token9] = ACTIONS(1022), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [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(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(1022), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [aux_sym_cmd_identifier_token37] = ACTIONS(1028), + [aux_sym_cmd_identifier_token38] = ACTIONS(1022), + [aux_sym_cmd_identifier_token39] = ACTIONS(1028), + [aux_sym_cmd_identifier_token40] = ACTIONS(1028), + [sym__newline] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_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(1028), + [anon_sym_COMMA] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_GT2] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_in2] = ACTIONS(1036), + [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(1039), + [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_as] = ACTIONS(1022), + [anon_sym_STAR2] = ACTIONS(1030), + [anon_sym_and2] = ACTIONS(1032), + [anon_sym_xor2] = ACTIONS(1032), + [anon_sym_or2] = ACTIONS(1032), + [anon_sym_not_DASHin2] = ACTIONS(1032), + [anon_sym_starts_DASHwith2] = ACTIONS(1032), + [anon_sym_ends_DASHwith2] = ACTIONS(1032), + [anon_sym_EQ_EQ2] = ACTIONS(1032), + [anon_sym_BANG_EQ2] = ACTIONS(1032), + [anon_sym_LT2] = ACTIONS(1030), + [anon_sym_LT_EQ2] = ACTIONS(1032), + [anon_sym_GT_EQ2] = ACTIONS(1032), + [anon_sym_EQ_TILDE2] = ACTIONS(1032), + [anon_sym_BANG_TILDE2] = ACTIONS(1032), + [anon_sym_STAR_STAR2] = ACTIONS(1032), + [anon_sym_PLUS_PLUS2] = ACTIONS(1030), + [anon_sym_SLASH2] = ACTIONS(1030), + [anon_sym_mod2] = ACTIONS(1030), + [anon_sym_SLASH_SLASH2] = ACTIONS(1032), + [anon_sym_PLUS2] = ACTIONS(1036), + [anon_sym_bit_DASHshl2] = ACTIONS(1032), + [anon_sym_bit_DASHshr2] = ACTIONS(1032), + [anon_sym_bit_DASHand2] = ACTIONS(1032), + [anon_sym_bit_DASHxor2] = ACTIONS(1032), + [anon_sym_bit_DASHor2] = ACTIONS(1032), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [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), + [aux_sym__val_number_token4] = ACTIONS(1022), + [aux_sym__val_number_token5] = ACTIONS(1022), + [aux_sym__val_number_token6] = ACTIONS(1022), + [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), + [aux_sym_record_entry_token1] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [anon_sym_err_GT_GT] = ACTIONS(1032), + [anon_sym_out_GT_GT] = ACTIONS(1032), + [anon_sym_e_GT_GT] = ACTIONS(1032), + [anon_sym_o_GT_GT] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1028), + }, + [166] = { + [sym_pipeline] = STATE(6640), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(2055), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1665), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5180), - [sym_comment] = STATE(186), - [aux_sym_pipeline_repeat1] = STATE(194), - [aux_sym_pipe_element_repeat2] = STATE(354), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(166), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [167] = { + [sym_pipeline_parenthesized] = STATE(6821), + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(167), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [168] = { + [sym_pipeline] = STATE(6295), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(168), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(327), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [169] = { + [sym_pipeline] = STATE(6640), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(327), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [170] = { + [sym_pipeline_parenthesized] = STATE(7064), + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(170), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [171] = { + [sym_pipeline_parenthesized] = STATE(7070), + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(171), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [172] = { + [sym_pipeline] = STATE(7067), + [sym_cmd_identifier] = STATE(4748), + [sym__ctrl_expression] = STATE(5131), + [sym_ctrl_do] = STATE(5133), + [sym_ctrl_if] = STATE(5133), + [sym_ctrl_match] = STATE(5133), + [sym_ctrl_try] = STATE(5133), + [sym_ctrl_return] = STATE(5133), + [sym_pipe_element] = STATE(4686), + [sym_where_command] = STATE(5165), + [sym__expression] = STATE(3942), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(2113), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(5165), + [sym_comment] = STATE(172), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(318), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -99701,108 +93856,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), [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_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_token34] = ACTIONS(19), [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(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, - [187] = { - [sym_pipeline] = STATE(7091), - [sym_cmd_identifier] = STATE(4714), - [sym__ctrl_expression] = STATE(5155), - [sym_ctrl_do] = STATE(5175), - [sym_ctrl_if] = STATE(5175), - [sym_ctrl_match] = STATE(5175), - [sym_ctrl_try] = STATE(5175), - [sym_ctrl_return] = STATE(5175), - [sym_pipe_element] = STATE(4782), - [sym_where_command] = STATE(5180), + [173] = { + [sym_pipeline] = STATE(6620), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(2055), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1665), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5180), - [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(194), - [aux_sym_pipe_element_repeat2] = STATE(354), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(327), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [174] = { + [sym_pipeline] = STATE(6276), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(174), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym_pipe_element_repeat2] = STATE(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [175] = { + [sym_pipeline] = STATE(6754), + [sym_cmd_identifier] = STATE(4748), + [sym__ctrl_expression] = STATE(5131), + [sym_ctrl_do] = STATE(5133), + [sym_ctrl_if] = STATE(5133), + [sym_ctrl_match] = STATE(5133), + [sym_ctrl_try] = STATE(5133), + [sym_ctrl_return] = STATE(5133), + [sym_pipe_element] = STATE(4686), + [sym_where_command] = STATE(5165), + [sym__expression] = STATE(3942), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(2113), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(5165), + [sym_comment] = STATE(175), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(318), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -99824,108 +94237,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), [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_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_token34] = ACTIONS(19), [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(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, - [188] = { - [sym_pipeline] = STATE(7010), - [sym_cmd_identifier] = STATE(4714), - [sym__ctrl_expression] = STATE(5155), - [sym_ctrl_do] = STATE(5175), - [sym_ctrl_if] = STATE(5175), - [sym_ctrl_match] = STATE(5175), - [sym_ctrl_try] = STATE(5175), - [sym_ctrl_return] = STATE(5175), - [sym_pipe_element] = STATE(4782), - [sym_where_command] = STATE(5180), + [176] = { + [sym_pipeline] = STATE(6295), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(2055), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1665), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5180), - [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(194), - [aux_sym_pipe_element_repeat2] = STATE(354), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym_pipe_element_repeat2] = STATE(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [177] = { + [sym_pipeline] = STATE(6879), + [sym_cmd_identifier] = STATE(4748), + [sym__ctrl_expression] = STATE(5131), + [sym_ctrl_do] = STATE(5133), + [sym_ctrl_if] = STATE(5133), + [sym_ctrl_match] = STATE(5133), + [sym_ctrl_try] = STATE(5133), + [sym_ctrl_return] = STATE(5133), + [sym_pipe_element] = STATE(4686), + [sym_where_command] = STATE(5165), + [sym__expression] = STATE(3942), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(2113), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(5165), + [sym_comment] = STATE(177), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(318), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -99947,720 +94491,2144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), [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_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_token34] = ACTIONS(19), [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(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [178] = { + [sym_pipeline_parenthesized] = STATE(7004), + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(178), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [179] = { + [sym_pipeline] = STATE(6620), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(179), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym_pipe_element_repeat2] = STATE(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [180] = { + [sym_pipeline_parenthesized] = STATE(6821), + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(180), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [181] = { + [sym_pipeline_parenthesized] = STATE(7085), + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(181), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [182] = { + [sym_pipeline] = STATE(6674), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(182), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym_pipe_element_repeat2] = STATE(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [183] = { + [sym_pipeline] = STATE(6276), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(183), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [184] = { + [sym_pipeline] = STATE(6295), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(184), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [185] = { + [sym_pipeline] = STATE(6620), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [186] = { + [sym_pipeline_parenthesized] = STATE(7064), + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(186), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [187] = { + [sym_pipeline] = STATE(6674), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [188] = { + [sym_pipeline_parenthesized] = STATE(7004), + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(188), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [189] = { - [sym_pipeline] = STATE(6227), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [sym_pipeline_parenthesized] = STATE(7070), + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1929), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(189), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [190] = { - [sym_pipeline] = STATE(6282), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1929), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym_pipeline] = STATE(6640), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym_pipe_element_repeat2] = STATE(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [191] = { - [sym_pipeline] = STATE(6290), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4618), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1929), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym_pipeline] = STATE(6674), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(327), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [192] = { - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(5184), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1929), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym_pipeline] = STATE(6276), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4594), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(192), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(1105), - [aux_sym_cmd_identifier_token2] = ACTIONS(1108), - [aux_sym_cmd_identifier_token3] = ACTIONS(1108), - [aux_sym_cmd_identifier_token4] = ACTIONS(1108), - [aux_sym_cmd_identifier_token5] = ACTIONS(1108), - [aux_sym_cmd_identifier_token6] = ACTIONS(1108), - [aux_sym_cmd_identifier_token7] = ACTIONS(1108), - [aux_sym_cmd_identifier_token8] = ACTIONS(1108), - [aux_sym_cmd_identifier_token9] = ACTIONS(1105), - [aux_sym_cmd_identifier_token10] = ACTIONS(1108), - [aux_sym_cmd_identifier_token11] = ACTIONS(1108), - [aux_sym_cmd_identifier_token12] = ACTIONS(1108), - [aux_sym_cmd_identifier_token13] = ACTIONS(1105), - [aux_sym_cmd_identifier_token14] = ACTIONS(1108), - [aux_sym_cmd_identifier_token15] = ACTIONS(1105), - [aux_sym_cmd_identifier_token16] = ACTIONS(1108), - [aux_sym_cmd_identifier_token17] = ACTIONS(1108), - [aux_sym_cmd_identifier_token18] = ACTIONS(1108), - [aux_sym_cmd_identifier_token19] = ACTIONS(1108), - [aux_sym_cmd_identifier_token20] = ACTIONS(1108), - [aux_sym_cmd_identifier_token21] = ACTIONS(1108), - [aux_sym_cmd_identifier_token22] = ACTIONS(1105), - [aux_sym_cmd_identifier_token23] = ACTIONS(1105), - [aux_sym_cmd_identifier_token24] = ACTIONS(1108), - [aux_sym_cmd_identifier_token25] = ACTIONS(1105), - [aux_sym_cmd_identifier_token26] = ACTIONS(1108), - [aux_sym_cmd_identifier_token27] = ACTIONS(1105), - [aux_sym_cmd_identifier_token28] = ACTIONS(1105), - [aux_sym_cmd_identifier_token29] = ACTIONS(1105), - [aux_sym_cmd_identifier_token30] = ACTIONS(1105), - [aux_sym_cmd_identifier_token31] = ACTIONS(1108), - [aux_sym_cmd_identifier_token32] = ACTIONS(1108), - [aux_sym_cmd_identifier_token33] = ACTIONS(1108), - [aux_sym_cmd_identifier_token34] = ACTIONS(1108), - [aux_sym_cmd_identifier_token35] = ACTIONS(1108), - [aux_sym_cmd_identifier_token36] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1111), - [anon_sym_false] = ACTIONS(1111), - [anon_sym_null] = ACTIONS(1114), - [aux_sym_cmd_identifier_token38] = ACTIONS(1117), - [aux_sym_cmd_identifier_token39] = ACTIONS(1120), - [aux_sym_cmd_identifier_token40] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1132), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_do] = ACTIONS(1141), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_match] = ACTIONS(1147), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_DOT_DOT] = ACTIONS(1153), - [anon_sym_try] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_where] = ACTIONS(1162), - [aux_sym_expr_unary_token1] = ACTIONS(1165), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), - [anon_sym_DOT_DOT_LT] = ACTIONS(1168), - [aux_sym__val_number_decimal_token1] = ACTIONS(1171), - [aux_sym__val_number_decimal_token2] = ACTIONS(1174), - [aux_sym__val_number_decimal_token3] = ACTIONS(1177), - [aux_sym__val_number_decimal_token4] = ACTIONS(1180), - [aux_sym__val_number_token1] = ACTIONS(1183), - [aux_sym__val_number_token2] = ACTIONS(1183), - [aux_sym__val_number_token3] = ACTIONS(1183), - [anon_sym_0b] = ACTIONS(1186), - [anon_sym_0o] = ACTIONS(1189), - [anon_sym_0x] = ACTIONS(1189), - [sym_val_date] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym__str_single_quotes] = ACTIONS(1198), - [sym__str_back_ticks] = ACTIONS(1198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1201), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), - [aux_sym_env_var_token1] = ACTIONS(1207), - [anon_sym_CARET] = ACTIONS(1210), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1213), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(327), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [193] = { - [sym_cmd_identifier] = STATE(4817), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(5135), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym_pipeline] = STATE(7113), + [sym_cmd_identifier] = STATE(4748), + [sym__ctrl_expression] = STATE(5131), + [sym_ctrl_do] = STATE(5133), + [sym_ctrl_if] = STATE(5133), + [sym_ctrl_match] = STATE(5133), + [sym_ctrl_try] = STATE(5133), + [sym_ctrl_return] = STATE(5133), + [sym_pipe_element] = STATE(4686), + [sym_where_command] = STATE(5165), + [sym__expression] = STATE(3942), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(2113), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(5165), [sym_comment] = STATE(193), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym_cmd_identifier_token1] = ACTIONS(1216), - [aux_sym_cmd_identifier_token2] = ACTIONS(1219), - [aux_sym_cmd_identifier_token3] = ACTIONS(1219), - [aux_sym_cmd_identifier_token4] = ACTIONS(1219), - [aux_sym_cmd_identifier_token5] = ACTIONS(1219), - [aux_sym_cmd_identifier_token6] = ACTIONS(1219), - [aux_sym_cmd_identifier_token7] = ACTIONS(1219), - [aux_sym_cmd_identifier_token8] = ACTIONS(1219), - [aux_sym_cmd_identifier_token9] = ACTIONS(1216), - [aux_sym_cmd_identifier_token10] = ACTIONS(1219), - [aux_sym_cmd_identifier_token11] = ACTIONS(1219), - [aux_sym_cmd_identifier_token12] = ACTIONS(1219), - [aux_sym_cmd_identifier_token13] = ACTIONS(1216), - [aux_sym_cmd_identifier_token14] = ACTIONS(1219), - [aux_sym_cmd_identifier_token15] = ACTIONS(1216), - [aux_sym_cmd_identifier_token16] = ACTIONS(1219), - [aux_sym_cmd_identifier_token17] = ACTIONS(1219), - [aux_sym_cmd_identifier_token18] = ACTIONS(1219), - [aux_sym_cmd_identifier_token19] = ACTIONS(1219), - [aux_sym_cmd_identifier_token20] = ACTIONS(1219), - [aux_sym_cmd_identifier_token21] = ACTIONS(1219), - [aux_sym_cmd_identifier_token22] = ACTIONS(1216), - [aux_sym_cmd_identifier_token23] = ACTIONS(1216), - [aux_sym_cmd_identifier_token24] = ACTIONS(1219), - [aux_sym_cmd_identifier_token25] = ACTIONS(1216), - [aux_sym_cmd_identifier_token26] = ACTIONS(1219), - [aux_sym_cmd_identifier_token27] = ACTIONS(1216), - [aux_sym_cmd_identifier_token28] = ACTIONS(1216), - [aux_sym_cmd_identifier_token29] = ACTIONS(1216), - [aux_sym_cmd_identifier_token30] = ACTIONS(1216), - [aux_sym_cmd_identifier_token31] = ACTIONS(1219), - [aux_sym_cmd_identifier_token32] = ACTIONS(1219), - [aux_sym_cmd_identifier_token33] = ACTIONS(1219), - [aux_sym_cmd_identifier_token34] = ACTIONS(1219), - [aux_sym_cmd_identifier_token35] = ACTIONS(1219), - [aux_sym_cmd_identifier_token36] = ACTIONS(1216), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1225), - [aux_sym_cmd_identifier_token38] = ACTIONS(1228), - [aux_sym_cmd_identifier_token39] = ACTIONS(1231), - [aux_sym_cmd_identifier_token40] = ACTIONS(1231), - [anon_sym_LBRACK] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_DOT_DOT] = ACTIONS(1264), - [anon_sym_try] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_where] = ACTIONS(1273), - [aux_sym_expr_unary_token1] = ACTIONS(1276), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), - [anon_sym_DOT_DOT_LT] = ACTIONS(1279), - [aux_sym__val_number_decimal_token1] = ACTIONS(1282), - [aux_sym__val_number_decimal_token2] = ACTIONS(1285), - [aux_sym__val_number_decimal_token3] = ACTIONS(1288), - [aux_sym__val_number_decimal_token4] = ACTIONS(1291), - [aux_sym__val_number_token1] = ACTIONS(1294), - [aux_sym__val_number_token2] = ACTIONS(1294), - [aux_sym__val_number_token3] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1297), - [anon_sym_0o] = ACTIONS(1300), - [anon_sym_0x] = ACTIONS(1300), - [sym_val_date] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1315), - [aux_sym_env_var_token1] = ACTIONS(1318), - [anon_sym_CARET] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1324), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(318), + [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(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [194] = { - [sym_cmd_identifier] = STATE(4714), - [sym__ctrl_expression] = STATE(5155), - [sym_ctrl_do] = STATE(5175), - [sym_ctrl_if] = STATE(5175), - [sym_ctrl_match] = STATE(5175), - [sym_ctrl_try] = STATE(5175), - [sym_ctrl_return] = STATE(5175), - [sym_pipe_element] = STATE(4713), - [sym_where_command] = STATE(5180), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(2055), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1665), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5180), + [sym_pipeline] = STATE(6749), + [sym_cmd_identifier] = STATE(4748), + [sym__ctrl_expression] = STATE(5131), + [sym_ctrl_do] = STATE(5133), + [sym_ctrl_if] = STATE(5133), + [sym_ctrl_match] = STATE(5133), + [sym_ctrl_try] = STATE(5133), + [sym_ctrl_return] = STATE(5133), + [sym_pipe_element] = STATE(4686), + [sym_where_command] = STATE(5165), + [sym__expression] = STATE(3942), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(2113), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(5165), [sym_comment] = STATE(194), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym_pipe_element_repeat2] = STATE(354), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(318), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -100682,2264 +96650,3251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), [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_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_token34] = ACTIONS(19), [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(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [195] = { - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(5007), - [sym_ctrl_do] = STATE(5008), - [sym_ctrl_if] = STATE(5008), + [sym_pipeline_parenthesized] = STATE(7085), + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), [sym_ctrl_return] = STATE(5008), - [sym_pipe_element] = STATE(4588), - [sym_where_command] = STATE(5009), - [sym__expression] = STATE(3832), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1929), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5009), + [sym_pipe_element_parenthesized] = STATE(4644), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym_pipe_element_repeat2] = STATE(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_do] = ACTIONS(413), - [anon_sym_if] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(421), - [anon_sym_return] = ACTIONS(423), - [anon_sym_where] = ACTIONS(209), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [196] = { - [sym_cmd_identifier] = STATE(4817), - [sym__ctrl_expression_parenthesized] = STATE(5186), - [sym_ctrl_do_parenthesized] = STATE(5188), - [sym_ctrl_if_parenthesized] = STATE(5188), - [sym_ctrl_match] = STATE(5188), - [sym_ctrl_try_parenthesized] = STATE(5188), - [sym_ctrl_return] = STATE(5188), - [sym_pipe_element_parenthesized] = STATE(4712), - [sym_where_command_parenthesized] = STATE(5214), - [sym__expression_parenthesized] = STATE(3873), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5061), + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(5013), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(847), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(196), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(371), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(371), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(371), - [aux_sym_cmd_identifier_token28] = ACTIONS(371), - [aux_sym_cmd_identifier_token29] = ACTIONS(371), - [aux_sym_cmd_identifier_token30] = ACTIONS(371), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_do] = ACTIONS(489), - [anon_sym_if] = ACTIONS(491), - [anon_sym_match] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(495), - [anon_sym_return] = ACTIONS(423), - [anon_sym_where] = ACTIONS(497), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(336), + [aux_sym_cmd_identifier_token1] = ACTIONS(1066), + [aux_sym_cmd_identifier_token2] = ACTIONS(1069), + [aux_sym_cmd_identifier_token3] = ACTIONS(1069), + [aux_sym_cmd_identifier_token4] = ACTIONS(1069), + [aux_sym_cmd_identifier_token5] = ACTIONS(1069), + [aux_sym_cmd_identifier_token6] = ACTIONS(1069), + [aux_sym_cmd_identifier_token7] = ACTIONS(1069), + [aux_sym_cmd_identifier_token8] = ACTIONS(1069), + [aux_sym_cmd_identifier_token9] = ACTIONS(1066), + [aux_sym_cmd_identifier_token10] = ACTIONS(1069), + [aux_sym_cmd_identifier_token11] = ACTIONS(1069), + [aux_sym_cmd_identifier_token12] = ACTIONS(1069), + [aux_sym_cmd_identifier_token13] = ACTIONS(1066), + [aux_sym_cmd_identifier_token14] = ACTIONS(1069), + [aux_sym_cmd_identifier_token15] = ACTIONS(1066), + [aux_sym_cmd_identifier_token16] = ACTIONS(1069), + [aux_sym_cmd_identifier_token17] = ACTIONS(1069), + [aux_sym_cmd_identifier_token18] = ACTIONS(1069), + [aux_sym_cmd_identifier_token19] = ACTIONS(1069), + [aux_sym_cmd_identifier_token20] = ACTIONS(1069), + [aux_sym_cmd_identifier_token21] = ACTIONS(1069), + [aux_sym_cmd_identifier_token22] = ACTIONS(1069), + [aux_sym_cmd_identifier_token23] = ACTIONS(1069), + [aux_sym_cmd_identifier_token24] = ACTIONS(1069), + [aux_sym_cmd_identifier_token25] = ACTIONS(1069), + [aux_sym_cmd_identifier_token26] = ACTIONS(1069), + [aux_sym_cmd_identifier_token27] = ACTIONS(1069), + [aux_sym_cmd_identifier_token28] = ACTIONS(1069), + [aux_sym_cmd_identifier_token29] = ACTIONS(1069), + [aux_sym_cmd_identifier_token30] = ACTIONS(1069), + [aux_sym_cmd_identifier_token31] = ACTIONS(1069), + [aux_sym_cmd_identifier_token32] = ACTIONS(1069), + [aux_sym_cmd_identifier_token33] = ACTIONS(1069), + [aux_sym_cmd_identifier_token34] = ACTIONS(1066), + [aux_sym_cmd_identifier_token35] = ACTIONS(1069), + [aux_sym_cmd_identifier_token36] = ACTIONS(1069), + [aux_sym_cmd_identifier_token37] = ACTIONS(1069), + [aux_sym_cmd_identifier_token38] = ACTIONS(1066), + [aux_sym_cmd_identifier_token39] = ACTIONS(1069), + [aux_sym_cmd_identifier_token40] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_DASH2] = ACTIONS(1081), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1087), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_match] = ACTIONS(1096), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_DOT_DOT] = ACTIONS(1102), + [anon_sym_try] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_where] = ACTIONS(1111), + [aux_sym_expr_unary_token1] = ACTIONS(1114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1117), + [anon_sym_DOT_DOT_LT] = ACTIONS(1117), + [anon_sym_null] = ACTIONS(1120), + [anon_sym_true] = ACTIONS(1123), + [anon_sym_false] = ACTIONS(1123), + [aux_sym__val_number_decimal_token1] = ACTIONS(1126), + [aux_sym__val_number_decimal_token2] = ACTIONS(1129), + [aux_sym__val_number_decimal_token3] = ACTIONS(1132), + [aux_sym__val_number_decimal_token4] = ACTIONS(1135), + [aux_sym__val_number_token1] = ACTIONS(1138), + [aux_sym__val_number_token2] = ACTIONS(1138), + [aux_sym__val_number_token3] = ACTIONS(1138), + [aux_sym__val_number_token4] = ACTIONS(1141), + [aux_sym__val_number_token5] = ACTIONS(1141), + [aux_sym__val_number_token6] = ACTIONS(1141), + [anon_sym_0b] = ACTIONS(1144), + [anon_sym_0o] = ACTIONS(1147), + [anon_sym_0x] = ACTIONS(1147), + [sym_val_date] = ACTIONS(1150), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym__str_single_quotes] = ACTIONS(1156), + [sym__str_back_ticks] = ACTIONS(1156), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1159), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1162), + [aux_sym_env_var_token1] = ACTIONS(1165), + [anon_sym_CARET] = ACTIONS(1168), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1171), }, [197] = { - [sym_cmd_identifier] = STATE(7872), - [sym_expr_parenthesized] = STATE(7806), - [sym__spread_parenthesized] = STATE(7465), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(7806), - [sym_val_number] = STATE(7806), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7806), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7933), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4651), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), [sym_comment] = STATE(197), - [aux_sym_shebang_repeat1] = STATE(207), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(277), - [anon_sym_let] = ACTIONS(277), - [anon_sym_let_DASHenv] = ACTIONS(277), - [anon_sym_mut] = ACTIONS(277), - [anon_sym_const] = ACTIONS(277), - [aux_sym_cmd_identifier_token1] = ACTIONS(1327), - [aux_sym_cmd_identifier_token2] = ACTIONS(1327), - [aux_sym_cmd_identifier_token3] = ACTIONS(1327), - [aux_sym_cmd_identifier_token4] = ACTIONS(1327), - [aux_sym_cmd_identifier_token5] = ACTIONS(1327), - [aux_sym_cmd_identifier_token6] = ACTIONS(1327), - [aux_sym_cmd_identifier_token7] = ACTIONS(1327), - [aux_sym_cmd_identifier_token8] = ACTIONS(1327), - [aux_sym_cmd_identifier_token9] = ACTIONS(1327), - [aux_sym_cmd_identifier_token10] = ACTIONS(1327), - [aux_sym_cmd_identifier_token11] = ACTIONS(1327), - [aux_sym_cmd_identifier_token12] = ACTIONS(1327), - [aux_sym_cmd_identifier_token13] = ACTIONS(1327), - [aux_sym_cmd_identifier_token14] = ACTIONS(1327), - [aux_sym_cmd_identifier_token15] = ACTIONS(1327), - [aux_sym_cmd_identifier_token16] = ACTIONS(1327), - [aux_sym_cmd_identifier_token17] = ACTIONS(1327), - [aux_sym_cmd_identifier_token18] = ACTIONS(1327), - [aux_sym_cmd_identifier_token19] = ACTIONS(1327), - [aux_sym_cmd_identifier_token20] = ACTIONS(1327), - [aux_sym_cmd_identifier_token21] = ACTIONS(1327), - [aux_sym_cmd_identifier_token22] = ACTIONS(1327), - [aux_sym_cmd_identifier_token23] = ACTIONS(1327), - [aux_sym_cmd_identifier_token24] = ACTIONS(1327), - [aux_sym_cmd_identifier_token25] = ACTIONS(1327), - [aux_sym_cmd_identifier_token26] = ACTIONS(1327), - [aux_sym_cmd_identifier_token27] = ACTIONS(1327), - [aux_sym_cmd_identifier_token28] = ACTIONS(1327), - [aux_sym_cmd_identifier_token29] = ACTIONS(1327), - [aux_sym_cmd_identifier_token30] = ACTIONS(1327), - [aux_sym_cmd_identifier_token31] = ACTIONS(1327), - [aux_sym_cmd_identifier_token32] = ACTIONS(1327), - [aux_sym_cmd_identifier_token33] = ACTIONS(1327), - [aux_sym_cmd_identifier_token34] = ACTIONS(1327), - [aux_sym_cmd_identifier_token35] = ACTIONS(1327), - [aux_sym_cmd_identifier_token36] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [anon_sym_null] = ACTIONS(1329), - [aux_sym_cmd_identifier_token38] = ACTIONS(1331), - [aux_sym_cmd_identifier_token39] = ACTIONS(1333), - [aux_sym_cmd_identifier_token40] = ACTIONS(1333), - [sym__newline] = ACTIONS(1335), - [anon_sym_def] = ACTIONS(277), - [anon_sym_export_DASHenv] = ACTIONS(277), - [anon_sym_extern] = ACTIONS(277), - [anon_sym_module] = ACTIONS(277), - [anon_sym_use] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1339), - [anon_sym_error] = ACTIONS(277), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_break] = ACTIONS(277), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(277), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(277), - [anon_sym_do] = ACTIONS(277), - [anon_sym_if] = ACTIONS(277), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(277), - [anon_sym_RBRACE] = ACTIONS(295), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(277), - [anon_sym_source] = ACTIONS(277), - [anon_sym_source_DASHenv] = ACTIONS(277), - [anon_sym_register] = ACTIONS(277), - [anon_sym_hide] = ACTIONS(277), - [anon_sym_hide_DASHenv] = ACTIONS(277), - [anon_sym_overlay] = ACTIONS(277), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1341), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), - }, - [198] = { - [sym_comment] = STATE(198), - [aux_sym_shebang_repeat1] = STATE(198), - [anon_sym_export] = ACTIONS(1349), - [anon_sym_alias] = ACTIONS(1349), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_let_DASHenv] = ACTIONS(1349), - [anon_sym_mut] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [aux_sym_cmd_identifier_token1] = ACTIONS(1349), - [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(1349), - [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(1349), - [aux_sym_cmd_identifier_token14] = ACTIONS(1349), - [aux_sym_cmd_identifier_token15] = ACTIONS(1349), - [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(1349), - [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(1349), - [anon_sym_true] = ACTIONS(1351), - [anon_sym_false] = ACTIONS(1351), - [anon_sym_null] = ACTIONS(1351), - [aux_sym_cmd_identifier_token38] = ACTIONS(1349), - [aux_sym_cmd_identifier_token39] = ACTIONS(1351), - [aux_sym_cmd_identifier_token40] = ACTIONS(1351), - [sym__newline] = ACTIONS(1353), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_def] = ACTIONS(1349), - [anon_sym_export_DASHenv] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym_module] = ACTIONS(1349), - [anon_sym_use] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_DOLLAR] = ACTIONS(1349), - [anon_sym_error] = ACTIONS(1349), - [anon_sym_list] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_in] = ACTIONS(1349), - [anon_sym_loop] = ACTIONS(1349), - [anon_sym_make] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_do] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_else] = ACTIONS(1349), - [anon_sym_match] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_try] = ACTIONS(1349), - [anon_sym_catch] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_source] = ACTIONS(1349), - [anon_sym_source_DASHenv] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_hide] = ACTIONS(1349), - [anon_sym_hide_DASHenv] = ACTIONS(1349), - [anon_sym_overlay] = ACTIONS(1349), - [anon_sym_new] = ACTIONS(1349), - [anon_sym_as] = ACTIONS(1349), - [anon_sym_where] = ACTIONS(1351), - [aux_sym_expr_unary_token1] = ACTIONS(1351), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), - [anon_sym_DOT_DOT_LT] = ACTIONS(1351), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1351), - [aux_sym__val_number_decimal_token1] = ACTIONS(1349), - [aux_sym__val_number_decimal_token2] = ACTIONS(1351), - [aux_sym__val_number_decimal_token3] = ACTIONS(1351), - [aux_sym__val_number_decimal_token4] = ACTIONS(1351), - [aux_sym__val_number_token1] = ACTIONS(1351), - [aux_sym__val_number_token2] = ACTIONS(1351), - [aux_sym__val_number_token3] = ACTIONS(1351), - [anon_sym_0b] = ACTIONS(1349), - [anon_sym_0o] = ACTIONS(1349), - [anon_sym_0x] = ACTIONS(1349), - [sym_val_date] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [sym__str_single_quotes] = ACTIONS(1351), - [sym__str_back_ticks] = ACTIONS(1351), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1351), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1351), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1349), - [aux_sym_env_var_token1] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1351), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1351), - }, - [199] = { - [sym_comment] = STATE(199), - [anon_sym_export] = ACTIONS(1356), - [anon_sym_alias] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_let_DASHenv] = ACTIONS(1356), - [anon_sym_mut] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [aux_sym_cmd_identifier_token1] = ACTIONS(1356), - [aux_sym_cmd_identifier_token2] = ACTIONS(1356), - [aux_sym_cmd_identifier_token3] = ACTIONS(1356), - [aux_sym_cmd_identifier_token4] = ACTIONS(1356), - [aux_sym_cmd_identifier_token5] = ACTIONS(1356), - [aux_sym_cmd_identifier_token6] = ACTIONS(1356), - [aux_sym_cmd_identifier_token7] = ACTIONS(1356), - [aux_sym_cmd_identifier_token8] = ACTIONS(1356), - [aux_sym_cmd_identifier_token9] = ACTIONS(1356), - [aux_sym_cmd_identifier_token10] = ACTIONS(1356), - [aux_sym_cmd_identifier_token11] = ACTIONS(1356), - [aux_sym_cmd_identifier_token12] = ACTIONS(1356), - [aux_sym_cmd_identifier_token13] = ACTIONS(1356), - [aux_sym_cmd_identifier_token14] = ACTIONS(1356), - [aux_sym_cmd_identifier_token15] = ACTIONS(1356), - [aux_sym_cmd_identifier_token16] = ACTIONS(1356), - [aux_sym_cmd_identifier_token17] = ACTIONS(1356), - [aux_sym_cmd_identifier_token18] = ACTIONS(1356), - [aux_sym_cmd_identifier_token19] = ACTIONS(1356), - [aux_sym_cmd_identifier_token20] = ACTIONS(1356), - [aux_sym_cmd_identifier_token21] = ACTIONS(1356), - [aux_sym_cmd_identifier_token22] = ACTIONS(1356), - [aux_sym_cmd_identifier_token23] = ACTIONS(1356), - [aux_sym_cmd_identifier_token24] = ACTIONS(1356), - [aux_sym_cmd_identifier_token25] = ACTIONS(1356), - [aux_sym_cmd_identifier_token26] = ACTIONS(1356), - [aux_sym_cmd_identifier_token27] = ACTIONS(1356), - [aux_sym_cmd_identifier_token28] = ACTIONS(1356), - [aux_sym_cmd_identifier_token29] = ACTIONS(1356), - [aux_sym_cmd_identifier_token30] = ACTIONS(1356), - [aux_sym_cmd_identifier_token31] = ACTIONS(1356), - [aux_sym_cmd_identifier_token32] = ACTIONS(1356), - [aux_sym_cmd_identifier_token33] = ACTIONS(1356), - [aux_sym_cmd_identifier_token34] = ACTIONS(1356), - [aux_sym_cmd_identifier_token35] = ACTIONS(1356), - [aux_sym_cmd_identifier_token36] = ACTIONS(1356), - [anon_sym_true] = ACTIONS(1359), - [anon_sym_false] = ACTIONS(1359), - [anon_sym_null] = ACTIONS(1359), - [aux_sym_cmd_identifier_token38] = ACTIONS(1356), - [aux_sym_cmd_identifier_token39] = ACTIONS(1359), - [aux_sym_cmd_identifier_token40] = ACTIONS(1359), - [sym__newline] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_def] = ACTIONS(1356), - [anon_sym_export_DASHenv] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_module] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_error] = ACTIONS(1356), - [anon_sym_list] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_in] = ACTIONS(1364), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_make] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1364), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_source] = ACTIONS(1356), - [anon_sym_source_DASHenv] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_hide] = ACTIONS(1356), - [anon_sym_hide_DASHenv] = ACTIONS(1356), - [anon_sym_overlay] = ACTIONS(1356), - [anon_sym_new] = ACTIONS(1364), - [anon_sym_as] = ACTIONS(1364), - [anon_sym_where] = ACTIONS(1359), - [aux_sym_expr_unary_token1] = ACTIONS(1359), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_DOT_DOT_LT] = ACTIONS(1359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1356), - [aux_sym__val_number_decimal_token2] = ACTIONS(1359), - [aux_sym__val_number_decimal_token3] = ACTIONS(1359), - [aux_sym__val_number_decimal_token4] = ACTIONS(1359), - [aux_sym__val_number_token1] = ACTIONS(1359), - [aux_sym__val_number_token2] = ACTIONS(1359), - [aux_sym__val_number_token3] = ACTIONS(1359), - [anon_sym_0b] = ACTIONS(1356), - [anon_sym_0o] = ACTIONS(1356), - [anon_sym_0x] = ACTIONS(1356), - [sym_val_date] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [sym__str_single_quotes] = ACTIONS(1359), - [sym__str_back_ticks] = ACTIONS(1359), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1359), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [aux_sym_env_var_token1] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1359), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1359), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [198] = { + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4515), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), + [sym_comment] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(203), + [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [199] = { + [sym_cmd_identifier] = STATE(4636), + [sym__ctrl_expression_parenthesized] = STATE(5007), + [sym_ctrl_do_parenthesized] = STATE(5008), + [sym_ctrl_if_parenthesized] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try_parenthesized] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element_parenthesized] = STATE(4651), + [sym_where_command_parenthesized] = STATE(5022), + [sym__expression_parenthesized] = STATE(3951), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5104), + [sym_comment] = STATE(199), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [200] = { - [sym_cmd_identifier] = STATE(7872), - [sym_expr_parenthesized] = STATE(7806), - [sym__spread_parenthesized] = STATE(7465), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(7806), - [sym_val_number] = STATE(7806), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7806), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7880), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4515), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(200), - [aux_sym_shebang_repeat1] = STATE(207), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(277), - [anon_sym_let] = ACTIONS(277), - [anon_sym_let_DASHenv] = ACTIONS(277), - [anon_sym_mut] = ACTIONS(277), - [anon_sym_const] = ACTIONS(277), - [aux_sym_cmd_identifier_token1] = ACTIONS(1327), - [aux_sym_cmd_identifier_token2] = ACTIONS(1327), - [aux_sym_cmd_identifier_token3] = ACTIONS(1327), - [aux_sym_cmd_identifier_token4] = ACTIONS(1327), - [aux_sym_cmd_identifier_token5] = ACTIONS(1327), - [aux_sym_cmd_identifier_token6] = ACTIONS(1327), - [aux_sym_cmd_identifier_token7] = ACTIONS(1327), - [aux_sym_cmd_identifier_token8] = ACTIONS(1327), - [aux_sym_cmd_identifier_token9] = ACTIONS(1327), - [aux_sym_cmd_identifier_token10] = ACTIONS(1327), - [aux_sym_cmd_identifier_token11] = ACTIONS(1327), - [aux_sym_cmd_identifier_token12] = ACTIONS(1327), - [aux_sym_cmd_identifier_token13] = ACTIONS(1327), - [aux_sym_cmd_identifier_token14] = ACTIONS(1327), - [aux_sym_cmd_identifier_token15] = ACTIONS(1327), - [aux_sym_cmd_identifier_token16] = ACTIONS(1327), - [aux_sym_cmd_identifier_token17] = ACTIONS(1327), - [aux_sym_cmd_identifier_token18] = ACTIONS(1327), - [aux_sym_cmd_identifier_token19] = ACTIONS(1327), - [aux_sym_cmd_identifier_token20] = ACTIONS(1327), - [aux_sym_cmd_identifier_token21] = ACTIONS(1327), - [aux_sym_cmd_identifier_token22] = ACTIONS(1327), - [aux_sym_cmd_identifier_token23] = ACTIONS(1327), - [aux_sym_cmd_identifier_token24] = ACTIONS(1327), - [aux_sym_cmd_identifier_token25] = ACTIONS(1327), - [aux_sym_cmd_identifier_token26] = ACTIONS(1327), - [aux_sym_cmd_identifier_token27] = ACTIONS(1327), - [aux_sym_cmd_identifier_token28] = ACTIONS(1327), - [aux_sym_cmd_identifier_token29] = ACTIONS(1327), - [aux_sym_cmd_identifier_token30] = ACTIONS(1327), - [aux_sym_cmd_identifier_token31] = ACTIONS(1327), - [aux_sym_cmd_identifier_token32] = ACTIONS(1327), - [aux_sym_cmd_identifier_token33] = ACTIONS(1327), - [aux_sym_cmd_identifier_token34] = ACTIONS(1327), - [aux_sym_cmd_identifier_token35] = ACTIONS(1327), - [aux_sym_cmd_identifier_token36] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [anon_sym_null] = ACTIONS(1329), - [aux_sym_cmd_identifier_token38] = ACTIONS(1331), - [aux_sym_cmd_identifier_token39] = ACTIONS(1333), - [aux_sym_cmd_identifier_token40] = ACTIONS(1333), - [sym__newline] = ACTIONS(1335), - [anon_sym_def] = ACTIONS(277), - [anon_sym_export_DASHenv] = ACTIONS(277), - [anon_sym_extern] = ACTIONS(277), - [anon_sym_module] = ACTIONS(277), - [anon_sym_use] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1339), - [anon_sym_error] = ACTIONS(277), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_break] = ACTIONS(277), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(277), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(277), - [anon_sym_do] = ACTIONS(277), - [anon_sym_if] = ACTIONS(277), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(277), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(277), - [anon_sym_source] = ACTIONS(277), - [anon_sym_source_DASHenv] = ACTIONS(277), - [anon_sym_register] = ACTIONS(277), - [anon_sym_hide] = ACTIONS(277), - [anon_sym_hide_DASHenv] = ACTIONS(277), - [anon_sym_overlay] = ACTIONS(277), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1341), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_pipeline_repeat1] = STATE(203), + [aux_sym_pipe_element_repeat2] = STATE(327), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [201] = { - [sym_cmd_identifier] = STATE(7872), - [sym_expr_parenthesized] = STATE(7806), - [sym__spread_parenthesized] = STATE(7465), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(7806), - [sym_val_number] = STATE(7806), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7806), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7720), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(4515), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(201), - [aux_sym_shebang_repeat1] = STATE(207), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(277), - [anon_sym_let] = ACTIONS(277), - [anon_sym_let_DASHenv] = ACTIONS(277), - [anon_sym_mut] = ACTIONS(277), - [anon_sym_const] = ACTIONS(277), - [aux_sym_cmd_identifier_token1] = ACTIONS(1327), - [aux_sym_cmd_identifier_token2] = ACTIONS(1327), - [aux_sym_cmd_identifier_token3] = ACTIONS(1327), - [aux_sym_cmd_identifier_token4] = ACTIONS(1327), - [aux_sym_cmd_identifier_token5] = ACTIONS(1327), - [aux_sym_cmd_identifier_token6] = ACTIONS(1327), - [aux_sym_cmd_identifier_token7] = ACTIONS(1327), - [aux_sym_cmd_identifier_token8] = ACTIONS(1327), - [aux_sym_cmd_identifier_token9] = ACTIONS(1327), - [aux_sym_cmd_identifier_token10] = ACTIONS(1327), - [aux_sym_cmd_identifier_token11] = ACTIONS(1327), - [aux_sym_cmd_identifier_token12] = ACTIONS(1327), - [aux_sym_cmd_identifier_token13] = ACTIONS(1327), - [aux_sym_cmd_identifier_token14] = ACTIONS(1327), - [aux_sym_cmd_identifier_token15] = ACTIONS(1327), - [aux_sym_cmd_identifier_token16] = ACTIONS(1327), - [aux_sym_cmd_identifier_token17] = ACTIONS(1327), - [aux_sym_cmd_identifier_token18] = ACTIONS(1327), - [aux_sym_cmd_identifier_token19] = ACTIONS(1327), - [aux_sym_cmd_identifier_token20] = ACTIONS(1327), - [aux_sym_cmd_identifier_token21] = ACTIONS(1327), - [aux_sym_cmd_identifier_token22] = ACTIONS(1327), - [aux_sym_cmd_identifier_token23] = ACTIONS(1327), - [aux_sym_cmd_identifier_token24] = ACTIONS(1327), - [aux_sym_cmd_identifier_token25] = ACTIONS(1327), - [aux_sym_cmd_identifier_token26] = ACTIONS(1327), - [aux_sym_cmd_identifier_token27] = ACTIONS(1327), - [aux_sym_cmd_identifier_token28] = ACTIONS(1327), - [aux_sym_cmd_identifier_token29] = ACTIONS(1327), - [aux_sym_cmd_identifier_token30] = ACTIONS(1327), - [aux_sym_cmd_identifier_token31] = ACTIONS(1327), - [aux_sym_cmd_identifier_token32] = ACTIONS(1327), - [aux_sym_cmd_identifier_token33] = ACTIONS(1327), - [aux_sym_cmd_identifier_token34] = ACTIONS(1327), - [aux_sym_cmd_identifier_token35] = ACTIONS(1327), - [aux_sym_cmd_identifier_token36] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [anon_sym_null] = ACTIONS(1329), - [aux_sym_cmd_identifier_token38] = ACTIONS(1331), - [aux_sym_cmd_identifier_token39] = ACTIONS(1333), - [aux_sym_cmd_identifier_token40] = ACTIONS(1333), - [sym__newline] = ACTIONS(1335), - [anon_sym_def] = ACTIONS(277), - [anon_sym_export_DASHenv] = ACTIONS(277), - [anon_sym_extern] = ACTIONS(277), - [anon_sym_module] = ACTIONS(277), - [anon_sym_use] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1339), - [anon_sym_error] = ACTIONS(277), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_break] = ACTIONS(277), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(277), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(277), - [anon_sym_do] = ACTIONS(277), - [anon_sym_if] = ACTIONS(277), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(277), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(277), - [anon_sym_source] = ACTIONS(277), - [anon_sym_source_DASHenv] = ACTIONS(277), - [anon_sym_register] = ACTIONS(277), - [anon_sym_hide] = ACTIONS(277), - [anon_sym_hide_DASHenv] = ACTIONS(277), - [anon_sym_overlay] = ACTIONS(277), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1341), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_pipeline_repeat1] = STATE(203), + [aux_sym_pipe_element_repeat2] = STATE(329), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [202] = { - [sym_cmd_identifier] = STATE(7872), - [sym_expr_parenthesized] = STATE(7806), - [sym__spread_parenthesized] = STATE(7465), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(7806), - [sym_val_number] = STATE(7806), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7806), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7921), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), + [sym_cmd_identifier] = STATE(4748), + [sym__ctrl_expression] = STATE(5131), + [sym_ctrl_do] = STATE(5133), + [sym_ctrl_if] = STATE(5133), + [sym_ctrl_match] = STATE(5133), + [sym_ctrl_try] = STATE(5133), + [sym_ctrl_return] = STATE(5133), + [sym_pipe_element] = STATE(4687), + [sym_where_command] = STATE(5165), + [sym__expression] = STATE(3942), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(2113), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(5165), [sym_comment] = STATE(202), - [aux_sym_shebang_repeat1] = STATE(207), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(277), - [anon_sym_let] = ACTIONS(277), - [anon_sym_let_DASHenv] = ACTIONS(277), - [anon_sym_mut] = ACTIONS(277), - [anon_sym_const] = ACTIONS(277), - [aux_sym_cmd_identifier_token1] = ACTIONS(1327), - [aux_sym_cmd_identifier_token2] = ACTIONS(1327), - [aux_sym_cmd_identifier_token3] = ACTIONS(1327), - [aux_sym_cmd_identifier_token4] = ACTIONS(1327), - [aux_sym_cmd_identifier_token5] = ACTIONS(1327), - [aux_sym_cmd_identifier_token6] = ACTIONS(1327), - [aux_sym_cmd_identifier_token7] = ACTIONS(1327), - [aux_sym_cmd_identifier_token8] = ACTIONS(1327), - [aux_sym_cmd_identifier_token9] = ACTIONS(1327), - [aux_sym_cmd_identifier_token10] = ACTIONS(1327), - [aux_sym_cmd_identifier_token11] = ACTIONS(1327), - [aux_sym_cmd_identifier_token12] = ACTIONS(1327), - [aux_sym_cmd_identifier_token13] = ACTIONS(1327), - [aux_sym_cmd_identifier_token14] = ACTIONS(1327), - [aux_sym_cmd_identifier_token15] = ACTIONS(1327), - [aux_sym_cmd_identifier_token16] = ACTIONS(1327), - [aux_sym_cmd_identifier_token17] = ACTIONS(1327), - [aux_sym_cmd_identifier_token18] = ACTIONS(1327), - [aux_sym_cmd_identifier_token19] = ACTIONS(1327), - [aux_sym_cmd_identifier_token20] = ACTIONS(1327), - [aux_sym_cmd_identifier_token21] = ACTIONS(1327), - [aux_sym_cmd_identifier_token22] = ACTIONS(1327), - [aux_sym_cmd_identifier_token23] = ACTIONS(1327), - [aux_sym_cmd_identifier_token24] = ACTIONS(1327), - [aux_sym_cmd_identifier_token25] = ACTIONS(1327), - [aux_sym_cmd_identifier_token26] = ACTIONS(1327), - [aux_sym_cmd_identifier_token27] = ACTIONS(1327), - [aux_sym_cmd_identifier_token28] = ACTIONS(1327), - [aux_sym_cmd_identifier_token29] = ACTIONS(1327), - [aux_sym_cmd_identifier_token30] = ACTIONS(1327), - [aux_sym_cmd_identifier_token31] = ACTIONS(1327), - [aux_sym_cmd_identifier_token32] = ACTIONS(1327), - [aux_sym_cmd_identifier_token33] = ACTIONS(1327), - [aux_sym_cmd_identifier_token34] = ACTIONS(1327), - [aux_sym_cmd_identifier_token35] = ACTIONS(1327), - [aux_sym_cmd_identifier_token36] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [anon_sym_null] = ACTIONS(1329), - [aux_sym_cmd_identifier_token38] = ACTIONS(1331), - [aux_sym_cmd_identifier_token39] = ACTIONS(1333), - [aux_sym_cmd_identifier_token40] = ACTIONS(1333), - [sym__newline] = ACTIONS(1335), - [anon_sym_def] = ACTIONS(277), - [anon_sym_export_DASHenv] = ACTIONS(277), - [anon_sym_extern] = ACTIONS(277), - [anon_sym_module] = ACTIONS(277), - [anon_sym_use] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1339), - [anon_sym_error] = ACTIONS(277), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_break] = ACTIONS(277), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(277), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(277), - [anon_sym_do] = ACTIONS(277), - [anon_sym_if] = ACTIONS(277), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(277), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(277), - [anon_sym_source] = ACTIONS(277), - [anon_sym_source_DASHenv] = ACTIONS(277), - [anon_sym_register] = ACTIONS(277), - [anon_sym_hide] = ACTIONS(277), - [anon_sym_hide_DASHenv] = ACTIONS(277), - [anon_sym_overlay] = ACTIONS(277), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1341), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_pipeline_repeat1] = STATE(203), + [aux_sym_pipe_element_repeat2] = STATE(318), + [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(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [203] = { - [sym_cmd_identifier] = STATE(7872), - [sym_expr_parenthesized] = STATE(7806), - [sym__spread_parenthesized] = STATE(7465), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(7806), - [sym_val_number] = STATE(7806), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7806), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(7465), - [sym_record_body] = STATE(7890), - [sym_record_entry] = STATE(6808), - [sym__record_key] = STATE(7872), + [sym_cmd_identifier] = STATE(4592), + [sym__ctrl_expression] = STATE(4965), + [sym_ctrl_do] = STATE(4966), + [sym_ctrl_if] = STATE(4966), + [sym_ctrl_match] = STATE(4966), + [sym_ctrl_try] = STATE(4966), + [sym_ctrl_return] = STATE(4966), + [sym_pipe_element] = STATE(5159), + [sym_where_command] = STATE(4967), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(847), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4967), [sym_comment] = STATE(203), - [aux_sym_shebang_repeat1] = STATE(207), - [aux_sym_record_body_repeat1] = STATE(211), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(277), - [anon_sym_let] = ACTIONS(277), - [anon_sym_let_DASHenv] = ACTIONS(277), - [anon_sym_mut] = ACTIONS(277), - [anon_sym_const] = ACTIONS(277), - [aux_sym_cmd_identifier_token1] = ACTIONS(1327), - [aux_sym_cmd_identifier_token2] = ACTIONS(1327), - [aux_sym_cmd_identifier_token3] = ACTIONS(1327), - [aux_sym_cmd_identifier_token4] = ACTIONS(1327), - [aux_sym_cmd_identifier_token5] = ACTIONS(1327), - [aux_sym_cmd_identifier_token6] = ACTIONS(1327), - [aux_sym_cmd_identifier_token7] = ACTIONS(1327), - [aux_sym_cmd_identifier_token8] = ACTIONS(1327), - [aux_sym_cmd_identifier_token9] = ACTIONS(1327), - [aux_sym_cmd_identifier_token10] = ACTIONS(1327), - [aux_sym_cmd_identifier_token11] = ACTIONS(1327), - [aux_sym_cmd_identifier_token12] = ACTIONS(1327), - [aux_sym_cmd_identifier_token13] = ACTIONS(1327), - [aux_sym_cmd_identifier_token14] = ACTIONS(1327), - [aux_sym_cmd_identifier_token15] = ACTIONS(1327), - [aux_sym_cmd_identifier_token16] = ACTIONS(1327), - [aux_sym_cmd_identifier_token17] = ACTIONS(1327), - [aux_sym_cmd_identifier_token18] = ACTIONS(1327), - [aux_sym_cmd_identifier_token19] = ACTIONS(1327), - [aux_sym_cmd_identifier_token20] = ACTIONS(1327), - [aux_sym_cmd_identifier_token21] = ACTIONS(1327), - [aux_sym_cmd_identifier_token22] = ACTIONS(1327), - [aux_sym_cmd_identifier_token23] = ACTIONS(1327), - [aux_sym_cmd_identifier_token24] = ACTIONS(1327), - [aux_sym_cmd_identifier_token25] = ACTIONS(1327), - [aux_sym_cmd_identifier_token26] = ACTIONS(1327), - [aux_sym_cmd_identifier_token27] = ACTIONS(1327), - [aux_sym_cmd_identifier_token28] = ACTIONS(1327), - [aux_sym_cmd_identifier_token29] = ACTIONS(1327), - [aux_sym_cmd_identifier_token30] = ACTIONS(1327), - [aux_sym_cmd_identifier_token31] = ACTIONS(1327), - [aux_sym_cmd_identifier_token32] = ACTIONS(1327), - [aux_sym_cmd_identifier_token33] = ACTIONS(1327), - [aux_sym_cmd_identifier_token34] = ACTIONS(1327), - [aux_sym_cmd_identifier_token35] = ACTIONS(1327), - [aux_sym_cmd_identifier_token36] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [anon_sym_null] = ACTIONS(1329), - [aux_sym_cmd_identifier_token38] = ACTIONS(1331), - [aux_sym_cmd_identifier_token39] = ACTIONS(1333), - [aux_sym_cmd_identifier_token40] = ACTIONS(1333), - [sym__newline] = ACTIONS(1335), - [anon_sym_def] = ACTIONS(277), - [anon_sym_export_DASHenv] = ACTIONS(277), - [anon_sym_extern] = ACTIONS(277), - [anon_sym_module] = ACTIONS(277), - [anon_sym_use] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1339), - [anon_sym_error] = ACTIONS(277), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_break] = ACTIONS(277), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(277), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(277), - [anon_sym_do] = ACTIONS(277), - [anon_sym_if] = ACTIONS(277), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(277), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(277), - [anon_sym_source] = ACTIONS(277), - [anon_sym_source_DASHenv] = ACTIONS(277), - [anon_sym_register] = ACTIONS(277), - [anon_sym_hide] = ACTIONS(277), - [anon_sym_hide_DASHenv] = ACTIONS(277), - [anon_sym_overlay] = ACTIONS(277), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1341), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_pipeline_repeat1] = STATE(203), + [aux_sym_pipe_element_repeat2] = STATE(338), + [aux_sym_cmd_identifier_token1] = ACTIONS(1174), + [aux_sym_cmd_identifier_token2] = ACTIONS(1177), + [aux_sym_cmd_identifier_token3] = ACTIONS(1177), + [aux_sym_cmd_identifier_token4] = ACTIONS(1177), + [aux_sym_cmd_identifier_token5] = ACTIONS(1177), + [aux_sym_cmd_identifier_token6] = ACTIONS(1177), + [aux_sym_cmd_identifier_token7] = ACTIONS(1177), + [aux_sym_cmd_identifier_token8] = ACTIONS(1177), + [aux_sym_cmd_identifier_token9] = ACTIONS(1174), + [aux_sym_cmd_identifier_token10] = ACTIONS(1177), + [aux_sym_cmd_identifier_token11] = ACTIONS(1177), + [aux_sym_cmd_identifier_token12] = ACTIONS(1177), + [aux_sym_cmd_identifier_token13] = ACTIONS(1174), + [aux_sym_cmd_identifier_token14] = ACTIONS(1177), + [aux_sym_cmd_identifier_token15] = ACTIONS(1174), + [aux_sym_cmd_identifier_token16] = ACTIONS(1177), + [aux_sym_cmd_identifier_token17] = ACTIONS(1177), + [aux_sym_cmd_identifier_token18] = ACTIONS(1177), + [aux_sym_cmd_identifier_token19] = ACTIONS(1177), + [aux_sym_cmd_identifier_token20] = ACTIONS(1177), + [aux_sym_cmd_identifier_token21] = ACTIONS(1177), + [aux_sym_cmd_identifier_token22] = ACTIONS(1177), + [aux_sym_cmd_identifier_token23] = ACTIONS(1177), + [aux_sym_cmd_identifier_token24] = ACTIONS(1177), + [aux_sym_cmd_identifier_token25] = ACTIONS(1177), + [aux_sym_cmd_identifier_token26] = ACTIONS(1177), + [aux_sym_cmd_identifier_token27] = ACTIONS(1177), + [aux_sym_cmd_identifier_token28] = ACTIONS(1177), + [aux_sym_cmd_identifier_token29] = ACTIONS(1177), + [aux_sym_cmd_identifier_token30] = ACTIONS(1177), + [aux_sym_cmd_identifier_token31] = ACTIONS(1177), + [aux_sym_cmd_identifier_token32] = ACTIONS(1177), + [aux_sym_cmd_identifier_token33] = ACTIONS(1177), + [aux_sym_cmd_identifier_token34] = ACTIONS(1174), + [aux_sym_cmd_identifier_token35] = ACTIONS(1177), + [aux_sym_cmd_identifier_token36] = ACTIONS(1177), + [aux_sym_cmd_identifier_token37] = ACTIONS(1177), + [aux_sym_cmd_identifier_token38] = ACTIONS(1174), + [aux_sym_cmd_identifier_token39] = ACTIONS(1177), + [aux_sym_cmd_identifier_token40] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_DOLLAR] = ACTIONS(1186), + [anon_sym_DASH2] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1192), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_where] = ACTIONS(1219), + [aux_sym_expr_unary_token1] = ACTIONS(1222), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_DOT_DOT_LT] = ACTIONS(1225), + [anon_sym_null] = ACTIONS(1228), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), + [aux_sym__val_number_decimal_token1] = ACTIONS(1234), + [aux_sym__val_number_decimal_token2] = ACTIONS(1237), + [aux_sym__val_number_decimal_token3] = ACTIONS(1240), + [aux_sym__val_number_decimal_token4] = ACTIONS(1243), + [aux_sym__val_number_token1] = ACTIONS(1246), + [aux_sym__val_number_token2] = ACTIONS(1246), + [aux_sym__val_number_token3] = ACTIONS(1246), + [aux_sym__val_number_token4] = ACTIONS(1249), + [aux_sym__val_number_token5] = ACTIONS(1249), + [aux_sym__val_number_token6] = ACTIONS(1249), + [anon_sym_0b] = ACTIONS(1252), + [anon_sym_0o] = ACTIONS(1255), + [anon_sym_0x] = ACTIONS(1255), + [sym_val_date] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1267), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [aux_sym_env_var_token1] = ACTIONS(1273), + [anon_sym_CARET] = ACTIONS(1276), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1279), }, [204] = { [sym_comment] = 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(1364), - [aux_sym_cmd_identifier_token2] = ACTIONS(1364), - [aux_sym_cmd_identifier_token3] = ACTIONS(1364), - [aux_sym_cmd_identifier_token4] = ACTIONS(1364), - [aux_sym_cmd_identifier_token5] = ACTIONS(1364), - [aux_sym_cmd_identifier_token6] = ACTIONS(1364), - [aux_sym_cmd_identifier_token7] = ACTIONS(1364), - [aux_sym_cmd_identifier_token8] = ACTIONS(1364), - [aux_sym_cmd_identifier_token9] = ACTIONS(1364), - [aux_sym_cmd_identifier_token10] = ACTIONS(1364), - [aux_sym_cmd_identifier_token11] = ACTIONS(1364), - [aux_sym_cmd_identifier_token12] = ACTIONS(1364), - [aux_sym_cmd_identifier_token13] = ACTIONS(1364), - [aux_sym_cmd_identifier_token14] = ACTIONS(1364), - [aux_sym_cmd_identifier_token15] = ACTIONS(1364), - [aux_sym_cmd_identifier_token16] = ACTIONS(1364), - [aux_sym_cmd_identifier_token17] = ACTIONS(1364), - [aux_sym_cmd_identifier_token18] = ACTIONS(1364), - [aux_sym_cmd_identifier_token19] = ACTIONS(1364), - [aux_sym_cmd_identifier_token20] = ACTIONS(1364), - [aux_sym_cmd_identifier_token21] = ACTIONS(1364), - [aux_sym_cmd_identifier_token22] = ACTIONS(1364), - [aux_sym_cmd_identifier_token23] = ACTIONS(1364), - [aux_sym_cmd_identifier_token24] = ACTIONS(1364), - [aux_sym_cmd_identifier_token25] = ACTIONS(1364), - [aux_sym_cmd_identifier_token26] = ACTIONS(1364), - [aux_sym_cmd_identifier_token27] = ACTIONS(1364), - [aux_sym_cmd_identifier_token28] = ACTIONS(1364), - [aux_sym_cmd_identifier_token29] = ACTIONS(1364), - [aux_sym_cmd_identifier_token30] = ACTIONS(1364), - [aux_sym_cmd_identifier_token31] = ACTIONS(1364), - [aux_sym_cmd_identifier_token32] = ACTIONS(1364), - [aux_sym_cmd_identifier_token33] = ACTIONS(1364), - [aux_sym_cmd_identifier_token34] = ACTIONS(1364), - [aux_sym_cmd_identifier_token35] = ACTIONS(1364), - [aux_sym_cmd_identifier_token36] = ACTIONS(1364), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [aux_sym_cmd_identifier_token38] = ACTIONS(1364), - [aux_sym_cmd_identifier_token39] = ACTIONS(1362), - [aux_sym_cmd_identifier_token40] = ACTIONS(1362), - [sym__newline] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [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_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1364), - [anon_sym_error] = ACTIONS(1364), - [anon_sym_list] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [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_LBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [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_where] = ACTIONS(1362), - [aux_sym_expr_unary_token1] = ACTIONS(1362), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1364), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_decimal_token4] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1364), - [anon_sym_0o] = ACTIONS(1364), - [anon_sym_0x] = ACTIONS(1364), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [aux_sym_env_var_token1] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1362), + [anon_sym_export] = ACTIONS(1282), + [anon_sym_alias] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_let_DASHenv] = ACTIONS(1282), + [anon_sym_mut] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [aux_sym_cmd_identifier_token1] = ACTIONS(1282), + [aux_sym_cmd_identifier_token2] = ACTIONS(1285), + [aux_sym_cmd_identifier_token3] = ACTIONS(1285), + [aux_sym_cmd_identifier_token4] = ACTIONS(1285), + [aux_sym_cmd_identifier_token5] = ACTIONS(1285), + [aux_sym_cmd_identifier_token6] = ACTIONS(1285), + [aux_sym_cmd_identifier_token7] = ACTIONS(1285), + [aux_sym_cmd_identifier_token8] = ACTIONS(1282), + [aux_sym_cmd_identifier_token9] = ACTIONS(1282), + [aux_sym_cmd_identifier_token10] = ACTIONS(1285), + [aux_sym_cmd_identifier_token11] = ACTIONS(1285), + [aux_sym_cmd_identifier_token12] = ACTIONS(1282), + [aux_sym_cmd_identifier_token13] = ACTIONS(1282), + [aux_sym_cmd_identifier_token14] = ACTIONS(1282), + [aux_sym_cmd_identifier_token15] = ACTIONS(1282), + [aux_sym_cmd_identifier_token16] = ACTIONS(1285), + [aux_sym_cmd_identifier_token17] = ACTIONS(1285), + [aux_sym_cmd_identifier_token18] = ACTIONS(1285), + [aux_sym_cmd_identifier_token19] = ACTIONS(1285), + [aux_sym_cmd_identifier_token20] = ACTIONS(1285), + [aux_sym_cmd_identifier_token21] = ACTIONS(1285), + [aux_sym_cmd_identifier_token22] = ACTIONS(1285), + [aux_sym_cmd_identifier_token23] = ACTIONS(1285), + [aux_sym_cmd_identifier_token24] = ACTIONS(1285), + [aux_sym_cmd_identifier_token25] = ACTIONS(1285), + [aux_sym_cmd_identifier_token26] = ACTIONS(1285), + [aux_sym_cmd_identifier_token27] = ACTIONS(1285), + [aux_sym_cmd_identifier_token28] = ACTIONS(1285), + [aux_sym_cmd_identifier_token29] = ACTIONS(1285), + [aux_sym_cmd_identifier_token30] = ACTIONS(1285), + [aux_sym_cmd_identifier_token31] = ACTIONS(1285), + [aux_sym_cmd_identifier_token32] = ACTIONS(1285), + [aux_sym_cmd_identifier_token33] = ACTIONS(1285), + [aux_sym_cmd_identifier_token34] = ACTIONS(1282), + [aux_sym_cmd_identifier_token35] = ACTIONS(1285), + [aux_sym_cmd_identifier_token36] = ACTIONS(1285), + [aux_sym_cmd_identifier_token37] = ACTIONS(1285), + [aux_sym_cmd_identifier_token38] = ACTIONS(1282), + [aux_sym_cmd_identifier_token39] = ACTIONS(1285), + [aux_sym_cmd_identifier_token40] = ACTIONS(1285), + [sym__newline] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_def] = ACTIONS(1282), + [anon_sym_export_DASHenv] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_module] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_error] = ACTIONS(1282), + [anon_sym_DASH2] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_in2] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_make] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_try] = ACTIONS(1282), + [anon_sym_catch] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_source] = ACTIONS(1282), + [anon_sym_source_DASHenv] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_hide] = ACTIONS(1282), + [anon_sym_hide_DASHenv] = ACTIONS(1282), + [anon_sym_overlay] = ACTIONS(1282), + [anon_sym_as] = ACTIONS(1290), + [anon_sym_where] = ACTIONS(1285), + [aux_sym_expr_unary_token1] = ACTIONS(1285), + [anon_sym_PLUS2] = ACTIONS(1290), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT_LT] = ACTIONS(1285), + [anon_sym_null] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1288), + [aux_sym__val_number_decimal_token1] = ACTIONS(1282), + [aux_sym__val_number_decimal_token2] = ACTIONS(1285), + [aux_sym__val_number_decimal_token3] = ACTIONS(1285), + [aux_sym__val_number_decimal_token4] = ACTIONS(1285), + [aux_sym__val_number_token1] = ACTIONS(1285), + [aux_sym__val_number_token2] = ACTIONS(1285), + [aux_sym__val_number_token3] = ACTIONS(1285), + [aux_sym__val_number_token4] = ACTIONS(1282), + [aux_sym__val_number_token5] = ACTIONS(1282), + [aux_sym__val_number_token6] = ACTIONS(1282), + [anon_sym_0b] = ACTIONS(1282), + [anon_sym_0o] = ACTIONS(1282), + [anon_sym_0x] = ACTIONS(1282), + [sym_val_date] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym__str_single_quotes] = ACTIONS(1285), + [sym__str_back_ticks] = ACTIONS(1285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), + [aux_sym_env_var_token1] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1285), }, [205] = { - [sym_cmd_identifier] = STATE(7923), - [sym__match_pattern_record_variable] = STATE(688), - [sym_expr_parenthesized] = STATE(7609), - [sym__spread_parenthesized] = STATE(697), - [sym__spread_variable] = STATE(698), - [sym_val_variable] = STATE(544), - [sym_val_number] = STATE(7609), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7609), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(697), - [sym_record_entry] = STATE(688), - [sym__record_key] = STATE(7923), [sym_comment] = STATE(205), - [aux_sym__match_pattern_record_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [aux_sym_cmd_identifier_token1] = ACTIONS(1327), - [aux_sym_cmd_identifier_token2] = ACTIONS(1327), - [aux_sym_cmd_identifier_token3] = ACTIONS(1327), - [aux_sym_cmd_identifier_token4] = ACTIONS(1327), - [aux_sym_cmd_identifier_token5] = ACTIONS(1327), - [aux_sym_cmd_identifier_token6] = ACTIONS(1327), - [aux_sym_cmd_identifier_token7] = ACTIONS(1327), - [aux_sym_cmd_identifier_token8] = ACTIONS(1327), - [aux_sym_cmd_identifier_token9] = ACTIONS(1327), - [aux_sym_cmd_identifier_token10] = ACTIONS(1327), - [aux_sym_cmd_identifier_token11] = ACTIONS(1327), - [aux_sym_cmd_identifier_token12] = ACTIONS(1327), - [aux_sym_cmd_identifier_token13] = ACTIONS(1327), - [aux_sym_cmd_identifier_token14] = ACTIONS(1327), - [aux_sym_cmd_identifier_token15] = ACTIONS(1327), - [aux_sym_cmd_identifier_token16] = ACTIONS(1327), - [aux_sym_cmd_identifier_token17] = ACTIONS(1327), - [aux_sym_cmd_identifier_token18] = ACTIONS(1327), - [aux_sym_cmd_identifier_token19] = ACTIONS(1327), - [aux_sym_cmd_identifier_token20] = ACTIONS(1327), - [aux_sym_cmd_identifier_token21] = ACTIONS(1327), - [aux_sym_cmd_identifier_token22] = ACTIONS(1327), - [aux_sym_cmd_identifier_token23] = ACTIONS(1327), - [aux_sym_cmd_identifier_token24] = ACTIONS(1327), - [aux_sym_cmd_identifier_token25] = ACTIONS(1327), - [aux_sym_cmd_identifier_token26] = ACTIONS(1327), - [aux_sym_cmd_identifier_token27] = ACTIONS(1327), - [aux_sym_cmd_identifier_token28] = ACTIONS(1327), - [aux_sym_cmd_identifier_token29] = ACTIONS(1327), - [aux_sym_cmd_identifier_token30] = ACTIONS(1327), - [aux_sym_cmd_identifier_token31] = ACTIONS(1327), - [aux_sym_cmd_identifier_token32] = ACTIONS(1327), - [aux_sym_cmd_identifier_token33] = ACTIONS(1327), - [aux_sym_cmd_identifier_token34] = ACTIONS(1327), - [aux_sym_cmd_identifier_token35] = ACTIONS(1327), - [aux_sym_cmd_identifier_token36] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [anon_sym_null] = ACTIONS(1329), - [aux_sym_cmd_identifier_token38] = ACTIONS(1331), - [aux_sym_cmd_identifier_token39] = ACTIONS(1333), - [aux_sym_cmd_identifier_token40] = ACTIONS(1333), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1382), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1384), - [aux_sym__val_number_decimal_token1] = ACTIONS(1341), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_shebang_repeat1] = STATE(205), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_alias] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_let_DASHenv] = ACTIONS(1294), + [anon_sym_mut] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [aux_sym_cmd_identifier_token1] = ACTIONS(1294), + [aux_sym_cmd_identifier_token2] = ACTIONS(1296), + [aux_sym_cmd_identifier_token3] = ACTIONS(1296), + [aux_sym_cmd_identifier_token4] = ACTIONS(1296), + [aux_sym_cmd_identifier_token5] = ACTIONS(1296), + [aux_sym_cmd_identifier_token6] = ACTIONS(1296), + [aux_sym_cmd_identifier_token7] = ACTIONS(1296), + [aux_sym_cmd_identifier_token8] = ACTIONS(1294), + [aux_sym_cmd_identifier_token9] = ACTIONS(1294), + [aux_sym_cmd_identifier_token10] = ACTIONS(1296), + [aux_sym_cmd_identifier_token11] = ACTIONS(1296), + [aux_sym_cmd_identifier_token12] = ACTIONS(1294), + [aux_sym_cmd_identifier_token13] = ACTIONS(1294), + [aux_sym_cmd_identifier_token14] = ACTIONS(1294), + [aux_sym_cmd_identifier_token15] = ACTIONS(1294), + [aux_sym_cmd_identifier_token16] = ACTIONS(1296), + [aux_sym_cmd_identifier_token17] = ACTIONS(1296), + [aux_sym_cmd_identifier_token18] = ACTIONS(1296), + [aux_sym_cmd_identifier_token19] = ACTIONS(1296), + [aux_sym_cmd_identifier_token20] = ACTIONS(1296), + [aux_sym_cmd_identifier_token21] = ACTIONS(1296), + [aux_sym_cmd_identifier_token22] = ACTIONS(1296), + [aux_sym_cmd_identifier_token23] = ACTIONS(1296), + [aux_sym_cmd_identifier_token24] = ACTIONS(1296), + [aux_sym_cmd_identifier_token25] = ACTIONS(1296), + [aux_sym_cmd_identifier_token26] = ACTIONS(1296), + [aux_sym_cmd_identifier_token27] = ACTIONS(1296), + [aux_sym_cmd_identifier_token28] = ACTIONS(1296), + [aux_sym_cmd_identifier_token29] = ACTIONS(1296), + [aux_sym_cmd_identifier_token30] = ACTIONS(1296), + [aux_sym_cmd_identifier_token31] = ACTIONS(1296), + [aux_sym_cmd_identifier_token32] = ACTIONS(1296), + [aux_sym_cmd_identifier_token33] = ACTIONS(1296), + [aux_sym_cmd_identifier_token34] = ACTIONS(1294), + [aux_sym_cmd_identifier_token35] = ACTIONS(1296), + [aux_sym_cmd_identifier_token36] = ACTIONS(1296), + [aux_sym_cmd_identifier_token37] = ACTIONS(1296), + [aux_sym_cmd_identifier_token38] = ACTIONS(1294), + [aux_sym_cmd_identifier_token39] = ACTIONS(1296), + [aux_sym_cmd_identifier_token40] = ACTIONS(1296), + [sym__newline] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_def] = ACTIONS(1294), + [anon_sym_export_DASHenv] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_error] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_in2] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_make] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_catch] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_source] = ACTIONS(1294), + [anon_sym_source_DASHenv] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_hide] = ACTIONS(1294), + [anon_sym_hide_DASHenv] = ACTIONS(1294), + [anon_sym_overlay] = ACTIONS(1294), + [anon_sym_as] = ACTIONS(1294), + [anon_sym_where] = ACTIONS(1296), + [aux_sym_expr_unary_token1] = ACTIONS(1296), + [anon_sym_PLUS2] = ACTIONS(1294), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), + [anon_sym_DOT_DOT_LT] = ACTIONS(1296), + [anon_sym_null] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1296), + [aux_sym__val_number_decimal_token1] = ACTIONS(1294), + [aux_sym__val_number_decimal_token2] = ACTIONS(1296), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(1296), + [aux_sym__val_number_token2] = ACTIONS(1296), + [aux_sym__val_number_token3] = ACTIONS(1296), + [aux_sym__val_number_token4] = ACTIONS(1294), + [aux_sym__val_number_token5] = ACTIONS(1294), + [aux_sym__val_number_token6] = ACTIONS(1294), + [anon_sym_0b] = ACTIONS(1294), + [anon_sym_0o] = ACTIONS(1294), + [anon_sym_0x] = ACTIONS(1294), + [sym_val_date] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__str_single_quotes] = ACTIONS(1296), + [sym__str_back_ticks] = ACTIONS(1296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1296), + [aux_sym_env_var_token1] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1296), }, [206] = { - [sym_cmd_identifier] = STATE(7923), - [sym__match_pattern_record_variable] = STATE(688), - [sym_expr_parenthesized] = STATE(7609), - [sym__spread_parenthesized] = STATE(697), - [sym__spread_variable] = STATE(698), - [sym_val_variable] = STATE(544), - [sym_val_number] = STATE(7609), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7609), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(697), - [sym_record_entry] = STATE(688), - [sym__record_key] = STATE(7923), [sym_comment] = STATE(206), - [aux_sym__match_pattern_record_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [aux_sym_cmd_identifier_token1] = ACTIONS(1327), - [aux_sym_cmd_identifier_token2] = ACTIONS(1327), - [aux_sym_cmd_identifier_token3] = ACTIONS(1327), - [aux_sym_cmd_identifier_token4] = ACTIONS(1327), - [aux_sym_cmd_identifier_token5] = ACTIONS(1327), - [aux_sym_cmd_identifier_token6] = ACTIONS(1327), - [aux_sym_cmd_identifier_token7] = ACTIONS(1327), - [aux_sym_cmd_identifier_token8] = ACTIONS(1327), - [aux_sym_cmd_identifier_token9] = ACTIONS(1327), - [aux_sym_cmd_identifier_token10] = ACTIONS(1327), - [aux_sym_cmd_identifier_token11] = ACTIONS(1327), - [aux_sym_cmd_identifier_token12] = ACTIONS(1327), - [aux_sym_cmd_identifier_token13] = ACTIONS(1327), - [aux_sym_cmd_identifier_token14] = ACTIONS(1327), - [aux_sym_cmd_identifier_token15] = ACTIONS(1327), - [aux_sym_cmd_identifier_token16] = ACTIONS(1327), - [aux_sym_cmd_identifier_token17] = ACTIONS(1327), - [aux_sym_cmd_identifier_token18] = ACTIONS(1327), - [aux_sym_cmd_identifier_token19] = ACTIONS(1327), - [aux_sym_cmd_identifier_token20] = ACTIONS(1327), - [aux_sym_cmd_identifier_token21] = ACTIONS(1327), - [aux_sym_cmd_identifier_token22] = ACTIONS(1327), - [aux_sym_cmd_identifier_token23] = ACTIONS(1327), - [aux_sym_cmd_identifier_token24] = ACTIONS(1327), - [aux_sym_cmd_identifier_token25] = ACTIONS(1327), - [aux_sym_cmd_identifier_token26] = ACTIONS(1327), - [aux_sym_cmd_identifier_token27] = ACTIONS(1327), - [aux_sym_cmd_identifier_token28] = ACTIONS(1327), - [aux_sym_cmd_identifier_token29] = ACTIONS(1327), - [aux_sym_cmd_identifier_token30] = ACTIONS(1327), - [aux_sym_cmd_identifier_token31] = ACTIONS(1327), - [aux_sym_cmd_identifier_token32] = ACTIONS(1327), - [aux_sym_cmd_identifier_token33] = ACTIONS(1327), - [aux_sym_cmd_identifier_token34] = ACTIONS(1327), - [aux_sym_cmd_identifier_token35] = ACTIONS(1327), - [aux_sym_cmd_identifier_token36] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [anon_sym_null] = ACTIONS(1329), - [aux_sym_cmd_identifier_token38] = ACTIONS(1331), - [aux_sym_cmd_identifier_token39] = ACTIONS(1333), - [aux_sym_cmd_identifier_token40] = ACTIONS(1333), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1382), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1384), - [aux_sym__val_number_decimal_token1] = ACTIONS(1341), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_alias] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_let_DASHenv] = ACTIONS(1290), + [anon_sym_mut] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [aux_sym_cmd_identifier_token1] = ACTIONS(1290), + [aux_sym_cmd_identifier_token2] = ACTIONS(1288), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [aux_sym_cmd_identifier_token6] = ACTIONS(1288), + [aux_sym_cmd_identifier_token7] = ACTIONS(1288), + [aux_sym_cmd_identifier_token8] = ACTIONS(1290), + [aux_sym_cmd_identifier_token9] = ACTIONS(1290), + [aux_sym_cmd_identifier_token10] = ACTIONS(1288), + [aux_sym_cmd_identifier_token11] = ACTIONS(1288), + [aux_sym_cmd_identifier_token12] = ACTIONS(1290), + [aux_sym_cmd_identifier_token13] = ACTIONS(1290), + [aux_sym_cmd_identifier_token14] = ACTIONS(1290), + [aux_sym_cmd_identifier_token15] = ACTIONS(1290), + [aux_sym_cmd_identifier_token16] = ACTIONS(1288), + [aux_sym_cmd_identifier_token17] = ACTIONS(1288), + [aux_sym_cmd_identifier_token18] = ACTIONS(1288), + [aux_sym_cmd_identifier_token19] = ACTIONS(1288), + [aux_sym_cmd_identifier_token20] = ACTIONS(1288), + [aux_sym_cmd_identifier_token21] = ACTIONS(1288), + [aux_sym_cmd_identifier_token22] = ACTIONS(1288), + [aux_sym_cmd_identifier_token23] = ACTIONS(1288), + [aux_sym_cmd_identifier_token24] = ACTIONS(1288), + [aux_sym_cmd_identifier_token25] = ACTIONS(1288), + [aux_sym_cmd_identifier_token26] = ACTIONS(1288), + [aux_sym_cmd_identifier_token27] = ACTIONS(1288), + [aux_sym_cmd_identifier_token28] = ACTIONS(1288), + [aux_sym_cmd_identifier_token29] = ACTIONS(1288), + [aux_sym_cmd_identifier_token30] = ACTIONS(1288), + [aux_sym_cmd_identifier_token31] = ACTIONS(1288), + [aux_sym_cmd_identifier_token32] = ACTIONS(1288), + [aux_sym_cmd_identifier_token33] = ACTIONS(1288), + [aux_sym_cmd_identifier_token34] = ACTIONS(1290), + [aux_sym_cmd_identifier_token35] = ACTIONS(1288), + [aux_sym_cmd_identifier_token36] = ACTIONS(1288), + [aux_sym_cmd_identifier_token37] = ACTIONS(1288), + [aux_sym_cmd_identifier_token38] = ACTIONS(1290), + [aux_sym_cmd_identifier_token39] = ACTIONS(1288), + [aux_sym_cmd_identifier_token40] = ACTIONS(1288), + [sym__newline] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_def] = ACTIONS(1290), + [anon_sym_export_DASHenv] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_use] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_error] = ACTIONS(1290), + [anon_sym_DASH2] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_in2] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1290), + [anon_sym_make] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_try] = ACTIONS(1290), + [anon_sym_catch] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_source] = ACTIONS(1290), + [anon_sym_source_DASHenv] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_hide] = ACTIONS(1290), + [anon_sym_hide_DASHenv] = ACTIONS(1290), + [anon_sym_overlay] = ACTIONS(1290), + [anon_sym_as] = ACTIONS(1290), + [anon_sym_where] = ACTIONS(1288), + [aux_sym_expr_unary_token1] = ACTIONS(1288), + [anon_sym_PLUS2] = ACTIONS(1290), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), + [anon_sym_DOT_DOT_LT] = ACTIONS(1288), + [anon_sym_null] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1288), + [aux_sym__val_number_decimal_token1] = ACTIONS(1290), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1288), + [aux_sym__val_number_token1] = ACTIONS(1288), + [aux_sym__val_number_token2] = ACTIONS(1288), + [aux_sym__val_number_token3] = ACTIONS(1288), + [aux_sym__val_number_token4] = ACTIONS(1290), + [aux_sym__val_number_token5] = ACTIONS(1290), + [aux_sym__val_number_token6] = ACTIONS(1290), + [anon_sym_0b] = ACTIONS(1290), + [anon_sym_0o] = ACTIONS(1290), + [anon_sym_0x] = ACTIONS(1290), + [sym_val_date] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym__str_single_quotes] = ACTIONS(1288), + [sym__str_back_ticks] = ACTIONS(1288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), + [aux_sym_env_var_token1] = ACTIONS(1290), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1288), }, [207] = { - [sym_cmd_identifier] = STATE(7872), - [sym_expr_parenthesized] = STATE(7806), - [sym__spread_parenthesized] = STATE(7465), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(7806), - [sym_val_number] = STATE(7806), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7806), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7013), - [sym__record_key] = STATE(7872), + [sym_cmd_identifier] = STATE(7810), + [sym_expr_parenthesized] = STATE(7606), + [sym__spread_parenthesized] = STATE(7543), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(7606), + [sym_val_number] = STATE(7606), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7606), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7852), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), [sym_comment] = STATE(207), - [aux_sym_shebang_repeat1] = STATE(605), - [aux_sym_record_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(277), - [anon_sym_let] = ACTIONS(277), - [anon_sym_let_DASHenv] = ACTIONS(277), - [anon_sym_mut] = ACTIONS(277), - [anon_sym_const] = ACTIONS(277), - [aux_sym_cmd_identifier_token1] = ACTIONS(1327), - [aux_sym_cmd_identifier_token2] = ACTIONS(1327), - [aux_sym_cmd_identifier_token3] = ACTIONS(1327), - [aux_sym_cmd_identifier_token4] = ACTIONS(1327), - [aux_sym_cmd_identifier_token5] = ACTIONS(1327), - [aux_sym_cmd_identifier_token6] = ACTIONS(1327), - [aux_sym_cmd_identifier_token7] = ACTIONS(1327), - [aux_sym_cmd_identifier_token8] = ACTIONS(1327), - [aux_sym_cmd_identifier_token9] = ACTIONS(1327), - [aux_sym_cmd_identifier_token10] = ACTIONS(1327), - [aux_sym_cmd_identifier_token11] = ACTIONS(1327), - [aux_sym_cmd_identifier_token12] = ACTIONS(1327), - [aux_sym_cmd_identifier_token13] = ACTIONS(1327), - [aux_sym_cmd_identifier_token14] = ACTIONS(1327), - [aux_sym_cmd_identifier_token15] = ACTIONS(1327), - [aux_sym_cmd_identifier_token16] = ACTIONS(1327), - [aux_sym_cmd_identifier_token17] = ACTIONS(1327), - [aux_sym_cmd_identifier_token18] = ACTIONS(1327), - [aux_sym_cmd_identifier_token19] = ACTIONS(1327), - [aux_sym_cmd_identifier_token20] = ACTIONS(1327), - [aux_sym_cmd_identifier_token21] = ACTIONS(1327), - [aux_sym_cmd_identifier_token22] = ACTIONS(1327), - [aux_sym_cmd_identifier_token23] = ACTIONS(1327), - [aux_sym_cmd_identifier_token24] = ACTIONS(1327), - [aux_sym_cmd_identifier_token25] = ACTIONS(1327), - [aux_sym_cmd_identifier_token26] = ACTIONS(1327), - [aux_sym_cmd_identifier_token27] = ACTIONS(1327), - [aux_sym_cmd_identifier_token28] = ACTIONS(1327), - [aux_sym_cmd_identifier_token29] = ACTIONS(1327), - [aux_sym_cmd_identifier_token30] = ACTIONS(1327), - [aux_sym_cmd_identifier_token31] = ACTIONS(1327), - [aux_sym_cmd_identifier_token32] = ACTIONS(1327), - [aux_sym_cmd_identifier_token33] = ACTIONS(1327), - [aux_sym_cmd_identifier_token34] = ACTIONS(1327), - [aux_sym_cmd_identifier_token35] = ACTIONS(1327), - [aux_sym_cmd_identifier_token36] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [anon_sym_null] = ACTIONS(1329), - [aux_sym_cmd_identifier_token38] = ACTIONS(1331), - [aux_sym_cmd_identifier_token39] = ACTIONS(1333), - [aux_sym_cmd_identifier_token40] = ACTIONS(1333), - [sym__newline] = ACTIONS(1335), - [anon_sym_def] = ACTIONS(277), - [anon_sym_export_DASHenv] = ACTIONS(277), - [anon_sym_extern] = ACTIONS(277), - [anon_sym_module] = ACTIONS(277), - [anon_sym_use] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1339), - [anon_sym_error] = ACTIONS(277), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_break] = ACTIONS(277), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(277), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(277), - [anon_sym_do] = ACTIONS(277), - [anon_sym_if] = ACTIONS(277), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(277), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(277), - [anon_sym_source] = ACTIONS(277), - [anon_sym_source_DASHenv] = ACTIONS(277), - [anon_sym_register] = ACTIONS(277), - [anon_sym_hide] = ACTIONS(277), - [anon_sym_hide_DASHenv] = ACTIONS(277), - [anon_sym_overlay] = ACTIONS(277), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1341), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(217), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1303), + [aux_sym_cmd_identifier_token3] = ACTIONS(1303), + [aux_sym_cmd_identifier_token4] = ACTIONS(1303), + [aux_sym_cmd_identifier_token5] = ACTIONS(1303), + [aux_sym_cmd_identifier_token6] = ACTIONS(1303), + [aux_sym_cmd_identifier_token7] = ACTIONS(1303), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1303), + [aux_sym_cmd_identifier_token11] = ACTIONS(1303), + [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(1303), + [aux_sym_cmd_identifier_token17] = ACTIONS(1303), + [aux_sym_cmd_identifier_token18] = ACTIONS(1303), + [aux_sym_cmd_identifier_token19] = ACTIONS(1303), + [aux_sym_cmd_identifier_token20] = ACTIONS(1303), + [aux_sym_cmd_identifier_token21] = ACTIONS(1303), + [aux_sym_cmd_identifier_token22] = ACTIONS(1303), + [aux_sym_cmd_identifier_token23] = ACTIONS(1303), + [aux_sym_cmd_identifier_token24] = ACTIONS(1303), + [aux_sym_cmd_identifier_token25] = ACTIONS(1303), + [aux_sym_cmd_identifier_token26] = ACTIONS(1303), + [aux_sym_cmd_identifier_token27] = ACTIONS(1303), + [aux_sym_cmd_identifier_token28] = ACTIONS(1303), + [aux_sym_cmd_identifier_token29] = ACTIONS(1303), + [aux_sym_cmd_identifier_token30] = ACTIONS(1303), + [aux_sym_cmd_identifier_token31] = ACTIONS(1303), + [aux_sym_cmd_identifier_token32] = ACTIONS(1303), + [aux_sym_cmd_identifier_token33] = ACTIONS(1303), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1303), + [aux_sym_cmd_identifier_token36] = ACTIONS(1303), + [aux_sym_cmd_identifier_token37] = ACTIONS(1303), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1303), + [aux_sym_cmd_identifier_token40] = ACTIONS(1303), + [sym__newline] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(205), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1313), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_DQUOTE] = ACTIONS(235), [sym__str_single_quotes] = ACTIONS(237), [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [208] = { - [sym_cmd_identifier] = STATE(7923), - [sym__match_pattern_record_variable] = STATE(688), - [sym_expr_parenthesized] = STATE(7609), - [sym__spread_parenthesized] = STATE(697), - [sym__spread_variable] = STATE(698), - [sym_val_variable] = STATE(544), - [sym_val_number] = STATE(7609), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7609), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(697), - [sym_record_entry] = STATE(688), - [sym__record_key] = STATE(7923), + [sym_cmd_identifier] = STATE(7810), + [sym_expr_parenthesized] = STATE(7606), + [sym__spread_parenthesized] = STATE(7543), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(7606), + [sym_val_number] = STATE(7606), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7606), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7895), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), [sym_comment] = STATE(208), - [aux_sym__match_pattern_record_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(1390), - [anon_sym_alias] = ACTIONS(1390), - [anon_sym_let] = ACTIONS(1390), - [anon_sym_let_DASHenv] = ACTIONS(1390), - [anon_sym_mut] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [aux_sym_cmd_identifier_token1] = ACTIONS(1393), - [aux_sym_cmd_identifier_token2] = ACTIONS(1393), - [aux_sym_cmd_identifier_token3] = ACTIONS(1393), - [aux_sym_cmd_identifier_token4] = ACTIONS(1393), - [aux_sym_cmd_identifier_token5] = ACTIONS(1393), - [aux_sym_cmd_identifier_token6] = ACTIONS(1393), - [aux_sym_cmd_identifier_token7] = ACTIONS(1393), - [aux_sym_cmd_identifier_token8] = ACTIONS(1393), - [aux_sym_cmd_identifier_token9] = ACTIONS(1393), - [aux_sym_cmd_identifier_token10] = ACTIONS(1393), - [aux_sym_cmd_identifier_token11] = ACTIONS(1393), - [aux_sym_cmd_identifier_token12] = ACTIONS(1393), - [aux_sym_cmd_identifier_token13] = ACTIONS(1393), - [aux_sym_cmd_identifier_token14] = ACTIONS(1393), - [aux_sym_cmd_identifier_token15] = ACTIONS(1393), - [aux_sym_cmd_identifier_token16] = ACTIONS(1393), - [aux_sym_cmd_identifier_token17] = ACTIONS(1393), - [aux_sym_cmd_identifier_token18] = ACTIONS(1393), - [aux_sym_cmd_identifier_token19] = ACTIONS(1393), - [aux_sym_cmd_identifier_token20] = ACTIONS(1393), - [aux_sym_cmd_identifier_token21] = ACTIONS(1393), - [aux_sym_cmd_identifier_token22] = ACTIONS(1393), - [aux_sym_cmd_identifier_token23] = ACTIONS(1393), - [aux_sym_cmd_identifier_token24] = ACTIONS(1393), - [aux_sym_cmd_identifier_token25] = ACTIONS(1393), - [aux_sym_cmd_identifier_token26] = ACTIONS(1393), - [aux_sym_cmd_identifier_token27] = ACTIONS(1393), - [aux_sym_cmd_identifier_token28] = ACTIONS(1393), - [aux_sym_cmd_identifier_token29] = ACTIONS(1393), - [aux_sym_cmd_identifier_token30] = ACTIONS(1393), - [aux_sym_cmd_identifier_token31] = ACTIONS(1393), - [aux_sym_cmd_identifier_token32] = ACTIONS(1393), - [aux_sym_cmd_identifier_token33] = ACTIONS(1393), - [aux_sym_cmd_identifier_token34] = ACTIONS(1393), - [aux_sym_cmd_identifier_token35] = ACTIONS(1393), - [aux_sym_cmd_identifier_token36] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1396), - [anon_sym_false] = ACTIONS(1396), - [anon_sym_null] = ACTIONS(1396), - [aux_sym_cmd_identifier_token38] = ACTIONS(1399), - [aux_sym_cmd_identifier_token39] = ACTIONS(1402), - [aux_sym_cmd_identifier_token40] = ACTIONS(1402), - [anon_sym_def] = ACTIONS(1390), - [anon_sym_export_DASHenv] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_module] = ACTIONS(1390), - [anon_sym_use] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_DOLLAR] = ACTIONS(1408), - [anon_sym_error] = ACTIONS(1390), - [anon_sym_list] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_in] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1390), - [anon_sym_make] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1390), - [anon_sym_catch] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_source] = ACTIONS(1390), - [anon_sym_source_DASHenv] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_hide] = ACTIONS(1390), - [anon_sym_hide_DASHenv] = ACTIONS(1390), - [anon_sym_overlay] = ACTIONS(1390), - [anon_sym_new] = ACTIONS(1390), - [anon_sym_as] = ACTIONS(1390), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1419), - [aux_sym__val_number_decimal_token1] = ACTIONS(1422), - [aux_sym__val_number_decimal_token2] = ACTIONS(1425), - [aux_sym__val_number_decimal_token3] = ACTIONS(1428), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1434), - [aux_sym__val_number_token2] = ACTIONS(1434), - [aux_sym__val_number_token3] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1437), - [sym__str_single_quotes] = ACTIONS(1440), - [sym__str_back_ticks] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1446), + [aux_sym_shebang_repeat1] = STATE(217), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1303), + [aux_sym_cmd_identifier_token3] = ACTIONS(1303), + [aux_sym_cmd_identifier_token4] = ACTIONS(1303), + [aux_sym_cmd_identifier_token5] = ACTIONS(1303), + [aux_sym_cmd_identifier_token6] = ACTIONS(1303), + [aux_sym_cmd_identifier_token7] = ACTIONS(1303), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1303), + [aux_sym_cmd_identifier_token11] = ACTIONS(1303), + [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(1303), + [aux_sym_cmd_identifier_token17] = ACTIONS(1303), + [aux_sym_cmd_identifier_token18] = ACTIONS(1303), + [aux_sym_cmd_identifier_token19] = ACTIONS(1303), + [aux_sym_cmd_identifier_token20] = ACTIONS(1303), + [aux_sym_cmd_identifier_token21] = ACTIONS(1303), + [aux_sym_cmd_identifier_token22] = ACTIONS(1303), + [aux_sym_cmd_identifier_token23] = ACTIONS(1303), + [aux_sym_cmd_identifier_token24] = ACTIONS(1303), + [aux_sym_cmd_identifier_token25] = ACTIONS(1303), + [aux_sym_cmd_identifier_token26] = ACTIONS(1303), + [aux_sym_cmd_identifier_token27] = ACTIONS(1303), + [aux_sym_cmd_identifier_token28] = ACTIONS(1303), + [aux_sym_cmd_identifier_token29] = ACTIONS(1303), + [aux_sym_cmd_identifier_token30] = ACTIONS(1303), + [aux_sym_cmd_identifier_token31] = ACTIONS(1303), + [aux_sym_cmd_identifier_token32] = ACTIONS(1303), + [aux_sym_cmd_identifier_token33] = ACTIONS(1303), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1303), + [aux_sym_cmd_identifier_token36] = ACTIONS(1303), + [aux_sym_cmd_identifier_token37] = ACTIONS(1303), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1303), + [aux_sym_cmd_identifier_token40] = ACTIONS(1303), + [sym__newline] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(205), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1313), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [209] = { - [sym_cmd_identifier] = STATE(7923), - [sym__match_pattern_record_variable] = STATE(688), - [sym_expr_parenthesized] = STATE(7609), - [sym__spread_parenthesized] = STATE(697), - [sym__spread_variable] = STATE(698), - [sym_val_variable] = STATE(544), - [sym_val_number] = STATE(7609), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7609), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(697), - [sym_record_entry] = STATE(688), - [sym__record_key] = STATE(7923), + [sym_cmd_identifier] = STATE(7810), + [sym_expr_parenthesized] = STATE(7606), + [sym__spread_parenthesized] = STATE(7543), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(7606), + [sym_val_number] = STATE(7606), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7606), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7605), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), [sym_comment] = STATE(209), - [aux_sym__match_pattern_record_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [aux_sym_cmd_identifier_token1] = ACTIONS(1327), - [aux_sym_cmd_identifier_token2] = ACTIONS(1327), - [aux_sym_cmd_identifier_token3] = ACTIONS(1327), - [aux_sym_cmd_identifier_token4] = ACTIONS(1327), - [aux_sym_cmd_identifier_token5] = ACTIONS(1327), - [aux_sym_cmd_identifier_token6] = ACTIONS(1327), - [aux_sym_cmd_identifier_token7] = ACTIONS(1327), - [aux_sym_cmd_identifier_token8] = ACTIONS(1327), - [aux_sym_cmd_identifier_token9] = ACTIONS(1327), - [aux_sym_cmd_identifier_token10] = ACTIONS(1327), - [aux_sym_cmd_identifier_token11] = ACTIONS(1327), - [aux_sym_cmd_identifier_token12] = ACTIONS(1327), - [aux_sym_cmd_identifier_token13] = ACTIONS(1327), - [aux_sym_cmd_identifier_token14] = ACTIONS(1327), - [aux_sym_cmd_identifier_token15] = ACTIONS(1327), - [aux_sym_cmd_identifier_token16] = ACTIONS(1327), - [aux_sym_cmd_identifier_token17] = ACTIONS(1327), - [aux_sym_cmd_identifier_token18] = ACTIONS(1327), - [aux_sym_cmd_identifier_token19] = ACTIONS(1327), - [aux_sym_cmd_identifier_token20] = ACTIONS(1327), - [aux_sym_cmd_identifier_token21] = ACTIONS(1327), - [aux_sym_cmd_identifier_token22] = ACTIONS(1327), - [aux_sym_cmd_identifier_token23] = ACTIONS(1327), - [aux_sym_cmd_identifier_token24] = ACTIONS(1327), - [aux_sym_cmd_identifier_token25] = ACTIONS(1327), - [aux_sym_cmd_identifier_token26] = ACTIONS(1327), - [aux_sym_cmd_identifier_token27] = ACTIONS(1327), - [aux_sym_cmd_identifier_token28] = ACTIONS(1327), - [aux_sym_cmd_identifier_token29] = ACTIONS(1327), - [aux_sym_cmd_identifier_token30] = ACTIONS(1327), - [aux_sym_cmd_identifier_token31] = ACTIONS(1327), - [aux_sym_cmd_identifier_token32] = ACTIONS(1327), - [aux_sym_cmd_identifier_token33] = ACTIONS(1327), - [aux_sym_cmd_identifier_token34] = ACTIONS(1327), - [aux_sym_cmd_identifier_token35] = ACTIONS(1327), - [aux_sym_cmd_identifier_token36] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [anon_sym_null] = ACTIONS(1329), - [aux_sym_cmd_identifier_token38] = ACTIONS(1331), - [aux_sym_cmd_identifier_token39] = ACTIONS(1333), - [aux_sym_cmd_identifier_token40] = ACTIONS(1333), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1382), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1384), - [aux_sym__val_number_decimal_token1] = ACTIONS(1341), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(217), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1303), + [aux_sym_cmd_identifier_token3] = ACTIONS(1303), + [aux_sym_cmd_identifier_token4] = ACTIONS(1303), + [aux_sym_cmd_identifier_token5] = ACTIONS(1303), + [aux_sym_cmd_identifier_token6] = ACTIONS(1303), + [aux_sym_cmd_identifier_token7] = ACTIONS(1303), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1303), + [aux_sym_cmd_identifier_token11] = ACTIONS(1303), + [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(1303), + [aux_sym_cmd_identifier_token17] = ACTIONS(1303), + [aux_sym_cmd_identifier_token18] = ACTIONS(1303), + [aux_sym_cmd_identifier_token19] = ACTIONS(1303), + [aux_sym_cmd_identifier_token20] = ACTIONS(1303), + [aux_sym_cmd_identifier_token21] = ACTIONS(1303), + [aux_sym_cmd_identifier_token22] = ACTIONS(1303), + [aux_sym_cmd_identifier_token23] = ACTIONS(1303), + [aux_sym_cmd_identifier_token24] = ACTIONS(1303), + [aux_sym_cmd_identifier_token25] = ACTIONS(1303), + [aux_sym_cmd_identifier_token26] = ACTIONS(1303), + [aux_sym_cmd_identifier_token27] = ACTIONS(1303), + [aux_sym_cmd_identifier_token28] = ACTIONS(1303), + [aux_sym_cmd_identifier_token29] = ACTIONS(1303), + [aux_sym_cmd_identifier_token30] = ACTIONS(1303), + [aux_sym_cmd_identifier_token31] = ACTIONS(1303), + [aux_sym_cmd_identifier_token32] = ACTIONS(1303), + [aux_sym_cmd_identifier_token33] = ACTIONS(1303), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1303), + [aux_sym_cmd_identifier_token36] = ACTIONS(1303), + [aux_sym_cmd_identifier_token37] = ACTIONS(1303), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1303), + [aux_sym_cmd_identifier_token40] = ACTIONS(1303), + [sym__newline] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(205), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1313), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_DQUOTE] = ACTIONS(235), [sym__str_single_quotes] = ACTIONS(237), [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [210] = { - [sym_cmd_identifier] = STATE(7923), - [sym__match_pattern_record_variable] = STATE(688), - [sym_expr_parenthesized] = STATE(7609), - [sym__spread_parenthesized] = STATE(697), - [sym__spread_variable] = STATE(698), - [sym_val_variable] = STATE(544), - [sym_val_number] = STATE(7609), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7609), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(697), - [sym_record_entry] = STATE(688), - [sym__record_key] = STATE(7923), + [sym_cmd_identifier] = STATE(7810), + [sym_expr_parenthesized] = STATE(7606), + [sym__spread_parenthesized] = STATE(7543), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(7606), + [sym_val_number] = STATE(7606), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7606), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7766), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), [sym_comment] = STATE(210), - [aux_sym__match_pattern_record_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(1376), - [anon_sym_alias] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_let_DASHenv] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [aux_sym_cmd_identifier_token1] = ACTIONS(1327), - [aux_sym_cmd_identifier_token2] = ACTIONS(1327), - [aux_sym_cmd_identifier_token3] = ACTIONS(1327), - [aux_sym_cmd_identifier_token4] = ACTIONS(1327), - [aux_sym_cmd_identifier_token5] = ACTIONS(1327), - [aux_sym_cmd_identifier_token6] = ACTIONS(1327), - [aux_sym_cmd_identifier_token7] = ACTIONS(1327), - [aux_sym_cmd_identifier_token8] = ACTIONS(1327), - [aux_sym_cmd_identifier_token9] = ACTIONS(1327), - [aux_sym_cmd_identifier_token10] = ACTIONS(1327), - [aux_sym_cmd_identifier_token11] = ACTIONS(1327), - [aux_sym_cmd_identifier_token12] = ACTIONS(1327), - [aux_sym_cmd_identifier_token13] = ACTIONS(1327), - [aux_sym_cmd_identifier_token14] = ACTIONS(1327), - [aux_sym_cmd_identifier_token15] = ACTIONS(1327), - [aux_sym_cmd_identifier_token16] = ACTIONS(1327), - [aux_sym_cmd_identifier_token17] = ACTIONS(1327), - [aux_sym_cmd_identifier_token18] = ACTIONS(1327), - [aux_sym_cmd_identifier_token19] = ACTIONS(1327), - [aux_sym_cmd_identifier_token20] = ACTIONS(1327), - [aux_sym_cmd_identifier_token21] = ACTIONS(1327), - [aux_sym_cmd_identifier_token22] = ACTIONS(1327), - [aux_sym_cmd_identifier_token23] = ACTIONS(1327), - [aux_sym_cmd_identifier_token24] = ACTIONS(1327), - [aux_sym_cmd_identifier_token25] = ACTIONS(1327), - [aux_sym_cmd_identifier_token26] = ACTIONS(1327), - [aux_sym_cmd_identifier_token27] = ACTIONS(1327), - [aux_sym_cmd_identifier_token28] = ACTIONS(1327), - [aux_sym_cmd_identifier_token29] = ACTIONS(1327), - [aux_sym_cmd_identifier_token30] = ACTIONS(1327), - [aux_sym_cmd_identifier_token31] = ACTIONS(1327), - [aux_sym_cmd_identifier_token32] = ACTIONS(1327), - [aux_sym_cmd_identifier_token33] = ACTIONS(1327), - [aux_sym_cmd_identifier_token34] = ACTIONS(1327), - [aux_sym_cmd_identifier_token35] = ACTIONS(1327), - [aux_sym_cmd_identifier_token36] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [anon_sym_null] = ACTIONS(1329), - [aux_sym_cmd_identifier_token38] = ACTIONS(1331), - [aux_sym_cmd_identifier_token39] = ACTIONS(1333), - [aux_sym_cmd_identifier_token40] = ACTIONS(1333), - [anon_sym_def] = ACTIONS(1376), - [anon_sym_export_DASHenv] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_module] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_error] = ACTIONS(1376), - [anon_sym_list] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_make] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_source] = ACTIONS(1376), - [anon_sym_source_DASHenv] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_hide] = ACTIONS(1376), - [anon_sym_hide_DASHenv] = ACTIONS(1376), - [anon_sym_overlay] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1382), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1384), - [aux_sym__val_number_decimal_token1] = ACTIONS(1341), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(217), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1303), + [aux_sym_cmd_identifier_token3] = ACTIONS(1303), + [aux_sym_cmd_identifier_token4] = ACTIONS(1303), + [aux_sym_cmd_identifier_token5] = ACTIONS(1303), + [aux_sym_cmd_identifier_token6] = ACTIONS(1303), + [aux_sym_cmd_identifier_token7] = ACTIONS(1303), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1303), + [aux_sym_cmd_identifier_token11] = ACTIONS(1303), + [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(1303), + [aux_sym_cmd_identifier_token17] = ACTIONS(1303), + [aux_sym_cmd_identifier_token18] = ACTIONS(1303), + [aux_sym_cmd_identifier_token19] = ACTIONS(1303), + [aux_sym_cmd_identifier_token20] = ACTIONS(1303), + [aux_sym_cmd_identifier_token21] = ACTIONS(1303), + [aux_sym_cmd_identifier_token22] = ACTIONS(1303), + [aux_sym_cmd_identifier_token23] = ACTIONS(1303), + [aux_sym_cmd_identifier_token24] = ACTIONS(1303), + [aux_sym_cmd_identifier_token25] = ACTIONS(1303), + [aux_sym_cmd_identifier_token26] = ACTIONS(1303), + [aux_sym_cmd_identifier_token27] = ACTIONS(1303), + [aux_sym_cmd_identifier_token28] = ACTIONS(1303), + [aux_sym_cmd_identifier_token29] = ACTIONS(1303), + [aux_sym_cmd_identifier_token30] = ACTIONS(1303), + [aux_sym_cmd_identifier_token31] = ACTIONS(1303), + [aux_sym_cmd_identifier_token32] = ACTIONS(1303), + [aux_sym_cmd_identifier_token33] = ACTIONS(1303), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1303), + [aux_sym_cmd_identifier_token36] = ACTIONS(1303), + [aux_sym_cmd_identifier_token37] = ACTIONS(1303), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1303), + [aux_sym_cmd_identifier_token40] = ACTIONS(1303), + [sym__newline] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(205), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(1323), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1313), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_DQUOTE] = ACTIONS(235), [sym__str_single_quotes] = ACTIONS(237), [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [211] = { - [sym_cmd_identifier] = STATE(7872), - [sym_expr_parenthesized] = STATE(7806), - [sym__spread_parenthesized] = STATE(7465), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(7806), - [sym_val_number] = STATE(7806), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7806), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7024), - [sym__record_key] = STATE(7872), + [sym_cmd_identifier] = STATE(7810), + [sym_expr_parenthesized] = STATE(7606), + [sym__spread_parenthesized] = STATE(7543), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(7606), + [sym_val_number] = STATE(7606), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7606), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(7543), + [sym_record_body] = STATE(7767), + [sym_record_entry] = STATE(6964), + [sym__record_key] = STATE(7810), [sym_comment] = STATE(211), - [aux_sym_record_body_repeat1] = STATE(213), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(277), - [anon_sym_let] = ACTIONS(277), - [anon_sym_let_DASHenv] = ACTIONS(277), - [anon_sym_mut] = ACTIONS(277), - [anon_sym_const] = ACTIONS(277), - [aux_sym_cmd_identifier_token1] = ACTIONS(1327), - [aux_sym_cmd_identifier_token2] = ACTIONS(1327), - [aux_sym_cmd_identifier_token3] = ACTIONS(1327), - [aux_sym_cmd_identifier_token4] = ACTIONS(1327), - [aux_sym_cmd_identifier_token5] = ACTIONS(1327), - [aux_sym_cmd_identifier_token6] = ACTIONS(1327), - [aux_sym_cmd_identifier_token7] = ACTIONS(1327), - [aux_sym_cmd_identifier_token8] = ACTIONS(1327), - [aux_sym_cmd_identifier_token9] = ACTIONS(1327), - [aux_sym_cmd_identifier_token10] = ACTIONS(1327), - [aux_sym_cmd_identifier_token11] = ACTIONS(1327), - [aux_sym_cmd_identifier_token12] = ACTIONS(1327), - [aux_sym_cmd_identifier_token13] = ACTIONS(1327), - [aux_sym_cmd_identifier_token14] = ACTIONS(1327), - [aux_sym_cmd_identifier_token15] = ACTIONS(1327), - [aux_sym_cmd_identifier_token16] = ACTIONS(1327), - [aux_sym_cmd_identifier_token17] = ACTIONS(1327), - [aux_sym_cmd_identifier_token18] = ACTIONS(1327), - [aux_sym_cmd_identifier_token19] = ACTIONS(1327), - [aux_sym_cmd_identifier_token20] = ACTIONS(1327), - [aux_sym_cmd_identifier_token21] = ACTIONS(1327), - [aux_sym_cmd_identifier_token22] = ACTIONS(1327), - [aux_sym_cmd_identifier_token23] = ACTIONS(1327), - [aux_sym_cmd_identifier_token24] = ACTIONS(1327), - [aux_sym_cmd_identifier_token25] = ACTIONS(1327), - [aux_sym_cmd_identifier_token26] = ACTIONS(1327), - [aux_sym_cmd_identifier_token27] = ACTIONS(1327), - [aux_sym_cmd_identifier_token28] = ACTIONS(1327), - [aux_sym_cmd_identifier_token29] = ACTIONS(1327), - [aux_sym_cmd_identifier_token30] = ACTIONS(1327), - [aux_sym_cmd_identifier_token31] = ACTIONS(1327), - [aux_sym_cmd_identifier_token32] = ACTIONS(1327), - [aux_sym_cmd_identifier_token33] = ACTIONS(1327), - [aux_sym_cmd_identifier_token34] = ACTIONS(1327), - [aux_sym_cmd_identifier_token35] = ACTIONS(1327), - [aux_sym_cmd_identifier_token36] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [anon_sym_null] = ACTIONS(1329), - [aux_sym_cmd_identifier_token38] = ACTIONS(1331), - [aux_sym_cmd_identifier_token39] = ACTIONS(1333), - [aux_sym_cmd_identifier_token40] = ACTIONS(1333), - [anon_sym_def] = ACTIONS(277), - [anon_sym_export_DASHenv] = ACTIONS(277), - [anon_sym_extern] = ACTIONS(277), - [anon_sym_module] = ACTIONS(277), - [anon_sym_use] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1339), - [anon_sym_error] = ACTIONS(277), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_break] = ACTIONS(277), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(277), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(277), - [anon_sym_do] = ACTIONS(277), - [anon_sym_if] = ACTIONS(277), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(277), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(277), - [anon_sym_source] = ACTIONS(277), - [anon_sym_source_DASHenv] = ACTIONS(277), - [anon_sym_register] = ACTIONS(277), - [anon_sym_hide] = ACTIONS(277), - [anon_sym_hide_DASHenv] = ACTIONS(277), - [anon_sym_overlay] = ACTIONS(277), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1341), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(217), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1303), + [aux_sym_cmd_identifier_token3] = ACTIONS(1303), + [aux_sym_cmd_identifier_token4] = ACTIONS(1303), + [aux_sym_cmd_identifier_token5] = ACTIONS(1303), + [aux_sym_cmd_identifier_token6] = ACTIONS(1303), + [aux_sym_cmd_identifier_token7] = ACTIONS(1303), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1303), + [aux_sym_cmd_identifier_token11] = ACTIONS(1303), + [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(1303), + [aux_sym_cmd_identifier_token17] = ACTIONS(1303), + [aux_sym_cmd_identifier_token18] = ACTIONS(1303), + [aux_sym_cmd_identifier_token19] = ACTIONS(1303), + [aux_sym_cmd_identifier_token20] = ACTIONS(1303), + [aux_sym_cmd_identifier_token21] = ACTIONS(1303), + [aux_sym_cmd_identifier_token22] = ACTIONS(1303), + [aux_sym_cmd_identifier_token23] = ACTIONS(1303), + [aux_sym_cmd_identifier_token24] = ACTIONS(1303), + [aux_sym_cmd_identifier_token25] = ACTIONS(1303), + [aux_sym_cmd_identifier_token26] = ACTIONS(1303), + [aux_sym_cmd_identifier_token27] = ACTIONS(1303), + [aux_sym_cmd_identifier_token28] = ACTIONS(1303), + [aux_sym_cmd_identifier_token29] = ACTIONS(1303), + [aux_sym_cmd_identifier_token30] = ACTIONS(1303), + [aux_sym_cmd_identifier_token31] = ACTIONS(1303), + [aux_sym_cmd_identifier_token32] = ACTIONS(1303), + [aux_sym_cmd_identifier_token33] = ACTIONS(1303), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1303), + [aux_sym_cmd_identifier_token36] = ACTIONS(1303), + [aux_sym_cmd_identifier_token37] = ACTIONS(1303), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1303), + [aux_sym_cmd_identifier_token40] = ACTIONS(1303), + [sym__newline] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(205), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1313), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_DQUOTE] = ACTIONS(235), [sym__str_single_quotes] = ACTIONS(237), [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [212] = { - [sym_cmd_identifier] = STATE(7872), - [sym_expr_parenthesized] = STATE(7806), - [sym__spread_parenthesized] = STATE(7465), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(7806), - [sym_val_number] = STATE(7806), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7806), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(6864), - [sym__record_key] = STATE(7872), + [sym_cmd_identifier] = STATE(7972), + [sym__match_pattern_record_variable] = STATE(744), + [sym_expr_parenthesized] = STATE(7551), + [sym__spread_parenthesized] = STATE(729), + [sym__spread_variable] = STATE(730), + [sym_val_variable] = STATE(603), + [sym_val_number] = STATE(7551), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7551), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(729), + [sym_record_entry] = STATE(744), + [sym__record_key] = STATE(7972), [sym_comment] = STATE(212), - [aux_sym_record_body_repeat1] = STATE(213), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(277), - [anon_sym_let] = ACTIONS(277), - [anon_sym_let_DASHenv] = ACTIONS(277), - [anon_sym_mut] = ACTIONS(277), - [anon_sym_const] = ACTIONS(277), - [aux_sym_cmd_identifier_token1] = ACTIONS(1327), - [aux_sym_cmd_identifier_token2] = ACTIONS(1327), - [aux_sym_cmd_identifier_token3] = ACTIONS(1327), - [aux_sym_cmd_identifier_token4] = ACTIONS(1327), - [aux_sym_cmd_identifier_token5] = ACTIONS(1327), - [aux_sym_cmd_identifier_token6] = ACTIONS(1327), - [aux_sym_cmd_identifier_token7] = ACTIONS(1327), - [aux_sym_cmd_identifier_token8] = ACTIONS(1327), - [aux_sym_cmd_identifier_token9] = ACTIONS(1327), - [aux_sym_cmd_identifier_token10] = ACTIONS(1327), - [aux_sym_cmd_identifier_token11] = ACTIONS(1327), - [aux_sym_cmd_identifier_token12] = ACTIONS(1327), - [aux_sym_cmd_identifier_token13] = ACTIONS(1327), - [aux_sym_cmd_identifier_token14] = ACTIONS(1327), - [aux_sym_cmd_identifier_token15] = ACTIONS(1327), - [aux_sym_cmd_identifier_token16] = ACTIONS(1327), - [aux_sym_cmd_identifier_token17] = ACTIONS(1327), - [aux_sym_cmd_identifier_token18] = ACTIONS(1327), - [aux_sym_cmd_identifier_token19] = ACTIONS(1327), - [aux_sym_cmd_identifier_token20] = ACTIONS(1327), - [aux_sym_cmd_identifier_token21] = ACTIONS(1327), - [aux_sym_cmd_identifier_token22] = ACTIONS(1327), - [aux_sym_cmd_identifier_token23] = ACTIONS(1327), - [aux_sym_cmd_identifier_token24] = ACTIONS(1327), - [aux_sym_cmd_identifier_token25] = ACTIONS(1327), - [aux_sym_cmd_identifier_token26] = ACTIONS(1327), - [aux_sym_cmd_identifier_token27] = ACTIONS(1327), - [aux_sym_cmd_identifier_token28] = ACTIONS(1327), - [aux_sym_cmd_identifier_token29] = ACTIONS(1327), - [aux_sym_cmd_identifier_token30] = ACTIONS(1327), - [aux_sym_cmd_identifier_token31] = ACTIONS(1327), - [aux_sym_cmd_identifier_token32] = ACTIONS(1327), - [aux_sym_cmd_identifier_token33] = ACTIONS(1327), - [aux_sym_cmd_identifier_token34] = ACTIONS(1327), - [aux_sym_cmd_identifier_token35] = ACTIONS(1327), - [aux_sym_cmd_identifier_token36] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(1329), - [anon_sym_false] = ACTIONS(1329), - [anon_sym_null] = ACTIONS(1329), - [aux_sym_cmd_identifier_token38] = ACTIONS(1331), - [aux_sym_cmd_identifier_token39] = ACTIONS(1333), - [aux_sym_cmd_identifier_token40] = ACTIONS(1333), - [anon_sym_def] = ACTIONS(277), - [anon_sym_export_DASHenv] = ACTIONS(277), - [anon_sym_extern] = ACTIONS(277), - [anon_sym_module] = ACTIONS(277), - [anon_sym_use] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1339), - [anon_sym_error] = ACTIONS(277), - [anon_sym_list] = ACTIONS(277), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_break] = ACTIONS(277), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_loop] = ACTIONS(277), - [anon_sym_make] = ACTIONS(277), - [anon_sym_while] = ACTIONS(277), - [anon_sym_do] = ACTIONS(277), - [anon_sym_if] = ACTIONS(277), - [anon_sym_else] = ACTIONS(277), - [anon_sym_match] = ACTIONS(277), - [anon_sym_try] = ACTIONS(277), - [anon_sym_catch] = ACTIONS(277), - [anon_sym_return] = ACTIONS(277), - [anon_sym_source] = ACTIONS(277), - [anon_sym_source_DASHenv] = ACTIONS(277), - [anon_sym_register] = ACTIONS(277), - [anon_sym_hide] = ACTIONS(277), - [anon_sym_hide_DASHenv] = ACTIONS(277), - [anon_sym_overlay] = ACTIONS(277), - [anon_sym_new] = ACTIONS(277), - [anon_sym_as] = ACTIONS(277), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(1341), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__match_pattern_record_repeat1] = STATE(214), + [anon_sym_export] = ACTIONS(1325), + [anon_sym_alias] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_let_DASHenv] = ACTIONS(1325), + [anon_sym_mut] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1303), + [aux_sym_cmd_identifier_token3] = ACTIONS(1303), + [aux_sym_cmd_identifier_token4] = ACTIONS(1303), + [aux_sym_cmd_identifier_token5] = ACTIONS(1303), + [aux_sym_cmd_identifier_token6] = ACTIONS(1303), + [aux_sym_cmd_identifier_token7] = ACTIONS(1303), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1303), + [aux_sym_cmd_identifier_token11] = ACTIONS(1303), + [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(1303), + [aux_sym_cmd_identifier_token17] = ACTIONS(1303), + [aux_sym_cmd_identifier_token18] = ACTIONS(1303), + [aux_sym_cmd_identifier_token19] = ACTIONS(1303), + [aux_sym_cmd_identifier_token20] = ACTIONS(1303), + [aux_sym_cmd_identifier_token21] = ACTIONS(1303), + [aux_sym_cmd_identifier_token22] = ACTIONS(1303), + [aux_sym_cmd_identifier_token23] = ACTIONS(1303), + [aux_sym_cmd_identifier_token24] = ACTIONS(1303), + [aux_sym_cmd_identifier_token25] = ACTIONS(1303), + [aux_sym_cmd_identifier_token26] = ACTIONS(1303), + [aux_sym_cmd_identifier_token27] = ACTIONS(1303), + [aux_sym_cmd_identifier_token28] = ACTIONS(1303), + [aux_sym_cmd_identifier_token29] = ACTIONS(1303), + [aux_sym_cmd_identifier_token30] = ACTIONS(1303), + [aux_sym_cmd_identifier_token31] = ACTIONS(1303), + [aux_sym_cmd_identifier_token32] = ACTIONS(1303), + [aux_sym_cmd_identifier_token33] = ACTIONS(1303), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1303), + [aux_sym_cmd_identifier_token36] = ACTIONS(1303), + [aux_sym_cmd_identifier_token37] = ACTIONS(1303), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1303), + [aux_sym_cmd_identifier_token40] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1325), + [anon_sym_export_DASHenv] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_use] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_error] = ACTIONS(1325), + [anon_sym_DASH2] = ACTIONS(205), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_in2] = ACTIONS(1325), + [anon_sym_loop] = ACTIONS(1325), + [anon_sym_make] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_match] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1325), + [anon_sym_catch] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_source] = ACTIONS(1325), + [anon_sym_source_DASHenv] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_hide] = ACTIONS(1325), + [anon_sym_hide_DASHenv] = ACTIONS(1325), + [anon_sym_overlay] = ACTIONS(1325), + [anon_sym_as] = ACTIONS(1325), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1313), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_DQUOTE] = ACTIONS(235), [sym__str_single_quotes] = ACTIONS(237), [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1335), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), }, [213] = { - [sym_cmd_identifier] = STATE(7872), - [sym_expr_parenthesized] = STATE(7806), - [sym__spread_parenthesized] = STATE(7465), - [sym__spread_variable] = STATE(7436), - [sym_val_variable] = STATE(7806), - [sym_val_number] = STATE(7806), - [sym__val_number_decimal] = STATE(6414), - [sym__val_number] = STATE(1883), - [sym_val_string] = STATE(7806), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym__spread_record] = STATE(7465), - [sym_record_entry] = STATE(7571), - [sym__record_key] = STATE(7872), + [sym_cmd_identifier] = STATE(7972), + [sym__match_pattern_record_variable] = STATE(744), + [sym_expr_parenthesized] = STATE(7551), + [sym__spread_parenthesized] = STATE(729), + [sym__spread_variable] = STATE(730), + [sym_val_variable] = STATE(603), + [sym_val_number] = STATE(7551), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7551), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(729), + [sym_record_entry] = STATE(744), + [sym__record_key] = STATE(7972), [sym_comment] = STATE(213), - [aux_sym_record_body_repeat1] = STATE(213), + [aux_sym__match_pattern_record_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(1325), + [anon_sym_alias] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_let_DASHenv] = ACTIONS(1325), + [anon_sym_mut] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1303), + [aux_sym_cmd_identifier_token3] = ACTIONS(1303), + [aux_sym_cmd_identifier_token4] = ACTIONS(1303), + [aux_sym_cmd_identifier_token5] = ACTIONS(1303), + [aux_sym_cmd_identifier_token6] = ACTIONS(1303), + [aux_sym_cmd_identifier_token7] = ACTIONS(1303), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1303), + [aux_sym_cmd_identifier_token11] = ACTIONS(1303), + [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(1303), + [aux_sym_cmd_identifier_token17] = ACTIONS(1303), + [aux_sym_cmd_identifier_token18] = ACTIONS(1303), + [aux_sym_cmd_identifier_token19] = ACTIONS(1303), + [aux_sym_cmd_identifier_token20] = ACTIONS(1303), + [aux_sym_cmd_identifier_token21] = ACTIONS(1303), + [aux_sym_cmd_identifier_token22] = ACTIONS(1303), + [aux_sym_cmd_identifier_token23] = ACTIONS(1303), + [aux_sym_cmd_identifier_token24] = ACTIONS(1303), + [aux_sym_cmd_identifier_token25] = ACTIONS(1303), + [aux_sym_cmd_identifier_token26] = ACTIONS(1303), + [aux_sym_cmd_identifier_token27] = ACTIONS(1303), + [aux_sym_cmd_identifier_token28] = ACTIONS(1303), + [aux_sym_cmd_identifier_token29] = ACTIONS(1303), + [aux_sym_cmd_identifier_token30] = ACTIONS(1303), + [aux_sym_cmd_identifier_token31] = ACTIONS(1303), + [aux_sym_cmd_identifier_token32] = ACTIONS(1303), + [aux_sym_cmd_identifier_token33] = ACTIONS(1303), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1303), + [aux_sym_cmd_identifier_token36] = ACTIONS(1303), + [aux_sym_cmd_identifier_token37] = ACTIONS(1303), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1303), + [aux_sym_cmd_identifier_token40] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1325), + [anon_sym_export_DASHenv] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_use] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_error] = ACTIONS(1325), + [anon_sym_DASH2] = ACTIONS(205), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_in2] = ACTIONS(1325), + [anon_sym_loop] = ACTIONS(1325), + [anon_sym_make] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_match] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1325), + [anon_sym_catch] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_source] = ACTIONS(1325), + [anon_sym_source_DASHenv] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_hide] = ACTIONS(1325), + [anon_sym_hide_DASHenv] = ACTIONS(1325), + [anon_sym_overlay] = ACTIONS(1325), + [anon_sym_as] = ACTIONS(1325), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1313), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1335), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [214] = { + [sym_cmd_identifier] = STATE(7972), + [sym__match_pattern_record_variable] = STATE(744), + [sym_expr_parenthesized] = STATE(7551), + [sym__spread_parenthesized] = STATE(729), + [sym__spread_variable] = STATE(730), + [sym_val_variable] = STATE(603), + [sym_val_number] = STATE(7551), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7551), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(729), + [sym_record_entry] = STATE(744), + [sym__record_key] = STATE(7972), + [sym_comment] = STATE(214), + [aux_sym__match_pattern_record_repeat1] = STATE(214), + [anon_sym_export] = ACTIONS(1339), + [anon_sym_alias] = ACTIONS(1339), + [anon_sym_let] = ACTIONS(1339), + [anon_sym_let_DASHenv] = ACTIONS(1339), + [anon_sym_mut] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [aux_sym_cmd_identifier_token1] = ACTIONS(1342), + [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(1342), + [aux_sym_cmd_identifier_token9] = ACTIONS(1342), + [aux_sym_cmd_identifier_token10] = ACTIONS(1345), + [aux_sym_cmd_identifier_token11] = ACTIONS(1345), + [aux_sym_cmd_identifier_token12] = ACTIONS(1342), + [aux_sym_cmd_identifier_token13] = ACTIONS(1342), + [aux_sym_cmd_identifier_token14] = ACTIONS(1342), + [aux_sym_cmd_identifier_token15] = ACTIONS(1342), + [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(1342), + [aux_sym_cmd_identifier_token35] = ACTIONS(1345), + [aux_sym_cmd_identifier_token36] = ACTIONS(1345), + [aux_sym_cmd_identifier_token37] = ACTIONS(1345), + [aux_sym_cmd_identifier_token38] = ACTIONS(1342), + [aux_sym_cmd_identifier_token39] = ACTIONS(1345), + [aux_sym_cmd_identifier_token40] = ACTIONS(1345), + [anon_sym_def] = ACTIONS(1339), + [anon_sym_export_DASHenv] = ACTIONS(1339), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_module] = ACTIONS(1339), + [anon_sym_use] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1351), + [anon_sym_error] = ACTIONS(1339), + [anon_sym_DASH2] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1339), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1339), + [anon_sym_in2] = ACTIONS(1339), + [anon_sym_loop] = ACTIONS(1339), + [anon_sym_make] = ACTIONS(1339), + [anon_sym_while] = ACTIONS(1339), + [anon_sym_do] = ACTIONS(1339), + [anon_sym_if] = ACTIONS(1339), + [anon_sym_else] = ACTIONS(1339), + [anon_sym_match] = ACTIONS(1339), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_try] = ACTIONS(1339), + [anon_sym_catch] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1339), + [anon_sym_source] = ACTIONS(1339), + [anon_sym_source_DASHenv] = ACTIONS(1339), + [anon_sym_register] = ACTIONS(1339), + [anon_sym_hide] = ACTIONS(1339), + [anon_sym_hide_DASHenv] = ACTIONS(1339), + [anon_sym_overlay] = ACTIONS(1339), + [anon_sym_as] = ACTIONS(1339), + [anon_sym_PLUS2] = ACTIONS(1354), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1359), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), + [aux_sym__val_number_decimal_token1] = ACTIONS(1365), + [aux_sym__val_number_decimal_token2] = ACTIONS(1368), + [aux_sym__val_number_decimal_token3] = ACTIONS(1371), + [aux_sym__val_number_decimal_token4] = ACTIONS(1374), + [aux_sym__val_number_token1] = ACTIONS(1377), + [aux_sym__val_number_token2] = ACTIONS(1377), + [aux_sym__val_number_token3] = ACTIONS(1377), + [aux_sym__val_number_token4] = ACTIONS(1380), + [aux_sym__val_number_token5] = ACTIONS(1380), + [aux_sym__val_number_token6] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym__str_single_quotes] = ACTIONS(1386), + [sym__str_back_ticks] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1389), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1392), + }, + [215] = { + [sym_cmd_identifier] = STATE(7972), + [sym__match_pattern_record_variable] = STATE(744), + [sym_expr_parenthesized] = STATE(7551), + [sym__spread_parenthesized] = STATE(729), + [sym__spread_variable] = STATE(730), + [sym_val_variable] = STATE(603), + [sym_val_number] = STATE(7551), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7551), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(729), + [sym_record_entry] = STATE(744), + [sym__record_key] = STATE(7972), + [sym_comment] = STATE(215), + [aux_sym__match_pattern_record_repeat1] = STATE(216), + [anon_sym_export] = ACTIONS(1325), + [anon_sym_alias] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_let_DASHenv] = ACTIONS(1325), + [anon_sym_mut] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1303), + [aux_sym_cmd_identifier_token3] = ACTIONS(1303), + [aux_sym_cmd_identifier_token4] = ACTIONS(1303), + [aux_sym_cmd_identifier_token5] = ACTIONS(1303), + [aux_sym_cmd_identifier_token6] = ACTIONS(1303), + [aux_sym_cmd_identifier_token7] = ACTIONS(1303), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1303), + [aux_sym_cmd_identifier_token11] = ACTIONS(1303), + [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(1303), + [aux_sym_cmd_identifier_token17] = ACTIONS(1303), + [aux_sym_cmd_identifier_token18] = ACTIONS(1303), + [aux_sym_cmd_identifier_token19] = ACTIONS(1303), + [aux_sym_cmd_identifier_token20] = ACTIONS(1303), + [aux_sym_cmd_identifier_token21] = ACTIONS(1303), + [aux_sym_cmd_identifier_token22] = ACTIONS(1303), + [aux_sym_cmd_identifier_token23] = ACTIONS(1303), + [aux_sym_cmd_identifier_token24] = ACTIONS(1303), + [aux_sym_cmd_identifier_token25] = ACTIONS(1303), + [aux_sym_cmd_identifier_token26] = ACTIONS(1303), + [aux_sym_cmd_identifier_token27] = ACTIONS(1303), + [aux_sym_cmd_identifier_token28] = ACTIONS(1303), + [aux_sym_cmd_identifier_token29] = ACTIONS(1303), + [aux_sym_cmd_identifier_token30] = ACTIONS(1303), + [aux_sym_cmd_identifier_token31] = ACTIONS(1303), + [aux_sym_cmd_identifier_token32] = ACTIONS(1303), + [aux_sym_cmd_identifier_token33] = ACTIONS(1303), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1303), + [aux_sym_cmd_identifier_token36] = ACTIONS(1303), + [aux_sym_cmd_identifier_token37] = ACTIONS(1303), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1303), + [aux_sym_cmd_identifier_token40] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1325), + [anon_sym_export_DASHenv] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_use] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_error] = ACTIONS(1325), + [anon_sym_DASH2] = ACTIONS(205), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_in2] = ACTIONS(1325), + [anon_sym_loop] = ACTIONS(1325), + [anon_sym_make] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_match] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1325), + [anon_sym_catch] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_source] = ACTIONS(1325), + [anon_sym_source_DASHenv] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_hide] = ACTIONS(1325), + [anon_sym_hide_DASHenv] = ACTIONS(1325), + [anon_sym_overlay] = ACTIONS(1325), + [anon_sym_as] = ACTIONS(1325), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1313), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1335), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [216] = { + [sym_cmd_identifier] = STATE(7972), + [sym__match_pattern_record_variable] = STATE(744), + [sym_expr_parenthesized] = STATE(7551), + [sym__spread_parenthesized] = STATE(729), + [sym__spread_variable] = STATE(730), + [sym_val_variable] = STATE(603), + [sym_val_number] = STATE(7551), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7551), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(729), + [sym_record_entry] = STATE(744), + [sym__record_key] = STATE(7972), + [sym_comment] = STATE(216), + [aux_sym__match_pattern_record_repeat1] = STATE(214), + [anon_sym_export] = ACTIONS(1325), + [anon_sym_alias] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_let_DASHenv] = ACTIONS(1325), + [anon_sym_mut] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1303), + [aux_sym_cmd_identifier_token3] = ACTIONS(1303), + [aux_sym_cmd_identifier_token4] = ACTIONS(1303), + [aux_sym_cmd_identifier_token5] = ACTIONS(1303), + [aux_sym_cmd_identifier_token6] = ACTIONS(1303), + [aux_sym_cmd_identifier_token7] = ACTIONS(1303), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1303), + [aux_sym_cmd_identifier_token11] = ACTIONS(1303), + [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(1303), + [aux_sym_cmd_identifier_token17] = ACTIONS(1303), + [aux_sym_cmd_identifier_token18] = ACTIONS(1303), + [aux_sym_cmd_identifier_token19] = ACTIONS(1303), + [aux_sym_cmd_identifier_token20] = ACTIONS(1303), + [aux_sym_cmd_identifier_token21] = ACTIONS(1303), + [aux_sym_cmd_identifier_token22] = ACTIONS(1303), + [aux_sym_cmd_identifier_token23] = ACTIONS(1303), + [aux_sym_cmd_identifier_token24] = ACTIONS(1303), + [aux_sym_cmd_identifier_token25] = ACTIONS(1303), + [aux_sym_cmd_identifier_token26] = ACTIONS(1303), + [aux_sym_cmd_identifier_token27] = ACTIONS(1303), + [aux_sym_cmd_identifier_token28] = ACTIONS(1303), + [aux_sym_cmd_identifier_token29] = ACTIONS(1303), + [aux_sym_cmd_identifier_token30] = ACTIONS(1303), + [aux_sym_cmd_identifier_token31] = ACTIONS(1303), + [aux_sym_cmd_identifier_token32] = ACTIONS(1303), + [aux_sym_cmd_identifier_token33] = ACTIONS(1303), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1303), + [aux_sym_cmd_identifier_token36] = ACTIONS(1303), + [aux_sym_cmd_identifier_token37] = ACTIONS(1303), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1303), + [aux_sym_cmd_identifier_token40] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(1325), + [anon_sym_export_DASHenv] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_use] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_error] = ACTIONS(1325), + [anon_sym_DASH2] = ACTIONS(205), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_in2] = ACTIONS(1325), + [anon_sym_loop] = ACTIONS(1325), + [anon_sym_make] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_match] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_try] = ACTIONS(1325), + [anon_sym_catch] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_source] = ACTIONS(1325), + [anon_sym_source_DASHenv] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_hide] = ACTIONS(1325), + [anon_sym_hide_DASHenv] = ACTIONS(1325), + [anon_sym_overlay] = ACTIONS(1325), + [anon_sym_as] = ACTIONS(1325), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1313), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1335), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [217] = { + [sym_cmd_identifier] = STATE(7810), + [sym_expr_parenthesized] = STATE(7606), + [sym__spread_parenthesized] = STATE(7543), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(7606), + [sym_val_number] = STATE(7606), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7606), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6910), + [sym__record_key] = STATE(7810), + [sym_comment] = STATE(217), + [aux_sym_shebang_repeat1] = STATE(666), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1303), + [aux_sym_cmd_identifier_token3] = ACTIONS(1303), + [aux_sym_cmd_identifier_token4] = ACTIONS(1303), + [aux_sym_cmd_identifier_token5] = ACTIONS(1303), + [aux_sym_cmd_identifier_token6] = ACTIONS(1303), + [aux_sym_cmd_identifier_token7] = ACTIONS(1303), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1303), + [aux_sym_cmd_identifier_token11] = ACTIONS(1303), + [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(1303), + [aux_sym_cmd_identifier_token17] = ACTIONS(1303), + [aux_sym_cmd_identifier_token18] = ACTIONS(1303), + [aux_sym_cmd_identifier_token19] = ACTIONS(1303), + [aux_sym_cmd_identifier_token20] = ACTIONS(1303), + [aux_sym_cmd_identifier_token21] = ACTIONS(1303), + [aux_sym_cmd_identifier_token22] = ACTIONS(1303), + [aux_sym_cmd_identifier_token23] = ACTIONS(1303), + [aux_sym_cmd_identifier_token24] = ACTIONS(1303), + [aux_sym_cmd_identifier_token25] = ACTIONS(1303), + [aux_sym_cmd_identifier_token26] = ACTIONS(1303), + [aux_sym_cmd_identifier_token27] = ACTIONS(1303), + [aux_sym_cmd_identifier_token28] = ACTIONS(1303), + [aux_sym_cmd_identifier_token29] = ACTIONS(1303), + [aux_sym_cmd_identifier_token30] = ACTIONS(1303), + [aux_sym_cmd_identifier_token31] = ACTIONS(1303), + [aux_sym_cmd_identifier_token32] = ACTIONS(1303), + [aux_sym_cmd_identifier_token33] = ACTIONS(1303), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1303), + [aux_sym_cmd_identifier_token36] = ACTIONS(1303), + [aux_sym_cmd_identifier_token37] = ACTIONS(1303), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1303), + [aux_sym_cmd_identifier_token40] = ACTIONS(1303), + [sym__newline] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(205), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1313), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [218] = { + [sym_cmd_identifier] = STATE(7810), + [sym_expr_parenthesized] = STATE(7606), + [sym__spread_parenthesized] = STATE(7543), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(7606), + [sym_val_number] = STATE(7606), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7606), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(6953), + [sym__record_key] = STATE(7810), + [sym_comment] = STATE(218), + [aux_sym_record_body_repeat1] = STATE(219), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1303), + [aux_sym_cmd_identifier_token3] = ACTIONS(1303), + [aux_sym_cmd_identifier_token4] = ACTIONS(1303), + [aux_sym_cmd_identifier_token5] = ACTIONS(1303), + [aux_sym_cmd_identifier_token6] = ACTIONS(1303), + [aux_sym_cmd_identifier_token7] = ACTIONS(1303), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1303), + [aux_sym_cmd_identifier_token11] = ACTIONS(1303), + [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(1303), + [aux_sym_cmd_identifier_token17] = ACTIONS(1303), + [aux_sym_cmd_identifier_token18] = ACTIONS(1303), + [aux_sym_cmd_identifier_token19] = ACTIONS(1303), + [aux_sym_cmd_identifier_token20] = ACTIONS(1303), + [aux_sym_cmd_identifier_token21] = ACTIONS(1303), + [aux_sym_cmd_identifier_token22] = ACTIONS(1303), + [aux_sym_cmd_identifier_token23] = ACTIONS(1303), + [aux_sym_cmd_identifier_token24] = ACTIONS(1303), + [aux_sym_cmd_identifier_token25] = ACTIONS(1303), + [aux_sym_cmd_identifier_token26] = ACTIONS(1303), + [aux_sym_cmd_identifier_token27] = ACTIONS(1303), + [aux_sym_cmd_identifier_token28] = ACTIONS(1303), + [aux_sym_cmd_identifier_token29] = ACTIONS(1303), + [aux_sym_cmd_identifier_token30] = ACTIONS(1303), + [aux_sym_cmd_identifier_token31] = ACTIONS(1303), + [aux_sym_cmd_identifier_token32] = ACTIONS(1303), + [aux_sym_cmd_identifier_token33] = ACTIONS(1303), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1303), + [aux_sym_cmd_identifier_token36] = ACTIONS(1303), + [aux_sym_cmd_identifier_token37] = ACTIONS(1303), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1303), + [aux_sym_cmd_identifier_token40] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(205), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1313), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [219] = { + [sym_cmd_identifier] = STATE(7810), + [sym_expr_parenthesized] = STATE(7606), + [sym__spread_parenthesized] = STATE(7543), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(7606), + [sym_val_number] = STATE(7606), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7606), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(7481), + [sym__record_key] = STATE(7810), + [sym_comment] = STATE(219), + [aux_sym_record_body_repeat1] = STATE(219), + [anon_sym_export] = ACTIONS(1399), + [anon_sym_alias] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1399), + [anon_sym_let_DASHenv] = ACTIONS(1399), + [anon_sym_mut] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [aux_sym_cmd_identifier_token1] = ACTIONS(1402), + [aux_sym_cmd_identifier_token2] = ACTIONS(1405), + [aux_sym_cmd_identifier_token3] = ACTIONS(1405), + [aux_sym_cmd_identifier_token4] = ACTIONS(1405), + [aux_sym_cmd_identifier_token5] = ACTIONS(1405), + [aux_sym_cmd_identifier_token6] = ACTIONS(1405), + [aux_sym_cmd_identifier_token7] = ACTIONS(1405), + [aux_sym_cmd_identifier_token8] = ACTIONS(1402), + [aux_sym_cmd_identifier_token9] = ACTIONS(1402), + [aux_sym_cmd_identifier_token10] = ACTIONS(1405), + [aux_sym_cmd_identifier_token11] = ACTIONS(1405), + [aux_sym_cmd_identifier_token12] = ACTIONS(1402), + [aux_sym_cmd_identifier_token13] = ACTIONS(1402), + [aux_sym_cmd_identifier_token14] = ACTIONS(1402), + [aux_sym_cmd_identifier_token15] = ACTIONS(1402), + [aux_sym_cmd_identifier_token16] = ACTIONS(1405), + [aux_sym_cmd_identifier_token17] = ACTIONS(1405), + [aux_sym_cmd_identifier_token18] = ACTIONS(1405), + [aux_sym_cmd_identifier_token19] = ACTIONS(1405), + [aux_sym_cmd_identifier_token20] = ACTIONS(1405), + [aux_sym_cmd_identifier_token21] = ACTIONS(1405), + [aux_sym_cmd_identifier_token22] = ACTIONS(1405), + [aux_sym_cmd_identifier_token23] = ACTIONS(1405), + [aux_sym_cmd_identifier_token24] = ACTIONS(1405), + [aux_sym_cmd_identifier_token25] = ACTIONS(1405), + [aux_sym_cmd_identifier_token26] = ACTIONS(1405), + [aux_sym_cmd_identifier_token27] = ACTIONS(1405), + [aux_sym_cmd_identifier_token28] = ACTIONS(1405), + [aux_sym_cmd_identifier_token29] = ACTIONS(1405), + [aux_sym_cmd_identifier_token30] = ACTIONS(1405), + [aux_sym_cmd_identifier_token31] = ACTIONS(1405), + [aux_sym_cmd_identifier_token32] = ACTIONS(1405), + [aux_sym_cmd_identifier_token33] = ACTIONS(1405), + [aux_sym_cmd_identifier_token34] = ACTIONS(1402), + [aux_sym_cmd_identifier_token35] = ACTIONS(1405), + [aux_sym_cmd_identifier_token36] = ACTIONS(1405), + [aux_sym_cmd_identifier_token37] = ACTIONS(1405), + [aux_sym_cmd_identifier_token38] = ACTIONS(1402), + [aux_sym_cmd_identifier_token39] = ACTIONS(1405), + [aux_sym_cmd_identifier_token40] = ACTIONS(1405), + [anon_sym_def] = ACTIONS(1399), + [anon_sym_export_DASHenv] = ACTIONS(1399), + [anon_sym_extern] = ACTIONS(1399), + [anon_sym_module] = ACTIONS(1399), + [anon_sym_use] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1411), + [anon_sym_error] = ACTIONS(1399), + [anon_sym_DASH2] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_in2] = ACTIONS(1399), + [anon_sym_loop] = ACTIONS(1399), + [anon_sym_make] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_catch] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_source] = ACTIONS(1399), + [anon_sym_source_DASHenv] = ACTIONS(1399), + [anon_sym_register] = ACTIONS(1399), + [anon_sym_hide] = ACTIONS(1399), + [anon_sym_hide_DASHenv] = ACTIONS(1399), + [anon_sym_overlay] = ACTIONS(1399), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_PLUS2] = ACTIONS(1414), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1417), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1420), + [aux_sym__val_number_decimal_token1] = ACTIONS(1423), + [aux_sym__val_number_decimal_token2] = ACTIONS(1426), + [aux_sym__val_number_decimal_token3] = ACTIONS(1429), + [aux_sym__val_number_decimal_token4] = ACTIONS(1432), + [aux_sym__val_number_token1] = ACTIONS(1435), + [aux_sym__val_number_token2] = ACTIONS(1435), + [aux_sym__val_number_token3] = ACTIONS(1435), + [aux_sym__val_number_token4] = ACTIONS(1438), + [aux_sym__val_number_token5] = ACTIONS(1438), + [aux_sym__val_number_token6] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1444), + [sym__str_back_ticks] = ACTIONS(1444), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1450), + }, + [220] = { + [sym_cmd_identifier] = STATE(7810), + [sym_expr_parenthesized] = STATE(7606), + [sym__spread_parenthesized] = STATE(7543), + [sym__spread_variable] = STATE(7385), + [sym_val_variable] = STATE(7606), + [sym_val_number] = STATE(7606), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(2439), + [sym_val_string] = STATE(7606), + [sym__raw_str] = STATE(1551), + [sym__str_double_quotes] = STATE(1551), + [sym__spread_record] = STATE(7543), + [sym_record_entry] = STATE(7102), + [sym__record_key] = STATE(7810), + [sym_comment] = STATE(220), + [aux_sym_record_body_repeat1] = STATE(219), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(1301), + [aux_sym_cmd_identifier_token2] = ACTIONS(1303), + [aux_sym_cmd_identifier_token3] = ACTIONS(1303), + [aux_sym_cmd_identifier_token4] = ACTIONS(1303), + [aux_sym_cmd_identifier_token5] = ACTIONS(1303), + [aux_sym_cmd_identifier_token6] = ACTIONS(1303), + [aux_sym_cmd_identifier_token7] = ACTIONS(1303), + [aux_sym_cmd_identifier_token8] = ACTIONS(1301), + [aux_sym_cmd_identifier_token9] = ACTIONS(1301), + [aux_sym_cmd_identifier_token10] = ACTIONS(1303), + [aux_sym_cmd_identifier_token11] = ACTIONS(1303), + [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(1303), + [aux_sym_cmd_identifier_token17] = ACTIONS(1303), + [aux_sym_cmd_identifier_token18] = ACTIONS(1303), + [aux_sym_cmd_identifier_token19] = ACTIONS(1303), + [aux_sym_cmd_identifier_token20] = ACTIONS(1303), + [aux_sym_cmd_identifier_token21] = ACTIONS(1303), + [aux_sym_cmd_identifier_token22] = ACTIONS(1303), + [aux_sym_cmd_identifier_token23] = ACTIONS(1303), + [aux_sym_cmd_identifier_token24] = ACTIONS(1303), + [aux_sym_cmd_identifier_token25] = ACTIONS(1303), + [aux_sym_cmd_identifier_token26] = ACTIONS(1303), + [aux_sym_cmd_identifier_token27] = ACTIONS(1303), + [aux_sym_cmd_identifier_token28] = ACTIONS(1303), + [aux_sym_cmd_identifier_token29] = ACTIONS(1303), + [aux_sym_cmd_identifier_token30] = ACTIONS(1303), + [aux_sym_cmd_identifier_token31] = ACTIONS(1303), + [aux_sym_cmd_identifier_token32] = ACTIONS(1303), + [aux_sym_cmd_identifier_token33] = ACTIONS(1303), + [aux_sym_cmd_identifier_token34] = ACTIONS(1301), + [aux_sym_cmd_identifier_token35] = ACTIONS(1303), + [aux_sym_cmd_identifier_token36] = ACTIONS(1303), + [aux_sym_cmd_identifier_token37] = ACTIONS(1303), + [aux_sym_cmd_identifier_token38] = ACTIONS(1301), + [aux_sym_cmd_identifier_token39] = ACTIONS(1303), + [aux_sym_cmd_identifier_token40] = ACTIONS(1303), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(281), + [anon_sym_DASH2] = ACTIONS(205), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), + [anon_sym_PLUS2] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(1311), + [aux_sym__val_number_decimal_token2] = ACTIONS(1313), + [aux_sym__val_number_decimal_token3] = ACTIONS(1315), + [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_token1] = ACTIONS(225), + [aux_sym__val_number_token2] = ACTIONS(225), + [aux_sym__val_number_token3] = ACTIONS(225), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(249), + }, + [221] = { + [sym_comment] = STATE(221), + [aux_sym__block_body_repeat1] = STATE(223), [anon_sym_export] = ACTIONS(1453), [anon_sym_alias] = ACTIONS(1453), [anon_sym_let] = ACTIONS(1453), [anon_sym_let_DASHenv] = ACTIONS(1453), [anon_sym_mut] = ACTIONS(1453), [anon_sym_const] = ACTIONS(1453), - [aux_sym_cmd_identifier_token1] = ACTIONS(1456), - [aux_sym_cmd_identifier_token2] = ACTIONS(1456), - [aux_sym_cmd_identifier_token3] = ACTIONS(1456), - [aux_sym_cmd_identifier_token4] = ACTIONS(1456), - [aux_sym_cmd_identifier_token5] = ACTIONS(1456), - [aux_sym_cmd_identifier_token6] = ACTIONS(1456), - [aux_sym_cmd_identifier_token7] = ACTIONS(1456), - [aux_sym_cmd_identifier_token8] = ACTIONS(1456), - [aux_sym_cmd_identifier_token9] = ACTIONS(1456), - [aux_sym_cmd_identifier_token10] = ACTIONS(1456), - [aux_sym_cmd_identifier_token11] = ACTIONS(1456), - [aux_sym_cmd_identifier_token12] = ACTIONS(1456), - [aux_sym_cmd_identifier_token13] = ACTIONS(1456), - [aux_sym_cmd_identifier_token14] = ACTIONS(1456), - [aux_sym_cmd_identifier_token15] = ACTIONS(1456), - [aux_sym_cmd_identifier_token16] = ACTIONS(1456), - [aux_sym_cmd_identifier_token17] = ACTIONS(1456), - [aux_sym_cmd_identifier_token18] = ACTIONS(1456), - [aux_sym_cmd_identifier_token19] = ACTIONS(1456), - [aux_sym_cmd_identifier_token20] = ACTIONS(1456), - [aux_sym_cmd_identifier_token21] = ACTIONS(1456), - [aux_sym_cmd_identifier_token22] = ACTIONS(1456), - [aux_sym_cmd_identifier_token23] = ACTIONS(1456), - [aux_sym_cmd_identifier_token24] = ACTIONS(1456), - [aux_sym_cmd_identifier_token25] = ACTIONS(1456), - [aux_sym_cmd_identifier_token26] = ACTIONS(1456), - [aux_sym_cmd_identifier_token27] = ACTIONS(1456), - [aux_sym_cmd_identifier_token28] = ACTIONS(1456), - [aux_sym_cmd_identifier_token29] = ACTIONS(1456), - [aux_sym_cmd_identifier_token30] = ACTIONS(1456), - [aux_sym_cmd_identifier_token31] = ACTIONS(1456), - [aux_sym_cmd_identifier_token32] = ACTIONS(1456), - [aux_sym_cmd_identifier_token33] = ACTIONS(1456), - [aux_sym_cmd_identifier_token34] = ACTIONS(1456), - [aux_sym_cmd_identifier_token35] = ACTIONS(1456), - [aux_sym_cmd_identifier_token36] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_null] = ACTIONS(1459), - [aux_sym_cmd_identifier_token38] = ACTIONS(1462), - [aux_sym_cmd_identifier_token39] = ACTIONS(1465), - [aux_sym_cmd_identifier_token40] = ACTIONS(1465), + [aux_sym_cmd_identifier_token1] = ACTIONS(1453), + [aux_sym_cmd_identifier_token2] = ACTIONS(1455), + [aux_sym_cmd_identifier_token3] = ACTIONS(1455), + [aux_sym_cmd_identifier_token4] = ACTIONS(1455), + [aux_sym_cmd_identifier_token5] = ACTIONS(1455), + [aux_sym_cmd_identifier_token6] = ACTIONS(1455), + [aux_sym_cmd_identifier_token7] = ACTIONS(1455), + [aux_sym_cmd_identifier_token8] = ACTIONS(1453), + [aux_sym_cmd_identifier_token9] = ACTIONS(1453), + [aux_sym_cmd_identifier_token10] = ACTIONS(1455), + [aux_sym_cmd_identifier_token11] = ACTIONS(1455), + [aux_sym_cmd_identifier_token12] = ACTIONS(1453), + [aux_sym_cmd_identifier_token13] = ACTIONS(1453), + [aux_sym_cmd_identifier_token14] = ACTIONS(1453), + [aux_sym_cmd_identifier_token15] = ACTIONS(1453), + [aux_sym_cmd_identifier_token16] = ACTIONS(1455), + [aux_sym_cmd_identifier_token17] = ACTIONS(1455), + [aux_sym_cmd_identifier_token18] = ACTIONS(1455), + [aux_sym_cmd_identifier_token19] = ACTIONS(1455), + [aux_sym_cmd_identifier_token20] = ACTIONS(1455), + [aux_sym_cmd_identifier_token21] = ACTIONS(1455), + [aux_sym_cmd_identifier_token22] = ACTIONS(1455), + [aux_sym_cmd_identifier_token23] = ACTIONS(1455), + [aux_sym_cmd_identifier_token24] = ACTIONS(1455), + [aux_sym_cmd_identifier_token25] = ACTIONS(1455), + [aux_sym_cmd_identifier_token26] = ACTIONS(1455), + [aux_sym_cmd_identifier_token27] = ACTIONS(1455), + [aux_sym_cmd_identifier_token28] = ACTIONS(1455), + [aux_sym_cmd_identifier_token29] = ACTIONS(1455), + [aux_sym_cmd_identifier_token30] = ACTIONS(1455), + [aux_sym_cmd_identifier_token31] = ACTIONS(1455), + [aux_sym_cmd_identifier_token32] = ACTIONS(1455), + [aux_sym_cmd_identifier_token33] = ACTIONS(1455), + [aux_sym_cmd_identifier_token34] = ACTIONS(1453), + [aux_sym_cmd_identifier_token35] = ACTIONS(1455), + [aux_sym_cmd_identifier_token36] = ACTIONS(1455), + [aux_sym_cmd_identifier_token37] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1453), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), [anon_sym_def] = ACTIONS(1453), [anon_sym_export_DASHenv] = ACTIONS(1453), [anon_sym_extern] = ACTIONS(1453), [anon_sym_module] = ACTIONS(1453), [anon_sym_use] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1457), + [anon_sym_DOLLAR] = ACTIONS(1453), [anon_sym_error] = ACTIONS(1453), - [anon_sym_list] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_DASH2] = ACTIONS(1453), [anon_sym_break] = ACTIONS(1453), [anon_sym_continue] = ACTIONS(1453), [anon_sym_for] = ACTIONS(1453), - [anon_sym_in] = ACTIONS(1453), [anon_sym_loop] = ACTIONS(1453), - [anon_sym_make] = ACTIONS(1453), [anon_sym_while] = ACTIONS(1453), [anon_sym_do] = ACTIONS(1453), [anon_sym_if] = ACTIONS(1453), - [anon_sym_else] = ACTIONS(1453), [anon_sym_match] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(1453), [anon_sym_try] = ACTIONS(1453), - [anon_sym_catch] = ACTIONS(1453), [anon_sym_return] = ACTIONS(1453), [anon_sym_source] = ACTIONS(1453), [anon_sym_source_DASHenv] = ACTIONS(1453), @@ -102947,8011 +99902,9478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1453), [anon_sym_hide_DASHenv] = ACTIONS(1453), [anon_sym_overlay] = ACTIONS(1453), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_as] = ACTIONS(1453), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1477), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1480), - [aux_sym__val_number_decimal_token1] = ACTIONS(1483), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1489), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1495), - [aux_sym__val_number_token2] = ACTIONS(1495), - [aux_sym__val_number_token3] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym__str_single_quotes] = ACTIONS(1501), - [sym__str_back_ticks] = ACTIONS(1501), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1507), - }, - [214] = { - [sym__expr_parenthesized_immediate] = STATE(441), - [sym__immediate_decimal] = STATE(324), - [sym_val_variable] = STATE(441), - [sym_comment] = STATE(214), - [anon_sym_export] = ACTIONS(1510), - [anon_sym_alias] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_let_DASHenv] = ACTIONS(1510), - [anon_sym_mut] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [aux_sym_cmd_identifier_token1] = ACTIONS(1510), - [aux_sym_cmd_identifier_token2] = ACTIONS(1510), - [aux_sym_cmd_identifier_token3] = ACTIONS(1510), - [aux_sym_cmd_identifier_token4] = ACTIONS(1510), - [aux_sym_cmd_identifier_token5] = ACTIONS(1510), - [aux_sym_cmd_identifier_token6] = ACTIONS(1510), - [aux_sym_cmd_identifier_token7] = ACTIONS(1510), - [aux_sym_cmd_identifier_token8] = ACTIONS(1510), - [aux_sym_cmd_identifier_token9] = ACTIONS(1510), - [aux_sym_cmd_identifier_token10] = ACTIONS(1510), - [aux_sym_cmd_identifier_token11] = ACTIONS(1510), - [aux_sym_cmd_identifier_token12] = ACTIONS(1510), - [aux_sym_cmd_identifier_token13] = ACTIONS(1510), - [aux_sym_cmd_identifier_token14] = ACTIONS(1510), - [aux_sym_cmd_identifier_token15] = ACTIONS(1510), - [aux_sym_cmd_identifier_token16] = ACTIONS(1510), - [aux_sym_cmd_identifier_token17] = ACTIONS(1510), - [aux_sym_cmd_identifier_token18] = ACTIONS(1510), - [aux_sym_cmd_identifier_token19] = ACTIONS(1510), - [aux_sym_cmd_identifier_token20] = ACTIONS(1510), - [aux_sym_cmd_identifier_token21] = ACTIONS(1510), - [aux_sym_cmd_identifier_token22] = ACTIONS(1510), - [aux_sym_cmd_identifier_token23] = ACTIONS(1510), - [aux_sym_cmd_identifier_token24] = ACTIONS(1510), - [aux_sym_cmd_identifier_token25] = ACTIONS(1510), - [aux_sym_cmd_identifier_token26] = ACTIONS(1510), - [aux_sym_cmd_identifier_token27] = ACTIONS(1510), - [aux_sym_cmd_identifier_token28] = ACTIONS(1510), - [aux_sym_cmd_identifier_token29] = ACTIONS(1510), - [aux_sym_cmd_identifier_token30] = ACTIONS(1510), - [aux_sym_cmd_identifier_token31] = ACTIONS(1510), - [aux_sym_cmd_identifier_token32] = ACTIONS(1510), - [aux_sym_cmd_identifier_token33] = ACTIONS(1510), - [aux_sym_cmd_identifier_token34] = ACTIONS(1510), - [aux_sym_cmd_identifier_token35] = ACTIONS(1510), - [aux_sym_cmd_identifier_token36] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [anon_sym_null] = ACTIONS(1510), - [aux_sym_cmd_identifier_token38] = ACTIONS(1510), - [aux_sym_cmd_identifier_token39] = ACTIONS(1510), - [aux_sym_cmd_identifier_token40] = ACTIONS(1510), - [anon_sym_def] = ACTIONS(1510), - [anon_sym_export_DASHenv] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_module] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1512), - [anon_sym_error] = ACTIONS(1510), - [anon_sym_list] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_in] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_make] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1510), - [anon_sym_catch] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_source] = ACTIONS(1510), - [anon_sym_source_DASHenv] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_hide] = ACTIONS(1510), - [anon_sym_hide_DASHenv] = ACTIONS(1510), - [anon_sym_overlay] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_as] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1514), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1516), - [aux_sym__immediate_decimal_token1] = ACTIONS(1518), - [aux_sym__immediate_decimal_token3] = ACTIONS(1518), - [aux_sym__immediate_decimal_token4] = ACTIONS(1520), - [aux_sym__immediate_decimal_token5] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1510), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1510), - [aux_sym__val_number_decimal_token3] = ACTIONS(1510), - [aux_sym__val_number_decimal_token4] = ACTIONS(1510), - [aux_sym__val_number_token1] = ACTIONS(1510), - [aux_sym__val_number_token2] = ACTIONS(1510), - [aux_sym__val_number_token3] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym__str_single_quotes] = ACTIONS(1510), - [sym__str_back_ticks] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1510), - [sym__entry_separator] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1510), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1524), - }, - [215] = { - [sym_comment] = STATE(215), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [aux_sym_cmd_identifier_token1] = ACTIONS(1528), - [aux_sym_cmd_identifier_token2] = ACTIONS(1528), - [aux_sym_cmd_identifier_token3] = ACTIONS(1528), - [aux_sym_cmd_identifier_token4] = ACTIONS(1528), - [aux_sym_cmd_identifier_token5] = ACTIONS(1528), - [aux_sym_cmd_identifier_token6] = ACTIONS(1528), - [aux_sym_cmd_identifier_token7] = ACTIONS(1528), - [aux_sym_cmd_identifier_token8] = ACTIONS(1528), - [aux_sym_cmd_identifier_token9] = ACTIONS(1528), - [aux_sym_cmd_identifier_token10] = ACTIONS(1528), - [aux_sym_cmd_identifier_token11] = ACTIONS(1528), - [aux_sym_cmd_identifier_token12] = ACTIONS(1528), - [aux_sym_cmd_identifier_token13] = ACTIONS(1528), - [aux_sym_cmd_identifier_token14] = ACTIONS(1528), - [aux_sym_cmd_identifier_token15] = ACTIONS(1528), - [aux_sym_cmd_identifier_token16] = ACTIONS(1528), - [aux_sym_cmd_identifier_token17] = ACTIONS(1528), - [aux_sym_cmd_identifier_token18] = ACTIONS(1528), - [aux_sym_cmd_identifier_token19] = ACTIONS(1528), - [aux_sym_cmd_identifier_token20] = ACTIONS(1528), - [aux_sym_cmd_identifier_token21] = ACTIONS(1528), - [aux_sym_cmd_identifier_token22] = ACTIONS(1528), - [aux_sym_cmd_identifier_token23] = ACTIONS(1528), - [aux_sym_cmd_identifier_token24] = ACTIONS(1528), - [aux_sym_cmd_identifier_token25] = ACTIONS(1528), - [aux_sym_cmd_identifier_token26] = ACTIONS(1528), - [aux_sym_cmd_identifier_token27] = ACTIONS(1528), - [aux_sym_cmd_identifier_token28] = ACTIONS(1528), - [aux_sym_cmd_identifier_token29] = ACTIONS(1528), - [aux_sym_cmd_identifier_token30] = ACTIONS(1528), - [aux_sym_cmd_identifier_token31] = ACTIONS(1528), - [aux_sym_cmd_identifier_token32] = ACTIONS(1528), - [aux_sym_cmd_identifier_token33] = ACTIONS(1528), - [aux_sym_cmd_identifier_token34] = ACTIONS(1528), - [aux_sym_cmd_identifier_token35] = ACTIONS(1528), - [aux_sym_cmd_identifier_token36] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [aux_sym_cmd_identifier_token38] = ACTIONS(1528), - [aux_sym_cmd_identifier_token39] = ACTIONS(1528), - [aux_sym_cmd_identifier_token40] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_LPAREN2] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1528), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(1532), - [aux_sym__immediate_decimal_token2] = ACTIONS(1534), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_decimal_token2] = ACTIONS(1528), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [sym_filesize_unit] = ACTIONS(1528), - [sym_duration_unit] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1528), - [sym__entry_separator] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1528), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1530), - }, - [216] = { - [sym_comment] = STATE(216), - [anon_sym_export] = ACTIONS(1536), - [anon_sym_alias] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_let_DASHenv] = ACTIONS(1536), - [anon_sym_mut] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [aux_sym_cmd_identifier_token1] = ACTIONS(1536), - [aux_sym_cmd_identifier_token2] = ACTIONS(1536), - [aux_sym_cmd_identifier_token3] = ACTIONS(1536), - [aux_sym_cmd_identifier_token4] = ACTIONS(1536), - [aux_sym_cmd_identifier_token5] = ACTIONS(1536), - [aux_sym_cmd_identifier_token6] = ACTIONS(1536), - [aux_sym_cmd_identifier_token7] = ACTIONS(1536), - [aux_sym_cmd_identifier_token8] = ACTIONS(1536), - [aux_sym_cmd_identifier_token9] = ACTIONS(1536), - [aux_sym_cmd_identifier_token10] = ACTIONS(1536), - [aux_sym_cmd_identifier_token11] = ACTIONS(1536), - [aux_sym_cmd_identifier_token12] = ACTIONS(1536), - [aux_sym_cmd_identifier_token13] = ACTIONS(1536), - [aux_sym_cmd_identifier_token14] = ACTIONS(1536), - [aux_sym_cmd_identifier_token15] = ACTIONS(1536), - [aux_sym_cmd_identifier_token16] = ACTIONS(1536), - [aux_sym_cmd_identifier_token17] = ACTIONS(1536), - [aux_sym_cmd_identifier_token18] = ACTIONS(1536), - [aux_sym_cmd_identifier_token19] = ACTIONS(1536), - [aux_sym_cmd_identifier_token20] = ACTIONS(1536), - [aux_sym_cmd_identifier_token21] = ACTIONS(1536), - [aux_sym_cmd_identifier_token22] = ACTIONS(1536), - [aux_sym_cmd_identifier_token23] = ACTIONS(1536), - [aux_sym_cmd_identifier_token24] = ACTIONS(1536), - [aux_sym_cmd_identifier_token25] = ACTIONS(1536), - [aux_sym_cmd_identifier_token26] = ACTIONS(1536), - [aux_sym_cmd_identifier_token27] = ACTIONS(1536), - [aux_sym_cmd_identifier_token28] = ACTIONS(1536), - [aux_sym_cmd_identifier_token29] = ACTIONS(1536), - [aux_sym_cmd_identifier_token30] = ACTIONS(1536), - [aux_sym_cmd_identifier_token31] = ACTIONS(1536), - [aux_sym_cmd_identifier_token32] = ACTIONS(1536), - [aux_sym_cmd_identifier_token33] = ACTIONS(1536), - [aux_sym_cmd_identifier_token34] = ACTIONS(1536), - [aux_sym_cmd_identifier_token35] = ACTIONS(1536), - [aux_sym_cmd_identifier_token36] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [anon_sym_null] = ACTIONS(1536), - [aux_sym_cmd_identifier_token38] = ACTIONS(1536), - [aux_sym_cmd_identifier_token39] = ACTIONS(1536), - [aux_sym_cmd_identifier_token40] = ACTIONS(1536), - [anon_sym_def] = ACTIONS(1536), - [anon_sym_export_DASHenv] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_error] = ACTIONS(1536), - [anon_sym_list] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_make] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_else] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_try] = ACTIONS(1536), - [anon_sym_catch] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_source] = ACTIONS(1536), - [anon_sym_source_DASHenv] = ACTIONS(1536), - [anon_sym_register] = ACTIONS(1536), - [anon_sym_hide] = ACTIONS(1536), - [anon_sym_hide_DASHenv] = ACTIONS(1536), - [anon_sym_overlay] = ACTIONS(1536), - [anon_sym_new] = ACTIONS(1536), - [anon_sym_as] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1536), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1536), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1536), - [aux_sym__val_number_decimal_token3] = ACTIONS(1536), - [aux_sym__val_number_decimal_token4] = ACTIONS(1536), - [aux_sym__val_number_token1] = ACTIONS(1536), - [aux_sym__val_number_token2] = ACTIONS(1536), - [aux_sym__val_number_token3] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1536), - [sym_duration_unit] = ACTIONS(1536), - [anon_sym_DQUOTE] = ACTIONS(1536), - [sym__str_single_quotes] = ACTIONS(1536), - [sym__str_back_ticks] = ACTIONS(1536), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1536), - [sym__entry_separator] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1536), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1538), - }, - [217] = { - [sym__expr_parenthesized_immediate] = STATE(604), - [sym__immediate_decimal] = STATE(452), - [sym_val_variable] = STATE(604), - [sym_comment] = STATE(217), - [anon_sym_export] = ACTIONS(1544), - [anon_sym_alias] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(1544), - [anon_sym_let_DASHenv] = ACTIONS(1544), - [anon_sym_mut] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [aux_sym_cmd_identifier_token1] = ACTIONS(1544), - [aux_sym_cmd_identifier_token2] = ACTIONS(1544), - [aux_sym_cmd_identifier_token3] = ACTIONS(1544), - [aux_sym_cmd_identifier_token4] = ACTIONS(1544), - [aux_sym_cmd_identifier_token5] = ACTIONS(1544), - [aux_sym_cmd_identifier_token6] = ACTIONS(1544), - [aux_sym_cmd_identifier_token7] = ACTIONS(1544), - [aux_sym_cmd_identifier_token8] = ACTIONS(1544), - [aux_sym_cmd_identifier_token9] = ACTIONS(1544), - [aux_sym_cmd_identifier_token10] = ACTIONS(1544), - [aux_sym_cmd_identifier_token11] = ACTIONS(1544), - [aux_sym_cmd_identifier_token12] = ACTIONS(1544), - [aux_sym_cmd_identifier_token13] = ACTIONS(1544), - [aux_sym_cmd_identifier_token14] = ACTIONS(1544), - [aux_sym_cmd_identifier_token15] = ACTIONS(1544), - [aux_sym_cmd_identifier_token16] = ACTIONS(1544), - [aux_sym_cmd_identifier_token17] = ACTIONS(1544), - [aux_sym_cmd_identifier_token18] = ACTIONS(1544), - [aux_sym_cmd_identifier_token19] = ACTIONS(1544), - [aux_sym_cmd_identifier_token20] = ACTIONS(1544), - [aux_sym_cmd_identifier_token21] = ACTIONS(1544), - [aux_sym_cmd_identifier_token22] = ACTIONS(1544), - [aux_sym_cmd_identifier_token23] = ACTIONS(1544), - [aux_sym_cmd_identifier_token24] = ACTIONS(1544), - [aux_sym_cmd_identifier_token25] = ACTIONS(1544), - [aux_sym_cmd_identifier_token26] = ACTIONS(1544), - [aux_sym_cmd_identifier_token27] = ACTIONS(1544), - [aux_sym_cmd_identifier_token28] = ACTIONS(1544), - [aux_sym_cmd_identifier_token29] = ACTIONS(1544), - [aux_sym_cmd_identifier_token30] = ACTIONS(1544), - [aux_sym_cmd_identifier_token31] = ACTIONS(1544), - [aux_sym_cmd_identifier_token32] = ACTIONS(1544), - [aux_sym_cmd_identifier_token33] = ACTIONS(1544), - [aux_sym_cmd_identifier_token34] = ACTIONS(1544), - [aux_sym_cmd_identifier_token35] = ACTIONS(1544), - [aux_sym_cmd_identifier_token36] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1544), - [aux_sym_cmd_identifier_token38] = ACTIONS(1544), - [aux_sym_cmd_identifier_token39] = ACTIONS(1544), - [aux_sym_cmd_identifier_token40] = ACTIONS(1544), - [anon_sym_def] = ACTIONS(1544), - [anon_sym_export_DASHenv] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(1544), - [anon_sym_module] = ACTIONS(1544), - [anon_sym_use] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1546), - [anon_sym_error] = ACTIONS(1544), - [anon_sym_list] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_loop] = ACTIONS(1544), - [anon_sym_make] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_match] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(1544), - [anon_sym_catch] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_source] = ACTIONS(1544), - [anon_sym_source_DASHenv] = ACTIONS(1544), - [anon_sym_register] = ACTIONS(1544), - [anon_sym_hide] = ACTIONS(1544), - [anon_sym_hide_DASHenv] = ACTIONS(1544), - [anon_sym_overlay] = ACTIONS(1544), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(1550), - [aux_sym__immediate_decimal_token3] = ACTIONS(1550), - [aux_sym__immediate_decimal_token4] = ACTIONS(1552), - [aux_sym__immediate_decimal_token5] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1544), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1544), - [sym__entry_separator] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1544), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1556), - }, - [218] = { - [sym__expr_parenthesized_immediate] = STATE(449), - [sym__immediate_decimal] = STATE(390), - [sym_val_variable] = STATE(449), - [sym_comment] = STATE(218), - [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(1512), - [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(1514), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1560), - [anon_sym_DOT] = ACTIONS(1562), - [aux_sym__immediate_decimal_token1] = ACTIONS(1564), - [aux_sym__immediate_decimal_token3] = ACTIONS(1564), - [aux_sym__immediate_decimal_token4] = ACTIONS(1566), - [aux_sym__immediate_decimal_token5] = ACTIONS(1568), - [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(1570), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1570), - }, - [219] = { - [sym__expr_parenthesized_immediate] = STATE(561), - [sym__immediate_decimal] = STATE(499), - [sym_val_variable] = STATE(561), - [sym_comment] = STATE(219), - [anon_sym_export] = ACTIONS(1510), - [anon_sym_alias] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_let_DASHenv] = ACTIONS(1510), - [anon_sym_mut] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [aux_sym_cmd_identifier_token1] = ACTIONS(1510), - [aux_sym_cmd_identifier_token2] = ACTIONS(1510), - [aux_sym_cmd_identifier_token3] = ACTIONS(1510), - [aux_sym_cmd_identifier_token4] = ACTIONS(1510), - [aux_sym_cmd_identifier_token5] = ACTIONS(1510), - [aux_sym_cmd_identifier_token6] = ACTIONS(1510), - [aux_sym_cmd_identifier_token7] = ACTIONS(1510), - [aux_sym_cmd_identifier_token8] = ACTIONS(1510), - [aux_sym_cmd_identifier_token9] = ACTIONS(1510), - [aux_sym_cmd_identifier_token10] = ACTIONS(1510), - [aux_sym_cmd_identifier_token11] = ACTIONS(1510), - [aux_sym_cmd_identifier_token12] = ACTIONS(1510), - [aux_sym_cmd_identifier_token13] = ACTIONS(1510), - [aux_sym_cmd_identifier_token14] = ACTIONS(1510), - [aux_sym_cmd_identifier_token15] = ACTIONS(1510), - [aux_sym_cmd_identifier_token16] = ACTIONS(1510), - [aux_sym_cmd_identifier_token17] = ACTIONS(1510), - [aux_sym_cmd_identifier_token18] = ACTIONS(1510), - [aux_sym_cmd_identifier_token19] = ACTIONS(1510), - [aux_sym_cmd_identifier_token20] = ACTIONS(1510), - [aux_sym_cmd_identifier_token21] = ACTIONS(1510), - [aux_sym_cmd_identifier_token22] = ACTIONS(1510), - [aux_sym_cmd_identifier_token23] = ACTIONS(1510), - [aux_sym_cmd_identifier_token24] = ACTIONS(1510), - [aux_sym_cmd_identifier_token25] = ACTIONS(1510), - [aux_sym_cmd_identifier_token26] = ACTIONS(1510), - [aux_sym_cmd_identifier_token27] = ACTIONS(1510), - [aux_sym_cmd_identifier_token28] = ACTIONS(1510), - [aux_sym_cmd_identifier_token29] = ACTIONS(1510), - [aux_sym_cmd_identifier_token30] = ACTIONS(1510), - [aux_sym_cmd_identifier_token31] = ACTIONS(1510), - [aux_sym_cmd_identifier_token32] = ACTIONS(1510), - [aux_sym_cmd_identifier_token33] = ACTIONS(1510), - [aux_sym_cmd_identifier_token34] = ACTIONS(1510), - [aux_sym_cmd_identifier_token35] = ACTIONS(1510), - [aux_sym_cmd_identifier_token36] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [anon_sym_null] = ACTIONS(1510), - [aux_sym_cmd_identifier_token38] = ACTIONS(1510), - [aux_sym_cmd_identifier_token39] = ACTIONS(1510), - [aux_sym_cmd_identifier_token40] = ACTIONS(1510), - [anon_sym_def] = ACTIONS(1510), - [anon_sym_export_DASHenv] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_module] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1546), - [anon_sym_error] = ACTIONS(1510), - [anon_sym_list] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_in] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_make] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1510), - [anon_sym_catch] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_source] = ACTIONS(1510), - [anon_sym_source_DASHenv] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_hide] = ACTIONS(1510), - [anon_sym_hide_DASHenv] = ACTIONS(1510), - [anon_sym_overlay] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_as] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1510), - [aux_sym__immediate_decimal_token1] = ACTIONS(1550), - [aux_sym__immediate_decimal_token3] = ACTIONS(1550), - [aux_sym__immediate_decimal_token4] = ACTIONS(1552), - [aux_sym__immediate_decimal_token5] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1510), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1510), - [aux_sym__val_number_decimal_token3] = ACTIONS(1510), - [aux_sym__val_number_decimal_token4] = ACTIONS(1510), - [aux_sym__val_number_token1] = ACTIONS(1510), - [aux_sym__val_number_token2] = ACTIONS(1510), - [aux_sym__val_number_token3] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym__str_single_quotes] = ACTIONS(1510), - [sym__str_back_ticks] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1510), - [sym__entry_separator] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1510), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1524), - }, - [220] = { - [sym__expr_parenthesized_immediate] = STATE(492), - [sym__immediate_decimal] = STATE(386), - [sym_val_variable] = STATE(492), - [sym_comment] = STATE(220), - [anon_sym_export] = ACTIONS(1510), - [anon_sym_alias] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_let_DASHenv] = ACTIONS(1510), - [anon_sym_mut] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [aux_sym_cmd_identifier_token1] = ACTIONS(1510), - [aux_sym_cmd_identifier_token2] = ACTIONS(1510), - [aux_sym_cmd_identifier_token3] = ACTIONS(1510), - [aux_sym_cmd_identifier_token4] = ACTIONS(1510), - [aux_sym_cmd_identifier_token5] = ACTIONS(1510), - [aux_sym_cmd_identifier_token6] = ACTIONS(1510), - [aux_sym_cmd_identifier_token7] = ACTIONS(1510), - [aux_sym_cmd_identifier_token8] = ACTIONS(1510), - [aux_sym_cmd_identifier_token9] = ACTIONS(1510), - [aux_sym_cmd_identifier_token10] = ACTIONS(1510), - [aux_sym_cmd_identifier_token11] = ACTIONS(1510), - [aux_sym_cmd_identifier_token12] = ACTIONS(1510), - [aux_sym_cmd_identifier_token13] = ACTIONS(1510), - [aux_sym_cmd_identifier_token14] = ACTIONS(1510), - [aux_sym_cmd_identifier_token15] = ACTIONS(1510), - [aux_sym_cmd_identifier_token16] = ACTIONS(1510), - [aux_sym_cmd_identifier_token17] = ACTIONS(1510), - [aux_sym_cmd_identifier_token18] = ACTIONS(1510), - [aux_sym_cmd_identifier_token19] = ACTIONS(1510), - [aux_sym_cmd_identifier_token20] = ACTIONS(1510), - [aux_sym_cmd_identifier_token21] = ACTIONS(1510), - [aux_sym_cmd_identifier_token22] = ACTIONS(1510), - [aux_sym_cmd_identifier_token23] = ACTIONS(1510), - [aux_sym_cmd_identifier_token24] = ACTIONS(1510), - [aux_sym_cmd_identifier_token25] = ACTIONS(1510), - [aux_sym_cmd_identifier_token26] = ACTIONS(1510), - [aux_sym_cmd_identifier_token27] = ACTIONS(1510), - [aux_sym_cmd_identifier_token28] = ACTIONS(1510), - [aux_sym_cmd_identifier_token29] = ACTIONS(1510), - [aux_sym_cmd_identifier_token30] = ACTIONS(1510), - [aux_sym_cmd_identifier_token31] = ACTIONS(1510), - [aux_sym_cmd_identifier_token32] = ACTIONS(1510), - [aux_sym_cmd_identifier_token33] = ACTIONS(1510), - [aux_sym_cmd_identifier_token34] = ACTIONS(1510), - [aux_sym_cmd_identifier_token35] = ACTIONS(1510), - [aux_sym_cmd_identifier_token36] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [aux_sym_cmd_identifier_token38] = ACTIONS(1510), - [aux_sym_cmd_identifier_token39] = ACTIONS(1524), - [aux_sym_cmd_identifier_token40] = ACTIONS(1524), - [anon_sym_def] = ACTIONS(1510), - [anon_sym_export_DASHenv] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_module] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_error] = ACTIONS(1510), - [anon_sym_list] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_in] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_make] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_try] = ACTIONS(1510), - [anon_sym_catch] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_source] = ACTIONS(1510), - [anon_sym_source_DASHenv] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_hide] = ACTIONS(1510), - [anon_sym_hide_DASHenv] = ACTIONS(1510), - [anon_sym_overlay] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_as] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1574), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1524), - [anon_sym_DOT] = ACTIONS(1576), - [aux_sym__immediate_decimal_token1] = ACTIONS(1578), - [aux_sym__immediate_decimal_token3] = ACTIONS(1580), - [aux_sym__immediate_decimal_token4] = ACTIONS(1582), - [aux_sym__immediate_decimal_token5] = ACTIONS(1584), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1524), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1510), - [aux_sym__val_number_decimal_token3] = ACTIONS(1510), - [aux_sym__val_number_decimal_token4] = ACTIONS(1510), - [aux_sym__val_number_token1] = ACTIONS(1524), - [aux_sym__val_number_token2] = ACTIONS(1524), - [aux_sym__val_number_token3] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym__str_single_quotes] = ACTIONS(1524), - [sym__str_back_ticks] = ACTIONS(1524), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1510), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1524), - }, - [221] = { - [sym__expr_parenthesized_immediate] = STATE(490), - [sym__immediate_decimal] = STATE(491), - [sym_val_variable] = STATE(490), - [sym_comment] = STATE(221), - [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(1570), - [anon_sym_false] = ACTIONS(1570), - [anon_sym_null] = ACTIONS(1570), - [aux_sym_cmd_identifier_token38] = ACTIONS(1560), - [aux_sym_cmd_identifier_token39] = ACTIONS(1570), - [aux_sym_cmd_identifier_token40] = ACTIONS(1570), - [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(1570), - [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(1574), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1570), - [anon_sym_DOT] = ACTIONS(1586), - [aux_sym__immediate_decimal_token1] = ACTIONS(1588), - [aux_sym__immediate_decimal_token3] = ACTIONS(1590), - [aux_sym__immediate_decimal_token4] = ACTIONS(1592), - [aux_sym__immediate_decimal_token5] = ACTIONS(1594), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1570), - [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(1570), - [aux_sym__val_number_token2] = ACTIONS(1570), - [aux_sym__val_number_token3] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [sym__str_single_quotes] = ACTIONS(1570), - [sym__str_back_ticks] = ACTIONS(1570), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1570), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1570), + [anon_sym_where] = ACTIONS(1455), + [aux_sym_expr_unary_token1] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [aux_sym__val_number_decimal_token1] = ACTIONS(1453), + [aux_sym__val_number_decimal_token2] = ACTIONS(1455), + [aux_sym__val_number_decimal_token3] = ACTIONS(1455), + [aux_sym__val_number_decimal_token4] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1453), + [aux_sym__val_number_token5] = ACTIONS(1453), + [aux_sym__val_number_token6] = ACTIONS(1453), + [anon_sym_0b] = ACTIONS(1453), + [anon_sym_0o] = ACTIONS(1453), + [anon_sym_0x] = ACTIONS(1453), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [aux_sym_env_var_token1] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), }, [222] = { [sym_comment] = STATE(222), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_alias] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_let_DASHenv] = ACTIONS(1596), - [anon_sym_mut] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [aux_sym_cmd_identifier_token1] = ACTIONS(1596), - [aux_sym_cmd_identifier_token2] = ACTIONS(1596), - [aux_sym_cmd_identifier_token3] = ACTIONS(1596), - [aux_sym_cmd_identifier_token4] = ACTIONS(1596), - [aux_sym_cmd_identifier_token5] = ACTIONS(1596), - [aux_sym_cmd_identifier_token6] = ACTIONS(1596), - [aux_sym_cmd_identifier_token7] = ACTIONS(1596), - [aux_sym_cmd_identifier_token8] = ACTIONS(1596), - [aux_sym_cmd_identifier_token9] = ACTIONS(1596), - [aux_sym_cmd_identifier_token10] = ACTIONS(1596), - [aux_sym_cmd_identifier_token11] = ACTIONS(1596), - [aux_sym_cmd_identifier_token12] = ACTIONS(1596), - [aux_sym_cmd_identifier_token13] = ACTIONS(1596), - [aux_sym_cmd_identifier_token14] = ACTIONS(1596), - [aux_sym_cmd_identifier_token15] = ACTIONS(1596), - [aux_sym_cmd_identifier_token16] = ACTIONS(1596), - [aux_sym_cmd_identifier_token17] = ACTIONS(1596), - [aux_sym_cmd_identifier_token18] = ACTIONS(1596), - [aux_sym_cmd_identifier_token19] = ACTIONS(1596), - [aux_sym_cmd_identifier_token20] = ACTIONS(1596), - [aux_sym_cmd_identifier_token21] = ACTIONS(1596), - [aux_sym_cmd_identifier_token22] = ACTIONS(1596), - [aux_sym_cmd_identifier_token23] = ACTIONS(1596), - [aux_sym_cmd_identifier_token24] = ACTIONS(1596), - [aux_sym_cmd_identifier_token25] = ACTIONS(1596), - [aux_sym_cmd_identifier_token26] = ACTIONS(1596), - [aux_sym_cmd_identifier_token27] = ACTIONS(1596), - [aux_sym_cmd_identifier_token28] = ACTIONS(1596), - [aux_sym_cmd_identifier_token29] = ACTIONS(1596), - [aux_sym_cmd_identifier_token30] = ACTIONS(1596), - [aux_sym_cmd_identifier_token31] = ACTIONS(1596), - [aux_sym_cmd_identifier_token32] = ACTIONS(1596), - [aux_sym_cmd_identifier_token33] = ACTIONS(1596), - [aux_sym_cmd_identifier_token34] = ACTIONS(1596), - [aux_sym_cmd_identifier_token35] = ACTIONS(1596), - [aux_sym_cmd_identifier_token36] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [anon_sym_null] = ACTIONS(1596), - [aux_sym_cmd_identifier_token38] = ACTIONS(1596), - [aux_sym_cmd_identifier_token39] = ACTIONS(1596), - [aux_sym_cmd_identifier_token40] = ACTIONS(1596), - [anon_sym_def] = ACTIONS(1596), - [anon_sym_export_DASHenv] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_error] = ACTIONS(1596), - [anon_sym_list] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [anon_sym_loop] = ACTIONS(1596), - [anon_sym_make] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_else] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_try] = ACTIONS(1596), - [anon_sym_catch] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_source] = ACTIONS(1596), - [anon_sym_source_DASHenv] = ACTIONS(1596), - [anon_sym_register] = ACTIONS(1596), - [anon_sym_hide] = ACTIONS(1596), - [anon_sym_hide_DASHenv] = ACTIONS(1596), - [anon_sym_overlay] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1596), - [anon_sym_as] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1598), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1596), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(1600), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1596), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1596), - [aux_sym__val_number_decimal_token3] = ACTIONS(1596), - [aux_sym__val_number_decimal_token4] = ACTIONS(1596), - [aux_sym__val_number_token1] = ACTIONS(1596), - [aux_sym__val_number_token2] = ACTIONS(1596), - [aux_sym__val_number_token3] = ACTIONS(1596), - [sym_filesize_unit] = ACTIONS(1596), - [sym_duration_unit] = ACTIONS(1596), - [anon_sym_DQUOTE] = ACTIONS(1596), - [sym__str_single_quotes] = ACTIONS(1596), - [sym__str_back_ticks] = ACTIONS(1596), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1596), - [sym__entry_separator] = ACTIONS(1598), - [anon_sym_PLUS] = ACTIONS(1596), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1598), + [aux_sym__block_body_repeat1] = STATE(223), + [anon_sym_export] = ACTIONS(1453), + [anon_sym_alias] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_let_DASHenv] = ACTIONS(1453), + [anon_sym_mut] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [aux_sym_cmd_identifier_token1] = ACTIONS(1453), + [aux_sym_cmd_identifier_token2] = ACTIONS(1455), + [aux_sym_cmd_identifier_token3] = ACTIONS(1455), + [aux_sym_cmd_identifier_token4] = ACTIONS(1455), + [aux_sym_cmd_identifier_token5] = ACTIONS(1455), + [aux_sym_cmd_identifier_token6] = ACTIONS(1455), + [aux_sym_cmd_identifier_token7] = ACTIONS(1455), + [aux_sym_cmd_identifier_token8] = ACTIONS(1453), + [aux_sym_cmd_identifier_token9] = ACTIONS(1453), + [aux_sym_cmd_identifier_token10] = ACTIONS(1455), + [aux_sym_cmd_identifier_token11] = ACTIONS(1455), + [aux_sym_cmd_identifier_token12] = ACTIONS(1453), + [aux_sym_cmd_identifier_token13] = ACTIONS(1453), + [aux_sym_cmd_identifier_token14] = ACTIONS(1453), + [aux_sym_cmd_identifier_token15] = ACTIONS(1453), + [aux_sym_cmd_identifier_token16] = ACTIONS(1455), + [aux_sym_cmd_identifier_token17] = ACTIONS(1455), + [aux_sym_cmd_identifier_token18] = ACTIONS(1455), + [aux_sym_cmd_identifier_token19] = ACTIONS(1455), + [aux_sym_cmd_identifier_token20] = ACTIONS(1455), + [aux_sym_cmd_identifier_token21] = ACTIONS(1455), + [aux_sym_cmd_identifier_token22] = ACTIONS(1455), + [aux_sym_cmd_identifier_token23] = ACTIONS(1455), + [aux_sym_cmd_identifier_token24] = ACTIONS(1455), + [aux_sym_cmd_identifier_token25] = ACTIONS(1455), + [aux_sym_cmd_identifier_token26] = ACTIONS(1455), + [aux_sym_cmd_identifier_token27] = ACTIONS(1455), + [aux_sym_cmd_identifier_token28] = ACTIONS(1455), + [aux_sym_cmd_identifier_token29] = ACTIONS(1455), + [aux_sym_cmd_identifier_token30] = ACTIONS(1455), + [aux_sym_cmd_identifier_token31] = ACTIONS(1455), + [aux_sym_cmd_identifier_token32] = ACTIONS(1455), + [aux_sym_cmd_identifier_token33] = ACTIONS(1455), + [aux_sym_cmd_identifier_token34] = ACTIONS(1453), + [aux_sym_cmd_identifier_token35] = ACTIONS(1455), + [aux_sym_cmd_identifier_token36] = ACTIONS(1455), + [aux_sym_cmd_identifier_token37] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1453), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_export_DASHenv] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1453), + [anon_sym_module] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_error] = ACTIONS(1453), + [anon_sym_DASH2] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_loop] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_source] = ACTIONS(1453), + [anon_sym_source_DASHenv] = ACTIONS(1453), + [anon_sym_register] = ACTIONS(1453), + [anon_sym_hide] = ACTIONS(1453), + [anon_sym_hide_DASHenv] = ACTIONS(1453), + [anon_sym_overlay] = ACTIONS(1453), + [anon_sym_where] = ACTIONS(1455), + [aux_sym_expr_unary_token1] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [aux_sym__val_number_decimal_token1] = ACTIONS(1453), + [aux_sym__val_number_decimal_token2] = ACTIONS(1455), + [aux_sym__val_number_decimal_token3] = ACTIONS(1455), + [aux_sym__val_number_decimal_token4] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1453), + [aux_sym__val_number_token5] = ACTIONS(1453), + [aux_sym__val_number_token6] = ACTIONS(1453), + [anon_sym_0b] = ACTIONS(1453), + [anon_sym_0o] = ACTIONS(1453), + [anon_sym_0x] = ACTIONS(1453), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [aux_sym_env_var_token1] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), }, [223] = { [sym_comment] = STATE(223), - [anon_sym_export] = ACTIONS(1536), - [anon_sym_alias] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_let_DASHenv] = ACTIONS(1536), - [anon_sym_mut] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [aux_sym_cmd_identifier_token1] = ACTIONS(1536), - [aux_sym_cmd_identifier_token2] = ACTIONS(1536), - [aux_sym_cmd_identifier_token3] = ACTIONS(1536), - [aux_sym_cmd_identifier_token4] = ACTIONS(1536), - [aux_sym_cmd_identifier_token5] = ACTIONS(1536), - [aux_sym_cmd_identifier_token6] = ACTIONS(1536), - [aux_sym_cmd_identifier_token7] = ACTIONS(1536), - [aux_sym_cmd_identifier_token8] = ACTIONS(1536), - [aux_sym_cmd_identifier_token9] = ACTIONS(1536), - [aux_sym_cmd_identifier_token10] = ACTIONS(1536), - [aux_sym_cmd_identifier_token11] = ACTIONS(1536), - [aux_sym_cmd_identifier_token12] = ACTIONS(1536), - [aux_sym_cmd_identifier_token13] = ACTIONS(1536), - [aux_sym_cmd_identifier_token14] = ACTIONS(1536), - [aux_sym_cmd_identifier_token15] = ACTIONS(1536), - [aux_sym_cmd_identifier_token16] = ACTIONS(1536), - [aux_sym_cmd_identifier_token17] = ACTIONS(1536), - [aux_sym_cmd_identifier_token18] = ACTIONS(1536), - [aux_sym_cmd_identifier_token19] = ACTIONS(1536), - [aux_sym_cmd_identifier_token20] = ACTIONS(1536), - [aux_sym_cmd_identifier_token21] = ACTIONS(1536), - [aux_sym_cmd_identifier_token22] = ACTIONS(1536), - [aux_sym_cmd_identifier_token23] = ACTIONS(1536), - [aux_sym_cmd_identifier_token24] = ACTIONS(1536), - [aux_sym_cmd_identifier_token25] = ACTIONS(1536), - [aux_sym_cmd_identifier_token26] = ACTIONS(1536), - [aux_sym_cmd_identifier_token27] = ACTIONS(1536), - [aux_sym_cmd_identifier_token28] = ACTIONS(1536), - [aux_sym_cmd_identifier_token29] = ACTIONS(1536), - [aux_sym_cmd_identifier_token30] = ACTIONS(1536), - [aux_sym_cmd_identifier_token31] = ACTIONS(1536), - [aux_sym_cmd_identifier_token32] = ACTIONS(1536), - [aux_sym_cmd_identifier_token33] = ACTIONS(1536), - [aux_sym_cmd_identifier_token34] = ACTIONS(1536), - [aux_sym_cmd_identifier_token35] = ACTIONS(1536), - [aux_sym_cmd_identifier_token36] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [anon_sym_null] = ACTIONS(1536), - [aux_sym_cmd_identifier_token38] = ACTIONS(1536), - [aux_sym_cmd_identifier_token39] = ACTIONS(1536), - [aux_sym_cmd_identifier_token40] = ACTIONS(1536), - [anon_sym_def] = ACTIONS(1536), - [anon_sym_export_DASHenv] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_error] = ACTIONS(1536), - [anon_sym_list] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_make] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_else] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_try] = ACTIONS(1536), - [anon_sym_catch] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_source] = ACTIONS(1536), - [anon_sym_source_DASHenv] = ACTIONS(1536), - [anon_sym_register] = ACTIONS(1536), - [anon_sym_hide] = ACTIONS(1536), - [anon_sym_hide_DASHenv] = ACTIONS(1536), - [anon_sym_overlay] = ACTIONS(1536), - [anon_sym_new] = ACTIONS(1536), - [anon_sym_as] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1536), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1536), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1536), - [aux_sym__val_number_decimal_token3] = ACTIONS(1536), - [aux_sym__val_number_decimal_token4] = ACTIONS(1536), - [aux_sym__val_number_token1] = ACTIONS(1536), - [aux_sym__val_number_token2] = ACTIONS(1536), - [aux_sym__val_number_token3] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1536), - [sym_duration_unit] = ACTIONS(1536), - [anon_sym_DQUOTE] = ACTIONS(1536), - [sym__str_single_quotes] = ACTIONS(1536), - [sym__str_back_ticks] = ACTIONS(1536), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1536), - [sym__entry_separator] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1536), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1538), + [aux_sym__block_body_repeat1] = STATE(223), + [anon_sym_export] = ACTIONS(1461), + [anon_sym_alias] = ACTIONS(1461), + [anon_sym_let] = ACTIONS(1461), + [anon_sym_let_DASHenv] = ACTIONS(1461), + [anon_sym_mut] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [aux_sym_cmd_identifier_token1] = ACTIONS(1461), + [aux_sym_cmd_identifier_token2] = ACTIONS(1463), + [aux_sym_cmd_identifier_token3] = ACTIONS(1463), + [aux_sym_cmd_identifier_token4] = ACTIONS(1463), + [aux_sym_cmd_identifier_token5] = ACTIONS(1463), + [aux_sym_cmd_identifier_token6] = ACTIONS(1463), + [aux_sym_cmd_identifier_token7] = ACTIONS(1463), + [aux_sym_cmd_identifier_token8] = ACTIONS(1461), + [aux_sym_cmd_identifier_token9] = ACTIONS(1461), + [aux_sym_cmd_identifier_token10] = ACTIONS(1463), + [aux_sym_cmd_identifier_token11] = ACTIONS(1463), + [aux_sym_cmd_identifier_token12] = ACTIONS(1461), + [aux_sym_cmd_identifier_token13] = ACTIONS(1461), + [aux_sym_cmd_identifier_token14] = ACTIONS(1461), + [aux_sym_cmd_identifier_token15] = ACTIONS(1461), + [aux_sym_cmd_identifier_token16] = ACTIONS(1463), + [aux_sym_cmd_identifier_token17] = ACTIONS(1463), + [aux_sym_cmd_identifier_token18] = ACTIONS(1463), + [aux_sym_cmd_identifier_token19] = ACTIONS(1463), + [aux_sym_cmd_identifier_token20] = ACTIONS(1463), + [aux_sym_cmd_identifier_token21] = ACTIONS(1463), + [aux_sym_cmd_identifier_token22] = ACTIONS(1463), + [aux_sym_cmd_identifier_token23] = ACTIONS(1463), + [aux_sym_cmd_identifier_token24] = ACTIONS(1463), + [aux_sym_cmd_identifier_token25] = ACTIONS(1463), + [aux_sym_cmd_identifier_token26] = ACTIONS(1463), + [aux_sym_cmd_identifier_token27] = ACTIONS(1463), + [aux_sym_cmd_identifier_token28] = ACTIONS(1463), + [aux_sym_cmd_identifier_token29] = ACTIONS(1463), + [aux_sym_cmd_identifier_token30] = ACTIONS(1463), + [aux_sym_cmd_identifier_token31] = ACTIONS(1463), + [aux_sym_cmd_identifier_token32] = ACTIONS(1463), + [aux_sym_cmd_identifier_token33] = ACTIONS(1463), + [aux_sym_cmd_identifier_token34] = ACTIONS(1461), + [aux_sym_cmd_identifier_token35] = ACTIONS(1463), + [aux_sym_cmd_identifier_token36] = ACTIONS(1463), + [aux_sym_cmd_identifier_token37] = ACTIONS(1463), + [aux_sym_cmd_identifier_token38] = ACTIONS(1461), + [aux_sym_cmd_identifier_token39] = ACTIONS(1463), + [aux_sym_cmd_identifier_token40] = ACTIONS(1463), + [sym__newline] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_def] = ACTIONS(1461), + [anon_sym_export_DASHenv] = ACTIONS(1461), + [anon_sym_extern] = ACTIONS(1461), + [anon_sym_module] = ACTIONS(1461), + [anon_sym_use] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1461), + [anon_sym_error] = ACTIONS(1461), + [anon_sym_DASH2] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_loop] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_try] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_source] = ACTIONS(1461), + [anon_sym_source_DASHenv] = ACTIONS(1461), + [anon_sym_register] = ACTIONS(1461), + [anon_sym_hide] = ACTIONS(1461), + [anon_sym_hide_DASHenv] = ACTIONS(1461), + [anon_sym_overlay] = ACTIONS(1461), + [anon_sym_where] = ACTIONS(1463), + [aux_sym_expr_unary_token1] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), + [anon_sym_DOT_DOT_LT] = ACTIONS(1463), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [aux_sym__val_number_decimal_token1] = ACTIONS(1461), + [aux_sym__val_number_decimal_token2] = ACTIONS(1463), + [aux_sym__val_number_decimal_token3] = ACTIONS(1463), + [aux_sym__val_number_decimal_token4] = ACTIONS(1463), + [aux_sym__val_number_token1] = ACTIONS(1463), + [aux_sym__val_number_token2] = ACTIONS(1463), + [aux_sym__val_number_token3] = ACTIONS(1463), + [aux_sym__val_number_token4] = ACTIONS(1461), + [aux_sym__val_number_token5] = ACTIONS(1461), + [aux_sym__val_number_token6] = ACTIONS(1461), + [anon_sym_0b] = ACTIONS(1461), + [anon_sym_0o] = ACTIONS(1461), + [anon_sym_0x] = ACTIONS(1461), + [sym_val_date] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [sym__str_single_quotes] = ACTIONS(1463), + [sym__str_back_ticks] = ACTIONS(1463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1463), + [aux_sym_env_var_token1] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1463), }, [224] = { - [sym__expr_parenthesized_immediate] = STATE(630), - [sym__immediate_decimal] = STATE(592), - [sym_val_variable] = STATE(630), [sym_comment] = STATE(224), - [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(1546), - [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(1548), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1560), - [aux_sym__immediate_decimal_token1] = ACTIONS(1602), - [aux_sym__immediate_decimal_token3] = ACTIONS(1602), - [aux_sym__immediate_decimal_token4] = ACTIONS(1604), - [aux_sym__immediate_decimal_token5] = ACTIONS(1606), - [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(1570), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1570), + [aux_sym__block_body_repeat1] = STATE(223), + [anon_sym_export] = ACTIONS(1453), + [anon_sym_alias] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_let_DASHenv] = ACTIONS(1453), + [anon_sym_mut] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [aux_sym_cmd_identifier_token1] = ACTIONS(1453), + [aux_sym_cmd_identifier_token2] = ACTIONS(1455), + [aux_sym_cmd_identifier_token3] = ACTIONS(1455), + [aux_sym_cmd_identifier_token4] = ACTIONS(1455), + [aux_sym_cmd_identifier_token5] = ACTIONS(1455), + [aux_sym_cmd_identifier_token6] = ACTIONS(1455), + [aux_sym_cmd_identifier_token7] = ACTIONS(1455), + [aux_sym_cmd_identifier_token8] = ACTIONS(1453), + [aux_sym_cmd_identifier_token9] = ACTIONS(1453), + [aux_sym_cmd_identifier_token10] = ACTIONS(1455), + [aux_sym_cmd_identifier_token11] = ACTIONS(1455), + [aux_sym_cmd_identifier_token12] = ACTIONS(1453), + [aux_sym_cmd_identifier_token13] = ACTIONS(1453), + [aux_sym_cmd_identifier_token14] = ACTIONS(1453), + [aux_sym_cmd_identifier_token15] = ACTIONS(1453), + [aux_sym_cmd_identifier_token16] = ACTIONS(1455), + [aux_sym_cmd_identifier_token17] = ACTIONS(1455), + [aux_sym_cmd_identifier_token18] = ACTIONS(1455), + [aux_sym_cmd_identifier_token19] = ACTIONS(1455), + [aux_sym_cmd_identifier_token20] = ACTIONS(1455), + [aux_sym_cmd_identifier_token21] = ACTIONS(1455), + [aux_sym_cmd_identifier_token22] = ACTIONS(1455), + [aux_sym_cmd_identifier_token23] = ACTIONS(1455), + [aux_sym_cmd_identifier_token24] = ACTIONS(1455), + [aux_sym_cmd_identifier_token25] = ACTIONS(1455), + [aux_sym_cmd_identifier_token26] = ACTIONS(1455), + [aux_sym_cmd_identifier_token27] = ACTIONS(1455), + [aux_sym_cmd_identifier_token28] = ACTIONS(1455), + [aux_sym_cmd_identifier_token29] = ACTIONS(1455), + [aux_sym_cmd_identifier_token30] = ACTIONS(1455), + [aux_sym_cmd_identifier_token31] = ACTIONS(1455), + [aux_sym_cmd_identifier_token32] = ACTIONS(1455), + [aux_sym_cmd_identifier_token33] = ACTIONS(1455), + [aux_sym_cmd_identifier_token34] = ACTIONS(1453), + [aux_sym_cmd_identifier_token35] = ACTIONS(1455), + [aux_sym_cmd_identifier_token36] = ACTIONS(1455), + [aux_sym_cmd_identifier_token37] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1453), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_export_DASHenv] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1453), + [anon_sym_module] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_error] = ACTIONS(1453), + [anon_sym_DASH2] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_loop] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_source] = ACTIONS(1453), + [anon_sym_source_DASHenv] = ACTIONS(1453), + [anon_sym_register] = ACTIONS(1453), + [anon_sym_hide] = ACTIONS(1453), + [anon_sym_hide_DASHenv] = ACTIONS(1453), + [anon_sym_overlay] = ACTIONS(1453), + [anon_sym_where] = ACTIONS(1455), + [aux_sym_expr_unary_token1] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [aux_sym__val_number_decimal_token1] = ACTIONS(1453), + [aux_sym__val_number_decimal_token2] = ACTIONS(1455), + [aux_sym__val_number_decimal_token3] = ACTIONS(1455), + [aux_sym__val_number_decimal_token4] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1453), + [aux_sym__val_number_token5] = ACTIONS(1453), + [aux_sym__val_number_token6] = ACTIONS(1453), + [anon_sym_0b] = ACTIONS(1453), + [anon_sym_0o] = ACTIONS(1453), + [anon_sym_0x] = ACTIONS(1453), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [aux_sym_env_var_token1] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), }, [225] = { - [sym__expr_parenthesized_immediate] = STATE(594), - [sym__immediate_decimal] = STATE(557), - [sym_val_variable] = STATE(594), [sym_comment] = STATE(225), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [aux_sym_cmd_identifier_token1] = ACTIONS(1608), - [aux_sym_cmd_identifier_token2] = ACTIONS(1608), - [aux_sym_cmd_identifier_token3] = ACTIONS(1608), - [aux_sym_cmd_identifier_token4] = ACTIONS(1608), - [aux_sym_cmd_identifier_token5] = ACTIONS(1608), - [aux_sym_cmd_identifier_token6] = ACTIONS(1608), - [aux_sym_cmd_identifier_token7] = ACTIONS(1608), - [aux_sym_cmd_identifier_token8] = ACTIONS(1608), - [aux_sym_cmd_identifier_token9] = ACTIONS(1608), - [aux_sym_cmd_identifier_token10] = ACTIONS(1608), - [aux_sym_cmd_identifier_token11] = ACTIONS(1608), - [aux_sym_cmd_identifier_token12] = ACTIONS(1608), - [aux_sym_cmd_identifier_token13] = ACTIONS(1608), - [aux_sym_cmd_identifier_token14] = ACTIONS(1608), - [aux_sym_cmd_identifier_token15] = ACTIONS(1608), - [aux_sym_cmd_identifier_token16] = ACTIONS(1608), - [aux_sym_cmd_identifier_token17] = ACTIONS(1608), - [aux_sym_cmd_identifier_token18] = ACTIONS(1608), - [aux_sym_cmd_identifier_token19] = ACTIONS(1608), - [aux_sym_cmd_identifier_token20] = ACTIONS(1608), - [aux_sym_cmd_identifier_token21] = ACTIONS(1608), - [aux_sym_cmd_identifier_token22] = ACTIONS(1608), - [aux_sym_cmd_identifier_token23] = ACTIONS(1608), - [aux_sym_cmd_identifier_token24] = ACTIONS(1608), - [aux_sym_cmd_identifier_token25] = ACTIONS(1608), - [aux_sym_cmd_identifier_token26] = ACTIONS(1608), - [aux_sym_cmd_identifier_token27] = ACTIONS(1608), - [aux_sym_cmd_identifier_token28] = ACTIONS(1608), - [aux_sym_cmd_identifier_token29] = ACTIONS(1608), - [aux_sym_cmd_identifier_token30] = ACTIONS(1608), - [aux_sym_cmd_identifier_token31] = ACTIONS(1608), - [aux_sym_cmd_identifier_token32] = ACTIONS(1608), - [aux_sym_cmd_identifier_token33] = ACTIONS(1608), - [aux_sym_cmd_identifier_token34] = ACTIONS(1608), - [aux_sym_cmd_identifier_token35] = ACTIONS(1608), - [aux_sym_cmd_identifier_token36] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [aux_sym_cmd_identifier_token38] = ACTIONS(1608), - [aux_sym_cmd_identifier_token39] = ACTIONS(1608), - [aux_sym_cmd_identifier_token40] = ACTIONS(1608), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1546), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_list] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_make] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_catch] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_as] = ACTIONS(1608), - [anon_sym_LPAREN2] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1608), - [aux_sym__immediate_decimal_token1] = ACTIONS(1602), - [aux_sym__immediate_decimal_token3] = ACTIONS(1602), - [aux_sym__immediate_decimal_token4] = ACTIONS(1604), - [aux_sym__immediate_decimal_token5] = ACTIONS(1606), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1608), - [aux_sym__val_number_decimal_token4] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1608), - [aux_sym__val_number_token2] = ACTIONS(1608), - [aux_sym__val_number_token3] = ACTIONS(1608), - [anon_sym_DQUOTE] = ACTIONS(1608), - [sym__str_single_quotes] = ACTIONS(1608), - [sym__str_back_ticks] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1608), - [sym__entry_separator] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1608), + [ts_builtin_sym_end] = ACTIONS(1292), + [anon_sym_POUND_BANG] = ACTIONS(1288), + [anon_sym_export] = ACTIONS(1470), + [anon_sym_alias] = ACTIONS(1470), + [anon_sym_let] = ACTIONS(1470), + [anon_sym_let_DASHenv] = ACTIONS(1470), + [anon_sym_mut] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [aux_sym_cmd_identifier_token1] = ACTIONS(1470), + [aux_sym_cmd_identifier_token2] = ACTIONS(1292), + [aux_sym_cmd_identifier_token3] = ACTIONS(1292), + [aux_sym_cmd_identifier_token4] = ACTIONS(1292), + [aux_sym_cmd_identifier_token5] = ACTIONS(1292), + [aux_sym_cmd_identifier_token6] = ACTIONS(1292), + [aux_sym_cmd_identifier_token7] = ACTIONS(1292), + [aux_sym_cmd_identifier_token8] = ACTIONS(1470), + [aux_sym_cmd_identifier_token9] = ACTIONS(1470), + [aux_sym_cmd_identifier_token10] = ACTIONS(1292), + [aux_sym_cmd_identifier_token11] = ACTIONS(1292), + [aux_sym_cmd_identifier_token12] = ACTIONS(1470), + [aux_sym_cmd_identifier_token13] = ACTIONS(1470), + [aux_sym_cmd_identifier_token14] = ACTIONS(1470), + [aux_sym_cmd_identifier_token15] = ACTIONS(1470), + [aux_sym_cmd_identifier_token16] = ACTIONS(1292), + [aux_sym_cmd_identifier_token17] = ACTIONS(1292), + [aux_sym_cmd_identifier_token18] = ACTIONS(1292), + [aux_sym_cmd_identifier_token19] = ACTIONS(1292), + [aux_sym_cmd_identifier_token20] = ACTIONS(1292), + [aux_sym_cmd_identifier_token21] = ACTIONS(1292), + [aux_sym_cmd_identifier_token22] = ACTIONS(1292), + [aux_sym_cmd_identifier_token23] = ACTIONS(1292), + [aux_sym_cmd_identifier_token24] = ACTIONS(1292), + [aux_sym_cmd_identifier_token25] = ACTIONS(1292), + [aux_sym_cmd_identifier_token26] = ACTIONS(1292), + [aux_sym_cmd_identifier_token27] = ACTIONS(1292), + [aux_sym_cmd_identifier_token28] = ACTIONS(1292), + [aux_sym_cmd_identifier_token29] = ACTIONS(1292), + [aux_sym_cmd_identifier_token30] = ACTIONS(1292), + [aux_sym_cmd_identifier_token31] = ACTIONS(1292), + [aux_sym_cmd_identifier_token32] = ACTIONS(1292), + [aux_sym_cmd_identifier_token33] = ACTIONS(1292), + [aux_sym_cmd_identifier_token34] = ACTIONS(1470), + [aux_sym_cmd_identifier_token35] = ACTIONS(1292), + [aux_sym_cmd_identifier_token36] = ACTIONS(1292), + [aux_sym_cmd_identifier_token37] = ACTIONS(1292), + [aux_sym_cmd_identifier_token38] = ACTIONS(1470), + [aux_sym_cmd_identifier_token39] = ACTIONS(1292), + [aux_sym_cmd_identifier_token40] = ACTIONS(1292), + [sym__newline] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_def] = ACTIONS(1470), + [anon_sym_export_DASHenv] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym_module] = ACTIONS(1470), + [anon_sym_use] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_error] = ACTIONS(1470), + [anon_sym_DASH2] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_loop] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1470), + [anon_sym_try] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_source] = ACTIONS(1470), + [anon_sym_source_DASHenv] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_hide] = ACTIONS(1470), + [anon_sym_hide_DASHenv] = ACTIONS(1470), + [anon_sym_overlay] = ACTIONS(1470), + [anon_sym_where] = ACTIONS(1292), + [aux_sym_expr_unary_token1] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), + [anon_sym_DOT_DOT_LT] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1470), + [anon_sym_true] = ACTIONS(1470), + [anon_sym_false] = ACTIONS(1470), + [aux_sym__val_number_decimal_token1] = ACTIONS(1470), + [aux_sym__val_number_decimal_token2] = ACTIONS(1292), + [aux_sym__val_number_decimal_token3] = ACTIONS(1292), + [aux_sym__val_number_decimal_token4] = ACTIONS(1292), + [aux_sym__val_number_token1] = ACTIONS(1292), + [aux_sym__val_number_token2] = ACTIONS(1292), + [aux_sym__val_number_token3] = ACTIONS(1292), + [aux_sym__val_number_token4] = ACTIONS(1470), + [aux_sym__val_number_token5] = ACTIONS(1470), + [aux_sym__val_number_token6] = ACTIONS(1470), + [anon_sym_0b] = ACTIONS(1470), + [anon_sym_0o] = ACTIONS(1470), + [anon_sym_0x] = ACTIONS(1470), + [sym_val_date] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym__str_single_quotes] = ACTIONS(1292), + [sym__str_back_ticks] = ACTIONS(1292), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), + [aux_sym_env_var_token1] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1292), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1610), + [sym_raw_string_begin] = ACTIONS(1292), }, [226] = { - [sym__expr_parenthesized_immediate] = STATE(568), - [sym__immediate_decimal] = STATE(587), - [sym_val_variable] = STATE(568), [sym_comment] = STATE(226), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_alias] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_let_DASHenv] = ACTIONS(1612), - [anon_sym_mut] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [aux_sym_cmd_identifier_token1] = ACTIONS(1612), - [aux_sym_cmd_identifier_token2] = ACTIONS(1612), - [aux_sym_cmd_identifier_token3] = ACTIONS(1612), - [aux_sym_cmd_identifier_token4] = ACTIONS(1612), - [aux_sym_cmd_identifier_token5] = ACTIONS(1612), - [aux_sym_cmd_identifier_token6] = ACTIONS(1612), - [aux_sym_cmd_identifier_token7] = ACTIONS(1612), - [aux_sym_cmd_identifier_token8] = ACTIONS(1612), - [aux_sym_cmd_identifier_token9] = ACTIONS(1612), - [aux_sym_cmd_identifier_token10] = ACTIONS(1612), - [aux_sym_cmd_identifier_token11] = ACTIONS(1612), - [aux_sym_cmd_identifier_token12] = ACTIONS(1612), - [aux_sym_cmd_identifier_token13] = ACTIONS(1612), - [aux_sym_cmd_identifier_token14] = ACTIONS(1612), - [aux_sym_cmd_identifier_token15] = ACTIONS(1612), - [aux_sym_cmd_identifier_token16] = ACTIONS(1612), - [aux_sym_cmd_identifier_token17] = ACTIONS(1612), - [aux_sym_cmd_identifier_token18] = ACTIONS(1612), - [aux_sym_cmd_identifier_token19] = ACTIONS(1612), - [aux_sym_cmd_identifier_token20] = ACTIONS(1612), - [aux_sym_cmd_identifier_token21] = ACTIONS(1612), - [aux_sym_cmd_identifier_token22] = ACTIONS(1612), - [aux_sym_cmd_identifier_token23] = ACTIONS(1612), - [aux_sym_cmd_identifier_token24] = ACTIONS(1612), - [aux_sym_cmd_identifier_token25] = ACTIONS(1612), - [aux_sym_cmd_identifier_token26] = ACTIONS(1612), - [aux_sym_cmd_identifier_token27] = ACTIONS(1612), - [aux_sym_cmd_identifier_token28] = ACTIONS(1612), - [aux_sym_cmd_identifier_token29] = ACTIONS(1612), - [aux_sym_cmd_identifier_token30] = ACTIONS(1612), - [aux_sym_cmd_identifier_token31] = ACTIONS(1612), - [aux_sym_cmd_identifier_token32] = ACTIONS(1612), - [aux_sym_cmd_identifier_token33] = ACTIONS(1612), - [aux_sym_cmd_identifier_token34] = ACTIONS(1612), - [aux_sym_cmd_identifier_token35] = ACTIONS(1612), - [aux_sym_cmd_identifier_token36] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [anon_sym_null] = ACTIONS(1612), - [aux_sym_cmd_identifier_token38] = ACTIONS(1612), - [aux_sym_cmd_identifier_token39] = ACTIONS(1612), - [aux_sym_cmd_identifier_token40] = ACTIONS(1612), - [anon_sym_def] = ACTIONS(1612), - [anon_sym_export_DASHenv] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_use] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(1546), - [anon_sym_error] = ACTIONS(1612), - [anon_sym_list] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_in] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_make] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_else] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_try] = ACTIONS(1612), - [anon_sym_catch] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_source] = ACTIONS(1612), - [anon_sym_source_DASHenv] = ACTIONS(1612), - [anon_sym_register] = ACTIONS(1612), - [anon_sym_hide] = ACTIONS(1612), - [anon_sym_hide_DASHenv] = ACTIONS(1612), - [anon_sym_overlay] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_as] = ACTIONS(1612), - [anon_sym_LPAREN2] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1612), - [aux_sym__immediate_decimal_token1] = ACTIONS(1602), - [aux_sym__immediate_decimal_token3] = ACTIONS(1602), - [aux_sym__immediate_decimal_token4] = ACTIONS(1604), - [aux_sym__immediate_decimal_token5] = ACTIONS(1606), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1612), - [aux_sym__val_number_decimal_token1] = ACTIONS(1612), - [aux_sym__val_number_decimal_token2] = ACTIONS(1612), - [aux_sym__val_number_decimal_token3] = ACTIONS(1612), - [aux_sym__val_number_decimal_token4] = ACTIONS(1612), - [aux_sym__val_number_token1] = ACTIONS(1612), - [aux_sym__val_number_token2] = ACTIONS(1612), - [aux_sym__val_number_token3] = ACTIONS(1612), - [anon_sym_DQUOTE] = ACTIONS(1612), - [sym__str_single_quotes] = ACTIONS(1612), - [sym__str_back_ticks] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1612), - [sym__entry_separator] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1614), + [anon_sym_export] = ACTIONS(1282), + [anon_sym_alias] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_let_DASHenv] = ACTIONS(1282), + [anon_sym_mut] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [aux_sym_cmd_identifier_token1] = ACTIONS(1282), + [aux_sym_cmd_identifier_token2] = ACTIONS(1285), + [aux_sym_cmd_identifier_token3] = ACTIONS(1285), + [aux_sym_cmd_identifier_token4] = ACTIONS(1285), + [aux_sym_cmd_identifier_token5] = ACTIONS(1285), + [aux_sym_cmd_identifier_token6] = ACTIONS(1285), + [aux_sym_cmd_identifier_token7] = ACTIONS(1285), + [aux_sym_cmd_identifier_token8] = ACTIONS(1282), + [aux_sym_cmd_identifier_token9] = ACTIONS(1282), + [aux_sym_cmd_identifier_token10] = ACTIONS(1285), + [aux_sym_cmd_identifier_token11] = ACTIONS(1285), + [aux_sym_cmd_identifier_token12] = ACTIONS(1282), + [aux_sym_cmd_identifier_token13] = ACTIONS(1282), + [aux_sym_cmd_identifier_token14] = ACTIONS(1282), + [aux_sym_cmd_identifier_token15] = ACTIONS(1282), + [aux_sym_cmd_identifier_token16] = ACTIONS(1285), + [aux_sym_cmd_identifier_token17] = ACTIONS(1285), + [aux_sym_cmd_identifier_token18] = ACTIONS(1285), + [aux_sym_cmd_identifier_token19] = ACTIONS(1285), + [aux_sym_cmd_identifier_token20] = ACTIONS(1285), + [aux_sym_cmd_identifier_token21] = ACTIONS(1285), + [aux_sym_cmd_identifier_token22] = ACTIONS(1285), + [aux_sym_cmd_identifier_token23] = ACTIONS(1285), + [aux_sym_cmd_identifier_token24] = ACTIONS(1285), + [aux_sym_cmd_identifier_token25] = ACTIONS(1285), + [aux_sym_cmd_identifier_token26] = ACTIONS(1285), + [aux_sym_cmd_identifier_token27] = ACTIONS(1285), + [aux_sym_cmd_identifier_token28] = ACTIONS(1285), + [aux_sym_cmd_identifier_token29] = ACTIONS(1285), + [aux_sym_cmd_identifier_token30] = ACTIONS(1285), + [aux_sym_cmd_identifier_token31] = ACTIONS(1285), + [aux_sym_cmd_identifier_token32] = ACTIONS(1285), + [aux_sym_cmd_identifier_token33] = ACTIONS(1285), + [aux_sym_cmd_identifier_token34] = ACTIONS(1282), + [aux_sym_cmd_identifier_token35] = ACTIONS(1285), + [aux_sym_cmd_identifier_token36] = ACTIONS(1285), + [aux_sym_cmd_identifier_token37] = ACTIONS(1285), + [aux_sym_cmd_identifier_token38] = ACTIONS(1282), + [aux_sym_cmd_identifier_token39] = ACTIONS(1285), + [aux_sym_cmd_identifier_token40] = ACTIONS(1285), + [sym__newline] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_def] = ACTIONS(1282), + [anon_sym_export_DASHenv] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_module] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_error] = ACTIONS(1282), + [anon_sym_DASH2] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_try] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_source] = ACTIONS(1282), + [anon_sym_source_DASHenv] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_hide] = ACTIONS(1282), + [anon_sym_hide_DASHenv] = ACTIONS(1282), + [anon_sym_overlay] = ACTIONS(1282), + [anon_sym_where] = ACTIONS(1285), + [aux_sym_expr_unary_token1] = ACTIONS(1285), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT_LT] = ACTIONS(1285), + [anon_sym_null] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [aux_sym__val_number_decimal_token1] = ACTIONS(1282), + [aux_sym__val_number_decimal_token2] = ACTIONS(1285), + [aux_sym__val_number_decimal_token3] = ACTIONS(1285), + [aux_sym__val_number_decimal_token4] = ACTIONS(1285), + [aux_sym__val_number_token1] = ACTIONS(1285), + [aux_sym__val_number_token2] = ACTIONS(1285), + [aux_sym__val_number_token3] = ACTIONS(1285), + [aux_sym__val_number_token4] = ACTIONS(1282), + [aux_sym__val_number_token5] = ACTIONS(1282), + [aux_sym__val_number_token6] = ACTIONS(1282), + [anon_sym_0b] = ACTIONS(1282), + [anon_sym_0o] = ACTIONS(1282), + [anon_sym_0x] = ACTIONS(1282), + [sym_val_date] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym__str_single_quotes] = ACTIONS(1285), + [sym__str_back_ticks] = ACTIONS(1285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1285), + [aux_sym_env_var_token1] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1285), }, [227] = { [sym_comment] = STATE(227), - [anon_sym_export] = ACTIONS(1536), - [anon_sym_alias] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_let_DASHenv] = ACTIONS(1536), - [anon_sym_mut] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [aux_sym_cmd_identifier_token1] = ACTIONS(1536), - [aux_sym_cmd_identifier_token2] = ACTIONS(1536), - [aux_sym_cmd_identifier_token3] = ACTIONS(1536), - [aux_sym_cmd_identifier_token4] = ACTIONS(1536), - [aux_sym_cmd_identifier_token5] = ACTIONS(1536), - [aux_sym_cmd_identifier_token6] = ACTIONS(1536), - [aux_sym_cmd_identifier_token7] = ACTIONS(1536), - [aux_sym_cmd_identifier_token8] = ACTIONS(1536), - [aux_sym_cmd_identifier_token9] = ACTIONS(1536), - [aux_sym_cmd_identifier_token10] = ACTIONS(1536), - [aux_sym_cmd_identifier_token11] = ACTIONS(1536), - [aux_sym_cmd_identifier_token12] = ACTIONS(1536), - [aux_sym_cmd_identifier_token13] = ACTIONS(1536), - [aux_sym_cmd_identifier_token14] = ACTIONS(1536), - [aux_sym_cmd_identifier_token15] = ACTIONS(1536), - [aux_sym_cmd_identifier_token16] = ACTIONS(1536), - [aux_sym_cmd_identifier_token17] = ACTIONS(1536), - [aux_sym_cmd_identifier_token18] = ACTIONS(1536), - [aux_sym_cmd_identifier_token19] = ACTIONS(1536), - [aux_sym_cmd_identifier_token20] = ACTIONS(1536), - [aux_sym_cmd_identifier_token21] = ACTIONS(1536), - [aux_sym_cmd_identifier_token22] = ACTIONS(1536), - [aux_sym_cmd_identifier_token23] = ACTIONS(1536), - [aux_sym_cmd_identifier_token24] = ACTIONS(1536), - [aux_sym_cmd_identifier_token25] = ACTIONS(1536), - [aux_sym_cmd_identifier_token26] = ACTIONS(1536), - [aux_sym_cmd_identifier_token27] = ACTIONS(1536), - [aux_sym_cmd_identifier_token28] = ACTIONS(1536), - [aux_sym_cmd_identifier_token29] = ACTIONS(1536), - [aux_sym_cmd_identifier_token30] = ACTIONS(1536), - [aux_sym_cmd_identifier_token31] = ACTIONS(1536), - [aux_sym_cmd_identifier_token32] = ACTIONS(1536), - [aux_sym_cmd_identifier_token33] = ACTIONS(1536), - [aux_sym_cmd_identifier_token34] = ACTIONS(1536), - [aux_sym_cmd_identifier_token35] = ACTIONS(1536), - [aux_sym_cmd_identifier_token36] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1536), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [anon_sym_def] = ACTIONS(1536), - [anon_sym_export_DASHenv] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_error] = ACTIONS(1536), - [anon_sym_list] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_make] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_else] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1536), - [anon_sym_catch] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_source] = ACTIONS(1536), - [anon_sym_source_DASHenv] = ACTIONS(1536), - [anon_sym_register] = ACTIONS(1536), - [anon_sym_hide] = ACTIONS(1536), - [anon_sym_hide_DASHenv] = ACTIONS(1536), - [anon_sym_overlay] = ACTIONS(1536), - [anon_sym_new] = ACTIONS(1536), - [anon_sym_as] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(1616), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(1618), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1536), - [sym_duration_unit] = ACTIONS(1536), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1536), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [aux_sym__block_body_repeat1] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1453), + [anon_sym_alias] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_let_DASHenv] = ACTIONS(1453), + [anon_sym_mut] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [aux_sym_cmd_identifier_token1] = ACTIONS(1453), + [aux_sym_cmd_identifier_token2] = ACTIONS(1455), + [aux_sym_cmd_identifier_token3] = ACTIONS(1455), + [aux_sym_cmd_identifier_token4] = ACTIONS(1455), + [aux_sym_cmd_identifier_token5] = ACTIONS(1455), + [aux_sym_cmd_identifier_token6] = ACTIONS(1455), + [aux_sym_cmd_identifier_token7] = ACTIONS(1455), + [aux_sym_cmd_identifier_token8] = ACTIONS(1453), + [aux_sym_cmd_identifier_token9] = ACTIONS(1453), + [aux_sym_cmd_identifier_token10] = ACTIONS(1455), + [aux_sym_cmd_identifier_token11] = ACTIONS(1455), + [aux_sym_cmd_identifier_token12] = ACTIONS(1453), + [aux_sym_cmd_identifier_token13] = ACTIONS(1453), + [aux_sym_cmd_identifier_token14] = ACTIONS(1453), + [aux_sym_cmd_identifier_token15] = ACTIONS(1453), + [aux_sym_cmd_identifier_token16] = ACTIONS(1455), + [aux_sym_cmd_identifier_token17] = ACTIONS(1455), + [aux_sym_cmd_identifier_token18] = ACTIONS(1455), + [aux_sym_cmd_identifier_token19] = ACTIONS(1455), + [aux_sym_cmd_identifier_token20] = ACTIONS(1455), + [aux_sym_cmd_identifier_token21] = ACTIONS(1455), + [aux_sym_cmd_identifier_token22] = ACTIONS(1455), + [aux_sym_cmd_identifier_token23] = ACTIONS(1455), + [aux_sym_cmd_identifier_token24] = ACTIONS(1455), + [aux_sym_cmd_identifier_token25] = ACTIONS(1455), + [aux_sym_cmd_identifier_token26] = ACTIONS(1455), + [aux_sym_cmd_identifier_token27] = ACTIONS(1455), + [aux_sym_cmd_identifier_token28] = ACTIONS(1455), + [aux_sym_cmd_identifier_token29] = ACTIONS(1455), + [aux_sym_cmd_identifier_token30] = ACTIONS(1455), + [aux_sym_cmd_identifier_token31] = ACTIONS(1455), + [aux_sym_cmd_identifier_token32] = ACTIONS(1455), + [aux_sym_cmd_identifier_token33] = ACTIONS(1455), + [aux_sym_cmd_identifier_token34] = ACTIONS(1453), + [aux_sym_cmd_identifier_token35] = ACTIONS(1455), + [aux_sym_cmd_identifier_token36] = ACTIONS(1455), + [aux_sym_cmd_identifier_token37] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1453), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_export_DASHenv] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1453), + [anon_sym_module] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_error] = ACTIONS(1453), + [anon_sym_DASH2] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_loop] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_source] = ACTIONS(1453), + [anon_sym_source_DASHenv] = ACTIONS(1453), + [anon_sym_register] = ACTIONS(1453), + [anon_sym_hide] = ACTIONS(1453), + [anon_sym_hide_DASHenv] = ACTIONS(1453), + [anon_sym_overlay] = ACTIONS(1453), + [anon_sym_where] = ACTIONS(1455), + [aux_sym_expr_unary_token1] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [aux_sym__val_number_decimal_token1] = ACTIONS(1453), + [aux_sym__val_number_decimal_token2] = ACTIONS(1455), + [aux_sym__val_number_decimal_token3] = ACTIONS(1455), + [aux_sym__val_number_decimal_token4] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1453), + [aux_sym__val_number_token5] = ACTIONS(1453), + [aux_sym__val_number_token6] = ACTIONS(1453), + [anon_sym_0b] = ACTIONS(1453), + [anon_sym_0o] = ACTIONS(1453), + [anon_sym_0x] = ACTIONS(1453), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [aux_sym_env_var_token1] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), }, [228] = { - [sym__expr_parenthesized_immediate] = STATE(554), - [sym__immediate_decimal] = STATE(584), - [sym_val_variable] = STATE(554), [sym_comment] = STATE(228), - [anon_sym_export] = ACTIONS(1620), - [anon_sym_alias] = ACTIONS(1620), - [anon_sym_let] = ACTIONS(1620), - [anon_sym_let_DASHenv] = ACTIONS(1620), - [anon_sym_mut] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [aux_sym_cmd_identifier_token1] = ACTIONS(1620), - [aux_sym_cmd_identifier_token2] = ACTIONS(1620), - [aux_sym_cmd_identifier_token3] = ACTIONS(1620), - [aux_sym_cmd_identifier_token4] = ACTIONS(1620), - [aux_sym_cmd_identifier_token5] = ACTIONS(1620), - [aux_sym_cmd_identifier_token6] = ACTIONS(1620), - [aux_sym_cmd_identifier_token7] = ACTIONS(1620), - [aux_sym_cmd_identifier_token8] = ACTIONS(1620), - [aux_sym_cmd_identifier_token9] = ACTIONS(1620), - [aux_sym_cmd_identifier_token10] = ACTIONS(1620), - [aux_sym_cmd_identifier_token11] = ACTIONS(1620), - [aux_sym_cmd_identifier_token12] = ACTIONS(1620), - [aux_sym_cmd_identifier_token13] = ACTIONS(1620), - [aux_sym_cmd_identifier_token14] = ACTIONS(1620), - [aux_sym_cmd_identifier_token15] = ACTIONS(1620), - [aux_sym_cmd_identifier_token16] = ACTIONS(1620), - [aux_sym_cmd_identifier_token17] = ACTIONS(1620), - [aux_sym_cmd_identifier_token18] = ACTIONS(1620), - [aux_sym_cmd_identifier_token19] = ACTIONS(1620), - [aux_sym_cmd_identifier_token20] = ACTIONS(1620), - [aux_sym_cmd_identifier_token21] = ACTIONS(1620), - [aux_sym_cmd_identifier_token22] = ACTIONS(1620), - [aux_sym_cmd_identifier_token23] = ACTIONS(1620), - [aux_sym_cmd_identifier_token24] = ACTIONS(1620), - [aux_sym_cmd_identifier_token25] = ACTIONS(1620), - [aux_sym_cmd_identifier_token26] = ACTIONS(1620), - [aux_sym_cmd_identifier_token27] = ACTIONS(1620), - [aux_sym_cmd_identifier_token28] = ACTIONS(1620), - [aux_sym_cmd_identifier_token29] = ACTIONS(1620), - [aux_sym_cmd_identifier_token30] = ACTIONS(1620), - [aux_sym_cmd_identifier_token31] = ACTIONS(1620), - [aux_sym_cmd_identifier_token32] = ACTIONS(1620), - [aux_sym_cmd_identifier_token33] = ACTIONS(1620), - [aux_sym_cmd_identifier_token34] = ACTIONS(1620), - [aux_sym_cmd_identifier_token35] = ACTIONS(1620), - [aux_sym_cmd_identifier_token36] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1620), - [aux_sym_cmd_identifier_token38] = ACTIONS(1620), - [aux_sym_cmd_identifier_token39] = ACTIONS(1620), - [aux_sym_cmd_identifier_token40] = ACTIONS(1620), - [anon_sym_def] = ACTIONS(1620), - [anon_sym_export_DASHenv] = ACTIONS(1620), - [anon_sym_extern] = ACTIONS(1620), - [anon_sym_module] = ACTIONS(1620), - [anon_sym_use] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1546), - [anon_sym_error] = ACTIONS(1620), - [anon_sym_list] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1620), - [anon_sym_loop] = ACTIONS(1620), - [anon_sym_make] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_do] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_else] = ACTIONS(1620), - [anon_sym_match] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_try] = ACTIONS(1620), - [anon_sym_catch] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_source] = ACTIONS(1620), - [anon_sym_source_DASHenv] = ACTIONS(1620), - [anon_sym_register] = ACTIONS(1620), - [anon_sym_hide] = ACTIONS(1620), - [anon_sym_hide_DASHenv] = ACTIONS(1620), - [anon_sym_overlay] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1620), - [aux_sym__immediate_decimal_token1] = ACTIONS(1602), - [aux_sym__immediate_decimal_token3] = ACTIONS(1602), - [aux_sym__immediate_decimal_token4] = ACTIONS(1604), - [aux_sym__immediate_decimal_token5] = ACTIONS(1606), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1620), - [aux_sym__val_number_decimal_token1] = ACTIONS(1620), - [aux_sym__val_number_decimal_token2] = ACTIONS(1620), - [aux_sym__val_number_decimal_token3] = ACTIONS(1620), - [aux_sym__val_number_decimal_token4] = ACTIONS(1620), - [aux_sym__val_number_token1] = ACTIONS(1620), - [aux_sym__val_number_token2] = ACTIONS(1620), - [aux_sym__val_number_token3] = ACTIONS(1620), - [anon_sym_DQUOTE] = ACTIONS(1620), - [sym__str_single_quotes] = ACTIONS(1620), - [sym__str_back_ticks] = ACTIONS(1620), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1620), - [sym__entry_separator] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1622), + [aux_sym_shebang_repeat1] = STATE(6772), + [aux_sym__parenthesized_body_repeat1] = STATE(228), + [anon_sym_export] = ACTIONS(1472), + [anon_sym_alias] = ACTIONS(1472), + [anon_sym_let] = ACTIONS(1472), + [anon_sym_let_DASHenv] = ACTIONS(1472), + [anon_sym_mut] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [aux_sym_cmd_identifier_token1] = ACTIONS(1472), + [aux_sym_cmd_identifier_token2] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1474), + [aux_sym_cmd_identifier_token4] = ACTIONS(1474), + [aux_sym_cmd_identifier_token5] = ACTIONS(1474), + [aux_sym_cmd_identifier_token6] = ACTIONS(1474), + [aux_sym_cmd_identifier_token7] = ACTIONS(1474), + [aux_sym_cmd_identifier_token8] = ACTIONS(1472), + [aux_sym_cmd_identifier_token9] = ACTIONS(1472), + [aux_sym_cmd_identifier_token10] = ACTIONS(1474), + [aux_sym_cmd_identifier_token11] = ACTIONS(1474), + [aux_sym_cmd_identifier_token12] = ACTIONS(1472), + [aux_sym_cmd_identifier_token13] = ACTIONS(1472), + [aux_sym_cmd_identifier_token14] = ACTIONS(1472), + [aux_sym_cmd_identifier_token15] = ACTIONS(1472), + [aux_sym_cmd_identifier_token16] = ACTIONS(1474), + [aux_sym_cmd_identifier_token17] = ACTIONS(1474), + [aux_sym_cmd_identifier_token18] = ACTIONS(1474), + [aux_sym_cmd_identifier_token19] = ACTIONS(1474), + [aux_sym_cmd_identifier_token20] = ACTIONS(1474), + [aux_sym_cmd_identifier_token21] = ACTIONS(1474), + [aux_sym_cmd_identifier_token22] = ACTIONS(1474), + [aux_sym_cmd_identifier_token23] = ACTIONS(1474), + [aux_sym_cmd_identifier_token24] = ACTIONS(1474), + [aux_sym_cmd_identifier_token25] = ACTIONS(1474), + [aux_sym_cmd_identifier_token26] = ACTIONS(1474), + [aux_sym_cmd_identifier_token27] = ACTIONS(1474), + [aux_sym_cmd_identifier_token28] = ACTIONS(1474), + [aux_sym_cmd_identifier_token29] = ACTIONS(1474), + [aux_sym_cmd_identifier_token30] = ACTIONS(1474), + [aux_sym_cmd_identifier_token31] = ACTIONS(1474), + [aux_sym_cmd_identifier_token32] = ACTIONS(1474), + [aux_sym_cmd_identifier_token33] = ACTIONS(1474), + [aux_sym_cmd_identifier_token34] = ACTIONS(1472), + [aux_sym_cmd_identifier_token35] = ACTIONS(1474), + [aux_sym_cmd_identifier_token36] = ACTIONS(1474), + [aux_sym_cmd_identifier_token37] = ACTIONS(1474), + [aux_sym_cmd_identifier_token38] = ACTIONS(1472), + [aux_sym_cmd_identifier_token39] = ACTIONS(1474), + [aux_sym_cmd_identifier_token40] = ACTIONS(1474), + [sym__newline] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_def] = ACTIONS(1472), + [anon_sym_export_DASHenv] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym_module] = ACTIONS(1472), + [anon_sym_use] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_error] = ACTIONS(1472), + [anon_sym_DASH2] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_loop] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(1472), + [anon_sym_try] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_source] = ACTIONS(1472), + [anon_sym_source_DASHenv] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_hide] = ACTIONS(1472), + [anon_sym_hide_DASHenv] = ACTIONS(1472), + [anon_sym_overlay] = ACTIONS(1472), + [anon_sym_where] = ACTIONS(1474), + [aux_sym_expr_unary_token1] = ACTIONS(1474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1474), + [anon_sym_DOT_DOT_LT] = ACTIONS(1474), + [anon_sym_null] = ACTIONS(1472), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1472), + [aux_sym__val_number_decimal_token2] = ACTIONS(1474), + [aux_sym__val_number_decimal_token3] = ACTIONS(1474), + [aux_sym__val_number_decimal_token4] = ACTIONS(1474), + [aux_sym__val_number_token1] = ACTIONS(1474), + [aux_sym__val_number_token2] = ACTIONS(1474), + [aux_sym__val_number_token3] = ACTIONS(1474), + [aux_sym__val_number_token4] = ACTIONS(1472), + [aux_sym__val_number_token5] = ACTIONS(1472), + [aux_sym__val_number_token6] = ACTIONS(1472), + [anon_sym_0b] = ACTIONS(1472), + [anon_sym_0o] = ACTIONS(1472), + [anon_sym_0x] = ACTIONS(1472), + [sym_val_date] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym__str_single_quotes] = ACTIONS(1474), + [sym__str_back_ticks] = ACTIONS(1474), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1474), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1474), + [aux_sym_env_var_token1] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1474), }, [229] = { [sym_comment] = STATE(229), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [aux_sym_cmd_identifier_token1] = ACTIONS(1528), - [aux_sym_cmd_identifier_token2] = ACTIONS(1528), - [aux_sym_cmd_identifier_token3] = ACTIONS(1528), - [aux_sym_cmd_identifier_token4] = ACTIONS(1528), - [aux_sym_cmd_identifier_token5] = ACTIONS(1528), - [aux_sym_cmd_identifier_token6] = ACTIONS(1528), - [aux_sym_cmd_identifier_token7] = ACTIONS(1528), - [aux_sym_cmd_identifier_token8] = ACTIONS(1528), - [aux_sym_cmd_identifier_token9] = ACTIONS(1528), - [aux_sym_cmd_identifier_token10] = ACTIONS(1528), - [aux_sym_cmd_identifier_token11] = ACTIONS(1528), - [aux_sym_cmd_identifier_token12] = ACTIONS(1528), - [aux_sym_cmd_identifier_token13] = ACTIONS(1528), - [aux_sym_cmd_identifier_token14] = ACTIONS(1528), - [aux_sym_cmd_identifier_token15] = ACTIONS(1528), - [aux_sym_cmd_identifier_token16] = ACTIONS(1528), - [aux_sym_cmd_identifier_token17] = ACTIONS(1528), - [aux_sym_cmd_identifier_token18] = ACTIONS(1528), - [aux_sym_cmd_identifier_token19] = ACTIONS(1528), - [aux_sym_cmd_identifier_token20] = ACTIONS(1528), - [aux_sym_cmd_identifier_token21] = ACTIONS(1528), - [aux_sym_cmd_identifier_token22] = ACTIONS(1528), - [aux_sym_cmd_identifier_token23] = ACTIONS(1528), - [aux_sym_cmd_identifier_token24] = ACTIONS(1528), - [aux_sym_cmd_identifier_token25] = ACTIONS(1528), - [aux_sym_cmd_identifier_token26] = ACTIONS(1528), - [aux_sym_cmd_identifier_token27] = ACTIONS(1528), - [aux_sym_cmd_identifier_token28] = ACTIONS(1528), - [aux_sym_cmd_identifier_token29] = ACTIONS(1528), - [aux_sym_cmd_identifier_token30] = ACTIONS(1528), - [aux_sym_cmd_identifier_token31] = ACTIONS(1528), - [aux_sym_cmd_identifier_token32] = ACTIONS(1528), - [aux_sym_cmd_identifier_token33] = ACTIONS(1528), - [aux_sym_cmd_identifier_token34] = ACTIONS(1528), - [aux_sym_cmd_identifier_token35] = ACTIONS(1528), - [aux_sym_cmd_identifier_token36] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [anon_sym_null] = ACTIONS(1530), - [aux_sym_cmd_identifier_token38] = ACTIONS(1528), - [aux_sym_cmd_identifier_token39] = ACTIONS(1530), - [aux_sym_cmd_identifier_token40] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_LPAREN2] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(1624), - [aux_sym__immediate_decimal_token2] = ACTIONS(1626), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1530), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [sym_filesize_unit] = ACTIONS(1528), - [sym_duration_unit] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1528), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1530), + [aux_sym_shebang_repeat1] = STATE(229), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_alias] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_let_DASHenv] = ACTIONS(1294), + [anon_sym_mut] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [aux_sym_cmd_identifier_token1] = ACTIONS(1294), + [aux_sym_cmd_identifier_token2] = ACTIONS(1296), + [aux_sym_cmd_identifier_token3] = ACTIONS(1296), + [aux_sym_cmd_identifier_token4] = ACTIONS(1296), + [aux_sym_cmd_identifier_token5] = ACTIONS(1296), + [aux_sym_cmd_identifier_token6] = ACTIONS(1296), + [aux_sym_cmd_identifier_token7] = ACTIONS(1296), + [aux_sym_cmd_identifier_token8] = ACTIONS(1294), + [aux_sym_cmd_identifier_token9] = ACTIONS(1294), + [aux_sym_cmd_identifier_token10] = ACTIONS(1296), + [aux_sym_cmd_identifier_token11] = ACTIONS(1296), + [aux_sym_cmd_identifier_token12] = ACTIONS(1294), + [aux_sym_cmd_identifier_token13] = ACTIONS(1294), + [aux_sym_cmd_identifier_token14] = ACTIONS(1294), + [aux_sym_cmd_identifier_token15] = ACTIONS(1294), + [aux_sym_cmd_identifier_token16] = ACTIONS(1296), + [aux_sym_cmd_identifier_token17] = ACTIONS(1296), + [aux_sym_cmd_identifier_token18] = ACTIONS(1296), + [aux_sym_cmd_identifier_token19] = ACTIONS(1296), + [aux_sym_cmd_identifier_token20] = ACTIONS(1296), + [aux_sym_cmd_identifier_token21] = ACTIONS(1296), + [aux_sym_cmd_identifier_token22] = ACTIONS(1296), + [aux_sym_cmd_identifier_token23] = ACTIONS(1296), + [aux_sym_cmd_identifier_token24] = ACTIONS(1296), + [aux_sym_cmd_identifier_token25] = ACTIONS(1296), + [aux_sym_cmd_identifier_token26] = ACTIONS(1296), + [aux_sym_cmd_identifier_token27] = ACTIONS(1296), + [aux_sym_cmd_identifier_token28] = ACTIONS(1296), + [aux_sym_cmd_identifier_token29] = ACTIONS(1296), + [aux_sym_cmd_identifier_token30] = ACTIONS(1296), + [aux_sym_cmd_identifier_token31] = ACTIONS(1296), + [aux_sym_cmd_identifier_token32] = ACTIONS(1296), + [aux_sym_cmd_identifier_token33] = ACTIONS(1296), + [aux_sym_cmd_identifier_token34] = ACTIONS(1294), + [aux_sym_cmd_identifier_token35] = ACTIONS(1296), + [aux_sym_cmd_identifier_token36] = ACTIONS(1296), + [aux_sym_cmd_identifier_token37] = ACTIONS(1296), + [aux_sym_cmd_identifier_token38] = ACTIONS(1294), + [aux_sym_cmd_identifier_token39] = ACTIONS(1296), + [aux_sym_cmd_identifier_token40] = ACTIONS(1296), + [sym__newline] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_def] = ACTIONS(1294), + [anon_sym_export_DASHenv] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_error] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_source] = ACTIONS(1294), + [anon_sym_source_DASHenv] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_hide] = ACTIONS(1294), + [anon_sym_hide_DASHenv] = ACTIONS(1294), + [anon_sym_overlay] = ACTIONS(1294), + [anon_sym_where] = ACTIONS(1296), + [aux_sym_expr_unary_token1] = ACTIONS(1296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), + [anon_sym_DOT_DOT_LT] = ACTIONS(1296), + [anon_sym_null] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [aux_sym__val_number_decimal_token1] = ACTIONS(1294), + [aux_sym__val_number_decimal_token2] = ACTIONS(1296), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(1296), + [aux_sym__val_number_token2] = ACTIONS(1296), + [aux_sym__val_number_token3] = ACTIONS(1296), + [aux_sym__val_number_token4] = ACTIONS(1294), + [aux_sym__val_number_token5] = ACTIONS(1294), + [aux_sym__val_number_token6] = ACTIONS(1294), + [anon_sym_0b] = ACTIONS(1294), + [anon_sym_0o] = ACTIONS(1294), + [anon_sym_0x] = ACTIONS(1294), + [sym_val_date] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__str_single_quotes] = ACTIONS(1296), + [sym__str_back_ticks] = ACTIONS(1296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), + [aux_sym_env_var_token1] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1296), }, [230] = { - [sym__expr_parenthesized_immediate] = STATE(7569), [sym_comment] = STATE(230), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_alias] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_let_DASHenv] = ACTIONS(1628), - [anon_sym_mut] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [aux_sym_cmd_identifier_token1] = ACTIONS(1628), - [aux_sym_cmd_identifier_token2] = ACTIONS(1628), - [aux_sym_cmd_identifier_token3] = ACTIONS(1628), - [aux_sym_cmd_identifier_token4] = ACTIONS(1628), - [aux_sym_cmd_identifier_token5] = ACTIONS(1628), - [aux_sym_cmd_identifier_token6] = ACTIONS(1628), - [aux_sym_cmd_identifier_token7] = ACTIONS(1628), - [aux_sym_cmd_identifier_token8] = ACTIONS(1628), - [aux_sym_cmd_identifier_token9] = ACTIONS(1628), - [aux_sym_cmd_identifier_token10] = ACTIONS(1628), - [aux_sym_cmd_identifier_token11] = ACTIONS(1628), - [aux_sym_cmd_identifier_token12] = ACTIONS(1628), - [aux_sym_cmd_identifier_token13] = ACTIONS(1628), - [aux_sym_cmd_identifier_token14] = ACTIONS(1628), - [aux_sym_cmd_identifier_token15] = ACTIONS(1628), - [aux_sym_cmd_identifier_token16] = ACTIONS(1628), - [aux_sym_cmd_identifier_token17] = ACTIONS(1628), - [aux_sym_cmd_identifier_token18] = ACTIONS(1628), - [aux_sym_cmd_identifier_token19] = ACTIONS(1628), - [aux_sym_cmd_identifier_token20] = ACTIONS(1628), - [aux_sym_cmd_identifier_token21] = ACTIONS(1628), - [aux_sym_cmd_identifier_token22] = ACTIONS(1628), - [aux_sym_cmd_identifier_token23] = ACTIONS(1628), - [aux_sym_cmd_identifier_token24] = ACTIONS(1628), - [aux_sym_cmd_identifier_token25] = ACTIONS(1628), - [aux_sym_cmd_identifier_token26] = ACTIONS(1628), - [aux_sym_cmd_identifier_token27] = ACTIONS(1628), - [aux_sym_cmd_identifier_token28] = ACTIONS(1628), - [aux_sym_cmd_identifier_token29] = ACTIONS(1628), - [aux_sym_cmd_identifier_token30] = ACTIONS(1628), - [aux_sym_cmd_identifier_token31] = ACTIONS(1628), - [aux_sym_cmd_identifier_token32] = ACTIONS(1628), - [aux_sym_cmd_identifier_token33] = ACTIONS(1628), - [aux_sym_cmd_identifier_token34] = ACTIONS(1628), - [aux_sym_cmd_identifier_token35] = ACTIONS(1628), - [aux_sym_cmd_identifier_token36] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [aux_sym_cmd_identifier_token38] = ACTIONS(1628), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [anon_sym_def] = ACTIONS(1628), - [anon_sym_export_DASHenv] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_error] = ACTIONS(1628), - [anon_sym_list] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_make] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_else] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_try] = ACTIONS(1628), - [anon_sym_catch] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_source] = ACTIONS(1628), - [anon_sym_source_DASHenv] = ACTIONS(1628), - [anon_sym_register] = ACTIONS(1628), - [anon_sym_hide] = ACTIONS(1628), - [anon_sym_hide_DASHenv] = ACTIONS(1628), - [anon_sym_overlay] = ACTIONS(1628), - [anon_sym_new] = ACTIONS(1628), - [anon_sym_as] = ACTIONS(1628), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1628), - [anon_sym_DOT_DOT2] = ACTIONS(1632), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1634), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1634), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1628), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1628), - [aux_sym__val_number_decimal_token4] = ACTIONS(1628), - [aux_sym__val_number_token1] = ACTIONS(1628), - [aux_sym__val_number_token2] = ACTIONS(1628), - [aux_sym__val_number_token3] = ACTIONS(1628), - [sym_filesize_unit] = ACTIONS(1636), - [sym_duration_unit] = ACTIONS(1638), - [anon_sym_DQUOTE] = ACTIONS(1628), - [sym__str_single_quotes] = ACTIONS(1628), - [sym__str_back_ticks] = ACTIONS(1628), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1628), - [sym__entry_separator] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1628), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1642), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1640), + [aux_sym__block_body_repeat1] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1453), + [anon_sym_alias] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_let_DASHenv] = ACTIONS(1453), + [anon_sym_mut] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [aux_sym_cmd_identifier_token1] = ACTIONS(1453), + [aux_sym_cmd_identifier_token2] = ACTIONS(1455), + [aux_sym_cmd_identifier_token3] = ACTIONS(1455), + [aux_sym_cmd_identifier_token4] = ACTIONS(1455), + [aux_sym_cmd_identifier_token5] = ACTIONS(1455), + [aux_sym_cmd_identifier_token6] = ACTIONS(1455), + [aux_sym_cmd_identifier_token7] = ACTIONS(1455), + [aux_sym_cmd_identifier_token8] = ACTIONS(1453), + [aux_sym_cmd_identifier_token9] = ACTIONS(1453), + [aux_sym_cmd_identifier_token10] = ACTIONS(1455), + [aux_sym_cmd_identifier_token11] = ACTIONS(1455), + [aux_sym_cmd_identifier_token12] = ACTIONS(1453), + [aux_sym_cmd_identifier_token13] = ACTIONS(1453), + [aux_sym_cmd_identifier_token14] = ACTIONS(1453), + [aux_sym_cmd_identifier_token15] = ACTIONS(1453), + [aux_sym_cmd_identifier_token16] = ACTIONS(1455), + [aux_sym_cmd_identifier_token17] = ACTIONS(1455), + [aux_sym_cmd_identifier_token18] = ACTIONS(1455), + [aux_sym_cmd_identifier_token19] = ACTIONS(1455), + [aux_sym_cmd_identifier_token20] = ACTIONS(1455), + [aux_sym_cmd_identifier_token21] = ACTIONS(1455), + [aux_sym_cmd_identifier_token22] = ACTIONS(1455), + [aux_sym_cmd_identifier_token23] = ACTIONS(1455), + [aux_sym_cmd_identifier_token24] = ACTIONS(1455), + [aux_sym_cmd_identifier_token25] = ACTIONS(1455), + [aux_sym_cmd_identifier_token26] = ACTIONS(1455), + [aux_sym_cmd_identifier_token27] = ACTIONS(1455), + [aux_sym_cmd_identifier_token28] = ACTIONS(1455), + [aux_sym_cmd_identifier_token29] = ACTIONS(1455), + [aux_sym_cmd_identifier_token30] = ACTIONS(1455), + [aux_sym_cmd_identifier_token31] = ACTIONS(1455), + [aux_sym_cmd_identifier_token32] = ACTIONS(1455), + [aux_sym_cmd_identifier_token33] = ACTIONS(1455), + [aux_sym_cmd_identifier_token34] = ACTIONS(1453), + [aux_sym_cmd_identifier_token35] = ACTIONS(1455), + [aux_sym_cmd_identifier_token36] = ACTIONS(1455), + [aux_sym_cmd_identifier_token37] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1453), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_export_DASHenv] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1453), + [anon_sym_module] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_error] = ACTIONS(1453), + [anon_sym_DASH2] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_loop] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_source] = ACTIONS(1453), + [anon_sym_source_DASHenv] = ACTIONS(1453), + [anon_sym_register] = ACTIONS(1453), + [anon_sym_hide] = ACTIONS(1453), + [anon_sym_hide_DASHenv] = ACTIONS(1453), + [anon_sym_overlay] = ACTIONS(1453), + [anon_sym_where] = ACTIONS(1455), + [aux_sym_expr_unary_token1] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [aux_sym__val_number_decimal_token1] = ACTIONS(1453), + [aux_sym__val_number_decimal_token2] = ACTIONS(1455), + [aux_sym__val_number_decimal_token3] = ACTIONS(1455), + [aux_sym__val_number_decimal_token4] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1453), + [aux_sym__val_number_token5] = ACTIONS(1453), + [aux_sym__val_number_token6] = ACTIONS(1453), + [anon_sym_0b] = ACTIONS(1453), + [anon_sym_0o] = ACTIONS(1453), + [anon_sym_0x] = ACTIONS(1453), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [aux_sym_env_var_token1] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), }, [231] = { - [sym__expr_parenthesized_immediate] = STATE(640), - [sym__immediate_decimal] = STATE(541), - [sym_val_variable] = STATE(640), [sym_comment] = STATE(231), - [anon_sym_export] = ACTIONS(1510), - [anon_sym_alias] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_let_DASHenv] = ACTIONS(1510), - [anon_sym_mut] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [aux_sym_cmd_identifier_token1] = ACTIONS(1510), - [aux_sym_cmd_identifier_token2] = ACTIONS(1510), - [aux_sym_cmd_identifier_token3] = ACTIONS(1510), - [aux_sym_cmd_identifier_token4] = ACTIONS(1510), - [aux_sym_cmd_identifier_token5] = ACTIONS(1510), - [aux_sym_cmd_identifier_token6] = ACTIONS(1510), - [aux_sym_cmd_identifier_token7] = ACTIONS(1510), - [aux_sym_cmd_identifier_token8] = ACTIONS(1510), - [aux_sym_cmd_identifier_token9] = ACTIONS(1510), - [aux_sym_cmd_identifier_token10] = ACTIONS(1510), - [aux_sym_cmd_identifier_token11] = ACTIONS(1510), - [aux_sym_cmd_identifier_token12] = ACTIONS(1510), - [aux_sym_cmd_identifier_token13] = ACTIONS(1510), - [aux_sym_cmd_identifier_token14] = ACTIONS(1510), - [aux_sym_cmd_identifier_token15] = ACTIONS(1510), - [aux_sym_cmd_identifier_token16] = ACTIONS(1510), - [aux_sym_cmd_identifier_token17] = ACTIONS(1510), - [aux_sym_cmd_identifier_token18] = ACTIONS(1510), - [aux_sym_cmd_identifier_token19] = ACTIONS(1510), - [aux_sym_cmd_identifier_token20] = ACTIONS(1510), - [aux_sym_cmd_identifier_token21] = ACTIONS(1510), - [aux_sym_cmd_identifier_token22] = ACTIONS(1510), - [aux_sym_cmd_identifier_token23] = ACTIONS(1510), - [aux_sym_cmd_identifier_token24] = ACTIONS(1510), - [aux_sym_cmd_identifier_token25] = ACTIONS(1510), - [aux_sym_cmd_identifier_token26] = ACTIONS(1510), - [aux_sym_cmd_identifier_token27] = ACTIONS(1510), - [aux_sym_cmd_identifier_token28] = ACTIONS(1510), - [aux_sym_cmd_identifier_token29] = ACTIONS(1510), - [aux_sym_cmd_identifier_token30] = ACTIONS(1510), - [aux_sym_cmd_identifier_token31] = ACTIONS(1510), - [aux_sym_cmd_identifier_token32] = ACTIONS(1510), - [aux_sym_cmd_identifier_token33] = ACTIONS(1510), - [aux_sym_cmd_identifier_token34] = ACTIONS(1510), - [aux_sym_cmd_identifier_token35] = ACTIONS(1510), - [aux_sym_cmd_identifier_token36] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [aux_sym_cmd_identifier_token38] = ACTIONS(1510), - [aux_sym_cmd_identifier_token39] = ACTIONS(1524), - [aux_sym_cmd_identifier_token40] = ACTIONS(1524), - [anon_sym_def] = ACTIONS(1510), - [anon_sym_export_DASHenv] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_module] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1644), - [anon_sym_error] = ACTIONS(1510), - [anon_sym_list] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_in] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_make] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_try] = ACTIONS(1510), - [anon_sym_catch] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_source] = ACTIONS(1510), - [anon_sym_source_DASHenv] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_hide] = ACTIONS(1510), - [anon_sym_hide_DASHenv] = ACTIONS(1510), - [anon_sym_overlay] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_as] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(1646), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1524), - [aux_sym__immediate_decimal_token1] = ACTIONS(1648), - [aux_sym__immediate_decimal_token3] = ACTIONS(1650), - [aux_sym__immediate_decimal_token4] = ACTIONS(1652), - [aux_sym__immediate_decimal_token5] = ACTIONS(1654), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1524), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1510), - [aux_sym__val_number_decimal_token3] = ACTIONS(1510), - [aux_sym__val_number_decimal_token4] = ACTIONS(1510), - [aux_sym__val_number_token1] = ACTIONS(1524), - [aux_sym__val_number_token2] = ACTIONS(1524), - [aux_sym__val_number_token3] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym__str_single_quotes] = ACTIONS(1524), - [sym__str_back_ticks] = ACTIONS(1524), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1510), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1524), + [aux_sym_shebang_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat1] = STATE(228), + [anon_sym_export] = ACTIONS(1485), + [anon_sym_alias] = ACTIONS(1485), + [anon_sym_let] = ACTIONS(1485), + [anon_sym_let_DASHenv] = ACTIONS(1485), + [anon_sym_mut] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [aux_sym_cmd_identifier_token1] = ACTIONS(1485), + [aux_sym_cmd_identifier_token2] = ACTIONS(1487), + [aux_sym_cmd_identifier_token3] = ACTIONS(1487), + [aux_sym_cmd_identifier_token4] = ACTIONS(1487), + [aux_sym_cmd_identifier_token5] = ACTIONS(1487), + [aux_sym_cmd_identifier_token6] = ACTIONS(1487), + [aux_sym_cmd_identifier_token7] = ACTIONS(1487), + [aux_sym_cmd_identifier_token8] = ACTIONS(1485), + [aux_sym_cmd_identifier_token9] = ACTIONS(1485), + [aux_sym_cmd_identifier_token10] = ACTIONS(1487), + [aux_sym_cmd_identifier_token11] = ACTIONS(1487), + [aux_sym_cmd_identifier_token12] = ACTIONS(1485), + [aux_sym_cmd_identifier_token13] = ACTIONS(1485), + [aux_sym_cmd_identifier_token14] = ACTIONS(1485), + [aux_sym_cmd_identifier_token15] = ACTIONS(1485), + [aux_sym_cmd_identifier_token16] = ACTIONS(1487), + [aux_sym_cmd_identifier_token17] = ACTIONS(1487), + [aux_sym_cmd_identifier_token18] = ACTIONS(1487), + [aux_sym_cmd_identifier_token19] = ACTIONS(1487), + [aux_sym_cmd_identifier_token20] = ACTIONS(1487), + [aux_sym_cmd_identifier_token21] = ACTIONS(1487), + [aux_sym_cmd_identifier_token22] = ACTIONS(1487), + [aux_sym_cmd_identifier_token23] = ACTIONS(1487), + [aux_sym_cmd_identifier_token24] = ACTIONS(1487), + [aux_sym_cmd_identifier_token25] = ACTIONS(1487), + [aux_sym_cmd_identifier_token26] = ACTIONS(1487), + [aux_sym_cmd_identifier_token27] = ACTIONS(1487), + [aux_sym_cmd_identifier_token28] = ACTIONS(1487), + [aux_sym_cmd_identifier_token29] = ACTIONS(1487), + [aux_sym_cmd_identifier_token30] = ACTIONS(1487), + [aux_sym_cmd_identifier_token31] = ACTIONS(1487), + [aux_sym_cmd_identifier_token32] = ACTIONS(1487), + [aux_sym_cmd_identifier_token33] = ACTIONS(1487), + [aux_sym_cmd_identifier_token34] = ACTIONS(1485), + [aux_sym_cmd_identifier_token35] = ACTIONS(1487), + [aux_sym_cmd_identifier_token36] = ACTIONS(1487), + [aux_sym_cmd_identifier_token37] = ACTIONS(1487), + [aux_sym_cmd_identifier_token38] = ACTIONS(1485), + [aux_sym_cmd_identifier_token39] = ACTIONS(1487), + [aux_sym_cmd_identifier_token40] = ACTIONS(1487), + [sym__newline] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_def] = ACTIONS(1485), + [anon_sym_export_DASHenv] = ACTIONS(1485), + [anon_sym_extern] = ACTIONS(1485), + [anon_sym_module] = ACTIONS(1485), + [anon_sym_use] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_DOLLAR] = ACTIONS(1485), + [anon_sym_error] = ACTIONS(1485), + [anon_sym_DASH2] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_loop] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_source] = ACTIONS(1485), + [anon_sym_source_DASHenv] = ACTIONS(1485), + [anon_sym_register] = ACTIONS(1485), + [anon_sym_hide] = ACTIONS(1485), + [anon_sym_hide_DASHenv] = ACTIONS(1485), + [anon_sym_overlay] = ACTIONS(1485), + [anon_sym_where] = ACTIONS(1487), + [aux_sym_expr_unary_token1] = ACTIONS(1487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1487), + [anon_sym_DOT_DOT_LT] = ACTIONS(1487), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [aux_sym__val_number_decimal_token1] = ACTIONS(1485), + [aux_sym__val_number_decimal_token2] = ACTIONS(1487), + [aux_sym__val_number_decimal_token3] = ACTIONS(1487), + [aux_sym__val_number_decimal_token4] = ACTIONS(1487), + [aux_sym__val_number_token1] = ACTIONS(1487), + [aux_sym__val_number_token2] = ACTIONS(1487), + [aux_sym__val_number_token3] = ACTIONS(1487), + [aux_sym__val_number_token4] = ACTIONS(1485), + [aux_sym__val_number_token5] = ACTIONS(1485), + [aux_sym__val_number_token6] = ACTIONS(1485), + [anon_sym_0b] = ACTIONS(1485), + [anon_sym_0o] = ACTIONS(1485), + [anon_sym_0x] = ACTIONS(1485), + [sym_val_date] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [sym__str_single_quotes] = ACTIONS(1487), + [sym__str_back_ticks] = ACTIONS(1487), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1487), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1487), + [aux_sym_env_var_token1] = ACTIONS(1485), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1487), }, [232] = { - [sym__expr_parenthesized_immediate] = STATE(650), - [sym__immediate_decimal] = STATE(543), - [sym_val_variable] = STATE(650), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5001), + [sym_block] = STATE(5004), + [sym__expression_parenthesized] = STATE(5004), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5004), [sym_comment] = STATE(232), - [anon_sym_export] = ACTIONS(1544), - [anon_sym_alias] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(1544), - [anon_sym_let_DASHenv] = ACTIONS(1544), - [anon_sym_mut] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [aux_sym_cmd_identifier_token1] = ACTIONS(1544), - [aux_sym_cmd_identifier_token2] = ACTIONS(1544), - [aux_sym_cmd_identifier_token3] = ACTIONS(1544), - [aux_sym_cmd_identifier_token4] = ACTIONS(1544), - [aux_sym_cmd_identifier_token5] = ACTIONS(1544), - [aux_sym_cmd_identifier_token6] = ACTIONS(1544), - [aux_sym_cmd_identifier_token7] = ACTIONS(1544), - [aux_sym_cmd_identifier_token8] = ACTIONS(1544), - [aux_sym_cmd_identifier_token9] = ACTIONS(1544), - [aux_sym_cmd_identifier_token10] = ACTIONS(1544), - [aux_sym_cmd_identifier_token11] = ACTIONS(1544), - [aux_sym_cmd_identifier_token12] = ACTIONS(1544), - [aux_sym_cmd_identifier_token13] = ACTIONS(1544), - [aux_sym_cmd_identifier_token14] = ACTIONS(1544), - [aux_sym_cmd_identifier_token15] = ACTIONS(1544), - [aux_sym_cmd_identifier_token16] = ACTIONS(1544), - [aux_sym_cmd_identifier_token17] = ACTIONS(1544), - [aux_sym_cmd_identifier_token18] = ACTIONS(1544), - [aux_sym_cmd_identifier_token19] = ACTIONS(1544), - [aux_sym_cmd_identifier_token20] = ACTIONS(1544), - [aux_sym_cmd_identifier_token21] = ACTIONS(1544), - [aux_sym_cmd_identifier_token22] = ACTIONS(1544), - [aux_sym_cmd_identifier_token23] = ACTIONS(1544), - [aux_sym_cmd_identifier_token24] = ACTIONS(1544), - [aux_sym_cmd_identifier_token25] = ACTIONS(1544), - [aux_sym_cmd_identifier_token26] = ACTIONS(1544), - [aux_sym_cmd_identifier_token27] = ACTIONS(1544), - [aux_sym_cmd_identifier_token28] = ACTIONS(1544), - [aux_sym_cmd_identifier_token29] = ACTIONS(1544), - [aux_sym_cmd_identifier_token30] = ACTIONS(1544), - [aux_sym_cmd_identifier_token31] = ACTIONS(1544), - [aux_sym_cmd_identifier_token32] = ACTIONS(1544), - [aux_sym_cmd_identifier_token33] = ACTIONS(1544), - [aux_sym_cmd_identifier_token34] = ACTIONS(1544), - [aux_sym_cmd_identifier_token35] = ACTIONS(1544), - [aux_sym_cmd_identifier_token36] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [aux_sym_cmd_identifier_token38] = ACTIONS(1544), - [aux_sym_cmd_identifier_token39] = ACTIONS(1556), - [aux_sym_cmd_identifier_token40] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1544), - [anon_sym_export_DASHenv] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(1544), - [anon_sym_module] = ACTIONS(1544), - [anon_sym_use] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1644), - [anon_sym_error] = ACTIONS(1544), - [anon_sym_list] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_loop] = ACTIONS(1544), - [anon_sym_make] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_match] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1544), - [anon_sym_catch] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_source] = ACTIONS(1544), - [anon_sym_source_DASHenv] = ACTIONS(1544), - [anon_sym_register] = ACTIONS(1544), - [anon_sym_hide] = ACTIONS(1544), - [anon_sym_hide_DASHenv] = ACTIONS(1544), - [anon_sym_overlay] = ACTIONS(1544), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1646), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1556), - [aux_sym__immediate_decimal_token1] = ACTIONS(1648), - [aux_sym__immediate_decimal_token3] = ACTIONS(1650), - [aux_sym__immediate_decimal_token4] = ACTIONS(1652), - [aux_sym__immediate_decimal_token5] = ACTIONS(1654), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1544), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [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(1544), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1556), + [aux_sym_shebang_repeat1] = STATE(257), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [233] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5001), + [sym_block] = STATE(5004), + [sym__expression_parenthesized] = STATE(5004), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5004), [sym_comment] = STATE(233), - [aux_sym__block_body_repeat1] = STATE(238), - [anon_sym_export] = ACTIONS(1656), - [anon_sym_alias] = ACTIONS(1656), - [anon_sym_let] = ACTIONS(1656), - [anon_sym_let_DASHenv] = ACTIONS(1656), - [anon_sym_mut] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [aux_sym_cmd_identifier_token1] = ACTIONS(1656), - [aux_sym_cmd_identifier_token2] = ACTIONS(1656), - [aux_sym_cmd_identifier_token3] = ACTIONS(1656), - [aux_sym_cmd_identifier_token4] = ACTIONS(1656), - [aux_sym_cmd_identifier_token5] = ACTIONS(1656), - [aux_sym_cmd_identifier_token6] = ACTIONS(1656), - [aux_sym_cmd_identifier_token7] = ACTIONS(1656), - [aux_sym_cmd_identifier_token8] = ACTIONS(1656), - [aux_sym_cmd_identifier_token9] = ACTIONS(1656), - [aux_sym_cmd_identifier_token10] = ACTIONS(1656), - [aux_sym_cmd_identifier_token11] = ACTIONS(1656), - [aux_sym_cmd_identifier_token12] = ACTIONS(1656), - [aux_sym_cmd_identifier_token13] = ACTIONS(1656), - [aux_sym_cmd_identifier_token14] = ACTIONS(1656), - [aux_sym_cmd_identifier_token15] = ACTIONS(1656), - [aux_sym_cmd_identifier_token16] = ACTIONS(1656), - [aux_sym_cmd_identifier_token17] = ACTIONS(1656), - [aux_sym_cmd_identifier_token18] = ACTIONS(1656), - [aux_sym_cmd_identifier_token19] = ACTIONS(1656), - [aux_sym_cmd_identifier_token20] = ACTIONS(1656), - [aux_sym_cmd_identifier_token21] = ACTIONS(1656), - [aux_sym_cmd_identifier_token22] = ACTIONS(1656), - [aux_sym_cmd_identifier_token23] = ACTIONS(1656), - [aux_sym_cmd_identifier_token24] = ACTIONS(1658), - [aux_sym_cmd_identifier_token25] = ACTIONS(1656), - [aux_sym_cmd_identifier_token26] = ACTIONS(1658), - [aux_sym_cmd_identifier_token27] = ACTIONS(1656), - [aux_sym_cmd_identifier_token28] = ACTIONS(1656), - [aux_sym_cmd_identifier_token29] = ACTIONS(1656), - [aux_sym_cmd_identifier_token30] = ACTIONS(1656), - [aux_sym_cmd_identifier_token31] = ACTIONS(1658), - [aux_sym_cmd_identifier_token32] = ACTIONS(1658), - [aux_sym_cmd_identifier_token33] = ACTIONS(1658), - [aux_sym_cmd_identifier_token34] = ACTIONS(1658), - [aux_sym_cmd_identifier_token35] = ACTIONS(1658), - [aux_sym_cmd_identifier_token36] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1658), - [aux_sym_cmd_identifier_token38] = ACTIONS(1656), - [aux_sym_cmd_identifier_token39] = ACTIONS(1658), - [aux_sym_cmd_identifier_token40] = ACTIONS(1658), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(1656), - [anon_sym_export_DASHenv] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1656), - [anon_sym_use] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_RPAREN] = ACTIONS(1660), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_error] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_loop] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_match] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1660), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_try] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_source] = ACTIONS(1656), - [anon_sym_source_DASHenv] = ACTIONS(1656), - [anon_sym_register] = ACTIONS(1656), - [anon_sym_hide] = ACTIONS(1656), - [anon_sym_hide_DASHenv] = ACTIONS(1656), - [anon_sym_overlay] = ACTIONS(1656), - [anon_sym_where] = ACTIONS(1658), - [aux_sym_expr_unary_token1] = ACTIONS(1658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), - [anon_sym_DOT_DOT_LT] = ACTIONS(1658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1656), - [aux_sym__val_number_decimal_token2] = ACTIONS(1658), - [aux_sym__val_number_decimal_token3] = ACTIONS(1658), - [aux_sym__val_number_decimal_token4] = ACTIONS(1658), - [aux_sym__val_number_token1] = ACTIONS(1658), - [aux_sym__val_number_token2] = ACTIONS(1658), - [aux_sym__val_number_token3] = ACTIONS(1658), - [anon_sym_0b] = ACTIONS(1656), - [anon_sym_0o] = ACTIONS(1656), - [anon_sym_0x] = ACTIONS(1656), - [sym_val_date] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [sym__str_single_quotes] = ACTIONS(1658), - [sym__str_back_ticks] = ACTIONS(1658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), - [aux_sym_env_var_token1] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1658), + [aux_sym_shebang_repeat1] = STATE(234), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [234] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5138), + [sym_block] = STATE(5140), + [sym__expression_parenthesized] = STATE(5140), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5140), [sym_comment] = STATE(234), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_alias] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_let_DASHenv] = ACTIONS(1596), - [anon_sym_mut] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [aux_sym_cmd_identifier_token1] = ACTIONS(1596), - [aux_sym_cmd_identifier_token2] = ACTIONS(1596), - [aux_sym_cmd_identifier_token3] = ACTIONS(1596), - [aux_sym_cmd_identifier_token4] = ACTIONS(1596), - [aux_sym_cmd_identifier_token5] = ACTIONS(1596), - [aux_sym_cmd_identifier_token6] = ACTIONS(1596), - [aux_sym_cmd_identifier_token7] = ACTIONS(1596), - [aux_sym_cmd_identifier_token8] = ACTIONS(1596), - [aux_sym_cmd_identifier_token9] = ACTIONS(1596), - [aux_sym_cmd_identifier_token10] = ACTIONS(1596), - [aux_sym_cmd_identifier_token11] = ACTIONS(1596), - [aux_sym_cmd_identifier_token12] = ACTIONS(1596), - [aux_sym_cmd_identifier_token13] = ACTIONS(1596), - [aux_sym_cmd_identifier_token14] = ACTIONS(1596), - [aux_sym_cmd_identifier_token15] = ACTIONS(1596), - [aux_sym_cmd_identifier_token16] = ACTIONS(1596), - [aux_sym_cmd_identifier_token17] = ACTIONS(1596), - [aux_sym_cmd_identifier_token18] = ACTIONS(1596), - [aux_sym_cmd_identifier_token19] = ACTIONS(1596), - [aux_sym_cmd_identifier_token20] = ACTIONS(1596), - [aux_sym_cmd_identifier_token21] = ACTIONS(1596), - [aux_sym_cmd_identifier_token22] = ACTIONS(1596), - [aux_sym_cmd_identifier_token23] = ACTIONS(1596), - [aux_sym_cmd_identifier_token24] = ACTIONS(1596), - [aux_sym_cmd_identifier_token25] = ACTIONS(1596), - [aux_sym_cmd_identifier_token26] = ACTIONS(1596), - [aux_sym_cmd_identifier_token27] = ACTIONS(1596), - [aux_sym_cmd_identifier_token28] = ACTIONS(1596), - [aux_sym_cmd_identifier_token29] = ACTIONS(1596), - [aux_sym_cmd_identifier_token30] = ACTIONS(1596), - [aux_sym_cmd_identifier_token31] = ACTIONS(1596), - [aux_sym_cmd_identifier_token32] = ACTIONS(1596), - [aux_sym_cmd_identifier_token33] = ACTIONS(1596), - [aux_sym_cmd_identifier_token34] = ACTIONS(1596), - [aux_sym_cmd_identifier_token35] = ACTIONS(1596), - [aux_sym_cmd_identifier_token36] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1598), - [aux_sym_cmd_identifier_token38] = ACTIONS(1596), - [aux_sym_cmd_identifier_token39] = ACTIONS(1598), - [aux_sym_cmd_identifier_token40] = ACTIONS(1598), - [anon_sym_def] = ACTIONS(1596), - [anon_sym_export_DASHenv] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1598), - [anon_sym_error] = ACTIONS(1596), - [anon_sym_list] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [anon_sym_loop] = ACTIONS(1596), - [anon_sym_make] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_else] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_try] = ACTIONS(1596), - [anon_sym_catch] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_source] = ACTIONS(1596), - [anon_sym_source_DASHenv] = ACTIONS(1596), - [anon_sym_register] = ACTIONS(1596), - [anon_sym_hide] = ACTIONS(1596), - [anon_sym_hide_DASHenv] = ACTIONS(1596), - [anon_sym_overlay] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1596), - [anon_sym_as] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1598), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(1662), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1598), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token3] = ACTIONS(1598), - [aux_sym__val_number_decimal_token4] = ACTIONS(1598), - [aux_sym__val_number_token1] = ACTIONS(1598), - [aux_sym__val_number_token2] = ACTIONS(1598), - [aux_sym__val_number_token3] = ACTIONS(1598), - [sym_filesize_unit] = ACTIONS(1596), - [sym_duration_unit] = ACTIONS(1596), - [anon_sym_DQUOTE] = ACTIONS(1598), - [sym__str_single_quotes] = ACTIONS(1598), - [sym__str_back_ticks] = ACTIONS(1598), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1598), - [anon_sym_PLUS] = ACTIONS(1596), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1598), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [235] = { - [sym_cell_path] = STATE(432), - [sym_path] = STATE(340), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5138), + [sym_block] = STATE(5140), + [sym__expression_parenthesized] = STATE(5140), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5140), [sym_comment] = STATE(235), - [aux_sym_cell_path_repeat1] = STATE(257), - [anon_sym_export] = ACTIONS(1664), - [anon_sym_alias] = ACTIONS(1664), - [anon_sym_let] = ACTIONS(1664), - [anon_sym_let_DASHenv] = ACTIONS(1664), - [anon_sym_mut] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [aux_sym_cmd_identifier_token1] = ACTIONS(1664), - [aux_sym_cmd_identifier_token2] = ACTIONS(1664), - [aux_sym_cmd_identifier_token3] = ACTIONS(1664), - [aux_sym_cmd_identifier_token4] = ACTIONS(1664), - [aux_sym_cmd_identifier_token5] = ACTIONS(1664), - [aux_sym_cmd_identifier_token6] = ACTIONS(1664), - [aux_sym_cmd_identifier_token7] = ACTIONS(1664), - [aux_sym_cmd_identifier_token8] = ACTIONS(1664), - [aux_sym_cmd_identifier_token9] = ACTIONS(1664), - [aux_sym_cmd_identifier_token10] = ACTIONS(1664), - [aux_sym_cmd_identifier_token11] = ACTIONS(1664), - [aux_sym_cmd_identifier_token12] = ACTIONS(1664), - [aux_sym_cmd_identifier_token13] = ACTIONS(1664), - [aux_sym_cmd_identifier_token14] = ACTIONS(1664), - [aux_sym_cmd_identifier_token15] = ACTIONS(1664), - [aux_sym_cmd_identifier_token16] = ACTIONS(1664), - [aux_sym_cmd_identifier_token17] = ACTIONS(1664), - [aux_sym_cmd_identifier_token18] = ACTIONS(1664), - [aux_sym_cmd_identifier_token19] = ACTIONS(1664), - [aux_sym_cmd_identifier_token20] = ACTIONS(1664), - [aux_sym_cmd_identifier_token21] = ACTIONS(1664), - [aux_sym_cmd_identifier_token22] = ACTIONS(1664), - [aux_sym_cmd_identifier_token23] = ACTIONS(1664), - [aux_sym_cmd_identifier_token24] = ACTIONS(1664), - [aux_sym_cmd_identifier_token25] = ACTIONS(1664), - [aux_sym_cmd_identifier_token26] = ACTIONS(1664), - [aux_sym_cmd_identifier_token27] = ACTIONS(1664), - [aux_sym_cmd_identifier_token28] = ACTIONS(1664), - [aux_sym_cmd_identifier_token29] = ACTIONS(1664), - [aux_sym_cmd_identifier_token30] = ACTIONS(1664), - [aux_sym_cmd_identifier_token31] = ACTIONS(1664), - [aux_sym_cmd_identifier_token32] = ACTIONS(1664), - [aux_sym_cmd_identifier_token33] = ACTIONS(1664), - [aux_sym_cmd_identifier_token34] = ACTIONS(1664), - [aux_sym_cmd_identifier_token35] = ACTIONS(1664), - [aux_sym_cmd_identifier_token36] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [anon_sym_null] = ACTIONS(1664), - [aux_sym_cmd_identifier_token38] = ACTIONS(1664), - [aux_sym_cmd_identifier_token39] = ACTIONS(1664), - [aux_sym_cmd_identifier_token40] = ACTIONS(1664), - [anon_sym_def] = ACTIONS(1664), - [anon_sym_export_DASHenv] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym_module] = ACTIONS(1664), - [anon_sym_use] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_error] = ACTIONS(1664), - [anon_sym_list] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_in] = ACTIONS(1664), - [anon_sym_loop] = ACTIONS(1664), - [anon_sym_make] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1664), - [anon_sym_match] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_try] = ACTIONS(1664), - [anon_sym_catch] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_source] = ACTIONS(1664), - [anon_sym_source_DASHenv] = ACTIONS(1664), - [anon_sym_register] = ACTIONS(1664), - [anon_sym_hide] = ACTIONS(1664), - [anon_sym_hide_DASHenv] = ACTIONS(1664), - [anon_sym_overlay] = ACTIONS(1664), - [anon_sym_new] = ACTIONS(1664), - [anon_sym_as] = ACTIONS(1664), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1664), - [anon_sym_DOT_DOT2] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1664), - [aux_sym__val_number_decimal_token1] = ACTIONS(1664), - [aux_sym__val_number_decimal_token2] = ACTIONS(1664), - [aux_sym__val_number_decimal_token3] = ACTIONS(1664), - [aux_sym__val_number_decimal_token4] = ACTIONS(1664), - [aux_sym__val_number_token1] = ACTIONS(1664), - [aux_sym__val_number_token2] = ACTIONS(1664), - [aux_sym__val_number_token3] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(1664), - [sym__str_single_quotes] = ACTIONS(1664), - [sym__str_back_ticks] = ACTIONS(1664), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1664), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), + [aux_sym_shebang_repeat1] = STATE(238), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [236] = { - [sym_cell_path] = STATE(388), - [sym_path] = STATE(340), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5141), + [sym_block] = STATE(5152), + [sym__expression_parenthesized] = STATE(5152), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5152), [sym_comment] = STATE(236), - [aux_sym_cell_path_repeat1] = STATE(257), - [anon_sym_export] = ACTIONS(1670), - [anon_sym_alias] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1670), - [anon_sym_let_DASHenv] = ACTIONS(1670), - [anon_sym_mut] = ACTIONS(1670), - [anon_sym_const] = ACTIONS(1670), - [aux_sym_cmd_identifier_token1] = ACTIONS(1670), - [aux_sym_cmd_identifier_token2] = ACTIONS(1670), - [aux_sym_cmd_identifier_token3] = ACTIONS(1670), - [aux_sym_cmd_identifier_token4] = ACTIONS(1670), - [aux_sym_cmd_identifier_token5] = ACTIONS(1670), - [aux_sym_cmd_identifier_token6] = ACTIONS(1670), - [aux_sym_cmd_identifier_token7] = ACTIONS(1670), - [aux_sym_cmd_identifier_token8] = ACTIONS(1670), - [aux_sym_cmd_identifier_token9] = ACTIONS(1670), - [aux_sym_cmd_identifier_token10] = ACTIONS(1670), - [aux_sym_cmd_identifier_token11] = ACTIONS(1670), - [aux_sym_cmd_identifier_token12] = ACTIONS(1670), - [aux_sym_cmd_identifier_token13] = ACTIONS(1670), - [aux_sym_cmd_identifier_token14] = ACTIONS(1670), - [aux_sym_cmd_identifier_token15] = ACTIONS(1670), - [aux_sym_cmd_identifier_token16] = ACTIONS(1670), - [aux_sym_cmd_identifier_token17] = ACTIONS(1670), - [aux_sym_cmd_identifier_token18] = ACTIONS(1670), - [aux_sym_cmd_identifier_token19] = ACTIONS(1670), - [aux_sym_cmd_identifier_token20] = ACTIONS(1670), - [aux_sym_cmd_identifier_token21] = ACTIONS(1670), - [aux_sym_cmd_identifier_token22] = ACTIONS(1670), - [aux_sym_cmd_identifier_token23] = ACTIONS(1670), - [aux_sym_cmd_identifier_token24] = ACTIONS(1670), - [aux_sym_cmd_identifier_token25] = ACTIONS(1670), - [aux_sym_cmd_identifier_token26] = ACTIONS(1670), - [aux_sym_cmd_identifier_token27] = ACTIONS(1670), - [aux_sym_cmd_identifier_token28] = ACTIONS(1670), - [aux_sym_cmd_identifier_token29] = ACTIONS(1670), - [aux_sym_cmd_identifier_token30] = ACTIONS(1670), - [aux_sym_cmd_identifier_token31] = ACTIONS(1670), - [aux_sym_cmd_identifier_token32] = ACTIONS(1670), - [aux_sym_cmd_identifier_token33] = ACTIONS(1670), - [aux_sym_cmd_identifier_token34] = ACTIONS(1670), - [aux_sym_cmd_identifier_token35] = ACTIONS(1670), - [aux_sym_cmd_identifier_token36] = ACTIONS(1670), - [anon_sym_true] = ACTIONS(1670), - [anon_sym_false] = ACTIONS(1670), - [anon_sym_null] = ACTIONS(1670), - [aux_sym_cmd_identifier_token38] = ACTIONS(1670), - [aux_sym_cmd_identifier_token39] = ACTIONS(1670), - [aux_sym_cmd_identifier_token40] = ACTIONS(1670), - [anon_sym_def] = ACTIONS(1670), - [anon_sym_export_DASHenv] = ACTIONS(1670), - [anon_sym_extern] = ACTIONS(1670), - [anon_sym_module] = ACTIONS(1670), - [anon_sym_use] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1670), - [anon_sym_error] = ACTIONS(1670), - [anon_sym_list] = ACTIONS(1670), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_in] = ACTIONS(1670), - [anon_sym_loop] = ACTIONS(1670), - [anon_sym_make] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_do] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_match] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_try] = ACTIONS(1670), - [anon_sym_catch] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_source] = ACTIONS(1670), - [anon_sym_source_DASHenv] = ACTIONS(1670), - [anon_sym_register] = ACTIONS(1670), - [anon_sym_hide] = ACTIONS(1670), - [anon_sym_hide_DASHenv] = ACTIONS(1670), - [anon_sym_overlay] = ACTIONS(1670), - [anon_sym_new] = ACTIONS(1670), - [anon_sym_as] = ACTIONS(1670), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1670), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1670), - [aux_sym__val_number_decimal_token1] = ACTIONS(1670), - [aux_sym__val_number_decimal_token2] = ACTIONS(1670), - [aux_sym__val_number_decimal_token3] = ACTIONS(1670), - [aux_sym__val_number_decimal_token4] = ACTIONS(1670), - [aux_sym__val_number_token1] = ACTIONS(1670), - [aux_sym__val_number_token2] = ACTIONS(1670), - [aux_sym__val_number_token3] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [sym__str_single_quotes] = ACTIONS(1670), - [sym__str_back_ticks] = ACTIONS(1670), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1670), - [sym__entry_separator] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1672), + [aux_sym_shebang_repeat1] = STATE(240), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [237] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5160), + [sym_block] = STATE(5161), + [sym__expression_parenthesized] = STATE(5161), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5161), [sym_comment] = STATE(237), - [aux_sym__block_body_repeat1] = STATE(238), - [anon_sym_export] = ACTIONS(1656), - [anon_sym_alias] = ACTIONS(1656), - [anon_sym_let] = ACTIONS(1656), - [anon_sym_let_DASHenv] = ACTIONS(1656), - [anon_sym_mut] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [aux_sym_cmd_identifier_token1] = ACTIONS(1656), - [aux_sym_cmd_identifier_token2] = ACTIONS(1656), - [aux_sym_cmd_identifier_token3] = ACTIONS(1656), - [aux_sym_cmd_identifier_token4] = ACTIONS(1656), - [aux_sym_cmd_identifier_token5] = ACTIONS(1656), - [aux_sym_cmd_identifier_token6] = ACTIONS(1656), - [aux_sym_cmd_identifier_token7] = ACTIONS(1656), - [aux_sym_cmd_identifier_token8] = ACTIONS(1656), - [aux_sym_cmd_identifier_token9] = ACTIONS(1656), - [aux_sym_cmd_identifier_token10] = ACTIONS(1656), - [aux_sym_cmd_identifier_token11] = ACTIONS(1656), - [aux_sym_cmd_identifier_token12] = ACTIONS(1656), - [aux_sym_cmd_identifier_token13] = ACTIONS(1656), - [aux_sym_cmd_identifier_token14] = ACTIONS(1656), - [aux_sym_cmd_identifier_token15] = ACTIONS(1656), - [aux_sym_cmd_identifier_token16] = ACTIONS(1656), - [aux_sym_cmd_identifier_token17] = ACTIONS(1656), - [aux_sym_cmd_identifier_token18] = ACTIONS(1656), - [aux_sym_cmd_identifier_token19] = ACTIONS(1656), - [aux_sym_cmd_identifier_token20] = ACTIONS(1656), - [aux_sym_cmd_identifier_token21] = ACTIONS(1656), - [aux_sym_cmd_identifier_token22] = ACTIONS(1656), - [aux_sym_cmd_identifier_token23] = ACTIONS(1656), - [aux_sym_cmd_identifier_token24] = ACTIONS(1658), - [aux_sym_cmd_identifier_token25] = ACTIONS(1656), - [aux_sym_cmd_identifier_token26] = ACTIONS(1658), - [aux_sym_cmd_identifier_token27] = ACTIONS(1656), - [aux_sym_cmd_identifier_token28] = ACTIONS(1656), - [aux_sym_cmd_identifier_token29] = ACTIONS(1656), - [aux_sym_cmd_identifier_token30] = ACTIONS(1656), - [aux_sym_cmd_identifier_token31] = ACTIONS(1658), - [aux_sym_cmd_identifier_token32] = ACTIONS(1658), - [aux_sym_cmd_identifier_token33] = ACTIONS(1658), - [aux_sym_cmd_identifier_token34] = ACTIONS(1658), - [aux_sym_cmd_identifier_token35] = ACTIONS(1658), - [aux_sym_cmd_identifier_token36] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1658), - [aux_sym_cmd_identifier_token38] = ACTIONS(1656), - [aux_sym_cmd_identifier_token39] = ACTIONS(1658), - [aux_sym_cmd_identifier_token40] = ACTIONS(1658), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(1656), - [anon_sym_export_DASHenv] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1656), - [anon_sym_use] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_RPAREN] = ACTIONS(1674), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_error] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_loop] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_match] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_try] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_source] = ACTIONS(1656), - [anon_sym_source_DASHenv] = ACTIONS(1656), - [anon_sym_register] = ACTIONS(1656), - [anon_sym_hide] = ACTIONS(1656), - [anon_sym_hide_DASHenv] = ACTIONS(1656), - [anon_sym_overlay] = ACTIONS(1656), - [anon_sym_where] = ACTIONS(1658), - [aux_sym_expr_unary_token1] = ACTIONS(1658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), - [anon_sym_DOT_DOT_LT] = ACTIONS(1658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1656), - [aux_sym__val_number_decimal_token2] = ACTIONS(1658), - [aux_sym__val_number_decimal_token3] = ACTIONS(1658), - [aux_sym__val_number_decimal_token4] = ACTIONS(1658), - [aux_sym__val_number_token1] = ACTIONS(1658), - [aux_sym__val_number_token2] = ACTIONS(1658), - [aux_sym__val_number_token3] = ACTIONS(1658), - [anon_sym_0b] = ACTIONS(1656), - [anon_sym_0o] = ACTIONS(1656), - [anon_sym_0x] = ACTIONS(1656), - [sym_val_date] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [sym__str_single_quotes] = ACTIONS(1658), - [sym__str_back_ticks] = ACTIONS(1658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), - [aux_sym_env_var_token1] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1658), + [aux_sym_shebang_repeat1] = STATE(242), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [238] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5042), + [sym_block] = STATE(5043), + [sym__expression_parenthesized] = STATE(5043), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5043), [sym_comment] = STATE(238), - [aux_sym__block_body_repeat1] = STATE(238), - [anon_sym_export] = ACTIONS(1676), - [anon_sym_alias] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1676), - [anon_sym_let_DASHenv] = ACTIONS(1676), - [anon_sym_mut] = ACTIONS(1676), - [anon_sym_const] = ACTIONS(1676), - [aux_sym_cmd_identifier_token1] = ACTIONS(1676), - [aux_sym_cmd_identifier_token2] = ACTIONS(1676), - [aux_sym_cmd_identifier_token3] = ACTIONS(1676), - [aux_sym_cmd_identifier_token4] = ACTIONS(1676), - [aux_sym_cmd_identifier_token5] = ACTIONS(1676), - [aux_sym_cmd_identifier_token6] = ACTIONS(1676), - [aux_sym_cmd_identifier_token7] = ACTIONS(1676), - [aux_sym_cmd_identifier_token8] = ACTIONS(1676), - [aux_sym_cmd_identifier_token9] = ACTIONS(1676), - [aux_sym_cmd_identifier_token10] = ACTIONS(1676), - [aux_sym_cmd_identifier_token11] = ACTIONS(1676), - [aux_sym_cmd_identifier_token12] = ACTIONS(1676), - [aux_sym_cmd_identifier_token13] = ACTIONS(1676), - [aux_sym_cmd_identifier_token14] = ACTIONS(1676), - [aux_sym_cmd_identifier_token15] = ACTIONS(1676), - [aux_sym_cmd_identifier_token16] = ACTIONS(1676), - [aux_sym_cmd_identifier_token17] = ACTIONS(1676), - [aux_sym_cmd_identifier_token18] = ACTIONS(1676), - [aux_sym_cmd_identifier_token19] = ACTIONS(1676), - [aux_sym_cmd_identifier_token20] = ACTIONS(1676), - [aux_sym_cmd_identifier_token21] = ACTIONS(1676), - [aux_sym_cmd_identifier_token22] = ACTIONS(1676), - [aux_sym_cmd_identifier_token23] = ACTIONS(1676), - [aux_sym_cmd_identifier_token24] = ACTIONS(1678), - [aux_sym_cmd_identifier_token25] = ACTIONS(1676), - [aux_sym_cmd_identifier_token26] = ACTIONS(1678), - [aux_sym_cmd_identifier_token27] = ACTIONS(1676), - [aux_sym_cmd_identifier_token28] = ACTIONS(1676), - [aux_sym_cmd_identifier_token29] = ACTIONS(1676), - [aux_sym_cmd_identifier_token30] = ACTIONS(1676), - [aux_sym_cmd_identifier_token31] = ACTIONS(1678), - [aux_sym_cmd_identifier_token32] = ACTIONS(1678), - [aux_sym_cmd_identifier_token33] = ACTIONS(1678), - [aux_sym_cmd_identifier_token34] = ACTIONS(1678), - [aux_sym_cmd_identifier_token35] = ACTIONS(1678), - [aux_sym_cmd_identifier_token36] = ACTIONS(1676), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [anon_sym_null] = ACTIONS(1678), - [aux_sym_cmd_identifier_token38] = ACTIONS(1676), - [aux_sym_cmd_identifier_token39] = ACTIONS(1678), - [aux_sym_cmd_identifier_token40] = ACTIONS(1678), - [sym__newline] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_def] = ACTIONS(1676), - [anon_sym_export_DASHenv] = ACTIONS(1676), - [anon_sym_extern] = ACTIONS(1676), - [anon_sym_module] = ACTIONS(1676), - [anon_sym_use] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_RPAREN] = ACTIONS(1678), - [anon_sym_DOLLAR] = ACTIONS(1676), - [anon_sym_error] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_match] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_try] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_source] = ACTIONS(1676), - [anon_sym_source_DASHenv] = ACTIONS(1676), - [anon_sym_register] = ACTIONS(1676), - [anon_sym_hide] = ACTIONS(1676), - [anon_sym_hide_DASHenv] = ACTIONS(1676), - [anon_sym_overlay] = ACTIONS(1676), - [anon_sym_where] = ACTIONS(1678), - [aux_sym_expr_unary_token1] = ACTIONS(1678), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1678), - [anon_sym_DOT_DOT_LT] = ACTIONS(1678), - [aux_sym__val_number_decimal_token1] = ACTIONS(1676), - [aux_sym__val_number_decimal_token2] = ACTIONS(1678), - [aux_sym__val_number_decimal_token3] = ACTIONS(1678), - [aux_sym__val_number_decimal_token4] = ACTIONS(1678), - [aux_sym__val_number_token1] = ACTIONS(1678), - [aux_sym__val_number_token2] = ACTIONS(1678), - [aux_sym__val_number_token3] = ACTIONS(1678), - [anon_sym_0b] = ACTIONS(1676), - [anon_sym_0o] = ACTIONS(1676), - [anon_sym_0x] = ACTIONS(1676), - [sym_val_date] = ACTIONS(1678), - [anon_sym_DQUOTE] = ACTIONS(1678), - [sym__str_single_quotes] = ACTIONS(1678), - [sym__str_back_ticks] = ACTIONS(1678), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1678), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1678), - [aux_sym_env_var_token1] = ACTIONS(1676), - [anon_sym_CARET] = ACTIONS(1678), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1678), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [239] = { - [sym__expr_parenthesized_immediate] = STATE(648), - [sym__immediate_decimal] = STATE(649), - [sym_val_variable] = STATE(648), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5042), + [sym_block] = STATE(5043), + [sym__expression_parenthesized] = STATE(5043), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5043), [sym_comment] = STATE(239), - [anon_sym_export] = ACTIONS(1620), - [anon_sym_alias] = ACTIONS(1620), - [anon_sym_let] = ACTIONS(1620), - [anon_sym_let_DASHenv] = ACTIONS(1620), - [anon_sym_mut] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [aux_sym_cmd_identifier_token1] = ACTIONS(1620), - [aux_sym_cmd_identifier_token2] = ACTIONS(1620), - [aux_sym_cmd_identifier_token3] = ACTIONS(1620), - [aux_sym_cmd_identifier_token4] = ACTIONS(1620), - [aux_sym_cmd_identifier_token5] = ACTIONS(1620), - [aux_sym_cmd_identifier_token6] = ACTIONS(1620), - [aux_sym_cmd_identifier_token7] = ACTIONS(1620), - [aux_sym_cmd_identifier_token8] = ACTIONS(1620), - [aux_sym_cmd_identifier_token9] = ACTIONS(1620), - [aux_sym_cmd_identifier_token10] = ACTIONS(1620), - [aux_sym_cmd_identifier_token11] = ACTIONS(1620), - [aux_sym_cmd_identifier_token12] = ACTIONS(1620), - [aux_sym_cmd_identifier_token13] = ACTIONS(1620), - [aux_sym_cmd_identifier_token14] = ACTIONS(1620), - [aux_sym_cmd_identifier_token15] = ACTIONS(1620), - [aux_sym_cmd_identifier_token16] = ACTIONS(1620), - [aux_sym_cmd_identifier_token17] = ACTIONS(1620), - [aux_sym_cmd_identifier_token18] = ACTIONS(1620), - [aux_sym_cmd_identifier_token19] = ACTIONS(1620), - [aux_sym_cmd_identifier_token20] = ACTIONS(1620), - [aux_sym_cmd_identifier_token21] = ACTIONS(1620), - [aux_sym_cmd_identifier_token22] = ACTIONS(1620), - [aux_sym_cmd_identifier_token23] = ACTIONS(1620), - [aux_sym_cmd_identifier_token24] = ACTIONS(1620), - [aux_sym_cmd_identifier_token25] = ACTIONS(1620), - [aux_sym_cmd_identifier_token26] = ACTIONS(1620), - [aux_sym_cmd_identifier_token27] = ACTIONS(1620), - [aux_sym_cmd_identifier_token28] = ACTIONS(1620), - [aux_sym_cmd_identifier_token29] = ACTIONS(1620), - [aux_sym_cmd_identifier_token30] = ACTIONS(1620), - [aux_sym_cmd_identifier_token31] = ACTIONS(1620), - [aux_sym_cmd_identifier_token32] = ACTIONS(1620), - [aux_sym_cmd_identifier_token33] = ACTIONS(1620), - [aux_sym_cmd_identifier_token34] = ACTIONS(1620), - [aux_sym_cmd_identifier_token35] = ACTIONS(1620), - [aux_sym_cmd_identifier_token36] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1622), - [aux_sym_cmd_identifier_token38] = ACTIONS(1620), - [aux_sym_cmd_identifier_token39] = ACTIONS(1622), - [aux_sym_cmd_identifier_token40] = ACTIONS(1622), - [anon_sym_def] = ACTIONS(1620), - [anon_sym_export_DASHenv] = ACTIONS(1620), - [anon_sym_extern] = ACTIONS(1620), - [anon_sym_module] = ACTIONS(1620), - [anon_sym_use] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1644), - [anon_sym_error] = ACTIONS(1620), - [anon_sym_list] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_in] = ACTIONS(1620), - [anon_sym_loop] = ACTIONS(1620), - [anon_sym_make] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_do] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_else] = ACTIONS(1620), - [anon_sym_match] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1622), - [anon_sym_try] = ACTIONS(1620), - [anon_sym_catch] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_source] = ACTIONS(1620), - [anon_sym_source_DASHenv] = ACTIONS(1620), - [anon_sym_register] = ACTIONS(1620), - [anon_sym_hide] = ACTIONS(1620), - [anon_sym_hide_DASHenv] = ACTIONS(1620), - [anon_sym_overlay] = ACTIONS(1620), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(1646), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1622), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1687), - [aux_sym__immediate_decimal_token5] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1622), - [aux_sym__val_number_decimal_token1] = ACTIONS(1620), - [aux_sym__val_number_decimal_token2] = ACTIONS(1620), - [aux_sym__val_number_decimal_token3] = ACTIONS(1620), - [aux_sym__val_number_decimal_token4] = ACTIONS(1620), - [aux_sym__val_number_token1] = ACTIONS(1622), - [aux_sym__val_number_token2] = ACTIONS(1622), - [aux_sym__val_number_token3] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1622), - [sym__str_single_quotes] = ACTIONS(1622), - [sym__str_back_ticks] = ACTIONS(1622), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1622), + [aux_sym_shebang_repeat1] = STATE(245), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [240] = { - [sym_cell_path] = STATE(416), - [sym_path] = STATE(340), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5044), + [sym_block] = STATE(5045), + [sym__expression_parenthesized] = STATE(5045), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5045), [sym_comment] = STATE(240), - [aux_sym_cell_path_repeat1] = STATE(257), - [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(1666), - [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), - [sym_raw_string_begin] = ACTIONS(1023), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [241] = { - [sym__expr_parenthesized_immediate] = STATE(646), - [sym__immediate_decimal] = STATE(647), - [sym_val_variable] = STATE(646), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5044), + [sym_block] = STATE(5045), + [sym__expression_parenthesized] = STATE(5045), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5045), [sym_comment] = STATE(241), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_alias] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_let_DASHenv] = ACTIONS(1612), - [anon_sym_mut] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [aux_sym_cmd_identifier_token1] = ACTIONS(1612), - [aux_sym_cmd_identifier_token2] = ACTIONS(1612), - [aux_sym_cmd_identifier_token3] = ACTIONS(1612), - [aux_sym_cmd_identifier_token4] = ACTIONS(1612), - [aux_sym_cmd_identifier_token5] = ACTIONS(1612), - [aux_sym_cmd_identifier_token6] = ACTIONS(1612), - [aux_sym_cmd_identifier_token7] = ACTIONS(1612), - [aux_sym_cmd_identifier_token8] = ACTIONS(1612), - [aux_sym_cmd_identifier_token9] = ACTIONS(1612), - [aux_sym_cmd_identifier_token10] = ACTIONS(1612), - [aux_sym_cmd_identifier_token11] = ACTIONS(1612), - [aux_sym_cmd_identifier_token12] = ACTIONS(1612), - [aux_sym_cmd_identifier_token13] = ACTIONS(1612), - [aux_sym_cmd_identifier_token14] = ACTIONS(1612), - [aux_sym_cmd_identifier_token15] = ACTIONS(1612), - [aux_sym_cmd_identifier_token16] = ACTIONS(1612), - [aux_sym_cmd_identifier_token17] = ACTIONS(1612), - [aux_sym_cmd_identifier_token18] = ACTIONS(1612), - [aux_sym_cmd_identifier_token19] = ACTIONS(1612), - [aux_sym_cmd_identifier_token20] = ACTIONS(1612), - [aux_sym_cmd_identifier_token21] = ACTIONS(1612), - [aux_sym_cmd_identifier_token22] = ACTIONS(1612), - [aux_sym_cmd_identifier_token23] = ACTIONS(1612), - [aux_sym_cmd_identifier_token24] = ACTIONS(1612), - [aux_sym_cmd_identifier_token25] = ACTIONS(1612), - [aux_sym_cmd_identifier_token26] = ACTIONS(1612), - [aux_sym_cmd_identifier_token27] = ACTIONS(1612), - [aux_sym_cmd_identifier_token28] = ACTIONS(1612), - [aux_sym_cmd_identifier_token29] = ACTIONS(1612), - [aux_sym_cmd_identifier_token30] = ACTIONS(1612), - [aux_sym_cmd_identifier_token31] = ACTIONS(1612), - [aux_sym_cmd_identifier_token32] = ACTIONS(1612), - [aux_sym_cmd_identifier_token33] = ACTIONS(1612), - [aux_sym_cmd_identifier_token34] = ACTIONS(1612), - [aux_sym_cmd_identifier_token35] = ACTIONS(1612), - [aux_sym_cmd_identifier_token36] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1614), - [anon_sym_false] = ACTIONS(1614), - [anon_sym_null] = ACTIONS(1614), - [aux_sym_cmd_identifier_token38] = ACTIONS(1612), - [aux_sym_cmd_identifier_token39] = ACTIONS(1614), - [aux_sym_cmd_identifier_token40] = ACTIONS(1614), - [anon_sym_def] = ACTIONS(1612), - [anon_sym_export_DASHenv] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_use] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(1644), - [anon_sym_error] = ACTIONS(1612), - [anon_sym_list] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_in] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_make] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_else] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1614), - [anon_sym_try] = ACTIONS(1612), - [anon_sym_catch] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_source] = ACTIONS(1612), - [anon_sym_source_DASHenv] = ACTIONS(1612), - [anon_sym_register] = ACTIONS(1612), - [anon_sym_hide] = ACTIONS(1612), - [anon_sym_hide_DASHenv] = ACTIONS(1612), - [anon_sym_overlay] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_as] = ACTIONS(1612), - [anon_sym_LPAREN2] = ACTIONS(1646), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1614), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1687), - [aux_sym__immediate_decimal_token5] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1614), - [aux_sym__val_number_decimal_token1] = ACTIONS(1612), - [aux_sym__val_number_decimal_token2] = ACTIONS(1612), - [aux_sym__val_number_decimal_token3] = ACTIONS(1612), - [aux_sym__val_number_decimal_token4] = ACTIONS(1612), - [aux_sym__val_number_token1] = ACTIONS(1614), - [aux_sym__val_number_token2] = ACTIONS(1614), - [aux_sym__val_number_token3] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [sym__str_single_quotes] = ACTIONS(1614), - [sym__str_back_ticks] = ACTIONS(1614), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1614), + [aux_sym_shebang_repeat1] = STATE(246), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [242] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5046), + [sym_block] = STATE(5048), + [sym__expression_parenthesized] = STATE(5048), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5048), [sym_comment] = STATE(242), - [anon_sym_export] = ACTIONS(1536), - [anon_sym_alias] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_let_DASHenv] = ACTIONS(1536), - [anon_sym_mut] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [aux_sym_cmd_identifier_token1] = ACTIONS(1536), - [aux_sym_cmd_identifier_token2] = ACTIONS(1536), - [aux_sym_cmd_identifier_token3] = ACTIONS(1536), - [aux_sym_cmd_identifier_token4] = ACTIONS(1536), - [aux_sym_cmd_identifier_token5] = ACTIONS(1536), - [aux_sym_cmd_identifier_token6] = ACTIONS(1536), - [aux_sym_cmd_identifier_token7] = ACTIONS(1536), - [aux_sym_cmd_identifier_token8] = ACTIONS(1536), - [aux_sym_cmd_identifier_token9] = ACTIONS(1536), - [aux_sym_cmd_identifier_token10] = ACTIONS(1536), - [aux_sym_cmd_identifier_token11] = ACTIONS(1536), - [aux_sym_cmd_identifier_token12] = ACTIONS(1536), - [aux_sym_cmd_identifier_token13] = ACTIONS(1536), - [aux_sym_cmd_identifier_token14] = ACTIONS(1536), - [aux_sym_cmd_identifier_token15] = ACTIONS(1536), - [aux_sym_cmd_identifier_token16] = ACTIONS(1536), - [aux_sym_cmd_identifier_token17] = ACTIONS(1536), - [aux_sym_cmd_identifier_token18] = ACTIONS(1536), - [aux_sym_cmd_identifier_token19] = ACTIONS(1536), - [aux_sym_cmd_identifier_token20] = ACTIONS(1536), - [aux_sym_cmd_identifier_token21] = ACTIONS(1536), - [aux_sym_cmd_identifier_token22] = ACTIONS(1536), - [aux_sym_cmd_identifier_token23] = ACTIONS(1536), - [aux_sym_cmd_identifier_token24] = ACTIONS(1536), - [aux_sym_cmd_identifier_token25] = ACTIONS(1536), - [aux_sym_cmd_identifier_token26] = ACTIONS(1536), - [aux_sym_cmd_identifier_token27] = ACTIONS(1536), - [aux_sym_cmd_identifier_token28] = ACTIONS(1536), - [aux_sym_cmd_identifier_token29] = ACTIONS(1536), - [aux_sym_cmd_identifier_token30] = ACTIONS(1536), - [aux_sym_cmd_identifier_token31] = ACTIONS(1536), - [aux_sym_cmd_identifier_token32] = ACTIONS(1536), - [aux_sym_cmd_identifier_token33] = ACTIONS(1536), - [aux_sym_cmd_identifier_token34] = ACTIONS(1536), - [aux_sym_cmd_identifier_token35] = ACTIONS(1536), - [aux_sym_cmd_identifier_token36] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1536), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [anon_sym_def] = ACTIONS(1536), - [anon_sym_export_DASHenv] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_error] = ACTIONS(1536), - [anon_sym_list] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_make] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_else] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1536), - [anon_sym_catch] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_source] = ACTIONS(1536), - [anon_sym_source_DASHenv] = ACTIONS(1536), - [anon_sym_register] = ACTIONS(1536), - [anon_sym_hide] = ACTIONS(1536), - [anon_sym_hide_DASHenv] = ACTIONS(1536), - [anon_sym_overlay] = ACTIONS(1536), - [anon_sym_new] = ACTIONS(1536), - [anon_sym_as] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(1618), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1536), - [sym_duration_unit] = ACTIONS(1536), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1536), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [243] = { - [sym__expr_parenthesized_immediate] = STATE(644), - [sym__immediate_decimal] = STATE(645), - [sym_val_variable] = STATE(644), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5046), + [sym_block] = STATE(5048), + [sym__expression_parenthesized] = STATE(5048), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5048), [sym_comment] = STATE(243), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_alias] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_let_DASHenv] = ACTIONS(1608), - [anon_sym_mut] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [aux_sym_cmd_identifier_token1] = ACTIONS(1608), - [aux_sym_cmd_identifier_token2] = ACTIONS(1608), - [aux_sym_cmd_identifier_token3] = ACTIONS(1608), - [aux_sym_cmd_identifier_token4] = ACTIONS(1608), - [aux_sym_cmd_identifier_token5] = ACTIONS(1608), - [aux_sym_cmd_identifier_token6] = ACTIONS(1608), - [aux_sym_cmd_identifier_token7] = ACTIONS(1608), - [aux_sym_cmd_identifier_token8] = ACTIONS(1608), - [aux_sym_cmd_identifier_token9] = ACTIONS(1608), - [aux_sym_cmd_identifier_token10] = ACTIONS(1608), - [aux_sym_cmd_identifier_token11] = ACTIONS(1608), - [aux_sym_cmd_identifier_token12] = ACTIONS(1608), - [aux_sym_cmd_identifier_token13] = ACTIONS(1608), - [aux_sym_cmd_identifier_token14] = ACTIONS(1608), - [aux_sym_cmd_identifier_token15] = ACTIONS(1608), - [aux_sym_cmd_identifier_token16] = ACTIONS(1608), - [aux_sym_cmd_identifier_token17] = ACTIONS(1608), - [aux_sym_cmd_identifier_token18] = ACTIONS(1608), - [aux_sym_cmd_identifier_token19] = ACTIONS(1608), - [aux_sym_cmd_identifier_token20] = ACTIONS(1608), - [aux_sym_cmd_identifier_token21] = ACTIONS(1608), - [aux_sym_cmd_identifier_token22] = ACTIONS(1608), - [aux_sym_cmd_identifier_token23] = ACTIONS(1608), - [aux_sym_cmd_identifier_token24] = ACTIONS(1608), - [aux_sym_cmd_identifier_token25] = ACTIONS(1608), - [aux_sym_cmd_identifier_token26] = ACTIONS(1608), - [aux_sym_cmd_identifier_token27] = ACTIONS(1608), - [aux_sym_cmd_identifier_token28] = ACTIONS(1608), - [aux_sym_cmd_identifier_token29] = ACTIONS(1608), - [aux_sym_cmd_identifier_token30] = ACTIONS(1608), - [aux_sym_cmd_identifier_token31] = ACTIONS(1608), - [aux_sym_cmd_identifier_token32] = ACTIONS(1608), - [aux_sym_cmd_identifier_token33] = ACTIONS(1608), - [aux_sym_cmd_identifier_token34] = ACTIONS(1608), - [aux_sym_cmd_identifier_token35] = ACTIONS(1608), - [aux_sym_cmd_identifier_token36] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1608), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [anon_sym_def] = ACTIONS(1608), - [anon_sym_export_DASHenv] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1644), - [anon_sym_error] = ACTIONS(1608), - [anon_sym_list] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_in] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_make] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_try] = ACTIONS(1608), - [anon_sym_catch] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_source] = ACTIONS(1608), - [anon_sym_source_DASHenv] = ACTIONS(1608), - [anon_sym_register] = ACTIONS(1608), - [anon_sym_hide] = ACTIONS(1608), - [anon_sym_hide_DASHenv] = ACTIONS(1608), - [anon_sym_overlay] = ACTIONS(1608), - [anon_sym_new] = ACTIONS(1608), - [anon_sym_as] = ACTIONS(1608), - [anon_sym_LPAREN2] = ACTIONS(1646), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1610), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1687), - [aux_sym__immediate_decimal_token5] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1610), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1608), - [aux_sym__val_number_decimal_token4] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1610), + [aux_sym_shebang_repeat1] = STATE(248), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [244] = { - [sym__expr_parenthesized_immediate] = STATE(7449), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5049), + [sym_block] = STATE(5050), + [sym__expression_parenthesized] = STATE(5050), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5050), [sym_comment] = STATE(244), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_alias] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_let_DASHenv] = ACTIONS(1628), - [anon_sym_mut] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [aux_sym_cmd_identifier_token1] = ACTIONS(1628), - [aux_sym_cmd_identifier_token2] = ACTIONS(1628), - [aux_sym_cmd_identifier_token3] = ACTIONS(1628), - [aux_sym_cmd_identifier_token4] = ACTIONS(1628), - [aux_sym_cmd_identifier_token5] = ACTIONS(1628), - [aux_sym_cmd_identifier_token6] = ACTIONS(1628), - [aux_sym_cmd_identifier_token7] = ACTIONS(1628), - [aux_sym_cmd_identifier_token8] = ACTIONS(1628), - [aux_sym_cmd_identifier_token9] = ACTIONS(1628), - [aux_sym_cmd_identifier_token10] = ACTIONS(1628), - [aux_sym_cmd_identifier_token11] = ACTIONS(1628), - [aux_sym_cmd_identifier_token12] = ACTIONS(1628), - [aux_sym_cmd_identifier_token13] = ACTIONS(1628), - [aux_sym_cmd_identifier_token14] = ACTIONS(1628), - [aux_sym_cmd_identifier_token15] = ACTIONS(1628), - [aux_sym_cmd_identifier_token16] = ACTIONS(1628), - [aux_sym_cmd_identifier_token17] = ACTIONS(1628), - [aux_sym_cmd_identifier_token18] = ACTIONS(1628), - [aux_sym_cmd_identifier_token19] = ACTIONS(1628), - [aux_sym_cmd_identifier_token20] = ACTIONS(1628), - [aux_sym_cmd_identifier_token21] = ACTIONS(1628), - [aux_sym_cmd_identifier_token22] = ACTIONS(1628), - [aux_sym_cmd_identifier_token23] = ACTIONS(1628), - [aux_sym_cmd_identifier_token24] = ACTIONS(1628), - [aux_sym_cmd_identifier_token25] = ACTIONS(1628), - [aux_sym_cmd_identifier_token26] = ACTIONS(1628), - [aux_sym_cmd_identifier_token27] = ACTIONS(1628), - [aux_sym_cmd_identifier_token28] = ACTIONS(1628), - [aux_sym_cmd_identifier_token29] = ACTIONS(1628), - [aux_sym_cmd_identifier_token30] = ACTIONS(1628), - [aux_sym_cmd_identifier_token31] = ACTIONS(1628), - [aux_sym_cmd_identifier_token32] = ACTIONS(1628), - [aux_sym_cmd_identifier_token33] = ACTIONS(1628), - [aux_sym_cmd_identifier_token34] = ACTIONS(1628), - [aux_sym_cmd_identifier_token35] = ACTIONS(1628), - [aux_sym_cmd_identifier_token36] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [aux_sym_cmd_identifier_token38] = ACTIONS(1628), - [aux_sym_cmd_identifier_token39] = ACTIONS(1640), - [aux_sym_cmd_identifier_token40] = ACTIONS(1640), - [anon_sym_def] = ACTIONS(1628), - [anon_sym_export_DASHenv] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1640), - [anon_sym_error] = ACTIONS(1628), - [anon_sym_list] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_make] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_else] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_try] = ACTIONS(1628), - [anon_sym_catch] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_source] = ACTIONS(1628), - [anon_sym_source_DASHenv] = ACTIONS(1628), - [anon_sym_register] = ACTIONS(1628), - [anon_sym_hide] = ACTIONS(1628), - [anon_sym_hide_DASHenv] = ACTIONS(1628), - [anon_sym_overlay] = ACTIONS(1628), - [anon_sym_new] = ACTIONS(1628), - [anon_sym_as] = ACTIONS(1628), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1640), - [anon_sym_DOT_DOT2] = ACTIONS(1691), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1693), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1693), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1640), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_decimal_token2] = ACTIONS(1640), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_decimal_token4] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [sym_filesize_unit] = ACTIONS(1695), - [sym_duration_unit] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1628), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1640), + [aux_sym_shebang_repeat1] = STATE(250), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [245] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5078), + [sym_block] = STATE(5079), + [sym__expression_parenthesized] = STATE(5079), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5079), [sym_comment] = STATE(245), - [aux_sym__block_body_repeat1] = STATE(238), - [anon_sym_export] = ACTIONS(1656), - [anon_sym_alias] = ACTIONS(1656), - [anon_sym_let] = ACTIONS(1656), - [anon_sym_let_DASHenv] = ACTIONS(1656), - [anon_sym_mut] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [aux_sym_cmd_identifier_token1] = ACTIONS(1656), - [aux_sym_cmd_identifier_token2] = ACTIONS(1656), - [aux_sym_cmd_identifier_token3] = ACTIONS(1656), - [aux_sym_cmd_identifier_token4] = ACTIONS(1656), - [aux_sym_cmd_identifier_token5] = ACTIONS(1656), - [aux_sym_cmd_identifier_token6] = ACTIONS(1656), - [aux_sym_cmd_identifier_token7] = ACTIONS(1656), - [aux_sym_cmd_identifier_token8] = ACTIONS(1656), - [aux_sym_cmd_identifier_token9] = ACTIONS(1656), - [aux_sym_cmd_identifier_token10] = ACTIONS(1656), - [aux_sym_cmd_identifier_token11] = ACTIONS(1656), - [aux_sym_cmd_identifier_token12] = ACTIONS(1656), - [aux_sym_cmd_identifier_token13] = ACTIONS(1656), - [aux_sym_cmd_identifier_token14] = ACTIONS(1656), - [aux_sym_cmd_identifier_token15] = ACTIONS(1656), - [aux_sym_cmd_identifier_token16] = ACTIONS(1656), - [aux_sym_cmd_identifier_token17] = ACTIONS(1656), - [aux_sym_cmd_identifier_token18] = ACTIONS(1656), - [aux_sym_cmd_identifier_token19] = ACTIONS(1656), - [aux_sym_cmd_identifier_token20] = ACTIONS(1656), - [aux_sym_cmd_identifier_token21] = ACTIONS(1656), - [aux_sym_cmd_identifier_token22] = ACTIONS(1656), - [aux_sym_cmd_identifier_token23] = ACTIONS(1656), - [aux_sym_cmd_identifier_token24] = ACTIONS(1658), - [aux_sym_cmd_identifier_token25] = ACTIONS(1656), - [aux_sym_cmd_identifier_token26] = ACTIONS(1658), - [aux_sym_cmd_identifier_token27] = ACTIONS(1656), - [aux_sym_cmd_identifier_token28] = ACTIONS(1656), - [aux_sym_cmd_identifier_token29] = ACTIONS(1656), - [aux_sym_cmd_identifier_token30] = ACTIONS(1656), - [aux_sym_cmd_identifier_token31] = ACTIONS(1658), - [aux_sym_cmd_identifier_token32] = ACTIONS(1658), - [aux_sym_cmd_identifier_token33] = ACTIONS(1658), - [aux_sym_cmd_identifier_token34] = ACTIONS(1658), - [aux_sym_cmd_identifier_token35] = ACTIONS(1658), - [aux_sym_cmd_identifier_token36] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1658), - [aux_sym_cmd_identifier_token38] = ACTIONS(1656), - [aux_sym_cmd_identifier_token39] = ACTIONS(1658), - [aux_sym_cmd_identifier_token40] = ACTIONS(1658), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(1656), - [anon_sym_export_DASHenv] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1656), - [anon_sym_use] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_RPAREN] = ACTIONS(1701), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_error] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_loop] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_match] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_try] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_source] = ACTIONS(1656), - [anon_sym_source_DASHenv] = ACTIONS(1656), - [anon_sym_register] = ACTIONS(1656), - [anon_sym_hide] = ACTIONS(1656), - [anon_sym_hide_DASHenv] = ACTIONS(1656), - [anon_sym_overlay] = ACTIONS(1656), - [anon_sym_where] = ACTIONS(1658), - [aux_sym_expr_unary_token1] = ACTIONS(1658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), - [anon_sym_DOT_DOT_LT] = ACTIONS(1658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1656), - [aux_sym__val_number_decimal_token2] = ACTIONS(1658), - [aux_sym__val_number_decimal_token3] = ACTIONS(1658), - [aux_sym__val_number_decimal_token4] = ACTIONS(1658), - [aux_sym__val_number_token1] = ACTIONS(1658), - [aux_sym__val_number_token2] = ACTIONS(1658), - [aux_sym__val_number_token3] = ACTIONS(1658), - [anon_sym_0b] = ACTIONS(1656), - [anon_sym_0o] = ACTIONS(1656), - [anon_sym_0x] = ACTIONS(1656), - [sym_val_date] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [sym__str_single_quotes] = ACTIONS(1658), - [sym__str_back_ticks] = ACTIONS(1658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), - [aux_sym_env_var_token1] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1658), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [246] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5080), + [sym_block] = STATE(5081), + [sym__expression_parenthesized] = STATE(5081), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5081), [sym_comment] = STATE(246), - [anon_sym_export] = ACTIONS(1528), - [anon_sym_alias] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_let_DASHenv] = ACTIONS(1528), - [anon_sym_mut] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [aux_sym_cmd_identifier_token1] = ACTIONS(1528), - [aux_sym_cmd_identifier_token2] = ACTIONS(1528), - [aux_sym_cmd_identifier_token3] = ACTIONS(1528), - [aux_sym_cmd_identifier_token4] = ACTIONS(1528), - [aux_sym_cmd_identifier_token5] = ACTIONS(1528), - [aux_sym_cmd_identifier_token6] = ACTIONS(1528), - [aux_sym_cmd_identifier_token7] = ACTIONS(1528), - [aux_sym_cmd_identifier_token8] = ACTIONS(1528), - [aux_sym_cmd_identifier_token9] = ACTIONS(1528), - [aux_sym_cmd_identifier_token10] = ACTIONS(1528), - [aux_sym_cmd_identifier_token11] = ACTIONS(1528), - [aux_sym_cmd_identifier_token12] = ACTIONS(1528), - [aux_sym_cmd_identifier_token13] = ACTIONS(1528), - [aux_sym_cmd_identifier_token14] = ACTIONS(1528), - [aux_sym_cmd_identifier_token15] = ACTIONS(1528), - [aux_sym_cmd_identifier_token16] = ACTIONS(1528), - [aux_sym_cmd_identifier_token17] = ACTIONS(1528), - [aux_sym_cmd_identifier_token18] = ACTIONS(1528), - [aux_sym_cmd_identifier_token19] = ACTIONS(1528), - [aux_sym_cmd_identifier_token20] = ACTIONS(1528), - [aux_sym_cmd_identifier_token21] = ACTIONS(1528), - [aux_sym_cmd_identifier_token22] = ACTIONS(1528), - [aux_sym_cmd_identifier_token23] = ACTIONS(1528), - [aux_sym_cmd_identifier_token24] = ACTIONS(1528), - [aux_sym_cmd_identifier_token25] = ACTIONS(1528), - [aux_sym_cmd_identifier_token26] = ACTIONS(1528), - [aux_sym_cmd_identifier_token27] = ACTIONS(1528), - [aux_sym_cmd_identifier_token28] = ACTIONS(1528), - [aux_sym_cmd_identifier_token29] = ACTIONS(1528), - [aux_sym_cmd_identifier_token30] = ACTIONS(1528), - [aux_sym_cmd_identifier_token31] = ACTIONS(1528), - [aux_sym_cmd_identifier_token32] = ACTIONS(1528), - [aux_sym_cmd_identifier_token33] = ACTIONS(1528), - [aux_sym_cmd_identifier_token34] = ACTIONS(1528), - [aux_sym_cmd_identifier_token35] = ACTIONS(1528), - [aux_sym_cmd_identifier_token36] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [aux_sym_cmd_identifier_token38] = ACTIONS(1528), - [aux_sym_cmd_identifier_token39] = ACTIONS(1528), - [aux_sym_cmd_identifier_token40] = ACTIONS(1528), - [anon_sym_def] = ACTIONS(1528), - [anon_sym_export_DASHenv] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_module] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_source] = ACTIONS(1528), - [anon_sym_source_DASHenv] = ACTIONS(1528), - [anon_sym_register] = ACTIONS(1528), - [anon_sym_hide] = ACTIONS(1528), - [anon_sym_hide_DASHenv] = ACTIONS(1528), - [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_LPAREN2] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1528), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1528), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_decimal_token2] = ACTIONS(1528), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1528), - [aux_sym__val_number_token1] = ACTIONS(1528), - [aux_sym__val_number_token2] = ACTIONS(1528), - [aux_sym__val_number_token3] = ACTIONS(1528), - [sym_filesize_unit] = ACTIONS(1528), - [sym_duration_unit] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [sym__str_single_quotes] = ACTIONS(1528), - [sym__str_back_ticks] = ACTIONS(1528), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1528), - [sym__entry_separator] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1528), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1530), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [247] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5080), + [sym_block] = STATE(5081), + [sym__expression_parenthesized] = STATE(5081), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5081), [sym_comment] = STATE(247), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [anon_sym_null] = ACTIONS(1703), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1703), - [aux_sym_cmd_identifier_token40] = ACTIONS(1703), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [aux_sym__val_number_decimal_token2] = ACTIONS(1703), - [aux_sym__val_number_decimal_token3] = ACTIONS(1703), - [aux_sym__val_number_decimal_token4] = ACTIONS(1703), - [aux_sym__val_number_token1] = ACTIONS(1703), - [aux_sym__val_number_token2] = ACTIONS(1703), - [aux_sym__val_number_token3] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym__str_single_quotes] = ACTIONS(1703), - [sym__str_back_ticks] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), - [sym__entry_separator] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1703), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1705), + [aux_sym_shebang_repeat1] = STATE(252), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [248] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5082), + [sym_block] = STATE(5083), + [sym__expression_parenthesized] = STATE(5083), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5083), [sym_comment] = STATE(248), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_alias] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_let_DASHenv] = ACTIONS(1596), - [anon_sym_mut] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [aux_sym_cmd_identifier_token1] = ACTIONS(1596), - [aux_sym_cmd_identifier_token2] = ACTIONS(1596), - [aux_sym_cmd_identifier_token3] = ACTIONS(1596), - [aux_sym_cmd_identifier_token4] = ACTIONS(1596), - [aux_sym_cmd_identifier_token5] = ACTIONS(1596), - [aux_sym_cmd_identifier_token6] = ACTIONS(1596), - [aux_sym_cmd_identifier_token7] = ACTIONS(1596), - [aux_sym_cmd_identifier_token8] = ACTIONS(1596), - [aux_sym_cmd_identifier_token9] = ACTIONS(1596), - [aux_sym_cmd_identifier_token10] = ACTIONS(1596), - [aux_sym_cmd_identifier_token11] = ACTIONS(1596), - [aux_sym_cmd_identifier_token12] = ACTIONS(1596), - [aux_sym_cmd_identifier_token13] = ACTIONS(1596), - [aux_sym_cmd_identifier_token14] = ACTIONS(1596), - [aux_sym_cmd_identifier_token15] = ACTIONS(1596), - [aux_sym_cmd_identifier_token16] = ACTIONS(1596), - [aux_sym_cmd_identifier_token17] = ACTIONS(1596), - [aux_sym_cmd_identifier_token18] = ACTIONS(1596), - [aux_sym_cmd_identifier_token19] = ACTIONS(1596), - [aux_sym_cmd_identifier_token20] = ACTIONS(1596), - [aux_sym_cmd_identifier_token21] = ACTIONS(1596), - [aux_sym_cmd_identifier_token22] = ACTIONS(1596), - [aux_sym_cmd_identifier_token23] = ACTIONS(1596), - [aux_sym_cmd_identifier_token24] = ACTIONS(1596), - [aux_sym_cmd_identifier_token25] = ACTIONS(1596), - [aux_sym_cmd_identifier_token26] = ACTIONS(1596), - [aux_sym_cmd_identifier_token27] = ACTIONS(1596), - [aux_sym_cmd_identifier_token28] = ACTIONS(1596), - [aux_sym_cmd_identifier_token29] = ACTIONS(1596), - [aux_sym_cmd_identifier_token30] = ACTIONS(1596), - [aux_sym_cmd_identifier_token31] = ACTIONS(1596), - [aux_sym_cmd_identifier_token32] = ACTIONS(1596), - [aux_sym_cmd_identifier_token33] = ACTIONS(1596), - [aux_sym_cmd_identifier_token34] = ACTIONS(1596), - [aux_sym_cmd_identifier_token35] = ACTIONS(1596), - [aux_sym_cmd_identifier_token36] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [anon_sym_null] = ACTIONS(1596), - [aux_sym_cmd_identifier_token38] = ACTIONS(1596), - [aux_sym_cmd_identifier_token39] = ACTIONS(1596), - [aux_sym_cmd_identifier_token40] = ACTIONS(1596), - [anon_sym_def] = ACTIONS(1596), - [anon_sym_export_DASHenv] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_error] = ACTIONS(1596), - [anon_sym_list] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [anon_sym_loop] = ACTIONS(1596), - [anon_sym_make] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_else] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_try] = ACTIONS(1596), - [anon_sym_catch] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_source] = ACTIONS(1596), - [anon_sym_source_DASHenv] = ACTIONS(1596), - [anon_sym_register] = ACTIONS(1596), - [anon_sym_hide] = ACTIONS(1596), - [anon_sym_hide_DASHenv] = ACTIONS(1596), - [anon_sym_overlay] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1596), - [anon_sym_as] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1598), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1596), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1596), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1596), - [aux_sym__val_number_decimal_token3] = ACTIONS(1596), - [aux_sym__val_number_decimal_token4] = ACTIONS(1596), - [aux_sym__val_number_token1] = ACTIONS(1596), - [aux_sym__val_number_token2] = ACTIONS(1596), - [aux_sym__val_number_token3] = ACTIONS(1596), - [sym_filesize_unit] = ACTIONS(1596), - [sym_duration_unit] = ACTIONS(1596), - [anon_sym_DQUOTE] = ACTIONS(1596), - [sym__str_single_quotes] = ACTIONS(1596), - [sym__str_back_ticks] = ACTIONS(1596), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1596), - [sym__entry_separator] = ACTIONS(1598), - [anon_sym_PLUS] = ACTIONS(1596), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1598), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [249] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5082), + [sym_block] = STATE(5083), + [sym__expression_parenthesized] = STATE(5083), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5083), [sym_comment] = STATE(249), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(1711), - [anon_sym_false] = ACTIONS(1711), - [anon_sym_null] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_list] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_new] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), + [aux_sym_shebang_repeat1] = STATE(253), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [250] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5084), + [sym_block] = STATE(5166), + [sym__expression_parenthesized] = STATE(5166), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5166), [sym_comment] = STATE(250), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [251] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5084), + [sym_block] = STATE(5166), + [sym__expression_parenthesized] = STATE(5166), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5166), [sym_comment] = STATE(251), - [anon_sym_export] = ACTIONS(1536), - [anon_sym_alias] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_let_DASHenv] = ACTIONS(1536), - [anon_sym_mut] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [aux_sym_cmd_identifier_token1] = ACTIONS(1536), - [aux_sym_cmd_identifier_token2] = ACTIONS(1536), - [aux_sym_cmd_identifier_token3] = ACTIONS(1536), - [aux_sym_cmd_identifier_token4] = ACTIONS(1536), - [aux_sym_cmd_identifier_token5] = ACTIONS(1536), - [aux_sym_cmd_identifier_token6] = ACTIONS(1536), - [aux_sym_cmd_identifier_token7] = ACTIONS(1536), - [aux_sym_cmd_identifier_token8] = ACTIONS(1536), - [aux_sym_cmd_identifier_token9] = ACTIONS(1536), - [aux_sym_cmd_identifier_token10] = ACTIONS(1536), - [aux_sym_cmd_identifier_token11] = ACTIONS(1536), - [aux_sym_cmd_identifier_token12] = ACTIONS(1536), - [aux_sym_cmd_identifier_token13] = ACTIONS(1536), - [aux_sym_cmd_identifier_token14] = ACTIONS(1536), - [aux_sym_cmd_identifier_token15] = ACTIONS(1536), - [aux_sym_cmd_identifier_token16] = ACTIONS(1536), - [aux_sym_cmd_identifier_token17] = ACTIONS(1536), - [aux_sym_cmd_identifier_token18] = ACTIONS(1536), - [aux_sym_cmd_identifier_token19] = ACTIONS(1536), - [aux_sym_cmd_identifier_token20] = ACTIONS(1536), - [aux_sym_cmd_identifier_token21] = ACTIONS(1536), - [aux_sym_cmd_identifier_token22] = ACTIONS(1536), - [aux_sym_cmd_identifier_token23] = ACTIONS(1536), - [aux_sym_cmd_identifier_token24] = ACTIONS(1536), - [aux_sym_cmd_identifier_token25] = ACTIONS(1536), - [aux_sym_cmd_identifier_token26] = ACTIONS(1536), - [aux_sym_cmd_identifier_token27] = ACTIONS(1536), - [aux_sym_cmd_identifier_token28] = ACTIONS(1536), - [aux_sym_cmd_identifier_token29] = ACTIONS(1536), - [aux_sym_cmd_identifier_token30] = ACTIONS(1536), - [aux_sym_cmd_identifier_token31] = ACTIONS(1536), - [aux_sym_cmd_identifier_token32] = ACTIONS(1536), - [aux_sym_cmd_identifier_token33] = ACTIONS(1536), - [aux_sym_cmd_identifier_token34] = ACTIONS(1536), - [aux_sym_cmd_identifier_token35] = ACTIONS(1536), - [aux_sym_cmd_identifier_token36] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [anon_sym_null] = ACTIONS(1536), - [aux_sym_cmd_identifier_token38] = ACTIONS(1536), - [aux_sym_cmd_identifier_token39] = ACTIONS(1536), - [aux_sym_cmd_identifier_token40] = ACTIONS(1536), - [anon_sym_def] = ACTIONS(1536), - [anon_sym_export_DASHenv] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_error] = ACTIONS(1536), - [anon_sym_list] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_make] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_else] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_try] = ACTIONS(1536), - [anon_sym_catch] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_source] = ACTIONS(1536), - [anon_sym_source_DASHenv] = ACTIONS(1536), - [anon_sym_register] = ACTIONS(1536), - [anon_sym_hide] = ACTIONS(1536), - [anon_sym_hide_DASHenv] = ACTIONS(1536), - [anon_sym_overlay] = ACTIONS(1536), - [anon_sym_new] = ACTIONS(1536), - [anon_sym_as] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1536), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1536), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1536), - [aux_sym__val_number_decimal_token3] = ACTIONS(1536), - [aux_sym__val_number_decimal_token4] = ACTIONS(1536), - [aux_sym__val_number_token1] = ACTIONS(1536), - [aux_sym__val_number_token2] = ACTIONS(1536), - [aux_sym__val_number_token3] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1536), - [sym_duration_unit] = ACTIONS(1536), - [anon_sym_DQUOTE] = ACTIONS(1536), - [sym__str_single_quotes] = ACTIONS(1536), - [sym__str_back_ticks] = ACTIONS(1536), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1536), - [sym__entry_separator] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1536), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1538), + [aux_sym_shebang_repeat1] = STATE(254), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [252] = { - [sym__expr_parenthesized_immediate] = STATE(707), - [sym__immediate_decimal] = STATE(639), - [sym_val_variable] = STATE(707), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5087), + [sym_block] = STATE(5088), + [sym__expression_parenthesized] = STATE(5088), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5088), [sym_comment] = STATE(252), - [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(1570), - [anon_sym_false] = ACTIONS(1570), - [anon_sym_null] = ACTIONS(1570), - [aux_sym_cmd_identifier_token38] = ACTIONS(1560), - [aux_sym_cmd_identifier_token39] = ACTIONS(1570), - [aux_sym_cmd_identifier_token40] = ACTIONS(1570), - [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(1644), - [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(1570), - [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(1646), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1570), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1687), - [aux_sym__immediate_decimal_token5] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1570), - [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(1570), - [aux_sym__val_number_token2] = ACTIONS(1570), - [aux_sym__val_number_token3] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [sym__str_single_quotes] = ACTIONS(1570), - [sym__str_back_ticks] = ACTIONS(1570), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1570), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1570), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [253] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5065), - [sym_block] = STATE(5066), - [sym__expression_parenthesized] = STATE(5066), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5066), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5089), + [sym_block] = STATE(5090), + [sym__expression_parenthesized] = STATE(5090), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5090), [sym_comment] = STATE(253), - [aux_sym_shebang_repeat1] = STATE(268), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [254] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5091), + [sym_block] = STATE(5092), + [sym__expression_parenthesized] = STATE(5092), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5092), [sym_comment] = STATE(254), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1743), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [255] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5091), + [sym_block] = STATE(5092), + [sym__expression_parenthesized] = STATE(5092), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5092), [sym_comment] = STATE(255), - [aux_sym__block_body_repeat1] = STATE(263), - [ts_builtin_sym_end] = ACTIONS(1701), - [anon_sym_export] = ACTIONS(1656), - [anon_sym_alias] = ACTIONS(1656), - [anon_sym_let] = ACTIONS(1656), - [anon_sym_let_DASHenv] = ACTIONS(1656), - [anon_sym_mut] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [aux_sym_cmd_identifier_token1] = ACTIONS(1656), - [aux_sym_cmd_identifier_token2] = ACTIONS(1656), - [aux_sym_cmd_identifier_token3] = ACTIONS(1656), - [aux_sym_cmd_identifier_token4] = ACTIONS(1656), - [aux_sym_cmd_identifier_token5] = ACTIONS(1656), - [aux_sym_cmd_identifier_token6] = ACTIONS(1656), - [aux_sym_cmd_identifier_token7] = ACTIONS(1656), - [aux_sym_cmd_identifier_token8] = ACTIONS(1656), - [aux_sym_cmd_identifier_token9] = ACTIONS(1656), - [aux_sym_cmd_identifier_token10] = ACTIONS(1656), - [aux_sym_cmd_identifier_token11] = ACTIONS(1656), - [aux_sym_cmd_identifier_token12] = ACTIONS(1656), - [aux_sym_cmd_identifier_token13] = ACTIONS(1656), - [aux_sym_cmd_identifier_token14] = ACTIONS(1656), - [aux_sym_cmd_identifier_token15] = ACTIONS(1656), - [aux_sym_cmd_identifier_token16] = ACTIONS(1656), - [aux_sym_cmd_identifier_token17] = ACTIONS(1656), - [aux_sym_cmd_identifier_token18] = ACTIONS(1656), - [aux_sym_cmd_identifier_token19] = ACTIONS(1656), - [aux_sym_cmd_identifier_token20] = ACTIONS(1656), - [aux_sym_cmd_identifier_token21] = ACTIONS(1656), - [aux_sym_cmd_identifier_token22] = ACTIONS(1656), - [aux_sym_cmd_identifier_token23] = ACTIONS(1656), - [aux_sym_cmd_identifier_token24] = ACTIONS(1658), - [aux_sym_cmd_identifier_token25] = ACTIONS(1656), - [aux_sym_cmd_identifier_token26] = ACTIONS(1658), - [aux_sym_cmd_identifier_token27] = ACTIONS(1656), - [aux_sym_cmd_identifier_token28] = ACTIONS(1656), - [aux_sym_cmd_identifier_token29] = ACTIONS(1656), - [aux_sym_cmd_identifier_token30] = ACTIONS(1656), - [aux_sym_cmd_identifier_token31] = ACTIONS(1658), - [aux_sym_cmd_identifier_token32] = ACTIONS(1658), - [aux_sym_cmd_identifier_token33] = ACTIONS(1658), - [aux_sym_cmd_identifier_token34] = ACTIONS(1658), - [aux_sym_cmd_identifier_token35] = ACTIONS(1658), - [aux_sym_cmd_identifier_token36] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1658), - [aux_sym_cmd_identifier_token38] = ACTIONS(1656), - [aux_sym_cmd_identifier_token39] = ACTIONS(1658), - [aux_sym_cmd_identifier_token40] = ACTIONS(1658), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1656), - [anon_sym_export_DASHenv] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1656), - [anon_sym_use] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_error] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_loop] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_match] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_try] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_source] = ACTIONS(1656), - [anon_sym_source_DASHenv] = ACTIONS(1656), - [anon_sym_register] = ACTIONS(1656), - [anon_sym_hide] = ACTIONS(1656), - [anon_sym_hide_DASHenv] = ACTIONS(1656), - [anon_sym_overlay] = ACTIONS(1656), - [anon_sym_where] = ACTIONS(1658), - [aux_sym_expr_unary_token1] = ACTIONS(1658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), - [anon_sym_DOT_DOT_LT] = ACTIONS(1658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1656), - [aux_sym__val_number_decimal_token2] = ACTIONS(1658), - [aux_sym__val_number_decimal_token3] = ACTIONS(1658), - [aux_sym__val_number_decimal_token4] = ACTIONS(1658), - [aux_sym__val_number_token1] = ACTIONS(1658), - [aux_sym__val_number_token2] = ACTIONS(1658), - [aux_sym__val_number_token3] = ACTIONS(1658), - [anon_sym_0b] = ACTIONS(1656), - [anon_sym_0o] = ACTIONS(1656), - [anon_sym_0x] = ACTIONS(1656), - [sym_val_date] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [sym__str_single_quotes] = ACTIONS(1658), - [sym__str_back_ticks] = ACTIONS(1658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), - [aux_sym_env_var_token1] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1658), + [aux_sym_shebang_repeat1] = STATE(256), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [256] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5134), - [sym_block] = STATE(5145), - [sym__expression_parenthesized] = STATE(5145), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5145), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5093), + [sym_block] = STATE(5094), + [sym__expression_parenthesized] = STATE(5094), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5094), [sym_comment] = STATE(256), - [aux_sym_shebang_repeat1] = STATE(259), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [257] = { - [sym_path] = STATE(340), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5138), + [sym_block] = STATE(5140), + [sym__expression_parenthesized] = STATE(5140), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5140), [sym_comment] = STATE(257), - [aux_sym_cell_path_repeat1] = STATE(258), - [anon_sym_export] = ACTIONS(1027), - [anon_sym_alias] = ACTIONS(1027), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_let_DASHenv] = ACTIONS(1027), - [anon_sym_mut] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [aux_sym_cmd_identifier_token1] = ACTIONS(1027), - [aux_sym_cmd_identifier_token2] = ACTIONS(1027), - [aux_sym_cmd_identifier_token3] = ACTIONS(1027), - [aux_sym_cmd_identifier_token4] = ACTIONS(1027), - [aux_sym_cmd_identifier_token5] = ACTIONS(1027), - [aux_sym_cmd_identifier_token6] = ACTIONS(1027), - [aux_sym_cmd_identifier_token7] = ACTIONS(1027), - [aux_sym_cmd_identifier_token8] = ACTIONS(1027), - [aux_sym_cmd_identifier_token9] = ACTIONS(1027), - [aux_sym_cmd_identifier_token10] = ACTIONS(1027), - [aux_sym_cmd_identifier_token11] = ACTIONS(1027), - [aux_sym_cmd_identifier_token12] = ACTIONS(1027), - [aux_sym_cmd_identifier_token13] = ACTIONS(1027), - [aux_sym_cmd_identifier_token14] = ACTIONS(1027), - [aux_sym_cmd_identifier_token15] = ACTIONS(1027), - [aux_sym_cmd_identifier_token16] = ACTIONS(1027), - [aux_sym_cmd_identifier_token17] = ACTIONS(1027), - [aux_sym_cmd_identifier_token18] = ACTIONS(1027), - [aux_sym_cmd_identifier_token19] = ACTIONS(1027), - [aux_sym_cmd_identifier_token20] = ACTIONS(1027), - [aux_sym_cmd_identifier_token21] = ACTIONS(1027), - [aux_sym_cmd_identifier_token22] = ACTIONS(1027), - [aux_sym_cmd_identifier_token23] = ACTIONS(1027), - [aux_sym_cmd_identifier_token24] = ACTIONS(1027), - [aux_sym_cmd_identifier_token25] = ACTIONS(1027), - [aux_sym_cmd_identifier_token26] = ACTIONS(1027), - [aux_sym_cmd_identifier_token27] = ACTIONS(1027), - [aux_sym_cmd_identifier_token28] = ACTIONS(1027), - [aux_sym_cmd_identifier_token29] = ACTIONS(1027), - [aux_sym_cmd_identifier_token30] = ACTIONS(1027), - [aux_sym_cmd_identifier_token31] = ACTIONS(1027), - [aux_sym_cmd_identifier_token32] = ACTIONS(1027), - [aux_sym_cmd_identifier_token33] = ACTIONS(1027), - [aux_sym_cmd_identifier_token34] = ACTIONS(1027), - [aux_sym_cmd_identifier_token35] = ACTIONS(1027), - [aux_sym_cmd_identifier_token36] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1027), - [anon_sym_false] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1027), - [aux_sym_cmd_identifier_token38] = ACTIONS(1027), - [aux_sym_cmd_identifier_token39] = ACTIONS(1027), - [aux_sym_cmd_identifier_token40] = ACTIONS(1027), - [anon_sym_def] = ACTIONS(1027), - [anon_sym_export_DASHenv] = ACTIONS(1027), - [anon_sym_extern] = ACTIONS(1027), - [anon_sym_module] = ACTIONS(1027), - [anon_sym_use] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_error] = ACTIONS(1027), - [anon_sym_list] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1027), - [anon_sym_continue] = ACTIONS(1027), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(1027), - [anon_sym_make] = ACTIONS(1027), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(1027), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_else] = ACTIONS(1027), - [anon_sym_match] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_try] = ACTIONS(1027), - [anon_sym_catch] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_source] = ACTIONS(1027), - [anon_sym_source_DASHenv] = ACTIONS(1027), - [anon_sym_register] = ACTIONS(1027), - [anon_sym_hide] = ACTIONS(1027), - [anon_sym_hide_DASHenv] = ACTIONS(1027), - [anon_sym_overlay] = ACTIONS(1027), - [anon_sym_new] = ACTIONS(1027), - [anon_sym_as] = ACTIONS(1027), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1027), - [anon_sym_DOT_DOT2] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1027), - [aux_sym__val_number_decimal_token1] = ACTIONS(1027), - [aux_sym__val_number_decimal_token2] = ACTIONS(1027), - [aux_sym__val_number_decimal_token3] = ACTIONS(1027), - [aux_sym__val_number_decimal_token4] = ACTIONS(1027), - [aux_sym__val_number_token1] = ACTIONS(1027), - [aux_sym__val_number_token2] = ACTIONS(1027), - [aux_sym__val_number_token3] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(1027), - [sym__str_single_quotes] = ACTIONS(1027), - [sym__str_back_ticks] = ACTIONS(1027), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1027), - [sym__entry_separator] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1029), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [258] = { - [sym_path] = STATE(340), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5138), + [sym_block] = STATE(5140), + [sym__expression_parenthesized] = STATE(5140), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5140), [sym_comment] = STATE(258), - [aux_sym_cell_path_repeat1] = STATE(258), - [anon_sym_export] = ACTIONS(1031), - [anon_sym_alias] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1031), - [anon_sym_let_DASHenv] = ACTIONS(1031), - [anon_sym_mut] = ACTIONS(1031), - [anon_sym_const] = ACTIONS(1031), - [aux_sym_cmd_identifier_token1] = ACTIONS(1031), - [aux_sym_cmd_identifier_token2] = ACTIONS(1031), - [aux_sym_cmd_identifier_token3] = ACTIONS(1031), - [aux_sym_cmd_identifier_token4] = ACTIONS(1031), - [aux_sym_cmd_identifier_token5] = ACTIONS(1031), - [aux_sym_cmd_identifier_token6] = ACTIONS(1031), - [aux_sym_cmd_identifier_token7] = ACTIONS(1031), - [aux_sym_cmd_identifier_token8] = ACTIONS(1031), - [aux_sym_cmd_identifier_token9] = ACTIONS(1031), - [aux_sym_cmd_identifier_token10] = ACTIONS(1031), - [aux_sym_cmd_identifier_token11] = ACTIONS(1031), - [aux_sym_cmd_identifier_token12] = ACTIONS(1031), - [aux_sym_cmd_identifier_token13] = ACTIONS(1031), - [aux_sym_cmd_identifier_token14] = ACTIONS(1031), - [aux_sym_cmd_identifier_token15] = ACTIONS(1031), - [aux_sym_cmd_identifier_token16] = ACTIONS(1031), - [aux_sym_cmd_identifier_token17] = ACTIONS(1031), - [aux_sym_cmd_identifier_token18] = ACTIONS(1031), - [aux_sym_cmd_identifier_token19] = ACTIONS(1031), - [aux_sym_cmd_identifier_token20] = ACTIONS(1031), - [aux_sym_cmd_identifier_token21] = ACTIONS(1031), - [aux_sym_cmd_identifier_token22] = ACTIONS(1031), - [aux_sym_cmd_identifier_token23] = ACTIONS(1031), - [aux_sym_cmd_identifier_token24] = ACTIONS(1031), - [aux_sym_cmd_identifier_token25] = ACTIONS(1031), - [aux_sym_cmd_identifier_token26] = ACTIONS(1031), - [aux_sym_cmd_identifier_token27] = ACTIONS(1031), - [aux_sym_cmd_identifier_token28] = ACTIONS(1031), - [aux_sym_cmd_identifier_token29] = ACTIONS(1031), - [aux_sym_cmd_identifier_token30] = ACTIONS(1031), - [aux_sym_cmd_identifier_token31] = ACTIONS(1031), - [aux_sym_cmd_identifier_token32] = ACTIONS(1031), - [aux_sym_cmd_identifier_token33] = ACTIONS(1031), - [aux_sym_cmd_identifier_token34] = ACTIONS(1031), - [aux_sym_cmd_identifier_token35] = ACTIONS(1031), - [aux_sym_cmd_identifier_token36] = ACTIONS(1031), - [anon_sym_true] = ACTIONS(1031), - [anon_sym_false] = ACTIONS(1031), - [anon_sym_null] = ACTIONS(1031), - [aux_sym_cmd_identifier_token38] = ACTIONS(1031), - [aux_sym_cmd_identifier_token39] = ACTIONS(1031), - [aux_sym_cmd_identifier_token40] = ACTIONS(1031), - [anon_sym_def] = ACTIONS(1031), - [anon_sym_export_DASHenv] = ACTIONS(1031), - [anon_sym_extern] = ACTIONS(1031), - [anon_sym_module] = ACTIONS(1031), - [anon_sym_use] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_error] = ACTIONS(1031), - [anon_sym_list] = ACTIONS(1031), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_break] = ACTIONS(1031), - [anon_sym_continue] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(1031), - [anon_sym_in] = ACTIONS(1031), - [anon_sym_loop] = ACTIONS(1031), - [anon_sym_make] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1031), - [anon_sym_else] = ACTIONS(1031), - [anon_sym_match] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [anon_sym_try] = ACTIONS(1031), - [anon_sym_catch] = ACTIONS(1031), - [anon_sym_return] = ACTIONS(1031), - [anon_sym_source] = ACTIONS(1031), - [anon_sym_source_DASHenv] = ACTIONS(1031), - [anon_sym_register] = ACTIONS(1031), - [anon_sym_hide] = ACTIONS(1031), - [anon_sym_hide_DASHenv] = ACTIONS(1031), - [anon_sym_overlay] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_as] = ACTIONS(1031), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1031), - [anon_sym_DOT_DOT2] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(1747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1031), - [aux_sym__val_number_decimal_token1] = ACTIONS(1031), - [aux_sym__val_number_decimal_token2] = ACTIONS(1031), - [aux_sym__val_number_decimal_token3] = ACTIONS(1031), - [aux_sym__val_number_decimal_token4] = ACTIONS(1031), - [aux_sym__val_number_token1] = ACTIONS(1031), - [aux_sym__val_number_token2] = ACTIONS(1031), - [aux_sym__val_number_token3] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [sym__str_single_quotes] = ACTIONS(1031), - [sym__str_back_ticks] = ACTIONS(1031), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1031), - [sym__entry_separator] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1031), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1033), + [aux_sym_shebang_repeat1] = STATE(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [259] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5220), - [sym_block] = STATE(5062), - [sym__expression_parenthesized] = STATE(5062), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5062), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5141), + [sym_block] = STATE(5152), + [sym__expression_parenthesized] = STATE(5152), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5152), [sym_comment] = STATE(259), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(263), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [260] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5220), - [sym_block] = STATE(5062), - [sym__expression_parenthesized] = STATE(5062), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5062), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5160), + [sym_block] = STATE(5161), + [sym__expression_parenthesized] = STATE(5161), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5161), [sym_comment] = STATE(260), - [aux_sym_shebang_repeat1] = STATE(264), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(266), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [261] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5063), - [sym_block] = STATE(5064), - [sym__expression_parenthesized] = STATE(5064), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5064), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5042), + [sym_block] = STATE(5043), + [sym__expression_parenthesized] = STATE(5043), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5043), [sym_comment] = STATE(261), - [aux_sym_shebang_repeat1] = STATE(266), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [262] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5042), + [sym_block] = STATE(5043), + [sym__expression_parenthesized] = STATE(5043), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5043), [sym_comment] = STATE(262), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(1750), - [aux_sym__immediate_decimal_token2] = ACTIONS(1752), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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), - [anon_sym_PLUS] = ACTIONS(1703), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [aux_sym_shebang_repeat1] = STATE(291), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [263] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5044), + [sym_block] = STATE(5045), + [sym__expression_parenthesized] = STATE(5045), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5045), [sym_comment] = STATE(263), - [aux_sym__block_body_repeat1] = STATE(263), - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_export] = ACTIONS(1676), - [anon_sym_alias] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1676), - [anon_sym_let_DASHenv] = ACTIONS(1676), - [anon_sym_mut] = ACTIONS(1676), - [anon_sym_const] = ACTIONS(1676), - [aux_sym_cmd_identifier_token1] = ACTIONS(1676), - [aux_sym_cmd_identifier_token2] = ACTIONS(1676), - [aux_sym_cmd_identifier_token3] = ACTIONS(1676), - [aux_sym_cmd_identifier_token4] = ACTIONS(1676), - [aux_sym_cmd_identifier_token5] = ACTIONS(1676), - [aux_sym_cmd_identifier_token6] = ACTIONS(1676), - [aux_sym_cmd_identifier_token7] = ACTIONS(1676), - [aux_sym_cmd_identifier_token8] = ACTIONS(1676), - [aux_sym_cmd_identifier_token9] = ACTIONS(1676), - [aux_sym_cmd_identifier_token10] = ACTIONS(1676), - [aux_sym_cmd_identifier_token11] = ACTIONS(1676), - [aux_sym_cmd_identifier_token12] = ACTIONS(1676), - [aux_sym_cmd_identifier_token13] = ACTIONS(1676), - [aux_sym_cmd_identifier_token14] = ACTIONS(1676), - [aux_sym_cmd_identifier_token15] = ACTIONS(1676), - [aux_sym_cmd_identifier_token16] = ACTIONS(1676), - [aux_sym_cmd_identifier_token17] = ACTIONS(1676), - [aux_sym_cmd_identifier_token18] = ACTIONS(1676), - [aux_sym_cmd_identifier_token19] = ACTIONS(1676), - [aux_sym_cmd_identifier_token20] = ACTIONS(1676), - [aux_sym_cmd_identifier_token21] = ACTIONS(1676), - [aux_sym_cmd_identifier_token22] = ACTIONS(1676), - [aux_sym_cmd_identifier_token23] = ACTIONS(1676), - [aux_sym_cmd_identifier_token24] = ACTIONS(1678), - [aux_sym_cmd_identifier_token25] = ACTIONS(1676), - [aux_sym_cmd_identifier_token26] = ACTIONS(1678), - [aux_sym_cmd_identifier_token27] = ACTIONS(1676), - [aux_sym_cmd_identifier_token28] = ACTIONS(1676), - [aux_sym_cmd_identifier_token29] = ACTIONS(1676), - [aux_sym_cmd_identifier_token30] = ACTIONS(1676), - [aux_sym_cmd_identifier_token31] = ACTIONS(1678), - [aux_sym_cmd_identifier_token32] = ACTIONS(1678), - [aux_sym_cmd_identifier_token33] = ACTIONS(1678), - [aux_sym_cmd_identifier_token34] = ACTIONS(1678), - [aux_sym_cmd_identifier_token35] = ACTIONS(1678), - [aux_sym_cmd_identifier_token36] = ACTIONS(1676), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [anon_sym_null] = ACTIONS(1678), - [aux_sym_cmd_identifier_token38] = ACTIONS(1676), - [aux_sym_cmd_identifier_token39] = ACTIONS(1678), - [aux_sym_cmd_identifier_token40] = ACTIONS(1678), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_def] = ACTIONS(1676), - [anon_sym_export_DASHenv] = ACTIONS(1676), - [anon_sym_extern] = ACTIONS(1676), - [anon_sym_module] = ACTIONS(1676), - [anon_sym_use] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_DOLLAR] = ACTIONS(1676), - [anon_sym_error] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_do] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_match] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_try] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_source] = ACTIONS(1676), - [anon_sym_source_DASHenv] = ACTIONS(1676), - [anon_sym_register] = ACTIONS(1676), - [anon_sym_hide] = ACTIONS(1676), - [anon_sym_hide_DASHenv] = ACTIONS(1676), - [anon_sym_overlay] = ACTIONS(1676), - [anon_sym_where] = ACTIONS(1678), - [aux_sym_expr_unary_token1] = ACTIONS(1678), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1678), - [anon_sym_DOT_DOT_LT] = ACTIONS(1678), - [aux_sym__val_number_decimal_token1] = ACTIONS(1676), - [aux_sym__val_number_decimal_token2] = ACTIONS(1678), - [aux_sym__val_number_decimal_token3] = ACTIONS(1678), - [aux_sym__val_number_decimal_token4] = ACTIONS(1678), - [aux_sym__val_number_token1] = ACTIONS(1678), - [aux_sym__val_number_token2] = ACTIONS(1678), - [aux_sym__val_number_token3] = ACTIONS(1678), - [anon_sym_0b] = ACTIONS(1676), - [anon_sym_0o] = ACTIONS(1676), - [anon_sym_0x] = ACTIONS(1676), - [sym_val_date] = ACTIONS(1678), - [anon_sym_DQUOTE] = ACTIONS(1678), - [sym__str_single_quotes] = ACTIONS(1678), - [sym__str_back_ticks] = ACTIONS(1678), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1678), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1678), - [aux_sym_env_var_token1] = ACTIONS(1676), - [anon_sym_CARET] = ACTIONS(1678), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1678), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [264] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5097), - [sym_block] = STATE(5098), - [sym__expression_parenthesized] = STATE(5098), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5098), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5044), + [sym_block] = STATE(5045), + [sym__expression_parenthesized] = STATE(5045), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5045), [sym_comment] = STATE(264), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(292), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [265] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5097), - [sym_block] = STATE(5098), - [sym__expression_parenthesized] = STATE(5098), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5098), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5001), + [sym_block] = STATE(5004), + [sym__expression_parenthesized] = STATE(5004), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5004), [sym_comment] = STATE(265), - [aux_sym_shebang_repeat1] = STATE(272), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(306), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [266] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5100), - [sym_block] = STATE(5101), - [sym__expression_parenthesized] = STATE(5101), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5101), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5046), + [sym_block] = STATE(5048), + [sym__expression_parenthesized] = STATE(5048), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5048), [sym_comment] = STATE(266), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [267] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5100), - [sym_block] = STATE(5101), - [sym__expression_parenthesized] = STATE(5101), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5101), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5138), + [sym_block] = STATE(5140), + [sym__expression_parenthesized] = STATE(5140), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5140), [sym_comment] = STATE(267), - [aux_sym_shebang_repeat1] = STATE(299), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(270), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [268] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5102), - [sym_block] = STATE(5103), - [sym__expression_parenthesized] = STATE(5103), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5103), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5141), + [sym_block] = STATE(5152), + [sym__expression_parenthesized] = STATE(5152), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5152), [sym_comment] = STATE(268), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(272), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [269] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5102), - [sym_block] = STATE(5103), - [sym__expression_parenthesized] = STATE(5103), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5103), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5160), + [sym_block] = STATE(5161), + [sym__expression_parenthesized] = STATE(5161), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5161), [sym_comment] = STATE(269), - [aux_sym_shebang_repeat1] = STATE(275), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(274), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [270] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5104), - [sym_block] = STATE(5105), - [sym__expression_parenthesized] = STATE(5105), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5105), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5042), + [sym_block] = STATE(5043), + [sym__expression_parenthesized] = STATE(5043), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5043), [sym_comment] = STATE(270), - [aux_sym_shebang_repeat1] = STATE(277), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [271] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5042), + [sym_block] = STATE(5043), + [sym__expression_parenthesized] = STATE(5043), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5043), [sym_comment] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(1366), - [anon_sym_POUND_BANG] = ACTIONS(1362), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1366), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1366), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1366), - [aux_sym_cmd_identifier_token32] = ACTIONS(1366), - [aux_sym_cmd_identifier_token33] = ACTIONS(1366), - [aux_sym_cmd_identifier_token34] = ACTIONS(1366), - [aux_sym_cmd_identifier_token35] = ACTIONS(1366), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [anon_sym_null] = ACTIONS(1366), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1366), - [aux_sym_cmd_identifier_token40] = ACTIONS(1366), - [sym__newline] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_where] = ACTIONS(1366), - [aux_sym_expr_unary_token1] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_DOT_DOT_LT] = ACTIONS(1366), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1366), - [aux_sym__val_number_decimal_token3] = ACTIONS(1366), - [aux_sym__val_number_decimal_token4] = ACTIONS(1366), - [aux_sym__val_number_token1] = ACTIONS(1366), - [aux_sym__val_number_token2] = ACTIONS(1366), - [aux_sym__val_number_token3] = ACTIONS(1366), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym__str_single_quotes] = ACTIONS(1366), - [sym__str_back_ticks] = ACTIONS(1366), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1366), - [aux_sym_env_var_token1] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1366), + [aux_sym_shebang_repeat1] = STATE(277), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [272] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(5123), - [sym__expression_parenthesized] = STATE(5123), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5123), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5044), + [sym_block] = STATE(5045), + [sym__expression_parenthesized] = STATE(5045), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5045), [sym_comment] = STATE(272), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [273] = { - [sym_cell_path] = STATE(475), - [sym_path] = STATE(423), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5044), + [sym_block] = STATE(5045), + [sym__expression_parenthesized] = STATE(5045), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5045), [sym_comment] = STATE(273), - [aux_sym_cell_path_repeat1] = STATE(301), - [anon_sym_export] = ACTIONS(1670), - [anon_sym_alias] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1670), - [anon_sym_let_DASHenv] = ACTIONS(1670), - [anon_sym_mut] = ACTIONS(1670), - [anon_sym_const] = ACTIONS(1670), - [aux_sym_cmd_identifier_token1] = ACTIONS(1670), - [aux_sym_cmd_identifier_token2] = ACTIONS(1670), - [aux_sym_cmd_identifier_token3] = ACTIONS(1670), - [aux_sym_cmd_identifier_token4] = ACTIONS(1670), - [aux_sym_cmd_identifier_token5] = ACTIONS(1670), - [aux_sym_cmd_identifier_token6] = ACTIONS(1670), - [aux_sym_cmd_identifier_token7] = ACTIONS(1670), - [aux_sym_cmd_identifier_token8] = ACTIONS(1670), - [aux_sym_cmd_identifier_token9] = ACTIONS(1670), - [aux_sym_cmd_identifier_token10] = ACTIONS(1670), - [aux_sym_cmd_identifier_token11] = ACTIONS(1670), - [aux_sym_cmd_identifier_token12] = ACTIONS(1670), - [aux_sym_cmd_identifier_token13] = ACTIONS(1670), - [aux_sym_cmd_identifier_token14] = ACTIONS(1670), - [aux_sym_cmd_identifier_token15] = ACTIONS(1670), - [aux_sym_cmd_identifier_token16] = ACTIONS(1670), - [aux_sym_cmd_identifier_token17] = ACTIONS(1670), - [aux_sym_cmd_identifier_token18] = ACTIONS(1670), - [aux_sym_cmd_identifier_token19] = ACTIONS(1670), - [aux_sym_cmd_identifier_token20] = ACTIONS(1670), - [aux_sym_cmd_identifier_token21] = ACTIONS(1670), - [aux_sym_cmd_identifier_token22] = ACTIONS(1670), - [aux_sym_cmd_identifier_token23] = ACTIONS(1670), - [aux_sym_cmd_identifier_token24] = ACTIONS(1670), - [aux_sym_cmd_identifier_token25] = ACTIONS(1670), - [aux_sym_cmd_identifier_token26] = ACTIONS(1670), - [aux_sym_cmd_identifier_token27] = ACTIONS(1670), - [aux_sym_cmd_identifier_token28] = ACTIONS(1670), - [aux_sym_cmd_identifier_token29] = ACTIONS(1670), - [aux_sym_cmd_identifier_token30] = ACTIONS(1670), - [aux_sym_cmd_identifier_token31] = ACTIONS(1670), - [aux_sym_cmd_identifier_token32] = ACTIONS(1670), - [aux_sym_cmd_identifier_token33] = ACTIONS(1670), - [aux_sym_cmd_identifier_token34] = ACTIONS(1670), - [aux_sym_cmd_identifier_token35] = ACTIONS(1670), - [aux_sym_cmd_identifier_token36] = ACTIONS(1670), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [aux_sym_cmd_identifier_token38] = ACTIONS(1670), - [aux_sym_cmd_identifier_token39] = ACTIONS(1672), - [aux_sym_cmd_identifier_token40] = ACTIONS(1672), - [anon_sym_def] = ACTIONS(1670), - [anon_sym_export_DASHenv] = ACTIONS(1670), - [anon_sym_extern] = ACTIONS(1670), - [anon_sym_module] = ACTIONS(1670), - [anon_sym_use] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1672), - [anon_sym_error] = ACTIONS(1670), - [anon_sym_list] = ACTIONS(1670), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_in] = ACTIONS(1670), - [anon_sym_loop] = ACTIONS(1670), - [anon_sym_make] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_do] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_match] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1670), - [anon_sym_catch] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_source] = ACTIONS(1670), - [anon_sym_source_DASHenv] = ACTIONS(1670), - [anon_sym_register] = ACTIONS(1670), - [anon_sym_hide] = ACTIONS(1670), - [anon_sym_hide_DASHenv] = ACTIONS(1670), - [anon_sym_overlay] = ACTIONS(1670), - [anon_sym_new] = ACTIONS(1670), - [anon_sym_as] = ACTIONS(1670), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1672), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1672), - [aux_sym__val_number_decimal_token1] = ACTIONS(1670), - [aux_sym__val_number_decimal_token2] = ACTIONS(1672), - [aux_sym__val_number_decimal_token3] = ACTIONS(1672), - [aux_sym__val_number_decimal_token4] = ACTIONS(1672), - [aux_sym__val_number_token1] = ACTIONS(1672), - [aux_sym__val_number_token2] = ACTIONS(1672), - [aux_sym__val_number_token3] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [sym__str_single_quotes] = ACTIONS(1672), - [sym__str_back_ticks] = ACTIONS(1672), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1672), + [aux_sym_shebang_repeat1] = STATE(278), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [274] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5124), - [sym_block] = STATE(5125), - [sym__expression_parenthesized] = STATE(5125), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5125), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5046), + [sym_block] = STATE(5048), + [sym__expression_parenthesized] = STATE(5048), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5048), [sym_comment] = STATE(274), - [aux_sym_shebang_repeat1] = STATE(279), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [275] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5126), - [sym_block] = STATE(5127), - [sym__expression_parenthesized] = STATE(5127), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5127), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5046), + [sym_block] = STATE(5048), + [sym__expression_parenthesized] = STATE(5048), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5048), [sym_comment] = STATE(275), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(280), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [276] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5126), - [sym_block] = STATE(5127), - [sym__expression_parenthesized] = STATE(5127), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5127), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5049), + [sym_block] = STATE(5050), + [sym__expression_parenthesized] = STATE(5050), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5050), [sym_comment] = STATE(276), - [aux_sym_shebang_repeat1] = STATE(280), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(282), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [277] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5129), - [sym_block] = STATE(5130), - [sym__expression_parenthesized] = STATE(5130), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5130), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5078), + [sym_block] = STATE(5079), + [sym__expression_parenthesized] = STATE(5079), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5079), [sym_comment] = STATE(277), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [278] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5129), - [sym_block] = STATE(5130), - [sym__expression_parenthesized] = STATE(5130), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5130), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5080), + [sym_block] = STATE(5081), + [sym__expression_parenthesized] = STATE(5081), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5081), [sym_comment] = STATE(278), - [aux_sym_shebang_repeat1] = STATE(281), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [279] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5136), - [sym_block] = STATE(5137), - [sym__expression_parenthesized] = STATE(5137), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5137), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5080), + [sym_block] = STATE(5081), + [sym__expression_parenthesized] = STATE(5081), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5081), [sym_comment] = STATE(279), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [280] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5140), - [sym_block] = STATE(5141), - [sym__expression_parenthesized] = STATE(5141), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5141), - [sym_comment] = STATE(280), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(284), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [280] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5082), + [sym_block] = STATE(5083), + [sym__expression_parenthesized] = STATE(5083), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5083), + [sym_comment] = STATE(280), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [281] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5142), - [sym_block] = STATE(5144), - [sym__expression_parenthesized] = STATE(5144), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5144), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5082), + [sym_block] = STATE(5083), + [sym__expression_parenthesized] = STATE(5083), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5083), [sym_comment] = STATE(281), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(285), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [282] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5142), - [sym_block] = STATE(5144), - [sym__expression_parenthesized] = STATE(5144), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5144), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5084), + [sym_block] = STATE(5166), + [sym__expression_parenthesized] = STATE(5166), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5166), [sym_comment] = STATE(282), - [aux_sym_shebang_repeat1] = STATE(283), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [283] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5146), - [sym_block] = STATE(5147), - [sym__expression_parenthesized] = STATE(5147), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5147), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5084), + [sym_block] = STATE(5166), + [sym__expression_parenthesized] = STATE(5166), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5166), [sym_comment] = STATE(283), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(286), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [284] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5087), + [sym_block] = STATE(5088), + [sym__expression_parenthesized] = STATE(5088), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5088), [sym_comment] = STATE(284), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1366), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1366), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1366), - [aux_sym_cmd_identifier_token32] = ACTIONS(1366), - [aux_sym_cmd_identifier_token33] = ACTIONS(1366), - [aux_sym_cmd_identifier_token34] = ACTIONS(1366), - [aux_sym_cmd_identifier_token35] = ACTIONS(1366), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [anon_sym_null] = ACTIONS(1366), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1366), - [aux_sym_cmd_identifier_token40] = ACTIONS(1366), - [sym__newline] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_RPAREN] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_where] = ACTIONS(1366), - [aux_sym_expr_unary_token1] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_DOT_DOT_LT] = ACTIONS(1366), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1366), - [aux_sym__val_number_decimal_token3] = ACTIONS(1366), - [aux_sym__val_number_decimal_token4] = ACTIONS(1366), - [aux_sym__val_number_token1] = ACTIONS(1366), - [aux_sym__val_number_token2] = ACTIONS(1366), - [aux_sym__val_number_token3] = ACTIONS(1366), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym__str_single_quotes] = ACTIONS(1366), - [sym__str_back_ticks] = ACTIONS(1366), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1366), - [aux_sym_env_var_token1] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1366), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [285] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5089), + [sym_block] = STATE(5090), + [sym__expression_parenthesized] = STATE(5090), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5090), [sym_comment] = STATE(285), - [anon_sym_export] = ACTIONS(1536), - [anon_sym_alias] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_let_DASHenv] = ACTIONS(1536), - [anon_sym_mut] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [aux_sym_cmd_identifier_token1] = ACTIONS(1536), - [aux_sym_cmd_identifier_token2] = ACTIONS(1536), - [aux_sym_cmd_identifier_token3] = ACTIONS(1536), - [aux_sym_cmd_identifier_token4] = ACTIONS(1536), - [aux_sym_cmd_identifier_token5] = ACTIONS(1536), - [aux_sym_cmd_identifier_token6] = ACTIONS(1536), - [aux_sym_cmd_identifier_token7] = ACTIONS(1536), - [aux_sym_cmd_identifier_token8] = ACTIONS(1536), - [aux_sym_cmd_identifier_token9] = ACTIONS(1536), - [aux_sym_cmd_identifier_token10] = ACTIONS(1536), - [aux_sym_cmd_identifier_token11] = ACTIONS(1536), - [aux_sym_cmd_identifier_token12] = ACTIONS(1536), - [aux_sym_cmd_identifier_token13] = ACTIONS(1536), - [aux_sym_cmd_identifier_token14] = ACTIONS(1536), - [aux_sym_cmd_identifier_token15] = ACTIONS(1536), - [aux_sym_cmd_identifier_token16] = ACTIONS(1536), - [aux_sym_cmd_identifier_token17] = ACTIONS(1536), - [aux_sym_cmd_identifier_token18] = ACTIONS(1536), - [aux_sym_cmd_identifier_token19] = ACTIONS(1536), - [aux_sym_cmd_identifier_token20] = ACTIONS(1536), - [aux_sym_cmd_identifier_token21] = ACTIONS(1536), - [aux_sym_cmd_identifier_token22] = ACTIONS(1536), - [aux_sym_cmd_identifier_token23] = ACTIONS(1536), - [aux_sym_cmd_identifier_token24] = ACTIONS(1536), - [aux_sym_cmd_identifier_token25] = ACTIONS(1536), - [aux_sym_cmd_identifier_token26] = ACTIONS(1536), - [aux_sym_cmd_identifier_token27] = ACTIONS(1536), - [aux_sym_cmd_identifier_token28] = ACTIONS(1536), - [aux_sym_cmd_identifier_token29] = ACTIONS(1536), - [aux_sym_cmd_identifier_token30] = ACTIONS(1536), - [aux_sym_cmd_identifier_token31] = ACTIONS(1536), - [aux_sym_cmd_identifier_token32] = ACTIONS(1536), - [aux_sym_cmd_identifier_token33] = ACTIONS(1536), - [aux_sym_cmd_identifier_token34] = ACTIONS(1536), - [aux_sym_cmd_identifier_token35] = ACTIONS(1536), - [aux_sym_cmd_identifier_token36] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1536), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [anon_sym_def] = ACTIONS(1536), - [anon_sym_export_DASHenv] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_module] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_error] = ACTIONS(1536), - [anon_sym_list] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_make] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_else] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1536), - [anon_sym_catch] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_source] = ACTIONS(1536), - [anon_sym_source_DASHenv] = ACTIONS(1536), - [anon_sym_register] = ACTIONS(1536), - [anon_sym_hide] = ACTIONS(1536), - [anon_sym_hide_DASHenv] = ACTIONS(1536), - [anon_sym_overlay] = ACTIONS(1536), - [anon_sym_new] = ACTIONS(1536), - [anon_sym_as] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1536), - [sym_duration_unit] = ACTIONS(1536), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1536), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [286] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5091), + [sym_block] = STATE(5092), + [sym__expression_parenthesized] = STATE(5092), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5092), [sym_comment] = STATE(286), - [aux_sym__block_body_repeat1] = STATE(263), - [ts_builtin_sym_end] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1656), - [anon_sym_alias] = ACTIONS(1656), - [anon_sym_let] = ACTIONS(1656), - [anon_sym_let_DASHenv] = ACTIONS(1656), - [anon_sym_mut] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [aux_sym_cmd_identifier_token1] = ACTIONS(1656), - [aux_sym_cmd_identifier_token2] = ACTIONS(1656), - [aux_sym_cmd_identifier_token3] = ACTIONS(1656), - [aux_sym_cmd_identifier_token4] = ACTIONS(1656), - [aux_sym_cmd_identifier_token5] = ACTIONS(1656), - [aux_sym_cmd_identifier_token6] = ACTIONS(1656), - [aux_sym_cmd_identifier_token7] = ACTIONS(1656), - [aux_sym_cmd_identifier_token8] = ACTIONS(1656), - [aux_sym_cmd_identifier_token9] = ACTIONS(1656), - [aux_sym_cmd_identifier_token10] = ACTIONS(1656), - [aux_sym_cmd_identifier_token11] = ACTIONS(1656), - [aux_sym_cmd_identifier_token12] = ACTIONS(1656), - [aux_sym_cmd_identifier_token13] = ACTIONS(1656), - [aux_sym_cmd_identifier_token14] = ACTIONS(1656), - [aux_sym_cmd_identifier_token15] = ACTIONS(1656), - [aux_sym_cmd_identifier_token16] = ACTIONS(1656), - [aux_sym_cmd_identifier_token17] = ACTIONS(1656), - [aux_sym_cmd_identifier_token18] = ACTIONS(1656), - [aux_sym_cmd_identifier_token19] = ACTIONS(1656), - [aux_sym_cmd_identifier_token20] = ACTIONS(1656), - [aux_sym_cmd_identifier_token21] = ACTIONS(1656), - [aux_sym_cmd_identifier_token22] = ACTIONS(1656), - [aux_sym_cmd_identifier_token23] = ACTIONS(1656), - [aux_sym_cmd_identifier_token24] = ACTIONS(1658), - [aux_sym_cmd_identifier_token25] = ACTIONS(1656), - [aux_sym_cmd_identifier_token26] = ACTIONS(1658), - [aux_sym_cmd_identifier_token27] = ACTIONS(1656), - [aux_sym_cmd_identifier_token28] = ACTIONS(1656), - [aux_sym_cmd_identifier_token29] = ACTIONS(1656), - [aux_sym_cmd_identifier_token30] = ACTIONS(1656), - [aux_sym_cmd_identifier_token31] = ACTIONS(1658), - [aux_sym_cmd_identifier_token32] = ACTIONS(1658), - [aux_sym_cmd_identifier_token33] = ACTIONS(1658), - [aux_sym_cmd_identifier_token34] = ACTIONS(1658), - [aux_sym_cmd_identifier_token35] = ACTIONS(1658), - [aux_sym_cmd_identifier_token36] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1658), - [aux_sym_cmd_identifier_token38] = ACTIONS(1656), - [aux_sym_cmd_identifier_token39] = ACTIONS(1658), - [aux_sym_cmd_identifier_token40] = ACTIONS(1658), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1656), - [anon_sym_export_DASHenv] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1656), - [anon_sym_use] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_error] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_loop] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_match] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_try] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_source] = ACTIONS(1656), - [anon_sym_source_DASHenv] = ACTIONS(1656), - [anon_sym_register] = ACTIONS(1656), - [anon_sym_hide] = ACTIONS(1656), - [anon_sym_hide_DASHenv] = ACTIONS(1656), - [anon_sym_overlay] = ACTIONS(1656), - [anon_sym_where] = ACTIONS(1658), - [aux_sym_expr_unary_token1] = ACTIONS(1658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), - [anon_sym_DOT_DOT_LT] = ACTIONS(1658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1656), - [aux_sym__val_number_decimal_token2] = ACTIONS(1658), - [aux_sym__val_number_decimal_token3] = ACTIONS(1658), - [aux_sym__val_number_decimal_token4] = ACTIONS(1658), - [aux_sym__val_number_token1] = ACTIONS(1658), - [aux_sym__val_number_token2] = ACTIONS(1658), - [aux_sym__val_number_token3] = ACTIONS(1658), - [anon_sym_0b] = ACTIONS(1656), - [anon_sym_0o] = ACTIONS(1656), - [anon_sym_0x] = ACTIONS(1656), - [sym_val_date] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [sym__str_single_quotes] = ACTIONS(1658), - [sym__str_back_ticks] = ACTIONS(1658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), - [aux_sym_env_var_token1] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1658), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [287] = { - [sym_cell_path] = STATE(493), - [sym_path] = STATE(423), + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5091), + [sym_block] = STATE(5092), + [sym__expression_parenthesized] = STATE(5092), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5092), [sym_comment] = STATE(287), - [aux_sym_cell_path_repeat1] = STATE(301), - [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(1759), - [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(249), - [sym_raw_string_begin] = ACTIONS(1023), + [aux_sym_shebang_repeat1] = STATE(288), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [288] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5093), + [sym_block] = STATE(5094), + [sym__expression_parenthesized] = STATE(5094), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5094), [sym_comment] = STATE(288), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [289] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5046), + [sym_block] = STATE(5048), + [sym__expression_parenthesized] = STATE(5048), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5048), + [sym_comment] = STATE(289), + [aux_sym_shebang_repeat1] = STATE(294), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [290] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5049), + [sym_block] = STATE(5050), + [sym__expression_parenthesized] = STATE(5050), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5050), + [sym_comment] = STATE(290), + [aux_sym_shebang_repeat1] = STATE(296), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [291] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5078), + [sym_block] = STATE(5079), + [sym__expression_parenthesized] = STATE(5079), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5079), + [sym_comment] = STATE(291), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [292] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5080), + [sym_block] = STATE(5081), + [sym__expression_parenthesized] = STATE(5081), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5081), + [sym_comment] = STATE(292), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [293] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5080), + [sym_block] = STATE(5081), + [sym__expression_parenthesized] = STATE(5081), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5081), + [sym_comment] = STATE(293), + [aux_sym_shebang_repeat1] = STATE(298), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [294] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5082), + [sym_block] = STATE(5083), + [sym__expression_parenthesized] = STATE(5083), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5083), + [sym_comment] = STATE(294), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [295] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5082), + [sym_block] = STATE(5083), + [sym__expression_parenthesized] = STATE(5083), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5083), + [sym_comment] = STATE(295), + [aux_sym_shebang_repeat1] = STATE(299), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [296] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5084), + [sym_block] = STATE(5166), + [sym__expression_parenthesized] = STATE(5166), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5166), + [sym_comment] = STATE(296), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [297] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5084), + [sym_block] = STATE(5166), + [sym__expression_parenthesized] = STATE(5166), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5166), + [sym_comment] = STATE(297), + [aux_sym_shebang_repeat1] = STATE(300), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [298] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5087), + [sym_block] = STATE(5088), + [sym__expression_parenthesized] = STATE(5088), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5088), + [sym_comment] = STATE(298), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [299] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5089), + [sym_block] = STATE(5090), + [sym__expression_parenthesized] = STATE(5090), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5090), + [sym_comment] = STATE(299), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [300] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5091), + [sym_block] = STATE(5092), + [sym__expression_parenthesized] = STATE(5092), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5092), + [sym_comment] = STATE(300), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [301] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5091), + [sym_block] = STATE(5092), + [sym__expression_parenthesized] = STATE(5092), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5092), + [sym_comment] = STATE(301), + [aux_sym_shebang_repeat1] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [302] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5093), + [sym_block] = STATE(5094), + [sym__expression_parenthesized] = STATE(5094), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5094), + [sym_comment] = STATE(302), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [303] = { + [sym_comment] = STATE(303), + [aux_sym__block_body_repeat1] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(1457), + [anon_sym_export] = ACTIONS(1453), + [anon_sym_alias] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_let_DASHenv] = ACTIONS(1453), + [anon_sym_mut] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [aux_sym_cmd_identifier_token1] = ACTIONS(1453), + [aux_sym_cmd_identifier_token2] = ACTIONS(1455), + [aux_sym_cmd_identifier_token3] = ACTIONS(1455), + [aux_sym_cmd_identifier_token4] = ACTIONS(1455), + [aux_sym_cmd_identifier_token5] = ACTIONS(1455), + [aux_sym_cmd_identifier_token6] = ACTIONS(1455), + [aux_sym_cmd_identifier_token7] = ACTIONS(1455), + [aux_sym_cmd_identifier_token8] = ACTIONS(1453), + [aux_sym_cmd_identifier_token9] = ACTIONS(1453), + [aux_sym_cmd_identifier_token10] = ACTIONS(1455), + [aux_sym_cmd_identifier_token11] = ACTIONS(1455), + [aux_sym_cmd_identifier_token12] = ACTIONS(1453), + [aux_sym_cmd_identifier_token13] = ACTIONS(1453), + [aux_sym_cmd_identifier_token14] = ACTIONS(1453), + [aux_sym_cmd_identifier_token15] = ACTIONS(1453), + [aux_sym_cmd_identifier_token16] = ACTIONS(1455), + [aux_sym_cmd_identifier_token17] = ACTIONS(1455), + [aux_sym_cmd_identifier_token18] = ACTIONS(1455), + [aux_sym_cmd_identifier_token19] = ACTIONS(1455), + [aux_sym_cmd_identifier_token20] = ACTIONS(1455), + [aux_sym_cmd_identifier_token21] = ACTIONS(1455), + [aux_sym_cmd_identifier_token22] = ACTIONS(1455), + [aux_sym_cmd_identifier_token23] = ACTIONS(1455), + [aux_sym_cmd_identifier_token24] = ACTIONS(1455), + [aux_sym_cmd_identifier_token25] = ACTIONS(1455), + [aux_sym_cmd_identifier_token26] = ACTIONS(1455), + [aux_sym_cmd_identifier_token27] = ACTIONS(1455), + [aux_sym_cmd_identifier_token28] = ACTIONS(1455), + [aux_sym_cmd_identifier_token29] = ACTIONS(1455), + [aux_sym_cmd_identifier_token30] = ACTIONS(1455), + [aux_sym_cmd_identifier_token31] = ACTIONS(1455), + [aux_sym_cmd_identifier_token32] = ACTIONS(1455), + [aux_sym_cmd_identifier_token33] = ACTIONS(1455), + [aux_sym_cmd_identifier_token34] = ACTIONS(1453), + [aux_sym_cmd_identifier_token35] = ACTIONS(1455), + [aux_sym_cmd_identifier_token36] = ACTIONS(1455), + [aux_sym_cmd_identifier_token37] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1453), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_export_DASHenv] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1453), + [anon_sym_module] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_error] = ACTIONS(1453), + [anon_sym_DASH2] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_loop] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_source] = ACTIONS(1453), + [anon_sym_source_DASHenv] = ACTIONS(1453), + [anon_sym_register] = ACTIONS(1453), + [anon_sym_hide] = ACTIONS(1453), + [anon_sym_hide_DASHenv] = ACTIONS(1453), + [anon_sym_overlay] = ACTIONS(1453), + [anon_sym_where] = ACTIONS(1455), + [aux_sym_expr_unary_token1] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [aux_sym__val_number_decimal_token1] = ACTIONS(1453), + [aux_sym__val_number_decimal_token2] = ACTIONS(1455), + [aux_sym__val_number_decimal_token3] = ACTIONS(1455), + [aux_sym__val_number_decimal_token4] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1453), + [aux_sym__val_number_token5] = ACTIONS(1453), + [aux_sym__val_number_token6] = ACTIONS(1453), + [anon_sym_0b] = ACTIONS(1453), + [anon_sym_0o] = ACTIONS(1453), + [anon_sym_0x] = ACTIONS(1453), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [aux_sym_env_var_token1] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), + }, + [304] = { + [sym_comment] = STATE(304), + [anon_sym_export] = ACTIONS(1470), + [anon_sym_alias] = ACTIONS(1470), + [anon_sym_let] = ACTIONS(1470), + [anon_sym_let_DASHenv] = ACTIONS(1470), + [anon_sym_mut] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [aux_sym_cmd_identifier_token1] = ACTIONS(1470), + [aux_sym_cmd_identifier_token2] = ACTIONS(1292), + [aux_sym_cmd_identifier_token3] = ACTIONS(1292), + [aux_sym_cmd_identifier_token4] = ACTIONS(1292), + [aux_sym_cmd_identifier_token5] = ACTIONS(1292), + [aux_sym_cmd_identifier_token6] = ACTIONS(1292), + [aux_sym_cmd_identifier_token7] = ACTIONS(1292), + [aux_sym_cmd_identifier_token8] = ACTIONS(1470), + [aux_sym_cmd_identifier_token9] = ACTIONS(1470), + [aux_sym_cmd_identifier_token10] = ACTIONS(1292), + [aux_sym_cmd_identifier_token11] = ACTIONS(1292), + [aux_sym_cmd_identifier_token12] = ACTIONS(1470), + [aux_sym_cmd_identifier_token13] = ACTIONS(1470), + [aux_sym_cmd_identifier_token14] = ACTIONS(1470), + [aux_sym_cmd_identifier_token15] = ACTIONS(1470), + [aux_sym_cmd_identifier_token16] = ACTIONS(1292), + [aux_sym_cmd_identifier_token17] = ACTIONS(1292), + [aux_sym_cmd_identifier_token18] = ACTIONS(1292), + [aux_sym_cmd_identifier_token19] = ACTIONS(1292), + [aux_sym_cmd_identifier_token20] = ACTIONS(1292), + [aux_sym_cmd_identifier_token21] = ACTIONS(1292), + [aux_sym_cmd_identifier_token22] = ACTIONS(1292), + [aux_sym_cmd_identifier_token23] = ACTIONS(1292), + [aux_sym_cmd_identifier_token24] = ACTIONS(1292), + [aux_sym_cmd_identifier_token25] = ACTIONS(1292), + [aux_sym_cmd_identifier_token26] = ACTIONS(1292), + [aux_sym_cmd_identifier_token27] = ACTIONS(1292), + [aux_sym_cmd_identifier_token28] = ACTIONS(1292), + [aux_sym_cmd_identifier_token29] = ACTIONS(1292), + [aux_sym_cmd_identifier_token30] = ACTIONS(1292), + [aux_sym_cmd_identifier_token31] = ACTIONS(1292), + [aux_sym_cmd_identifier_token32] = ACTIONS(1292), + [aux_sym_cmd_identifier_token33] = ACTIONS(1292), + [aux_sym_cmd_identifier_token34] = ACTIONS(1470), + [aux_sym_cmd_identifier_token35] = ACTIONS(1292), + [aux_sym_cmd_identifier_token36] = ACTIONS(1292), + [aux_sym_cmd_identifier_token37] = ACTIONS(1292), + [aux_sym_cmd_identifier_token38] = ACTIONS(1470), + [aux_sym_cmd_identifier_token39] = ACTIONS(1292), + [aux_sym_cmd_identifier_token40] = ACTIONS(1292), + [sym__newline] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_def] = ACTIONS(1470), + [anon_sym_export_DASHenv] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym_module] = ACTIONS(1470), + [anon_sym_use] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_error] = ACTIONS(1470), + [anon_sym_DASH2] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_loop] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1470), + [anon_sym_try] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_source] = ACTIONS(1470), + [anon_sym_source_DASHenv] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_hide] = ACTIONS(1470), + [anon_sym_hide_DASHenv] = ACTIONS(1470), + [anon_sym_overlay] = ACTIONS(1470), + [anon_sym_where] = ACTIONS(1292), + [aux_sym_expr_unary_token1] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), + [anon_sym_DOT_DOT_LT] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1470), + [anon_sym_true] = ACTIONS(1470), + [anon_sym_false] = ACTIONS(1470), + [aux_sym__val_number_decimal_token1] = ACTIONS(1470), + [aux_sym__val_number_decimal_token2] = ACTIONS(1292), + [aux_sym__val_number_decimal_token3] = ACTIONS(1292), + [aux_sym__val_number_decimal_token4] = ACTIONS(1292), + [aux_sym__val_number_token1] = ACTIONS(1292), + [aux_sym__val_number_token2] = ACTIONS(1292), + [aux_sym__val_number_token3] = ACTIONS(1292), + [aux_sym__val_number_token4] = ACTIONS(1470), + [aux_sym__val_number_token5] = ACTIONS(1470), + [aux_sym__val_number_token6] = ACTIONS(1470), + [anon_sym_0b] = ACTIONS(1470), + [anon_sym_0o] = ACTIONS(1470), + [anon_sym_0x] = ACTIONS(1470), + [sym_val_date] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym__str_single_quotes] = ACTIONS(1292), + [sym__str_back_ticks] = ACTIONS(1292), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), + [aux_sym_env_var_token1] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1292), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1292), + }, + [305] = { + [sym_comment] = STATE(305), + [aux_sym__block_body_repeat1] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(1463), + [anon_sym_export] = ACTIONS(1461), + [anon_sym_alias] = ACTIONS(1461), + [anon_sym_let] = ACTIONS(1461), + [anon_sym_let_DASHenv] = ACTIONS(1461), + [anon_sym_mut] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [aux_sym_cmd_identifier_token1] = ACTIONS(1461), + [aux_sym_cmd_identifier_token2] = ACTIONS(1463), + [aux_sym_cmd_identifier_token3] = ACTIONS(1463), + [aux_sym_cmd_identifier_token4] = ACTIONS(1463), + [aux_sym_cmd_identifier_token5] = ACTIONS(1463), + [aux_sym_cmd_identifier_token6] = ACTIONS(1463), + [aux_sym_cmd_identifier_token7] = ACTIONS(1463), + [aux_sym_cmd_identifier_token8] = ACTIONS(1461), + [aux_sym_cmd_identifier_token9] = ACTIONS(1461), + [aux_sym_cmd_identifier_token10] = ACTIONS(1463), + [aux_sym_cmd_identifier_token11] = ACTIONS(1463), + [aux_sym_cmd_identifier_token12] = ACTIONS(1461), + [aux_sym_cmd_identifier_token13] = ACTIONS(1461), + [aux_sym_cmd_identifier_token14] = ACTIONS(1461), + [aux_sym_cmd_identifier_token15] = ACTIONS(1461), + [aux_sym_cmd_identifier_token16] = ACTIONS(1463), + [aux_sym_cmd_identifier_token17] = ACTIONS(1463), + [aux_sym_cmd_identifier_token18] = ACTIONS(1463), + [aux_sym_cmd_identifier_token19] = ACTIONS(1463), + [aux_sym_cmd_identifier_token20] = ACTIONS(1463), + [aux_sym_cmd_identifier_token21] = ACTIONS(1463), + [aux_sym_cmd_identifier_token22] = ACTIONS(1463), + [aux_sym_cmd_identifier_token23] = ACTIONS(1463), + [aux_sym_cmd_identifier_token24] = ACTIONS(1463), + [aux_sym_cmd_identifier_token25] = ACTIONS(1463), + [aux_sym_cmd_identifier_token26] = ACTIONS(1463), + [aux_sym_cmd_identifier_token27] = ACTIONS(1463), + [aux_sym_cmd_identifier_token28] = ACTIONS(1463), + [aux_sym_cmd_identifier_token29] = ACTIONS(1463), + [aux_sym_cmd_identifier_token30] = ACTIONS(1463), + [aux_sym_cmd_identifier_token31] = ACTIONS(1463), + [aux_sym_cmd_identifier_token32] = ACTIONS(1463), + [aux_sym_cmd_identifier_token33] = ACTIONS(1463), + [aux_sym_cmd_identifier_token34] = ACTIONS(1461), + [aux_sym_cmd_identifier_token35] = ACTIONS(1463), + [aux_sym_cmd_identifier_token36] = ACTIONS(1463), + [aux_sym_cmd_identifier_token37] = ACTIONS(1463), + [aux_sym_cmd_identifier_token38] = ACTIONS(1461), + [aux_sym_cmd_identifier_token39] = ACTIONS(1463), + [aux_sym_cmd_identifier_token40] = ACTIONS(1463), + [sym__newline] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_def] = ACTIONS(1461), + [anon_sym_export_DASHenv] = ACTIONS(1461), + [anon_sym_extern] = ACTIONS(1461), + [anon_sym_module] = ACTIONS(1461), + [anon_sym_use] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1461), + [anon_sym_error] = ACTIONS(1461), + [anon_sym_DASH2] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_loop] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_try] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_source] = ACTIONS(1461), + [anon_sym_source_DASHenv] = ACTIONS(1461), + [anon_sym_register] = ACTIONS(1461), + [anon_sym_hide] = ACTIONS(1461), + [anon_sym_hide_DASHenv] = ACTIONS(1461), + [anon_sym_overlay] = ACTIONS(1461), + [anon_sym_where] = ACTIONS(1463), + [aux_sym_expr_unary_token1] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), + [anon_sym_DOT_DOT_LT] = ACTIONS(1463), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [aux_sym__val_number_decimal_token1] = ACTIONS(1461), + [aux_sym__val_number_decimal_token2] = ACTIONS(1463), + [aux_sym__val_number_decimal_token3] = ACTIONS(1463), + [aux_sym__val_number_decimal_token4] = ACTIONS(1463), + [aux_sym__val_number_token1] = ACTIONS(1463), + [aux_sym__val_number_token2] = ACTIONS(1463), + [aux_sym__val_number_token3] = ACTIONS(1463), + [aux_sym__val_number_token4] = ACTIONS(1461), + [aux_sym__val_number_token5] = ACTIONS(1461), + [aux_sym__val_number_token6] = ACTIONS(1461), + [anon_sym_0b] = ACTIONS(1461), + [anon_sym_0o] = ACTIONS(1461), + [anon_sym_0x] = ACTIONS(1461), + [sym_val_date] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [sym__str_single_quotes] = ACTIONS(1463), + [sym__str_back_ticks] = ACTIONS(1463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1463), + [aux_sym_env_var_token1] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1463), + }, + [306] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if_parenthesized] = STATE(5138), + [sym_block] = STATE(5140), + [sym__expression_parenthesized] = STATE(5140), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(5140), + [sym_comment] = STATE(306), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [307] = { + [sym_comment] = STATE(307), + [ts_builtin_sym_end] = ACTIONS(1526), [anon_sym_export] = ACTIONS(1528), [anon_sym_alias] = ACTIONS(1528), [anon_sym_let] = ACTIONS(1528), @@ -110959,71 +109381,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1528), [anon_sym_const] = ACTIONS(1528), [aux_sym_cmd_identifier_token1] = ACTIONS(1528), - [aux_sym_cmd_identifier_token2] = ACTIONS(1528), - [aux_sym_cmd_identifier_token3] = ACTIONS(1528), - [aux_sym_cmd_identifier_token4] = ACTIONS(1528), - [aux_sym_cmd_identifier_token5] = ACTIONS(1528), - [aux_sym_cmd_identifier_token6] = ACTIONS(1528), - [aux_sym_cmd_identifier_token7] = ACTIONS(1528), + [aux_sym_cmd_identifier_token2] = ACTIONS(1526), + [aux_sym_cmd_identifier_token3] = ACTIONS(1526), + [aux_sym_cmd_identifier_token4] = ACTIONS(1526), + [aux_sym_cmd_identifier_token5] = ACTIONS(1526), + [aux_sym_cmd_identifier_token6] = ACTIONS(1526), + [aux_sym_cmd_identifier_token7] = ACTIONS(1526), [aux_sym_cmd_identifier_token8] = ACTIONS(1528), [aux_sym_cmd_identifier_token9] = ACTIONS(1528), - [aux_sym_cmd_identifier_token10] = ACTIONS(1528), - [aux_sym_cmd_identifier_token11] = ACTIONS(1528), + [aux_sym_cmd_identifier_token10] = ACTIONS(1526), + [aux_sym_cmd_identifier_token11] = ACTIONS(1526), [aux_sym_cmd_identifier_token12] = ACTIONS(1528), [aux_sym_cmd_identifier_token13] = ACTIONS(1528), [aux_sym_cmd_identifier_token14] = ACTIONS(1528), [aux_sym_cmd_identifier_token15] = ACTIONS(1528), - [aux_sym_cmd_identifier_token16] = ACTIONS(1528), - [aux_sym_cmd_identifier_token17] = ACTIONS(1528), - [aux_sym_cmd_identifier_token18] = ACTIONS(1528), - [aux_sym_cmd_identifier_token19] = ACTIONS(1528), - [aux_sym_cmd_identifier_token20] = ACTIONS(1528), - [aux_sym_cmd_identifier_token21] = ACTIONS(1528), - [aux_sym_cmd_identifier_token22] = ACTIONS(1528), - [aux_sym_cmd_identifier_token23] = ACTIONS(1528), - [aux_sym_cmd_identifier_token24] = ACTIONS(1528), - [aux_sym_cmd_identifier_token25] = ACTIONS(1528), - [aux_sym_cmd_identifier_token26] = ACTIONS(1528), - [aux_sym_cmd_identifier_token27] = ACTIONS(1528), - [aux_sym_cmd_identifier_token28] = ACTIONS(1528), - [aux_sym_cmd_identifier_token29] = ACTIONS(1528), - [aux_sym_cmd_identifier_token30] = ACTIONS(1528), - [aux_sym_cmd_identifier_token31] = ACTIONS(1528), - [aux_sym_cmd_identifier_token32] = ACTIONS(1528), - [aux_sym_cmd_identifier_token33] = ACTIONS(1528), + [aux_sym_cmd_identifier_token16] = ACTIONS(1526), + [aux_sym_cmd_identifier_token17] = ACTIONS(1526), + [aux_sym_cmd_identifier_token18] = ACTIONS(1526), + [aux_sym_cmd_identifier_token19] = ACTIONS(1526), + [aux_sym_cmd_identifier_token20] = ACTIONS(1526), + [aux_sym_cmd_identifier_token21] = ACTIONS(1526), + [aux_sym_cmd_identifier_token22] = ACTIONS(1526), + [aux_sym_cmd_identifier_token23] = ACTIONS(1526), + [aux_sym_cmd_identifier_token24] = ACTIONS(1526), + [aux_sym_cmd_identifier_token25] = ACTIONS(1526), + [aux_sym_cmd_identifier_token26] = ACTIONS(1526), + [aux_sym_cmd_identifier_token27] = ACTIONS(1526), + [aux_sym_cmd_identifier_token28] = ACTIONS(1526), + [aux_sym_cmd_identifier_token29] = ACTIONS(1526), + [aux_sym_cmd_identifier_token30] = ACTIONS(1526), + [aux_sym_cmd_identifier_token31] = ACTIONS(1526), + [aux_sym_cmd_identifier_token32] = ACTIONS(1526), + [aux_sym_cmd_identifier_token33] = ACTIONS(1526), [aux_sym_cmd_identifier_token34] = ACTIONS(1528), - [aux_sym_cmd_identifier_token35] = ACTIONS(1528), - [aux_sym_cmd_identifier_token36] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [anon_sym_null] = ACTIONS(1530), + [aux_sym_cmd_identifier_token35] = ACTIONS(1526), + [aux_sym_cmd_identifier_token36] = ACTIONS(1526), + [aux_sym_cmd_identifier_token37] = ACTIONS(1526), [aux_sym_cmd_identifier_token38] = ACTIONS(1528), - [aux_sym_cmd_identifier_token39] = ACTIONS(1530), - [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1526), + [aux_sym_cmd_identifier_token40] = ACTIONS(1526), + [sym__newline] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), [anon_sym_def] = ACTIONS(1528), [anon_sym_export_DASHenv] = ACTIONS(1528), [anon_sym_extern] = ACTIONS(1528), [anon_sym_module] = ACTIONS(1528), [anon_sym_use] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1528), [anon_sym_error] = ACTIONS(1528), - [anon_sym_list] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_DASH2] = ACTIONS(1528), [anon_sym_break] = ACTIONS(1528), [anon_sym_continue] = ACTIONS(1528), [anon_sym_for] = ACTIONS(1528), - [anon_sym_in] = ACTIONS(1528), [anon_sym_loop] = ACTIONS(1528), - [anon_sym_make] = ACTIONS(1528), [anon_sym_while] = ACTIONS(1528), [anon_sym_do] = ACTIONS(1528), [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), [anon_sym_match] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_DOT_DOT] = ACTIONS(1528), [anon_sym_try] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), [anon_sym_return] = ACTIONS(1528), [anon_sym_source] = ACTIONS(1528), [anon_sym_source_DASHenv] = ACTIONS(1528), @@ -111031,569 +109450,5901 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1528), [anon_sym_hide_DASHenv] = ACTIONS(1528), [anon_sym_overlay] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_as] = ACTIONS(1528), - [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_where] = ACTIONS(1526), + [aux_sym_expr_unary_token1] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1526), + [anon_sym_DOT_DOT_LT] = ACTIONS(1526), + [anon_sym_null] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1526), + [aux_sym__val_number_decimal_token4] = ACTIONS(1526), + [aux_sym__val_number_token1] = ACTIONS(1526), + [aux_sym__val_number_token2] = ACTIONS(1526), + [aux_sym__val_number_token3] = ACTIONS(1526), + [aux_sym__val_number_token4] = ACTIONS(1528), + [aux_sym__val_number_token5] = ACTIONS(1528), + [aux_sym__val_number_token6] = ACTIONS(1528), + [anon_sym_0b] = ACTIONS(1528), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym__str_single_quotes] = ACTIONS(1526), + [sym__str_back_ticks] = ACTIONS(1526), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1526), + [aux_sym_env_var_token1] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1526), + }, + [308] = { + [sym_comment] = STATE(308), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_alias] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_let_DASHenv] = ACTIONS(1290), + [anon_sym_mut] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [aux_sym_cmd_identifier_token1] = ACTIONS(1290), + [aux_sym_cmd_identifier_token2] = ACTIONS(1288), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [aux_sym_cmd_identifier_token6] = ACTIONS(1288), + [aux_sym_cmd_identifier_token7] = ACTIONS(1288), + [aux_sym_cmd_identifier_token8] = ACTIONS(1290), + [aux_sym_cmd_identifier_token9] = ACTIONS(1290), + [aux_sym_cmd_identifier_token10] = ACTIONS(1288), + [aux_sym_cmd_identifier_token11] = ACTIONS(1288), + [aux_sym_cmd_identifier_token12] = ACTIONS(1290), + [aux_sym_cmd_identifier_token13] = ACTIONS(1290), + [aux_sym_cmd_identifier_token14] = ACTIONS(1290), + [aux_sym_cmd_identifier_token15] = ACTIONS(1290), + [aux_sym_cmd_identifier_token16] = ACTIONS(1288), + [aux_sym_cmd_identifier_token17] = ACTIONS(1288), + [aux_sym_cmd_identifier_token18] = ACTIONS(1288), + [aux_sym_cmd_identifier_token19] = ACTIONS(1288), + [aux_sym_cmd_identifier_token20] = ACTIONS(1288), + [aux_sym_cmd_identifier_token21] = ACTIONS(1288), + [aux_sym_cmd_identifier_token22] = ACTIONS(1288), + [aux_sym_cmd_identifier_token23] = ACTIONS(1288), + [aux_sym_cmd_identifier_token24] = ACTIONS(1288), + [aux_sym_cmd_identifier_token25] = ACTIONS(1288), + [aux_sym_cmd_identifier_token26] = ACTIONS(1288), + [aux_sym_cmd_identifier_token27] = ACTIONS(1288), + [aux_sym_cmd_identifier_token28] = ACTIONS(1288), + [aux_sym_cmd_identifier_token29] = ACTIONS(1288), + [aux_sym_cmd_identifier_token30] = ACTIONS(1288), + [aux_sym_cmd_identifier_token31] = ACTIONS(1288), + [aux_sym_cmd_identifier_token32] = ACTIONS(1288), + [aux_sym_cmd_identifier_token33] = ACTIONS(1288), + [aux_sym_cmd_identifier_token34] = ACTIONS(1290), + [aux_sym_cmd_identifier_token35] = ACTIONS(1288), + [aux_sym_cmd_identifier_token36] = ACTIONS(1288), + [aux_sym_cmd_identifier_token37] = ACTIONS(1288), + [aux_sym_cmd_identifier_token38] = ACTIONS(1290), + [aux_sym_cmd_identifier_token39] = ACTIONS(1288), + [aux_sym_cmd_identifier_token40] = ACTIONS(1288), + [sym__newline] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_def] = ACTIONS(1290), + [anon_sym_export_DASHenv] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_use] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_error] = ACTIONS(1290), + [anon_sym_DASH2] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_try] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_source] = ACTIONS(1290), + [anon_sym_source_DASHenv] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_hide] = ACTIONS(1290), + [anon_sym_hide_DASHenv] = ACTIONS(1290), + [anon_sym_overlay] = ACTIONS(1290), + [anon_sym_where] = ACTIONS(1288), + [aux_sym_expr_unary_token1] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), + [anon_sym_DOT_DOT_LT] = ACTIONS(1288), + [anon_sym_null] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [aux_sym__val_number_decimal_token1] = ACTIONS(1290), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1288), + [aux_sym__val_number_token1] = ACTIONS(1288), + [aux_sym__val_number_token2] = ACTIONS(1288), + [aux_sym__val_number_token3] = ACTIONS(1288), + [aux_sym__val_number_token4] = ACTIONS(1290), + [aux_sym__val_number_token5] = ACTIONS(1290), + [aux_sym__val_number_token6] = ACTIONS(1290), + [anon_sym_0b] = ACTIONS(1290), + [anon_sym_0o] = ACTIONS(1290), + [anon_sym_0x] = ACTIONS(1290), + [sym_val_date] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym__str_single_quotes] = ACTIONS(1288), + [sym__str_back_ticks] = ACTIONS(1288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), + [aux_sym_env_var_token1] = ACTIONS(1290), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1288), + }, + [309] = { + [sym_comment] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(1292), + [anon_sym_export] = ACTIONS(1470), + [anon_sym_alias] = ACTIONS(1470), + [anon_sym_let] = ACTIONS(1470), + [anon_sym_let_DASHenv] = ACTIONS(1470), + [anon_sym_mut] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [aux_sym_cmd_identifier_token1] = ACTIONS(1470), + [aux_sym_cmd_identifier_token2] = ACTIONS(1292), + [aux_sym_cmd_identifier_token3] = ACTIONS(1292), + [aux_sym_cmd_identifier_token4] = ACTIONS(1292), + [aux_sym_cmd_identifier_token5] = ACTIONS(1292), + [aux_sym_cmd_identifier_token6] = ACTIONS(1292), + [aux_sym_cmd_identifier_token7] = ACTIONS(1292), + [aux_sym_cmd_identifier_token8] = ACTIONS(1470), + [aux_sym_cmd_identifier_token9] = ACTIONS(1470), + [aux_sym_cmd_identifier_token10] = ACTIONS(1292), + [aux_sym_cmd_identifier_token11] = ACTIONS(1292), + [aux_sym_cmd_identifier_token12] = ACTIONS(1470), + [aux_sym_cmd_identifier_token13] = ACTIONS(1470), + [aux_sym_cmd_identifier_token14] = ACTIONS(1470), + [aux_sym_cmd_identifier_token15] = ACTIONS(1470), + [aux_sym_cmd_identifier_token16] = ACTIONS(1292), + [aux_sym_cmd_identifier_token17] = ACTIONS(1292), + [aux_sym_cmd_identifier_token18] = ACTIONS(1292), + [aux_sym_cmd_identifier_token19] = ACTIONS(1292), + [aux_sym_cmd_identifier_token20] = ACTIONS(1292), + [aux_sym_cmd_identifier_token21] = ACTIONS(1292), + [aux_sym_cmd_identifier_token22] = ACTIONS(1292), + [aux_sym_cmd_identifier_token23] = ACTIONS(1292), + [aux_sym_cmd_identifier_token24] = ACTIONS(1292), + [aux_sym_cmd_identifier_token25] = ACTIONS(1292), + [aux_sym_cmd_identifier_token26] = ACTIONS(1292), + [aux_sym_cmd_identifier_token27] = ACTIONS(1292), + [aux_sym_cmd_identifier_token28] = ACTIONS(1292), + [aux_sym_cmd_identifier_token29] = ACTIONS(1292), + [aux_sym_cmd_identifier_token30] = ACTIONS(1292), + [aux_sym_cmd_identifier_token31] = ACTIONS(1292), + [aux_sym_cmd_identifier_token32] = ACTIONS(1292), + [aux_sym_cmd_identifier_token33] = ACTIONS(1292), + [aux_sym_cmd_identifier_token34] = ACTIONS(1470), + [aux_sym_cmd_identifier_token35] = ACTIONS(1292), + [aux_sym_cmd_identifier_token36] = ACTIONS(1292), + [aux_sym_cmd_identifier_token37] = ACTIONS(1292), + [aux_sym_cmd_identifier_token38] = ACTIONS(1470), + [aux_sym_cmd_identifier_token39] = ACTIONS(1292), + [aux_sym_cmd_identifier_token40] = ACTIONS(1292), + [sym__newline] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_def] = ACTIONS(1470), + [anon_sym_export_DASHenv] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym_module] = ACTIONS(1470), + [anon_sym_use] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_error] = ACTIONS(1470), + [anon_sym_DASH2] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_loop] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1470), + [anon_sym_try] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_source] = ACTIONS(1470), + [anon_sym_source_DASHenv] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_hide] = ACTIONS(1470), + [anon_sym_hide_DASHenv] = ACTIONS(1470), + [anon_sym_overlay] = ACTIONS(1470), + [anon_sym_where] = ACTIONS(1292), + [aux_sym_expr_unary_token1] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), + [anon_sym_DOT_DOT_LT] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1470), + [anon_sym_true] = ACTIONS(1470), + [anon_sym_false] = ACTIONS(1470), + [aux_sym__val_number_decimal_token1] = ACTIONS(1470), + [aux_sym__val_number_decimal_token2] = ACTIONS(1292), + [aux_sym__val_number_decimal_token3] = ACTIONS(1292), + [aux_sym__val_number_decimal_token4] = ACTIONS(1292), + [aux_sym__val_number_token1] = ACTIONS(1292), + [aux_sym__val_number_token2] = ACTIONS(1292), + [aux_sym__val_number_token3] = ACTIONS(1292), + [aux_sym__val_number_token4] = ACTIONS(1470), + [aux_sym__val_number_token5] = ACTIONS(1470), + [aux_sym__val_number_token6] = ACTIONS(1470), + [anon_sym_0b] = ACTIONS(1470), + [anon_sym_0o] = ACTIONS(1470), + [anon_sym_0x] = ACTIONS(1470), + [sym_val_date] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym__str_single_quotes] = ACTIONS(1292), + [sym__str_back_ticks] = ACTIONS(1292), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), + [aux_sym_env_var_token1] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1292), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1292), + }, + [310] = { + [sym__expr_parenthesized_immediate] = STATE(481), + [sym__immediate_decimal] = STATE(388), + [sym_val_variable] = STATE(481), + [sym_comment] = STATE(310), + [anon_sym_export] = ACTIONS(1530), + [anon_sym_alias] = ACTIONS(1530), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_let_DASHenv] = ACTIONS(1530), + [anon_sym_mut] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [aux_sym_cmd_identifier_token1] = ACTIONS(1530), + [aux_sym_cmd_identifier_token2] = ACTIONS(1530), + [aux_sym_cmd_identifier_token3] = ACTIONS(1530), + [aux_sym_cmd_identifier_token4] = ACTIONS(1530), + [aux_sym_cmd_identifier_token5] = ACTIONS(1530), + [aux_sym_cmd_identifier_token6] = ACTIONS(1530), + [aux_sym_cmd_identifier_token7] = ACTIONS(1530), + [aux_sym_cmd_identifier_token8] = ACTIONS(1530), + [aux_sym_cmd_identifier_token9] = ACTIONS(1530), + [aux_sym_cmd_identifier_token10] = ACTIONS(1530), + [aux_sym_cmd_identifier_token11] = ACTIONS(1530), + [aux_sym_cmd_identifier_token12] = ACTIONS(1530), + [aux_sym_cmd_identifier_token13] = ACTIONS(1530), + [aux_sym_cmd_identifier_token14] = ACTIONS(1530), + [aux_sym_cmd_identifier_token15] = ACTIONS(1530), + [aux_sym_cmd_identifier_token16] = ACTIONS(1530), + [aux_sym_cmd_identifier_token17] = ACTIONS(1530), + [aux_sym_cmd_identifier_token18] = ACTIONS(1530), + [aux_sym_cmd_identifier_token19] = ACTIONS(1530), + [aux_sym_cmd_identifier_token20] = ACTIONS(1530), + [aux_sym_cmd_identifier_token21] = ACTIONS(1530), + [aux_sym_cmd_identifier_token22] = ACTIONS(1530), + [aux_sym_cmd_identifier_token23] = ACTIONS(1530), + [aux_sym_cmd_identifier_token24] = ACTIONS(1530), + [aux_sym_cmd_identifier_token25] = ACTIONS(1530), + [aux_sym_cmd_identifier_token26] = ACTIONS(1530), + [aux_sym_cmd_identifier_token27] = ACTIONS(1530), + [aux_sym_cmd_identifier_token28] = ACTIONS(1530), + [aux_sym_cmd_identifier_token29] = ACTIONS(1530), + [aux_sym_cmd_identifier_token30] = ACTIONS(1530), + [aux_sym_cmd_identifier_token31] = ACTIONS(1530), + [aux_sym_cmd_identifier_token32] = ACTIONS(1530), + [aux_sym_cmd_identifier_token33] = ACTIONS(1530), + [aux_sym_cmd_identifier_token34] = ACTIONS(1530), + [aux_sym_cmd_identifier_token35] = ACTIONS(1530), + [aux_sym_cmd_identifier_token36] = ACTIONS(1530), + [aux_sym_cmd_identifier_token37] = ACTIONS(1530), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1530), + [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [anon_sym_def] = ACTIONS(1530), + [anon_sym_export_DASHenv] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym_module] = ACTIONS(1530), + [anon_sym_use] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_error] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_in2] = ACTIONS(1530), + [anon_sym_loop] = ACTIONS(1530), + [anon_sym_make] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_else] = ACTIONS(1530), + [anon_sym_match] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_try] = ACTIONS(1530), + [anon_sym_catch] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_source] = ACTIONS(1530), + [anon_sym_source_DASHenv] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_hide] = ACTIONS(1530), + [anon_sym_hide_DASHenv] = ACTIONS(1530), + [anon_sym_overlay] = ACTIONS(1530), + [anon_sym_as] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1534), + [anon_sym_PLUS2] = ACTIONS(1530), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [anon_sym_DOT] = ACTIONS(1536), + [aux_sym__immediate_decimal_token1] = ACTIONS(1538), + [aux_sym__immediate_decimal_token3] = ACTIONS(1538), + [aux_sym__immediate_decimal_token4] = ACTIONS(1540), + [aux_sym__immediate_decimal_token5] = ACTIONS(1542), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1530), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), [aux_sym__val_number_decimal_token2] = ACTIONS(1530), [aux_sym__val_number_decimal_token3] = ACTIONS(1530), [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(1530), [aux_sym__val_number_token2] = ACTIONS(1530), [aux_sym__val_number_token3] = ACTIONS(1530), - [sym_filesize_unit] = ACTIONS(1528), - [sym_duration_unit] = ACTIONS(1528), + [aux_sym__val_number_token4] = ACTIONS(1530), + [aux_sym__val_number_token5] = ACTIONS(1530), + [aux_sym__val_number_token6] = ACTIONS(1530), [anon_sym_DQUOTE] = ACTIONS(1530), [sym__str_single_quotes] = ACTIONS(1530), [sym__str_back_ticks] = ACTIONS(1530), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1528), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1530), + [sym__entry_separator] = ACTIONS(1544), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1544), }, - [289] = { - [sym_comment] = STATE(289), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_alias] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_let_DASHenv] = ACTIONS(1596), - [anon_sym_mut] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [aux_sym_cmd_identifier_token1] = ACTIONS(1596), - [aux_sym_cmd_identifier_token2] = ACTIONS(1596), - [aux_sym_cmd_identifier_token3] = ACTIONS(1596), - [aux_sym_cmd_identifier_token4] = ACTIONS(1596), - [aux_sym_cmd_identifier_token5] = ACTIONS(1596), - [aux_sym_cmd_identifier_token6] = ACTIONS(1596), - [aux_sym_cmd_identifier_token7] = ACTIONS(1596), - [aux_sym_cmd_identifier_token8] = ACTIONS(1596), - [aux_sym_cmd_identifier_token9] = ACTIONS(1596), - [aux_sym_cmd_identifier_token10] = ACTIONS(1596), - [aux_sym_cmd_identifier_token11] = ACTIONS(1596), - [aux_sym_cmd_identifier_token12] = ACTIONS(1596), - [aux_sym_cmd_identifier_token13] = ACTIONS(1596), - [aux_sym_cmd_identifier_token14] = ACTIONS(1596), - [aux_sym_cmd_identifier_token15] = ACTIONS(1596), - [aux_sym_cmd_identifier_token16] = ACTIONS(1596), - [aux_sym_cmd_identifier_token17] = ACTIONS(1596), - [aux_sym_cmd_identifier_token18] = ACTIONS(1596), - [aux_sym_cmd_identifier_token19] = ACTIONS(1596), - [aux_sym_cmd_identifier_token20] = ACTIONS(1596), - [aux_sym_cmd_identifier_token21] = ACTIONS(1596), - [aux_sym_cmd_identifier_token22] = ACTIONS(1596), - [aux_sym_cmd_identifier_token23] = ACTIONS(1596), - [aux_sym_cmd_identifier_token24] = ACTIONS(1596), - [aux_sym_cmd_identifier_token25] = ACTIONS(1596), - [aux_sym_cmd_identifier_token26] = ACTIONS(1596), - [aux_sym_cmd_identifier_token27] = ACTIONS(1596), - [aux_sym_cmd_identifier_token28] = ACTIONS(1596), - [aux_sym_cmd_identifier_token29] = ACTIONS(1596), - [aux_sym_cmd_identifier_token30] = ACTIONS(1596), - [aux_sym_cmd_identifier_token31] = ACTIONS(1596), - [aux_sym_cmd_identifier_token32] = ACTIONS(1596), - [aux_sym_cmd_identifier_token33] = ACTIONS(1596), - [aux_sym_cmd_identifier_token34] = ACTIONS(1596), - [aux_sym_cmd_identifier_token35] = ACTIONS(1596), - [aux_sym_cmd_identifier_token36] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1598), - [aux_sym_cmd_identifier_token38] = ACTIONS(1596), - [aux_sym_cmd_identifier_token39] = ACTIONS(1598), - [aux_sym_cmd_identifier_token40] = ACTIONS(1598), - [anon_sym_def] = ACTIONS(1596), - [anon_sym_export_DASHenv] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1598), - [anon_sym_error] = ACTIONS(1596), - [anon_sym_list] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [anon_sym_loop] = ACTIONS(1596), - [anon_sym_make] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_else] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_try] = ACTIONS(1596), - [anon_sym_catch] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_source] = ACTIONS(1596), - [anon_sym_source_DASHenv] = ACTIONS(1596), - [anon_sym_register] = ACTIONS(1596), - [anon_sym_hide] = ACTIONS(1596), - [anon_sym_hide_DASHenv] = ACTIONS(1596), - [anon_sym_overlay] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1596), - [anon_sym_as] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1598), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1598), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token3] = ACTIONS(1598), - [aux_sym__val_number_decimal_token4] = ACTIONS(1598), - [aux_sym__val_number_token1] = ACTIONS(1598), - [aux_sym__val_number_token2] = ACTIONS(1598), - [aux_sym__val_number_token3] = ACTIONS(1598), - [sym_filesize_unit] = ACTIONS(1596), - [sym_duration_unit] = ACTIONS(1596), - [anon_sym_DQUOTE] = ACTIONS(1598), - [sym__str_single_quotes] = ACTIONS(1598), - [sym__str_back_ticks] = ACTIONS(1598), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1598), - [anon_sym_PLUS] = ACTIONS(1596), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1598), + [311] = { + [sym_comment] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(1548), + [anon_sym_export] = ACTIONS(1550), + [anon_sym_alias] = ACTIONS(1550), + [anon_sym_let] = ACTIONS(1550), + [anon_sym_let_DASHenv] = ACTIONS(1550), + [anon_sym_mut] = ACTIONS(1550), + [anon_sym_const] = ACTIONS(1550), + [aux_sym_cmd_identifier_token1] = ACTIONS(1550), + [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(1550), + [aux_sym_cmd_identifier_token9] = ACTIONS(1550), + [aux_sym_cmd_identifier_token10] = ACTIONS(1548), + [aux_sym_cmd_identifier_token11] = ACTIONS(1548), + [aux_sym_cmd_identifier_token12] = ACTIONS(1550), + [aux_sym_cmd_identifier_token13] = ACTIONS(1550), + [aux_sym_cmd_identifier_token14] = ACTIONS(1550), + [aux_sym_cmd_identifier_token15] = ACTIONS(1550), + [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(1550), + [aux_sym_cmd_identifier_token35] = ACTIONS(1548), + [aux_sym_cmd_identifier_token36] = ACTIONS(1548), + [aux_sym_cmd_identifier_token37] = ACTIONS(1548), + [aux_sym_cmd_identifier_token38] = ACTIONS(1550), + [aux_sym_cmd_identifier_token39] = ACTIONS(1548), + [aux_sym_cmd_identifier_token40] = ACTIONS(1548), + [sym__newline] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_def] = ACTIONS(1550), + [anon_sym_export_DASHenv] = ACTIONS(1550), + [anon_sym_extern] = ACTIONS(1550), + [anon_sym_module] = ACTIONS(1550), + [anon_sym_use] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1550), + [anon_sym_error] = ACTIONS(1550), + [anon_sym_DASH2] = ACTIONS(1550), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_for] = ACTIONS(1550), + [anon_sym_loop] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_do] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_match] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1550), + [anon_sym_try] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(1550), + [anon_sym_source] = ACTIONS(1550), + [anon_sym_source_DASHenv] = ACTIONS(1550), + [anon_sym_register] = ACTIONS(1550), + [anon_sym_hide] = ACTIONS(1550), + [anon_sym_hide_DASHenv] = ACTIONS(1550), + [anon_sym_overlay] = ACTIONS(1550), + [anon_sym_where] = ACTIONS(1548), + [aux_sym_expr_unary_token1] = ACTIONS(1548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1548), + [anon_sym_DOT_DOT_LT] = ACTIONS(1548), + [anon_sym_null] = ACTIONS(1550), + [anon_sym_true] = ACTIONS(1550), + [anon_sym_false] = ACTIONS(1550), + [aux_sym__val_number_decimal_token1] = ACTIONS(1550), + [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), + [aux_sym__val_number_token4] = ACTIONS(1550), + [aux_sym__val_number_token5] = ACTIONS(1550), + [aux_sym__val_number_token6] = ACTIONS(1550), + [anon_sym_0b] = ACTIONS(1550), + [anon_sym_0o] = ACTIONS(1550), + [anon_sym_0x] = ACTIONS(1550), + [sym_val_date] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [sym__str_single_quotes] = ACTIONS(1548), + [sym__str_back_ticks] = ACTIONS(1548), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1548), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1548), + [aux_sym_env_var_token1] = ACTIONS(1550), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1548), }, - [290] = { - [sym_comment] = STATE(290), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1713), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_list] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_new] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1713), + [312] = { + [sym_comment] = STATE(312), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_alias] = ACTIONS(1552), + [anon_sym_let] = ACTIONS(1552), + [anon_sym_let_DASHenv] = ACTIONS(1552), + [anon_sym_mut] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [aux_sym_cmd_identifier_token1] = ACTIONS(1552), + [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(1552), + [aux_sym_cmd_identifier_token9] = ACTIONS(1552), + [aux_sym_cmd_identifier_token10] = ACTIONS(1554), + [aux_sym_cmd_identifier_token11] = ACTIONS(1554), + [aux_sym_cmd_identifier_token12] = ACTIONS(1552), + [aux_sym_cmd_identifier_token13] = ACTIONS(1552), + [aux_sym_cmd_identifier_token14] = ACTIONS(1552), + [aux_sym_cmd_identifier_token15] = ACTIONS(1552), + [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(1552), + [aux_sym_cmd_identifier_token35] = ACTIONS(1554), + [aux_sym_cmd_identifier_token36] = ACTIONS(1554), + [aux_sym_cmd_identifier_token37] = ACTIONS(1554), + [aux_sym_cmd_identifier_token38] = ACTIONS(1552), + [aux_sym_cmd_identifier_token39] = ACTIONS(1554), + [aux_sym_cmd_identifier_token40] = ACTIONS(1554), + [sym__newline] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_def] = ACTIONS(1552), + [anon_sym_export_DASHenv] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym_module] = ACTIONS(1552), + [anon_sym_use] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_error] = ACTIONS(1552), + [anon_sym_DASH2] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_loop] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_do] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_match] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_DOT_DOT] = ACTIONS(1552), + [anon_sym_try] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_source] = ACTIONS(1552), + [anon_sym_source_DASHenv] = ACTIONS(1552), + [anon_sym_register] = ACTIONS(1552), + [anon_sym_hide] = ACTIONS(1552), + [anon_sym_hide_DASHenv] = ACTIONS(1552), + [anon_sym_overlay] = ACTIONS(1552), + [anon_sym_where] = ACTIONS(1554), + [aux_sym_expr_unary_token1] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT] = ACTIONS(1554), + [anon_sym_null] = ACTIONS(1552), + [anon_sym_true] = ACTIONS(1552), + [anon_sym_false] = ACTIONS(1552), + [aux_sym__val_number_decimal_token1] = ACTIONS(1552), + [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), + [aux_sym__val_number_token4] = ACTIONS(1552), + [aux_sym__val_number_token5] = ACTIONS(1552), + [aux_sym__val_number_token6] = ACTIONS(1552), + [anon_sym_0b] = ACTIONS(1552), + [anon_sym_0o] = ACTIONS(1552), + [anon_sym_0x] = ACTIONS(1552), + [sym_val_date] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [sym__str_single_quotes] = ACTIONS(1554), + [sym__str_back_ticks] = ACTIONS(1554), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1554), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1554), + [aux_sym_env_var_token1] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1554), }, - [291] = { - [sym_comment] = STATE(291), - [aux_sym__block_body_repeat1] = STATE(263), - [ts_builtin_sym_end] = ACTIONS(1660), - [anon_sym_export] = ACTIONS(1656), - [anon_sym_alias] = ACTIONS(1656), - [anon_sym_let] = ACTIONS(1656), - [anon_sym_let_DASHenv] = ACTIONS(1656), - [anon_sym_mut] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [aux_sym_cmd_identifier_token1] = ACTIONS(1656), - [aux_sym_cmd_identifier_token2] = ACTIONS(1656), - [aux_sym_cmd_identifier_token3] = ACTIONS(1656), - [aux_sym_cmd_identifier_token4] = ACTIONS(1656), - [aux_sym_cmd_identifier_token5] = ACTIONS(1656), - [aux_sym_cmd_identifier_token6] = ACTIONS(1656), - [aux_sym_cmd_identifier_token7] = ACTIONS(1656), - [aux_sym_cmd_identifier_token8] = ACTIONS(1656), - [aux_sym_cmd_identifier_token9] = ACTIONS(1656), - [aux_sym_cmd_identifier_token10] = ACTIONS(1656), - [aux_sym_cmd_identifier_token11] = ACTIONS(1656), - [aux_sym_cmd_identifier_token12] = ACTIONS(1656), - [aux_sym_cmd_identifier_token13] = ACTIONS(1656), - [aux_sym_cmd_identifier_token14] = ACTIONS(1656), - [aux_sym_cmd_identifier_token15] = ACTIONS(1656), - [aux_sym_cmd_identifier_token16] = ACTIONS(1656), - [aux_sym_cmd_identifier_token17] = ACTIONS(1656), - [aux_sym_cmd_identifier_token18] = ACTIONS(1656), - [aux_sym_cmd_identifier_token19] = ACTIONS(1656), - [aux_sym_cmd_identifier_token20] = ACTIONS(1656), - [aux_sym_cmd_identifier_token21] = ACTIONS(1656), - [aux_sym_cmd_identifier_token22] = ACTIONS(1656), - [aux_sym_cmd_identifier_token23] = ACTIONS(1656), - [aux_sym_cmd_identifier_token24] = ACTIONS(1658), - [aux_sym_cmd_identifier_token25] = ACTIONS(1656), - [aux_sym_cmd_identifier_token26] = ACTIONS(1658), - [aux_sym_cmd_identifier_token27] = ACTIONS(1656), - [aux_sym_cmd_identifier_token28] = ACTIONS(1656), - [aux_sym_cmd_identifier_token29] = ACTIONS(1656), - [aux_sym_cmd_identifier_token30] = ACTIONS(1656), - [aux_sym_cmd_identifier_token31] = ACTIONS(1658), - [aux_sym_cmd_identifier_token32] = ACTIONS(1658), - [aux_sym_cmd_identifier_token33] = ACTIONS(1658), - [aux_sym_cmd_identifier_token34] = ACTIONS(1658), - [aux_sym_cmd_identifier_token35] = ACTIONS(1658), - [aux_sym_cmd_identifier_token36] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1658), - [aux_sym_cmd_identifier_token38] = ACTIONS(1656), - [aux_sym_cmd_identifier_token39] = ACTIONS(1658), - [aux_sym_cmd_identifier_token40] = ACTIONS(1658), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1656), - [anon_sym_export_DASHenv] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1656), - [anon_sym_use] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_error] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_loop] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_match] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_try] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_source] = ACTIONS(1656), - [anon_sym_source_DASHenv] = ACTIONS(1656), - [anon_sym_register] = ACTIONS(1656), - [anon_sym_hide] = ACTIONS(1656), - [anon_sym_hide_DASHenv] = ACTIONS(1656), - [anon_sym_overlay] = ACTIONS(1656), - [anon_sym_where] = ACTIONS(1658), - [aux_sym_expr_unary_token1] = ACTIONS(1658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), - [anon_sym_DOT_DOT_LT] = ACTIONS(1658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1656), - [aux_sym__val_number_decimal_token2] = ACTIONS(1658), - [aux_sym__val_number_decimal_token3] = ACTIONS(1658), - [aux_sym__val_number_decimal_token4] = ACTIONS(1658), - [aux_sym__val_number_token1] = ACTIONS(1658), - [aux_sym__val_number_token2] = ACTIONS(1658), - [aux_sym__val_number_token3] = ACTIONS(1658), - [anon_sym_0b] = ACTIONS(1656), - [anon_sym_0o] = ACTIONS(1656), - [anon_sym_0x] = ACTIONS(1656), - [sym_val_date] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [sym__str_single_quotes] = ACTIONS(1658), - [sym__str_back_ticks] = ACTIONS(1658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), - [aux_sym_env_var_token1] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1658), + [313] = { + [sym_comment] = STATE(313), + [aux_sym_shebang_repeat1] = STATE(229), + [anon_sym_export] = ACTIONS(1559), + [anon_sym_alias] = ACTIONS(1559), + [anon_sym_let] = ACTIONS(1559), + [anon_sym_let_DASHenv] = ACTIONS(1559), + [anon_sym_mut] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1559), + [aux_sym_cmd_identifier_token1] = ACTIONS(1559), + [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(1559), + [aux_sym_cmd_identifier_token9] = ACTIONS(1559), + [aux_sym_cmd_identifier_token10] = ACTIONS(1561), + [aux_sym_cmd_identifier_token11] = ACTIONS(1561), + [aux_sym_cmd_identifier_token12] = ACTIONS(1559), + [aux_sym_cmd_identifier_token13] = ACTIONS(1559), + [aux_sym_cmd_identifier_token14] = ACTIONS(1559), + [aux_sym_cmd_identifier_token15] = ACTIONS(1559), + [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(1559), + [aux_sym_cmd_identifier_token35] = ACTIONS(1561), + [aux_sym_cmd_identifier_token36] = ACTIONS(1561), + [aux_sym_cmd_identifier_token37] = ACTIONS(1561), + [aux_sym_cmd_identifier_token38] = ACTIONS(1559), + [aux_sym_cmd_identifier_token39] = ACTIONS(1561), + [aux_sym_cmd_identifier_token40] = ACTIONS(1561), + [sym__newline] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_def] = ACTIONS(1559), + [anon_sym_export_DASHenv] = ACTIONS(1559), + [anon_sym_extern] = ACTIONS(1559), + [anon_sym_module] = ACTIONS(1559), + [anon_sym_use] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1561), + [anon_sym_DOLLAR] = ACTIONS(1559), + [anon_sym_error] = ACTIONS(1559), + [anon_sym_DASH2] = ACTIONS(1559), + [anon_sym_break] = ACTIONS(1559), + [anon_sym_continue] = ACTIONS(1559), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_loop] = ACTIONS(1559), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1559), + [anon_sym_match] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1559), + [anon_sym_try] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1559), + [anon_sym_source] = ACTIONS(1559), + [anon_sym_source_DASHenv] = ACTIONS(1559), + [anon_sym_register] = ACTIONS(1559), + [anon_sym_hide] = ACTIONS(1559), + [anon_sym_hide_DASHenv] = ACTIONS(1559), + [anon_sym_overlay] = ACTIONS(1559), + [anon_sym_where] = ACTIONS(1561), + [aux_sym_expr_unary_token1] = ACTIONS(1561), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), + [anon_sym_DOT_DOT_LT] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1559), + [anon_sym_false] = ACTIONS(1559), + [aux_sym__val_number_decimal_token1] = ACTIONS(1559), + [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), + [aux_sym__val_number_token4] = ACTIONS(1559), + [aux_sym__val_number_token5] = ACTIONS(1559), + [aux_sym__val_number_token6] = ACTIONS(1559), + [anon_sym_0b] = ACTIONS(1559), + [anon_sym_0o] = ACTIONS(1559), + [anon_sym_0x] = ACTIONS(1559), + [sym_val_date] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym__str_single_quotes] = ACTIONS(1561), + [sym__str_back_ticks] = ACTIONS(1561), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1561), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1561), + [aux_sym_env_var_token1] = ACTIONS(1559), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1561), }, - [292] = { - [sym_comment] = STATE(292), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), + [314] = { + [sym_comment] = STATE(314), + [aux_sym__block_body_repeat1] = STATE(223), + [anon_sym_export] = ACTIONS(1453), + [anon_sym_alias] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_let_DASHenv] = ACTIONS(1453), + [anon_sym_mut] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [aux_sym_cmd_identifier_token1] = ACTIONS(1453), + [aux_sym_cmd_identifier_token2] = ACTIONS(1455), + [aux_sym_cmd_identifier_token3] = ACTIONS(1455), + [aux_sym_cmd_identifier_token4] = ACTIONS(1455), + [aux_sym_cmd_identifier_token5] = ACTIONS(1455), + [aux_sym_cmd_identifier_token6] = ACTIONS(1455), + [aux_sym_cmd_identifier_token7] = ACTIONS(1455), + [aux_sym_cmd_identifier_token8] = ACTIONS(1453), + [aux_sym_cmd_identifier_token9] = ACTIONS(1453), + [aux_sym_cmd_identifier_token10] = ACTIONS(1455), + [aux_sym_cmd_identifier_token11] = ACTIONS(1455), + [aux_sym_cmd_identifier_token12] = ACTIONS(1453), + [aux_sym_cmd_identifier_token13] = ACTIONS(1453), + [aux_sym_cmd_identifier_token14] = ACTIONS(1453), + [aux_sym_cmd_identifier_token15] = ACTIONS(1453), + [aux_sym_cmd_identifier_token16] = ACTIONS(1455), + [aux_sym_cmd_identifier_token17] = ACTIONS(1455), + [aux_sym_cmd_identifier_token18] = ACTIONS(1455), + [aux_sym_cmd_identifier_token19] = ACTIONS(1455), + [aux_sym_cmd_identifier_token20] = ACTIONS(1455), + [aux_sym_cmd_identifier_token21] = ACTIONS(1455), + [aux_sym_cmd_identifier_token22] = ACTIONS(1455), + [aux_sym_cmd_identifier_token23] = ACTIONS(1455), + [aux_sym_cmd_identifier_token24] = ACTIONS(1455), + [aux_sym_cmd_identifier_token25] = ACTIONS(1455), + [aux_sym_cmd_identifier_token26] = ACTIONS(1455), + [aux_sym_cmd_identifier_token27] = ACTIONS(1455), + [aux_sym_cmd_identifier_token28] = ACTIONS(1455), + [aux_sym_cmd_identifier_token29] = ACTIONS(1455), + [aux_sym_cmd_identifier_token30] = ACTIONS(1455), + [aux_sym_cmd_identifier_token31] = ACTIONS(1455), + [aux_sym_cmd_identifier_token32] = ACTIONS(1455), + [aux_sym_cmd_identifier_token33] = ACTIONS(1455), + [aux_sym_cmd_identifier_token34] = ACTIONS(1453), + [aux_sym_cmd_identifier_token35] = ACTIONS(1455), + [aux_sym_cmd_identifier_token36] = ACTIONS(1455), + [aux_sym_cmd_identifier_token37] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1453), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_export_DASHenv] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1453), + [anon_sym_module] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_error] = ACTIONS(1453), + [anon_sym_DASH2] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_loop] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_source] = ACTIONS(1453), + [anon_sym_source_DASHenv] = ACTIONS(1453), + [anon_sym_register] = ACTIONS(1453), + [anon_sym_hide] = ACTIONS(1453), + [anon_sym_hide_DASHenv] = ACTIONS(1453), + [anon_sym_overlay] = ACTIONS(1453), + [anon_sym_where] = ACTIONS(1455), + [aux_sym_expr_unary_token1] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [aux_sym__val_number_decimal_token1] = ACTIONS(1453), + [aux_sym__val_number_decimal_token2] = ACTIONS(1455), + [aux_sym__val_number_decimal_token3] = ACTIONS(1455), + [aux_sym__val_number_decimal_token4] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1453), + [aux_sym__val_number_token5] = ACTIONS(1453), + [aux_sym__val_number_token6] = ACTIONS(1453), + [anon_sym_0b] = ACTIONS(1453), + [anon_sym_0o] = ACTIONS(1453), + [anon_sym_0x] = ACTIONS(1453), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [aux_sym_env_var_token1] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), + }, + [315] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if] = STATE(4895), + [sym_block] = STATE(4896), + [sym__expression] = STATE(4896), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3969), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1207), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(4896), + [sym_comment] = STATE(315), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [316] = { + [sym__expr_parenthesized_immediate] = STATE(663), + [sym__immediate_decimal] = STATE(537), + [sym_val_variable] = STATE(663), + [sym_comment] = STATE(316), + [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), + [aux_sym_cmd_identifier_token37] = 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(1567), + [anon_sym_error] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in2] = 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_as] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1569), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1565), + [aux_sym__immediate_decimal_token1] = ACTIONS(1571), + [aux_sym__immediate_decimal_token3] = ACTIONS(1571), + [aux_sym__immediate_decimal_token4] = ACTIONS(1573), + [aux_sym__immediate_decimal_token5] = ACTIONS(1575), + [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), + [aux_sym__val_number_token4] = ACTIONS(1565), + [aux_sym__val_number_token5] = ACTIONS(1565), + [aux_sym__val_number_token6] = 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(1577), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), + [sym_raw_string_begin] = ACTIONS(1577), }, - [293] = { - [sym_comment] = STATE(293), - [aux_sym_shebang_repeat1] = STATE(321), - [aux_sym__parenthesized_body_repeat1] = STATE(297), - [anon_sym_export] = ACTIONS(1761), - [anon_sym_alias] = ACTIONS(1761), - [anon_sym_let] = ACTIONS(1761), - [anon_sym_let_DASHenv] = ACTIONS(1761), - [anon_sym_mut] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1761), - [aux_sym_cmd_identifier_token1] = ACTIONS(1761), - [aux_sym_cmd_identifier_token2] = ACTIONS(1761), - [aux_sym_cmd_identifier_token3] = ACTIONS(1761), - [aux_sym_cmd_identifier_token4] = ACTIONS(1761), - [aux_sym_cmd_identifier_token5] = ACTIONS(1761), - [aux_sym_cmd_identifier_token6] = ACTIONS(1761), - [aux_sym_cmd_identifier_token7] = ACTIONS(1761), - [aux_sym_cmd_identifier_token8] = ACTIONS(1761), - [aux_sym_cmd_identifier_token9] = ACTIONS(1761), - [aux_sym_cmd_identifier_token10] = ACTIONS(1761), - [aux_sym_cmd_identifier_token11] = ACTIONS(1761), - [aux_sym_cmd_identifier_token12] = ACTIONS(1761), - [aux_sym_cmd_identifier_token13] = ACTIONS(1761), - [aux_sym_cmd_identifier_token14] = ACTIONS(1761), - [aux_sym_cmd_identifier_token15] = ACTIONS(1761), - [aux_sym_cmd_identifier_token16] = ACTIONS(1761), - [aux_sym_cmd_identifier_token17] = ACTIONS(1761), - [aux_sym_cmd_identifier_token18] = ACTIONS(1761), - [aux_sym_cmd_identifier_token19] = ACTIONS(1761), - [aux_sym_cmd_identifier_token20] = ACTIONS(1761), - [aux_sym_cmd_identifier_token21] = ACTIONS(1761), - [aux_sym_cmd_identifier_token22] = ACTIONS(1761), - [aux_sym_cmd_identifier_token23] = ACTIONS(1761), + [317] = { + [sym__expr_parenthesized_immediate] = STATE(511), + [sym__immediate_decimal] = STATE(512), + [sym_val_variable] = STATE(511), + [sym_comment] = STATE(317), + [anon_sym_export] = ACTIONS(1581), + [anon_sym_alias] = ACTIONS(1581), + [anon_sym_let] = ACTIONS(1581), + [anon_sym_let_DASHenv] = ACTIONS(1581), + [anon_sym_mut] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [aux_sym_cmd_identifier_token1] = ACTIONS(1581), + [aux_sym_cmd_identifier_token2] = ACTIONS(1581), + [aux_sym_cmd_identifier_token3] = ACTIONS(1581), + [aux_sym_cmd_identifier_token4] = ACTIONS(1581), + [aux_sym_cmd_identifier_token5] = ACTIONS(1581), + [aux_sym_cmd_identifier_token6] = ACTIONS(1581), + [aux_sym_cmd_identifier_token7] = ACTIONS(1581), + [aux_sym_cmd_identifier_token8] = ACTIONS(1581), + [aux_sym_cmd_identifier_token9] = ACTIONS(1581), + [aux_sym_cmd_identifier_token10] = ACTIONS(1581), + [aux_sym_cmd_identifier_token11] = ACTIONS(1581), + [aux_sym_cmd_identifier_token12] = ACTIONS(1581), + [aux_sym_cmd_identifier_token13] = ACTIONS(1581), + [aux_sym_cmd_identifier_token14] = ACTIONS(1581), + [aux_sym_cmd_identifier_token15] = ACTIONS(1581), + [aux_sym_cmd_identifier_token16] = ACTIONS(1581), + [aux_sym_cmd_identifier_token17] = ACTIONS(1581), + [aux_sym_cmd_identifier_token18] = ACTIONS(1581), + [aux_sym_cmd_identifier_token19] = ACTIONS(1581), + [aux_sym_cmd_identifier_token20] = ACTIONS(1581), + [aux_sym_cmd_identifier_token21] = ACTIONS(1581), + [aux_sym_cmd_identifier_token22] = ACTIONS(1581), + [aux_sym_cmd_identifier_token23] = ACTIONS(1581), + [aux_sym_cmd_identifier_token24] = ACTIONS(1581), + [aux_sym_cmd_identifier_token25] = ACTIONS(1581), + [aux_sym_cmd_identifier_token26] = ACTIONS(1581), + [aux_sym_cmd_identifier_token27] = ACTIONS(1581), + [aux_sym_cmd_identifier_token28] = ACTIONS(1581), + [aux_sym_cmd_identifier_token29] = ACTIONS(1581), + [aux_sym_cmd_identifier_token30] = ACTIONS(1581), + [aux_sym_cmd_identifier_token31] = ACTIONS(1581), + [aux_sym_cmd_identifier_token32] = ACTIONS(1581), + [aux_sym_cmd_identifier_token33] = ACTIONS(1581), + [aux_sym_cmd_identifier_token34] = ACTIONS(1581), + [aux_sym_cmd_identifier_token35] = ACTIONS(1581), + [aux_sym_cmd_identifier_token36] = ACTIONS(1581), + [aux_sym_cmd_identifier_token37] = ACTIONS(1581), + [aux_sym_cmd_identifier_token38] = ACTIONS(1581), + [aux_sym_cmd_identifier_token39] = ACTIONS(1581), + [aux_sym_cmd_identifier_token40] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1581), + [anon_sym_export_DASHenv] = ACTIONS(1581), + [anon_sym_extern] = ACTIONS(1581), + [anon_sym_module] = ACTIONS(1581), + [anon_sym_use] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_error] = ACTIONS(1581), + [anon_sym_DASH2] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_in2] = ACTIONS(1581), + [anon_sym_loop] = ACTIONS(1581), + [anon_sym_make] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_catch] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_source] = ACTIONS(1581), + [anon_sym_source_DASHenv] = ACTIONS(1581), + [anon_sym_register] = ACTIONS(1581), + [anon_sym_hide] = ACTIONS(1581), + [anon_sym_hide_DASHenv] = ACTIONS(1581), + [anon_sym_overlay] = ACTIONS(1581), + [anon_sym_as] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(1534), + [anon_sym_PLUS2] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1583), + [aux_sym__immediate_decimal_token1] = ACTIONS(1585), + [aux_sym__immediate_decimal_token3] = ACTIONS(1585), + [aux_sym__immediate_decimal_token4] = ACTIONS(1587), + [aux_sym__immediate_decimal_token5] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1581), + [aux_sym__val_number_decimal_token1] = ACTIONS(1581), + [aux_sym__val_number_decimal_token2] = ACTIONS(1581), + [aux_sym__val_number_decimal_token3] = ACTIONS(1581), + [aux_sym__val_number_decimal_token4] = ACTIONS(1581), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1581), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1581), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1591), + }, + [318] = { + [sym_cmd_identifier] = STATE(4748), + [sym__expression] = STATE(3952), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3961), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(2113), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(5128), + [sym_comment] = STATE(318), + [aux_sym_pipe_element_repeat2] = STATE(1180), + [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(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [319] = { + [sym_cmd_identifier] = STATE(4636), + [sym__expression_parenthesized] = STATE(3932), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5065), + [sym_comment] = STATE(319), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1189), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [320] = { + [sym_comment] = STATE(320), + [anon_sym_export] = ACTIONS(1472), + [anon_sym_alias] = ACTIONS(1472), + [anon_sym_let] = ACTIONS(1472), + [anon_sym_let_DASHenv] = ACTIONS(1472), + [anon_sym_mut] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [aux_sym_cmd_identifier_token1] = ACTIONS(1472), + [aux_sym_cmd_identifier_token2] = ACTIONS(1474), + [aux_sym_cmd_identifier_token3] = ACTIONS(1474), + [aux_sym_cmd_identifier_token4] = ACTIONS(1474), + [aux_sym_cmd_identifier_token5] = ACTIONS(1474), + [aux_sym_cmd_identifier_token6] = ACTIONS(1474), + [aux_sym_cmd_identifier_token7] = ACTIONS(1474), + [aux_sym_cmd_identifier_token8] = ACTIONS(1472), + [aux_sym_cmd_identifier_token9] = ACTIONS(1472), + [aux_sym_cmd_identifier_token10] = ACTIONS(1474), + [aux_sym_cmd_identifier_token11] = ACTIONS(1474), + [aux_sym_cmd_identifier_token12] = ACTIONS(1472), + [aux_sym_cmd_identifier_token13] = ACTIONS(1472), + [aux_sym_cmd_identifier_token14] = ACTIONS(1472), + [aux_sym_cmd_identifier_token15] = ACTIONS(1472), + [aux_sym_cmd_identifier_token16] = ACTIONS(1474), + [aux_sym_cmd_identifier_token17] = ACTIONS(1474), + [aux_sym_cmd_identifier_token18] = ACTIONS(1474), + [aux_sym_cmd_identifier_token19] = ACTIONS(1474), + [aux_sym_cmd_identifier_token20] = ACTIONS(1474), + [aux_sym_cmd_identifier_token21] = ACTIONS(1474), + [aux_sym_cmd_identifier_token22] = ACTIONS(1474), + [aux_sym_cmd_identifier_token23] = ACTIONS(1474), + [aux_sym_cmd_identifier_token24] = ACTIONS(1474), + [aux_sym_cmd_identifier_token25] = ACTIONS(1474), + [aux_sym_cmd_identifier_token26] = ACTIONS(1474), + [aux_sym_cmd_identifier_token27] = ACTIONS(1474), + [aux_sym_cmd_identifier_token28] = ACTIONS(1474), + [aux_sym_cmd_identifier_token29] = ACTIONS(1474), + [aux_sym_cmd_identifier_token30] = ACTIONS(1474), + [aux_sym_cmd_identifier_token31] = ACTIONS(1474), + [aux_sym_cmd_identifier_token32] = ACTIONS(1474), + [aux_sym_cmd_identifier_token33] = ACTIONS(1474), + [aux_sym_cmd_identifier_token34] = ACTIONS(1472), + [aux_sym_cmd_identifier_token35] = ACTIONS(1474), + [aux_sym_cmd_identifier_token36] = ACTIONS(1474), + [aux_sym_cmd_identifier_token37] = ACTIONS(1474), + [aux_sym_cmd_identifier_token38] = ACTIONS(1472), + [aux_sym_cmd_identifier_token39] = ACTIONS(1474), + [aux_sym_cmd_identifier_token40] = ACTIONS(1474), + [sym__newline] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_def] = ACTIONS(1472), + [anon_sym_export_DASHenv] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym_module] = ACTIONS(1472), + [anon_sym_use] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_error] = ACTIONS(1472), + [anon_sym_DASH2] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_loop] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(1472), + [anon_sym_try] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_source] = ACTIONS(1472), + [anon_sym_source_DASHenv] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_hide] = ACTIONS(1472), + [anon_sym_hide_DASHenv] = ACTIONS(1472), + [anon_sym_overlay] = ACTIONS(1472), + [anon_sym_where] = ACTIONS(1474), + [aux_sym_expr_unary_token1] = ACTIONS(1474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1474), + [anon_sym_DOT_DOT_LT] = ACTIONS(1474), + [anon_sym_null] = ACTIONS(1472), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1472), + [aux_sym__val_number_decimal_token2] = ACTIONS(1474), + [aux_sym__val_number_decimal_token3] = ACTIONS(1474), + [aux_sym__val_number_decimal_token4] = ACTIONS(1474), + [aux_sym__val_number_token1] = ACTIONS(1474), + [aux_sym__val_number_token2] = ACTIONS(1474), + [aux_sym__val_number_token3] = ACTIONS(1474), + [aux_sym__val_number_token4] = ACTIONS(1472), + [aux_sym__val_number_token5] = ACTIONS(1472), + [aux_sym__val_number_token6] = ACTIONS(1472), + [anon_sym_0b] = ACTIONS(1472), + [anon_sym_0o] = ACTIONS(1472), + [anon_sym_0x] = ACTIONS(1472), + [sym_val_date] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym__str_single_quotes] = ACTIONS(1474), + [sym__str_back_ticks] = ACTIONS(1474), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1474), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1474), + [aux_sym_env_var_token1] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1474), + }, + [321] = { + [sym_comment] = STATE(321), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_alias] = ACTIONS(1552), + [anon_sym_let] = ACTIONS(1552), + [anon_sym_let_DASHenv] = ACTIONS(1552), + [anon_sym_mut] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [aux_sym_cmd_identifier_token1] = ACTIONS(1552), + [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(1552), + [aux_sym_cmd_identifier_token9] = ACTIONS(1552), + [aux_sym_cmd_identifier_token10] = ACTIONS(1554), + [aux_sym_cmd_identifier_token11] = ACTIONS(1554), + [aux_sym_cmd_identifier_token12] = ACTIONS(1552), + [aux_sym_cmd_identifier_token13] = ACTIONS(1552), + [aux_sym_cmd_identifier_token14] = ACTIONS(1552), + [aux_sym_cmd_identifier_token15] = ACTIONS(1552), + [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(1552), + [aux_sym_cmd_identifier_token35] = ACTIONS(1554), + [aux_sym_cmd_identifier_token36] = ACTIONS(1554), + [aux_sym_cmd_identifier_token37] = ACTIONS(1554), + [aux_sym_cmd_identifier_token38] = ACTIONS(1552), + [aux_sym_cmd_identifier_token39] = ACTIONS(1554), + [aux_sym_cmd_identifier_token40] = ACTIONS(1554), + [sym__newline] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_def] = ACTIONS(1552), + [anon_sym_export_DASHenv] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym_module] = ACTIONS(1552), + [anon_sym_use] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_error] = ACTIONS(1552), + [anon_sym_DASH2] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_loop] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_do] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_match] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_DOT_DOT] = ACTIONS(1552), + [anon_sym_try] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_source] = ACTIONS(1552), + [anon_sym_source_DASHenv] = ACTIONS(1552), + [anon_sym_register] = ACTIONS(1552), + [anon_sym_hide] = ACTIONS(1552), + [anon_sym_hide_DASHenv] = ACTIONS(1552), + [anon_sym_overlay] = ACTIONS(1552), + [anon_sym_where] = ACTIONS(1554), + [aux_sym_expr_unary_token1] = ACTIONS(1554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT] = ACTIONS(1554), + [anon_sym_null] = ACTIONS(1552), + [anon_sym_true] = ACTIONS(1552), + [anon_sym_false] = ACTIONS(1552), + [aux_sym__val_number_decimal_token1] = ACTIONS(1552), + [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), + [aux_sym__val_number_token4] = ACTIONS(1552), + [aux_sym__val_number_token5] = ACTIONS(1552), + [aux_sym__val_number_token6] = ACTIONS(1552), + [anon_sym_0b] = ACTIONS(1552), + [anon_sym_0o] = ACTIONS(1552), + [anon_sym_0x] = ACTIONS(1552), + [sym_val_date] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [sym__str_single_quotes] = ACTIONS(1554), + [sym__str_back_ticks] = ACTIONS(1554), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1554), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1554), + [aux_sym_env_var_token1] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1554), + }, + [322] = { + [sym__expr_parenthesized_immediate] = STATE(684), + [sym__immediate_decimal] = STATE(518), + [sym_val_variable] = STATE(684), + [sym_comment] = STATE(322), + [anon_sym_export] = ACTIONS(1530), + [anon_sym_alias] = ACTIONS(1530), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_let_DASHenv] = ACTIONS(1530), + [anon_sym_mut] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [aux_sym_cmd_identifier_token1] = ACTIONS(1530), + [aux_sym_cmd_identifier_token2] = ACTIONS(1530), + [aux_sym_cmd_identifier_token3] = ACTIONS(1530), + [aux_sym_cmd_identifier_token4] = ACTIONS(1530), + [aux_sym_cmd_identifier_token5] = ACTIONS(1530), + [aux_sym_cmd_identifier_token6] = ACTIONS(1530), + [aux_sym_cmd_identifier_token7] = ACTIONS(1530), + [aux_sym_cmd_identifier_token8] = ACTIONS(1530), + [aux_sym_cmd_identifier_token9] = ACTIONS(1530), + [aux_sym_cmd_identifier_token10] = ACTIONS(1530), + [aux_sym_cmd_identifier_token11] = ACTIONS(1530), + [aux_sym_cmd_identifier_token12] = ACTIONS(1530), + [aux_sym_cmd_identifier_token13] = ACTIONS(1530), + [aux_sym_cmd_identifier_token14] = ACTIONS(1530), + [aux_sym_cmd_identifier_token15] = ACTIONS(1530), + [aux_sym_cmd_identifier_token16] = ACTIONS(1530), + [aux_sym_cmd_identifier_token17] = ACTIONS(1530), + [aux_sym_cmd_identifier_token18] = ACTIONS(1530), + [aux_sym_cmd_identifier_token19] = ACTIONS(1530), + [aux_sym_cmd_identifier_token20] = ACTIONS(1530), + [aux_sym_cmd_identifier_token21] = ACTIONS(1530), + [aux_sym_cmd_identifier_token22] = ACTIONS(1530), + [aux_sym_cmd_identifier_token23] = ACTIONS(1530), + [aux_sym_cmd_identifier_token24] = ACTIONS(1530), + [aux_sym_cmd_identifier_token25] = ACTIONS(1530), + [aux_sym_cmd_identifier_token26] = ACTIONS(1530), + [aux_sym_cmd_identifier_token27] = ACTIONS(1530), + [aux_sym_cmd_identifier_token28] = ACTIONS(1530), + [aux_sym_cmd_identifier_token29] = ACTIONS(1530), + [aux_sym_cmd_identifier_token30] = ACTIONS(1530), + [aux_sym_cmd_identifier_token31] = ACTIONS(1530), + [aux_sym_cmd_identifier_token32] = ACTIONS(1530), + [aux_sym_cmd_identifier_token33] = ACTIONS(1530), + [aux_sym_cmd_identifier_token34] = ACTIONS(1530), + [aux_sym_cmd_identifier_token35] = ACTIONS(1530), + [aux_sym_cmd_identifier_token36] = ACTIONS(1530), + [aux_sym_cmd_identifier_token37] = ACTIONS(1530), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1530), + [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [anon_sym_def] = ACTIONS(1530), + [anon_sym_export_DASHenv] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym_module] = ACTIONS(1530), + [anon_sym_use] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1567), + [anon_sym_error] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_in2] = ACTIONS(1530), + [anon_sym_loop] = ACTIONS(1530), + [anon_sym_make] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_else] = ACTIONS(1530), + [anon_sym_match] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_try] = ACTIONS(1530), + [anon_sym_catch] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_source] = ACTIONS(1530), + [anon_sym_source_DASHenv] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_hide] = ACTIONS(1530), + [anon_sym_hide_DASHenv] = ACTIONS(1530), + [anon_sym_overlay] = ACTIONS(1530), + [anon_sym_as] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1569), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(1571), + [aux_sym__immediate_decimal_token3] = ACTIONS(1571), + [aux_sym__immediate_decimal_token4] = ACTIONS(1573), + [aux_sym__immediate_decimal_token5] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1530), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1530), + [aux_sym__val_number_token2] = ACTIONS(1530), + [aux_sym__val_number_token3] = ACTIONS(1530), + [aux_sym__val_number_token4] = ACTIONS(1530), + [aux_sym__val_number_token5] = ACTIONS(1530), + [aux_sym__val_number_token6] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym__str_single_quotes] = ACTIONS(1530), + [sym__str_back_ticks] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1530), + [sym__entry_separator] = ACTIONS(1544), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1544), + }, + [323] = { + [sym__expr_parenthesized_immediate] = STATE(542), + [sym__immediate_decimal] = STATE(408), + [sym_val_variable] = STATE(542), + [sym_comment] = STATE(323), + [anon_sym_export] = ACTIONS(1530), + [anon_sym_alias] = ACTIONS(1530), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_let_DASHenv] = ACTIONS(1530), + [anon_sym_mut] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [aux_sym_cmd_identifier_token1] = ACTIONS(1530), + [aux_sym_cmd_identifier_token2] = ACTIONS(1544), + [aux_sym_cmd_identifier_token3] = ACTIONS(1544), + [aux_sym_cmd_identifier_token4] = ACTIONS(1544), + [aux_sym_cmd_identifier_token5] = ACTIONS(1544), + [aux_sym_cmd_identifier_token6] = ACTIONS(1544), + [aux_sym_cmd_identifier_token7] = ACTIONS(1544), + [aux_sym_cmd_identifier_token8] = ACTIONS(1530), + [aux_sym_cmd_identifier_token9] = ACTIONS(1530), + [aux_sym_cmd_identifier_token10] = ACTIONS(1544), + [aux_sym_cmd_identifier_token11] = ACTIONS(1544), + [aux_sym_cmd_identifier_token12] = ACTIONS(1530), + [aux_sym_cmd_identifier_token13] = ACTIONS(1530), + [aux_sym_cmd_identifier_token14] = ACTIONS(1530), + [aux_sym_cmd_identifier_token15] = ACTIONS(1530), + [aux_sym_cmd_identifier_token16] = ACTIONS(1544), + [aux_sym_cmd_identifier_token17] = ACTIONS(1544), + [aux_sym_cmd_identifier_token18] = ACTIONS(1544), + [aux_sym_cmd_identifier_token19] = ACTIONS(1544), + [aux_sym_cmd_identifier_token20] = ACTIONS(1544), + [aux_sym_cmd_identifier_token21] = ACTIONS(1544), + [aux_sym_cmd_identifier_token22] = ACTIONS(1544), + [aux_sym_cmd_identifier_token23] = ACTIONS(1544), + [aux_sym_cmd_identifier_token24] = ACTIONS(1544), + [aux_sym_cmd_identifier_token25] = ACTIONS(1544), + [aux_sym_cmd_identifier_token26] = ACTIONS(1544), + [aux_sym_cmd_identifier_token27] = ACTIONS(1544), + [aux_sym_cmd_identifier_token28] = ACTIONS(1544), + [aux_sym_cmd_identifier_token29] = ACTIONS(1544), + [aux_sym_cmd_identifier_token30] = ACTIONS(1544), + [aux_sym_cmd_identifier_token31] = ACTIONS(1544), + [aux_sym_cmd_identifier_token32] = ACTIONS(1544), + [aux_sym_cmd_identifier_token33] = ACTIONS(1544), + [aux_sym_cmd_identifier_token34] = ACTIONS(1530), + [aux_sym_cmd_identifier_token35] = ACTIONS(1544), + [aux_sym_cmd_identifier_token36] = ACTIONS(1544), + [aux_sym_cmd_identifier_token37] = ACTIONS(1544), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1544), + [aux_sym_cmd_identifier_token40] = ACTIONS(1544), + [anon_sym_def] = ACTIONS(1530), + [anon_sym_export_DASHenv] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym_module] = ACTIONS(1530), + [anon_sym_use] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1593), + [anon_sym_error] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_in2] = ACTIONS(1530), + [anon_sym_loop] = ACTIONS(1530), + [anon_sym_make] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_else] = ACTIONS(1530), + [anon_sym_match] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_try] = ACTIONS(1530), + [anon_sym_catch] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_source] = ACTIONS(1530), + [anon_sym_source_DASHenv] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_hide] = ACTIONS(1530), + [anon_sym_hide_DASHenv] = ACTIONS(1530), + [anon_sym_overlay] = ACTIONS(1530), + [anon_sym_as] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1595), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1544), + [anon_sym_DOT] = ACTIONS(1597), + [aux_sym__immediate_decimal_token1] = ACTIONS(1599), + [aux_sym__immediate_decimal_token3] = ACTIONS(1601), + [aux_sym__immediate_decimal_token4] = ACTIONS(1603), + [aux_sym__immediate_decimal_token5] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1544), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1544), + [aux_sym__val_number_token2] = ACTIONS(1544), + [aux_sym__val_number_token3] = ACTIONS(1544), + [aux_sym__val_number_token4] = ACTIONS(1530), + [aux_sym__val_number_token5] = ACTIONS(1530), + [aux_sym__val_number_token6] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1544), + [sym__str_single_quotes] = ACTIONS(1544), + [sym__str_back_ticks] = ACTIONS(1544), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1544), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1544), + }, + [324] = { + [sym_comment] = STATE(324), + [anon_sym_export] = ACTIONS(1607), + [anon_sym_alias] = ACTIONS(1607), + [anon_sym_let] = ACTIONS(1607), + [anon_sym_let_DASHenv] = ACTIONS(1607), + [anon_sym_mut] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [aux_sym_cmd_identifier_token1] = ACTIONS(1607), + [aux_sym_cmd_identifier_token2] = ACTIONS(1607), + [aux_sym_cmd_identifier_token3] = ACTIONS(1607), + [aux_sym_cmd_identifier_token4] = ACTIONS(1607), + [aux_sym_cmd_identifier_token5] = ACTIONS(1607), + [aux_sym_cmd_identifier_token6] = ACTIONS(1607), + [aux_sym_cmd_identifier_token7] = ACTIONS(1607), + [aux_sym_cmd_identifier_token8] = ACTIONS(1607), + [aux_sym_cmd_identifier_token9] = ACTIONS(1607), + [aux_sym_cmd_identifier_token10] = ACTIONS(1607), + [aux_sym_cmd_identifier_token11] = ACTIONS(1607), + [aux_sym_cmd_identifier_token12] = ACTIONS(1607), + [aux_sym_cmd_identifier_token13] = ACTIONS(1607), + [aux_sym_cmd_identifier_token14] = ACTIONS(1607), + [aux_sym_cmd_identifier_token15] = ACTIONS(1607), + [aux_sym_cmd_identifier_token16] = ACTIONS(1607), + [aux_sym_cmd_identifier_token17] = ACTIONS(1607), + [aux_sym_cmd_identifier_token18] = ACTIONS(1607), + [aux_sym_cmd_identifier_token19] = ACTIONS(1607), + [aux_sym_cmd_identifier_token20] = ACTIONS(1607), + [aux_sym_cmd_identifier_token21] = ACTIONS(1607), + [aux_sym_cmd_identifier_token22] = ACTIONS(1607), + [aux_sym_cmd_identifier_token23] = ACTIONS(1607), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1607), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1607), + [aux_sym_cmd_identifier_token28] = ACTIONS(1607), + [aux_sym_cmd_identifier_token29] = ACTIONS(1607), + [aux_sym_cmd_identifier_token30] = ACTIONS(1607), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1607), + [aux_sym_cmd_identifier_token37] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1607), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [anon_sym_def] = ACTIONS(1607), + [anon_sym_export_DASHenv] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_module] = ACTIONS(1607), + [anon_sym_use] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_make] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_else] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_try] = ACTIONS(1607), + [anon_sym_catch] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_source] = ACTIONS(1607), + [anon_sym_source_DASHenv] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_hide] = ACTIONS(1607), + [anon_sym_hide_DASHenv] = ACTIONS(1607), + [anon_sym_overlay] = ACTIONS(1607), + [anon_sym_as] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(1611), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(1613), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1607), + [sym__entry_separator] = ACTIONS(1609), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1609), + }, + [325] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if] = STATE(4895), + [sym_block] = STATE(4896), + [sym__expression] = STATE(4896), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3969), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(4896), + [sym_comment] = STATE(325), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1511), + [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [326] = { + [sym_comment] = STATE(326), + [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(1619), + [aux_sym_cmd_identifier_token3] = ACTIONS(1619), + [aux_sym_cmd_identifier_token4] = ACTIONS(1619), + [aux_sym_cmd_identifier_token5] = ACTIONS(1619), + [aux_sym_cmd_identifier_token6] = ACTIONS(1619), + [aux_sym_cmd_identifier_token7] = ACTIONS(1619), + [aux_sym_cmd_identifier_token8] = ACTIONS(1617), + [aux_sym_cmd_identifier_token9] = ACTIONS(1617), + [aux_sym_cmd_identifier_token10] = ACTIONS(1619), + [aux_sym_cmd_identifier_token11] = ACTIONS(1619), + [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(1619), + [aux_sym_cmd_identifier_token17] = ACTIONS(1619), + [aux_sym_cmd_identifier_token18] = ACTIONS(1619), + [aux_sym_cmd_identifier_token19] = ACTIONS(1619), + [aux_sym_cmd_identifier_token20] = ACTIONS(1619), + [aux_sym_cmd_identifier_token21] = ACTIONS(1619), + [aux_sym_cmd_identifier_token22] = ACTIONS(1619), + [aux_sym_cmd_identifier_token23] = ACTIONS(1619), + [aux_sym_cmd_identifier_token24] = ACTIONS(1619), + [aux_sym_cmd_identifier_token25] = ACTIONS(1619), + [aux_sym_cmd_identifier_token26] = ACTIONS(1619), + [aux_sym_cmd_identifier_token27] = ACTIONS(1619), + [aux_sym_cmd_identifier_token28] = ACTIONS(1619), + [aux_sym_cmd_identifier_token29] = ACTIONS(1619), + [aux_sym_cmd_identifier_token30] = ACTIONS(1619), + [aux_sym_cmd_identifier_token31] = ACTIONS(1619), + [aux_sym_cmd_identifier_token32] = ACTIONS(1619), + [aux_sym_cmd_identifier_token33] = ACTIONS(1619), + [aux_sym_cmd_identifier_token34] = ACTIONS(1617), + [aux_sym_cmd_identifier_token35] = ACTIONS(1619), + [aux_sym_cmd_identifier_token36] = ACTIONS(1619), + [aux_sym_cmd_identifier_token37] = ACTIONS(1619), + [aux_sym_cmd_identifier_token38] = ACTIONS(1617), + [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_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_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(1617), + [anon_sym_error] = ACTIONS(1617), + [anon_sym_DASH2] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_loop] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_match] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_DOT_DOT] = ACTIONS(1617), + [anon_sym_try] = 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_where] = ACTIONS(1619), + [aux_sym_expr_unary_token1] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT] = ACTIONS(1619), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [aux_sym__val_number_decimal_token1] = ACTIONS(1617), + [aux_sym__val_number_decimal_token2] = ACTIONS(1619), + [aux_sym__val_number_decimal_token3] = ACTIONS(1619), + [aux_sym__val_number_decimal_token4] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [aux_sym__val_number_token4] = ACTIONS(1617), + [aux_sym__val_number_token5] = ACTIONS(1617), + [aux_sym__val_number_token6] = ACTIONS(1617), + [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), + [aux_sym_env_var_token1] = ACTIONS(1617), + [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1619), + }, + [327] = { + [sym_cmd_identifier] = STATE(4592), + [sym__expression] = STATE(3851), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4783), + [sym_comment] = STATE(327), + [aux_sym_pipe_element_repeat2] = STATE(1180), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [328] = { + [sym_comment] = STATE(328), + [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), + [aux_sym_cmd_identifier_token37] = 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(1621), + [anon_sym_error] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_in2] = 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_as] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(1625), + [aux_sym__immediate_decimal_token2] = ACTIONS(1627), + [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), + [aux_sym__val_number_token4] = ACTIONS(1621), + [aux_sym__val_number_token5] = ACTIONS(1621), + [aux_sym__val_number_token6] = ACTIONS(1621), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1623), + }, + [329] = { + [sym_cmd_identifier] = STATE(4592), + [sym__expression] = STATE(3851), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4783), + [sym_comment] = STATE(329), + [aux_sym_pipe_element_repeat2] = STATE(1180), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [330] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if] = STATE(4895), + [sym_block] = STATE(4896), + [sym__expression] = STATE(4896), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3969), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(4896), + [sym_comment] = STATE(330), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [331] = { + [sym_cmd_identifier] = STATE(4636), + [sym__expression_parenthesized] = STATE(3932), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(844), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5065), + [sym_comment] = STATE(331), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1189), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [332] = { + [sym_cmd_identifier] = STATE(4748), + [sym_ctrl_if] = STATE(4996), + [sym_block] = STATE(4997), + [sym__expression] = STATE(4997), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(2113), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1220), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_command] = STATE(4997), + [sym_comment] = STATE(332), + [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(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_if] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_DOT_DOT] = ACTIONS(65), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1635), + [aux_sym__val_number_decimal_token4] = ACTIONS(1637), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [333] = { + [sym_comment] = STATE(333), + [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(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(1639), + [aux_sym_cmd_identifier_token9] = ACTIONS(1639), + [aux_sym_cmd_identifier_token10] = ACTIONS(1641), + [aux_sym_cmd_identifier_token11] = ACTIONS(1641), + [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(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(1639), + [aux_sym_cmd_identifier_token35] = ACTIONS(1641), + [aux_sym_cmd_identifier_token36] = ACTIONS(1641), + [aux_sym_cmd_identifier_token37] = ACTIONS(1641), + [aux_sym_cmd_identifier_token38] = ACTIONS(1639), + [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_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_LBRACK] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1639), + [anon_sym_error] = ACTIONS(1639), + [anon_sym_DASH2] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_loop] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_match] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_DOT_DOT] = ACTIONS(1639), + [anon_sym_try] = 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_where] = ACTIONS(1641), + [aux_sym_expr_unary_token1] = ACTIONS(1641), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1641), + [anon_sym_DOT_DOT_LT] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1639), + [anon_sym_true] = ACTIONS(1639), + [anon_sym_false] = ACTIONS(1639), + [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), + [aux_sym__val_number_token4] = ACTIONS(1639), + [aux_sym__val_number_token5] = ACTIONS(1639), + [aux_sym__val_number_token6] = ACTIONS(1639), + [anon_sym_0b] = ACTIONS(1639), + [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), + [aux_sym_env_var_token1] = ACTIONS(1639), + [anon_sym_CARET] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1641), + }, + [334] = { + [sym_cmd_identifier] = STATE(4592), + [sym__expression] = STATE(3851), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(827), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4783), + [sym_comment] = STATE(334), + [aux_sym_pipe_element_repeat2] = STATE(1180), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [335] = { + [sym_comment] = STATE(335), + [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(1645), + [aux_sym_cmd_identifier_token3] = ACTIONS(1645), + [aux_sym_cmd_identifier_token4] = ACTIONS(1645), + [aux_sym_cmd_identifier_token5] = ACTIONS(1645), + [aux_sym_cmd_identifier_token6] = ACTIONS(1645), + [aux_sym_cmd_identifier_token7] = ACTIONS(1645), + [aux_sym_cmd_identifier_token8] = ACTIONS(1643), + [aux_sym_cmd_identifier_token9] = ACTIONS(1643), + [aux_sym_cmd_identifier_token10] = ACTIONS(1645), + [aux_sym_cmd_identifier_token11] = ACTIONS(1645), + [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(1645), + [aux_sym_cmd_identifier_token17] = ACTIONS(1645), + [aux_sym_cmd_identifier_token18] = ACTIONS(1645), + [aux_sym_cmd_identifier_token19] = ACTIONS(1645), + [aux_sym_cmd_identifier_token20] = ACTIONS(1645), + [aux_sym_cmd_identifier_token21] = ACTIONS(1645), + [aux_sym_cmd_identifier_token22] = ACTIONS(1645), + [aux_sym_cmd_identifier_token23] = ACTIONS(1645), + [aux_sym_cmd_identifier_token24] = ACTIONS(1645), + [aux_sym_cmd_identifier_token25] = ACTIONS(1645), + [aux_sym_cmd_identifier_token26] = ACTIONS(1645), + [aux_sym_cmd_identifier_token27] = ACTIONS(1645), + [aux_sym_cmd_identifier_token28] = ACTIONS(1645), + [aux_sym_cmd_identifier_token29] = ACTIONS(1645), + [aux_sym_cmd_identifier_token30] = ACTIONS(1645), + [aux_sym_cmd_identifier_token31] = ACTIONS(1645), + [aux_sym_cmd_identifier_token32] = ACTIONS(1645), + [aux_sym_cmd_identifier_token33] = ACTIONS(1645), + [aux_sym_cmd_identifier_token34] = ACTIONS(1643), + [aux_sym_cmd_identifier_token35] = ACTIONS(1645), + [aux_sym_cmd_identifier_token36] = ACTIONS(1645), + [aux_sym_cmd_identifier_token37] = ACTIONS(1645), + [aux_sym_cmd_identifier_token38] = ACTIONS(1643), + [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_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_LBRACK] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1643), + [anon_sym_error] = ACTIONS(1643), + [anon_sym_DASH2] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_loop] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_match] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_DOT_DOT] = ACTIONS(1643), + [anon_sym_try] = 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_where] = ACTIONS(1645), + [aux_sym_expr_unary_token1] = ACTIONS(1645), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), + [anon_sym_DOT_DOT_LT] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [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), + [aux_sym__val_number_token4] = ACTIONS(1643), + [aux_sym__val_number_token5] = ACTIONS(1643), + [aux_sym__val_number_token6] = ACTIONS(1643), + [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), + [aux_sym_env_var_token1] = ACTIONS(1643), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1645), + }, + [336] = { + [sym_cmd_identifier] = STATE(4636), + [sym__expression_parenthesized] = STATE(3932), + [sym_expr_unary] = STATE(2413), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2413), + [sym__expr_binary_expression_parenthesized] = STATE(3908), + [sym_expr_parenthesized] = STATE(2111), + [sym_val_range] = STATE(3925), + [sym__value] = STATE(2413), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(847), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(6848), + [sym__command_parenthesized] = STATE(5065), + [sym_comment] = STATE(336), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1189), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_decimal_token2] = ACTIONS(1649), + [aux_sym__val_number_decimal_token3] = ACTIONS(1651), + [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [337] = { + [sym_cmd_identifier] = STATE(4592), + [sym_ctrl_if] = STATE(4895), + [sym_block] = STATE(4896), + [sym__expression] = STATE(4896), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3969), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1211), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_command] = STATE(4896), + [sym_comment] = STATE(337), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1655), + [aux_sym__val_number_decimal_token2] = ACTIONS(1657), + [aux_sym__val_number_decimal_token3] = ACTIONS(1659), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [338] = { + [sym_cmd_identifier] = STATE(4592), + [sym__expression] = STATE(3851), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3975), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(847), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_env_var] = STATE(7496), + [sym_command] = STATE(4783), + [sym_comment] = STATE(338), + [aux_sym_pipe_element_repeat2] = STATE(1180), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1647), + [aux_sym__val_number_decimal_token2] = ACTIONS(1649), + [aux_sym__val_number_decimal_token3] = ACTIONS(1651), + [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [339] = { + [sym__expr_parenthesized_immediate] = STATE(649), + [sym__immediate_decimal] = STATE(655), + [sym_val_variable] = STATE(649), + [sym_comment] = STATE(339), + [anon_sym_export] = ACTIONS(1663), + [anon_sym_alias] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1663), + [anon_sym_let_DASHenv] = ACTIONS(1663), + [anon_sym_mut] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [aux_sym_cmd_identifier_token1] = ACTIONS(1663), + [aux_sym_cmd_identifier_token2] = ACTIONS(1663), + [aux_sym_cmd_identifier_token3] = ACTIONS(1663), + [aux_sym_cmd_identifier_token4] = ACTIONS(1663), + [aux_sym_cmd_identifier_token5] = ACTIONS(1663), + [aux_sym_cmd_identifier_token6] = ACTIONS(1663), + [aux_sym_cmd_identifier_token7] = ACTIONS(1663), + [aux_sym_cmd_identifier_token8] = ACTIONS(1663), + [aux_sym_cmd_identifier_token9] = ACTIONS(1663), + [aux_sym_cmd_identifier_token10] = ACTIONS(1663), + [aux_sym_cmd_identifier_token11] = ACTIONS(1663), + [aux_sym_cmd_identifier_token12] = ACTIONS(1663), + [aux_sym_cmd_identifier_token13] = ACTIONS(1663), + [aux_sym_cmd_identifier_token14] = ACTIONS(1663), + [aux_sym_cmd_identifier_token15] = ACTIONS(1663), + [aux_sym_cmd_identifier_token16] = ACTIONS(1663), + [aux_sym_cmd_identifier_token17] = ACTIONS(1663), + [aux_sym_cmd_identifier_token18] = ACTIONS(1663), + [aux_sym_cmd_identifier_token19] = ACTIONS(1663), + [aux_sym_cmd_identifier_token20] = ACTIONS(1663), + [aux_sym_cmd_identifier_token21] = ACTIONS(1663), + [aux_sym_cmd_identifier_token22] = ACTIONS(1663), + [aux_sym_cmd_identifier_token23] = ACTIONS(1663), + [aux_sym_cmd_identifier_token24] = ACTIONS(1663), + [aux_sym_cmd_identifier_token25] = ACTIONS(1663), + [aux_sym_cmd_identifier_token26] = ACTIONS(1663), + [aux_sym_cmd_identifier_token27] = ACTIONS(1663), + [aux_sym_cmd_identifier_token28] = ACTIONS(1663), + [aux_sym_cmd_identifier_token29] = ACTIONS(1663), + [aux_sym_cmd_identifier_token30] = ACTIONS(1663), + [aux_sym_cmd_identifier_token31] = ACTIONS(1663), + [aux_sym_cmd_identifier_token32] = ACTIONS(1663), + [aux_sym_cmd_identifier_token33] = ACTIONS(1663), + [aux_sym_cmd_identifier_token34] = ACTIONS(1663), + [aux_sym_cmd_identifier_token35] = ACTIONS(1663), + [aux_sym_cmd_identifier_token36] = ACTIONS(1663), + [aux_sym_cmd_identifier_token37] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1663), + [aux_sym_cmd_identifier_token39] = ACTIONS(1663), + [aux_sym_cmd_identifier_token40] = ACTIONS(1663), + [anon_sym_def] = ACTIONS(1663), + [anon_sym_export_DASHenv] = ACTIONS(1663), + [anon_sym_extern] = ACTIONS(1663), + [anon_sym_module] = ACTIONS(1663), + [anon_sym_use] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1567), + [anon_sym_error] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_loop] = ACTIONS(1663), + [anon_sym_make] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_try] = ACTIONS(1663), + [anon_sym_catch] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_source] = ACTIONS(1663), + [anon_sym_source_DASHenv] = ACTIONS(1663), + [anon_sym_register] = ACTIONS(1663), + [anon_sym_hide] = ACTIONS(1663), + [anon_sym_hide_DASHenv] = ACTIONS(1663), + [anon_sym_overlay] = ACTIONS(1663), + [anon_sym_as] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1569), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1667), + [aux_sym__immediate_decimal_token5] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1663), + [aux_sym__val_number_decimal_token3] = ACTIONS(1663), + [aux_sym__val_number_decimal_token4] = ACTIONS(1663), + [aux_sym__val_number_token1] = ACTIONS(1663), + [aux_sym__val_number_token2] = ACTIONS(1663), + [aux_sym__val_number_token3] = ACTIONS(1663), + [aux_sym__val_number_token4] = ACTIONS(1663), + [aux_sym__val_number_token5] = ACTIONS(1663), + [aux_sym__val_number_token6] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1663), + [sym__entry_separator] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1671), + }, + [340] = { + [sym_comment] = STATE(340), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_alias] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_let_DASHenv] = ACTIONS(1673), + [anon_sym_mut] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [aux_sym_cmd_identifier_token1] = ACTIONS(1673), + [aux_sym_cmd_identifier_token2] = ACTIONS(1673), + [aux_sym_cmd_identifier_token3] = ACTIONS(1673), + [aux_sym_cmd_identifier_token4] = ACTIONS(1673), + [aux_sym_cmd_identifier_token5] = ACTIONS(1673), + [aux_sym_cmd_identifier_token6] = ACTIONS(1673), + [aux_sym_cmd_identifier_token7] = ACTIONS(1673), + [aux_sym_cmd_identifier_token8] = ACTIONS(1673), + [aux_sym_cmd_identifier_token9] = ACTIONS(1673), + [aux_sym_cmd_identifier_token10] = ACTIONS(1673), + [aux_sym_cmd_identifier_token11] = ACTIONS(1673), + [aux_sym_cmd_identifier_token12] = ACTIONS(1673), + [aux_sym_cmd_identifier_token13] = ACTIONS(1673), + [aux_sym_cmd_identifier_token14] = ACTIONS(1673), + [aux_sym_cmd_identifier_token15] = ACTIONS(1673), + [aux_sym_cmd_identifier_token16] = ACTIONS(1673), + [aux_sym_cmd_identifier_token17] = ACTIONS(1673), + [aux_sym_cmd_identifier_token18] = ACTIONS(1673), + [aux_sym_cmd_identifier_token19] = ACTIONS(1673), + [aux_sym_cmd_identifier_token20] = ACTIONS(1673), + [aux_sym_cmd_identifier_token21] = ACTIONS(1673), + [aux_sym_cmd_identifier_token22] = ACTIONS(1673), + [aux_sym_cmd_identifier_token23] = ACTIONS(1673), + [aux_sym_cmd_identifier_token24] = ACTIONS(1673), + [aux_sym_cmd_identifier_token25] = ACTIONS(1673), + [aux_sym_cmd_identifier_token26] = ACTIONS(1673), + [aux_sym_cmd_identifier_token27] = ACTIONS(1673), + [aux_sym_cmd_identifier_token28] = ACTIONS(1673), + [aux_sym_cmd_identifier_token29] = ACTIONS(1673), + [aux_sym_cmd_identifier_token30] = ACTIONS(1673), + [aux_sym_cmd_identifier_token31] = ACTIONS(1673), + [aux_sym_cmd_identifier_token32] = ACTIONS(1673), + [aux_sym_cmd_identifier_token33] = ACTIONS(1673), + [aux_sym_cmd_identifier_token34] = ACTIONS(1673), + [aux_sym_cmd_identifier_token35] = ACTIONS(1673), + [aux_sym_cmd_identifier_token36] = ACTIONS(1673), + [aux_sym_cmd_identifier_token37] = ACTIONS(1673), + [aux_sym_cmd_identifier_token38] = ACTIONS(1673), + [aux_sym_cmd_identifier_token39] = ACTIONS(1673), + [aux_sym_cmd_identifier_token40] = ACTIONS(1673), + [anon_sym_def] = ACTIONS(1673), + [anon_sym_export_DASHenv] = ACTIONS(1673), + [anon_sym_extern] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_use] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_error] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_loop] = ACTIONS(1673), + [anon_sym_make] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_match] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_catch] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_source] = ACTIONS(1673), + [anon_sym_source_DASHenv] = ACTIONS(1673), + [anon_sym_register] = ACTIONS(1673), + [anon_sym_hide] = ACTIONS(1673), + [anon_sym_hide_DASHenv] = ACTIONS(1673), + [anon_sym_overlay] = ACTIONS(1673), + [anon_sym_as] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1673), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1673), + [aux_sym__val_number_decimal_token3] = ACTIONS(1673), + [aux_sym__val_number_decimal_token4] = ACTIONS(1673), + [aux_sym__val_number_token1] = ACTIONS(1673), + [aux_sym__val_number_token2] = ACTIONS(1673), + [aux_sym__val_number_token3] = ACTIONS(1673), + [aux_sym__val_number_token4] = ACTIONS(1673), + [aux_sym__val_number_token5] = ACTIONS(1673), + [aux_sym__val_number_token6] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1673), + [sym__str_single_quotes] = ACTIONS(1673), + [sym__str_back_ticks] = ACTIONS(1673), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1673), + [sym__entry_separator] = ACTIONS(1675), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1675), + }, + [341] = { + [sym__expr_parenthesized_immediate] = STATE(706), + [sym__immediate_decimal] = STATE(609), + [sym_val_variable] = STATE(706), + [sym_comment] = STATE(341), + [anon_sym_export] = ACTIONS(1530), + [anon_sym_alias] = ACTIONS(1530), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_let_DASHenv] = ACTIONS(1530), + [anon_sym_mut] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [aux_sym_cmd_identifier_token1] = ACTIONS(1530), + [aux_sym_cmd_identifier_token2] = ACTIONS(1544), + [aux_sym_cmd_identifier_token3] = ACTIONS(1544), + [aux_sym_cmd_identifier_token4] = ACTIONS(1544), + [aux_sym_cmd_identifier_token5] = ACTIONS(1544), + [aux_sym_cmd_identifier_token6] = ACTIONS(1544), + [aux_sym_cmd_identifier_token7] = ACTIONS(1544), + [aux_sym_cmd_identifier_token8] = ACTIONS(1530), + [aux_sym_cmd_identifier_token9] = ACTIONS(1530), + [aux_sym_cmd_identifier_token10] = ACTIONS(1544), + [aux_sym_cmd_identifier_token11] = ACTIONS(1544), + [aux_sym_cmd_identifier_token12] = ACTIONS(1530), + [aux_sym_cmd_identifier_token13] = ACTIONS(1530), + [aux_sym_cmd_identifier_token14] = ACTIONS(1530), + [aux_sym_cmd_identifier_token15] = ACTIONS(1530), + [aux_sym_cmd_identifier_token16] = ACTIONS(1544), + [aux_sym_cmd_identifier_token17] = ACTIONS(1544), + [aux_sym_cmd_identifier_token18] = ACTIONS(1544), + [aux_sym_cmd_identifier_token19] = ACTIONS(1544), + [aux_sym_cmd_identifier_token20] = ACTIONS(1544), + [aux_sym_cmd_identifier_token21] = ACTIONS(1544), + [aux_sym_cmd_identifier_token22] = ACTIONS(1544), + [aux_sym_cmd_identifier_token23] = ACTIONS(1544), + [aux_sym_cmd_identifier_token24] = ACTIONS(1544), + [aux_sym_cmd_identifier_token25] = ACTIONS(1544), + [aux_sym_cmd_identifier_token26] = ACTIONS(1544), + [aux_sym_cmd_identifier_token27] = ACTIONS(1544), + [aux_sym_cmd_identifier_token28] = ACTIONS(1544), + [aux_sym_cmd_identifier_token29] = ACTIONS(1544), + [aux_sym_cmd_identifier_token30] = ACTIONS(1544), + [aux_sym_cmd_identifier_token31] = ACTIONS(1544), + [aux_sym_cmd_identifier_token32] = ACTIONS(1544), + [aux_sym_cmd_identifier_token33] = ACTIONS(1544), + [aux_sym_cmd_identifier_token34] = ACTIONS(1530), + [aux_sym_cmd_identifier_token35] = ACTIONS(1544), + [aux_sym_cmd_identifier_token36] = ACTIONS(1544), + [aux_sym_cmd_identifier_token37] = ACTIONS(1544), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1544), + [aux_sym_cmd_identifier_token40] = ACTIONS(1544), + [anon_sym_def] = ACTIONS(1530), + [anon_sym_export_DASHenv] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym_module] = ACTIONS(1530), + [anon_sym_use] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1679), + [anon_sym_error] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_in2] = ACTIONS(1530), + [anon_sym_loop] = ACTIONS(1530), + [anon_sym_make] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_else] = ACTIONS(1530), + [anon_sym_match] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_try] = ACTIONS(1530), + [anon_sym_catch] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_source] = ACTIONS(1530), + [anon_sym_source_DASHenv] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_hide] = ACTIONS(1530), + [anon_sym_hide_DASHenv] = ACTIONS(1530), + [anon_sym_overlay] = ACTIONS(1530), + [anon_sym_as] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1544), + [aux_sym__immediate_decimal_token1] = ACTIONS(1683), + [aux_sym__immediate_decimal_token3] = ACTIONS(1685), + [aux_sym__immediate_decimal_token4] = ACTIONS(1687), + [aux_sym__immediate_decimal_token5] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1544), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1544), + [aux_sym__val_number_token2] = ACTIONS(1544), + [aux_sym__val_number_token3] = ACTIONS(1544), + [aux_sym__val_number_token4] = ACTIONS(1530), + [aux_sym__val_number_token5] = ACTIONS(1530), + [aux_sym__val_number_token6] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1544), + [sym__str_single_quotes] = ACTIONS(1544), + [sym__str_back_ticks] = ACTIONS(1544), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1544), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1544), + }, + [342] = { + [sym__expr_parenthesized_immediate] = STATE(638), + [sym__immediate_decimal] = STATE(645), + [sym_val_variable] = STATE(638), + [sym_comment] = STATE(342), + [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(1691), + [aux_sym_cmd_identifier_token25] = ACTIONS(1691), + [aux_sym_cmd_identifier_token26] = ACTIONS(1691), + [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(1691), + [aux_sym_cmd_identifier_token32] = ACTIONS(1691), + [aux_sym_cmd_identifier_token33] = ACTIONS(1691), + [aux_sym_cmd_identifier_token34] = ACTIONS(1691), + [aux_sym_cmd_identifier_token35] = ACTIONS(1691), + [aux_sym_cmd_identifier_token36] = ACTIONS(1691), + [aux_sym_cmd_identifier_token37] = ACTIONS(1691), + [aux_sym_cmd_identifier_token38] = ACTIONS(1691), + [aux_sym_cmd_identifier_token39] = ACTIONS(1691), + [aux_sym_cmd_identifier_token40] = ACTIONS(1691), + [anon_sym_def] = ACTIONS(1691), + [anon_sym_export_DASHenv] = ACTIONS(1691), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_use] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1567), + [anon_sym_error] = ACTIONS(1691), + [anon_sym_DASH2] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_in2] = ACTIONS(1691), + [anon_sym_loop] = ACTIONS(1691), + [anon_sym_make] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_else] = ACTIONS(1691), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_catch] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_source] = ACTIONS(1691), + [anon_sym_source_DASHenv] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1691), + [anon_sym_hide] = ACTIONS(1691), + [anon_sym_hide_DASHenv] = ACTIONS(1691), + [anon_sym_overlay] = ACTIONS(1691), + [anon_sym_as] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(1569), + [anon_sym_PLUS2] = ACTIONS(1691), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1691), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1667), + [aux_sym__immediate_decimal_token5] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1691), + [aux_sym__val_number_decimal_token2] = ACTIONS(1691), + [aux_sym__val_number_decimal_token3] = ACTIONS(1691), + [aux_sym__val_number_decimal_token4] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1691), + [aux_sym__val_number_token5] = ACTIONS(1691), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1691), + [sym__entry_separator] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1693), + }, + [343] = { + [sym_comment] = STATE(343), + [anon_sym_export] = ACTIONS(1607), + [anon_sym_alias] = ACTIONS(1607), + [anon_sym_let] = ACTIONS(1607), + [anon_sym_let_DASHenv] = ACTIONS(1607), + [anon_sym_mut] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [aux_sym_cmd_identifier_token1] = ACTIONS(1607), + [aux_sym_cmd_identifier_token2] = ACTIONS(1607), + [aux_sym_cmd_identifier_token3] = ACTIONS(1607), + [aux_sym_cmd_identifier_token4] = ACTIONS(1607), + [aux_sym_cmd_identifier_token5] = ACTIONS(1607), + [aux_sym_cmd_identifier_token6] = ACTIONS(1607), + [aux_sym_cmd_identifier_token7] = ACTIONS(1607), + [aux_sym_cmd_identifier_token8] = ACTIONS(1607), + [aux_sym_cmd_identifier_token9] = ACTIONS(1607), + [aux_sym_cmd_identifier_token10] = ACTIONS(1607), + [aux_sym_cmd_identifier_token11] = ACTIONS(1607), + [aux_sym_cmd_identifier_token12] = ACTIONS(1607), + [aux_sym_cmd_identifier_token13] = ACTIONS(1607), + [aux_sym_cmd_identifier_token14] = ACTIONS(1607), + [aux_sym_cmd_identifier_token15] = ACTIONS(1607), + [aux_sym_cmd_identifier_token16] = ACTIONS(1607), + [aux_sym_cmd_identifier_token17] = ACTIONS(1607), + [aux_sym_cmd_identifier_token18] = ACTIONS(1607), + [aux_sym_cmd_identifier_token19] = ACTIONS(1607), + [aux_sym_cmd_identifier_token20] = ACTIONS(1607), + [aux_sym_cmd_identifier_token21] = ACTIONS(1607), + [aux_sym_cmd_identifier_token22] = ACTIONS(1607), + [aux_sym_cmd_identifier_token23] = ACTIONS(1607), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1607), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1607), + [aux_sym_cmd_identifier_token28] = ACTIONS(1607), + [aux_sym_cmd_identifier_token29] = ACTIONS(1607), + [aux_sym_cmd_identifier_token30] = ACTIONS(1607), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1607), + [aux_sym_cmd_identifier_token37] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1607), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [anon_sym_def] = ACTIONS(1607), + [anon_sym_export_DASHenv] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_module] = ACTIONS(1607), + [anon_sym_use] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_make] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_else] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_try] = ACTIONS(1607), + [anon_sym_catch] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_source] = ACTIONS(1607), + [anon_sym_source_DASHenv] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_hide] = ACTIONS(1607), + [anon_sym_hide_DASHenv] = ACTIONS(1607), + [anon_sym_overlay] = ACTIONS(1607), + [anon_sym_as] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(1613), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1607), + [sym__entry_separator] = ACTIONS(1609), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1609), + }, + [344] = { + [sym__expr_parenthesized_immediate] = STATE(648), + [sym__immediate_decimal] = STATE(650), + [sym_val_variable] = STATE(648), + [sym_comment] = STATE(344), + [anon_sym_export] = ACTIONS(1581), + [anon_sym_alias] = ACTIONS(1581), + [anon_sym_let] = ACTIONS(1581), + [anon_sym_let_DASHenv] = ACTIONS(1581), + [anon_sym_mut] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [aux_sym_cmd_identifier_token1] = ACTIONS(1581), + [aux_sym_cmd_identifier_token2] = ACTIONS(1581), + [aux_sym_cmd_identifier_token3] = ACTIONS(1581), + [aux_sym_cmd_identifier_token4] = ACTIONS(1581), + [aux_sym_cmd_identifier_token5] = ACTIONS(1581), + [aux_sym_cmd_identifier_token6] = ACTIONS(1581), + [aux_sym_cmd_identifier_token7] = ACTIONS(1581), + [aux_sym_cmd_identifier_token8] = ACTIONS(1581), + [aux_sym_cmd_identifier_token9] = ACTIONS(1581), + [aux_sym_cmd_identifier_token10] = ACTIONS(1581), + [aux_sym_cmd_identifier_token11] = ACTIONS(1581), + [aux_sym_cmd_identifier_token12] = ACTIONS(1581), + [aux_sym_cmd_identifier_token13] = ACTIONS(1581), + [aux_sym_cmd_identifier_token14] = ACTIONS(1581), + [aux_sym_cmd_identifier_token15] = ACTIONS(1581), + [aux_sym_cmd_identifier_token16] = ACTIONS(1581), + [aux_sym_cmd_identifier_token17] = ACTIONS(1581), + [aux_sym_cmd_identifier_token18] = ACTIONS(1581), + [aux_sym_cmd_identifier_token19] = ACTIONS(1581), + [aux_sym_cmd_identifier_token20] = ACTIONS(1581), + [aux_sym_cmd_identifier_token21] = ACTIONS(1581), + [aux_sym_cmd_identifier_token22] = ACTIONS(1581), + [aux_sym_cmd_identifier_token23] = ACTIONS(1581), + [aux_sym_cmd_identifier_token24] = ACTIONS(1581), + [aux_sym_cmd_identifier_token25] = ACTIONS(1581), + [aux_sym_cmd_identifier_token26] = ACTIONS(1581), + [aux_sym_cmd_identifier_token27] = ACTIONS(1581), + [aux_sym_cmd_identifier_token28] = ACTIONS(1581), + [aux_sym_cmd_identifier_token29] = ACTIONS(1581), + [aux_sym_cmd_identifier_token30] = ACTIONS(1581), + [aux_sym_cmd_identifier_token31] = ACTIONS(1581), + [aux_sym_cmd_identifier_token32] = ACTIONS(1581), + [aux_sym_cmd_identifier_token33] = ACTIONS(1581), + [aux_sym_cmd_identifier_token34] = ACTIONS(1581), + [aux_sym_cmd_identifier_token35] = ACTIONS(1581), + [aux_sym_cmd_identifier_token36] = ACTIONS(1581), + [aux_sym_cmd_identifier_token37] = ACTIONS(1581), + [aux_sym_cmd_identifier_token38] = ACTIONS(1581), + [aux_sym_cmd_identifier_token39] = ACTIONS(1581), + [aux_sym_cmd_identifier_token40] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1581), + [anon_sym_export_DASHenv] = ACTIONS(1581), + [anon_sym_extern] = ACTIONS(1581), + [anon_sym_module] = ACTIONS(1581), + [anon_sym_use] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1567), + [anon_sym_error] = ACTIONS(1581), + [anon_sym_DASH2] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_in2] = ACTIONS(1581), + [anon_sym_loop] = ACTIONS(1581), + [anon_sym_make] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_catch] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_source] = ACTIONS(1581), + [anon_sym_source_DASHenv] = ACTIONS(1581), + [anon_sym_register] = ACTIONS(1581), + [anon_sym_hide] = ACTIONS(1581), + [anon_sym_hide_DASHenv] = ACTIONS(1581), + [anon_sym_overlay] = ACTIONS(1581), + [anon_sym_as] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(1569), + [anon_sym_PLUS2] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1581), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1667), + [aux_sym__immediate_decimal_token5] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1581), + [aux_sym__val_number_decimal_token1] = ACTIONS(1581), + [aux_sym__val_number_decimal_token2] = ACTIONS(1581), + [aux_sym__val_number_decimal_token3] = ACTIONS(1581), + [aux_sym__val_number_decimal_token4] = ACTIONS(1581), + [aux_sym__val_number_token1] = ACTIONS(1581), + [aux_sym__val_number_token2] = ACTIONS(1581), + [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_token4] = ACTIONS(1581), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1581), + [sym__entry_separator] = ACTIONS(1591), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1591), + }, + [345] = { + [sym__expr_parenthesized_immediate] = STATE(533), + [sym__immediate_decimal] = STATE(539), + [sym_val_variable] = STATE(533), + [sym_comment] = STATE(345), + [anon_sym_export] = ACTIONS(1581), + [anon_sym_alias] = ACTIONS(1581), + [anon_sym_let] = ACTIONS(1581), + [anon_sym_let_DASHenv] = ACTIONS(1581), + [anon_sym_mut] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [aux_sym_cmd_identifier_token1] = ACTIONS(1581), + [aux_sym_cmd_identifier_token2] = ACTIONS(1591), + [aux_sym_cmd_identifier_token3] = ACTIONS(1591), + [aux_sym_cmd_identifier_token4] = ACTIONS(1591), + [aux_sym_cmd_identifier_token5] = ACTIONS(1591), + [aux_sym_cmd_identifier_token6] = ACTIONS(1591), + [aux_sym_cmd_identifier_token7] = ACTIONS(1591), + [aux_sym_cmd_identifier_token8] = ACTIONS(1581), + [aux_sym_cmd_identifier_token9] = ACTIONS(1581), + [aux_sym_cmd_identifier_token10] = ACTIONS(1591), + [aux_sym_cmd_identifier_token11] = ACTIONS(1591), + [aux_sym_cmd_identifier_token12] = ACTIONS(1581), + [aux_sym_cmd_identifier_token13] = ACTIONS(1581), + [aux_sym_cmd_identifier_token14] = ACTIONS(1581), + [aux_sym_cmd_identifier_token15] = ACTIONS(1581), + [aux_sym_cmd_identifier_token16] = ACTIONS(1591), + [aux_sym_cmd_identifier_token17] = ACTIONS(1591), + [aux_sym_cmd_identifier_token18] = ACTIONS(1591), + [aux_sym_cmd_identifier_token19] = ACTIONS(1591), + [aux_sym_cmd_identifier_token20] = ACTIONS(1591), + [aux_sym_cmd_identifier_token21] = ACTIONS(1591), + [aux_sym_cmd_identifier_token22] = ACTIONS(1591), + [aux_sym_cmd_identifier_token23] = ACTIONS(1591), + [aux_sym_cmd_identifier_token24] = ACTIONS(1591), + [aux_sym_cmd_identifier_token25] = ACTIONS(1591), + [aux_sym_cmd_identifier_token26] = ACTIONS(1591), + [aux_sym_cmd_identifier_token27] = ACTIONS(1591), + [aux_sym_cmd_identifier_token28] = ACTIONS(1591), + [aux_sym_cmd_identifier_token29] = ACTIONS(1591), + [aux_sym_cmd_identifier_token30] = ACTIONS(1591), + [aux_sym_cmd_identifier_token31] = ACTIONS(1591), + [aux_sym_cmd_identifier_token32] = ACTIONS(1591), + [aux_sym_cmd_identifier_token33] = ACTIONS(1591), + [aux_sym_cmd_identifier_token34] = ACTIONS(1581), + [aux_sym_cmd_identifier_token35] = ACTIONS(1591), + [aux_sym_cmd_identifier_token36] = ACTIONS(1591), + [aux_sym_cmd_identifier_token37] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1581), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1581), + [anon_sym_export_DASHenv] = ACTIONS(1581), + [anon_sym_extern] = ACTIONS(1581), + [anon_sym_module] = ACTIONS(1581), + [anon_sym_use] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1593), + [anon_sym_error] = ACTIONS(1581), + [anon_sym_DASH2] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_in2] = ACTIONS(1581), + [anon_sym_loop] = ACTIONS(1581), + [anon_sym_make] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_catch] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_source] = ACTIONS(1581), + [anon_sym_source_DASHenv] = ACTIONS(1581), + [anon_sym_register] = ACTIONS(1581), + [anon_sym_hide] = ACTIONS(1581), + [anon_sym_hide_DASHenv] = ACTIONS(1581), + [anon_sym_overlay] = ACTIONS(1581), + [anon_sym_as] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(1595), + [anon_sym_PLUS2] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [anon_sym_DOT] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(1697), + [aux_sym__immediate_decimal_token3] = ACTIONS(1699), + [aux_sym__immediate_decimal_token4] = ACTIONS(1701), + [aux_sym__immediate_decimal_token5] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1581), + [aux_sym__val_number_decimal_token2] = ACTIONS(1581), + [aux_sym__val_number_decimal_token3] = ACTIONS(1581), + [aux_sym__val_number_decimal_token4] = ACTIONS(1581), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [aux_sym__val_number_token4] = ACTIONS(1581), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1591), + }, + [346] = { + [sym__expr_parenthesized_immediate] = STATE(657), + [sym__immediate_decimal] = STATE(660), + [sym_val_variable] = STATE(657), + [sym_comment] = STATE(346), + [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), + [aux_sym_cmd_identifier_token37] = 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(1567), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_DASH2] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in2] = 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_as] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1569), + [anon_sym_PLUS2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1667), + [aux_sym__immediate_decimal_token5] = ACTIONS(1669), + [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), + [aux_sym__val_number_token4] = ACTIONS(1705), + [aux_sym__val_number_token5] = ACTIONS(1705), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1707), + }, + [347] = { + [sym__expr_parenthesized_immediate] = STATE(7364), + [sym_comment] = STATE(347), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(1709), + [aux_sym_cmd_identifier_token3] = ACTIONS(1709), + [aux_sym_cmd_identifier_token4] = ACTIONS(1709), + [aux_sym_cmd_identifier_token5] = ACTIONS(1709), + [aux_sym_cmd_identifier_token6] = ACTIONS(1709), + [aux_sym_cmd_identifier_token7] = ACTIONS(1709), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1709), + [aux_sym_cmd_identifier_token11] = ACTIONS(1709), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(1709), + [aux_sym_cmd_identifier_token17] = ACTIONS(1709), + [aux_sym_cmd_identifier_token18] = ACTIONS(1709), + [aux_sym_cmd_identifier_token19] = ACTIONS(1709), + [aux_sym_cmd_identifier_token20] = ACTIONS(1709), + [aux_sym_cmd_identifier_token21] = ACTIONS(1709), + [aux_sym_cmd_identifier_token22] = ACTIONS(1709), + [aux_sym_cmd_identifier_token23] = ACTIONS(1709), + [aux_sym_cmd_identifier_token24] = ACTIONS(1709), + [aux_sym_cmd_identifier_token25] = ACTIONS(1709), + [aux_sym_cmd_identifier_token26] = ACTIONS(1709), + [aux_sym_cmd_identifier_token27] = ACTIONS(1709), + [aux_sym_cmd_identifier_token28] = ACTIONS(1709), + [aux_sym_cmd_identifier_token29] = ACTIONS(1709), + [aux_sym_cmd_identifier_token30] = ACTIONS(1709), + [aux_sym_cmd_identifier_token31] = ACTIONS(1709), + [aux_sym_cmd_identifier_token32] = ACTIONS(1709), + [aux_sym_cmd_identifier_token33] = ACTIONS(1709), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1709), + [aux_sym_cmd_identifier_token36] = ACTIONS(1709), + [aux_sym_cmd_identifier_token37] = ACTIONS(1709), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1709), + [aux_sym_cmd_identifier_token40] = ACTIONS(1709), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1713), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1709), + [aux_sym__val_number_decimal_token3] = ACTIONS(1709), + [aux_sym__val_number_decimal_token4] = ACTIONS(1709), + [aux_sym__val_number_token1] = ACTIONS(1709), + [aux_sym__val_number_token2] = ACTIONS(1709), + [aux_sym__val_number_token3] = ACTIONS(1709), + [aux_sym__val_number_token4] = ACTIONS(1709), + [aux_sym__val_number_token5] = ACTIONS(1709), + [aux_sym__val_number_token6] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1717), + [sym_duration_unit] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym__str_single_quotes] = ACTIONS(1709), + [sym__str_back_ticks] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), + [sym__entry_separator] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1721), + }, + [348] = { + [sym__expr_parenthesized_immediate] = STATE(755), + [sym__immediate_decimal] = STATE(567), + [sym_val_variable] = STATE(755), + [sym_comment] = STATE(348), + [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(1577), + [aux_sym_cmd_identifier_token3] = ACTIONS(1577), + [aux_sym_cmd_identifier_token4] = ACTIONS(1577), + [aux_sym_cmd_identifier_token5] = ACTIONS(1577), + [aux_sym_cmd_identifier_token6] = ACTIONS(1577), + [aux_sym_cmd_identifier_token7] = ACTIONS(1577), + [aux_sym_cmd_identifier_token8] = ACTIONS(1565), + [aux_sym_cmd_identifier_token9] = ACTIONS(1565), + [aux_sym_cmd_identifier_token10] = ACTIONS(1577), + [aux_sym_cmd_identifier_token11] = ACTIONS(1577), + [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(1577), + [aux_sym_cmd_identifier_token17] = ACTIONS(1577), + [aux_sym_cmd_identifier_token18] = ACTIONS(1577), + [aux_sym_cmd_identifier_token19] = ACTIONS(1577), + [aux_sym_cmd_identifier_token20] = ACTIONS(1577), + [aux_sym_cmd_identifier_token21] = ACTIONS(1577), + [aux_sym_cmd_identifier_token22] = ACTIONS(1577), + [aux_sym_cmd_identifier_token23] = ACTIONS(1577), + [aux_sym_cmd_identifier_token24] = ACTIONS(1577), + [aux_sym_cmd_identifier_token25] = ACTIONS(1577), + [aux_sym_cmd_identifier_token26] = ACTIONS(1577), + [aux_sym_cmd_identifier_token27] = ACTIONS(1577), + [aux_sym_cmd_identifier_token28] = ACTIONS(1577), + [aux_sym_cmd_identifier_token29] = ACTIONS(1577), + [aux_sym_cmd_identifier_token30] = ACTIONS(1577), + [aux_sym_cmd_identifier_token31] = ACTIONS(1577), + [aux_sym_cmd_identifier_token32] = ACTIONS(1577), + [aux_sym_cmd_identifier_token33] = ACTIONS(1577), + [aux_sym_cmd_identifier_token34] = ACTIONS(1565), + [aux_sym_cmd_identifier_token35] = ACTIONS(1577), + [aux_sym_cmd_identifier_token36] = ACTIONS(1577), + [aux_sym_cmd_identifier_token37] = ACTIONS(1577), + [aux_sym_cmd_identifier_token38] = ACTIONS(1565), + [aux_sym_cmd_identifier_token39] = ACTIONS(1577), + [aux_sym_cmd_identifier_token40] = ACTIONS(1577), + [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(1679), + [anon_sym_error] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_in2] = 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(1577), + [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_as] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1577), + [aux_sym__immediate_decimal_token1] = ACTIONS(1683), + [aux_sym__immediate_decimal_token3] = ACTIONS(1685), + [aux_sym__immediate_decimal_token4] = ACTIONS(1687), + [aux_sym__immediate_decimal_token5] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1577), + [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(1577), + [aux_sym__val_number_token2] = ACTIONS(1577), + [aux_sym__val_number_token3] = ACTIONS(1577), + [aux_sym__val_number_token4] = ACTIONS(1565), + [aux_sym__val_number_token5] = ACTIONS(1565), + [aux_sym__val_number_token6] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1577), + [sym__str_single_quotes] = ACTIONS(1577), + [sym__str_back_ticks] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1577), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1577), + }, + [349] = { + [sym_comment] = STATE(349), + [anon_sym_export] = ACTIONS(1607), + [anon_sym_alias] = ACTIONS(1607), + [anon_sym_let] = ACTIONS(1607), + [anon_sym_let_DASHenv] = ACTIONS(1607), + [anon_sym_mut] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [aux_sym_cmd_identifier_token1] = ACTIONS(1607), + [aux_sym_cmd_identifier_token2] = ACTIONS(1609), + [aux_sym_cmd_identifier_token3] = ACTIONS(1609), + [aux_sym_cmd_identifier_token4] = ACTIONS(1609), + [aux_sym_cmd_identifier_token5] = ACTIONS(1609), + [aux_sym_cmd_identifier_token6] = ACTIONS(1609), + [aux_sym_cmd_identifier_token7] = ACTIONS(1609), + [aux_sym_cmd_identifier_token8] = ACTIONS(1607), + [aux_sym_cmd_identifier_token9] = ACTIONS(1607), + [aux_sym_cmd_identifier_token10] = ACTIONS(1609), + [aux_sym_cmd_identifier_token11] = ACTIONS(1609), + [aux_sym_cmd_identifier_token12] = ACTIONS(1607), + [aux_sym_cmd_identifier_token13] = ACTIONS(1607), + [aux_sym_cmd_identifier_token14] = ACTIONS(1607), + [aux_sym_cmd_identifier_token15] = ACTIONS(1607), + [aux_sym_cmd_identifier_token16] = ACTIONS(1609), + [aux_sym_cmd_identifier_token17] = ACTIONS(1609), + [aux_sym_cmd_identifier_token18] = ACTIONS(1609), + [aux_sym_cmd_identifier_token19] = ACTIONS(1609), + [aux_sym_cmd_identifier_token20] = ACTIONS(1609), + [aux_sym_cmd_identifier_token21] = ACTIONS(1609), + [aux_sym_cmd_identifier_token22] = ACTIONS(1609), + [aux_sym_cmd_identifier_token23] = ACTIONS(1609), + [aux_sym_cmd_identifier_token24] = ACTIONS(1609), + [aux_sym_cmd_identifier_token25] = ACTIONS(1609), + [aux_sym_cmd_identifier_token26] = ACTIONS(1609), + [aux_sym_cmd_identifier_token27] = ACTIONS(1609), + [aux_sym_cmd_identifier_token28] = ACTIONS(1609), + [aux_sym_cmd_identifier_token29] = ACTIONS(1609), + [aux_sym_cmd_identifier_token30] = ACTIONS(1609), + [aux_sym_cmd_identifier_token31] = ACTIONS(1609), + [aux_sym_cmd_identifier_token32] = ACTIONS(1609), + [aux_sym_cmd_identifier_token33] = ACTIONS(1609), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1609), + [aux_sym_cmd_identifier_token36] = ACTIONS(1609), + [aux_sym_cmd_identifier_token37] = ACTIONS(1609), + [aux_sym_cmd_identifier_token38] = ACTIONS(1607), + [aux_sym_cmd_identifier_token39] = ACTIONS(1609), + [aux_sym_cmd_identifier_token40] = ACTIONS(1609), + [anon_sym_def] = ACTIONS(1607), + [anon_sym_export_DASHenv] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_module] = ACTIONS(1607), + [anon_sym_use] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1609), + [anon_sym_error] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_make] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_else] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1607), + [anon_sym_catch] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_source] = ACTIONS(1607), + [anon_sym_source_DASHenv] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_hide] = ACTIONS(1607), + [anon_sym_hide_DASHenv] = ACTIONS(1607), + [anon_sym_overlay] = ACTIONS(1607), + [anon_sym_as] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1609), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), + }, + [350] = { + [sym_comment] = STATE(350), + [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(1623), + [aux_sym_cmd_identifier_token3] = ACTIONS(1623), + [aux_sym_cmd_identifier_token4] = ACTIONS(1623), + [aux_sym_cmd_identifier_token5] = ACTIONS(1623), + [aux_sym_cmd_identifier_token6] = ACTIONS(1623), + [aux_sym_cmd_identifier_token7] = ACTIONS(1623), + [aux_sym_cmd_identifier_token8] = ACTIONS(1621), + [aux_sym_cmd_identifier_token9] = ACTIONS(1621), + [aux_sym_cmd_identifier_token10] = ACTIONS(1623), + [aux_sym_cmd_identifier_token11] = ACTIONS(1623), + [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(1623), + [aux_sym_cmd_identifier_token17] = ACTIONS(1623), + [aux_sym_cmd_identifier_token18] = ACTIONS(1623), + [aux_sym_cmd_identifier_token19] = ACTIONS(1623), + [aux_sym_cmd_identifier_token20] = ACTIONS(1623), + [aux_sym_cmd_identifier_token21] = ACTIONS(1623), + [aux_sym_cmd_identifier_token22] = ACTIONS(1623), + [aux_sym_cmd_identifier_token23] = ACTIONS(1623), + [aux_sym_cmd_identifier_token24] = ACTIONS(1623), + [aux_sym_cmd_identifier_token25] = ACTIONS(1623), + [aux_sym_cmd_identifier_token26] = ACTIONS(1623), + [aux_sym_cmd_identifier_token27] = ACTIONS(1623), + [aux_sym_cmd_identifier_token28] = ACTIONS(1623), + [aux_sym_cmd_identifier_token29] = ACTIONS(1623), + [aux_sym_cmd_identifier_token30] = ACTIONS(1623), + [aux_sym_cmd_identifier_token31] = ACTIONS(1623), + [aux_sym_cmd_identifier_token32] = ACTIONS(1623), + [aux_sym_cmd_identifier_token33] = ACTIONS(1623), + [aux_sym_cmd_identifier_token34] = ACTIONS(1621), + [aux_sym_cmd_identifier_token35] = ACTIONS(1623), + [aux_sym_cmd_identifier_token36] = ACTIONS(1623), + [aux_sym_cmd_identifier_token37] = 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(1623), + [anon_sym_error] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_in2] = 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_as] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(1729), + [aux_sym__immediate_decimal_token2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1623), + [aux_sym__val_number_decimal_token3] = ACTIONS(1623), + [aux_sym__val_number_decimal_token4] = ACTIONS(1623), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1621), + [aux_sym__val_number_token5] = ACTIONS(1621), + [aux_sym__val_number_token6] = ACTIONS(1621), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1621), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1623), + }, + [351] = { + [sym_cell_path] = STATE(494), + [sym_path] = STATE(418), + [sym_comment] = STATE(351), + [aux_sym_cell_path_repeat1] = STATE(376), + [anon_sym_export] = ACTIONS(961), + [anon_sym_alias] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_let_DASHenv] = ACTIONS(961), + [anon_sym_mut] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [aux_sym_cmd_identifier_token1] = ACTIONS(961), + [aux_sym_cmd_identifier_token2] = ACTIONS(961), + [aux_sym_cmd_identifier_token3] = ACTIONS(961), + [aux_sym_cmd_identifier_token4] = ACTIONS(961), + [aux_sym_cmd_identifier_token5] = ACTIONS(961), + [aux_sym_cmd_identifier_token6] = ACTIONS(961), + [aux_sym_cmd_identifier_token7] = ACTIONS(961), + [aux_sym_cmd_identifier_token8] = ACTIONS(961), + [aux_sym_cmd_identifier_token9] = ACTIONS(961), + [aux_sym_cmd_identifier_token10] = ACTIONS(961), + [aux_sym_cmd_identifier_token11] = ACTIONS(961), + [aux_sym_cmd_identifier_token12] = ACTIONS(961), + [aux_sym_cmd_identifier_token13] = ACTIONS(961), + [aux_sym_cmd_identifier_token14] = ACTIONS(961), + [aux_sym_cmd_identifier_token15] = ACTIONS(961), + [aux_sym_cmd_identifier_token16] = ACTIONS(961), + [aux_sym_cmd_identifier_token17] = ACTIONS(961), + [aux_sym_cmd_identifier_token18] = ACTIONS(961), + [aux_sym_cmd_identifier_token19] = ACTIONS(961), + [aux_sym_cmd_identifier_token20] = ACTIONS(961), + [aux_sym_cmd_identifier_token21] = ACTIONS(961), + [aux_sym_cmd_identifier_token22] = ACTIONS(961), + [aux_sym_cmd_identifier_token23] = ACTIONS(961), + [aux_sym_cmd_identifier_token24] = ACTIONS(961), + [aux_sym_cmd_identifier_token25] = ACTIONS(961), + [aux_sym_cmd_identifier_token26] = ACTIONS(961), + [aux_sym_cmd_identifier_token27] = ACTIONS(961), + [aux_sym_cmd_identifier_token28] = ACTIONS(961), + [aux_sym_cmd_identifier_token29] = ACTIONS(961), + [aux_sym_cmd_identifier_token30] = ACTIONS(961), + [aux_sym_cmd_identifier_token31] = ACTIONS(961), + [aux_sym_cmd_identifier_token32] = ACTIONS(961), + [aux_sym_cmd_identifier_token33] = ACTIONS(961), + [aux_sym_cmd_identifier_token34] = ACTIONS(961), + [aux_sym_cmd_identifier_token35] = ACTIONS(961), + [aux_sym_cmd_identifier_token36] = ACTIONS(961), + [aux_sym_cmd_identifier_token37] = ACTIONS(961), + [aux_sym_cmd_identifier_token38] = ACTIONS(961), + [aux_sym_cmd_identifier_token39] = ACTIONS(961), + [aux_sym_cmd_identifier_token40] = ACTIONS(961), + [anon_sym_def] = ACTIONS(961), + [anon_sym_export_DASHenv] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_error] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_make] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_try] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_source] = ACTIONS(961), + [anon_sym_source_DASHenv] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_hide_DASHenv] = ACTIONS(961), + [anon_sym_overlay] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(961), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(961), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(961), + [aux_sym__val_number_decimal_token3] = ACTIONS(961), + [aux_sym__val_number_decimal_token4] = ACTIONS(961), + [aux_sym__val_number_token1] = ACTIONS(961), + [aux_sym__val_number_token2] = ACTIONS(961), + [aux_sym__val_number_token3] = ACTIONS(961), + [aux_sym__val_number_token4] = ACTIONS(961), + [aux_sym__val_number_token5] = ACTIONS(961), + [aux_sym__val_number_token6] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym__str_single_quotes] = ACTIONS(961), + [sym__str_back_ticks] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(961), + [sym__entry_separator] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(963), + }, + [352] = { + [sym_comment] = STATE(352), + [anon_sym_export] = ACTIONS(1607), + [anon_sym_alias] = ACTIONS(1607), + [anon_sym_let] = ACTIONS(1607), + [anon_sym_let_DASHenv] = ACTIONS(1607), + [anon_sym_mut] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [aux_sym_cmd_identifier_token1] = ACTIONS(1607), + [aux_sym_cmd_identifier_token2] = ACTIONS(1607), + [aux_sym_cmd_identifier_token3] = ACTIONS(1607), + [aux_sym_cmd_identifier_token4] = ACTIONS(1607), + [aux_sym_cmd_identifier_token5] = ACTIONS(1607), + [aux_sym_cmd_identifier_token6] = ACTIONS(1607), + [aux_sym_cmd_identifier_token7] = ACTIONS(1607), + [aux_sym_cmd_identifier_token8] = ACTIONS(1607), + [aux_sym_cmd_identifier_token9] = ACTIONS(1607), + [aux_sym_cmd_identifier_token10] = ACTIONS(1607), + [aux_sym_cmd_identifier_token11] = ACTIONS(1607), + [aux_sym_cmd_identifier_token12] = ACTIONS(1607), + [aux_sym_cmd_identifier_token13] = ACTIONS(1607), + [aux_sym_cmd_identifier_token14] = ACTIONS(1607), + [aux_sym_cmd_identifier_token15] = ACTIONS(1607), + [aux_sym_cmd_identifier_token16] = ACTIONS(1607), + [aux_sym_cmd_identifier_token17] = ACTIONS(1607), + [aux_sym_cmd_identifier_token18] = ACTIONS(1607), + [aux_sym_cmd_identifier_token19] = ACTIONS(1607), + [aux_sym_cmd_identifier_token20] = ACTIONS(1607), + [aux_sym_cmd_identifier_token21] = ACTIONS(1607), + [aux_sym_cmd_identifier_token22] = ACTIONS(1607), + [aux_sym_cmd_identifier_token23] = ACTIONS(1607), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1607), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1607), + [aux_sym_cmd_identifier_token28] = ACTIONS(1607), + [aux_sym_cmd_identifier_token29] = ACTIONS(1607), + [aux_sym_cmd_identifier_token30] = ACTIONS(1607), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1607), + [aux_sym_cmd_identifier_token37] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1607), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [anon_sym_def] = ACTIONS(1607), + [anon_sym_export_DASHenv] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_module] = ACTIONS(1607), + [anon_sym_use] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_make] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_else] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_try] = ACTIONS(1607), + [anon_sym_catch] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_source] = ACTIONS(1607), + [anon_sym_source_DASHenv] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_hide] = ACTIONS(1607), + [anon_sym_hide_DASHenv] = ACTIONS(1607), + [anon_sym_overlay] = ACTIONS(1607), + [anon_sym_as] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1607), + [sym__entry_separator] = ACTIONS(1609), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1609), + }, + [353] = { + [sym_comment] = STATE(353), + [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), + [aux_sym_cmd_identifier_token37] = 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(1621), + [anon_sym_error] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_in2] = 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_as] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [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), + [aux_sym__val_number_token4] = ACTIONS(1621), + [aux_sym__val_number_token5] = ACTIONS(1621), + [aux_sym__val_number_token6] = ACTIONS(1621), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1623), + }, + [354] = { + [sym_cell_path] = STATE(473), + [sym_path] = STATE(418), + [sym_comment] = STATE(354), + [aux_sym_cell_path_repeat1] = STATE(376), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [355] = { + [sym_comment] = STATE(355), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_alias] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_let_DASHenv] = ACTIONS(1673), + [anon_sym_mut] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [aux_sym_cmd_identifier_token1] = ACTIONS(1673), + [aux_sym_cmd_identifier_token2] = ACTIONS(1673), + [aux_sym_cmd_identifier_token3] = ACTIONS(1673), + [aux_sym_cmd_identifier_token4] = ACTIONS(1673), + [aux_sym_cmd_identifier_token5] = ACTIONS(1673), + [aux_sym_cmd_identifier_token6] = ACTIONS(1673), + [aux_sym_cmd_identifier_token7] = ACTIONS(1673), + [aux_sym_cmd_identifier_token8] = ACTIONS(1673), + [aux_sym_cmd_identifier_token9] = ACTIONS(1673), + [aux_sym_cmd_identifier_token10] = ACTIONS(1673), + [aux_sym_cmd_identifier_token11] = ACTIONS(1673), + [aux_sym_cmd_identifier_token12] = ACTIONS(1673), + [aux_sym_cmd_identifier_token13] = ACTIONS(1673), + [aux_sym_cmd_identifier_token14] = ACTIONS(1673), + [aux_sym_cmd_identifier_token15] = ACTIONS(1673), + [aux_sym_cmd_identifier_token16] = ACTIONS(1673), + [aux_sym_cmd_identifier_token17] = ACTIONS(1673), + [aux_sym_cmd_identifier_token18] = ACTIONS(1673), + [aux_sym_cmd_identifier_token19] = ACTIONS(1673), + [aux_sym_cmd_identifier_token20] = ACTIONS(1673), + [aux_sym_cmd_identifier_token21] = ACTIONS(1673), + [aux_sym_cmd_identifier_token22] = ACTIONS(1673), + [aux_sym_cmd_identifier_token23] = ACTIONS(1673), + [aux_sym_cmd_identifier_token24] = ACTIONS(1673), + [aux_sym_cmd_identifier_token25] = ACTIONS(1673), + [aux_sym_cmd_identifier_token26] = ACTIONS(1673), + [aux_sym_cmd_identifier_token27] = ACTIONS(1673), + [aux_sym_cmd_identifier_token28] = ACTIONS(1673), + [aux_sym_cmd_identifier_token29] = ACTIONS(1673), + [aux_sym_cmd_identifier_token30] = ACTIONS(1673), + [aux_sym_cmd_identifier_token31] = ACTIONS(1673), + [aux_sym_cmd_identifier_token32] = ACTIONS(1673), + [aux_sym_cmd_identifier_token33] = ACTIONS(1673), + [aux_sym_cmd_identifier_token34] = ACTIONS(1673), + [aux_sym_cmd_identifier_token35] = ACTIONS(1673), + [aux_sym_cmd_identifier_token36] = ACTIONS(1673), + [aux_sym_cmd_identifier_token37] = ACTIONS(1673), + [aux_sym_cmd_identifier_token38] = ACTIONS(1673), + [aux_sym_cmd_identifier_token39] = ACTIONS(1673), + [aux_sym_cmd_identifier_token40] = ACTIONS(1673), + [anon_sym_def] = ACTIONS(1673), + [anon_sym_export_DASHenv] = ACTIONS(1673), + [anon_sym_extern] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_use] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_error] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_loop] = ACTIONS(1673), + [anon_sym_make] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_match] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_catch] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_source] = ACTIONS(1673), + [anon_sym_source_DASHenv] = ACTIONS(1673), + [anon_sym_register] = ACTIONS(1673), + [anon_sym_hide] = ACTIONS(1673), + [anon_sym_hide_DASHenv] = ACTIONS(1673), + [anon_sym_overlay] = ACTIONS(1673), + [anon_sym_as] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1673), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1673), + [aux_sym__val_number_decimal_token3] = ACTIONS(1673), + [aux_sym__val_number_decimal_token4] = ACTIONS(1673), + [aux_sym__val_number_token1] = ACTIONS(1673), + [aux_sym__val_number_token2] = ACTIONS(1673), + [aux_sym__val_number_token3] = ACTIONS(1673), + [aux_sym__val_number_token4] = ACTIONS(1673), + [aux_sym__val_number_token5] = ACTIONS(1673), + [aux_sym__val_number_token6] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1673), + [sym__str_single_quotes] = ACTIONS(1673), + [sym__str_back_ticks] = ACTIONS(1673), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1673), + [sym__entry_separator] = ACTIONS(1675), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1675), + }, + [356] = { + [sym_comment] = STATE(356), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1743), + [aux_sym__immediate_decimal_token2] = ACTIONS(1745), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [357] = { + [sym__expr_parenthesized_immediate] = STATE(703), + [sym__immediate_decimal] = STATE(704), + [sym_val_variable] = STATE(703), + [sym_comment] = STATE(357), + [anon_sym_export] = ACTIONS(1581), + [anon_sym_alias] = ACTIONS(1581), + [anon_sym_let] = ACTIONS(1581), + [anon_sym_let_DASHenv] = ACTIONS(1581), + [anon_sym_mut] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [aux_sym_cmd_identifier_token1] = ACTIONS(1581), + [aux_sym_cmd_identifier_token2] = ACTIONS(1591), + [aux_sym_cmd_identifier_token3] = ACTIONS(1591), + [aux_sym_cmd_identifier_token4] = ACTIONS(1591), + [aux_sym_cmd_identifier_token5] = ACTIONS(1591), + [aux_sym_cmd_identifier_token6] = ACTIONS(1591), + [aux_sym_cmd_identifier_token7] = ACTIONS(1591), + [aux_sym_cmd_identifier_token8] = ACTIONS(1581), + [aux_sym_cmd_identifier_token9] = ACTIONS(1581), + [aux_sym_cmd_identifier_token10] = ACTIONS(1591), + [aux_sym_cmd_identifier_token11] = ACTIONS(1591), + [aux_sym_cmd_identifier_token12] = ACTIONS(1581), + [aux_sym_cmd_identifier_token13] = ACTIONS(1581), + [aux_sym_cmd_identifier_token14] = ACTIONS(1581), + [aux_sym_cmd_identifier_token15] = ACTIONS(1581), + [aux_sym_cmd_identifier_token16] = ACTIONS(1591), + [aux_sym_cmd_identifier_token17] = ACTIONS(1591), + [aux_sym_cmd_identifier_token18] = ACTIONS(1591), + [aux_sym_cmd_identifier_token19] = ACTIONS(1591), + [aux_sym_cmd_identifier_token20] = ACTIONS(1591), + [aux_sym_cmd_identifier_token21] = ACTIONS(1591), + [aux_sym_cmd_identifier_token22] = ACTIONS(1591), + [aux_sym_cmd_identifier_token23] = ACTIONS(1591), + [aux_sym_cmd_identifier_token24] = ACTIONS(1591), + [aux_sym_cmd_identifier_token25] = ACTIONS(1591), + [aux_sym_cmd_identifier_token26] = ACTIONS(1591), + [aux_sym_cmd_identifier_token27] = ACTIONS(1591), + [aux_sym_cmd_identifier_token28] = ACTIONS(1591), + [aux_sym_cmd_identifier_token29] = ACTIONS(1591), + [aux_sym_cmd_identifier_token30] = ACTIONS(1591), + [aux_sym_cmd_identifier_token31] = ACTIONS(1591), + [aux_sym_cmd_identifier_token32] = ACTIONS(1591), + [aux_sym_cmd_identifier_token33] = ACTIONS(1591), + [aux_sym_cmd_identifier_token34] = ACTIONS(1581), + [aux_sym_cmd_identifier_token35] = ACTIONS(1591), + [aux_sym_cmd_identifier_token36] = ACTIONS(1591), + [aux_sym_cmd_identifier_token37] = ACTIONS(1591), + [aux_sym_cmd_identifier_token38] = ACTIONS(1581), + [aux_sym_cmd_identifier_token39] = ACTIONS(1591), + [aux_sym_cmd_identifier_token40] = ACTIONS(1591), + [anon_sym_def] = ACTIONS(1581), + [anon_sym_export_DASHenv] = ACTIONS(1581), + [anon_sym_extern] = ACTIONS(1581), + [anon_sym_module] = ACTIONS(1581), + [anon_sym_use] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1679), + [anon_sym_error] = ACTIONS(1581), + [anon_sym_DASH2] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_in2] = ACTIONS(1581), + [anon_sym_loop] = ACTIONS(1581), + [anon_sym_make] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_catch] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_source] = ACTIONS(1581), + [anon_sym_source_DASHenv] = ACTIONS(1581), + [anon_sym_register] = ACTIONS(1581), + [anon_sym_hide] = ACTIONS(1581), + [anon_sym_hide_DASHenv] = ACTIONS(1581), + [anon_sym_overlay] = ACTIONS(1581), + [anon_sym_as] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), + [aux_sym__immediate_decimal_token1] = ACTIONS(1747), + [aux_sym__immediate_decimal_token3] = ACTIONS(1749), + [aux_sym__immediate_decimal_token4] = ACTIONS(1751), + [aux_sym__immediate_decimal_token5] = ACTIONS(1753), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1581), + [aux_sym__val_number_decimal_token2] = ACTIONS(1581), + [aux_sym__val_number_decimal_token3] = ACTIONS(1581), + [aux_sym__val_number_decimal_token4] = ACTIONS(1581), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [aux_sym__val_number_token4] = ACTIONS(1581), + [aux_sym__val_number_token5] = ACTIONS(1581), + [aux_sym__val_number_token6] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1591), + }, + [358] = { + [sym_comment] = STATE(358), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_PLUS2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), + [aux_sym__immediate_decimal_token2] = ACTIONS(1761), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = 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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [359] = { + [sym_comment] = STATE(359), + [anon_sym_export] = ACTIONS(1607), + [anon_sym_alias] = ACTIONS(1607), + [anon_sym_let] = ACTIONS(1607), + [anon_sym_let_DASHenv] = ACTIONS(1607), + [anon_sym_mut] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [aux_sym_cmd_identifier_token1] = ACTIONS(1607), + [aux_sym_cmd_identifier_token2] = ACTIONS(1609), + [aux_sym_cmd_identifier_token3] = ACTIONS(1609), + [aux_sym_cmd_identifier_token4] = ACTIONS(1609), + [aux_sym_cmd_identifier_token5] = ACTIONS(1609), + [aux_sym_cmd_identifier_token6] = ACTIONS(1609), + [aux_sym_cmd_identifier_token7] = ACTIONS(1609), + [aux_sym_cmd_identifier_token8] = ACTIONS(1607), + [aux_sym_cmd_identifier_token9] = ACTIONS(1607), + [aux_sym_cmd_identifier_token10] = ACTIONS(1609), + [aux_sym_cmd_identifier_token11] = ACTIONS(1609), + [aux_sym_cmd_identifier_token12] = ACTIONS(1607), + [aux_sym_cmd_identifier_token13] = ACTIONS(1607), + [aux_sym_cmd_identifier_token14] = ACTIONS(1607), + [aux_sym_cmd_identifier_token15] = ACTIONS(1607), + [aux_sym_cmd_identifier_token16] = ACTIONS(1609), + [aux_sym_cmd_identifier_token17] = ACTIONS(1609), + [aux_sym_cmd_identifier_token18] = ACTIONS(1609), + [aux_sym_cmd_identifier_token19] = ACTIONS(1609), + [aux_sym_cmd_identifier_token20] = ACTIONS(1609), + [aux_sym_cmd_identifier_token21] = ACTIONS(1609), + [aux_sym_cmd_identifier_token22] = ACTIONS(1609), + [aux_sym_cmd_identifier_token23] = ACTIONS(1609), + [aux_sym_cmd_identifier_token24] = ACTIONS(1609), + [aux_sym_cmd_identifier_token25] = ACTIONS(1609), + [aux_sym_cmd_identifier_token26] = ACTIONS(1609), + [aux_sym_cmd_identifier_token27] = ACTIONS(1609), + [aux_sym_cmd_identifier_token28] = ACTIONS(1609), + [aux_sym_cmd_identifier_token29] = ACTIONS(1609), + [aux_sym_cmd_identifier_token30] = ACTIONS(1609), + [aux_sym_cmd_identifier_token31] = ACTIONS(1609), + [aux_sym_cmd_identifier_token32] = ACTIONS(1609), + [aux_sym_cmd_identifier_token33] = ACTIONS(1609), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1609), + [aux_sym_cmd_identifier_token36] = ACTIONS(1609), + [aux_sym_cmd_identifier_token37] = ACTIONS(1609), + [aux_sym_cmd_identifier_token38] = ACTIONS(1607), + [aux_sym_cmd_identifier_token39] = ACTIONS(1609), + [aux_sym_cmd_identifier_token40] = ACTIONS(1609), + [anon_sym_def] = ACTIONS(1607), + [anon_sym_export_DASHenv] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_module] = ACTIONS(1607), + [anon_sym_use] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1609), + [anon_sym_error] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_make] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_else] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1607), + [anon_sym_catch] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_source] = ACTIONS(1607), + [anon_sym_source_DASHenv] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_hide] = ACTIONS(1607), + [anon_sym_hide_DASHenv] = ACTIONS(1607), + [anon_sym_overlay] = ACTIONS(1607), + [anon_sym_as] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1609), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), + }, + [360] = { + [sym_comment] = STATE(360), + [anon_sym_export] = ACTIONS(1763), + [anon_sym_alias] = ACTIONS(1763), + [anon_sym_let] = ACTIONS(1763), + [anon_sym_let_DASHenv] = ACTIONS(1763), + [anon_sym_mut] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [aux_sym_cmd_identifier_token1] = ACTIONS(1763), + [aux_sym_cmd_identifier_token2] = ACTIONS(1763), + [aux_sym_cmd_identifier_token3] = ACTIONS(1763), + [aux_sym_cmd_identifier_token4] = ACTIONS(1763), + [aux_sym_cmd_identifier_token5] = ACTIONS(1763), + [aux_sym_cmd_identifier_token6] = ACTIONS(1763), + [aux_sym_cmd_identifier_token7] = ACTIONS(1763), + [aux_sym_cmd_identifier_token8] = ACTIONS(1763), + [aux_sym_cmd_identifier_token9] = ACTIONS(1763), + [aux_sym_cmd_identifier_token10] = ACTIONS(1763), + [aux_sym_cmd_identifier_token11] = ACTIONS(1763), + [aux_sym_cmd_identifier_token12] = ACTIONS(1763), + [aux_sym_cmd_identifier_token13] = ACTIONS(1763), + [aux_sym_cmd_identifier_token14] = ACTIONS(1763), + [aux_sym_cmd_identifier_token15] = ACTIONS(1763), + [aux_sym_cmd_identifier_token16] = ACTIONS(1763), + [aux_sym_cmd_identifier_token17] = ACTIONS(1763), + [aux_sym_cmd_identifier_token18] = ACTIONS(1763), + [aux_sym_cmd_identifier_token19] = ACTIONS(1763), + [aux_sym_cmd_identifier_token20] = ACTIONS(1763), + [aux_sym_cmd_identifier_token21] = ACTIONS(1763), + [aux_sym_cmd_identifier_token22] = ACTIONS(1763), + [aux_sym_cmd_identifier_token23] = ACTIONS(1763), [aux_sym_cmd_identifier_token24] = ACTIONS(1763), - [aux_sym_cmd_identifier_token25] = ACTIONS(1761), + [aux_sym_cmd_identifier_token25] = ACTIONS(1763), [aux_sym_cmd_identifier_token26] = ACTIONS(1763), - [aux_sym_cmd_identifier_token27] = ACTIONS(1761), - [aux_sym_cmd_identifier_token28] = ACTIONS(1761), - [aux_sym_cmd_identifier_token29] = ACTIONS(1761), - [aux_sym_cmd_identifier_token30] = ACTIONS(1761), + [aux_sym_cmd_identifier_token27] = ACTIONS(1763), + [aux_sym_cmd_identifier_token28] = ACTIONS(1763), + [aux_sym_cmd_identifier_token29] = ACTIONS(1763), + [aux_sym_cmd_identifier_token30] = ACTIONS(1763), [aux_sym_cmd_identifier_token31] = ACTIONS(1763), [aux_sym_cmd_identifier_token32] = ACTIONS(1763), [aux_sym_cmd_identifier_token33] = ACTIONS(1763), [aux_sym_cmd_identifier_token34] = ACTIONS(1763), [aux_sym_cmd_identifier_token35] = ACTIONS(1763), - [aux_sym_cmd_identifier_token36] = ACTIONS(1761), - [anon_sym_true] = ACTIONS(1763), - [anon_sym_false] = ACTIONS(1763), - [anon_sym_null] = ACTIONS(1763), - [aux_sym_cmd_identifier_token38] = ACTIONS(1761), + [aux_sym_cmd_identifier_token36] = ACTIONS(1763), + [aux_sym_cmd_identifier_token37] = ACTIONS(1763), + [aux_sym_cmd_identifier_token38] = ACTIONS(1763), [aux_sym_cmd_identifier_token39] = ACTIONS(1763), [aux_sym_cmd_identifier_token40] = ACTIONS(1763), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1761), - [anon_sym_export_DASHenv] = ACTIONS(1761), - [anon_sym_extern] = ACTIONS(1761), - [anon_sym_module] = ACTIONS(1761), - [anon_sym_use] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_def] = ACTIONS(1763), + [anon_sym_export_DASHenv] = ACTIONS(1763), + [anon_sym_extern] = ACTIONS(1763), + [anon_sym_module] = ACTIONS(1763), + [anon_sym_use] = ACTIONS(1763), [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1761), - [anon_sym_error] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1761), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_loop] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1761), - [anon_sym_do] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_try] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_source] = ACTIONS(1761), - [anon_sym_source_DASHenv] = ACTIONS(1761), - [anon_sym_register] = ACTIONS(1761), - [anon_sym_hide] = ACTIONS(1761), - [anon_sym_hide_DASHenv] = ACTIONS(1761), - [anon_sym_overlay] = ACTIONS(1761), - [anon_sym_where] = ACTIONS(1763), - [aux_sym_expr_unary_token1] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT] = ACTIONS(1763), - [aux_sym__val_number_decimal_token1] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1763), + [anon_sym_error] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_loop] = ACTIONS(1763), + [anon_sym_make] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1763), + [anon_sym_do] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_else] = ACTIONS(1763), + [anon_sym_match] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_try] = ACTIONS(1763), + [anon_sym_catch] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_source] = ACTIONS(1763), + [anon_sym_source_DASHenv] = ACTIONS(1763), + [anon_sym_register] = ACTIONS(1763), + [anon_sym_hide] = ACTIONS(1763), + [anon_sym_hide_DASHenv] = ACTIONS(1763), + [anon_sym_overlay] = ACTIONS(1763), + [anon_sym_as] = ACTIONS(1763), + [anon_sym_LPAREN2] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1763), + [aux_sym__val_number_decimal_token1] = ACTIONS(1763), [aux_sym__val_number_decimal_token2] = ACTIONS(1763), [aux_sym__val_number_decimal_token3] = ACTIONS(1763), [aux_sym__val_number_decimal_token4] = ACTIONS(1763), [aux_sym__val_number_token1] = ACTIONS(1763), [aux_sym__val_number_token2] = ACTIONS(1763), [aux_sym__val_number_token3] = ACTIONS(1763), - [anon_sym_0b] = ACTIONS(1761), - [anon_sym_0o] = ACTIONS(1761), - [anon_sym_0x] = ACTIONS(1761), - [sym_val_date] = ACTIONS(1763), + [aux_sym__val_number_token4] = ACTIONS(1763), + [aux_sym__val_number_token5] = ACTIONS(1763), + [aux_sym__val_number_token6] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1763), [anon_sym_DQUOTE] = ACTIONS(1763), [sym__str_single_quotes] = ACTIONS(1763), [sym__str_back_ticks] = ACTIONS(1763), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), - [aux_sym_env_var_token1] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1763), + [sym__entry_separator] = ACTIONS(1765), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1765), }, - [294] = { - [sym_comment] = STATE(294), + [361] = { + [sym_comment] = STATE(361), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_alias] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_let_DASHenv] = ACTIONS(1673), + [anon_sym_mut] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [aux_sym_cmd_identifier_token1] = ACTIONS(1673), + [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(1673), + [aux_sym_cmd_identifier_token9] = ACTIONS(1673), + [aux_sym_cmd_identifier_token10] = ACTIONS(1675), + [aux_sym_cmd_identifier_token11] = ACTIONS(1675), + [aux_sym_cmd_identifier_token12] = ACTIONS(1673), + [aux_sym_cmd_identifier_token13] = ACTIONS(1673), + [aux_sym_cmd_identifier_token14] = ACTIONS(1673), + [aux_sym_cmd_identifier_token15] = ACTIONS(1673), + [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(1673), + [aux_sym_cmd_identifier_token35] = ACTIONS(1675), + [aux_sym_cmd_identifier_token36] = ACTIONS(1675), + [aux_sym_cmd_identifier_token37] = ACTIONS(1675), + [aux_sym_cmd_identifier_token38] = ACTIONS(1673), + [aux_sym_cmd_identifier_token39] = ACTIONS(1675), + [aux_sym_cmd_identifier_token40] = ACTIONS(1675), + [anon_sym_def] = ACTIONS(1673), + [anon_sym_export_DASHenv] = ACTIONS(1673), + [anon_sym_extern] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_use] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_error] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_loop] = ACTIONS(1673), + [anon_sym_make] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_match] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_catch] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_source] = ACTIONS(1673), + [anon_sym_source_DASHenv] = ACTIONS(1673), + [anon_sym_register] = ACTIONS(1673), + [anon_sym_hide] = ACTIONS(1673), + [anon_sym_hide_DASHenv] = ACTIONS(1673), + [anon_sym_overlay] = ACTIONS(1673), + [anon_sym_as] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [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), + [aux_sym__val_number_token4] = ACTIONS(1673), + [aux_sym__val_number_token5] = ACTIONS(1673), + [aux_sym__val_number_token6] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1673), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1675), + }, + [362] = { + [sym_cell_path] = STATE(464), + [sym_path] = STATE(418), + [sym_comment] = STATE(362), + [aux_sym_cell_path_repeat1] = STATE(376), [anon_sym_export] = ACTIONS(1769), [anon_sym_alias] = ACTIONS(1769), [anon_sym_let] = ACTIONS(1769), @@ -111636,9 +115387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(1769), [aux_sym_cmd_identifier_token35] = ACTIONS(1769), [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), + [aux_sym_cmd_identifier_token37] = ACTIONS(1769), [aux_sym_cmd_identifier_token38] = ACTIONS(1769), [aux_sym_cmd_identifier_token39] = ACTIONS(1769), [aux_sym_cmd_identifier_token40] = ACTIONS(1769), @@ -111650,12 +115399,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1769), [anon_sym_DOLLAR] = ACTIONS(1769), [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DASH2] = ACTIONS(1769), [anon_sym_break] = ACTIONS(1769), [anon_sym_continue] = ACTIONS(1769), [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), + [anon_sym_in2] = ACTIONS(1769), [anon_sym_loop] = ACTIONS(1769), [anon_sym_make] = ACTIONS(1769), [anon_sym_while] = ACTIONS(1769), @@ -111673,14 +115421,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1769), [anon_sym_hide_DASHenv] = ACTIONS(1769), [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), [anon_sym_as] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1769), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(1733), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(1773), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), [aux_sym__val_number_decimal_token1] = ACTIONS(1769), [aux_sym__val_number_decimal_token2] = ACTIONS(1769), @@ -111689,1189 +115436,980 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(1769), [aux_sym__val_number_token2] = ACTIONS(1769), [aux_sym__val_number_token3] = ACTIONS(1769), + [aux_sym__val_number_token4] = ACTIONS(1769), + [aux_sym__val_number_token5] = ACTIONS(1769), + [aux_sym__val_number_token6] = ACTIONS(1769), [anon_sym_DQUOTE] = ACTIONS(1769), [sym__str_single_quotes] = ACTIONS(1769), [sym__str_back_ticks] = ACTIONS(1769), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), [sym__entry_separator] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1771), }, - [295] = { - [sym_comment] = STATE(295), - [anon_sym_export] = ACTIONS(1356), - [anon_sym_alias] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_let_DASHenv] = ACTIONS(1356), - [anon_sym_mut] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [aux_sym_cmd_identifier_token1] = ACTIONS(1356), - [aux_sym_cmd_identifier_token2] = ACTIONS(1356), - [aux_sym_cmd_identifier_token3] = ACTIONS(1356), - [aux_sym_cmd_identifier_token4] = ACTIONS(1356), - [aux_sym_cmd_identifier_token5] = ACTIONS(1356), - [aux_sym_cmd_identifier_token6] = ACTIONS(1356), - [aux_sym_cmd_identifier_token7] = ACTIONS(1356), - [aux_sym_cmd_identifier_token8] = ACTIONS(1356), - [aux_sym_cmd_identifier_token9] = ACTIONS(1356), - [aux_sym_cmd_identifier_token10] = ACTIONS(1356), - [aux_sym_cmd_identifier_token11] = ACTIONS(1356), - [aux_sym_cmd_identifier_token12] = ACTIONS(1356), - [aux_sym_cmd_identifier_token13] = ACTIONS(1356), - [aux_sym_cmd_identifier_token14] = ACTIONS(1356), - [aux_sym_cmd_identifier_token15] = ACTIONS(1356), - [aux_sym_cmd_identifier_token16] = ACTIONS(1356), - [aux_sym_cmd_identifier_token17] = ACTIONS(1356), - [aux_sym_cmd_identifier_token18] = ACTIONS(1356), - [aux_sym_cmd_identifier_token19] = ACTIONS(1356), - [aux_sym_cmd_identifier_token20] = ACTIONS(1356), - [aux_sym_cmd_identifier_token21] = ACTIONS(1356), - [aux_sym_cmd_identifier_token22] = ACTIONS(1356), - [aux_sym_cmd_identifier_token23] = ACTIONS(1356), - [aux_sym_cmd_identifier_token24] = ACTIONS(1359), - [aux_sym_cmd_identifier_token25] = ACTIONS(1356), - [aux_sym_cmd_identifier_token26] = ACTIONS(1359), - [aux_sym_cmd_identifier_token27] = ACTIONS(1356), - [aux_sym_cmd_identifier_token28] = ACTIONS(1356), - [aux_sym_cmd_identifier_token29] = ACTIONS(1356), - [aux_sym_cmd_identifier_token30] = ACTIONS(1356), - [aux_sym_cmd_identifier_token31] = ACTIONS(1359), - [aux_sym_cmd_identifier_token32] = ACTIONS(1359), - [aux_sym_cmd_identifier_token33] = ACTIONS(1359), - [aux_sym_cmd_identifier_token34] = ACTIONS(1359), - [aux_sym_cmd_identifier_token35] = ACTIONS(1359), - [aux_sym_cmd_identifier_token36] = ACTIONS(1356), - [anon_sym_true] = ACTIONS(1359), - [anon_sym_false] = ACTIONS(1359), - [anon_sym_null] = ACTIONS(1359), - [aux_sym_cmd_identifier_token38] = ACTIONS(1356), - [aux_sym_cmd_identifier_token39] = ACTIONS(1359), - [aux_sym_cmd_identifier_token40] = ACTIONS(1359), - [sym__newline] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_def] = ACTIONS(1356), - [anon_sym_export_DASHenv] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_module] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_error] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_source] = ACTIONS(1356), - [anon_sym_source_DASHenv] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_hide] = ACTIONS(1356), - [anon_sym_hide_DASHenv] = ACTIONS(1356), - [anon_sym_overlay] = ACTIONS(1356), - [anon_sym_where] = ACTIONS(1359), - [aux_sym_expr_unary_token1] = ACTIONS(1359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_DOT_DOT_LT] = ACTIONS(1359), - [aux_sym__val_number_decimal_token1] = ACTIONS(1356), - [aux_sym__val_number_decimal_token2] = ACTIONS(1359), - [aux_sym__val_number_decimal_token3] = ACTIONS(1359), - [aux_sym__val_number_decimal_token4] = ACTIONS(1359), - [aux_sym__val_number_token1] = ACTIONS(1359), - [aux_sym__val_number_token2] = ACTIONS(1359), - [aux_sym__val_number_token3] = ACTIONS(1359), - [anon_sym_0b] = ACTIONS(1356), - [anon_sym_0o] = ACTIONS(1356), - [anon_sym_0x] = ACTIONS(1356), - [sym_val_date] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [sym__str_single_quotes] = ACTIONS(1359), - [sym__str_back_ticks] = ACTIONS(1359), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1359), - [aux_sym_env_var_token1] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1359), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1359), - }, - [296] = { - [sym_comment] = STATE(296), - [aux_sym_shebang_repeat1] = STATE(296), - [anon_sym_export] = ACTIONS(1349), - [anon_sym_alias] = ACTIONS(1349), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_let_DASHenv] = ACTIONS(1349), - [anon_sym_mut] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [aux_sym_cmd_identifier_token1] = ACTIONS(1349), - [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(1349), - [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(1349), - [aux_sym_cmd_identifier_token14] = ACTIONS(1349), - [aux_sym_cmd_identifier_token15] = ACTIONS(1349), - [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(1349), - [aux_sym_cmd_identifier_token24] = ACTIONS(1351), - [aux_sym_cmd_identifier_token25] = ACTIONS(1349), - [aux_sym_cmd_identifier_token26] = ACTIONS(1351), - [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(1351), - [aux_sym_cmd_identifier_token32] = ACTIONS(1351), - [aux_sym_cmd_identifier_token33] = ACTIONS(1351), - [aux_sym_cmd_identifier_token34] = ACTIONS(1351), - [aux_sym_cmd_identifier_token35] = ACTIONS(1351), - [aux_sym_cmd_identifier_token36] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(1351), - [anon_sym_false] = ACTIONS(1351), - [anon_sym_null] = ACTIONS(1351), - [aux_sym_cmd_identifier_token38] = ACTIONS(1349), - [aux_sym_cmd_identifier_token39] = ACTIONS(1351), - [aux_sym_cmd_identifier_token40] = ACTIONS(1351), - [sym__newline] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_def] = ACTIONS(1349), - [anon_sym_export_DASHenv] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym_module] = ACTIONS(1349), - [anon_sym_use] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_DOLLAR] = ACTIONS(1349), - [anon_sym_error] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_loop] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_do] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_match] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_try] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_source] = ACTIONS(1349), - [anon_sym_source_DASHenv] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_hide] = ACTIONS(1349), - [anon_sym_hide_DASHenv] = ACTIONS(1349), - [anon_sym_overlay] = ACTIONS(1349), - [anon_sym_where] = ACTIONS(1351), - [aux_sym_expr_unary_token1] = ACTIONS(1351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), - [anon_sym_DOT_DOT_LT] = ACTIONS(1351), - [aux_sym__val_number_decimal_token1] = ACTIONS(1349), - [aux_sym__val_number_decimal_token2] = ACTIONS(1351), - [aux_sym__val_number_decimal_token3] = ACTIONS(1351), - [aux_sym__val_number_decimal_token4] = ACTIONS(1351), - [aux_sym__val_number_token1] = ACTIONS(1351), - [aux_sym__val_number_token2] = ACTIONS(1351), - [aux_sym__val_number_token3] = ACTIONS(1351), - [anon_sym_0b] = ACTIONS(1349), - [anon_sym_0o] = ACTIONS(1349), - [anon_sym_0x] = ACTIONS(1349), - [sym_val_date] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [sym__str_single_quotes] = ACTIONS(1351), - [sym__str_back_ticks] = ACTIONS(1351), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1351), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1351), - [aux_sym_env_var_token1] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1351), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1351), + [363] = { + [sym__expr_parenthesized_immediate] = STATE(7446), + [sym_comment] = STATE(363), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [aux_sym_cmd_identifier_token37] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1773), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1775), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1775), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [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), + [aux_sym__val_number_token4] = ACTIONS(1709), + [aux_sym__val_number_token5] = ACTIONS(1709), + [aux_sym__val_number_token6] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1777), + [sym_duration_unit] = ACTIONS(1779), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1721), }, - [297] = { - [sym_comment] = STATE(297), - [aux_sym_shebang_repeat1] = STATE(7176), - [aux_sym__parenthesized_body_repeat1] = STATE(297), - [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(1780), - [aux_sym_cmd_identifier_token25] = ACTIONS(1778), - [aux_sym_cmd_identifier_token26] = ACTIONS(1780), - [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(1780), - [aux_sym_cmd_identifier_token32] = ACTIONS(1780), - [aux_sym_cmd_identifier_token33] = ACTIONS(1780), - [aux_sym_cmd_identifier_token34] = ACTIONS(1780), - [aux_sym_cmd_identifier_token35] = ACTIONS(1780), - [aux_sym_cmd_identifier_token36] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1780), - [aux_sym_cmd_identifier_token40] = ACTIONS(1780), - [sym__newline] = ACTIONS(1782), - [anon_sym_SEMI] = ACTIONS(1785), - [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_LBRACK] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_error] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_try] = 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_where] = ACTIONS(1780), - [aux_sym_expr_unary_token1] = ACTIONS(1780), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_LT] = ACTIONS(1780), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1780), - [aux_sym__val_number_decimal_token4] = ACTIONS(1780), - [aux_sym__val_number_token1] = ACTIONS(1780), - [aux_sym__val_number_token2] = ACTIONS(1780), - [aux_sym__val_number_token3] = ACTIONS(1780), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym__str_single_quotes] = ACTIONS(1780), - [sym__str_back_ticks] = ACTIONS(1780), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1780), - [aux_sym_env_var_token1] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1780), + [364] = { + [sym__expr_parenthesized_immediate] = STATE(716), + [sym__immediate_decimal] = STATE(717), + [sym_val_variable] = STATE(716), + [sym_comment] = STATE(364), + [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(1693), + [aux_sym_cmd_identifier_token3] = ACTIONS(1693), + [aux_sym_cmd_identifier_token4] = ACTIONS(1693), + [aux_sym_cmd_identifier_token5] = ACTIONS(1693), + [aux_sym_cmd_identifier_token6] = ACTIONS(1693), + [aux_sym_cmd_identifier_token7] = ACTIONS(1693), + [aux_sym_cmd_identifier_token8] = ACTIONS(1691), + [aux_sym_cmd_identifier_token9] = ACTIONS(1691), + [aux_sym_cmd_identifier_token10] = ACTIONS(1693), + [aux_sym_cmd_identifier_token11] = ACTIONS(1693), + [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(1693), + [aux_sym_cmd_identifier_token17] = ACTIONS(1693), + [aux_sym_cmd_identifier_token18] = ACTIONS(1693), + [aux_sym_cmd_identifier_token19] = ACTIONS(1693), + [aux_sym_cmd_identifier_token20] = ACTIONS(1693), + [aux_sym_cmd_identifier_token21] = ACTIONS(1693), + [aux_sym_cmd_identifier_token22] = ACTIONS(1693), + [aux_sym_cmd_identifier_token23] = ACTIONS(1693), + [aux_sym_cmd_identifier_token24] = ACTIONS(1693), + [aux_sym_cmd_identifier_token25] = ACTIONS(1693), + [aux_sym_cmd_identifier_token26] = ACTIONS(1693), + [aux_sym_cmd_identifier_token27] = ACTIONS(1693), + [aux_sym_cmd_identifier_token28] = ACTIONS(1693), + [aux_sym_cmd_identifier_token29] = ACTIONS(1693), + [aux_sym_cmd_identifier_token30] = ACTIONS(1693), + [aux_sym_cmd_identifier_token31] = ACTIONS(1693), + [aux_sym_cmd_identifier_token32] = ACTIONS(1693), + [aux_sym_cmd_identifier_token33] = ACTIONS(1693), + [aux_sym_cmd_identifier_token34] = ACTIONS(1691), + [aux_sym_cmd_identifier_token35] = ACTIONS(1693), + [aux_sym_cmd_identifier_token36] = ACTIONS(1693), + [aux_sym_cmd_identifier_token37] = ACTIONS(1693), + [aux_sym_cmd_identifier_token38] = ACTIONS(1691), + [aux_sym_cmd_identifier_token39] = ACTIONS(1693), + [aux_sym_cmd_identifier_token40] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1691), + [anon_sym_export_DASHenv] = ACTIONS(1691), + [anon_sym_extern] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_use] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(1679), + [anon_sym_error] = ACTIONS(1691), + [anon_sym_DASH2] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_in2] = ACTIONS(1691), + [anon_sym_loop] = ACTIONS(1691), + [anon_sym_make] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_else] = ACTIONS(1691), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_catch] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_source] = ACTIONS(1691), + [anon_sym_source_DASHenv] = ACTIONS(1691), + [anon_sym_register] = ACTIONS(1691), + [anon_sym_hide] = ACTIONS(1691), + [anon_sym_hide_DASHenv] = ACTIONS(1691), + [anon_sym_overlay] = ACTIONS(1691), + [anon_sym_as] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1691), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), + [aux_sym__immediate_decimal_token1] = ACTIONS(1747), + [aux_sym__immediate_decimal_token3] = ACTIONS(1749), + [aux_sym__immediate_decimal_token4] = ACTIONS(1751), + [aux_sym__immediate_decimal_token5] = ACTIONS(1753), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), + [aux_sym__val_number_decimal_token1] = ACTIONS(1691), + [aux_sym__val_number_decimal_token2] = ACTIONS(1691), + [aux_sym__val_number_decimal_token3] = ACTIONS(1691), + [aux_sym__val_number_decimal_token4] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1693), + [aux_sym__val_number_token2] = ACTIONS(1693), + [aux_sym__val_number_token3] = ACTIONS(1693), + [aux_sym__val_number_token4] = ACTIONS(1691), + [aux_sym__val_number_token5] = ACTIONS(1691), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1693), }, - [298] = { - [sym_cell_path] = STATE(496), - [sym_path] = STATE(423), - [sym_comment] = STATE(298), - [aux_sym_cell_path_repeat1] = STATE(301), - [anon_sym_export] = ACTIONS(1664), - [anon_sym_alias] = ACTIONS(1664), - [anon_sym_let] = ACTIONS(1664), - [anon_sym_let_DASHenv] = ACTIONS(1664), - [anon_sym_mut] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [aux_sym_cmd_identifier_token1] = ACTIONS(1664), - [aux_sym_cmd_identifier_token2] = ACTIONS(1664), - [aux_sym_cmd_identifier_token3] = ACTIONS(1664), - [aux_sym_cmd_identifier_token4] = ACTIONS(1664), - [aux_sym_cmd_identifier_token5] = ACTIONS(1664), - [aux_sym_cmd_identifier_token6] = ACTIONS(1664), - [aux_sym_cmd_identifier_token7] = ACTIONS(1664), - [aux_sym_cmd_identifier_token8] = ACTIONS(1664), - [aux_sym_cmd_identifier_token9] = ACTIONS(1664), - [aux_sym_cmd_identifier_token10] = ACTIONS(1664), - [aux_sym_cmd_identifier_token11] = ACTIONS(1664), - [aux_sym_cmd_identifier_token12] = ACTIONS(1664), - [aux_sym_cmd_identifier_token13] = ACTIONS(1664), - [aux_sym_cmd_identifier_token14] = ACTIONS(1664), - [aux_sym_cmd_identifier_token15] = ACTIONS(1664), - [aux_sym_cmd_identifier_token16] = ACTIONS(1664), - [aux_sym_cmd_identifier_token17] = ACTIONS(1664), - [aux_sym_cmd_identifier_token18] = ACTIONS(1664), - [aux_sym_cmd_identifier_token19] = ACTIONS(1664), - [aux_sym_cmd_identifier_token20] = ACTIONS(1664), - [aux_sym_cmd_identifier_token21] = ACTIONS(1664), - [aux_sym_cmd_identifier_token22] = ACTIONS(1664), - [aux_sym_cmd_identifier_token23] = ACTIONS(1664), - [aux_sym_cmd_identifier_token24] = ACTIONS(1664), - [aux_sym_cmd_identifier_token25] = ACTIONS(1664), - [aux_sym_cmd_identifier_token26] = ACTIONS(1664), - [aux_sym_cmd_identifier_token27] = ACTIONS(1664), - [aux_sym_cmd_identifier_token28] = ACTIONS(1664), - [aux_sym_cmd_identifier_token29] = ACTIONS(1664), - [aux_sym_cmd_identifier_token30] = ACTIONS(1664), - [aux_sym_cmd_identifier_token31] = ACTIONS(1664), - [aux_sym_cmd_identifier_token32] = ACTIONS(1664), - [aux_sym_cmd_identifier_token33] = ACTIONS(1664), - [aux_sym_cmd_identifier_token34] = ACTIONS(1664), - [aux_sym_cmd_identifier_token35] = ACTIONS(1664), - [aux_sym_cmd_identifier_token36] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1664), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1664), - [anon_sym_export_DASHenv] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym_module] = ACTIONS(1664), - [anon_sym_use] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_error] = ACTIONS(1664), - [anon_sym_list] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_in] = ACTIONS(1664), - [anon_sym_loop] = ACTIONS(1664), - [anon_sym_make] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1664), - [anon_sym_match] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1664), - [anon_sym_catch] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_source] = ACTIONS(1664), - [anon_sym_source_DASHenv] = ACTIONS(1664), - [anon_sym_register] = ACTIONS(1664), - [anon_sym_hide] = ACTIONS(1664), - [anon_sym_hide_DASHenv] = ACTIONS(1664), - [anon_sym_overlay] = ACTIONS(1664), - [anon_sym_new] = ACTIONS(1664), - [anon_sym_as] = ACTIONS(1664), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1664), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1668), + [365] = { + [sym__expr_parenthesized_immediate] = STATE(721), + [sym__immediate_decimal] = STATE(722), + [sym_val_variable] = STATE(721), + [sym_comment] = STATE(365), + [anon_sym_export] = ACTIONS(1663), + [anon_sym_alias] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1663), + [anon_sym_let_DASHenv] = ACTIONS(1663), + [anon_sym_mut] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [aux_sym_cmd_identifier_token1] = ACTIONS(1663), + [aux_sym_cmd_identifier_token2] = ACTIONS(1671), + [aux_sym_cmd_identifier_token3] = ACTIONS(1671), + [aux_sym_cmd_identifier_token4] = ACTIONS(1671), + [aux_sym_cmd_identifier_token5] = ACTIONS(1671), + [aux_sym_cmd_identifier_token6] = ACTIONS(1671), + [aux_sym_cmd_identifier_token7] = ACTIONS(1671), + [aux_sym_cmd_identifier_token8] = ACTIONS(1663), + [aux_sym_cmd_identifier_token9] = ACTIONS(1663), + [aux_sym_cmd_identifier_token10] = ACTIONS(1671), + [aux_sym_cmd_identifier_token11] = ACTIONS(1671), + [aux_sym_cmd_identifier_token12] = ACTIONS(1663), + [aux_sym_cmd_identifier_token13] = ACTIONS(1663), + [aux_sym_cmd_identifier_token14] = ACTIONS(1663), + [aux_sym_cmd_identifier_token15] = ACTIONS(1663), + [aux_sym_cmd_identifier_token16] = ACTIONS(1671), + [aux_sym_cmd_identifier_token17] = ACTIONS(1671), + [aux_sym_cmd_identifier_token18] = ACTIONS(1671), + [aux_sym_cmd_identifier_token19] = ACTIONS(1671), + [aux_sym_cmd_identifier_token20] = ACTIONS(1671), + [aux_sym_cmd_identifier_token21] = ACTIONS(1671), + [aux_sym_cmd_identifier_token22] = ACTIONS(1671), + [aux_sym_cmd_identifier_token23] = ACTIONS(1671), + [aux_sym_cmd_identifier_token24] = ACTIONS(1671), + [aux_sym_cmd_identifier_token25] = ACTIONS(1671), + [aux_sym_cmd_identifier_token26] = ACTIONS(1671), + [aux_sym_cmd_identifier_token27] = ACTIONS(1671), + [aux_sym_cmd_identifier_token28] = ACTIONS(1671), + [aux_sym_cmd_identifier_token29] = ACTIONS(1671), + [aux_sym_cmd_identifier_token30] = ACTIONS(1671), + [aux_sym_cmd_identifier_token31] = ACTIONS(1671), + [aux_sym_cmd_identifier_token32] = ACTIONS(1671), + [aux_sym_cmd_identifier_token33] = ACTIONS(1671), + [aux_sym_cmd_identifier_token34] = ACTIONS(1663), + [aux_sym_cmd_identifier_token35] = ACTIONS(1671), + [aux_sym_cmd_identifier_token36] = ACTIONS(1671), + [aux_sym_cmd_identifier_token37] = ACTIONS(1671), + [aux_sym_cmd_identifier_token38] = ACTIONS(1663), + [aux_sym_cmd_identifier_token39] = ACTIONS(1671), + [aux_sym_cmd_identifier_token40] = ACTIONS(1671), + [anon_sym_def] = ACTIONS(1663), + [anon_sym_export_DASHenv] = ACTIONS(1663), + [anon_sym_extern] = ACTIONS(1663), + [anon_sym_module] = ACTIONS(1663), + [anon_sym_use] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1679), + [anon_sym_error] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_loop] = ACTIONS(1663), + [anon_sym_make] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_try] = ACTIONS(1663), + [anon_sym_catch] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_source] = ACTIONS(1663), + [anon_sym_source_DASHenv] = ACTIONS(1663), + [anon_sym_register] = ACTIONS(1663), + [anon_sym_hide] = ACTIONS(1663), + [anon_sym_hide_DASHenv] = ACTIONS(1663), + [anon_sym_overlay] = ACTIONS(1663), + [anon_sym_as] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1671), + [aux_sym__immediate_decimal_token1] = ACTIONS(1747), + [aux_sym__immediate_decimal_token3] = ACTIONS(1749), + [aux_sym__immediate_decimal_token4] = ACTIONS(1751), + [aux_sym__immediate_decimal_token5] = ACTIONS(1753), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1663), + [aux_sym__val_number_decimal_token3] = ACTIONS(1663), + [aux_sym__val_number_decimal_token4] = ACTIONS(1663), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1663), + [aux_sym__val_number_token5] = ACTIONS(1663), + [aux_sym__val_number_token6] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1671), + [sym__str_single_quotes] = ACTIONS(1671), + [sym__str_back_ticks] = ACTIONS(1671), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1671), }, - [299] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5124), - [sym_block] = STATE(5125), - [sym__expression_parenthesized] = STATE(5125), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3839), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3132), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_command] = STATE(5125), - [sym_comment] = STATE(299), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1727), - [aux_sym_cmd_identifier_token39] = ACTIONS(1729), - [aux_sym_cmd_identifier_token40] = ACTIONS(1729), - [sym__newline] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_if] = ACTIONS(491), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [366] = { + [sym__expr_parenthesized_immediate] = STATE(752), + [sym__immediate_decimal] = STATE(754), + [sym_val_variable] = STATE(752), + [sym_comment] = STATE(366), + [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(1707), + [aux_sym_cmd_identifier_token3] = ACTIONS(1707), + [aux_sym_cmd_identifier_token4] = ACTIONS(1707), + [aux_sym_cmd_identifier_token5] = ACTIONS(1707), + [aux_sym_cmd_identifier_token6] = ACTIONS(1707), + [aux_sym_cmd_identifier_token7] = ACTIONS(1707), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1707), + [aux_sym_cmd_identifier_token11] = ACTIONS(1707), + [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(1707), + [aux_sym_cmd_identifier_token17] = ACTIONS(1707), + [aux_sym_cmd_identifier_token18] = ACTIONS(1707), + [aux_sym_cmd_identifier_token19] = ACTIONS(1707), + [aux_sym_cmd_identifier_token20] = ACTIONS(1707), + [aux_sym_cmd_identifier_token21] = ACTIONS(1707), + [aux_sym_cmd_identifier_token22] = ACTIONS(1707), + [aux_sym_cmd_identifier_token23] = ACTIONS(1707), + [aux_sym_cmd_identifier_token24] = ACTIONS(1707), + [aux_sym_cmd_identifier_token25] = ACTIONS(1707), + [aux_sym_cmd_identifier_token26] = ACTIONS(1707), + [aux_sym_cmd_identifier_token27] = ACTIONS(1707), + [aux_sym_cmd_identifier_token28] = ACTIONS(1707), + [aux_sym_cmd_identifier_token29] = ACTIONS(1707), + [aux_sym_cmd_identifier_token30] = ACTIONS(1707), + [aux_sym_cmd_identifier_token31] = ACTIONS(1707), + [aux_sym_cmd_identifier_token32] = ACTIONS(1707), + [aux_sym_cmd_identifier_token33] = ACTIONS(1707), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1707), + [aux_sym_cmd_identifier_token36] = ACTIONS(1707), + [aux_sym_cmd_identifier_token37] = 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(1679), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_DASH2] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in2] = 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_as] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [aux_sym__immediate_decimal_token1] = ACTIONS(1747), + [aux_sym__immediate_decimal_token3] = ACTIONS(1749), + [aux_sym__immediate_decimal_token4] = ACTIONS(1751), + [aux_sym__immediate_decimal_token5] = 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(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [aux_sym__val_number_token4] = ACTIONS(1705), + [aux_sym__val_number_token5] = ACTIONS(1705), + [aux_sym__val_number_token6] = ACTIONS(1705), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1707), }, - [300] = { - [sym_comment] = STATE(300), - [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(1526), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1796), + [367] = { + [sym_comment] = STATE(367), + [anon_sym_export] = ACTIONS(1763), + [anon_sym_alias] = ACTIONS(1763), + [anon_sym_let] = ACTIONS(1763), + [anon_sym_let_DASHenv] = ACTIONS(1763), + [anon_sym_mut] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [aux_sym_cmd_identifier_token1] = ACTIONS(1763), + [aux_sym_cmd_identifier_token2] = ACTIONS(1765), + [aux_sym_cmd_identifier_token3] = ACTIONS(1765), + [aux_sym_cmd_identifier_token4] = ACTIONS(1765), + [aux_sym_cmd_identifier_token5] = ACTIONS(1765), + [aux_sym_cmd_identifier_token6] = ACTIONS(1765), + [aux_sym_cmd_identifier_token7] = ACTIONS(1765), + [aux_sym_cmd_identifier_token8] = ACTIONS(1763), + [aux_sym_cmd_identifier_token9] = ACTIONS(1763), + [aux_sym_cmd_identifier_token10] = ACTIONS(1765), + [aux_sym_cmd_identifier_token11] = ACTIONS(1765), + [aux_sym_cmd_identifier_token12] = ACTIONS(1763), + [aux_sym_cmd_identifier_token13] = ACTIONS(1763), + [aux_sym_cmd_identifier_token14] = ACTIONS(1763), + [aux_sym_cmd_identifier_token15] = ACTIONS(1763), + [aux_sym_cmd_identifier_token16] = ACTIONS(1765), + [aux_sym_cmd_identifier_token17] = ACTIONS(1765), + [aux_sym_cmd_identifier_token18] = ACTIONS(1765), + [aux_sym_cmd_identifier_token19] = ACTIONS(1765), + [aux_sym_cmd_identifier_token20] = ACTIONS(1765), + [aux_sym_cmd_identifier_token21] = ACTIONS(1765), + [aux_sym_cmd_identifier_token22] = ACTIONS(1765), + [aux_sym_cmd_identifier_token23] = ACTIONS(1765), + [aux_sym_cmd_identifier_token24] = ACTIONS(1765), + [aux_sym_cmd_identifier_token25] = ACTIONS(1765), + [aux_sym_cmd_identifier_token26] = ACTIONS(1765), + [aux_sym_cmd_identifier_token27] = ACTIONS(1765), + [aux_sym_cmd_identifier_token28] = ACTIONS(1765), + [aux_sym_cmd_identifier_token29] = ACTIONS(1765), + [aux_sym_cmd_identifier_token30] = ACTIONS(1765), + [aux_sym_cmd_identifier_token31] = ACTIONS(1765), + [aux_sym_cmd_identifier_token32] = ACTIONS(1765), + [aux_sym_cmd_identifier_token33] = ACTIONS(1765), + [aux_sym_cmd_identifier_token34] = ACTIONS(1763), + [aux_sym_cmd_identifier_token35] = ACTIONS(1765), + [aux_sym_cmd_identifier_token36] = ACTIONS(1765), + [aux_sym_cmd_identifier_token37] = ACTIONS(1765), + [aux_sym_cmd_identifier_token38] = ACTIONS(1763), + [aux_sym_cmd_identifier_token39] = ACTIONS(1765), + [aux_sym_cmd_identifier_token40] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1763), + [anon_sym_export_DASHenv] = ACTIONS(1763), + [anon_sym_extern] = ACTIONS(1763), + [anon_sym_module] = ACTIONS(1763), + [anon_sym_use] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_error] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_loop] = ACTIONS(1763), + [anon_sym_make] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1763), + [anon_sym_do] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_else] = ACTIONS(1763), + [anon_sym_match] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1763), + [anon_sym_catch] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_source] = ACTIONS(1763), + [anon_sym_source_DASHenv] = ACTIONS(1763), + [anon_sym_register] = ACTIONS(1763), + [anon_sym_hide] = ACTIONS(1763), + [anon_sym_hide_DASHenv] = ACTIONS(1763), + [anon_sym_overlay] = ACTIONS(1763), + [anon_sym_as] = ACTIONS(1763), + [anon_sym_LPAREN2] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1763), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1763), + [aux_sym__val_number_token5] = ACTIONS(1763), + [aux_sym__val_number_token6] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1765), }, - [301] = { - [sym_path] = STATE(423), - [sym_comment] = STATE(301), - [aux_sym_cell_path_repeat1] = STATE(316), - [anon_sym_export] = ACTIONS(1027), - [anon_sym_alias] = ACTIONS(1027), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_let_DASHenv] = ACTIONS(1027), - [anon_sym_mut] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [aux_sym_cmd_identifier_token1] = ACTIONS(1027), - [aux_sym_cmd_identifier_token2] = ACTIONS(1027), - [aux_sym_cmd_identifier_token3] = ACTIONS(1027), - [aux_sym_cmd_identifier_token4] = ACTIONS(1027), - [aux_sym_cmd_identifier_token5] = ACTIONS(1027), - [aux_sym_cmd_identifier_token6] = ACTIONS(1027), - [aux_sym_cmd_identifier_token7] = ACTIONS(1027), - [aux_sym_cmd_identifier_token8] = ACTIONS(1027), - [aux_sym_cmd_identifier_token9] = ACTIONS(1027), - [aux_sym_cmd_identifier_token10] = ACTIONS(1027), - [aux_sym_cmd_identifier_token11] = ACTIONS(1027), - [aux_sym_cmd_identifier_token12] = ACTIONS(1027), - [aux_sym_cmd_identifier_token13] = ACTIONS(1027), - [aux_sym_cmd_identifier_token14] = ACTIONS(1027), - [aux_sym_cmd_identifier_token15] = ACTIONS(1027), - [aux_sym_cmd_identifier_token16] = ACTIONS(1027), - [aux_sym_cmd_identifier_token17] = ACTIONS(1027), - [aux_sym_cmd_identifier_token18] = ACTIONS(1027), - [aux_sym_cmd_identifier_token19] = ACTIONS(1027), - [aux_sym_cmd_identifier_token20] = ACTIONS(1027), - [aux_sym_cmd_identifier_token21] = ACTIONS(1027), - [aux_sym_cmd_identifier_token22] = ACTIONS(1027), - [aux_sym_cmd_identifier_token23] = ACTIONS(1027), - [aux_sym_cmd_identifier_token24] = ACTIONS(1027), - [aux_sym_cmd_identifier_token25] = ACTIONS(1027), - [aux_sym_cmd_identifier_token26] = ACTIONS(1027), - [aux_sym_cmd_identifier_token27] = ACTIONS(1027), - [aux_sym_cmd_identifier_token28] = ACTIONS(1027), - [aux_sym_cmd_identifier_token29] = ACTIONS(1027), - [aux_sym_cmd_identifier_token30] = ACTIONS(1027), - [aux_sym_cmd_identifier_token31] = ACTIONS(1027), - [aux_sym_cmd_identifier_token32] = ACTIONS(1027), - [aux_sym_cmd_identifier_token33] = ACTIONS(1027), - [aux_sym_cmd_identifier_token34] = ACTIONS(1027), - [aux_sym_cmd_identifier_token35] = ACTIONS(1027), - [aux_sym_cmd_identifier_token36] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1029), - [aux_sym_cmd_identifier_token38] = ACTIONS(1027), - [aux_sym_cmd_identifier_token39] = ACTIONS(1029), - [aux_sym_cmd_identifier_token40] = ACTIONS(1029), - [anon_sym_def] = ACTIONS(1027), - [anon_sym_export_DASHenv] = ACTIONS(1027), - [anon_sym_extern] = ACTIONS(1027), - [anon_sym_module] = ACTIONS(1027), - [anon_sym_use] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_error] = ACTIONS(1027), - [anon_sym_list] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1027), - [anon_sym_continue] = ACTIONS(1027), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(1027), - [anon_sym_make] = ACTIONS(1027), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(1027), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_else] = ACTIONS(1027), - [anon_sym_match] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1027), - [anon_sym_catch] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_source] = ACTIONS(1027), - [anon_sym_source_DASHenv] = ACTIONS(1027), - [anon_sym_register] = ACTIONS(1027), - [anon_sym_hide] = ACTIONS(1027), - [anon_sym_hide_DASHenv] = ACTIONS(1027), - [anon_sym_overlay] = ACTIONS(1027), - [anon_sym_new] = ACTIONS(1027), - [anon_sym_as] = ACTIONS(1027), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1029), - [anon_sym_DOT_DOT2] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1029), - [aux_sym__val_number_decimal_token1] = ACTIONS(1027), - [aux_sym__val_number_decimal_token2] = ACTIONS(1029), - [aux_sym__val_number_decimal_token3] = ACTIONS(1029), - [aux_sym__val_number_decimal_token4] = ACTIONS(1029), - [aux_sym__val_number_token1] = ACTIONS(1029), - [aux_sym__val_number_token2] = ACTIONS(1029), - [aux_sym__val_number_token3] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1029), + [368] = { + [sym_comment] = STATE(368), + [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(1623), + [aux_sym_cmd_identifier_token3] = ACTIONS(1623), + [aux_sym_cmd_identifier_token4] = ACTIONS(1623), + [aux_sym_cmd_identifier_token5] = ACTIONS(1623), + [aux_sym_cmd_identifier_token6] = ACTIONS(1623), + [aux_sym_cmd_identifier_token7] = ACTIONS(1623), + [aux_sym_cmd_identifier_token8] = ACTIONS(1621), + [aux_sym_cmd_identifier_token9] = ACTIONS(1621), + [aux_sym_cmd_identifier_token10] = ACTIONS(1623), + [aux_sym_cmd_identifier_token11] = ACTIONS(1623), + [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(1623), + [aux_sym_cmd_identifier_token17] = ACTIONS(1623), + [aux_sym_cmd_identifier_token18] = ACTIONS(1623), + [aux_sym_cmd_identifier_token19] = ACTIONS(1623), + [aux_sym_cmd_identifier_token20] = ACTIONS(1623), + [aux_sym_cmd_identifier_token21] = ACTIONS(1623), + [aux_sym_cmd_identifier_token22] = ACTIONS(1623), + [aux_sym_cmd_identifier_token23] = ACTIONS(1623), + [aux_sym_cmd_identifier_token24] = ACTIONS(1623), + [aux_sym_cmd_identifier_token25] = ACTIONS(1623), + [aux_sym_cmd_identifier_token26] = ACTIONS(1623), + [aux_sym_cmd_identifier_token27] = ACTIONS(1623), + [aux_sym_cmd_identifier_token28] = ACTIONS(1623), + [aux_sym_cmd_identifier_token29] = ACTIONS(1623), + [aux_sym_cmd_identifier_token30] = ACTIONS(1623), + [aux_sym_cmd_identifier_token31] = ACTIONS(1623), + [aux_sym_cmd_identifier_token32] = ACTIONS(1623), + [aux_sym_cmd_identifier_token33] = ACTIONS(1623), + [aux_sym_cmd_identifier_token34] = ACTIONS(1621), + [aux_sym_cmd_identifier_token35] = ACTIONS(1623), + [aux_sym_cmd_identifier_token36] = ACTIONS(1623), + [aux_sym_cmd_identifier_token37] = 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(1623), + [anon_sym_error] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_in2] = 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_as] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1623), + [aux_sym__val_number_decimal_token3] = ACTIONS(1623), + [aux_sym__val_number_decimal_token4] = ACTIONS(1623), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1621), + [aux_sym__val_number_token5] = ACTIONS(1621), + [aux_sym__val_number_token6] = ACTIONS(1621), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1621), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1623), }, - [302] = { - [sym_comment] = STATE(302), - [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_QMARK2] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1058), - [anon_sym_DOT] = 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(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), + [369] = { + [sym_comment] = STATE(369), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_PLUS2] = 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), + [aux_sym__immediate_decimal_token2] = ACTIONS(1761), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = 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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1060), - }, - [303] = { - [sym_comment] = STATE(303), - [aux_sym__block_body_repeat1] = STATE(238), - [anon_sym_export] = ACTIONS(1656), - [anon_sym_alias] = ACTIONS(1656), - [anon_sym_let] = ACTIONS(1656), - [anon_sym_let_DASHenv] = ACTIONS(1656), - [anon_sym_mut] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [aux_sym_cmd_identifier_token1] = ACTIONS(1656), - [aux_sym_cmd_identifier_token2] = ACTIONS(1656), - [aux_sym_cmd_identifier_token3] = ACTIONS(1656), - [aux_sym_cmd_identifier_token4] = ACTIONS(1656), - [aux_sym_cmd_identifier_token5] = ACTIONS(1656), - [aux_sym_cmd_identifier_token6] = ACTIONS(1656), - [aux_sym_cmd_identifier_token7] = ACTIONS(1656), - [aux_sym_cmd_identifier_token8] = ACTIONS(1656), - [aux_sym_cmd_identifier_token9] = ACTIONS(1656), - [aux_sym_cmd_identifier_token10] = ACTIONS(1656), - [aux_sym_cmd_identifier_token11] = ACTIONS(1656), - [aux_sym_cmd_identifier_token12] = ACTIONS(1656), - [aux_sym_cmd_identifier_token13] = ACTIONS(1656), - [aux_sym_cmd_identifier_token14] = ACTIONS(1656), - [aux_sym_cmd_identifier_token15] = ACTIONS(1656), - [aux_sym_cmd_identifier_token16] = ACTIONS(1656), - [aux_sym_cmd_identifier_token17] = ACTIONS(1656), - [aux_sym_cmd_identifier_token18] = ACTIONS(1656), - [aux_sym_cmd_identifier_token19] = ACTIONS(1656), - [aux_sym_cmd_identifier_token20] = ACTIONS(1656), - [aux_sym_cmd_identifier_token21] = ACTIONS(1656), - [aux_sym_cmd_identifier_token22] = ACTIONS(1656), - [aux_sym_cmd_identifier_token23] = ACTIONS(1656), - [aux_sym_cmd_identifier_token24] = ACTIONS(1658), - [aux_sym_cmd_identifier_token25] = ACTIONS(1656), - [aux_sym_cmd_identifier_token26] = ACTIONS(1658), - [aux_sym_cmd_identifier_token27] = ACTIONS(1656), - [aux_sym_cmd_identifier_token28] = ACTIONS(1656), - [aux_sym_cmd_identifier_token29] = ACTIONS(1656), - [aux_sym_cmd_identifier_token30] = ACTIONS(1656), - [aux_sym_cmd_identifier_token31] = ACTIONS(1658), - [aux_sym_cmd_identifier_token32] = ACTIONS(1658), - [aux_sym_cmd_identifier_token33] = ACTIONS(1658), - [aux_sym_cmd_identifier_token34] = ACTIONS(1658), - [aux_sym_cmd_identifier_token35] = ACTIONS(1658), - [aux_sym_cmd_identifier_token36] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1658), - [aux_sym_cmd_identifier_token38] = ACTIONS(1656), - [aux_sym_cmd_identifier_token39] = ACTIONS(1658), - [aux_sym_cmd_identifier_token40] = ACTIONS(1658), - [sym__newline] = ACTIONS(147), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_def] = ACTIONS(1656), - [anon_sym_export_DASHenv] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1656), - [anon_sym_module] = ACTIONS(1656), - [anon_sym_use] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_error] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_loop] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_match] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_try] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_source] = ACTIONS(1656), - [anon_sym_source_DASHenv] = ACTIONS(1656), - [anon_sym_register] = ACTIONS(1656), - [anon_sym_hide] = ACTIONS(1656), - [anon_sym_hide_DASHenv] = ACTIONS(1656), - [anon_sym_overlay] = ACTIONS(1656), - [anon_sym_where] = ACTIONS(1658), - [aux_sym_expr_unary_token1] = ACTIONS(1658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), - [anon_sym_DOT_DOT_LT] = ACTIONS(1658), - [aux_sym__val_number_decimal_token1] = ACTIONS(1656), - [aux_sym__val_number_decimal_token2] = ACTIONS(1658), - [aux_sym__val_number_decimal_token3] = ACTIONS(1658), - [aux_sym__val_number_decimal_token4] = ACTIONS(1658), - [aux_sym__val_number_token1] = ACTIONS(1658), - [aux_sym__val_number_token2] = ACTIONS(1658), - [aux_sym__val_number_token3] = ACTIONS(1658), - [anon_sym_0b] = ACTIONS(1656), - [anon_sym_0o] = ACTIONS(1656), - [anon_sym_0x] = ACTIONS(1656), - [sym_val_date] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [sym__str_single_quotes] = ACTIONS(1658), - [sym__str_back_ticks] = ACTIONS(1658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), - [aux_sym_env_var_token1] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1658), + [sym_raw_string_begin] = ACTIONS(1757), }, - [304] = { - [sym_comment] = STATE(304), - [ts_builtin_sym_end] = ACTIONS(1798), - [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(1798), - [aux_sym_cmd_identifier_token25] = ACTIONS(1800), - [aux_sym_cmd_identifier_token26] = ACTIONS(1798), - [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(1798), - [aux_sym_cmd_identifier_token32] = ACTIONS(1798), - [aux_sym_cmd_identifier_token33] = ACTIONS(1798), - [aux_sym_cmd_identifier_token34] = ACTIONS(1798), - [aux_sym_cmd_identifier_token35] = ACTIONS(1798), - [aux_sym_cmd_identifier_token36] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1798), - [anon_sym_false] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1798), - [aux_sym_cmd_identifier_token38] = ACTIONS(1800), - [aux_sym_cmd_identifier_token39] = ACTIONS(1798), - [aux_sym_cmd_identifier_token40] = ACTIONS(1798), - [sym__newline] = ACTIONS(1798), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_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(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [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(1798), - [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(1798), - [aux_sym_expr_unary_token1] = ACTIONS(1798), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), - [anon_sym_DOT_DOT_LT] = ACTIONS(1798), - [aux_sym__val_number_decimal_token1] = ACTIONS(1800), - [aux_sym__val_number_decimal_token2] = ACTIONS(1798), - [aux_sym__val_number_decimal_token3] = ACTIONS(1798), - [aux_sym__val_number_decimal_token4] = ACTIONS(1798), - [aux_sym__val_number_token1] = ACTIONS(1798), - [aux_sym__val_number_token2] = ACTIONS(1798), - [aux_sym__val_number_token3] = ACTIONS(1798), - [anon_sym_0b] = ACTIONS(1800), - [anon_sym_0o] = ACTIONS(1800), - [anon_sym_0x] = ACTIONS(1800), - [sym_val_date] = ACTIONS(1798), - [anon_sym_DQUOTE] = ACTIONS(1798), - [sym__str_single_quotes] = ACTIONS(1798), - [sym__str_back_ticks] = ACTIONS(1798), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1798), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1798), - [aux_sym_env_var_token1] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1798), + [370] = { + [sym_comment] = STATE(370), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1783), + [aux_sym_cmd_identifier_token3] = ACTIONS(1783), + [aux_sym_cmd_identifier_token4] = ACTIONS(1783), + [aux_sym_cmd_identifier_token5] = ACTIONS(1783), + [aux_sym_cmd_identifier_token6] = ACTIONS(1783), + [aux_sym_cmd_identifier_token7] = ACTIONS(1783), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1783), + [aux_sym_cmd_identifier_token11] = ACTIONS(1783), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1783), + [aux_sym_cmd_identifier_token17] = ACTIONS(1783), + [aux_sym_cmd_identifier_token18] = ACTIONS(1783), + [aux_sym_cmd_identifier_token19] = ACTIONS(1783), + [aux_sym_cmd_identifier_token20] = ACTIONS(1783), + [aux_sym_cmd_identifier_token21] = ACTIONS(1783), + [aux_sym_cmd_identifier_token22] = ACTIONS(1783), + [aux_sym_cmd_identifier_token23] = ACTIONS(1783), + [aux_sym_cmd_identifier_token24] = ACTIONS(1783), + [aux_sym_cmd_identifier_token25] = ACTIONS(1783), + [aux_sym_cmd_identifier_token26] = ACTIONS(1783), + [aux_sym_cmd_identifier_token27] = ACTIONS(1783), + [aux_sym_cmd_identifier_token28] = ACTIONS(1783), + [aux_sym_cmd_identifier_token29] = ACTIONS(1783), + [aux_sym_cmd_identifier_token30] = ACTIONS(1783), + [aux_sym_cmd_identifier_token31] = ACTIONS(1783), + [aux_sym_cmd_identifier_token32] = ACTIONS(1783), + [aux_sym_cmd_identifier_token33] = ACTIONS(1783), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1783), + [aux_sym_cmd_identifier_token36] = ACTIONS(1783), + [aux_sym_cmd_identifier_token37] = ACTIONS(1783), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1783), + [aux_sym_cmd_identifier_token40] = ACTIONS(1783), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1783), + [aux_sym__val_number_decimal_token3] = ACTIONS(1783), + [aux_sym__val_number_decimal_token4] = ACTIONS(1783), + [aux_sym__val_number_token1] = ACTIONS(1783), + [aux_sym__val_number_token2] = ACTIONS(1783), + [aux_sym__val_number_token3] = ACTIONS(1783), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [sym__str_single_quotes] = ACTIONS(1783), + [sym__str_back_ticks] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), + [sym__entry_separator] = ACTIONS(1785), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1785), }, - [305] = { - [sym_comment] = STATE(305), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_alias] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_let_DASHenv] = ACTIONS(1802), - [anon_sym_mut] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [aux_sym_cmd_identifier_token1] = ACTIONS(1802), - [aux_sym_cmd_identifier_token2] = ACTIONS(1802), - [aux_sym_cmd_identifier_token3] = ACTIONS(1802), - [aux_sym_cmd_identifier_token4] = ACTIONS(1802), - [aux_sym_cmd_identifier_token5] = ACTIONS(1802), - [aux_sym_cmd_identifier_token6] = ACTIONS(1802), - [aux_sym_cmd_identifier_token7] = ACTIONS(1802), - [aux_sym_cmd_identifier_token8] = ACTIONS(1802), - [aux_sym_cmd_identifier_token9] = ACTIONS(1802), - [aux_sym_cmd_identifier_token10] = ACTIONS(1802), - [aux_sym_cmd_identifier_token11] = ACTIONS(1802), - [aux_sym_cmd_identifier_token12] = ACTIONS(1802), - [aux_sym_cmd_identifier_token13] = ACTIONS(1802), - [aux_sym_cmd_identifier_token14] = ACTIONS(1802), - [aux_sym_cmd_identifier_token15] = ACTIONS(1802), - [aux_sym_cmd_identifier_token16] = ACTIONS(1802), - [aux_sym_cmd_identifier_token17] = ACTIONS(1802), - [aux_sym_cmd_identifier_token18] = ACTIONS(1802), - [aux_sym_cmd_identifier_token19] = ACTIONS(1802), - [aux_sym_cmd_identifier_token20] = ACTIONS(1802), - [aux_sym_cmd_identifier_token21] = ACTIONS(1802), - [aux_sym_cmd_identifier_token22] = ACTIONS(1802), - [aux_sym_cmd_identifier_token23] = ACTIONS(1802), - [aux_sym_cmd_identifier_token24] = ACTIONS(1804), - [aux_sym_cmd_identifier_token25] = ACTIONS(1802), - [aux_sym_cmd_identifier_token26] = ACTIONS(1804), - [aux_sym_cmd_identifier_token27] = ACTIONS(1802), - [aux_sym_cmd_identifier_token28] = ACTIONS(1802), - [aux_sym_cmd_identifier_token29] = ACTIONS(1802), - [aux_sym_cmd_identifier_token30] = ACTIONS(1802), - [aux_sym_cmd_identifier_token31] = ACTIONS(1804), - [aux_sym_cmd_identifier_token32] = ACTIONS(1804), - [aux_sym_cmd_identifier_token33] = ACTIONS(1804), - [aux_sym_cmd_identifier_token34] = ACTIONS(1804), - [aux_sym_cmd_identifier_token35] = ACTIONS(1804), - [aux_sym_cmd_identifier_token36] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_null] = ACTIONS(1804), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [aux_sym_cmd_identifier_token39] = ACTIONS(1804), - [aux_sym_cmd_identifier_token40] = ACTIONS(1804), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_def] = ACTIONS(1802), - [anon_sym_export_DASHenv] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_RPAREN] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_error] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_try] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_source] = ACTIONS(1802), - [anon_sym_source_DASHenv] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_hide] = ACTIONS(1802), - [anon_sym_hide_DASHenv] = ACTIONS(1802), - [anon_sym_overlay] = ACTIONS(1802), - [anon_sym_where] = ACTIONS(1804), - [aux_sym_expr_unary_token1] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1804), - [anon_sym_DOT_DOT_LT] = ACTIONS(1804), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [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(1802), - [anon_sym_0o] = ACTIONS(1802), - [anon_sym_0x] = ACTIONS(1802), - [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), - [aux_sym_env_var_token1] = ACTIONS(1802), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1804), + [371] = { + [sym_comment] = STATE(371), + [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(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(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(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_PLUS2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(1789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), + [aux_sym__immediate_decimal_token2] = ACTIONS(1791), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = ACTIONS(1755), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), }, - [306] = { - [sym_comment] = STATE(306), + [372] = { + [sym_cell_path] = STATE(552), + [sym_path] = STATE(460), + [sym_comment] = STATE(372), + [aux_sym_cell_path_repeat1] = STATE(380), [anon_sym_export] = ACTIONS(1769), [anon_sym_alias] = ACTIONS(1769), [anon_sym_let] = ACTIONS(1769), @@ -112879,44 +116417,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1769), [anon_sym_const] = ACTIONS(1769), [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1771), + [aux_sym_cmd_identifier_token3] = ACTIONS(1771), + [aux_sym_cmd_identifier_token4] = ACTIONS(1771), + [aux_sym_cmd_identifier_token5] = ACTIONS(1771), + [aux_sym_cmd_identifier_token6] = ACTIONS(1771), + [aux_sym_cmd_identifier_token7] = ACTIONS(1771), [aux_sym_cmd_identifier_token8] = ACTIONS(1769), [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1771), + [aux_sym_cmd_identifier_token11] = ACTIONS(1771), [aux_sym_cmd_identifier_token12] = ACTIONS(1769), [aux_sym_cmd_identifier_token13] = ACTIONS(1769), [aux_sym_cmd_identifier_token14] = ACTIONS(1769), [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1771), + [aux_sym_cmd_identifier_token17] = ACTIONS(1771), + [aux_sym_cmd_identifier_token18] = ACTIONS(1771), + [aux_sym_cmd_identifier_token19] = ACTIONS(1771), + [aux_sym_cmd_identifier_token20] = ACTIONS(1771), + [aux_sym_cmd_identifier_token21] = ACTIONS(1771), + [aux_sym_cmd_identifier_token22] = ACTIONS(1771), + [aux_sym_cmd_identifier_token23] = ACTIONS(1771), + [aux_sym_cmd_identifier_token24] = ACTIONS(1771), + [aux_sym_cmd_identifier_token25] = ACTIONS(1771), + [aux_sym_cmd_identifier_token26] = ACTIONS(1771), + [aux_sym_cmd_identifier_token27] = ACTIONS(1771), + [aux_sym_cmd_identifier_token28] = ACTIONS(1771), + [aux_sym_cmd_identifier_token29] = ACTIONS(1771), + [aux_sym_cmd_identifier_token30] = ACTIONS(1771), + [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(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1771), + [aux_sym_cmd_identifier_token36] = ACTIONS(1771), + [aux_sym_cmd_identifier_token37] = ACTIONS(1771), [aux_sym_cmd_identifier_token38] = ACTIONS(1769), [aux_sym_cmd_identifier_token39] = ACTIONS(1771), [aux_sym_cmd_identifier_token40] = ACTIONS(1771), @@ -112925,15 +116461,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1769), [anon_sym_module] = ACTIONS(1769), [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1771), [anon_sym_DOLLAR] = ACTIONS(1771), [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DASH2] = ACTIONS(1769), [anon_sym_break] = ACTIONS(1769), [anon_sym_continue] = ACTIONS(1769), [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), + [anon_sym_in2] = ACTIONS(1769), [anon_sym_loop] = ACTIONS(1769), [anon_sym_make] = ACTIONS(1769), [anon_sym_while] = ACTIONS(1769), @@ -112951,14 +116486,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1769), [anon_sym_hide_DASHenv] = ACTIONS(1769), [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), [anon_sym_as] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1769), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(1793), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(1809), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), [aux_sym__val_number_decimal_token1] = ACTIONS(1769), [aux_sym__val_number_decimal_token2] = ACTIONS(1771), @@ -112967,781 +116501,2146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(1771), [aux_sym__val_number_token2] = ACTIONS(1771), [aux_sym__val_number_token3] = ACTIONS(1771), + [aux_sym__val_number_token4] = ACTIONS(1769), + [aux_sym__val_number_token5] = ACTIONS(1769), + [aux_sym__val_number_token6] = ACTIONS(1769), [anon_sym_DQUOTE] = ACTIONS(1771), [sym__str_single_quotes] = ACTIONS(1771), [sym__str_back_ticks] = ACTIONS(1771), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1771), }, - [307] = { - [sym_comment] = STATE(307), - [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(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), - [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(1062), - [anon_sym_DOLLAR] = ACTIONS(1062), - [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(1062), - [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_QMARK2] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), - [anon_sym_DOT_DOT2] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [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), - [sym__entry_separator] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1064), + [373] = { + [sym_cell_path] = STATE(562), + [sym_path] = STATE(460), + [sym_comment] = STATE(373), + [aux_sym_cell_path_repeat1] = STATE(380), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1737), }, - [308] = { - [sym_comment] = STATE(308), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), + [374] = { + [sym_cell_path] = STATE(516), + [sym_path] = STATE(460), + [sym_comment] = STATE(374), + [aux_sym_cell_path_repeat1] = STATE(380), + [anon_sym_export] = ACTIONS(961), + [anon_sym_alias] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_let_DASHenv] = ACTIONS(961), + [anon_sym_mut] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [aux_sym_cmd_identifier_token1] = ACTIONS(961), + [aux_sym_cmd_identifier_token2] = ACTIONS(963), + [aux_sym_cmd_identifier_token3] = ACTIONS(963), + [aux_sym_cmd_identifier_token4] = ACTIONS(963), + [aux_sym_cmd_identifier_token5] = ACTIONS(963), + [aux_sym_cmd_identifier_token6] = ACTIONS(963), + [aux_sym_cmd_identifier_token7] = ACTIONS(963), + [aux_sym_cmd_identifier_token8] = ACTIONS(961), + [aux_sym_cmd_identifier_token9] = ACTIONS(961), + [aux_sym_cmd_identifier_token10] = ACTIONS(963), + [aux_sym_cmd_identifier_token11] = ACTIONS(963), + [aux_sym_cmd_identifier_token12] = ACTIONS(961), + [aux_sym_cmd_identifier_token13] = ACTIONS(961), + [aux_sym_cmd_identifier_token14] = ACTIONS(961), + [aux_sym_cmd_identifier_token15] = ACTIONS(961), + [aux_sym_cmd_identifier_token16] = ACTIONS(963), + [aux_sym_cmd_identifier_token17] = ACTIONS(963), + [aux_sym_cmd_identifier_token18] = ACTIONS(963), + [aux_sym_cmd_identifier_token19] = ACTIONS(963), + [aux_sym_cmd_identifier_token20] = ACTIONS(963), + [aux_sym_cmd_identifier_token21] = ACTIONS(963), + [aux_sym_cmd_identifier_token22] = ACTIONS(963), + [aux_sym_cmd_identifier_token23] = ACTIONS(963), + [aux_sym_cmd_identifier_token24] = ACTIONS(963), + [aux_sym_cmd_identifier_token25] = ACTIONS(963), + [aux_sym_cmd_identifier_token26] = ACTIONS(963), + [aux_sym_cmd_identifier_token27] = ACTIONS(963), + [aux_sym_cmd_identifier_token28] = ACTIONS(963), + [aux_sym_cmd_identifier_token29] = ACTIONS(963), + [aux_sym_cmd_identifier_token30] = ACTIONS(963), + [aux_sym_cmd_identifier_token31] = ACTIONS(963), + [aux_sym_cmd_identifier_token32] = ACTIONS(963), + [aux_sym_cmd_identifier_token33] = ACTIONS(963), + [aux_sym_cmd_identifier_token34] = ACTIONS(961), + [aux_sym_cmd_identifier_token35] = ACTIONS(963), + [aux_sym_cmd_identifier_token36] = ACTIONS(963), + [aux_sym_cmd_identifier_token37] = ACTIONS(963), + [aux_sym_cmd_identifier_token38] = ACTIONS(961), + [aux_sym_cmd_identifier_token39] = ACTIONS(963), + [aux_sym_cmd_identifier_token40] = ACTIONS(963), + [anon_sym_def] = ACTIONS(961), + [anon_sym_export_DASHenv] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_error] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_make] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_try] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_source] = ACTIONS(961), + [anon_sym_source_DASHenv] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_hide_DASHenv] = ACTIONS(961), + [anon_sym_overlay] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(1793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(961), + [aux_sym__val_number_token5] = ACTIONS(961), + [aux_sym__val_number_token6] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), }, - [309] = { - [sym_comment] = STATE(309), - [ts_builtin_sym_end] = ACTIONS(1811), - [anon_sym_export] = ACTIONS(1813), - [anon_sym_alias] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_let_DASHenv] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [aux_sym_cmd_identifier_token1] = ACTIONS(1813), - [aux_sym_cmd_identifier_token2] = ACTIONS(1813), - [aux_sym_cmd_identifier_token3] = ACTIONS(1813), - [aux_sym_cmd_identifier_token4] = ACTIONS(1813), - [aux_sym_cmd_identifier_token5] = ACTIONS(1813), - [aux_sym_cmd_identifier_token6] = ACTIONS(1813), - [aux_sym_cmd_identifier_token7] = ACTIONS(1813), - [aux_sym_cmd_identifier_token8] = ACTIONS(1813), - [aux_sym_cmd_identifier_token9] = ACTIONS(1813), - [aux_sym_cmd_identifier_token10] = ACTIONS(1813), - [aux_sym_cmd_identifier_token11] = ACTIONS(1813), - [aux_sym_cmd_identifier_token12] = ACTIONS(1813), - [aux_sym_cmd_identifier_token13] = ACTIONS(1813), - [aux_sym_cmd_identifier_token14] = ACTIONS(1813), - [aux_sym_cmd_identifier_token15] = ACTIONS(1813), - [aux_sym_cmd_identifier_token16] = ACTIONS(1813), - [aux_sym_cmd_identifier_token17] = ACTIONS(1813), - [aux_sym_cmd_identifier_token18] = ACTIONS(1813), - [aux_sym_cmd_identifier_token19] = ACTIONS(1813), - [aux_sym_cmd_identifier_token20] = ACTIONS(1813), - [aux_sym_cmd_identifier_token21] = ACTIONS(1813), - [aux_sym_cmd_identifier_token22] = ACTIONS(1813), - [aux_sym_cmd_identifier_token23] = ACTIONS(1813), - [aux_sym_cmd_identifier_token24] = ACTIONS(1811), - [aux_sym_cmd_identifier_token25] = ACTIONS(1813), - [aux_sym_cmd_identifier_token26] = ACTIONS(1811), - [aux_sym_cmd_identifier_token27] = ACTIONS(1813), - [aux_sym_cmd_identifier_token28] = ACTIONS(1813), - [aux_sym_cmd_identifier_token29] = ACTIONS(1813), - [aux_sym_cmd_identifier_token30] = ACTIONS(1813), - [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(1813), - [anon_sym_true] = ACTIONS(1811), - [anon_sym_false] = ACTIONS(1811), - [anon_sym_null] = ACTIONS(1811), - [aux_sym_cmd_identifier_token38] = ACTIONS(1813), - [aux_sym_cmd_identifier_token39] = ACTIONS(1811), - [aux_sym_cmd_identifier_token40] = ACTIONS(1811), - [sym__newline] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_def] = ACTIONS(1813), - [anon_sym_export_DASHenv] = ACTIONS(1813), - [anon_sym_extern] = ACTIONS(1813), - [anon_sym_module] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_DOLLAR] = ACTIONS(1813), - [anon_sym_error] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_do] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_DOT_DOT] = ACTIONS(1813), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_source] = ACTIONS(1813), - [anon_sym_source_DASHenv] = ACTIONS(1813), - [anon_sym_register] = ACTIONS(1813), - [anon_sym_hide] = ACTIONS(1813), - [anon_sym_hide_DASHenv] = ACTIONS(1813), - [anon_sym_overlay] = ACTIONS(1813), - [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(1813), - [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(1813), - [anon_sym_0o] = ACTIONS(1813), - [anon_sym_0x] = ACTIONS(1813), - [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(1813), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1811), + [375] = { + [sym_comment] = STATE(375), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_alias] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_let_DASHenv] = ACTIONS(1673), + [anon_sym_mut] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [aux_sym_cmd_identifier_token1] = ACTIONS(1673), + [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(1673), + [aux_sym_cmd_identifier_token9] = ACTIONS(1673), + [aux_sym_cmd_identifier_token10] = ACTIONS(1675), + [aux_sym_cmd_identifier_token11] = ACTIONS(1675), + [aux_sym_cmd_identifier_token12] = ACTIONS(1673), + [aux_sym_cmd_identifier_token13] = ACTIONS(1673), + [aux_sym_cmd_identifier_token14] = ACTIONS(1673), + [aux_sym_cmd_identifier_token15] = ACTIONS(1673), + [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(1673), + [aux_sym_cmd_identifier_token35] = ACTIONS(1675), + [aux_sym_cmd_identifier_token36] = ACTIONS(1675), + [aux_sym_cmd_identifier_token37] = ACTIONS(1675), + [aux_sym_cmd_identifier_token38] = ACTIONS(1673), + [aux_sym_cmd_identifier_token39] = ACTIONS(1675), + [aux_sym_cmd_identifier_token40] = ACTIONS(1675), + [anon_sym_def] = ACTIONS(1673), + [anon_sym_export_DASHenv] = ACTIONS(1673), + [anon_sym_extern] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_use] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_error] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_loop] = ACTIONS(1673), + [anon_sym_make] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_match] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_catch] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_source] = ACTIONS(1673), + [anon_sym_source_DASHenv] = ACTIONS(1673), + [anon_sym_register] = ACTIONS(1673), + [anon_sym_hide] = ACTIONS(1673), + [anon_sym_hide_DASHenv] = ACTIONS(1673), + [anon_sym_overlay] = ACTIONS(1673), + [anon_sym_as] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [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), + [aux_sym__val_number_token4] = ACTIONS(1673), + [aux_sym__val_number_token5] = ACTIONS(1673), + [aux_sym__val_number_token6] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1673), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1675), }, - [310] = { - [sym_comment] = STATE(310), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [anon_sym_null] = ACTIONS(1703), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1703), - [aux_sym_cmd_identifier_token40] = ACTIONS(1703), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(1815), - [aux_sym__immediate_decimal_token2] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [aux_sym__val_number_decimal_token2] = ACTIONS(1703), - [aux_sym__val_number_decimal_token3] = ACTIONS(1703), - [aux_sym__val_number_decimal_token4] = ACTIONS(1703), - [aux_sym__val_number_token1] = ACTIONS(1703), - [aux_sym__val_number_token2] = ACTIONS(1703), - [aux_sym__val_number_token3] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym__str_single_quotes] = ACTIONS(1703), - [sym__str_back_ticks] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), - [sym__entry_separator] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1703), + [376] = { + [sym_path] = STATE(418), + [sym_comment] = STATE(376), + [aux_sym_cell_path_repeat1] = STATE(377), + [anon_sym_export] = ACTIONS(967), + [anon_sym_alias] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_let_DASHenv] = ACTIONS(967), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [aux_sym_cmd_identifier_token1] = ACTIONS(967), + [aux_sym_cmd_identifier_token2] = ACTIONS(967), + [aux_sym_cmd_identifier_token3] = ACTIONS(967), + [aux_sym_cmd_identifier_token4] = ACTIONS(967), + [aux_sym_cmd_identifier_token5] = ACTIONS(967), + [aux_sym_cmd_identifier_token6] = ACTIONS(967), + [aux_sym_cmd_identifier_token7] = ACTIONS(967), + [aux_sym_cmd_identifier_token8] = ACTIONS(967), + [aux_sym_cmd_identifier_token9] = ACTIONS(967), + [aux_sym_cmd_identifier_token10] = ACTIONS(967), + [aux_sym_cmd_identifier_token11] = ACTIONS(967), + [aux_sym_cmd_identifier_token12] = ACTIONS(967), + [aux_sym_cmd_identifier_token13] = ACTIONS(967), + [aux_sym_cmd_identifier_token14] = ACTIONS(967), + [aux_sym_cmd_identifier_token15] = ACTIONS(967), + [aux_sym_cmd_identifier_token16] = ACTIONS(967), + [aux_sym_cmd_identifier_token17] = ACTIONS(967), + [aux_sym_cmd_identifier_token18] = ACTIONS(967), + [aux_sym_cmd_identifier_token19] = ACTIONS(967), + [aux_sym_cmd_identifier_token20] = ACTIONS(967), + [aux_sym_cmd_identifier_token21] = ACTIONS(967), + [aux_sym_cmd_identifier_token22] = ACTIONS(967), + [aux_sym_cmd_identifier_token23] = ACTIONS(967), + [aux_sym_cmd_identifier_token24] = ACTIONS(967), + [aux_sym_cmd_identifier_token25] = ACTIONS(967), + [aux_sym_cmd_identifier_token26] = ACTIONS(967), + [aux_sym_cmd_identifier_token27] = ACTIONS(967), + [aux_sym_cmd_identifier_token28] = ACTIONS(967), + [aux_sym_cmd_identifier_token29] = ACTIONS(967), + [aux_sym_cmd_identifier_token30] = ACTIONS(967), + [aux_sym_cmd_identifier_token31] = ACTIONS(967), + [aux_sym_cmd_identifier_token32] = ACTIONS(967), + [aux_sym_cmd_identifier_token33] = ACTIONS(967), + [aux_sym_cmd_identifier_token34] = ACTIONS(967), + [aux_sym_cmd_identifier_token35] = ACTIONS(967), + [aux_sym_cmd_identifier_token36] = ACTIONS(967), + [aux_sym_cmd_identifier_token37] = ACTIONS(967), + [aux_sym_cmd_identifier_token38] = ACTIONS(967), + [aux_sym_cmd_identifier_token39] = ACTIONS(967), + [aux_sym_cmd_identifier_token40] = ACTIONS(967), + [anon_sym_def] = ACTIONS(967), + [anon_sym_export_DASHenv] = ACTIONS(967), + [anon_sym_extern] = ACTIONS(967), + [anon_sym_module] = ACTIONS(967), + [anon_sym_use] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_error] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_in2] = ACTIONS(967), + [anon_sym_loop] = ACTIONS(967), + [anon_sym_make] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(967), + [anon_sym_match] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_try] = ACTIONS(967), + [anon_sym_catch] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_source] = ACTIONS(967), + [anon_sym_source_DASHenv] = ACTIONS(967), + [anon_sym_register] = ACTIONS(967), + [anon_sym_hide] = ACTIONS(967), + [anon_sym_hide_DASHenv] = ACTIONS(967), + [anon_sym_overlay] = ACTIONS(967), + [anon_sym_as] = ACTIONS(967), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(967), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(967), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(967), + [aux_sym__val_number_decimal_token3] = ACTIONS(967), + [aux_sym__val_number_decimal_token4] = ACTIONS(967), + [aux_sym__val_number_token1] = ACTIONS(967), + [aux_sym__val_number_token2] = ACTIONS(967), + [aux_sym__val_number_token3] = ACTIONS(967), + [aux_sym__val_number_token4] = ACTIONS(967), + [aux_sym__val_number_token5] = ACTIONS(967), + [aux_sym__val_number_token6] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [sym__str_single_quotes] = ACTIONS(967), + [sym__str_back_ticks] = ACTIONS(967), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(967), + [sym__entry_separator] = ACTIONS(969), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1705), + [sym_raw_string_begin] = ACTIONS(969), }, - [311] = { - [sym_comment] = STATE(311), - [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_QMARK2] = 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), + [377] = { + [sym_path] = STATE(418), + [sym_comment] = STATE(377), + [aux_sym_cell_path_repeat1] = STATE(377), + [anon_sym_export] = ACTIONS(971), + [anon_sym_alias] = ACTIONS(971), + [anon_sym_let] = ACTIONS(971), + [anon_sym_let_DASHenv] = ACTIONS(971), + [anon_sym_mut] = ACTIONS(971), + [anon_sym_const] = ACTIONS(971), + [aux_sym_cmd_identifier_token1] = ACTIONS(971), + [aux_sym_cmd_identifier_token2] = ACTIONS(971), + [aux_sym_cmd_identifier_token3] = ACTIONS(971), + [aux_sym_cmd_identifier_token4] = ACTIONS(971), + [aux_sym_cmd_identifier_token5] = ACTIONS(971), + [aux_sym_cmd_identifier_token6] = ACTIONS(971), + [aux_sym_cmd_identifier_token7] = ACTIONS(971), + [aux_sym_cmd_identifier_token8] = ACTIONS(971), + [aux_sym_cmd_identifier_token9] = ACTIONS(971), + [aux_sym_cmd_identifier_token10] = ACTIONS(971), + [aux_sym_cmd_identifier_token11] = ACTIONS(971), + [aux_sym_cmd_identifier_token12] = ACTIONS(971), + [aux_sym_cmd_identifier_token13] = ACTIONS(971), + [aux_sym_cmd_identifier_token14] = ACTIONS(971), + [aux_sym_cmd_identifier_token15] = ACTIONS(971), + [aux_sym_cmd_identifier_token16] = ACTIONS(971), + [aux_sym_cmd_identifier_token17] = ACTIONS(971), + [aux_sym_cmd_identifier_token18] = ACTIONS(971), + [aux_sym_cmd_identifier_token19] = ACTIONS(971), + [aux_sym_cmd_identifier_token20] = ACTIONS(971), + [aux_sym_cmd_identifier_token21] = ACTIONS(971), + [aux_sym_cmd_identifier_token22] = ACTIONS(971), + [aux_sym_cmd_identifier_token23] = ACTIONS(971), + [aux_sym_cmd_identifier_token24] = ACTIONS(971), + [aux_sym_cmd_identifier_token25] = ACTIONS(971), + [aux_sym_cmd_identifier_token26] = ACTIONS(971), + [aux_sym_cmd_identifier_token27] = ACTIONS(971), + [aux_sym_cmd_identifier_token28] = ACTIONS(971), + [aux_sym_cmd_identifier_token29] = ACTIONS(971), + [aux_sym_cmd_identifier_token30] = ACTIONS(971), + [aux_sym_cmd_identifier_token31] = ACTIONS(971), + [aux_sym_cmd_identifier_token32] = ACTIONS(971), + [aux_sym_cmd_identifier_token33] = ACTIONS(971), + [aux_sym_cmd_identifier_token34] = ACTIONS(971), + [aux_sym_cmd_identifier_token35] = ACTIONS(971), + [aux_sym_cmd_identifier_token36] = ACTIONS(971), + [aux_sym_cmd_identifier_token37] = ACTIONS(971), + [aux_sym_cmd_identifier_token38] = ACTIONS(971), + [aux_sym_cmd_identifier_token39] = ACTIONS(971), + [aux_sym_cmd_identifier_token40] = ACTIONS(971), + [anon_sym_def] = ACTIONS(971), + [anon_sym_export_DASHenv] = ACTIONS(971), + [anon_sym_extern] = ACTIONS(971), + [anon_sym_module] = ACTIONS(971), + [anon_sym_use] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_error] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_break] = ACTIONS(971), + [anon_sym_continue] = ACTIONS(971), + [anon_sym_for] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(971), + [anon_sym_loop] = ACTIONS(971), + [anon_sym_make] = ACTIONS(971), + [anon_sym_while] = ACTIONS(971), + [anon_sym_do] = ACTIONS(971), + [anon_sym_if] = ACTIONS(971), + [anon_sym_else] = ACTIONS(971), + [anon_sym_match] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_try] = ACTIONS(971), + [anon_sym_catch] = ACTIONS(971), + [anon_sym_return] = ACTIONS(971), + [anon_sym_source] = ACTIONS(971), + [anon_sym_source_DASHenv] = ACTIONS(971), + [anon_sym_register] = ACTIONS(971), + [anon_sym_hide] = ACTIONS(971), + [anon_sym_hide_DASHenv] = ACTIONS(971), + [anon_sym_overlay] = ACTIONS(971), + [anon_sym_as] = ACTIONS(971), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1795), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), + [aux_sym__val_number_decimal_token1] = ACTIONS(971), + [aux_sym__val_number_decimal_token2] = ACTIONS(971), + [aux_sym__val_number_decimal_token3] = ACTIONS(971), + [aux_sym__val_number_decimal_token4] = ACTIONS(971), + [aux_sym__val_number_token1] = ACTIONS(971), + [aux_sym__val_number_token2] = ACTIONS(971), + [aux_sym__val_number_token3] = ACTIONS(971), + [aux_sym__val_number_token4] = ACTIONS(971), + [aux_sym__val_number_token5] = ACTIONS(971), + [aux_sym__val_number_token6] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym__str_single_quotes] = ACTIONS(971), + [sym__str_back_ticks] = ACTIONS(971), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(971), + [sym__entry_separator] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1056), + [sym_raw_string_begin] = ACTIONS(973), }, - [312] = { - [sym_comment] = STATE(312), - [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(1819), - [anon_sym_DOT_DOT_DOT_LPAREN] = 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(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), + [378] = { + [sym_comment] = STATE(378), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1798), + [aux_sym__immediate_decimal_token2] = ACTIONS(1800), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [379] = { + [sym_comment] = STATE(379), + [anon_sym_export] = ACTIONS(1607), + [anon_sym_alias] = ACTIONS(1607), + [anon_sym_let] = ACTIONS(1607), + [anon_sym_let_DASHenv] = ACTIONS(1607), + [anon_sym_mut] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [aux_sym_cmd_identifier_token1] = ACTIONS(1607), + [aux_sym_cmd_identifier_token2] = ACTIONS(1609), + [aux_sym_cmd_identifier_token3] = ACTIONS(1609), + [aux_sym_cmd_identifier_token4] = ACTIONS(1609), + [aux_sym_cmd_identifier_token5] = ACTIONS(1609), + [aux_sym_cmd_identifier_token6] = ACTIONS(1609), + [aux_sym_cmd_identifier_token7] = ACTIONS(1609), + [aux_sym_cmd_identifier_token8] = ACTIONS(1607), + [aux_sym_cmd_identifier_token9] = ACTIONS(1607), + [aux_sym_cmd_identifier_token10] = ACTIONS(1609), + [aux_sym_cmd_identifier_token11] = ACTIONS(1609), + [aux_sym_cmd_identifier_token12] = ACTIONS(1607), + [aux_sym_cmd_identifier_token13] = ACTIONS(1607), + [aux_sym_cmd_identifier_token14] = ACTIONS(1607), + [aux_sym_cmd_identifier_token15] = ACTIONS(1607), + [aux_sym_cmd_identifier_token16] = ACTIONS(1609), + [aux_sym_cmd_identifier_token17] = ACTIONS(1609), + [aux_sym_cmd_identifier_token18] = ACTIONS(1609), + [aux_sym_cmd_identifier_token19] = ACTIONS(1609), + [aux_sym_cmd_identifier_token20] = ACTIONS(1609), + [aux_sym_cmd_identifier_token21] = ACTIONS(1609), + [aux_sym_cmd_identifier_token22] = ACTIONS(1609), + [aux_sym_cmd_identifier_token23] = ACTIONS(1609), + [aux_sym_cmd_identifier_token24] = ACTIONS(1609), + [aux_sym_cmd_identifier_token25] = ACTIONS(1609), + [aux_sym_cmd_identifier_token26] = ACTIONS(1609), + [aux_sym_cmd_identifier_token27] = ACTIONS(1609), + [aux_sym_cmd_identifier_token28] = ACTIONS(1609), + [aux_sym_cmd_identifier_token29] = ACTIONS(1609), + [aux_sym_cmd_identifier_token30] = ACTIONS(1609), + [aux_sym_cmd_identifier_token31] = ACTIONS(1609), + [aux_sym_cmd_identifier_token32] = ACTIONS(1609), + [aux_sym_cmd_identifier_token33] = ACTIONS(1609), + [aux_sym_cmd_identifier_token34] = ACTIONS(1607), + [aux_sym_cmd_identifier_token35] = ACTIONS(1609), + [aux_sym_cmd_identifier_token36] = ACTIONS(1609), + [aux_sym_cmd_identifier_token37] = ACTIONS(1609), + [aux_sym_cmd_identifier_token38] = ACTIONS(1607), + [aux_sym_cmd_identifier_token39] = ACTIONS(1609), + [aux_sym_cmd_identifier_token40] = ACTIONS(1609), + [anon_sym_def] = ACTIONS(1607), + [anon_sym_export_DASHenv] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym_module] = ACTIONS(1607), + [anon_sym_use] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1609), + [anon_sym_error] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_make] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_else] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1607), + [anon_sym_catch] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_source] = ACTIONS(1607), + [anon_sym_source_DASHenv] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_hide] = ACTIONS(1607), + [anon_sym_hide_DASHenv] = ACTIONS(1607), + [anon_sym_overlay] = ACTIONS(1607), + [anon_sym_as] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1609), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), + }, + [380] = { + [sym_path] = STATE(460), + [sym_comment] = STATE(380), + [aux_sym_cell_path_repeat1] = STATE(390), + [anon_sym_export] = ACTIONS(967), + [anon_sym_alias] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_let_DASHenv] = ACTIONS(967), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [aux_sym_cmd_identifier_token1] = ACTIONS(967), + [aux_sym_cmd_identifier_token2] = ACTIONS(969), + [aux_sym_cmd_identifier_token3] = ACTIONS(969), + [aux_sym_cmd_identifier_token4] = ACTIONS(969), + [aux_sym_cmd_identifier_token5] = ACTIONS(969), + [aux_sym_cmd_identifier_token6] = ACTIONS(969), + [aux_sym_cmd_identifier_token7] = ACTIONS(969), + [aux_sym_cmd_identifier_token8] = ACTIONS(967), + [aux_sym_cmd_identifier_token9] = ACTIONS(967), + [aux_sym_cmd_identifier_token10] = ACTIONS(969), + [aux_sym_cmd_identifier_token11] = ACTIONS(969), + [aux_sym_cmd_identifier_token12] = ACTIONS(967), + [aux_sym_cmd_identifier_token13] = ACTIONS(967), + [aux_sym_cmd_identifier_token14] = ACTIONS(967), + [aux_sym_cmd_identifier_token15] = ACTIONS(967), + [aux_sym_cmd_identifier_token16] = ACTIONS(969), + [aux_sym_cmd_identifier_token17] = ACTIONS(969), + [aux_sym_cmd_identifier_token18] = ACTIONS(969), + [aux_sym_cmd_identifier_token19] = ACTIONS(969), + [aux_sym_cmd_identifier_token20] = ACTIONS(969), + [aux_sym_cmd_identifier_token21] = ACTIONS(969), + [aux_sym_cmd_identifier_token22] = ACTIONS(969), + [aux_sym_cmd_identifier_token23] = ACTIONS(969), + [aux_sym_cmd_identifier_token24] = ACTIONS(969), + [aux_sym_cmd_identifier_token25] = ACTIONS(969), + [aux_sym_cmd_identifier_token26] = ACTIONS(969), + [aux_sym_cmd_identifier_token27] = ACTIONS(969), + [aux_sym_cmd_identifier_token28] = ACTIONS(969), + [aux_sym_cmd_identifier_token29] = ACTIONS(969), + [aux_sym_cmd_identifier_token30] = ACTIONS(969), + [aux_sym_cmd_identifier_token31] = ACTIONS(969), + [aux_sym_cmd_identifier_token32] = ACTIONS(969), + [aux_sym_cmd_identifier_token33] = ACTIONS(969), + [aux_sym_cmd_identifier_token34] = ACTIONS(967), + [aux_sym_cmd_identifier_token35] = ACTIONS(969), + [aux_sym_cmd_identifier_token36] = ACTIONS(969), + [aux_sym_cmd_identifier_token37] = ACTIONS(969), + [aux_sym_cmd_identifier_token38] = ACTIONS(967), + [aux_sym_cmd_identifier_token39] = ACTIONS(969), + [aux_sym_cmd_identifier_token40] = ACTIONS(969), + [anon_sym_def] = ACTIONS(967), + [anon_sym_export_DASHenv] = ACTIONS(967), + [anon_sym_extern] = ACTIONS(967), + [anon_sym_module] = ACTIONS(967), + [anon_sym_use] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_error] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_in2] = ACTIONS(967), + [anon_sym_loop] = ACTIONS(967), + [anon_sym_make] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(967), + [anon_sym_match] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_try] = ACTIONS(967), + [anon_sym_catch] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_source] = ACTIONS(967), + [anon_sym_source_DASHenv] = ACTIONS(967), + [anon_sym_register] = ACTIONS(967), + [anon_sym_hide] = ACTIONS(967), + [anon_sym_hide_DASHenv] = ACTIONS(967), + [anon_sym_overlay] = ACTIONS(967), + [anon_sym_as] = ACTIONS(967), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(1793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(969), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(969), + [aux_sym__val_number_token1] = ACTIONS(969), + [aux_sym__val_number_token2] = ACTIONS(969), + [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_token4] = ACTIONS(967), + [aux_sym__val_number_token5] = ACTIONS(967), + [aux_sym__val_number_token6] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(969), + }, + [381] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(4661), + [sym__val_range] = STATE(7658), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(4661), + [sym_val_nothing] = STATE(4616), + [sym_val_bool] = STATE(4396), + [sym__spread_variable] = STATE(4662), + [sym_val_variable] = STATE(4245), + [sym_val_number] = STATE(4616), + [sym__val_number_decimal] = STATE(4018), + [sym__val_number] = STATE(4634), + [sym_val_duration] = STATE(4616), + [sym_val_filesize] = STATE(4616), + [sym_val_binary] = STATE(4616), + [sym_val_string] = STATE(4616), + [sym__raw_str] = STATE(4465), + [sym__str_double_quotes] = STATE(4465), + [sym_val_interpolated] = STATE(4616), + [sym__inter_single_quotes] = STATE(4689), + [sym__inter_double_quotes] = STATE(4701), + [sym_val_list] = STATE(4616), + [sym__spread_list] = STATE(4659), + [sym_val_record] = STATE(4616), + [sym_val_table] = STATE(4616), + [sym_val_closure] = STATE(4616), + [sym__cmd_arg] = STATE(4668), + [sym_redirection] = STATE(4678), + [sym__flag] = STATE(4679), + [sym_short_flag] = STATE(4685), + [sym_long_flag] = STATE(4685), + [sym_unquoted] = STATE(4464), + [sym__unquoted_with_expr] = STATE(4692), + [sym__unquoted_anonymous_prefix] = STATE(7065), + [sym_comment] = STATE(381), + [sym__newline] = ACTIONS(1802), + [sym__space] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT] = ACTIONS(1822), + [anon_sym_null] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(1830), + [aux_sym__val_number_decimal_token3] = ACTIONS(1832), + [aux_sym__val_number_decimal_token4] = ACTIONS(1834), + [aux_sym__val_number_token1] = ACTIONS(1836), + [aux_sym__val_number_token2] = ACTIONS(1836), + [aux_sym__val_number_token3] = ACTIONS(1836), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1838), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(1844), + [anon_sym_DQUOTE] = ACTIONS(1846), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1852), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1854), + [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(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [aux_sym_unquoted_token1] = ACTIONS(1858), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1044), + [sym_raw_string_begin] = ACTIONS(1860), }, - [313] = { - [sym_comment] = STATE(313), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [anon_sym_null] = ACTIONS(1703), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1703), - [aux_sym_cmd_identifier_token40] = ACTIONS(1703), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [aux_sym__val_number_decimal_token2] = ACTIONS(1703), - [aux_sym__val_number_decimal_token3] = ACTIONS(1703), - [aux_sym__val_number_decimal_token4] = ACTIONS(1703), - [aux_sym__val_number_token1] = ACTIONS(1703), - [aux_sym__val_number_token2] = ACTIONS(1703), - [aux_sym__val_number_token3] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym__str_single_quotes] = ACTIONS(1703), - [sym__str_back_ticks] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), - [sym__entry_separator] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1703), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), + [382] = { + [sym_comment] = STATE(382), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_PLUS2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(1862), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), + [aux_sym__immediate_decimal_token2] = ACTIONS(1864), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1705), + [sym_raw_string_begin] = ACTIONS(1757), }, - [314] = { - [sym_comment] = STATE(314), - [ts_builtin_sym_end] = ACTIONS(1366), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), + [383] = { + [sym_comment] = STATE(383), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [384] = { + [sym_comment] = STATE(384), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = 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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [385] = { + [sym_comment] = STATE(385), + [anon_sym_export] = ACTIONS(1866), + [anon_sym_alias] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_let_DASHenv] = ACTIONS(1866), + [anon_sym_mut] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [aux_sym_cmd_identifier_token1] = ACTIONS(1866), + [aux_sym_cmd_identifier_token2] = ACTIONS(1866), + [aux_sym_cmd_identifier_token3] = ACTIONS(1866), + [aux_sym_cmd_identifier_token4] = ACTIONS(1866), + [aux_sym_cmd_identifier_token5] = ACTIONS(1866), + [aux_sym_cmd_identifier_token6] = ACTIONS(1866), + [aux_sym_cmd_identifier_token7] = ACTIONS(1866), + [aux_sym_cmd_identifier_token8] = ACTIONS(1866), + [aux_sym_cmd_identifier_token9] = ACTIONS(1866), + [aux_sym_cmd_identifier_token10] = ACTIONS(1866), + [aux_sym_cmd_identifier_token11] = ACTIONS(1866), + [aux_sym_cmd_identifier_token12] = ACTIONS(1866), + [aux_sym_cmd_identifier_token13] = ACTIONS(1866), + [aux_sym_cmd_identifier_token14] = ACTIONS(1866), + [aux_sym_cmd_identifier_token15] = ACTIONS(1866), + [aux_sym_cmd_identifier_token16] = ACTIONS(1866), + [aux_sym_cmd_identifier_token17] = ACTIONS(1866), + [aux_sym_cmd_identifier_token18] = ACTIONS(1866), + [aux_sym_cmd_identifier_token19] = ACTIONS(1866), + [aux_sym_cmd_identifier_token20] = ACTIONS(1866), + [aux_sym_cmd_identifier_token21] = ACTIONS(1866), + [aux_sym_cmd_identifier_token22] = ACTIONS(1866), + [aux_sym_cmd_identifier_token23] = ACTIONS(1866), + [aux_sym_cmd_identifier_token24] = ACTIONS(1866), + [aux_sym_cmd_identifier_token25] = ACTIONS(1866), + [aux_sym_cmd_identifier_token26] = ACTIONS(1866), + [aux_sym_cmd_identifier_token27] = ACTIONS(1866), + [aux_sym_cmd_identifier_token28] = ACTIONS(1866), + [aux_sym_cmd_identifier_token29] = ACTIONS(1866), + [aux_sym_cmd_identifier_token30] = ACTIONS(1866), + [aux_sym_cmd_identifier_token31] = ACTIONS(1866), + [aux_sym_cmd_identifier_token32] = ACTIONS(1866), + [aux_sym_cmd_identifier_token33] = ACTIONS(1866), + [aux_sym_cmd_identifier_token34] = ACTIONS(1866), + [aux_sym_cmd_identifier_token35] = ACTIONS(1866), + [aux_sym_cmd_identifier_token36] = ACTIONS(1866), + [aux_sym_cmd_identifier_token37] = ACTIONS(1866), + [aux_sym_cmd_identifier_token38] = ACTIONS(1866), + [aux_sym_cmd_identifier_token39] = ACTIONS(1866), + [aux_sym_cmd_identifier_token40] = ACTIONS(1866), + [anon_sym_def] = ACTIONS(1866), + [anon_sym_export_DASHenv] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_module] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_make] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_catch] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_source] = ACTIONS(1866), + [anon_sym_source_DASHenv] = ACTIONS(1866), + [anon_sym_register] = ACTIONS(1866), + [anon_sym_hide] = ACTIONS(1866), + [anon_sym_hide_DASHenv] = ACTIONS(1866), + [anon_sym_overlay] = ACTIONS(1866), + [anon_sym_as] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1870), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1872), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1866), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [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), + [aux_sym__val_number_token4] = ACTIONS(1866), + [aux_sym__val_number_token5] = ACTIONS(1866), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [386] = { + [sym_cell_path] = STATE(602), + [sym_path] = STATE(517), + [sym_comment] = STATE(386), + [aux_sym_cell_path_repeat1] = STATE(409), + [anon_sym_export] = ACTIONS(961), + [anon_sym_alias] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_let_DASHenv] = ACTIONS(961), + [anon_sym_mut] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [aux_sym_cmd_identifier_token1] = ACTIONS(961), + [aux_sym_cmd_identifier_token2] = ACTIONS(963), + [aux_sym_cmd_identifier_token3] = ACTIONS(963), + [aux_sym_cmd_identifier_token4] = ACTIONS(963), + [aux_sym_cmd_identifier_token5] = ACTIONS(963), + [aux_sym_cmd_identifier_token6] = ACTIONS(963), + [aux_sym_cmd_identifier_token7] = ACTIONS(963), + [aux_sym_cmd_identifier_token8] = ACTIONS(961), + [aux_sym_cmd_identifier_token9] = ACTIONS(961), + [aux_sym_cmd_identifier_token10] = ACTIONS(963), + [aux_sym_cmd_identifier_token11] = ACTIONS(963), + [aux_sym_cmd_identifier_token12] = ACTIONS(961), + [aux_sym_cmd_identifier_token13] = ACTIONS(961), + [aux_sym_cmd_identifier_token14] = ACTIONS(961), + [aux_sym_cmd_identifier_token15] = ACTIONS(961), + [aux_sym_cmd_identifier_token16] = ACTIONS(963), + [aux_sym_cmd_identifier_token17] = ACTIONS(963), + [aux_sym_cmd_identifier_token18] = ACTIONS(963), + [aux_sym_cmd_identifier_token19] = ACTIONS(963), + [aux_sym_cmd_identifier_token20] = ACTIONS(963), + [aux_sym_cmd_identifier_token21] = ACTIONS(963), + [aux_sym_cmd_identifier_token22] = ACTIONS(963), + [aux_sym_cmd_identifier_token23] = ACTIONS(963), + [aux_sym_cmd_identifier_token24] = ACTIONS(963), + [aux_sym_cmd_identifier_token25] = ACTIONS(963), + [aux_sym_cmd_identifier_token26] = ACTIONS(963), + [aux_sym_cmd_identifier_token27] = ACTIONS(963), + [aux_sym_cmd_identifier_token28] = ACTIONS(963), + [aux_sym_cmd_identifier_token29] = ACTIONS(963), + [aux_sym_cmd_identifier_token30] = ACTIONS(963), + [aux_sym_cmd_identifier_token31] = ACTIONS(963), + [aux_sym_cmd_identifier_token32] = ACTIONS(963), + [aux_sym_cmd_identifier_token33] = ACTIONS(963), + [aux_sym_cmd_identifier_token34] = ACTIONS(961), + [aux_sym_cmd_identifier_token35] = ACTIONS(963), + [aux_sym_cmd_identifier_token36] = ACTIONS(963), + [aux_sym_cmd_identifier_token37] = ACTIONS(963), + [aux_sym_cmd_identifier_token38] = ACTIONS(961), + [aux_sym_cmd_identifier_token39] = ACTIONS(963), + [aux_sym_cmd_identifier_token40] = ACTIONS(963), + [anon_sym_def] = ACTIONS(961), + [anon_sym_export_DASHenv] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_error] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_make] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_try] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_source] = ACTIONS(961), + [anon_sym_source_DASHenv] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_hide_DASHenv] = ACTIONS(961), + [anon_sym_overlay] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(1876), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(961), + [aux_sym__val_number_token5] = ACTIONS(961), + [aux_sym__val_number_token6] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), + [aux_sym_record_entry_token1] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), + }, + [387] = { + [sym_comment] = STATE(387), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1783), + [aux_sym_cmd_identifier_token3] = ACTIONS(1783), + [aux_sym_cmd_identifier_token4] = ACTIONS(1783), + [aux_sym_cmd_identifier_token5] = ACTIONS(1783), + [aux_sym_cmd_identifier_token6] = ACTIONS(1783), + [aux_sym_cmd_identifier_token7] = ACTIONS(1783), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1783), + [aux_sym_cmd_identifier_token11] = ACTIONS(1783), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1783), + [aux_sym_cmd_identifier_token17] = ACTIONS(1783), + [aux_sym_cmd_identifier_token18] = ACTIONS(1783), + [aux_sym_cmd_identifier_token19] = ACTIONS(1783), + [aux_sym_cmd_identifier_token20] = ACTIONS(1783), + [aux_sym_cmd_identifier_token21] = ACTIONS(1783), + [aux_sym_cmd_identifier_token22] = ACTIONS(1783), + [aux_sym_cmd_identifier_token23] = ACTIONS(1783), + [aux_sym_cmd_identifier_token24] = ACTIONS(1783), + [aux_sym_cmd_identifier_token25] = ACTIONS(1783), + [aux_sym_cmd_identifier_token26] = ACTIONS(1783), + [aux_sym_cmd_identifier_token27] = ACTIONS(1783), + [aux_sym_cmd_identifier_token28] = ACTIONS(1783), + [aux_sym_cmd_identifier_token29] = ACTIONS(1783), + [aux_sym_cmd_identifier_token30] = ACTIONS(1783), + [aux_sym_cmd_identifier_token31] = ACTIONS(1783), + [aux_sym_cmd_identifier_token32] = ACTIONS(1783), + [aux_sym_cmd_identifier_token33] = ACTIONS(1783), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1783), + [aux_sym_cmd_identifier_token36] = ACTIONS(1783), + [aux_sym_cmd_identifier_token37] = ACTIONS(1783), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1783), + [aux_sym_cmd_identifier_token40] = ACTIONS(1783), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1783), + [aux_sym__val_number_decimal_token3] = ACTIONS(1783), + [aux_sym__val_number_decimal_token4] = ACTIONS(1783), + [aux_sym__val_number_token1] = ACTIONS(1783), + [aux_sym__val_number_token2] = ACTIONS(1783), + [aux_sym__val_number_token3] = ACTIONS(1783), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [sym__str_single_quotes] = ACTIONS(1783), + [sym__str_back_ticks] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), + [sym__entry_separator] = ACTIONS(1785), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1785), + }, + [388] = { + [sym_comment] = STATE(388), + [anon_sym_export] = ACTIONS(1878), + [anon_sym_alias] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_let_DASHenv] = ACTIONS(1878), + [anon_sym_mut] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [aux_sym_cmd_identifier_token1] = ACTIONS(1878), + [aux_sym_cmd_identifier_token2] = ACTIONS(1878), + [aux_sym_cmd_identifier_token3] = ACTIONS(1878), + [aux_sym_cmd_identifier_token4] = ACTIONS(1878), + [aux_sym_cmd_identifier_token5] = ACTIONS(1878), + [aux_sym_cmd_identifier_token6] = ACTIONS(1878), + [aux_sym_cmd_identifier_token7] = ACTIONS(1878), + [aux_sym_cmd_identifier_token8] = ACTIONS(1878), + [aux_sym_cmd_identifier_token9] = ACTIONS(1878), + [aux_sym_cmd_identifier_token10] = ACTIONS(1878), + [aux_sym_cmd_identifier_token11] = ACTIONS(1878), + [aux_sym_cmd_identifier_token12] = ACTIONS(1878), + [aux_sym_cmd_identifier_token13] = ACTIONS(1878), + [aux_sym_cmd_identifier_token14] = ACTIONS(1878), + [aux_sym_cmd_identifier_token15] = ACTIONS(1878), + [aux_sym_cmd_identifier_token16] = ACTIONS(1878), + [aux_sym_cmd_identifier_token17] = ACTIONS(1878), + [aux_sym_cmd_identifier_token18] = ACTIONS(1878), + [aux_sym_cmd_identifier_token19] = ACTIONS(1878), + [aux_sym_cmd_identifier_token20] = ACTIONS(1878), + [aux_sym_cmd_identifier_token21] = ACTIONS(1878), + [aux_sym_cmd_identifier_token22] = ACTIONS(1878), + [aux_sym_cmd_identifier_token23] = ACTIONS(1878), + [aux_sym_cmd_identifier_token24] = ACTIONS(1878), + [aux_sym_cmd_identifier_token25] = ACTIONS(1878), + [aux_sym_cmd_identifier_token26] = ACTIONS(1878), + [aux_sym_cmd_identifier_token27] = ACTIONS(1878), + [aux_sym_cmd_identifier_token28] = ACTIONS(1878), + [aux_sym_cmd_identifier_token29] = ACTIONS(1878), + [aux_sym_cmd_identifier_token30] = ACTIONS(1878), + [aux_sym_cmd_identifier_token31] = ACTIONS(1878), + [aux_sym_cmd_identifier_token32] = ACTIONS(1878), + [aux_sym_cmd_identifier_token33] = ACTIONS(1878), + [aux_sym_cmd_identifier_token34] = ACTIONS(1878), + [aux_sym_cmd_identifier_token35] = ACTIONS(1878), + [aux_sym_cmd_identifier_token36] = ACTIONS(1878), + [aux_sym_cmd_identifier_token37] = ACTIONS(1878), + [aux_sym_cmd_identifier_token38] = ACTIONS(1878), + [aux_sym_cmd_identifier_token39] = ACTIONS(1878), + [aux_sym_cmd_identifier_token40] = ACTIONS(1878), + [anon_sym_def] = ACTIONS(1878), + [anon_sym_export_DASHenv] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_module] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_error] = ACTIONS(1878), + [anon_sym_DASH2] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_in2] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_make] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_do] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1878), + [anon_sym_catch] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_source] = ACTIONS(1878), + [anon_sym_source_DASHenv] = ACTIONS(1878), + [anon_sym_register] = ACTIONS(1878), + [anon_sym_hide] = ACTIONS(1878), + [anon_sym_hide_DASHenv] = ACTIONS(1878), + [anon_sym_overlay] = ACTIONS(1878), + [anon_sym_as] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1878), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1878), + [anon_sym_DOT_DOT2] = ACTIONS(1882), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1884), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1878), + [aux_sym__val_number_decimal_token1] = ACTIONS(1878), + [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), + [aux_sym__val_number_token4] = ACTIONS(1878), + [aux_sym__val_number_token5] = ACTIONS(1878), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1886), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1886), + }, + [389] = { + [sym_comment] = STATE(389), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = 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_as] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [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), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = 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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [390] = { + [sym_path] = STATE(460), + [sym_comment] = STATE(390), + [aux_sym_cell_path_repeat1] = STATE(390), + [anon_sym_export] = ACTIONS(971), + [anon_sym_alias] = ACTIONS(971), + [anon_sym_let] = ACTIONS(971), + [anon_sym_let_DASHenv] = ACTIONS(971), + [anon_sym_mut] = ACTIONS(971), + [anon_sym_const] = ACTIONS(971), + [aux_sym_cmd_identifier_token1] = ACTIONS(971), + [aux_sym_cmd_identifier_token2] = ACTIONS(973), + [aux_sym_cmd_identifier_token3] = ACTIONS(973), + [aux_sym_cmd_identifier_token4] = ACTIONS(973), + [aux_sym_cmd_identifier_token5] = ACTIONS(973), + [aux_sym_cmd_identifier_token6] = ACTIONS(973), + [aux_sym_cmd_identifier_token7] = ACTIONS(973), + [aux_sym_cmd_identifier_token8] = ACTIONS(971), + [aux_sym_cmd_identifier_token9] = ACTIONS(971), + [aux_sym_cmd_identifier_token10] = ACTIONS(973), + [aux_sym_cmd_identifier_token11] = ACTIONS(973), + [aux_sym_cmd_identifier_token12] = ACTIONS(971), + [aux_sym_cmd_identifier_token13] = ACTIONS(971), + [aux_sym_cmd_identifier_token14] = ACTIONS(971), + [aux_sym_cmd_identifier_token15] = ACTIONS(971), + [aux_sym_cmd_identifier_token16] = ACTIONS(973), + [aux_sym_cmd_identifier_token17] = ACTIONS(973), + [aux_sym_cmd_identifier_token18] = ACTIONS(973), + [aux_sym_cmd_identifier_token19] = ACTIONS(973), + [aux_sym_cmd_identifier_token20] = ACTIONS(973), + [aux_sym_cmd_identifier_token21] = ACTIONS(973), + [aux_sym_cmd_identifier_token22] = ACTIONS(973), + [aux_sym_cmd_identifier_token23] = ACTIONS(973), + [aux_sym_cmd_identifier_token24] = ACTIONS(973), + [aux_sym_cmd_identifier_token25] = ACTIONS(973), + [aux_sym_cmd_identifier_token26] = ACTIONS(973), + [aux_sym_cmd_identifier_token27] = ACTIONS(973), + [aux_sym_cmd_identifier_token28] = ACTIONS(973), + [aux_sym_cmd_identifier_token29] = ACTIONS(973), + [aux_sym_cmd_identifier_token30] = ACTIONS(973), + [aux_sym_cmd_identifier_token31] = ACTIONS(973), + [aux_sym_cmd_identifier_token32] = ACTIONS(973), + [aux_sym_cmd_identifier_token33] = ACTIONS(973), + [aux_sym_cmd_identifier_token34] = ACTIONS(971), + [aux_sym_cmd_identifier_token35] = ACTIONS(973), + [aux_sym_cmd_identifier_token36] = ACTIONS(973), + [aux_sym_cmd_identifier_token37] = ACTIONS(973), + [aux_sym_cmd_identifier_token38] = ACTIONS(971), + [aux_sym_cmd_identifier_token39] = ACTIONS(973), + [aux_sym_cmd_identifier_token40] = ACTIONS(973), + [anon_sym_def] = ACTIONS(971), + [anon_sym_export_DASHenv] = ACTIONS(971), + [anon_sym_extern] = ACTIONS(971), + [anon_sym_module] = ACTIONS(971), + [anon_sym_use] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_break] = ACTIONS(971), + [anon_sym_continue] = ACTIONS(971), + [anon_sym_for] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(971), + [anon_sym_loop] = ACTIONS(971), + [anon_sym_make] = ACTIONS(971), + [anon_sym_while] = ACTIONS(971), + [anon_sym_do] = ACTIONS(971), + [anon_sym_if] = ACTIONS(971), + [anon_sym_else] = ACTIONS(971), + [anon_sym_match] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_try] = ACTIONS(971), + [anon_sym_catch] = ACTIONS(971), + [anon_sym_return] = ACTIONS(971), + [anon_sym_source] = ACTIONS(971), + [anon_sym_source_DASHenv] = ACTIONS(971), + [anon_sym_register] = ACTIONS(971), + [anon_sym_hide] = ACTIONS(971), + [anon_sym_hide_DASHenv] = ACTIONS(971), + [anon_sym_overlay] = ACTIONS(971), + [anon_sym_as] = ACTIONS(971), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(971), + [aux_sym__val_number_decimal_token2] = ACTIONS(973), + [aux_sym__val_number_decimal_token3] = ACTIONS(973), + [aux_sym__val_number_decimal_token4] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(971), + [aux_sym__val_number_token5] = ACTIONS(971), + [aux_sym__val_number_token6] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(973), + }, + [391] = { + [sym_comment] = STATE(391), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [aux_sym_cmd_identifier_token2] = ACTIONS(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), + [aux_sym_cmd_identifier_token8] = ACTIONS(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [aux_sym_cmd_identifier_token16] = ACTIONS(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), + [aux_sym_cmd_identifier_token34] = ACTIONS(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_register] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(1897), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [sym__entry_separator] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(980), + }, + [392] = { + [sym_comment] = STATE(392), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(984), + [aux_sym_cmd_identifier_token3] = ACTIONS(984), + [aux_sym_cmd_identifier_token4] = ACTIONS(984), + [aux_sym_cmd_identifier_token5] = ACTIONS(984), + [aux_sym_cmd_identifier_token6] = ACTIONS(984), + [aux_sym_cmd_identifier_token7] = ACTIONS(984), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(984), + [aux_sym_cmd_identifier_token17] = ACTIONS(984), + [aux_sym_cmd_identifier_token18] = ACTIONS(984), + [aux_sym_cmd_identifier_token19] = ACTIONS(984), + [aux_sym_cmd_identifier_token20] = ACTIONS(984), + [aux_sym_cmd_identifier_token21] = ACTIONS(984), + [aux_sym_cmd_identifier_token22] = ACTIONS(984), + [aux_sym_cmd_identifier_token23] = ACTIONS(984), + [aux_sym_cmd_identifier_token24] = ACTIONS(984), + [aux_sym_cmd_identifier_token25] = ACTIONS(984), + [aux_sym_cmd_identifier_token26] = ACTIONS(984), + [aux_sym_cmd_identifier_token27] = ACTIONS(984), + [aux_sym_cmd_identifier_token28] = ACTIONS(984), + [aux_sym_cmd_identifier_token29] = ACTIONS(984), + [aux_sym_cmd_identifier_token30] = ACTIONS(984), + [aux_sym_cmd_identifier_token31] = ACTIONS(984), + [aux_sym_cmd_identifier_token32] = ACTIONS(984), + [aux_sym_cmd_identifier_token33] = ACTIONS(984), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(984), + [aux_sym_cmd_identifier_token36] = ACTIONS(984), + [aux_sym_cmd_identifier_token37] = ACTIONS(984), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(1899), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), + [sym__entry_separator] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(986), + }, + [393] = { + [sym_comment] = STATE(393), + [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(1757), [aux_sym_cmd_identifier_token3] = ACTIONS(1757), [aux_sym_cmd_identifier_token4] = ACTIONS(1757), [aux_sym_cmd_identifier_token5] = ACTIONS(1757), [aux_sym_cmd_identifier_token6] = ACTIONS(1757), [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), [aux_sym_cmd_identifier_token10] = ACTIONS(1757), [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), + [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(1757), [aux_sym_cmd_identifier_token17] = ACTIONS(1757), [aux_sym_cmd_identifier_token18] = ACTIONS(1757), @@ -113750,4713 +118649,1235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1757), [aux_sym_cmd_identifier_token22] = ACTIONS(1757), [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1366), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1366), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), [aux_sym_cmd_identifier_token27] = ACTIONS(1757), [aux_sym_cmd_identifier_token28] = ACTIONS(1757), [aux_sym_cmd_identifier_token29] = ACTIONS(1757), [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1366), - [aux_sym_cmd_identifier_token32] = ACTIONS(1366), - [aux_sym_cmd_identifier_token33] = ACTIONS(1366), - [aux_sym_cmd_identifier_token34] = ACTIONS(1366), - [aux_sym_cmd_identifier_token35] = ACTIONS(1366), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [anon_sym_null] = ACTIONS(1366), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1366), - [aux_sym_cmd_identifier_token40] = ACTIONS(1366), - [sym__newline] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1366), + [aux_sym_cmd_identifier_token37] = 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(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_where] = ACTIONS(1366), - [aux_sym_expr_unary_token1] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_DOT_DOT_LT] = ACTIONS(1366), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1366), - [aux_sym__val_number_decimal_token3] = ACTIONS(1366), - [aux_sym__val_number_decimal_token4] = ACTIONS(1366), - [aux_sym__val_number_token1] = ACTIONS(1366), - [aux_sym__val_number_token2] = ACTIONS(1366), - [aux_sym__val_number_token3] = ACTIONS(1366), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym__str_single_quotes] = ACTIONS(1366), - [sym__str_back_ticks] = ACTIONS(1366), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1366), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1366), - [aux_sym_env_var_token1] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1366), - }, - [315] = { - [sym_comment] = STATE(315), - [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(1821), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), - [anon_sym_DOT_DOT2] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1048), - [aux_sym__val_number_decimal_token3] = ACTIONS(1048), - [aux_sym__val_number_decimal_token4] = ACTIONS(1048), - [aux_sym__val_number_token1] = ACTIONS(1048), - [aux_sym__val_number_token2] = ACTIONS(1048), - [aux_sym__val_number_token3] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym__str_single_quotes] = ACTIONS(1048), - [sym__str_back_ticks] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), - [sym__entry_separator] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1050), - }, - [316] = { - [sym_path] = STATE(423), - [sym_comment] = STATE(316), - [aux_sym_cell_path_repeat1] = STATE(316), - [anon_sym_export] = ACTIONS(1031), - [anon_sym_alias] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1031), - [anon_sym_let_DASHenv] = ACTIONS(1031), - [anon_sym_mut] = ACTIONS(1031), - [anon_sym_const] = ACTIONS(1031), - [aux_sym_cmd_identifier_token1] = ACTIONS(1031), - [aux_sym_cmd_identifier_token2] = ACTIONS(1031), - [aux_sym_cmd_identifier_token3] = ACTIONS(1031), - [aux_sym_cmd_identifier_token4] = ACTIONS(1031), - [aux_sym_cmd_identifier_token5] = ACTIONS(1031), - [aux_sym_cmd_identifier_token6] = ACTIONS(1031), - [aux_sym_cmd_identifier_token7] = ACTIONS(1031), - [aux_sym_cmd_identifier_token8] = ACTIONS(1031), - [aux_sym_cmd_identifier_token9] = ACTIONS(1031), - [aux_sym_cmd_identifier_token10] = ACTIONS(1031), - [aux_sym_cmd_identifier_token11] = ACTIONS(1031), - [aux_sym_cmd_identifier_token12] = ACTIONS(1031), - [aux_sym_cmd_identifier_token13] = ACTIONS(1031), - [aux_sym_cmd_identifier_token14] = ACTIONS(1031), - [aux_sym_cmd_identifier_token15] = ACTIONS(1031), - [aux_sym_cmd_identifier_token16] = ACTIONS(1031), - [aux_sym_cmd_identifier_token17] = ACTIONS(1031), - [aux_sym_cmd_identifier_token18] = ACTIONS(1031), - [aux_sym_cmd_identifier_token19] = ACTIONS(1031), - [aux_sym_cmd_identifier_token20] = ACTIONS(1031), - [aux_sym_cmd_identifier_token21] = ACTIONS(1031), - [aux_sym_cmd_identifier_token22] = ACTIONS(1031), - [aux_sym_cmd_identifier_token23] = ACTIONS(1031), - [aux_sym_cmd_identifier_token24] = ACTIONS(1031), - [aux_sym_cmd_identifier_token25] = ACTIONS(1031), - [aux_sym_cmd_identifier_token26] = ACTIONS(1031), - [aux_sym_cmd_identifier_token27] = ACTIONS(1031), - [aux_sym_cmd_identifier_token28] = ACTIONS(1031), - [aux_sym_cmd_identifier_token29] = ACTIONS(1031), - [aux_sym_cmd_identifier_token30] = ACTIONS(1031), - [aux_sym_cmd_identifier_token31] = ACTIONS(1031), - [aux_sym_cmd_identifier_token32] = ACTIONS(1031), - [aux_sym_cmd_identifier_token33] = ACTIONS(1031), - [aux_sym_cmd_identifier_token34] = ACTIONS(1031), - [aux_sym_cmd_identifier_token35] = ACTIONS(1031), - [aux_sym_cmd_identifier_token36] = ACTIONS(1031), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [aux_sym_cmd_identifier_token38] = ACTIONS(1031), - [aux_sym_cmd_identifier_token39] = ACTIONS(1033), - [aux_sym_cmd_identifier_token40] = ACTIONS(1033), - [anon_sym_def] = ACTIONS(1031), - [anon_sym_export_DASHenv] = ACTIONS(1031), - [anon_sym_extern] = ACTIONS(1031), - [anon_sym_module] = ACTIONS(1031), - [anon_sym_use] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1031), - [anon_sym_list] = ACTIONS(1031), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_break] = ACTIONS(1031), - [anon_sym_continue] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(1031), - [anon_sym_in] = ACTIONS(1031), - [anon_sym_loop] = ACTIONS(1031), - [anon_sym_make] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1031), - [anon_sym_else] = ACTIONS(1031), - [anon_sym_match] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1031), - [anon_sym_catch] = ACTIONS(1031), - [anon_sym_return] = ACTIONS(1031), - [anon_sym_source] = ACTIONS(1031), - [anon_sym_source_DASHenv] = ACTIONS(1031), - [anon_sym_register] = ACTIONS(1031), - [anon_sym_hide] = ACTIONS(1031), - [anon_sym_hide_DASHenv] = ACTIONS(1031), - [anon_sym_overlay] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_as] = ACTIONS(1031), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1033), - [anon_sym_DOT_DOT2] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1031), - [aux_sym__val_number_decimal_token2] = ACTIONS(1033), - [aux_sym__val_number_decimal_token3] = ACTIONS(1033), - [aux_sym__val_number_decimal_token4] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1031), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1033), - }, - [317] = { - [sym_comment] = STATE(317), - [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), - [sym_raw_string_begin] = ACTIONS(1040), - }, - [318] = { - [sym_comment] = STATE(318), - [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(1364), - [aux_sym_cmd_identifier_token2] = ACTIONS(1364), - [aux_sym_cmd_identifier_token3] = ACTIONS(1364), - [aux_sym_cmd_identifier_token4] = ACTIONS(1364), - [aux_sym_cmd_identifier_token5] = ACTIONS(1364), - [aux_sym_cmd_identifier_token6] = ACTIONS(1364), - [aux_sym_cmd_identifier_token7] = ACTIONS(1364), - [aux_sym_cmd_identifier_token8] = ACTIONS(1364), - [aux_sym_cmd_identifier_token9] = ACTIONS(1364), - [aux_sym_cmd_identifier_token10] = ACTIONS(1364), - [aux_sym_cmd_identifier_token11] = ACTIONS(1364), - [aux_sym_cmd_identifier_token12] = ACTIONS(1364), - [aux_sym_cmd_identifier_token13] = ACTIONS(1364), - [aux_sym_cmd_identifier_token14] = ACTIONS(1364), - [aux_sym_cmd_identifier_token15] = ACTIONS(1364), - [aux_sym_cmd_identifier_token16] = ACTIONS(1364), - [aux_sym_cmd_identifier_token17] = ACTIONS(1364), - [aux_sym_cmd_identifier_token18] = ACTIONS(1364), - [aux_sym_cmd_identifier_token19] = ACTIONS(1364), - [aux_sym_cmd_identifier_token20] = ACTIONS(1364), - [aux_sym_cmd_identifier_token21] = ACTIONS(1364), - [aux_sym_cmd_identifier_token22] = ACTIONS(1364), - [aux_sym_cmd_identifier_token23] = ACTIONS(1364), - [aux_sym_cmd_identifier_token24] = ACTIONS(1362), - [aux_sym_cmd_identifier_token25] = ACTIONS(1364), - [aux_sym_cmd_identifier_token26] = ACTIONS(1362), - [aux_sym_cmd_identifier_token27] = ACTIONS(1364), - [aux_sym_cmd_identifier_token28] = ACTIONS(1364), - [aux_sym_cmd_identifier_token29] = ACTIONS(1364), - [aux_sym_cmd_identifier_token30] = ACTIONS(1364), - [aux_sym_cmd_identifier_token31] = ACTIONS(1362), - [aux_sym_cmd_identifier_token32] = ACTIONS(1362), - [aux_sym_cmd_identifier_token33] = ACTIONS(1362), - [aux_sym_cmd_identifier_token34] = ACTIONS(1362), - [aux_sym_cmd_identifier_token35] = ACTIONS(1362), - [aux_sym_cmd_identifier_token36] = ACTIONS(1364), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [aux_sym_cmd_identifier_token38] = ACTIONS(1364), - [aux_sym_cmd_identifier_token39] = ACTIONS(1362), - [aux_sym_cmd_identifier_token40] = ACTIONS(1362), - [sym__newline] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [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_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1364), - [anon_sym_error] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_loop] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_match] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_try] = 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_where] = ACTIONS(1362), - [aux_sym_expr_unary_token1] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1364), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_decimal_token4] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1364), - [anon_sym_0o] = ACTIONS(1364), - [anon_sym_0x] = ACTIONS(1364), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), - [aux_sym_env_var_token1] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1362), - }, - [319] = { - [sym_comment] = STATE(319), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1769), - [aux_sym_cmd_identifier_token40] = ACTIONS(1769), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), - [sym__entry_separator] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1771), - }, - [320] = { - [sym_comment] = STATE(320), - [anon_sym_export] = ACTIONS(1826), - [anon_sym_alias] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_let_DASHenv] = ACTIONS(1826), - [anon_sym_mut] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [aux_sym_cmd_identifier_token1] = ACTIONS(1826), - [aux_sym_cmd_identifier_token2] = ACTIONS(1826), - [aux_sym_cmd_identifier_token3] = ACTIONS(1826), - [aux_sym_cmd_identifier_token4] = ACTIONS(1826), - [aux_sym_cmd_identifier_token5] = ACTIONS(1826), - [aux_sym_cmd_identifier_token6] = ACTIONS(1826), - [aux_sym_cmd_identifier_token7] = ACTIONS(1826), - [aux_sym_cmd_identifier_token8] = ACTIONS(1826), - [aux_sym_cmd_identifier_token9] = ACTIONS(1826), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1826), - [aux_sym_cmd_identifier_token13] = ACTIONS(1826), - [aux_sym_cmd_identifier_token14] = ACTIONS(1826), - [aux_sym_cmd_identifier_token15] = ACTIONS(1826), - [aux_sym_cmd_identifier_token16] = ACTIONS(1826), - [aux_sym_cmd_identifier_token17] = ACTIONS(1826), - [aux_sym_cmd_identifier_token18] = ACTIONS(1826), - [aux_sym_cmd_identifier_token19] = ACTIONS(1826), - [aux_sym_cmd_identifier_token20] = ACTIONS(1826), - [aux_sym_cmd_identifier_token21] = ACTIONS(1826), - [aux_sym_cmd_identifier_token22] = ACTIONS(1826), - [aux_sym_cmd_identifier_token23] = ACTIONS(1826), - [aux_sym_cmd_identifier_token24] = ACTIONS(1826), - [aux_sym_cmd_identifier_token25] = ACTIONS(1826), - [aux_sym_cmd_identifier_token26] = ACTIONS(1826), - [aux_sym_cmd_identifier_token27] = ACTIONS(1826), - [aux_sym_cmd_identifier_token28] = ACTIONS(1826), - [aux_sym_cmd_identifier_token29] = ACTIONS(1826), - [aux_sym_cmd_identifier_token30] = ACTIONS(1826), - [aux_sym_cmd_identifier_token31] = ACTIONS(1826), - [aux_sym_cmd_identifier_token32] = ACTIONS(1826), - [aux_sym_cmd_identifier_token33] = ACTIONS(1826), - [aux_sym_cmd_identifier_token34] = ACTIONS(1826), - [aux_sym_cmd_identifier_token35] = ACTIONS(1826), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(1826), - [anon_sym_export_DASHenv] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_module] = ACTIONS(1826), - [anon_sym_use] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_error] = ACTIONS(1826), - [anon_sym_list] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_loop] = ACTIONS(1826), - [anon_sym_make] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_match] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_catch] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_source] = ACTIONS(1826), - [anon_sym_source_DASHenv] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_hide] = ACTIONS(1826), - [anon_sym_hide_DASHenv] = ACTIONS(1826), - [anon_sym_overlay] = ACTIONS(1826), - [anon_sym_new] = ACTIONS(1826), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), - [anon_sym_DOT_DOT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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), - [sym__entry_separator] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1828), - }, - [321] = { - [sym_comment] = STATE(321), - [aux_sym_shebang_repeat1] = STATE(296), - [anon_sym_export] = ACTIONS(1830), - [anon_sym_alias] = ACTIONS(1830), - [anon_sym_let] = ACTIONS(1830), - [anon_sym_let_DASHenv] = ACTIONS(1830), - [anon_sym_mut] = ACTIONS(1830), - [anon_sym_const] = ACTIONS(1830), - [aux_sym_cmd_identifier_token1] = ACTIONS(1830), - [aux_sym_cmd_identifier_token2] = ACTIONS(1830), - [aux_sym_cmd_identifier_token3] = ACTIONS(1830), - [aux_sym_cmd_identifier_token4] = ACTIONS(1830), - [aux_sym_cmd_identifier_token5] = ACTIONS(1830), - [aux_sym_cmd_identifier_token6] = ACTIONS(1830), - [aux_sym_cmd_identifier_token7] = ACTIONS(1830), - [aux_sym_cmd_identifier_token8] = ACTIONS(1830), - [aux_sym_cmd_identifier_token9] = ACTIONS(1830), - [aux_sym_cmd_identifier_token10] = ACTIONS(1830), - [aux_sym_cmd_identifier_token11] = ACTIONS(1830), - [aux_sym_cmd_identifier_token12] = ACTIONS(1830), - [aux_sym_cmd_identifier_token13] = ACTIONS(1830), - [aux_sym_cmd_identifier_token14] = ACTIONS(1830), - [aux_sym_cmd_identifier_token15] = ACTIONS(1830), - [aux_sym_cmd_identifier_token16] = ACTIONS(1830), - [aux_sym_cmd_identifier_token17] = ACTIONS(1830), - [aux_sym_cmd_identifier_token18] = ACTIONS(1830), - [aux_sym_cmd_identifier_token19] = ACTIONS(1830), - [aux_sym_cmd_identifier_token20] = ACTIONS(1830), - [aux_sym_cmd_identifier_token21] = ACTIONS(1830), - [aux_sym_cmd_identifier_token22] = ACTIONS(1830), - [aux_sym_cmd_identifier_token23] = ACTIONS(1830), - [aux_sym_cmd_identifier_token24] = ACTIONS(1832), - [aux_sym_cmd_identifier_token25] = ACTIONS(1830), - [aux_sym_cmd_identifier_token26] = ACTIONS(1832), - [aux_sym_cmd_identifier_token27] = ACTIONS(1830), - [aux_sym_cmd_identifier_token28] = ACTIONS(1830), - [aux_sym_cmd_identifier_token29] = ACTIONS(1830), - [aux_sym_cmd_identifier_token30] = ACTIONS(1830), - [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(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [anon_sym_null] = ACTIONS(1832), - [aux_sym_cmd_identifier_token38] = ACTIONS(1830), - [aux_sym_cmd_identifier_token39] = ACTIONS(1832), - [aux_sym_cmd_identifier_token40] = ACTIONS(1832), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_def] = ACTIONS(1830), - [anon_sym_export_DASHenv] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym_module] = ACTIONS(1830), - [anon_sym_use] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_error] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_loop] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_do] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_match] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1832), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_try] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_source] = ACTIONS(1830), - [anon_sym_source_DASHenv] = ACTIONS(1830), - [anon_sym_register] = ACTIONS(1830), - [anon_sym_hide] = ACTIONS(1830), - [anon_sym_hide_DASHenv] = ACTIONS(1830), - [anon_sym_overlay] = ACTIONS(1830), - [anon_sym_where] = ACTIONS(1832), - [aux_sym_expr_unary_token1] = ACTIONS(1832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1832), - [anon_sym_DOT_DOT_LT] = ACTIONS(1832), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [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_0b] = ACTIONS(1830), - [anon_sym_0o] = ACTIONS(1830), - [anon_sym_0x] = ACTIONS(1830), - [sym_val_date] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [sym__str_single_quotes] = ACTIONS(1832), - [sym__str_back_ticks] = ACTIONS(1832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1832), - [aux_sym_env_var_token1] = ACTIONS(1830), - [anon_sym_CARET] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1832), - }, - [322] = { - [sym_cell_path] = STATE(511), - [sym_path] = STATE(468), - [sym_comment] = STATE(322), - [aux_sym_cell_path_repeat1] = STATE(327), - [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(1836), - [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(249), - [sym_raw_string_begin] = ACTIONS(1023), - }, - [323] = { - [sym_comment] = STATE(323), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1838), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), - }, - [324] = { - [sym_comment] = STATE(324), - [anon_sym_export] = ACTIONS(1842), - [anon_sym_alias] = ACTIONS(1842), - [anon_sym_let] = ACTIONS(1842), - [anon_sym_let_DASHenv] = ACTIONS(1842), - [anon_sym_mut] = ACTIONS(1842), - [anon_sym_const] = ACTIONS(1842), - [aux_sym_cmd_identifier_token1] = ACTIONS(1842), - [aux_sym_cmd_identifier_token2] = ACTIONS(1842), - [aux_sym_cmd_identifier_token3] = ACTIONS(1842), - [aux_sym_cmd_identifier_token4] = ACTIONS(1842), - [aux_sym_cmd_identifier_token5] = ACTIONS(1842), - [aux_sym_cmd_identifier_token6] = ACTIONS(1842), - [aux_sym_cmd_identifier_token7] = ACTIONS(1842), - [aux_sym_cmd_identifier_token8] = ACTIONS(1842), - [aux_sym_cmd_identifier_token9] = ACTIONS(1842), - [aux_sym_cmd_identifier_token10] = ACTIONS(1842), - [aux_sym_cmd_identifier_token11] = ACTIONS(1842), - [aux_sym_cmd_identifier_token12] = ACTIONS(1842), - [aux_sym_cmd_identifier_token13] = ACTIONS(1842), - [aux_sym_cmd_identifier_token14] = ACTIONS(1842), - [aux_sym_cmd_identifier_token15] = ACTIONS(1842), - [aux_sym_cmd_identifier_token16] = ACTIONS(1842), - [aux_sym_cmd_identifier_token17] = ACTIONS(1842), - [aux_sym_cmd_identifier_token18] = ACTIONS(1842), - [aux_sym_cmd_identifier_token19] = ACTIONS(1842), - [aux_sym_cmd_identifier_token20] = ACTIONS(1842), - [aux_sym_cmd_identifier_token21] = ACTIONS(1842), - [aux_sym_cmd_identifier_token22] = ACTIONS(1842), - [aux_sym_cmd_identifier_token23] = ACTIONS(1842), - [aux_sym_cmd_identifier_token24] = ACTIONS(1842), - [aux_sym_cmd_identifier_token25] = ACTIONS(1842), - [aux_sym_cmd_identifier_token26] = ACTIONS(1842), - [aux_sym_cmd_identifier_token27] = ACTIONS(1842), - [aux_sym_cmd_identifier_token28] = ACTIONS(1842), - [aux_sym_cmd_identifier_token29] = ACTIONS(1842), - [aux_sym_cmd_identifier_token30] = ACTIONS(1842), - [aux_sym_cmd_identifier_token31] = ACTIONS(1842), - [aux_sym_cmd_identifier_token32] = ACTIONS(1842), - [aux_sym_cmd_identifier_token33] = ACTIONS(1842), - [aux_sym_cmd_identifier_token34] = ACTIONS(1842), - [aux_sym_cmd_identifier_token35] = ACTIONS(1842), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(1842), - [anon_sym_export_DASHenv] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1842), - [anon_sym_module] = ACTIONS(1842), - [anon_sym_use] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_error] = ACTIONS(1842), - [anon_sym_list] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_in] = ACTIONS(1842), - [anon_sym_loop] = ACTIONS(1842), - [anon_sym_make] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_else] = ACTIONS(1842), - [anon_sym_match] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_try] = ACTIONS(1842), - [anon_sym_catch] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_source] = ACTIONS(1842), - [anon_sym_source_DASHenv] = ACTIONS(1842), - [anon_sym_register] = ACTIONS(1842), - [anon_sym_hide] = ACTIONS(1842), - [anon_sym_hide_DASHenv] = ACTIONS(1842), - [anon_sym_overlay] = ACTIONS(1842), - [anon_sym_new] = ACTIONS(1842), - [anon_sym_as] = ACTIONS(1842), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1842), - [anon_sym_DOT_DOT2] = ACTIONS(1846), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1848), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1848), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1842), - [aux_sym__val_number_decimal_token1] = ACTIONS(1842), - [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), - [sym__entry_separator] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1842), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1850), - }, - [325] = { - [sym_comment] = STATE(325), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), - }, - [326] = { - [sym_cell_path] = STATE(582), - [sym_path] = STATE(518), - [sym_comment] = STATE(326), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(1854), - [anon_sym_alias] = ACTIONS(1854), - [anon_sym_let] = ACTIONS(1854), - [anon_sym_let_DASHenv] = ACTIONS(1854), - [anon_sym_mut] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [aux_sym_cmd_identifier_token1] = ACTIONS(1854), - [aux_sym_cmd_identifier_token2] = ACTIONS(1854), - [aux_sym_cmd_identifier_token3] = ACTIONS(1854), - [aux_sym_cmd_identifier_token4] = ACTIONS(1854), - [aux_sym_cmd_identifier_token5] = ACTIONS(1854), - [aux_sym_cmd_identifier_token6] = ACTIONS(1854), - [aux_sym_cmd_identifier_token7] = ACTIONS(1854), - [aux_sym_cmd_identifier_token8] = ACTIONS(1854), - [aux_sym_cmd_identifier_token9] = ACTIONS(1854), - [aux_sym_cmd_identifier_token10] = ACTIONS(1854), - [aux_sym_cmd_identifier_token11] = ACTIONS(1854), - [aux_sym_cmd_identifier_token12] = ACTIONS(1854), - [aux_sym_cmd_identifier_token13] = ACTIONS(1854), - [aux_sym_cmd_identifier_token14] = ACTIONS(1854), - [aux_sym_cmd_identifier_token15] = ACTIONS(1854), - [aux_sym_cmd_identifier_token16] = ACTIONS(1854), - [aux_sym_cmd_identifier_token17] = ACTIONS(1854), - [aux_sym_cmd_identifier_token18] = ACTIONS(1854), - [aux_sym_cmd_identifier_token19] = ACTIONS(1854), - [aux_sym_cmd_identifier_token20] = ACTIONS(1854), - [aux_sym_cmd_identifier_token21] = ACTIONS(1854), - [aux_sym_cmd_identifier_token22] = ACTIONS(1854), - [aux_sym_cmd_identifier_token23] = ACTIONS(1854), - [aux_sym_cmd_identifier_token24] = ACTIONS(1854), - [aux_sym_cmd_identifier_token25] = ACTIONS(1854), - [aux_sym_cmd_identifier_token26] = ACTIONS(1854), - [aux_sym_cmd_identifier_token27] = ACTIONS(1854), - [aux_sym_cmd_identifier_token28] = ACTIONS(1854), - [aux_sym_cmd_identifier_token29] = ACTIONS(1854), - [aux_sym_cmd_identifier_token30] = ACTIONS(1854), - [aux_sym_cmd_identifier_token31] = ACTIONS(1854), - [aux_sym_cmd_identifier_token32] = ACTIONS(1854), - [aux_sym_cmd_identifier_token33] = ACTIONS(1854), - [aux_sym_cmd_identifier_token34] = ACTIONS(1854), - [aux_sym_cmd_identifier_token35] = ACTIONS(1854), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(1854), - [anon_sym_export_DASHenv] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym_module] = ACTIONS(1854), - [anon_sym_use] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_DOLLAR] = ACTIONS(1854), - [anon_sym_error] = ACTIONS(1854), - [anon_sym_list] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_loop] = ACTIONS(1854), - [anon_sym_make] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_else] = ACTIONS(1854), - [anon_sym_match] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_try] = ACTIONS(1854), - [anon_sym_catch] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_source] = ACTIONS(1854), - [anon_sym_source_DASHenv] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_hide] = ACTIONS(1854), - [anon_sym_hide_DASHenv] = ACTIONS(1854), - [anon_sym_overlay] = ACTIONS(1854), - [anon_sym_new] = ACTIONS(1854), - [anon_sym_as] = ACTIONS(1854), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1854), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1854), - [aux_sym__val_number_decimal_token1] = ACTIONS(1854), - [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), - [sym__entry_separator] = ACTIONS(1858), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1858), - }, - [327] = { - [sym_path] = STATE(468), - [sym_comment] = STATE(327), - [aux_sym_cell_path_repeat1] = STATE(328), - [anon_sym_export] = ACTIONS(1027), - [anon_sym_alias] = ACTIONS(1027), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_let_DASHenv] = ACTIONS(1027), - [anon_sym_mut] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [aux_sym_cmd_identifier_token1] = ACTIONS(1027), - [aux_sym_cmd_identifier_token2] = ACTIONS(1027), - [aux_sym_cmd_identifier_token3] = ACTIONS(1027), - [aux_sym_cmd_identifier_token4] = ACTIONS(1027), - [aux_sym_cmd_identifier_token5] = ACTIONS(1027), - [aux_sym_cmd_identifier_token6] = ACTIONS(1027), - [aux_sym_cmd_identifier_token7] = ACTIONS(1027), - [aux_sym_cmd_identifier_token8] = ACTIONS(1027), - [aux_sym_cmd_identifier_token9] = ACTIONS(1027), - [aux_sym_cmd_identifier_token10] = ACTIONS(1027), - [aux_sym_cmd_identifier_token11] = ACTIONS(1027), - [aux_sym_cmd_identifier_token12] = ACTIONS(1027), - [aux_sym_cmd_identifier_token13] = ACTIONS(1027), - [aux_sym_cmd_identifier_token14] = ACTIONS(1027), - [aux_sym_cmd_identifier_token15] = ACTIONS(1027), - [aux_sym_cmd_identifier_token16] = ACTIONS(1027), - [aux_sym_cmd_identifier_token17] = ACTIONS(1027), - [aux_sym_cmd_identifier_token18] = ACTIONS(1027), - [aux_sym_cmd_identifier_token19] = ACTIONS(1027), - [aux_sym_cmd_identifier_token20] = ACTIONS(1027), - [aux_sym_cmd_identifier_token21] = ACTIONS(1027), - [aux_sym_cmd_identifier_token22] = ACTIONS(1027), - [aux_sym_cmd_identifier_token23] = ACTIONS(1027), - [aux_sym_cmd_identifier_token24] = ACTIONS(1027), - [aux_sym_cmd_identifier_token25] = ACTIONS(1027), - [aux_sym_cmd_identifier_token26] = ACTIONS(1027), - [aux_sym_cmd_identifier_token27] = ACTIONS(1027), - [aux_sym_cmd_identifier_token28] = ACTIONS(1027), - [aux_sym_cmd_identifier_token29] = ACTIONS(1027), - [aux_sym_cmd_identifier_token30] = ACTIONS(1027), - [aux_sym_cmd_identifier_token31] = ACTIONS(1027), - [aux_sym_cmd_identifier_token32] = ACTIONS(1027), - [aux_sym_cmd_identifier_token33] = ACTIONS(1027), - [aux_sym_cmd_identifier_token34] = ACTIONS(1027), - [aux_sym_cmd_identifier_token35] = ACTIONS(1027), - [aux_sym_cmd_identifier_token36] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1029), - [aux_sym_cmd_identifier_token38] = ACTIONS(1027), - [aux_sym_cmd_identifier_token39] = ACTIONS(1029), - [aux_sym_cmd_identifier_token40] = ACTIONS(1029), - [anon_sym_def] = ACTIONS(1027), - [anon_sym_export_DASHenv] = ACTIONS(1027), - [anon_sym_extern] = ACTIONS(1027), - [anon_sym_module] = ACTIONS(1027), - [anon_sym_use] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_COMMA] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_error] = ACTIONS(1027), - [anon_sym_list] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1027), - [anon_sym_continue] = ACTIONS(1027), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(1027), - [anon_sym_make] = ACTIONS(1027), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(1027), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_else] = ACTIONS(1027), - [anon_sym_match] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1027), - [anon_sym_catch] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_source] = ACTIONS(1027), - [anon_sym_source_DASHenv] = ACTIONS(1027), - [anon_sym_register] = ACTIONS(1027), - [anon_sym_hide] = ACTIONS(1027), - [anon_sym_hide_DASHenv] = ACTIONS(1027), - [anon_sym_overlay] = ACTIONS(1027), - [anon_sym_new] = ACTIONS(1027), - [anon_sym_as] = ACTIONS(1027), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1029), - [aux_sym__val_number_decimal_token1] = ACTIONS(1027), - [aux_sym__val_number_decimal_token2] = ACTIONS(1029), - [aux_sym__val_number_decimal_token3] = ACTIONS(1029), - [aux_sym__val_number_decimal_token4] = ACTIONS(1029), - [aux_sym__val_number_token1] = ACTIONS(1029), - [aux_sym__val_number_token2] = ACTIONS(1029), - [aux_sym__val_number_token3] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1029), - [aux_sym_record_entry_token1] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1029), - }, - [328] = { - [sym_path] = STATE(468), - [sym_comment] = STATE(328), - [aux_sym_cell_path_repeat1] = STATE(328), - [anon_sym_export] = ACTIONS(1031), - [anon_sym_alias] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1031), - [anon_sym_let_DASHenv] = ACTIONS(1031), - [anon_sym_mut] = ACTIONS(1031), - [anon_sym_const] = ACTIONS(1031), - [aux_sym_cmd_identifier_token1] = ACTIONS(1031), - [aux_sym_cmd_identifier_token2] = ACTIONS(1031), - [aux_sym_cmd_identifier_token3] = ACTIONS(1031), - [aux_sym_cmd_identifier_token4] = ACTIONS(1031), - [aux_sym_cmd_identifier_token5] = ACTIONS(1031), - [aux_sym_cmd_identifier_token6] = ACTIONS(1031), - [aux_sym_cmd_identifier_token7] = ACTIONS(1031), - [aux_sym_cmd_identifier_token8] = ACTIONS(1031), - [aux_sym_cmd_identifier_token9] = ACTIONS(1031), - [aux_sym_cmd_identifier_token10] = ACTIONS(1031), - [aux_sym_cmd_identifier_token11] = ACTIONS(1031), - [aux_sym_cmd_identifier_token12] = ACTIONS(1031), - [aux_sym_cmd_identifier_token13] = ACTIONS(1031), - [aux_sym_cmd_identifier_token14] = ACTIONS(1031), - [aux_sym_cmd_identifier_token15] = ACTIONS(1031), - [aux_sym_cmd_identifier_token16] = ACTIONS(1031), - [aux_sym_cmd_identifier_token17] = ACTIONS(1031), - [aux_sym_cmd_identifier_token18] = ACTIONS(1031), - [aux_sym_cmd_identifier_token19] = ACTIONS(1031), - [aux_sym_cmd_identifier_token20] = ACTIONS(1031), - [aux_sym_cmd_identifier_token21] = ACTIONS(1031), - [aux_sym_cmd_identifier_token22] = ACTIONS(1031), - [aux_sym_cmd_identifier_token23] = ACTIONS(1031), - [aux_sym_cmd_identifier_token24] = ACTIONS(1031), - [aux_sym_cmd_identifier_token25] = ACTIONS(1031), - [aux_sym_cmd_identifier_token26] = ACTIONS(1031), - [aux_sym_cmd_identifier_token27] = ACTIONS(1031), - [aux_sym_cmd_identifier_token28] = ACTIONS(1031), - [aux_sym_cmd_identifier_token29] = ACTIONS(1031), - [aux_sym_cmd_identifier_token30] = ACTIONS(1031), - [aux_sym_cmd_identifier_token31] = ACTIONS(1031), - [aux_sym_cmd_identifier_token32] = ACTIONS(1031), - [aux_sym_cmd_identifier_token33] = ACTIONS(1031), - [aux_sym_cmd_identifier_token34] = ACTIONS(1031), - [aux_sym_cmd_identifier_token35] = ACTIONS(1031), - [aux_sym_cmd_identifier_token36] = ACTIONS(1031), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [aux_sym_cmd_identifier_token38] = ACTIONS(1031), - [aux_sym_cmd_identifier_token39] = ACTIONS(1033), - [aux_sym_cmd_identifier_token40] = ACTIONS(1033), - [anon_sym_def] = ACTIONS(1031), - [anon_sym_export_DASHenv] = ACTIONS(1031), - [anon_sym_extern] = ACTIONS(1031), - [anon_sym_module] = ACTIONS(1031), - [anon_sym_use] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1031), - [anon_sym_list] = ACTIONS(1031), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_break] = ACTIONS(1031), - [anon_sym_continue] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(1031), - [anon_sym_in] = ACTIONS(1031), - [anon_sym_loop] = ACTIONS(1031), - [anon_sym_make] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1031), - [anon_sym_else] = ACTIONS(1031), - [anon_sym_match] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1031), - [anon_sym_catch] = ACTIONS(1031), - [anon_sym_return] = ACTIONS(1031), - [anon_sym_source] = ACTIONS(1031), - [anon_sym_source_DASHenv] = ACTIONS(1031), - [anon_sym_register] = ACTIONS(1031), - [anon_sym_hide] = ACTIONS(1031), - [anon_sym_hide_DASHenv] = ACTIONS(1031), - [anon_sym_overlay] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_as] = ACTIONS(1031), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1860), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1031), - [aux_sym__val_number_decimal_token2] = ACTIONS(1033), - [aux_sym__val_number_decimal_token3] = ACTIONS(1033), - [aux_sym__val_number_decimal_token4] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1033), - [aux_sym_record_entry_token1] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1031), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1033), - }, - [329] = { - [sym_comment] = STATE(329), - [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(1780), - [aux_sym_cmd_identifier_token25] = ACTIONS(1778), - [aux_sym_cmd_identifier_token26] = ACTIONS(1780), - [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(1780), - [aux_sym_cmd_identifier_token32] = ACTIONS(1780), - [aux_sym_cmd_identifier_token33] = ACTIONS(1780), - [aux_sym_cmd_identifier_token34] = ACTIONS(1780), - [aux_sym_cmd_identifier_token35] = ACTIONS(1780), - [aux_sym_cmd_identifier_token36] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [anon_sym_null] = ACTIONS(1780), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1780), - [aux_sym_cmd_identifier_token40] = ACTIONS(1780), - [sym__newline] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_def] = ACTIONS(1778), - [anon_sym_export_DASHenv] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_error] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_try] = 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_where] = ACTIONS(1780), - [aux_sym_expr_unary_token1] = ACTIONS(1780), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1780), - [anon_sym_DOT_DOT_LT] = ACTIONS(1780), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1780), - [aux_sym__val_number_decimal_token3] = ACTIONS(1780), - [aux_sym__val_number_decimal_token4] = ACTIONS(1780), - [aux_sym__val_number_token1] = ACTIONS(1780), - [aux_sym__val_number_token2] = ACTIONS(1780), - [aux_sym__val_number_token3] = ACTIONS(1780), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym__str_single_quotes] = ACTIONS(1780), - [sym__str_back_ticks] = ACTIONS(1780), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1780), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1780), - [aux_sym_env_var_token1] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1780), - }, - [330] = { - [sym_comment] = STATE(330), - [anon_sym_export] = ACTIONS(1802), - [anon_sym_alias] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_let_DASHenv] = ACTIONS(1802), - [anon_sym_mut] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [aux_sym_cmd_identifier_token1] = ACTIONS(1802), - [aux_sym_cmd_identifier_token2] = ACTIONS(1802), - [aux_sym_cmd_identifier_token3] = ACTIONS(1802), - [aux_sym_cmd_identifier_token4] = ACTIONS(1802), - [aux_sym_cmd_identifier_token5] = ACTIONS(1802), - [aux_sym_cmd_identifier_token6] = ACTIONS(1802), - [aux_sym_cmd_identifier_token7] = ACTIONS(1802), - [aux_sym_cmd_identifier_token8] = ACTIONS(1802), - [aux_sym_cmd_identifier_token9] = ACTIONS(1802), - [aux_sym_cmd_identifier_token10] = ACTIONS(1802), - [aux_sym_cmd_identifier_token11] = ACTIONS(1802), - [aux_sym_cmd_identifier_token12] = ACTIONS(1802), - [aux_sym_cmd_identifier_token13] = ACTIONS(1802), - [aux_sym_cmd_identifier_token14] = ACTIONS(1802), - [aux_sym_cmd_identifier_token15] = ACTIONS(1802), - [aux_sym_cmd_identifier_token16] = ACTIONS(1802), - [aux_sym_cmd_identifier_token17] = ACTIONS(1802), - [aux_sym_cmd_identifier_token18] = ACTIONS(1802), - [aux_sym_cmd_identifier_token19] = ACTIONS(1802), - [aux_sym_cmd_identifier_token20] = ACTIONS(1802), - [aux_sym_cmd_identifier_token21] = ACTIONS(1802), - [aux_sym_cmd_identifier_token22] = ACTIONS(1802), - [aux_sym_cmd_identifier_token23] = ACTIONS(1802), - [aux_sym_cmd_identifier_token24] = ACTIONS(1804), - [aux_sym_cmd_identifier_token25] = ACTIONS(1802), - [aux_sym_cmd_identifier_token26] = ACTIONS(1804), - [aux_sym_cmd_identifier_token27] = ACTIONS(1802), - [aux_sym_cmd_identifier_token28] = ACTIONS(1802), - [aux_sym_cmd_identifier_token29] = ACTIONS(1802), - [aux_sym_cmd_identifier_token30] = ACTIONS(1802), - [aux_sym_cmd_identifier_token31] = ACTIONS(1804), - [aux_sym_cmd_identifier_token32] = ACTIONS(1804), - [aux_sym_cmd_identifier_token33] = ACTIONS(1804), - [aux_sym_cmd_identifier_token34] = ACTIONS(1804), - [aux_sym_cmd_identifier_token35] = ACTIONS(1804), - [aux_sym_cmd_identifier_token36] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_null] = ACTIONS(1804), - [aux_sym_cmd_identifier_token38] = ACTIONS(1802), - [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_def] = ACTIONS(1802), - [anon_sym_export_DASHenv] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_module] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_DOLLAR] = ACTIONS(1802), - [anon_sym_error] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_try] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_source] = ACTIONS(1802), - [anon_sym_source_DASHenv] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_hide] = ACTIONS(1802), - [anon_sym_hide_DASHenv] = ACTIONS(1802), - [anon_sym_overlay] = ACTIONS(1802), - [anon_sym_where] = ACTIONS(1804), - [aux_sym_expr_unary_token1] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1804), - [anon_sym_DOT_DOT_LT] = ACTIONS(1804), - [aux_sym__val_number_decimal_token1] = ACTIONS(1802), - [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(1802), - [anon_sym_0o] = ACTIONS(1802), - [anon_sym_0x] = ACTIONS(1802), - [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), - [aux_sym_env_var_token1] = ACTIONS(1802), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1804), - }, - [331] = { - [sym_cmd_identifier] = STATE(4714), - [sym_ctrl_if] = STATE(5165), - [sym_block] = STATE(5096), - [sym__expression] = STATE(5096), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3877), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(2055), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3137), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_command] = STATE(5096), - [sym_comment] = STATE(331), - [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(1863), - [anon_sym_false] = ACTIONS(1863), - [anon_sym_null] = ACTIONS(1865), - [aux_sym_cmd_identifier_token38] = ACTIONS(1867), - [aux_sym_cmd_identifier_token39] = ACTIONS(1869), - [aux_sym_cmd_identifier_token40] = ACTIONS(1869), - [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), - [anon_sym_LBRACE] = ACTIONS(1871), - [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(1873), - [aux_sym__val_number_decimal_token2] = ACTIONS(1875), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_decimal_token4] = ACTIONS(1879), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), - }, - [332] = { - [sym_comment] = STATE(332), - [anon_sym_export] = ACTIONS(1881), - [anon_sym_alias] = ACTIONS(1881), - [anon_sym_let] = ACTIONS(1881), - [anon_sym_let_DASHenv] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [aux_sym_cmd_identifier_token1] = ACTIONS(1881), - [aux_sym_cmd_identifier_token2] = ACTIONS(1881), - [aux_sym_cmd_identifier_token3] = ACTIONS(1881), - [aux_sym_cmd_identifier_token4] = ACTIONS(1881), - [aux_sym_cmd_identifier_token5] = ACTIONS(1881), - [aux_sym_cmd_identifier_token6] = ACTIONS(1881), - [aux_sym_cmd_identifier_token7] = ACTIONS(1881), - [aux_sym_cmd_identifier_token8] = ACTIONS(1881), - [aux_sym_cmd_identifier_token9] = ACTIONS(1881), - [aux_sym_cmd_identifier_token10] = ACTIONS(1881), - [aux_sym_cmd_identifier_token11] = ACTIONS(1881), - [aux_sym_cmd_identifier_token12] = ACTIONS(1881), - [aux_sym_cmd_identifier_token13] = ACTIONS(1881), - [aux_sym_cmd_identifier_token14] = ACTIONS(1881), - [aux_sym_cmd_identifier_token15] = ACTIONS(1881), - [aux_sym_cmd_identifier_token16] = ACTIONS(1881), - [aux_sym_cmd_identifier_token17] = ACTIONS(1881), - [aux_sym_cmd_identifier_token18] = ACTIONS(1881), - [aux_sym_cmd_identifier_token19] = ACTIONS(1881), - [aux_sym_cmd_identifier_token20] = ACTIONS(1881), - [aux_sym_cmd_identifier_token21] = ACTIONS(1881), - [aux_sym_cmd_identifier_token22] = ACTIONS(1881), - [aux_sym_cmd_identifier_token23] = ACTIONS(1881), - [aux_sym_cmd_identifier_token24] = ACTIONS(1883), - [aux_sym_cmd_identifier_token25] = ACTIONS(1881), - [aux_sym_cmd_identifier_token26] = ACTIONS(1883), - [aux_sym_cmd_identifier_token27] = ACTIONS(1881), - [aux_sym_cmd_identifier_token28] = ACTIONS(1881), - [aux_sym_cmd_identifier_token29] = ACTIONS(1881), - [aux_sym_cmd_identifier_token30] = ACTIONS(1881), - [aux_sym_cmd_identifier_token31] = ACTIONS(1883), - [aux_sym_cmd_identifier_token32] = ACTIONS(1883), - [aux_sym_cmd_identifier_token33] = ACTIONS(1883), - [aux_sym_cmd_identifier_token34] = ACTIONS(1883), - [aux_sym_cmd_identifier_token35] = ACTIONS(1883), - [aux_sym_cmd_identifier_token36] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1883), - [anon_sym_false] = ACTIONS(1883), - [anon_sym_null] = ACTIONS(1883), - [aux_sym_cmd_identifier_token38] = ACTIONS(1881), - [aux_sym_cmd_identifier_token39] = ACTIONS(1883), - [aux_sym_cmd_identifier_token40] = ACTIONS(1883), - [sym__newline] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1883), - [anon_sym_def] = ACTIONS(1881), - [anon_sym_export_DASHenv] = ACTIONS(1881), - [anon_sym_extern] = ACTIONS(1881), - [anon_sym_module] = ACTIONS(1881), - [anon_sym_use] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1883), - [anon_sym_DOLLAR] = ACTIONS(1881), - [anon_sym_error] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_loop] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1881), - [anon_sym_do] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1883), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_source] = ACTIONS(1881), - [anon_sym_source_DASHenv] = ACTIONS(1881), - [anon_sym_register] = ACTIONS(1881), - [anon_sym_hide] = ACTIONS(1881), - [anon_sym_hide_DASHenv] = ACTIONS(1881), - [anon_sym_overlay] = ACTIONS(1881), - [anon_sym_where] = ACTIONS(1883), - [aux_sym_expr_unary_token1] = ACTIONS(1883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1883), - [anon_sym_DOT_DOT_LT] = ACTIONS(1883), - [aux_sym__val_number_decimal_token1] = ACTIONS(1881), - [aux_sym__val_number_decimal_token2] = ACTIONS(1883), - [aux_sym__val_number_decimal_token3] = ACTIONS(1883), - [aux_sym__val_number_decimal_token4] = ACTIONS(1883), - [aux_sym__val_number_token1] = ACTIONS(1883), - [aux_sym__val_number_token2] = ACTIONS(1883), - [aux_sym__val_number_token3] = ACTIONS(1883), - [anon_sym_0b] = ACTIONS(1881), - [anon_sym_0o] = ACTIONS(1881), - [anon_sym_0x] = ACTIONS(1881), - [sym_val_date] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(1883), - [sym__str_single_quotes] = ACTIONS(1883), - [sym__str_back_ticks] = ACTIONS(1883), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1883), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1883), - [aux_sym_env_var_token1] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1883), - }, - [333] = { - [sym_comment] = STATE(333), - [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_QMARK2] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), - [anon_sym_DOT_DOT2] = ACTIONS(1058), - [anon_sym_DOT] = 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(249), - [sym_raw_string_begin] = ACTIONS(1060), - }, - [334] = { - [sym_cell_path] = STATE(606), - [sym_path] = STATE(518), - [sym_comment] = STATE(334), - [aux_sym_cell_path_repeat1] = STATE(411), - [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(1856), - [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), - [sym_raw_string_begin] = ACTIONS(1023), - }, - [335] = { - [sym_comment] = STATE(335), - [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(1064), - [anon_sym_false] = ACTIONS(1064), - [anon_sym_null] = ACTIONS(1064), - [aux_sym_cmd_identifier_token38] = ACTIONS(1062), - [aux_sym_cmd_identifier_token39] = ACTIONS(1064), - [aux_sym_cmd_identifier_token40] = ACTIONS(1064), - [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(1064), - [anon_sym_DOLLAR] = ACTIONS(1064), - [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(1064), - [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_QMARK2] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), - [anon_sym_DOT_DOT2] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [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), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1064), - }, - [336] = { - [sym_comment] = STATE(336), - [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(249), - [sym_raw_string_begin] = ACTIONS(1040), - }, - [337] = { - [sym_comment] = STATE(337), - [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_QMARK2] = 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), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1056), + [anon_sym_error] = ACTIONS(1755), + [anon_sym_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_PLUS2] = 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), + [aux_sym__immediate_decimal_token2] = ACTIONS(1791), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = ACTIONS(1755), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), }, - [338] = { - [sym_comment] = STATE(338), - [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(1885), - [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(249), - [sym_raw_string_begin] = ACTIONS(1044), - }, - [339] = { - [sym_comment] = STATE(339), - [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(1887), - [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(249), - [sym_raw_string_begin] = ACTIONS(1050), - }, - [340] = { - [sym_comment] = STATE(340), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_alias] = ACTIONS(1074), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_let_DASHenv] = ACTIONS(1074), - [anon_sym_mut] = ACTIONS(1074), - [anon_sym_const] = ACTIONS(1074), - [aux_sym_cmd_identifier_token1] = ACTIONS(1074), - [aux_sym_cmd_identifier_token2] = ACTIONS(1074), - [aux_sym_cmd_identifier_token3] = ACTIONS(1074), - [aux_sym_cmd_identifier_token4] = ACTIONS(1074), - [aux_sym_cmd_identifier_token5] = ACTIONS(1074), - [aux_sym_cmd_identifier_token6] = ACTIONS(1074), - [aux_sym_cmd_identifier_token7] = ACTIONS(1074), - [aux_sym_cmd_identifier_token8] = ACTIONS(1074), - [aux_sym_cmd_identifier_token9] = ACTIONS(1074), - [aux_sym_cmd_identifier_token10] = ACTIONS(1074), - [aux_sym_cmd_identifier_token11] = ACTIONS(1074), - [aux_sym_cmd_identifier_token12] = ACTIONS(1074), - [aux_sym_cmd_identifier_token13] = ACTIONS(1074), - [aux_sym_cmd_identifier_token14] = ACTIONS(1074), - [aux_sym_cmd_identifier_token15] = ACTIONS(1074), - [aux_sym_cmd_identifier_token16] = ACTIONS(1074), - [aux_sym_cmd_identifier_token17] = ACTIONS(1074), - [aux_sym_cmd_identifier_token18] = ACTIONS(1074), - [aux_sym_cmd_identifier_token19] = ACTIONS(1074), - [aux_sym_cmd_identifier_token20] = ACTIONS(1074), - [aux_sym_cmd_identifier_token21] = ACTIONS(1074), - [aux_sym_cmd_identifier_token22] = ACTIONS(1074), - [aux_sym_cmd_identifier_token23] = ACTIONS(1074), - [aux_sym_cmd_identifier_token24] = ACTIONS(1074), - [aux_sym_cmd_identifier_token25] = ACTIONS(1074), - [aux_sym_cmd_identifier_token26] = ACTIONS(1074), - [aux_sym_cmd_identifier_token27] = ACTIONS(1074), - [aux_sym_cmd_identifier_token28] = ACTIONS(1074), - [aux_sym_cmd_identifier_token29] = ACTIONS(1074), - [aux_sym_cmd_identifier_token30] = ACTIONS(1074), - [aux_sym_cmd_identifier_token31] = ACTIONS(1074), - [aux_sym_cmd_identifier_token32] = ACTIONS(1074), - [aux_sym_cmd_identifier_token33] = ACTIONS(1074), - [aux_sym_cmd_identifier_token34] = ACTIONS(1074), - [aux_sym_cmd_identifier_token35] = ACTIONS(1074), - [aux_sym_cmd_identifier_token36] = ACTIONS(1074), - [anon_sym_true] = ACTIONS(1074), - [anon_sym_false] = ACTIONS(1074), - [anon_sym_null] = ACTIONS(1074), - [aux_sym_cmd_identifier_token38] = ACTIONS(1074), - [aux_sym_cmd_identifier_token39] = ACTIONS(1074), - [aux_sym_cmd_identifier_token40] = ACTIONS(1074), - [anon_sym_def] = ACTIONS(1074), - [anon_sym_export_DASHenv] = ACTIONS(1074), - [anon_sym_extern] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_use] = ACTIONS(1074), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_error] = ACTIONS(1074), - [anon_sym_list] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_in] = ACTIONS(1074), - [anon_sym_loop] = ACTIONS(1074), - [anon_sym_make] = ACTIONS(1074), - [anon_sym_while] = ACTIONS(1074), - [anon_sym_do] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1074), - [anon_sym_else] = ACTIONS(1074), - [anon_sym_match] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1074), - [anon_sym_try] = ACTIONS(1074), - [anon_sym_catch] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_source] = ACTIONS(1074), - [anon_sym_source_DASHenv] = ACTIONS(1074), - [anon_sym_register] = ACTIONS(1074), - [anon_sym_hide] = ACTIONS(1074), - [anon_sym_hide_DASHenv] = ACTIONS(1074), - [anon_sym_overlay] = ACTIONS(1074), - [anon_sym_new] = ACTIONS(1074), - [anon_sym_as] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1074), - [anon_sym_DOT_DOT2] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1074), - [aux_sym__val_number_decimal_token1] = ACTIONS(1074), - [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), - [sym__entry_separator] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1074), + [394] = { + [sym_comment] = STATE(394), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1901), + [aux_sym__immediate_decimal_token2] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1076), + [sym_raw_string_begin] = ACTIONS(1741), }, - [341] = { - [sym_comment] = STATE(341), - [anon_sym_export] = ACTIONS(1066), - [anon_sym_alias] = ACTIONS(1066), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_let_DASHenv] = ACTIONS(1066), - [anon_sym_mut] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [aux_sym_cmd_identifier_token1] = ACTIONS(1066), - [aux_sym_cmd_identifier_token2] = ACTIONS(1066), - [aux_sym_cmd_identifier_token3] = ACTIONS(1066), - [aux_sym_cmd_identifier_token4] = ACTIONS(1066), - [aux_sym_cmd_identifier_token5] = ACTIONS(1066), - [aux_sym_cmd_identifier_token6] = ACTIONS(1066), - [aux_sym_cmd_identifier_token7] = ACTIONS(1066), - [aux_sym_cmd_identifier_token8] = ACTIONS(1066), - [aux_sym_cmd_identifier_token9] = ACTIONS(1066), - [aux_sym_cmd_identifier_token10] = ACTIONS(1066), - [aux_sym_cmd_identifier_token11] = ACTIONS(1066), - [aux_sym_cmd_identifier_token12] = ACTIONS(1066), - [aux_sym_cmd_identifier_token13] = ACTIONS(1066), - [aux_sym_cmd_identifier_token14] = ACTIONS(1066), - [aux_sym_cmd_identifier_token15] = ACTIONS(1066), - [aux_sym_cmd_identifier_token16] = ACTIONS(1066), - [aux_sym_cmd_identifier_token17] = ACTIONS(1066), - [aux_sym_cmd_identifier_token18] = ACTIONS(1066), - [aux_sym_cmd_identifier_token19] = ACTIONS(1066), - [aux_sym_cmd_identifier_token20] = ACTIONS(1066), - [aux_sym_cmd_identifier_token21] = ACTIONS(1066), - [aux_sym_cmd_identifier_token22] = ACTIONS(1066), - [aux_sym_cmd_identifier_token23] = ACTIONS(1066), - [aux_sym_cmd_identifier_token24] = ACTIONS(1066), - [aux_sym_cmd_identifier_token25] = ACTIONS(1066), - [aux_sym_cmd_identifier_token26] = ACTIONS(1066), - [aux_sym_cmd_identifier_token27] = ACTIONS(1066), - [aux_sym_cmd_identifier_token28] = ACTIONS(1066), - [aux_sym_cmd_identifier_token29] = ACTIONS(1066), - [aux_sym_cmd_identifier_token30] = ACTIONS(1066), - [aux_sym_cmd_identifier_token31] = ACTIONS(1066), - [aux_sym_cmd_identifier_token32] = ACTIONS(1066), - [aux_sym_cmd_identifier_token33] = ACTIONS(1066), - [aux_sym_cmd_identifier_token34] = ACTIONS(1066), - [aux_sym_cmd_identifier_token35] = ACTIONS(1066), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(1066), - [anon_sym_export_DASHenv] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym_module] = ACTIONS(1066), - [anon_sym_use] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1066), - [anon_sym_error] = ACTIONS(1066), - [anon_sym_list] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_in] = ACTIONS(1066), - [anon_sym_loop] = ACTIONS(1066), - [anon_sym_make] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_else] = ACTIONS(1066), - [anon_sym_match] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_try] = ACTIONS(1066), - [anon_sym_catch] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_source] = ACTIONS(1066), - [anon_sym_source_DASHenv] = ACTIONS(1066), - [anon_sym_register] = ACTIONS(1066), - [anon_sym_hide] = ACTIONS(1066), - [anon_sym_hide_DASHenv] = ACTIONS(1066), - [anon_sym_overlay] = ACTIONS(1066), - [anon_sym_new] = ACTIONS(1066), - [anon_sym_as] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1066), - [anon_sym_DOT_DOT2] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1066), - [aux_sym__val_number_decimal_token1] = ACTIONS(1066), - [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), - [sym__entry_separator] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1068), + [395] = { + [sym_comment] = STATE(395), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, - [342] = { - [sym_comment] = STATE(342), - [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(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = 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(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), + [396] = { + [sym_comment] = STATE(396), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(994), + [aux_sym_cmd_identifier_token3] = ACTIONS(994), + [aux_sym_cmd_identifier_token4] = ACTIONS(994), + [aux_sym_cmd_identifier_token5] = ACTIONS(994), + [aux_sym_cmd_identifier_token6] = ACTIONS(994), + [aux_sym_cmd_identifier_token7] = ACTIONS(994), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(994), + [aux_sym_cmd_identifier_token17] = ACTIONS(994), + [aux_sym_cmd_identifier_token18] = ACTIONS(994), + [aux_sym_cmd_identifier_token19] = ACTIONS(994), + [aux_sym_cmd_identifier_token20] = ACTIONS(994), + [aux_sym_cmd_identifier_token21] = ACTIONS(994), + [aux_sym_cmd_identifier_token22] = ACTIONS(994), + [aux_sym_cmd_identifier_token23] = ACTIONS(994), + [aux_sym_cmd_identifier_token24] = ACTIONS(994), + [aux_sym_cmd_identifier_token25] = ACTIONS(994), + [aux_sym_cmd_identifier_token26] = ACTIONS(994), + [aux_sym_cmd_identifier_token27] = ACTIONS(994), + [aux_sym_cmd_identifier_token28] = ACTIONS(994), + [aux_sym_cmd_identifier_token29] = ACTIONS(994), + [aux_sym_cmd_identifier_token30] = ACTIONS(994), + [aux_sym_cmd_identifier_token31] = ACTIONS(994), + [aux_sym_cmd_identifier_token32] = ACTIONS(994), + [aux_sym_cmd_identifier_token33] = ACTIONS(994), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(994), + [aux_sym_cmd_identifier_token36] = ACTIONS(994), + [aux_sym_cmd_identifier_token37] = ACTIONS(994), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(994), + [aux_sym_cmd_identifier_token40] = ACTIONS(994), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(994), + [aux_sym__val_number_decimal_token3] = ACTIONS(994), + [aux_sym__val_number_decimal_token4] = ACTIONS(994), + [aux_sym__val_number_token1] = ACTIONS(994), + [aux_sym__val_number_token2] = ACTIONS(994), + [aux_sym__val_number_token3] = ACTIONS(994), + [aux_sym__val_number_token4] = ACTIONS(994), + [aux_sym__val_number_token5] = ACTIONS(994), + [aux_sym__val_number_token6] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), + [sym__entry_separator] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1072), - }, - [343] = { - [sym_comment] = STATE(343), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), - }, - [344] = { - [sym_comment] = STATE(344), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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), - [anon_sym_PLUS] = ACTIONS(1703), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), - }, - [345] = { - [sym_comment] = STATE(345), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), - }, - [346] = { - [sym_comment] = STATE(346), - [anon_sym_export] = ACTIONS(1826), - [anon_sym_alias] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_let_DASHenv] = ACTIONS(1826), - [anon_sym_mut] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [aux_sym_cmd_identifier_token1] = ACTIONS(1826), - [aux_sym_cmd_identifier_token2] = ACTIONS(1826), - [aux_sym_cmd_identifier_token3] = ACTIONS(1826), - [aux_sym_cmd_identifier_token4] = ACTIONS(1826), - [aux_sym_cmd_identifier_token5] = ACTIONS(1826), - [aux_sym_cmd_identifier_token6] = ACTIONS(1826), - [aux_sym_cmd_identifier_token7] = ACTIONS(1826), - [aux_sym_cmd_identifier_token8] = ACTIONS(1826), - [aux_sym_cmd_identifier_token9] = ACTIONS(1826), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1826), - [aux_sym_cmd_identifier_token13] = ACTIONS(1826), - [aux_sym_cmd_identifier_token14] = ACTIONS(1826), - [aux_sym_cmd_identifier_token15] = ACTIONS(1826), - [aux_sym_cmd_identifier_token16] = ACTIONS(1826), - [aux_sym_cmd_identifier_token17] = ACTIONS(1826), - [aux_sym_cmd_identifier_token18] = ACTIONS(1826), - [aux_sym_cmd_identifier_token19] = ACTIONS(1826), - [aux_sym_cmd_identifier_token20] = ACTIONS(1826), - [aux_sym_cmd_identifier_token21] = ACTIONS(1826), - [aux_sym_cmd_identifier_token22] = ACTIONS(1826), - [aux_sym_cmd_identifier_token23] = ACTIONS(1826), - [aux_sym_cmd_identifier_token24] = ACTIONS(1826), - [aux_sym_cmd_identifier_token25] = ACTIONS(1826), - [aux_sym_cmd_identifier_token26] = ACTIONS(1826), - [aux_sym_cmd_identifier_token27] = ACTIONS(1826), - [aux_sym_cmd_identifier_token28] = ACTIONS(1826), - [aux_sym_cmd_identifier_token29] = ACTIONS(1826), - [aux_sym_cmd_identifier_token30] = ACTIONS(1826), - [aux_sym_cmd_identifier_token31] = ACTIONS(1826), - [aux_sym_cmd_identifier_token32] = ACTIONS(1826), - [aux_sym_cmd_identifier_token33] = ACTIONS(1826), - [aux_sym_cmd_identifier_token34] = ACTIONS(1826), - [aux_sym_cmd_identifier_token35] = ACTIONS(1826), - [aux_sym_cmd_identifier_token36] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1828), - [aux_sym_cmd_identifier_token38] = ACTIONS(1826), - [aux_sym_cmd_identifier_token39] = ACTIONS(1828), - [aux_sym_cmd_identifier_token40] = ACTIONS(1828), - [anon_sym_def] = ACTIONS(1826), - [anon_sym_export_DASHenv] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_module] = ACTIONS(1826), - [anon_sym_use] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_error] = ACTIONS(1826), - [anon_sym_list] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_loop] = ACTIONS(1826), - [anon_sym_make] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_match] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_catch] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_source] = ACTIONS(1826), - [anon_sym_source_DASHenv] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_hide] = ACTIONS(1826), - [anon_sym_hide_DASHenv] = ACTIONS(1826), - [anon_sym_overlay] = ACTIONS(1826), - [anon_sym_new] = ACTIONS(1826), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), - [anon_sym_DOT_DOT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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), - [anon_sym_PLUS] = ACTIONS(1826), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1828), - }, - [347] = { - [sym_comment] = STATE(347), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(1889), - [aux_sym__immediate_decimal_token2] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [sym_raw_string_begin] = ACTIONS(996), }, - [348] = { - [sym_cell_path] = STATE(613), - [sym_path] = STATE(518), - [sym_comment] = STATE(348), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(1893), - [anon_sym_alias] = ACTIONS(1893), - [anon_sym_let] = ACTIONS(1893), - [anon_sym_let_DASHenv] = ACTIONS(1893), - [anon_sym_mut] = ACTIONS(1893), - [anon_sym_const] = ACTIONS(1893), - [aux_sym_cmd_identifier_token1] = ACTIONS(1893), - [aux_sym_cmd_identifier_token2] = ACTIONS(1893), - [aux_sym_cmd_identifier_token3] = ACTIONS(1893), - [aux_sym_cmd_identifier_token4] = ACTIONS(1893), - [aux_sym_cmd_identifier_token5] = ACTIONS(1893), - [aux_sym_cmd_identifier_token6] = ACTIONS(1893), - [aux_sym_cmd_identifier_token7] = ACTIONS(1893), - [aux_sym_cmd_identifier_token8] = ACTIONS(1893), - [aux_sym_cmd_identifier_token9] = ACTIONS(1893), - [aux_sym_cmd_identifier_token10] = ACTIONS(1893), - [aux_sym_cmd_identifier_token11] = ACTIONS(1893), - [aux_sym_cmd_identifier_token12] = ACTIONS(1893), - [aux_sym_cmd_identifier_token13] = ACTIONS(1893), - [aux_sym_cmd_identifier_token14] = ACTIONS(1893), - [aux_sym_cmd_identifier_token15] = ACTIONS(1893), - [aux_sym_cmd_identifier_token16] = ACTIONS(1893), - [aux_sym_cmd_identifier_token17] = ACTIONS(1893), - [aux_sym_cmd_identifier_token18] = ACTIONS(1893), - [aux_sym_cmd_identifier_token19] = ACTIONS(1893), - [aux_sym_cmd_identifier_token20] = ACTIONS(1893), - [aux_sym_cmd_identifier_token21] = ACTIONS(1893), - [aux_sym_cmd_identifier_token22] = ACTIONS(1893), - [aux_sym_cmd_identifier_token23] = ACTIONS(1893), - [aux_sym_cmd_identifier_token24] = ACTIONS(1893), - [aux_sym_cmd_identifier_token25] = ACTIONS(1893), - [aux_sym_cmd_identifier_token26] = ACTIONS(1893), - [aux_sym_cmd_identifier_token27] = ACTIONS(1893), - [aux_sym_cmd_identifier_token28] = ACTIONS(1893), - [aux_sym_cmd_identifier_token29] = ACTIONS(1893), - [aux_sym_cmd_identifier_token30] = ACTIONS(1893), - [aux_sym_cmd_identifier_token31] = ACTIONS(1893), - [aux_sym_cmd_identifier_token32] = ACTIONS(1893), - [aux_sym_cmd_identifier_token33] = ACTIONS(1893), - [aux_sym_cmd_identifier_token34] = ACTIONS(1893), - [aux_sym_cmd_identifier_token35] = ACTIONS(1893), - [aux_sym_cmd_identifier_token36] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [anon_sym_null] = ACTIONS(1893), - [aux_sym_cmd_identifier_token38] = ACTIONS(1893), - [aux_sym_cmd_identifier_token39] = ACTIONS(1893), - [aux_sym_cmd_identifier_token40] = ACTIONS(1893), - [anon_sym_def] = ACTIONS(1893), - [anon_sym_export_DASHenv] = ACTIONS(1893), - [anon_sym_extern] = ACTIONS(1893), - [anon_sym_module] = ACTIONS(1893), - [anon_sym_use] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_error] = ACTIONS(1893), - [anon_sym_list] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1893), - [anon_sym_continue] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(1893), - [anon_sym_loop] = ACTIONS(1893), - [anon_sym_make] = ACTIONS(1893), - [anon_sym_while] = ACTIONS(1893), - [anon_sym_do] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_else] = ACTIONS(1893), - [anon_sym_match] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_try] = ACTIONS(1893), - [anon_sym_catch] = ACTIONS(1893), - [anon_sym_return] = ACTIONS(1893), - [anon_sym_source] = ACTIONS(1893), - [anon_sym_source_DASHenv] = ACTIONS(1893), - [anon_sym_register] = ACTIONS(1893), - [anon_sym_hide] = ACTIONS(1893), - [anon_sym_hide_DASHenv] = ACTIONS(1893), - [anon_sym_overlay] = ACTIONS(1893), - [anon_sym_new] = ACTIONS(1893), - [anon_sym_as] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), - [aux_sym__val_number_decimal_token1] = ACTIONS(1893), - [aux_sym__val_number_decimal_token2] = ACTIONS(1893), - [aux_sym__val_number_decimal_token3] = ACTIONS(1893), - [aux_sym__val_number_decimal_token4] = ACTIONS(1893), - [aux_sym__val_number_token1] = ACTIONS(1893), - [aux_sym__val_number_token2] = ACTIONS(1893), - [aux_sym__val_number_token3] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym__str_single_quotes] = ACTIONS(1893), - [sym__str_back_ticks] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), - [sym__entry_separator] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1893), + [397] = { + [sym_comment] = STATE(397), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(998), + [aux_sym_cmd_identifier_token3] = ACTIONS(998), + [aux_sym_cmd_identifier_token4] = ACTIONS(998), + [aux_sym_cmd_identifier_token5] = ACTIONS(998), + [aux_sym_cmd_identifier_token6] = ACTIONS(998), + [aux_sym_cmd_identifier_token7] = ACTIONS(998), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(998), + [aux_sym_cmd_identifier_token17] = ACTIONS(998), + [aux_sym_cmd_identifier_token18] = ACTIONS(998), + [aux_sym_cmd_identifier_token19] = ACTIONS(998), + [aux_sym_cmd_identifier_token20] = ACTIONS(998), + [aux_sym_cmd_identifier_token21] = ACTIONS(998), + [aux_sym_cmd_identifier_token22] = ACTIONS(998), + [aux_sym_cmd_identifier_token23] = ACTIONS(998), + [aux_sym_cmd_identifier_token24] = ACTIONS(998), + [aux_sym_cmd_identifier_token25] = ACTIONS(998), + [aux_sym_cmd_identifier_token26] = ACTIONS(998), + [aux_sym_cmd_identifier_token27] = ACTIONS(998), + [aux_sym_cmd_identifier_token28] = ACTIONS(998), + [aux_sym_cmd_identifier_token29] = ACTIONS(998), + [aux_sym_cmd_identifier_token30] = ACTIONS(998), + [aux_sym_cmd_identifier_token31] = ACTIONS(998), + [aux_sym_cmd_identifier_token32] = ACTIONS(998), + [aux_sym_cmd_identifier_token33] = ACTIONS(998), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(998), + [aux_sym_cmd_identifier_token36] = ACTIONS(998), + [aux_sym_cmd_identifier_token37] = ACTIONS(998), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(998), + [aux_sym_cmd_identifier_token40] = ACTIONS(998), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(998), + [aux_sym__val_number_decimal_token3] = ACTIONS(998), + [aux_sym__val_number_decimal_token4] = ACTIONS(998), + [aux_sym__val_number_token1] = ACTIONS(998), + [aux_sym__val_number_token2] = ACTIONS(998), + [aux_sym__val_number_token3] = ACTIONS(998), + [aux_sym__val_number_token4] = ACTIONS(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), + [sym__entry_separator] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1895), + [sym_raw_string_begin] = ACTIONS(1000), }, - [349] = { - [sym_cell_path] = STATE(552), - [sym_path] = STATE(518), - [sym_comment] = STATE(349), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_alias] = ACTIONS(1897), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_let_DASHenv] = ACTIONS(1897), - [anon_sym_mut] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(1897), - [aux_sym_cmd_identifier_token1] = ACTIONS(1897), - [aux_sym_cmd_identifier_token2] = ACTIONS(1897), - [aux_sym_cmd_identifier_token3] = ACTIONS(1897), - [aux_sym_cmd_identifier_token4] = ACTIONS(1897), - [aux_sym_cmd_identifier_token5] = ACTIONS(1897), - [aux_sym_cmd_identifier_token6] = ACTIONS(1897), - [aux_sym_cmd_identifier_token7] = ACTIONS(1897), - [aux_sym_cmd_identifier_token8] = ACTIONS(1897), - [aux_sym_cmd_identifier_token9] = ACTIONS(1897), - [aux_sym_cmd_identifier_token10] = ACTIONS(1897), - [aux_sym_cmd_identifier_token11] = ACTIONS(1897), - [aux_sym_cmd_identifier_token12] = ACTIONS(1897), - [aux_sym_cmd_identifier_token13] = ACTIONS(1897), - [aux_sym_cmd_identifier_token14] = ACTIONS(1897), - [aux_sym_cmd_identifier_token15] = ACTIONS(1897), - [aux_sym_cmd_identifier_token16] = ACTIONS(1897), - [aux_sym_cmd_identifier_token17] = ACTIONS(1897), - [aux_sym_cmd_identifier_token18] = ACTIONS(1897), - [aux_sym_cmd_identifier_token19] = ACTIONS(1897), - [aux_sym_cmd_identifier_token20] = ACTIONS(1897), - [aux_sym_cmd_identifier_token21] = ACTIONS(1897), - [aux_sym_cmd_identifier_token22] = ACTIONS(1897), - [aux_sym_cmd_identifier_token23] = ACTIONS(1897), - [aux_sym_cmd_identifier_token24] = ACTIONS(1897), - [aux_sym_cmd_identifier_token25] = ACTIONS(1897), - [aux_sym_cmd_identifier_token26] = ACTIONS(1897), - [aux_sym_cmd_identifier_token27] = ACTIONS(1897), - [aux_sym_cmd_identifier_token28] = ACTIONS(1897), - [aux_sym_cmd_identifier_token29] = ACTIONS(1897), - [aux_sym_cmd_identifier_token30] = ACTIONS(1897), - [aux_sym_cmd_identifier_token31] = ACTIONS(1897), - [aux_sym_cmd_identifier_token32] = ACTIONS(1897), - [aux_sym_cmd_identifier_token33] = ACTIONS(1897), - [aux_sym_cmd_identifier_token34] = ACTIONS(1897), - [aux_sym_cmd_identifier_token35] = ACTIONS(1897), - [aux_sym_cmd_identifier_token36] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [aux_sym_cmd_identifier_token38] = ACTIONS(1897), - [aux_sym_cmd_identifier_token39] = ACTIONS(1897), - [aux_sym_cmd_identifier_token40] = ACTIONS(1897), - [anon_sym_def] = ACTIONS(1897), - [anon_sym_export_DASHenv] = ACTIONS(1897), - [anon_sym_extern] = ACTIONS(1897), - [anon_sym_module] = ACTIONS(1897), - [anon_sym_use] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1897), - [anon_sym_error] = ACTIONS(1897), - [anon_sym_list] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_in] = ACTIONS(1897), - [anon_sym_loop] = ACTIONS(1897), - [anon_sym_make] = ACTIONS(1897), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_do] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_else] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1897), - [anon_sym_catch] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_source] = ACTIONS(1897), - [anon_sym_source_DASHenv] = ACTIONS(1897), - [anon_sym_register] = ACTIONS(1897), - [anon_sym_hide] = ACTIONS(1897), - [anon_sym_hide_DASHenv] = ACTIONS(1897), - [anon_sym_overlay] = ACTIONS(1897), - [anon_sym_new] = ACTIONS(1897), - [anon_sym_as] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1897), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), - [sym__entry_separator] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1897), + [398] = { + [sym_comment] = STATE(398), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1002), + [aux_sym_cmd_identifier_token3] = ACTIONS(1002), + [aux_sym_cmd_identifier_token4] = ACTIONS(1002), + [aux_sym_cmd_identifier_token5] = ACTIONS(1002), + [aux_sym_cmd_identifier_token6] = ACTIONS(1002), + [aux_sym_cmd_identifier_token7] = ACTIONS(1002), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1002), + [aux_sym_cmd_identifier_token11] = ACTIONS(1002), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1002), + [aux_sym_cmd_identifier_token17] = ACTIONS(1002), + [aux_sym_cmd_identifier_token18] = ACTIONS(1002), + [aux_sym_cmd_identifier_token19] = ACTIONS(1002), + [aux_sym_cmd_identifier_token20] = ACTIONS(1002), + [aux_sym_cmd_identifier_token21] = ACTIONS(1002), + [aux_sym_cmd_identifier_token22] = ACTIONS(1002), + [aux_sym_cmd_identifier_token23] = ACTIONS(1002), + [aux_sym_cmd_identifier_token24] = ACTIONS(1002), + [aux_sym_cmd_identifier_token25] = ACTIONS(1002), + [aux_sym_cmd_identifier_token26] = ACTIONS(1002), + [aux_sym_cmd_identifier_token27] = ACTIONS(1002), + [aux_sym_cmd_identifier_token28] = ACTIONS(1002), + [aux_sym_cmd_identifier_token29] = ACTIONS(1002), + [aux_sym_cmd_identifier_token30] = ACTIONS(1002), + [aux_sym_cmd_identifier_token31] = ACTIONS(1002), + [aux_sym_cmd_identifier_token32] = ACTIONS(1002), + [aux_sym_cmd_identifier_token33] = ACTIONS(1002), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1002), + [aux_sym_cmd_identifier_token36] = ACTIONS(1002), + [aux_sym_cmd_identifier_token37] = ACTIONS(1002), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1002), + [aux_sym_cmd_identifier_token40] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1002), + [aux_sym__val_number_decimal_token4] = ACTIONS(1002), + [aux_sym__val_number_token1] = ACTIONS(1002), + [aux_sym__val_number_token2] = ACTIONS(1002), + [aux_sym__val_number_token3] = ACTIONS(1002), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), + [sym__entry_separator] = ACTIONS(1004), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1899), + [sym_raw_string_begin] = ACTIONS(1004), }, - [350] = { - [sym_cell_path] = STATE(609), - [sym_path] = STATE(518), - [sym_comment] = STATE(350), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_alias] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_let_DASHenv] = ACTIONS(1901), - [anon_sym_mut] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [aux_sym_cmd_identifier_token1] = ACTIONS(1901), - [aux_sym_cmd_identifier_token2] = ACTIONS(1901), - [aux_sym_cmd_identifier_token3] = ACTIONS(1901), - [aux_sym_cmd_identifier_token4] = ACTIONS(1901), - [aux_sym_cmd_identifier_token5] = ACTIONS(1901), - [aux_sym_cmd_identifier_token6] = ACTIONS(1901), - [aux_sym_cmd_identifier_token7] = ACTIONS(1901), - [aux_sym_cmd_identifier_token8] = ACTIONS(1901), - [aux_sym_cmd_identifier_token9] = ACTIONS(1901), - [aux_sym_cmd_identifier_token10] = ACTIONS(1901), - [aux_sym_cmd_identifier_token11] = ACTIONS(1901), - [aux_sym_cmd_identifier_token12] = ACTIONS(1901), - [aux_sym_cmd_identifier_token13] = ACTIONS(1901), - [aux_sym_cmd_identifier_token14] = ACTIONS(1901), - [aux_sym_cmd_identifier_token15] = ACTIONS(1901), - [aux_sym_cmd_identifier_token16] = ACTIONS(1901), - [aux_sym_cmd_identifier_token17] = ACTIONS(1901), - [aux_sym_cmd_identifier_token18] = ACTIONS(1901), - [aux_sym_cmd_identifier_token19] = ACTIONS(1901), - [aux_sym_cmd_identifier_token20] = ACTIONS(1901), - [aux_sym_cmd_identifier_token21] = ACTIONS(1901), - [aux_sym_cmd_identifier_token22] = ACTIONS(1901), - [aux_sym_cmd_identifier_token23] = ACTIONS(1901), - [aux_sym_cmd_identifier_token24] = ACTIONS(1901), - [aux_sym_cmd_identifier_token25] = ACTIONS(1901), - [aux_sym_cmd_identifier_token26] = ACTIONS(1901), - [aux_sym_cmd_identifier_token27] = ACTIONS(1901), - [aux_sym_cmd_identifier_token28] = ACTIONS(1901), - [aux_sym_cmd_identifier_token29] = ACTIONS(1901), - [aux_sym_cmd_identifier_token30] = ACTIONS(1901), - [aux_sym_cmd_identifier_token31] = ACTIONS(1901), - [aux_sym_cmd_identifier_token32] = ACTIONS(1901), - [aux_sym_cmd_identifier_token33] = ACTIONS(1901), - [aux_sym_cmd_identifier_token34] = ACTIONS(1901), - [aux_sym_cmd_identifier_token35] = ACTIONS(1901), - [aux_sym_cmd_identifier_token36] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [anon_sym_null] = ACTIONS(1901), - [aux_sym_cmd_identifier_token38] = ACTIONS(1901), - [aux_sym_cmd_identifier_token39] = ACTIONS(1901), - [aux_sym_cmd_identifier_token40] = ACTIONS(1901), - [anon_sym_def] = ACTIONS(1901), - [anon_sym_export_DASHenv] = ACTIONS(1901), - [anon_sym_extern] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_use] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_error] = ACTIONS(1901), - [anon_sym_list] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_in] = ACTIONS(1901), - [anon_sym_loop] = ACTIONS(1901), - [anon_sym_make] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1901), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_catch] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_source] = ACTIONS(1901), - [anon_sym_source_DASHenv] = ACTIONS(1901), - [anon_sym_register] = ACTIONS(1901), - [anon_sym_hide] = ACTIONS(1901), - [anon_sym_hide_DASHenv] = ACTIONS(1901), - [anon_sym_overlay] = ACTIONS(1901), - [anon_sym_new] = ACTIONS(1901), - [anon_sym_as] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1901), - [aux_sym__val_number_decimal_token2] = ACTIONS(1901), - [aux_sym__val_number_decimal_token3] = ACTIONS(1901), - [aux_sym__val_number_decimal_token4] = ACTIONS(1901), - [aux_sym__val_number_token1] = ACTIONS(1901), - [aux_sym__val_number_token2] = ACTIONS(1901), - [aux_sym__val_number_token3] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym__str_single_quotes] = ACTIONS(1901), - [sym__str_back_ticks] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), - [sym__entry_separator] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1901), + [399] = { + [sym_comment] = STATE(399), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [aux_sym_cmd_identifier_token37] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [sym__entry_separator] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1903), + [sym_raw_string_begin] = ACTIONS(992), }, - [351] = { - [sym_comment] = STATE(351), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [anon_sym_null] = ACTIONS(1703), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1703), - [aux_sym_cmd_identifier_token40] = ACTIONS(1703), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), - [aux_sym__immediate_decimal_token1] = ACTIONS(1905), - [aux_sym__immediate_decimal_token2] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [aux_sym__val_number_decimal_token2] = ACTIONS(1703), - [aux_sym__val_number_decimal_token3] = ACTIONS(1703), - [aux_sym__val_number_decimal_token4] = ACTIONS(1703), - [aux_sym__val_number_token1] = ACTIONS(1703), - [aux_sym__val_number_token2] = ACTIONS(1703), - [aux_sym__val_number_token3] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym__str_single_quotes] = ACTIONS(1703), - [sym__str_back_ticks] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), - [sym__entry_separator] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1703), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), + [400] = { + [sym_comment] = STATE(400), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [aux_sym_cmd_identifier_token1] = ACTIONS(1010), + [aux_sym_cmd_identifier_token2] = ACTIONS(1010), + [aux_sym_cmd_identifier_token3] = ACTIONS(1010), + [aux_sym_cmd_identifier_token4] = ACTIONS(1010), + [aux_sym_cmd_identifier_token5] = ACTIONS(1010), + [aux_sym_cmd_identifier_token6] = ACTIONS(1010), + [aux_sym_cmd_identifier_token7] = ACTIONS(1010), + [aux_sym_cmd_identifier_token8] = ACTIONS(1010), + [aux_sym_cmd_identifier_token9] = ACTIONS(1010), + [aux_sym_cmd_identifier_token10] = ACTIONS(1010), + [aux_sym_cmd_identifier_token11] = ACTIONS(1010), + [aux_sym_cmd_identifier_token12] = ACTIONS(1010), + [aux_sym_cmd_identifier_token13] = ACTIONS(1010), + [aux_sym_cmd_identifier_token14] = ACTIONS(1010), + [aux_sym_cmd_identifier_token15] = ACTIONS(1010), + [aux_sym_cmd_identifier_token16] = ACTIONS(1010), + [aux_sym_cmd_identifier_token17] = ACTIONS(1010), + [aux_sym_cmd_identifier_token18] = ACTIONS(1010), + [aux_sym_cmd_identifier_token19] = ACTIONS(1010), + [aux_sym_cmd_identifier_token20] = ACTIONS(1010), + [aux_sym_cmd_identifier_token21] = ACTIONS(1010), + [aux_sym_cmd_identifier_token22] = ACTIONS(1010), + [aux_sym_cmd_identifier_token23] = ACTIONS(1010), + [aux_sym_cmd_identifier_token24] = ACTIONS(1010), + [aux_sym_cmd_identifier_token25] = ACTIONS(1010), + [aux_sym_cmd_identifier_token26] = ACTIONS(1010), + [aux_sym_cmd_identifier_token27] = ACTIONS(1010), + [aux_sym_cmd_identifier_token28] = ACTIONS(1010), + [aux_sym_cmd_identifier_token29] = ACTIONS(1010), + [aux_sym_cmd_identifier_token30] = ACTIONS(1010), + [aux_sym_cmd_identifier_token31] = ACTIONS(1010), + [aux_sym_cmd_identifier_token32] = ACTIONS(1010), + [aux_sym_cmd_identifier_token33] = ACTIONS(1010), + [aux_sym_cmd_identifier_token34] = ACTIONS(1010), + [aux_sym_cmd_identifier_token35] = ACTIONS(1010), + [aux_sym_cmd_identifier_token36] = ACTIONS(1010), + [aux_sym_cmd_identifier_token37] = ACTIONS(1010), + [aux_sym_cmd_identifier_token38] = ACTIONS(1010), + [aux_sym_cmd_identifier_token39] = ACTIONS(1010), + [aux_sym_cmd_identifier_token40] = ACTIONS(1010), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in2] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_make] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_catch] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_PLUS2] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1010), + [aux_sym__val_number_decimal_token4] = ACTIONS(1010), + [aux_sym__val_number_token1] = ACTIONS(1010), + [aux_sym__val_number_token2] = ACTIONS(1010), + [aux_sym__val_number_token3] = ACTIONS(1010), + [aux_sym__val_number_token4] = ACTIONS(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1010), + [sym__entry_separator] = ACTIONS(1012), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1705), + [sym_raw_string_begin] = ACTIONS(1012), }, - [352] = { - [sym_cell_path] = STATE(629), - [sym_path] = STATE(518), - [sym_comment] = STATE(352), - [aux_sym_cell_path_repeat1] = STATE(411), - [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(1856), - [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), + [401] = { + [sym_cell_path] = STATE(616), + [sym_path] = STATE(569), + [sym_comment] = STATE(401), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_alias] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_let_DASHenv] = ACTIONS(1907), + [anon_sym_mut] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [aux_sym_cmd_identifier_token1] = ACTIONS(1907), + [aux_sym_cmd_identifier_token2] = ACTIONS(1907), + [aux_sym_cmd_identifier_token3] = ACTIONS(1907), + [aux_sym_cmd_identifier_token4] = ACTIONS(1907), + [aux_sym_cmd_identifier_token5] = ACTIONS(1907), + [aux_sym_cmd_identifier_token6] = ACTIONS(1907), + [aux_sym_cmd_identifier_token7] = ACTIONS(1907), + [aux_sym_cmd_identifier_token8] = ACTIONS(1907), + [aux_sym_cmd_identifier_token9] = ACTIONS(1907), + [aux_sym_cmd_identifier_token10] = ACTIONS(1907), + [aux_sym_cmd_identifier_token11] = ACTIONS(1907), + [aux_sym_cmd_identifier_token12] = ACTIONS(1907), + [aux_sym_cmd_identifier_token13] = ACTIONS(1907), + [aux_sym_cmd_identifier_token14] = ACTIONS(1907), + [aux_sym_cmd_identifier_token15] = ACTIONS(1907), + [aux_sym_cmd_identifier_token16] = ACTIONS(1907), + [aux_sym_cmd_identifier_token17] = ACTIONS(1907), + [aux_sym_cmd_identifier_token18] = ACTIONS(1907), + [aux_sym_cmd_identifier_token19] = ACTIONS(1907), + [aux_sym_cmd_identifier_token20] = ACTIONS(1907), + [aux_sym_cmd_identifier_token21] = ACTIONS(1907), + [aux_sym_cmd_identifier_token22] = ACTIONS(1907), + [aux_sym_cmd_identifier_token23] = ACTIONS(1907), + [aux_sym_cmd_identifier_token24] = ACTIONS(1907), + [aux_sym_cmd_identifier_token25] = ACTIONS(1907), + [aux_sym_cmd_identifier_token26] = ACTIONS(1907), + [aux_sym_cmd_identifier_token27] = ACTIONS(1907), + [aux_sym_cmd_identifier_token28] = ACTIONS(1907), + [aux_sym_cmd_identifier_token29] = ACTIONS(1907), + [aux_sym_cmd_identifier_token30] = ACTIONS(1907), + [aux_sym_cmd_identifier_token31] = ACTIONS(1907), + [aux_sym_cmd_identifier_token32] = ACTIONS(1907), + [aux_sym_cmd_identifier_token33] = ACTIONS(1907), + [aux_sym_cmd_identifier_token34] = ACTIONS(1907), + [aux_sym_cmd_identifier_token35] = ACTIONS(1907), + [aux_sym_cmd_identifier_token36] = ACTIONS(1907), + [aux_sym_cmd_identifier_token37] = ACTIONS(1907), + [aux_sym_cmd_identifier_token38] = ACTIONS(1907), + [aux_sym_cmd_identifier_token39] = ACTIONS(1907), + [aux_sym_cmd_identifier_token40] = ACTIONS(1907), + [anon_sym_def] = ACTIONS(1907), + [anon_sym_export_DASHenv] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_use] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_DOLLAR] = ACTIONS(1907), + [anon_sym_error] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_in2] = ACTIONS(1907), + [anon_sym_loop] = ACTIONS(1907), + [anon_sym_make] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_catch] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_source] = ACTIONS(1907), + [anon_sym_source_DASHenv] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_hide] = ACTIONS(1907), + [anon_sym_hide_DASHenv] = ACTIONS(1907), + [anon_sym_overlay] = ACTIONS(1907), + [anon_sym_as] = ACTIONS(1907), + [anon_sym_PLUS2] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1907), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1907), + [aux_sym__val_number_decimal_token1] = ACTIONS(1907), + [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), + [aux_sym__val_number_token4] = ACTIONS(1907), + [aux_sym__val_number_token5] = ACTIONS(1907), + [aux_sym__val_number_token6] = 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), [sym__entry_separator] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1909), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1911), }, - [353] = { - [sym_comment] = STATE(353), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), + [402] = { + [sym_cell_path] = STATE(619), + [sym_path] = STATE(569), + [sym_comment] = STATE(402), + [aux_sym_cell_path_repeat1] = STATE(458), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_in2] = 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_as] = ACTIONS(1913), + [anon_sym_PLUS2] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1913), + [anon_sym_DOT] = ACTIONS(1909), + [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), + [aux_sym__val_number_token4] = ACTIONS(1913), + [aux_sym__val_number_token5] = ACTIONS(1913), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), - }, - [354] = { - [sym_cmd_identifier] = STATE(4714), - [sym__expression] = STATE(3855), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3876), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(2055), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1665), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5170), - [sym_comment] = STATE(354), - [aux_sym_pipe_element_repeat2] = STATE(1075), - [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(249), - [sym_raw_string_begin] = ACTIONS(123), - }, - [355] = { - [sym_comment] = STATE(355), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [sym_raw_string_begin] = ACTIONS(1915), }, - [356] = { - [sym_comment] = STATE(356), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [403] = { + [sym_comment] = STATE(403), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_PLUS2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), [anon_sym_DOT] = ACTIONS(1917), [aux_sym__immediate_decimal_token2] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = 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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), - }, - [357] = { - [sym_comment] = STATE(357), - [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(1923), - [aux_sym_cmd_identifier_token25] = ACTIONS(1921), - [aux_sym_cmd_identifier_token26] = ACTIONS(1923), - [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(1923), - [aux_sym_cmd_identifier_token32] = ACTIONS(1923), - [aux_sym_cmd_identifier_token33] = ACTIONS(1923), - [aux_sym_cmd_identifier_token34] = ACTIONS(1923), - [aux_sym_cmd_identifier_token35] = ACTIONS(1923), - [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), - [sym__newline] = ACTIONS(1923), - [anon_sym_SEMI] = 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_LBRACK] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_error] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_DOT_DOT] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_source] = ACTIONS(1921), - [anon_sym_source_DASHenv] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_hide] = ACTIONS(1921), - [anon_sym_hide_DASHenv] = ACTIONS(1921), - [anon_sym_overlay] = ACTIONS(1921), - [anon_sym_where] = ACTIONS(1923), - [aux_sym_expr_unary_token1] = ACTIONS(1923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1923), - [anon_sym_DOT_DOT_LT] = 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_0b] = ACTIONS(1921), - [anon_sym_0o] = ACTIONS(1921), - [anon_sym_0x] = ACTIONS(1921), - [sym_val_date] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [sym__str_single_quotes] = ACTIONS(1923), - [sym__str_back_ticks] = ACTIONS(1923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1923), - [aux_sym_env_var_token1] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1923), + [sym_raw_string_begin] = ACTIONS(1757), }, - [358] = { - [sym_cmd_identifier] = STATE(4817), - [sym__expression_parenthesized] = STATE(3847), - [sym_expr_unary] = STATE(2318), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2318), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2053), - [sym_val_range] = STATE(3856), - [sym__value] = STATE(2318), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2358), - [sym_val_variable] = STATE(2028), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1674), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_env_var] = STATE(7384), - [sym__command_parenthesized] = STATE(5133), - [sym_comment] = STATE(358), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1078), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(373), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(467), - [anon_sym_false] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [aux_sym_cmd_identifier_token38] = ACTIONS(471), - [aux_sym_cmd_identifier_token39] = ACTIONS(473), - [aux_sym_cmd_identifier_token40] = ACTIONS(473), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(503), - [aux_sym__val_number_decimal_token2] = ACTIONS(505), - [aux_sym__val_number_decimal_token3] = ACTIONS(507), - [aux_sym__val_number_decimal_token4] = ACTIONS(509), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(517), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [404] = { + [sym_expr_parenthesized] = STATE(4257), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(4661), + [sym__val_range] = STATE(7658), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(4661), + [sym_val_nothing] = STATE(4616), + [sym_val_bool] = STATE(4396), + [sym__spread_variable] = STATE(4662), + [sym_val_variable] = STATE(4245), + [sym_val_number] = STATE(4616), + [sym__val_number_decimal] = STATE(4018), + [sym__val_number] = STATE(4634), + [sym_val_duration] = STATE(4616), + [sym_val_filesize] = STATE(4616), + [sym_val_binary] = STATE(4616), + [sym_val_string] = STATE(4616), + [sym__raw_str] = STATE(4465), + [sym__str_double_quotes] = STATE(4465), + [sym_val_interpolated] = STATE(4616), + [sym__inter_single_quotes] = STATE(4689), + [sym__inter_double_quotes] = STATE(4701), + [sym_val_list] = STATE(4616), + [sym__spread_list] = STATE(4659), + [sym_val_record] = STATE(4616), + [sym_val_table] = STATE(4616), + [sym_val_closure] = STATE(4616), + [sym__cmd_arg] = STATE(4876), + [sym_redirection] = STATE(4678), + [sym__flag] = STATE(4679), + [sym_short_flag] = STATE(4685), + [sym_long_flag] = STATE(4685), + [sym_unquoted] = STATE(4464), + [sym__unquoted_with_expr] = STATE(4692), + [sym__unquoted_anonymous_prefix] = STATE(7065), + [sym_comment] = STATE(404), + [sym__newline] = ACTIONS(1921), + [sym__space] = ACTIONS(1923), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1808), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT] = ACTIONS(1822), + [anon_sym_null] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(1830), + [aux_sym__val_number_decimal_token3] = ACTIONS(1832), + [aux_sym__val_number_decimal_token4] = ACTIONS(1834), + [aux_sym__val_number_token1] = ACTIONS(1836), + [aux_sym__val_number_token2] = ACTIONS(1836), + [aux_sym__val_number_token3] = ACTIONS(1836), + [aux_sym__val_number_token4] = ACTIONS(1838), + [aux_sym__val_number_token5] = ACTIONS(1838), + [aux_sym__val_number_token6] = ACTIONS(1838), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(1844), + [anon_sym_DQUOTE] = ACTIONS(1846), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1852), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1854), + [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(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [aux_sym_unquoted_token1] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1860), }, - [359] = { - [sym_comment] = STATE(359), + [405] = { + [sym_cell_path] = STATE(683), + [sym_path] = STATE(569), + [sym_comment] = STATE(405), + [aux_sym_cell_path_repeat1] = STATE(458), [anon_sym_export] = ACTIONS(1925), [anon_sym_alias] = ACTIONS(1925), [anon_sym_let] = ACTIONS(1925), @@ -118486,48 +119907,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1925), [aux_sym_cmd_identifier_token22] = ACTIONS(1925), [aux_sym_cmd_identifier_token23] = ACTIONS(1925), - [aux_sym_cmd_identifier_token24] = ACTIONS(1927), + [aux_sym_cmd_identifier_token24] = ACTIONS(1925), [aux_sym_cmd_identifier_token25] = ACTIONS(1925), - [aux_sym_cmd_identifier_token26] = ACTIONS(1927), + [aux_sym_cmd_identifier_token26] = ACTIONS(1925), [aux_sym_cmd_identifier_token27] = ACTIONS(1925), [aux_sym_cmd_identifier_token28] = ACTIONS(1925), [aux_sym_cmd_identifier_token29] = ACTIONS(1925), [aux_sym_cmd_identifier_token30] = ACTIONS(1925), - [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_token31] = ACTIONS(1925), + [aux_sym_cmd_identifier_token32] = ACTIONS(1925), + [aux_sym_cmd_identifier_token33] = ACTIONS(1925), + [aux_sym_cmd_identifier_token34] = ACTIONS(1925), + [aux_sym_cmd_identifier_token35] = ACTIONS(1925), [aux_sym_cmd_identifier_token36] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), + [aux_sym_cmd_identifier_token37] = ACTIONS(1925), [aux_sym_cmd_identifier_token38] = ACTIONS(1925), - [aux_sym_cmd_identifier_token39] = ACTIONS(1927), - [aux_sym_cmd_identifier_token40] = ACTIONS(1927), - [sym__newline] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), + [aux_sym_cmd_identifier_token39] = ACTIONS(1925), + [aux_sym_cmd_identifier_token40] = ACTIONS(1925), [anon_sym_def] = ACTIONS(1925), [anon_sym_export_DASHenv] = ACTIONS(1925), [anon_sym_extern] = ACTIONS(1925), [anon_sym_module] = ACTIONS(1925), [anon_sym_use] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1925), [anon_sym_DOLLAR] = ACTIONS(1925), [anon_sym_error] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_DASH2] = ACTIONS(1925), [anon_sym_break] = ACTIONS(1925), [anon_sym_continue] = ACTIONS(1925), [anon_sym_for] = ACTIONS(1925), + [anon_sym_in2] = ACTIONS(1925), [anon_sym_loop] = ACTIONS(1925), + [anon_sym_make] = ACTIONS(1925), [anon_sym_while] = ACTIONS(1925), [anon_sym_do] = ACTIONS(1925), [anon_sym_if] = ACTIONS(1925), + [anon_sym_else] = ACTIONS(1925), [anon_sym_match] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_RBRACE] = ACTIONS(1925), [anon_sym_try] = ACTIONS(1925), + [anon_sym_catch] = ACTIONS(1925), [anon_sym_return] = ACTIONS(1925), [anon_sym_source] = ACTIONS(1925), [anon_sym_source_DASHenv] = ACTIONS(1925), @@ -118535,8485 +119954,12528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1925), [anon_sym_hide_DASHenv] = ACTIONS(1925), [anon_sym_overlay] = ACTIONS(1925), - [anon_sym_where] = ACTIONS(1927), - [aux_sym_expr_unary_token1] = ACTIONS(1927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT] = ACTIONS(1927), + [anon_sym_as] = ACTIONS(1925), + [anon_sym_PLUS2] = ACTIONS(1925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1925), [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [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_0b] = ACTIONS(1925), - [anon_sym_0o] = ACTIONS(1925), - [anon_sym_0x] = ACTIONS(1925), - [sym_val_date] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [aux_sym_env_var_token1] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym__val_number_decimal_token2] = ACTIONS(1925), + [aux_sym__val_number_decimal_token3] = ACTIONS(1925), + [aux_sym__val_number_decimal_token4] = ACTIONS(1925), + [aux_sym__val_number_token1] = ACTIONS(1925), + [aux_sym__val_number_token2] = ACTIONS(1925), + [aux_sym__val_number_token3] = ACTIONS(1925), + [aux_sym__val_number_token4] = ACTIONS(1925), + [aux_sym__val_number_token5] = ACTIONS(1925), + [aux_sym__val_number_token6] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [sym__str_single_quotes] = ACTIONS(1925), + [sym__str_back_ticks] = ACTIONS(1925), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1925), + [sym__entry_separator] = ACTIONS(1927), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1927), }, - [360] = { - [sym_cell_path] = STATE(619), - [sym_path] = STATE(518), - [sym_comment] = STATE(360), - [aux_sym_cell_path_repeat1] = STATE(411), - [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(1929), - [aux_sym_cmd_identifier_token25] = ACTIONS(1929), - [aux_sym_cmd_identifier_token26] = ACTIONS(1929), - [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(1929), - [aux_sym_cmd_identifier_token32] = ACTIONS(1929), - [aux_sym_cmd_identifier_token33] = ACTIONS(1929), - [aux_sym_cmd_identifier_token34] = ACTIONS(1929), - [aux_sym_cmd_identifier_token35] = ACTIONS(1929), - [aux_sym_cmd_identifier_token36] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(1929), - [anon_sym_false] = ACTIONS(1929), - [anon_sym_null] = ACTIONS(1929), - [aux_sym_cmd_identifier_token38] = ACTIONS(1929), - [aux_sym_cmd_identifier_token39] = ACTIONS(1929), - [aux_sym_cmd_identifier_token40] = ACTIONS(1929), - [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_LPAREN] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_error] = ACTIONS(1929), - [anon_sym_list] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_in] = ACTIONS(1929), - [anon_sym_loop] = ACTIONS(1929), - [anon_sym_make] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_do] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_else] = ACTIONS(1929), - [anon_sym_match] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1929), - [anon_sym_catch] = 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_new] = ACTIONS(1929), - [anon_sym_as] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1929), - [aux_sym__val_number_decimal_token1] = ACTIONS(1929), - [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), - [sym__entry_separator] = ACTIONS(1931), - [anon_sym_PLUS] = ACTIONS(1929), + [406] = { + [sym_comment] = STATE(406), + [anon_sym_export] = ACTIONS(1866), + [anon_sym_alias] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_let_DASHenv] = ACTIONS(1866), + [anon_sym_mut] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [aux_sym_cmd_identifier_token1] = ACTIONS(1866), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1866), + [aux_sym_cmd_identifier_token9] = ACTIONS(1866), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1866), + [aux_sym_cmd_identifier_token13] = ACTIONS(1866), + [aux_sym_cmd_identifier_token14] = ACTIONS(1866), + [aux_sym_cmd_identifier_token15] = ACTIONS(1866), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1866), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1866), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1866), + [anon_sym_export_DASHenv] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_module] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_make] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_catch] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_source] = ACTIONS(1866), + [anon_sym_source_DASHenv] = ACTIONS(1866), + [anon_sym_register] = ACTIONS(1866), + [anon_sym_hide] = ACTIONS(1866), + [anon_sym_hide_DASHenv] = ACTIONS(1866), + [anon_sym_overlay] = ACTIONS(1866), + [anon_sym_as] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT_DOT2] = ACTIONS(1929), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1931), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [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), + [aux_sym__val_number_token4] = ACTIONS(1866), + [aux_sym__val_number_token5] = ACTIONS(1866), + [aux_sym__val_number_token6] = ACTIONS(1866), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [407] = { + [sym_cell_path] = STATE(637), + [sym_path] = STATE(569), + [sym_comment] = STATE(407), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1933), + [anon_sym_alias] = ACTIONS(1933), + [anon_sym_let] = ACTIONS(1933), + [anon_sym_let_DASHenv] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [aux_sym_cmd_identifier_token1] = ACTIONS(1933), + [aux_sym_cmd_identifier_token2] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1933), + [aux_sym_cmd_identifier_token4] = ACTIONS(1933), + [aux_sym_cmd_identifier_token5] = ACTIONS(1933), + [aux_sym_cmd_identifier_token6] = ACTIONS(1933), + [aux_sym_cmd_identifier_token7] = ACTIONS(1933), + [aux_sym_cmd_identifier_token8] = ACTIONS(1933), + [aux_sym_cmd_identifier_token9] = ACTIONS(1933), + [aux_sym_cmd_identifier_token10] = ACTIONS(1933), + [aux_sym_cmd_identifier_token11] = ACTIONS(1933), + [aux_sym_cmd_identifier_token12] = ACTIONS(1933), + [aux_sym_cmd_identifier_token13] = ACTIONS(1933), + [aux_sym_cmd_identifier_token14] = ACTIONS(1933), + [aux_sym_cmd_identifier_token15] = ACTIONS(1933), + [aux_sym_cmd_identifier_token16] = ACTIONS(1933), + [aux_sym_cmd_identifier_token17] = ACTIONS(1933), + [aux_sym_cmd_identifier_token18] = ACTIONS(1933), + [aux_sym_cmd_identifier_token19] = ACTIONS(1933), + [aux_sym_cmd_identifier_token20] = ACTIONS(1933), + [aux_sym_cmd_identifier_token21] = ACTIONS(1933), + [aux_sym_cmd_identifier_token22] = ACTIONS(1933), + [aux_sym_cmd_identifier_token23] = ACTIONS(1933), + [aux_sym_cmd_identifier_token24] = ACTIONS(1933), + [aux_sym_cmd_identifier_token25] = ACTIONS(1933), + [aux_sym_cmd_identifier_token26] = ACTIONS(1933), + [aux_sym_cmd_identifier_token27] = ACTIONS(1933), + [aux_sym_cmd_identifier_token28] = ACTIONS(1933), + [aux_sym_cmd_identifier_token29] = ACTIONS(1933), + [aux_sym_cmd_identifier_token30] = ACTIONS(1933), + [aux_sym_cmd_identifier_token31] = ACTIONS(1933), + [aux_sym_cmd_identifier_token32] = ACTIONS(1933), + [aux_sym_cmd_identifier_token33] = ACTIONS(1933), + [aux_sym_cmd_identifier_token34] = ACTIONS(1933), + [aux_sym_cmd_identifier_token35] = ACTIONS(1933), + [aux_sym_cmd_identifier_token36] = ACTIONS(1933), + [aux_sym_cmd_identifier_token37] = ACTIONS(1933), + [aux_sym_cmd_identifier_token38] = ACTIONS(1933), + [aux_sym_cmd_identifier_token39] = ACTIONS(1933), + [aux_sym_cmd_identifier_token40] = ACTIONS(1933), + [anon_sym_def] = ACTIONS(1933), + [anon_sym_export_DASHenv] = ACTIONS(1933), + [anon_sym_extern] = ACTIONS(1933), + [anon_sym_module] = ACTIONS(1933), + [anon_sym_use] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_DOLLAR] = ACTIONS(1933), + [anon_sym_error] = ACTIONS(1933), + [anon_sym_DASH2] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_in2] = ACTIONS(1933), + [anon_sym_loop] = ACTIONS(1933), + [anon_sym_make] = ACTIONS(1933), + [anon_sym_while] = ACTIONS(1933), + [anon_sym_do] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_else] = ACTIONS(1933), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_try] = ACTIONS(1933), + [anon_sym_catch] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_source] = ACTIONS(1933), + [anon_sym_source_DASHenv] = ACTIONS(1933), + [anon_sym_register] = ACTIONS(1933), + [anon_sym_hide] = ACTIONS(1933), + [anon_sym_hide_DASHenv] = ACTIONS(1933), + [anon_sym_overlay] = ACTIONS(1933), + [anon_sym_as] = ACTIONS(1933), + [anon_sym_PLUS2] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1933), + [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), + [aux_sym__val_number_token4] = ACTIONS(1933), + [aux_sym__val_number_token5] = ACTIONS(1933), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1935), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1931), + [sym_raw_string_begin] = ACTIONS(1935), }, - [361] = { - [sym_cmd_identifier] = STATE(4616), - [sym__expression] = STATE(3837), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1929), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1569), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_env_var] = STATE(7513), - [sym_command] = STATE(5027), - [sym_comment] = STATE(361), - [aux_sym_pipe_element_repeat2] = STATE(1075), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(373), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(375), - [anon_sym_false] = ACTIONS(375), - [anon_sym_null] = ACTIONS(377), - [aux_sym_cmd_identifier_token38] = ACTIONS(379), - [aux_sym_cmd_identifier_token39] = ACTIONS(381), - [aux_sym_cmd_identifier_token40] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [408] = { + [sym_comment] = STATE(408), + [anon_sym_export] = ACTIONS(1878), + [anon_sym_alias] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_let_DASHenv] = ACTIONS(1878), + [anon_sym_mut] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [aux_sym_cmd_identifier_token1] = ACTIONS(1878), + [aux_sym_cmd_identifier_token2] = ACTIONS(1886), + [aux_sym_cmd_identifier_token3] = ACTIONS(1886), + [aux_sym_cmd_identifier_token4] = ACTIONS(1886), + [aux_sym_cmd_identifier_token5] = ACTIONS(1886), + [aux_sym_cmd_identifier_token6] = ACTIONS(1886), + [aux_sym_cmd_identifier_token7] = ACTIONS(1886), + [aux_sym_cmd_identifier_token8] = ACTIONS(1878), + [aux_sym_cmd_identifier_token9] = ACTIONS(1878), + [aux_sym_cmd_identifier_token10] = ACTIONS(1886), + [aux_sym_cmd_identifier_token11] = ACTIONS(1886), + [aux_sym_cmd_identifier_token12] = ACTIONS(1878), + [aux_sym_cmd_identifier_token13] = ACTIONS(1878), + [aux_sym_cmd_identifier_token14] = ACTIONS(1878), + [aux_sym_cmd_identifier_token15] = ACTIONS(1878), + [aux_sym_cmd_identifier_token16] = ACTIONS(1886), + [aux_sym_cmd_identifier_token17] = ACTIONS(1886), + [aux_sym_cmd_identifier_token18] = ACTIONS(1886), + [aux_sym_cmd_identifier_token19] = ACTIONS(1886), + [aux_sym_cmd_identifier_token20] = ACTIONS(1886), + [aux_sym_cmd_identifier_token21] = ACTIONS(1886), + [aux_sym_cmd_identifier_token22] = ACTIONS(1886), + [aux_sym_cmd_identifier_token23] = ACTIONS(1886), + [aux_sym_cmd_identifier_token24] = ACTIONS(1886), + [aux_sym_cmd_identifier_token25] = ACTIONS(1886), + [aux_sym_cmd_identifier_token26] = ACTIONS(1886), + [aux_sym_cmd_identifier_token27] = ACTIONS(1886), + [aux_sym_cmd_identifier_token28] = ACTIONS(1886), + [aux_sym_cmd_identifier_token29] = ACTIONS(1886), + [aux_sym_cmd_identifier_token30] = ACTIONS(1886), + [aux_sym_cmd_identifier_token31] = ACTIONS(1886), + [aux_sym_cmd_identifier_token32] = ACTIONS(1886), + [aux_sym_cmd_identifier_token33] = ACTIONS(1886), + [aux_sym_cmd_identifier_token34] = ACTIONS(1878), + [aux_sym_cmd_identifier_token35] = ACTIONS(1886), + [aux_sym_cmd_identifier_token36] = ACTIONS(1886), + [aux_sym_cmd_identifier_token37] = ACTIONS(1886), + [aux_sym_cmd_identifier_token38] = ACTIONS(1878), + [aux_sym_cmd_identifier_token39] = ACTIONS(1886), + [aux_sym_cmd_identifier_token40] = ACTIONS(1886), + [anon_sym_def] = ACTIONS(1878), + [anon_sym_export_DASHenv] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_module] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_error] = ACTIONS(1878), + [anon_sym_DASH2] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_in2] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_make] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_do] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1878), + [anon_sym_catch] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_source] = ACTIONS(1878), + [anon_sym_source_DASHenv] = ACTIONS(1878), + [anon_sym_register] = ACTIONS(1878), + [anon_sym_hide] = ACTIONS(1878), + [anon_sym_hide_DASHenv] = ACTIONS(1878), + [anon_sym_overlay] = ACTIONS(1878), + [anon_sym_as] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1878), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1886), + [anon_sym_DOT_DOT2] = ACTIONS(1937), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1939), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1886), + [aux_sym__val_number_decimal_token1] = ACTIONS(1878), + [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), + [aux_sym__val_number_token4] = ACTIONS(1878), + [aux_sym__val_number_token5] = ACTIONS(1878), + [aux_sym__val_number_token6] = ACTIONS(1878), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1886), }, - [362] = { - [sym_expr_parenthesized] = STATE(4363), - [sym__spread_parenthesized] = STATE(4752), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(7973), - [sym__val_range_with_end] = STATE(7533), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4718), - [sym_val_bool] = STATE(4461), - [sym__spread_variable] = STATE(4769), - [sym_val_variable] = STATE(4330), - [sym_val_number] = STATE(4718), - [sym__val_number_decimal] = STATE(3996), - [sym__val_number] = STATE(4796), - [sym_val_duration] = STATE(4718), - [sym_val_filesize] = STATE(4718), - [sym_val_binary] = STATE(4718), - [sym_val_string] = STATE(4718), - [sym__raw_str] = STATE(4414), - [sym__str_double_quotes] = STATE(4414), - [sym_val_interpolated] = STATE(4718), - [sym__inter_single_quotes] = STATE(4787), - [sym__inter_double_quotes] = STATE(4810), - [sym_val_list] = STATE(4718), - [sym__spread_list] = STATE(4752), - [sym_val_record] = STATE(4718), - [sym_val_table] = STATE(4718), - [sym_val_closure] = STATE(4718), - [sym__cmd_arg] = STATE(4774), - [sym_redirection] = STATE(4791), - [sym__flag] = STATE(4798), - [sym_short_flag] = STATE(4826), - [sym_long_flag] = STATE(4826), - [sym_unquoted] = STATE(4556), - [sym__unquoted_with_expr] = STATE(4807), - [sym__unquoted_anonymous_prefix] = STATE(7039), - [sym_comment] = STATE(362), - [anon_sym_true] = ACTIONS(1933), - [anon_sym_false] = ACTIONS(1933), - [anon_sym_null] = ACTIONS(1935), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [sym__newline] = ACTIONS(1939), - [sym__space] = ACTIONS(1941), - [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(1943), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_RPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_DASH_DASH] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1969), - [aux_sym__val_number_token2] = ACTIONS(1969), - [aux_sym__val_number_token3] = ACTIONS(1969), - [anon_sym_0b] = ACTIONS(1971), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(1977), - [sym__str_single_quotes] = ACTIONS(1979), - [sym__str_back_ticks] = ACTIONS(1979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1985), - [anon_sym_err_GT] = ACTIONS(1987), - [anon_sym_out_GT] = ACTIONS(1987), - [anon_sym_e_GT] = ACTIONS(1987), - [anon_sym_o_GT] = ACTIONS(1987), - [anon_sym_err_PLUSout_GT] = ACTIONS(1987), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1987), - [anon_sym_o_PLUSe_GT] = ACTIONS(1987), - [anon_sym_e_PLUSo_GT] = ACTIONS(1987), - [anon_sym_err_GT_GT] = ACTIONS(1987), - [anon_sym_out_GT_GT] = ACTIONS(1987), - [anon_sym_e_GT_GT] = ACTIONS(1987), - [anon_sym_o_GT_GT] = ACTIONS(1987), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1987), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1987), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1987), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1987), - [aux_sym_unquoted_token1] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1991), + [409] = { + [sym_path] = STATE(517), + [sym_comment] = STATE(409), + [aux_sym_cell_path_repeat1] = STATE(410), + [anon_sym_export] = ACTIONS(967), + [anon_sym_alias] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_let_DASHenv] = ACTIONS(967), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [aux_sym_cmd_identifier_token1] = ACTIONS(967), + [aux_sym_cmd_identifier_token2] = ACTIONS(969), + [aux_sym_cmd_identifier_token3] = ACTIONS(969), + [aux_sym_cmd_identifier_token4] = ACTIONS(969), + [aux_sym_cmd_identifier_token5] = ACTIONS(969), + [aux_sym_cmd_identifier_token6] = ACTIONS(969), + [aux_sym_cmd_identifier_token7] = ACTIONS(969), + [aux_sym_cmd_identifier_token8] = ACTIONS(967), + [aux_sym_cmd_identifier_token9] = ACTIONS(967), + [aux_sym_cmd_identifier_token10] = ACTIONS(969), + [aux_sym_cmd_identifier_token11] = ACTIONS(969), + [aux_sym_cmd_identifier_token12] = ACTIONS(967), + [aux_sym_cmd_identifier_token13] = ACTIONS(967), + [aux_sym_cmd_identifier_token14] = ACTIONS(967), + [aux_sym_cmd_identifier_token15] = ACTIONS(967), + [aux_sym_cmd_identifier_token16] = ACTIONS(969), + [aux_sym_cmd_identifier_token17] = ACTIONS(969), + [aux_sym_cmd_identifier_token18] = ACTIONS(969), + [aux_sym_cmd_identifier_token19] = ACTIONS(969), + [aux_sym_cmd_identifier_token20] = ACTIONS(969), + [aux_sym_cmd_identifier_token21] = ACTIONS(969), + [aux_sym_cmd_identifier_token22] = ACTIONS(969), + [aux_sym_cmd_identifier_token23] = ACTIONS(969), + [aux_sym_cmd_identifier_token24] = ACTIONS(969), + [aux_sym_cmd_identifier_token25] = ACTIONS(969), + [aux_sym_cmd_identifier_token26] = ACTIONS(969), + [aux_sym_cmd_identifier_token27] = ACTIONS(969), + [aux_sym_cmd_identifier_token28] = ACTIONS(969), + [aux_sym_cmd_identifier_token29] = ACTIONS(969), + [aux_sym_cmd_identifier_token30] = ACTIONS(969), + [aux_sym_cmd_identifier_token31] = ACTIONS(969), + [aux_sym_cmd_identifier_token32] = ACTIONS(969), + [aux_sym_cmd_identifier_token33] = ACTIONS(969), + [aux_sym_cmd_identifier_token34] = ACTIONS(967), + [aux_sym_cmd_identifier_token35] = ACTIONS(969), + [aux_sym_cmd_identifier_token36] = ACTIONS(969), + [aux_sym_cmd_identifier_token37] = ACTIONS(969), + [aux_sym_cmd_identifier_token38] = ACTIONS(967), + [aux_sym_cmd_identifier_token39] = ACTIONS(969), + [aux_sym_cmd_identifier_token40] = ACTIONS(969), + [anon_sym_def] = ACTIONS(967), + [anon_sym_export_DASHenv] = ACTIONS(967), + [anon_sym_extern] = ACTIONS(967), + [anon_sym_module] = ACTIONS(967), + [anon_sym_use] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_error] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_in2] = ACTIONS(967), + [anon_sym_loop] = ACTIONS(967), + [anon_sym_make] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(967), + [anon_sym_match] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_try] = ACTIONS(967), + [anon_sym_catch] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_source] = ACTIONS(967), + [anon_sym_source_DASHenv] = ACTIONS(967), + [anon_sym_register] = ACTIONS(967), + [anon_sym_hide] = ACTIONS(967), + [anon_sym_hide_DASHenv] = ACTIONS(967), + [anon_sym_overlay] = ACTIONS(967), + [anon_sym_as] = ACTIONS(967), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1876), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(969), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(969), + [aux_sym__val_number_token1] = ACTIONS(969), + [aux_sym__val_number_token2] = ACTIONS(969), + [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_token4] = ACTIONS(967), + [aux_sym__val_number_token5] = ACTIONS(967), + [aux_sym__val_number_token6] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), + [aux_sym_record_entry_token1] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(969), }, - [363] = { - [sym_cell_path] = STATE(626), - [sym_path] = STATE(518), - [sym_comment] = STATE(363), - [aux_sym_cell_path_repeat1] = STATE(411), - [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] = ACTIONS(1856), - [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(1995), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1995), + [410] = { + [sym_path] = STATE(517), + [sym_comment] = STATE(410), + [aux_sym_cell_path_repeat1] = STATE(410), + [anon_sym_export] = ACTIONS(971), + [anon_sym_alias] = ACTIONS(971), + [anon_sym_let] = ACTIONS(971), + [anon_sym_let_DASHenv] = ACTIONS(971), + [anon_sym_mut] = ACTIONS(971), + [anon_sym_const] = ACTIONS(971), + [aux_sym_cmd_identifier_token1] = ACTIONS(971), + [aux_sym_cmd_identifier_token2] = ACTIONS(973), + [aux_sym_cmd_identifier_token3] = ACTIONS(973), + [aux_sym_cmd_identifier_token4] = ACTIONS(973), + [aux_sym_cmd_identifier_token5] = ACTIONS(973), + [aux_sym_cmd_identifier_token6] = ACTIONS(973), + [aux_sym_cmd_identifier_token7] = ACTIONS(973), + [aux_sym_cmd_identifier_token8] = ACTIONS(971), + [aux_sym_cmd_identifier_token9] = ACTIONS(971), + [aux_sym_cmd_identifier_token10] = ACTIONS(973), + [aux_sym_cmd_identifier_token11] = ACTIONS(973), + [aux_sym_cmd_identifier_token12] = ACTIONS(971), + [aux_sym_cmd_identifier_token13] = ACTIONS(971), + [aux_sym_cmd_identifier_token14] = ACTIONS(971), + [aux_sym_cmd_identifier_token15] = ACTIONS(971), + [aux_sym_cmd_identifier_token16] = ACTIONS(973), + [aux_sym_cmd_identifier_token17] = ACTIONS(973), + [aux_sym_cmd_identifier_token18] = ACTIONS(973), + [aux_sym_cmd_identifier_token19] = ACTIONS(973), + [aux_sym_cmd_identifier_token20] = ACTIONS(973), + [aux_sym_cmd_identifier_token21] = ACTIONS(973), + [aux_sym_cmd_identifier_token22] = ACTIONS(973), + [aux_sym_cmd_identifier_token23] = ACTIONS(973), + [aux_sym_cmd_identifier_token24] = ACTIONS(973), + [aux_sym_cmd_identifier_token25] = ACTIONS(973), + [aux_sym_cmd_identifier_token26] = ACTIONS(973), + [aux_sym_cmd_identifier_token27] = ACTIONS(973), + [aux_sym_cmd_identifier_token28] = ACTIONS(973), + [aux_sym_cmd_identifier_token29] = ACTIONS(973), + [aux_sym_cmd_identifier_token30] = ACTIONS(973), + [aux_sym_cmd_identifier_token31] = ACTIONS(973), + [aux_sym_cmd_identifier_token32] = ACTIONS(973), + [aux_sym_cmd_identifier_token33] = ACTIONS(973), + [aux_sym_cmd_identifier_token34] = ACTIONS(971), + [aux_sym_cmd_identifier_token35] = ACTIONS(973), + [aux_sym_cmd_identifier_token36] = ACTIONS(973), + [aux_sym_cmd_identifier_token37] = ACTIONS(973), + [aux_sym_cmd_identifier_token38] = ACTIONS(971), + [aux_sym_cmd_identifier_token39] = ACTIONS(973), + [aux_sym_cmd_identifier_token40] = ACTIONS(973), + [anon_sym_def] = ACTIONS(971), + [anon_sym_export_DASHenv] = ACTIONS(971), + [anon_sym_extern] = ACTIONS(971), + [anon_sym_module] = ACTIONS(971), + [anon_sym_use] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_COMMA] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_break] = ACTIONS(971), + [anon_sym_continue] = ACTIONS(971), + [anon_sym_for] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(971), + [anon_sym_loop] = ACTIONS(971), + [anon_sym_make] = ACTIONS(971), + [anon_sym_while] = ACTIONS(971), + [anon_sym_do] = ACTIONS(971), + [anon_sym_if] = ACTIONS(971), + [anon_sym_else] = ACTIONS(971), + [anon_sym_match] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_try] = ACTIONS(971), + [anon_sym_catch] = ACTIONS(971), + [anon_sym_return] = ACTIONS(971), + [anon_sym_source] = ACTIONS(971), + [anon_sym_source_DASHenv] = ACTIONS(971), + [anon_sym_register] = ACTIONS(971), + [anon_sym_hide] = ACTIONS(971), + [anon_sym_hide_DASHenv] = ACTIONS(971), + [anon_sym_overlay] = ACTIONS(971), + [anon_sym_as] = ACTIONS(971), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(1941), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(971), + [aux_sym__val_number_decimal_token2] = ACTIONS(973), + [aux_sym__val_number_decimal_token3] = ACTIONS(973), + [aux_sym__val_number_decimal_token4] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(971), + [aux_sym__val_number_token5] = ACTIONS(971), + [aux_sym__val_number_token6] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(973), + [aux_sym_record_entry_token1] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(973), }, - [364] = { - [sym_cell_path] = STATE(608), - [sym_path] = STATE(518), - [sym_comment] = STATE(364), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(1997), - [anon_sym_alias] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_let_DASHenv] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [aux_sym_cmd_identifier_token1] = ACTIONS(1997), - [aux_sym_cmd_identifier_token2] = ACTIONS(1997), - [aux_sym_cmd_identifier_token3] = ACTIONS(1997), - [aux_sym_cmd_identifier_token4] = ACTIONS(1997), - [aux_sym_cmd_identifier_token5] = ACTIONS(1997), - [aux_sym_cmd_identifier_token6] = ACTIONS(1997), - [aux_sym_cmd_identifier_token7] = ACTIONS(1997), - [aux_sym_cmd_identifier_token8] = ACTIONS(1997), - [aux_sym_cmd_identifier_token9] = ACTIONS(1997), - [aux_sym_cmd_identifier_token10] = ACTIONS(1997), - [aux_sym_cmd_identifier_token11] = ACTIONS(1997), - [aux_sym_cmd_identifier_token12] = ACTIONS(1997), - [aux_sym_cmd_identifier_token13] = ACTIONS(1997), - [aux_sym_cmd_identifier_token14] = ACTIONS(1997), - [aux_sym_cmd_identifier_token15] = ACTIONS(1997), - [aux_sym_cmd_identifier_token16] = ACTIONS(1997), - [aux_sym_cmd_identifier_token17] = ACTIONS(1997), - [aux_sym_cmd_identifier_token18] = ACTIONS(1997), - [aux_sym_cmd_identifier_token19] = ACTIONS(1997), - [aux_sym_cmd_identifier_token20] = ACTIONS(1997), - [aux_sym_cmd_identifier_token21] = ACTIONS(1997), - [aux_sym_cmd_identifier_token22] = ACTIONS(1997), - [aux_sym_cmd_identifier_token23] = ACTIONS(1997), - [aux_sym_cmd_identifier_token24] = ACTIONS(1997), - [aux_sym_cmd_identifier_token25] = ACTIONS(1997), - [aux_sym_cmd_identifier_token26] = ACTIONS(1997), - [aux_sym_cmd_identifier_token27] = ACTIONS(1997), - [aux_sym_cmd_identifier_token28] = ACTIONS(1997), - [aux_sym_cmd_identifier_token29] = ACTIONS(1997), - [aux_sym_cmd_identifier_token30] = ACTIONS(1997), - [aux_sym_cmd_identifier_token31] = ACTIONS(1997), - [aux_sym_cmd_identifier_token32] = ACTIONS(1997), - [aux_sym_cmd_identifier_token33] = ACTIONS(1997), - [aux_sym_cmd_identifier_token34] = ACTIONS(1997), - [aux_sym_cmd_identifier_token35] = ACTIONS(1997), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(1997), - [anon_sym_export_DASHenv] = ACTIONS(1997), - [anon_sym_extern] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_use] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_error] = ACTIONS(1997), - [anon_sym_list] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_make] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_else] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_try] = ACTIONS(1997), - [anon_sym_catch] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_source] = ACTIONS(1997), - [anon_sym_source_DASHenv] = ACTIONS(1997), - [anon_sym_register] = ACTIONS(1997), - [anon_sym_hide] = ACTIONS(1997), - [anon_sym_hide_DASHenv] = ACTIONS(1997), - [anon_sym_overlay] = ACTIONS(1997), - [anon_sym_new] = ACTIONS(1997), - [anon_sym_as] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [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), - [sym__entry_separator] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1997), + [411] = { + [sym_cell_path] = STATE(636), + [sym_path] = STATE(569), + [sym_comment] = STATE(411), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1944), + [anon_sym_alias] = ACTIONS(1944), + [anon_sym_let] = ACTIONS(1944), + [anon_sym_let_DASHenv] = ACTIONS(1944), + [anon_sym_mut] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [aux_sym_cmd_identifier_token1] = ACTIONS(1944), + [aux_sym_cmd_identifier_token2] = ACTIONS(1944), + [aux_sym_cmd_identifier_token3] = ACTIONS(1944), + [aux_sym_cmd_identifier_token4] = ACTIONS(1944), + [aux_sym_cmd_identifier_token5] = ACTIONS(1944), + [aux_sym_cmd_identifier_token6] = ACTIONS(1944), + [aux_sym_cmd_identifier_token7] = ACTIONS(1944), + [aux_sym_cmd_identifier_token8] = ACTIONS(1944), + [aux_sym_cmd_identifier_token9] = ACTIONS(1944), + [aux_sym_cmd_identifier_token10] = ACTIONS(1944), + [aux_sym_cmd_identifier_token11] = ACTIONS(1944), + [aux_sym_cmd_identifier_token12] = ACTIONS(1944), + [aux_sym_cmd_identifier_token13] = ACTIONS(1944), + [aux_sym_cmd_identifier_token14] = ACTIONS(1944), + [aux_sym_cmd_identifier_token15] = ACTIONS(1944), + [aux_sym_cmd_identifier_token16] = ACTIONS(1944), + [aux_sym_cmd_identifier_token17] = ACTIONS(1944), + [aux_sym_cmd_identifier_token18] = ACTIONS(1944), + [aux_sym_cmd_identifier_token19] = ACTIONS(1944), + [aux_sym_cmd_identifier_token20] = ACTIONS(1944), + [aux_sym_cmd_identifier_token21] = ACTIONS(1944), + [aux_sym_cmd_identifier_token22] = ACTIONS(1944), + [aux_sym_cmd_identifier_token23] = ACTIONS(1944), + [aux_sym_cmd_identifier_token24] = ACTIONS(1944), + [aux_sym_cmd_identifier_token25] = ACTIONS(1944), + [aux_sym_cmd_identifier_token26] = ACTIONS(1944), + [aux_sym_cmd_identifier_token27] = ACTIONS(1944), + [aux_sym_cmd_identifier_token28] = ACTIONS(1944), + [aux_sym_cmd_identifier_token29] = ACTIONS(1944), + [aux_sym_cmd_identifier_token30] = ACTIONS(1944), + [aux_sym_cmd_identifier_token31] = ACTIONS(1944), + [aux_sym_cmd_identifier_token32] = ACTIONS(1944), + [aux_sym_cmd_identifier_token33] = ACTIONS(1944), + [aux_sym_cmd_identifier_token34] = ACTIONS(1944), + [aux_sym_cmd_identifier_token35] = ACTIONS(1944), + [aux_sym_cmd_identifier_token36] = ACTIONS(1944), + [aux_sym_cmd_identifier_token37] = ACTIONS(1944), + [aux_sym_cmd_identifier_token38] = ACTIONS(1944), + [aux_sym_cmd_identifier_token39] = ACTIONS(1944), + [aux_sym_cmd_identifier_token40] = ACTIONS(1944), + [anon_sym_def] = ACTIONS(1944), + [anon_sym_export_DASHenv] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym_module] = ACTIONS(1944), + [anon_sym_use] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1944), + [anon_sym_DOLLAR] = ACTIONS(1944), + [anon_sym_error] = ACTIONS(1944), + [anon_sym_DASH2] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_in2] = ACTIONS(1944), + [anon_sym_loop] = ACTIONS(1944), + [anon_sym_make] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_else] = ACTIONS(1944), + [anon_sym_match] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_try] = ACTIONS(1944), + [anon_sym_catch] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_source] = ACTIONS(1944), + [anon_sym_source_DASHenv] = ACTIONS(1944), + [anon_sym_register] = ACTIONS(1944), + [anon_sym_hide] = ACTIONS(1944), + [anon_sym_hide_DASHenv] = ACTIONS(1944), + [anon_sym_overlay] = ACTIONS(1944), + [anon_sym_as] = ACTIONS(1944), + [anon_sym_PLUS2] = ACTIONS(1944), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1944), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1944), + [aux_sym__val_number_decimal_token1] = ACTIONS(1944), + [aux_sym__val_number_decimal_token2] = ACTIONS(1944), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), + [aux_sym__val_number_token1] = ACTIONS(1944), + [aux_sym__val_number_token2] = ACTIONS(1944), + [aux_sym__val_number_token3] = ACTIONS(1944), + [aux_sym__val_number_token4] = ACTIONS(1944), + [aux_sym__val_number_token5] = ACTIONS(1944), + [aux_sym__val_number_token6] = ACTIONS(1944), + [anon_sym_DQUOTE] = ACTIONS(1944), + [sym__str_single_quotes] = ACTIONS(1944), + [sym__str_back_ticks] = ACTIONS(1944), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1944), + [sym__entry_separator] = ACTIONS(1946), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1999), + [sym_raw_string_begin] = ACTIONS(1946), }, - [365] = { - [sym_cell_path] = STATE(575), - [sym_path] = STATE(518), - [sym_comment] = STATE(365), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2001), - [anon_sym_alias] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_let_DASHenv] = ACTIONS(2001), - [anon_sym_mut] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(2001), - [aux_sym_cmd_identifier_token1] = ACTIONS(2001), - [aux_sym_cmd_identifier_token2] = ACTIONS(2001), - [aux_sym_cmd_identifier_token3] = ACTIONS(2001), - [aux_sym_cmd_identifier_token4] = ACTIONS(2001), - [aux_sym_cmd_identifier_token5] = ACTIONS(2001), - [aux_sym_cmd_identifier_token6] = ACTIONS(2001), - [aux_sym_cmd_identifier_token7] = ACTIONS(2001), - [aux_sym_cmd_identifier_token8] = ACTIONS(2001), - [aux_sym_cmd_identifier_token9] = ACTIONS(2001), - [aux_sym_cmd_identifier_token10] = ACTIONS(2001), - [aux_sym_cmd_identifier_token11] = ACTIONS(2001), - [aux_sym_cmd_identifier_token12] = ACTIONS(2001), - [aux_sym_cmd_identifier_token13] = ACTIONS(2001), - [aux_sym_cmd_identifier_token14] = ACTIONS(2001), - [aux_sym_cmd_identifier_token15] = ACTIONS(2001), - [aux_sym_cmd_identifier_token16] = ACTIONS(2001), - [aux_sym_cmd_identifier_token17] = ACTIONS(2001), - [aux_sym_cmd_identifier_token18] = ACTIONS(2001), - [aux_sym_cmd_identifier_token19] = ACTIONS(2001), - [aux_sym_cmd_identifier_token20] = ACTIONS(2001), - [aux_sym_cmd_identifier_token21] = ACTIONS(2001), - [aux_sym_cmd_identifier_token22] = ACTIONS(2001), - [aux_sym_cmd_identifier_token23] = ACTIONS(2001), - [aux_sym_cmd_identifier_token24] = ACTIONS(2001), - [aux_sym_cmd_identifier_token25] = ACTIONS(2001), - [aux_sym_cmd_identifier_token26] = ACTIONS(2001), - [aux_sym_cmd_identifier_token27] = ACTIONS(2001), - [aux_sym_cmd_identifier_token28] = ACTIONS(2001), - [aux_sym_cmd_identifier_token29] = ACTIONS(2001), - [aux_sym_cmd_identifier_token30] = ACTIONS(2001), - [aux_sym_cmd_identifier_token31] = ACTIONS(2001), - [aux_sym_cmd_identifier_token32] = ACTIONS(2001), - [aux_sym_cmd_identifier_token33] = ACTIONS(2001), - [aux_sym_cmd_identifier_token34] = ACTIONS(2001), - [aux_sym_cmd_identifier_token35] = ACTIONS(2001), - [aux_sym_cmd_identifier_token36] = ACTIONS(2001), - [anon_sym_true] = ACTIONS(2001), - [anon_sym_false] = ACTIONS(2001), - [anon_sym_null] = ACTIONS(2001), - [aux_sym_cmd_identifier_token38] = ACTIONS(2001), - [aux_sym_cmd_identifier_token39] = ACTIONS(2001), - [aux_sym_cmd_identifier_token40] = ACTIONS(2001), - [anon_sym_def] = ACTIONS(2001), - [anon_sym_export_DASHenv] = ACTIONS(2001), - [anon_sym_extern] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_use] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_error] = ACTIONS(2001), - [anon_sym_list] = ACTIONS(2001), - [anon_sym_DASH] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2001), - [anon_sym_continue] = ACTIONS(2001), - [anon_sym_for] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_loop] = ACTIONS(2001), - [anon_sym_make] = ACTIONS(2001), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(2001), - [anon_sym_if] = ACTIONS(2001), - [anon_sym_else] = ACTIONS(2001), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_try] = ACTIONS(2001), - [anon_sym_catch] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2001), - [anon_sym_source] = ACTIONS(2001), - [anon_sym_source_DASHenv] = ACTIONS(2001), - [anon_sym_register] = ACTIONS(2001), - [anon_sym_hide] = ACTIONS(2001), - [anon_sym_hide_DASHenv] = ACTIONS(2001), - [anon_sym_overlay] = ACTIONS(2001), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2001), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2001), - [aux_sym__val_number_decimal_token3] = ACTIONS(2001), - [aux_sym__val_number_decimal_token4] = ACTIONS(2001), - [aux_sym__val_number_token1] = ACTIONS(2001), - [aux_sym__val_number_token2] = ACTIONS(2001), - [aux_sym__val_number_token3] = ACTIONS(2001), - [anon_sym_DQUOTE] = ACTIONS(2001), - [sym__str_single_quotes] = ACTIONS(2001), - [sym__str_back_ticks] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2001), - [sym__entry_separator] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2001), + [412] = { + [sym_cell_path] = STATE(623), + [sym_path] = STATE(569), + [sym_comment] = STATE(412), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1948), + [anon_sym_alias] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1948), + [anon_sym_let_DASHenv] = ACTIONS(1948), + [anon_sym_mut] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [aux_sym_cmd_identifier_token1] = ACTIONS(1948), + [aux_sym_cmd_identifier_token2] = ACTIONS(1948), + [aux_sym_cmd_identifier_token3] = ACTIONS(1948), + [aux_sym_cmd_identifier_token4] = ACTIONS(1948), + [aux_sym_cmd_identifier_token5] = ACTIONS(1948), + [aux_sym_cmd_identifier_token6] = ACTIONS(1948), + [aux_sym_cmd_identifier_token7] = ACTIONS(1948), + [aux_sym_cmd_identifier_token8] = ACTIONS(1948), + [aux_sym_cmd_identifier_token9] = ACTIONS(1948), + [aux_sym_cmd_identifier_token10] = ACTIONS(1948), + [aux_sym_cmd_identifier_token11] = ACTIONS(1948), + [aux_sym_cmd_identifier_token12] = ACTIONS(1948), + [aux_sym_cmd_identifier_token13] = ACTIONS(1948), + [aux_sym_cmd_identifier_token14] = ACTIONS(1948), + [aux_sym_cmd_identifier_token15] = ACTIONS(1948), + [aux_sym_cmd_identifier_token16] = ACTIONS(1948), + [aux_sym_cmd_identifier_token17] = ACTIONS(1948), + [aux_sym_cmd_identifier_token18] = ACTIONS(1948), + [aux_sym_cmd_identifier_token19] = ACTIONS(1948), + [aux_sym_cmd_identifier_token20] = ACTIONS(1948), + [aux_sym_cmd_identifier_token21] = ACTIONS(1948), + [aux_sym_cmd_identifier_token22] = ACTIONS(1948), + [aux_sym_cmd_identifier_token23] = ACTIONS(1948), + [aux_sym_cmd_identifier_token24] = ACTIONS(1948), + [aux_sym_cmd_identifier_token25] = ACTIONS(1948), + [aux_sym_cmd_identifier_token26] = ACTIONS(1948), + [aux_sym_cmd_identifier_token27] = ACTIONS(1948), + [aux_sym_cmd_identifier_token28] = ACTIONS(1948), + [aux_sym_cmd_identifier_token29] = ACTIONS(1948), + [aux_sym_cmd_identifier_token30] = ACTIONS(1948), + [aux_sym_cmd_identifier_token31] = ACTIONS(1948), + [aux_sym_cmd_identifier_token32] = ACTIONS(1948), + [aux_sym_cmd_identifier_token33] = ACTIONS(1948), + [aux_sym_cmd_identifier_token34] = ACTIONS(1948), + [aux_sym_cmd_identifier_token35] = ACTIONS(1948), + [aux_sym_cmd_identifier_token36] = ACTIONS(1948), + [aux_sym_cmd_identifier_token37] = ACTIONS(1948), + [aux_sym_cmd_identifier_token38] = ACTIONS(1948), + [aux_sym_cmd_identifier_token39] = ACTIONS(1948), + [aux_sym_cmd_identifier_token40] = ACTIONS(1948), + [anon_sym_def] = ACTIONS(1948), + [anon_sym_export_DASHenv] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym_module] = ACTIONS(1948), + [anon_sym_use] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1948), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_error] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_in2] = ACTIONS(1948), + [anon_sym_loop] = ACTIONS(1948), + [anon_sym_make] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(1948), + [anon_sym_match] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_source] = ACTIONS(1948), + [anon_sym_source_DASHenv] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_hide] = ACTIONS(1948), + [anon_sym_hide_DASHenv] = ACTIONS(1948), + [anon_sym_overlay] = ACTIONS(1948), + [anon_sym_as] = ACTIONS(1948), + [anon_sym_PLUS2] = ACTIONS(1948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1948), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1948), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1948), + [aux_sym__val_number_decimal_token3] = ACTIONS(1948), + [aux_sym__val_number_decimal_token4] = ACTIONS(1948), + [aux_sym__val_number_token1] = ACTIONS(1948), + [aux_sym__val_number_token2] = ACTIONS(1948), + [aux_sym__val_number_token3] = ACTIONS(1948), + [aux_sym__val_number_token4] = ACTIONS(1948), + [aux_sym__val_number_token5] = ACTIONS(1948), + [aux_sym__val_number_token6] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1948), + [sym__str_single_quotes] = ACTIONS(1948), + [sym__str_back_ticks] = ACTIONS(1948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1948), + [sym__entry_separator] = ACTIONS(1950), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2003), + [sym_raw_string_begin] = ACTIONS(1950), }, - [366] = { - [sym_cell_path] = STATE(577), - [sym_path] = STATE(518), - [sym_comment] = STATE(366), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_alias] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_let_DASHenv] = ACTIONS(2005), - [anon_sym_mut] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [aux_sym_cmd_identifier_token1] = ACTIONS(2005), - [aux_sym_cmd_identifier_token2] = ACTIONS(2005), - [aux_sym_cmd_identifier_token3] = ACTIONS(2005), - [aux_sym_cmd_identifier_token4] = ACTIONS(2005), - [aux_sym_cmd_identifier_token5] = ACTIONS(2005), - [aux_sym_cmd_identifier_token6] = ACTIONS(2005), - [aux_sym_cmd_identifier_token7] = ACTIONS(2005), - [aux_sym_cmd_identifier_token8] = ACTIONS(2005), - [aux_sym_cmd_identifier_token9] = ACTIONS(2005), - [aux_sym_cmd_identifier_token10] = ACTIONS(2005), - [aux_sym_cmd_identifier_token11] = ACTIONS(2005), - [aux_sym_cmd_identifier_token12] = ACTIONS(2005), - [aux_sym_cmd_identifier_token13] = ACTIONS(2005), - [aux_sym_cmd_identifier_token14] = ACTIONS(2005), - [aux_sym_cmd_identifier_token15] = ACTIONS(2005), - [aux_sym_cmd_identifier_token16] = ACTIONS(2005), - [aux_sym_cmd_identifier_token17] = ACTIONS(2005), - [aux_sym_cmd_identifier_token18] = ACTIONS(2005), - [aux_sym_cmd_identifier_token19] = ACTIONS(2005), - [aux_sym_cmd_identifier_token20] = ACTIONS(2005), - [aux_sym_cmd_identifier_token21] = ACTIONS(2005), - [aux_sym_cmd_identifier_token22] = ACTIONS(2005), - [aux_sym_cmd_identifier_token23] = ACTIONS(2005), - [aux_sym_cmd_identifier_token24] = ACTIONS(2005), - [aux_sym_cmd_identifier_token25] = ACTIONS(2005), - [aux_sym_cmd_identifier_token26] = ACTIONS(2005), - [aux_sym_cmd_identifier_token27] = ACTIONS(2005), - [aux_sym_cmd_identifier_token28] = ACTIONS(2005), - [aux_sym_cmd_identifier_token29] = ACTIONS(2005), - [aux_sym_cmd_identifier_token30] = ACTIONS(2005), - [aux_sym_cmd_identifier_token31] = ACTIONS(2005), - [aux_sym_cmd_identifier_token32] = ACTIONS(2005), - [aux_sym_cmd_identifier_token33] = ACTIONS(2005), - [aux_sym_cmd_identifier_token34] = ACTIONS(2005), - [aux_sym_cmd_identifier_token35] = ACTIONS(2005), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(2005), - [anon_sym_export_DASHenv] = ACTIONS(2005), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_error] = ACTIONS(2005), - [anon_sym_list] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_in] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_make] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_do] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_else] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(2005), - [anon_sym_catch] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_source] = ACTIONS(2005), - [anon_sym_source_DASHenv] = ACTIONS(2005), - [anon_sym_register] = ACTIONS(2005), - [anon_sym_hide] = ACTIONS(2005), - [anon_sym_hide_DASHenv] = ACTIONS(2005), - [anon_sym_overlay] = ACTIONS(2005), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_as] = ACTIONS(2005), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2005), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2005), - [aux_sym__val_number_decimal_token1] = ACTIONS(2005), - [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), - [sym__entry_separator] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2005), + [413] = { + [sym_cell_path] = STATE(618), + [sym_path] = STATE(569), + [sym_comment] = STATE(413), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(961), + [anon_sym_alias] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_let_DASHenv] = ACTIONS(961), + [anon_sym_mut] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [aux_sym_cmd_identifier_token1] = ACTIONS(961), + [aux_sym_cmd_identifier_token2] = ACTIONS(961), + [aux_sym_cmd_identifier_token3] = ACTIONS(961), + [aux_sym_cmd_identifier_token4] = ACTIONS(961), + [aux_sym_cmd_identifier_token5] = ACTIONS(961), + [aux_sym_cmd_identifier_token6] = ACTIONS(961), + [aux_sym_cmd_identifier_token7] = ACTIONS(961), + [aux_sym_cmd_identifier_token8] = ACTIONS(961), + [aux_sym_cmd_identifier_token9] = ACTIONS(961), + [aux_sym_cmd_identifier_token10] = ACTIONS(961), + [aux_sym_cmd_identifier_token11] = ACTIONS(961), + [aux_sym_cmd_identifier_token12] = ACTIONS(961), + [aux_sym_cmd_identifier_token13] = ACTIONS(961), + [aux_sym_cmd_identifier_token14] = ACTIONS(961), + [aux_sym_cmd_identifier_token15] = ACTIONS(961), + [aux_sym_cmd_identifier_token16] = ACTIONS(961), + [aux_sym_cmd_identifier_token17] = ACTIONS(961), + [aux_sym_cmd_identifier_token18] = ACTIONS(961), + [aux_sym_cmd_identifier_token19] = ACTIONS(961), + [aux_sym_cmd_identifier_token20] = ACTIONS(961), + [aux_sym_cmd_identifier_token21] = ACTIONS(961), + [aux_sym_cmd_identifier_token22] = ACTIONS(961), + [aux_sym_cmd_identifier_token23] = ACTIONS(961), + [aux_sym_cmd_identifier_token24] = ACTIONS(961), + [aux_sym_cmd_identifier_token25] = ACTIONS(961), + [aux_sym_cmd_identifier_token26] = ACTIONS(961), + [aux_sym_cmd_identifier_token27] = ACTIONS(961), + [aux_sym_cmd_identifier_token28] = ACTIONS(961), + [aux_sym_cmd_identifier_token29] = ACTIONS(961), + [aux_sym_cmd_identifier_token30] = ACTIONS(961), + [aux_sym_cmd_identifier_token31] = ACTIONS(961), + [aux_sym_cmd_identifier_token32] = ACTIONS(961), + [aux_sym_cmd_identifier_token33] = ACTIONS(961), + [aux_sym_cmd_identifier_token34] = ACTIONS(961), + [aux_sym_cmd_identifier_token35] = ACTIONS(961), + [aux_sym_cmd_identifier_token36] = ACTIONS(961), + [aux_sym_cmd_identifier_token37] = ACTIONS(961), + [aux_sym_cmd_identifier_token38] = ACTIONS(961), + [aux_sym_cmd_identifier_token39] = ACTIONS(961), + [aux_sym_cmd_identifier_token40] = ACTIONS(961), + [anon_sym_def] = ACTIONS(961), + [anon_sym_export_DASHenv] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_error] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_make] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_try] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_source] = ACTIONS(961), + [anon_sym_source_DASHenv] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_hide_DASHenv] = ACTIONS(961), + [anon_sym_overlay] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(961), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(961), + [aux_sym__val_number_decimal_token3] = ACTIONS(961), + [aux_sym__val_number_decimal_token4] = ACTIONS(961), + [aux_sym__val_number_token1] = ACTIONS(961), + [aux_sym__val_number_token2] = ACTIONS(961), + [aux_sym__val_number_token3] = ACTIONS(961), + [aux_sym__val_number_token4] = ACTIONS(961), + [aux_sym__val_number_token5] = ACTIONS(961), + [aux_sym__val_number_token6] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym__str_single_quotes] = ACTIONS(961), + [sym__str_back_ticks] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(961), + [sym__entry_separator] = ACTIONS(963), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2007), + [sym_raw_string_begin] = ACTIONS(963), }, - [367] = { - [sym_cell_path] = STATE(612), - [sym_path] = STATE(518), - [sym_comment] = STATE(367), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2009), - [anon_sym_alias] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_let_DASHenv] = ACTIONS(2009), - [anon_sym_mut] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [aux_sym_cmd_identifier_token1] = ACTIONS(2009), - [aux_sym_cmd_identifier_token2] = ACTIONS(2009), - [aux_sym_cmd_identifier_token3] = ACTIONS(2009), - [aux_sym_cmd_identifier_token4] = ACTIONS(2009), - [aux_sym_cmd_identifier_token5] = ACTIONS(2009), - [aux_sym_cmd_identifier_token6] = ACTIONS(2009), - [aux_sym_cmd_identifier_token7] = ACTIONS(2009), - [aux_sym_cmd_identifier_token8] = ACTIONS(2009), - [aux_sym_cmd_identifier_token9] = ACTIONS(2009), - [aux_sym_cmd_identifier_token10] = ACTIONS(2009), - [aux_sym_cmd_identifier_token11] = ACTIONS(2009), - [aux_sym_cmd_identifier_token12] = ACTIONS(2009), - [aux_sym_cmd_identifier_token13] = ACTIONS(2009), - [aux_sym_cmd_identifier_token14] = ACTIONS(2009), - [aux_sym_cmd_identifier_token15] = ACTIONS(2009), - [aux_sym_cmd_identifier_token16] = ACTIONS(2009), - [aux_sym_cmd_identifier_token17] = ACTIONS(2009), - [aux_sym_cmd_identifier_token18] = ACTIONS(2009), - [aux_sym_cmd_identifier_token19] = ACTIONS(2009), - [aux_sym_cmd_identifier_token20] = ACTIONS(2009), - [aux_sym_cmd_identifier_token21] = ACTIONS(2009), - [aux_sym_cmd_identifier_token22] = ACTIONS(2009), - [aux_sym_cmd_identifier_token23] = ACTIONS(2009), - [aux_sym_cmd_identifier_token24] = ACTIONS(2009), - [aux_sym_cmd_identifier_token25] = ACTIONS(2009), - [aux_sym_cmd_identifier_token26] = ACTIONS(2009), - [aux_sym_cmd_identifier_token27] = ACTIONS(2009), - [aux_sym_cmd_identifier_token28] = ACTIONS(2009), - [aux_sym_cmd_identifier_token29] = ACTIONS(2009), - [aux_sym_cmd_identifier_token30] = ACTIONS(2009), - [aux_sym_cmd_identifier_token31] = ACTIONS(2009), - [aux_sym_cmd_identifier_token32] = ACTIONS(2009), - [aux_sym_cmd_identifier_token33] = ACTIONS(2009), - [aux_sym_cmd_identifier_token34] = ACTIONS(2009), - [aux_sym_cmd_identifier_token35] = ACTIONS(2009), - [aux_sym_cmd_identifier_token36] = ACTIONS(2009), - [anon_sym_true] = ACTIONS(2009), - [anon_sym_false] = ACTIONS(2009), - [anon_sym_null] = ACTIONS(2009), - [aux_sym_cmd_identifier_token38] = ACTIONS(2009), - [aux_sym_cmd_identifier_token39] = ACTIONS(2009), - [aux_sym_cmd_identifier_token40] = ACTIONS(2009), - [anon_sym_def] = ACTIONS(2009), - [anon_sym_export_DASHenv] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_module] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_error] = ACTIONS(2009), - [anon_sym_list] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_in] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_make] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_do] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_try] = ACTIONS(2009), - [anon_sym_catch] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_source] = ACTIONS(2009), - [anon_sym_source_DASHenv] = ACTIONS(2009), - [anon_sym_register] = ACTIONS(2009), - [anon_sym_hide] = ACTIONS(2009), - [anon_sym_hide_DASHenv] = ACTIONS(2009), - [anon_sym_overlay] = ACTIONS(2009), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_as] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2009), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2009), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2009), - [aux_sym__val_number_decimal_token3] = ACTIONS(2009), - [aux_sym__val_number_decimal_token4] = ACTIONS(2009), - [aux_sym__val_number_token1] = ACTIONS(2009), - [aux_sym__val_number_token2] = ACTIONS(2009), - [aux_sym__val_number_token3] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2009), - [sym__str_single_quotes] = ACTIONS(2009), - [sym__str_back_ticks] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2009), - [sym__entry_separator] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2009), + [414] = { + [sym_cell_path] = STATE(632), + [sym_path] = STATE(569), + [sym_comment] = STATE(414), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1952), + [anon_sym_alias] = ACTIONS(1952), + [anon_sym_let] = ACTIONS(1952), + [anon_sym_let_DASHenv] = ACTIONS(1952), + [anon_sym_mut] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [aux_sym_cmd_identifier_token1] = ACTIONS(1952), + [aux_sym_cmd_identifier_token2] = ACTIONS(1952), + [aux_sym_cmd_identifier_token3] = ACTIONS(1952), + [aux_sym_cmd_identifier_token4] = ACTIONS(1952), + [aux_sym_cmd_identifier_token5] = ACTIONS(1952), + [aux_sym_cmd_identifier_token6] = ACTIONS(1952), + [aux_sym_cmd_identifier_token7] = ACTIONS(1952), + [aux_sym_cmd_identifier_token8] = ACTIONS(1952), + [aux_sym_cmd_identifier_token9] = ACTIONS(1952), + [aux_sym_cmd_identifier_token10] = ACTIONS(1952), + [aux_sym_cmd_identifier_token11] = ACTIONS(1952), + [aux_sym_cmd_identifier_token12] = ACTIONS(1952), + [aux_sym_cmd_identifier_token13] = ACTIONS(1952), + [aux_sym_cmd_identifier_token14] = ACTIONS(1952), + [aux_sym_cmd_identifier_token15] = ACTIONS(1952), + [aux_sym_cmd_identifier_token16] = ACTIONS(1952), + [aux_sym_cmd_identifier_token17] = ACTIONS(1952), + [aux_sym_cmd_identifier_token18] = ACTIONS(1952), + [aux_sym_cmd_identifier_token19] = ACTIONS(1952), + [aux_sym_cmd_identifier_token20] = ACTIONS(1952), + [aux_sym_cmd_identifier_token21] = ACTIONS(1952), + [aux_sym_cmd_identifier_token22] = ACTIONS(1952), + [aux_sym_cmd_identifier_token23] = ACTIONS(1952), + [aux_sym_cmd_identifier_token24] = ACTIONS(1952), + [aux_sym_cmd_identifier_token25] = ACTIONS(1952), + [aux_sym_cmd_identifier_token26] = ACTIONS(1952), + [aux_sym_cmd_identifier_token27] = ACTIONS(1952), + [aux_sym_cmd_identifier_token28] = ACTIONS(1952), + [aux_sym_cmd_identifier_token29] = ACTIONS(1952), + [aux_sym_cmd_identifier_token30] = ACTIONS(1952), + [aux_sym_cmd_identifier_token31] = ACTIONS(1952), + [aux_sym_cmd_identifier_token32] = ACTIONS(1952), + [aux_sym_cmd_identifier_token33] = ACTIONS(1952), + [aux_sym_cmd_identifier_token34] = ACTIONS(1952), + [aux_sym_cmd_identifier_token35] = ACTIONS(1952), + [aux_sym_cmd_identifier_token36] = ACTIONS(1952), + [aux_sym_cmd_identifier_token37] = ACTIONS(1952), + [aux_sym_cmd_identifier_token38] = ACTIONS(1952), + [aux_sym_cmd_identifier_token39] = ACTIONS(1952), + [aux_sym_cmd_identifier_token40] = ACTIONS(1952), + [anon_sym_def] = ACTIONS(1952), + [anon_sym_export_DASHenv] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym_module] = ACTIONS(1952), + [anon_sym_use] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1952), + [anon_sym_error] = ACTIONS(1952), + [anon_sym_DASH2] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_in2] = ACTIONS(1952), + [anon_sym_loop] = ACTIONS(1952), + [anon_sym_make] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_do] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(1952), + [anon_sym_match] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_try] = ACTIONS(1952), + [anon_sym_catch] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_source] = ACTIONS(1952), + [anon_sym_source_DASHenv] = ACTIONS(1952), + [anon_sym_register] = ACTIONS(1952), + [anon_sym_hide] = ACTIONS(1952), + [anon_sym_hide_DASHenv] = ACTIONS(1952), + [anon_sym_overlay] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1952), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1952), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1952), + [aux_sym__val_number_decimal_token1] = ACTIONS(1952), + [aux_sym__val_number_decimal_token2] = ACTIONS(1952), + [aux_sym__val_number_decimal_token3] = ACTIONS(1952), + [aux_sym__val_number_decimal_token4] = ACTIONS(1952), + [aux_sym__val_number_token1] = ACTIONS(1952), + [aux_sym__val_number_token2] = ACTIONS(1952), + [aux_sym__val_number_token3] = ACTIONS(1952), + [aux_sym__val_number_token4] = ACTIONS(1952), + [aux_sym__val_number_token5] = ACTIONS(1952), + [aux_sym__val_number_token6] = ACTIONS(1952), + [anon_sym_DQUOTE] = ACTIONS(1952), + [sym__str_single_quotes] = ACTIONS(1952), + [sym__str_back_ticks] = ACTIONS(1952), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1952), + [sym__entry_separator] = ACTIONS(1954), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2011), + [sym_raw_string_begin] = ACTIONS(1954), }, - [368] = { - [sym_cell_path] = STATE(622), - [sym_path] = STATE(518), - [sym_comment] = STATE(368), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2013), - [anon_sym_alias] = ACTIONS(2013), - [anon_sym_let] = ACTIONS(2013), - [anon_sym_let_DASHenv] = ACTIONS(2013), - [anon_sym_mut] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [aux_sym_cmd_identifier_token1] = ACTIONS(2013), - [aux_sym_cmd_identifier_token2] = ACTIONS(2013), - [aux_sym_cmd_identifier_token3] = ACTIONS(2013), - [aux_sym_cmd_identifier_token4] = ACTIONS(2013), - [aux_sym_cmd_identifier_token5] = ACTIONS(2013), - [aux_sym_cmd_identifier_token6] = ACTIONS(2013), - [aux_sym_cmd_identifier_token7] = ACTIONS(2013), - [aux_sym_cmd_identifier_token8] = ACTIONS(2013), - [aux_sym_cmd_identifier_token9] = ACTIONS(2013), - [aux_sym_cmd_identifier_token10] = ACTIONS(2013), - [aux_sym_cmd_identifier_token11] = ACTIONS(2013), - [aux_sym_cmd_identifier_token12] = ACTIONS(2013), - [aux_sym_cmd_identifier_token13] = ACTIONS(2013), - [aux_sym_cmd_identifier_token14] = ACTIONS(2013), - [aux_sym_cmd_identifier_token15] = ACTIONS(2013), - [aux_sym_cmd_identifier_token16] = ACTIONS(2013), - [aux_sym_cmd_identifier_token17] = ACTIONS(2013), - [aux_sym_cmd_identifier_token18] = ACTIONS(2013), - [aux_sym_cmd_identifier_token19] = ACTIONS(2013), - [aux_sym_cmd_identifier_token20] = ACTIONS(2013), - [aux_sym_cmd_identifier_token21] = ACTIONS(2013), - [aux_sym_cmd_identifier_token22] = ACTIONS(2013), - [aux_sym_cmd_identifier_token23] = ACTIONS(2013), - [aux_sym_cmd_identifier_token24] = ACTIONS(2013), - [aux_sym_cmd_identifier_token25] = ACTIONS(2013), - [aux_sym_cmd_identifier_token26] = ACTIONS(2013), - [aux_sym_cmd_identifier_token27] = ACTIONS(2013), - [aux_sym_cmd_identifier_token28] = ACTIONS(2013), - [aux_sym_cmd_identifier_token29] = ACTIONS(2013), - [aux_sym_cmd_identifier_token30] = ACTIONS(2013), - [aux_sym_cmd_identifier_token31] = ACTIONS(2013), - [aux_sym_cmd_identifier_token32] = ACTIONS(2013), - [aux_sym_cmd_identifier_token33] = ACTIONS(2013), - [aux_sym_cmd_identifier_token34] = ACTIONS(2013), - [aux_sym_cmd_identifier_token35] = ACTIONS(2013), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(2013), - [anon_sym_export_DASHenv] = ACTIONS(2013), - [anon_sym_extern] = ACTIONS(2013), - [anon_sym_module] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2013), - [anon_sym_error] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_in] = ACTIONS(2013), - [anon_sym_loop] = ACTIONS(2013), - [anon_sym_make] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_else] = ACTIONS(2013), - [anon_sym_match] = ACTIONS(2013), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_catch] = ACTIONS(2013), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_source] = ACTIONS(2013), - [anon_sym_source_DASHenv] = ACTIONS(2013), - [anon_sym_register] = ACTIONS(2013), - [anon_sym_hide] = ACTIONS(2013), - [anon_sym_hide_DASHenv] = ACTIONS(2013), - [anon_sym_overlay] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2013), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2013), - [aux_sym__val_number_decimal_token1] = ACTIONS(2013), - [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), - [sym__entry_separator] = ACTIONS(2015), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2015), + [415] = { + [sym_comment] = STATE(415), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [aux_sym_cmd_identifier_token37] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_register] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(1956), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), }, - [369] = { - [sym_cell_path] = STATE(562), - [sym_path] = STATE(518), - [sym_comment] = STATE(369), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2017), - [anon_sym_alias] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_let_DASHenv] = ACTIONS(2017), - [anon_sym_mut] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [aux_sym_cmd_identifier_token1] = ACTIONS(2017), - [aux_sym_cmd_identifier_token2] = ACTIONS(2017), - [aux_sym_cmd_identifier_token3] = ACTIONS(2017), - [aux_sym_cmd_identifier_token4] = ACTIONS(2017), - [aux_sym_cmd_identifier_token5] = ACTIONS(2017), - [aux_sym_cmd_identifier_token6] = ACTIONS(2017), - [aux_sym_cmd_identifier_token7] = ACTIONS(2017), - [aux_sym_cmd_identifier_token8] = ACTIONS(2017), - [aux_sym_cmd_identifier_token9] = ACTIONS(2017), - [aux_sym_cmd_identifier_token10] = ACTIONS(2017), - [aux_sym_cmd_identifier_token11] = ACTIONS(2017), - [aux_sym_cmd_identifier_token12] = ACTIONS(2017), - [aux_sym_cmd_identifier_token13] = ACTIONS(2017), - [aux_sym_cmd_identifier_token14] = ACTIONS(2017), - [aux_sym_cmd_identifier_token15] = ACTIONS(2017), - [aux_sym_cmd_identifier_token16] = ACTIONS(2017), - [aux_sym_cmd_identifier_token17] = ACTIONS(2017), - [aux_sym_cmd_identifier_token18] = ACTIONS(2017), - [aux_sym_cmd_identifier_token19] = ACTIONS(2017), - [aux_sym_cmd_identifier_token20] = ACTIONS(2017), - [aux_sym_cmd_identifier_token21] = ACTIONS(2017), - [aux_sym_cmd_identifier_token22] = ACTIONS(2017), - [aux_sym_cmd_identifier_token23] = ACTIONS(2017), - [aux_sym_cmd_identifier_token24] = ACTIONS(2017), - [aux_sym_cmd_identifier_token25] = ACTIONS(2017), - [aux_sym_cmd_identifier_token26] = ACTIONS(2017), - [aux_sym_cmd_identifier_token27] = ACTIONS(2017), - [aux_sym_cmd_identifier_token28] = ACTIONS(2017), - [aux_sym_cmd_identifier_token29] = ACTIONS(2017), - [aux_sym_cmd_identifier_token30] = ACTIONS(2017), - [aux_sym_cmd_identifier_token31] = ACTIONS(2017), - [aux_sym_cmd_identifier_token32] = ACTIONS(2017), - [aux_sym_cmd_identifier_token33] = ACTIONS(2017), - [aux_sym_cmd_identifier_token34] = ACTIONS(2017), - [aux_sym_cmd_identifier_token35] = ACTIONS(2017), - [aux_sym_cmd_identifier_token36] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [aux_sym_cmd_identifier_token38] = ACTIONS(2017), - [aux_sym_cmd_identifier_token39] = ACTIONS(2017), - [aux_sym_cmd_identifier_token40] = ACTIONS(2017), - [anon_sym_def] = ACTIONS(2017), - [anon_sym_export_DASHenv] = ACTIONS(2017), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_error] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_in] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_make] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_catch] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_source] = ACTIONS(2017), - [anon_sym_source_DASHenv] = ACTIONS(2017), - [anon_sym_register] = ACTIONS(2017), - [anon_sym_hide] = ACTIONS(2017), - [anon_sym_hide_DASHenv] = ACTIONS(2017), - [anon_sym_overlay] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [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), - [sym__entry_separator] = ACTIONS(2019), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2019), + [416] = { + [sym_comment] = STATE(416), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(1958), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(986), }, - [370] = { - [sym_cell_path] = STATE(563), - [sym_path] = STATE(518), - [sym_comment] = STATE(370), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2021), - [anon_sym_alias] = ACTIONS(2021), - [anon_sym_let] = ACTIONS(2021), - [anon_sym_let_DASHenv] = ACTIONS(2021), - [anon_sym_mut] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [aux_sym_cmd_identifier_token1] = ACTIONS(2021), - [aux_sym_cmd_identifier_token2] = ACTIONS(2021), - [aux_sym_cmd_identifier_token3] = ACTIONS(2021), - [aux_sym_cmd_identifier_token4] = ACTIONS(2021), - [aux_sym_cmd_identifier_token5] = ACTIONS(2021), - [aux_sym_cmd_identifier_token6] = ACTIONS(2021), - [aux_sym_cmd_identifier_token7] = ACTIONS(2021), - [aux_sym_cmd_identifier_token8] = ACTIONS(2021), - [aux_sym_cmd_identifier_token9] = ACTIONS(2021), - [aux_sym_cmd_identifier_token10] = ACTIONS(2021), - [aux_sym_cmd_identifier_token11] = ACTIONS(2021), - [aux_sym_cmd_identifier_token12] = ACTIONS(2021), - [aux_sym_cmd_identifier_token13] = ACTIONS(2021), - [aux_sym_cmd_identifier_token14] = ACTIONS(2021), - [aux_sym_cmd_identifier_token15] = ACTIONS(2021), - [aux_sym_cmd_identifier_token16] = ACTIONS(2021), - [aux_sym_cmd_identifier_token17] = ACTIONS(2021), - [aux_sym_cmd_identifier_token18] = ACTIONS(2021), - [aux_sym_cmd_identifier_token19] = ACTIONS(2021), - [aux_sym_cmd_identifier_token20] = ACTIONS(2021), - [aux_sym_cmd_identifier_token21] = ACTIONS(2021), - [aux_sym_cmd_identifier_token22] = ACTIONS(2021), - [aux_sym_cmd_identifier_token23] = ACTIONS(2021), - [aux_sym_cmd_identifier_token24] = ACTIONS(2021), - [aux_sym_cmd_identifier_token25] = ACTIONS(2021), - [aux_sym_cmd_identifier_token26] = ACTIONS(2021), - [aux_sym_cmd_identifier_token27] = ACTIONS(2021), - [aux_sym_cmd_identifier_token28] = ACTIONS(2021), - [aux_sym_cmd_identifier_token29] = ACTIONS(2021), - [aux_sym_cmd_identifier_token30] = ACTIONS(2021), - [aux_sym_cmd_identifier_token31] = ACTIONS(2021), - [aux_sym_cmd_identifier_token32] = ACTIONS(2021), - [aux_sym_cmd_identifier_token33] = ACTIONS(2021), - [aux_sym_cmd_identifier_token34] = ACTIONS(2021), - [aux_sym_cmd_identifier_token35] = ACTIONS(2021), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(2021), - [anon_sym_export_DASHenv] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2021), - [anon_sym_module] = ACTIONS(2021), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_DOLLAR] = ACTIONS(2021), - [anon_sym_error] = ACTIONS(2021), - [anon_sym_list] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_in] = ACTIONS(2021), - [anon_sym_loop] = ACTIONS(2021), - [anon_sym_make] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_do] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), - [anon_sym_else] = ACTIONS(2021), - [anon_sym_match] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2021), - [anon_sym_catch] = ACTIONS(2021), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_source] = ACTIONS(2021), - [anon_sym_source_DASHenv] = ACTIONS(2021), - [anon_sym_register] = ACTIONS(2021), - [anon_sym_hide] = ACTIONS(2021), - [anon_sym_hide_DASHenv] = ACTIONS(2021), - [anon_sym_overlay] = ACTIONS(2021), - [anon_sym_new] = ACTIONS(2021), - [anon_sym_as] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2021), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2021), - [aux_sym__val_number_decimal_token1] = ACTIONS(2021), - [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), - [sym__entry_separator] = ACTIONS(2023), - [anon_sym_PLUS] = ACTIONS(2021), + [417] = { + [sym_cell_path] = STATE(647), + [sym_path] = STATE(569), + [sym_comment] = STATE(417), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1960), + [anon_sym_alias] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_let_DASHenv] = ACTIONS(1960), + [anon_sym_mut] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [aux_sym_cmd_identifier_token1] = ACTIONS(1960), + [aux_sym_cmd_identifier_token2] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1960), + [aux_sym_cmd_identifier_token4] = ACTIONS(1960), + [aux_sym_cmd_identifier_token5] = ACTIONS(1960), + [aux_sym_cmd_identifier_token6] = ACTIONS(1960), + [aux_sym_cmd_identifier_token7] = ACTIONS(1960), + [aux_sym_cmd_identifier_token8] = ACTIONS(1960), + [aux_sym_cmd_identifier_token9] = ACTIONS(1960), + [aux_sym_cmd_identifier_token10] = ACTIONS(1960), + [aux_sym_cmd_identifier_token11] = ACTIONS(1960), + [aux_sym_cmd_identifier_token12] = ACTIONS(1960), + [aux_sym_cmd_identifier_token13] = ACTIONS(1960), + [aux_sym_cmd_identifier_token14] = ACTIONS(1960), + [aux_sym_cmd_identifier_token15] = ACTIONS(1960), + [aux_sym_cmd_identifier_token16] = ACTIONS(1960), + [aux_sym_cmd_identifier_token17] = ACTIONS(1960), + [aux_sym_cmd_identifier_token18] = ACTIONS(1960), + [aux_sym_cmd_identifier_token19] = ACTIONS(1960), + [aux_sym_cmd_identifier_token20] = ACTIONS(1960), + [aux_sym_cmd_identifier_token21] = ACTIONS(1960), + [aux_sym_cmd_identifier_token22] = ACTIONS(1960), + [aux_sym_cmd_identifier_token23] = ACTIONS(1960), + [aux_sym_cmd_identifier_token24] = ACTIONS(1960), + [aux_sym_cmd_identifier_token25] = ACTIONS(1960), + [aux_sym_cmd_identifier_token26] = ACTIONS(1960), + [aux_sym_cmd_identifier_token27] = ACTIONS(1960), + [aux_sym_cmd_identifier_token28] = ACTIONS(1960), + [aux_sym_cmd_identifier_token29] = ACTIONS(1960), + [aux_sym_cmd_identifier_token30] = ACTIONS(1960), + [aux_sym_cmd_identifier_token31] = ACTIONS(1960), + [aux_sym_cmd_identifier_token32] = ACTIONS(1960), + [aux_sym_cmd_identifier_token33] = ACTIONS(1960), + [aux_sym_cmd_identifier_token34] = ACTIONS(1960), + [aux_sym_cmd_identifier_token35] = ACTIONS(1960), + [aux_sym_cmd_identifier_token36] = ACTIONS(1960), + [aux_sym_cmd_identifier_token37] = ACTIONS(1960), + [aux_sym_cmd_identifier_token38] = ACTIONS(1960), + [aux_sym_cmd_identifier_token39] = ACTIONS(1960), + [aux_sym_cmd_identifier_token40] = ACTIONS(1960), + [anon_sym_def] = ACTIONS(1960), + [anon_sym_export_DASHenv] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym_module] = ACTIONS(1960), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_DOLLAR] = ACTIONS(1960), + [anon_sym_error] = ACTIONS(1960), + [anon_sym_DASH2] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_in2] = ACTIONS(1960), + [anon_sym_loop] = ACTIONS(1960), + [anon_sym_make] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_else] = ACTIONS(1960), + [anon_sym_match] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1960), + [anon_sym_try] = ACTIONS(1960), + [anon_sym_catch] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_source] = ACTIONS(1960), + [anon_sym_source_DASHenv] = ACTIONS(1960), + [anon_sym_register] = ACTIONS(1960), + [anon_sym_hide] = ACTIONS(1960), + [anon_sym_hide_DASHenv] = ACTIONS(1960), + [anon_sym_overlay] = ACTIONS(1960), + [anon_sym_as] = ACTIONS(1960), + [anon_sym_PLUS2] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1960), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1960), + [aux_sym__val_number_decimal_token1] = ACTIONS(1960), + [aux_sym__val_number_decimal_token2] = ACTIONS(1960), + [aux_sym__val_number_decimal_token3] = ACTIONS(1960), + [aux_sym__val_number_decimal_token4] = ACTIONS(1960), + [aux_sym__val_number_token1] = ACTIONS(1960), + [aux_sym__val_number_token2] = ACTIONS(1960), + [aux_sym__val_number_token3] = ACTIONS(1960), + [aux_sym__val_number_token4] = ACTIONS(1960), + [aux_sym__val_number_token5] = ACTIONS(1960), + [aux_sym__val_number_token6] = ACTIONS(1960), + [anon_sym_DQUOTE] = ACTIONS(1960), + [sym__str_single_quotes] = ACTIONS(1960), + [sym__str_back_ticks] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1960), + [sym__entry_separator] = ACTIONS(1962), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2023), + [sym_raw_string_begin] = ACTIONS(1962), }, - [371] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if] = STATE(4885), - [sym_block] = STATE(4886), - [sym__expression] = STATE(4886), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3881), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1929), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3053), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_command] = STATE(4886), - [sym_comment] = STATE(371), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(371), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_null] = ACTIONS(2027), - [aux_sym_cmd_identifier_token38] = ACTIONS(2029), - [aux_sym_cmd_identifier_token39] = ACTIONS(2031), - [aux_sym_cmd_identifier_token40] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_if] = ACTIONS(415), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_DOT_DOT] = ACTIONS(193), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(2035), - [aux_sym__val_number_decimal_token2] = ACTIONS(2037), - [aux_sym__val_number_decimal_token3] = ACTIONS(2039), - [aux_sym__val_number_decimal_token4] = ACTIONS(2041), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(247), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [418] = { + [sym_comment] = STATE(418), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1006), + [aux_sym_cmd_identifier_token3] = ACTIONS(1006), + [aux_sym_cmd_identifier_token4] = ACTIONS(1006), + [aux_sym_cmd_identifier_token5] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1006), + [aux_sym_cmd_identifier_token7] = ACTIONS(1006), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1006), + [aux_sym_cmd_identifier_token11] = ACTIONS(1006), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1006), + [aux_sym_cmd_identifier_token17] = ACTIONS(1006), + [aux_sym_cmd_identifier_token18] = ACTIONS(1006), + [aux_sym_cmd_identifier_token19] = ACTIONS(1006), + [aux_sym_cmd_identifier_token20] = ACTIONS(1006), + [aux_sym_cmd_identifier_token21] = ACTIONS(1006), + [aux_sym_cmd_identifier_token22] = ACTIONS(1006), + [aux_sym_cmd_identifier_token23] = ACTIONS(1006), + [aux_sym_cmd_identifier_token24] = ACTIONS(1006), + [aux_sym_cmd_identifier_token25] = ACTIONS(1006), + [aux_sym_cmd_identifier_token26] = ACTIONS(1006), + [aux_sym_cmd_identifier_token27] = ACTIONS(1006), + [aux_sym_cmd_identifier_token28] = ACTIONS(1006), + [aux_sym_cmd_identifier_token29] = ACTIONS(1006), + [aux_sym_cmd_identifier_token30] = ACTIONS(1006), + [aux_sym_cmd_identifier_token31] = ACTIONS(1006), + [aux_sym_cmd_identifier_token32] = ACTIONS(1006), + [aux_sym_cmd_identifier_token33] = ACTIONS(1006), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1006), + [aux_sym_cmd_identifier_token36] = ACTIONS(1006), + [aux_sym_cmd_identifier_token37] = ACTIONS(1006), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1006), + [aux_sym_cmd_identifier_token40] = ACTIONS(1006), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_decimal_token4] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), + [sym__entry_separator] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1008), }, - [372] = { - [sym_cell_path] = STATE(566), - [sym_path] = STATE(518), - [sym_comment] = STATE(372), - [aux_sym_cell_path_repeat1] = STATE(411), - [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] = ACTIONS(1856), - [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(2045), - [anon_sym_PLUS] = ACTIONS(2043), + [419] = { + [sym_comment] = STATE(419), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [aux_sym__immediate_decimal_token1] = ACTIONS(1964), + [aux_sym__immediate_decimal_token2] = ACTIONS(1966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2045), + [sym_raw_string_begin] = ACTIONS(1741), }, - [373] = { - [sym_cell_path] = STATE(569), - [sym_path] = STATE(518), - [sym_comment] = STATE(373), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2047), - [anon_sym_alias] = ACTIONS(2047), - [anon_sym_let] = ACTIONS(2047), - [anon_sym_let_DASHenv] = ACTIONS(2047), - [anon_sym_mut] = ACTIONS(2047), - [anon_sym_const] = ACTIONS(2047), - [aux_sym_cmd_identifier_token1] = ACTIONS(2047), - [aux_sym_cmd_identifier_token2] = ACTIONS(2047), - [aux_sym_cmd_identifier_token3] = ACTIONS(2047), - [aux_sym_cmd_identifier_token4] = ACTIONS(2047), - [aux_sym_cmd_identifier_token5] = ACTIONS(2047), - [aux_sym_cmd_identifier_token6] = ACTIONS(2047), - [aux_sym_cmd_identifier_token7] = ACTIONS(2047), - [aux_sym_cmd_identifier_token8] = ACTIONS(2047), - [aux_sym_cmd_identifier_token9] = ACTIONS(2047), - [aux_sym_cmd_identifier_token10] = ACTIONS(2047), - [aux_sym_cmd_identifier_token11] = ACTIONS(2047), - [aux_sym_cmd_identifier_token12] = ACTIONS(2047), - [aux_sym_cmd_identifier_token13] = ACTIONS(2047), - [aux_sym_cmd_identifier_token14] = ACTIONS(2047), - [aux_sym_cmd_identifier_token15] = ACTIONS(2047), - [aux_sym_cmd_identifier_token16] = ACTIONS(2047), - [aux_sym_cmd_identifier_token17] = ACTIONS(2047), - [aux_sym_cmd_identifier_token18] = ACTIONS(2047), - [aux_sym_cmd_identifier_token19] = ACTIONS(2047), - [aux_sym_cmd_identifier_token20] = ACTIONS(2047), - [aux_sym_cmd_identifier_token21] = ACTIONS(2047), - [aux_sym_cmd_identifier_token22] = ACTIONS(2047), - [aux_sym_cmd_identifier_token23] = ACTIONS(2047), - [aux_sym_cmd_identifier_token24] = ACTIONS(2047), - [aux_sym_cmd_identifier_token25] = ACTIONS(2047), - [aux_sym_cmd_identifier_token26] = ACTIONS(2047), - [aux_sym_cmd_identifier_token27] = ACTIONS(2047), - [aux_sym_cmd_identifier_token28] = ACTIONS(2047), - [aux_sym_cmd_identifier_token29] = ACTIONS(2047), - [aux_sym_cmd_identifier_token30] = ACTIONS(2047), - [aux_sym_cmd_identifier_token31] = ACTIONS(2047), - [aux_sym_cmd_identifier_token32] = ACTIONS(2047), - [aux_sym_cmd_identifier_token33] = ACTIONS(2047), - [aux_sym_cmd_identifier_token34] = ACTIONS(2047), - [aux_sym_cmd_identifier_token35] = ACTIONS(2047), - [aux_sym_cmd_identifier_token36] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2047), - [aux_sym_cmd_identifier_token38] = ACTIONS(2047), - [aux_sym_cmd_identifier_token39] = ACTIONS(2047), - [aux_sym_cmd_identifier_token40] = ACTIONS(2047), - [anon_sym_def] = ACTIONS(2047), - [anon_sym_export_DASHenv] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2047), - [anon_sym_module] = ACTIONS(2047), - [anon_sym_use] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2047), - [anon_sym_error] = ACTIONS(2047), - [anon_sym_list] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_break] = ACTIONS(2047), - [anon_sym_continue] = ACTIONS(2047), - [anon_sym_for] = ACTIONS(2047), - [anon_sym_in] = ACTIONS(2047), - [anon_sym_loop] = ACTIONS(2047), - [anon_sym_make] = ACTIONS(2047), - [anon_sym_while] = ACTIONS(2047), - [anon_sym_do] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2047), - [anon_sym_else] = ACTIONS(2047), - [anon_sym_match] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_try] = ACTIONS(2047), - [anon_sym_catch] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2047), - [anon_sym_source] = ACTIONS(2047), - [anon_sym_source_DASHenv] = ACTIONS(2047), - [anon_sym_register] = ACTIONS(2047), - [anon_sym_hide] = ACTIONS(2047), - [anon_sym_hide_DASHenv] = ACTIONS(2047), - [anon_sym_overlay] = ACTIONS(2047), - [anon_sym_new] = ACTIONS(2047), - [anon_sym_as] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2047), - [aux_sym__val_number_decimal_token1] = ACTIONS(2047), - [aux_sym__val_number_decimal_token2] = ACTIONS(2047), - [aux_sym__val_number_decimal_token3] = ACTIONS(2047), - [aux_sym__val_number_decimal_token4] = ACTIONS(2047), - [aux_sym__val_number_token1] = ACTIONS(2047), - [aux_sym__val_number_token2] = ACTIONS(2047), - [aux_sym__val_number_token3] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(2047), - [sym__str_single_quotes] = ACTIONS(2047), - [sym__str_back_ticks] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2047), - [sym__entry_separator] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2047), + [420] = { + [sym_cell_path] = STATE(653), + [sym_path] = STATE(569), + [sym_comment] = STATE(420), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1968), + [aux_sym_cmd_identifier_token4] = ACTIONS(1968), + [aux_sym_cmd_identifier_token5] = ACTIONS(1968), + [aux_sym_cmd_identifier_token6] = ACTIONS(1968), + [aux_sym_cmd_identifier_token7] = ACTIONS(1968), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1968), + [aux_sym_cmd_identifier_token11] = ACTIONS(1968), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1968), + [aux_sym_cmd_identifier_token17] = ACTIONS(1968), + [aux_sym_cmd_identifier_token18] = ACTIONS(1968), + [aux_sym_cmd_identifier_token19] = ACTIONS(1968), + [aux_sym_cmd_identifier_token20] = ACTIONS(1968), + [aux_sym_cmd_identifier_token21] = ACTIONS(1968), + [aux_sym_cmd_identifier_token22] = ACTIONS(1968), + [aux_sym_cmd_identifier_token23] = ACTIONS(1968), + [aux_sym_cmd_identifier_token24] = ACTIONS(1968), + [aux_sym_cmd_identifier_token25] = ACTIONS(1968), + [aux_sym_cmd_identifier_token26] = ACTIONS(1968), + [aux_sym_cmd_identifier_token27] = ACTIONS(1968), + [aux_sym_cmd_identifier_token28] = ACTIONS(1968), + [aux_sym_cmd_identifier_token29] = ACTIONS(1968), + [aux_sym_cmd_identifier_token30] = ACTIONS(1968), + [aux_sym_cmd_identifier_token31] = ACTIONS(1968), + [aux_sym_cmd_identifier_token32] = ACTIONS(1968), + [aux_sym_cmd_identifier_token33] = ACTIONS(1968), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1968), + [aux_sym_cmd_identifier_token36] = ACTIONS(1968), + [aux_sym_cmd_identifier_token37] = ACTIONS(1968), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1968), + [aux_sym_cmd_identifier_token40] = ACTIONS(1968), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1968), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1968), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1968), + [aux_sym__val_number_decimal_token3] = ACTIONS(1968), + [aux_sym__val_number_decimal_token4] = ACTIONS(1968), + [aux_sym__val_number_token1] = ACTIONS(1968), + [aux_sym__val_number_token2] = ACTIONS(1968), + [aux_sym__val_number_token3] = ACTIONS(1968), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym__str_single_quotes] = ACTIONS(1968), + [sym__str_back_ticks] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1968), + [sym__entry_separator] = ACTIONS(1970), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2049), + [sym_raw_string_begin] = ACTIONS(1970), }, - [374] = { - [sym_cell_path] = STATE(570), - [sym_path] = STATE(518), - [sym_comment] = STATE(374), - [aux_sym_cell_path_repeat1] = STATE(411), - [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] = ACTIONS(1856), - [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(2053), - [anon_sym_PLUS] = ACTIONS(2051), + [421] = { + [sym_cell_path] = STATE(661), + [sym_path] = STATE(569), + [sym_comment] = STATE(421), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1972), + [anon_sym_alias] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_let_DASHenv] = ACTIONS(1972), + [anon_sym_mut] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [aux_sym_cmd_identifier_token1] = ACTIONS(1972), + [aux_sym_cmd_identifier_token2] = ACTIONS(1972), + [aux_sym_cmd_identifier_token3] = ACTIONS(1972), + [aux_sym_cmd_identifier_token4] = ACTIONS(1972), + [aux_sym_cmd_identifier_token5] = ACTIONS(1972), + [aux_sym_cmd_identifier_token6] = ACTIONS(1972), + [aux_sym_cmd_identifier_token7] = ACTIONS(1972), + [aux_sym_cmd_identifier_token8] = ACTIONS(1972), + [aux_sym_cmd_identifier_token9] = ACTIONS(1972), + [aux_sym_cmd_identifier_token10] = ACTIONS(1972), + [aux_sym_cmd_identifier_token11] = ACTIONS(1972), + [aux_sym_cmd_identifier_token12] = ACTIONS(1972), + [aux_sym_cmd_identifier_token13] = ACTIONS(1972), + [aux_sym_cmd_identifier_token14] = ACTIONS(1972), + [aux_sym_cmd_identifier_token15] = ACTIONS(1972), + [aux_sym_cmd_identifier_token16] = ACTIONS(1972), + [aux_sym_cmd_identifier_token17] = ACTIONS(1972), + [aux_sym_cmd_identifier_token18] = ACTIONS(1972), + [aux_sym_cmd_identifier_token19] = ACTIONS(1972), + [aux_sym_cmd_identifier_token20] = ACTIONS(1972), + [aux_sym_cmd_identifier_token21] = ACTIONS(1972), + [aux_sym_cmd_identifier_token22] = ACTIONS(1972), + [aux_sym_cmd_identifier_token23] = ACTIONS(1972), + [aux_sym_cmd_identifier_token24] = ACTIONS(1972), + [aux_sym_cmd_identifier_token25] = ACTIONS(1972), + [aux_sym_cmd_identifier_token26] = ACTIONS(1972), + [aux_sym_cmd_identifier_token27] = ACTIONS(1972), + [aux_sym_cmd_identifier_token28] = ACTIONS(1972), + [aux_sym_cmd_identifier_token29] = ACTIONS(1972), + [aux_sym_cmd_identifier_token30] = ACTIONS(1972), + [aux_sym_cmd_identifier_token31] = ACTIONS(1972), + [aux_sym_cmd_identifier_token32] = ACTIONS(1972), + [aux_sym_cmd_identifier_token33] = ACTIONS(1972), + [aux_sym_cmd_identifier_token34] = ACTIONS(1972), + [aux_sym_cmd_identifier_token35] = ACTIONS(1972), + [aux_sym_cmd_identifier_token36] = ACTIONS(1972), + [aux_sym_cmd_identifier_token37] = ACTIONS(1972), + [aux_sym_cmd_identifier_token38] = ACTIONS(1972), + [aux_sym_cmd_identifier_token39] = ACTIONS(1972), + [aux_sym_cmd_identifier_token40] = ACTIONS(1972), + [anon_sym_def] = ACTIONS(1972), + [anon_sym_export_DASHenv] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_module] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_error] = ACTIONS(1972), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_in2] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_make] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_source] = ACTIONS(1972), + [anon_sym_source_DASHenv] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_hide] = ACTIONS(1972), + [anon_sym_hide_DASHenv] = ACTIONS(1972), + [anon_sym_overlay] = ACTIONS(1972), + [anon_sym_as] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1972), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1972), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1972), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), + [aux_sym__val_number_token1] = ACTIONS(1972), + [aux_sym__val_number_token2] = ACTIONS(1972), + [aux_sym__val_number_token3] = ACTIONS(1972), + [aux_sym__val_number_token4] = ACTIONS(1972), + [aux_sym__val_number_token5] = ACTIONS(1972), + [aux_sym__val_number_token6] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym__str_single_quotes] = ACTIONS(1972), + [sym__str_back_ticks] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1972), + [sym__entry_separator] = ACTIONS(1974), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2053), + [sym_raw_string_begin] = ACTIONS(1974), }, - [375] = { - [sym_cell_path] = STATE(576), - [sym_path] = STATE(518), - [sym_comment] = STATE(375), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_alias] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_let_DASHenv] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [aux_sym_cmd_identifier_token1] = ACTIONS(2055), - [aux_sym_cmd_identifier_token2] = ACTIONS(2055), - [aux_sym_cmd_identifier_token3] = ACTIONS(2055), - [aux_sym_cmd_identifier_token4] = ACTIONS(2055), - [aux_sym_cmd_identifier_token5] = ACTIONS(2055), - [aux_sym_cmd_identifier_token6] = ACTIONS(2055), - [aux_sym_cmd_identifier_token7] = ACTIONS(2055), - [aux_sym_cmd_identifier_token8] = ACTIONS(2055), - [aux_sym_cmd_identifier_token9] = ACTIONS(2055), - [aux_sym_cmd_identifier_token10] = ACTIONS(2055), - [aux_sym_cmd_identifier_token11] = ACTIONS(2055), - [aux_sym_cmd_identifier_token12] = ACTIONS(2055), - [aux_sym_cmd_identifier_token13] = ACTIONS(2055), - [aux_sym_cmd_identifier_token14] = ACTIONS(2055), - [aux_sym_cmd_identifier_token15] = ACTIONS(2055), - [aux_sym_cmd_identifier_token16] = ACTIONS(2055), - [aux_sym_cmd_identifier_token17] = ACTIONS(2055), - [aux_sym_cmd_identifier_token18] = ACTIONS(2055), - [aux_sym_cmd_identifier_token19] = ACTIONS(2055), - [aux_sym_cmd_identifier_token20] = ACTIONS(2055), - [aux_sym_cmd_identifier_token21] = ACTIONS(2055), - [aux_sym_cmd_identifier_token22] = ACTIONS(2055), - [aux_sym_cmd_identifier_token23] = ACTIONS(2055), - [aux_sym_cmd_identifier_token24] = ACTIONS(2055), - [aux_sym_cmd_identifier_token25] = ACTIONS(2055), - [aux_sym_cmd_identifier_token26] = ACTIONS(2055), - [aux_sym_cmd_identifier_token27] = ACTIONS(2055), - [aux_sym_cmd_identifier_token28] = ACTIONS(2055), - [aux_sym_cmd_identifier_token29] = ACTIONS(2055), - [aux_sym_cmd_identifier_token30] = ACTIONS(2055), - [aux_sym_cmd_identifier_token31] = ACTIONS(2055), - [aux_sym_cmd_identifier_token32] = ACTIONS(2055), - [aux_sym_cmd_identifier_token33] = ACTIONS(2055), - [aux_sym_cmd_identifier_token34] = ACTIONS(2055), - [aux_sym_cmd_identifier_token35] = ACTIONS(2055), - [aux_sym_cmd_identifier_token36] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2055), - [anon_sym_false] = ACTIONS(2055), - [anon_sym_null] = ACTIONS(2055), - [aux_sym_cmd_identifier_token38] = ACTIONS(2055), - [aux_sym_cmd_identifier_token39] = ACTIONS(2055), - [aux_sym_cmd_identifier_token40] = ACTIONS(2055), - [anon_sym_def] = ACTIONS(2055), - [anon_sym_export_DASHenv] = ACTIONS(2055), - [anon_sym_extern] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_use] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_error] = ACTIONS(2055), - [anon_sym_list] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_loop] = ACTIONS(2055), - [anon_sym_make] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_catch] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_source] = ACTIONS(2055), - [anon_sym_source_DASHenv] = ACTIONS(2055), - [anon_sym_register] = ACTIONS(2055), - [anon_sym_hide] = ACTIONS(2055), - [anon_sym_hide_DASHenv] = ACTIONS(2055), - [anon_sym_overlay] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2055), - [aux_sym__val_number_decimal_token2] = ACTIONS(2055), - [aux_sym__val_number_decimal_token3] = ACTIONS(2055), - [aux_sym__val_number_decimal_token4] = ACTIONS(2055), - [aux_sym__val_number_token1] = ACTIONS(2055), - [aux_sym__val_number_token2] = ACTIONS(2055), - [aux_sym__val_number_token3] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [sym__str_single_quotes] = ACTIONS(2055), - [sym__str_back_ticks] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2055), - [sym__entry_separator] = ACTIONS(2057), - [anon_sym_PLUS] = ACTIONS(2055), + [422] = { + [sym_comment] = STATE(422), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_PLUS2] = 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), + [aux_sym__immediate_decimal_token2] = ACTIONS(1864), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2057), + [sym_raw_string_begin] = ACTIONS(1757), }, - [376] = { - [sym_cell_path] = STATE(578), - [sym_path] = STATE(518), - [sym_comment] = STATE(376), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2059), - [anon_sym_alias] = ACTIONS(2059), - [anon_sym_let] = ACTIONS(2059), - [anon_sym_let_DASHenv] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [aux_sym_cmd_identifier_token1] = ACTIONS(2059), - [aux_sym_cmd_identifier_token2] = ACTIONS(2059), - [aux_sym_cmd_identifier_token3] = ACTIONS(2059), - [aux_sym_cmd_identifier_token4] = ACTIONS(2059), - [aux_sym_cmd_identifier_token5] = ACTIONS(2059), - [aux_sym_cmd_identifier_token6] = ACTIONS(2059), - [aux_sym_cmd_identifier_token7] = ACTIONS(2059), - [aux_sym_cmd_identifier_token8] = ACTIONS(2059), - [aux_sym_cmd_identifier_token9] = ACTIONS(2059), - [aux_sym_cmd_identifier_token10] = ACTIONS(2059), - [aux_sym_cmd_identifier_token11] = ACTIONS(2059), - [aux_sym_cmd_identifier_token12] = ACTIONS(2059), - [aux_sym_cmd_identifier_token13] = ACTIONS(2059), - [aux_sym_cmd_identifier_token14] = ACTIONS(2059), - [aux_sym_cmd_identifier_token15] = ACTIONS(2059), - [aux_sym_cmd_identifier_token16] = ACTIONS(2059), - [aux_sym_cmd_identifier_token17] = ACTIONS(2059), - [aux_sym_cmd_identifier_token18] = ACTIONS(2059), - [aux_sym_cmd_identifier_token19] = ACTIONS(2059), - [aux_sym_cmd_identifier_token20] = ACTIONS(2059), - [aux_sym_cmd_identifier_token21] = ACTIONS(2059), - [aux_sym_cmd_identifier_token22] = ACTIONS(2059), - [aux_sym_cmd_identifier_token23] = ACTIONS(2059), - [aux_sym_cmd_identifier_token24] = ACTIONS(2059), - [aux_sym_cmd_identifier_token25] = ACTIONS(2059), - [aux_sym_cmd_identifier_token26] = ACTIONS(2059), - [aux_sym_cmd_identifier_token27] = ACTIONS(2059), - [aux_sym_cmd_identifier_token28] = ACTIONS(2059), - [aux_sym_cmd_identifier_token29] = ACTIONS(2059), - [aux_sym_cmd_identifier_token30] = ACTIONS(2059), - [aux_sym_cmd_identifier_token31] = ACTIONS(2059), - [aux_sym_cmd_identifier_token32] = ACTIONS(2059), - [aux_sym_cmd_identifier_token33] = ACTIONS(2059), - [aux_sym_cmd_identifier_token34] = ACTIONS(2059), - [aux_sym_cmd_identifier_token35] = ACTIONS(2059), - [aux_sym_cmd_identifier_token36] = ACTIONS(2059), - [anon_sym_true] = ACTIONS(2059), - [anon_sym_false] = ACTIONS(2059), - [anon_sym_null] = ACTIONS(2059), - [aux_sym_cmd_identifier_token38] = ACTIONS(2059), - [aux_sym_cmd_identifier_token39] = ACTIONS(2059), - [aux_sym_cmd_identifier_token40] = ACTIONS(2059), - [anon_sym_def] = ACTIONS(2059), - [anon_sym_export_DASHenv] = ACTIONS(2059), - [anon_sym_extern] = ACTIONS(2059), - [anon_sym_module] = ACTIONS(2059), - [anon_sym_use] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_error] = ACTIONS(2059), - [anon_sym_list] = ACTIONS(2059), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_loop] = ACTIONS(2059), - [anon_sym_make] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_do] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_else] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2059), - [anon_sym_catch] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_source] = ACTIONS(2059), - [anon_sym_source_DASHenv] = ACTIONS(2059), - [anon_sym_register] = ACTIONS(2059), - [anon_sym_hide] = ACTIONS(2059), - [anon_sym_hide_DASHenv] = ACTIONS(2059), - [anon_sym_overlay] = ACTIONS(2059), - [anon_sym_new] = ACTIONS(2059), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2059), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2059), - [aux_sym__val_number_decimal_token1] = ACTIONS(2059), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2059), - [aux_sym__val_number_decimal_token4] = ACTIONS(2059), - [aux_sym__val_number_token1] = ACTIONS(2059), - [aux_sym__val_number_token2] = ACTIONS(2059), - [aux_sym__val_number_token3] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2059), - [sym__str_single_quotes] = ACTIONS(2059), - [sym__str_back_ticks] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2059), - [sym__entry_separator] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(2059), + [423] = { + [sym_cell_path] = STATE(656), + [sym_path] = STATE(569), + [sym_comment] = STATE(423), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1976), + [anon_sym_alias] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_let_DASHenv] = ACTIONS(1976), + [anon_sym_mut] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [aux_sym_cmd_identifier_token1] = ACTIONS(1976), + [aux_sym_cmd_identifier_token2] = ACTIONS(1976), + [aux_sym_cmd_identifier_token3] = ACTIONS(1976), + [aux_sym_cmd_identifier_token4] = ACTIONS(1976), + [aux_sym_cmd_identifier_token5] = ACTIONS(1976), + [aux_sym_cmd_identifier_token6] = ACTIONS(1976), + [aux_sym_cmd_identifier_token7] = ACTIONS(1976), + [aux_sym_cmd_identifier_token8] = ACTIONS(1976), + [aux_sym_cmd_identifier_token9] = ACTIONS(1976), + [aux_sym_cmd_identifier_token10] = ACTIONS(1976), + [aux_sym_cmd_identifier_token11] = ACTIONS(1976), + [aux_sym_cmd_identifier_token12] = ACTIONS(1976), + [aux_sym_cmd_identifier_token13] = ACTIONS(1976), + [aux_sym_cmd_identifier_token14] = ACTIONS(1976), + [aux_sym_cmd_identifier_token15] = ACTIONS(1976), + [aux_sym_cmd_identifier_token16] = ACTIONS(1976), + [aux_sym_cmd_identifier_token17] = ACTIONS(1976), + [aux_sym_cmd_identifier_token18] = ACTIONS(1976), + [aux_sym_cmd_identifier_token19] = ACTIONS(1976), + [aux_sym_cmd_identifier_token20] = ACTIONS(1976), + [aux_sym_cmd_identifier_token21] = ACTIONS(1976), + [aux_sym_cmd_identifier_token22] = ACTIONS(1976), + [aux_sym_cmd_identifier_token23] = ACTIONS(1976), + [aux_sym_cmd_identifier_token24] = ACTIONS(1976), + [aux_sym_cmd_identifier_token25] = ACTIONS(1976), + [aux_sym_cmd_identifier_token26] = ACTIONS(1976), + [aux_sym_cmd_identifier_token27] = ACTIONS(1976), + [aux_sym_cmd_identifier_token28] = ACTIONS(1976), + [aux_sym_cmd_identifier_token29] = ACTIONS(1976), + [aux_sym_cmd_identifier_token30] = ACTIONS(1976), + [aux_sym_cmd_identifier_token31] = ACTIONS(1976), + [aux_sym_cmd_identifier_token32] = ACTIONS(1976), + [aux_sym_cmd_identifier_token33] = ACTIONS(1976), + [aux_sym_cmd_identifier_token34] = ACTIONS(1976), + [aux_sym_cmd_identifier_token35] = ACTIONS(1976), + [aux_sym_cmd_identifier_token36] = ACTIONS(1976), + [aux_sym_cmd_identifier_token37] = ACTIONS(1976), + [aux_sym_cmd_identifier_token38] = ACTIONS(1976), + [aux_sym_cmd_identifier_token39] = ACTIONS(1976), + [aux_sym_cmd_identifier_token40] = ACTIONS(1976), + [anon_sym_def] = ACTIONS(1976), + [anon_sym_export_DASHenv] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym_module] = ACTIONS(1976), + [anon_sym_use] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_DOLLAR] = ACTIONS(1976), + [anon_sym_error] = ACTIONS(1976), + [anon_sym_DASH2] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_in2] = ACTIONS(1976), + [anon_sym_loop] = ACTIONS(1976), + [anon_sym_make] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_else] = ACTIONS(1976), + [anon_sym_match] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_try] = ACTIONS(1976), + [anon_sym_catch] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_source] = ACTIONS(1976), + [anon_sym_source_DASHenv] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_hide] = ACTIONS(1976), + [anon_sym_hide_DASHenv] = ACTIONS(1976), + [anon_sym_overlay] = ACTIONS(1976), + [anon_sym_as] = ACTIONS(1976), + [anon_sym_PLUS2] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1976), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1976), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(1976), + [aux_sym__val_number_decimal_token4] = ACTIONS(1976), + [aux_sym__val_number_token1] = ACTIONS(1976), + [aux_sym__val_number_token2] = ACTIONS(1976), + [aux_sym__val_number_token3] = ACTIONS(1976), + [aux_sym__val_number_token4] = ACTIONS(1976), + [aux_sym__val_number_token5] = ACTIONS(1976), + [aux_sym__val_number_token6] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1976), + [sym__str_single_quotes] = ACTIONS(1976), + [sym__str_back_ticks] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1976), + [sym__entry_separator] = ACTIONS(1978), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2061), + [sym_raw_string_begin] = ACTIONS(1978), }, - [377] = { - [sym_cell_path] = STATE(588), - [sym_path] = STATE(518), - [sym_comment] = STATE(377), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2063), - [anon_sym_alias] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_let_DASHenv] = ACTIONS(2063), - [anon_sym_mut] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2063), - [aux_sym_cmd_identifier_token1] = ACTIONS(2063), - [aux_sym_cmd_identifier_token2] = ACTIONS(2063), - [aux_sym_cmd_identifier_token3] = ACTIONS(2063), - [aux_sym_cmd_identifier_token4] = ACTIONS(2063), - [aux_sym_cmd_identifier_token5] = ACTIONS(2063), - [aux_sym_cmd_identifier_token6] = ACTIONS(2063), - [aux_sym_cmd_identifier_token7] = ACTIONS(2063), - [aux_sym_cmd_identifier_token8] = ACTIONS(2063), - [aux_sym_cmd_identifier_token9] = ACTIONS(2063), - [aux_sym_cmd_identifier_token10] = ACTIONS(2063), - [aux_sym_cmd_identifier_token11] = ACTIONS(2063), - [aux_sym_cmd_identifier_token12] = ACTIONS(2063), - [aux_sym_cmd_identifier_token13] = ACTIONS(2063), - [aux_sym_cmd_identifier_token14] = ACTIONS(2063), - [aux_sym_cmd_identifier_token15] = ACTIONS(2063), - [aux_sym_cmd_identifier_token16] = ACTIONS(2063), - [aux_sym_cmd_identifier_token17] = ACTIONS(2063), - [aux_sym_cmd_identifier_token18] = ACTIONS(2063), - [aux_sym_cmd_identifier_token19] = ACTIONS(2063), - [aux_sym_cmd_identifier_token20] = ACTIONS(2063), - [aux_sym_cmd_identifier_token21] = ACTIONS(2063), - [aux_sym_cmd_identifier_token22] = ACTIONS(2063), - [aux_sym_cmd_identifier_token23] = ACTIONS(2063), - [aux_sym_cmd_identifier_token24] = ACTIONS(2063), - [aux_sym_cmd_identifier_token25] = ACTIONS(2063), - [aux_sym_cmd_identifier_token26] = ACTIONS(2063), - [aux_sym_cmd_identifier_token27] = ACTIONS(2063), - [aux_sym_cmd_identifier_token28] = ACTIONS(2063), - [aux_sym_cmd_identifier_token29] = ACTIONS(2063), - [aux_sym_cmd_identifier_token30] = ACTIONS(2063), - [aux_sym_cmd_identifier_token31] = ACTIONS(2063), - [aux_sym_cmd_identifier_token32] = ACTIONS(2063), - [aux_sym_cmd_identifier_token33] = ACTIONS(2063), - [aux_sym_cmd_identifier_token34] = ACTIONS(2063), - [aux_sym_cmd_identifier_token35] = ACTIONS(2063), - [aux_sym_cmd_identifier_token36] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2063), - [aux_sym_cmd_identifier_token38] = ACTIONS(2063), - [aux_sym_cmd_identifier_token39] = ACTIONS(2063), - [aux_sym_cmd_identifier_token40] = ACTIONS(2063), - [anon_sym_def] = ACTIONS(2063), - [anon_sym_export_DASHenv] = ACTIONS(2063), - [anon_sym_extern] = ACTIONS(2063), - [anon_sym_module] = ACTIONS(2063), - [anon_sym_use] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_DOLLAR] = ACTIONS(2063), - [anon_sym_error] = ACTIONS(2063), - [anon_sym_list] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_break] = ACTIONS(2063), - [anon_sym_continue] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2063), - [anon_sym_in] = ACTIONS(2063), - [anon_sym_loop] = ACTIONS(2063), - [anon_sym_make] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [anon_sym_do] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(2063), - [anon_sym_else] = ACTIONS(2063), - [anon_sym_match] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_try] = ACTIONS(2063), - [anon_sym_catch] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2063), - [anon_sym_source] = ACTIONS(2063), - [anon_sym_source_DASHenv] = ACTIONS(2063), - [anon_sym_register] = ACTIONS(2063), - [anon_sym_hide] = ACTIONS(2063), - [anon_sym_hide_DASHenv] = ACTIONS(2063), - [anon_sym_overlay] = ACTIONS(2063), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2063), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2063), - [aux_sym__val_number_decimal_token1] = ACTIONS(2063), - [aux_sym__val_number_decimal_token2] = ACTIONS(2063), - [aux_sym__val_number_decimal_token3] = ACTIONS(2063), - [aux_sym__val_number_decimal_token4] = ACTIONS(2063), - [aux_sym__val_number_token1] = ACTIONS(2063), - [aux_sym__val_number_token2] = ACTIONS(2063), - [aux_sym__val_number_token3] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(2063), - [sym__str_single_quotes] = ACTIONS(2063), - [sym__str_back_ticks] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2063), - [sym__entry_separator] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2063), + [424] = { + [sym_comment] = STATE(424), + [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(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(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(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_PLUS2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), + [aux_sym__immediate_decimal_token2] = ACTIONS(1982), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = ACTIONS(1755), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [425] = { + [sym_comment] = STATE(425), + [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(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(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(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = ACTIONS(1755), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [426] = { + [sym_cell_path] = STATE(662), + [sym_path] = STATE(569), + [sym_comment] = STATE(426), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1984), + [anon_sym_alias] = ACTIONS(1984), + [anon_sym_let] = ACTIONS(1984), + [anon_sym_let_DASHenv] = ACTIONS(1984), + [anon_sym_mut] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [aux_sym_cmd_identifier_token1] = ACTIONS(1984), + [aux_sym_cmd_identifier_token2] = ACTIONS(1984), + [aux_sym_cmd_identifier_token3] = ACTIONS(1984), + [aux_sym_cmd_identifier_token4] = ACTIONS(1984), + [aux_sym_cmd_identifier_token5] = ACTIONS(1984), + [aux_sym_cmd_identifier_token6] = ACTIONS(1984), + [aux_sym_cmd_identifier_token7] = ACTIONS(1984), + [aux_sym_cmd_identifier_token8] = ACTIONS(1984), + [aux_sym_cmd_identifier_token9] = ACTIONS(1984), + [aux_sym_cmd_identifier_token10] = ACTIONS(1984), + [aux_sym_cmd_identifier_token11] = ACTIONS(1984), + [aux_sym_cmd_identifier_token12] = ACTIONS(1984), + [aux_sym_cmd_identifier_token13] = ACTIONS(1984), + [aux_sym_cmd_identifier_token14] = ACTIONS(1984), + [aux_sym_cmd_identifier_token15] = ACTIONS(1984), + [aux_sym_cmd_identifier_token16] = ACTIONS(1984), + [aux_sym_cmd_identifier_token17] = ACTIONS(1984), + [aux_sym_cmd_identifier_token18] = ACTIONS(1984), + [aux_sym_cmd_identifier_token19] = ACTIONS(1984), + [aux_sym_cmd_identifier_token20] = ACTIONS(1984), + [aux_sym_cmd_identifier_token21] = ACTIONS(1984), + [aux_sym_cmd_identifier_token22] = ACTIONS(1984), + [aux_sym_cmd_identifier_token23] = ACTIONS(1984), + [aux_sym_cmd_identifier_token24] = ACTIONS(1984), + [aux_sym_cmd_identifier_token25] = ACTIONS(1984), + [aux_sym_cmd_identifier_token26] = ACTIONS(1984), + [aux_sym_cmd_identifier_token27] = ACTIONS(1984), + [aux_sym_cmd_identifier_token28] = ACTIONS(1984), + [aux_sym_cmd_identifier_token29] = ACTIONS(1984), + [aux_sym_cmd_identifier_token30] = ACTIONS(1984), + [aux_sym_cmd_identifier_token31] = ACTIONS(1984), + [aux_sym_cmd_identifier_token32] = ACTIONS(1984), + [aux_sym_cmd_identifier_token33] = ACTIONS(1984), + [aux_sym_cmd_identifier_token34] = ACTIONS(1984), + [aux_sym_cmd_identifier_token35] = ACTIONS(1984), + [aux_sym_cmd_identifier_token36] = ACTIONS(1984), + [aux_sym_cmd_identifier_token37] = ACTIONS(1984), + [aux_sym_cmd_identifier_token38] = ACTIONS(1984), + [aux_sym_cmd_identifier_token39] = ACTIONS(1984), + [aux_sym_cmd_identifier_token40] = ACTIONS(1984), + [anon_sym_def] = ACTIONS(1984), + [anon_sym_export_DASHenv] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym_module] = ACTIONS(1984), + [anon_sym_use] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1984), + [anon_sym_error] = ACTIONS(1984), + [anon_sym_DASH2] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_in2] = ACTIONS(1984), + [anon_sym_loop] = ACTIONS(1984), + [anon_sym_make] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_do] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_else] = ACTIONS(1984), + [anon_sym_match] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_try] = ACTIONS(1984), + [anon_sym_catch] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_source] = ACTIONS(1984), + [anon_sym_source_DASHenv] = ACTIONS(1984), + [anon_sym_register] = ACTIONS(1984), + [anon_sym_hide] = ACTIONS(1984), + [anon_sym_hide_DASHenv] = ACTIONS(1984), + [anon_sym_overlay] = ACTIONS(1984), + [anon_sym_as] = ACTIONS(1984), + [anon_sym_PLUS2] = ACTIONS(1984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1984), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1984), + [aux_sym__val_number_decimal_token1] = ACTIONS(1984), + [aux_sym__val_number_decimal_token2] = ACTIONS(1984), + [aux_sym__val_number_decimal_token3] = ACTIONS(1984), + [aux_sym__val_number_decimal_token4] = ACTIONS(1984), + [aux_sym__val_number_token1] = ACTIONS(1984), + [aux_sym__val_number_token2] = ACTIONS(1984), + [aux_sym__val_number_token3] = ACTIONS(1984), + [aux_sym__val_number_token4] = ACTIONS(1984), + [aux_sym__val_number_token5] = ACTIONS(1984), + [aux_sym__val_number_token6] = ACTIONS(1984), + [anon_sym_DQUOTE] = ACTIONS(1984), + [sym__str_single_quotes] = ACTIONS(1984), + [sym__str_back_ticks] = ACTIONS(1984), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1984), + [sym__entry_separator] = ACTIONS(1986), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2065), + [sym_raw_string_begin] = ACTIONS(1986), }, - [378] = { - [sym_cell_path] = STATE(580), - [sym_path] = STATE(518), - [sym_comment] = STATE(378), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_alias] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_let_DASHenv] = ACTIONS(2067), - [anon_sym_mut] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [aux_sym_cmd_identifier_token1] = ACTIONS(2067), - [aux_sym_cmd_identifier_token2] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [aux_sym_cmd_identifier_token6] = ACTIONS(2067), - [aux_sym_cmd_identifier_token7] = ACTIONS(2067), - [aux_sym_cmd_identifier_token8] = ACTIONS(2067), - [aux_sym_cmd_identifier_token9] = ACTIONS(2067), - [aux_sym_cmd_identifier_token10] = ACTIONS(2067), - [aux_sym_cmd_identifier_token11] = ACTIONS(2067), - [aux_sym_cmd_identifier_token12] = ACTIONS(2067), - [aux_sym_cmd_identifier_token13] = ACTIONS(2067), - [aux_sym_cmd_identifier_token14] = ACTIONS(2067), - [aux_sym_cmd_identifier_token15] = ACTIONS(2067), - [aux_sym_cmd_identifier_token16] = ACTIONS(2067), - [aux_sym_cmd_identifier_token17] = ACTIONS(2067), - [aux_sym_cmd_identifier_token18] = ACTIONS(2067), - [aux_sym_cmd_identifier_token19] = ACTIONS(2067), - [aux_sym_cmd_identifier_token20] = ACTIONS(2067), - [aux_sym_cmd_identifier_token21] = ACTIONS(2067), - [aux_sym_cmd_identifier_token22] = ACTIONS(2067), - [aux_sym_cmd_identifier_token23] = ACTIONS(2067), - [aux_sym_cmd_identifier_token24] = ACTIONS(2067), - [aux_sym_cmd_identifier_token25] = ACTIONS(2067), - [aux_sym_cmd_identifier_token26] = ACTIONS(2067), - [aux_sym_cmd_identifier_token27] = ACTIONS(2067), - [aux_sym_cmd_identifier_token28] = ACTIONS(2067), - [aux_sym_cmd_identifier_token29] = ACTIONS(2067), - [aux_sym_cmd_identifier_token30] = ACTIONS(2067), - [aux_sym_cmd_identifier_token31] = ACTIONS(2067), - [aux_sym_cmd_identifier_token32] = ACTIONS(2067), - [aux_sym_cmd_identifier_token33] = ACTIONS(2067), - [aux_sym_cmd_identifier_token34] = ACTIONS(2067), - [aux_sym_cmd_identifier_token35] = ACTIONS(2067), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(2067), - [anon_sym_export_DASHenv] = ACTIONS(2067), - [anon_sym_extern] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_use] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2067), - [anon_sym_error] = ACTIONS(2067), - [anon_sym_list] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_loop] = ACTIONS(2067), - [anon_sym_make] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_source] = ACTIONS(2067), - [anon_sym_source_DASHenv] = ACTIONS(2067), - [anon_sym_register] = ACTIONS(2067), - [anon_sym_hide] = ACTIONS(2067), - [anon_sym_hide_DASHenv] = ACTIONS(2067), - [anon_sym_overlay] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2067), - [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), - [sym__entry_separator] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(2067), + [427] = { + [sym_cell_path] = STATE(667), + [sym_path] = STATE(569), + [sym_comment] = STATE(427), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_alias] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1988), + [anon_sym_let_DASHenv] = ACTIONS(1988), + [anon_sym_mut] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [aux_sym_cmd_identifier_token1] = ACTIONS(1988), + [aux_sym_cmd_identifier_token2] = ACTIONS(1988), + [aux_sym_cmd_identifier_token3] = ACTIONS(1988), + [aux_sym_cmd_identifier_token4] = ACTIONS(1988), + [aux_sym_cmd_identifier_token5] = ACTIONS(1988), + [aux_sym_cmd_identifier_token6] = ACTIONS(1988), + [aux_sym_cmd_identifier_token7] = ACTIONS(1988), + [aux_sym_cmd_identifier_token8] = ACTIONS(1988), + [aux_sym_cmd_identifier_token9] = ACTIONS(1988), + [aux_sym_cmd_identifier_token10] = ACTIONS(1988), + [aux_sym_cmd_identifier_token11] = ACTIONS(1988), + [aux_sym_cmd_identifier_token12] = ACTIONS(1988), + [aux_sym_cmd_identifier_token13] = ACTIONS(1988), + [aux_sym_cmd_identifier_token14] = ACTIONS(1988), + [aux_sym_cmd_identifier_token15] = ACTIONS(1988), + [aux_sym_cmd_identifier_token16] = ACTIONS(1988), + [aux_sym_cmd_identifier_token17] = ACTIONS(1988), + [aux_sym_cmd_identifier_token18] = ACTIONS(1988), + [aux_sym_cmd_identifier_token19] = ACTIONS(1988), + [aux_sym_cmd_identifier_token20] = ACTIONS(1988), + [aux_sym_cmd_identifier_token21] = ACTIONS(1988), + [aux_sym_cmd_identifier_token22] = ACTIONS(1988), + [aux_sym_cmd_identifier_token23] = ACTIONS(1988), + [aux_sym_cmd_identifier_token24] = ACTIONS(1988), + [aux_sym_cmd_identifier_token25] = ACTIONS(1988), + [aux_sym_cmd_identifier_token26] = ACTIONS(1988), + [aux_sym_cmd_identifier_token27] = ACTIONS(1988), + [aux_sym_cmd_identifier_token28] = ACTIONS(1988), + [aux_sym_cmd_identifier_token29] = ACTIONS(1988), + [aux_sym_cmd_identifier_token30] = ACTIONS(1988), + [aux_sym_cmd_identifier_token31] = ACTIONS(1988), + [aux_sym_cmd_identifier_token32] = ACTIONS(1988), + [aux_sym_cmd_identifier_token33] = ACTIONS(1988), + [aux_sym_cmd_identifier_token34] = ACTIONS(1988), + [aux_sym_cmd_identifier_token35] = ACTIONS(1988), + [aux_sym_cmd_identifier_token36] = ACTIONS(1988), + [aux_sym_cmd_identifier_token37] = ACTIONS(1988), + [aux_sym_cmd_identifier_token38] = ACTIONS(1988), + [aux_sym_cmd_identifier_token39] = ACTIONS(1988), + [aux_sym_cmd_identifier_token40] = ACTIONS(1988), + [anon_sym_def] = ACTIONS(1988), + [anon_sym_export_DASHenv] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym_module] = ACTIONS(1988), + [anon_sym_use] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(1988), + [anon_sym_error] = ACTIONS(1988), + [anon_sym_DASH2] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_in2] = ACTIONS(1988), + [anon_sym_loop] = ACTIONS(1988), + [anon_sym_make] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_do] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1988), + [anon_sym_match] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1988), + [anon_sym_catch] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_source] = ACTIONS(1988), + [anon_sym_source_DASHenv] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1988), + [anon_sym_hide] = ACTIONS(1988), + [anon_sym_hide_DASHenv] = ACTIONS(1988), + [anon_sym_overlay] = ACTIONS(1988), + [anon_sym_as] = ACTIONS(1988), + [anon_sym_PLUS2] = ACTIONS(1988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1988), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1988), + [aux_sym__val_number_decimal_token1] = ACTIONS(1988), + [aux_sym__val_number_decimal_token2] = ACTIONS(1988), + [aux_sym__val_number_decimal_token3] = ACTIONS(1988), + [aux_sym__val_number_decimal_token4] = ACTIONS(1988), + [aux_sym__val_number_token1] = ACTIONS(1988), + [aux_sym__val_number_token2] = ACTIONS(1988), + [aux_sym__val_number_token3] = ACTIONS(1988), + [aux_sym__val_number_token4] = ACTIONS(1988), + [aux_sym__val_number_token5] = ACTIONS(1988), + [aux_sym__val_number_token6] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1988), + [sym__str_single_quotes] = ACTIONS(1988), + [sym__str_back_ticks] = ACTIONS(1988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1988), + [sym__entry_separator] = ACTIONS(1990), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2069), + [sym_raw_string_begin] = ACTIONS(1990), }, - [379] = { - [sym_cell_path] = STATE(599), - [sym_path] = STATE(518), - [sym_comment] = STATE(379), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2071), - [anon_sym_alias] = ACTIONS(2071), - [anon_sym_let] = ACTIONS(2071), - [anon_sym_let_DASHenv] = ACTIONS(2071), - [anon_sym_mut] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [aux_sym_cmd_identifier_token1] = ACTIONS(2071), - [aux_sym_cmd_identifier_token2] = ACTIONS(2071), - [aux_sym_cmd_identifier_token3] = ACTIONS(2071), - [aux_sym_cmd_identifier_token4] = ACTIONS(2071), - [aux_sym_cmd_identifier_token5] = ACTIONS(2071), - [aux_sym_cmd_identifier_token6] = ACTIONS(2071), - [aux_sym_cmd_identifier_token7] = ACTIONS(2071), - [aux_sym_cmd_identifier_token8] = ACTIONS(2071), - [aux_sym_cmd_identifier_token9] = ACTIONS(2071), - [aux_sym_cmd_identifier_token10] = ACTIONS(2071), - [aux_sym_cmd_identifier_token11] = ACTIONS(2071), - [aux_sym_cmd_identifier_token12] = ACTIONS(2071), - [aux_sym_cmd_identifier_token13] = ACTIONS(2071), - [aux_sym_cmd_identifier_token14] = ACTIONS(2071), - [aux_sym_cmd_identifier_token15] = ACTIONS(2071), - [aux_sym_cmd_identifier_token16] = ACTIONS(2071), - [aux_sym_cmd_identifier_token17] = ACTIONS(2071), - [aux_sym_cmd_identifier_token18] = ACTIONS(2071), - [aux_sym_cmd_identifier_token19] = ACTIONS(2071), - [aux_sym_cmd_identifier_token20] = ACTIONS(2071), - [aux_sym_cmd_identifier_token21] = ACTIONS(2071), - [aux_sym_cmd_identifier_token22] = ACTIONS(2071), - [aux_sym_cmd_identifier_token23] = ACTIONS(2071), - [aux_sym_cmd_identifier_token24] = ACTIONS(2071), - [aux_sym_cmd_identifier_token25] = ACTIONS(2071), - [aux_sym_cmd_identifier_token26] = ACTIONS(2071), - [aux_sym_cmd_identifier_token27] = ACTIONS(2071), - [aux_sym_cmd_identifier_token28] = ACTIONS(2071), - [aux_sym_cmd_identifier_token29] = ACTIONS(2071), - [aux_sym_cmd_identifier_token30] = ACTIONS(2071), - [aux_sym_cmd_identifier_token31] = ACTIONS(2071), - [aux_sym_cmd_identifier_token32] = ACTIONS(2071), - [aux_sym_cmd_identifier_token33] = ACTIONS(2071), - [aux_sym_cmd_identifier_token34] = ACTIONS(2071), - [aux_sym_cmd_identifier_token35] = ACTIONS(2071), - [aux_sym_cmd_identifier_token36] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_null] = ACTIONS(2071), - [aux_sym_cmd_identifier_token38] = ACTIONS(2071), - [aux_sym_cmd_identifier_token39] = ACTIONS(2071), - [aux_sym_cmd_identifier_token40] = ACTIONS(2071), - [anon_sym_def] = ACTIONS(2071), - [anon_sym_export_DASHenv] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2071), - [anon_sym_module] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2071), - [anon_sym_error] = ACTIONS(2071), - [anon_sym_list] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_in] = ACTIONS(2071), - [anon_sym_loop] = ACTIONS(2071), - [anon_sym_make] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_else] = ACTIONS(2071), - [anon_sym_match] = ACTIONS(2071), - [anon_sym_RBRACE] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_catch] = ACTIONS(2071), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_source] = ACTIONS(2071), - [anon_sym_source_DASHenv] = ACTIONS(2071), - [anon_sym_register] = ACTIONS(2071), - [anon_sym_hide] = ACTIONS(2071), - [anon_sym_hide_DASHenv] = ACTIONS(2071), - [anon_sym_overlay] = ACTIONS(2071), - [anon_sym_new] = ACTIONS(2071), - [anon_sym_as] = ACTIONS(2071), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2071), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2071), - [aux_sym__val_number_decimal_token2] = ACTIONS(2071), - [aux_sym__val_number_decimal_token3] = ACTIONS(2071), - [aux_sym__val_number_decimal_token4] = ACTIONS(2071), - [aux_sym__val_number_token1] = ACTIONS(2071), - [aux_sym__val_number_token2] = ACTIONS(2071), - [aux_sym__val_number_token3] = ACTIONS(2071), - [anon_sym_DQUOTE] = ACTIONS(2071), - [sym__str_single_quotes] = ACTIONS(2071), - [sym__str_back_ticks] = ACTIONS(2071), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2071), - [sym__entry_separator] = ACTIONS(2073), - [anon_sym_PLUS] = ACTIONS(2071), + [428] = { + [sym_comment] = STATE(428), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [429] = { + [sym_cell_path] = STATE(668), + [sym_path] = STATE(569), + [sym_comment] = STATE(429), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1992), + [anon_sym_alias] = ACTIONS(1992), + [anon_sym_let] = ACTIONS(1992), + [anon_sym_let_DASHenv] = ACTIONS(1992), + [anon_sym_mut] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [aux_sym_cmd_identifier_token1] = ACTIONS(1992), + [aux_sym_cmd_identifier_token2] = ACTIONS(1992), + [aux_sym_cmd_identifier_token3] = ACTIONS(1992), + [aux_sym_cmd_identifier_token4] = ACTIONS(1992), + [aux_sym_cmd_identifier_token5] = ACTIONS(1992), + [aux_sym_cmd_identifier_token6] = ACTIONS(1992), + [aux_sym_cmd_identifier_token7] = ACTIONS(1992), + [aux_sym_cmd_identifier_token8] = ACTIONS(1992), + [aux_sym_cmd_identifier_token9] = ACTIONS(1992), + [aux_sym_cmd_identifier_token10] = ACTIONS(1992), + [aux_sym_cmd_identifier_token11] = ACTIONS(1992), + [aux_sym_cmd_identifier_token12] = ACTIONS(1992), + [aux_sym_cmd_identifier_token13] = ACTIONS(1992), + [aux_sym_cmd_identifier_token14] = ACTIONS(1992), + [aux_sym_cmd_identifier_token15] = ACTIONS(1992), + [aux_sym_cmd_identifier_token16] = ACTIONS(1992), + [aux_sym_cmd_identifier_token17] = ACTIONS(1992), + [aux_sym_cmd_identifier_token18] = ACTIONS(1992), + [aux_sym_cmd_identifier_token19] = ACTIONS(1992), + [aux_sym_cmd_identifier_token20] = ACTIONS(1992), + [aux_sym_cmd_identifier_token21] = ACTIONS(1992), + [aux_sym_cmd_identifier_token22] = ACTIONS(1992), + [aux_sym_cmd_identifier_token23] = ACTIONS(1992), + [aux_sym_cmd_identifier_token24] = ACTIONS(1992), + [aux_sym_cmd_identifier_token25] = ACTIONS(1992), + [aux_sym_cmd_identifier_token26] = ACTIONS(1992), + [aux_sym_cmd_identifier_token27] = ACTIONS(1992), + [aux_sym_cmd_identifier_token28] = ACTIONS(1992), + [aux_sym_cmd_identifier_token29] = ACTIONS(1992), + [aux_sym_cmd_identifier_token30] = ACTIONS(1992), + [aux_sym_cmd_identifier_token31] = ACTIONS(1992), + [aux_sym_cmd_identifier_token32] = ACTIONS(1992), + [aux_sym_cmd_identifier_token33] = ACTIONS(1992), + [aux_sym_cmd_identifier_token34] = ACTIONS(1992), + [aux_sym_cmd_identifier_token35] = ACTIONS(1992), + [aux_sym_cmd_identifier_token36] = ACTIONS(1992), + [aux_sym_cmd_identifier_token37] = ACTIONS(1992), + [aux_sym_cmd_identifier_token38] = ACTIONS(1992), + [aux_sym_cmd_identifier_token39] = ACTIONS(1992), + [aux_sym_cmd_identifier_token40] = ACTIONS(1992), + [anon_sym_def] = ACTIONS(1992), + [anon_sym_export_DASHenv] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym_module] = ACTIONS(1992), + [anon_sym_use] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(1992), + [anon_sym_error] = ACTIONS(1992), + [anon_sym_DASH2] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_in2] = ACTIONS(1992), + [anon_sym_loop] = ACTIONS(1992), + [anon_sym_make] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_match] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_try] = ACTIONS(1992), + [anon_sym_catch] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_source] = ACTIONS(1992), + [anon_sym_source_DASHenv] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_hide] = ACTIONS(1992), + [anon_sym_hide_DASHenv] = ACTIONS(1992), + [anon_sym_overlay] = ACTIONS(1992), + [anon_sym_as] = ACTIONS(1992), + [anon_sym_PLUS2] = ACTIONS(1992), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1992), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1992), + [aux_sym__val_number_decimal_token1] = ACTIONS(1992), + [aux_sym__val_number_decimal_token2] = ACTIONS(1992), + [aux_sym__val_number_decimal_token3] = ACTIONS(1992), + [aux_sym__val_number_decimal_token4] = ACTIONS(1992), + [aux_sym__val_number_token1] = ACTIONS(1992), + [aux_sym__val_number_token2] = ACTIONS(1992), + [aux_sym__val_number_token3] = ACTIONS(1992), + [aux_sym__val_number_token4] = ACTIONS(1992), + [aux_sym__val_number_token5] = ACTIONS(1992), + [aux_sym__val_number_token6] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1992), + [sym__str_single_quotes] = ACTIONS(1992), + [sym__str_back_ticks] = ACTIONS(1992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1992), + [sym__entry_separator] = ACTIONS(1994), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2073), + [sym_raw_string_begin] = ACTIONS(1994), }, - [380] = { - [sym_cell_path] = STATE(601), - [sym_path] = STATE(518), - [sym_comment] = STATE(380), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2075), - [anon_sym_alias] = ACTIONS(2075), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_let_DASHenv] = ACTIONS(2075), - [anon_sym_mut] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2075), - [aux_sym_cmd_identifier_token1] = ACTIONS(2075), - [aux_sym_cmd_identifier_token2] = ACTIONS(2075), - [aux_sym_cmd_identifier_token3] = ACTIONS(2075), - [aux_sym_cmd_identifier_token4] = ACTIONS(2075), - [aux_sym_cmd_identifier_token5] = ACTIONS(2075), - [aux_sym_cmd_identifier_token6] = ACTIONS(2075), - [aux_sym_cmd_identifier_token7] = ACTIONS(2075), - [aux_sym_cmd_identifier_token8] = ACTIONS(2075), - [aux_sym_cmd_identifier_token9] = ACTIONS(2075), - [aux_sym_cmd_identifier_token10] = ACTIONS(2075), - [aux_sym_cmd_identifier_token11] = ACTIONS(2075), - [aux_sym_cmd_identifier_token12] = ACTIONS(2075), - [aux_sym_cmd_identifier_token13] = ACTIONS(2075), - [aux_sym_cmd_identifier_token14] = ACTIONS(2075), - [aux_sym_cmd_identifier_token15] = ACTIONS(2075), - [aux_sym_cmd_identifier_token16] = ACTIONS(2075), - [aux_sym_cmd_identifier_token17] = ACTIONS(2075), - [aux_sym_cmd_identifier_token18] = ACTIONS(2075), - [aux_sym_cmd_identifier_token19] = ACTIONS(2075), - [aux_sym_cmd_identifier_token20] = ACTIONS(2075), - [aux_sym_cmd_identifier_token21] = ACTIONS(2075), - [aux_sym_cmd_identifier_token22] = ACTIONS(2075), - [aux_sym_cmd_identifier_token23] = ACTIONS(2075), - [aux_sym_cmd_identifier_token24] = ACTIONS(2075), - [aux_sym_cmd_identifier_token25] = ACTIONS(2075), - [aux_sym_cmd_identifier_token26] = ACTIONS(2075), - [aux_sym_cmd_identifier_token27] = ACTIONS(2075), - [aux_sym_cmd_identifier_token28] = ACTIONS(2075), - [aux_sym_cmd_identifier_token29] = ACTIONS(2075), - [aux_sym_cmd_identifier_token30] = ACTIONS(2075), - [aux_sym_cmd_identifier_token31] = ACTIONS(2075), - [aux_sym_cmd_identifier_token32] = ACTIONS(2075), - [aux_sym_cmd_identifier_token33] = ACTIONS(2075), - [aux_sym_cmd_identifier_token34] = ACTIONS(2075), - [aux_sym_cmd_identifier_token35] = ACTIONS(2075), - [aux_sym_cmd_identifier_token36] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2075), - [anon_sym_false] = ACTIONS(2075), - [anon_sym_null] = ACTIONS(2075), - [aux_sym_cmd_identifier_token38] = ACTIONS(2075), - [aux_sym_cmd_identifier_token39] = ACTIONS(2075), - [aux_sym_cmd_identifier_token40] = ACTIONS(2075), - [anon_sym_def] = ACTIONS(2075), - [anon_sym_export_DASHenv] = ACTIONS(2075), - [anon_sym_extern] = ACTIONS(2075), - [anon_sym_module] = ACTIONS(2075), - [anon_sym_use] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_DOLLAR] = ACTIONS(2075), - [anon_sym_error] = ACTIONS(2075), - [anon_sym_list] = ACTIONS(2075), - [anon_sym_DASH] = ACTIONS(2075), - [anon_sym_break] = ACTIONS(2075), - [anon_sym_continue] = ACTIONS(2075), - [anon_sym_for] = ACTIONS(2075), - [anon_sym_in] = ACTIONS(2075), - [anon_sym_loop] = ACTIONS(2075), - [anon_sym_make] = ACTIONS(2075), - [anon_sym_while] = ACTIONS(2075), - [anon_sym_do] = ACTIONS(2075), - [anon_sym_if] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(2075), - [anon_sym_match] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_try] = ACTIONS(2075), - [anon_sym_catch] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2075), - [anon_sym_source] = ACTIONS(2075), - [anon_sym_source_DASHenv] = ACTIONS(2075), - [anon_sym_register] = ACTIONS(2075), - [anon_sym_hide] = ACTIONS(2075), - [anon_sym_hide_DASHenv] = ACTIONS(2075), - [anon_sym_overlay] = ACTIONS(2075), - [anon_sym_new] = ACTIONS(2075), - [anon_sym_as] = ACTIONS(2075), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2075), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2075), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2075), - [aux_sym__val_number_decimal_token4] = ACTIONS(2075), - [aux_sym__val_number_token1] = ACTIONS(2075), - [aux_sym__val_number_token2] = ACTIONS(2075), - [aux_sym__val_number_token3] = ACTIONS(2075), - [anon_sym_DQUOTE] = ACTIONS(2075), - [sym__str_single_quotes] = ACTIONS(2075), - [sym__str_back_ticks] = ACTIONS(2075), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2075), - [sym__entry_separator] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2075), + [430] = { + [sym_comment] = STATE(430), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), + }, + [431] = { + [sym_comment] = STATE(431), + [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(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(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [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(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(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [aux_sym_cmd_identifier_token37] = 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(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = 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_as] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [432] = { + [sym_comment] = STATE(432), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(996), + [aux_sym_cmd_identifier_token3] = ACTIONS(996), + [aux_sym_cmd_identifier_token4] = ACTIONS(996), + [aux_sym_cmd_identifier_token5] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(996), + [aux_sym_cmd_identifier_token7] = ACTIONS(996), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(996), + [aux_sym_cmd_identifier_token11] = ACTIONS(996), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(996), + [aux_sym_cmd_identifier_token17] = ACTIONS(996), + [aux_sym_cmd_identifier_token18] = ACTIONS(996), + [aux_sym_cmd_identifier_token19] = ACTIONS(996), + [aux_sym_cmd_identifier_token20] = ACTIONS(996), + [aux_sym_cmd_identifier_token21] = ACTIONS(996), + [aux_sym_cmd_identifier_token22] = ACTIONS(996), + [aux_sym_cmd_identifier_token23] = ACTIONS(996), + [aux_sym_cmd_identifier_token24] = ACTIONS(996), + [aux_sym_cmd_identifier_token25] = ACTIONS(996), + [aux_sym_cmd_identifier_token26] = ACTIONS(996), + [aux_sym_cmd_identifier_token27] = ACTIONS(996), + [aux_sym_cmd_identifier_token28] = ACTIONS(996), + [aux_sym_cmd_identifier_token29] = ACTIONS(996), + [aux_sym_cmd_identifier_token30] = ACTIONS(996), + [aux_sym_cmd_identifier_token31] = ACTIONS(996), + [aux_sym_cmd_identifier_token32] = ACTIONS(996), + [aux_sym_cmd_identifier_token33] = ACTIONS(996), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(996), + [aux_sym_cmd_identifier_token36] = ACTIONS(996), + [aux_sym_cmd_identifier_token37] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(994), + [aux_sym__val_number_token5] = ACTIONS(994), + [aux_sym__val_number_token6] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), + }, + [433] = { + [sym_comment] = STATE(433), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(1000), + [aux_sym_cmd_identifier_token3] = ACTIONS(1000), + [aux_sym_cmd_identifier_token4] = ACTIONS(1000), + [aux_sym_cmd_identifier_token5] = ACTIONS(1000), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [aux_sym_cmd_identifier_token7] = ACTIONS(1000), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(1000), + [aux_sym_cmd_identifier_token11] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(1000), + [aux_sym_cmd_identifier_token17] = ACTIONS(1000), + [aux_sym_cmd_identifier_token18] = ACTIONS(1000), + [aux_sym_cmd_identifier_token19] = ACTIONS(1000), + [aux_sym_cmd_identifier_token20] = ACTIONS(1000), + [aux_sym_cmd_identifier_token21] = ACTIONS(1000), + [aux_sym_cmd_identifier_token22] = ACTIONS(1000), + [aux_sym_cmd_identifier_token23] = ACTIONS(1000), + [aux_sym_cmd_identifier_token24] = ACTIONS(1000), + [aux_sym_cmd_identifier_token25] = ACTIONS(1000), + [aux_sym_cmd_identifier_token26] = ACTIONS(1000), + [aux_sym_cmd_identifier_token27] = ACTIONS(1000), + [aux_sym_cmd_identifier_token28] = ACTIONS(1000), + [aux_sym_cmd_identifier_token29] = ACTIONS(1000), + [aux_sym_cmd_identifier_token30] = ACTIONS(1000), + [aux_sym_cmd_identifier_token31] = ACTIONS(1000), + [aux_sym_cmd_identifier_token32] = ACTIONS(1000), + [aux_sym_cmd_identifier_token33] = ACTIONS(1000), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(1000), + [aux_sym_cmd_identifier_token36] = ACTIONS(1000), + [aux_sym_cmd_identifier_token37] = ACTIONS(1000), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(1000), + [aux_sym_cmd_identifier_token40] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_error] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [434] = { + [sym_comment] = STATE(434), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1004), + [aux_sym_cmd_identifier_token3] = ACTIONS(1004), + [aux_sym_cmd_identifier_token4] = ACTIONS(1004), + [aux_sym_cmd_identifier_token5] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1004), + [aux_sym_cmd_identifier_token7] = ACTIONS(1004), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1004), + [aux_sym_cmd_identifier_token11] = ACTIONS(1004), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1004), + [aux_sym_cmd_identifier_token17] = ACTIONS(1004), + [aux_sym_cmd_identifier_token18] = ACTIONS(1004), + [aux_sym_cmd_identifier_token19] = ACTIONS(1004), + [aux_sym_cmd_identifier_token20] = ACTIONS(1004), + [aux_sym_cmd_identifier_token21] = ACTIONS(1004), + [aux_sym_cmd_identifier_token22] = ACTIONS(1004), + [aux_sym_cmd_identifier_token23] = ACTIONS(1004), + [aux_sym_cmd_identifier_token24] = ACTIONS(1004), + [aux_sym_cmd_identifier_token25] = ACTIONS(1004), + [aux_sym_cmd_identifier_token26] = ACTIONS(1004), + [aux_sym_cmd_identifier_token27] = ACTIONS(1004), + [aux_sym_cmd_identifier_token28] = ACTIONS(1004), + [aux_sym_cmd_identifier_token29] = ACTIONS(1004), + [aux_sym_cmd_identifier_token30] = ACTIONS(1004), + [aux_sym_cmd_identifier_token31] = ACTIONS(1004), + [aux_sym_cmd_identifier_token32] = ACTIONS(1004), + [aux_sym_cmd_identifier_token33] = ACTIONS(1004), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1004), + [aux_sym_cmd_identifier_token36] = ACTIONS(1004), + [aux_sym_cmd_identifier_token37] = ACTIONS(1004), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1004), + }, + [435] = { + [sym_comment] = STATE(435), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(992), + [aux_sym_cmd_identifier_token3] = ACTIONS(992), + [aux_sym_cmd_identifier_token4] = ACTIONS(992), + [aux_sym_cmd_identifier_token5] = ACTIONS(992), + [aux_sym_cmd_identifier_token6] = ACTIONS(992), + [aux_sym_cmd_identifier_token7] = ACTIONS(992), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(992), + [aux_sym_cmd_identifier_token11] = ACTIONS(992), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(992), + [aux_sym_cmd_identifier_token17] = ACTIONS(992), + [aux_sym_cmd_identifier_token18] = ACTIONS(992), + [aux_sym_cmd_identifier_token19] = ACTIONS(992), + [aux_sym_cmd_identifier_token20] = ACTIONS(992), + [aux_sym_cmd_identifier_token21] = ACTIONS(992), + [aux_sym_cmd_identifier_token22] = ACTIONS(992), + [aux_sym_cmd_identifier_token23] = ACTIONS(992), + [aux_sym_cmd_identifier_token24] = ACTIONS(992), + [aux_sym_cmd_identifier_token25] = ACTIONS(992), + [aux_sym_cmd_identifier_token26] = ACTIONS(992), + [aux_sym_cmd_identifier_token27] = ACTIONS(992), + [aux_sym_cmd_identifier_token28] = ACTIONS(992), + [aux_sym_cmd_identifier_token29] = ACTIONS(992), + [aux_sym_cmd_identifier_token30] = ACTIONS(992), + [aux_sym_cmd_identifier_token31] = ACTIONS(992), + [aux_sym_cmd_identifier_token32] = ACTIONS(992), + [aux_sym_cmd_identifier_token33] = ACTIONS(992), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(992), + [aux_sym_cmd_identifier_token36] = ACTIONS(992), + [aux_sym_cmd_identifier_token37] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), + }, + [436] = { + [sym_cell_path] = STATE(675), + [sym_path] = STATE(569), + [sym_comment] = STATE(436), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(1996), + [anon_sym_alias] = ACTIONS(1996), + [anon_sym_let] = ACTIONS(1996), + [anon_sym_let_DASHenv] = ACTIONS(1996), + [anon_sym_mut] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [aux_sym_cmd_identifier_token1] = ACTIONS(1996), + [aux_sym_cmd_identifier_token2] = ACTIONS(1996), + [aux_sym_cmd_identifier_token3] = ACTIONS(1996), + [aux_sym_cmd_identifier_token4] = ACTIONS(1996), + [aux_sym_cmd_identifier_token5] = ACTIONS(1996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1996), + [aux_sym_cmd_identifier_token7] = ACTIONS(1996), + [aux_sym_cmd_identifier_token8] = ACTIONS(1996), + [aux_sym_cmd_identifier_token9] = ACTIONS(1996), + [aux_sym_cmd_identifier_token10] = ACTIONS(1996), + [aux_sym_cmd_identifier_token11] = ACTIONS(1996), + [aux_sym_cmd_identifier_token12] = ACTIONS(1996), + [aux_sym_cmd_identifier_token13] = ACTIONS(1996), + [aux_sym_cmd_identifier_token14] = ACTIONS(1996), + [aux_sym_cmd_identifier_token15] = ACTIONS(1996), + [aux_sym_cmd_identifier_token16] = ACTIONS(1996), + [aux_sym_cmd_identifier_token17] = ACTIONS(1996), + [aux_sym_cmd_identifier_token18] = ACTIONS(1996), + [aux_sym_cmd_identifier_token19] = ACTIONS(1996), + [aux_sym_cmd_identifier_token20] = ACTIONS(1996), + [aux_sym_cmd_identifier_token21] = ACTIONS(1996), + [aux_sym_cmd_identifier_token22] = ACTIONS(1996), + [aux_sym_cmd_identifier_token23] = ACTIONS(1996), + [aux_sym_cmd_identifier_token24] = ACTIONS(1996), + [aux_sym_cmd_identifier_token25] = ACTIONS(1996), + [aux_sym_cmd_identifier_token26] = ACTIONS(1996), + [aux_sym_cmd_identifier_token27] = ACTIONS(1996), + [aux_sym_cmd_identifier_token28] = ACTIONS(1996), + [aux_sym_cmd_identifier_token29] = ACTIONS(1996), + [aux_sym_cmd_identifier_token30] = ACTIONS(1996), + [aux_sym_cmd_identifier_token31] = ACTIONS(1996), + [aux_sym_cmd_identifier_token32] = ACTIONS(1996), + [aux_sym_cmd_identifier_token33] = ACTIONS(1996), + [aux_sym_cmd_identifier_token34] = ACTIONS(1996), + [aux_sym_cmd_identifier_token35] = ACTIONS(1996), + [aux_sym_cmd_identifier_token36] = ACTIONS(1996), + [aux_sym_cmd_identifier_token37] = ACTIONS(1996), + [aux_sym_cmd_identifier_token38] = ACTIONS(1996), + [aux_sym_cmd_identifier_token39] = ACTIONS(1996), + [aux_sym_cmd_identifier_token40] = ACTIONS(1996), + [anon_sym_def] = ACTIONS(1996), + [anon_sym_export_DASHenv] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym_module] = ACTIONS(1996), + [anon_sym_use] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1996), + [anon_sym_error] = ACTIONS(1996), + [anon_sym_DASH2] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_in2] = ACTIONS(1996), + [anon_sym_loop] = ACTIONS(1996), + [anon_sym_make] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_else] = ACTIONS(1996), + [anon_sym_match] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1996), + [anon_sym_catch] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_source] = ACTIONS(1996), + [anon_sym_source_DASHenv] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1996), + [anon_sym_hide] = ACTIONS(1996), + [anon_sym_hide_DASHenv] = ACTIONS(1996), + [anon_sym_overlay] = ACTIONS(1996), + [anon_sym_as] = ACTIONS(1996), + [anon_sym_PLUS2] = ACTIONS(1996), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1996), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1996), + [aux_sym__val_number_decimal_token1] = ACTIONS(1996), + [aux_sym__val_number_decimal_token2] = ACTIONS(1996), + [aux_sym__val_number_decimal_token3] = ACTIONS(1996), + [aux_sym__val_number_decimal_token4] = ACTIONS(1996), + [aux_sym__val_number_token1] = ACTIONS(1996), + [aux_sym__val_number_token2] = ACTIONS(1996), + [aux_sym__val_number_token3] = ACTIONS(1996), + [aux_sym__val_number_token4] = ACTIONS(1996), + [aux_sym__val_number_token5] = ACTIONS(1996), + [aux_sym__val_number_token6] = ACTIONS(1996), + [anon_sym_DQUOTE] = ACTIONS(1996), + [sym__str_single_quotes] = ACTIONS(1996), + [sym__str_back_ticks] = ACTIONS(1996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1996), + [sym__entry_separator] = ACTIONS(1998), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2077), + [sym_raw_string_begin] = ACTIONS(1998), }, - [381] = { - [sym_cell_path] = STATE(602), - [sym_path] = STATE(518), - [sym_comment] = STATE(381), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2079), - [anon_sym_alias] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_let_DASHenv] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [aux_sym_cmd_identifier_token1] = ACTIONS(2079), - [aux_sym_cmd_identifier_token2] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2079), - [aux_sym_cmd_identifier_token4] = ACTIONS(2079), - [aux_sym_cmd_identifier_token5] = ACTIONS(2079), - [aux_sym_cmd_identifier_token6] = ACTIONS(2079), - [aux_sym_cmd_identifier_token7] = ACTIONS(2079), - [aux_sym_cmd_identifier_token8] = ACTIONS(2079), - [aux_sym_cmd_identifier_token9] = ACTIONS(2079), - [aux_sym_cmd_identifier_token10] = ACTIONS(2079), - [aux_sym_cmd_identifier_token11] = ACTIONS(2079), - [aux_sym_cmd_identifier_token12] = ACTIONS(2079), - [aux_sym_cmd_identifier_token13] = ACTIONS(2079), - [aux_sym_cmd_identifier_token14] = ACTIONS(2079), - [aux_sym_cmd_identifier_token15] = ACTIONS(2079), - [aux_sym_cmd_identifier_token16] = ACTIONS(2079), - [aux_sym_cmd_identifier_token17] = ACTIONS(2079), - [aux_sym_cmd_identifier_token18] = ACTIONS(2079), - [aux_sym_cmd_identifier_token19] = ACTIONS(2079), - [aux_sym_cmd_identifier_token20] = ACTIONS(2079), - [aux_sym_cmd_identifier_token21] = ACTIONS(2079), - [aux_sym_cmd_identifier_token22] = ACTIONS(2079), - [aux_sym_cmd_identifier_token23] = ACTIONS(2079), - [aux_sym_cmd_identifier_token24] = ACTIONS(2079), - [aux_sym_cmd_identifier_token25] = ACTIONS(2079), - [aux_sym_cmd_identifier_token26] = ACTIONS(2079), - [aux_sym_cmd_identifier_token27] = ACTIONS(2079), - [aux_sym_cmd_identifier_token28] = ACTIONS(2079), - [aux_sym_cmd_identifier_token29] = ACTIONS(2079), - [aux_sym_cmd_identifier_token30] = ACTIONS(2079), - [aux_sym_cmd_identifier_token31] = ACTIONS(2079), - [aux_sym_cmd_identifier_token32] = ACTIONS(2079), - [aux_sym_cmd_identifier_token33] = ACTIONS(2079), - [aux_sym_cmd_identifier_token34] = ACTIONS(2079), - [aux_sym_cmd_identifier_token35] = ACTIONS(2079), - [aux_sym_cmd_identifier_token36] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token38] = ACTIONS(2079), - [aux_sym_cmd_identifier_token39] = ACTIONS(2079), - [aux_sym_cmd_identifier_token40] = ACTIONS(2079), - [anon_sym_def] = ACTIONS(2079), - [anon_sym_export_DASHenv] = ACTIONS(2079), - [anon_sym_extern] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_DOLLAR] = ACTIONS(2079), - [anon_sym_error] = ACTIONS(2079), - [anon_sym_list] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_make] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_else] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_catch] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_source] = ACTIONS(2079), - [anon_sym_source_DASHenv] = ACTIONS(2079), - [anon_sym_register] = ACTIONS(2079), - [anon_sym_hide] = ACTIONS(2079), - [anon_sym_hide_DASHenv] = ACTIONS(2079), - [anon_sym_overlay] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2079), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2079), - [aux_sym__val_number_decimal_token1] = ACTIONS(2079), - [aux_sym__val_number_decimal_token2] = ACTIONS(2079), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(2079), - [aux_sym__val_number_token2] = ACTIONS(2079), - [aux_sym__val_number_token3] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2079), - [sym__str_single_quotes] = ACTIONS(2079), - [sym__str_back_ticks] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2079), - [sym__entry_separator] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2079), + [437] = { + [sym_cell_path] = STATE(686), + [sym_path] = STATE(569), + [sym_comment] = STATE(437), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(2000), + [anon_sym_alias] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_let_DASHenv] = ACTIONS(2000), + [anon_sym_mut] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [aux_sym_cmd_identifier_token1] = ACTIONS(2000), + [aux_sym_cmd_identifier_token2] = ACTIONS(2000), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [aux_sym_cmd_identifier_token6] = ACTIONS(2000), + [aux_sym_cmd_identifier_token7] = ACTIONS(2000), + [aux_sym_cmd_identifier_token8] = ACTIONS(2000), + [aux_sym_cmd_identifier_token9] = ACTIONS(2000), + [aux_sym_cmd_identifier_token10] = ACTIONS(2000), + [aux_sym_cmd_identifier_token11] = ACTIONS(2000), + [aux_sym_cmd_identifier_token12] = ACTIONS(2000), + [aux_sym_cmd_identifier_token13] = ACTIONS(2000), + [aux_sym_cmd_identifier_token14] = ACTIONS(2000), + [aux_sym_cmd_identifier_token15] = ACTIONS(2000), + [aux_sym_cmd_identifier_token16] = ACTIONS(2000), + [aux_sym_cmd_identifier_token17] = ACTIONS(2000), + [aux_sym_cmd_identifier_token18] = ACTIONS(2000), + [aux_sym_cmd_identifier_token19] = ACTIONS(2000), + [aux_sym_cmd_identifier_token20] = ACTIONS(2000), + [aux_sym_cmd_identifier_token21] = ACTIONS(2000), + [aux_sym_cmd_identifier_token22] = ACTIONS(2000), + [aux_sym_cmd_identifier_token23] = ACTIONS(2000), + [aux_sym_cmd_identifier_token24] = ACTIONS(2000), + [aux_sym_cmd_identifier_token25] = ACTIONS(2000), + [aux_sym_cmd_identifier_token26] = ACTIONS(2000), + [aux_sym_cmd_identifier_token27] = ACTIONS(2000), + [aux_sym_cmd_identifier_token28] = ACTIONS(2000), + [aux_sym_cmd_identifier_token29] = ACTIONS(2000), + [aux_sym_cmd_identifier_token30] = ACTIONS(2000), + [aux_sym_cmd_identifier_token31] = ACTIONS(2000), + [aux_sym_cmd_identifier_token32] = ACTIONS(2000), + [aux_sym_cmd_identifier_token33] = ACTIONS(2000), + [aux_sym_cmd_identifier_token34] = ACTIONS(2000), + [aux_sym_cmd_identifier_token35] = ACTIONS(2000), + [aux_sym_cmd_identifier_token36] = ACTIONS(2000), + [aux_sym_cmd_identifier_token37] = ACTIONS(2000), + [aux_sym_cmd_identifier_token38] = ACTIONS(2000), + [aux_sym_cmd_identifier_token39] = ACTIONS(2000), + [aux_sym_cmd_identifier_token40] = ACTIONS(2000), + [anon_sym_def] = ACTIONS(2000), + [anon_sym_export_DASHenv] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_module] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2000), + [anon_sym_error] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_in2] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_make] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_catch] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_source] = ACTIONS(2000), + [anon_sym_source_DASHenv] = ACTIONS(2000), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_hide] = ACTIONS(2000), + [anon_sym_hide_DASHenv] = ACTIONS(2000), + [anon_sym_overlay] = ACTIONS(2000), + [anon_sym_as] = ACTIONS(2000), + [anon_sym_PLUS2] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2000), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2000), + [aux_sym__val_number_decimal_token1] = ACTIONS(2000), + [aux_sym__val_number_decimal_token2] = ACTIONS(2000), + [aux_sym__val_number_decimal_token3] = ACTIONS(2000), + [aux_sym__val_number_decimal_token4] = ACTIONS(2000), + [aux_sym__val_number_token1] = ACTIONS(2000), + [aux_sym__val_number_token2] = ACTIONS(2000), + [aux_sym__val_number_token3] = ACTIONS(2000), + [aux_sym__val_number_token4] = ACTIONS(2000), + [aux_sym__val_number_token5] = ACTIONS(2000), + [aux_sym__val_number_token6] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [sym__str_single_quotes] = ACTIONS(2000), + [sym__str_back_ticks] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2000), + [sym__entry_separator] = ACTIONS(2002), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2081), + [sym_raw_string_begin] = ACTIONS(2002), }, - [382] = { - [sym_cell_path] = STATE(586), - [sym_path] = STATE(518), - [sym_comment] = STATE(382), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2083), - [anon_sym_alias] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_let_DASHenv] = ACTIONS(2083), - [anon_sym_mut] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [aux_sym_cmd_identifier_token1] = ACTIONS(2083), - [aux_sym_cmd_identifier_token2] = ACTIONS(2083), - [aux_sym_cmd_identifier_token3] = ACTIONS(2083), - [aux_sym_cmd_identifier_token4] = ACTIONS(2083), - [aux_sym_cmd_identifier_token5] = ACTIONS(2083), - [aux_sym_cmd_identifier_token6] = ACTIONS(2083), - [aux_sym_cmd_identifier_token7] = ACTIONS(2083), - [aux_sym_cmd_identifier_token8] = ACTIONS(2083), - [aux_sym_cmd_identifier_token9] = ACTIONS(2083), - [aux_sym_cmd_identifier_token10] = ACTIONS(2083), - [aux_sym_cmd_identifier_token11] = ACTIONS(2083), - [aux_sym_cmd_identifier_token12] = ACTIONS(2083), - [aux_sym_cmd_identifier_token13] = ACTIONS(2083), - [aux_sym_cmd_identifier_token14] = ACTIONS(2083), - [aux_sym_cmd_identifier_token15] = ACTIONS(2083), - [aux_sym_cmd_identifier_token16] = ACTIONS(2083), - [aux_sym_cmd_identifier_token17] = ACTIONS(2083), - [aux_sym_cmd_identifier_token18] = ACTIONS(2083), - [aux_sym_cmd_identifier_token19] = ACTIONS(2083), - [aux_sym_cmd_identifier_token20] = ACTIONS(2083), - [aux_sym_cmd_identifier_token21] = ACTIONS(2083), - [aux_sym_cmd_identifier_token22] = ACTIONS(2083), - [aux_sym_cmd_identifier_token23] = ACTIONS(2083), - [aux_sym_cmd_identifier_token24] = ACTIONS(2083), - [aux_sym_cmd_identifier_token25] = ACTIONS(2083), - [aux_sym_cmd_identifier_token26] = ACTIONS(2083), - [aux_sym_cmd_identifier_token27] = ACTIONS(2083), - [aux_sym_cmd_identifier_token28] = ACTIONS(2083), - [aux_sym_cmd_identifier_token29] = ACTIONS(2083), - [aux_sym_cmd_identifier_token30] = ACTIONS(2083), - [aux_sym_cmd_identifier_token31] = ACTIONS(2083), - [aux_sym_cmd_identifier_token32] = ACTIONS(2083), - [aux_sym_cmd_identifier_token33] = ACTIONS(2083), - [aux_sym_cmd_identifier_token34] = ACTIONS(2083), - [aux_sym_cmd_identifier_token35] = ACTIONS(2083), - [aux_sym_cmd_identifier_token36] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(2083), - [anon_sym_false] = ACTIONS(2083), - [anon_sym_null] = ACTIONS(2083), - [aux_sym_cmd_identifier_token38] = ACTIONS(2083), - [aux_sym_cmd_identifier_token39] = ACTIONS(2083), - [aux_sym_cmd_identifier_token40] = ACTIONS(2083), - [anon_sym_def] = ACTIONS(2083), - [anon_sym_export_DASHenv] = ACTIONS(2083), - [anon_sym_extern] = ACTIONS(2083), - [anon_sym_module] = ACTIONS(2083), - [anon_sym_use] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_error] = ACTIONS(2083), - [anon_sym_list] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_in] = ACTIONS(2083), - [anon_sym_loop] = ACTIONS(2083), - [anon_sym_make] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_do] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_else] = ACTIONS(2083), - [anon_sym_match] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_catch] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_source] = ACTIONS(2083), - [anon_sym_source_DASHenv] = ACTIONS(2083), - [anon_sym_register] = ACTIONS(2083), - [anon_sym_hide] = ACTIONS(2083), - [anon_sym_hide_DASHenv] = ACTIONS(2083), - [anon_sym_overlay] = ACTIONS(2083), - [anon_sym_new] = ACTIONS(2083), - [anon_sym_as] = ACTIONS(2083), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2083), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2083), - [aux_sym__val_number_decimal_token1] = ACTIONS(2083), - [aux_sym__val_number_decimal_token2] = ACTIONS(2083), - [aux_sym__val_number_decimal_token3] = ACTIONS(2083), - [aux_sym__val_number_decimal_token4] = ACTIONS(2083), - [aux_sym__val_number_token1] = ACTIONS(2083), - [aux_sym__val_number_token2] = ACTIONS(2083), - [aux_sym__val_number_token3] = ACTIONS(2083), - [anon_sym_DQUOTE] = ACTIONS(2083), - [sym__str_single_quotes] = ACTIONS(2083), - [sym__str_back_ticks] = ACTIONS(2083), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2083), - [sym__entry_separator] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2083), + [438] = { + [sym_cell_path] = STATE(611), + [sym_path] = STATE(569), + [sym_comment] = STATE(438), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(2004), + [anon_sym_alias] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_let_DASHenv] = ACTIONS(2004), + [anon_sym_mut] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [aux_sym_cmd_identifier_token1] = ACTIONS(2004), + [aux_sym_cmd_identifier_token2] = ACTIONS(2004), + [aux_sym_cmd_identifier_token3] = ACTIONS(2004), + [aux_sym_cmd_identifier_token4] = ACTIONS(2004), + [aux_sym_cmd_identifier_token5] = ACTIONS(2004), + [aux_sym_cmd_identifier_token6] = ACTIONS(2004), + [aux_sym_cmd_identifier_token7] = ACTIONS(2004), + [aux_sym_cmd_identifier_token8] = ACTIONS(2004), + [aux_sym_cmd_identifier_token9] = ACTIONS(2004), + [aux_sym_cmd_identifier_token10] = ACTIONS(2004), + [aux_sym_cmd_identifier_token11] = ACTIONS(2004), + [aux_sym_cmd_identifier_token12] = ACTIONS(2004), + [aux_sym_cmd_identifier_token13] = ACTIONS(2004), + [aux_sym_cmd_identifier_token14] = ACTIONS(2004), + [aux_sym_cmd_identifier_token15] = ACTIONS(2004), + [aux_sym_cmd_identifier_token16] = ACTIONS(2004), + [aux_sym_cmd_identifier_token17] = ACTIONS(2004), + [aux_sym_cmd_identifier_token18] = ACTIONS(2004), + [aux_sym_cmd_identifier_token19] = ACTIONS(2004), + [aux_sym_cmd_identifier_token20] = ACTIONS(2004), + [aux_sym_cmd_identifier_token21] = ACTIONS(2004), + [aux_sym_cmd_identifier_token22] = ACTIONS(2004), + [aux_sym_cmd_identifier_token23] = ACTIONS(2004), + [aux_sym_cmd_identifier_token24] = ACTIONS(2004), + [aux_sym_cmd_identifier_token25] = ACTIONS(2004), + [aux_sym_cmd_identifier_token26] = ACTIONS(2004), + [aux_sym_cmd_identifier_token27] = ACTIONS(2004), + [aux_sym_cmd_identifier_token28] = ACTIONS(2004), + [aux_sym_cmd_identifier_token29] = ACTIONS(2004), + [aux_sym_cmd_identifier_token30] = ACTIONS(2004), + [aux_sym_cmd_identifier_token31] = ACTIONS(2004), + [aux_sym_cmd_identifier_token32] = ACTIONS(2004), + [aux_sym_cmd_identifier_token33] = ACTIONS(2004), + [aux_sym_cmd_identifier_token34] = ACTIONS(2004), + [aux_sym_cmd_identifier_token35] = ACTIONS(2004), + [aux_sym_cmd_identifier_token36] = ACTIONS(2004), + [aux_sym_cmd_identifier_token37] = ACTIONS(2004), + [aux_sym_cmd_identifier_token38] = ACTIONS(2004), + [aux_sym_cmd_identifier_token39] = ACTIONS(2004), + [aux_sym_cmd_identifier_token40] = ACTIONS(2004), + [anon_sym_def] = ACTIONS(2004), + [anon_sym_export_DASHenv] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_module] = ACTIONS(2004), + [anon_sym_use] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_DOLLAR] = ACTIONS(2004), + [anon_sym_error] = ACTIONS(2004), + [anon_sym_DASH2] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_in2] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_make] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_catch] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_source] = ACTIONS(2004), + [anon_sym_source_DASHenv] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_hide] = ACTIONS(2004), + [anon_sym_hide_DASHenv] = ACTIONS(2004), + [anon_sym_overlay] = ACTIONS(2004), + [anon_sym_as] = ACTIONS(2004), + [anon_sym_PLUS2] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2004), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2004), + [aux_sym__val_number_decimal_token2] = ACTIONS(2004), + [aux_sym__val_number_decimal_token3] = ACTIONS(2004), + [aux_sym__val_number_decimal_token4] = ACTIONS(2004), + [aux_sym__val_number_token1] = ACTIONS(2004), + [aux_sym__val_number_token2] = ACTIONS(2004), + [aux_sym__val_number_token3] = ACTIONS(2004), + [aux_sym__val_number_token4] = ACTIONS(2004), + [aux_sym__val_number_token5] = ACTIONS(2004), + [aux_sym__val_number_token6] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2004), + [sym__str_single_quotes] = ACTIONS(2004), + [sym__str_back_ticks] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2004), + [sym__entry_separator] = ACTIONS(2006), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2085), + [sym_raw_string_begin] = ACTIONS(2006), }, - [383] = { - [sym_cell_path] = STATE(595), - [sym_path] = STATE(518), - [sym_comment] = STATE(383), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2087), - [anon_sym_alias] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_let_DASHenv] = ACTIONS(2087), - [anon_sym_mut] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [aux_sym_cmd_identifier_token1] = ACTIONS(2087), - [aux_sym_cmd_identifier_token2] = ACTIONS(2087), - [aux_sym_cmd_identifier_token3] = ACTIONS(2087), - [aux_sym_cmd_identifier_token4] = ACTIONS(2087), - [aux_sym_cmd_identifier_token5] = ACTIONS(2087), - [aux_sym_cmd_identifier_token6] = ACTIONS(2087), - [aux_sym_cmd_identifier_token7] = ACTIONS(2087), - [aux_sym_cmd_identifier_token8] = ACTIONS(2087), - [aux_sym_cmd_identifier_token9] = ACTIONS(2087), - [aux_sym_cmd_identifier_token10] = ACTIONS(2087), - [aux_sym_cmd_identifier_token11] = ACTIONS(2087), - [aux_sym_cmd_identifier_token12] = ACTIONS(2087), - [aux_sym_cmd_identifier_token13] = ACTIONS(2087), - [aux_sym_cmd_identifier_token14] = ACTIONS(2087), - [aux_sym_cmd_identifier_token15] = ACTIONS(2087), - [aux_sym_cmd_identifier_token16] = ACTIONS(2087), - [aux_sym_cmd_identifier_token17] = ACTIONS(2087), - [aux_sym_cmd_identifier_token18] = ACTIONS(2087), - [aux_sym_cmd_identifier_token19] = ACTIONS(2087), - [aux_sym_cmd_identifier_token20] = ACTIONS(2087), - [aux_sym_cmd_identifier_token21] = ACTIONS(2087), - [aux_sym_cmd_identifier_token22] = ACTIONS(2087), - [aux_sym_cmd_identifier_token23] = ACTIONS(2087), - [aux_sym_cmd_identifier_token24] = ACTIONS(2087), - [aux_sym_cmd_identifier_token25] = ACTIONS(2087), - [aux_sym_cmd_identifier_token26] = ACTIONS(2087), - [aux_sym_cmd_identifier_token27] = ACTIONS(2087), - [aux_sym_cmd_identifier_token28] = ACTIONS(2087), - [aux_sym_cmd_identifier_token29] = ACTIONS(2087), - [aux_sym_cmd_identifier_token30] = ACTIONS(2087), - [aux_sym_cmd_identifier_token31] = ACTIONS(2087), - [aux_sym_cmd_identifier_token32] = ACTIONS(2087), - [aux_sym_cmd_identifier_token33] = ACTIONS(2087), - [aux_sym_cmd_identifier_token34] = ACTIONS(2087), - [aux_sym_cmd_identifier_token35] = ACTIONS(2087), - [aux_sym_cmd_identifier_token36] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(2087), - [anon_sym_false] = ACTIONS(2087), - [anon_sym_null] = ACTIONS(2087), - [aux_sym_cmd_identifier_token38] = ACTIONS(2087), - [aux_sym_cmd_identifier_token39] = ACTIONS(2087), - [aux_sym_cmd_identifier_token40] = ACTIONS(2087), - [anon_sym_def] = ACTIONS(2087), - [anon_sym_export_DASHenv] = ACTIONS(2087), - [anon_sym_extern] = ACTIONS(2087), - [anon_sym_module] = ACTIONS(2087), - [anon_sym_use] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_DOLLAR] = ACTIONS(2087), - [anon_sym_error] = ACTIONS(2087), - [anon_sym_list] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_in] = ACTIONS(2087), - [anon_sym_loop] = ACTIONS(2087), - [anon_sym_make] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_do] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_else] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_try] = ACTIONS(2087), - [anon_sym_catch] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_source] = ACTIONS(2087), - [anon_sym_source_DASHenv] = ACTIONS(2087), - [anon_sym_register] = ACTIONS(2087), - [anon_sym_hide] = ACTIONS(2087), - [anon_sym_hide_DASHenv] = ACTIONS(2087), - [anon_sym_overlay] = ACTIONS(2087), - [anon_sym_new] = ACTIONS(2087), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2087), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2087), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2087), - [aux_sym__val_number_decimal_token3] = ACTIONS(2087), - [aux_sym__val_number_decimal_token4] = ACTIONS(2087), - [aux_sym__val_number_token1] = ACTIONS(2087), - [aux_sym__val_number_token2] = ACTIONS(2087), - [aux_sym__val_number_token3] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2087), - [sym__str_single_quotes] = ACTIONS(2087), - [sym__str_back_ticks] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2087), - [sym__entry_separator] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2087), + [439] = { + [sym_expr_parenthesized] = STATE(4394), + [sym__spread_parenthesized] = STATE(4880), + [sym_val_range] = STATE(4883), + [sym__val_range] = STATE(7817), + [sym__val_range_with_end] = STATE(7408), + [sym__value] = STATE(4883), + [sym_val_nothing] = STATE(4804), + [sym_val_bool] = STATE(4581), + [sym__spread_variable] = STATE(4886), + [sym_val_variable] = STATE(4358), + [sym_val_number] = STATE(4804), + [sym__val_number_decimal] = STATE(4051), + [sym__val_number] = STATE(4871), + [sym_val_duration] = STATE(4804), + [sym_val_filesize] = STATE(4804), + [sym_val_binary] = STATE(4804), + [sym_val_string] = STATE(4804), + [sym__raw_str] = STATE(4517), + [sym__str_double_quotes] = STATE(4517), + [sym_val_interpolated] = STATE(4804), + [sym__inter_single_quotes] = STATE(4807), + [sym__inter_double_quotes] = STATE(4808), + [sym_val_list] = STATE(4804), + [sym__spread_list] = STATE(4880), + [sym_val_record] = STATE(4804), + [sym_val_table] = STATE(4804), + [sym_val_closure] = STATE(4804), + [sym__cmd_arg] = STATE(4887), + [sym_redirection] = STATE(4888), + [sym__flag] = STATE(4890), + [sym_short_flag] = STATE(4951), + [sym_long_flag] = STATE(4951), + [sym_unquoted] = STATE(4513), + [sym__unquoted_with_expr] = STATE(4891), + [sym__unquoted_anonymous_prefix] = STATE(6926), + [sym_comment] = STATE(439), + [ts_builtin_sym_end] = ACTIONS(1804), + [sym__newline] = ACTIONS(1802), + [sym__space] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_DASH2] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_DOT_DOT] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2024), + [anon_sym_DOT_DOT_LT] = ACTIONS(2024), + [anon_sym_null] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2030), + [aux_sym__val_number_decimal_token1] = ACTIONS(2032), + [aux_sym__val_number_decimal_token2] = ACTIONS(2032), + [aux_sym__val_number_decimal_token3] = ACTIONS(2034), + [aux_sym__val_number_decimal_token4] = ACTIONS(2036), + [aux_sym__val_number_token1] = ACTIONS(2038), + [aux_sym__val_number_token2] = ACTIONS(2038), + [aux_sym__val_number_token3] = ACTIONS(2038), + [aux_sym__val_number_token4] = ACTIONS(2040), + [aux_sym__val_number_token5] = ACTIONS(2040), + [aux_sym__val_number_token6] = ACTIONS(2040), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2048), + [sym__str_single_quotes] = ACTIONS(2050), + [sym__str_back_ticks] = ACTIONS(2050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2056), + [anon_sym_err_GT] = ACTIONS(2058), + [anon_sym_out_GT] = ACTIONS(2058), + [anon_sym_e_GT] = ACTIONS(2058), + [anon_sym_o_GT] = ACTIONS(2058), + [anon_sym_err_PLUSout_GT] = ACTIONS(2058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2058), + [anon_sym_o_PLUSe_GT] = ACTIONS(2058), + [anon_sym_e_PLUSo_GT] = ACTIONS(2058), + [anon_sym_err_GT_GT] = ACTIONS(2058), + [anon_sym_out_GT_GT] = ACTIONS(2058), + [anon_sym_e_GT_GT] = ACTIONS(2058), + [anon_sym_o_GT_GT] = ACTIONS(2058), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2058), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2058), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2058), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2058), + [aux_sym_unquoted_token1] = ACTIONS(2060), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2089), + [sym_raw_string_begin] = ACTIONS(2062), }, - [384] = { - [sym_comment] = STATE(384), - [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(2091), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2093), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2093), - [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(1526), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1796), + [440] = { + [sym_comment] = STATE(440), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(2064), + [aux_sym__immediate_decimal_token2] = ACTIONS(2066), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, - [385] = { - [sym_cell_path] = STATE(607), - [sym_path] = STATE(518), - [sym_comment] = STATE(385), - [aux_sym_cell_path_repeat1] = STATE(411), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_alias] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_let_DASHenv] = ACTIONS(2095), - [anon_sym_mut] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [aux_sym_cmd_identifier_token1] = ACTIONS(2095), - [aux_sym_cmd_identifier_token2] = ACTIONS(2095), - [aux_sym_cmd_identifier_token3] = ACTIONS(2095), - [aux_sym_cmd_identifier_token4] = ACTIONS(2095), - [aux_sym_cmd_identifier_token5] = ACTIONS(2095), - [aux_sym_cmd_identifier_token6] = ACTIONS(2095), - [aux_sym_cmd_identifier_token7] = ACTIONS(2095), - [aux_sym_cmd_identifier_token8] = ACTIONS(2095), - [aux_sym_cmd_identifier_token9] = ACTIONS(2095), - [aux_sym_cmd_identifier_token10] = ACTIONS(2095), - [aux_sym_cmd_identifier_token11] = ACTIONS(2095), - [aux_sym_cmd_identifier_token12] = ACTIONS(2095), - [aux_sym_cmd_identifier_token13] = ACTIONS(2095), - [aux_sym_cmd_identifier_token14] = ACTIONS(2095), - [aux_sym_cmd_identifier_token15] = ACTIONS(2095), - [aux_sym_cmd_identifier_token16] = ACTIONS(2095), - [aux_sym_cmd_identifier_token17] = ACTIONS(2095), - [aux_sym_cmd_identifier_token18] = ACTIONS(2095), - [aux_sym_cmd_identifier_token19] = ACTIONS(2095), - [aux_sym_cmd_identifier_token20] = ACTIONS(2095), - [aux_sym_cmd_identifier_token21] = ACTIONS(2095), - [aux_sym_cmd_identifier_token22] = ACTIONS(2095), - [aux_sym_cmd_identifier_token23] = ACTIONS(2095), - [aux_sym_cmd_identifier_token24] = ACTIONS(2095), - [aux_sym_cmd_identifier_token25] = ACTIONS(2095), - [aux_sym_cmd_identifier_token26] = ACTIONS(2095), - [aux_sym_cmd_identifier_token27] = ACTIONS(2095), - [aux_sym_cmd_identifier_token28] = ACTIONS(2095), - [aux_sym_cmd_identifier_token29] = ACTIONS(2095), - [aux_sym_cmd_identifier_token30] = ACTIONS(2095), - [aux_sym_cmd_identifier_token31] = ACTIONS(2095), - [aux_sym_cmd_identifier_token32] = ACTIONS(2095), - [aux_sym_cmd_identifier_token33] = ACTIONS(2095), - [aux_sym_cmd_identifier_token34] = ACTIONS(2095), - [aux_sym_cmd_identifier_token35] = ACTIONS(2095), - [aux_sym_cmd_identifier_token36] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [anon_sym_null] = ACTIONS(2095), - [aux_sym_cmd_identifier_token38] = ACTIONS(2095), - [aux_sym_cmd_identifier_token39] = ACTIONS(2095), - [aux_sym_cmd_identifier_token40] = ACTIONS(2095), - [anon_sym_def] = ACTIONS(2095), - [anon_sym_export_DASHenv] = ACTIONS(2095), - [anon_sym_extern] = ACTIONS(2095), - [anon_sym_module] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_DOLLAR] = ACTIONS(2095), - [anon_sym_error] = ACTIONS(2095), - [anon_sym_list] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_make] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_do] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_try] = ACTIONS(2095), - [anon_sym_catch] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_source] = ACTIONS(2095), - [anon_sym_source_DASHenv] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2095), - [anon_sym_hide] = ACTIONS(2095), - [anon_sym_hide_DASHenv] = ACTIONS(2095), - [anon_sym_overlay] = ACTIONS(2095), - [anon_sym_new] = ACTIONS(2095), - [anon_sym_as] = ACTIONS(2095), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2095), - [aux_sym__val_number_decimal_token1] = ACTIONS(2095), - [aux_sym__val_number_decimal_token2] = ACTIONS(2095), - [aux_sym__val_number_decimal_token3] = ACTIONS(2095), - [aux_sym__val_number_decimal_token4] = ACTIONS(2095), - [aux_sym__val_number_token1] = ACTIONS(2095), - [aux_sym__val_number_token2] = ACTIONS(2095), - [aux_sym__val_number_token3] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym__str_single_quotes] = ACTIONS(2095), - [sym__str_back_ticks] = ACTIONS(2095), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2095), - [sym__entry_separator] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2095), + [441] = { + [sym_cell_path] = STATE(613), + [sym_path] = STATE(569), + [sym_comment] = STATE(441), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_alias] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_let_DASHenv] = ACTIONS(2068), + [anon_sym_mut] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [aux_sym_cmd_identifier_token1] = ACTIONS(2068), + [aux_sym_cmd_identifier_token2] = ACTIONS(2068), + [aux_sym_cmd_identifier_token3] = ACTIONS(2068), + [aux_sym_cmd_identifier_token4] = ACTIONS(2068), + [aux_sym_cmd_identifier_token5] = ACTIONS(2068), + [aux_sym_cmd_identifier_token6] = ACTIONS(2068), + [aux_sym_cmd_identifier_token7] = ACTIONS(2068), + [aux_sym_cmd_identifier_token8] = ACTIONS(2068), + [aux_sym_cmd_identifier_token9] = ACTIONS(2068), + [aux_sym_cmd_identifier_token10] = ACTIONS(2068), + [aux_sym_cmd_identifier_token11] = ACTIONS(2068), + [aux_sym_cmd_identifier_token12] = ACTIONS(2068), + [aux_sym_cmd_identifier_token13] = ACTIONS(2068), + [aux_sym_cmd_identifier_token14] = ACTIONS(2068), + [aux_sym_cmd_identifier_token15] = ACTIONS(2068), + [aux_sym_cmd_identifier_token16] = ACTIONS(2068), + [aux_sym_cmd_identifier_token17] = ACTIONS(2068), + [aux_sym_cmd_identifier_token18] = ACTIONS(2068), + [aux_sym_cmd_identifier_token19] = ACTIONS(2068), + [aux_sym_cmd_identifier_token20] = ACTIONS(2068), + [aux_sym_cmd_identifier_token21] = ACTIONS(2068), + [aux_sym_cmd_identifier_token22] = ACTIONS(2068), + [aux_sym_cmd_identifier_token23] = ACTIONS(2068), + [aux_sym_cmd_identifier_token24] = ACTIONS(2068), + [aux_sym_cmd_identifier_token25] = ACTIONS(2068), + [aux_sym_cmd_identifier_token26] = ACTIONS(2068), + [aux_sym_cmd_identifier_token27] = ACTIONS(2068), + [aux_sym_cmd_identifier_token28] = ACTIONS(2068), + [aux_sym_cmd_identifier_token29] = ACTIONS(2068), + [aux_sym_cmd_identifier_token30] = ACTIONS(2068), + [aux_sym_cmd_identifier_token31] = ACTIONS(2068), + [aux_sym_cmd_identifier_token32] = ACTIONS(2068), + [aux_sym_cmd_identifier_token33] = ACTIONS(2068), + [aux_sym_cmd_identifier_token34] = ACTIONS(2068), + [aux_sym_cmd_identifier_token35] = ACTIONS(2068), + [aux_sym_cmd_identifier_token36] = ACTIONS(2068), + [aux_sym_cmd_identifier_token37] = ACTIONS(2068), + [aux_sym_cmd_identifier_token38] = ACTIONS(2068), + [aux_sym_cmd_identifier_token39] = ACTIONS(2068), + [aux_sym_cmd_identifier_token40] = ACTIONS(2068), + [anon_sym_def] = ACTIONS(2068), + [anon_sym_export_DASHenv] = ACTIONS(2068), + [anon_sym_extern] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_use] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [anon_sym_error] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_loop] = ACTIONS(2068), + [anon_sym_make] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_match] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_catch] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_source] = ACTIONS(2068), + [anon_sym_source_DASHenv] = ACTIONS(2068), + [anon_sym_register] = ACTIONS(2068), + [anon_sym_hide] = ACTIONS(2068), + [anon_sym_hide_DASHenv] = ACTIONS(2068), + [anon_sym_overlay] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2068), + [aux_sym__val_number_decimal_token1] = ACTIONS(2068), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2068), + [aux_sym__val_number_decimal_token4] = ACTIONS(2068), + [aux_sym__val_number_token1] = ACTIONS(2068), + [aux_sym__val_number_token2] = ACTIONS(2068), + [aux_sym__val_number_token3] = ACTIONS(2068), + [aux_sym__val_number_token4] = ACTIONS(2068), + [aux_sym__val_number_token5] = ACTIONS(2068), + [aux_sym__val_number_token6] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [sym__str_single_quotes] = ACTIONS(2068), + [sym__str_back_ticks] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2068), + [sym__entry_separator] = ACTIONS(2070), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2097), + [sym_raw_string_begin] = ACTIONS(2070), }, - [386] = { - [sym_comment] = STATE(386), - [anon_sym_export] = ACTIONS(1842), - [anon_sym_alias] = ACTIONS(1842), - [anon_sym_let] = ACTIONS(1842), - [anon_sym_let_DASHenv] = ACTIONS(1842), - [anon_sym_mut] = ACTIONS(1842), - [anon_sym_const] = ACTIONS(1842), - [aux_sym_cmd_identifier_token1] = ACTIONS(1842), - [aux_sym_cmd_identifier_token2] = ACTIONS(1842), - [aux_sym_cmd_identifier_token3] = ACTIONS(1842), - [aux_sym_cmd_identifier_token4] = ACTIONS(1842), - [aux_sym_cmd_identifier_token5] = ACTIONS(1842), - [aux_sym_cmd_identifier_token6] = ACTIONS(1842), - [aux_sym_cmd_identifier_token7] = ACTIONS(1842), - [aux_sym_cmd_identifier_token8] = ACTIONS(1842), - [aux_sym_cmd_identifier_token9] = ACTIONS(1842), - [aux_sym_cmd_identifier_token10] = ACTIONS(1842), - [aux_sym_cmd_identifier_token11] = ACTIONS(1842), - [aux_sym_cmd_identifier_token12] = ACTIONS(1842), - [aux_sym_cmd_identifier_token13] = ACTIONS(1842), - [aux_sym_cmd_identifier_token14] = ACTIONS(1842), - [aux_sym_cmd_identifier_token15] = ACTIONS(1842), - [aux_sym_cmd_identifier_token16] = ACTIONS(1842), - [aux_sym_cmd_identifier_token17] = ACTIONS(1842), - [aux_sym_cmd_identifier_token18] = ACTIONS(1842), - [aux_sym_cmd_identifier_token19] = ACTIONS(1842), - [aux_sym_cmd_identifier_token20] = ACTIONS(1842), - [aux_sym_cmd_identifier_token21] = ACTIONS(1842), - [aux_sym_cmd_identifier_token22] = ACTIONS(1842), - [aux_sym_cmd_identifier_token23] = ACTIONS(1842), - [aux_sym_cmd_identifier_token24] = ACTIONS(1842), - [aux_sym_cmd_identifier_token25] = ACTIONS(1842), - [aux_sym_cmd_identifier_token26] = ACTIONS(1842), - [aux_sym_cmd_identifier_token27] = ACTIONS(1842), - [aux_sym_cmd_identifier_token28] = ACTIONS(1842), - [aux_sym_cmd_identifier_token29] = ACTIONS(1842), - [aux_sym_cmd_identifier_token30] = ACTIONS(1842), - [aux_sym_cmd_identifier_token31] = ACTIONS(1842), - [aux_sym_cmd_identifier_token32] = ACTIONS(1842), - [aux_sym_cmd_identifier_token33] = ACTIONS(1842), - [aux_sym_cmd_identifier_token34] = ACTIONS(1842), - [aux_sym_cmd_identifier_token35] = ACTIONS(1842), - [aux_sym_cmd_identifier_token36] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1850), - [anon_sym_false] = ACTIONS(1850), - [anon_sym_null] = ACTIONS(1850), - [aux_sym_cmd_identifier_token38] = ACTIONS(1842), - [aux_sym_cmd_identifier_token39] = ACTIONS(1850), - [aux_sym_cmd_identifier_token40] = ACTIONS(1850), - [anon_sym_def] = ACTIONS(1842), - [anon_sym_export_DASHenv] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1842), - [anon_sym_module] = ACTIONS(1842), - [anon_sym_use] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1850), - [anon_sym_error] = ACTIONS(1842), - [anon_sym_list] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_in] = ACTIONS(1842), - [anon_sym_loop] = ACTIONS(1842), - [anon_sym_make] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_else] = ACTIONS(1842), - [anon_sym_match] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_try] = ACTIONS(1842), - [anon_sym_catch] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_source] = ACTIONS(1842), - [anon_sym_source_DASHenv] = ACTIONS(1842), - [anon_sym_register] = ACTIONS(1842), - [anon_sym_hide] = ACTIONS(1842), - [anon_sym_hide_DASHenv] = ACTIONS(1842), - [anon_sym_overlay] = ACTIONS(1842), - [anon_sym_new] = ACTIONS(1842), - [anon_sym_as] = ACTIONS(1842), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1850), - [anon_sym_DOT_DOT2] = ACTIONS(2099), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2101), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2101), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1850), - [aux_sym__val_number_decimal_token1] = ACTIONS(1842), - [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(1842), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1850), + [442] = { + [sym_cell_path] = STATE(614), + [sym_path] = STATE(569), + [sym_comment] = STATE(442), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_alias] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_let_DASHenv] = ACTIONS(2072), + [anon_sym_mut] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [aux_sym_cmd_identifier_token1] = ACTIONS(2072), + [aux_sym_cmd_identifier_token2] = ACTIONS(2072), + [aux_sym_cmd_identifier_token3] = ACTIONS(2072), + [aux_sym_cmd_identifier_token4] = ACTIONS(2072), + [aux_sym_cmd_identifier_token5] = ACTIONS(2072), + [aux_sym_cmd_identifier_token6] = ACTIONS(2072), + [aux_sym_cmd_identifier_token7] = ACTIONS(2072), + [aux_sym_cmd_identifier_token8] = ACTIONS(2072), + [aux_sym_cmd_identifier_token9] = ACTIONS(2072), + [aux_sym_cmd_identifier_token10] = ACTIONS(2072), + [aux_sym_cmd_identifier_token11] = ACTIONS(2072), + [aux_sym_cmd_identifier_token12] = ACTIONS(2072), + [aux_sym_cmd_identifier_token13] = ACTIONS(2072), + [aux_sym_cmd_identifier_token14] = ACTIONS(2072), + [aux_sym_cmd_identifier_token15] = ACTIONS(2072), + [aux_sym_cmd_identifier_token16] = ACTIONS(2072), + [aux_sym_cmd_identifier_token17] = ACTIONS(2072), + [aux_sym_cmd_identifier_token18] = ACTIONS(2072), + [aux_sym_cmd_identifier_token19] = ACTIONS(2072), + [aux_sym_cmd_identifier_token20] = ACTIONS(2072), + [aux_sym_cmd_identifier_token21] = ACTIONS(2072), + [aux_sym_cmd_identifier_token22] = ACTIONS(2072), + [aux_sym_cmd_identifier_token23] = ACTIONS(2072), + [aux_sym_cmd_identifier_token24] = ACTIONS(2072), + [aux_sym_cmd_identifier_token25] = ACTIONS(2072), + [aux_sym_cmd_identifier_token26] = ACTIONS(2072), + [aux_sym_cmd_identifier_token27] = ACTIONS(2072), + [aux_sym_cmd_identifier_token28] = ACTIONS(2072), + [aux_sym_cmd_identifier_token29] = ACTIONS(2072), + [aux_sym_cmd_identifier_token30] = ACTIONS(2072), + [aux_sym_cmd_identifier_token31] = ACTIONS(2072), + [aux_sym_cmd_identifier_token32] = ACTIONS(2072), + [aux_sym_cmd_identifier_token33] = ACTIONS(2072), + [aux_sym_cmd_identifier_token34] = ACTIONS(2072), + [aux_sym_cmd_identifier_token35] = ACTIONS(2072), + [aux_sym_cmd_identifier_token36] = ACTIONS(2072), + [aux_sym_cmd_identifier_token37] = ACTIONS(2072), + [aux_sym_cmd_identifier_token38] = ACTIONS(2072), + [aux_sym_cmd_identifier_token39] = ACTIONS(2072), + [aux_sym_cmd_identifier_token40] = ACTIONS(2072), + [anon_sym_def] = ACTIONS(2072), + [anon_sym_export_DASHenv] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_use] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_error] = ACTIONS(2072), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_in2] = ACTIONS(2072), + [anon_sym_loop] = ACTIONS(2072), + [anon_sym_make] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_match] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_catch] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_source] = ACTIONS(2072), + [anon_sym_source_DASHenv] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_hide] = ACTIONS(2072), + [anon_sym_hide_DASHenv] = ACTIONS(2072), + [anon_sym_overlay] = ACTIONS(2072), + [anon_sym_as] = ACTIONS(2072), + [anon_sym_PLUS2] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2072), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [aux_sym__val_number_decimal_token2] = ACTIONS(2072), + [aux_sym__val_number_decimal_token3] = ACTIONS(2072), + [aux_sym__val_number_decimal_token4] = ACTIONS(2072), + [aux_sym__val_number_token1] = ACTIONS(2072), + [aux_sym__val_number_token2] = ACTIONS(2072), + [aux_sym__val_number_token3] = ACTIONS(2072), + [aux_sym__val_number_token4] = ACTIONS(2072), + [aux_sym__val_number_token5] = ACTIONS(2072), + [aux_sym__val_number_token6] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), + [sym__entry_separator] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2074), }, - [387] = { - [sym_comment] = STATE(387), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1769), - [aux_sym_cmd_identifier_token40] = ACTIONS(1769), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(2103), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), - [sym__entry_separator] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), + [443] = { + [sym_comment] = STATE(443), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1783), + [aux_sym_cmd_identifier_token3] = ACTIONS(1783), + [aux_sym_cmd_identifier_token4] = ACTIONS(1783), + [aux_sym_cmd_identifier_token5] = ACTIONS(1783), + [aux_sym_cmd_identifier_token6] = ACTIONS(1783), + [aux_sym_cmd_identifier_token7] = ACTIONS(1783), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1783), + [aux_sym_cmd_identifier_token11] = ACTIONS(1783), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1783), + [aux_sym_cmd_identifier_token17] = ACTIONS(1783), + [aux_sym_cmd_identifier_token18] = ACTIONS(1783), + [aux_sym_cmd_identifier_token19] = ACTIONS(1783), + [aux_sym_cmd_identifier_token20] = ACTIONS(1783), + [aux_sym_cmd_identifier_token21] = ACTIONS(1783), + [aux_sym_cmd_identifier_token22] = ACTIONS(1783), + [aux_sym_cmd_identifier_token23] = ACTIONS(1783), + [aux_sym_cmd_identifier_token24] = ACTIONS(1783), + [aux_sym_cmd_identifier_token25] = ACTIONS(1783), + [aux_sym_cmd_identifier_token26] = ACTIONS(1783), + [aux_sym_cmd_identifier_token27] = ACTIONS(1783), + [aux_sym_cmd_identifier_token28] = ACTIONS(1783), + [aux_sym_cmd_identifier_token29] = ACTIONS(1783), + [aux_sym_cmd_identifier_token30] = ACTIONS(1783), + [aux_sym_cmd_identifier_token31] = ACTIONS(1783), + [aux_sym_cmd_identifier_token32] = ACTIONS(1783), + [aux_sym_cmd_identifier_token33] = ACTIONS(1783), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1783), + [aux_sym_cmd_identifier_token36] = ACTIONS(1783), + [aux_sym_cmd_identifier_token37] = ACTIONS(1783), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1783), + [aux_sym_cmd_identifier_token40] = ACTIONS(1783), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(2076), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1783), + [aux_sym__val_number_decimal_token3] = ACTIONS(1783), + [aux_sym__val_number_decimal_token4] = ACTIONS(1783), + [aux_sym__val_number_token1] = ACTIONS(1783), + [aux_sym__val_number_token2] = ACTIONS(1783), + [aux_sym__val_number_token3] = ACTIONS(1783), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [sym__str_single_quotes] = ACTIONS(1783), + [sym__str_back_ticks] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), + [sym__entry_separator] = ACTIONS(1785), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1771), + [sym_raw_string_begin] = ACTIONS(1785), }, - [388] = { - [sym_comment] = STATE(388), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_alias] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_let_DASHenv] = ACTIONS(2105), - [anon_sym_mut] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [aux_sym_cmd_identifier_token1] = ACTIONS(2105), - [aux_sym_cmd_identifier_token2] = ACTIONS(2105), - [aux_sym_cmd_identifier_token3] = ACTIONS(2105), - [aux_sym_cmd_identifier_token4] = ACTIONS(2105), - [aux_sym_cmd_identifier_token5] = ACTIONS(2105), - [aux_sym_cmd_identifier_token6] = ACTIONS(2105), - [aux_sym_cmd_identifier_token7] = ACTIONS(2105), - [aux_sym_cmd_identifier_token8] = ACTIONS(2105), - [aux_sym_cmd_identifier_token9] = ACTIONS(2105), - [aux_sym_cmd_identifier_token10] = ACTIONS(2105), - [aux_sym_cmd_identifier_token11] = ACTIONS(2105), - [aux_sym_cmd_identifier_token12] = ACTIONS(2105), - [aux_sym_cmd_identifier_token13] = ACTIONS(2105), - [aux_sym_cmd_identifier_token14] = ACTIONS(2105), - [aux_sym_cmd_identifier_token15] = ACTIONS(2105), - [aux_sym_cmd_identifier_token16] = ACTIONS(2105), - [aux_sym_cmd_identifier_token17] = ACTIONS(2105), - [aux_sym_cmd_identifier_token18] = ACTIONS(2105), - [aux_sym_cmd_identifier_token19] = ACTIONS(2105), - [aux_sym_cmd_identifier_token20] = ACTIONS(2105), - [aux_sym_cmd_identifier_token21] = ACTIONS(2105), - [aux_sym_cmd_identifier_token22] = ACTIONS(2105), - [aux_sym_cmd_identifier_token23] = ACTIONS(2105), - [aux_sym_cmd_identifier_token24] = ACTIONS(2105), - [aux_sym_cmd_identifier_token25] = ACTIONS(2105), - [aux_sym_cmd_identifier_token26] = ACTIONS(2105), - [aux_sym_cmd_identifier_token27] = ACTIONS(2105), - [aux_sym_cmd_identifier_token28] = ACTIONS(2105), - [aux_sym_cmd_identifier_token29] = ACTIONS(2105), - [aux_sym_cmd_identifier_token30] = ACTIONS(2105), - [aux_sym_cmd_identifier_token31] = ACTIONS(2105), - [aux_sym_cmd_identifier_token32] = ACTIONS(2105), - [aux_sym_cmd_identifier_token33] = ACTIONS(2105), - [aux_sym_cmd_identifier_token34] = ACTIONS(2105), - [aux_sym_cmd_identifier_token35] = ACTIONS(2105), - [aux_sym_cmd_identifier_token36] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [anon_sym_null] = ACTIONS(2105), - [aux_sym_cmd_identifier_token38] = ACTIONS(2105), - [aux_sym_cmd_identifier_token39] = ACTIONS(2105), - [aux_sym_cmd_identifier_token40] = ACTIONS(2105), - [anon_sym_def] = ACTIONS(2105), - [anon_sym_export_DASHenv] = ACTIONS(2105), - [anon_sym_extern] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_DOLLAR] = ACTIONS(2105), - [anon_sym_error] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_loop] = ACTIONS(2105), - [anon_sym_make] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_catch] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_source] = ACTIONS(2105), - [anon_sym_source_DASHenv] = ACTIONS(2105), - [anon_sym_register] = ACTIONS(2105), - [anon_sym_hide] = ACTIONS(2105), - [anon_sym_hide_DASHenv] = ACTIONS(2105), - [anon_sym_overlay] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2105), - [anon_sym_DOT_DOT2] = ACTIONS(2105), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2107), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2105), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(2105), - [aux_sym__val_number_decimal_token3] = ACTIONS(2105), - [aux_sym__val_number_decimal_token4] = ACTIONS(2105), - [aux_sym__val_number_token1] = ACTIONS(2105), - [aux_sym__val_number_token2] = ACTIONS(2105), - [aux_sym__val_number_token3] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [sym__str_single_quotes] = ACTIONS(2105), - [sym__str_back_ticks] = ACTIONS(2105), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2105), - [sym__entry_separator] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2105), + [444] = { + [sym_cell_path] = STATE(673), + [sym_path] = STATE(569), + [sym_comment] = STATE(444), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(2078), + [anon_sym_alias] = ACTIONS(2078), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_let_DASHenv] = ACTIONS(2078), + [anon_sym_mut] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2078), + [aux_sym_cmd_identifier_token1] = ACTIONS(2078), + [aux_sym_cmd_identifier_token2] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2078), + [aux_sym_cmd_identifier_token4] = ACTIONS(2078), + [aux_sym_cmd_identifier_token5] = ACTIONS(2078), + [aux_sym_cmd_identifier_token6] = ACTIONS(2078), + [aux_sym_cmd_identifier_token7] = ACTIONS(2078), + [aux_sym_cmd_identifier_token8] = ACTIONS(2078), + [aux_sym_cmd_identifier_token9] = ACTIONS(2078), + [aux_sym_cmd_identifier_token10] = ACTIONS(2078), + [aux_sym_cmd_identifier_token11] = ACTIONS(2078), + [aux_sym_cmd_identifier_token12] = ACTIONS(2078), + [aux_sym_cmd_identifier_token13] = ACTIONS(2078), + [aux_sym_cmd_identifier_token14] = ACTIONS(2078), + [aux_sym_cmd_identifier_token15] = ACTIONS(2078), + [aux_sym_cmd_identifier_token16] = ACTIONS(2078), + [aux_sym_cmd_identifier_token17] = ACTIONS(2078), + [aux_sym_cmd_identifier_token18] = ACTIONS(2078), + [aux_sym_cmd_identifier_token19] = ACTIONS(2078), + [aux_sym_cmd_identifier_token20] = ACTIONS(2078), + [aux_sym_cmd_identifier_token21] = ACTIONS(2078), + [aux_sym_cmd_identifier_token22] = ACTIONS(2078), + [aux_sym_cmd_identifier_token23] = ACTIONS(2078), + [aux_sym_cmd_identifier_token24] = ACTIONS(2078), + [aux_sym_cmd_identifier_token25] = ACTIONS(2078), + [aux_sym_cmd_identifier_token26] = ACTIONS(2078), + [aux_sym_cmd_identifier_token27] = ACTIONS(2078), + [aux_sym_cmd_identifier_token28] = ACTIONS(2078), + [aux_sym_cmd_identifier_token29] = ACTIONS(2078), + [aux_sym_cmd_identifier_token30] = ACTIONS(2078), + [aux_sym_cmd_identifier_token31] = ACTIONS(2078), + [aux_sym_cmd_identifier_token32] = ACTIONS(2078), + [aux_sym_cmd_identifier_token33] = ACTIONS(2078), + [aux_sym_cmd_identifier_token34] = ACTIONS(2078), + [aux_sym_cmd_identifier_token35] = ACTIONS(2078), + [aux_sym_cmd_identifier_token36] = ACTIONS(2078), + [aux_sym_cmd_identifier_token37] = ACTIONS(2078), + [aux_sym_cmd_identifier_token38] = ACTIONS(2078), + [aux_sym_cmd_identifier_token39] = ACTIONS(2078), + [aux_sym_cmd_identifier_token40] = ACTIONS(2078), + [anon_sym_def] = ACTIONS(2078), + [anon_sym_export_DASHenv] = ACTIONS(2078), + [anon_sym_extern] = ACTIONS(2078), + [anon_sym_module] = ACTIONS(2078), + [anon_sym_use] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_DOLLAR] = ACTIONS(2078), + [anon_sym_error] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2078), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2078), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_in2] = ACTIONS(2078), + [anon_sym_loop] = ACTIONS(2078), + [anon_sym_make] = ACTIONS(2078), + [anon_sym_while] = ACTIONS(2078), + [anon_sym_do] = ACTIONS(2078), + [anon_sym_if] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2078), + [anon_sym_match] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2078), + [anon_sym_catch] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2078), + [anon_sym_source] = ACTIONS(2078), + [anon_sym_source_DASHenv] = ACTIONS(2078), + [anon_sym_register] = ACTIONS(2078), + [anon_sym_hide] = ACTIONS(2078), + [anon_sym_hide_DASHenv] = ACTIONS(2078), + [anon_sym_overlay] = ACTIONS(2078), + [anon_sym_as] = ACTIONS(2078), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2078), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2078), + [aux_sym__val_number_decimal_token1] = ACTIONS(2078), + [aux_sym__val_number_decimal_token2] = ACTIONS(2078), + [aux_sym__val_number_decimal_token3] = ACTIONS(2078), + [aux_sym__val_number_decimal_token4] = ACTIONS(2078), + [aux_sym__val_number_token1] = ACTIONS(2078), + [aux_sym__val_number_token2] = ACTIONS(2078), + [aux_sym__val_number_token3] = ACTIONS(2078), + [aux_sym__val_number_token4] = ACTIONS(2078), + [aux_sym__val_number_token5] = ACTIONS(2078), + [aux_sym__val_number_token6] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym__str_single_quotes] = ACTIONS(2078), + [sym__str_back_ticks] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2078), + [sym__entry_separator] = ACTIONS(2080), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2107), + [sym_raw_string_begin] = ACTIONS(2080), }, - [389] = { - [sym_comment] = STATE(389), - [anon_sym_export] = ACTIONS(1090), - [anon_sym_alias] = ACTIONS(1090), - [anon_sym_let] = ACTIONS(1090), - [anon_sym_let_DASHenv] = ACTIONS(1090), - [anon_sym_mut] = ACTIONS(1090), - [anon_sym_const] = ACTIONS(1090), - [aux_sym_cmd_identifier_token1] = ACTIONS(1090), - [aux_sym_cmd_identifier_token2] = ACTIONS(1090), - [aux_sym_cmd_identifier_token3] = ACTIONS(1090), - [aux_sym_cmd_identifier_token4] = ACTIONS(1090), - [aux_sym_cmd_identifier_token5] = ACTIONS(1090), - [aux_sym_cmd_identifier_token6] = ACTIONS(1090), - [aux_sym_cmd_identifier_token7] = ACTIONS(1090), - [aux_sym_cmd_identifier_token8] = ACTIONS(1090), - [aux_sym_cmd_identifier_token9] = ACTIONS(1090), - [aux_sym_cmd_identifier_token10] = ACTIONS(1090), - [aux_sym_cmd_identifier_token11] = ACTIONS(1090), - [aux_sym_cmd_identifier_token12] = ACTIONS(1090), - [aux_sym_cmd_identifier_token13] = ACTIONS(1090), - [aux_sym_cmd_identifier_token14] = ACTIONS(1090), - [aux_sym_cmd_identifier_token15] = ACTIONS(1090), - [aux_sym_cmd_identifier_token16] = ACTIONS(1090), - [aux_sym_cmd_identifier_token17] = ACTIONS(1090), - [aux_sym_cmd_identifier_token18] = ACTIONS(1090), - [aux_sym_cmd_identifier_token19] = ACTIONS(1090), - [aux_sym_cmd_identifier_token20] = ACTIONS(1090), - [aux_sym_cmd_identifier_token21] = ACTIONS(1090), - [aux_sym_cmd_identifier_token22] = ACTIONS(1090), - [aux_sym_cmd_identifier_token23] = ACTIONS(1090), - [aux_sym_cmd_identifier_token24] = ACTIONS(1090), - [aux_sym_cmd_identifier_token25] = ACTIONS(1090), - [aux_sym_cmd_identifier_token26] = ACTIONS(1090), - [aux_sym_cmd_identifier_token27] = ACTIONS(1090), - [aux_sym_cmd_identifier_token28] = ACTIONS(1090), - [aux_sym_cmd_identifier_token29] = ACTIONS(1090), - [aux_sym_cmd_identifier_token30] = ACTIONS(1090), - [aux_sym_cmd_identifier_token31] = ACTIONS(1090), - [aux_sym_cmd_identifier_token32] = ACTIONS(1090), - [aux_sym_cmd_identifier_token33] = ACTIONS(1090), - [aux_sym_cmd_identifier_token34] = ACTIONS(1090), - [aux_sym_cmd_identifier_token35] = ACTIONS(1090), - [aux_sym_cmd_identifier_token36] = ACTIONS(1090), - [anon_sym_true] = ACTIONS(1090), - [anon_sym_false] = ACTIONS(1090), - [anon_sym_null] = ACTIONS(1090), - [aux_sym_cmd_identifier_token38] = ACTIONS(1090), - [aux_sym_cmd_identifier_token39] = ACTIONS(1090), - [aux_sym_cmd_identifier_token40] = ACTIONS(1090), - [anon_sym_def] = ACTIONS(1090), - [anon_sym_export_DASHenv] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(1090), - [anon_sym_module] = ACTIONS(1090), - [anon_sym_use] = ACTIONS(1090), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_DOLLAR] = ACTIONS(1090), - [anon_sym_error] = ACTIONS(1090), - [anon_sym_list] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_break] = ACTIONS(1090), - [anon_sym_continue] = ACTIONS(1090), - [anon_sym_for] = ACTIONS(1090), - [anon_sym_in] = ACTIONS(1090), - [anon_sym_loop] = ACTIONS(1090), - [anon_sym_make] = ACTIONS(1090), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(1090), - [anon_sym_if] = ACTIONS(1090), - [anon_sym_else] = ACTIONS(1090), - [anon_sym_match] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_try] = ACTIONS(1090), - [anon_sym_catch] = ACTIONS(1090), - [anon_sym_return] = ACTIONS(1090), - [anon_sym_source] = ACTIONS(1090), - [anon_sym_source_DASHenv] = ACTIONS(1090), - [anon_sym_register] = ACTIONS(1090), - [anon_sym_hide] = ACTIONS(1090), - [anon_sym_hide_DASHenv] = ACTIONS(1090), - [anon_sym_overlay] = ACTIONS(1090), - [anon_sym_new] = ACTIONS(1090), - [anon_sym_as] = ACTIONS(1090), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1090), - [anon_sym_DOT_DOT2] = ACTIONS(2109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2111), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1090), - [aux_sym__val_number_decimal_token1] = ACTIONS(1090), - [aux_sym__val_number_decimal_token2] = ACTIONS(1090), - [aux_sym__val_number_decimal_token3] = ACTIONS(1090), - [aux_sym__val_number_decimal_token4] = ACTIONS(1090), - [aux_sym__val_number_token1] = ACTIONS(1090), - [aux_sym__val_number_token2] = ACTIONS(1090), - [aux_sym__val_number_token3] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym__str_single_quotes] = ACTIONS(1090), - [sym__str_back_ticks] = ACTIONS(1090), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1090), - [sym__entry_separator] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1090), + [445] = { + [sym_cell_path] = STATE(633), + [sym_path] = STATE(569), + [sym_comment] = STATE(445), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(2082), + [anon_sym_alias] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(2082), + [anon_sym_let_DASHenv] = ACTIONS(2082), + [anon_sym_mut] = ACTIONS(2082), + [anon_sym_const] = ACTIONS(2082), + [aux_sym_cmd_identifier_token1] = ACTIONS(2082), + [aux_sym_cmd_identifier_token2] = ACTIONS(2082), + [aux_sym_cmd_identifier_token3] = ACTIONS(2082), + [aux_sym_cmd_identifier_token4] = ACTIONS(2082), + [aux_sym_cmd_identifier_token5] = ACTIONS(2082), + [aux_sym_cmd_identifier_token6] = ACTIONS(2082), + [aux_sym_cmd_identifier_token7] = ACTIONS(2082), + [aux_sym_cmd_identifier_token8] = ACTIONS(2082), + [aux_sym_cmd_identifier_token9] = ACTIONS(2082), + [aux_sym_cmd_identifier_token10] = ACTIONS(2082), + [aux_sym_cmd_identifier_token11] = ACTIONS(2082), + [aux_sym_cmd_identifier_token12] = ACTIONS(2082), + [aux_sym_cmd_identifier_token13] = ACTIONS(2082), + [aux_sym_cmd_identifier_token14] = ACTIONS(2082), + [aux_sym_cmd_identifier_token15] = ACTIONS(2082), + [aux_sym_cmd_identifier_token16] = ACTIONS(2082), + [aux_sym_cmd_identifier_token17] = ACTIONS(2082), + [aux_sym_cmd_identifier_token18] = ACTIONS(2082), + [aux_sym_cmd_identifier_token19] = ACTIONS(2082), + [aux_sym_cmd_identifier_token20] = ACTIONS(2082), + [aux_sym_cmd_identifier_token21] = ACTIONS(2082), + [aux_sym_cmd_identifier_token22] = ACTIONS(2082), + [aux_sym_cmd_identifier_token23] = ACTIONS(2082), + [aux_sym_cmd_identifier_token24] = ACTIONS(2082), + [aux_sym_cmd_identifier_token25] = ACTIONS(2082), + [aux_sym_cmd_identifier_token26] = ACTIONS(2082), + [aux_sym_cmd_identifier_token27] = ACTIONS(2082), + [aux_sym_cmd_identifier_token28] = ACTIONS(2082), + [aux_sym_cmd_identifier_token29] = ACTIONS(2082), + [aux_sym_cmd_identifier_token30] = ACTIONS(2082), + [aux_sym_cmd_identifier_token31] = ACTIONS(2082), + [aux_sym_cmd_identifier_token32] = ACTIONS(2082), + [aux_sym_cmd_identifier_token33] = ACTIONS(2082), + [aux_sym_cmd_identifier_token34] = ACTIONS(2082), + [aux_sym_cmd_identifier_token35] = ACTIONS(2082), + [aux_sym_cmd_identifier_token36] = ACTIONS(2082), + [aux_sym_cmd_identifier_token37] = ACTIONS(2082), + [aux_sym_cmd_identifier_token38] = ACTIONS(2082), + [aux_sym_cmd_identifier_token39] = ACTIONS(2082), + [aux_sym_cmd_identifier_token40] = ACTIONS(2082), + [anon_sym_def] = ACTIONS(2082), + [anon_sym_export_DASHenv] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_module] = ACTIONS(2082), + [anon_sym_use] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2082), + [anon_sym_error] = ACTIONS(2082), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_in2] = ACTIONS(2082), + [anon_sym_loop] = ACTIONS(2082), + [anon_sym_make] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_do] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_else] = ACTIONS(2082), + [anon_sym_match] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_catch] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_source] = ACTIONS(2082), + [anon_sym_source_DASHenv] = ACTIONS(2082), + [anon_sym_register] = ACTIONS(2082), + [anon_sym_hide] = ACTIONS(2082), + [anon_sym_hide_DASHenv] = ACTIONS(2082), + [anon_sym_overlay] = ACTIONS(2082), + [anon_sym_as] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2082), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2082), + [aux_sym__val_number_decimal_token1] = ACTIONS(2082), + [aux_sym__val_number_decimal_token2] = ACTIONS(2082), + [aux_sym__val_number_decimal_token3] = ACTIONS(2082), + [aux_sym__val_number_decimal_token4] = ACTIONS(2082), + [aux_sym__val_number_token1] = ACTIONS(2082), + [aux_sym__val_number_token2] = ACTIONS(2082), + [aux_sym__val_number_token3] = ACTIONS(2082), + [aux_sym__val_number_token4] = ACTIONS(2082), + [aux_sym__val_number_token5] = ACTIONS(2082), + [aux_sym__val_number_token6] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(2082), + [sym__str_single_quotes] = ACTIONS(2082), + [sym__str_back_ticks] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2082), + [sym__entry_separator] = ACTIONS(2084), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1092), + [sym_raw_string_begin] = ACTIONS(2084), }, - [390] = { - [sym_comment] = STATE(390), - [anon_sym_export] = ACTIONS(2113), - [anon_sym_alias] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2113), - [anon_sym_let_DASHenv] = ACTIONS(2113), - [anon_sym_mut] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [aux_sym_cmd_identifier_token1] = ACTIONS(2113), - [aux_sym_cmd_identifier_token2] = ACTIONS(2113), - [aux_sym_cmd_identifier_token3] = ACTIONS(2113), - [aux_sym_cmd_identifier_token4] = ACTIONS(2113), - [aux_sym_cmd_identifier_token5] = ACTIONS(2113), - [aux_sym_cmd_identifier_token6] = ACTIONS(2113), - [aux_sym_cmd_identifier_token7] = ACTIONS(2113), - [aux_sym_cmd_identifier_token8] = ACTIONS(2113), - [aux_sym_cmd_identifier_token9] = ACTIONS(2113), - [aux_sym_cmd_identifier_token10] = ACTIONS(2113), - [aux_sym_cmd_identifier_token11] = ACTIONS(2113), - [aux_sym_cmd_identifier_token12] = ACTIONS(2113), - [aux_sym_cmd_identifier_token13] = ACTIONS(2113), - [aux_sym_cmd_identifier_token14] = ACTIONS(2113), - [aux_sym_cmd_identifier_token15] = ACTIONS(2113), - [aux_sym_cmd_identifier_token16] = ACTIONS(2113), - [aux_sym_cmd_identifier_token17] = ACTIONS(2113), - [aux_sym_cmd_identifier_token18] = ACTIONS(2113), - [aux_sym_cmd_identifier_token19] = ACTIONS(2113), - [aux_sym_cmd_identifier_token20] = ACTIONS(2113), - [aux_sym_cmd_identifier_token21] = ACTIONS(2113), - [aux_sym_cmd_identifier_token22] = ACTIONS(2113), - [aux_sym_cmd_identifier_token23] = ACTIONS(2113), - [aux_sym_cmd_identifier_token24] = ACTIONS(2113), - [aux_sym_cmd_identifier_token25] = ACTIONS(2113), - [aux_sym_cmd_identifier_token26] = ACTIONS(2113), - [aux_sym_cmd_identifier_token27] = ACTIONS(2113), - [aux_sym_cmd_identifier_token28] = ACTIONS(2113), - [aux_sym_cmd_identifier_token29] = ACTIONS(2113), - [aux_sym_cmd_identifier_token30] = ACTIONS(2113), - [aux_sym_cmd_identifier_token31] = ACTIONS(2113), - [aux_sym_cmd_identifier_token32] = ACTIONS(2113), - [aux_sym_cmd_identifier_token33] = ACTIONS(2113), - [aux_sym_cmd_identifier_token34] = ACTIONS(2113), - [aux_sym_cmd_identifier_token35] = ACTIONS(2113), - [aux_sym_cmd_identifier_token36] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2113), - [anon_sym_false] = ACTIONS(2113), - [anon_sym_null] = ACTIONS(2113), - [aux_sym_cmd_identifier_token38] = ACTIONS(2113), - [aux_sym_cmd_identifier_token39] = ACTIONS(2113), - [aux_sym_cmd_identifier_token40] = ACTIONS(2113), - [anon_sym_def] = ACTIONS(2113), - [anon_sym_export_DASHenv] = ACTIONS(2113), - [anon_sym_extern] = ACTIONS(2113), - [anon_sym_module] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2113), - [anon_sym_error] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_in] = ACTIONS(2113), - [anon_sym_loop] = ACTIONS(2113), - [anon_sym_make] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_do] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_else] = ACTIONS(2113), - [anon_sym_match] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_try] = ACTIONS(2113), - [anon_sym_catch] = ACTIONS(2113), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_source] = ACTIONS(2113), - [anon_sym_source_DASHenv] = ACTIONS(2113), - [anon_sym_register] = ACTIONS(2113), - [anon_sym_hide] = ACTIONS(2113), - [anon_sym_hide_DASHenv] = ACTIONS(2113), - [anon_sym_overlay] = ACTIONS(2113), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_as] = ACTIONS(2113), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2113), - [anon_sym_DOT_DOT2] = ACTIONS(2115), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2117), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2117), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2113), - [aux_sym__val_number_decimal_token1] = ACTIONS(2113), - [aux_sym__val_number_decimal_token2] = ACTIONS(2113), - [aux_sym__val_number_decimal_token3] = ACTIONS(2113), - [aux_sym__val_number_decimal_token4] = ACTIONS(2113), - [aux_sym__val_number_token1] = ACTIONS(2113), - [aux_sym__val_number_token2] = ACTIONS(2113), - [aux_sym__val_number_token3] = ACTIONS(2113), - [anon_sym_DQUOTE] = ACTIONS(2113), - [sym__str_single_quotes] = ACTIONS(2113), - [sym__str_back_ticks] = ACTIONS(2113), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2113), - [sym__entry_separator] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2113), + [446] = { + [sym_cell_path] = STATE(679), + [sym_path] = STATE(569), + [sym_comment] = STATE(446), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(2086), + [anon_sym_alias] = ACTIONS(2086), + [anon_sym_let] = ACTIONS(2086), + [anon_sym_let_DASHenv] = ACTIONS(2086), + [anon_sym_mut] = ACTIONS(2086), + [anon_sym_const] = ACTIONS(2086), + [aux_sym_cmd_identifier_token1] = ACTIONS(2086), + [aux_sym_cmd_identifier_token2] = ACTIONS(2086), + [aux_sym_cmd_identifier_token3] = ACTIONS(2086), + [aux_sym_cmd_identifier_token4] = ACTIONS(2086), + [aux_sym_cmd_identifier_token5] = ACTIONS(2086), + [aux_sym_cmd_identifier_token6] = ACTIONS(2086), + [aux_sym_cmd_identifier_token7] = ACTIONS(2086), + [aux_sym_cmd_identifier_token8] = ACTIONS(2086), + [aux_sym_cmd_identifier_token9] = ACTIONS(2086), + [aux_sym_cmd_identifier_token10] = ACTIONS(2086), + [aux_sym_cmd_identifier_token11] = ACTIONS(2086), + [aux_sym_cmd_identifier_token12] = ACTIONS(2086), + [aux_sym_cmd_identifier_token13] = ACTIONS(2086), + [aux_sym_cmd_identifier_token14] = ACTIONS(2086), + [aux_sym_cmd_identifier_token15] = ACTIONS(2086), + [aux_sym_cmd_identifier_token16] = ACTIONS(2086), + [aux_sym_cmd_identifier_token17] = ACTIONS(2086), + [aux_sym_cmd_identifier_token18] = ACTIONS(2086), + [aux_sym_cmd_identifier_token19] = ACTIONS(2086), + [aux_sym_cmd_identifier_token20] = ACTIONS(2086), + [aux_sym_cmd_identifier_token21] = ACTIONS(2086), + [aux_sym_cmd_identifier_token22] = ACTIONS(2086), + [aux_sym_cmd_identifier_token23] = ACTIONS(2086), + [aux_sym_cmd_identifier_token24] = ACTIONS(2086), + [aux_sym_cmd_identifier_token25] = ACTIONS(2086), + [aux_sym_cmd_identifier_token26] = ACTIONS(2086), + [aux_sym_cmd_identifier_token27] = ACTIONS(2086), + [aux_sym_cmd_identifier_token28] = ACTIONS(2086), + [aux_sym_cmd_identifier_token29] = ACTIONS(2086), + [aux_sym_cmd_identifier_token30] = ACTIONS(2086), + [aux_sym_cmd_identifier_token31] = ACTIONS(2086), + [aux_sym_cmd_identifier_token32] = ACTIONS(2086), + [aux_sym_cmd_identifier_token33] = ACTIONS(2086), + [aux_sym_cmd_identifier_token34] = ACTIONS(2086), + [aux_sym_cmd_identifier_token35] = ACTIONS(2086), + [aux_sym_cmd_identifier_token36] = ACTIONS(2086), + [aux_sym_cmd_identifier_token37] = ACTIONS(2086), + [aux_sym_cmd_identifier_token38] = ACTIONS(2086), + [aux_sym_cmd_identifier_token39] = ACTIONS(2086), + [aux_sym_cmd_identifier_token40] = ACTIONS(2086), + [anon_sym_def] = ACTIONS(2086), + [anon_sym_export_DASHenv] = ACTIONS(2086), + [anon_sym_extern] = ACTIONS(2086), + [anon_sym_module] = ACTIONS(2086), + [anon_sym_use] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2086), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_error] = ACTIONS(2086), + [anon_sym_DASH2] = ACTIONS(2086), + [anon_sym_break] = ACTIONS(2086), + [anon_sym_continue] = ACTIONS(2086), + [anon_sym_for] = ACTIONS(2086), + [anon_sym_in2] = ACTIONS(2086), + [anon_sym_loop] = ACTIONS(2086), + [anon_sym_make] = ACTIONS(2086), + [anon_sym_while] = ACTIONS(2086), + [anon_sym_do] = ACTIONS(2086), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_else] = ACTIONS(2086), + [anon_sym_match] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_try] = ACTIONS(2086), + [anon_sym_catch] = ACTIONS(2086), + [anon_sym_return] = ACTIONS(2086), + [anon_sym_source] = ACTIONS(2086), + [anon_sym_source_DASHenv] = ACTIONS(2086), + [anon_sym_register] = ACTIONS(2086), + [anon_sym_hide] = ACTIONS(2086), + [anon_sym_hide_DASHenv] = ACTIONS(2086), + [anon_sym_overlay] = ACTIONS(2086), + [anon_sym_as] = ACTIONS(2086), + [anon_sym_PLUS2] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2086), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2086), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2086), + [aux_sym__val_number_decimal_token3] = ACTIONS(2086), + [aux_sym__val_number_decimal_token4] = ACTIONS(2086), + [aux_sym__val_number_token1] = ACTIONS(2086), + [aux_sym__val_number_token2] = ACTIONS(2086), + [aux_sym__val_number_token3] = ACTIONS(2086), + [aux_sym__val_number_token4] = ACTIONS(2086), + [aux_sym__val_number_token5] = ACTIONS(2086), + [aux_sym__val_number_token6] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym__str_single_quotes] = ACTIONS(2086), + [sym__str_back_ticks] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2086), + [sym__entry_separator] = ACTIONS(2088), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2119), + [sym_raw_string_begin] = ACTIONS(2088), }, - [391] = { - [sym_expr_parenthesized] = STATE(4448), - [sym__spread_parenthesized] = STATE(4985), - [sym_val_range] = STATE(4986), - [sym__val_range] = STATE(7676), - [sym__val_range_with_end] = STATE(7463), - [sym__value] = STATE(4986), - [sym_val_nothing] = STATE(5010), - [sym_val_bool] = STATE(4627), - [sym__spread_variable] = STATE(4987), - [sym_val_variable] = STATE(4464), - [sym_val_number] = STATE(5010), - [sym__val_number_decimal] = STATE(4016), - [sym__val_number] = STATE(5054), - [sym_val_duration] = STATE(5010), - [sym_val_filesize] = STATE(5010), - [sym_val_binary] = STATE(5010), - [sym_val_string] = STATE(5010), - [sym__raw_str] = STATE(4660), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(5010), - [sym__inter_single_quotes] = STATE(5011), - [sym__inter_double_quotes] = STATE(5012), - [sym_val_list] = STATE(5010), - [sym__spread_list] = STATE(4985), - [sym_val_record] = STATE(5010), - [sym_val_table] = STATE(5010), - [sym_val_closure] = STATE(5010), - [sym__cmd_arg] = STATE(4992), - [sym_redirection] = STATE(4995), - [sym__flag] = STATE(4996), - [sym_short_flag] = STATE(4954), - [sym_long_flag] = STATE(4954), - [sym_unquoted] = STATE(4666), - [sym__unquoted_with_expr] = STATE(5004), - [sym__unquoted_anonymous_prefix] = STATE(6762), - [sym_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [anon_sym_null] = ACTIONS(2123), - [aux_sym_cmd_identifier_token38] = ACTIONS(2125), - [aux_sym_cmd_identifier_token39] = ACTIONS(2125), - [aux_sym_cmd_identifier_token40] = ACTIONS(2125), - [sym__newline] = ACTIONS(1939), - [sym__space] = ACTIONS(1941), - [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(2127), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_DASH_DASH] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_DOT_DOT] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2141), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2143), - [anon_sym_DOT_DOT_LT] = ACTIONS(2143), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2145), - [aux_sym__val_number_decimal_token1] = ACTIONS(2147), - [aux_sym__val_number_decimal_token2] = ACTIONS(2147), - [aux_sym__val_number_decimal_token3] = ACTIONS(2149), - [aux_sym__val_number_decimal_token4] = ACTIONS(2151), - [aux_sym__val_number_token1] = ACTIONS(2153), - [aux_sym__val_number_token2] = ACTIONS(2153), - [aux_sym__val_number_token3] = ACTIONS(2153), - [anon_sym_0b] = ACTIONS(2155), - [anon_sym_0o] = ACTIONS(2157), - [anon_sym_0x] = ACTIONS(2157), - [sym_val_date] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2161), - [sym__str_single_quotes] = ACTIONS(2163), - [sym__str_back_ticks] = ACTIONS(2163), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2167), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2169), - [anon_sym_err_GT] = ACTIONS(2171), - [anon_sym_out_GT] = ACTIONS(2171), - [anon_sym_e_GT] = ACTIONS(2171), - [anon_sym_o_GT] = ACTIONS(2171), - [anon_sym_err_PLUSout_GT] = ACTIONS(2171), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2171), - [anon_sym_o_PLUSe_GT] = ACTIONS(2171), - [anon_sym_e_PLUSo_GT] = ACTIONS(2171), - [anon_sym_err_GT_GT] = ACTIONS(2171), - [anon_sym_out_GT_GT] = ACTIONS(2171), - [anon_sym_e_GT_GT] = ACTIONS(2171), - [anon_sym_o_GT_GT] = ACTIONS(2171), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2171), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2171), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2171), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2171), - [aux_sym_unquoted_token1] = ACTIONS(2173), + [447] = { + [sym_cell_path] = STATE(640), + [sym_path] = STATE(569), + [sym_comment] = STATE(447), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_alias] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_let_DASHenv] = ACTIONS(2090), + [anon_sym_mut] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [aux_sym_cmd_identifier_token1] = ACTIONS(2090), + [aux_sym_cmd_identifier_token2] = ACTIONS(2090), + [aux_sym_cmd_identifier_token3] = ACTIONS(2090), + [aux_sym_cmd_identifier_token4] = ACTIONS(2090), + [aux_sym_cmd_identifier_token5] = ACTIONS(2090), + [aux_sym_cmd_identifier_token6] = ACTIONS(2090), + [aux_sym_cmd_identifier_token7] = ACTIONS(2090), + [aux_sym_cmd_identifier_token8] = ACTIONS(2090), + [aux_sym_cmd_identifier_token9] = ACTIONS(2090), + [aux_sym_cmd_identifier_token10] = ACTIONS(2090), + [aux_sym_cmd_identifier_token11] = ACTIONS(2090), + [aux_sym_cmd_identifier_token12] = ACTIONS(2090), + [aux_sym_cmd_identifier_token13] = ACTIONS(2090), + [aux_sym_cmd_identifier_token14] = ACTIONS(2090), + [aux_sym_cmd_identifier_token15] = ACTIONS(2090), + [aux_sym_cmd_identifier_token16] = ACTIONS(2090), + [aux_sym_cmd_identifier_token17] = ACTIONS(2090), + [aux_sym_cmd_identifier_token18] = ACTIONS(2090), + [aux_sym_cmd_identifier_token19] = ACTIONS(2090), + [aux_sym_cmd_identifier_token20] = ACTIONS(2090), + [aux_sym_cmd_identifier_token21] = ACTIONS(2090), + [aux_sym_cmd_identifier_token22] = ACTIONS(2090), + [aux_sym_cmd_identifier_token23] = ACTIONS(2090), + [aux_sym_cmd_identifier_token24] = ACTIONS(2090), + [aux_sym_cmd_identifier_token25] = ACTIONS(2090), + [aux_sym_cmd_identifier_token26] = ACTIONS(2090), + [aux_sym_cmd_identifier_token27] = ACTIONS(2090), + [aux_sym_cmd_identifier_token28] = ACTIONS(2090), + [aux_sym_cmd_identifier_token29] = ACTIONS(2090), + [aux_sym_cmd_identifier_token30] = ACTIONS(2090), + [aux_sym_cmd_identifier_token31] = ACTIONS(2090), + [aux_sym_cmd_identifier_token32] = ACTIONS(2090), + [aux_sym_cmd_identifier_token33] = ACTIONS(2090), + [aux_sym_cmd_identifier_token34] = ACTIONS(2090), + [aux_sym_cmd_identifier_token35] = ACTIONS(2090), + [aux_sym_cmd_identifier_token36] = ACTIONS(2090), + [aux_sym_cmd_identifier_token37] = ACTIONS(2090), + [aux_sym_cmd_identifier_token38] = ACTIONS(2090), + [aux_sym_cmd_identifier_token39] = ACTIONS(2090), + [aux_sym_cmd_identifier_token40] = ACTIONS(2090), + [anon_sym_def] = ACTIONS(2090), + [anon_sym_export_DASHenv] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_use] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_DOLLAR] = ACTIONS(2090), + [anon_sym_error] = ACTIONS(2090), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_in2] = ACTIONS(2090), + [anon_sym_loop] = ACTIONS(2090), + [anon_sym_make] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_match] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_catch] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_source] = ACTIONS(2090), + [anon_sym_source_DASHenv] = ACTIONS(2090), + [anon_sym_register] = ACTIONS(2090), + [anon_sym_hide] = ACTIONS(2090), + [anon_sym_hide_DASHenv] = ACTIONS(2090), + [anon_sym_overlay] = ACTIONS(2090), + [anon_sym_as] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2090), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2090), + [aux_sym__val_number_decimal_token1] = ACTIONS(2090), + [aux_sym__val_number_decimal_token2] = ACTIONS(2090), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), + [aux_sym__val_number_token1] = ACTIONS(2090), + [aux_sym__val_number_token2] = ACTIONS(2090), + [aux_sym__val_number_token3] = ACTIONS(2090), + [aux_sym__val_number_token4] = ACTIONS(2090), + [aux_sym__val_number_token5] = ACTIONS(2090), + [aux_sym__val_number_token6] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym__str_single_quotes] = ACTIONS(2090), + [sym__str_back_ticks] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2090), + [sym__entry_separator] = ACTIONS(2092), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2175), + [sym_raw_string_begin] = ACTIONS(2092), }, - [392] = { - [sym_cell_path] = STATE(671), - [sym_path] = STATE(631), - [sym_comment] = STATE(392), - [aux_sym_cell_path_repeat1] = STATE(456), - [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(1995), - [anon_sym_false] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1995), - [aux_sym_cmd_identifier_token40] = ACTIONS(1995), - [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(1995), - [anon_sym_DOLLAR] = ACTIONS(1995), - [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(1995), - [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(1995), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1995), - [aux_sym__val_number_decimal_token3] = ACTIONS(1995), - [aux_sym__val_number_decimal_token4] = ACTIONS(1995), - [aux_sym__val_number_token1] = ACTIONS(1995), - [aux_sym__val_number_token2] = ACTIONS(1995), - [aux_sym__val_number_token3] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(1995), - [sym__str_single_quotes] = ACTIONS(1995), - [sym__str_back_ticks] = ACTIONS(1995), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1995), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1995), + [448] = { + [sym_cell_path] = STATE(685), + [sym_path] = STATE(569), + [sym_comment] = STATE(448), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(2094), + [anon_sym_alias] = ACTIONS(2094), + [anon_sym_let] = ACTIONS(2094), + [anon_sym_let_DASHenv] = ACTIONS(2094), + [anon_sym_mut] = ACTIONS(2094), + [anon_sym_const] = ACTIONS(2094), + [aux_sym_cmd_identifier_token1] = ACTIONS(2094), + [aux_sym_cmd_identifier_token2] = ACTIONS(2094), + [aux_sym_cmd_identifier_token3] = ACTIONS(2094), + [aux_sym_cmd_identifier_token4] = ACTIONS(2094), + [aux_sym_cmd_identifier_token5] = ACTIONS(2094), + [aux_sym_cmd_identifier_token6] = ACTIONS(2094), + [aux_sym_cmd_identifier_token7] = ACTIONS(2094), + [aux_sym_cmd_identifier_token8] = ACTIONS(2094), + [aux_sym_cmd_identifier_token9] = ACTIONS(2094), + [aux_sym_cmd_identifier_token10] = ACTIONS(2094), + [aux_sym_cmd_identifier_token11] = ACTIONS(2094), + [aux_sym_cmd_identifier_token12] = ACTIONS(2094), + [aux_sym_cmd_identifier_token13] = ACTIONS(2094), + [aux_sym_cmd_identifier_token14] = ACTIONS(2094), + [aux_sym_cmd_identifier_token15] = ACTIONS(2094), + [aux_sym_cmd_identifier_token16] = ACTIONS(2094), + [aux_sym_cmd_identifier_token17] = ACTIONS(2094), + [aux_sym_cmd_identifier_token18] = ACTIONS(2094), + [aux_sym_cmd_identifier_token19] = ACTIONS(2094), + [aux_sym_cmd_identifier_token20] = ACTIONS(2094), + [aux_sym_cmd_identifier_token21] = ACTIONS(2094), + [aux_sym_cmd_identifier_token22] = ACTIONS(2094), + [aux_sym_cmd_identifier_token23] = ACTIONS(2094), + [aux_sym_cmd_identifier_token24] = ACTIONS(2094), + [aux_sym_cmd_identifier_token25] = ACTIONS(2094), + [aux_sym_cmd_identifier_token26] = ACTIONS(2094), + [aux_sym_cmd_identifier_token27] = ACTIONS(2094), + [aux_sym_cmd_identifier_token28] = ACTIONS(2094), + [aux_sym_cmd_identifier_token29] = ACTIONS(2094), + [aux_sym_cmd_identifier_token30] = ACTIONS(2094), + [aux_sym_cmd_identifier_token31] = ACTIONS(2094), + [aux_sym_cmd_identifier_token32] = ACTIONS(2094), + [aux_sym_cmd_identifier_token33] = ACTIONS(2094), + [aux_sym_cmd_identifier_token34] = ACTIONS(2094), + [aux_sym_cmd_identifier_token35] = ACTIONS(2094), + [aux_sym_cmd_identifier_token36] = ACTIONS(2094), + [aux_sym_cmd_identifier_token37] = ACTIONS(2094), + [aux_sym_cmd_identifier_token38] = ACTIONS(2094), + [aux_sym_cmd_identifier_token39] = ACTIONS(2094), + [aux_sym_cmd_identifier_token40] = ACTIONS(2094), + [anon_sym_def] = ACTIONS(2094), + [anon_sym_export_DASHenv] = ACTIONS(2094), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_module] = ACTIONS(2094), + [anon_sym_use] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(2094), + [anon_sym_DOLLAR] = ACTIONS(2094), + [anon_sym_error] = ACTIONS(2094), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_in2] = ACTIONS(2094), + [anon_sym_loop] = ACTIONS(2094), + [anon_sym_make] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_do] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_else] = ACTIONS(2094), + [anon_sym_match] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_try] = ACTIONS(2094), + [anon_sym_catch] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_source] = ACTIONS(2094), + [anon_sym_source_DASHenv] = ACTIONS(2094), + [anon_sym_register] = ACTIONS(2094), + [anon_sym_hide] = ACTIONS(2094), + [anon_sym_hide_DASHenv] = ACTIONS(2094), + [anon_sym_overlay] = ACTIONS(2094), + [anon_sym_as] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2094), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2094), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2094), + [aux_sym__val_number_decimal_token1] = ACTIONS(2094), + [aux_sym__val_number_decimal_token2] = ACTIONS(2094), + [aux_sym__val_number_decimal_token3] = ACTIONS(2094), + [aux_sym__val_number_decimal_token4] = ACTIONS(2094), + [aux_sym__val_number_token1] = ACTIONS(2094), + [aux_sym__val_number_token2] = ACTIONS(2094), + [aux_sym__val_number_token3] = ACTIONS(2094), + [aux_sym__val_number_token4] = ACTIONS(2094), + [aux_sym__val_number_token5] = ACTIONS(2094), + [aux_sym__val_number_token6] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(2094), + [sym__str_single_quotes] = ACTIONS(2094), + [sym__str_back_ticks] = ACTIONS(2094), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2094), + [sym__entry_separator] = ACTIONS(2096), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2096), }, - [393] = { - [sym_cell_path] = STATE(672), - [sym_path] = STATE(631), - [sym_comment] = STATE(393), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(1997), - [anon_sym_alias] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_let_DASHenv] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [aux_sym_cmd_identifier_token1] = ACTIONS(1997), - [aux_sym_cmd_identifier_token2] = ACTIONS(1997), - [aux_sym_cmd_identifier_token3] = ACTIONS(1997), - [aux_sym_cmd_identifier_token4] = ACTIONS(1997), - [aux_sym_cmd_identifier_token5] = ACTIONS(1997), - [aux_sym_cmd_identifier_token6] = ACTIONS(1997), - [aux_sym_cmd_identifier_token7] = ACTIONS(1997), - [aux_sym_cmd_identifier_token8] = ACTIONS(1997), - [aux_sym_cmd_identifier_token9] = ACTIONS(1997), - [aux_sym_cmd_identifier_token10] = ACTIONS(1997), - [aux_sym_cmd_identifier_token11] = ACTIONS(1997), - [aux_sym_cmd_identifier_token12] = ACTIONS(1997), - [aux_sym_cmd_identifier_token13] = ACTIONS(1997), - [aux_sym_cmd_identifier_token14] = ACTIONS(1997), - [aux_sym_cmd_identifier_token15] = ACTIONS(1997), - [aux_sym_cmd_identifier_token16] = ACTIONS(1997), - [aux_sym_cmd_identifier_token17] = ACTIONS(1997), - [aux_sym_cmd_identifier_token18] = ACTIONS(1997), - [aux_sym_cmd_identifier_token19] = ACTIONS(1997), - [aux_sym_cmd_identifier_token20] = ACTIONS(1997), - [aux_sym_cmd_identifier_token21] = ACTIONS(1997), - [aux_sym_cmd_identifier_token22] = ACTIONS(1997), - [aux_sym_cmd_identifier_token23] = ACTIONS(1997), - [aux_sym_cmd_identifier_token24] = ACTIONS(1997), - [aux_sym_cmd_identifier_token25] = ACTIONS(1997), - [aux_sym_cmd_identifier_token26] = ACTIONS(1997), - [aux_sym_cmd_identifier_token27] = ACTIONS(1997), - [aux_sym_cmd_identifier_token28] = ACTIONS(1997), - [aux_sym_cmd_identifier_token29] = ACTIONS(1997), - [aux_sym_cmd_identifier_token30] = ACTIONS(1997), - [aux_sym_cmd_identifier_token31] = ACTIONS(1997), - [aux_sym_cmd_identifier_token32] = ACTIONS(1997), - [aux_sym_cmd_identifier_token33] = ACTIONS(1997), - [aux_sym_cmd_identifier_token34] = ACTIONS(1997), - [aux_sym_cmd_identifier_token35] = ACTIONS(1997), - [aux_sym_cmd_identifier_token36] = ACTIONS(1997), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [aux_sym_cmd_identifier_token38] = ACTIONS(1997), - [aux_sym_cmd_identifier_token39] = ACTIONS(1999), - [aux_sym_cmd_identifier_token40] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1997), - [anon_sym_export_DASHenv] = ACTIONS(1997), - [anon_sym_extern] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_use] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1999), - [anon_sym_error] = ACTIONS(1997), - [anon_sym_list] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_in] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_make] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_else] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1997), - [anon_sym_catch] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_source] = ACTIONS(1997), - [anon_sym_source_DASHenv] = ACTIONS(1997), - [anon_sym_register] = ACTIONS(1997), - [anon_sym_hide] = ACTIONS(1997), - [anon_sym_hide_DASHenv] = ACTIONS(1997), - [anon_sym_overlay] = ACTIONS(1997), - [anon_sym_new] = ACTIONS(1997), - [anon_sym_as] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [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(1997), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1999), + [449] = { + [sym_cell_path] = STATE(610), + [sym_path] = STATE(569), + [sym_comment] = STATE(449), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(2098), + [anon_sym_alias] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_let_DASHenv] = ACTIONS(2098), + [anon_sym_mut] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [aux_sym_cmd_identifier_token1] = ACTIONS(2098), + [aux_sym_cmd_identifier_token2] = ACTIONS(2098), + [aux_sym_cmd_identifier_token3] = ACTIONS(2098), + [aux_sym_cmd_identifier_token4] = ACTIONS(2098), + [aux_sym_cmd_identifier_token5] = ACTIONS(2098), + [aux_sym_cmd_identifier_token6] = ACTIONS(2098), + [aux_sym_cmd_identifier_token7] = ACTIONS(2098), + [aux_sym_cmd_identifier_token8] = ACTIONS(2098), + [aux_sym_cmd_identifier_token9] = ACTIONS(2098), + [aux_sym_cmd_identifier_token10] = ACTIONS(2098), + [aux_sym_cmd_identifier_token11] = ACTIONS(2098), + [aux_sym_cmd_identifier_token12] = ACTIONS(2098), + [aux_sym_cmd_identifier_token13] = ACTIONS(2098), + [aux_sym_cmd_identifier_token14] = ACTIONS(2098), + [aux_sym_cmd_identifier_token15] = ACTIONS(2098), + [aux_sym_cmd_identifier_token16] = ACTIONS(2098), + [aux_sym_cmd_identifier_token17] = ACTIONS(2098), + [aux_sym_cmd_identifier_token18] = ACTIONS(2098), + [aux_sym_cmd_identifier_token19] = ACTIONS(2098), + [aux_sym_cmd_identifier_token20] = ACTIONS(2098), + [aux_sym_cmd_identifier_token21] = ACTIONS(2098), + [aux_sym_cmd_identifier_token22] = ACTIONS(2098), + [aux_sym_cmd_identifier_token23] = ACTIONS(2098), + [aux_sym_cmd_identifier_token24] = ACTIONS(2098), + [aux_sym_cmd_identifier_token25] = ACTIONS(2098), + [aux_sym_cmd_identifier_token26] = ACTIONS(2098), + [aux_sym_cmd_identifier_token27] = ACTIONS(2098), + [aux_sym_cmd_identifier_token28] = ACTIONS(2098), + [aux_sym_cmd_identifier_token29] = ACTIONS(2098), + [aux_sym_cmd_identifier_token30] = ACTIONS(2098), + [aux_sym_cmd_identifier_token31] = ACTIONS(2098), + [aux_sym_cmd_identifier_token32] = ACTIONS(2098), + [aux_sym_cmd_identifier_token33] = ACTIONS(2098), + [aux_sym_cmd_identifier_token34] = ACTIONS(2098), + [aux_sym_cmd_identifier_token35] = ACTIONS(2098), + [aux_sym_cmd_identifier_token36] = ACTIONS(2098), + [aux_sym_cmd_identifier_token37] = ACTIONS(2098), + [aux_sym_cmd_identifier_token38] = ACTIONS(2098), + [aux_sym_cmd_identifier_token39] = ACTIONS(2098), + [aux_sym_cmd_identifier_token40] = ACTIONS(2098), + [anon_sym_def] = ACTIONS(2098), + [anon_sym_export_DASHenv] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_module] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2098), + [anon_sym_error] = ACTIONS(2098), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_in2] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_make] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_do] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_else] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_try] = ACTIONS(2098), + [anon_sym_catch] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_source] = ACTIONS(2098), + [anon_sym_source_DASHenv] = ACTIONS(2098), + [anon_sym_register] = ACTIONS(2098), + [anon_sym_hide] = ACTIONS(2098), + [anon_sym_hide_DASHenv] = ACTIONS(2098), + [anon_sym_overlay] = ACTIONS(2098), + [anon_sym_as] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2098), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2098), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2098), + [aux_sym__val_number_decimal_token1] = ACTIONS(2098), + [aux_sym__val_number_decimal_token2] = ACTIONS(2098), + [aux_sym__val_number_decimal_token3] = ACTIONS(2098), + [aux_sym__val_number_decimal_token4] = ACTIONS(2098), + [aux_sym__val_number_token1] = ACTIONS(2098), + [aux_sym__val_number_token2] = ACTIONS(2098), + [aux_sym__val_number_token3] = ACTIONS(2098), + [aux_sym__val_number_token4] = ACTIONS(2098), + [aux_sym__val_number_token5] = ACTIONS(2098), + [aux_sym__val_number_token6] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym__str_single_quotes] = ACTIONS(2098), + [sym__str_back_ticks] = ACTIONS(2098), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2098), + [sym__entry_separator] = ACTIONS(2100), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2100), }, - [394] = { - [sym_cell_path] = STATE(673), - [sym_path] = STATE(631), - [sym_comment] = STATE(394), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2001), - [anon_sym_alias] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_let_DASHenv] = ACTIONS(2001), - [anon_sym_mut] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(2001), - [aux_sym_cmd_identifier_token1] = ACTIONS(2001), - [aux_sym_cmd_identifier_token2] = ACTIONS(2001), - [aux_sym_cmd_identifier_token3] = ACTIONS(2001), - [aux_sym_cmd_identifier_token4] = ACTIONS(2001), - [aux_sym_cmd_identifier_token5] = ACTIONS(2001), - [aux_sym_cmd_identifier_token6] = ACTIONS(2001), - [aux_sym_cmd_identifier_token7] = ACTIONS(2001), - [aux_sym_cmd_identifier_token8] = ACTIONS(2001), - [aux_sym_cmd_identifier_token9] = ACTIONS(2001), - [aux_sym_cmd_identifier_token10] = ACTIONS(2001), - [aux_sym_cmd_identifier_token11] = ACTIONS(2001), - [aux_sym_cmd_identifier_token12] = ACTIONS(2001), - [aux_sym_cmd_identifier_token13] = ACTIONS(2001), - [aux_sym_cmd_identifier_token14] = ACTIONS(2001), - [aux_sym_cmd_identifier_token15] = ACTIONS(2001), - [aux_sym_cmd_identifier_token16] = ACTIONS(2001), - [aux_sym_cmd_identifier_token17] = ACTIONS(2001), - [aux_sym_cmd_identifier_token18] = ACTIONS(2001), - [aux_sym_cmd_identifier_token19] = ACTIONS(2001), - [aux_sym_cmd_identifier_token20] = ACTIONS(2001), - [aux_sym_cmd_identifier_token21] = ACTIONS(2001), - [aux_sym_cmd_identifier_token22] = ACTIONS(2001), - [aux_sym_cmd_identifier_token23] = ACTIONS(2001), - [aux_sym_cmd_identifier_token24] = ACTIONS(2001), - [aux_sym_cmd_identifier_token25] = ACTIONS(2001), - [aux_sym_cmd_identifier_token26] = ACTIONS(2001), - [aux_sym_cmd_identifier_token27] = ACTIONS(2001), - [aux_sym_cmd_identifier_token28] = ACTIONS(2001), - [aux_sym_cmd_identifier_token29] = ACTIONS(2001), - [aux_sym_cmd_identifier_token30] = ACTIONS(2001), - [aux_sym_cmd_identifier_token31] = ACTIONS(2001), - [aux_sym_cmd_identifier_token32] = ACTIONS(2001), - [aux_sym_cmd_identifier_token33] = ACTIONS(2001), - [aux_sym_cmd_identifier_token34] = ACTIONS(2001), - [aux_sym_cmd_identifier_token35] = ACTIONS(2001), - [aux_sym_cmd_identifier_token36] = ACTIONS(2001), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [aux_sym_cmd_identifier_token38] = ACTIONS(2001), - [aux_sym_cmd_identifier_token39] = ACTIONS(2003), - [aux_sym_cmd_identifier_token40] = ACTIONS(2003), - [anon_sym_def] = ACTIONS(2001), - [anon_sym_export_DASHenv] = ACTIONS(2001), - [anon_sym_extern] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_use] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2003), - [anon_sym_error] = ACTIONS(2001), - [anon_sym_list] = ACTIONS(2001), - [anon_sym_DASH] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2001), - [anon_sym_continue] = ACTIONS(2001), - [anon_sym_for] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_loop] = ACTIONS(2001), - [anon_sym_make] = ACTIONS(2001), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(2001), - [anon_sym_if] = ACTIONS(2001), - [anon_sym_else] = ACTIONS(2001), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2001), - [anon_sym_catch] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2001), - [anon_sym_source] = ACTIONS(2001), - [anon_sym_source_DASHenv] = ACTIONS(2001), - [anon_sym_register] = ACTIONS(2001), - [anon_sym_hide] = ACTIONS(2001), - [anon_sym_hide_DASHenv] = ACTIONS(2001), - [anon_sym_overlay] = ACTIONS(2001), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2003), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2003), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2003), - [aux_sym__val_number_decimal_token3] = ACTIONS(2003), - [aux_sym__val_number_decimal_token4] = ACTIONS(2003), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [sym__str_single_quotes] = ACTIONS(2003), - [sym__str_back_ticks] = ACTIONS(2003), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2001), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2003), + [450] = { + [sym_cell_path] = STATE(693), + [sym_path] = STATE(569), + [sym_comment] = STATE(450), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(2102), + [anon_sym_alias] = ACTIONS(2102), + [anon_sym_let] = ACTIONS(2102), + [anon_sym_let_DASHenv] = ACTIONS(2102), + [anon_sym_mut] = ACTIONS(2102), + [anon_sym_const] = ACTIONS(2102), + [aux_sym_cmd_identifier_token1] = ACTIONS(2102), + [aux_sym_cmd_identifier_token2] = ACTIONS(2102), + [aux_sym_cmd_identifier_token3] = ACTIONS(2102), + [aux_sym_cmd_identifier_token4] = ACTIONS(2102), + [aux_sym_cmd_identifier_token5] = ACTIONS(2102), + [aux_sym_cmd_identifier_token6] = ACTIONS(2102), + [aux_sym_cmd_identifier_token7] = ACTIONS(2102), + [aux_sym_cmd_identifier_token8] = ACTIONS(2102), + [aux_sym_cmd_identifier_token9] = ACTIONS(2102), + [aux_sym_cmd_identifier_token10] = ACTIONS(2102), + [aux_sym_cmd_identifier_token11] = ACTIONS(2102), + [aux_sym_cmd_identifier_token12] = ACTIONS(2102), + [aux_sym_cmd_identifier_token13] = ACTIONS(2102), + [aux_sym_cmd_identifier_token14] = ACTIONS(2102), + [aux_sym_cmd_identifier_token15] = ACTIONS(2102), + [aux_sym_cmd_identifier_token16] = ACTIONS(2102), + [aux_sym_cmd_identifier_token17] = ACTIONS(2102), + [aux_sym_cmd_identifier_token18] = ACTIONS(2102), + [aux_sym_cmd_identifier_token19] = ACTIONS(2102), + [aux_sym_cmd_identifier_token20] = ACTIONS(2102), + [aux_sym_cmd_identifier_token21] = ACTIONS(2102), + [aux_sym_cmd_identifier_token22] = ACTIONS(2102), + [aux_sym_cmd_identifier_token23] = ACTIONS(2102), + [aux_sym_cmd_identifier_token24] = ACTIONS(2102), + [aux_sym_cmd_identifier_token25] = ACTIONS(2102), + [aux_sym_cmd_identifier_token26] = ACTIONS(2102), + [aux_sym_cmd_identifier_token27] = ACTIONS(2102), + [aux_sym_cmd_identifier_token28] = ACTIONS(2102), + [aux_sym_cmd_identifier_token29] = ACTIONS(2102), + [aux_sym_cmd_identifier_token30] = ACTIONS(2102), + [aux_sym_cmd_identifier_token31] = ACTIONS(2102), + [aux_sym_cmd_identifier_token32] = ACTIONS(2102), + [aux_sym_cmd_identifier_token33] = ACTIONS(2102), + [aux_sym_cmd_identifier_token34] = ACTIONS(2102), + [aux_sym_cmd_identifier_token35] = ACTIONS(2102), + [aux_sym_cmd_identifier_token36] = ACTIONS(2102), + [aux_sym_cmd_identifier_token37] = ACTIONS(2102), + [aux_sym_cmd_identifier_token38] = ACTIONS(2102), + [aux_sym_cmd_identifier_token39] = ACTIONS(2102), + [aux_sym_cmd_identifier_token40] = ACTIONS(2102), + [anon_sym_def] = ACTIONS(2102), + [anon_sym_export_DASHenv] = ACTIONS(2102), + [anon_sym_extern] = ACTIONS(2102), + [anon_sym_module] = ACTIONS(2102), + [anon_sym_use] = ACTIONS(2102), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_DOLLAR] = ACTIONS(2102), + [anon_sym_error] = ACTIONS(2102), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_break] = ACTIONS(2102), + [anon_sym_continue] = ACTIONS(2102), + [anon_sym_for] = ACTIONS(2102), + [anon_sym_in2] = ACTIONS(2102), + [anon_sym_loop] = ACTIONS(2102), + [anon_sym_make] = ACTIONS(2102), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2102), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_else] = ACTIONS(2102), + [anon_sym_match] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2102), + [anon_sym_catch] = ACTIONS(2102), + [anon_sym_return] = ACTIONS(2102), + [anon_sym_source] = ACTIONS(2102), + [anon_sym_source_DASHenv] = ACTIONS(2102), + [anon_sym_register] = ACTIONS(2102), + [anon_sym_hide] = ACTIONS(2102), + [anon_sym_hide_DASHenv] = ACTIONS(2102), + [anon_sym_overlay] = ACTIONS(2102), + [anon_sym_as] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2102), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2102), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2102), + [aux_sym__val_number_decimal_token1] = ACTIONS(2102), + [aux_sym__val_number_decimal_token2] = ACTIONS(2102), + [aux_sym__val_number_decimal_token3] = ACTIONS(2102), + [aux_sym__val_number_decimal_token4] = ACTIONS(2102), + [aux_sym__val_number_token1] = ACTIONS(2102), + [aux_sym__val_number_token2] = ACTIONS(2102), + [aux_sym__val_number_token3] = ACTIONS(2102), + [aux_sym__val_number_token4] = ACTIONS(2102), + [aux_sym__val_number_token5] = ACTIONS(2102), + [aux_sym__val_number_token6] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2102), + [sym__str_single_quotes] = ACTIONS(2102), + [sym__str_back_ticks] = ACTIONS(2102), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2102), + [sym__entry_separator] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2104), }, - [395] = { - [sym_cell_path] = STATE(674), - [sym_path] = STATE(631), - [sym_comment] = STATE(395), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_alias] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_let_DASHenv] = ACTIONS(2005), - [anon_sym_mut] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [aux_sym_cmd_identifier_token1] = ACTIONS(2005), - [aux_sym_cmd_identifier_token2] = ACTIONS(2005), - [aux_sym_cmd_identifier_token3] = ACTIONS(2005), - [aux_sym_cmd_identifier_token4] = ACTIONS(2005), - [aux_sym_cmd_identifier_token5] = ACTIONS(2005), - [aux_sym_cmd_identifier_token6] = ACTIONS(2005), - [aux_sym_cmd_identifier_token7] = ACTIONS(2005), - [aux_sym_cmd_identifier_token8] = ACTIONS(2005), - [aux_sym_cmd_identifier_token9] = ACTIONS(2005), - [aux_sym_cmd_identifier_token10] = ACTIONS(2005), - [aux_sym_cmd_identifier_token11] = ACTIONS(2005), - [aux_sym_cmd_identifier_token12] = ACTIONS(2005), - [aux_sym_cmd_identifier_token13] = ACTIONS(2005), - [aux_sym_cmd_identifier_token14] = ACTIONS(2005), - [aux_sym_cmd_identifier_token15] = ACTIONS(2005), - [aux_sym_cmd_identifier_token16] = ACTIONS(2005), - [aux_sym_cmd_identifier_token17] = ACTIONS(2005), - [aux_sym_cmd_identifier_token18] = ACTIONS(2005), - [aux_sym_cmd_identifier_token19] = ACTIONS(2005), - [aux_sym_cmd_identifier_token20] = ACTIONS(2005), - [aux_sym_cmd_identifier_token21] = ACTIONS(2005), - [aux_sym_cmd_identifier_token22] = ACTIONS(2005), - [aux_sym_cmd_identifier_token23] = ACTIONS(2005), - [aux_sym_cmd_identifier_token24] = ACTIONS(2005), - [aux_sym_cmd_identifier_token25] = ACTIONS(2005), - [aux_sym_cmd_identifier_token26] = ACTIONS(2005), - [aux_sym_cmd_identifier_token27] = ACTIONS(2005), - [aux_sym_cmd_identifier_token28] = ACTIONS(2005), - [aux_sym_cmd_identifier_token29] = ACTIONS(2005), - [aux_sym_cmd_identifier_token30] = ACTIONS(2005), - [aux_sym_cmd_identifier_token31] = ACTIONS(2005), - [aux_sym_cmd_identifier_token32] = ACTIONS(2005), - [aux_sym_cmd_identifier_token33] = ACTIONS(2005), - [aux_sym_cmd_identifier_token34] = ACTIONS(2005), - [aux_sym_cmd_identifier_token35] = ACTIONS(2005), - [aux_sym_cmd_identifier_token36] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [aux_sym_cmd_identifier_token38] = ACTIONS(2005), - [aux_sym_cmd_identifier_token39] = ACTIONS(2007), - [aux_sym_cmd_identifier_token40] = ACTIONS(2007), - [anon_sym_def] = ACTIONS(2005), - [anon_sym_export_DASHenv] = ACTIONS(2005), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_error] = ACTIONS(2005), - [anon_sym_list] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_in] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_make] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_do] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_else] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2005), - [anon_sym_catch] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_source] = ACTIONS(2005), - [anon_sym_source_DASHenv] = ACTIONS(2005), - [anon_sym_register] = ACTIONS(2005), - [anon_sym_hide] = ACTIONS(2005), - [anon_sym_hide_DASHenv] = ACTIONS(2005), - [anon_sym_overlay] = ACTIONS(2005), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_as] = ACTIONS(2005), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2007), - [aux_sym__val_number_decimal_token1] = ACTIONS(2005), - [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), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2007), + [451] = { + [sym_cell_path] = STATE(634), + [sym_path] = STATE(569), + [sym_comment] = STATE(451), + [aux_sym_cell_path_repeat1] = STATE(458), + [anon_sym_export] = ACTIONS(2106), + [anon_sym_alias] = ACTIONS(2106), + [anon_sym_let] = ACTIONS(2106), + [anon_sym_let_DASHenv] = ACTIONS(2106), + [anon_sym_mut] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [aux_sym_cmd_identifier_token1] = ACTIONS(2106), + [aux_sym_cmd_identifier_token2] = ACTIONS(2106), + [aux_sym_cmd_identifier_token3] = ACTIONS(2106), + [aux_sym_cmd_identifier_token4] = ACTIONS(2106), + [aux_sym_cmd_identifier_token5] = ACTIONS(2106), + [aux_sym_cmd_identifier_token6] = ACTIONS(2106), + [aux_sym_cmd_identifier_token7] = ACTIONS(2106), + [aux_sym_cmd_identifier_token8] = ACTIONS(2106), + [aux_sym_cmd_identifier_token9] = ACTIONS(2106), + [aux_sym_cmd_identifier_token10] = ACTIONS(2106), + [aux_sym_cmd_identifier_token11] = ACTIONS(2106), + [aux_sym_cmd_identifier_token12] = ACTIONS(2106), + [aux_sym_cmd_identifier_token13] = ACTIONS(2106), + [aux_sym_cmd_identifier_token14] = ACTIONS(2106), + [aux_sym_cmd_identifier_token15] = ACTIONS(2106), + [aux_sym_cmd_identifier_token16] = ACTIONS(2106), + [aux_sym_cmd_identifier_token17] = ACTIONS(2106), + [aux_sym_cmd_identifier_token18] = ACTIONS(2106), + [aux_sym_cmd_identifier_token19] = ACTIONS(2106), + [aux_sym_cmd_identifier_token20] = ACTIONS(2106), + [aux_sym_cmd_identifier_token21] = ACTIONS(2106), + [aux_sym_cmd_identifier_token22] = ACTIONS(2106), + [aux_sym_cmd_identifier_token23] = ACTIONS(2106), + [aux_sym_cmd_identifier_token24] = ACTIONS(2106), + [aux_sym_cmd_identifier_token25] = ACTIONS(2106), + [aux_sym_cmd_identifier_token26] = ACTIONS(2106), + [aux_sym_cmd_identifier_token27] = ACTIONS(2106), + [aux_sym_cmd_identifier_token28] = ACTIONS(2106), + [aux_sym_cmd_identifier_token29] = ACTIONS(2106), + [aux_sym_cmd_identifier_token30] = ACTIONS(2106), + [aux_sym_cmd_identifier_token31] = ACTIONS(2106), + [aux_sym_cmd_identifier_token32] = ACTIONS(2106), + [aux_sym_cmd_identifier_token33] = ACTIONS(2106), + [aux_sym_cmd_identifier_token34] = ACTIONS(2106), + [aux_sym_cmd_identifier_token35] = ACTIONS(2106), + [aux_sym_cmd_identifier_token36] = ACTIONS(2106), + [aux_sym_cmd_identifier_token37] = ACTIONS(2106), + [aux_sym_cmd_identifier_token38] = ACTIONS(2106), + [aux_sym_cmd_identifier_token39] = ACTIONS(2106), + [aux_sym_cmd_identifier_token40] = ACTIONS(2106), + [anon_sym_def] = ACTIONS(2106), + [anon_sym_export_DASHenv] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_module] = ACTIONS(2106), + [anon_sym_use] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2106), + [anon_sym_DOLLAR] = ACTIONS(2106), + [anon_sym_error] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in2] = ACTIONS(2106), + [anon_sym_loop] = ACTIONS(2106), + [anon_sym_make] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_do] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_else] = ACTIONS(2106), + [anon_sym_match] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_try] = ACTIONS(2106), + [anon_sym_catch] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_source] = ACTIONS(2106), + [anon_sym_source_DASHenv] = ACTIONS(2106), + [anon_sym_register] = ACTIONS(2106), + [anon_sym_hide] = ACTIONS(2106), + [anon_sym_hide_DASHenv] = ACTIONS(2106), + [anon_sym_overlay] = ACTIONS(2106), + [anon_sym_as] = ACTIONS(2106), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2106), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2106), + [aux_sym__val_number_decimal_token1] = ACTIONS(2106), + [aux_sym__val_number_decimal_token2] = ACTIONS(2106), + [aux_sym__val_number_decimal_token3] = ACTIONS(2106), + [aux_sym__val_number_decimal_token4] = ACTIONS(2106), + [aux_sym__val_number_token1] = ACTIONS(2106), + [aux_sym__val_number_token2] = ACTIONS(2106), + [aux_sym__val_number_token3] = ACTIONS(2106), + [aux_sym__val_number_token4] = ACTIONS(2106), + [aux_sym__val_number_token5] = ACTIONS(2106), + [aux_sym__val_number_token6] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym__str_single_quotes] = ACTIONS(2106), + [sym__str_back_ticks] = ACTIONS(2106), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2106), + [sym__entry_separator] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2108), }, - [396] = { - [sym_cell_path] = STATE(675), - [sym_path] = STATE(631), - [sym_comment] = STATE(396), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2009), - [anon_sym_alias] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_let_DASHenv] = ACTIONS(2009), - [anon_sym_mut] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [aux_sym_cmd_identifier_token1] = ACTIONS(2009), - [aux_sym_cmd_identifier_token2] = ACTIONS(2009), - [aux_sym_cmd_identifier_token3] = ACTIONS(2009), - [aux_sym_cmd_identifier_token4] = ACTIONS(2009), - [aux_sym_cmd_identifier_token5] = ACTIONS(2009), - [aux_sym_cmd_identifier_token6] = ACTIONS(2009), - [aux_sym_cmd_identifier_token7] = ACTIONS(2009), - [aux_sym_cmd_identifier_token8] = ACTIONS(2009), - [aux_sym_cmd_identifier_token9] = ACTIONS(2009), - [aux_sym_cmd_identifier_token10] = ACTIONS(2009), - [aux_sym_cmd_identifier_token11] = ACTIONS(2009), - [aux_sym_cmd_identifier_token12] = ACTIONS(2009), - [aux_sym_cmd_identifier_token13] = ACTIONS(2009), - [aux_sym_cmd_identifier_token14] = ACTIONS(2009), - [aux_sym_cmd_identifier_token15] = ACTIONS(2009), - [aux_sym_cmd_identifier_token16] = ACTIONS(2009), - [aux_sym_cmd_identifier_token17] = ACTIONS(2009), - [aux_sym_cmd_identifier_token18] = ACTIONS(2009), - [aux_sym_cmd_identifier_token19] = ACTIONS(2009), - [aux_sym_cmd_identifier_token20] = ACTIONS(2009), - [aux_sym_cmd_identifier_token21] = ACTIONS(2009), - [aux_sym_cmd_identifier_token22] = ACTIONS(2009), - [aux_sym_cmd_identifier_token23] = ACTIONS(2009), - [aux_sym_cmd_identifier_token24] = ACTIONS(2009), - [aux_sym_cmd_identifier_token25] = ACTIONS(2009), - [aux_sym_cmd_identifier_token26] = ACTIONS(2009), - [aux_sym_cmd_identifier_token27] = ACTIONS(2009), - [aux_sym_cmd_identifier_token28] = ACTIONS(2009), - [aux_sym_cmd_identifier_token29] = ACTIONS(2009), - [aux_sym_cmd_identifier_token30] = ACTIONS(2009), - [aux_sym_cmd_identifier_token31] = ACTIONS(2009), - [aux_sym_cmd_identifier_token32] = ACTIONS(2009), - [aux_sym_cmd_identifier_token33] = ACTIONS(2009), - [aux_sym_cmd_identifier_token34] = ACTIONS(2009), - [aux_sym_cmd_identifier_token35] = ACTIONS(2009), - [aux_sym_cmd_identifier_token36] = ACTIONS(2009), - [anon_sym_true] = ACTIONS(2011), - [anon_sym_false] = ACTIONS(2011), - [anon_sym_null] = ACTIONS(2011), - [aux_sym_cmd_identifier_token38] = ACTIONS(2009), - [aux_sym_cmd_identifier_token39] = ACTIONS(2011), - [aux_sym_cmd_identifier_token40] = ACTIONS(2011), - [anon_sym_def] = ACTIONS(2009), - [anon_sym_export_DASHenv] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_module] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2011), - [anon_sym_DOLLAR] = ACTIONS(2011), - [anon_sym_error] = ACTIONS(2009), - [anon_sym_list] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_in] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_make] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_do] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_try] = ACTIONS(2009), - [anon_sym_catch] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_source] = ACTIONS(2009), - [anon_sym_source_DASHenv] = ACTIONS(2009), - [anon_sym_register] = ACTIONS(2009), - [anon_sym_hide] = ACTIONS(2009), - [anon_sym_hide_DASHenv] = ACTIONS(2009), - [anon_sym_overlay] = ACTIONS(2009), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_as] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2011), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2011), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2011), - [aux_sym__val_number_decimal_token3] = ACTIONS(2011), - [aux_sym__val_number_decimal_token4] = ACTIONS(2011), - [aux_sym__val_number_token1] = ACTIONS(2011), - [aux_sym__val_number_token2] = ACTIONS(2011), - [aux_sym__val_number_token3] = ACTIONS(2011), - [anon_sym_DQUOTE] = ACTIONS(2011), - [sym__str_single_quotes] = ACTIONS(2011), - [sym__str_back_ticks] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2011), + [452] = { + [sym_comment] = STATE(452), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [aux_sym_cmd_identifier_token1] = ACTIONS(1014), + [aux_sym_cmd_identifier_token2] = ACTIONS(1014), + [aux_sym_cmd_identifier_token3] = ACTIONS(1014), + [aux_sym_cmd_identifier_token4] = ACTIONS(1014), + [aux_sym_cmd_identifier_token5] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [aux_sym_cmd_identifier_token7] = ACTIONS(1014), + [aux_sym_cmd_identifier_token8] = ACTIONS(1014), + [aux_sym_cmd_identifier_token9] = ACTIONS(1014), + [aux_sym_cmd_identifier_token10] = ACTIONS(1014), + [aux_sym_cmd_identifier_token11] = ACTIONS(1014), + [aux_sym_cmd_identifier_token12] = ACTIONS(1014), + [aux_sym_cmd_identifier_token13] = ACTIONS(1014), + [aux_sym_cmd_identifier_token14] = ACTIONS(1014), + [aux_sym_cmd_identifier_token15] = ACTIONS(1014), + [aux_sym_cmd_identifier_token16] = ACTIONS(1014), + [aux_sym_cmd_identifier_token17] = ACTIONS(1014), + [aux_sym_cmd_identifier_token18] = ACTIONS(1014), + [aux_sym_cmd_identifier_token19] = ACTIONS(1014), + [aux_sym_cmd_identifier_token20] = ACTIONS(1014), + [aux_sym_cmd_identifier_token21] = ACTIONS(1014), + [aux_sym_cmd_identifier_token22] = ACTIONS(1014), + [aux_sym_cmd_identifier_token23] = ACTIONS(1014), + [aux_sym_cmd_identifier_token24] = ACTIONS(1014), + [aux_sym_cmd_identifier_token25] = ACTIONS(1014), + [aux_sym_cmd_identifier_token26] = ACTIONS(1014), + [aux_sym_cmd_identifier_token27] = ACTIONS(1014), + [aux_sym_cmd_identifier_token28] = ACTIONS(1014), + [aux_sym_cmd_identifier_token29] = ACTIONS(1014), + [aux_sym_cmd_identifier_token30] = ACTIONS(1014), + [aux_sym_cmd_identifier_token31] = ACTIONS(1014), + [aux_sym_cmd_identifier_token32] = ACTIONS(1014), + [aux_sym_cmd_identifier_token33] = ACTIONS(1014), + [aux_sym_cmd_identifier_token34] = ACTIONS(1014), + [aux_sym_cmd_identifier_token35] = ACTIONS(1014), + [aux_sym_cmd_identifier_token36] = ACTIONS(1014), + [aux_sym_cmd_identifier_token37] = ACTIONS(1014), + [aux_sym_cmd_identifier_token38] = ACTIONS(1014), + [aux_sym_cmd_identifier_token39] = ACTIONS(1014), + [aux_sym_cmd_identifier_token40] = ACTIONS(1014), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_make] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_catch] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_as] = ACTIONS(1014), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1014), + [anon_sym_DOT_DOT2] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1014), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1014), + [aux_sym__val_number_decimal_token4] = ACTIONS(1014), + [aux_sym__val_number_token1] = ACTIONS(1014), + [aux_sym__val_number_token2] = ACTIONS(1014), + [aux_sym__val_number_token3] = ACTIONS(1014), + [aux_sym__val_number_token4] = ACTIONS(1014), + [aux_sym__val_number_token5] = ACTIONS(1014), + [aux_sym__val_number_token6] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym__str_single_quotes] = ACTIONS(1014), + [sym__str_back_ticks] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1014), + [sym__entry_separator] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1016), }, - [397] = { - [sym_cell_path] = STATE(652), - [sym_path] = STATE(631), - [sym_comment] = STATE(397), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(1893), - [anon_sym_alias] = ACTIONS(1893), - [anon_sym_let] = ACTIONS(1893), - [anon_sym_let_DASHenv] = ACTIONS(1893), - [anon_sym_mut] = ACTIONS(1893), - [anon_sym_const] = ACTIONS(1893), - [aux_sym_cmd_identifier_token1] = ACTIONS(1893), - [aux_sym_cmd_identifier_token2] = ACTIONS(1893), - [aux_sym_cmd_identifier_token3] = ACTIONS(1893), - [aux_sym_cmd_identifier_token4] = ACTIONS(1893), - [aux_sym_cmd_identifier_token5] = ACTIONS(1893), - [aux_sym_cmd_identifier_token6] = ACTIONS(1893), - [aux_sym_cmd_identifier_token7] = ACTIONS(1893), - [aux_sym_cmd_identifier_token8] = ACTIONS(1893), - [aux_sym_cmd_identifier_token9] = ACTIONS(1893), - [aux_sym_cmd_identifier_token10] = ACTIONS(1893), - [aux_sym_cmd_identifier_token11] = ACTIONS(1893), - [aux_sym_cmd_identifier_token12] = ACTIONS(1893), - [aux_sym_cmd_identifier_token13] = ACTIONS(1893), - [aux_sym_cmd_identifier_token14] = ACTIONS(1893), - [aux_sym_cmd_identifier_token15] = ACTIONS(1893), - [aux_sym_cmd_identifier_token16] = ACTIONS(1893), - [aux_sym_cmd_identifier_token17] = ACTIONS(1893), - [aux_sym_cmd_identifier_token18] = ACTIONS(1893), - [aux_sym_cmd_identifier_token19] = ACTIONS(1893), - [aux_sym_cmd_identifier_token20] = ACTIONS(1893), - [aux_sym_cmd_identifier_token21] = ACTIONS(1893), - [aux_sym_cmd_identifier_token22] = ACTIONS(1893), - [aux_sym_cmd_identifier_token23] = ACTIONS(1893), - [aux_sym_cmd_identifier_token24] = ACTIONS(1893), - [aux_sym_cmd_identifier_token25] = ACTIONS(1893), - [aux_sym_cmd_identifier_token26] = ACTIONS(1893), - [aux_sym_cmd_identifier_token27] = ACTIONS(1893), - [aux_sym_cmd_identifier_token28] = ACTIONS(1893), - [aux_sym_cmd_identifier_token29] = ACTIONS(1893), - [aux_sym_cmd_identifier_token30] = ACTIONS(1893), - [aux_sym_cmd_identifier_token31] = ACTIONS(1893), - [aux_sym_cmd_identifier_token32] = ACTIONS(1893), - [aux_sym_cmd_identifier_token33] = ACTIONS(1893), - [aux_sym_cmd_identifier_token34] = ACTIONS(1893), - [aux_sym_cmd_identifier_token35] = ACTIONS(1893), - [aux_sym_cmd_identifier_token36] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1895), - [anon_sym_false] = ACTIONS(1895), - [anon_sym_null] = ACTIONS(1895), - [aux_sym_cmd_identifier_token38] = ACTIONS(1893), - [aux_sym_cmd_identifier_token39] = ACTIONS(1895), - [aux_sym_cmd_identifier_token40] = ACTIONS(1895), - [anon_sym_def] = ACTIONS(1893), - [anon_sym_export_DASHenv] = ACTIONS(1893), - [anon_sym_extern] = ACTIONS(1893), - [anon_sym_module] = ACTIONS(1893), - [anon_sym_use] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_error] = ACTIONS(1893), - [anon_sym_list] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1893), - [anon_sym_continue] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(1893), - [anon_sym_loop] = ACTIONS(1893), - [anon_sym_make] = ACTIONS(1893), - [anon_sym_while] = ACTIONS(1893), - [anon_sym_do] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_else] = ACTIONS(1893), - [anon_sym_match] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1893), - [anon_sym_catch] = ACTIONS(1893), - [anon_sym_return] = ACTIONS(1893), - [anon_sym_source] = ACTIONS(1893), - [anon_sym_source_DASHenv] = ACTIONS(1893), - [anon_sym_register] = ACTIONS(1893), - [anon_sym_hide] = ACTIONS(1893), - [anon_sym_hide_DASHenv] = ACTIONS(1893), - [anon_sym_overlay] = ACTIONS(1893), - [anon_sym_new] = ACTIONS(1893), - [anon_sym_as] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), - [aux_sym__val_number_decimal_token1] = ACTIONS(1893), - [aux_sym__val_number_decimal_token2] = ACTIONS(1895), - [aux_sym__val_number_decimal_token3] = ACTIONS(1895), - [aux_sym__val_number_decimal_token4] = ACTIONS(1895), - [aux_sym__val_number_token1] = ACTIONS(1895), - [aux_sym__val_number_token2] = ACTIONS(1895), - [aux_sym__val_number_token3] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1895), - [sym__str_single_quotes] = ACTIONS(1895), - [sym__str_back_ticks] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1895), + [453] = { + [sym_cell_path] = STATE(695), + [sym_path] = STATE(689), + [sym_comment] = STATE(453), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2102), + [anon_sym_alias] = ACTIONS(2102), + [anon_sym_let] = ACTIONS(2102), + [anon_sym_let_DASHenv] = ACTIONS(2102), + [anon_sym_mut] = ACTIONS(2102), + [anon_sym_const] = ACTIONS(2102), + [aux_sym_cmd_identifier_token1] = ACTIONS(2102), + [aux_sym_cmd_identifier_token2] = ACTIONS(2104), + [aux_sym_cmd_identifier_token3] = ACTIONS(2104), + [aux_sym_cmd_identifier_token4] = ACTIONS(2104), + [aux_sym_cmd_identifier_token5] = ACTIONS(2104), + [aux_sym_cmd_identifier_token6] = ACTIONS(2104), + [aux_sym_cmd_identifier_token7] = ACTIONS(2104), + [aux_sym_cmd_identifier_token8] = ACTIONS(2102), + [aux_sym_cmd_identifier_token9] = ACTIONS(2102), + [aux_sym_cmd_identifier_token10] = ACTIONS(2104), + [aux_sym_cmd_identifier_token11] = ACTIONS(2104), + [aux_sym_cmd_identifier_token12] = ACTIONS(2102), + [aux_sym_cmd_identifier_token13] = ACTIONS(2102), + [aux_sym_cmd_identifier_token14] = ACTIONS(2102), + [aux_sym_cmd_identifier_token15] = ACTIONS(2102), + [aux_sym_cmd_identifier_token16] = ACTIONS(2104), + [aux_sym_cmd_identifier_token17] = ACTIONS(2104), + [aux_sym_cmd_identifier_token18] = ACTIONS(2104), + [aux_sym_cmd_identifier_token19] = ACTIONS(2104), + [aux_sym_cmd_identifier_token20] = ACTIONS(2104), + [aux_sym_cmd_identifier_token21] = ACTIONS(2104), + [aux_sym_cmd_identifier_token22] = ACTIONS(2104), + [aux_sym_cmd_identifier_token23] = ACTIONS(2104), + [aux_sym_cmd_identifier_token24] = ACTIONS(2104), + [aux_sym_cmd_identifier_token25] = ACTIONS(2104), + [aux_sym_cmd_identifier_token26] = ACTIONS(2104), + [aux_sym_cmd_identifier_token27] = ACTIONS(2104), + [aux_sym_cmd_identifier_token28] = ACTIONS(2104), + [aux_sym_cmd_identifier_token29] = ACTIONS(2104), + [aux_sym_cmd_identifier_token30] = ACTIONS(2104), + [aux_sym_cmd_identifier_token31] = ACTIONS(2104), + [aux_sym_cmd_identifier_token32] = ACTIONS(2104), + [aux_sym_cmd_identifier_token33] = ACTIONS(2104), + [aux_sym_cmd_identifier_token34] = ACTIONS(2102), + [aux_sym_cmd_identifier_token35] = ACTIONS(2104), + [aux_sym_cmd_identifier_token36] = ACTIONS(2104), + [aux_sym_cmd_identifier_token37] = ACTIONS(2104), + [aux_sym_cmd_identifier_token38] = ACTIONS(2102), + [aux_sym_cmd_identifier_token39] = ACTIONS(2104), + [aux_sym_cmd_identifier_token40] = ACTIONS(2104), + [anon_sym_def] = ACTIONS(2102), + [anon_sym_export_DASHenv] = ACTIONS(2102), + [anon_sym_extern] = ACTIONS(2102), + [anon_sym_module] = ACTIONS(2102), + [anon_sym_use] = ACTIONS(2102), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_DOLLAR] = ACTIONS(2104), + [anon_sym_error] = ACTIONS(2102), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_break] = ACTIONS(2102), + [anon_sym_continue] = ACTIONS(2102), + [anon_sym_for] = ACTIONS(2102), + [anon_sym_in2] = ACTIONS(2102), + [anon_sym_loop] = ACTIONS(2102), + [anon_sym_make] = ACTIONS(2102), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_do] = ACTIONS(2102), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_else] = ACTIONS(2102), + [anon_sym_match] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2102), + [anon_sym_catch] = ACTIONS(2102), + [anon_sym_return] = ACTIONS(2102), + [anon_sym_source] = ACTIONS(2102), + [anon_sym_source_DASHenv] = ACTIONS(2102), + [anon_sym_register] = ACTIONS(2102), + [anon_sym_hide] = ACTIONS(2102), + [anon_sym_hide_DASHenv] = ACTIONS(2102), + [anon_sym_overlay] = ACTIONS(2102), + [anon_sym_as] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2102), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2104), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2104), + [aux_sym__val_number_decimal_token1] = ACTIONS(2102), + [aux_sym__val_number_decimal_token2] = ACTIONS(2104), + [aux_sym__val_number_decimal_token3] = ACTIONS(2104), + [aux_sym__val_number_decimal_token4] = ACTIONS(2104), + [aux_sym__val_number_token1] = ACTIONS(2104), + [aux_sym__val_number_token2] = ACTIONS(2104), + [aux_sym__val_number_token3] = ACTIONS(2104), + [aux_sym__val_number_token4] = ACTIONS(2102), + [aux_sym__val_number_token5] = ACTIONS(2102), + [aux_sym__val_number_token6] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2104), + [sym__str_single_quotes] = ACTIONS(2104), + [sym__str_back_ticks] = ACTIONS(2104), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2104), }, - [398] = { - [sym_cell_path] = STATE(676), - [sym_path] = STATE(631), - [sym_comment] = STATE(398), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2013), - [anon_sym_alias] = ACTIONS(2013), - [anon_sym_let] = ACTIONS(2013), - [anon_sym_let_DASHenv] = ACTIONS(2013), - [anon_sym_mut] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [aux_sym_cmd_identifier_token1] = ACTIONS(2013), - [aux_sym_cmd_identifier_token2] = ACTIONS(2013), - [aux_sym_cmd_identifier_token3] = ACTIONS(2013), - [aux_sym_cmd_identifier_token4] = ACTIONS(2013), - [aux_sym_cmd_identifier_token5] = ACTIONS(2013), - [aux_sym_cmd_identifier_token6] = ACTIONS(2013), - [aux_sym_cmd_identifier_token7] = ACTIONS(2013), - [aux_sym_cmd_identifier_token8] = ACTIONS(2013), - [aux_sym_cmd_identifier_token9] = ACTIONS(2013), - [aux_sym_cmd_identifier_token10] = ACTIONS(2013), - [aux_sym_cmd_identifier_token11] = ACTIONS(2013), - [aux_sym_cmd_identifier_token12] = ACTIONS(2013), - [aux_sym_cmd_identifier_token13] = ACTIONS(2013), - [aux_sym_cmd_identifier_token14] = ACTIONS(2013), - [aux_sym_cmd_identifier_token15] = ACTIONS(2013), - [aux_sym_cmd_identifier_token16] = ACTIONS(2013), - [aux_sym_cmd_identifier_token17] = ACTIONS(2013), - [aux_sym_cmd_identifier_token18] = ACTIONS(2013), - [aux_sym_cmd_identifier_token19] = ACTIONS(2013), - [aux_sym_cmd_identifier_token20] = ACTIONS(2013), - [aux_sym_cmd_identifier_token21] = ACTIONS(2013), - [aux_sym_cmd_identifier_token22] = ACTIONS(2013), - [aux_sym_cmd_identifier_token23] = ACTIONS(2013), - [aux_sym_cmd_identifier_token24] = ACTIONS(2013), - [aux_sym_cmd_identifier_token25] = ACTIONS(2013), - [aux_sym_cmd_identifier_token26] = ACTIONS(2013), - [aux_sym_cmd_identifier_token27] = ACTIONS(2013), - [aux_sym_cmd_identifier_token28] = ACTIONS(2013), - [aux_sym_cmd_identifier_token29] = ACTIONS(2013), - [aux_sym_cmd_identifier_token30] = ACTIONS(2013), - [aux_sym_cmd_identifier_token31] = ACTIONS(2013), - [aux_sym_cmd_identifier_token32] = ACTIONS(2013), - [aux_sym_cmd_identifier_token33] = ACTIONS(2013), - [aux_sym_cmd_identifier_token34] = ACTIONS(2013), - [aux_sym_cmd_identifier_token35] = ACTIONS(2013), - [aux_sym_cmd_identifier_token36] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [anon_sym_null] = ACTIONS(2015), - [aux_sym_cmd_identifier_token38] = ACTIONS(2013), - [aux_sym_cmd_identifier_token39] = ACTIONS(2015), - [aux_sym_cmd_identifier_token40] = ACTIONS(2015), - [anon_sym_def] = ACTIONS(2013), - [anon_sym_export_DASHenv] = ACTIONS(2013), - [anon_sym_extern] = ACTIONS(2013), - [anon_sym_module] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_error] = ACTIONS(2013), - [anon_sym_list] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_in] = ACTIONS(2013), - [anon_sym_loop] = ACTIONS(2013), - [anon_sym_make] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_else] = ACTIONS(2013), - [anon_sym_match] = ACTIONS(2013), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_catch] = ACTIONS(2013), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_source] = ACTIONS(2013), - [anon_sym_source_DASHenv] = ACTIONS(2013), - [anon_sym_register] = ACTIONS(2013), - [anon_sym_hide] = ACTIONS(2013), - [anon_sym_hide_DASHenv] = ACTIONS(2013), - [anon_sym_overlay] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2013), - [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), - [anon_sym_PLUS] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2015), + [454] = { + [sym_cell_path] = STATE(726), + [sym_path] = STATE(689), + [sym_comment] = STATE(454), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1944), + [anon_sym_alias] = ACTIONS(1944), + [anon_sym_let] = ACTIONS(1944), + [anon_sym_let_DASHenv] = ACTIONS(1944), + [anon_sym_mut] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [aux_sym_cmd_identifier_token1] = ACTIONS(1944), + [aux_sym_cmd_identifier_token2] = ACTIONS(1946), + [aux_sym_cmd_identifier_token3] = ACTIONS(1946), + [aux_sym_cmd_identifier_token4] = ACTIONS(1946), + [aux_sym_cmd_identifier_token5] = ACTIONS(1946), + [aux_sym_cmd_identifier_token6] = ACTIONS(1946), + [aux_sym_cmd_identifier_token7] = ACTIONS(1946), + [aux_sym_cmd_identifier_token8] = ACTIONS(1944), + [aux_sym_cmd_identifier_token9] = ACTIONS(1944), + [aux_sym_cmd_identifier_token10] = ACTIONS(1946), + [aux_sym_cmd_identifier_token11] = ACTIONS(1946), + [aux_sym_cmd_identifier_token12] = ACTIONS(1944), + [aux_sym_cmd_identifier_token13] = ACTIONS(1944), + [aux_sym_cmd_identifier_token14] = ACTIONS(1944), + [aux_sym_cmd_identifier_token15] = ACTIONS(1944), + [aux_sym_cmd_identifier_token16] = ACTIONS(1946), + [aux_sym_cmd_identifier_token17] = ACTIONS(1946), + [aux_sym_cmd_identifier_token18] = ACTIONS(1946), + [aux_sym_cmd_identifier_token19] = ACTIONS(1946), + [aux_sym_cmd_identifier_token20] = ACTIONS(1946), + [aux_sym_cmd_identifier_token21] = ACTIONS(1946), + [aux_sym_cmd_identifier_token22] = ACTIONS(1946), + [aux_sym_cmd_identifier_token23] = ACTIONS(1946), + [aux_sym_cmd_identifier_token24] = ACTIONS(1946), + [aux_sym_cmd_identifier_token25] = ACTIONS(1946), + [aux_sym_cmd_identifier_token26] = ACTIONS(1946), + [aux_sym_cmd_identifier_token27] = ACTIONS(1946), + [aux_sym_cmd_identifier_token28] = ACTIONS(1946), + [aux_sym_cmd_identifier_token29] = ACTIONS(1946), + [aux_sym_cmd_identifier_token30] = ACTIONS(1946), + [aux_sym_cmd_identifier_token31] = ACTIONS(1946), + [aux_sym_cmd_identifier_token32] = ACTIONS(1946), + [aux_sym_cmd_identifier_token33] = ACTIONS(1946), + [aux_sym_cmd_identifier_token34] = ACTIONS(1944), + [aux_sym_cmd_identifier_token35] = ACTIONS(1946), + [aux_sym_cmd_identifier_token36] = ACTIONS(1946), + [aux_sym_cmd_identifier_token37] = ACTIONS(1946), + [aux_sym_cmd_identifier_token38] = ACTIONS(1944), + [aux_sym_cmd_identifier_token39] = ACTIONS(1946), + [aux_sym_cmd_identifier_token40] = ACTIONS(1946), + [anon_sym_def] = ACTIONS(1944), + [anon_sym_export_DASHenv] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym_module] = ACTIONS(1944), + [anon_sym_use] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1946), + [anon_sym_error] = ACTIONS(1944), + [anon_sym_DASH2] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_in2] = ACTIONS(1944), + [anon_sym_loop] = ACTIONS(1944), + [anon_sym_make] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_else] = ACTIONS(1944), + [anon_sym_match] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_try] = ACTIONS(1944), + [anon_sym_catch] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_source] = ACTIONS(1944), + [anon_sym_source_DASHenv] = ACTIONS(1944), + [anon_sym_register] = ACTIONS(1944), + [anon_sym_hide] = ACTIONS(1944), + [anon_sym_hide_DASHenv] = ACTIONS(1944), + [anon_sym_overlay] = ACTIONS(1944), + [anon_sym_as] = ACTIONS(1944), + [anon_sym_PLUS2] = ACTIONS(1944), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1946), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1944), + [aux_sym__val_number_decimal_token2] = ACTIONS(1946), + [aux_sym__val_number_decimal_token3] = ACTIONS(1946), + [aux_sym__val_number_decimal_token4] = ACTIONS(1946), + [aux_sym__val_number_token1] = ACTIONS(1946), + [aux_sym__val_number_token2] = ACTIONS(1946), + [aux_sym__val_number_token3] = ACTIONS(1946), + [aux_sym__val_number_token4] = ACTIONS(1944), + [aux_sym__val_number_token5] = ACTIONS(1944), + [aux_sym__val_number_token6] = ACTIONS(1944), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym__str_single_quotes] = ACTIONS(1946), + [sym__str_back_ticks] = ACTIONS(1946), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1946), }, - [399] = { - [sym_cell_path] = STATE(677), - [sym_path] = STATE(631), - [sym_comment] = STATE(399), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2017), - [anon_sym_alias] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_let_DASHenv] = ACTIONS(2017), - [anon_sym_mut] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [aux_sym_cmd_identifier_token1] = ACTIONS(2017), - [aux_sym_cmd_identifier_token2] = ACTIONS(2017), - [aux_sym_cmd_identifier_token3] = ACTIONS(2017), - [aux_sym_cmd_identifier_token4] = ACTIONS(2017), - [aux_sym_cmd_identifier_token5] = ACTIONS(2017), - [aux_sym_cmd_identifier_token6] = ACTIONS(2017), - [aux_sym_cmd_identifier_token7] = ACTIONS(2017), - [aux_sym_cmd_identifier_token8] = ACTIONS(2017), - [aux_sym_cmd_identifier_token9] = ACTIONS(2017), - [aux_sym_cmd_identifier_token10] = ACTIONS(2017), - [aux_sym_cmd_identifier_token11] = ACTIONS(2017), - [aux_sym_cmd_identifier_token12] = ACTIONS(2017), - [aux_sym_cmd_identifier_token13] = ACTIONS(2017), - [aux_sym_cmd_identifier_token14] = ACTIONS(2017), - [aux_sym_cmd_identifier_token15] = ACTIONS(2017), - [aux_sym_cmd_identifier_token16] = ACTIONS(2017), - [aux_sym_cmd_identifier_token17] = ACTIONS(2017), - [aux_sym_cmd_identifier_token18] = ACTIONS(2017), - [aux_sym_cmd_identifier_token19] = ACTIONS(2017), - [aux_sym_cmd_identifier_token20] = ACTIONS(2017), - [aux_sym_cmd_identifier_token21] = ACTIONS(2017), - [aux_sym_cmd_identifier_token22] = ACTIONS(2017), - [aux_sym_cmd_identifier_token23] = ACTIONS(2017), - [aux_sym_cmd_identifier_token24] = ACTIONS(2017), - [aux_sym_cmd_identifier_token25] = ACTIONS(2017), - [aux_sym_cmd_identifier_token26] = ACTIONS(2017), - [aux_sym_cmd_identifier_token27] = ACTIONS(2017), - [aux_sym_cmd_identifier_token28] = ACTIONS(2017), - [aux_sym_cmd_identifier_token29] = ACTIONS(2017), - [aux_sym_cmd_identifier_token30] = ACTIONS(2017), - [aux_sym_cmd_identifier_token31] = ACTIONS(2017), - [aux_sym_cmd_identifier_token32] = ACTIONS(2017), - [aux_sym_cmd_identifier_token33] = ACTIONS(2017), - [aux_sym_cmd_identifier_token34] = ACTIONS(2017), - [aux_sym_cmd_identifier_token35] = ACTIONS(2017), - [aux_sym_cmd_identifier_token36] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [anon_sym_null] = ACTIONS(2019), - [aux_sym_cmd_identifier_token38] = ACTIONS(2017), - [aux_sym_cmd_identifier_token39] = ACTIONS(2019), - [aux_sym_cmd_identifier_token40] = ACTIONS(2019), - [anon_sym_def] = ACTIONS(2017), - [anon_sym_export_DASHenv] = ACTIONS(2017), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_error] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_in] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_make] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_catch] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_source] = ACTIONS(2017), - [anon_sym_source_DASHenv] = ACTIONS(2017), - [anon_sym_register] = ACTIONS(2017), - [anon_sym_hide] = ACTIONS(2017), - [anon_sym_hide_DASHenv] = ACTIONS(2017), - [anon_sym_overlay] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2019), - [aux_sym__val_number_decimal_token3] = ACTIONS(2019), - [aux_sym__val_number_decimal_token4] = ACTIONS(2019), - [aux_sym__val_number_token1] = ACTIONS(2019), - [aux_sym__val_number_token2] = ACTIONS(2019), - [aux_sym__val_number_token3] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2019), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2019), + [455] = { + [sym_comment] = STATE(455), + [anon_sym_export] = ACTIONS(1030), + [anon_sym_alias] = ACTIONS(1030), + [anon_sym_let] = ACTIONS(1030), + [anon_sym_let_DASHenv] = ACTIONS(1030), + [anon_sym_mut] = ACTIONS(1030), + [anon_sym_const] = ACTIONS(1030), + [aux_sym_cmd_identifier_token1] = ACTIONS(1030), + [aux_sym_cmd_identifier_token2] = ACTIONS(1030), + [aux_sym_cmd_identifier_token3] = ACTIONS(1030), + [aux_sym_cmd_identifier_token4] = ACTIONS(1030), + [aux_sym_cmd_identifier_token5] = ACTIONS(1030), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [aux_sym_cmd_identifier_token7] = ACTIONS(1030), + [aux_sym_cmd_identifier_token8] = ACTIONS(1030), + [aux_sym_cmd_identifier_token9] = ACTIONS(1030), + [aux_sym_cmd_identifier_token10] = ACTIONS(1030), + [aux_sym_cmd_identifier_token11] = ACTIONS(1030), + [aux_sym_cmd_identifier_token12] = ACTIONS(1030), + [aux_sym_cmd_identifier_token13] = ACTIONS(1030), + [aux_sym_cmd_identifier_token14] = ACTIONS(1030), + [aux_sym_cmd_identifier_token15] = ACTIONS(1030), + [aux_sym_cmd_identifier_token16] = ACTIONS(1030), + [aux_sym_cmd_identifier_token17] = ACTIONS(1030), + [aux_sym_cmd_identifier_token18] = ACTIONS(1030), + [aux_sym_cmd_identifier_token19] = ACTIONS(1030), + [aux_sym_cmd_identifier_token20] = ACTIONS(1030), + [aux_sym_cmd_identifier_token21] = ACTIONS(1030), + [aux_sym_cmd_identifier_token22] = ACTIONS(1030), + [aux_sym_cmd_identifier_token23] = ACTIONS(1030), + [aux_sym_cmd_identifier_token24] = ACTIONS(1030), + [aux_sym_cmd_identifier_token25] = ACTIONS(1030), + [aux_sym_cmd_identifier_token26] = ACTIONS(1030), + [aux_sym_cmd_identifier_token27] = ACTIONS(1030), + [aux_sym_cmd_identifier_token28] = ACTIONS(1030), + [aux_sym_cmd_identifier_token29] = ACTIONS(1030), + [aux_sym_cmd_identifier_token30] = ACTIONS(1030), + [aux_sym_cmd_identifier_token31] = ACTIONS(1030), + [aux_sym_cmd_identifier_token32] = ACTIONS(1030), + [aux_sym_cmd_identifier_token33] = ACTIONS(1030), + [aux_sym_cmd_identifier_token34] = ACTIONS(1030), + [aux_sym_cmd_identifier_token35] = ACTIONS(1030), + [aux_sym_cmd_identifier_token36] = ACTIONS(1030), + [aux_sym_cmd_identifier_token37] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1030), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [anon_sym_def] = ACTIONS(1030), + [anon_sym_export_DASHenv] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1030), + [anon_sym_module] = ACTIONS(1030), + [anon_sym_use] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_error] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_continue] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1030), + [anon_sym_loop] = ACTIONS(1030), + [anon_sym_make] = ACTIONS(1030), + [anon_sym_while] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1030), + [anon_sym_match] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(1030), + [anon_sym_catch] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1030), + [anon_sym_source] = ACTIONS(1030), + [anon_sym_source_DASHenv] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1030), + [anon_sym_hide] = ACTIONS(1030), + [anon_sym_hide_DASHenv] = ACTIONS(1030), + [anon_sym_overlay] = ACTIONS(1030), + [anon_sym_as] = ACTIONS(1030), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), + [anon_sym_DOT_DOT2] = ACTIONS(2112), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2114), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2114), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [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), + [aux_sym__val_number_token4] = ACTIONS(1030), + [aux_sym__val_number_token5] = ACTIONS(1030), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1032), }, - [400] = { - [sym_cell_path] = STATE(678), - [sym_path] = STATE(631), - [sym_comment] = STATE(400), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2021), - [anon_sym_alias] = ACTIONS(2021), - [anon_sym_let] = ACTIONS(2021), - [anon_sym_let_DASHenv] = ACTIONS(2021), - [anon_sym_mut] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [aux_sym_cmd_identifier_token1] = ACTIONS(2021), - [aux_sym_cmd_identifier_token2] = ACTIONS(2021), - [aux_sym_cmd_identifier_token3] = ACTIONS(2021), - [aux_sym_cmd_identifier_token4] = ACTIONS(2021), - [aux_sym_cmd_identifier_token5] = ACTIONS(2021), - [aux_sym_cmd_identifier_token6] = ACTIONS(2021), - [aux_sym_cmd_identifier_token7] = ACTIONS(2021), - [aux_sym_cmd_identifier_token8] = ACTIONS(2021), - [aux_sym_cmd_identifier_token9] = ACTIONS(2021), - [aux_sym_cmd_identifier_token10] = ACTIONS(2021), - [aux_sym_cmd_identifier_token11] = ACTIONS(2021), - [aux_sym_cmd_identifier_token12] = ACTIONS(2021), - [aux_sym_cmd_identifier_token13] = ACTIONS(2021), - [aux_sym_cmd_identifier_token14] = ACTIONS(2021), - [aux_sym_cmd_identifier_token15] = ACTIONS(2021), - [aux_sym_cmd_identifier_token16] = ACTIONS(2021), - [aux_sym_cmd_identifier_token17] = ACTIONS(2021), - [aux_sym_cmd_identifier_token18] = ACTIONS(2021), - [aux_sym_cmd_identifier_token19] = ACTIONS(2021), - [aux_sym_cmd_identifier_token20] = ACTIONS(2021), - [aux_sym_cmd_identifier_token21] = ACTIONS(2021), - [aux_sym_cmd_identifier_token22] = ACTIONS(2021), - [aux_sym_cmd_identifier_token23] = ACTIONS(2021), - [aux_sym_cmd_identifier_token24] = ACTIONS(2021), - [aux_sym_cmd_identifier_token25] = ACTIONS(2021), - [aux_sym_cmd_identifier_token26] = ACTIONS(2021), - [aux_sym_cmd_identifier_token27] = ACTIONS(2021), - [aux_sym_cmd_identifier_token28] = ACTIONS(2021), - [aux_sym_cmd_identifier_token29] = ACTIONS(2021), - [aux_sym_cmd_identifier_token30] = ACTIONS(2021), - [aux_sym_cmd_identifier_token31] = ACTIONS(2021), - [aux_sym_cmd_identifier_token32] = ACTIONS(2021), - [aux_sym_cmd_identifier_token33] = ACTIONS(2021), - [aux_sym_cmd_identifier_token34] = ACTIONS(2021), - [aux_sym_cmd_identifier_token35] = ACTIONS(2021), - [aux_sym_cmd_identifier_token36] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(2023), - [anon_sym_false] = ACTIONS(2023), - [anon_sym_null] = ACTIONS(2023), - [aux_sym_cmd_identifier_token38] = ACTIONS(2021), - [aux_sym_cmd_identifier_token39] = ACTIONS(2023), - [aux_sym_cmd_identifier_token40] = ACTIONS(2023), - [anon_sym_def] = ACTIONS(2021), - [anon_sym_export_DASHenv] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2021), - [anon_sym_module] = ACTIONS(2021), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2023), - [anon_sym_error] = ACTIONS(2021), - [anon_sym_list] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_in] = ACTIONS(2021), - [anon_sym_loop] = ACTIONS(2021), - [anon_sym_make] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_do] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), - [anon_sym_else] = ACTIONS(2021), - [anon_sym_match] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_try] = ACTIONS(2021), - [anon_sym_catch] = ACTIONS(2021), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_source] = ACTIONS(2021), - [anon_sym_source_DASHenv] = ACTIONS(2021), - [anon_sym_register] = ACTIONS(2021), - [anon_sym_hide] = ACTIONS(2021), - [anon_sym_hide_DASHenv] = ACTIONS(2021), - [anon_sym_overlay] = ACTIONS(2021), - [anon_sym_new] = ACTIONS(2021), - [anon_sym_as] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2023), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2023), - [aux_sym__val_number_decimal_token1] = ACTIONS(2021), - [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), - [anon_sym_PLUS] = ACTIONS(2021), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2023), + [456] = { + [sym_cell_path] = STATE(759), + [sym_path] = STATE(689), + [sym_comment] = STATE(456), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2082), + [anon_sym_alias] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(2082), + [anon_sym_let_DASHenv] = ACTIONS(2082), + [anon_sym_mut] = ACTIONS(2082), + [anon_sym_const] = ACTIONS(2082), + [aux_sym_cmd_identifier_token1] = ACTIONS(2082), + [aux_sym_cmd_identifier_token2] = ACTIONS(2084), + [aux_sym_cmd_identifier_token3] = ACTIONS(2084), + [aux_sym_cmd_identifier_token4] = ACTIONS(2084), + [aux_sym_cmd_identifier_token5] = ACTIONS(2084), + [aux_sym_cmd_identifier_token6] = ACTIONS(2084), + [aux_sym_cmd_identifier_token7] = ACTIONS(2084), + [aux_sym_cmd_identifier_token8] = ACTIONS(2082), + [aux_sym_cmd_identifier_token9] = ACTIONS(2082), + [aux_sym_cmd_identifier_token10] = ACTIONS(2084), + [aux_sym_cmd_identifier_token11] = ACTIONS(2084), + [aux_sym_cmd_identifier_token12] = ACTIONS(2082), + [aux_sym_cmd_identifier_token13] = ACTIONS(2082), + [aux_sym_cmd_identifier_token14] = ACTIONS(2082), + [aux_sym_cmd_identifier_token15] = ACTIONS(2082), + [aux_sym_cmd_identifier_token16] = ACTIONS(2084), + [aux_sym_cmd_identifier_token17] = ACTIONS(2084), + [aux_sym_cmd_identifier_token18] = ACTIONS(2084), + [aux_sym_cmd_identifier_token19] = ACTIONS(2084), + [aux_sym_cmd_identifier_token20] = ACTIONS(2084), + [aux_sym_cmd_identifier_token21] = ACTIONS(2084), + [aux_sym_cmd_identifier_token22] = ACTIONS(2084), + [aux_sym_cmd_identifier_token23] = ACTIONS(2084), + [aux_sym_cmd_identifier_token24] = ACTIONS(2084), + [aux_sym_cmd_identifier_token25] = ACTIONS(2084), + [aux_sym_cmd_identifier_token26] = ACTIONS(2084), + [aux_sym_cmd_identifier_token27] = ACTIONS(2084), + [aux_sym_cmd_identifier_token28] = ACTIONS(2084), + [aux_sym_cmd_identifier_token29] = ACTIONS(2084), + [aux_sym_cmd_identifier_token30] = ACTIONS(2084), + [aux_sym_cmd_identifier_token31] = ACTIONS(2084), + [aux_sym_cmd_identifier_token32] = ACTIONS(2084), + [aux_sym_cmd_identifier_token33] = ACTIONS(2084), + [aux_sym_cmd_identifier_token34] = ACTIONS(2082), + [aux_sym_cmd_identifier_token35] = ACTIONS(2084), + [aux_sym_cmd_identifier_token36] = ACTIONS(2084), + [aux_sym_cmd_identifier_token37] = ACTIONS(2084), + [aux_sym_cmd_identifier_token38] = ACTIONS(2082), + [aux_sym_cmd_identifier_token39] = ACTIONS(2084), + [aux_sym_cmd_identifier_token40] = ACTIONS(2084), + [anon_sym_def] = ACTIONS(2082), + [anon_sym_export_DASHenv] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_module] = ACTIONS(2082), + [anon_sym_use] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_error] = ACTIONS(2082), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_in2] = ACTIONS(2082), + [anon_sym_loop] = ACTIONS(2082), + [anon_sym_make] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_do] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_else] = ACTIONS(2082), + [anon_sym_match] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_try] = ACTIONS(2082), + [anon_sym_catch] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_source] = ACTIONS(2082), + [anon_sym_source_DASHenv] = ACTIONS(2082), + [anon_sym_register] = ACTIONS(2082), + [anon_sym_hide] = ACTIONS(2082), + [anon_sym_hide_DASHenv] = ACTIONS(2082), + [anon_sym_overlay] = ACTIONS(2082), + [anon_sym_as] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2084), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2082), + [aux_sym__val_number_decimal_token2] = ACTIONS(2084), + [aux_sym__val_number_decimal_token3] = ACTIONS(2084), + [aux_sym__val_number_decimal_token4] = ACTIONS(2084), + [aux_sym__val_number_token1] = ACTIONS(2084), + [aux_sym__val_number_token2] = ACTIONS(2084), + [aux_sym__val_number_token3] = ACTIONS(2084), + [aux_sym__val_number_token4] = ACTIONS(2082), + [aux_sym__val_number_token5] = ACTIONS(2082), + [aux_sym__val_number_token6] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(2084), + [sym__str_single_quotes] = ACTIONS(2084), + [sym__str_back_ticks] = ACTIONS(2084), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2084), }, - [401] = { - [sym_cell_path] = STATE(679), - [sym_path] = STATE(631), - [sym_comment] = STATE(401), - [aux_sym_cell_path_repeat1] = STATE(456), - [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(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [aux_sym_cmd_identifier_token38] = ACTIONS(2043), - [aux_sym_cmd_identifier_token39] = ACTIONS(2045), - [aux_sym_cmd_identifier_token40] = ACTIONS(2045), - [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(2045), - [anon_sym_DOLLAR] = ACTIONS(2045), - [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(2045), - [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(2045), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2045), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2045), - [aux_sym__val_number_decimal_token3] = ACTIONS(2045), - [aux_sym__val_number_decimal_token4] = ACTIONS(2045), - [aux_sym__val_number_token1] = ACTIONS(2045), - [aux_sym__val_number_token2] = ACTIONS(2045), - [aux_sym__val_number_token3] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [sym__str_single_quotes] = ACTIONS(2045), - [sym__str_back_ticks] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2045), + [457] = { + [sym_comment] = STATE(457), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1783), + [aux_sym_cmd_identifier_token3] = ACTIONS(1783), + [aux_sym_cmd_identifier_token4] = ACTIONS(1783), + [aux_sym_cmd_identifier_token5] = ACTIONS(1783), + [aux_sym_cmd_identifier_token6] = ACTIONS(1783), + [aux_sym_cmd_identifier_token7] = ACTIONS(1783), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1783), + [aux_sym_cmd_identifier_token11] = ACTIONS(1783), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1783), + [aux_sym_cmd_identifier_token17] = ACTIONS(1783), + [aux_sym_cmd_identifier_token18] = ACTIONS(1783), + [aux_sym_cmd_identifier_token19] = ACTIONS(1783), + [aux_sym_cmd_identifier_token20] = ACTIONS(1783), + [aux_sym_cmd_identifier_token21] = ACTIONS(1783), + [aux_sym_cmd_identifier_token22] = ACTIONS(1783), + [aux_sym_cmd_identifier_token23] = ACTIONS(1783), + [aux_sym_cmd_identifier_token24] = ACTIONS(1783), + [aux_sym_cmd_identifier_token25] = ACTIONS(1783), + [aux_sym_cmd_identifier_token26] = ACTIONS(1783), + [aux_sym_cmd_identifier_token27] = ACTIONS(1783), + [aux_sym_cmd_identifier_token28] = ACTIONS(1783), + [aux_sym_cmd_identifier_token29] = ACTIONS(1783), + [aux_sym_cmd_identifier_token30] = ACTIONS(1783), + [aux_sym_cmd_identifier_token31] = ACTIONS(1783), + [aux_sym_cmd_identifier_token32] = ACTIONS(1783), + [aux_sym_cmd_identifier_token33] = ACTIONS(1783), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1783), + [aux_sym_cmd_identifier_token36] = ACTIONS(1783), + [aux_sym_cmd_identifier_token37] = ACTIONS(1783), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1783), + [aux_sym_cmd_identifier_token40] = ACTIONS(1783), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), + [aux_sym__immediate_decimal_token2] = ACTIONS(2116), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1783), + [aux_sym__val_number_decimal_token3] = ACTIONS(1783), + [aux_sym__val_number_decimal_token4] = ACTIONS(1783), + [aux_sym__val_number_token1] = ACTIONS(1783), + [aux_sym__val_number_token2] = ACTIONS(1783), + [aux_sym__val_number_token3] = ACTIONS(1783), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [sym__str_single_quotes] = ACTIONS(1783), + [sym__str_back_ticks] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), + [sym__entry_separator] = ACTIONS(1785), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1785), }, - [402] = { - [sym_cell_path] = STATE(680), - [sym_path] = STATE(631), - [sym_comment] = STATE(402), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2047), - [anon_sym_alias] = ACTIONS(2047), - [anon_sym_let] = ACTIONS(2047), - [anon_sym_let_DASHenv] = ACTIONS(2047), - [anon_sym_mut] = ACTIONS(2047), - [anon_sym_const] = ACTIONS(2047), - [aux_sym_cmd_identifier_token1] = ACTIONS(2047), - [aux_sym_cmd_identifier_token2] = ACTIONS(2047), - [aux_sym_cmd_identifier_token3] = ACTIONS(2047), - [aux_sym_cmd_identifier_token4] = ACTIONS(2047), - [aux_sym_cmd_identifier_token5] = ACTIONS(2047), - [aux_sym_cmd_identifier_token6] = ACTIONS(2047), - [aux_sym_cmd_identifier_token7] = ACTIONS(2047), - [aux_sym_cmd_identifier_token8] = ACTIONS(2047), - [aux_sym_cmd_identifier_token9] = ACTIONS(2047), - [aux_sym_cmd_identifier_token10] = ACTIONS(2047), - [aux_sym_cmd_identifier_token11] = ACTIONS(2047), - [aux_sym_cmd_identifier_token12] = ACTIONS(2047), - [aux_sym_cmd_identifier_token13] = ACTIONS(2047), - [aux_sym_cmd_identifier_token14] = ACTIONS(2047), - [aux_sym_cmd_identifier_token15] = ACTIONS(2047), - [aux_sym_cmd_identifier_token16] = ACTIONS(2047), - [aux_sym_cmd_identifier_token17] = ACTIONS(2047), - [aux_sym_cmd_identifier_token18] = ACTIONS(2047), - [aux_sym_cmd_identifier_token19] = ACTIONS(2047), - [aux_sym_cmd_identifier_token20] = ACTIONS(2047), - [aux_sym_cmd_identifier_token21] = ACTIONS(2047), - [aux_sym_cmd_identifier_token22] = ACTIONS(2047), - [aux_sym_cmd_identifier_token23] = ACTIONS(2047), - [aux_sym_cmd_identifier_token24] = ACTIONS(2047), - [aux_sym_cmd_identifier_token25] = ACTIONS(2047), - [aux_sym_cmd_identifier_token26] = ACTIONS(2047), - [aux_sym_cmd_identifier_token27] = ACTIONS(2047), - [aux_sym_cmd_identifier_token28] = ACTIONS(2047), - [aux_sym_cmd_identifier_token29] = ACTIONS(2047), - [aux_sym_cmd_identifier_token30] = ACTIONS(2047), - [aux_sym_cmd_identifier_token31] = ACTIONS(2047), - [aux_sym_cmd_identifier_token32] = ACTIONS(2047), - [aux_sym_cmd_identifier_token33] = ACTIONS(2047), - [aux_sym_cmd_identifier_token34] = ACTIONS(2047), - [aux_sym_cmd_identifier_token35] = ACTIONS(2047), - [aux_sym_cmd_identifier_token36] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token38] = ACTIONS(2047), - [aux_sym_cmd_identifier_token39] = ACTIONS(2049), - [aux_sym_cmd_identifier_token40] = ACTIONS(2049), - [anon_sym_def] = ACTIONS(2047), - [anon_sym_export_DASHenv] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2047), - [anon_sym_module] = ACTIONS(2047), - [anon_sym_use] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_error] = ACTIONS(2047), - [anon_sym_list] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_break] = ACTIONS(2047), - [anon_sym_continue] = ACTIONS(2047), - [anon_sym_for] = ACTIONS(2047), - [anon_sym_in] = ACTIONS(2047), - [anon_sym_loop] = ACTIONS(2047), - [anon_sym_make] = ACTIONS(2047), - [anon_sym_while] = ACTIONS(2047), - [anon_sym_do] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2047), - [anon_sym_else] = ACTIONS(2047), - [anon_sym_match] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2047), - [anon_sym_catch] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2047), - [anon_sym_source] = ACTIONS(2047), - [anon_sym_source_DASHenv] = ACTIONS(2047), - [anon_sym_register] = ACTIONS(2047), - [anon_sym_hide] = ACTIONS(2047), - [anon_sym_hide_DASHenv] = ACTIONS(2047), - [anon_sym_overlay] = ACTIONS(2047), - [anon_sym_new] = ACTIONS(2047), - [anon_sym_as] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), - [aux_sym__val_number_decimal_token1] = ACTIONS(2047), - [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(2047), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2049), + [458] = { + [sym_path] = STATE(569), + [sym_comment] = STATE(458), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(967), + [anon_sym_alias] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_let_DASHenv] = ACTIONS(967), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [aux_sym_cmd_identifier_token1] = ACTIONS(967), + [aux_sym_cmd_identifier_token2] = ACTIONS(967), + [aux_sym_cmd_identifier_token3] = ACTIONS(967), + [aux_sym_cmd_identifier_token4] = ACTIONS(967), + [aux_sym_cmd_identifier_token5] = ACTIONS(967), + [aux_sym_cmd_identifier_token6] = ACTIONS(967), + [aux_sym_cmd_identifier_token7] = ACTIONS(967), + [aux_sym_cmd_identifier_token8] = ACTIONS(967), + [aux_sym_cmd_identifier_token9] = ACTIONS(967), + [aux_sym_cmd_identifier_token10] = ACTIONS(967), + [aux_sym_cmd_identifier_token11] = ACTIONS(967), + [aux_sym_cmd_identifier_token12] = ACTIONS(967), + [aux_sym_cmd_identifier_token13] = ACTIONS(967), + [aux_sym_cmd_identifier_token14] = ACTIONS(967), + [aux_sym_cmd_identifier_token15] = ACTIONS(967), + [aux_sym_cmd_identifier_token16] = ACTIONS(967), + [aux_sym_cmd_identifier_token17] = ACTIONS(967), + [aux_sym_cmd_identifier_token18] = ACTIONS(967), + [aux_sym_cmd_identifier_token19] = ACTIONS(967), + [aux_sym_cmd_identifier_token20] = ACTIONS(967), + [aux_sym_cmd_identifier_token21] = ACTIONS(967), + [aux_sym_cmd_identifier_token22] = ACTIONS(967), + [aux_sym_cmd_identifier_token23] = ACTIONS(967), + [aux_sym_cmd_identifier_token24] = ACTIONS(967), + [aux_sym_cmd_identifier_token25] = ACTIONS(967), + [aux_sym_cmd_identifier_token26] = ACTIONS(967), + [aux_sym_cmd_identifier_token27] = ACTIONS(967), + [aux_sym_cmd_identifier_token28] = ACTIONS(967), + [aux_sym_cmd_identifier_token29] = ACTIONS(967), + [aux_sym_cmd_identifier_token30] = ACTIONS(967), + [aux_sym_cmd_identifier_token31] = ACTIONS(967), + [aux_sym_cmd_identifier_token32] = ACTIONS(967), + [aux_sym_cmd_identifier_token33] = ACTIONS(967), + [aux_sym_cmd_identifier_token34] = ACTIONS(967), + [aux_sym_cmd_identifier_token35] = ACTIONS(967), + [aux_sym_cmd_identifier_token36] = ACTIONS(967), + [aux_sym_cmd_identifier_token37] = ACTIONS(967), + [aux_sym_cmd_identifier_token38] = ACTIONS(967), + [aux_sym_cmd_identifier_token39] = ACTIONS(967), + [aux_sym_cmd_identifier_token40] = ACTIONS(967), + [anon_sym_def] = ACTIONS(967), + [anon_sym_export_DASHenv] = ACTIONS(967), + [anon_sym_extern] = ACTIONS(967), + [anon_sym_module] = ACTIONS(967), + [anon_sym_use] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_error] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_in2] = ACTIONS(967), + [anon_sym_loop] = ACTIONS(967), + [anon_sym_make] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(967), + [anon_sym_match] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_try] = ACTIONS(967), + [anon_sym_catch] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_source] = ACTIONS(967), + [anon_sym_source_DASHenv] = ACTIONS(967), + [anon_sym_register] = ACTIONS(967), + [anon_sym_hide] = ACTIONS(967), + [anon_sym_hide_DASHenv] = ACTIONS(967), + [anon_sym_overlay] = ACTIONS(967), + [anon_sym_as] = ACTIONS(967), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(967), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(967), + [aux_sym__val_number_decimal_token3] = ACTIONS(967), + [aux_sym__val_number_decimal_token4] = ACTIONS(967), + [aux_sym__val_number_token1] = ACTIONS(967), + [aux_sym__val_number_token2] = ACTIONS(967), + [aux_sym__val_number_token3] = ACTIONS(967), + [aux_sym__val_number_token4] = ACTIONS(967), + [aux_sym__val_number_token5] = ACTIONS(967), + [aux_sym__val_number_token6] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [sym__str_single_quotes] = ACTIONS(967), + [sym__str_back_ticks] = ACTIONS(967), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(967), + [sym__entry_separator] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(969), }, - [403] = { - [sym_cell_path] = STATE(681), - [sym_path] = STATE(631), - [sym_comment] = STATE(403), - [aux_sym_cell_path_repeat1] = STATE(456), - [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(2053), - [anon_sym_false] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2053), - [aux_sym_cmd_identifier_token38] = ACTIONS(2051), - [aux_sym_cmd_identifier_token39] = ACTIONS(2053), - [aux_sym_cmd_identifier_token40] = ACTIONS(2053), - [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(2053), - [anon_sym_DOLLAR] = ACTIONS(2053), - [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(2053), - [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(2053), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2053), - [aux_sym__val_number_decimal_token1] = ACTIONS(2051), - [aux_sym__val_number_decimal_token2] = ACTIONS(2053), - [aux_sym__val_number_decimal_token3] = ACTIONS(2053), - [aux_sym__val_number_decimal_token4] = ACTIONS(2053), - [aux_sym__val_number_token1] = ACTIONS(2053), - [aux_sym__val_number_token2] = ACTIONS(2053), - [aux_sym__val_number_token3] = ACTIONS(2053), - [anon_sym_DQUOTE] = ACTIONS(2053), - [sym__str_single_quotes] = ACTIONS(2053), - [sym__str_back_ticks] = ACTIONS(2053), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2053), - [anon_sym_PLUS] = ACTIONS(2051), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2053), + [459] = { + [sym_path] = STATE(569), + [sym_comment] = STATE(459), + [aux_sym_cell_path_repeat1] = STATE(459), + [anon_sym_export] = ACTIONS(971), + [anon_sym_alias] = ACTIONS(971), + [anon_sym_let] = ACTIONS(971), + [anon_sym_let_DASHenv] = ACTIONS(971), + [anon_sym_mut] = ACTIONS(971), + [anon_sym_const] = ACTIONS(971), + [aux_sym_cmd_identifier_token1] = ACTIONS(971), + [aux_sym_cmd_identifier_token2] = ACTIONS(971), + [aux_sym_cmd_identifier_token3] = ACTIONS(971), + [aux_sym_cmd_identifier_token4] = ACTIONS(971), + [aux_sym_cmd_identifier_token5] = ACTIONS(971), + [aux_sym_cmd_identifier_token6] = ACTIONS(971), + [aux_sym_cmd_identifier_token7] = ACTIONS(971), + [aux_sym_cmd_identifier_token8] = ACTIONS(971), + [aux_sym_cmd_identifier_token9] = ACTIONS(971), + [aux_sym_cmd_identifier_token10] = ACTIONS(971), + [aux_sym_cmd_identifier_token11] = ACTIONS(971), + [aux_sym_cmd_identifier_token12] = ACTIONS(971), + [aux_sym_cmd_identifier_token13] = ACTIONS(971), + [aux_sym_cmd_identifier_token14] = ACTIONS(971), + [aux_sym_cmd_identifier_token15] = ACTIONS(971), + [aux_sym_cmd_identifier_token16] = ACTIONS(971), + [aux_sym_cmd_identifier_token17] = ACTIONS(971), + [aux_sym_cmd_identifier_token18] = ACTIONS(971), + [aux_sym_cmd_identifier_token19] = ACTIONS(971), + [aux_sym_cmd_identifier_token20] = ACTIONS(971), + [aux_sym_cmd_identifier_token21] = ACTIONS(971), + [aux_sym_cmd_identifier_token22] = ACTIONS(971), + [aux_sym_cmd_identifier_token23] = ACTIONS(971), + [aux_sym_cmd_identifier_token24] = ACTIONS(971), + [aux_sym_cmd_identifier_token25] = ACTIONS(971), + [aux_sym_cmd_identifier_token26] = ACTIONS(971), + [aux_sym_cmd_identifier_token27] = ACTIONS(971), + [aux_sym_cmd_identifier_token28] = ACTIONS(971), + [aux_sym_cmd_identifier_token29] = ACTIONS(971), + [aux_sym_cmd_identifier_token30] = ACTIONS(971), + [aux_sym_cmd_identifier_token31] = ACTIONS(971), + [aux_sym_cmd_identifier_token32] = ACTIONS(971), + [aux_sym_cmd_identifier_token33] = ACTIONS(971), + [aux_sym_cmd_identifier_token34] = ACTIONS(971), + [aux_sym_cmd_identifier_token35] = ACTIONS(971), + [aux_sym_cmd_identifier_token36] = ACTIONS(971), + [aux_sym_cmd_identifier_token37] = ACTIONS(971), + [aux_sym_cmd_identifier_token38] = ACTIONS(971), + [aux_sym_cmd_identifier_token39] = ACTIONS(971), + [aux_sym_cmd_identifier_token40] = ACTIONS(971), + [anon_sym_def] = ACTIONS(971), + [anon_sym_export_DASHenv] = ACTIONS(971), + [anon_sym_extern] = ACTIONS(971), + [anon_sym_module] = ACTIONS(971), + [anon_sym_use] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_error] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_break] = ACTIONS(971), + [anon_sym_continue] = ACTIONS(971), + [anon_sym_for] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(971), + [anon_sym_loop] = ACTIONS(971), + [anon_sym_make] = ACTIONS(971), + [anon_sym_while] = ACTIONS(971), + [anon_sym_do] = ACTIONS(971), + [anon_sym_if] = ACTIONS(971), + [anon_sym_else] = ACTIONS(971), + [anon_sym_match] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_try] = ACTIONS(971), + [anon_sym_catch] = ACTIONS(971), + [anon_sym_return] = ACTIONS(971), + [anon_sym_source] = ACTIONS(971), + [anon_sym_source_DASHenv] = ACTIONS(971), + [anon_sym_register] = ACTIONS(971), + [anon_sym_hide] = ACTIONS(971), + [anon_sym_hide_DASHenv] = ACTIONS(971), + [anon_sym_overlay] = ACTIONS(971), + [anon_sym_as] = ACTIONS(971), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), + [aux_sym__val_number_decimal_token1] = ACTIONS(971), + [aux_sym__val_number_decimal_token2] = ACTIONS(971), + [aux_sym__val_number_decimal_token3] = ACTIONS(971), + [aux_sym__val_number_decimal_token4] = ACTIONS(971), + [aux_sym__val_number_token1] = ACTIONS(971), + [aux_sym__val_number_token2] = ACTIONS(971), + [aux_sym__val_number_token3] = ACTIONS(971), + [aux_sym__val_number_token4] = ACTIONS(971), + [aux_sym__val_number_token5] = ACTIONS(971), + [aux_sym__val_number_token6] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym__str_single_quotes] = ACTIONS(971), + [sym__str_back_ticks] = ACTIONS(971), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(971), + [sym__entry_separator] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(973), }, - [404] = { - [sym_cell_path] = STATE(682), - [sym_path] = STATE(631), - [sym_comment] = STATE(404), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_alias] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_let_DASHenv] = ACTIONS(2055), - [anon_sym_mut] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [aux_sym_cmd_identifier_token1] = ACTIONS(2055), - [aux_sym_cmd_identifier_token2] = ACTIONS(2055), - [aux_sym_cmd_identifier_token3] = ACTIONS(2055), - [aux_sym_cmd_identifier_token4] = ACTIONS(2055), - [aux_sym_cmd_identifier_token5] = ACTIONS(2055), - [aux_sym_cmd_identifier_token6] = ACTIONS(2055), - [aux_sym_cmd_identifier_token7] = ACTIONS(2055), - [aux_sym_cmd_identifier_token8] = ACTIONS(2055), - [aux_sym_cmd_identifier_token9] = ACTIONS(2055), - [aux_sym_cmd_identifier_token10] = ACTIONS(2055), - [aux_sym_cmd_identifier_token11] = ACTIONS(2055), - [aux_sym_cmd_identifier_token12] = ACTIONS(2055), - [aux_sym_cmd_identifier_token13] = ACTIONS(2055), - [aux_sym_cmd_identifier_token14] = ACTIONS(2055), - [aux_sym_cmd_identifier_token15] = ACTIONS(2055), - [aux_sym_cmd_identifier_token16] = ACTIONS(2055), - [aux_sym_cmd_identifier_token17] = ACTIONS(2055), - [aux_sym_cmd_identifier_token18] = ACTIONS(2055), - [aux_sym_cmd_identifier_token19] = ACTIONS(2055), - [aux_sym_cmd_identifier_token20] = ACTIONS(2055), - [aux_sym_cmd_identifier_token21] = ACTIONS(2055), - [aux_sym_cmd_identifier_token22] = ACTIONS(2055), - [aux_sym_cmd_identifier_token23] = ACTIONS(2055), - [aux_sym_cmd_identifier_token24] = ACTIONS(2055), - [aux_sym_cmd_identifier_token25] = ACTIONS(2055), - [aux_sym_cmd_identifier_token26] = ACTIONS(2055), - [aux_sym_cmd_identifier_token27] = ACTIONS(2055), - [aux_sym_cmd_identifier_token28] = ACTIONS(2055), - [aux_sym_cmd_identifier_token29] = ACTIONS(2055), - [aux_sym_cmd_identifier_token30] = ACTIONS(2055), - [aux_sym_cmd_identifier_token31] = ACTIONS(2055), - [aux_sym_cmd_identifier_token32] = ACTIONS(2055), - [aux_sym_cmd_identifier_token33] = ACTIONS(2055), - [aux_sym_cmd_identifier_token34] = ACTIONS(2055), - [aux_sym_cmd_identifier_token35] = ACTIONS(2055), - [aux_sym_cmd_identifier_token36] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_null] = ACTIONS(2057), - [aux_sym_cmd_identifier_token38] = ACTIONS(2055), - [aux_sym_cmd_identifier_token39] = ACTIONS(2057), - [aux_sym_cmd_identifier_token40] = ACTIONS(2057), - [anon_sym_def] = ACTIONS(2055), - [anon_sym_export_DASHenv] = ACTIONS(2055), - [anon_sym_extern] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_use] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2057), - [anon_sym_error] = ACTIONS(2055), - [anon_sym_list] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_loop] = ACTIONS(2055), - [anon_sym_make] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_catch] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_source] = ACTIONS(2055), - [anon_sym_source_DASHenv] = ACTIONS(2055), - [anon_sym_register] = ACTIONS(2055), - [anon_sym_hide] = ACTIONS(2055), - [anon_sym_hide_DASHenv] = ACTIONS(2055), - [anon_sym_overlay] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), - [aux_sym__val_number_decimal_token1] = ACTIONS(2055), - [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(2055), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2057), + [460] = { + [sym_comment] = STATE(460), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1008), + [aux_sym_cmd_identifier_token3] = ACTIONS(1008), + [aux_sym_cmd_identifier_token4] = ACTIONS(1008), + [aux_sym_cmd_identifier_token5] = ACTIONS(1008), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [aux_sym_cmd_identifier_token7] = ACTIONS(1008), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1008), + [aux_sym_cmd_identifier_token11] = ACTIONS(1008), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1008), + [aux_sym_cmd_identifier_token17] = ACTIONS(1008), + [aux_sym_cmd_identifier_token18] = ACTIONS(1008), + [aux_sym_cmd_identifier_token19] = ACTIONS(1008), + [aux_sym_cmd_identifier_token20] = ACTIONS(1008), + [aux_sym_cmd_identifier_token21] = ACTIONS(1008), + [aux_sym_cmd_identifier_token22] = ACTIONS(1008), + [aux_sym_cmd_identifier_token23] = ACTIONS(1008), + [aux_sym_cmd_identifier_token24] = ACTIONS(1008), + [aux_sym_cmd_identifier_token25] = ACTIONS(1008), + [aux_sym_cmd_identifier_token26] = ACTIONS(1008), + [aux_sym_cmd_identifier_token27] = ACTIONS(1008), + [aux_sym_cmd_identifier_token28] = ACTIONS(1008), + [aux_sym_cmd_identifier_token29] = ACTIONS(1008), + [aux_sym_cmd_identifier_token30] = ACTIONS(1008), + [aux_sym_cmd_identifier_token31] = ACTIONS(1008), + [aux_sym_cmd_identifier_token32] = ACTIONS(1008), + [aux_sym_cmd_identifier_token33] = ACTIONS(1008), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1008), + [aux_sym_cmd_identifier_token36] = ACTIONS(1008), + [aux_sym_cmd_identifier_token37] = ACTIONS(1008), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1008), }, - [405] = { - [sym_cell_path] = STATE(683), - [sym_path] = STATE(631), - [sym_comment] = STATE(405), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2059), - [anon_sym_alias] = ACTIONS(2059), - [anon_sym_let] = ACTIONS(2059), - [anon_sym_let_DASHenv] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [aux_sym_cmd_identifier_token1] = ACTIONS(2059), - [aux_sym_cmd_identifier_token2] = ACTIONS(2059), - [aux_sym_cmd_identifier_token3] = ACTIONS(2059), - [aux_sym_cmd_identifier_token4] = ACTIONS(2059), - [aux_sym_cmd_identifier_token5] = ACTIONS(2059), - [aux_sym_cmd_identifier_token6] = ACTIONS(2059), - [aux_sym_cmd_identifier_token7] = ACTIONS(2059), - [aux_sym_cmd_identifier_token8] = ACTIONS(2059), - [aux_sym_cmd_identifier_token9] = ACTIONS(2059), - [aux_sym_cmd_identifier_token10] = ACTIONS(2059), - [aux_sym_cmd_identifier_token11] = ACTIONS(2059), - [aux_sym_cmd_identifier_token12] = ACTIONS(2059), - [aux_sym_cmd_identifier_token13] = ACTIONS(2059), - [aux_sym_cmd_identifier_token14] = ACTIONS(2059), - [aux_sym_cmd_identifier_token15] = ACTIONS(2059), - [aux_sym_cmd_identifier_token16] = ACTIONS(2059), - [aux_sym_cmd_identifier_token17] = ACTIONS(2059), - [aux_sym_cmd_identifier_token18] = ACTIONS(2059), - [aux_sym_cmd_identifier_token19] = ACTIONS(2059), - [aux_sym_cmd_identifier_token20] = ACTIONS(2059), - [aux_sym_cmd_identifier_token21] = ACTIONS(2059), - [aux_sym_cmd_identifier_token22] = ACTIONS(2059), - [aux_sym_cmd_identifier_token23] = ACTIONS(2059), - [aux_sym_cmd_identifier_token24] = ACTIONS(2059), - [aux_sym_cmd_identifier_token25] = ACTIONS(2059), - [aux_sym_cmd_identifier_token26] = ACTIONS(2059), - [aux_sym_cmd_identifier_token27] = ACTIONS(2059), - [aux_sym_cmd_identifier_token28] = ACTIONS(2059), - [aux_sym_cmd_identifier_token29] = ACTIONS(2059), - [aux_sym_cmd_identifier_token30] = ACTIONS(2059), - [aux_sym_cmd_identifier_token31] = ACTIONS(2059), - [aux_sym_cmd_identifier_token32] = ACTIONS(2059), - [aux_sym_cmd_identifier_token33] = ACTIONS(2059), - [aux_sym_cmd_identifier_token34] = ACTIONS(2059), - [aux_sym_cmd_identifier_token35] = ACTIONS(2059), - [aux_sym_cmd_identifier_token36] = ACTIONS(2059), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [anon_sym_null] = ACTIONS(2061), - [aux_sym_cmd_identifier_token38] = ACTIONS(2059), - [aux_sym_cmd_identifier_token39] = ACTIONS(2061), - [aux_sym_cmd_identifier_token40] = ACTIONS(2061), - [anon_sym_def] = ACTIONS(2059), - [anon_sym_export_DASHenv] = ACTIONS(2059), - [anon_sym_extern] = ACTIONS(2059), - [anon_sym_module] = ACTIONS(2059), - [anon_sym_use] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_error] = ACTIONS(2059), - [anon_sym_list] = ACTIONS(2059), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_loop] = ACTIONS(2059), - [anon_sym_make] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_do] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_else] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2059), - [anon_sym_catch] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_source] = ACTIONS(2059), - [anon_sym_source_DASHenv] = ACTIONS(2059), - [anon_sym_register] = ACTIONS(2059), - [anon_sym_hide] = ACTIONS(2059), - [anon_sym_hide_DASHenv] = ACTIONS(2059), - [anon_sym_overlay] = ACTIONS(2059), - [anon_sym_new] = ACTIONS(2059), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2061), - [aux_sym__val_number_decimal_token1] = ACTIONS(2059), - [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), - [anon_sym_PLUS] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2061), + [461] = { + [sym_comment] = STATE(461), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1741), }, - [406] = { - [sym_cell_path] = STATE(684), - [sym_path] = STATE(631), - [sym_comment] = STATE(406), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_alias] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_let_DASHenv] = ACTIONS(2067), - [anon_sym_mut] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [aux_sym_cmd_identifier_token1] = ACTIONS(2067), - [aux_sym_cmd_identifier_token2] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [aux_sym_cmd_identifier_token6] = ACTIONS(2067), - [aux_sym_cmd_identifier_token7] = ACTIONS(2067), - [aux_sym_cmd_identifier_token8] = ACTIONS(2067), - [aux_sym_cmd_identifier_token9] = ACTIONS(2067), - [aux_sym_cmd_identifier_token10] = ACTIONS(2067), - [aux_sym_cmd_identifier_token11] = ACTIONS(2067), - [aux_sym_cmd_identifier_token12] = ACTIONS(2067), - [aux_sym_cmd_identifier_token13] = ACTIONS(2067), - [aux_sym_cmd_identifier_token14] = ACTIONS(2067), - [aux_sym_cmd_identifier_token15] = ACTIONS(2067), - [aux_sym_cmd_identifier_token16] = ACTIONS(2067), - [aux_sym_cmd_identifier_token17] = ACTIONS(2067), - [aux_sym_cmd_identifier_token18] = ACTIONS(2067), - [aux_sym_cmd_identifier_token19] = ACTIONS(2067), - [aux_sym_cmd_identifier_token20] = ACTIONS(2067), - [aux_sym_cmd_identifier_token21] = ACTIONS(2067), - [aux_sym_cmd_identifier_token22] = ACTIONS(2067), - [aux_sym_cmd_identifier_token23] = ACTIONS(2067), - [aux_sym_cmd_identifier_token24] = ACTIONS(2067), - [aux_sym_cmd_identifier_token25] = ACTIONS(2067), - [aux_sym_cmd_identifier_token26] = ACTIONS(2067), - [aux_sym_cmd_identifier_token27] = ACTIONS(2067), - [aux_sym_cmd_identifier_token28] = ACTIONS(2067), - [aux_sym_cmd_identifier_token29] = ACTIONS(2067), - [aux_sym_cmd_identifier_token30] = ACTIONS(2067), - [aux_sym_cmd_identifier_token31] = ACTIONS(2067), - [aux_sym_cmd_identifier_token32] = ACTIONS(2067), - [aux_sym_cmd_identifier_token33] = ACTIONS(2067), - [aux_sym_cmd_identifier_token34] = ACTIONS(2067), - [aux_sym_cmd_identifier_token35] = ACTIONS(2067), - [aux_sym_cmd_identifier_token36] = ACTIONS(2067), - [anon_sym_true] = ACTIONS(2069), - [anon_sym_false] = ACTIONS(2069), - [anon_sym_null] = ACTIONS(2069), - [aux_sym_cmd_identifier_token38] = ACTIONS(2067), - [aux_sym_cmd_identifier_token39] = ACTIONS(2069), - [aux_sym_cmd_identifier_token40] = ACTIONS(2069), - [anon_sym_def] = ACTIONS(2067), - [anon_sym_export_DASHenv] = ACTIONS(2067), - [anon_sym_extern] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_use] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_error] = ACTIONS(2067), - [anon_sym_list] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_loop] = ACTIONS(2067), - [anon_sym_make] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_source] = ACTIONS(2067), - [anon_sym_source_DASHenv] = ACTIONS(2067), - [anon_sym_register] = ACTIONS(2067), - [anon_sym_hide] = ACTIONS(2067), - [anon_sym_hide_DASHenv] = ACTIONS(2067), - [anon_sym_overlay] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2069), - [aux_sym__val_number_decimal_token1] = ACTIONS(2067), - [aux_sym__val_number_decimal_token2] = ACTIONS(2069), - [aux_sym__val_number_decimal_token3] = ACTIONS(2069), - [aux_sym__val_number_decimal_token4] = ACTIONS(2069), - [aux_sym__val_number_token1] = ACTIONS(2069), - [aux_sym__val_number_token2] = ACTIONS(2069), - [aux_sym__val_number_token3] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2069), - [sym__str_single_quotes] = ACTIONS(2069), - [sym__str_back_ticks] = ACTIONS(2069), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2069), + [462] = { + [sym_cell_path] = STATE(727), + [sym_path] = STATE(689), + [sym_comment] = STATE(462), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1948), + [anon_sym_alias] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1948), + [anon_sym_let_DASHenv] = ACTIONS(1948), + [anon_sym_mut] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [aux_sym_cmd_identifier_token1] = ACTIONS(1948), + [aux_sym_cmd_identifier_token2] = ACTIONS(1950), + [aux_sym_cmd_identifier_token3] = ACTIONS(1950), + [aux_sym_cmd_identifier_token4] = ACTIONS(1950), + [aux_sym_cmd_identifier_token5] = ACTIONS(1950), + [aux_sym_cmd_identifier_token6] = ACTIONS(1950), + [aux_sym_cmd_identifier_token7] = ACTIONS(1950), + [aux_sym_cmd_identifier_token8] = ACTIONS(1948), + [aux_sym_cmd_identifier_token9] = ACTIONS(1948), + [aux_sym_cmd_identifier_token10] = ACTIONS(1950), + [aux_sym_cmd_identifier_token11] = ACTIONS(1950), + [aux_sym_cmd_identifier_token12] = ACTIONS(1948), + [aux_sym_cmd_identifier_token13] = ACTIONS(1948), + [aux_sym_cmd_identifier_token14] = ACTIONS(1948), + [aux_sym_cmd_identifier_token15] = ACTIONS(1948), + [aux_sym_cmd_identifier_token16] = ACTIONS(1950), + [aux_sym_cmd_identifier_token17] = ACTIONS(1950), + [aux_sym_cmd_identifier_token18] = ACTIONS(1950), + [aux_sym_cmd_identifier_token19] = ACTIONS(1950), + [aux_sym_cmd_identifier_token20] = ACTIONS(1950), + [aux_sym_cmd_identifier_token21] = ACTIONS(1950), + [aux_sym_cmd_identifier_token22] = ACTIONS(1950), + [aux_sym_cmd_identifier_token23] = ACTIONS(1950), + [aux_sym_cmd_identifier_token24] = ACTIONS(1950), + [aux_sym_cmd_identifier_token25] = ACTIONS(1950), + [aux_sym_cmd_identifier_token26] = ACTIONS(1950), + [aux_sym_cmd_identifier_token27] = ACTIONS(1950), + [aux_sym_cmd_identifier_token28] = ACTIONS(1950), + [aux_sym_cmd_identifier_token29] = ACTIONS(1950), + [aux_sym_cmd_identifier_token30] = ACTIONS(1950), + [aux_sym_cmd_identifier_token31] = ACTIONS(1950), + [aux_sym_cmd_identifier_token32] = ACTIONS(1950), + [aux_sym_cmd_identifier_token33] = ACTIONS(1950), + [aux_sym_cmd_identifier_token34] = ACTIONS(1948), + [aux_sym_cmd_identifier_token35] = ACTIONS(1950), + [aux_sym_cmd_identifier_token36] = ACTIONS(1950), + [aux_sym_cmd_identifier_token37] = ACTIONS(1950), + [aux_sym_cmd_identifier_token38] = ACTIONS(1948), + [aux_sym_cmd_identifier_token39] = ACTIONS(1950), + [aux_sym_cmd_identifier_token40] = ACTIONS(1950), + [anon_sym_def] = ACTIONS(1948), + [anon_sym_export_DASHenv] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym_module] = ACTIONS(1948), + [anon_sym_use] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_error] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_in2] = ACTIONS(1948), + [anon_sym_loop] = ACTIONS(1948), + [anon_sym_make] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(1948), + [anon_sym_match] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_source] = ACTIONS(1948), + [anon_sym_source_DASHenv] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_hide] = ACTIONS(1948), + [anon_sym_hide_DASHenv] = ACTIONS(1948), + [anon_sym_overlay] = ACTIONS(1948), + [anon_sym_as] = ACTIONS(1948), + [anon_sym_PLUS2] = ACTIONS(1948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1950), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1950), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1950), + [aux_sym__val_number_decimal_token4] = ACTIONS(1950), + [aux_sym__val_number_token1] = ACTIONS(1950), + [aux_sym__val_number_token2] = ACTIONS(1950), + [aux_sym__val_number_token3] = ACTIONS(1950), + [aux_sym__val_number_token4] = ACTIONS(1948), + [aux_sym__val_number_token5] = ACTIONS(1948), + [aux_sym__val_number_token6] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym__str_single_quotes] = ACTIONS(1950), + [sym__str_back_ticks] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1950), }, - [407] = { - [sym_cell_path] = STATE(685), - [sym_path] = STATE(631), - [sym_comment] = STATE(407), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2083), - [anon_sym_alias] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_let_DASHenv] = ACTIONS(2083), - [anon_sym_mut] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [aux_sym_cmd_identifier_token1] = ACTIONS(2083), - [aux_sym_cmd_identifier_token2] = ACTIONS(2083), - [aux_sym_cmd_identifier_token3] = ACTIONS(2083), - [aux_sym_cmd_identifier_token4] = ACTIONS(2083), - [aux_sym_cmd_identifier_token5] = ACTIONS(2083), - [aux_sym_cmd_identifier_token6] = ACTIONS(2083), - [aux_sym_cmd_identifier_token7] = ACTIONS(2083), - [aux_sym_cmd_identifier_token8] = ACTIONS(2083), - [aux_sym_cmd_identifier_token9] = ACTIONS(2083), - [aux_sym_cmd_identifier_token10] = ACTIONS(2083), - [aux_sym_cmd_identifier_token11] = ACTIONS(2083), - [aux_sym_cmd_identifier_token12] = ACTIONS(2083), - [aux_sym_cmd_identifier_token13] = ACTIONS(2083), - [aux_sym_cmd_identifier_token14] = ACTIONS(2083), - [aux_sym_cmd_identifier_token15] = ACTIONS(2083), - [aux_sym_cmd_identifier_token16] = ACTIONS(2083), - [aux_sym_cmd_identifier_token17] = ACTIONS(2083), - [aux_sym_cmd_identifier_token18] = ACTIONS(2083), - [aux_sym_cmd_identifier_token19] = ACTIONS(2083), - [aux_sym_cmd_identifier_token20] = ACTIONS(2083), - [aux_sym_cmd_identifier_token21] = ACTIONS(2083), - [aux_sym_cmd_identifier_token22] = ACTIONS(2083), - [aux_sym_cmd_identifier_token23] = ACTIONS(2083), - [aux_sym_cmd_identifier_token24] = ACTIONS(2083), - [aux_sym_cmd_identifier_token25] = ACTIONS(2083), - [aux_sym_cmd_identifier_token26] = ACTIONS(2083), - [aux_sym_cmd_identifier_token27] = ACTIONS(2083), - [aux_sym_cmd_identifier_token28] = ACTIONS(2083), - [aux_sym_cmd_identifier_token29] = ACTIONS(2083), - [aux_sym_cmd_identifier_token30] = ACTIONS(2083), - [aux_sym_cmd_identifier_token31] = ACTIONS(2083), - [aux_sym_cmd_identifier_token32] = ACTIONS(2083), - [aux_sym_cmd_identifier_token33] = ACTIONS(2083), - [aux_sym_cmd_identifier_token34] = ACTIONS(2083), - [aux_sym_cmd_identifier_token35] = ACTIONS(2083), - [aux_sym_cmd_identifier_token36] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2085), - [aux_sym_cmd_identifier_token38] = ACTIONS(2083), - [aux_sym_cmd_identifier_token39] = ACTIONS(2085), - [aux_sym_cmd_identifier_token40] = ACTIONS(2085), - [anon_sym_def] = ACTIONS(2083), - [anon_sym_export_DASHenv] = ACTIONS(2083), - [anon_sym_extern] = ACTIONS(2083), - [anon_sym_module] = ACTIONS(2083), - [anon_sym_use] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_DOLLAR] = ACTIONS(2085), - [anon_sym_error] = ACTIONS(2083), - [anon_sym_list] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_in] = ACTIONS(2083), - [anon_sym_loop] = ACTIONS(2083), - [anon_sym_make] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_do] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_else] = ACTIONS(2083), - [anon_sym_match] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_catch] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_source] = ACTIONS(2083), - [anon_sym_source_DASHenv] = ACTIONS(2083), - [anon_sym_register] = ACTIONS(2083), - [anon_sym_hide] = ACTIONS(2083), - [anon_sym_hide_DASHenv] = ACTIONS(2083), - [anon_sym_overlay] = ACTIONS(2083), - [anon_sym_new] = ACTIONS(2083), - [anon_sym_as] = ACTIONS(2083), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2085), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2083), - [aux_sym__val_number_decimal_token2] = ACTIONS(2085), - [aux_sym__val_number_decimal_token3] = ACTIONS(2085), - [aux_sym__val_number_decimal_token4] = ACTIONS(2085), - [aux_sym__val_number_token1] = ACTIONS(2085), - [aux_sym__val_number_token2] = ACTIONS(2085), - [aux_sym__val_number_token3] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [sym__str_single_quotes] = ACTIONS(2085), - [sym__str_back_ticks] = ACTIONS(2085), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2085), + [463] = { + [sym_cell_path] = STATE(728), + [sym_path] = STATE(689), + [sym_comment] = STATE(463), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1952), + [anon_sym_alias] = ACTIONS(1952), + [anon_sym_let] = ACTIONS(1952), + [anon_sym_let_DASHenv] = ACTIONS(1952), + [anon_sym_mut] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [aux_sym_cmd_identifier_token1] = ACTIONS(1952), + [aux_sym_cmd_identifier_token2] = ACTIONS(1954), + [aux_sym_cmd_identifier_token3] = ACTIONS(1954), + [aux_sym_cmd_identifier_token4] = ACTIONS(1954), + [aux_sym_cmd_identifier_token5] = ACTIONS(1954), + [aux_sym_cmd_identifier_token6] = ACTIONS(1954), + [aux_sym_cmd_identifier_token7] = ACTIONS(1954), + [aux_sym_cmd_identifier_token8] = ACTIONS(1952), + [aux_sym_cmd_identifier_token9] = ACTIONS(1952), + [aux_sym_cmd_identifier_token10] = ACTIONS(1954), + [aux_sym_cmd_identifier_token11] = ACTIONS(1954), + [aux_sym_cmd_identifier_token12] = ACTIONS(1952), + [aux_sym_cmd_identifier_token13] = ACTIONS(1952), + [aux_sym_cmd_identifier_token14] = ACTIONS(1952), + [aux_sym_cmd_identifier_token15] = ACTIONS(1952), + [aux_sym_cmd_identifier_token16] = ACTIONS(1954), + [aux_sym_cmd_identifier_token17] = ACTIONS(1954), + [aux_sym_cmd_identifier_token18] = ACTIONS(1954), + [aux_sym_cmd_identifier_token19] = ACTIONS(1954), + [aux_sym_cmd_identifier_token20] = ACTIONS(1954), + [aux_sym_cmd_identifier_token21] = ACTIONS(1954), + [aux_sym_cmd_identifier_token22] = ACTIONS(1954), + [aux_sym_cmd_identifier_token23] = ACTIONS(1954), + [aux_sym_cmd_identifier_token24] = ACTIONS(1954), + [aux_sym_cmd_identifier_token25] = ACTIONS(1954), + [aux_sym_cmd_identifier_token26] = ACTIONS(1954), + [aux_sym_cmd_identifier_token27] = ACTIONS(1954), + [aux_sym_cmd_identifier_token28] = ACTIONS(1954), + [aux_sym_cmd_identifier_token29] = ACTIONS(1954), + [aux_sym_cmd_identifier_token30] = ACTIONS(1954), + [aux_sym_cmd_identifier_token31] = ACTIONS(1954), + [aux_sym_cmd_identifier_token32] = ACTIONS(1954), + [aux_sym_cmd_identifier_token33] = ACTIONS(1954), + [aux_sym_cmd_identifier_token34] = ACTIONS(1952), + [aux_sym_cmd_identifier_token35] = ACTIONS(1954), + [aux_sym_cmd_identifier_token36] = ACTIONS(1954), + [aux_sym_cmd_identifier_token37] = ACTIONS(1954), + [aux_sym_cmd_identifier_token38] = ACTIONS(1952), + [aux_sym_cmd_identifier_token39] = ACTIONS(1954), + [aux_sym_cmd_identifier_token40] = ACTIONS(1954), + [anon_sym_def] = ACTIONS(1952), + [anon_sym_export_DASHenv] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym_module] = ACTIONS(1952), + [anon_sym_use] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_DOLLAR] = ACTIONS(1954), + [anon_sym_error] = ACTIONS(1952), + [anon_sym_DASH2] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_in2] = ACTIONS(1952), + [anon_sym_loop] = ACTIONS(1952), + [anon_sym_make] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_do] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_else] = ACTIONS(1952), + [anon_sym_match] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_try] = ACTIONS(1952), + [anon_sym_catch] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_source] = ACTIONS(1952), + [anon_sym_source_DASHenv] = ACTIONS(1952), + [anon_sym_register] = ACTIONS(1952), + [anon_sym_hide] = ACTIONS(1952), + [anon_sym_hide_DASHenv] = ACTIONS(1952), + [anon_sym_overlay] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1952), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1954), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1954), + [aux_sym__val_number_decimal_token1] = ACTIONS(1952), + [aux_sym__val_number_decimal_token2] = ACTIONS(1954), + [aux_sym__val_number_decimal_token3] = ACTIONS(1954), + [aux_sym__val_number_decimal_token4] = ACTIONS(1954), + [aux_sym__val_number_token1] = ACTIONS(1954), + [aux_sym__val_number_token2] = ACTIONS(1954), + [aux_sym__val_number_token3] = ACTIONS(1954), + [aux_sym__val_number_token4] = ACTIONS(1952), + [aux_sym__val_number_token5] = ACTIONS(1952), + [aux_sym__val_number_token6] = ACTIONS(1952), + [anon_sym_DQUOTE] = ACTIONS(1954), + [sym__str_single_quotes] = ACTIONS(1954), + [sym__str_back_ticks] = ACTIONS(1954), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1954), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1954), }, - [408] = { - [sym_cell_path] = STATE(686), - [sym_path] = STATE(631), - [sym_comment] = STATE(408), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2087), - [anon_sym_alias] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_let_DASHenv] = ACTIONS(2087), - [anon_sym_mut] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [aux_sym_cmd_identifier_token1] = ACTIONS(2087), - [aux_sym_cmd_identifier_token2] = ACTIONS(2087), - [aux_sym_cmd_identifier_token3] = ACTIONS(2087), - [aux_sym_cmd_identifier_token4] = ACTIONS(2087), - [aux_sym_cmd_identifier_token5] = ACTIONS(2087), - [aux_sym_cmd_identifier_token6] = ACTIONS(2087), - [aux_sym_cmd_identifier_token7] = ACTIONS(2087), - [aux_sym_cmd_identifier_token8] = ACTIONS(2087), - [aux_sym_cmd_identifier_token9] = ACTIONS(2087), - [aux_sym_cmd_identifier_token10] = ACTIONS(2087), - [aux_sym_cmd_identifier_token11] = ACTIONS(2087), - [aux_sym_cmd_identifier_token12] = ACTIONS(2087), - [aux_sym_cmd_identifier_token13] = ACTIONS(2087), - [aux_sym_cmd_identifier_token14] = ACTIONS(2087), - [aux_sym_cmd_identifier_token15] = ACTIONS(2087), - [aux_sym_cmd_identifier_token16] = ACTIONS(2087), - [aux_sym_cmd_identifier_token17] = ACTIONS(2087), - [aux_sym_cmd_identifier_token18] = ACTIONS(2087), - [aux_sym_cmd_identifier_token19] = ACTIONS(2087), - [aux_sym_cmd_identifier_token20] = ACTIONS(2087), - [aux_sym_cmd_identifier_token21] = ACTIONS(2087), - [aux_sym_cmd_identifier_token22] = ACTIONS(2087), - [aux_sym_cmd_identifier_token23] = ACTIONS(2087), - [aux_sym_cmd_identifier_token24] = ACTIONS(2087), - [aux_sym_cmd_identifier_token25] = ACTIONS(2087), - [aux_sym_cmd_identifier_token26] = ACTIONS(2087), - [aux_sym_cmd_identifier_token27] = ACTIONS(2087), - [aux_sym_cmd_identifier_token28] = ACTIONS(2087), - [aux_sym_cmd_identifier_token29] = ACTIONS(2087), - [aux_sym_cmd_identifier_token30] = ACTIONS(2087), - [aux_sym_cmd_identifier_token31] = ACTIONS(2087), - [aux_sym_cmd_identifier_token32] = ACTIONS(2087), - [aux_sym_cmd_identifier_token33] = ACTIONS(2087), - [aux_sym_cmd_identifier_token34] = ACTIONS(2087), - [aux_sym_cmd_identifier_token35] = ACTIONS(2087), - [aux_sym_cmd_identifier_token36] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [aux_sym_cmd_identifier_token38] = ACTIONS(2087), - [aux_sym_cmd_identifier_token39] = ACTIONS(2089), - [aux_sym_cmd_identifier_token40] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2087), - [anon_sym_export_DASHenv] = ACTIONS(2087), - [anon_sym_extern] = ACTIONS(2087), - [anon_sym_module] = ACTIONS(2087), - [anon_sym_use] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_error] = ACTIONS(2087), - [anon_sym_list] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_in] = ACTIONS(2087), - [anon_sym_loop] = ACTIONS(2087), - [anon_sym_make] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_do] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_else] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2087), - [anon_sym_catch] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_source] = ACTIONS(2087), - [anon_sym_source_DASHenv] = ACTIONS(2087), - [anon_sym_register] = ACTIONS(2087), - [anon_sym_hide] = ACTIONS(2087), - [anon_sym_hide_DASHenv] = ACTIONS(2087), - [anon_sym_overlay] = ACTIONS(2087), - [anon_sym_new] = ACTIONS(2087), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2089), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [sym__str_single_quotes] = ACTIONS(2089), - [sym__str_back_ticks] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2089), + [464] = { + [sym_comment] = STATE(464), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1737), }, - [409] = { - [sym_cell_path] = STATE(687), - [sym_path] = STATE(631), - [sym_comment] = STATE(409), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_alias] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_let_DASHenv] = ACTIONS(2095), - [anon_sym_mut] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [aux_sym_cmd_identifier_token1] = ACTIONS(2095), - [aux_sym_cmd_identifier_token2] = ACTIONS(2095), - [aux_sym_cmd_identifier_token3] = ACTIONS(2095), - [aux_sym_cmd_identifier_token4] = ACTIONS(2095), - [aux_sym_cmd_identifier_token5] = ACTIONS(2095), - [aux_sym_cmd_identifier_token6] = ACTIONS(2095), - [aux_sym_cmd_identifier_token7] = ACTIONS(2095), - [aux_sym_cmd_identifier_token8] = ACTIONS(2095), - [aux_sym_cmd_identifier_token9] = ACTIONS(2095), - [aux_sym_cmd_identifier_token10] = ACTIONS(2095), - [aux_sym_cmd_identifier_token11] = ACTIONS(2095), - [aux_sym_cmd_identifier_token12] = ACTIONS(2095), - [aux_sym_cmd_identifier_token13] = ACTIONS(2095), - [aux_sym_cmd_identifier_token14] = ACTIONS(2095), - [aux_sym_cmd_identifier_token15] = ACTIONS(2095), - [aux_sym_cmd_identifier_token16] = ACTIONS(2095), - [aux_sym_cmd_identifier_token17] = ACTIONS(2095), - [aux_sym_cmd_identifier_token18] = ACTIONS(2095), - [aux_sym_cmd_identifier_token19] = ACTIONS(2095), - [aux_sym_cmd_identifier_token20] = ACTIONS(2095), - [aux_sym_cmd_identifier_token21] = ACTIONS(2095), - [aux_sym_cmd_identifier_token22] = ACTIONS(2095), - [aux_sym_cmd_identifier_token23] = ACTIONS(2095), - [aux_sym_cmd_identifier_token24] = ACTIONS(2095), - [aux_sym_cmd_identifier_token25] = ACTIONS(2095), - [aux_sym_cmd_identifier_token26] = ACTIONS(2095), - [aux_sym_cmd_identifier_token27] = ACTIONS(2095), - [aux_sym_cmd_identifier_token28] = ACTIONS(2095), - [aux_sym_cmd_identifier_token29] = ACTIONS(2095), - [aux_sym_cmd_identifier_token30] = ACTIONS(2095), - [aux_sym_cmd_identifier_token31] = ACTIONS(2095), - [aux_sym_cmd_identifier_token32] = ACTIONS(2095), - [aux_sym_cmd_identifier_token33] = ACTIONS(2095), - [aux_sym_cmd_identifier_token34] = ACTIONS(2095), - [aux_sym_cmd_identifier_token35] = ACTIONS(2095), - [aux_sym_cmd_identifier_token36] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_null] = ACTIONS(2097), - [aux_sym_cmd_identifier_token38] = ACTIONS(2095), - [aux_sym_cmd_identifier_token39] = ACTIONS(2097), - [aux_sym_cmd_identifier_token40] = ACTIONS(2097), - [anon_sym_def] = ACTIONS(2095), - [anon_sym_export_DASHenv] = ACTIONS(2095), - [anon_sym_extern] = ACTIONS(2095), - [anon_sym_module] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(2097), - [anon_sym_error] = ACTIONS(2095), - [anon_sym_list] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_make] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_do] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2095), - [anon_sym_catch] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_source] = ACTIONS(2095), - [anon_sym_source_DASHenv] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2095), - [anon_sym_hide] = ACTIONS(2095), - [anon_sym_hide_DASHenv] = ACTIONS(2095), - [anon_sym_overlay] = ACTIONS(2095), - [anon_sym_new] = ACTIONS(2095), - [anon_sym_as] = ACTIONS(2095), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2097), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2097), - [aux_sym__val_number_decimal_token1] = ACTIONS(2095), - [aux_sym__val_number_decimal_token2] = ACTIONS(2097), - [aux_sym__val_number_decimal_token3] = ACTIONS(2097), - [aux_sym__val_number_decimal_token4] = ACTIONS(2097), - [aux_sym__val_number_token1] = ACTIONS(2097), - [aux_sym__val_number_token2] = ACTIONS(2097), - [aux_sym__val_number_token3] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [sym__str_single_quotes] = ACTIONS(2097), - [sym__str_back_ticks] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2097), + [465] = { + [sym_comment] = STATE(465), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [aux_sym_cmd_identifier_token1] = ACTIONS(1010), + [aux_sym_cmd_identifier_token2] = ACTIONS(1012), + [aux_sym_cmd_identifier_token3] = ACTIONS(1012), + [aux_sym_cmd_identifier_token4] = ACTIONS(1012), + [aux_sym_cmd_identifier_token5] = ACTIONS(1012), + [aux_sym_cmd_identifier_token6] = ACTIONS(1012), + [aux_sym_cmd_identifier_token7] = ACTIONS(1012), + [aux_sym_cmd_identifier_token8] = ACTIONS(1010), + [aux_sym_cmd_identifier_token9] = ACTIONS(1010), + [aux_sym_cmd_identifier_token10] = ACTIONS(1012), + [aux_sym_cmd_identifier_token11] = ACTIONS(1012), + [aux_sym_cmd_identifier_token12] = ACTIONS(1010), + [aux_sym_cmd_identifier_token13] = ACTIONS(1010), + [aux_sym_cmd_identifier_token14] = ACTIONS(1010), + [aux_sym_cmd_identifier_token15] = ACTIONS(1010), + [aux_sym_cmd_identifier_token16] = ACTIONS(1012), + [aux_sym_cmd_identifier_token17] = ACTIONS(1012), + [aux_sym_cmd_identifier_token18] = ACTIONS(1012), + [aux_sym_cmd_identifier_token19] = ACTIONS(1012), + [aux_sym_cmd_identifier_token20] = ACTIONS(1012), + [aux_sym_cmd_identifier_token21] = ACTIONS(1012), + [aux_sym_cmd_identifier_token22] = ACTIONS(1012), + [aux_sym_cmd_identifier_token23] = ACTIONS(1012), + [aux_sym_cmd_identifier_token24] = ACTIONS(1012), + [aux_sym_cmd_identifier_token25] = ACTIONS(1012), + [aux_sym_cmd_identifier_token26] = ACTIONS(1012), + [aux_sym_cmd_identifier_token27] = ACTIONS(1012), + [aux_sym_cmd_identifier_token28] = ACTIONS(1012), + [aux_sym_cmd_identifier_token29] = ACTIONS(1012), + [aux_sym_cmd_identifier_token30] = ACTIONS(1012), + [aux_sym_cmd_identifier_token31] = ACTIONS(1012), + [aux_sym_cmd_identifier_token32] = ACTIONS(1012), + [aux_sym_cmd_identifier_token33] = ACTIONS(1012), + [aux_sym_cmd_identifier_token34] = ACTIONS(1010), + [aux_sym_cmd_identifier_token35] = ACTIONS(1012), + [aux_sym_cmd_identifier_token36] = ACTIONS(1012), + [aux_sym_cmd_identifier_token37] = ACTIONS(1012), + [aux_sym_cmd_identifier_token38] = ACTIONS(1010), + [aux_sym_cmd_identifier_token39] = ACTIONS(1012), + [aux_sym_cmd_identifier_token40] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in2] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_make] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_catch] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_PLUS2] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), + [aux_sym__val_number_token1] = ACTIONS(1012), + [aux_sym__val_number_token2] = ACTIONS(1012), + [aux_sym__val_number_token3] = ACTIONS(1012), + [aux_sym__val_number_token4] = ACTIONS(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1012), }, - [410] = { - [sym_comment] = STATE(410), - [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(1064), - [anon_sym_false] = ACTIONS(1064), - [anon_sym_null] = ACTIONS(1064), - [aux_sym_cmd_identifier_token38] = ACTIONS(1062), - [aux_sym_cmd_identifier_token39] = ACTIONS(1064), - [aux_sym_cmd_identifier_token40] = ACTIONS(1064), - [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(1064), - [anon_sym_COMMA] = ACTIONS(1064), - [anon_sym_DOLLAR] = ACTIONS(1064), - [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(1064), - [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_QMARK2] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [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), - [aux_sym_record_entry_token1] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1064), + [466] = { + [sym_comment] = STATE(466), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [aux_sym_cmd_identifier_token1] = ACTIONS(1014), + [aux_sym_cmd_identifier_token2] = ACTIONS(1016), + [aux_sym_cmd_identifier_token3] = ACTIONS(1016), + [aux_sym_cmd_identifier_token4] = ACTIONS(1016), + [aux_sym_cmd_identifier_token5] = ACTIONS(1016), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [aux_sym_cmd_identifier_token7] = ACTIONS(1016), + [aux_sym_cmd_identifier_token8] = ACTIONS(1014), + [aux_sym_cmd_identifier_token9] = ACTIONS(1014), + [aux_sym_cmd_identifier_token10] = ACTIONS(1016), + [aux_sym_cmd_identifier_token11] = ACTIONS(1016), + [aux_sym_cmd_identifier_token12] = ACTIONS(1014), + [aux_sym_cmd_identifier_token13] = ACTIONS(1014), + [aux_sym_cmd_identifier_token14] = ACTIONS(1014), + [aux_sym_cmd_identifier_token15] = ACTIONS(1014), + [aux_sym_cmd_identifier_token16] = ACTIONS(1016), + [aux_sym_cmd_identifier_token17] = ACTIONS(1016), + [aux_sym_cmd_identifier_token18] = ACTIONS(1016), + [aux_sym_cmd_identifier_token19] = ACTIONS(1016), + [aux_sym_cmd_identifier_token20] = ACTIONS(1016), + [aux_sym_cmd_identifier_token21] = ACTIONS(1016), + [aux_sym_cmd_identifier_token22] = ACTIONS(1016), + [aux_sym_cmd_identifier_token23] = ACTIONS(1016), + [aux_sym_cmd_identifier_token24] = ACTIONS(1016), + [aux_sym_cmd_identifier_token25] = ACTIONS(1016), + [aux_sym_cmd_identifier_token26] = ACTIONS(1016), + [aux_sym_cmd_identifier_token27] = ACTIONS(1016), + [aux_sym_cmd_identifier_token28] = ACTIONS(1016), + [aux_sym_cmd_identifier_token29] = ACTIONS(1016), + [aux_sym_cmd_identifier_token30] = ACTIONS(1016), + [aux_sym_cmd_identifier_token31] = ACTIONS(1016), + [aux_sym_cmd_identifier_token32] = ACTIONS(1016), + [aux_sym_cmd_identifier_token33] = ACTIONS(1016), + [aux_sym_cmd_identifier_token34] = ACTIONS(1014), + [aux_sym_cmd_identifier_token35] = ACTIONS(1016), + [aux_sym_cmd_identifier_token36] = ACTIONS(1016), + [aux_sym_cmd_identifier_token37] = ACTIONS(1016), + [aux_sym_cmd_identifier_token38] = ACTIONS(1014), + [aux_sym_cmd_identifier_token39] = ACTIONS(1016), + [aux_sym_cmd_identifier_token40] = ACTIONS(1016), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_make] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_catch] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_as] = ACTIONS(1014), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), + [anon_sym_DOT_DOT2] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1016), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(1016), + [aux_sym__val_number_token2] = ACTIONS(1016), + [aux_sym__val_number_token3] = ACTIONS(1016), + [aux_sym__val_number_token4] = ACTIONS(1014), + [aux_sym__val_number_token5] = ACTIONS(1014), + [aux_sym__val_number_token6] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1016), + [sym__str_single_quotes] = ACTIONS(1016), + [sym__str_back_ticks] = ACTIONS(1016), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1016), }, - [411] = { - [sym_path] = STATE(518), - [sym_comment] = STATE(411), - [aux_sym_cell_path_repeat1] = STATE(412), - [anon_sym_export] = ACTIONS(1027), - [anon_sym_alias] = ACTIONS(1027), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_let_DASHenv] = ACTIONS(1027), - [anon_sym_mut] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [aux_sym_cmd_identifier_token1] = ACTIONS(1027), - [aux_sym_cmd_identifier_token2] = ACTIONS(1027), - [aux_sym_cmd_identifier_token3] = ACTIONS(1027), - [aux_sym_cmd_identifier_token4] = ACTIONS(1027), - [aux_sym_cmd_identifier_token5] = ACTIONS(1027), - [aux_sym_cmd_identifier_token6] = ACTIONS(1027), - [aux_sym_cmd_identifier_token7] = ACTIONS(1027), - [aux_sym_cmd_identifier_token8] = ACTIONS(1027), - [aux_sym_cmd_identifier_token9] = ACTIONS(1027), - [aux_sym_cmd_identifier_token10] = ACTIONS(1027), - [aux_sym_cmd_identifier_token11] = ACTIONS(1027), - [aux_sym_cmd_identifier_token12] = ACTIONS(1027), - [aux_sym_cmd_identifier_token13] = ACTIONS(1027), - [aux_sym_cmd_identifier_token14] = ACTIONS(1027), - [aux_sym_cmd_identifier_token15] = ACTIONS(1027), - [aux_sym_cmd_identifier_token16] = ACTIONS(1027), - [aux_sym_cmd_identifier_token17] = ACTIONS(1027), - [aux_sym_cmd_identifier_token18] = ACTIONS(1027), - [aux_sym_cmd_identifier_token19] = ACTIONS(1027), - [aux_sym_cmd_identifier_token20] = ACTIONS(1027), - [aux_sym_cmd_identifier_token21] = ACTIONS(1027), - [aux_sym_cmd_identifier_token22] = ACTIONS(1027), - [aux_sym_cmd_identifier_token23] = ACTIONS(1027), - [aux_sym_cmd_identifier_token24] = ACTIONS(1027), - [aux_sym_cmd_identifier_token25] = ACTIONS(1027), - [aux_sym_cmd_identifier_token26] = ACTIONS(1027), - [aux_sym_cmd_identifier_token27] = ACTIONS(1027), - [aux_sym_cmd_identifier_token28] = ACTIONS(1027), - [aux_sym_cmd_identifier_token29] = ACTIONS(1027), - [aux_sym_cmd_identifier_token30] = ACTIONS(1027), - [aux_sym_cmd_identifier_token31] = ACTIONS(1027), - [aux_sym_cmd_identifier_token32] = ACTIONS(1027), - [aux_sym_cmd_identifier_token33] = ACTIONS(1027), - [aux_sym_cmd_identifier_token34] = ACTIONS(1027), - [aux_sym_cmd_identifier_token35] = ACTIONS(1027), - [aux_sym_cmd_identifier_token36] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1027), - [anon_sym_false] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1027), - [aux_sym_cmd_identifier_token38] = ACTIONS(1027), - [aux_sym_cmd_identifier_token39] = ACTIONS(1027), - [aux_sym_cmd_identifier_token40] = ACTIONS(1027), - [anon_sym_def] = ACTIONS(1027), - [anon_sym_export_DASHenv] = ACTIONS(1027), - [anon_sym_extern] = ACTIONS(1027), - [anon_sym_module] = ACTIONS(1027), - [anon_sym_use] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_error] = ACTIONS(1027), - [anon_sym_list] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1027), - [anon_sym_continue] = ACTIONS(1027), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(1027), - [anon_sym_make] = ACTIONS(1027), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(1027), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_else] = ACTIONS(1027), - [anon_sym_match] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_try] = ACTIONS(1027), - [anon_sym_catch] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_source] = ACTIONS(1027), - [anon_sym_source_DASHenv] = ACTIONS(1027), - [anon_sym_register] = ACTIONS(1027), - [anon_sym_hide] = ACTIONS(1027), - [anon_sym_hide_DASHenv] = ACTIONS(1027), - [anon_sym_overlay] = ACTIONS(1027), - [anon_sym_new] = ACTIONS(1027), - [anon_sym_as] = ACTIONS(1027), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1027), - [aux_sym__val_number_decimal_token1] = ACTIONS(1027), - [aux_sym__val_number_decimal_token2] = ACTIONS(1027), - [aux_sym__val_number_decimal_token3] = ACTIONS(1027), - [aux_sym__val_number_decimal_token4] = ACTIONS(1027), - [aux_sym__val_number_token1] = ACTIONS(1027), - [aux_sym__val_number_token2] = ACTIONS(1027), - [aux_sym__val_number_token3] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(1027), - [sym__str_single_quotes] = ACTIONS(1027), - [sym__str_back_ticks] = ACTIONS(1027), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1027), - [sym__entry_separator] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1029), + [467] = { + [sym_cell_path] = STATE(762), + [sym_path] = STATE(689), + [sym_comment] = STATE(467), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_alias] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_let_DASHenv] = ACTIONS(2090), + [anon_sym_mut] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [aux_sym_cmd_identifier_token1] = ACTIONS(2090), + [aux_sym_cmd_identifier_token2] = ACTIONS(2092), + [aux_sym_cmd_identifier_token3] = ACTIONS(2092), + [aux_sym_cmd_identifier_token4] = ACTIONS(2092), + [aux_sym_cmd_identifier_token5] = ACTIONS(2092), + [aux_sym_cmd_identifier_token6] = ACTIONS(2092), + [aux_sym_cmd_identifier_token7] = ACTIONS(2092), + [aux_sym_cmd_identifier_token8] = ACTIONS(2090), + [aux_sym_cmd_identifier_token9] = ACTIONS(2090), + [aux_sym_cmd_identifier_token10] = ACTIONS(2092), + [aux_sym_cmd_identifier_token11] = ACTIONS(2092), + [aux_sym_cmd_identifier_token12] = ACTIONS(2090), + [aux_sym_cmd_identifier_token13] = ACTIONS(2090), + [aux_sym_cmd_identifier_token14] = ACTIONS(2090), + [aux_sym_cmd_identifier_token15] = ACTIONS(2090), + [aux_sym_cmd_identifier_token16] = ACTIONS(2092), + [aux_sym_cmd_identifier_token17] = ACTIONS(2092), + [aux_sym_cmd_identifier_token18] = ACTIONS(2092), + [aux_sym_cmd_identifier_token19] = ACTIONS(2092), + [aux_sym_cmd_identifier_token20] = ACTIONS(2092), + [aux_sym_cmd_identifier_token21] = ACTIONS(2092), + [aux_sym_cmd_identifier_token22] = ACTIONS(2092), + [aux_sym_cmd_identifier_token23] = ACTIONS(2092), + [aux_sym_cmd_identifier_token24] = ACTIONS(2092), + [aux_sym_cmd_identifier_token25] = ACTIONS(2092), + [aux_sym_cmd_identifier_token26] = ACTIONS(2092), + [aux_sym_cmd_identifier_token27] = ACTIONS(2092), + [aux_sym_cmd_identifier_token28] = ACTIONS(2092), + [aux_sym_cmd_identifier_token29] = ACTIONS(2092), + [aux_sym_cmd_identifier_token30] = ACTIONS(2092), + [aux_sym_cmd_identifier_token31] = ACTIONS(2092), + [aux_sym_cmd_identifier_token32] = ACTIONS(2092), + [aux_sym_cmd_identifier_token33] = ACTIONS(2092), + [aux_sym_cmd_identifier_token34] = ACTIONS(2090), + [aux_sym_cmd_identifier_token35] = ACTIONS(2092), + [aux_sym_cmd_identifier_token36] = ACTIONS(2092), + [aux_sym_cmd_identifier_token37] = ACTIONS(2092), + [aux_sym_cmd_identifier_token38] = ACTIONS(2090), + [aux_sym_cmd_identifier_token39] = ACTIONS(2092), + [aux_sym_cmd_identifier_token40] = ACTIONS(2092), + [anon_sym_def] = ACTIONS(2090), + [anon_sym_export_DASHenv] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_use] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2090), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_in2] = ACTIONS(2090), + [anon_sym_loop] = ACTIONS(2090), + [anon_sym_make] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_match] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_catch] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_source] = ACTIONS(2090), + [anon_sym_source_DASHenv] = ACTIONS(2090), + [anon_sym_register] = ACTIONS(2090), + [anon_sym_hide] = ACTIONS(2090), + [anon_sym_hide_DASHenv] = ACTIONS(2090), + [anon_sym_overlay] = ACTIONS(2090), + [anon_sym_as] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2092), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2092), + [aux_sym__val_number_decimal_token1] = ACTIONS(2090), + [aux_sym__val_number_decimal_token2] = ACTIONS(2092), + [aux_sym__val_number_decimal_token3] = ACTIONS(2092), + [aux_sym__val_number_decimal_token4] = ACTIONS(2092), + [aux_sym__val_number_token1] = ACTIONS(2092), + [aux_sym__val_number_token2] = ACTIONS(2092), + [aux_sym__val_number_token3] = ACTIONS(2092), + [aux_sym__val_number_token4] = ACTIONS(2090), + [aux_sym__val_number_token5] = ACTIONS(2090), + [aux_sym__val_number_token6] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2092), + [sym__str_single_quotes] = ACTIONS(2092), + [sym__str_back_ticks] = ACTIONS(2092), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2092), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2092), }, - [412] = { - [sym_path] = STATE(518), - [sym_comment] = STATE(412), - [aux_sym_cell_path_repeat1] = STATE(412), - [anon_sym_export] = ACTIONS(1031), - [anon_sym_alias] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1031), - [anon_sym_let_DASHenv] = ACTIONS(1031), - [anon_sym_mut] = ACTIONS(1031), - [anon_sym_const] = ACTIONS(1031), - [aux_sym_cmd_identifier_token1] = ACTIONS(1031), - [aux_sym_cmd_identifier_token2] = ACTIONS(1031), - [aux_sym_cmd_identifier_token3] = ACTIONS(1031), - [aux_sym_cmd_identifier_token4] = ACTIONS(1031), - [aux_sym_cmd_identifier_token5] = ACTIONS(1031), - [aux_sym_cmd_identifier_token6] = ACTIONS(1031), - [aux_sym_cmd_identifier_token7] = ACTIONS(1031), - [aux_sym_cmd_identifier_token8] = ACTIONS(1031), - [aux_sym_cmd_identifier_token9] = ACTIONS(1031), - [aux_sym_cmd_identifier_token10] = ACTIONS(1031), - [aux_sym_cmd_identifier_token11] = ACTIONS(1031), - [aux_sym_cmd_identifier_token12] = ACTIONS(1031), - [aux_sym_cmd_identifier_token13] = ACTIONS(1031), - [aux_sym_cmd_identifier_token14] = ACTIONS(1031), - [aux_sym_cmd_identifier_token15] = ACTIONS(1031), - [aux_sym_cmd_identifier_token16] = ACTIONS(1031), - [aux_sym_cmd_identifier_token17] = ACTIONS(1031), - [aux_sym_cmd_identifier_token18] = ACTIONS(1031), - [aux_sym_cmd_identifier_token19] = ACTIONS(1031), - [aux_sym_cmd_identifier_token20] = ACTIONS(1031), - [aux_sym_cmd_identifier_token21] = ACTIONS(1031), - [aux_sym_cmd_identifier_token22] = ACTIONS(1031), - [aux_sym_cmd_identifier_token23] = ACTIONS(1031), - [aux_sym_cmd_identifier_token24] = ACTIONS(1031), - [aux_sym_cmd_identifier_token25] = ACTIONS(1031), - [aux_sym_cmd_identifier_token26] = ACTIONS(1031), - [aux_sym_cmd_identifier_token27] = ACTIONS(1031), - [aux_sym_cmd_identifier_token28] = ACTIONS(1031), - [aux_sym_cmd_identifier_token29] = ACTIONS(1031), - [aux_sym_cmd_identifier_token30] = ACTIONS(1031), - [aux_sym_cmd_identifier_token31] = ACTIONS(1031), - [aux_sym_cmd_identifier_token32] = ACTIONS(1031), - [aux_sym_cmd_identifier_token33] = ACTIONS(1031), - [aux_sym_cmd_identifier_token34] = ACTIONS(1031), - [aux_sym_cmd_identifier_token35] = ACTIONS(1031), - [aux_sym_cmd_identifier_token36] = ACTIONS(1031), - [anon_sym_true] = ACTIONS(1031), - [anon_sym_false] = ACTIONS(1031), - [anon_sym_null] = ACTIONS(1031), - [aux_sym_cmd_identifier_token38] = ACTIONS(1031), - [aux_sym_cmd_identifier_token39] = ACTIONS(1031), - [aux_sym_cmd_identifier_token40] = ACTIONS(1031), - [anon_sym_def] = ACTIONS(1031), - [anon_sym_export_DASHenv] = ACTIONS(1031), - [anon_sym_extern] = ACTIONS(1031), - [anon_sym_module] = ACTIONS(1031), - [anon_sym_use] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_error] = ACTIONS(1031), - [anon_sym_list] = ACTIONS(1031), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_break] = ACTIONS(1031), - [anon_sym_continue] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(1031), - [anon_sym_in] = ACTIONS(1031), - [anon_sym_loop] = ACTIONS(1031), - [anon_sym_make] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1031), - [anon_sym_else] = ACTIONS(1031), - [anon_sym_match] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [anon_sym_try] = ACTIONS(1031), - [anon_sym_catch] = ACTIONS(1031), - [anon_sym_return] = ACTIONS(1031), - [anon_sym_source] = ACTIONS(1031), - [anon_sym_source_DASHenv] = ACTIONS(1031), - [anon_sym_register] = ACTIONS(1031), - [anon_sym_hide] = ACTIONS(1031), - [anon_sym_hide_DASHenv] = ACTIONS(1031), - [anon_sym_overlay] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_as] = ACTIONS(1031), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(2179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1031), - [aux_sym__val_number_decimal_token1] = ACTIONS(1031), - [aux_sym__val_number_decimal_token2] = ACTIONS(1031), - [aux_sym__val_number_decimal_token3] = ACTIONS(1031), - [aux_sym__val_number_decimal_token4] = ACTIONS(1031), - [aux_sym__val_number_token1] = ACTIONS(1031), - [aux_sym__val_number_token2] = ACTIONS(1031), - [aux_sym__val_number_token3] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1031), - [sym__str_single_quotes] = ACTIONS(1031), - [sym__str_back_ticks] = ACTIONS(1031), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1031), - [sym__entry_separator] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1031), + [468] = { + [sym_comment] = STATE(468), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1783), + [aux_sym_cmd_identifier_token3] = ACTIONS(1783), + [aux_sym_cmd_identifier_token4] = ACTIONS(1783), + [aux_sym_cmd_identifier_token5] = ACTIONS(1783), + [aux_sym_cmd_identifier_token6] = ACTIONS(1783), + [aux_sym_cmd_identifier_token7] = ACTIONS(1783), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1783), + [aux_sym_cmd_identifier_token11] = ACTIONS(1783), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1783), + [aux_sym_cmd_identifier_token17] = ACTIONS(1783), + [aux_sym_cmd_identifier_token18] = ACTIONS(1783), + [aux_sym_cmd_identifier_token19] = ACTIONS(1783), + [aux_sym_cmd_identifier_token20] = ACTIONS(1783), + [aux_sym_cmd_identifier_token21] = ACTIONS(1783), + [aux_sym_cmd_identifier_token22] = ACTIONS(1783), + [aux_sym_cmd_identifier_token23] = ACTIONS(1783), + [aux_sym_cmd_identifier_token24] = ACTIONS(1783), + [aux_sym_cmd_identifier_token25] = ACTIONS(1783), + [aux_sym_cmd_identifier_token26] = ACTIONS(1783), + [aux_sym_cmd_identifier_token27] = ACTIONS(1783), + [aux_sym_cmd_identifier_token28] = ACTIONS(1783), + [aux_sym_cmd_identifier_token29] = ACTIONS(1783), + [aux_sym_cmd_identifier_token30] = ACTIONS(1783), + [aux_sym_cmd_identifier_token31] = ACTIONS(1783), + [aux_sym_cmd_identifier_token32] = ACTIONS(1783), + [aux_sym_cmd_identifier_token33] = ACTIONS(1783), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1783), + [aux_sym_cmd_identifier_token36] = ACTIONS(1783), + [aux_sym_cmd_identifier_token37] = ACTIONS(1783), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1783), + [aux_sym_cmd_identifier_token40] = ACTIONS(1783), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1783), + [aux_sym__val_number_decimal_token3] = ACTIONS(1783), + [aux_sym__val_number_decimal_token4] = ACTIONS(1783), + [aux_sym__val_number_token1] = ACTIONS(1783), + [aux_sym__val_number_token2] = ACTIONS(1783), + [aux_sym__val_number_token3] = ACTIONS(1783), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [sym__str_single_quotes] = ACTIONS(1783), + [sym__str_back_ticks] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), + [sym__entry_separator] = ACTIONS(1785), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1033), - }, - [413] = { - [sym_cell_path] = STATE(655), - [sym_path] = STATE(631), - [sym_comment] = STATE(413), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_alias] = ACTIONS(1897), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_let_DASHenv] = ACTIONS(1897), - [anon_sym_mut] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(1897), - [aux_sym_cmd_identifier_token1] = ACTIONS(1897), - [aux_sym_cmd_identifier_token2] = ACTIONS(1897), - [aux_sym_cmd_identifier_token3] = ACTIONS(1897), - [aux_sym_cmd_identifier_token4] = ACTIONS(1897), - [aux_sym_cmd_identifier_token5] = ACTIONS(1897), - [aux_sym_cmd_identifier_token6] = ACTIONS(1897), - [aux_sym_cmd_identifier_token7] = ACTIONS(1897), - [aux_sym_cmd_identifier_token8] = ACTIONS(1897), - [aux_sym_cmd_identifier_token9] = ACTIONS(1897), - [aux_sym_cmd_identifier_token10] = ACTIONS(1897), - [aux_sym_cmd_identifier_token11] = ACTIONS(1897), - [aux_sym_cmd_identifier_token12] = ACTIONS(1897), - [aux_sym_cmd_identifier_token13] = ACTIONS(1897), - [aux_sym_cmd_identifier_token14] = ACTIONS(1897), - [aux_sym_cmd_identifier_token15] = ACTIONS(1897), - [aux_sym_cmd_identifier_token16] = ACTIONS(1897), - [aux_sym_cmd_identifier_token17] = ACTIONS(1897), - [aux_sym_cmd_identifier_token18] = ACTIONS(1897), - [aux_sym_cmd_identifier_token19] = ACTIONS(1897), - [aux_sym_cmd_identifier_token20] = ACTIONS(1897), - [aux_sym_cmd_identifier_token21] = ACTIONS(1897), - [aux_sym_cmd_identifier_token22] = ACTIONS(1897), - [aux_sym_cmd_identifier_token23] = ACTIONS(1897), - [aux_sym_cmd_identifier_token24] = ACTIONS(1897), - [aux_sym_cmd_identifier_token25] = ACTIONS(1897), - [aux_sym_cmd_identifier_token26] = ACTIONS(1897), - [aux_sym_cmd_identifier_token27] = ACTIONS(1897), - [aux_sym_cmd_identifier_token28] = ACTIONS(1897), - [aux_sym_cmd_identifier_token29] = ACTIONS(1897), - [aux_sym_cmd_identifier_token30] = ACTIONS(1897), - [aux_sym_cmd_identifier_token31] = ACTIONS(1897), - [aux_sym_cmd_identifier_token32] = ACTIONS(1897), - [aux_sym_cmd_identifier_token33] = ACTIONS(1897), - [aux_sym_cmd_identifier_token34] = ACTIONS(1897), - [aux_sym_cmd_identifier_token35] = ACTIONS(1897), - [aux_sym_cmd_identifier_token36] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = ACTIONS(1899), - [anon_sym_null] = ACTIONS(1899), - [aux_sym_cmd_identifier_token38] = ACTIONS(1897), - [aux_sym_cmd_identifier_token39] = ACTIONS(1899), - [aux_sym_cmd_identifier_token40] = ACTIONS(1899), - [anon_sym_def] = ACTIONS(1897), - [anon_sym_export_DASHenv] = ACTIONS(1897), - [anon_sym_extern] = ACTIONS(1897), - [anon_sym_module] = ACTIONS(1897), - [anon_sym_use] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_DOLLAR] = ACTIONS(1899), - [anon_sym_error] = ACTIONS(1897), - [anon_sym_list] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_in] = ACTIONS(1897), - [anon_sym_loop] = ACTIONS(1897), - [anon_sym_make] = ACTIONS(1897), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_do] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_else] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1897), - [anon_sym_catch] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_source] = ACTIONS(1897), - [anon_sym_source_DASHenv] = ACTIONS(1897), - [anon_sym_register] = ACTIONS(1897), - [anon_sym_hide] = ACTIONS(1897), - [anon_sym_hide_DASHenv] = ACTIONS(1897), - [anon_sym_overlay] = ACTIONS(1897), - [anon_sym_new] = ACTIONS(1897), - [anon_sym_as] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), - [aux_sym__val_number_decimal_token1] = ACTIONS(1897), - [aux_sym__val_number_decimal_token2] = ACTIONS(1899), - [aux_sym__val_number_decimal_token3] = ACTIONS(1899), - [aux_sym__val_number_decimal_token4] = ACTIONS(1899), - [aux_sym__val_number_token1] = ACTIONS(1899), - [aux_sym__val_number_token2] = ACTIONS(1899), - [aux_sym__val_number_token3] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [sym__str_single_quotes] = ACTIONS(1899), - [sym__str_back_ticks] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1899), + [sym_raw_string_begin] = ACTIONS(1785), }, - [414] = { - [sym_comment] = STATE(414), - [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(249), - [sym_raw_string_begin] = ACTIONS(1040), - }, - [415] = { - [sym_comment] = STATE(415), - [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_QMARK2] = ACTIONS(1056), - [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(249), - [sym_raw_string_begin] = ACTIONS(1056), + [469] = { + [sym_cell_path] = STATE(731), + [sym_path] = STATE(689), + [sym_comment] = STATE(469), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1960), + [anon_sym_alias] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_let_DASHenv] = ACTIONS(1960), + [anon_sym_mut] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [aux_sym_cmd_identifier_token1] = ACTIONS(1960), + [aux_sym_cmd_identifier_token2] = ACTIONS(1962), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), + [aux_sym_cmd_identifier_token6] = ACTIONS(1962), + [aux_sym_cmd_identifier_token7] = ACTIONS(1962), + [aux_sym_cmd_identifier_token8] = ACTIONS(1960), + [aux_sym_cmd_identifier_token9] = ACTIONS(1960), + [aux_sym_cmd_identifier_token10] = ACTIONS(1962), + [aux_sym_cmd_identifier_token11] = ACTIONS(1962), + [aux_sym_cmd_identifier_token12] = ACTIONS(1960), + [aux_sym_cmd_identifier_token13] = ACTIONS(1960), + [aux_sym_cmd_identifier_token14] = ACTIONS(1960), + [aux_sym_cmd_identifier_token15] = ACTIONS(1960), + [aux_sym_cmd_identifier_token16] = ACTIONS(1962), + [aux_sym_cmd_identifier_token17] = ACTIONS(1962), + [aux_sym_cmd_identifier_token18] = ACTIONS(1962), + [aux_sym_cmd_identifier_token19] = ACTIONS(1962), + [aux_sym_cmd_identifier_token20] = ACTIONS(1962), + [aux_sym_cmd_identifier_token21] = ACTIONS(1962), + [aux_sym_cmd_identifier_token22] = ACTIONS(1962), + [aux_sym_cmd_identifier_token23] = ACTIONS(1962), + [aux_sym_cmd_identifier_token24] = ACTIONS(1962), + [aux_sym_cmd_identifier_token25] = ACTIONS(1962), + [aux_sym_cmd_identifier_token26] = ACTIONS(1962), + [aux_sym_cmd_identifier_token27] = ACTIONS(1962), + [aux_sym_cmd_identifier_token28] = ACTIONS(1962), + [aux_sym_cmd_identifier_token29] = ACTIONS(1962), + [aux_sym_cmd_identifier_token30] = ACTIONS(1962), + [aux_sym_cmd_identifier_token31] = ACTIONS(1962), + [aux_sym_cmd_identifier_token32] = ACTIONS(1962), + [aux_sym_cmd_identifier_token33] = ACTIONS(1962), + [aux_sym_cmd_identifier_token34] = ACTIONS(1960), + [aux_sym_cmd_identifier_token35] = ACTIONS(1962), + [aux_sym_cmd_identifier_token36] = ACTIONS(1962), + [aux_sym_cmd_identifier_token37] = ACTIONS(1962), + [aux_sym_cmd_identifier_token38] = ACTIONS(1960), + [aux_sym_cmd_identifier_token39] = ACTIONS(1962), + [aux_sym_cmd_identifier_token40] = ACTIONS(1962), + [anon_sym_def] = ACTIONS(1960), + [anon_sym_export_DASHenv] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym_module] = ACTIONS(1960), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_DOLLAR] = ACTIONS(1962), + [anon_sym_error] = ACTIONS(1960), + [anon_sym_DASH2] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_in2] = ACTIONS(1960), + [anon_sym_loop] = ACTIONS(1960), + [anon_sym_make] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_else] = ACTIONS(1960), + [anon_sym_match] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1962), + [anon_sym_try] = ACTIONS(1960), + [anon_sym_catch] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_source] = ACTIONS(1960), + [anon_sym_source_DASHenv] = ACTIONS(1960), + [anon_sym_register] = ACTIONS(1960), + [anon_sym_hide] = ACTIONS(1960), + [anon_sym_hide_DASHenv] = ACTIONS(1960), + [anon_sym_overlay] = ACTIONS(1960), + [anon_sym_as] = ACTIONS(1960), + [anon_sym_PLUS2] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1962), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1962), + [aux_sym__val_number_decimal_token1] = ACTIONS(1960), + [aux_sym__val_number_decimal_token2] = ACTIONS(1962), + [aux_sym__val_number_decimal_token3] = ACTIONS(1962), + [aux_sym__val_number_decimal_token4] = ACTIONS(1962), + [aux_sym__val_number_token1] = ACTIONS(1962), + [aux_sym__val_number_token2] = ACTIONS(1962), + [aux_sym__val_number_token3] = ACTIONS(1962), + [aux_sym__val_number_token4] = ACTIONS(1960), + [aux_sym__val_number_token5] = ACTIONS(1960), + [aux_sym__val_number_token6] = ACTIONS(1960), + [anon_sym_DQUOTE] = ACTIONS(1962), + [sym__str_single_quotes] = ACTIONS(1962), + [sym__str_back_ticks] = ACTIONS(1962), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1962), }, - [416] = { - [sym_comment] = STATE(416), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_alias] = ACTIONS(1078), - [anon_sym_let] = ACTIONS(1078), - [anon_sym_let_DASHenv] = ACTIONS(1078), - [anon_sym_mut] = ACTIONS(1078), - [anon_sym_const] = ACTIONS(1078), - [aux_sym_cmd_identifier_token1] = ACTIONS(1078), - [aux_sym_cmd_identifier_token2] = ACTIONS(1078), - [aux_sym_cmd_identifier_token3] = ACTIONS(1078), - [aux_sym_cmd_identifier_token4] = ACTIONS(1078), - [aux_sym_cmd_identifier_token5] = ACTIONS(1078), - [aux_sym_cmd_identifier_token6] = ACTIONS(1078), - [aux_sym_cmd_identifier_token7] = ACTIONS(1078), - [aux_sym_cmd_identifier_token8] = ACTIONS(1078), - [aux_sym_cmd_identifier_token9] = ACTIONS(1078), - [aux_sym_cmd_identifier_token10] = ACTIONS(1078), - [aux_sym_cmd_identifier_token11] = ACTIONS(1078), - [aux_sym_cmd_identifier_token12] = ACTIONS(1078), - [aux_sym_cmd_identifier_token13] = ACTIONS(1078), - [aux_sym_cmd_identifier_token14] = ACTIONS(1078), - [aux_sym_cmd_identifier_token15] = ACTIONS(1078), - [aux_sym_cmd_identifier_token16] = ACTIONS(1078), - [aux_sym_cmd_identifier_token17] = ACTIONS(1078), - [aux_sym_cmd_identifier_token18] = ACTIONS(1078), - [aux_sym_cmd_identifier_token19] = ACTIONS(1078), - [aux_sym_cmd_identifier_token20] = ACTIONS(1078), - [aux_sym_cmd_identifier_token21] = ACTIONS(1078), - [aux_sym_cmd_identifier_token22] = ACTIONS(1078), - [aux_sym_cmd_identifier_token23] = ACTIONS(1078), - [aux_sym_cmd_identifier_token24] = ACTIONS(1078), - [aux_sym_cmd_identifier_token25] = ACTIONS(1078), - [aux_sym_cmd_identifier_token26] = ACTIONS(1078), - [aux_sym_cmd_identifier_token27] = ACTIONS(1078), - [aux_sym_cmd_identifier_token28] = ACTIONS(1078), - [aux_sym_cmd_identifier_token29] = ACTIONS(1078), - [aux_sym_cmd_identifier_token30] = ACTIONS(1078), - [aux_sym_cmd_identifier_token31] = ACTIONS(1078), - [aux_sym_cmd_identifier_token32] = ACTIONS(1078), - [aux_sym_cmd_identifier_token33] = ACTIONS(1078), - [aux_sym_cmd_identifier_token34] = ACTIONS(1078), - [aux_sym_cmd_identifier_token35] = ACTIONS(1078), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(1078), - [anon_sym_export_DASHenv] = ACTIONS(1078), - [anon_sym_extern] = ACTIONS(1078), - [anon_sym_module] = ACTIONS(1078), - [anon_sym_use] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1078), - [anon_sym_error] = ACTIONS(1078), - [anon_sym_list] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_in] = ACTIONS(1078), - [anon_sym_loop] = ACTIONS(1078), - [anon_sym_make] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_else] = ACTIONS(1078), - [anon_sym_match] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_try] = ACTIONS(1078), - [anon_sym_catch] = ACTIONS(1078), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_source] = ACTIONS(1078), - [anon_sym_source_DASHenv] = ACTIONS(1078), - [anon_sym_register] = ACTIONS(1078), - [anon_sym_hide] = ACTIONS(1078), - [anon_sym_hide_DASHenv] = ACTIONS(1078), - [anon_sym_overlay] = ACTIONS(1078), - [anon_sym_new] = ACTIONS(1078), - [anon_sym_as] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1078), - [anon_sym_DOT_DOT2] = ACTIONS(1078), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1078), - [aux_sym__val_number_decimal_token1] = ACTIONS(1078), - [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), - [sym__entry_separator] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1078), + [470] = { + [sym_comment] = STATE(470), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = 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_as] = ACTIONS(1890), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [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), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1080), + [sym_raw_string_begin] = ACTIONS(1892), }, - [417] = { - [sym_comment] = STATE(417), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(2182), - [aux_sym__immediate_decimal_token2] = ACTIONS(2184), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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), - [anon_sym_PLUS] = ACTIONS(1703), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [471] = { + [sym_cell_path] = STATE(724), + [sym_path] = STATE(689), + [sym_comment] = STATE(471), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_alias] = ACTIONS(1925), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_let_DASHenv] = ACTIONS(1925), + [anon_sym_mut] = ACTIONS(1925), + [anon_sym_const] = ACTIONS(1925), + [aux_sym_cmd_identifier_token1] = ACTIONS(1925), + [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(1925), + [aux_sym_cmd_identifier_token9] = ACTIONS(1925), + [aux_sym_cmd_identifier_token10] = ACTIONS(1927), + [aux_sym_cmd_identifier_token11] = ACTIONS(1927), + [aux_sym_cmd_identifier_token12] = ACTIONS(1925), + [aux_sym_cmd_identifier_token13] = ACTIONS(1925), + [aux_sym_cmd_identifier_token14] = ACTIONS(1925), + [aux_sym_cmd_identifier_token15] = ACTIONS(1925), + [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(1925), + [aux_sym_cmd_identifier_token35] = ACTIONS(1927), + [aux_sym_cmd_identifier_token36] = ACTIONS(1927), + [aux_sym_cmd_identifier_token37] = ACTIONS(1927), + [aux_sym_cmd_identifier_token38] = ACTIONS(1925), + [aux_sym_cmd_identifier_token39] = ACTIONS(1927), + [aux_sym_cmd_identifier_token40] = ACTIONS(1927), + [anon_sym_def] = ACTIONS(1925), + [anon_sym_export_DASHenv] = ACTIONS(1925), + [anon_sym_extern] = ACTIONS(1925), + [anon_sym_module] = ACTIONS(1925), + [anon_sym_use] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1927), + [anon_sym_error] = ACTIONS(1925), + [anon_sym_DASH2] = ACTIONS(1925), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1925), + [anon_sym_in2] = ACTIONS(1925), + [anon_sym_loop] = ACTIONS(1925), + [anon_sym_make] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(1925), + [anon_sym_do] = ACTIONS(1925), + [anon_sym_if] = ACTIONS(1925), + [anon_sym_else] = ACTIONS(1925), + [anon_sym_match] = ACTIONS(1925), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(1925), + [anon_sym_catch] = ACTIONS(1925), + [anon_sym_return] = ACTIONS(1925), + [anon_sym_source] = ACTIONS(1925), + [anon_sym_source_DASHenv] = ACTIONS(1925), + [anon_sym_register] = ACTIONS(1925), + [anon_sym_hide] = ACTIONS(1925), + [anon_sym_hide_DASHenv] = ACTIONS(1925), + [anon_sym_overlay] = ACTIONS(1925), + [anon_sym_as] = ACTIONS(1925), + [anon_sym_PLUS2] = ACTIONS(1925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), + [aux_sym__val_number_decimal_token1] = ACTIONS(1925), + [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), + [aux_sym__val_number_token4] = ACTIONS(1925), + [aux_sym__val_number_token5] = ACTIONS(1925), + [aux_sym__val_number_token6] = ACTIONS(1925), + [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), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1927), }, - [418] = { - [sym_comment] = STATE(418), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [472] = { + [sym_comment] = STATE(472), + [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(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(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(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_PLUS2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(2121), + [aux_sym__immediate_decimal_token2] = ACTIONS(2123), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = ACTIONS(1755), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), }, - [419] = { - [sym_expr_parenthesized] = STATE(4363), - [sym__spread_parenthesized] = STATE(4752), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(7973), - [sym__val_range_with_end] = STATE(7533), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4718), - [sym_val_bool] = STATE(4461), - [sym__spread_variable] = STATE(4769), - [sym_val_variable] = STATE(4330), - [sym_val_number] = STATE(4718), - [sym__val_number_decimal] = STATE(3996), - [sym__val_number] = STATE(4796), - [sym_val_duration] = STATE(4718), - [sym_val_filesize] = STATE(4718), - [sym_val_binary] = STATE(4718), - [sym_val_string] = STATE(4718), - [sym__raw_str] = STATE(4414), - [sym__str_double_quotes] = STATE(4414), - [sym_val_interpolated] = STATE(4718), - [sym__inter_single_quotes] = STATE(4787), - [sym__inter_double_quotes] = STATE(4810), - [sym_val_list] = STATE(4718), - [sym__spread_list] = STATE(4752), - [sym_val_record] = STATE(4718), - [sym_val_table] = STATE(4718), - [sym_val_closure] = STATE(4718), - [sym__cmd_arg] = STATE(4880), - [sym_redirection] = STATE(4791), - [sym__flag] = STATE(4798), - [sym_short_flag] = STATE(4826), - [sym_long_flag] = STATE(4826), - [sym_unquoted] = STATE(4556), - [sym__unquoted_with_expr] = STATE(4807), - [sym__unquoted_anonymous_prefix] = STATE(7039), - [sym_comment] = STATE(419), - [anon_sym_true] = ACTIONS(1933), - [anon_sym_false] = ACTIONS(1933), - [anon_sym_null] = ACTIONS(1935), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [sym__newline] = ACTIONS(2186), - [sym__space] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_err_GT_PIPE] = ACTIONS(2186), - [anon_sym_out_GT_PIPE] = ACTIONS(2186), - [anon_sym_e_GT_PIPE] = ACTIONS(2186), - [anon_sym_o_GT_PIPE] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_DASH_DASH] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_DOT_DOT] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1969), - [aux_sym__val_number_token2] = ACTIONS(1969), - [aux_sym__val_number_token3] = ACTIONS(1969), - [anon_sym_0b] = ACTIONS(1971), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(1977), - [sym__str_single_quotes] = ACTIONS(1979), - [sym__str_back_ticks] = ACTIONS(1979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1985), - [anon_sym_err_GT] = ACTIONS(1987), - [anon_sym_out_GT] = ACTIONS(1987), - [anon_sym_e_GT] = ACTIONS(1987), - [anon_sym_o_GT] = ACTIONS(1987), - [anon_sym_err_PLUSout_GT] = ACTIONS(1987), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1987), - [anon_sym_o_PLUSe_GT] = ACTIONS(1987), - [anon_sym_e_PLUSo_GT] = ACTIONS(1987), - [anon_sym_err_GT_GT] = ACTIONS(1987), - [anon_sym_out_GT_GT] = ACTIONS(1987), - [anon_sym_e_GT_GT] = ACTIONS(1987), - [anon_sym_o_GT_GT] = ACTIONS(1987), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1987), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1987), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1987), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1987), - [aux_sym_unquoted_token1] = ACTIONS(1989), + [473] = { + [sym_comment] = STATE(473), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_alias] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_let_DASHenv] = ACTIONS(2125), + [anon_sym_mut] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [aux_sym_cmd_identifier_token1] = ACTIONS(2125), + [aux_sym_cmd_identifier_token2] = ACTIONS(2125), + [aux_sym_cmd_identifier_token3] = ACTIONS(2125), + [aux_sym_cmd_identifier_token4] = ACTIONS(2125), + [aux_sym_cmd_identifier_token5] = ACTIONS(2125), + [aux_sym_cmd_identifier_token6] = ACTIONS(2125), + [aux_sym_cmd_identifier_token7] = ACTIONS(2125), + [aux_sym_cmd_identifier_token8] = ACTIONS(2125), + [aux_sym_cmd_identifier_token9] = ACTIONS(2125), + [aux_sym_cmd_identifier_token10] = ACTIONS(2125), + [aux_sym_cmd_identifier_token11] = ACTIONS(2125), + [aux_sym_cmd_identifier_token12] = ACTIONS(2125), + [aux_sym_cmd_identifier_token13] = ACTIONS(2125), + [aux_sym_cmd_identifier_token14] = ACTIONS(2125), + [aux_sym_cmd_identifier_token15] = ACTIONS(2125), + [aux_sym_cmd_identifier_token16] = ACTIONS(2125), + [aux_sym_cmd_identifier_token17] = ACTIONS(2125), + [aux_sym_cmd_identifier_token18] = ACTIONS(2125), + [aux_sym_cmd_identifier_token19] = ACTIONS(2125), + [aux_sym_cmd_identifier_token20] = ACTIONS(2125), + [aux_sym_cmd_identifier_token21] = ACTIONS(2125), + [aux_sym_cmd_identifier_token22] = ACTIONS(2125), + [aux_sym_cmd_identifier_token23] = ACTIONS(2125), + [aux_sym_cmd_identifier_token24] = ACTIONS(2125), + [aux_sym_cmd_identifier_token25] = ACTIONS(2125), + [aux_sym_cmd_identifier_token26] = ACTIONS(2125), + [aux_sym_cmd_identifier_token27] = ACTIONS(2125), + [aux_sym_cmd_identifier_token28] = ACTIONS(2125), + [aux_sym_cmd_identifier_token29] = ACTIONS(2125), + [aux_sym_cmd_identifier_token30] = ACTIONS(2125), + [aux_sym_cmd_identifier_token31] = ACTIONS(2125), + [aux_sym_cmd_identifier_token32] = ACTIONS(2125), + [aux_sym_cmd_identifier_token33] = ACTIONS(2125), + [aux_sym_cmd_identifier_token34] = ACTIONS(2125), + [aux_sym_cmd_identifier_token35] = ACTIONS(2125), + [aux_sym_cmd_identifier_token36] = ACTIONS(2125), + [aux_sym_cmd_identifier_token37] = ACTIONS(2125), + [aux_sym_cmd_identifier_token38] = ACTIONS(2125), + [aux_sym_cmd_identifier_token39] = ACTIONS(2125), + [aux_sym_cmd_identifier_token40] = ACTIONS(2125), + [anon_sym_def] = ACTIONS(2125), + [anon_sym_export_DASHenv] = ACTIONS(2125), + [anon_sym_extern] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_error] = ACTIONS(2125), + [anon_sym_DASH2] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_in2] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_make] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_catch] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_source] = ACTIONS(2125), + [anon_sym_source_DASHenv] = ACTIONS(2125), + [anon_sym_register] = ACTIONS(2125), + [anon_sym_hide] = ACTIONS(2125), + [anon_sym_hide_DASHenv] = ACTIONS(2125), + [anon_sym_overlay] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_PLUS2] = ACTIONS(2125), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2125), + [anon_sym_DOT_DOT2] = ACTIONS(2125), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2127), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2125), + [aux_sym__val_number_decimal_token1] = ACTIONS(2125), + [aux_sym__val_number_decimal_token2] = ACTIONS(2125), + [aux_sym__val_number_decimal_token3] = ACTIONS(2125), + [aux_sym__val_number_decimal_token4] = ACTIONS(2125), + [aux_sym__val_number_token1] = ACTIONS(2125), + [aux_sym__val_number_token2] = ACTIONS(2125), + [aux_sym__val_number_token3] = ACTIONS(2125), + [aux_sym__val_number_token4] = ACTIONS(2125), + [aux_sym__val_number_token5] = ACTIONS(2125), + [aux_sym__val_number_token6] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [sym__str_single_quotes] = ACTIONS(2125), + [sym__str_back_ticks] = ACTIONS(2125), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2125), + [sym__entry_separator] = ACTIONS(2127), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1991), + [sym_raw_string_begin] = ACTIONS(2127), }, - [420] = { - [sym_cell_path] = STATE(704), - [sym_path] = STATE(631), - [sym_comment] = STATE(420), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(1854), - [anon_sym_alias] = ACTIONS(1854), - [anon_sym_let] = ACTIONS(1854), - [anon_sym_let_DASHenv] = ACTIONS(1854), - [anon_sym_mut] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [aux_sym_cmd_identifier_token1] = ACTIONS(1854), - [aux_sym_cmd_identifier_token2] = ACTIONS(1854), - [aux_sym_cmd_identifier_token3] = ACTIONS(1854), - [aux_sym_cmd_identifier_token4] = ACTIONS(1854), - [aux_sym_cmd_identifier_token5] = ACTIONS(1854), - [aux_sym_cmd_identifier_token6] = ACTIONS(1854), - [aux_sym_cmd_identifier_token7] = ACTIONS(1854), - [aux_sym_cmd_identifier_token8] = ACTIONS(1854), - [aux_sym_cmd_identifier_token9] = ACTIONS(1854), - [aux_sym_cmd_identifier_token10] = ACTIONS(1854), - [aux_sym_cmd_identifier_token11] = ACTIONS(1854), - [aux_sym_cmd_identifier_token12] = ACTIONS(1854), - [aux_sym_cmd_identifier_token13] = ACTIONS(1854), - [aux_sym_cmd_identifier_token14] = ACTIONS(1854), - [aux_sym_cmd_identifier_token15] = ACTIONS(1854), - [aux_sym_cmd_identifier_token16] = ACTIONS(1854), - [aux_sym_cmd_identifier_token17] = ACTIONS(1854), - [aux_sym_cmd_identifier_token18] = ACTIONS(1854), - [aux_sym_cmd_identifier_token19] = ACTIONS(1854), - [aux_sym_cmd_identifier_token20] = ACTIONS(1854), - [aux_sym_cmd_identifier_token21] = ACTIONS(1854), - [aux_sym_cmd_identifier_token22] = ACTIONS(1854), - [aux_sym_cmd_identifier_token23] = ACTIONS(1854), - [aux_sym_cmd_identifier_token24] = ACTIONS(1854), - [aux_sym_cmd_identifier_token25] = ACTIONS(1854), - [aux_sym_cmd_identifier_token26] = ACTIONS(1854), - [aux_sym_cmd_identifier_token27] = ACTIONS(1854), - [aux_sym_cmd_identifier_token28] = ACTIONS(1854), - [aux_sym_cmd_identifier_token29] = ACTIONS(1854), - [aux_sym_cmd_identifier_token30] = ACTIONS(1854), - [aux_sym_cmd_identifier_token31] = ACTIONS(1854), - [aux_sym_cmd_identifier_token32] = ACTIONS(1854), - [aux_sym_cmd_identifier_token33] = ACTIONS(1854), - [aux_sym_cmd_identifier_token34] = ACTIONS(1854), - [aux_sym_cmd_identifier_token35] = ACTIONS(1854), - [aux_sym_cmd_identifier_token36] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [anon_sym_null] = ACTIONS(1858), - [aux_sym_cmd_identifier_token38] = ACTIONS(1854), - [aux_sym_cmd_identifier_token39] = ACTIONS(1858), - [aux_sym_cmd_identifier_token40] = ACTIONS(1858), - [anon_sym_def] = ACTIONS(1854), - [anon_sym_export_DASHenv] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym_module] = ACTIONS(1854), - [anon_sym_use] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_DOLLAR] = ACTIONS(1858), - [anon_sym_error] = ACTIONS(1854), - [anon_sym_list] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_loop] = ACTIONS(1854), - [anon_sym_make] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_else] = ACTIONS(1854), - [anon_sym_match] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_try] = ACTIONS(1854), - [anon_sym_catch] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_source] = ACTIONS(1854), - [anon_sym_source_DASHenv] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_hide] = ACTIONS(1854), - [anon_sym_hide_DASHenv] = ACTIONS(1854), - [anon_sym_overlay] = ACTIONS(1854), - [anon_sym_new] = ACTIONS(1854), - [anon_sym_as] = ACTIONS(1854), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1858), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1858), - [aux_sym__val_number_decimal_token1] = ACTIONS(1854), - [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(1854), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1858), + [474] = { + [sym_cell_path] = STATE(732), + [sym_path] = STATE(689), + [sym_comment] = STATE(474), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1970), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [aux_sym_cmd_identifier_token6] = ACTIONS(1970), + [aux_sym_cmd_identifier_token7] = ACTIONS(1970), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1970), + [aux_sym_cmd_identifier_token11] = ACTIONS(1970), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1970), + [aux_sym_cmd_identifier_token17] = ACTIONS(1970), + [aux_sym_cmd_identifier_token18] = ACTIONS(1970), + [aux_sym_cmd_identifier_token19] = ACTIONS(1970), + [aux_sym_cmd_identifier_token20] = ACTIONS(1970), + [aux_sym_cmd_identifier_token21] = ACTIONS(1970), + [aux_sym_cmd_identifier_token22] = ACTIONS(1970), + [aux_sym_cmd_identifier_token23] = ACTIONS(1970), + [aux_sym_cmd_identifier_token24] = ACTIONS(1970), + [aux_sym_cmd_identifier_token25] = ACTIONS(1970), + [aux_sym_cmd_identifier_token26] = ACTIONS(1970), + [aux_sym_cmd_identifier_token27] = ACTIONS(1970), + [aux_sym_cmd_identifier_token28] = ACTIONS(1970), + [aux_sym_cmd_identifier_token29] = ACTIONS(1970), + [aux_sym_cmd_identifier_token30] = ACTIONS(1970), + [aux_sym_cmd_identifier_token31] = ACTIONS(1970), + [aux_sym_cmd_identifier_token32] = ACTIONS(1970), + [aux_sym_cmd_identifier_token33] = ACTIONS(1970), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1970), + [aux_sym_cmd_identifier_token36] = ACTIONS(1970), + [aux_sym_cmd_identifier_token37] = ACTIONS(1970), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1970), + [aux_sym_cmd_identifier_token40] = ACTIONS(1970), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1970), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1970), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1970), }, - [421] = { - [sym_comment] = STATE(421), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(2190), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [475] = { + [sym_comment] = STATE(475), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1757), }, - [422] = { - [sym_cell_path] = STATE(658), - [sym_path] = STATE(631), - [sym_comment] = STATE(422), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_alias] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_let_DASHenv] = ACTIONS(1901), - [anon_sym_mut] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [aux_sym_cmd_identifier_token1] = ACTIONS(1901), - [aux_sym_cmd_identifier_token2] = ACTIONS(1901), - [aux_sym_cmd_identifier_token3] = ACTIONS(1901), - [aux_sym_cmd_identifier_token4] = ACTIONS(1901), - [aux_sym_cmd_identifier_token5] = ACTIONS(1901), - [aux_sym_cmd_identifier_token6] = ACTIONS(1901), - [aux_sym_cmd_identifier_token7] = ACTIONS(1901), - [aux_sym_cmd_identifier_token8] = ACTIONS(1901), - [aux_sym_cmd_identifier_token9] = ACTIONS(1901), - [aux_sym_cmd_identifier_token10] = ACTIONS(1901), - [aux_sym_cmd_identifier_token11] = ACTIONS(1901), - [aux_sym_cmd_identifier_token12] = ACTIONS(1901), - [aux_sym_cmd_identifier_token13] = ACTIONS(1901), - [aux_sym_cmd_identifier_token14] = ACTIONS(1901), - [aux_sym_cmd_identifier_token15] = ACTIONS(1901), - [aux_sym_cmd_identifier_token16] = ACTIONS(1901), - [aux_sym_cmd_identifier_token17] = ACTIONS(1901), - [aux_sym_cmd_identifier_token18] = ACTIONS(1901), - [aux_sym_cmd_identifier_token19] = ACTIONS(1901), - [aux_sym_cmd_identifier_token20] = ACTIONS(1901), - [aux_sym_cmd_identifier_token21] = ACTIONS(1901), - [aux_sym_cmd_identifier_token22] = ACTIONS(1901), - [aux_sym_cmd_identifier_token23] = ACTIONS(1901), - [aux_sym_cmd_identifier_token24] = ACTIONS(1901), - [aux_sym_cmd_identifier_token25] = ACTIONS(1901), - [aux_sym_cmd_identifier_token26] = ACTIONS(1901), - [aux_sym_cmd_identifier_token27] = ACTIONS(1901), - [aux_sym_cmd_identifier_token28] = ACTIONS(1901), - [aux_sym_cmd_identifier_token29] = ACTIONS(1901), - [aux_sym_cmd_identifier_token30] = ACTIONS(1901), - [aux_sym_cmd_identifier_token31] = ACTIONS(1901), - [aux_sym_cmd_identifier_token32] = ACTIONS(1901), - [aux_sym_cmd_identifier_token33] = ACTIONS(1901), - [aux_sym_cmd_identifier_token34] = ACTIONS(1901), - [aux_sym_cmd_identifier_token35] = ACTIONS(1901), - [aux_sym_cmd_identifier_token36] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(1903), - [anon_sym_false] = ACTIONS(1903), - [anon_sym_null] = ACTIONS(1903), - [aux_sym_cmd_identifier_token38] = ACTIONS(1901), - [aux_sym_cmd_identifier_token39] = ACTIONS(1903), - [aux_sym_cmd_identifier_token40] = ACTIONS(1903), - [anon_sym_def] = ACTIONS(1901), - [anon_sym_export_DASHenv] = ACTIONS(1901), - [anon_sym_extern] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_use] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_DOLLAR] = ACTIONS(1903), - [anon_sym_error] = ACTIONS(1901), - [anon_sym_list] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_in] = ACTIONS(1901), - [anon_sym_loop] = ACTIONS(1901), - [anon_sym_make] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1901), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_catch] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_source] = ACTIONS(1901), - [anon_sym_source_DASHenv] = ACTIONS(1901), - [anon_sym_register] = ACTIONS(1901), - [anon_sym_hide] = ACTIONS(1901), - [anon_sym_hide_DASHenv] = ACTIONS(1901), - [anon_sym_overlay] = ACTIONS(1901), - [anon_sym_new] = ACTIONS(1901), - [anon_sym_as] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1903), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1903), - [aux_sym__val_number_decimal_token1] = ACTIONS(1901), - [aux_sym__val_number_decimal_token2] = ACTIONS(1903), - [aux_sym__val_number_decimal_token3] = ACTIONS(1903), - [aux_sym__val_number_decimal_token4] = ACTIONS(1903), - [aux_sym__val_number_token1] = ACTIONS(1903), - [aux_sym__val_number_token2] = ACTIONS(1903), - [aux_sym__val_number_token3] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(1903), - [sym__str_single_quotes] = ACTIONS(1903), - [sym__str_back_ticks] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1903), + [476] = { + [sym_comment] = STATE(476), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_PLUS2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), + [aux_sym__immediate_decimal_token2] = ACTIONS(1919), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = 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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1757), }, - [423] = { - [sym_comment] = STATE(423), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_alias] = ACTIONS(1074), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_let_DASHenv] = ACTIONS(1074), - [anon_sym_mut] = ACTIONS(1074), - [anon_sym_const] = ACTIONS(1074), - [aux_sym_cmd_identifier_token1] = ACTIONS(1074), - [aux_sym_cmd_identifier_token2] = ACTIONS(1074), - [aux_sym_cmd_identifier_token3] = ACTIONS(1074), - [aux_sym_cmd_identifier_token4] = ACTIONS(1074), - [aux_sym_cmd_identifier_token5] = ACTIONS(1074), - [aux_sym_cmd_identifier_token6] = ACTIONS(1074), - [aux_sym_cmd_identifier_token7] = ACTIONS(1074), - [aux_sym_cmd_identifier_token8] = ACTIONS(1074), - [aux_sym_cmd_identifier_token9] = ACTIONS(1074), - [aux_sym_cmd_identifier_token10] = ACTIONS(1074), - [aux_sym_cmd_identifier_token11] = ACTIONS(1074), - [aux_sym_cmd_identifier_token12] = ACTIONS(1074), - [aux_sym_cmd_identifier_token13] = ACTIONS(1074), - [aux_sym_cmd_identifier_token14] = ACTIONS(1074), - [aux_sym_cmd_identifier_token15] = ACTIONS(1074), - [aux_sym_cmd_identifier_token16] = ACTIONS(1074), - [aux_sym_cmd_identifier_token17] = ACTIONS(1074), - [aux_sym_cmd_identifier_token18] = ACTIONS(1074), - [aux_sym_cmd_identifier_token19] = ACTIONS(1074), - [aux_sym_cmd_identifier_token20] = ACTIONS(1074), - [aux_sym_cmd_identifier_token21] = ACTIONS(1074), - [aux_sym_cmd_identifier_token22] = ACTIONS(1074), - [aux_sym_cmd_identifier_token23] = ACTIONS(1074), - [aux_sym_cmd_identifier_token24] = ACTIONS(1074), - [aux_sym_cmd_identifier_token25] = ACTIONS(1074), - [aux_sym_cmd_identifier_token26] = ACTIONS(1074), - [aux_sym_cmd_identifier_token27] = ACTIONS(1074), - [aux_sym_cmd_identifier_token28] = ACTIONS(1074), - [aux_sym_cmd_identifier_token29] = ACTIONS(1074), - [aux_sym_cmd_identifier_token30] = ACTIONS(1074), - [aux_sym_cmd_identifier_token31] = ACTIONS(1074), - [aux_sym_cmd_identifier_token32] = ACTIONS(1074), - [aux_sym_cmd_identifier_token33] = ACTIONS(1074), - [aux_sym_cmd_identifier_token34] = ACTIONS(1074), - [aux_sym_cmd_identifier_token35] = ACTIONS(1074), - [aux_sym_cmd_identifier_token36] = ACTIONS(1074), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_null] = ACTIONS(1076), - [aux_sym_cmd_identifier_token38] = ACTIONS(1074), - [aux_sym_cmd_identifier_token39] = ACTIONS(1076), - [aux_sym_cmd_identifier_token40] = ACTIONS(1076), - [anon_sym_def] = ACTIONS(1074), - [anon_sym_export_DASHenv] = ACTIONS(1074), - [anon_sym_extern] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_use] = ACTIONS(1074), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_error] = ACTIONS(1074), - [anon_sym_list] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_in] = ACTIONS(1074), - [anon_sym_loop] = ACTIONS(1074), - [anon_sym_make] = ACTIONS(1074), - [anon_sym_while] = ACTIONS(1074), - [anon_sym_do] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1074), - [anon_sym_else] = ACTIONS(1074), - [anon_sym_match] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_try] = ACTIONS(1074), - [anon_sym_catch] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_source] = ACTIONS(1074), - [anon_sym_source_DASHenv] = ACTIONS(1074), - [anon_sym_register] = ACTIONS(1074), - [anon_sym_hide] = ACTIONS(1074), - [anon_sym_hide_DASHenv] = ACTIONS(1074), - [anon_sym_overlay] = ACTIONS(1074), - [anon_sym_new] = ACTIONS(1074), - [anon_sym_as] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), - [anon_sym_DOT_DOT2] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1074), - [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), - [anon_sym_PLUS] = ACTIONS(1074), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1076), + [477] = { + [sym_cell_path] = STATE(733), + [sym_path] = STATE(689), + [sym_comment] = STATE(477), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1972), + [anon_sym_alias] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_let_DASHenv] = ACTIONS(1972), + [anon_sym_mut] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [aux_sym_cmd_identifier_token1] = ACTIONS(1972), + [aux_sym_cmd_identifier_token2] = ACTIONS(1974), + [aux_sym_cmd_identifier_token3] = ACTIONS(1974), + [aux_sym_cmd_identifier_token4] = ACTIONS(1974), + [aux_sym_cmd_identifier_token5] = ACTIONS(1974), + [aux_sym_cmd_identifier_token6] = ACTIONS(1974), + [aux_sym_cmd_identifier_token7] = ACTIONS(1974), + [aux_sym_cmd_identifier_token8] = ACTIONS(1972), + [aux_sym_cmd_identifier_token9] = ACTIONS(1972), + [aux_sym_cmd_identifier_token10] = ACTIONS(1974), + [aux_sym_cmd_identifier_token11] = ACTIONS(1974), + [aux_sym_cmd_identifier_token12] = ACTIONS(1972), + [aux_sym_cmd_identifier_token13] = ACTIONS(1972), + [aux_sym_cmd_identifier_token14] = ACTIONS(1972), + [aux_sym_cmd_identifier_token15] = ACTIONS(1972), + [aux_sym_cmd_identifier_token16] = ACTIONS(1974), + [aux_sym_cmd_identifier_token17] = ACTIONS(1974), + [aux_sym_cmd_identifier_token18] = ACTIONS(1974), + [aux_sym_cmd_identifier_token19] = ACTIONS(1974), + [aux_sym_cmd_identifier_token20] = ACTIONS(1974), + [aux_sym_cmd_identifier_token21] = ACTIONS(1974), + [aux_sym_cmd_identifier_token22] = ACTIONS(1974), + [aux_sym_cmd_identifier_token23] = ACTIONS(1974), + [aux_sym_cmd_identifier_token24] = ACTIONS(1974), + [aux_sym_cmd_identifier_token25] = ACTIONS(1974), + [aux_sym_cmd_identifier_token26] = ACTIONS(1974), + [aux_sym_cmd_identifier_token27] = ACTIONS(1974), + [aux_sym_cmd_identifier_token28] = ACTIONS(1974), + [aux_sym_cmd_identifier_token29] = ACTIONS(1974), + [aux_sym_cmd_identifier_token30] = ACTIONS(1974), + [aux_sym_cmd_identifier_token31] = ACTIONS(1974), + [aux_sym_cmd_identifier_token32] = ACTIONS(1974), + [aux_sym_cmd_identifier_token33] = ACTIONS(1974), + [aux_sym_cmd_identifier_token34] = ACTIONS(1972), + [aux_sym_cmd_identifier_token35] = ACTIONS(1974), + [aux_sym_cmd_identifier_token36] = ACTIONS(1974), + [aux_sym_cmd_identifier_token37] = ACTIONS(1974), + [aux_sym_cmd_identifier_token38] = ACTIONS(1972), + [aux_sym_cmd_identifier_token39] = ACTIONS(1974), + [aux_sym_cmd_identifier_token40] = ACTIONS(1974), + [anon_sym_def] = ACTIONS(1972), + [anon_sym_export_DASHenv] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_module] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [anon_sym_error] = ACTIONS(1972), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_in2] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_make] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_source] = ACTIONS(1972), + [anon_sym_source_DASHenv] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_hide] = ACTIONS(1972), + [anon_sym_hide_DASHenv] = ACTIONS(1972), + [anon_sym_overlay] = ACTIONS(1972), + [anon_sym_as] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1974), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1974), + [aux_sym__val_number_decimal_token3] = ACTIONS(1974), + [aux_sym__val_number_decimal_token4] = ACTIONS(1974), + [aux_sym__val_number_token1] = ACTIONS(1974), + [aux_sym__val_number_token2] = ACTIONS(1974), + [aux_sym__val_number_token3] = ACTIONS(1974), + [aux_sym__val_number_token4] = ACTIONS(1972), + [aux_sym__val_number_token5] = ACTIONS(1972), + [aux_sym__val_number_token6] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym__str_single_quotes] = ACTIONS(1974), + [sym__str_back_ticks] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1974), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1974), }, - [424] = { - [sym_cell_path] = STATE(632), - [sym_path] = STATE(631), - [sym_comment] = STATE(424), - [aux_sym_cell_path_repeat1] = STATE(456), - [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), + [478] = { + [sym_cell_path] = STATE(734), + [sym_path] = STATE(689), + [sym_comment] = STATE(478), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1984), + [anon_sym_alias] = ACTIONS(1984), + [anon_sym_let] = ACTIONS(1984), + [anon_sym_let_DASHenv] = ACTIONS(1984), + [anon_sym_mut] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [aux_sym_cmd_identifier_token1] = ACTIONS(1984), + [aux_sym_cmd_identifier_token2] = ACTIONS(1986), + [aux_sym_cmd_identifier_token3] = ACTIONS(1986), + [aux_sym_cmd_identifier_token4] = ACTIONS(1986), + [aux_sym_cmd_identifier_token5] = ACTIONS(1986), + [aux_sym_cmd_identifier_token6] = ACTIONS(1986), + [aux_sym_cmd_identifier_token7] = ACTIONS(1986), + [aux_sym_cmd_identifier_token8] = ACTIONS(1984), + [aux_sym_cmd_identifier_token9] = ACTIONS(1984), + [aux_sym_cmd_identifier_token10] = ACTIONS(1986), + [aux_sym_cmd_identifier_token11] = ACTIONS(1986), + [aux_sym_cmd_identifier_token12] = ACTIONS(1984), + [aux_sym_cmd_identifier_token13] = ACTIONS(1984), + [aux_sym_cmd_identifier_token14] = ACTIONS(1984), + [aux_sym_cmd_identifier_token15] = ACTIONS(1984), + [aux_sym_cmd_identifier_token16] = ACTIONS(1986), + [aux_sym_cmd_identifier_token17] = ACTIONS(1986), + [aux_sym_cmd_identifier_token18] = ACTIONS(1986), + [aux_sym_cmd_identifier_token19] = ACTIONS(1986), + [aux_sym_cmd_identifier_token20] = ACTIONS(1986), + [aux_sym_cmd_identifier_token21] = ACTIONS(1986), + [aux_sym_cmd_identifier_token22] = ACTIONS(1986), + [aux_sym_cmd_identifier_token23] = ACTIONS(1986), + [aux_sym_cmd_identifier_token24] = ACTIONS(1986), + [aux_sym_cmd_identifier_token25] = ACTIONS(1986), + [aux_sym_cmd_identifier_token26] = ACTIONS(1986), + [aux_sym_cmd_identifier_token27] = ACTIONS(1986), + [aux_sym_cmd_identifier_token28] = ACTIONS(1986), + [aux_sym_cmd_identifier_token29] = ACTIONS(1986), + [aux_sym_cmd_identifier_token30] = ACTIONS(1986), + [aux_sym_cmd_identifier_token31] = ACTIONS(1986), + [aux_sym_cmd_identifier_token32] = ACTIONS(1986), + [aux_sym_cmd_identifier_token33] = ACTIONS(1986), + [aux_sym_cmd_identifier_token34] = ACTIONS(1984), + [aux_sym_cmd_identifier_token35] = ACTIONS(1986), + [aux_sym_cmd_identifier_token36] = ACTIONS(1986), + [aux_sym_cmd_identifier_token37] = ACTIONS(1986), + [aux_sym_cmd_identifier_token38] = ACTIONS(1984), + [aux_sym_cmd_identifier_token39] = ACTIONS(1986), + [aux_sym_cmd_identifier_token40] = ACTIONS(1986), + [anon_sym_def] = ACTIONS(1984), + [anon_sym_export_DASHenv] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym_module] = ACTIONS(1984), + [anon_sym_use] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1986), + [anon_sym_DOLLAR] = ACTIONS(1986), + [anon_sym_error] = ACTIONS(1984), + [anon_sym_DASH2] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_in2] = ACTIONS(1984), + [anon_sym_loop] = ACTIONS(1984), + [anon_sym_make] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_do] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_else] = ACTIONS(1984), + [anon_sym_match] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_try] = ACTIONS(1984), + [anon_sym_catch] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_source] = ACTIONS(1984), + [anon_sym_source_DASHenv] = ACTIONS(1984), + [anon_sym_register] = ACTIONS(1984), + [anon_sym_hide] = ACTIONS(1984), + [anon_sym_hide_DASHenv] = ACTIONS(1984), + [anon_sym_overlay] = ACTIONS(1984), + [anon_sym_as] = ACTIONS(1984), + [anon_sym_PLUS2] = ACTIONS(1984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1986), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1986), + [aux_sym__val_number_decimal_token1] = ACTIONS(1984), + [aux_sym__val_number_decimal_token2] = ACTIONS(1986), + [aux_sym__val_number_decimal_token3] = ACTIONS(1986), + [aux_sym__val_number_decimal_token4] = ACTIONS(1986), + [aux_sym__val_number_token1] = ACTIONS(1986), + [aux_sym__val_number_token2] = ACTIONS(1986), + [aux_sym__val_number_token3] = ACTIONS(1986), + [aux_sym__val_number_token4] = ACTIONS(1984), + [aux_sym__val_number_token5] = ACTIONS(1984), + [aux_sym__val_number_token6] = ACTIONS(1984), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym__str_single_quotes] = ACTIONS(1986), + [sym__str_back_ticks] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1986), + }, + [479] = { + [sym_cell_path] = STATE(735), + [sym_path] = STATE(689), + [sym_comment] = STATE(479), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_alias] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1988), + [anon_sym_let_DASHenv] = ACTIONS(1988), + [anon_sym_mut] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [aux_sym_cmd_identifier_token1] = ACTIONS(1988), + [aux_sym_cmd_identifier_token2] = ACTIONS(1990), + [aux_sym_cmd_identifier_token3] = ACTIONS(1990), + [aux_sym_cmd_identifier_token4] = ACTIONS(1990), + [aux_sym_cmd_identifier_token5] = ACTIONS(1990), + [aux_sym_cmd_identifier_token6] = ACTIONS(1990), + [aux_sym_cmd_identifier_token7] = ACTIONS(1990), + [aux_sym_cmd_identifier_token8] = ACTIONS(1988), + [aux_sym_cmd_identifier_token9] = ACTIONS(1988), + [aux_sym_cmd_identifier_token10] = ACTIONS(1990), + [aux_sym_cmd_identifier_token11] = ACTIONS(1990), + [aux_sym_cmd_identifier_token12] = ACTIONS(1988), + [aux_sym_cmd_identifier_token13] = ACTIONS(1988), + [aux_sym_cmd_identifier_token14] = ACTIONS(1988), + [aux_sym_cmd_identifier_token15] = ACTIONS(1988), + [aux_sym_cmd_identifier_token16] = ACTIONS(1990), + [aux_sym_cmd_identifier_token17] = ACTIONS(1990), + [aux_sym_cmd_identifier_token18] = ACTIONS(1990), + [aux_sym_cmd_identifier_token19] = ACTIONS(1990), + [aux_sym_cmd_identifier_token20] = ACTIONS(1990), + [aux_sym_cmd_identifier_token21] = ACTIONS(1990), + [aux_sym_cmd_identifier_token22] = ACTIONS(1990), + [aux_sym_cmd_identifier_token23] = ACTIONS(1990), + [aux_sym_cmd_identifier_token24] = ACTIONS(1990), + [aux_sym_cmd_identifier_token25] = ACTIONS(1990), + [aux_sym_cmd_identifier_token26] = ACTIONS(1990), + [aux_sym_cmd_identifier_token27] = ACTIONS(1990), + [aux_sym_cmd_identifier_token28] = ACTIONS(1990), + [aux_sym_cmd_identifier_token29] = ACTIONS(1990), + [aux_sym_cmd_identifier_token30] = ACTIONS(1990), + [aux_sym_cmd_identifier_token31] = ACTIONS(1990), + [aux_sym_cmd_identifier_token32] = ACTIONS(1990), + [aux_sym_cmd_identifier_token33] = ACTIONS(1990), + [aux_sym_cmd_identifier_token34] = ACTIONS(1988), + [aux_sym_cmd_identifier_token35] = ACTIONS(1990), + [aux_sym_cmd_identifier_token36] = ACTIONS(1990), + [aux_sym_cmd_identifier_token37] = ACTIONS(1990), + [aux_sym_cmd_identifier_token38] = ACTIONS(1988), + [aux_sym_cmd_identifier_token39] = ACTIONS(1990), + [aux_sym_cmd_identifier_token40] = ACTIONS(1990), + [anon_sym_def] = ACTIONS(1988), + [anon_sym_export_DASHenv] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym_module] = ACTIONS(1988), + [anon_sym_use] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_DOLLAR] = ACTIONS(1990), + [anon_sym_error] = ACTIONS(1988), + [anon_sym_DASH2] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_in2] = ACTIONS(1988), + [anon_sym_loop] = ACTIONS(1988), + [anon_sym_make] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_do] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1988), + [anon_sym_match] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_try] = ACTIONS(1988), + [anon_sym_catch] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_source] = ACTIONS(1988), + [anon_sym_source_DASHenv] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1988), + [anon_sym_hide] = ACTIONS(1988), + [anon_sym_hide_DASHenv] = ACTIONS(1988), + [anon_sym_overlay] = ACTIONS(1988), + [anon_sym_as] = ACTIONS(1988), + [anon_sym_PLUS2] = ACTIONS(1988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1990), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1990), + [aux_sym__val_number_decimal_token1] = ACTIONS(1988), + [aux_sym__val_number_decimal_token2] = ACTIONS(1990), + [aux_sym__val_number_decimal_token3] = ACTIONS(1990), + [aux_sym__val_number_decimal_token4] = ACTIONS(1990), + [aux_sym__val_number_token1] = ACTIONS(1990), + [aux_sym__val_number_token2] = ACTIONS(1990), + [aux_sym__val_number_token3] = ACTIONS(1990), + [aux_sym__val_number_token4] = ACTIONS(1988), + [aux_sym__val_number_token5] = ACTIONS(1988), + [aux_sym__val_number_token6] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym__str_single_quotes] = ACTIONS(1990), + [sym__str_back_ticks] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1990), + }, + [480] = { + [sym_comment] = STATE(480), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_alias] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_let_DASHenv] = ACTIONS(2129), + [anon_sym_mut] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [aux_sym_cmd_identifier_token1] = ACTIONS(2129), + [aux_sym_cmd_identifier_token2] = ACTIONS(2129), + [aux_sym_cmd_identifier_token3] = ACTIONS(2129), + [aux_sym_cmd_identifier_token4] = ACTIONS(2129), + [aux_sym_cmd_identifier_token5] = ACTIONS(2129), + [aux_sym_cmd_identifier_token6] = ACTIONS(2129), + [aux_sym_cmd_identifier_token7] = ACTIONS(2129), + [aux_sym_cmd_identifier_token8] = ACTIONS(2129), + [aux_sym_cmd_identifier_token9] = ACTIONS(2129), + [aux_sym_cmd_identifier_token10] = ACTIONS(2129), + [aux_sym_cmd_identifier_token11] = ACTIONS(2129), + [aux_sym_cmd_identifier_token12] = ACTIONS(2129), + [aux_sym_cmd_identifier_token13] = ACTIONS(2129), + [aux_sym_cmd_identifier_token14] = ACTIONS(2129), + [aux_sym_cmd_identifier_token15] = ACTIONS(2129), + [aux_sym_cmd_identifier_token16] = ACTIONS(2129), + [aux_sym_cmd_identifier_token17] = ACTIONS(2129), + [aux_sym_cmd_identifier_token18] = ACTIONS(2129), + [aux_sym_cmd_identifier_token19] = ACTIONS(2129), + [aux_sym_cmd_identifier_token20] = ACTIONS(2129), + [aux_sym_cmd_identifier_token21] = ACTIONS(2129), + [aux_sym_cmd_identifier_token22] = ACTIONS(2129), + [aux_sym_cmd_identifier_token23] = ACTIONS(2129), + [aux_sym_cmd_identifier_token24] = ACTIONS(2129), + [aux_sym_cmd_identifier_token25] = ACTIONS(2129), + [aux_sym_cmd_identifier_token26] = ACTIONS(2129), + [aux_sym_cmd_identifier_token27] = ACTIONS(2129), + [aux_sym_cmd_identifier_token28] = ACTIONS(2129), + [aux_sym_cmd_identifier_token29] = ACTIONS(2129), + [aux_sym_cmd_identifier_token30] = ACTIONS(2129), + [aux_sym_cmd_identifier_token31] = ACTIONS(2129), + [aux_sym_cmd_identifier_token32] = ACTIONS(2129), + [aux_sym_cmd_identifier_token33] = ACTIONS(2129), + [aux_sym_cmd_identifier_token34] = ACTIONS(2129), + [aux_sym_cmd_identifier_token35] = ACTIONS(2129), + [aux_sym_cmd_identifier_token36] = ACTIONS(2129), + [aux_sym_cmd_identifier_token37] = ACTIONS(2129), + [aux_sym_cmd_identifier_token38] = ACTIONS(2129), + [aux_sym_cmd_identifier_token39] = ACTIONS(2129), + [aux_sym_cmd_identifier_token40] = ACTIONS(2129), + [anon_sym_def] = ACTIONS(2129), + [anon_sym_export_DASHenv] = ACTIONS(2129), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_module] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_DOLLAR] = ACTIONS(2129), + [anon_sym_error] = ACTIONS(2129), + [anon_sym_DASH2] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_in2] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_make] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_else] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_catch] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_source] = ACTIONS(2129), + [anon_sym_source_DASHenv] = ACTIONS(2129), + [anon_sym_register] = ACTIONS(2129), + [anon_sym_hide] = ACTIONS(2129), + [anon_sym_hide_DASHenv] = ACTIONS(2129), + [anon_sym_overlay] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_PLUS2] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2129), + [anon_sym_DOT_DOT2] = ACTIONS(2129), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2131), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2129), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2129), + [aux_sym__val_number_decimal_token3] = ACTIONS(2129), + [aux_sym__val_number_decimal_token4] = ACTIONS(2129), + [aux_sym__val_number_token1] = ACTIONS(2129), + [aux_sym__val_number_token2] = ACTIONS(2129), + [aux_sym__val_number_token3] = ACTIONS(2129), + [aux_sym__val_number_token4] = ACTIONS(2129), + [aux_sym__val_number_token5] = ACTIONS(2129), + [aux_sym__val_number_token6] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2129), + [sym__str_single_quotes] = ACTIONS(2129), + [sym__str_back_ticks] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2129), + [sym__entry_separator] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2131), + }, + [481] = { + [sym_comment] = STATE(481), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_in2] = 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_as] = ACTIONS(2133), + [anon_sym_PLUS2] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2133), + [anon_sym_DOT_DOT2] = ACTIONS(2135), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2137), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2137), + [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), + [aux_sym__val_number_token4] = ACTIONS(2133), + [aux_sym__val_number_token5] = ACTIONS(2133), + [aux_sym__val_number_token6] = 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(2139), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2139), + }, + [482] = { + [sym_cell_path] = STATE(736), + [sym_path] = STATE(689), + [sym_comment] = STATE(482), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1992), + [anon_sym_alias] = ACTIONS(1992), + [anon_sym_let] = ACTIONS(1992), + [anon_sym_let_DASHenv] = ACTIONS(1992), + [anon_sym_mut] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [aux_sym_cmd_identifier_token1] = ACTIONS(1992), + [aux_sym_cmd_identifier_token2] = ACTIONS(1994), + [aux_sym_cmd_identifier_token3] = ACTIONS(1994), + [aux_sym_cmd_identifier_token4] = ACTIONS(1994), + [aux_sym_cmd_identifier_token5] = ACTIONS(1994), + [aux_sym_cmd_identifier_token6] = ACTIONS(1994), + [aux_sym_cmd_identifier_token7] = ACTIONS(1994), + [aux_sym_cmd_identifier_token8] = ACTIONS(1992), + [aux_sym_cmd_identifier_token9] = ACTIONS(1992), + [aux_sym_cmd_identifier_token10] = ACTIONS(1994), + [aux_sym_cmd_identifier_token11] = ACTIONS(1994), + [aux_sym_cmd_identifier_token12] = ACTIONS(1992), + [aux_sym_cmd_identifier_token13] = ACTIONS(1992), + [aux_sym_cmd_identifier_token14] = ACTIONS(1992), + [aux_sym_cmd_identifier_token15] = ACTIONS(1992), + [aux_sym_cmd_identifier_token16] = ACTIONS(1994), + [aux_sym_cmd_identifier_token17] = ACTIONS(1994), + [aux_sym_cmd_identifier_token18] = ACTIONS(1994), + [aux_sym_cmd_identifier_token19] = ACTIONS(1994), + [aux_sym_cmd_identifier_token20] = ACTIONS(1994), + [aux_sym_cmd_identifier_token21] = ACTIONS(1994), + [aux_sym_cmd_identifier_token22] = ACTIONS(1994), + [aux_sym_cmd_identifier_token23] = ACTIONS(1994), + [aux_sym_cmd_identifier_token24] = ACTIONS(1994), + [aux_sym_cmd_identifier_token25] = ACTIONS(1994), + [aux_sym_cmd_identifier_token26] = ACTIONS(1994), + [aux_sym_cmd_identifier_token27] = ACTIONS(1994), + [aux_sym_cmd_identifier_token28] = ACTIONS(1994), + [aux_sym_cmd_identifier_token29] = ACTIONS(1994), + [aux_sym_cmd_identifier_token30] = ACTIONS(1994), + [aux_sym_cmd_identifier_token31] = ACTIONS(1994), + [aux_sym_cmd_identifier_token32] = ACTIONS(1994), + [aux_sym_cmd_identifier_token33] = ACTIONS(1994), + [aux_sym_cmd_identifier_token34] = ACTIONS(1992), + [aux_sym_cmd_identifier_token35] = ACTIONS(1994), + [aux_sym_cmd_identifier_token36] = ACTIONS(1994), + [aux_sym_cmd_identifier_token37] = ACTIONS(1994), + [aux_sym_cmd_identifier_token38] = ACTIONS(1992), + [aux_sym_cmd_identifier_token39] = ACTIONS(1994), + [aux_sym_cmd_identifier_token40] = ACTIONS(1994), + [anon_sym_def] = ACTIONS(1992), + [anon_sym_export_DASHenv] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym_module] = ACTIONS(1992), + [anon_sym_use] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [anon_sym_error] = ACTIONS(1992), + [anon_sym_DASH2] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_in2] = ACTIONS(1992), + [anon_sym_loop] = ACTIONS(1992), + [anon_sym_make] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_match] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_try] = ACTIONS(1992), + [anon_sym_catch] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_source] = ACTIONS(1992), + [anon_sym_source_DASHenv] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_hide] = ACTIONS(1992), + [anon_sym_hide_DASHenv] = ACTIONS(1992), + [anon_sym_overlay] = ACTIONS(1992), + [anon_sym_as] = ACTIONS(1992), + [anon_sym_PLUS2] = ACTIONS(1992), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1994), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1994), + [aux_sym__val_number_decimal_token1] = ACTIONS(1992), + [aux_sym__val_number_decimal_token2] = ACTIONS(1994), + [aux_sym__val_number_decimal_token3] = ACTIONS(1994), + [aux_sym__val_number_decimal_token4] = ACTIONS(1994), + [aux_sym__val_number_token1] = ACTIONS(1994), + [aux_sym__val_number_token2] = ACTIONS(1994), + [aux_sym__val_number_token3] = ACTIONS(1994), + [aux_sym__val_number_token4] = ACTIONS(1992), + [aux_sym__val_number_token5] = ACTIONS(1992), + [aux_sym__val_number_token6] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym__str_single_quotes] = ACTIONS(1994), + [sym__str_back_ticks] = ACTIONS(1994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1994), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1994), + }, + [483] = { + [sym_cell_path] = STATE(739), + [sym_path] = STATE(689), + [sym_comment] = STATE(483), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1996), + [anon_sym_alias] = ACTIONS(1996), + [anon_sym_let] = ACTIONS(1996), + [anon_sym_let_DASHenv] = ACTIONS(1996), + [anon_sym_mut] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [aux_sym_cmd_identifier_token1] = ACTIONS(1996), + [aux_sym_cmd_identifier_token2] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(1998), + [aux_sym_cmd_identifier_token4] = ACTIONS(1998), + [aux_sym_cmd_identifier_token5] = ACTIONS(1998), + [aux_sym_cmd_identifier_token6] = ACTIONS(1998), + [aux_sym_cmd_identifier_token7] = ACTIONS(1998), + [aux_sym_cmd_identifier_token8] = ACTIONS(1996), + [aux_sym_cmd_identifier_token9] = ACTIONS(1996), + [aux_sym_cmd_identifier_token10] = ACTIONS(1998), + [aux_sym_cmd_identifier_token11] = ACTIONS(1998), + [aux_sym_cmd_identifier_token12] = ACTIONS(1996), + [aux_sym_cmd_identifier_token13] = ACTIONS(1996), + [aux_sym_cmd_identifier_token14] = ACTIONS(1996), + [aux_sym_cmd_identifier_token15] = ACTIONS(1996), + [aux_sym_cmd_identifier_token16] = ACTIONS(1998), + [aux_sym_cmd_identifier_token17] = ACTIONS(1998), + [aux_sym_cmd_identifier_token18] = ACTIONS(1998), + [aux_sym_cmd_identifier_token19] = ACTIONS(1998), + [aux_sym_cmd_identifier_token20] = ACTIONS(1998), + [aux_sym_cmd_identifier_token21] = ACTIONS(1998), + [aux_sym_cmd_identifier_token22] = ACTIONS(1998), + [aux_sym_cmd_identifier_token23] = ACTIONS(1998), + [aux_sym_cmd_identifier_token24] = ACTIONS(1998), + [aux_sym_cmd_identifier_token25] = ACTIONS(1998), + [aux_sym_cmd_identifier_token26] = ACTIONS(1998), + [aux_sym_cmd_identifier_token27] = ACTIONS(1998), + [aux_sym_cmd_identifier_token28] = ACTIONS(1998), + [aux_sym_cmd_identifier_token29] = ACTIONS(1998), + [aux_sym_cmd_identifier_token30] = ACTIONS(1998), + [aux_sym_cmd_identifier_token31] = ACTIONS(1998), + [aux_sym_cmd_identifier_token32] = ACTIONS(1998), + [aux_sym_cmd_identifier_token33] = ACTIONS(1998), + [aux_sym_cmd_identifier_token34] = ACTIONS(1996), + [aux_sym_cmd_identifier_token35] = ACTIONS(1998), + [aux_sym_cmd_identifier_token36] = ACTIONS(1998), + [aux_sym_cmd_identifier_token37] = ACTIONS(1998), + [aux_sym_cmd_identifier_token38] = ACTIONS(1996), + [aux_sym_cmd_identifier_token39] = ACTIONS(1998), + [aux_sym_cmd_identifier_token40] = ACTIONS(1998), + [anon_sym_def] = ACTIONS(1996), + [anon_sym_export_DASHenv] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym_module] = ACTIONS(1996), + [anon_sym_use] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_DOLLAR] = ACTIONS(1998), + [anon_sym_error] = ACTIONS(1996), + [anon_sym_DASH2] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_in2] = ACTIONS(1996), + [anon_sym_loop] = ACTIONS(1996), + [anon_sym_make] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_else] = ACTIONS(1996), + [anon_sym_match] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_try] = ACTIONS(1996), + [anon_sym_catch] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_source] = ACTIONS(1996), + [anon_sym_source_DASHenv] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1996), + [anon_sym_hide] = ACTIONS(1996), + [anon_sym_hide_DASHenv] = ACTIONS(1996), + [anon_sym_overlay] = ACTIONS(1996), + [anon_sym_as] = ACTIONS(1996), + [anon_sym_PLUS2] = ACTIONS(1996), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1998), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1998), + [aux_sym__val_number_decimal_token1] = ACTIONS(1996), + [aux_sym__val_number_decimal_token2] = ACTIONS(1998), + [aux_sym__val_number_decimal_token3] = ACTIONS(1998), + [aux_sym__val_number_decimal_token4] = ACTIONS(1998), + [aux_sym__val_number_token1] = ACTIONS(1998), + [aux_sym__val_number_token2] = ACTIONS(1998), + [aux_sym__val_number_token3] = ACTIONS(1998), + [aux_sym__val_number_token4] = ACTIONS(1996), + [aux_sym__val_number_token5] = ACTIONS(1996), + [aux_sym__val_number_token6] = ACTIONS(1996), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym__str_single_quotes] = ACTIONS(1998), + [sym__str_back_ticks] = ACTIONS(1998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1998), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1998), + }, + [484] = { + [sym_cell_path] = STATE(742), + [sym_path] = STATE(689), + [sym_comment] = STATE(484), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2000), + [anon_sym_alias] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_let_DASHenv] = ACTIONS(2000), + [anon_sym_mut] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [aux_sym_cmd_identifier_token1] = ACTIONS(2000), + [aux_sym_cmd_identifier_token2] = ACTIONS(2002), + [aux_sym_cmd_identifier_token3] = ACTIONS(2002), + [aux_sym_cmd_identifier_token4] = ACTIONS(2002), + [aux_sym_cmd_identifier_token5] = ACTIONS(2002), + [aux_sym_cmd_identifier_token6] = ACTIONS(2002), + [aux_sym_cmd_identifier_token7] = ACTIONS(2002), + [aux_sym_cmd_identifier_token8] = ACTIONS(2000), + [aux_sym_cmd_identifier_token9] = ACTIONS(2000), + [aux_sym_cmd_identifier_token10] = ACTIONS(2002), + [aux_sym_cmd_identifier_token11] = ACTIONS(2002), + [aux_sym_cmd_identifier_token12] = ACTIONS(2000), + [aux_sym_cmd_identifier_token13] = ACTIONS(2000), + [aux_sym_cmd_identifier_token14] = ACTIONS(2000), + [aux_sym_cmd_identifier_token15] = ACTIONS(2000), + [aux_sym_cmd_identifier_token16] = ACTIONS(2002), + [aux_sym_cmd_identifier_token17] = ACTIONS(2002), + [aux_sym_cmd_identifier_token18] = ACTIONS(2002), + [aux_sym_cmd_identifier_token19] = ACTIONS(2002), + [aux_sym_cmd_identifier_token20] = ACTIONS(2002), + [aux_sym_cmd_identifier_token21] = ACTIONS(2002), + [aux_sym_cmd_identifier_token22] = ACTIONS(2002), + [aux_sym_cmd_identifier_token23] = ACTIONS(2002), + [aux_sym_cmd_identifier_token24] = ACTIONS(2002), + [aux_sym_cmd_identifier_token25] = ACTIONS(2002), + [aux_sym_cmd_identifier_token26] = ACTIONS(2002), + [aux_sym_cmd_identifier_token27] = ACTIONS(2002), + [aux_sym_cmd_identifier_token28] = ACTIONS(2002), + [aux_sym_cmd_identifier_token29] = ACTIONS(2002), + [aux_sym_cmd_identifier_token30] = ACTIONS(2002), + [aux_sym_cmd_identifier_token31] = ACTIONS(2002), + [aux_sym_cmd_identifier_token32] = ACTIONS(2002), + [aux_sym_cmd_identifier_token33] = ACTIONS(2002), + [aux_sym_cmd_identifier_token34] = ACTIONS(2000), + [aux_sym_cmd_identifier_token35] = ACTIONS(2002), + [aux_sym_cmd_identifier_token36] = ACTIONS(2002), + [aux_sym_cmd_identifier_token37] = ACTIONS(2002), + [aux_sym_cmd_identifier_token38] = ACTIONS(2000), + [aux_sym_cmd_identifier_token39] = ACTIONS(2002), + [aux_sym_cmd_identifier_token40] = ACTIONS(2002), + [anon_sym_def] = ACTIONS(2000), + [anon_sym_export_DASHenv] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_module] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [anon_sym_error] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_in2] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_make] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_try] = ACTIONS(2000), + [anon_sym_catch] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_source] = ACTIONS(2000), + [anon_sym_source_DASHenv] = ACTIONS(2000), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_hide] = ACTIONS(2000), + [anon_sym_hide_DASHenv] = ACTIONS(2000), + [anon_sym_overlay] = ACTIONS(2000), + [anon_sym_as] = ACTIONS(2000), + [anon_sym_PLUS2] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2002), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2002), + [aux_sym__val_number_decimal_token1] = ACTIONS(2000), + [aux_sym__val_number_decimal_token2] = ACTIONS(2002), + [aux_sym__val_number_decimal_token3] = ACTIONS(2002), + [aux_sym__val_number_decimal_token4] = ACTIONS(2002), + [aux_sym__val_number_token1] = ACTIONS(2002), + [aux_sym__val_number_token2] = ACTIONS(2002), + [aux_sym__val_number_token3] = ACTIONS(2002), + [aux_sym__val_number_token4] = ACTIONS(2000), + [aux_sym__val_number_token5] = ACTIONS(2000), + [aux_sym__val_number_token6] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym__str_single_quotes] = ACTIONS(2002), + [sym__str_back_ticks] = ACTIONS(2002), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2002), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2002), + }, + [485] = { + [sym_comment] = STATE(485), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(2141), + [aux_sym__immediate_decimal_token2] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [486] = { + [sym_cell_path] = STATE(746), + [sym_path] = STATE(689), + [sym_comment] = STATE(486), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2004), + [anon_sym_alias] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_let_DASHenv] = ACTIONS(2004), + [anon_sym_mut] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [aux_sym_cmd_identifier_token1] = ACTIONS(2004), + [aux_sym_cmd_identifier_token2] = ACTIONS(2006), + [aux_sym_cmd_identifier_token3] = ACTIONS(2006), + [aux_sym_cmd_identifier_token4] = ACTIONS(2006), + [aux_sym_cmd_identifier_token5] = ACTIONS(2006), + [aux_sym_cmd_identifier_token6] = ACTIONS(2006), + [aux_sym_cmd_identifier_token7] = ACTIONS(2006), + [aux_sym_cmd_identifier_token8] = ACTIONS(2004), + [aux_sym_cmd_identifier_token9] = ACTIONS(2004), + [aux_sym_cmd_identifier_token10] = ACTIONS(2006), + [aux_sym_cmd_identifier_token11] = ACTIONS(2006), + [aux_sym_cmd_identifier_token12] = ACTIONS(2004), + [aux_sym_cmd_identifier_token13] = ACTIONS(2004), + [aux_sym_cmd_identifier_token14] = ACTIONS(2004), + [aux_sym_cmd_identifier_token15] = ACTIONS(2004), + [aux_sym_cmd_identifier_token16] = ACTIONS(2006), + [aux_sym_cmd_identifier_token17] = ACTIONS(2006), + [aux_sym_cmd_identifier_token18] = ACTIONS(2006), + [aux_sym_cmd_identifier_token19] = ACTIONS(2006), + [aux_sym_cmd_identifier_token20] = ACTIONS(2006), + [aux_sym_cmd_identifier_token21] = ACTIONS(2006), + [aux_sym_cmd_identifier_token22] = ACTIONS(2006), + [aux_sym_cmd_identifier_token23] = ACTIONS(2006), + [aux_sym_cmd_identifier_token24] = ACTIONS(2006), + [aux_sym_cmd_identifier_token25] = ACTIONS(2006), + [aux_sym_cmd_identifier_token26] = ACTIONS(2006), + [aux_sym_cmd_identifier_token27] = ACTIONS(2006), + [aux_sym_cmd_identifier_token28] = ACTIONS(2006), + [aux_sym_cmd_identifier_token29] = ACTIONS(2006), + [aux_sym_cmd_identifier_token30] = ACTIONS(2006), + [aux_sym_cmd_identifier_token31] = ACTIONS(2006), + [aux_sym_cmd_identifier_token32] = ACTIONS(2006), + [aux_sym_cmd_identifier_token33] = ACTIONS(2006), + [aux_sym_cmd_identifier_token34] = ACTIONS(2004), + [aux_sym_cmd_identifier_token35] = ACTIONS(2006), + [aux_sym_cmd_identifier_token36] = ACTIONS(2006), + [aux_sym_cmd_identifier_token37] = ACTIONS(2006), + [aux_sym_cmd_identifier_token38] = ACTIONS(2004), + [aux_sym_cmd_identifier_token39] = ACTIONS(2006), + [aux_sym_cmd_identifier_token40] = ACTIONS(2006), + [anon_sym_def] = ACTIONS(2004), + [anon_sym_export_DASHenv] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_module] = ACTIONS(2004), + [anon_sym_use] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2006), + [anon_sym_error] = ACTIONS(2004), + [anon_sym_DASH2] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_in2] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_make] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_catch] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_source] = ACTIONS(2004), + [anon_sym_source_DASHenv] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_hide] = ACTIONS(2004), + [anon_sym_hide_DASHenv] = ACTIONS(2004), + [anon_sym_overlay] = ACTIONS(2004), + [anon_sym_as] = ACTIONS(2004), + [anon_sym_PLUS2] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2006), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2006), + [aux_sym__val_number_decimal_token1] = ACTIONS(2004), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2006), + [aux_sym__val_number_decimal_token4] = ACTIONS(2006), + [aux_sym__val_number_token1] = ACTIONS(2006), + [aux_sym__val_number_token2] = ACTIONS(2006), + [aux_sym__val_number_token3] = ACTIONS(2006), + [aux_sym__val_number_token4] = ACTIONS(2004), + [aux_sym__val_number_token5] = ACTIONS(2004), + [aux_sym__val_number_token6] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym__str_single_quotes] = ACTIONS(2006), + [sym__str_back_ticks] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2006), + }, + [487] = { + [sym_cell_path] = STATE(725), + [sym_path] = STATE(689), + [sym_comment] = STATE(487), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1933), + [anon_sym_alias] = ACTIONS(1933), + [anon_sym_let] = ACTIONS(1933), + [anon_sym_let_DASHenv] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [aux_sym_cmd_identifier_token1] = ACTIONS(1933), + [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(1933), + [aux_sym_cmd_identifier_token9] = ACTIONS(1933), + [aux_sym_cmd_identifier_token10] = ACTIONS(1935), + [aux_sym_cmd_identifier_token11] = ACTIONS(1935), + [aux_sym_cmd_identifier_token12] = ACTIONS(1933), + [aux_sym_cmd_identifier_token13] = ACTIONS(1933), + [aux_sym_cmd_identifier_token14] = ACTIONS(1933), + [aux_sym_cmd_identifier_token15] = ACTIONS(1933), + [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(1933), + [aux_sym_cmd_identifier_token35] = ACTIONS(1935), + [aux_sym_cmd_identifier_token36] = ACTIONS(1935), + [aux_sym_cmd_identifier_token37] = ACTIONS(1935), + [aux_sym_cmd_identifier_token38] = ACTIONS(1933), + [aux_sym_cmd_identifier_token39] = ACTIONS(1935), + [aux_sym_cmd_identifier_token40] = ACTIONS(1935), + [anon_sym_def] = ACTIONS(1933), + [anon_sym_export_DASHenv] = ACTIONS(1933), + [anon_sym_extern] = ACTIONS(1933), + [anon_sym_module] = ACTIONS(1933), + [anon_sym_use] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_DOLLAR] = ACTIONS(1935), + [anon_sym_error] = ACTIONS(1933), + [anon_sym_DASH2] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_in2] = ACTIONS(1933), + [anon_sym_loop] = ACTIONS(1933), + [anon_sym_make] = ACTIONS(1933), + [anon_sym_while] = ACTIONS(1933), + [anon_sym_do] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_else] = ACTIONS(1933), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1933), + [anon_sym_catch] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_source] = ACTIONS(1933), + [anon_sym_source_DASHenv] = ACTIONS(1933), + [anon_sym_register] = ACTIONS(1933), + [anon_sym_hide] = ACTIONS(1933), + [anon_sym_hide_DASHenv] = ACTIONS(1933), + [anon_sym_overlay] = ACTIONS(1933), + [anon_sym_as] = ACTIONS(1933), + [anon_sym_PLUS2] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), + [aux_sym__val_number_decimal_token1] = ACTIONS(1933), + [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), + [aux_sym__val_number_token4] = ACTIONS(1933), + [aux_sym__val_number_token5] = ACTIONS(1933), + [aux_sym__val_number_token6] = ACTIONS(1933), + [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), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1935), + }, + [488] = { + [sym_comment] = STATE(488), + [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(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(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(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_PLUS2] = 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), + [aux_sym__immediate_decimal_token2] = ACTIONS(1982), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = ACTIONS(1755), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [489] = { + [sym_cell_path] = STATE(747), + [sym_path] = STATE(689), + [sym_comment] = STATE(489), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_alias] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_let_DASHenv] = ACTIONS(2068), + [anon_sym_mut] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [aux_sym_cmd_identifier_token1] = ACTIONS(2068), + [aux_sym_cmd_identifier_token2] = ACTIONS(2070), + [aux_sym_cmd_identifier_token3] = ACTIONS(2070), + [aux_sym_cmd_identifier_token4] = ACTIONS(2070), + [aux_sym_cmd_identifier_token5] = ACTIONS(2070), + [aux_sym_cmd_identifier_token6] = ACTIONS(2070), + [aux_sym_cmd_identifier_token7] = ACTIONS(2070), + [aux_sym_cmd_identifier_token8] = ACTIONS(2068), + [aux_sym_cmd_identifier_token9] = ACTIONS(2068), + [aux_sym_cmd_identifier_token10] = ACTIONS(2070), + [aux_sym_cmd_identifier_token11] = ACTIONS(2070), + [aux_sym_cmd_identifier_token12] = ACTIONS(2068), + [aux_sym_cmd_identifier_token13] = ACTIONS(2068), + [aux_sym_cmd_identifier_token14] = ACTIONS(2068), + [aux_sym_cmd_identifier_token15] = ACTIONS(2068), + [aux_sym_cmd_identifier_token16] = ACTIONS(2070), + [aux_sym_cmd_identifier_token17] = ACTIONS(2070), + [aux_sym_cmd_identifier_token18] = ACTIONS(2070), + [aux_sym_cmd_identifier_token19] = ACTIONS(2070), + [aux_sym_cmd_identifier_token20] = ACTIONS(2070), + [aux_sym_cmd_identifier_token21] = ACTIONS(2070), + [aux_sym_cmd_identifier_token22] = ACTIONS(2070), + [aux_sym_cmd_identifier_token23] = ACTIONS(2070), + [aux_sym_cmd_identifier_token24] = ACTIONS(2070), + [aux_sym_cmd_identifier_token25] = ACTIONS(2070), + [aux_sym_cmd_identifier_token26] = ACTIONS(2070), + [aux_sym_cmd_identifier_token27] = ACTIONS(2070), + [aux_sym_cmd_identifier_token28] = ACTIONS(2070), + [aux_sym_cmd_identifier_token29] = ACTIONS(2070), + [aux_sym_cmd_identifier_token30] = ACTIONS(2070), + [aux_sym_cmd_identifier_token31] = ACTIONS(2070), + [aux_sym_cmd_identifier_token32] = ACTIONS(2070), + [aux_sym_cmd_identifier_token33] = ACTIONS(2070), + [aux_sym_cmd_identifier_token34] = ACTIONS(2068), + [aux_sym_cmd_identifier_token35] = ACTIONS(2070), + [aux_sym_cmd_identifier_token36] = ACTIONS(2070), + [aux_sym_cmd_identifier_token37] = ACTIONS(2070), + [aux_sym_cmd_identifier_token38] = ACTIONS(2068), + [aux_sym_cmd_identifier_token39] = ACTIONS(2070), + [aux_sym_cmd_identifier_token40] = ACTIONS(2070), + [anon_sym_def] = ACTIONS(2068), + [anon_sym_export_DASHenv] = ACTIONS(2068), + [anon_sym_extern] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_use] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_DOLLAR] = ACTIONS(2070), + [anon_sym_error] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_loop] = ACTIONS(2068), + [anon_sym_make] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_match] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_catch] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_source] = ACTIONS(2068), + [anon_sym_source_DASHenv] = ACTIONS(2068), + [anon_sym_register] = ACTIONS(2068), + [anon_sym_hide] = ACTIONS(2068), + [anon_sym_hide_DASHenv] = ACTIONS(2068), + [anon_sym_overlay] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), + [aux_sym__val_number_decimal_token1] = ACTIONS(2068), + [aux_sym__val_number_decimal_token2] = ACTIONS(2070), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(2070), + [aux_sym__val_number_token2] = ACTIONS(2070), + [aux_sym__val_number_token3] = ACTIONS(2070), + [aux_sym__val_number_token4] = ACTIONS(2068), + [aux_sym__val_number_token5] = ACTIONS(2068), + [aux_sym__val_number_token6] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2070), + [sym__str_single_quotes] = ACTIONS(2070), + [sym__str_back_ticks] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2070), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2070), + }, + [490] = { + [sym_cell_path] = STATE(748), + [sym_path] = STATE(689), + [sym_comment] = STATE(490), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_alias] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_let_DASHenv] = ACTIONS(2072), + [anon_sym_mut] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [aux_sym_cmd_identifier_token1] = ACTIONS(2072), + [aux_sym_cmd_identifier_token2] = ACTIONS(2074), + [aux_sym_cmd_identifier_token3] = ACTIONS(2074), + [aux_sym_cmd_identifier_token4] = ACTIONS(2074), + [aux_sym_cmd_identifier_token5] = ACTIONS(2074), + [aux_sym_cmd_identifier_token6] = ACTIONS(2074), + [aux_sym_cmd_identifier_token7] = ACTIONS(2074), + [aux_sym_cmd_identifier_token8] = ACTIONS(2072), + [aux_sym_cmd_identifier_token9] = ACTIONS(2072), + [aux_sym_cmd_identifier_token10] = ACTIONS(2074), + [aux_sym_cmd_identifier_token11] = ACTIONS(2074), + [aux_sym_cmd_identifier_token12] = ACTIONS(2072), + [aux_sym_cmd_identifier_token13] = ACTIONS(2072), + [aux_sym_cmd_identifier_token14] = ACTIONS(2072), + [aux_sym_cmd_identifier_token15] = ACTIONS(2072), + [aux_sym_cmd_identifier_token16] = ACTIONS(2074), + [aux_sym_cmd_identifier_token17] = ACTIONS(2074), + [aux_sym_cmd_identifier_token18] = ACTIONS(2074), + [aux_sym_cmd_identifier_token19] = ACTIONS(2074), + [aux_sym_cmd_identifier_token20] = ACTIONS(2074), + [aux_sym_cmd_identifier_token21] = ACTIONS(2074), + [aux_sym_cmd_identifier_token22] = ACTIONS(2074), + [aux_sym_cmd_identifier_token23] = ACTIONS(2074), + [aux_sym_cmd_identifier_token24] = ACTIONS(2074), + [aux_sym_cmd_identifier_token25] = ACTIONS(2074), + [aux_sym_cmd_identifier_token26] = ACTIONS(2074), + [aux_sym_cmd_identifier_token27] = ACTIONS(2074), + [aux_sym_cmd_identifier_token28] = ACTIONS(2074), + [aux_sym_cmd_identifier_token29] = ACTIONS(2074), + [aux_sym_cmd_identifier_token30] = ACTIONS(2074), + [aux_sym_cmd_identifier_token31] = ACTIONS(2074), + [aux_sym_cmd_identifier_token32] = ACTIONS(2074), + [aux_sym_cmd_identifier_token33] = ACTIONS(2074), + [aux_sym_cmd_identifier_token34] = ACTIONS(2072), + [aux_sym_cmd_identifier_token35] = ACTIONS(2074), + [aux_sym_cmd_identifier_token36] = ACTIONS(2074), + [aux_sym_cmd_identifier_token37] = ACTIONS(2074), + [aux_sym_cmd_identifier_token38] = ACTIONS(2072), + [aux_sym_cmd_identifier_token39] = ACTIONS(2074), + [aux_sym_cmd_identifier_token40] = ACTIONS(2074), + [anon_sym_def] = ACTIONS(2072), + [anon_sym_export_DASHenv] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_use] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2074), + [anon_sym_DOLLAR] = ACTIONS(2074), + [anon_sym_error] = ACTIONS(2072), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_in2] = ACTIONS(2072), + [anon_sym_loop] = ACTIONS(2072), + [anon_sym_make] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_match] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_catch] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_source] = ACTIONS(2072), + [anon_sym_source_DASHenv] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_hide] = ACTIONS(2072), + [anon_sym_hide_DASHenv] = ACTIONS(2072), + [anon_sym_overlay] = ACTIONS(2072), + [anon_sym_as] = ACTIONS(2072), + [anon_sym_PLUS2] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2074), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2074), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [aux_sym__val_number_decimal_token2] = ACTIONS(2074), + [aux_sym__val_number_decimal_token3] = ACTIONS(2074), + [aux_sym__val_number_decimal_token4] = ACTIONS(2074), + [aux_sym__val_number_token1] = ACTIONS(2074), + [aux_sym__val_number_token2] = ACTIONS(2074), + [aux_sym__val_number_token3] = ACTIONS(2074), + [aux_sym__val_number_token4] = ACTIONS(2072), + [aux_sym__val_number_token5] = ACTIONS(2072), + [aux_sym__val_number_token6] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym__str_single_quotes] = ACTIONS(2074), + [sym__str_back_ticks] = ACTIONS(2074), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2074), + }, + [491] = { + [sym_comment] = STATE(491), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [aux_sym_cmd_identifier_token37] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_COMMA] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_register] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(2145), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [aux_sym_record_entry_token1] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), + }, + [492] = { + [sym_comment] = STATE(492), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(2147), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [aux_sym_record_entry_token1] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(986), + }, + [493] = { + [sym_cell_path] = STATE(749), + [sym_path] = STATE(689), + [sym_comment] = STATE(493), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_alias] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_let_DASHenv] = ACTIONS(1907), + [anon_sym_mut] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [aux_sym_cmd_identifier_token1] = ACTIONS(1907), + [aux_sym_cmd_identifier_token2] = ACTIONS(1911), + [aux_sym_cmd_identifier_token3] = ACTIONS(1911), + [aux_sym_cmd_identifier_token4] = ACTIONS(1911), + [aux_sym_cmd_identifier_token5] = ACTIONS(1911), + [aux_sym_cmd_identifier_token6] = ACTIONS(1911), + [aux_sym_cmd_identifier_token7] = ACTIONS(1911), + [aux_sym_cmd_identifier_token8] = ACTIONS(1907), + [aux_sym_cmd_identifier_token9] = ACTIONS(1907), + [aux_sym_cmd_identifier_token10] = ACTIONS(1911), + [aux_sym_cmd_identifier_token11] = ACTIONS(1911), + [aux_sym_cmd_identifier_token12] = ACTIONS(1907), + [aux_sym_cmd_identifier_token13] = ACTIONS(1907), + [aux_sym_cmd_identifier_token14] = ACTIONS(1907), + [aux_sym_cmd_identifier_token15] = ACTIONS(1907), + [aux_sym_cmd_identifier_token16] = ACTIONS(1911), + [aux_sym_cmd_identifier_token17] = ACTIONS(1911), + [aux_sym_cmd_identifier_token18] = ACTIONS(1911), + [aux_sym_cmd_identifier_token19] = ACTIONS(1911), + [aux_sym_cmd_identifier_token20] = ACTIONS(1911), + [aux_sym_cmd_identifier_token21] = ACTIONS(1911), + [aux_sym_cmd_identifier_token22] = ACTIONS(1911), + [aux_sym_cmd_identifier_token23] = ACTIONS(1911), + [aux_sym_cmd_identifier_token24] = ACTIONS(1911), + [aux_sym_cmd_identifier_token25] = ACTIONS(1911), + [aux_sym_cmd_identifier_token26] = ACTIONS(1911), + [aux_sym_cmd_identifier_token27] = ACTIONS(1911), + [aux_sym_cmd_identifier_token28] = ACTIONS(1911), + [aux_sym_cmd_identifier_token29] = ACTIONS(1911), + [aux_sym_cmd_identifier_token30] = ACTIONS(1911), + [aux_sym_cmd_identifier_token31] = ACTIONS(1911), + [aux_sym_cmd_identifier_token32] = ACTIONS(1911), + [aux_sym_cmd_identifier_token33] = ACTIONS(1911), + [aux_sym_cmd_identifier_token34] = ACTIONS(1907), + [aux_sym_cmd_identifier_token35] = ACTIONS(1911), + [aux_sym_cmd_identifier_token36] = ACTIONS(1911), + [aux_sym_cmd_identifier_token37] = ACTIONS(1911), + [aux_sym_cmd_identifier_token38] = ACTIONS(1907), [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_def] = ACTIONS(1907), + [anon_sym_export_DASHenv] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_use] = ACTIONS(1907), [anon_sym_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_error] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_in2] = ACTIONS(1907), + [anon_sym_loop] = ACTIONS(1907), + [anon_sym_make] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), [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_try] = ACTIONS(1907), + [anon_sym_catch] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_source] = ACTIONS(1907), + [anon_sym_source_DASHenv] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_hide] = ACTIONS(1907), + [anon_sym_hide_DASHenv] = ACTIONS(1907), + [anon_sym_overlay] = ACTIONS(1907), + [anon_sym_as] = ACTIONS(1907), + [anon_sym_PLUS2] = ACTIONS(1907), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT] = ACTIONS(2110), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [aux_sym__val_number_decimal_token1] = ACTIONS(1907), [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), + [aux_sym__val_number_token4] = ACTIONS(1907), + [aux_sym__val_number_token5] = ACTIONS(1907), + [aux_sym__val_number_token6] = ACTIONS(1907), [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(249), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1911), }, - [425] = { - [sym_comment] = STATE(425), - [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(2192), - [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(249), - [sym_raw_string_begin] = ACTIONS(1050), + [494] = { + [sym_comment] = STATE(494), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [aux_sym_cmd_identifier_token1] = ACTIONS(1018), + [aux_sym_cmd_identifier_token2] = ACTIONS(1018), + [aux_sym_cmd_identifier_token3] = ACTIONS(1018), + [aux_sym_cmd_identifier_token4] = ACTIONS(1018), + [aux_sym_cmd_identifier_token5] = ACTIONS(1018), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [aux_sym_cmd_identifier_token7] = ACTIONS(1018), + [aux_sym_cmd_identifier_token8] = ACTIONS(1018), + [aux_sym_cmd_identifier_token9] = ACTIONS(1018), + [aux_sym_cmd_identifier_token10] = ACTIONS(1018), + [aux_sym_cmd_identifier_token11] = ACTIONS(1018), + [aux_sym_cmd_identifier_token12] = ACTIONS(1018), + [aux_sym_cmd_identifier_token13] = ACTIONS(1018), + [aux_sym_cmd_identifier_token14] = ACTIONS(1018), + [aux_sym_cmd_identifier_token15] = ACTIONS(1018), + [aux_sym_cmd_identifier_token16] = ACTIONS(1018), + [aux_sym_cmd_identifier_token17] = ACTIONS(1018), + [aux_sym_cmd_identifier_token18] = ACTIONS(1018), + [aux_sym_cmd_identifier_token19] = ACTIONS(1018), + [aux_sym_cmd_identifier_token20] = ACTIONS(1018), + [aux_sym_cmd_identifier_token21] = ACTIONS(1018), + [aux_sym_cmd_identifier_token22] = ACTIONS(1018), + [aux_sym_cmd_identifier_token23] = ACTIONS(1018), + [aux_sym_cmd_identifier_token24] = ACTIONS(1018), + [aux_sym_cmd_identifier_token25] = ACTIONS(1018), + [aux_sym_cmd_identifier_token26] = ACTIONS(1018), + [aux_sym_cmd_identifier_token27] = ACTIONS(1018), + [aux_sym_cmd_identifier_token28] = ACTIONS(1018), + [aux_sym_cmd_identifier_token29] = ACTIONS(1018), + [aux_sym_cmd_identifier_token30] = ACTIONS(1018), + [aux_sym_cmd_identifier_token31] = ACTIONS(1018), + [aux_sym_cmd_identifier_token32] = ACTIONS(1018), + [aux_sym_cmd_identifier_token33] = ACTIONS(1018), + [aux_sym_cmd_identifier_token34] = ACTIONS(1018), + [aux_sym_cmd_identifier_token35] = ACTIONS(1018), + [aux_sym_cmd_identifier_token36] = ACTIONS(1018), + [aux_sym_cmd_identifier_token37] = ACTIONS(1018), + [aux_sym_cmd_identifier_token38] = ACTIONS(1018), + [aux_sym_cmd_identifier_token39] = ACTIONS(1018), + [aux_sym_cmd_identifier_token40] = ACTIONS(1018), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_make] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_catch] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_as] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1018), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1018), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1018), + [aux_sym__val_number_decimal_token3] = ACTIONS(1018), + [aux_sym__val_number_decimal_token4] = ACTIONS(1018), + [aux_sym__val_number_token1] = ACTIONS(1018), + [aux_sym__val_number_token2] = ACTIONS(1018), + [aux_sym__val_number_token3] = ACTIONS(1018), + [aux_sym__val_number_token4] = ACTIONS(1018), + [aux_sym__val_number_token5] = ACTIONS(1018), + [aux_sym__val_number_token6] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym__str_single_quotes] = ACTIONS(1018), + [sym__str_back_ticks] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1018), + [sym__entry_separator] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1020), }, - [426] = { - [sym_cell_path] = STATE(706), - [sym_path] = STATE(631), - [sym_comment] = STATE(426), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2063), - [anon_sym_alias] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_let_DASHenv] = ACTIONS(2063), - [anon_sym_mut] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2063), - [aux_sym_cmd_identifier_token1] = ACTIONS(2063), - [aux_sym_cmd_identifier_token2] = ACTIONS(2063), - [aux_sym_cmd_identifier_token3] = ACTIONS(2063), - [aux_sym_cmd_identifier_token4] = ACTIONS(2063), - [aux_sym_cmd_identifier_token5] = ACTIONS(2063), - [aux_sym_cmd_identifier_token6] = ACTIONS(2063), - [aux_sym_cmd_identifier_token7] = ACTIONS(2063), - [aux_sym_cmd_identifier_token8] = ACTIONS(2063), - [aux_sym_cmd_identifier_token9] = ACTIONS(2063), - [aux_sym_cmd_identifier_token10] = ACTIONS(2063), - [aux_sym_cmd_identifier_token11] = ACTIONS(2063), - [aux_sym_cmd_identifier_token12] = ACTIONS(2063), - [aux_sym_cmd_identifier_token13] = ACTIONS(2063), - [aux_sym_cmd_identifier_token14] = ACTIONS(2063), - [aux_sym_cmd_identifier_token15] = ACTIONS(2063), - [aux_sym_cmd_identifier_token16] = ACTIONS(2063), - [aux_sym_cmd_identifier_token17] = ACTIONS(2063), - [aux_sym_cmd_identifier_token18] = ACTIONS(2063), - [aux_sym_cmd_identifier_token19] = ACTIONS(2063), - [aux_sym_cmd_identifier_token20] = ACTIONS(2063), - [aux_sym_cmd_identifier_token21] = ACTIONS(2063), - [aux_sym_cmd_identifier_token22] = ACTIONS(2063), - [aux_sym_cmd_identifier_token23] = ACTIONS(2063), - [aux_sym_cmd_identifier_token24] = ACTIONS(2063), - [aux_sym_cmd_identifier_token25] = ACTIONS(2063), - [aux_sym_cmd_identifier_token26] = ACTIONS(2063), - [aux_sym_cmd_identifier_token27] = ACTIONS(2063), - [aux_sym_cmd_identifier_token28] = ACTIONS(2063), - [aux_sym_cmd_identifier_token29] = ACTIONS(2063), - [aux_sym_cmd_identifier_token30] = ACTIONS(2063), - [aux_sym_cmd_identifier_token31] = ACTIONS(2063), - [aux_sym_cmd_identifier_token32] = ACTIONS(2063), - [aux_sym_cmd_identifier_token33] = ACTIONS(2063), - [aux_sym_cmd_identifier_token34] = ACTIONS(2063), - [aux_sym_cmd_identifier_token35] = ACTIONS(2063), - [aux_sym_cmd_identifier_token36] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token38] = ACTIONS(2063), - [aux_sym_cmd_identifier_token39] = ACTIONS(2065), - [aux_sym_cmd_identifier_token40] = ACTIONS(2065), - [anon_sym_def] = ACTIONS(2063), - [anon_sym_export_DASHenv] = ACTIONS(2063), - [anon_sym_extern] = ACTIONS(2063), - [anon_sym_module] = ACTIONS(2063), - [anon_sym_use] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_DOLLAR] = ACTIONS(2065), - [anon_sym_error] = ACTIONS(2063), - [anon_sym_list] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_break] = ACTIONS(2063), - [anon_sym_continue] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2063), - [anon_sym_in] = ACTIONS(2063), - [anon_sym_loop] = ACTIONS(2063), - [anon_sym_make] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [anon_sym_do] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(2063), - [anon_sym_else] = ACTIONS(2063), - [anon_sym_match] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_try] = ACTIONS(2063), - [anon_sym_catch] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2063), - [anon_sym_source] = ACTIONS(2063), - [anon_sym_source_DASHenv] = ACTIONS(2063), - [anon_sym_register] = ACTIONS(2063), - [anon_sym_hide] = ACTIONS(2063), - [anon_sym_hide_DASHenv] = ACTIONS(2063), - [anon_sym_overlay] = ACTIONS(2063), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2065), - [aux_sym__val_number_decimal_token1] = ACTIONS(2063), - [aux_sym__val_number_decimal_token2] = ACTIONS(2065), - [aux_sym__val_number_decimal_token3] = ACTIONS(2065), - [aux_sym__val_number_decimal_token4] = ACTIONS(2065), - [aux_sym__val_number_token1] = ACTIONS(2065), - [aux_sym__val_number_token2] = ACTIONS(2065), - [aux_sym__val_number_token3] = ACTIONS(2065), - [anon_sym_DQUOTE] = ACTIONS(2065), - [sym__str_single_quotes] = ACTIONS(2065), - [sym__str_back_ticks] = ACTIONS(2065), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2065), + [495] = { + [sym_comment] = STATE(495), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, - [427] = { - [sym_comment] = STATE(427), - [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(2194), - [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(249), - [sym_raw_string_begin] = ACTIONS(1044), + [496] = { + [sym_cell_path] = STATE(741), + [sym_path] = STATE(689), + [sym_comment] = STATE(496), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2078), + [anon_sym_alias] = ACTIONS(2078), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_let_DASHenv] = ACTIONS(2078), + [anon_sym_mut] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2078), + [aux_sym_cmd_identifier_token1] = ACTIONS(2078), + [aux_sym_cmd_identifier_token2] = ACTIONS(2080), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [aux_sym_cmd_identifier_token6] = ACTIONS(2080), + [aux_sym_cmd_identifier_token7] = ACTIONS(2080), + [aux_sym_cmd_identifier_token8] = ACTIONS(2078), + [aux_sym_cmd_identifier_token9] = ACTIONS(2078), + [aux_sym_cmd_identifier_token10] = ACTIONS(2080), + [aux_sym_cmd_identifier_token11] = ACTIONS(2080), + [aux_sym_cmd_identifier_token12] = ACTIONS(2078), + [aux_sym_cmd_identifier_token13] = ACTIONS(2078), + [aux_sym_cmd_identifier_token14] = ACTIONS(2078), + [aux_sym_cmd_identifier_token15] = ACTIONS(2078), + [aux_sym_cmd_identifier_token16] = ACTIONS(2080), + [aux_sym_cmd_identifier_token17] = ACTIONS(2080), + [aux_sym_cmd_identifier_token18] = ACTIONS(2080), + [aux_sym_cmd_identifier_token19] = ACTIONS(2080), + [aux_sym_cmd_identifier_token20] = ACTIONS(2080), + [aux_sym_cmd_identifier_token21] = ACTIONS(2080), + [aux_sym_cmd_identifier_token22] = ACTIONS(2080), + [aux_sym_cmd_identifier_token23] = ACTIONS(2080), + [aux_sym_cmd_identifier_token24] = ACTIONS(2080), + [aux_sym_cmd_identifier_token25] = ACTIONS(2080), + [aux_sym_cmd_identifier_token26] = ACTIONS(2080), + [aux_sym_cmd_identifier_token27] = ACTIONS(2080), + [aux_sym_cmd_identifier_token28] = ACTIONS(2080), + [aux_sym_cmd_identifier_token29] = ACTIONS(2080), + [aux_sym_cmd_identifier_token30] = ACTIONS(2080), + [aux_sym_cmd_identifier_token31] = ACTIONS(2080), + [aux_sym_cmd_identifier_token32] = ACTIONS(2080), + [aux_sym_cmd_identifier_token33] = ACTIONS(2080), + [aux_sym_cmd_identifier_token34] = ACTIONS(2078), + [aux_sym_cmd_identifier_token35] = ACTIONS(2080), + [aux_sym_cmd_identifier_token36] = ACTIONS(2080), + [aux_sym_cmd_identifier_token37] = ACTIONS(2080), + [aux_sym_cmd_identifier_token38] = ACTIONS(2078), + [aux_sym_cmd_identifier_token39] = ACTIONS(2080), + [aux_sym_cmd_identifier_token40] = ACTIONS(2080), + [anon_sym_def] = ACTIONS(2078), + [anon_sym_export_DASHenv] = ACTIONS(2078), + [anon_sym_extern] = ACTIONS(2078), + [anon_sym_module] = ACTIONS(2078), + [anon_sym_use] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_DOLLAR] = ACTIONS(2080), + [anon_sym_error] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2078), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2078), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_in2] = ACTIONS(2078), + [anon_sym_loop] = ACTIONS(2078), + [anon_sym_make] = ACTIONS(2078), + [anon_sym_while] = ACTIONS(2078), + [anon_sym_do] = ACTIONS(2078), + [anon_sym_if] = ACTIONS(2078), + [anon_sym_else] = ACTIONS(2078), + [anon_sym_match] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2078), + [anon_sym_catch] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2078), + [anon_sym_source] = ACTIONS(2078), + [anon_sym_source_DASHenv] = ACTIONS(2078), + [anon_sym_register] = ACTIONS(2078), + [anon_sym_hide] = ACTIONS(2078), + [anon_sym_hide_DASHenv] = ACTIONS(2078), + [anon_sym_overlay] = ACTIONS(2078), + [anon_sym_as] = ACTIONS(2078), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2080), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2080), + [aux_sym__val_number_decimal_token1] = ACTIONS(2078), + [aux_sym__val_number_decimal_token2] = ACTIONS(2080), + [aux_sym__val_number_decimal_token3] = ACTIONS(2080), + [aux_sym__val_number_decimal_token4] = ACTIONS(2080), + [aux_sym__val_number_token1] = ACTIONS(2080), + [aux_sym__val_number_token2] = ACTIONS(2080), + [aux_sym__val_number_token3] = ACTIONS(2080), + [aux_sym__val_number_token4] = ACTIONS(2078), + [aux_sym__val_number_token5] = ACTIONS(2078), + [aux_sym__val_number_token6] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2080), + [sym__str_single_quotes] = ACTIONS(2080), + [sym__str_back_ticks] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2080), }, - [428] = { - [sym_comment] = STATE(428), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [aux_sym__immediate_decimal_token2] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), + [497] = { + [sym_cell_path] = STATE(702), + [sym_path] = STATE(689), + [sym_comment] = STATE(497), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1976), + [anon_sym_alias] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_let_DASHenv] = ACTIONS(1976), + [anon_sym_mut] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [aux_sym_cmd_identifier_token1] = ACTIONS(1976), + [aux_sym_cmd_identifier_token2] = ACTIONS(1978), + [aux_sym_cmd_identifier_token3] = ACTIONS(1978), + [aux_sym_cmd_identifier_token4] = ACTIONS(1978), + [aux_sym_cmd_identifier_token5] = ACTIONS(1978), + [aux_sym_cmd_identifier_token6] = ACTIONS(1978), + [aux_sym_cmd_identifier_token7] = ACTIONS(1978), + [aux_sym_cmd_identifier_token8] = ACTIONS(1976), + [aux_sym_cmd_identifier_token9] = ACTIONS(1976), + [aux_sym_cmd_identifier_token10] = ACTIONS(1978), + [aux_sym_cmd_identifier_token11] = ACTIONS(1978), + [aux_sym_cmd_identifier_token12] = ACTIONS(1976), + [aux_sym_cmd_identifier_token13] = ACTIONS(1976), + [aux_sym_cmd_identifier_token14] = ACTIONS(1976), + [aux_sym_cmd_identifier_token15] = ACTIONS(1976), + [aux_sym_cmd_identifier_token16] = ACTIONS(1978), + [aux_sym_cmd_identifier_token17] = ACTIONS(1978), + [aux_sym_cmd_identifier_token18] = ACTIONS(1978), + [aux_sym_cmd_identifier_token19] = ACTIONS(1978), + [aux_sym_cmd_identifier_token20] = ACTIONS(1978), + [aux_sym_cmd_identifier_token21] = ACTIONS(1978), + [aux_sym_cmd_identifier_token22] = ACTIONS(1978), + [aux_sym_cmd_identifier_token23] = ACTIONS(1978), + [aux_sym_cmd_identifier_token24] = ACTIONS(1978), + [aux_sym_cmd_identifier_token25] = ACTIONS(1978), + [aux_sym_cmd_identifier_token26] = ACTIONS(1978), + [aux_sym_cmd_identifier_token27] = ACTIONS(1978), + [aux_sym_cmd_identifier_token28] = ACTIONS(1978), + [aux_sym_cmd_identifier_token29] = ACTIONS(1978), + [aux_sym_cmd_identifier_token30] = ACTIONS(1978), + [aux_sym_cmd_identifier_token31] = ACTIONS(1978), + [aux_sym_cmd_identifier_token32] = ACTIONS(1978), + [aux_sym_cmd_identifier_token33] = ACTIONS(1978), + [aux_sym_cmd_identifier_token34] = ACTIONS(1976), + [aux_sym_cmd_identifier_token35] = ACTIONS(1978), + [aux_sym_cmd_identifier_token36] = ACTIONS(1978), + [aux_sym_cmd_identifier_token37] = ACTIONS(1978), + [aux_sym_cmd_identifier_token38] = ACTIONS(1976), + [aux_sym_cmd_identifier_token39] = ACTIONS(1978), + [aux_sym_cmd_identifier_token40] = ACTIONS(1978), + [anon_sym_def] = ACTIONS(1976), + [anon_sym_export_DASHenv] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym_module] = ACTIONS(1976), + [anon_sym_use] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_error] = ACTIONS(1976), + [anon_sym_DASH2] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_in2] = ACTIONS(1976), + [anon_sym_loop] = ACTIONS(1976), + [anon_sym_make] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_else] = ACTIONS(1976), + [anon_sym_match] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_try] = ACTIONS(1976), + [anon_sym_catch] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_source] = ACTIONS(1976), + [anon_sym_source_DASHenv] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_hide] = ACTIONS(1976), + [anon_sym_hide_DASHenv] = ACTIONS(1976), + [anon_sym_overlay] = ACTIONS(1976), + [anon_sym_as] = ACTIONS(1976), + [anon_sym_PLUS2] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1978), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1978), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1978), + [aux_sym__val_number_decimal_token4] = ACTIONS(1978), + [aux_sym__val_number_token1] = ACTIONS(1978), + [aux_sym__val_number_token2] = ACTIONS(1978), + [aux_sym__val_number_token3] = ACTIONS(1978), + [aux_sym__val_number_token4] = ACTIONS(1976), + [aux_sym__val_number_token5] = ACTIONS(1976), + [aux_sym__val_number_token6] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym__str_single_quotes] = ACTIONS(1978), + [sym__str_back_ticks] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1978), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1978), + }, + [498] = { + [sym_comment] = STATE(498), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(996), + [aux_sym_cmd_identifier_token3] = ACTIONS(996), + [aux_sym_cmd_identifier_token4] = ACTIONS(996), + [aux_sym_cmd_identifier_token5] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(996), + [aux_sym_cmd_identifier_token7] = ACTIONS(996), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(996), + [aux_sym_cmd_identifier_token11] = ACTIONS(996), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(996), + [aux_sym_cmd_identifier_token17] = ACTIONS(996), + [aux_sym_cmd_identifier_token18] = ACTIONS(996), + [aux_sym_cmd_identifier_token19] = ACTIONS(996), + [aux_sym_cmd_identifier_token20] = ACTIONS(996), + [aux_sym_cmd_identifier_token21] = ACTIONS(996), + [aux_sym_cmd_identifier_token22] = ACTIONS(996), + [aux_sym_cmd_identifier_token23] = ACTIONS(996), + [aux_sym_cmd_identifier_token24] = ACTIONS(996), + [aux_sym_cmd_identifier_token25] = ACTIONS(996), + [aux_sym_cmd_identifier_token26] = ACTIONS(996), + [aux_sym_cmd_identifier_token27] = ACTIONS(996), + [aux_sym_cmd_identifier_token28] = ACTIONS(996), + [aux_sym_cmd_identifier_token29] = ACTIONS(996), + [aux_sym_cmd_identifier_token30] = ACTIONS(996), + [aux_sym_cmd_identifier_token31] = ACTIONS(996), + [aux_sym_cmd_identifier_token32] = ACTIONS(996), + [aux_sym_cmd_identifier_token33] = ACTIONS(996), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(996), + [aux_sym_cmd_identifier_token36] = ACTIONS(996), + [aux_sym_cmd_identifier_token37] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(994), + [aux_sym__val_number_token5] = ACTIONS(994), + [aux_sym__val_number_token6] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [aux_sym_record_entry_token1] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), + }, + [499] = { + [sym_cell_path] = STATE(745), + [sym_path] = STATE(689), + [sym_comment] = STATE(499), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2086), + [anon_sym_alias] = ACTIONS(2086), + [anon_sym_let] = ACTIONS(2086), + [anon_sym_let_DASHenv] = ACTIONS(2086), + [anon_sym_mut] = ACTIONS(2086), + [anon_sym_const] = ACTIONS(2086), + [aux_sym_cmd_identifier_token1] = ACTIONS(2086), + [aux_sym_cmd_identifier_token2] = ACTIONS(2088), + [aux_sym_cmd_identifier_token3] = ACTIONS(2088), + [aux_sym_cmd_identifier_token4] = ACTIONS(2088), + [aux_sym_cmd_identifier_token5] = ACTIONS(2088), + [aux_sym_cmd_identifier_token6] = ACTIONS(2088), + [aux_sym_cmd_identifier_token7] = ACTIONS(2088), + [aux_sym_cmd_identifier_token8] = ACTIONS(2086), + [aux_sym_cmd_identifier_token9] = ACTIONS(2086), + [aux_sym_cmd_identifier_token10] = ACTIONS(2088), + [aux_sym_cmd_identifier_token11] = ACTIONS(2088), + [aux_sym_cmd_identifier_token12] = ACTIONS(2086), + [aux_sym_cmd_identifier_token13] = ACTIONS(2086), + [aux_sym_cmd_identifier_token14] = ACTIONS(2086), + [aux_sym_cmd_identifier_token15] = ACTIONS(2086), + [aux_sym_cmd_identifier_token16] = ACTIONS(2088), + [aux_sym_cmd_identifier_token17] = ACTIONS(2088), + [aux_sym_cmd_identifier_token18] = ACTIONS(2088), + [aux_sym_cmd_identifier_token19] = ACTIONS(2088), + [aux_sym_cmd_identifier_token20] = ACTIONS(2088), + [aux_sym_cmd_identifier_token21] = ACTIONS(2088), + [aux_sym_cmd_identifier_token22] = ACTIONS(2088), + [aux_sym_cmd_identifier_token23] = ACTIONS(2088), + [aux_sym_cmd_identifier_token24] = ACTIONS(2088), + [aux_sym_cmd_identifier_token25] = ACTIONS(2088), + [aux_sym_cmd_identifier_token26] = ACTIONS(2088), + [aux_sym_cmd_identifier_token27] = ACTIONS(2088), + [aux_sym_cmd_identifier_token28] = ACTIONS(2088), + [aux_sym_cmd_identifier_token29] = ACTIONS(2088), + [aux_sym_cmd_identifier_token30] = ACTIONS(2088), + [aux_sym_cmd_identifier_token31] = ACTIONS(2088), + [aux_sym_cmd_identifier_token32] = ACTIONS(2088), + [aux_sym_cmd_identifier_token33] = ACTIONS(2088), + [aux_sym_cmd_identifier_token34] = ACTIONS(2086), + [aux_sym_cmd_identifier_token35] = ACTIONS(2088), + [aux_sym_cmd_identifier_token36] = ACTIONS(2088), + [aux_sym_cmd_identifier_token37] = ACTIONS(2088), + [aux_sym_cmd_identifier_token38] = ACTIONS(2086), + [aux_sym_cmd_identifier_token39] = ACTIONS(2088), + [aux_sym_cmd_identifier_token40] = ACTIONS(2088), + [anon_sym_def] = ACTIONS(2086), + [anon_sym_export_DASHenv] = ACTIONS(2086), + [anon_sym_extern] = ACTIONS(2086), + [anon_sym_module] = ACTIONS(2086), + [anon_sym_use] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_DOLLAR] = ACTIONS(2088), + [anon_sym_error] = ACTIONS(2086), + [anon_sym_DASH2] = ACTIONS(2086), + [anon_sym_break] = ACTIONS(2086), + [anon_sym_continue] = ACTIONS(2086), + [anon_sym_for] = ACTIONS(2086), + [anon_sym_in2] = ACTIONS(2086), + [anon_sym_loop] = ACTIONS(2086), + [anon_sym_make] = ACTIONS(2086), + [anon_sym_while] = ACTIONS(2086), + [anon_sym_do] = ACTIONS(2086), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_else] = ACTIONS(2086), + [anon_sym_match] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_try] = ACTIONS(2086), + [anon_sym_catch] = ACTIONS(2086), + [anon_sym_return] = ACTIONS(2086), + [anon_sym_source] = ACTIONS(2086), + [anon_sym_source_DASHenv] = ACTIONS(2086), + [anon_sym_register] = ACTIONS(2086), + [anon_sym_hide] = ACTIONS(2086), + [anon_sym_hide_DASHenv] = ACTIONS(2086), + [anon_sym_overlay] = ACTIONS(2086), + [anon_sym_as] = ACTIONS(2086), + [anon_sym_PLUS2] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2088), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2088), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2088), + [aux_sym__val_number_decimal_token4] = ACTIONS(2088), + [aux_sym__val_number_token1] = ACTIONS(2088), + [aux_sym__val_number_token2] = ACTIONS(2088), + [aux_sym__val_number_token3] = ACTIONS(2088), + [aux_sym__val_number_token4] = ACTIONS(2086), + [aux_sym__val_number_token5] = ACTIONS(2086), + [aux_sym__val_number_token6] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym__str_single_quotes] = ACTIONS(2088), + [sym__str_back_ticks] = ACTIONS(2088), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2088), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2088), + }, + [500] = { + [sym_cell_path] = STATE(750), + [sym_path] = STATE(689), + [sym_comment] = STATE(500), + [aux_sym_cell_path_repeat1] = STATE(522), + [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(1915), + [aux_sym_cmd_identifier_token3] = ACTIONS(1915), + [aux_sym_cmd_identifier_token4] = ACTIONS(1915), + [aux_sym_cmd_identifier_token5] = ACTIONS(1915), + [aux_sym_cmd_identifier_token6] = ACTIONS(1915), + [aux_sym_cmd_identifier_token7] = ACTIONS(1915), + [aux_sym_cmd_identifier_token8] = ACTIONS(1913), + [aux_sym_cmd_identifier_token9] = ACTIONS(1913), + [aux_sym_cmd_identifier_token10] = ACTIONS(1915), + [aux_sym_cmd_identifier_token11] = ACTIONS(1915), + [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(1915), + [aux_sym_cmd_identifier_token17] = ACTIONS(1915), + [aux_sym_cmd_identifier_token18] = ACTIONS(1915), + [aux_sym_cmd_identifier_token19] = ACTIONS(1915), + [aux_sym_cmd_identifier_token20] = ACTIONS(1915), + [aux_sym_cmd_identifier_token21] = ACTIONS(1915), + [aux_sym_cmd_identifier_token22] = ACTIONS(1915), + [aux_sym_cmd_identifier_token23] = ACTIONS(1915), + [aux_sym_cmd_identifier_token24] = ACTIONS(1915), + [aux_sym_cmd_identifier_token25] = ACTIONS(1915), + [aux_sym_cmd_identifier_token26] = ACTIONS(1915), + [aux_sym_cmd_identifier_token27] = ACTIONS(1915), + [aux_sym_cmd_identifier_token28] = ACTIONS(1915), + [aux_sym_cmd_identifier_token29] = ACTIONS(1915), + [aux_sym_cmd_identifier_token30] = ACTIONS(1915), + [aux_sym_cmd_identifier_token31] = ACTIONS(1915), + [aux_sym_cmd_identifier_token32] = ACTIONS(1915), + [aux_sym_cmd_identifier_token33] = ACTIONS(1915), + [aux_sym_cmd_identifier_token34] = ACTIONS(1913), + [aux_sym_cmd_identifier_token35] = ACTIONS(1915), + [aux_sym_cmd_identifier_token36] = ACTIONS(1915), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_in2] = 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_as] = ACTIONS(1913), + [anon_sym_PLUS2] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(2110), + [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), + [aux_sym__val_number_token4] = ACTIONS(1913), + [aux_sym__val_number_token5] = ACTIONS(1913), + [aux_sym__val_number_token6] = ACTIONS(1913), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1915), + }, + [501] = { + [sym_comment] = STATE(501), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_alias] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_let_DASHenv] = ACTIONS(2151), + [anon_sym_mut] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [aux_sym_cmd_identifier_token1] = ACTIONS(2151), + [aux_sym_cmd_identifier_token2] = ACTIONS(2151), + [aux_sym_cmd_identifier_token3] = ACTIONS(2151), + [aux_sym_cmd_identifier_token4] = ACTIONS(2151), + [aux_sym_cmd_identifier_token5] = ACTIONS(2151), + [aux_sym_cmd_identifier_token6] = ACTIONS(2151), + [aux_sym_cmd_identifier_token7] = ACTIONS(2151), + [aux_sym_cmd_identifier_token8] = ACTIONS(2151), + [aux_sym_cmd_identifier_token9] = ACTIONS(2151), + [aux_sym_cmd_identifier_token10] = ACTIONS(2151), + [aux_sym_cmd_identifier_token11] = ACTIONS(2151), + [aux_sym_cmd_identifier_token12] = ACTIONS(2151), + [aux_sym_cmd_identifier_token13] = ACTIONS(2151), + [aux_sym_cmd_identifier_token14] = ACTIONS(2151), + [aux_sym_cmd_identifier_token15] = ACTIONS(2151), + [aux_sym_cmd_identifier_token16] = ACTIONS(2151), + [aux_sym_cmd_identifier_token17] = ACTIONS(2151), + [aux_sym_cmd_identifier_token18] = ACTIONS(2151), + [aux_sym_cmd_identifier_token19] = ACTIONS(2151), + [aux_sym_cmd_identifier_token20] = ACTIONS(2151), + [aux_sym_cmd_identifier_token21] = ACTIONS(2151), + [aux_sym_cmd_identifier_token22] = ACTIONS(2151), + [aux_sym_cmd_identifier_token23] = ACTIONS(2151), + [aux_sym_cmd_identifier_token24] = ACTIONS(2151), + [aux_sym_cmd_identifier_token25] = ACTIONS(2151), + [aux_sym_cmd_identifier_token26] = ACTIONS(2151), + [aux_sym_cmd_identifier_token27] = ACTIONS(2151), + [aux_sym_cmd_identifier_token28] = ACTIONS(2151), + [aux_sym_cmd_identifier_token29] = ACTIONS(2151), + [aux_sym_cmd_identifier_token30] = ACTIONS(2151), + [aux_sym_cmd_identifier_token31] = ACTIONS(2151), + [aux_sym_cmd_identifier_token32] = ACTIONS(2151), + [aux_sym_cmd_identifier_token33] = ACTIONS(2151), + [aux_sym_cmd_identifier_token34] = ACTIONS(2151), + [aux_sym_cmd_identifier_token35] = ACTIONS(2151), + [aux_sym_cmd_identifier_token36] = ACTIONS(2151), + [aux_sym_cmd_identifier_token37] = ACTIONS(2151), + [aux_sym_cmd_identifier_token38] = ACTIONS(2151), + [aux_sym_cmd_identifier_token39] = ACTIONS(2151), + [aux_sym_cmd_identifier_token40] = ACTIONS(2151), + [anon_sym_def] = ACTIONS(2151), + [anon_sym_export_DASHenv] = ACTIONS(2151), + [anon_sym_extern] = ACTIONS(2151), + [anon_sym_module] = ACTIONS(2151), + [anon_sym_use] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_error] = ACTIONS(2151), + [anon_sym_DASH2] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_in2] = ACTIONS(2151), + [anon_sym_loop] = ACTIONS(2151), + [anon_sym_make] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_catch] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_source] = ACTIONS(2151), + [anon_sym_source_DASHenv] = ACTIONS(2151), + [anon_sym_register] = ACTIONS(2151), + [anon_sym_hide] = ACTIONS(2151), + [anon_sym_hide_DASHenv] = ACTIONS(2151), + [anon_sym_overlay] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_PLUS2] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2151), + [anon_sym_DOT_DOT2] = ACTIONS(2112), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2114), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2114), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2151), + [aux_sym__val_number_decimal_token1] = ACTIONS(2151), + [aux_sym__val_number_decimal_token2] = ACTIONS(2151), + [aux_sym__val_number_decimal_token3] = ACTIONS(2151), + [aux_sym__val_number_decimal_token4] = ACTIONS(2151), + [aux_sym__val_number_token1] = ACTIONS(2151), + [aux_sym__val_number_token2] = ACTIONS(2151), + [aux_sym__val_number_token3] = ACTIONS(2151), + [aux_sym__val_number_token4] = ACTIONS(2151), + [aux_sym__val_number_token5] = ACTIONS(2151), + [aux_sym__val_number_token6] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [sym__str_single_quotes] = ACTIONS(2151), + [sym__str_back_ticks] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2151), + [sym__entry_separator] = ACTIONS(2153), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), + [sym_raw_string_begin] = ACTIONS(2153), }, - [429] = { - [sym_comment] = STATE(429), - [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_QMARK2] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1058), - [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(249), - [sym_raw_string_begin] = ACTIONS(1060), + [502] = { + [sym_comment] = STATE(502), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(1000), + [aux_sym_cmd_identifier_token3] = ACTIONS(1000), + [aux_sym_cmd_identifier_token4] = ACTIONS(1000), + [aux_sym_cmd_identifier_token5] = ACTIONS(1000), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [aux_sym_cmd_identifier_token7] = ACTIONS(1000), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(1000), + [aux_sym_cmd_identifier_token11] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(1000), + [aux_sym_cmd_identifier_token17] = ACTIONS(1000), + [aux_sym_cmd_identifier_token18] = ACTIONS(1000), + [aux_sym_cmd_identifier_token19] = ACTIONS(1000), + [aux_sym_cmd_identifier_token20] = ACTIONS(1000), + [aux_sym_cmd_identifier_token21] = ACTIONS(1000), + [aux_sym_cmd_identifier_token22] = ACTIONS(1000), + [aux_sym_cmd_identifier_token23] = ACTIONS(1000), + [aux_sym_cmd_identifier_token24] = ACTIONS(1000), + [aux_sym_cmd_identifier_token25] = ACTIONS(1000), + [aux_sym_cmd_identifier_token26] = ACTIONS(1000), + [aux_sym_cmd_identifier_token27] = ACTIONS(1000), + [aux_sym_cmd_identifier_token28] = ACTIONS(1000), + [aux_sym_cmd_identifier_token29] = ACTIONS(1000), + [aux_sym_cmd_identifier_token30] = ACTIONS(1000), + [aux_sym_cmd_identifier_token31] = ACTIONS(1000), + [aux_sym_cmd_identifier_token32] = ACTIONS(1000), + [aux_sym_cmd_identifier_token33] = ACTIONS(1000), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(1000), + [aux_sym_cmd_identifier_token36] = ACTIONS(1000), + [aux_sym_cmd_identifier_token37] = ACTIONS(1000), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(1000), + [aux_sym_cmd_identifier_token40] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_error] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [aux_sym_record_entry_token1] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1000), }, - [430] = { - [sym_comment] = STATE(430), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_alias] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_let_DASHenv] = ACTIONS(2196), - [anon_sym_mut] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [aux_sym_cmd_identifier_token1] = ACTIONS(2196), - [aux_sym_cmd_identifier_token2] = ACTIONS(2196), - [aux_sym_cmd_identifier_token3] = ACTIONS(2196), - [aux_sym_cmd_identifier_token4] = ACTIONS(2196), - [aux_sym_cmd_identifier_token5] = ACTIONS(2196), - [aux_sym_cmd_identifier_token6] = ACTIONS(2196), - [aux_sym_cmd_identifier_token7] = ACTIONS(2196), - [aux_sym_cmd_identifier_token8] = ACTIONS(2196), - [aux_sym_cmd_identifier_token9] = ACTIONS(2196), - [aux_sym_cmd_identifier_token10] = ACTIONS(2196), - [aux_sym_cmd_identifier_token11] = ACTIONS(2196), - [aux_sym_cmd_identifier_token12] = ACTIONS(2196), - [aux_sym_cmd_identifier_token13] = ACTIONS(2196), - [aux_sym_cmd_identifier_token14] = ACTIONS(2196), - [aux_sym_cmd_identifier_token15] = ACTIONS(2196), - [aux_sym_cmd_identifier_token16] = ACTIONS(2196), - [aux_sym_cmd_identifier_token17] = ACTIONS(2196), - [aux_sym_cmd_identifier_token18] = ACTIONS(2196), - [aux_sym_cmd_identifier_token19] = ACTIONS(2196), - [aux_sym_cmd_identifier_token20] = ACTIONS(2196), - [aux_sym_cmd_identifier_token21] = ACTIONS(2196), - [aux_sym_cmd_identifier_token22] = ACTIONS(2196), - [aux_sym_cmd_identifier_token23] = ACTIONS(2196), - [aux_sym_cmd_identifier_token24] = ACTIONS(2196), - [aux_sym_cmd_identifier_token25] = ACTIONS(2196), - [aux_sym_cmd_identifier_token26] = ACTIONS(2196), - [aux_sym_cmd_identifier_token27] = ACTIONS(2196), - [aux_sym_cmd_identifier_token28] = ACTIONS(2196), - [aux_sym_cmd_identifier_token29] = ACTIONS(2196), - [aux_sym_cmd_identifier_token30] = ACTIONS(2196), - [aux_sym_cmd_identifier_token31] = ACTIONS(2196), - [aux_sym_cmd_identifier_token32] = ACTIONS(2196), - [aux_sym_cmd_identifier_token33] = ACTIONS(2196), - [aux_sym_cmd_identifier_token34] = ACTIONS(2196), - [aux_sym_cmd_identifier_token35] = ACTIONS(2196), - [aux_sym_cmd_identifier_token36] = ACTIONS(2196), - [anon_sym_true] = ACTIONS(2196), - [anon_sym_false] = ACTIONS(2196), - [anon_sym_null] = ACTIONS(2196), - [aux_sym_cmd_identifier_token38] = ACTIONS(2196), - [aux_sym_cmd_identifier_token39] = ACTIONS(2196), - [aux_sym_cmd_identifier_token40] = ACTIONS(2196), - [anon_sym_def] = ACTIONS(2196), - [anon_sym_export_DASHenv] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_error] = ACTIONS(2196), - [anon_sym_list] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_make] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_catch] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_source] = ACTIONS(2196), - [anon_sym_source_DASHenv] = ACTIONS(2196), - [anon_sym_register] = ACTIONS(2196), - [anon_sym_hide] = ACTIONS(2196), - [anon_sym_hide_DASHenv] = ACTIONS(2196), - [anon_sym_overlay] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2196), - [anon_sym_DOT_DOT2] = ACTIONS(2109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2111), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2196), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2196), - [aux_sym__val_number_decimal_token3] = ACTIONS(2196), - [aux_sym__val_number_decimal_token4] = ACTIONS(2196), - [aux_sym__val_number_token1] = ACTIONS(2196), - [aux_sym__val_number_token2] = ACTIONS(2196), - [aux_sym__val_number_token3] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [sym__str_single_quotes] = ACTIONS(2196), - [sym__str_back_ticks] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2196), - [sym__entry_separator] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2196), + [503] = { + [sym_comment] = STATE(503), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1004), + [aux_sym_cmd_identifier_token3] = ACTIONS(1004), + [aux_sym_cmd_identifier_token4] = ACTIONS(1004), + [aux_sym_cmd_identifier_token5] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1004), + [aux_sym_cmd_identifier_token7] = ACTIONS(1004), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1004), + [aux_sym_cmd_identifier_token11] = ACTIONS(1004), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1004), + [aux_sym_cmd_identifier_token17] = ACTIONS(1004), + [aux_sym_cmd_identifier_token18] = ACTIONS(1004), + [aux_sym_cmd_identifier_token19] = ACTIONS(1004), + [aux_sym_cmd_identifier_token20] = ACTIONS(1004), + [aux_sym_cmd_identifier_token21] = ACTIONS(1004), + [aux_sym_cmd_identifier_token22] = ACTIONS(1004), + [aux_sym_cmd_identifier_token23] = ACTIONS(1004), + [aux_sym_cmd_identifier_token24] = ACTIONS(1004), + [aux_sym_cmd_identifier_token25] = ACTIONS(1004), + [aux_sym_cmd_identifier_token26] = ACTIONS(1004), + [aux_sym_cmd_identifier_token27] = ACTIONS(1004), + [aux_sym_cmd_identifier_token28] = ACTIONS(1004), + [aux_sym_cmd_identifier_token29] = ACTIONS(1004), + [aux_sym_cmd_identifier_token30] = ACTIONS(1004), + [aux_sym_cmd_identifier_token31] = ACTIONS(1004), + [aux_sym_cmd_identifier_token32] = ACTIONS(1004), + [aux_sym_cmd_identifier_token33] = ACTIONS(1004), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1004), + [aux_sym_cmd_identifier_token36] = ACTIONS(1004), + [aux_sym_cmd_identifier_token37] = ACTIONS(1004), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [aux_sym_record_entry_token1] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1004), + }, + [504] = { + [sym_comment] = STATE(504), + [anon_sym_export] = ACTIONS(2155), + [anon_sym_alias] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_let_DASHenv] = ACTIONS(2155), + [anon_sym_mut] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [aux_sym_cmd_identifier_token1] = ACTIONS(2155), + [aux_sym_cmd_identifier_token2] = ACTIONS(2155), + [aux_sym_cmd_identifier_token3] = ACTIONS(2155), + [aux_sym_cmd_identifier_token4] = ACTIONS(2155), + [aux_sym_cmd_identifier_token5] = ACTIONS(2155), + [aux_sym_cmd_identifier_token6] = ACTIONS(2155), + [aux_sym_cmd_identifier_token7] = ACTIONS(2155), + [aux_sym_cmd_identifier_token8] = ACTIONS(2155), + [aux_sym_cmd_identifier_token9] = ACTIONS(2155), + [aux_sym_cmd_identifier_token10] = ACTIONS(2155), + [aux_sym_cmd_identifier_token11] = ACTIONS(2155), + [aux_sym_cmd_identifier_token12] = ACTIONS(2155), + [aux_sym_cmd_identifier_token13] = ACTIONS(2155), + [aux_sym_cmd_identifier_token14] = ACTIONS(2155), + [aux_sym_cmd_identifier_token15] = ACTIONS(2155), + [aux_sym_cmd_identifier_token16] = ACTIONS(2155), + [aux_sym_cmd_identifier_token17] = ACTIONS(2155), + [aux_sym_cmd_identifier_token18] = ACTIONS(2155), + [aux_sym_cmd_identifier_token19] = ACTIONS(2155), + [aux_sym_cmd_identifier_token20] = ACTIONS(2155), + [aux_sym_cmd_identifier_token21] = ACTIONS(2155), + [aux_sym_cmd_identifier_token22] = ACTIONS(2155), + [aux_sym_cmd_identifier_token23] = ACTIONS(2155), + [aux_sym_cmd_identifier_token24] = ACTIONS(2155), + [aux_sym_cmd_identifier_token25] = ACTIONS(2155), + [aux_sym_cmd_identifier_token26] = ACTIONS(2155), + [aux_sym_cmd_identifier_token27] = ACTIONS(2155), + [aux_sym_cmd_identifier_token28] = ACTIONS(2155), + [aux_sym_cmd_identifier_token29] = ACTIONS(2155), + [aux_sym_cmd_identifier_token30] = ACTIONS(2155), + [aux_sym_cmd_identifier_token31] = ACTIONS(2155), + [aux_sym_cmd_identifier_token32] = ACTIONS(2155), + [aux_sym_cmd_identifier_token33] = ACTIONS(2155), + [aux_sym_cmd_identifier_token34] = ACTIONS(2155), + [aux_sym_cmd_identifier_token35] = ACTIONS(2155), + [aux_sym_cmd_identifier_token36] = ACTIONS(2155), + [aux_sym_cmd_identifier_token37] = ACTIONS(2155), + [aux_sym_cmd_identifier_token38] = ACTIONS(2155), + [aux_sym_cmd_identifier_token39] = ACTIONS(2155), + [aux_sym_cmd_identifier_token40] = ACTIONS(2155), + [anon_sym_def] = ACTIONS(2155), + [anon_sym_export_DASHenv] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_module] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(2155), + [anon_sym_DASH2] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_in2] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_make] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_do] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_else] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_try] = ACTIONS(2155), + [anon_sym_catch] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_source] = ACTIONS(2155), + [anon_sym_source_DASHenv] = ACTIONS(2155), + [anon_sym_register] = ACTIONS(2155), + [anon_sym_hide] = ACTIONS(2155), + [anon_sym_hide_DASHenv] = ACTIONS(2155), + [anon_sym_overlay] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_PLUS2] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2155), + [anon_sym_DOT_DOT2] = ACTIONS(2112), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2114), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2114), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2155), + [aux_sym__val_number_decimal_token1] = ACTIONS(2155), + [aux_sym__val_number_decimal_token2] = ACTIONS(2155), + [aux_sym__val_number_decimal_token3] = ACTIONS(2155), + [aux_sym__val_number_decimal_token4] = ACTIONS(2155), + [aux_sym__val_number_token1] = ACTIONS(2155), + [aux_sym__val_number_token2] = ACTIONS(2155), + [aux_sym__val_number_token3] = ACTIONS(2155), + [aux_sym__val_number_token4] = ACTIONS(2155), + [aux_sym__val_number_token5] = ACTIONS(2155), + [aux_sym__val_number_token6] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(2155), + [sym__str_single_quotes] = ACTIONS(2155), + [sym__str_back_ticks] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2155), + [sym__entry_separator] = ACTIONS(2157), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2198), + [sym_raw_string_begin] = ACTIONS(2157), }, - [431] = { - [sym_comment] = STATE(431), - [anon_sym_export] = ACTIONS(1066), - [anon_sym_alias] = ACTIONS(1066), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_let_DASHenv] = ACTIONS(1066), - [anon_sym_mut] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [aux_sym_cmd_identifier_token1] = ACTIONS(1066), - [aux_sym_cmd_identifier_token2] = ACTIONS(1066), - [aux_sym_cmd_identifier_token3] = ACTIONS(1066), - [aux_sym_cmd_identifier_token4] = ACTIONS(1066), - [aux_sym_cmd_identifier_token5] = ACTIONS(1066), - [aux_sym_cmd_identifier_token6] = ACTIONS(1066), - [aux_sym_cmd_identifier_token7] = ACTIONS(1066), - [aux_sym_cmd_identifier_token8] = ACTIONS(1066), - [aux_sym_cmd_identifier_token9] = ACTIONS(1066), - [aux_sym_cmd_identifier_token10] = ACTIONS(1066), - [aux_sym_cmd_identifier_token11] = ACTIONS(1066), - [aux_sym_cmd_identifier_token12] = ACTIONS(1066), - [aux_sym_cmd_identifier_token13] = ACTIONS(1066), - [aux_sym_cmd_identifier_token14] = ACTIONS(1066), - [aux_sym_cmd_identifier_token15] = ACTIONS(1066), - [aux_sym_cmd_identifier_token16] = ACTIONS(1066), - [aux_sym_cmd_identifier_token17] = ACTIONS(1066), - [aux_sym_cmd_identifier_token18] = ACTIONS(1066), - [aux_sym_cmd_identifier_token19] = ACTIONS(1066), - [aux_sym_cmd_identifier_token20] = ACTIONS(1066), - [aux_sym_cmd_identifier_token21] = ACTIONS(1066), - [aux_sym_cmd_identifier_token22] = ACTIONS(1066), - [aux_sym_cmd_identifier_token23] = ACTIONS(1066), - [aux_sym_cmd_identifier_token24] = ACTIONS(1066), - [aux_sym_cmd_identifier_token25] = ACTIONS(1066), - [aux_sym_cmd_identifier_token26] = ACTIONS(1066), - [aux_sym_cmd_identifier_token27] = ACTIONS(1066), - [aux_sym_cmd_identifier_token28] = ACTIONS(1066), - [aux_sym_cmd_identifier_token29] = ACTIONS(1066), - [aux_sym_cmd_identifier_token30] = ACTIONS(1066), - [aux_sym_cmd_identifier_token31] = ACTIONS(1066), - [aux_sym_cmd_identifier_token32] = ACTIONS(1066), - [aux_sym_cmd_identifier_token33] = ACTIONS(1066), - [aux_sym_cmd_identifier_token34] = ACTIONS(1066), - [aux_sym_cmd_identifier_token35] = ACTIONS(1066), - [aux_sym_cmd_identifier_token36] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), - [anon_sym_null] = ACTIONS(1068), - [aux_sym_cmd_identifier_token38] = ACTIONS(1066), - [aux_sym_cmd_identifier_token39] = ACTIONS(1068), - [aux_sym_cmd_identifier_token40] = ACTIONS(1068), - [anon_sym_def] = ACTIONS(1066), - [anon_sym_export_DASHenv] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym_module] = ACTIONS(1066), - [anon_sym_use] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_error] = ACTIONS(1066), - [anon_sym_list] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_in] = ACTIONS(1066), - [anon_sym_loop] = ACTIONS(1066), - [anon_sym_make] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_else] = ACTIONS(1066), - [anon_sym_match] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_try] = ACTIONS(1066), - [anon_sym_catch] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_source] = ACTIONS(1066), - [anon_sym_source_DASHenv] = ACTIONS(1066), - [anon_sym_register] = ACTIONS(1066), - [anon_sym_hide] = ACTIONS(1066), - [anon_sym_hide_DASHenv] = ACTIONS(1066), - [anon_sym_overlay] = ACTIONS(1066), - [anon_sym_new] = ACTIONS(1066), - [anon_sym_as] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1068), - [anon_sym_DOT_DOT2] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1068), - [aux_sym__val_number_decimal_token1] = ACTIONS(1066), - [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), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1068), + [505] = { + [sym_cell_path] = STATE(705), + [sym_path] = STATE(689), + [sym_comment] = STATE(505), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2094), + [anon_sym_alias] = ACTIONS(2094), + [anon_sym_let] = ACTIONS(2094), + [anon_sym_let_DASHenv] = ACTIONS(2094), + [anon_sym_mut] = ACTIONS(2094), + [anon_sym_const] = ACTIONS(2094), + [aux_sym_cmd_identifier_token1] = ACTIONS(2094), + [aux_sym_cmd_identifier_token2] = ACTIONS(2096), + [aux_sym_cmd_identifier_token3] = ACTIONS(2096), + [aux_sym_cmd_identifier_token4] = ACTIONS(2096), + [aux_sym_cmd_identifier_token5] = ACTIONS(2096), + [aux_sym_cmd_identifier_token6] = ACTIONS(2096), + [aux_sym_cmd_identifier_token7] = ACTIONS(2096), + [aux_sym_cmd_identifier_token8] = ACTIONS(2094), + [aux_sym_cmd_identifier_token9] = ACTIONS(2094), + [aux_sym_cmd_identifier_token10] = ACTIONS(2096), + [aux_sym_cmd_identifier_token11] = ACTIONS(2096), + [aux_sym_cmd_identifier_token12] = ACTIONS(2094), + [aux_sym_cmd_identifier_token13] = ACTIONS(2094), + [aux_sym_cmd_identifier_token14] = ACTIONS(2094), + [aux_sym_cmd_identifier_token15] = ACTIONS(2094), + [aux_sym_cmd_identifier_token16] = ACTIONS(2096), + [aux_sym_cmd_identifier_token17] = ACTIONS(2096), + [aux_sym_cmd_identifier_token18] = ACTIONS(2096), + [aux_sym_cmd_identifier_token19] = ACTIONS(2096), + [aux_sym_cmd_identifier_token20] = ACTIONS(2096), + [aux_sym_cmd_identifier_token21] = ACTIONS(2096), + [aux_sym_cmd_identifier_token22] = ACTIONS(2096), + [aux_sym_cmd_identifier_token23] = ACTIONS(2096), + [aux_sym_cmd_identifier_token24] = ACTIONS(2096), + [aux_sym_cmd_identifier_token25] = ACTIONS(2096), + [aux_sym_cmd_identifier_token26] = ACTIONS(2096), + [aux_sym_cmd_identifier_token27] = ACTIONS(2096), + [aux_sym_cmd_identifier_token28] = ACTIONS(2096), + [aux_sym_cmd_identifier_token29] = ACTIONS(2096), + [aux_sym_cmd_identifier_token30] = ACTIONS(2096), + [aux_sym_cmd_identifier_token31] = ACTIONS(2096), + [aux_sym_cmd_identifier_token32] = ACTIONS(2096), + [aux_sym_cmd_identifier_token33] = ACTIONS(2096), + [aux_sym_cmd_identifier_token34] = ACTIONS(2094), + [aux_sym_cmd_identifier_token35] = ACTIONS(2096), + [aux_sym_cmd_identifier_token36] = ACTIONS(2096), + [aux_sym_cmd_identifier_token37] = ACTIONS(2096), + [aux_sym_cmd_identifier_token38] = ACTIONS(2094), + [aux_sym_cmd_identifier_token39] = ACTIONS(2096), + [aux_sym_cmd_identifier_token40] = ACTIONS(2096), + [anon_sym_def] = ACTIONS(2094), + [anon_sym_export_DASHenv] = ACTIONS(2094), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_module] = ACTIONS(2094), + [anon_sym_use] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_DOLLAR] = ACTIONS(2096), + [anon_sym_error] = ACTIONS(2094), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_in2] = ACTIONS(2094), + [anon_sym_loop] = ACTIONS(2094), + [anon_sym_make] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_do] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_else] = ACTIONS(2094), + [anon_sym_match] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2094), + [anon_sym_catch] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_source] = ACTIONS(2094), + [anon_sym_source_DASHenv] = ACTIONS(2094), + [anon_sym_register] = ACTIONS(2094), + [anon_sym_hide] = ACTIONS(2094), + [anon_sym_hide_DASHenv] = ACTIONS(2094), + [anon_sym_overlay] = ACTIONS(2094), + [anon_sym_as] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2094), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2096), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2096), + [aux_sym__val_number_decimal_token1] = ACTIONS(2094), + [aux_sym__val_number_decimal_token2] = ACTIONS(2096), + [aux_sym__val_number_decimal_token3] = ACTIONS(2096), + [aux_sym__val_number_decimal_token4] = ACTIONS(2096), + [aux_sym__val_number_token1] = ACTIONS(2096), + [aux_sym__val_number_token2] = ACTIONS(2096), + [aux_sym__val_number_token3] = ACTIONS(2096), + [aux_sym__val_number_token4] = ACTIONS(2094), + [aux_sym__val_number_token5] = ACTIONS(2094), + [aux_sym__val_number_token6] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(2096), + [sym__str_single_quotes] = ACTIONS(2096), + [sym__str_back_ticks] = ACTIONS(2096), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2096), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2096), }, - [432] = { - [sym_comment] = STATE(432), - [anon_sym_export] = ACTIONS(1670), - [anon_sym_alias] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1670), - [anon_sym_let_DASHenv] = ACTIONS(1670), - [anon_sym_mut] = ACTIONS(1670), - [anon_sym_const] = ACTIONS(1670), - [aux_sym_cmd_identifier_token1] = ACTIONS(1670), - [aux_sym_cmd_identifier_token2] = ACTIONS(1670), - [aux_sym_cmd_identifier_token3] = ACTIONS(1670), - [aux_sym_cmd_identifier_token4] = ACTIONS(1670), - [aux_sym_cmd_identifier_token5] = ACTIONS(1670), - [aux_sym_cmd_identifier_token6] = ACTIONS(1670), - [aux_sym_cmd_identifier_token7] = ACTIONS(1670), - [aux_sym_cmd_identifier_token8] = ACTIONS(1670), - [aux_sym_cmd_identifier_token9] = ACTIONS(1670), - [aux_sym_cmd_identifier_token10] = ACTIONS(1670), - [aux_sym_cmd_identifier_token11] = ACTIONS(1670), - [aux_sym_cmd_identifier_token12] = ACTIONS(1670), - [aux_sym_cmd_identifier_token13] = ACTIONS(1670), - [aux_sym_cmd_identifier_token14] = ACTIONS(1670), - [aux_sym_cmd_identifier_token15] = ACTIONS(1670), - [aux_sym_cmd_identifier_token16] = ACTIONS(1670), - [aux_sym_cmd_identifier_token17] = ACTIONS(1670), - [aux_sym_cmd_identifier_token18] = ACTIONS(1670), - [aux_sym_cmd_identifier_token19] = ACTIONS(1670), - [aux_sym_cmd_identifier_token20] = ACTIONS(1670), - [aux_sym_cmd_identifier_token21] = ACTIONS(1670), - [aux_sym_cmd_identifier_token22] = ACTIONS(1670), - [aux_sym_cmd_identifier_token23] = ACTIONS(1670), - [aux_sym_cmd_identifier_token24] = ACTIONS(1670), - [aux_sym_cmd_identifier_token25] = ACTIONS(1670), - [aux_sym_cmd_identifier_token26] = ACTIONS(1670), - [aux_sym_cmd_identifier_token27] = ACTIONS(1670), - [aux_sym_cmd_identifier_token28] = ACTIONS(1670), - [aux_sym_cmd_identifier_token29] = ACTIONS(1670), - [aux_sym_cmd_identifier_token30] = ACTIONS(1670), - [aux_sym_cmd_identifier_token31] = ACTIONS(1670), - [aux_sym_cmd_identifier_token32] = ACTIONS(1670), - [aux_sym_cmd_identifier_token33] = ACTIONS(1670), - [aux_sym_cmd_identifier_token34] = ACTIONS(1670), - [aux_sym_cmd_identifier_token35] = ACTIONS(1670), - [aux_sym_cmd_identifier_token36] = ACTIONS(1670), - [anon_sym_true] = ACTIONS(1670), - [anon_sym_false] = ACTIONS(1670), - [anon_sym_null] = ACTIONS(1670), - [aux_sym_cmd_identifier_token38] = ACTIONS(1670), - [aux_sym_cmd_identifier_token39] = ACTIONS(1670), - [aux_sym_cmd_identifier_token40] = ACTIONS(1670), - [anon_sym_def] = ACTIONS(1670), - [anon_sym_export_DASHenv] = ACTIONS(1670), - [anon_sym_extern] = ACTIONS(1670), - [anon_sym_module] = ACTIONS(1670), - [anon_sym_use] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1670), - [anon_sym_error] = ACTIONS(1670), - [anon_sym_list] = ACTIONS(1670), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_in] = ACTIONS(1670), - [anon_sym_loop] = ACTIONS(1670), - [anon_sym_make] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_do] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_match] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_try] = ACTIONS(1670), - [anon_sym_catch] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_source] = ACTIONS(1670), - [anon_sym_source_DASHenv] = ACTIONS(1670), - [anon_sym_register] = ACTIONS(1670), - [anon_sym_hide] = ACTIONS(1670), - [anon_sym_hide_DASHenv] = ACTIONS(1670), - [anon_sym_overlay] = ACTIONS(1670), - [anon_sym_new] = ACTIONS(1670), - [anon_sym_as] = ACTIONS(1670), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1670), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1670), - [aux_sym__val_number_decimal_token1] = ACTIONS(1670), - [aux_sym__val_number_decimal_token2] = ACTIONS(1670), - [aux_sym__val_number_decimal_token3] = ACTIONS(1670), - [aux_sym__val_number_decimal_token4] = ACTIONS(1670), - [aux_sym__val_number_token1] = ACTIONS(1670), - [aux_sym__val_number_token2] = ACTIONS(1670), - [aux_sym__val_number_token3] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [sym__str_single_quotes] = ACTIONS(1670), - [sym__str_back_ticks] = ACTIONS(1670), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1670), - [sym__entry_separator] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1670), + [506] = { + [sym_cell_path] = STATE(764), + [sym_path] = STATE(689), + [sym_comment] = STATE(506), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2098), + [anon_sym_alias] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_let_DASHenv] = ACTIONS(2098), + [anon_sym_mut] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [aux_sym_cmd_identifier_token1] = ACTIONS(2098), + [aux_sym_cmd_identifier_token2] = ACTIONS(2100), + [aux_sym_cmd_identifier_token3] = ACTIONS(2100), + [aux_sym_cmd_identifier_token4] = ACTIONS(2100), + [aux_sym_cmd_identifier_token5] = ACTIONS(2100), + [aux_sym_cmd_identifier_token6] = ACTIONS(2100), + [aux_sym_cmd_identifier_token7] = ACTIONS(2100), + [aux_sym_cmd_identifier_token8] = ACTIONS(2098), + [aux_sym_cmd_identifier_token9] = ACTIONS(2098), + [aux_sym_cmd_identifier_token10] = ACTIONS(2100), + [aux_sym_cmd_identifier_token11] = ACTIONS(2100), + [aux_sym_cmd_identifier_token12] = ACTIONS(2098), + [aux_sym_cmd_identifier_token13] = ACTIONS(2098), + [aux_sym_cmd_identifier_token14] = ACTIONS(2098), + [aux_sym_cmd_identifier_token15] = ACTIONS(2098), + [aux_sym_cmd_identifier_token16] = ACTIONS(2100), + [aux_sym_cmd_identifier_token17] = ACTIONS(2100), + [aux_sym_cmd_identifier_token18] = ACTIONS(2100), + [aux_sym_cmd_identifier_token19] = ACTIONS(2100), + [aux_sym_cmd_identifier_token20] = ACTIONS(2100), + [aux_sym_cmd_identifier_token21] = ACTIONS(2100), + [aux_sym_cmd_identifier_token22] = ACTIONS(2100), + [aux_sym_cmd_identifier_token23] = ACTIONS(2100), + [aux_sym_cmd_identifier_token24] = ACTIONS(2100), + [aux_sym_cmd_identifier_token25] = ACTIONS(2100), + [aux_sym_cmd_identifier_token26] = ACTIONS(2100), + [aux_sym_cmd_identifier_token27] = ACTIONS(2100), + [aux_sym_cmd_identifier_token28] = ACTIONS(2100), + [aux_sym_cmd_identifier_token29] = ACTIONS(2100), + [aux_sym_cmd_identifier_token30] = ACTIONS(2100), + [aux_sym_cmd_identifier_token31] = ACTIONS(2100), + [aux_sym_cmd_identifier_token32] = ACTIONS(2100), + [aux_sym_cmd_identifier_token33] = ACTIONS(2100), + [aux_sym_cmd_identifier_token34] = ACTIONS(2098), + [aux_sym_cmd_identifier_token35] = ACTIONS(2100), + [aux_sym_cmd_identifier_token36] = ACTIONS(2100), + [aux_sym_cmd_identifier_token37] = ACTIONS(2100), + [aux_sym_cmd_identifier_token38] = ACTIONS(2098), + [aux_sym_cmd_identifier_token39] = ACTIONS(2100), + [aux_sym_cmd_identifier_token40] = ACTIONS(2100), + [anon_sym_def] = ACTIONS(2098), + [anon_sym_export_DASHenv] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_module] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2100), + [anon_sym_DOLLAR] = ACTIONS(2100), + [anon_sym_error] = ACTIONS(2098), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_in2] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_make] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_do] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_else] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2100), + [anon_sym_try] = ACTIONS(2098), + [anon_sym_catch] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_source] = ACTIONS(2098), + [anon_sym_source_DASHenv] = ACTIONS(2098), + [anon_sym_register] = ACTIONS(2098), + [anon_sym_hide] = ACTIONS(2098), + [anon_sym_hide_DASHenv] = ACTIONS(2098), + [anon_sym_overlay] = ACTIONS(2098), + [anon_sym_as] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2098), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2100), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2100), + [aux_sym__val_number_decimal_token1] = ACTIONS(2098), + [aux_sym__val_number_decimal_token2] = ACTIONS(2100), + [aux_sym__val_number_decimal_token3] = ACTIONS(2100), + [aux_sym__val_number_decimal_token4] = ACTIONS(2100), + [aux_sym__val_number_token1] = ACTIONS(2100), + [aux_sym__val_number_token2] = ACTIONS(2100), + [aux_sym__val_number_token3] = ACTIONS(2100), + [aux_sym__val_number_token4] = ACTIONS(2098), + [aux_sym__val_number_token5] = ACTIONS(2098), + [aux_sym__val_number_token6] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2100), + [sym__str_single_quotes] = ACTIONS(2100), + [sym__str_back_ticks] = ACTIONS(2100), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2100), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2100), + }, + [507] = { + [sym_comment] = STATE(507), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(992), + [aux_sym_cmd_identifier_token3] = ACTIONS(992), + [aux_sym_cmd_identifier_token4] = ACTIONS(992), + [aux_sym_cmd_identifier_token5] = ACTIONS(992), + [aux_sym_cmd_identifier_token6] = ACTIONS(992), + [aux_sym_cmd_identifier_token7] = ACTIONS(992), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(992), + [aux_sym_cmd_identifier_token11] = ACTIONS(992), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(992), + [aux_sym_cmd_identifier_token17] = ACTIONS(992), + [aux_sym_cmd_identifier_token18] = ACTIONS(992), + [aux_sym_cmd_identifier_token19] = ACTIONS(992), + [aux_sym_cmd_identifier_token20] = ACTIONS(992), + [aux_sym_cmd_identifier_token21] = ACTIONS(992), + [aux_sym_cmd_identifier_token22] = ACTIONS(992), + [aux_sym_cmd_identifier_token23] = ACTIONS(992), + [aux_sym_cmd_identifier_token24] = ACTIONS(992), + [aux_sym_cmd_identifier_token25] = ACTIONS(992), + [aux_sym_cmd_identifier_token26] = ACTIONS(992), + [aux_sym_cmd_identifier_token27] = ACTIONS(992), + [aux_sym_cmd_identifier_token28] = ACTIONS(992), + [aux_sym_cmd_identifier_token29] = ACTIONS(992), + [aux_sym_cmd_identifier_token30] = ACTIONS(992), + [aux_sym_cmd_identifier_token31] = ACTIONS(992), + [aux_sym_cmd_identifier_token32] = ACTIONS(992), + [aux_sym_cmd_identifier_token33] = ACTIONS(992), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(992), + [aux_sym_cmd_identifier_token36] = ACTIONS(992), + [aux_sym_cmd_identifier_token37] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [aux_sym_record_entry_token1] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), + }, + [508] = { + [sym_cell_path] = STATE(766), + [sym_path] = STATE(689), + [sym_comment] = STATE(508), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2106), + [anon_sym_alias] = ACTIONS(2106), + [anon_sym_let] = ACTIONS(2106), + [anon_sym_let_DASHenv] = ACTIONS(2106), + [anon_sym_mut] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [aux_sym_cmd_identifier_token1] = ACTIONS(2106), + [aux_sym_cmd_identifier_token2] = ACTIONS(2108), + [aux_sym_cmd_identifier_token3] = ACTIONS(2108), + [aux_sym_cmd_identifier_token4] = ACTIONS(2108), + [aux_sym_cmd_identifier_token5] = ACTIONS(2108), + [aux_sym_cmd_identifier_token6] = ACTIONS(2108), + [aux_sym_cmd_identifier_token7] = ACTIONS(2108), + [aux_sym_cmd_identifier_token8] = ACTIONS(2106), + [aux_sym_cmd_identifier_token9] = ACTIONS(2106), + [aux_sym_cmd_identifier_token10] = ACTIONS(2108), + [aux_sym_cmd_identifier_token11] = ACTIONS(2108), + [aux_sym_cmd_identifier_token12] = ACTIONS(2106), + [aux_sym_cmd_identifier_token13] = ACTIONS(2106), + [aux_sym_cmd_identifier_token14] = ACTIONS(2106), + [aux_sym_cmd_identifier_token15] = ACTIONS(2106), + [aux_sym_cmd_identifier_token16] = ACTIONS(2108), + [aux_sym_cmd_identifier_token17] = ACTIONS(2108), + [aux_sym_cmd_identifier_token18] = ACTIONS(2108), + [aux_sym_cmd_identifier_token19] = ACTIONS(2108), + [aux_sym_cmd_identifier_token20] = ACTIONS(2108), + [aux_sym_cmd_identifier_token21] = ACTIONS(2108), + [aux_sym_cmd_identifier_token22] = ACTIONS(2108), + [aux_sym_cmd_identifier_token23] = ACTIONS(2108), + [aux_sym_cmd_identifier_token24] = ACTIONS(2108), + [aux_sym_cmd_identifier_token25] = ACTIONS(2108), + [aux_sym_cmd_identifier_token26] = ACTIONS(2108), + [aux_sym_cmd_identifier_token27] = ACTIONS(2108), + [aux_sym_cmd_identifier_token28] = ACTIONS(2108), + [aux_sym_cmd_identifier_token29] = ACTIONS(2108), + [aux_sym_cmd_identifier_token30] = ACTIONS(2108), + [aux_sym_cmd_identifier_token31] = ACTIONS(2108), + [aux_sym_cmd_identifier_token32] = ACTIONS(2108), + [aux_sym_cmd_identifier_token33] = ACTIONS(2108), + [aux_sym_cmd_identifier_token34] = ACTIONS(2106), + [aux_sym_cmd_identifier_token35] = ACTIONS(2108), + [aux_sym_cmd_identifier_token36] = ACTIONS(2108), + [aux_sym_cmd_identifier_token37] = ACTIONS(2108), + [aux_sym_cmd_identifier_token38] = ACTIONS(2106), + [aux_sym_cmd_identifier_token39] = ACTIONS(2108), + [aux_sym_cmd_identifier_token40] = ACTIONS(2108), + [anon_sym_def] = ACTIONS(2106), + [anon_sym_export_DASHenv] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_module] = ACTIONS(2106), + [anon_sym_use] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_error] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in2] = ACTIONS(2106), + [anon_sym_loop] = ACTIONS(2106), + [anon_sym_make] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_do] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_else] = ACTIONS(2106), + [anon_sym_match] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2106), + [anon_sym_catch] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_source] = ACTIONS(2106), + [anon_sym_source_DASHenv] = ACTIONS(2106), + [anon_sym_register] = ACTIONS(2106), + [anon_sym_hide] = ACTIONS(2106), + [anon_sym_hide_DASHenv] = ACTIONS(2106), + [anon_sym_overlay] = ACTIONS(2106), + [anon_sym_as] = ACTIONS(2106), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2108), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2108), + [aux_sym__val_number_decimal_token1] = ACTIONS(2106), + [aux_sym__val_number_decimal_token2] = ACTIONS(2108), + [aux_sym__val_number_decimal_token3] = ACTIONS(2108), + [aux_sym__val_number_decimal_token4] = ACTIONS(2108), + [aux_sym__val_number_token1] = ACTIONS(2108), + [aux_sym__val_number_token2] = ACTIONS(2108), + [aux_sym__val_number_token3] = ACTIONS(2108), + [aux_sym__val_number_token4] = ACTIONS(2106), + [aux_sym__val_number_token5] = ACTIONS(2106), + [aux_sym__val_number_token6] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2108), + [sym__str_single_quotes] = ACTIONS(2108), + [sym__str_back_ticks] = ACTIONS(2108), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2108), + }, + [509] = { + [sym_cell_path] = STATE(756), + [sym_path] = STATE(689), + [sym_comment] = STATE(509), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(961), + [anon_sym_alias] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_let_DASHenv] = ACTIONS(961), + [anon_sym_mut] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [aux_sym_cmd_identifier_token1] = ACTIONS(961), + [aux_sym_cmd_identifier_token2] = ACTIONS(963), + [aux_sym_cmd_identifier_token3] = ACTIONS(963), + [aux_sym_cmd_identifier_token4] = ACTIONS(963), + [aux_sym_cmd_identifier_token5] = ACTIONS(963), + [aux_sym_cmd_identifier_token6] = ACTIONS(963), + [aux_sym_cmd_identifier_token7] = ACTIONS(963), + [aux_sym_cmd_identifier_token8] = ACTIONS(961), + [aux_sym_cmd_identifier_token9] = ACTIONS(961), + [aux_sym_cmd_identifier_token10] = ACTIONS(963), + [aux_sym_cmd_identifier_token11] = ACTIONS(963), + [aux_sym_cmd_identifier_token12] = ACTIONS(961), + [aux_sym_cmd_identifier_token13] = ACTIONS(961), + [aux_sym_cmd_identifier_token14] = ACTIONS(961), + [aux_sym_cmd_identifier_token15] = ACTIONS(961), + [aux_sym_cmd_identifier_token16] = ACTIONS(963), + [aux_sym_cmd_identifier_token17] = ACTIONS(963), + [aux_sym_cmd_identifier_token18] = ACTIONS(963), + [aux_sym_cmd_identifier_token19] = ACTIONS(963), + [aux_sym_cmd_identifier_token20] = ACTIONS(963), + [aux_sym_cmd_identifier_token21] = ACTIONS(963), + [aux_sym_cmd_identifier_token22] = ACTIONS(963), + [aux_sym_cmd_identifier_token23] = ACTIONS(963), + [aux_sym_cmd_identifier_token24] = ACTIONS(963), + [aux_sym_cmd_identifier_token25] = ACTIONS(963), + [aux_sym_cmd_identifier_token26] = ACTIONS(963), + [aux_sym_cmd_identifier_token27] = ACTIONS(963), + [aux_sym_cmd_identifier_token28] = ACTIONS(963), + [aux_sym_cmd_identifier_token29] = ACTIONS(963), + [aux_sym_cmd_identifier_token30] = ACTIONS(963), + [aux_sym_cmd_identifier_token31] = ACTIONS(963), + [aux_sym_cmd_identifier_token32] = ACTIONS(963), + [aux_sym_cmd_identifier_token33] = ACTIONS(963), + [aux_sym_cmd_identifier_token34] = ACTIONS(961), + [aux_sym_cmd_identifier_token35] = ACTIONS(963), + [aux_sym_cmd_identifier_token36] = ACTIONS(963), + [aux_sym_cmd_identifier_token37] = ACTIONS(963), + [aux_sym_cmd_identifier_token38] = ACTIONS(961), + [aux_sym_cmd_identifier_token39] = ACTIONS(963), + [aux_sym_cmd_identifier_token40] = ACTIONS(963), + [anon_sym_def] = ACTIONS(961), + [anon_sym_export_DASHenv] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_error] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_make] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_try] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_source] = ACTIONS(961), + [anon_sym_source_DASHenv] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_hide_DASHenv] = ACTIONS(961), + [anon_sym_overlay] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(961), + [aux_sym__val_number_token5] = ACTIONS(961), + [aux_sym__val_number_token6] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), + }, + [510] = { + [sym_comment] = STATE(510), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_alias] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_let_DASHenv] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [aux_sym_cmd_identifier_token1] = ACTIONS(2159), + [aux_sym_cmd_identifier_token2] = ACTIONS(2159), + [aux_sym_cmd_identifier_token3] = ACTIONS(2159), + [aux_sym_cmd_identifier_token4] = ACTIONS(2159), + [aux_sym_cmd_identifier_token5] = ACTIONS(2159), + [aux_sym_cmd_identifier_token6] = ACTIONS(2159), + [aux_sym_cmd_identifier_token7] = ACTIONS(2159), + [aux_sym_cmd_identifier_token8] = ACTIONS(2159), + [aux_sym_cmd_identifier_token9] = ACTIONS(2159), + [aux_sym_cmd_identifier_token10] = ACTIONS(2159), + [aux_sym_cmd_identifier_token11] = ACTIONS(2159), + [aux_sym_cmd_identifier_token12] = ACTIONS(2159), + [aux_sym_cmd_identifier_token13] = ACTIONS(2159), + [aux_sym_cmd_identifier_token14] = ACTIONS(2159), + [aux_sym_cmd_identifier_token15] = ACTIONS(2159), + [aux_sym_cmd_identifier_token16] = ACTIONS(2159), + [aux_sym_cmd_identifier_token17] = ACTIONS(2159), + [aux_sym_cmd_identifier_token18] = ACTIONS(2159), + [aux_sym_cmd_identifier_token19] = ACTIONS(2159), + [aux_sym_cmd_identifier_token20] = ACTIONS(2159), + [aux_sym_cmd_identifier_token21] = ACTIONS(2159), + [aux_sym_cmd_identifier_token22] = ACTIONS(2159), + [aux_sym_cmd_identifier_token23] = ACTIONS(2159), + [aux_sym_cmd_identifier_token24] = ACTIONS(2159), + [aux_sym_cmd_identifier_token25] = ACTIONS(2159), + [aux_sym_cmd_identifier_token26] = ACTIONS(2159), + [aux_sym_cmd_identifier_token27] = ACTIONS(2159), + [aux_sym_cmd_identifier_token28] = ACTIONS(2159), + [aux_sym_cmd_identifier_token29] = ACTIONS(2159), + [aux_sym_cmd_identifier_token30] = ACTIONS(2159), + [aux_sym_cmd_identifier_token31] = ACTIONS(2159), + [aux_sym_cmd_identifier_token32] = ACTIONS(2159), + [aux_sym_cmd_identifier_token33] = ACTIONS(2159), + [aux_sym_cmd_identifier_token34] = ACTIONS(2159), + [aux_sym_cmd_identifier_token35] = ACTIONS(2159), + [aux_sym_cmd_identifier_token36] = ACTIONS(2159), + [aux_sym_cmd_identifier_token37] = ACTIONS(2159), + [aux_sym_cmd_identifier_token38] = ACTIONS(2159), + [aux_sym_cmd_identifier_token39] = ACTIONS(2159), + [aux_sym_cmd_identifier_token40] = ACTIONS(2159), + [anon_sym_def] = ACTIONS(2159), + [anon_sym_export_DASHenv] = ACTIONS(2159), + [anon_sym_extern] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_use] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_DOLLAR] = ACTIONS(2159), + [anon_sym_error] = ACTIONS(2159), + [anon_sym_DASH2] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_in2] = ACTIONS(2159), + [anon_sym_loop] = ACTIONS(2159), + [anon_sym_make] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_else] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_catch] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_source] = ACTIONS(2159), + [anon_sym_source_DASHenv] = ACTIONS(2159), + [anon_sym_register] = ACTIONS(2159), + [anon_sym_hide] = ACTIONS(2159), + [anon_sym_hide_DASHenv] = ACTIONS(2159), + [anon_sym_overlay] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_PLUS2] = ACTIONS(2159), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2159), + [anon_sym_DOT_DOT2] = ACTIONS(2161), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2163), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2163), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2159), + [aux_sym__val_number_decimal_token1] = ACTIONS(2159), + [aux_sym__val_number_decimal_token2] = ACTIONS(2159), + [aux_sym__val_number_decimal_token3] = ACTIONS(2159), + [aux_sym__val_number_decimal_token4] = ACTIONS(2159), + [aux_sym__val_number_token1] = ACTIONS(2159), + [aux_sym__val_number_token2] = ACTIONS(2159), + [aux_sym__val_number_token3] = ACTIONS(2159), + [aux_sym__val_number_token4] = ACTIONS(2159), + [aux_sym__val_number_token5] = ACTIONS(2159), + [aux_sym__val_number_token6] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [sym__str_single_quotes] = ACTIONS(2159), + [sym__str_back_ticks] = ACTIONS(2159), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2159), + [sym__entry_separator] = ACTIONS(2165), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1672), + [sym_raw_string_begin] = ACTIONS(2165), }, - [433] = { - [sym_comment] = STATE(433), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_alias] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_let_DASHenv] = ACTIONS(2200), - [anon_sym_mut] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [aux_sym_cmd_identifier_token1] = ACTIONS(2200), - [aux_sym_cmd_identifier_token2] = ACTIONS(2200), - [aux_sym_cmd_identifier_token3] = ACTIONS(2200), - [aux_sym_cmd_identifier_token4] = ACTIONS(2200), - [aux_sym_cmd_identifier_token5] = ACTIONS(2200), - [aux_sym_cmd_identifier_token6] = ACTIONS(2200), - [aux_sym_cmd_identifier_token7] = ACTIONS(2200), - [aux_sym_cmd_identifier_token8] = ACTIONS(2200), - [aux_sym_cmd_identifier_token9] = ACTIONS(2200), - [aux_sym_cmd_identifier_token10] = ACTIONS(2200), - [aux_sym_cmd_identifier_token11] = ACTIONS(2200), - [aux_sym_cmd_identifier_token12] = ACTIONS(2200), - [aux_sym_cmd_identifier_token13] = ACTIONS(2200), - [aux_sym_cmd_identifier_token14] = ACTIONS(2200), - [aux_sym_cmd_identifier_token15] = ACTIONS(2200), - [aux_sym_cmd_identifier_token16] = ACTIONS(2200), - [aux_sym_cmd_identifier_token17] = ACTIONS(2200), - [aux_sym_cmd_identifier_token18] = ACTIONS(2200), - [aux_sym_cmd_identifier_token19] = ACTIONS(2200), - [aux_sym_cmd_identifier_token20] = ACTIONS(2200), - [aux_sym_cmd_identifier_token21] = ACTIONS(2200), - [aux_sym_cmd_identifier_token22] = ACTIONS(2200), - [aux_sym_cmd_identifier_token23] = ACTIONS(2200), - [aux_sym_cmd_identifier_token24] = ACTIONS(2200), - [aux_sym_cmd_identifier_token25] = ACTIONS(2200), - [aux_sym_cmd_identifier_token26] = ACTIONS(2200), - [aux_sym_cmd_identifier_token27] = ACTIONS(2200), - [aux_sym_cmd_identifier_token28] = ACTIONS(2200), - [aux_sym_cmd_identifier_token29] = ACTIONS(2200), - [aux_sym_cmd_identifier_token30] = ACTIONS(2200), - [aux_sym_cmd_identifier_token31] = ACTIONS(2200), - [aux_sym_cmd_identifier_token32] = ACTIONS(2200), - [aux_sym_cmd_identifier_token33] = ACTIONS(2200), - [aux_sym_cmd_identifier_token34] = ACTIONS(2200), - [aux_sym_cmd_identifier_token35] = ACTIONS(2200), - [aux_sym_cmd_identifier_token36] = ACTIONS(2200), - [anon_sym_true] = ACTIONS(2200), - [anon_sym_false] = ACTIONS(2200), - [anon_sym_null] = ACTIONS(2200), - [aux_sym_cmd_identifier_token38] = ACTIONS(2200), - [aux_sym_cmd_identifier_token39] = ACTIONS(2200), - [aux_sym_cmd_identifier_token40] = ACTIONS(2200), - [anon_sym_def] = ACTIONS(2200), - [anon_sym_export_DASHenv] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_DOLLAR] = ACTIONS(2200), - [anon_sym_error] = ACTIONS(2200), - [anon_sym_list] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_make] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_catch] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_source] = ACTIONS(2200), - [anon_sym_source_DASHenv] = ACTIONS(2200), - [anon_sym_register] = ACTIONS(2200), - [anon_sym_hide] = ACTIONS(2200), - [anon_sym_hide_DASHenv] = ACTIONS(2200), - [anon_sym_overlay] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_as] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2200), - [anon_sym_DOT_DOT2] = ACTIONS(2109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2111), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2200), - [aux_sym__val_number_decimal_token1] = ACTIONS(2200), - [aux_sym__val_number_decimal_token2] = ACTIONS(2200), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(2200), - [aux_sym__val_number_token2] = ACTIONS(2200), - [aux_sym__val_number_token3] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [sym__str_single_quotes] = ACTIONS(2200), - [sym__str_back_ticks] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2200), - [sym__entry_separator] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2200), + [511] = { + [sym_comment] = STATE(511), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_alias] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_let_DASHenv] = ACTIONS(2167), + [anon_sym_mut] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [aux_sym_cmd_identifier_token1] = ACTIONS(2167), + [aux_sym_cmd_identifier_token2] = ACTIONS(2167), + [aux_sym_cmd_identifier_token3] = ACTIONS(2167), + [aux_sym_cmd_identifier_token4] = ACTIONS(2167), + [aux_sym_cmd_identifier_token5] = ACTIONS(2167), + [aux_sym_cmd_identifier_token6] = ACTIONS(2167), + [aux_sym_cmd_identifier_token7] = ACTIONS(2167), + [aux_sym_cmd_identifier_token8] = ACTIONS(2167), + [aux_sym_cmd_identifier_token9] = ACTIONS(2167), + [aux_sym_cmd_identifier_token10] = ACTIONS(2167), + [aux_sym_cmd_identifier_token11] = ACTIONS(2167), + [aux_sym_cmd_identifier_token12] = ACTIONS(2167), + [aux_sym_cmd_identifier_token13] = ACTIONS(2167), + [aux_sym_cmd_identifier_token14] = ACTIONS(2167), + [aux_sym_cmd_identifier_token15] = ACTIONS(2167), + [aux_sym_cmd_identifier_token16] = ACTIONS(2167), + [aux_sym_cmd_identifier_token17] = ACTIONS(2167), + [aux_sym_cmd_identifier_token18] = ACTIONS(2167), + [aux_sym_cmd_identifier_token19] = ACTIONS(2167), + [aux_sym_cmd_identifier_token20] = ACTIONS(2167), + [aux_sym_cmd_identifier_token21] = ACTIONS(2167), + [aux_sym_cmd_identifier_token22] = ACTIONS(2167), + [aux_sym_cmd_identifier_token23] = ACTIONS(2167), + [aux_sym_cmd_identifier_token24] = ACTIONS(2167), + [aux_sym_cmd_identifier_token25] = ACTIONS(2167), + [aux_sym_cmd_identifier_token26] = ACTIONS(2167), + [aux_sym_cmd_identifier_token27] = ACTIONS(2167), + [aux_sym_cmd_identifier_token28] = ACTIONS(2167), + [aux_sym_cmd_identifier_token29] = ACTIONS(2167), + [aux_sym_cmd_identifier_token30] = ACTIONS(2167), + [aux_sym_cmd_identifier_token31] = ACTIONS(2167), + [aux_sym_cmd_identifier_token32] = ACTIONS(2167), + [aux_sym_cmd_identifier_token33] = ACTIONS(2167), + [aux_sym_cmd_identifier_token34] = ACTIONS(2167), + [aux_sym_cmd_identifier_token35] = ACTIONS(2167), + [aux_sym_cmd_identifier_token36] = ACTIONS(2167), + [aux_sym_cmd_identifier_token37] = ACTIONS(2167), + [aux_sym_cmd_identifier_token38] = ACTIONS(2167), + [aux_sym_cmd_identifier_token39] = ACTIONS(2167), + [aux_sym_cmd_identifier_token40] = ACTIONS(2167), + [anon_sym_def] = ACTIONS(2167), + [anon_sym_export_DASHenv] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_use] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2167), + [anon_sym_error] = ACTIONS(2167), + [anon_sym_DASH2] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_in2] = ACTIONS(2167), + [anon_sym_loop] = ACTIONS(2167), + [anon_sym_make] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_catch] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_source] = ACTIONS(2167), + [anon_sym_source_DASHenv] = ACTIONS(2167), + [anon_sym_register] = ACTIONS(2167), + [anon_sym_hide] = ACTIONS(2167), + [anon_sym_hide_DASHenv] = ACTIONS(2167), + [anon_sym_overlay] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_PLUS2] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2167), + [anon_sym_DOT_DOT2] = ACTIONS(2169), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2171), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2171), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2167), + [aux_sym__val_number_decimal_token1] = ACTIONS(2167), + [aux_sym__val_number_decimal_token2] = ACTIONS(2167), + [aux_sym__val_number_decimal_token3] = ACTIONS(2167), + [aux_sym__val_number_decimal_token4] = ACTIONS(2167), + [aux_sym__val_number_token1] = ACTIONS(2167), + [aux_sym__val_number_token2] = ACTIONS(2167), + [aux_sym__val_number_token3] = ACTIONS(2167), + [aux_sym__val_number_token4] = ACTIONS(2167), + [aux_sym__val_number_token5] = ACTIONS(2167), + [aux_sym__val_number_token6] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [sym__str_single_quotes] = ACTIONS(2167), + [sym__str_back_ticks] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2167), + [sym__entry_separator] = ACTIONS(2173), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2202), + [sym_raw_string_begin] = ACTIONS(2173), }, - [434] = { - [sym_comment] = STATE(434), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1769), - [aux_sym_cmd_identifier_token40] = ACTIONS(1769), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), - [aux_sym__immediate_decimal_token2] = ACTIONS(2204), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), - [sym__entry_separator] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), + [512] = { + [sym_comment] = STATE(512), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_alias] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_let_DASHenv] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [aux_sym_cmd_identifier_token1] = ACTIONS(2175), + [aux_sym_cmd_identifier_token2] = ACTIONS(2175), + [aux_sym_cmd_identifier_token3] = ACTIONS(2175), + [aux_sym_cmd_identifier_token4] = ACTIONS(2175), + [aux_sym_cmd_identifier_token5] = ACTIONS(2175), + [aux_sym_cmd_identifier_token6] = ACTIONS(2175), + [aux_sym_cmd_identifier_token7] = ACTIONS(2175), + [aux_sym_cmd_identifier_token8] = ACTIONS(2175), + [aux_sym_cmd_identifier_token9] = ACTIONS(2175), + [aux_sym_cmd_identifier_token10] = ACTIONS(2175), + [aux_sym_cmd_identifier_token11] = ACTIONS(2175), + [aux_sym_cmd_identifier_token12] = ACTIONS(2175), + [aux_sym_cmd_identifier_token13] = ACTIONS(2175), + [aux_sym_cmd_identifier_token14] = ACTIONS(2175), + [aux_sym_cmd_identifier_token15] = ACTIONS(2175), + [aux_sym_cmd_identifier_token16] = ACTIONS(2175), + [aux_sym_cmd_identifier_token17] = ACTIONS(2175), + [aux_sym_cmd_identifier_token18] = ACTIONS(2175), + [aux_sym_cmd_identifier_token19] = ACTIONS(2175), + [aux_sym_cmd_identifier_token20] = ACTIONS(2175), + [aux_sym_cmd_identifier_token21] = ACTIONS(2175), + [aux_sym_cmd_identifier_token22] = ACTIONS(2175), + [aux_sym_cmd_identifier_token23] = ACTIONS(2175), + [aux_sym_cmd_identifier_token24] = ACTIONS(2175), + [aux_sym_cmd_identifier_token25] = ACTIONS(2175), + [aux_sym_cmd_identifier_token26] = ACTIONS(2175), + [aux_sym_cmd_identifier_token27] = ACTIONS(2175), + [aux_sym_cmd_identifier_token28] = ACTIONS(2175), + [aux_sym_cmd_identifier_token29] = ACTIONS(2175), + [aux_sym_cmd_identifier_token30] = ACTIONS(2175), + [aux_sym_cmd_identifier_token31] = ACTIONS(2175), + [aux_sym_cmd_identifier_token32] = ACTIONS(2175), + [aux_sym_cmd_identifier_token33] = ACTIONS(2175), + [aux_sym_cmd_identifier_token34] = ACTIONS(2175), + [aux_sym_cmd_identifier_token35] = ACTIONS(2175), + [aux_sym_cmd_identifier_token36] = ACTIONS(2175), + [aux_sym_cmd_identifier_token37] = ACTIONS(2175), + [aux_sym_cmd_identifier_token38] = ACTIONS(2175), + [aux_sym_cmd_identifier_token39] = ACTIONS(2175), + [aux_sym_cmd_identifier_token40] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2175), + [anon_sym_export_DASHenv] = ACTIONS(2175), + [anon_sym_extern] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_use] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2175), + [anon_sym_error] = ACTIONS(2175), + [anon_sym_DASH2] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_in2] = ACTIONS(2175), + [anon_sym_loop] = ACTIONS(2175), + [anon_sym_make] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_catch] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_source] = ACTIONS(2175), + [anon_sym_source_DASHenv] = ACTIONS(2175), + [anon_sym_register] = ACTIONS(2175), + [anon_sym_hide] = ACTIONS(2175), + [anon_sym_hide_DASHenv] = ACTIONS(2175), + [anon_sym_overlay] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_PLUS2] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2175), + [anon_sym_DOT_DOT2] = ACTIONS(2177), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2179), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2175), + [aux_sym__val_number_decimal_token1] = ACTIONS(2175), + [aux_sym__val_number_decimal_token2] = ACTIONS(2175), + [aux_sym__val_number_decimal_token3] = ACTIONS(2175), + [aux_sym__val_number_decimal_token4] = ACTIONS(2175), + [aux_sym__val_number_token1] = ACTIONS(2175), + [aux_sym__val_number_token2] = ACTIONS(2175), + [aux_sym__val_number_token3] = ACTIONS(2175), + [aux_sym__val_number_token4] = ACTIONS(2175), + [aux_sym__val_number_token5] = ACTIONS(2175), + [aux_sym__val_number_token6] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [sym__str_single_quotes] = ACTIONS(2175), + [sym__str_back_ticks] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2175), + [sym__entry_separator] = ACTIONS(2181), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1771), + [sym_raw_string_begin] = ACTIONS(2181), }, - [435] = { - [sym_cell_path] = STATE(638), - [sym_path] = STATE(631), - [sym_comment] = STATE(435), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2071), - [anon_sym_alias] = ACTIONS(2071), - [anon_sym_let] = ACTIONS(2071), - [anon_sym_let_DASHenv] = ACTIONS(2071), - [anon_sym_mut] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [aux_sym_cmd_identifier_token1] = ACTIONS(2071), - [aux_sym_cmd_identifier_token2] = ACTIONS(2071), - [aux_sym_cmd_identifier_token3] = ACTIONS(2071), - [aux_sym_cmd_identifier_token4] = ACTIONS(2071), - [aux_sym_cmd_identifier_token5] = ACTIONS(2071), - [aux_sym_cmd_identifier_token6] = ACTIONS(2071), - [aux_sym_cmd_identifier_token7] = ACTIONS(2071), - [aux_sym_cmd_identifier_token8] = ACTIONS(2071), - [aux_sym_cmd_identifier_token9] = ACTIONS(2071), - [aux_sym_cmd_identifier_token10] = ACTIONS(2071), - [aux_sym_cmd_identifier_token11] = ACTIONS(2071), - [aux_sym_cmd_identifier_token12] = ACTIONS(2071), - [aux_sym_cmd_identifier_token13] = ACTIONS(2071), - [aux_sym_cmd_identifier_token14] = ACTIONS(2071), - [aux_sym_cmd_identifier_token15] = ACTIONS(2071), - [aux_sym_cmd_identifier_token16] = ACTIONS(2071), - [aux_sym_cmd_identifier_token17] = ACTIONS(2071), - [aux_sym_cmd_identifier_token18] = ACTIONS(2071), - [aux_sym_cmd_identifier_token19] = ACTIONS(2071), - [aux_sym_cmd_identifier_token20] = ACTIONS(2071), - [aux_sym_cmd_identifier_token21] = ACTIONS(2071), - [aux_sym_cmd_identifier_token22] = ACTIONS(2071), - [aux_sym_cmd_identifier_token23] = ACTIONS(2071), - [aux_sym_cmd_identifier_token24] = ACTIONS(2071), - [aux_sym_cmd_identifier_token25] = ACTIONS(2071), - [aux_sym_cmd_identifier_token26] = ACTIONS(2071), - [aux_sym_cmd_identifier_token27] = ACTIONS(2071), - [aux_sym_cmd_identifier_token28] = ACTIONS(2071), - [aux_sym_cmd_identifier_token29] = ACTIONS(2071), - [aux_sym_cmd_identifier_token30] = ACTIONS(2071), - [aux_sym_cmd_identifier_token31] = ACTIONS(2071), - [aux_sym_cmd_identifier_token32] = ACTIONS(2071), - [aux_sym_cmd_identifier_token33] = ACTIONS(2071), - [aux_sym_cmd_identifier_token34] = ACTIONS(2071), - [aux_sym_cmd_identifier_token35] = ACTIONS(2071), - [aux_sym_cmd_identifier_token36] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_null] = ACTIONS(2073), - [aux_sym_cmd_identifier_token38] = ACTIONS(2071), - [aux_sym_cmd_identifier_token39] = ACTIONS(2073), - [aux_sym_cmd_identifier_token40] = ACTIONS(2073), - [anon_sym_def] = ACTIONS(2071), - [anon_sym_export_DASHenv] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2071), - [anon_sym_module] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_DOLLAR] = ACTIONS(2073), - [anon_sym_error] = ACTIONS(2071), - [anon_sym_list] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_in] = ACTIONS(2071), - [anon_sym_loop] = ACTIONS(2071), - [anon_sym_make] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_else] = ACTIONS(2071), - [anon_sym_match] = ACTIONS(2071), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_catch] = ACTIONS(2071), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_source] = ACTIONS(2071), - [anon_sym_source_DASHenv] = ACTIONS(2071), - [anon_sym_register] = ACTIONS(2071), - [anon_sym_hide] = ACTIONS(2071), - [anon_sym_hide_DASHenv] = ACTIONS(2071), - [anon_sym_overlay] = ACTIONS(2071), - [anon_sym_new] = ACTIONS(2071), - [anon_sym_as] = ACTIONS(2071), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2073), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2071), - [aux_sym__val_number_decimal_token2] = ACTIONS(2073), - [aux_sym__val_number_decimal_token3] = ACTIONS(2073), - [aux_sym__val_number_decimal_token4] = ACTIONS(2073), - [aux_sym__val_number_token1] = ACTIONS(2073), - [aux_sym__val_number_token2] = ACTIONS(2073), - [aux_sym__val_number_token3] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(2073), - [sym__str_single_quotes] = ACTIONS(2073), - [sym__str_back_ticks] = ACTIONS(2073), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2073), - [anon_sym_PLUS] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2073), + [513] = { + [sym_comment] = STATE(513), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_alias] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_let_DASHenv] = ACTIONS(2183), + [anon_sym_mut] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [aux_sym_cmd_identifier_token1] = ACTIONS(2183), + [aux_sym_cmd_identifier_token2] = ACTIONS(2183), + [aux_sym_cmd_identifier_token3] = ACTIONS(2183), + [aux_sym_cmd_identifier_token4] = ACTIONS(2183), + [aux_sym_cmd_identifier_token5] = ACTIONS(2183), + [aux_sym_cmd_identifier_token6] = ACTIONS(2183), + [aux_sym_cmd_identifier_token7] = ACTIONS(2183), + [aux_sym_cmd_identifier_token8] = ACTIONS(2183), + [aux_sym_cmd_identifier_token9] = ACTIONS(2183), + [aux_sym_cmd_identifier_token10] = ACTIONS(2183), + [aux_sym_cmd_identifier_token11] = ACTIONS(2183), + [aux_sym_cmd_identifier_token12] = ACTIONS(2183), + [aux_sym_cmd_identifier_token13] = ACTIONS(2183), + [aux_sym_cmd_identifier_token14] = ACTIONS(2183), + [aux_sym_cmd_identifier_token15] = ACTIONS(2183), + [aux_sym_cmd_identifier_token16] = ACTIONS(2183), + [aux_sym_cmd_identifier_token17] = ACTIONS(2183), + [aux_sym_cmd_identifier_token18] = ACTIONS(2183), + [aux_sym_cmd_identifier_token19] = ACTIONS(2183), + [aux_sym_cmd_identifier_token20] = ACTIONS(2183), + [aux_sym_cmd_identifier_token21] = ACTIONS(2183), + [aux_sym_cmd_identifier_token22] = ACTIONS(2183), + [aux_sym_cmd_identifier_token23] = ACTIONS(2183), + [aux_sym_cmd_identifier_token24] = ACTIONS(2183), + [aux_sym_cmd_identifier_token25] = ACTIONS(2183), + [aux_sym_cmd_identifier_token26] = ACTIONS(2183), + [aux_sym_cmd_identifier_token27] = ACTIONS(2183), + [aux_sym_cmd_identifier_token28] = ACTIONS(2183), + [aux_sym_cmd_identifier_token29] = ACTIONS(2183), + [aux_sym_cmd_identifier_token30] = ACTIONS(2183), + [aux_sym_cmd_identifier_token31] = ACTIONS(2183), + [aux_sym_cmd_identifier_token32] = ACTIONS(2183), + [aux_sym_cmd_identifier_token33] = ACTIONS(2183), + [aux_sym_cmd_identifier_token34] = ACTIONS(2183), + [aux_sym_cmd_identifier_token35] = ACTIONS(2183), + [aux_sym_cmd_identifier_token36] = ACTIONS(2183), + [aux_sym_cmd_identifier_token37] = ACTIONS(2183), + [aux_sym_cmd_identifier_token38] = ACTIONS(2183), + [aux_sym_cmd_identifier_token39] = ACTIONS(2183), + [aux_sym_cmd_identifier_token40] = ACTIONS(2183), + [anon_sym_def] = ACTIONS(2183), + [anon_sym_export_DASHenv] = ACTIONS(2183), + [anon_sym_extern] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_use] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2183), + [anon_sym_error] = ACTIONS(2183), + [anon_sym_DASH2] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_in2] = ACTIONS(2183), + [anon_sym_loop] = ACTIONS(2183), + [anon_sym_make] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_catch] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_source] = ACTIONS(2183), + [anon_sym_source_DASHenv] = ACTIONS(2183), + [anon_sym_register] = ACTIONS(2183), + [anon_sym_hide] = ACTIONS(2183), + [anon_sym_hide_DASHenv] = ACTIONS(2183), + [anon_sym_overlay] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_PLUS2] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2183), + [anon_sym_DOT_DOT2] = ACTIONS(2183), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2185), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2183), + [aux_sym__val_number_decimal_token1] = ACTIONS(2183), + [aux_sym__val_number_decimal_token2] = ACTIONS(2183), + [aux_sym__val_number_decimal_token3] = ACTIONS(2183), + [aux_sym__val_number_decimal_token4] = ACTIONS(2183), + [aux_sym__val_number_token1] = ACTIONS(2183), + [aux_sym__val_number_token2] = ACTIONS(2183), + [aux_sym__val_number_token3] = ACTIONS(2183), + [aux_sym__val_number_token4] = ACTIONS(2183), + [aux_sym__val_number_token5] = ACTIONS(2183), + [aux_sym__val_number_token6] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [sym__str_single_quotes] = ACTIONS(2183), + [sym__str_back_ticks] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2183), + [sym__entry_separator] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2185), }, - [436] = { - [sym_cell_path] = STATE(633), - [sym_path] = STATE(631), - [sym_comment] = STATE(436), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2075), - [anon_sym_alias] = ACTIONS(2075), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_let_DASHenv] = ACTIONS(2075), - [anon_sym_mut] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2075), - [aux_sym_cmd_identifier_token1] = ACTIONS(2075), - [aux_sym_cmd_identifier_token2] = ACTIONS(2075), - [aux_sym_cmd_identifier_token3] = ACTIONS(2075), - [aux_sym_cmd_identifier_token4] = ACTIONS(2075), - [aux_sym_cmd_identifier_token5] = ACTIONS(2075), - [aux_sym_cmd_identifier_token6] = ACTIONS(2075), - [aux_sym_cmd_identifier_token7] = ACTIONS(2075), - [aux_sym_cmd_identifier_token8] = ACTIONS(2075), - [aux_sym_cmd_identifier_token9] = ACTIONS(2075), - [aux_sym_cmd_identifier_token10] = ACTIONS(2075), - [aux_sym_cmd_identifier_token11] = ACTIONS(2075), - [aux_sym_cmd_identifier_token12] = ACTIONS(2075), - [aux_sym_cmd_identifier_token13] = ACTIONS(2075), - [aux_sym_cmd_identifier_token14] = ACTIONS(2075), - [aux_sym_cmd_identifier_token15] = ACTIONS(2075), - [aux_sym_cmd_identifier_token16] = ACTIONS(2075), - [aux_sym_cmd_identifier_token17] = ACTIONS(2075), - [aux_sym_cmd_identifier_token18] = ACTIONS(2075), - [aux_sym_cmd_identifier_token19] = ACTIONS(2075), - [aux_sym_cmd_identifier_token20] = ACTIONS(2075), - [aux_sym_cmd_identifier_token21] = ACTIONS(2075), - [aux_sym_cmd_identifier_token22] = ACTIONS(2075), - [aux_sym_cmd_identifier_token23] = ACTIONS(2075), - [aux_sym_cmd_identifier_token24] = ACTIONS(2075), - [aux_sym_cmd_identifier_token25] = ACTIONS(2075), - [aux_sym_cmd_identifier_token26] = ACTIONS(2075), - [aux_sym_cmd_identifier_token27] = ACTIONS(2075), - [aux_sym_cmd_identifier_token28] = ACTIONS(2075), - [aux_sym_cmd_identifier_token29] = ACTIONS(2075), - [aux_sym_cmd_identifier_token30] = ACTIONS(2075), - [aux_sym_cmd_identifier_token31] = ACTIONS(2075), - [aux_sym_cmd_identifier_token32] = ACTIONS(2075), - [aux_sym_cmd_identifier_token33] = ACTIONS(2075), - [aux_sym_cmd_identifier_token34] = ACTIONS(2075), - [aux_sym_cmd_identifier_token35] = ACTIONS(2075), - [aux_sym_cmd_identifier_token36] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_null] = ACTIONS(2077), - [aux_sym_cmd_identifier_token38] = ACTIONS(2075), - [aux_sym_cmd_identifier_token39] = ACTIONS(2077), - [aux_sym_cmd_identifier_token40] = ACTIONS(2077), - [anon_sym_def] = ACTIONS(2075), - [anon_sym_export_DASHenv] = ACTIONS(2075), - [anon_sym_extern] = ACTIONS(2075), - [anon_sym_module] = ACTIONS(2075), - [anon_sym_use] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_DOLLAR] = ACTIONS(2077), - [anon_sym_error] = ACTIONS(2075), - [anon_sym_list] = ACTIONS(2075), - [anon_sym_DASH] = ACTIONS(2075), - [anon_sym_break] = ACTIONS(2075), - [anon_sym_continue] = ACTIONS(2075), - [anon_sym_for] = ACTIONS(2075), - [anon_sym_in] = ACTIONS(2075), - [anon_sym_loop] = ACTIONS(2075), - [anon_sym_make] = ACTIONS(2075), - [anon_sym_while] = ACTIONS(2075), - [anon_sym_do] = ACTIONS(2075), - [anon_sym_if] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(2075), - [anon_sym_match] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2075), - [anon_sym_catch] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2075), - [anon_sym_source] = ACTIONS(2075), - [anon_sym_source_DASHenv] = ACTIONS(2075), - [anon_sym_register] = ACTIONS(2075), - [anon_sym_hide] = ACTIONS(2075), - [anon_sym_hide_DASHenv] = ACTIONS(2075), - [anon_sym_overlay] = ACTIONS(2075), - [anon_sym_new] = ACTIONS(2075), - [anon_sym_as] = ACTIONS(2075), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2077), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), - [aux_sym__val_number_token1] = ACTIONS(2077), - [aux_sym__val_number_token2] = ACTIONS(2077), - [aux_sym__val_number_token3] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [sym__str_single_quotes] = ACTIONS(2077), - [sym__str_back_ticks] = ACTIONS(2077), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2075), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2077), + [514] = { + [sym_comment] = STATE(514), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, - [437] = { - [sym_cell_path] = STATE(634), - [sym_path] = STATE(631), - [sym_comment] = STATE(437), - [aux_sym_cell_path_repeat1] = STATE(456), - [anon_sym_export] = ACTIONS(2079), - [anon_sym_alias] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_let_DASHenv] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [aux_sym_cmd_identifier_token1] = ACTIONS(2079), - [aux_sym_cmd_identifier_token2] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2079), - [aux_sym_cmd_identifier_token4] = ACTIONS(2079), - [aux_sym_cmd_identifier_token5] = ACTIONS(2079), - [aux_sym_cmd_identifier_token6] = ACTIONS(2079), - [aux_sym_cmd_identifier_token7] = ACTIONS(2079), - [aux_sym_cmd_identifier_token8] = ACTIONS(2079), - [aux_sym_cmd_identifier_token9] = ACTIONS(2079), - [aux_sym_cmd_identifier_token10] = ACTIONS(2079), - [aux_sym_cmd_identifier_token11] = ACTIONS(2079), - [aux_sym_cmd_identifier_token12] = ACTIONS(2079), - [aux_sym_cmd_identifier_token13] = ACTIONS(2079), - [aux_sym_cmd_identifier_token14] = ACTIONS(2079), - [aux_sym_cmd_identifier_token15] = ACTIONS(2079), - [aux_sym_cmd_identifier_token16] = ACTIONS(2079), - [aux_sym_cmd_identifier_token17] = ACTIONS(2079), - [aux_sym_cmd_identifier_token18] = ACTIONS(2079), - [aux_sym_cmd_identifier_token19] = ACTIONS(2079), - [aux_sym_cmd_identifier_token20] = ACTIONS(2079), - [aux_sym_cmd_identifier_token21] = ACTIONS(2079), - [aux_sym_cmd_identifier_token22] = ACTIONS(2079), - [aux_sym_cmd_identifier_token23] = ACTIONS(2079), - [aux_sym_cmd_identifier_token24] = ACTIONS(2079), - [aux_sym_cmd_identifier_token25] = ACTIONS(2079), - [aux_sym_cmd_identifier_token26] = ACTIONS(2079), - [aux_sym_cmd_identifier_token27] = ACTIONS(2079), - [aux_sym_cmd_identifier_token28] = ACTIONS(2079), - [aux_sym_cmd_identifier_token29] = ACTIONS(2079), - [aux_sym_cmd_identifier_token30] = ACTIONS(2079), - [aux_sym_cmd_identifier_token31] = ACTIONS(2079), - [aux_sym_cmd_identifier_token32] = ACTIONS(2079), - [aux_sym_cmd_identifier_token33] = ACTIONS(2079), - [aux_sym_cmd_identifier_token34] = ACTIONS(2079), - [aux_sym_cmd_identifier_token35] = ACTIONS(2079), - [aux_sym_cmd_identifier_token36] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [anon_sym_null] = ACTIONS(2081), - [aux_sym_cmd_identifier_token38] = ACTIONS(2079), - [aux_sym_cmd_identifier_token39] = ACTIONS(2081), - [aux_sym_cmd_identifier_token40] = ACTIONS(2081), - [anon_sym_def] = ACTIONS(2079), - [anon_sym_export_DASHenv] = ACTIONS(2079), - [anon_sym_extern] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2081), - [anon_sym_error] = ACTIONS(2079), - [anon_sym_list] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_make] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_else] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_catch] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_source] = ACTIONS(2079), - [anon_sym_source_DASHenv] = ACTIONS(2079), - [anon_sym_register] = ACTIONS(2079), - [anon_sym_hide] = ACTIONS(2079), - [anon_sym_hide_DASHenv] = ACTIONS(2079), - [anon_sym_overlay] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2081), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2081), - [aux_sym__val_number_decimal_token1] = ACTIONS(2079), - [aux_sym__val_number_decimal_token2] = ACTIONS(2081), - [aux_sym__val_number_decimal_token3] = ACTIONS(2081), - [aux_sym__val_number_decimal_token4] = ACTIONS(2081), - [aux_sym__val_number_token1] = ACTIONS(2081), - [aux_sym__val_number_token2] = ACTIONS(2081), - [aux_sym__val_number_token3] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [sym__str_single_quotes] = ACTIONS(2081), - [sym__str_back_ticks] = ACTIONS(2081), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2081), + [515] = { + [sym_comment] = STATE(515), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_alias] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_let_DASHenv] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [aux_sym_cmd_identifier_token1] = ACTIONS(2187), + [aux_sym_cmd_identifier_token2] = ACTIONS(2187), + [aux_sym_cmd_identifier_token3] = ACTIONS(2187), + [aux_sym_cmd_identifier_token4] = ACTIONS(2187), + [aux_sym_cmd_identifier_token5] = ACTIONS(2187), + [aux_sym_cmd_identifier_token6] = ACTIONS(2187), + [aux_sym_cmd_identifier_token7] = ACTIONS(2187), + [aux_sym_cmd_identifier_token8] = ACTIONS(2187), + [aux_sym_cmd_identifier_token9] = ACTIONS(2187), + [aux_sym_cmd_identifier_token10] = ACTIONS(2187), + [aux_sym_cmd_identifier_token11] = ACTIONS(2187), + [aux_sym_cmd_identifier_token12] = ACTIONS(2187), + [aux_sym_cmd_identifier_token13] = ACTIONS(2187), + [aux_sym_cmd_identifier_token14] = ACTIONS(2187), + [aux_sym_cmd_identifier_token15] = ACTIONS(2187), + [aux_sym_cmd_identifier_token16] = ACTIONS(2187), + [aux_sym_cmd_identifier_token17] = ACTIONS(2187), + [aux_sym_cmd_identifier_token18] = ACTIONS(2187), + [aux_sym_cmd_identifier_token19] = ACTIONS(2187), + [aux_sym_cmd_identifier_token20] = ACTIONS(2187), + [aux_sym_cmd_identifier_token21] = ACTIONS(2187), + [aux_sym_cmd_identifier_token22] = ACTIONS(2187), + [aux_sym_cmd_identifier_token23] = ACTIONS(2187), + [aux_sym_cmd_identifier_token24] = ACTIONS(2187), + [aux_sym_cmd_identifier_token25] = ACTIONS(2187), + [aux_sym_cmd_identifier_token26] = ACTIONS(2187), + [aux_sym_cmd_identifier_token27] = ACTIONS(2187), + [aux_sym_cmd_identifier_token28] = ACTIONS(2187), + [aux_sym_cmd_identifier_token29] = ACTIONS(2187), + [aux_sym_cmd_identifier_token30] = ACTIONS(2187), + [aux_sym_cmd_identifier_token31] = ACTIONS(2187), + [aux_sym_cmd_identifier_token32] = ACTIONS(2187), + [aux_sym_cmd_identifier_token33] = ACTIONS(2187), + [aux_sym_cmd_identifier_token34] = ACTIONS(2187), + [aux_sym_cmd_identifier_token35] = ACTIONS(2187), + [aux_sym_cmd_identifier_token36] = ACTIONS(2187), + [aux_sym_cmd_identifier_token37] = ACTIONS(2187), + [aux_sym_cmd_identifier_token38] = ACTIONS(2187), + [aux_sym_cmd_identifier_token39] = ACTIONS(2187), + [aux_sym_cmd_identifier_token40] = ACTIONS(2187), + [anon_sym_def] = ACTIONS(2187), + [anon_sym_export_DASHenv] = ACTIONS(2187), + [anon_sym_extern] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_use] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_error] = ACTIONS(2187), + [anon_sym_DASH2] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_in2] = ACTIONS(2187), + [anon_sym_loop] = ACTIONS(2187), + [anon_sym_make] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_catch] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_source] = ACTIONS(2187), + [anon_sym_source_DASHenv] = ACTIONS(2187), + [anon_sym_register] = ACTIONS(2187), + [anon_sym_hide] = ACTIONS(2187), + [anon_sym_hide_DASHenv] = ACTIONS(2187), + [anon_sym_overlay] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2187), + [aux_sym__val_number_decimal_token1] = ACTIONS(2187), + [aux_sym__val_number_decimal_token2] = ACTIONS(2187), + [aux_sym__val_number_decimal_token3] = ACTIONS(2187), + [aux_sym__val_number_decimal_token4] = ACTIONS(2187), + [aux_sym__val_number_token1] = ACTIONS(2187), + [aux_sym__val_number_token2] = ACTIONS(2187), + [aux_sym__val_number_token3] = ACTIONS(2187), + [aux_sym__val_number_token4] = ACTIONS(2187), + [aux_sym__val_number_token5] = ACTIONS(2187), + [aux_sym__val_number_token6] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [sym__str_single_quotes] = ACTIONS(2187), + [sym__str_back_ticks] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2187), + [sym__entry_separator] = ACTIONS(2189), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2189), }, - [438] = { - [sym_comment] = STATE(438), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), + [516] = { + [sym_comment] = STATE(516), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [aux_sym_cmd_identifier_token1] = ACTIONS(1018), + [aux_sym_cmd_identifier_token2] = ACTIONS(1020), + [aux_sym_cmd_identifier_token3] = ACTIONS(1020), + [aux_sym_cmd_identifier_token4] = ACTIONS(1020), + [aux_sym_cmd_identifier_token5] = ACTIONS(1020), + [aux_sym_cmd_identifier_token6] = ACTIONS(1020), + [aux_sym_cmd_identifier_token7] = ACTIONS(1020), + [aux_sym_cmd_identifier_token8] = ACTIONS(1018), + [aux_sym_cmd_identifier_token9] = ACTIONS(1018), + [aux_sym_cmd_identifier_token10] = ACTIONS(1020), + [aux_sym_cmd_identifier_token11] = ACTIONS(1020), + [aux_sym_cmd_identifier_token12] = ACTIONS(1018), + [aux_sym_cmd_identifier_token13] = ACTIONS(1018), + [aux_sym_cmd_identifier_token14] = ACTIONS(1018), + [aux_sym_cmd_identifier_token15] = ACTIONS(1018), + [aux_sym_cmd_identifier_token16] = ACTIONS(1020), + [aux_sym_cmd_identifier_token17] = ACTIONS(1020), + [aux_sym_cmd_identifier_token18] = ACTIONS(1020), + [aux_sym_cmd_identifier_token19] = ACTIONS(1020), + [aux_sym_cmd_identifier_token20] = ACTIONS(1020), + [aux_sym_cmd_identifier_token21] = ACTIONS(1020), + [aux_sym_cmd_identifier_token22] = ACTIONS(1020), + [aux_sym_cmd_identifier_token23] = ACTIONS(1020), + [aux_sym_cmd_identifier_token24] = ACTIONS(1020), + [aux_sym_cmd_identifier_token25] = ACTIONS(1020), + [aux_sym_cmd_identifier_token26] = ACTIONS(1020), + [aux_sym_cmd_identifier_token27] = ACTIONS(1020), + [aux_sym_cmd_identifier_token28] = ACTIONS(1020), + [aux_sym_cmd_identifier_token29] = ACTIONS(1020), + [aux_sym_cmd_identifier_token30] = ACTIONS(1020), + [aux_sym_cmd_identifier_token31] = ACTIONS(1020), + [aux_sym_cmd_identifier_token32] = ACTIONS(1020), + [aux_sym_cmd_identifier_token33] = ACTIONS(1020), + [aux_sym_cmd_identifier_token34] = ACTIONS(1018), + [aux_sym_cmd_identifier_token35] = ACTIONS(1020), + [aux_sym_cmd_identifier_token36] = ACTIONS(1020), + [aux_sym_cmd_identifier_token37] = ACTIONS(1020), + [aux_sym_cmd_identifier_token38] = ACTIONS(1018), + [aux_sym_cmd_identifier_token39] = ACTIONS(1020), + [aux_sym_cmd_identifier_token40] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_make] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_catch] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_as] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_decimal_token4] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1018), + [aux_sym__val_number_token5] = ACTIONS(1018), + [aux_sym__val_number_token6] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1020), + }, + [517] = { + [sym_comment] = STATE(517), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1008), + [aux_sym_cmd_identifier_token3] = ACTIONS(1008), + [aux_sym_cmd_identifier_token4] = ACTIONS(1008), + [aux_sym_cmd_identifier_token5] = ACTIONS(1008), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [aux_sym_cmd_identifier_token7] = ACTIONS(1008), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1008), + [aux_sym_cmd_identifier_token11] = ACTIONS(1008), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1008), + [aux_sym_cmd_identifier_token17] = ACTIONS(1008), + [aux_sym_cmd_identifier_token18] = ACTIONS(1008), + [aux_sym_cmd_identifier_token19] = ACTIONS(1008), + [aux_sym_cmd_identifier_token20] = ACTIONS(1008), + [aux_sym_cmd_identifier_token21] = ACTIONS(1008), + [aux_sym_cmd_identifier_token22] = ACTIONS(1008), + [aux_sym_cmd_identifier_token23] = ACTIONS(1008), + [aux_sym_cmd_identifier_token24] = ACTIONS(1008), + [aux_sym_cmd_identifier_token25] = ACTIONS(1008), + [aux_sym_cmd_identifier_token26] = ACTIONS(1008), + [aux_sym_cmd_identifier_token27] = ACTIONS(1008), + [aux_sym_cmd_identifier_token28] = ACTIONS(1008), + [aux_sym_cmd_identifier_token29] = ACTIONS(1008), + [aux_sym_cmd_identifier_token30] = ACTIONS(1008), + [aux_sym_cmd_identifier_token31] = ACTIONS(1008), + [aux_sym_cmd_identifier_token32] = ACTIONS(1008), + [aux_sym_cmd_identifier_token33] = ACTIONS(1008), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1008), + [aux_sym_cmd_identifier_token36] = ACTIONS(1008), + [aux_sym_cmd_identifier_token37] = ACTIONS(1008), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), + [aux_sym_record_entry_token1] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1008), + }, + [518] = { + [sym_comment] = STATE(518), + [anon_sym_export] = ACTIONS(1878), + [anon_sym_alias] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_let_DASHenv] = ACTIONS(1878), + [anon_sym_mut] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [aux_sym_cmd_identifier_token1] = ACTIONS(1878), + [aux_sym_cmd_identifier_token2] = ACTIONS(1878), + [aux_sym_cmd_identifier_token3] = ACTIONS(1878), + [aux_sym_cmd_identifier_token4] = ACTIONS(1878), + [aux_sym_cmd_identifier_token5] = ACTIONS(1878), + [aux_sym_cmd_identifier_token6] = ACTIONS(1878), + [aux_sym_cmd_identifier_token7] = ACTIONS(1878), + [aux_sym_cmd_identifier_token8] = ACTIONS(1878), + [aux_sym_cmd_identifier_token9] = ACTIONS(1878), + [aux_sym_cmd_identifier_token10] = ACTIONS(1878), + [aux_sym_cmd_identifier_token11] = ACTIONS(1878), + [aux_sym_cmd_identifier_token12] = ACTIONS(1878), + [aux_sym_cmd_identifier_token13] = ACTIONS(1878), + [aux_sym_cmd_identifier_token14] = ACTIONS(1878), + [aux_sym_cmd_identifier_token15] = ACTIONS(1878), + [aux_sym_cmd_identifier_token16] = ACTIONS(1878), + [aux_sym_cmd_identifier_token17] = ACTIONS(1878), + [aux_sym_cmd_identifier_token18] = ACTIONS(1878), + [aux_sym_cmd_identifier_token19] = ACTIONS(1878), + [aux_sym_cmd_identifier_token20] = ACTIONS(1878), + [aux_sym_cmd_identifier_token21] = ACTIONS(1878), + [aux_sym_cmd_identifier_token22] = ACTIONS(1878), + [aux_sym_cmd_identifier_token23] = ACTIONS(1878), + [aux_sym_cmd_identifier_token24] = ACTIONS(1878), + [aux_sym_cmd_identifier_token25] = ACTIONS(1878), + [aux_sym_cmd_identifier_token26] = ACTIONS(1878), + [aux_sym_cmd_identifier_token27] = ACTIONS(1878), + [aux_sym_cmd_identifier_token28] = ACTIONS(1878), + [aux_sym_cmd_identifier_token29] = ACTIONS(1878), + [aux_sym_cmd_identifier_token30] = ACTIONS(1878), + [aux_sym_cmd_identifier_token31] = ACTIONS(1878), + [aux_sym_cmd_identifier_token32] = ACTIONS(1878), + [aux_sym_cmd_identifier_token33] = ACTIONS(1878), + [aux_sym_cmd_identifier_token34] = ACTIONS(1878), + [aux_sym_cmd_identifier_token35] = ACTIONS(1878), + [aux_sym_cmd_identifier_token36] = ACTIONS(1878), + [aux_sym_cmd_identifier_token37] = ACTIONS(1878), + [aux_sym_cmd_identifier_token38] = ACTIONS(1878), + [aux_sym_cmd_identifier_token39] = ACTIONS(1878), + [aux_sym_cmd_identifier_token40] = ACTIONS(1878), + [anon_sym_def] = ACTIONS(1878), + [anon_sym_export_DASHenv] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_module] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_error] = ACTIONS(1878), + [anon_sym_DASH2] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_in2] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_make] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_do] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1878), + [anon_sym_catch] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_source] = ACTIONS(1878), + [anon_sym_source_DASHenv] = ACTIONS(1878), + [anon_sym_register] = ACTIONS(1878), + [anon_sym_hide] = ACTIONS(1878), + [anon_sym_hide_DASHenv] = ACTIONS(1878), + [anon_sym_overlay] = ACTIONS(1878), + [anon_sym_as] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1878), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1878), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1878), + [aux_sym__val_number_decimal_token1] = ACTIONS(1878), + [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), + [aux_sym__val_number_token4] = ACTIONS(1878), + [aux_sym__val_number_token5] = ACTIONS(1878), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1886), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1888), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), + [sym_raw_string_begin] = ACTIONS(1886), }, - [439] = { - [sym_comment] = STATE(439), - [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(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = 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(249), - [sym_raw_string_begin] = ACTIONS(1072), + [519] = { + [sym_comment] = STATE(519), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [aux_sym_cmd_identifier_token1] = ACTIONS(1010), + [aux_sym_cmd_identifier_token2] = ACTIONS(1012), + [aux_sym_cmd_identifier_token3] = ACTIONS(1012), + [aux_sym_cmd_identifier_token4] = ACTIONS(1012), + [aux_sym_cmd_identifier_token5] = ACTIONS(1012), + [aux_sym_cmd_identifier_token6] = ACTIONS(1012), + [aux_sym_cmd_identifier_token7] = ACTIONS(1012), + [aux_sym_cmd_identifier_token8] = ACTIONS(1010), + [aux_sym_cmd_identifier_token9] = ACTIONS(1010), + [aux_sym_cmd_identifier_token10] = ACTIONS(1012), + [aux_sym_cmd_identifier_token11] = ACTIONS(1012), + [aux_sym_cmd_identifier_token12] = ACTIONS(1010), + [aux_sym_cmd_identifier_token13] = ACTIONS(1010), + [aux_sym_cmd_identifier_token14] = ACTIONS(1010), + [aux_sym_cmd_identifier_token15] = ACTIONS(1010), + [aux_sym_cmd_identifier_token16] = ACTIONS(1012), + [aux_sym_cmd_identifier_token17] = ACTIONS(1012), + [aux_sym_cmd_identifier_token18] = ACTIONS(1012), + [aux_sym_cmd_identifier_token19] = ACTIONS(1012), + [aux_sym_cmd_identifier_token20] = ACTIONS(1012), + [aux_sym_cmd_identifier_token21] = ACTIONS(1012), + [aux_sym_cmd_identifier_token22] = ACTIONS(1012), + [aux_sym_cmd_identifier_token23] = ACTIONS(1012), + [aux_sym_cmd_identifier_token24] = ACTIONS(1012), + [aux_sym_cmd_identifier_token25] = ACTIONS(1012), + [aux_sym_cmd_identifier_token26] = ACTIONS(1012), + [aux_sym_cmd_identifier_token27] = ACTIONS(1012), + [aux_sym_cmd_identifier_token28] = ACTIONS(1012), + [aux_sym_cmd_identifier_token29] = ACTIONS(1012), + [aux_sym_cmd_identifier_token30] = ACTIONS(1012), + [aux_sym_cmd_identifier_token31] = ACTIONS(1012), + [aux_sym_cmd_identifier_token32] = ACTIONS(1012), + [aux_sym_cmd_identifier_token33] = ACTIONS(1012), + [aux_sym_cmd_identifier_token34] = ACTIONS(1010), + [aux_sym_cmd_identifier_token35] = ACTIONS(1012), + [aux_sym_cmd_identifier_token36] = ACTIONS(1012), + [aux_sym_cmd_identifier_token37] = ACTIONS(1012), + [aux_sym_cmd_identifier_token38] = ACTIONS(1010), + [aux_sym_cmd_identifier_token39] = ACTIONS(1012), + [aux_sym_cmd_identifier_token40] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in2] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_make] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_catch] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_PLUS2] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), + [aux_sym__val_number_token1] = ACTIONS(1012), + [aux_sym__val_number_token2] = ACTIONS(1012), + [aux_sym__val_number_token3] = ACTIONS(1012), + [aux_sym__val_number_token4] = ACTIONS(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), + [aux_sym_record_entry_token1] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1012), }, - [440] = { - [sym_comment] = STATE(440), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [anon_sym_null] = ACTIONS(1703), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1703), - [aux_sym_cmd_identifier_token40] = ACTIONS(1703), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [aux_sym__val_number_decimal_token2] = ACTIONS(1703), - [aux_sym__val_number_decimal_token3] = ACTIONS(1703), - [aux_sym__val_number_decimal_token4] = ACTIONS(1703), - [aux_sym__val_number_token1] = ACTIONS(1703), - [aux_sym__val_number_token2] = ACTIONS(1703), - [aux_sym__val_number_token3] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym__str_single_quotes] = ACTIONS(1703), - [sym__str_back_ticks] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), - [sym__entry_separator] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1703), + [520] = { + [sym_comment] = STATE(520), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [aux_sym_cmd_identifier_token1] = ACTIONS(1014), + [aux_sym_cmd_identifier_token2] = ACTIONS(1016), + [aux_sym_cmd_identifier_token3] = ACTIONS(1016), + [aux_sym_cmd_identifier_token4] = ACTIONS(1016), + [aux_sym_cmd_identifier_token5] = ACTIONS(1016), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [aux_sym_cmd_identifier_token7] = ACTIONS(1016), + [aux_sym_cmd_identifier_token8] = ACTIONS(1014), + [aux_sym_cmd_identifier_token9] = ACTIONS(1014), + [aux_sym_cmd_identifier_token10] = ACTIONS(1016), + [aux_sym_cmd_identifier_token11] = ACTIONS(1016), + [aux_sym_cmd_identifier_token12] = ACTIONS(1014), + [aux_sym_cmd_identifier_token13] = ACTIONS(1014), + [aux_sym_cmd_identifier_token14] = ACTIONS(1014), + [aux_sym_cmd_identifier_token15] = ACTIONS(1014), + [aux_sym_cmd_identifier_token16] = ACTIONS(1016), + [aux_sym_cmd_identifier_token17] = ACTIONS(1016), + [aux_sym_cmd_identifier_token18] = ACTIONS(1016), + [aux_sym_cmd_identifier_token19] = ACTIONS(1016), + [aux_sym_cmd_identifier_token20] = ACTIONS(1016), + [aux_sym_cmd_identifier_token21] = ACTIONS(1016), + [aux_sym_cmd_identifier_token22] = ACTIONS(1016), + [aux_sym_cmd_identifier_token23] = ACTIONS(1016), + [aux_sym_cmd_identifier_token24] = ACTIONS(1016), + [aux_sym_cmd_identifier_token25] = ACTIONS(1016), + [aux_sym_cmd_identifier_token26] = ACTIONS(1016), + [aux_sym_cmd_identifier_token27] = ACTIONS(1016), + [aux_sym_cmd_identifier_token28] = ACTIONS(1016), + [aux_sym_cmd_identifier_token29] = ACTIONS(1016), + [aux_sym_cmd_identifier_token30] = ACTIONS(1016), + [aux_sym_cmd_identifier_token31] = ACTIONS(1016), + [aux_sym_cmd_identifier_token32] = ACTIONS(1016), + [aux_sym_cmd_identifier_token33] = ACTIONS(1016), + [aux_sym_cmd_identifier_token34] = ACTIONS(1014), + [aux_sym_cmd_identifier_token35] = ACTIONS(1016), + [aux_sym_cmd_identifier_token36] = ACTIONS(1016), + [aux_sym_cmd_identifier_token37] = ACTIONS(1016), + [aux_sym_cmd_identifier_token38] = ACTIONS(1014), + [aux_sym_cmd_identifier_token39] = ACTIONS(1016), + [aux_sym_cmd_identifier_token40] = ACTIONS(1016), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_COMMA] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_make] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_catch] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_as] = ACTIONS(1014), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1016), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(1016), + [aux_sym__val_number_token2] = ACTIONS(1016), + [aux_sym__val_number_token3] = ACTIONS(1016), + [aux_sym__val_number_token4] = ACTIONS(1014), + [aux_sym__val_number_token5] = ACTIONS(1014), + [aux_sym__val_number_token6] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1016), + [sym__str_single_quotes] = ACTIONS(1016), + [sym__str_back_ticks] = ACTIONS(1016), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), + [aux_sym_record_entry_token1] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1016), + }, + [521] = { + [sym_comment] = STATE(521), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = 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_as] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = 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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1705), + [sym_raw_string_begin] = ACTIONS(1892), }, - [441] = { - [sym_comment] = STATE(441), + [522] = { + [sym_path] = STATE(689), + [sym_comment] = STATE(522), + [aux_sym_cell_path_repeat1] = STATE(524), + [anon_sym_export] = ACTIONS(967), + [anon_sym_alias] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_let_DASHenv] = ACTIONS(967), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [aux_sym_cmd_identifier_token1] = ACTIONS(967), + [aux_sym_cmd_identifier_token2] = ACTIONS(969), + [aux_sym_cmd_identifier_token3] = ACTIONS(969), + [aux_sym_cmd_identifier_token4] = ACTIONS(969), + [aux_sym_cmd_identifier_token5] = ACTIONS(969), + [aux_sym_cmd_identifier_token6] = ACTIONS(969), + [aux_sym_cmd_identifier_token7] = ACTIONS(969), + [aux_sym_cmd_identifier_token8] = ACTIONS(967), + [aux_sym_cmd_identifier_token9] = ACTIONS(967), + [aux_sym_cmd_identifier_token10] = ACTIONS(969), + [aux_sym_cmd_identifier_token11] = ACTIONS(969), + [aux_sym_cmd_identifier_token12] = ACTIONS(967), + [aux_sym_cmd_identifier_token13] = ACTIONS(967), + [aux_sym_cmd_identifier_token14] = ACTIONS(967), + [aux_sym_cmd_identifier_token15] = ACTIONS(967), + [aux_sym_cmd_identifier_token16] = ACTIONS(969), + [aux_sym_cmd_identifier_token17] = ACTIONS(969), + [aux_sym_cmd_identifier_token18] = ACTIONS(969), + [aux_sym_cmd_identifier_token19] = ACTIONS(969), + [aux_sym_cmd_identifier_token20] = ACTIONS(969), + [aux_sym_cmd_identifier_token21] = ACTIONS(969), + [aux_sym_cmd_identifier_token22] = ACTIONS(969), + [aux_sym_cmd_identifier_token23] = ACTIONS(969), + [aux_sym_cmd_identifier_token24] = ACTIONS(969), + [aux_sym_cmd_identifier_token25] = ACTIONS(969), + [aux_sym_cmd_identifier_token26] = ACTIONS(969), + [aux_sym_cmd_identifier_token27] = ACTIONS(969), + [aux_sym_cmd_identifier_token28] = ACTIONS(969), + [aux_sym_cmd_identifier_token29] = ACTIONS(969), + [aux_sym_cmd_identifier_token30] = ACTIONS(969), + [aux_sym_cmd_identifier_token31] = ACTIONS(969), + [aux_sym_cmd_identifier_token32] = ACTIONS(969), + [aux_sym_cmd_identifier_token33] = ACTIONS(969), + [aux_sym_cmd_identifier_token34] = ACTIONS(967), + [aux_sym_cmd_identifier_token35] = ACTIONS(969), + [aux_sym_cmd_identifier_token36] = ACTIONS(969), + [aux_sym_cmd_identifier_token37] = ACTIONS(969), + [aux_sym_cmd_identifier_token38] = ACTIONS(967), + [aux_sym_cmd_identifier_token39] = ACTIONS(969), + [aux_sym_cmd_identifier_token40] = ACTIONS(969), + [anon_sym_def] = ACTIONS(967), + [anon_sym_export_DASHenv] = ACTIONS(967), + [anon_sym_extern] = ACTIONS(967), + [anon_sym_module] = ACTIONS(967), + [anon_sym_use] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_error] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_in2] = ACTIONS(967), + [anon_sym_loop] = ACTIONS(967), + [anon_sym_make] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(967), + [anon_sym_match] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_try] = ACTIONS(967), + [anon_sym_catch] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_source] = ACTIONS(967), + [anon_sym_source_DASHenv] = ACTIONS(967), + [anon_sym_register] = ACTIONS(967), + [anon_sym_hide] = ACTIONS(967), + [anon_sym_hide_DASHenv] = ACTIONS(967), + [anon_sym_overlay] = ACTIONS(967), + [anon_sym_as] = ACTIONS(967), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(969), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(969), + [aux_sym__val_number_token1] = ACTIONS(969), + [aux_sym__val_number_token2] = ACTIONS(969), + [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_token4] = ACTIONS(967), + [aux_sym__val_number_token5] = ACTIONS(967), + [aux_sym__val_number_token6] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(969), + }, + [523] = { + [sym_comment] = STATE(523), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [aux_sym__immediate_decimal_token1] = ACTIONS(2191), + [aux_sym__immediate_decimal_token2] = ACTIONS(2193), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [524] = { + [sym_path] = STATE(689), + [sym_comment] = STATE(524), + [aux_sym_cell_path_repeat1] = STATE(524), + [anon_sym_export] = ACTIONS(971), + [anon_sym_alias] = ACTIONS(971), + [anon_sym_let] = ACTIONS(971), + [anon_sym_let_DASHenv] = ACTIONS(971), + [anon_sym_mut] = ACTIONS(971), + [anon_sym_const] = ACTIONS(971), + [aux_sym_cmd_identifier_token1] = ACTIONS(971), + [aux_sym_cmd_identifier_token2] = ACTIONS(973), + [aux_sym_cmd_identifier_token3] = ACTIONS(973), + [aux_sym_cmd_identifier_token4] = ACTIONS(973), + [aux_sym_cmd_identifier_token5] = ACTIONS(973), + [aux_sym_cmd_identifier_token6] = ACTIONS(973), + [aux_sym_cmd_identifier_token7] = ACTIONS(973), + [aux_sym_cmd_identifier_token8] = ACTIONS(971), + [aux_sym_cmd_identifier_token9] = ACTIONS(971), + [aux_sym_cmd_identifier_token10] = ACTIONS(973), + [aux_sym_cmd_identifier_token11] = ACTIONS(973), + [aux_sym_cmd_identifier_token12] = ACTIONS(971), + [aux_sym_cmd_identifier_token13] = ACTIONS(971), + [aux_sym_cmd_identifier_token14] = ACTIONS(971), + [aux_sym_cmd_identifier_token15] = ACTIONS(971), + [aux_sym_cmd_identifier_token16] = ACTIONS(973), + [aux_sym_cmd_identifier_token17] = ACTIONS(973), + [aux_sym_cmd_identifier_token18] = ACTIONS(973), + [aux_sym_cmd_identifier_token19] = ACTIONS(973), + [aux_sym_cmd_identifier_token20] = ACTIONS(973), + [aux_sym_cmd_identifier_token21] = ACTIONS(973), + [aux_sym_cmd_identifier_token22] = ACTIONS(973), + [aux_sym_cmd_identifier_token23] = ACTIONS(973), + [aux_sym_cmd_identifier_token24] = ACTIONS(973), + [aux_sym_cmd_identifier_token25] = ACTIONS(973), + [aux_sym_cmd_identifier_token26] = ACTIONS(973), + [aux_sym_cmd_identifier_token27] = ACTIONS(973), + [aux_sym_cmd_identifier_token28] = ACTIONS(973), + [aux_sym_cmd_identifier_token29] = ACTIONS(973), + [aux_sym_cmd_identifier_token30] = ACTIONS(973), + [aux_sym_cmd_identifier_token31] = ACTIONS(973), + [aux_sym_cmd_identifier_token32] = ACTIONS(973), + [aux_sym_cmd_identifier_token33] = ACTIONS(973), + [aux_sym_cmd_identifier_token34] = ACTIONS(971), + [aux_sym_cmd_identifier_token35] = ACTIONS(973), + [aux_sym_cmd_identifier_token36] = ACTIONS(973), + [aux_sym_cmd_identifier_token37] = ACTIONS(973), + [aux_sym_cmd_identifier_token38] = ACTIONS(971), + [aux_sym_cmd_identifier_token39] = ACTIONS(973), + [aux_sym_cmd_identifier_token40] = ACTIONS(973), + [anon_sym_def] = ACTIONS(971), + [anon_sym_export_DASHenv] = ACTIONS(971), + [anon_sym_extern] = ACTIONS(971), + [anon_sym_module] = ACTIONS(971), + [anon_sym_use] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_error] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_break] = ACTIONS(971), + [anon_sym_continue] = ACTIONS(971), + [anon_sym_for] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(971), + [anon_sym_loop] = ACTIONS(971), + [anon_sym_make] = ACTIONS(971), + [anon_sym_while] = ACTIONS(971), + [anon_sym_do] = ACTIONS(971), + [anon_sym_if] = ACTIONS(971), + [anon_sym_else] = ACTIONS(971), + [anon_sym_match] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_try] = ACTIONS(971), + [anon_sym_catch] = ACTIONS(971), + [anon_sym_return] = ACTIONS(971), + [anon_sym_source] = ACTIONS(971), + [anon_sym_source_DASHenv] = ACTIONS(971), + [anon_sym_register] = ACTIONS(971), + [anon_sym_hide] = ACTIONS(971), + [anon_sym_hide_DASHenv] = ACTIONS(971), + [anon_sym_overlay] = ACTIONS(971), + [anon_sym_as] = ACTIONS(971), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(2195), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(971), + [aux_sym__val_number_decimal_token2] = ACTIONS(973), + [aux_sym__val_number_decimal_token3] = ACTIONS(973), + [aux_sym__val_number_decimal_token4] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(971), + [aux_sym__val_number_token5] = ACTIONS(971), + [aux_sym__val_number_token6] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(973), + }, + [525] = { + [sym_comment] = STATE(525), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_PLUS2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(2198), + [aux_sym__immediate_decimal_token2] = ACTIONS(2200), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [526] = { + [sym_comment] = STATE(526), + [anon_sym_export] = ACTIONS(1030), + [anon_sym_alias] = ACTIONS(1030), + [anon_sym_let] = ACTIONS(1030), + [anon_sym_let_DASHenv] = ACTIONS(1030), + [anon_sym_mut] = ACTIONS(1030), + [anon_sym_const] = ACTIONS(1030), + [aux_sym_cmd_identifier_token1] = ACTIONS(1030), + [aux_sym_cmd_identifier_token2] = ACTIONS(1030), + [aux_sym_cmd_identifier_token3] = ACTIONS(1030), + [aux_sym_cmd_identifier_token4] = ACTIONS(1030), + [aux_sym_cmd_identifier_token5] = ACTIONS(1030), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [aux_sym_cmd_identifier_token7] = ACTIONS(1030), + [aux_sym_cmd_identifier_token8] = ACTIONS(1030), + [aux_sym_cmd_identifier_token9] = ACTIONS(1030), + [aux_sym_cmd_identifier_token10] = ACTIONS(1030), + [aux_sym_cmd_identifier_token11] = ACTIONS(1030), + [aux_sym_cmd_identifier_token12] = ACTIONS(1030), + [aux_sym_cmd_identifier_token13] = ACTIONS(1030), + [aux_sym_cmd_identifier_token14] = ACTIONS(1030), + [aux_sym_cmd_identifier_token15] = ACTIONS(1030), + [aux_sym_cmd_identifier_token16] = ACTIONS(1030), + [aux_sym_cmd_identifier_token17] = ACTIONS(1030), + [aux_sym_cmd_identifier_token18] = ACTIONS(1030), + [aux_sym_cmd_identifier_token19] = ACTIONS(1030), + [aux_sym_cmd_identifier_token20] = ACTIONS(1030), + [aux_sym_cmd_identifier_token21] = ACTIONS(1030), + [aux_sym_cmd_identifier_token22] = ACTIONS(1030), + [aux_sym_cmd_identifier_token23] = ACTIONS(1030), + [aux_sym_cmd_identifier_token24] = ACTIONS(1030), + [aux_sym_cmd_identifier_token25] = ACTIONS(1030), + [aux_sym_cmd_identifier_token26] = ACTIONS(1030), + [aux_sym_cmd_identifier_token27] = ACTIONS(1030), + [aux_sym_cmd_identifier_token28] = ACTIONS(1030), + [aux_sym_cmd_identifier_token29] = ACTIONS(1030), + [aux_sym_cmd_identifier_token30] = ACTIONS(1030), + [aux_sym_cmd_identifier_token31] = ACTIONS(1030), + [aux_sym_cmd_identifier_token32] = ACTIONS(1030), + [aux_sym_cmd_identifier_token33] = ACTIONS(1030), + [aux_sym_cmd_identifier_token34] = ACTIONS(1030), + [aux_sym_cmd_identifier_token35] = ACTIONS(1030), + [aux_sym_cmd_identifier_token36] = ACTIONS(1030), + [aux_sym_cmd_identifier_token37] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1030), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [anon_sym_def] = ACTIONS(1030), + [anon_sym_export_DASHenv] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1030), + [anon_sym_module] = ACTIONS(1030), + [anon_sym_use] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_error] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_continue] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1030), + [anon_sym_loop] = ACTIONS(1030), + [anon_sym_make] = ACTIONS(1030), + [anon_sym_while] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1030), + [anon_sym_match] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(1030), + [anon_sym_catch] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1030), + [anon_sym_source] = ACTIONS(1030), + [anon_sym_source_DASHenv] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1030), + [anon_sym_hide] = ACTIONS(1030), + [anon_sym_hide_DASHenv] = ACTIONS(1030), + [anon_sym_overlay] = ACTIONS(1030), + [anon_sym_as] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [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), + [aux_sym__val_number_token4] = ACTIONS(1030), + [aux_sym__val_number_token5] = ACTIONS(1030), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1032), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2204), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1032), + }, + [527] = { + [sym_comment] = STATE(527), [anon_sym_export] = ACTIONS(2206), [anon_sym_alias] = ACTIONS(2206), [anon_sym_let] = ACTIONS(2206), @@ -127056,9 +132518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(2206), [aux_sym_cmd_identifier_token35] = ACTIONS(2206), [aux_sym_cmd_identifier_token36] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2206), - [anon_sym_false] = ACTIONS(2206), - [anon_sym_null] = ACTIONS(2206), + [aux_sym_cmd_identifier_token37] = ACTIONS(2206), [aux_sym_cmd_identifier_token38] = ACTIONS(2206), [aux_sym_cmd_identifier_token39] = ACTIONS(2206), [aux_sym_cmd_identifier_token40] = ACTIONS(2206), @@ -127070,12 +132530,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2206), [anon_sym_DOLLAR] = ACTIONS(2206), [anon_sym_error] = ACTIONS(2206), - [anon_sym_list] = ACTIONS(2206), - [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_DASH2] = ACTIONS(2206), [anon_sym_break] = ACTIONS(2206), [anon_sym_continue] = ACTIONS(2206), [anon_sym_for] = ACTIONS(2206), - [anon_sym_in] = ACTIONS(2206), + [anon_sym_in2] = ACTIONS(2206), [anon_sym_loop] = ACTIONS(2206), [anon_sym_make] = ACTIONS(2206), [anon_sym_while] = ACTIONS(2206), @@ -127093,12 +132552,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(2206), [anon_sym_hide_DASHenv] = ACTIONS(2206), [anon_sym_overlay] = ACTIONS(2206), - [anon_sym_new] = ACTIONS(2206), [anon_sym_as] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_PLUS2] = ACTIONS(2206), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2206), - [anon_sym_DOT_DOT2] = ACTIONS(2208), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2210), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2210), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2206), [aux_sym__val_number_decimal_token1] = ACTIONS(2206), [aux_sym__val_number_decimal_token2] = ACTIONS(2206), @@ -127107,433 +132564,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(2206), [aux_sym__val_number_token2] = ACTIONS(2206), [aux_sym__val_number_token3] = ACTIONS(2206), + [aux_sym__val_number_token4] = ACTIONS(2206), + [aux_sym__val_number_token5] = ACTIONS(2206), + [aux_sym__val_number_token6] = ACTIONS(2206), [anon_sym_DQUOTE] = ACTIONS(2206), [sym__str_single_quotes] = ACTIONS(2206), [sym__str_back_ticks] = ACTIONS(2206), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2206), - [sym__entry_separator] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2212), - }, - [442] = { - [sym_comment] = STATE(442), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1769), - [aux_sym_cmd_identifier_token40] = ACTIONS(1769), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), - [sym__entry_separator] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1771), - }, - [443] = { - [sym_comment] = STATE(443), - [anon_sym_export] = ACTIONS(1826), - [anon_sym_alias] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_let_DASHenv] = ACTIONS(1826), - [anon_sym_mut] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [aux_sym_cmd_identifier_token1] = ACTIONS(1826), - [aux_sym_cmd_identifier_token2] = ACTIONS(1826), - [aux_sym_cmd_identifier_token3] = ACTIONS(1826), - [aux_sym_cmd_identifier_token4] = ACTIONS(1826), - [aux_sym_cmd_identifier_token5] = ACTIONS(1826), - [aux_sym_cmd_identifier_token6] = ACTIONS(1826), - [aux_sym_cmd_identifier_token7] = ACTIONS(1826), - [aux_sym_cmd_identifier_token8] = ACTIONS(1826), - [aux_sym_cmd_identifier_token9] = ACTIONS(1826), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1826), - [aux_sym_cmd_identifier_token13] = ACTIONS(1826), - [aux_sym_cmd_identifier_token14] = ACTIONS(1826), - [aux_sym_cmd_identifier_token15] = ACTIONS(1826), - [aux_sym_cmd_identifier_token16] = ACTIONS(1826), - [aux_sym_cmd_identifier_token17] = ACTIONS(1826), - [aux_sym_cmd_identifier_token18] = ACTIONS(1826), - [aux_sym_cmd_identifier_token19] = ACTIONS(1826), - [aux_sym_cmd_identifier_token20] = ACTIONS(1826), - [aux_sym_cmd_identifier_token21] = ACTIONS(1826), - [aux_sym_cmd_identifier_token22] = ACTIONS(1826), - [aux_sym_cmd_identifier_token23] = ACTIONS(1826), - [aux_sym_cmd_identifier_token24] = ACTIONS(1826), - [aux_sym_cmd_identifier_token25] = ACTIONS(1826), - [aux_sym_cmd_identifier_token26] = ACTIONS(1826), - [aux_sym_cmd_identifier_token27] = ACTIONS(1826), - [aux_sym_cmd_identifier_token28] = ACTIONS(1826), - [aux_sym_cmd_identifier_token29] = ACTIONS(1826), - [aux_sym_cmd_identifier_token30] = ACTIONS(1826), - [aux_sym_cmd_identifier_token31] = ACTIONS(1826), - [aux_sym_cmd_identifier_token32] = ACTIONS(1826), - [aux_sym_cmd_identifier_token33] = ACTIONS(1826), - [aux_sym_cmd_identifier_token34] = ACTIONS(1826), - [aux_sym_cmd_identifier_token35] = ACTIONS(1826), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(1826), - [anon_sym_export_DASHenv] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_module] = ACTIONS(1826), - [anon_sym_use] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_error] = ACTIONS(1826), - [anon_sym_list] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_loop] = ACTIONS(1826), - [anon_sym_make] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_match] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_catch] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_source] = ACTIONS(1826), - [anon_sym_source_DASHenv] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_hide] = ACTIONS(1826), - [anon_sym_hide_DASHenv] = ACTIONS(1826), - [anon_sym_overlay] = ACTIONS(1826), - [anon_sym_new] = ACTIONS(1826), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), - [anon_sym_DOT_DOT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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), - [sym__entry_separator] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), + [sym__entry_separator] = ACTIONS(2210), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2212), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1828), + [sym_raw_string_begin] = ACTIONS(2210), }, - [444] = { - [sym_comment] = STATE(444), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(2214), - [aux_sym__immediate_decimal_token2] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), - }, - [445] = { - [sym_comment] = STATE(445), - [anon_sym_export] = ACTIONS(2218), - [anon_sym_alias] = ACTIONS(2218), - [anon_sym_let] = ACTIONS(2218), - [anon_sym_let_DASHenv] = ACTIONS(2218), - [anon_sym_mut] = ACTIONS(2218), - [anon_sym_const] = ACTIONS(2218), - [aux_sym_cmd_identifier_token1] = ACTIONS(2218), - [aux_sym_cmd_identifier_token2] = ACTIONS(2218), - [aux_sym_cmd_identifier_token3] = ACTIONS(2218), - [aux_sym_cmd_identifier_token4] = ACTIONS(2218), - [aux_sym_cmd_identifier_token5] = ACTIONS(2218), - [aux_sym_cmd_identifier_token6] = ACTIONS(2218), - [aux_sym_cmd_identifier_token7] = ACTIONS(2218), - [aux_sym_cmd_identifier_token8] = ACTIONS(2218), - [aux_sym_cmd_identifier_token9] = ACTIONS(2218), - [aux_sym_cmd_identifier_token10] = ACTIONS(2218), - [aux_sym_cmd_identifier_token11] = ACTIONS(2218), - [aux_sym_cmd_identifier_token12] = ACTIONS(2218), - [aux_sym_cmd_identifier_token13] = ACTIONS(2218), - [aux_sym_cmd_identifier_token14] = ACTIONS(2218), - [aux_sym_cmd_identifier_token15] = ACTIONS(2218), - [aux_sym_cmd_identifier_token16] = ACTIONS(2218), - [aux_sym_cmd_identifier_token17] = ACTIONS(2218), - [aux_sym_cmd_identifier_token18] = ACTIONS(2218), - [aux_sym_cmd_identifier_token19] = ACTIONS(2218), - [aux_sym_cmd_identifier_token20] = ACTIONS(2218), - [aux_sym_cmd_identifier_token21] = ACTIONS(2218), - [aux_sym_cmd_identifier_token22] = ACTIONS(2218), - [aux_sym_cmd_identifier_token23] = ACTIONS(2218), - [aux_sym_cmd_identifier_token24] = ACTIONS(2218), - [aux_sym_cmd_identifier_token25] = ACTIONS(2218), - [aux_sym_cmd_identifier_token26] = ACTIONS(2218), - [aux_sym_cmd_identifier_token27] = ACTIONS(2218), - [aux_sym_cmd_identifier_token28] = ACTIONS(2218), - [aux_sym_cmd_identifier_token29] = ACTIONS(2218), - [aux_sym_cmd_identifier_token30] = ACTIONS(2218), - [aux_sym_cmd_identifier_token31] = ACTIONS(2218), - [aux_sym_cmd_identifier_token32] = ACTIONS(2218), - [aux_sym_cmd_identifier_token33] = ACTIONS(2218), - [aux_sym_cmd_identifier_token34] = ACTIONS(2218), - [aux_sym_cmd_identifier_token35] = ACTIONS(2218), - [aux_sym_cmd_identifier_token36] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2218), - [anon_sym_false] = ACTIONS(2218), - [anon_sym_null] = ACTIONS(2218), - [aux_sym_cmd_identifier_token38] = ACTIONS(2218), - [aux_sym_cmd_identifier_token39] = ACTIONS(2218), - [aux_sym_cmd_identifier_token40] = ACTIONS(2218), - [anon_sym_def] = ACTIONS(2218), - [anon_sym_export_DASHenv] = ACTIONS(2218), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_module] = ACTIONS(2218), - [anon_sym_use] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2218), - [anon_sym_error] = ACTIONS(2218), - [anon_sym_list] = ACTIONS(2218), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_break] = ACTIONS(2218), - [anon_sym_continue] = ACTIONS(2218), - [anon_sym_for] = ACTIONS(2218), - [anon_sym_in] = ACTIONS(2218), - [anon_sym_loop] = ACTIONS(2218), - [anon_sym_make] = ACTIONS(2218), - [anon_sym_while] = ACTIONS(2218), - [anon_sym_do] = ACTIONS(2218), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_else] = ACTIONS(2218), - [anon_sym_match] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_try] = ACTIONS(2218), - [anon_sym_catch] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2218), - [anon_sym_source] = ACTIONS(2218), - [anon_sym_source_DASHenv] = ACTIONS(2218), - [anon_sym_register] = ACTIONS(2218), - [anon_sym_hide] = ACTIONS(2218), - [anon_sym_hide_DASHenv] = ACTIONS(2218), - [anon_sym_overlay] = ACTIONS(2218), - [anon_sym_new] = ACTIONS(2218), - [anon_sym_as] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), - [anon_sym_DOT_DOT2] = ACTIONS(2218), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2220), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2218), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2218), - [aux_sym__val_number_decimal_token3] = ACTIONS(2218), - [aux_sym__val_number_decimal_token4] = ACTIONS(2218), - [aux_sym__val_number_token1] = ACTIONS(2218), - [aux_sym__val_number_token2] = ACTIONS(2218), - [aux_sym__val_number_token3] = ACTIONS(2218), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym__str_single_quotes] = ACTIONS(2218), - [sym__str_back_ticks] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), - [sym__entry_separator] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2218), + [528] = { + [sym_comment] = STATE(528), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_in2] = 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_as] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_PLUS2] = ACTIONS(2214), + [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), + [aux_sym__val_number_token4] = ACTIONS(2214), + [aux_sym__val_number_token5] = ACTIONS(2214), + [aux_sym__val_number_token6] = 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(2218), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2220), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2220), + [sym_raw_string_begin] = ACTIONS(2218), }, - [446] = { - [sym_comment] = STATE(446), + [529] = { + [sym_comment] = STATE(529), [anon_sym_export] = ACTIONS(2222), [anon_sym_alias] = ACTIONS(2222), [anon_sym_let] = ACTIONS(2222), @@ -127576,9 +132722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(2222), [aux_sym_cmd_identifier_token35] = ACTIONS(2222), [aux_sym_cmd_identifier_token36] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2222), - [anon_sym_false] = ACTIONS(2222), - [anon_sym_null] = ACTIONS(2222), + [aux_sym_cmd_identifier_token37] = ACTIONS(2222), [aux_sym_cmd_identifier_token38] = ACTIONS(2222), [aux_sym_cmd_identifier_token39] = ACTIONS(2222), [aux_sym_cmd_identifier_token40] = ACTIONS(2222), @@ -127590,12 +132734,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2222), [anon_sym_DOLLAR] = ACTIONS(2222), [anon_sym_error] = ACTIONS(2222), - [anon_sym_list] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), [anon_sym_break] = ACTIONS(2222), [anon_sym_continue] = ACTIONS(2222), [anon_sym_for] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), [anon_sym_loop] = ACTIONS(2222), [anon_sym_make] = ACTIONS(2222), [anon_sym_while] = ACTIONS(2222), @@ -127613,12 +132756,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(2222), [anon_sym_hide_DASHenv] = ACTIONS(2222), [anon_sym_overlay] = ACTIONS(2222), - [anon_sym_new] = ACTIONS(2222), [anon_sym_as] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_PLUS2] = ACTIONS(2222), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2222), - [anon_sym_DOT_DOT2] = ACTIONS(2224), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2226), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2226), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2222), [aux_sym__val_number_decimal_token1] = ACTIONS(2222), [aux_sym__val_number_decimal_token2] = ACTIONS(2222), @@ -127627,225 +132768,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(2222), [aux_sym__val_number_token2] = ACTIONS(2222), [aux_sym__val_number_token3] = ACTIONS(2222), + [aux_sym__val_number_token4] = ACTIONS(2222), + [aux_sym__val_number_token5] = ACTIONS(2222), + [aux_sym__val_number_token6] = 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), - [sym__entry_separator] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2222), + [sym__entry_separator] = ACTIONS(2224), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2220), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2228), + [sym_raw_string_begin] = ACTIONS(2224), }, - [447] = { - [sym_comment] = STATE(447), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_alias] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_let_DASHenv] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [aux_sym_cmd_identifier_token1] = ACTIONS(2230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2230), - [aux_sym_cmd_identifier_token3] = ACTIONS(2230), - [aux_sym_cmd_identifier_token4] = ACTIONS(2230), - [aux_sym_cmd_identifier_token5] = ACTIONS(2230), - [aux_sym_cmd_identifier_token6] = ACTIONS(2230), - [aux_sym_cmd_identifier_token7] = ACTIONS(2230), - [aux_sym_cmd_identifier_token8] = ACTIONS(2230), - [aux_sym_cmd_identifier_token9] = ACTIONS(2230), - [aux_sym_cmd_identifier_token10] = ACTIONS(2230), - [aux_sym_cmd_identifier_token11] = ACTIONS(2230), - [aux_sym_cmd_identifier_token12] = ACTIONS(2230), - [aux_sym_cmd_identifier_token13] = ACTIONS(2230), - [aux_sym_cmd_identifier_token14] = ACTIONS(2230), - [aux_sym_cmd_identifier_token15] = ACTIONS(2230), - [aux_sym_cmd_identifier_token16] = ACTIONS(2230), - [aux_sym_cmd_identifier_token17] = ACTIONS(2230), - [aux_sym_cmd_identifier_token18] = ACTIONS(2230), - [aux_sym_cmd_identifier_token19] = ACTIONS(2230), - [aux_sym_cmd_identifier_token20] = ACTIONS(2230), - [aux_sym_cmd_identifier_token21] = ACTIONS(2230), - [aux_sym_cmd_identifier_token22] = ACTIONS(2230), - [aux_sym_cmd_identifier_token23] = ACTIONS(2230), - [aux_sym_cmd_identifier_token24] = ACTIONS(2230), - [aux_sym_cmd_identifier_token25] = ACTIONS(2230), - [aux_sym_cmd_identifier_token26] = ACTIONS(2230), - [aux_sym_cmd_identifier_token27] = ACTIONS(2230), - [aux_sym_cmd_identifier_token28] = ACTIONS(2230), - [aux_sym_cmd_identifier_token29] = ACTIONS(2230), - [aux_sym_cmd_identifier_token30] = ACTIONS(2230), - [aux_sym_cmd_identifier_token31] = ACTIONS(2230), - [aux_sym_cmd_identifier_token32] = ACTIONS(2230), - [aux_sym_cmd_identifier_token33] = ACTIONS(2230), - [aux_sym_cmd_identifier_token34] = ACTIONS(2230), - [aux_sym_cmd_identifier_token35] = ACTIONS(2230), - [aux_sym_cmd_identifier_token36] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2230), - [anon_sym_false] = ACTIONS(2230), - [anon_sym_null] = ACTIONS(2230), - [aux_sym_cmd_identifier_token38] = ACTIONS(2230), - [aux_sym_cmd_identifier_token39] = ACTIONS(2230), - [aux_sym_cmd_identifier_token40] = ACTIONS(2230), - [anon_sym_def] = ACTIONS(2230), - [anon_sym_export_DASHenv] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_use] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_error] = ACTIONS(2230), - [anon_sym_list] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_loop] = ACTIONS(2230), - [anon_sym_make] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_source] = ACTIONS(2230), - [anon_sym_source_DASHenv] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_hide] = ACTIONS(2230), - [anon_sym_hide_DASHenv] = ACTIONS(2230), - [anon_sym_overlay] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2230), + [530] = { + [sym_comment] = STATE(530), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_alias] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_let_DASHenv] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [aux_sym_cmd_identifier_token1] = ACTIONS(2159), + [aux_sym_cmd_identifier_token2] = ACTIONS(2165), + [aux_sym_cmd_identifier_token3] = ACTIONS(2165), + [aux_sym_cmd_identifier_token4] = ACTIONS(2165), + [aux_sym_cmd_identifier_token5] = ACTIONS(2165), + [aux_sym_cmd_identifier_token6] = ACTIONS(2165), + [aux_sym_cmd_identifier_token7] = ACTIONS(2165), + [aux_sym_cmd_identifier_token8] = ACTIONS(2159), + [aux_sym_cmd_identifier_token9] = ACTIONS(2159), + [aux_sym_cmd_identifier_token10] = ACTIONS(2165), + [aux_sym_cmd_identifier_token11] = ACTIONS(2165), + [aux_sym_cmd_identifier_token12] = ACTIONS(2159), + [aux_sym_cmd_identifier_token13] = ACTIONS(2159), + [aux_sym_cmd_identifier_token14] = ACTIONS(2159), + [aux_sym_cmd_identifier_token15] = ACTIONS(2159), + [aux_sym_cmd_identifier_token16] = ACTIONS(2165), + [aux_sym_cmd_identifier_token17] = ACTIONS(2165), + [aux_sym_cmd_identifier_token18] = ACTIONS(2165), + [aux_sym_cmd_identifier_token19] = ACTIONS(2165), + [aux_sym_cmd_identifier_token20] = ACTIONS(2165), + [aux_sym_cmd_identifier_token21] = ACTIONS(2165), + [aux_sym_cmd_identifier_token22] = ACTIONS(2165), + [aux_sym_cmd_identifier_token23] = ACTIONS(2165), + [aux_sym_cmd_identifier_token24] = ACTIONS(2165), + [aux_sym_cmd_identifier_token25] = ACTIONS(2165), + [aux_sym_cmd_identifier_token26] = ACTIONS(2165), + [aux_sym_cmd_identifier_token27] = ACTIONS(2165), + [aux_sym_cmd_identifier_token28] = ACTIONS(2165), + [aux_sym_cmd_identifier_token29] = ACTIONS(2165), + [aux_sym_cmd_identifier_token30] = ACTIONS(2165), + [aux_sym_cmd_identifier_token31] = ACTIONS(2165), + [aux_sym_cmd_identifier_token32] = ACTIONS(2165), + [aux_sym_cmd_identifier_token33] = ACTIONS(2165), + [aux_sym_cmd_identifier_token34] = ACTIONS(2159), + [aux_sym_cmd_identifier_token35] = ACTIONS(2165), + [aux_sym_cmd_identifier_token36] = ACTIONS(2165), + [aux_sym_cmd_identifier_token37] = ACTIONS(2165), + [aux_sym_cmd_identifier_token38] = ACTIONS(2159), + [aux_sym_cmd_identifier_token39] = ACTIONS(2165), + [aux_sym_cmd_identifier_token40] = ACTIONS(2165), + [anon_sym_def] = ACTIONS(2159), + [anon_sym_export_DASHenv] = ACTIONS(2159), + [anon_sym_extern] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_use] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_DOLLAR] = ACTIONS(2165), + [anon_sym_error] = ACTIONS(2159), + [anon_sym_DASH2] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_in2] = ACTIONS(2159), + [anon_sym_loop] = ACTIONS(2159), + [anon_sym_make] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_else] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_catch] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_source] = ACTIONS(2159), + [anon_sym_source_DASHenv] = ACTIONS(2159), + [anon_sym_register] = ACTIONS(2159), + [anon_sym_hide] = ACTIONS(2159), + [anon_sym_hide_DASHenv] = ACTIONS(2159), + [anon_sym_overlay] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_PLUS2] = ACTIONS(2159), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2165), + [anon_sym_DOT_DOT2] = ACTIONS(2226), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2228), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2165), + [aux_sym__val_number_decimal_token1] = ACTIONS(2159), + [aux_sym__val_number_decimal_token2] = ACTIONS(2165), + [aux_sym__val_number_decimal_token3] = ACTIONS(2165), + [aux_sym__val_number_decimal_token4] = ACTIONS(2165), + [aux_sym__val_number_token1] = ACTIONS(2165), + [aux_sym__val_number_token2] = ACTIONS(2165), + [aux_sym__val_number_token3] = ACTIONS(2165), + [aux_sym__val_number_token4] = ACTIONS(2159), + [aux_sym__val_number_token5] = ACTIONS(2159), + [aux_sym__val_number_token6] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2165), + [sym__str_single_quotes] = ACTIONS(2165), + [sym__str_back_ticks] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2165), + }, + [531] = { + [sym_comment] = STATE(531), + [anon_sym_export] = ACTIONS(1030), + [anon_sym_alias] = ACTIONS(1030), + [anon_sym_let] = ACTIONS(1030), + [anon_sym_let_DASHenv] = ACTIONS(1030), + [anon_sym_mut] = ACTIONS(1030), + [anon_sym_const] = ACTIONS(1030), + [aux_sym_cmd_identifier_token1] = ACTIONS(1030), + [aux_sym_cmd_identifier_token2] = ACTIONS(1032), + [aux_sym_cmd_identifier_token3] = ACTIONS(1032), + [aux_sym_cmd_identifier_token4] = ACTIONS(1032), + [aux_sym_cmd_identifier_token5] = ACTIONS(1032), + [aux_sym_cmd_identifier_token6] = ACTIONS(1032), + [aux_sym_cmd_identifier_token7] = ACTIONS(1032), + [aux_sym_cmd_identifier_token8] = ACTIONS(1030), + [aux_sym_cmd_identifier_token9] = ACTIONS(1030), + [aux_sym_cmd_identifier_token10] = ACTIONS(1032), + [aux_sym_cmd_identifier_token11] = ACTIONS(1032), + [aux_sym_cmd_identifier_token12] = ACTIONS(1030), + [aux_sym_cmd_identifier_token13] = ACTIONS(1030), + [aux_sym_cmd_identifier_token14] = ACTIONS(1030), + [aux_sym_cmd_identifier_token15] = ACTIONS(1030), + [aux_sym_cmd_identifier_token16] = ACTIONS(1032), + [aux_sym_cmd_identifier_token17] = ACTIONS(1032), + [aux_sym_cmd_identifier_token18] = ACTIONS(1032), + [aux_sym_cmd_identifier_token19] = ACTIONS(1032), + [aux_sym_cmd_identifier_token20] = ACTIONS(1032), + [aux_sym_cmd_identifier_token21] = ACTIONS(1032), + [aux_sym_cmd_identifier_token22] = ACTIONS(1032), + [aux_sym_cmd_identifier_token23] = ACTIONS(1032), + [aux_sym_cmd_identifier_token24] = ACTIONS(1032), + [aux_sym_cmd_identifier_token25] = ACTIONS(1032), + [aux_sym_cmd_identifier_token26] = ACTIONS(1032), + [aux_sym_cmd_identifier_token27] = ACTIONS(1032), + [aux_sym_cmd_identifier_token28] = ACTIONS(1032), + [aux_sym_cmd_identifier_token29] = ACTIONS(1032), + [aux_sym_cmd_identifier_token30] = ACTIONS(1032), + [aux_sym_cmd_identifier_token31] = ACTIONS(1032), + [aux_sym_cmd_identifier_token32] = ACTIONS(1032), + [aux_sym_cmd_identifier_token33] = ACTIONS(1032), + [aux_sym_cmd_identifier_token34] = ACTIONS(1030), + [aux_sym_cmd_identifier_token35] = ACTIONS(1032), + [aux_sym_cmd_identifier_token36] = ACTIONS(1032), + [aux_sym_cmd_identifier_token37] = ACTIONS(1032), + [aux_sym_cmd_identifier_token38] = ACTIONS(1030), + [aux_sym_cmd_identifier_token39] = ACTIONS(1032), + [aux_sym_cmd_identifier_token40] = ACTIONS(1032), + [anon_sym_def] = ACTIONS(1030), + [anon_sym_export_DASHenv] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1030), + [anon_sym_module] = ACTIONS(1030), + [anon_sym_use] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_error] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_continue] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1030), + [anon_sym_loop] = ACTIONS(1030), + [anon_sym_make] = ACTIONS(1030), + [anon_sym_while] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1030), + [anon_sym_match] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_try] = ACTIONS(1030), + [anon_sym_catch] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1030), + [anon_sym_source] = ACTIONS(1030), + [anon_sym_source_DASHenv] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1030), + [anon_sym_hide] = ACTIONS(1030), + [anon_sym_hide_DASHenv] = ACTIONS(1030), + [anon_sym_overlay] = ACTIONS(1030), + [anon_sym_as] = ACTIONS(1030), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1032), [anon_sym_DOT_DOT2] = ACTIONS(2230), [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2230), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2230), - [aux_sym__val_number_decimal_token3] = ACTIONS(2230), - [aux_sym__val_number_decimal_token4] = ACTIONS(2230), - [aux_sym__val_number_token1] = ACTIONS(2230), - [aux_sym__val_number_token2] = ACTIONS(2230), - [aux_sym__val_number_token3] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [sym__str_single_quotes] = ACTIONS(2230), - [sym__str_back_ticks] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2230), - [sym__entry_separator] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2232), - }, - [448] = { - [sym_cell_path] = STATE(670), - [sym_path] = STATE(631), - [sym_comment] = STATE(448), - [aux_sym_cell_path_repeat1] = STATE(456), - [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(1929), - [aux_sym_cmd_identifier_token25] = ACTIONS(1929), - [aux_sym_cmd_identifier_token26] = ACTIONS(1929), - [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(1929), - [aux_sym_cmd_identifier_token32] = ACTIONS(1929), - [aux_sym_cmd_identifier_token33] = ACTIONS(1929), - [aux_sym_cmd_identifier_token34] = ACTIONS(1929), - [aux_sym_cmd_identifier_token35] = ACTIONS(1929), - [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), - [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_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1931), - [anon_sym_error] = ACTIONS(1929), - [anon_sym_list] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_in] = ACTIONS(1929), - [anon_sym_loop] = ACTIONS(1929), - [anon_sym_make] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_do] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_else] = ACTIONS(1929), - [anon_sym_match] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1929), - [anon_sym_catch] = 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_new] = ACTIONS(1929), - [anon_sym_as] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = 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_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), - [anon_sym_PLUS] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1032), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1032), + [aux_sym__val_number_decimal_token4] = ACTIONS(1032), + [aux_sym__val_number_token1] = ACTIONS(1032), + [aux_sym__val_number_token2] = ACTIONS(1032), + [aux_sym__val_number_token3] = ACTIONS(1032), + [aux_sym__val_number_token4] = ACTIONS(1030), + [aux_sym__val_number_token5] = ACTIONS(1030), + [aux_sym__val_number_token6] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__str_single_quotes] = ACTIONS(1032), + [sym__str_back_ticks] = ACTIONS(1032), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1032), }, - [449] = { - [sym_comment] = STATE(449), + [532] = { + [sym_comment] = STATE(532), [anon_sym_export] = ACTIONS(2234), [anon_sym_alias] = ACTIONS(2234), [anon_sym_let] = ACTIONS(2234), @@ -127888,9 +133028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(2234), [aux_sym_cmd_identifier_token35] = ACTIONS(2234), [aux_sym_cmd_identifier_token36] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2234), - [anon_sym_false] = ACTIONS(2234), - [anon_sym_null] = ACTIONS(2234), + [aux_sym_cmd_identifier_token37] = ACTIONS(2234), [aux_sym_cmd_identifier_token38] = ACTIONS(2234), [aux_sym_cmd_identifier_token39] = ACTIONS(2234), [aux_sym_cmd_identifier_token40] = ACTIONS(2234), @@ -127902,12 +133040,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2234), [anon_sym_DOLLAR] = ACTIONS(2234), [anon_sym_error] = ACTIONS(2234), - [anon_sym_list] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), [anon_sym_break] = ACTIONS(2234), [anon_sym_continue] = ACTIONS(2234), [anon_sym_for] = ACTIONS(2234), - [anon_sym_in] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), [anon_sym_loop] = ACTIONS(2234), [anon_sym_make] = ACTIONS(2234), [anon_sym_while] = ACTIONS(2234), @@ -127925,12 +133062,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(2234), [anon_sym_hide_DASHenv] = ACTIONS(2234), [anon_sym_overlay] = ACTIONS(2234), - [anon_sym_new] = ACTIONS(2234), [anon_sym_as] = ACTIONS(2234), + [anon_sym_LPAREN2] = ACTIONS(2236), + [anon_sym_PLUS2] = ACTIONS(2234), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2234), - [anon_sym_DOT_DOT2] = ACTIONS(2236), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2238), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2238), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2234), [aux_sym__val_number_decimal_token1] = ACTIONS(2234), [aux_sym__val_number_decimal_token2] = ACTIONS(2234), @@ -127939,4138 +133074,5405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(2234), [aux_sym__val_number_token2] = ACTIONS(2234), [aux_sym__val_number_token3] = ACTIONS(2234), + [aux_sym__val_number_token4] = ACTIONS(2234), + [aux_sym__val_number_token5] = ACTIONS(2234), + [aux_sym__val_number_token6] = ACTIONS(2234), [anon_sym_DQUOTE] = ACTIONS(2234), [sym__str_single_quotes] = ACTIONS(2234), [sym__str_back_ticks] = ACTIONS(2234), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2234), - [sym__entry_separator] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2234), + [sym__entry_separator] = ACTIONS(2238), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2240), + [sym_raw_string_begin] = ACTIONS(2238), }, - [450] = { - [sym_cell_path] = STATE(691), - [sym_path] = STATE(631), - [sym_comment] = STATE(450), - [aux_sym_cell_path_repeat1] = STATE(456), - [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(2177), - [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(249), - [sym_raw_string_begin] = ACTIONS(1023), + [533] = { + [sym_comment] = STATE(533), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_alias] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_let_DASHenv] = ACTIONS(2167), + [anon_sym_mut] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [aux_sym_cmd_identifier_token1] = ACTIONS(2167), + [aux_sym_cmd_identifier_token2] = ACTIONS(2173), + [aux_sym_cmd_identifier_token3] = ACTIONS(2173), + [aux_sym_cmd_identifier_token4] = ACTIONS(2173), + [aux_sym_cmd_identifier_token5] = ACTIONS(2173), + [aux_sym_cmd_identifier_token6] = ACTIONS(2173), + [aux_sym_cmd_identifier_token7] = ACTIONS(2173), + [aux_sym_cmd_identifier_token8] = ACTIONS(2167), + [aux_sym_cmd_identifier_token9] = ACTIONS(2167), + [aux_sym_cmd_identifier_token10] = ACTIONS(2173), + [aux_sym_cmd_identifier_token11] = ACTIONS(2173), + [aux_sym_cmd_identifier_token12] = ACTIONS(2167), + [aux_sym_cmd_identifier_token13] = ACTIONS(2167), + [aux_sym_cmd_identifier_token14] = ACTIONS(2167), + [aux_sym_cmd_identifier_token15] = ACTIONS(2167), + [aux_sym_cmd_identifier_token16] = ACTIONS(2173), + [aux_sym_cmd_identifier_token17] = ACTIONS(2173), + [aux_sym_cmd_identifier_token18] = ACTIONS(2173), + [aux_sym_cmd_identifier_token19] = ACTIONS(2173), + [aux_sym_cmd_identifier_token20] = ACTIONS(2173), + [aux_sym_cmd_identifier_token21] = ACTIONS(2173), + [aux_sym_cmd_identifier_token22] = ACTIONS(2173), + [aux_sym_cmd_identifier_token23] = ACTIONS(2173), + [aux_sym_cmd_identifier_token24] = ACTIONS(2173), + [aux_sym_cmd_identifier_token25] = ACTIONS(2173), + [aux_sym_cmd_identifier_token26] = ACTIONS(2173), + [aux_sym_cmd_identifier_token27] = ACTIONS(2173), + [aux_sym_cmd_identifier_token28] = ACTIONS(2173), + [aux_sym_cmd_identifier_token29] = ACTIONS(2173), + [aux_sym_cmd_identifier_token30] = ACTIONS(2173), + [aux_sym_cmd_identifier_token31] = ACTIONS(2173), + [aux_sym_cmd_identifier_token32] = ACTIONS(2173), + [aux_sym_cmd_identifier_token33] = ACTIONS(2173), + [aux_sym_cmd_identifier_token34] = ACTIONS(2167), + [aux_sym_cmd_identifier_token35] = ACTIONS(2173), + [aux_sym_cmd_identifier_token36] = ACTIONS(2173), + [aux_sym_cmd_identifier_token37] = ACTIONS(2173), + [aux_sym_cmd_identifier_token38] = ACTIONS(2167), + [aux_sym_cmd_identifier_token39] = ACTIONS(2173), + [aux_sym_cmd_identifier_token40] = ACTIONS(2173), + [anon_sym_def] = ACTIONS(2167), + [anon_sym_export_DASHenv] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_use] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2173), + [anon_sym_error] = ACTIONS(2167), + [anon_sym_DASH2] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_in2] = ACTIONS(2167), + [anon_sym_loop] = ACTIONS(2167), + [anon_sym_make] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_catch] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_source] = ACTIONS(2167), + [anon_sym_source_DASHenv] = ACTIONS(2167), + [anon_sym_register] = ACTIONS(2167), + [anon_sym_hide] = ACTIONS(2167), + [anon_sym_hide_DASHenv] = ACTIONS(2167), + [anon_sym_overlay] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_PLUS2] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2173), + [anon_sym_DOT_DOT2] = ACTIONS(2240), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2242), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2242), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2167), + [aux_sym__val_number_decimal_token2] = ACTIONS(2173), + [aux_sym__val_number_decimal_token3] = ACTIONS(2173), + [aux_sym__val_number_decimal_token4] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2167), + [aux_sym__val_number_token5] = ACTIONS(2167), + [aux_sym__val_number_token6] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2173), }, - [451] = { - [sym__expr_parenthesized_immediate] = STATE(7774), - [sym_comment] = STATE(451), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_alias] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_let_DASHenv] = ACTIONS(2242), - [anon_sym_mut] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [aux_sym_cmd_identifier_token1] = ACTIONS(2242), - [aux_sym_cmd_identifier_token2] = ACTIONS(2242), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [aux_sym_cmd_identifier_token6] = ACTIONS(2242), - [aux_sym_cmd_identifier_token7] = ACTIONS(2242), - [aux_sym_cmd_identifier_token8] = ACTIONS(2242), - [aux_sym_cmd_identifier_token9] = ACTIONS(2242), - [aux_sym_cmd_identifier_token10] = ACTIONS(2242), - [aux_sym_cmd_identifier_token11] = ACTIONS(2242), - [aux_sym_cmd_identifier_token12] = ACTIONS(2242), - [aux_sym_cmd_identifier_token13] = ACTIONS(2242), - [aux_sym_cmd_identifier_token14] = ACTIONS(2242), - [aux_sym_cmd_identifier_token15] = ACTIONS(2242), - [aux_sym_cmd_identifier_token16] = ACTIONS(2242), - [aux_sym_cmd_identifier_token17] = ACTIONS(2242), - [aux_sym_cmd_identifier_token18] = ACTIONS(2242), - [aux_sym_cmd_identifier_token19] = ACTIONS(2242), - [aux_sym_cmd_identifier_token20] = ACTIONS(2242), - [aux_sym_cmd_identifier_token21] = ACTIONS(2242), - [aux_sym_cmd_identifier_token22] = ACTIONS(2242), - [aux_sym_cmd_identifier_token23] = ACTIONS(2242), - [aux_sym_cmd_identifier_token24] = ACTIONS(2242), - [aux_sym_cmd_identifier_token25] = ACTIONS(2242), - [aux_sym_cmd_identifier_token26] = ACTIONS(2242), - [aux_sym_cmd_identifier_token27] = ACTIONS(2242), - [aux_sym_cmd_identifier_token28] = ACTIONS(2242), - [aux_sym_cmd_identifier_token29] = ACTIONS(2242), - [aux_sym_cmd_identifier_token30] = ACTIONS(2242), - [aux_sym_cmd_identifier_token31] = ACTIONS(2242), - [aux_sym_cmd_identifier_token32] = ACTIONS(2242), - [aux_sym_cmd_identifier_token33] = ACTIONS(2242), - [aux_sym_cmd_identifier_token34] = ACTIONS(2242), - [aux_sym_cmd_identifier_token35] = ACTIONS(2242), - [aux_sym_cmd_identifier_token36] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2242), - [anon_sym_false] = ACTIONS(2242), - [anon_sym_null] = ACTIONS(2242), - [aux_sym_cmd_identifier_token38] = ACTIONS(2242), - [aux_sym_cmd_identifier_token39] = ACTIONS(2242), - [aux_sym_cmd_identifier_token40] = ACTIONS(2242), - [anon_sym_def] = ACTIONS(2242), - [anon_sym_export_DASHenv] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(2242), - [anon_sym_module] = ACTIONS(2242), - [anon_sym_use] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_DOLLAR] = ACTIONS(2242), - [anon_sym_error] = ACTIONS(2242), - [anon_sym_list] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [anon_sym_loop] = ACTIONS(2242), - [anon_sym_make] = ACTIONS(2242), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_else] = ACTIONS(2242), - [anon_sym_match] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2242), - [anon_sym_catch] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_source] = ACTIONS(2242), - [anon_sym_source_DASHenv] = ACTIONS(2242), - [anon_sym_register] = ACTIONS(2242), - [anon_sym_hide] = ACTIONS(2242), - [anon_sym_hide_DASHenv] = ACTIONS(2242), - [anon_sym_overlay] = ACTIONS(2242), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_as] = ACTIONS(2242), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2242), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2242), - [aux_sym__val_number_decimal_token1] = ACTIONS(2242), - [aux_sym__val_number_decimal_token2] = ACTIONS(2242), - [aux_sym__val_number_decimal_token3] = ACTIONS(2242), - [aux_sym__val_number_decimal_token4] = ACTIONS(2242), - [aux_sym__val_number_token1] = ACTIONS(2242), - [aux_sym__val_number_token2] = ACTIONS(2242), - [aux_sym__val_number_token3] = ACTIONS(2242), - [anon_sym_DQUOTE] = ACTIONS(2242), - [sym__str_single_quotes] = ACTIONS(2242), - [sym__str_back_ticks] = ACTIONS(2242), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2242), - [sym__entry_separator] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2242), + [534] = { + [sym_comment] = STATE(534), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [aux_sym_cmd_identifier_token2] = ACTIONS(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), + [aux_sym_cmd_identifier_token8] = ACTIONS(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [aux_sym_cmd_identifier_token16] = ACTIONS(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), + [aux_sym_cmd_identifier_token34] = ACTIONS(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_register] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(2244), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [sym__entry_separator] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2244), + [sym_raw_string_begin] = ACTIONS(980), }, - [452] = { - [sym_comment] = STATE(452), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_alias] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_let_DASHenv] = ACTIONS(2246), - [anon_sym_mut] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [aux_sym_cmd_identifier_token1] = ACTIONS(2246), - [aux_sym_cmd_identifier_token2] = ACTIONS(2246), - [aux_sym_cmd_identifier_token3] = ACTIONS(2246), - [aux_sym_cmd_identifier_token4] = ACTIONS(2246), - [aux_sym_cmd_identifier_token5] = ACTIONS(2246), - [aux_sym_cmd_identifier_token6] = ACTIONS(2246), - [aux_sym_cmd_identifier_token7] = ACTIONS(2246), - [aux_sym_cmd_identifier_token8] = ACTIONS(2246), - [aux_sym_cmd_identifier_token9] = ACTIONS(2246), - [aux_sym_cmd_identifier_token10] = ACTIONS(2246), - [aux_sym_cmd_identifier_token11] = ACTIONS(2246), - [aux_sym_cmd_identifier_token12] = ACTIONS(2246), - [aux_sym_cmd_identifier_token13] = ACTIONS(2246), - [aux_sym_cmd_identifier_token14] = ACTIONS(2246), - [aux_sym_cmd_identifier_token15] = ACTIONS(2246), - [aux_sym_cmd_identifier_token16] = ACTIONS(2246), - [aux_sym_cmd_identifier_token17] = ACTIONS(2246), - [aux_sym_cmd_identifier_token18] = ACTIONS(2246), - [aux_sym_cmd_identifier_token19] = ACTIONS(2246), - [aux_sym_cmd_identifier_token20] = ACTIONS(2246), - [aux_sym_cmd_identifier_token21] = ACTIONS(2246), - [aux_sym_cmd_identifier_token22] = ACTIONS(2246), - [aux_sym_cmd_identifier_token23] = ACTIONS(2246), - [aux_sym_cmd_identifier_token24] = ACTIONS(2246), - [aux_sym_cmd_identifier_token25] = ACTIONS(2246), - [aux_sym_cmd_identifier_token26] = ACTIONS(2246), - [aux_sym_cmd_identifier_token27] = ACTIONS(2246), - [aux_sym_cmd_identifier_token28] = ACTIONS(2246), - [aux_sym_cmd_identifier_token29] = ACTIONS(2246), - [aux_sym_cmd_identifier_token30] = ACTIONS(2246), - [aux_sym_cmd_identifier_token31] = ACTIONS(2246), - [aux_sym_cmd_identifier_token32] = ACTIONS(2246), - [aux_sym_cmd_identifier_token33] = ACTIONS(2246), - [aux_sym_cmd_identifier_token34] = ACTIONS(2246), - [aux_sym_cmd_identifier_token35] = ACTIONS(2246), - [aux_sym_cmd_identifier_token36] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(2246), - [anon_sym_false] = ACTIONS(2246), - [anon_sym_null] = ACTIONS(2246), - [aux_sym_cmd_identifier_token38] = ACTIONS(2246), - [aux_sym_cmd_identifier_token39] = ACTIONS(2246), - [aux_sym_cmd_identifier_token40] = ACTIONS(2246), - [anon_sym_def] = ACTIONS(2246), - [anon_sym_export_DASHenv] = ACTIONS(2246), - [anon_sym_extern] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_use] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_DOLLAR] = ACTIONS(2246), - [anon_sym_error] = ACTIONS(2246), - [anon_sym_list] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [anon_sym_loop] = ACTIONS(2246), - [anon_sym_make] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_match] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_catch] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_source] = ACTIONS(2246), - [anon_sym_source_DASHenv] = ACTIONS(2246), - [anon_sym_register] = ACTIONS(2246), - [anon_sym_hide] = ACTIONS(2246), - [anon_sym_hide_DASHenv] = ACTIONS(2246), - [anon_sym_overlay] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_as] = ACTIONS(2246), - [anon_sym_LPAREN2] = ACTIONS(2248), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2246), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2246), - [aux_sym__val_number_decimal_token2] = ACTIONS(2246), - [aux_sym__val_number_decimal_token3] = ACTIONS(2246), - [aux_sym__val_number_decimal_token4] = ACTIONS(2246), - [aux_sym__val_number_token1] = ACTIONS(2246), - [aux_sym__val_number_token2] = ACTIONS(2246), - [aux_sym__val_number_token3] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [sym__str_single_quotes] = ACTIONS(2246), - [sym__str_back_ticks] = ACTIONS(2246), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2246), + [535] = { + [sym_comment] = STATE(535), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(984), + [aux_sym_cmd_identifier_token3] = ACTIONS(984), + [aux_sym_cmd_identifier_token4] = ACTIONS(984), + [aux_sym_cmd_identifier_token5] = ACTIONS(984), + [aux_sym_cmd_identifier_token6] = ACTIONS(984), + [aux_sym_cmd_identifier_token7] = ACTIONS(984), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(984), + [aux_sym_cmd_identifier_token17] = ACTIONS(984), + [aux_sym_cmd_identifier_token18] = ACTIONS(984), + [aux_sym_cmd_identifier_token19] = ACTIONS(984), + [aux_sym_cmd_identifier_token20] = ACTIONS(984), + [aux_sym_cmd_identifier_token21] = ACTIONS(984), + [aux_sym_cmd_identifier_token22] = ACTIONS(984), + [aux_sym_cmd_identifier_token23] = ACTIONS(984), + [aux_sym_cmd_identifier_token24] = ACTIONS(984), + [aux_sym_cmd_identifier_token25] = ACTIONS(984), + [aux_sym_cmd_identifier_token26] = ACTIONS(984), + [aux_sym_cmd_identifier_token27] = ACTIONS(984), + [aux_sym_cmd_identifier_token28] = ACTIONS(984), + [aux_sym_cmd_identifier_token29] = ACTIONS(984), + [aux_sym_cmd_identifier_token30] = ACTIONS(984), + [aux_sym_cmd_identifier_token31] = ACTIONS(984), + [aux_sym_cmd_identifier_token32] = ACTIONS(984), + [aux_sym_cmd_identifier_token33] = ACTIONS(984), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(984), + [aux_sym_cmd_identifier_token36] = ACTIONS(984), + [aux_sym_cmd_identifier_token37] = ACTIONS(984), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), + [sym__entry_separator] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(986), + }, + [536] = { + [sym_comment] = STATE(536), + [anon_sym_export] = ACTIONS(2248), + [anon_sym_alias] = ACTIONS(2248), + [anon_sym_let] = ACTIONS(2248), + [anon_sym_let_DASHenv] = ACTIONS(2248), + [anon_sym_mut] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [aux_sym_cmd_identifier_token1] = ACTIONS(2248), + [aux_sym_cmd_identifier_token2] = ACTIONS(2248), + [aux_sym_cmd_identifier_token3] = ACTIONS(2248), + [aux_sym_cmd_identifier_token4] = ACTIONS(2248), + [aux_sym_cmd_identifier_token5] = ACTIONS(2248), + [aux_sym_cmd_identifier_token6] = ACTIONS(2248), + [aux_sym_cmd_identifier_token7] = ACTIONS(2248), + [aux_sym_cmd_identifier_token8] = ACTIONS(2248), + [aux_sym_cmd_identifier_token9] = ACTIONS(2248), + [aux_sym_cmd_identifier_token10] = ACTIONS(2248), + [aux_sym_cmd_identifier_token11] = ACTIONS(2248), + [aux_sym_cmd_identifier_token12] = ACTIONS(2248), + [aux_sym_cmd_identifier_token13] = ACTIONS(2248), + [aux_sym_cmd_identifier_token14] = ACTIONS(2248), + [aux_sym_cmd_identifier_token15] = ACTIONS(2248), + [aux_sym_cmd_identifier_token16] = ACTIONS(2248), + [aux_sym_cmd_identifier_token17] = ACTIONS(2248), + [aux_sym_cmd_identifier_token18] = ACTIONS(2248), + [aux_sym_cmd_identifier_token19] = ACTIONS(2248), + [aux_sym_cmd_identifier_token20] = ACTIONS(2248), + [aux_sym_cmd_identifier_token21] = ACTIONS(2248), + [aux_sym_cmd_identifier_token22] = ACTIONS(2248), + [aux_sym_cmd_identifier_token23] = ACTIONS(2248), + [aux_sym_cmd_identifier_token24] = ACTIONS(2248), + [aux_sym_cmd_identifier_token25] = ACTIONS(2248), + [aux_sym_cmd_identifier_token26] = ACTIONS(2248), + [aux_sym_cmd_identifier_token27] = ACTIONS(2248), + [aux_sym_cmd_identifier_token28] = ACTIONS(2248), + [aux_sym_cmd_identifier_token29] = ACTIONS(2248), + [aux_sym_cmd_identifier_token30] = ACTIONS(2248), + [aux_sym_cmd_identifier_token31] = ACTIONS(2248), + [aux_sym_cmd_identifier_token32] = ACTIONS(2248), + [aux_sym_cmd_identifier_token33] = ACTIONS(2248), + [aux_sym_cmd_identifier_token34] = ACTIONS(2248), + [aux_sym_cmd_identifier_token35] = ACTIONS(2248), + [aux_sym_cmd_identifier_token36] = ACTIONS(2248), + [aux_sym_cmd_identifier_token37] = ACTIONS(2248), + [aux_sym_cmd_identifier_token38] = ACTIONS(2248), + [aux_sym_cmd_identifier_token39] = ACTIONS(2248), + [aux_sym_cmd_identifier_token40] = ACTIONS(2248), + [anon_sym_def] = ACTIONS(2248), + [anon_sym_export_DASHenv] = ACTIONS(2248), + [anon_sym_extern] = ACTIONS(2248), + [anon_sym_module] = ACTIONS(2248), + [anon_sym_use] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2248), + [anon_sym_DOLLAR] = ACTIONS(2248), + [anon_sym_error] = ACTIONS(2248), + [anon_sym_DASH2] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_in2] = ACTIONS(2248), + [anon_sym_loop] = ACTIONS(2248), + [anon_sym_make] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_do] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_else] = ACTIONS(2248), + [anon_sym_match] = ACTIONS(2248), + [anon_sym_RBRACE] = ACTIONS(2248), + [anon_sym_try] = ACTIONS(2248), + [anon_sym_catch] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_source] = ACTIONS(2248), + [anon_sym_source_DASHenv] = ACTIONS(2248), + [anon_sym_register] = ACTIONS(2248), + [anon_sym_hide] = ACTIONS(2248), + [anon_sym_hide_DASHenv] = ACTIONS(2248), + [anon_sym_overlay] = ACTIONS(2248), + [anon_sym_as] = ACTIONS(2248), + [anon_sym_LPAREN2] = ACTIONS(2250), + [anon_sym_PLUS2] = ACTIONS(2248), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2248), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2248), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2248), + [aux_sym__val_number_decimal_token3] = ACTIONS(2248), + [aux_sym__val_number_decimal_token4] = ACTIONS(2248), + [aux_sym__val_number_token1] = ACTIONS(2248), + [aux_sym__val_number_token2] = ACTIONS(2248), + [aux_sym__val_number_token3] = ACTIONS(2248), + [aux_sym__val_number_token4] = ACTIONS(2248), + [aux_sym__val_number_token5] = ACTIONS(2248), + [aux_sym__val_number_token6] = ACTIONS(2248), + [anon_sym_DQUOTE] = ACTIONS(2248), + [sym__str_single_quotes] = ACTIONS(2248), + [sym__str_back_ticks] = ACTIONS(2248), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2248), [sym__entry_separator] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2246), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2252), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2248), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2250), }, - [453] = { - [sym_comment] = STATE(453), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), + [537] = { + [sym_comment] = STATE(537), + [anon_sym_export] = ACTIONS(2252), + [anon_sym_alias] = ACTIONS(2252), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_let_DASHenv] = ACTIONS(2252), + [anon_sym_mut] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [aux_sym_cmd_identifier_token1] = ACTIONS(2252), + [aux_sym_cmd_identifier_token2] = ACTIONS(2252), + [aux_sym_cmd_identifier_token3] = ACTIONS(2252), + [aux_sym_cmd_identifier_token4] = ACTIONS(2252), + [aux_sym_cmd_identifier_token5] = ACTIONS(2252), + [aux_sym_cmd_identifier_token6] = ACTIONS(2252), + [aux_sym_cmd_identifier_token7] = ACTIONS(2252), + [aux_sym_cmd_identifier_token8] = ACTIONS(2252), + [aux_sym_cmd_identifier_token9] = ACTIONS(2252), + [aux_sym_cmd_identifier_token10] = ACTIONS(2252), + [aux_sym_cmd_identifier_token11] = ACTIONS(2252), + [aux_sym_cmd_identifier_token12] = ACTIONS(2252), + [aux_sym_cmd_identifier_token13] = ACTIONS(2252), + [aux_sym_cmd_identifier_token14] = ACTIONS(2252), + [aux_sym_cmd_identifier_token15] = ACTIONS(2252), + [aux_sym_cmd_identifier_token16] = ACTIONS(2252), + [aux_sym_cmd_identifier_token17] = ACTIONS(2252), + [aux_sym_cmd_identifier_token18] = ACTIONS(2252), + [aux_sym_cmd_identifier_token19] = ACTIONS(2252), + [aux_sym_cmd_identifier_token20] = ACTIONS(2252), + [aux_sym_cmd_identifier_token21] = ACTIONS(2252), + [aux_sym_cmd_identifier_token22] = ACTIONS(2252), + [aux_sym_cmd_identifier_token23] = ACTIONS(2252), + [aux_sym_cmd_identifier_token24] = ACTIONS(2252), + [aux_sym_cmd_identifier_token25] = ACTIONS(2252), + [aux_sym_cmd_identifier_token26] = ACTIONS(2252), + [aux_sym_cmd_identifier_token27] = ACTIONS(2252), + [aux_sym_cmd_identifier_token28] = ACTIONS(2252), + [aux_sym_cmd_identifier_token29] = ACTIONS(2252), + [aux_sym_cmd_identifier_token30] = ACTIONS(2252), + [aux_sym_cmd_identifier_token31] = ACTIONS(2252), + [aux_sym_cmd_identifier_token32] = ACTIONS(2252), + [aux_sym_cmd_identifier_token33] = ACTIONS(2252), + [aux_sym_cmd_identifier_token34] = ACTIONS(2252), + [aux_sym_cmd_identifier_token35] = ACTIONS(2252), + [aux_sym_cmd_identifier_token36] = ACTIONS(2252), + [aux_sym_cmd_identifier_token37] = ACTIONS(2252), + [aux_sym_cmd_identifier_token38] = ACTIONS(2252), + [aux_sym_cmd_identifier_token39] = ACTIONS(2252), + [aux_sym_cmd_identifier_token40] = ACTIONS(2252), + [anon_sym_def] = ACTIONS(2252), + [anon_sym_export_DASHenv] = ACTIONS(2252), + [anon_sym_extern] = ACTIONS(2252), + [anon_sym_module] = ACTIONS(2252), + [anon_sym_use] = ACTIONS(2252), + [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(2252), + [anon_sym_error] = ACTIONS(2252), + [anon_sym_DASH2] = ACTIONS(2252), + [anon_sym_break] = ACTIONS(2252), + [anon_sym_continue] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_in2] = ACTIONS(2252), + [anon_sym_loop] = ACTIONS(2252), + [anon_sym_make] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_do] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_else] = ACTIONS(2252), + [anon_sym_match] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2252), + [anon_sym_try] = ACTIONS(2252), + [anon_sym_catch] = ACTIONS(2252), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_source] = ACTIONS(2252), + [anon_sym_source_DASHenv] = ACTIONS(2252), + [anon_sym_register] = ACTIONS(2252), + [anon_sym_hide] = ACTIONS(2252), + [anon_sym_hide_DASHenv] = ACTIONS(2252), + [anon_sym_overlay] = ACTIONS(2252), + [anon_sym_as] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2252), + [aux_sym__val_number_decimal_token1] = ACTIONS(2252), + [aux_sym__val_number_decimal_token2] = ACTIONS(2252), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [aux_sym__val_number_token1] = ACTIONS(2252), + [aux_sym__val_number_token2] = ACTIONS(2252), + [aux_sym__val_number_token3] = ACTIONS(2252), + [aux_sym__val_number_token4] = ACTIONS(2252), + [aux_sym__val_number_token5] = ACTIONS(2252), + [aux_sym__val_number_token6] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2252), + [sym__str_single_quotes] = ACTIONS(2252), + [sym__str_back_ticks] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2252), + [sym__entry_separator] = ACTIONS(2256), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2258), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), + [sym_raw_string_begin] = ACTIONS(2256), }, - [454] = { - [sym_comment] = STATE(454), - [anon_sym_export] = ACTIONS(1090), - [anon_sym_alias] = ACTIONS(1090), - [anon_sym_let] = ACTIONS(1090), - [anon_sym_let_DASHenv] = ACTIONS(1090), - [anon_sym_mut] = ACTIONS(1090), - [anon_sym_const] = ACTIONS(1090), - [aux_sym_cmd_identifier_token1] = ACTIONS(1090), - [aux_sym_cmd_identifier_token2] = ACTIONS(1090), - [aux_sym_cmd_identifier_token3] = ACTIONS(1090), - [aux_sym_cmd_identifier_token4] = ACTIONS(1090), - [aux_sym_cmd_identifier_token5] = ACTIONS(1090), - [aux_sym_cmd_identifier_token6] = ACTIONS(1090), - [aux_sym_cmd_identifier_token7] = ACTIONS(1090), - [aux_sym_cmd_identifier_token8] = ACTIONS(1090), - [aux_sym_cmd_identifier_token9] = ACTIONS(1090), - [aux_sym_cmd_identifier_token10] = ACTIONS(1090), - [aux_sym_cmd_identifier_token11] = ACTIONS(1090), - [aux_sym_cmd_identifier_token12] = ACTIONS(1090), - [aux_sym_cmd_identifier_token13] = ACTIONS(1090), - [aux_sym_cmd_identifier_token14] = ACTIONS(1090), - [aux_sym_cmd_identifier_token15] = ACTIONS(1090), - [aux_sym_cmd_identifier_token16] = ACTIONS(1090), - [aux_sym_cmd_identifier_token17] = ACTIONS(1090), - [aux_sym_cmd_identifier_token18] = ACTIONS(1090), - [aux_sym_cmd_identifier_token19] = ACTIONS(1090), - [aux_sym_cmd_identifier_token20] = ACTIONS(1090), - [aux_sym_cmd_identifier_token21] = ACTIONS(1090), - [aux_sym_cmd_identifier_token22] = ACTIONS(1090), - [aux_sym_cmd_identifier_token23] = ACTIONS(1090), - [aux_sym_cmd_identifier_token24] = ACTIONS(1090), - [aux_sym_cmd_identifier_token25] = ACTIONS(1090), - [aux_sym_cmd_identifier_token26] = ACTIONS(1090), - [aux_sym_cmd_identifier_token27] = ACTIONS(1090), - [aux_sym_cmd_identifier_token28] = ACTIONS(1090), - [aux_sym_cmd_identifier_token29] = ACTIONS(1090), - [aux_sym_cmd_identifier_token30] = ACTIONS(1090), - [aux_sym_cmd_identifier_token31] = ACTIONS(1090), - [aux_sym_cmd_identifier_token32] = ACTIONS(1090), - [aux_sym_cmd_identifier_token33] = ACTIONS(1090), - [aux_sym_cmd_identifier_token34] = ACTIONS(1090), - [aux_sym_cmd_identifier_token35] = ACTIONS(1090), - [aux_sym_cmd_identifier_token36] = ACTIONS(1090), - [anon_sym_true] = ACTIONS(1092), - [anon_sym_false] = ACTIONS(1092), - [anon_sym_null] = ACTIONS(1092), - [aux_sym_cmd_identifier_token38] = ACTIONS(1090), - [aux_sym_cmd_identifier_token39] = ACTIONS(1092), - [aux_sym_cmd_identifier_token40] = ACTIONS(1092), - [anon_sym_def] = ACTIONS(1090), - [anon_sym_export_DASHenv] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(1090), - [anon_sym_module] = ACTIONS(1090), - [anon_sym_use] = ACTIONS(1090), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_error] = ACTIONS(1090), - [anon_sym_list] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_break] = ACTIONS(1090), - [anon_sym_continue] = ACTIONS(1090), - [anon_sym_for] = ACTIONS(1090), - [anon_sym_in] = ACTIONS(1090), - [anon_sym_loop] = ACTIONS(1090), - [anon_sym_make] = ACTIONS(1090), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(1090), - [anon_sym_if] = ACTIONS(1090), - [anon_sym_else] = ACTIONS(1090), - [anon_sym_match] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_try] = ACTIONS(1090), - [anon_sym_catch] = ACTIONS(1090), - [anon_sym_return] = ACTIONS(1090), - [anon_sym_source] = ACTIONS(1090), - [anon_sym_source_DASHenv] = ACTIONS(1090), - [anon_sym_register] = ACTIONS(1090), - [anon_sym_hide] = ACTIONS(1090), - [anon_sym_hide_DASHenv] = ACTIONS(1090), - [anon_sym_overlay] = ACTIONS(1090), - [anon_sym_new] = ACTIONS(1090), - [anon_sym_as] = ACTIONS(1090), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1092), - [anon_sym_DOT_DOT2] = ACTIONS(2254), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2256), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2256), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1092), - [aux_sym__val_number_decimal_token1] = ACTIONS(1090), - [aux_sym__val_number_decimal_token2] = ACTIONS(1092), - [aux_sym__val_number_decimal_token3] = ACTIONS(1092), - [aux_sym__val_number_decimal_token4] = ACTIONS(1092), - [aux_sym__val_number_token1] = ACTIONS(1092), - [aux_sym__val_number_token2] = ACTIONS(1092), - [aux_sym__val_number_token3] = ACTIONS(1092), - [anon_sym_DQUOTE] = ACTIONS(1092), - [sym__str_single_quotes] = ACTIONS(1092), - [sym__str_back_ticks] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1092), + [538] = { + [sym_comment] = STATE(538), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1783), + [aux_sym_cmd_identifier_token3] = ACTIONS(1783), + [aux_sym_cmd_identifier_token4] = ACTIONS(1783), + [aux_sym_cmd_identifier_token5] = ACTIONS(1783), + [aux_sym_cmd_identifier_token6] = ACTIONS(1783), + [aux_sym_cmd_identifier_token7] = ACTIONS(1783), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1783), + [aux_sym_cmd_identifier_token11] = ACTIONS(1783), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1783), + [aux_sym_cmd_identifier_token17] = ACTIONS(1783), + [aux_sym_cmd_identifier_token18] = ACTIONS(1783), + [aux_sym_cmd_identifier_token19] = ACTIONS(1783), + [aux_sym_cmd_identifier_token20] = ACTIONS(1783), + [aux_sym_cmd_identifier_token21] = ACTIONS(1783), + [aux_sym_cmd_identifier_token22] = ACTIONS(1783), + [aux_sym_cmd_identifier_token23] = ACTIONS(1783), + [aux_sym_cmd_identifier_token24] = ACTIONS(1783), + [aux_sym_cmd_identifier_token25] = ACTIONS(1783), + [aux_sym_cmd_identifier_token26] = ACTIONS(1783), + [aux_sym_cmd_identifier_token27] = ACTIONS(1783), + [aux_sym_cmd_identifier_token28] = ACTIONS(1783), + [aux_sym_cmd_identifier_token29] = ACTIONS(1783), + [aux_sym_cmd_identifier_token30] = ACTIONS(1783), + [aux_sym_cmd_identifier_token31] = ACTIONS(1783), + [aux_sym_cmd_identifier_token32] = ACTIONS(1783), + [aux_sym_cmd_identifier_token33] = ACTIONS(1783), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1783), + [aux_sym_cmd_identifier_token36] = ACTIONS(1783), + [aux_sym_cmd_identifier_token37] = ACTIONS(1783), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1783), + [aux_sym_cmd_identifier_token40] = ACTIONS(1783), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1783), + [aux_sym__val_number_decimal_token3] = ACTIONS(1783), + [aux_sym__val_number_decimal_token4] = ACTIONS(1783), + [aux_sym__val_number_token1] = ACTIONS(1783), + [aux_sym__val_number_token2] = ACTIONS(1783), + [aux_sym__val_number_token3] = ACTIONS(1783), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [sym__str_single_quotes] = ACTIONS(1783), + [sym__str_back_ticks] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), + [sym__entry_separator] = ACTIONS(1785), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1785), }, - [455] = { - [sym_comment] = STATE(455), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [anon_sym_null] = ACTIONS(1703), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1703), - [aux_sym_cmd_identifier_token40] = ACTIONS(1703), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [aux_sym__val_number_decimal_token2] = ACTIONS(1703), - [aux_sym__val_number_decimal_token3] = ACTIONS(1703), - [aux_sym__val_number_decimal_token4] = ACTIONS(1703), - [aux_sym__val_number_token1] = ACTIONS(1703), - [aux_sym__val_number_token2] = ACTIONS(1703), - [aux_sym__val_number_token3] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym__str_single_quotes] = ACTIONS(1703), - [sym__str_back_ticks] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), - [sym__entry_separator] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1703), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), + [539] = { + [sym_comment] = STATE(539), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_alias] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_let_DASHenv] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [aux_sym_cmd_identifier_token1] = ACTIONS(2175), + [aux_sym_cmd_identifier_token2] = ACTIONS(2181), + [aux_sym_cmd_identifier_token3] = ACTIONS(2181), + [aux_sym_cmd_identifier_token4] = ACTIONS(2181), + [aux_sym_cmd_identifier_token5] = ACTIONS(2181), + [aux_sym_cmd_identifier_token6] = ACTIONS(2181), + [aux_sym_cmd_identifier_token7] = ACTIONS(2181), + [aux_sym_cmd_identifier_token8] = ACTIONS(2175), + [aux_sym_cmd_identifier_token9] = ACTIONS(2175), + [aux_sym_cmd_identifier_token10] = ACTIONS(2181), + [aux_sym_cmd_identifier_token11] = ACTIONS(2181), + [aux_sym_cmd_identifier_token12] = ACTIONS(2175), + [aux_sym_cmd_identifier_token13] = ACTIONS(2175), + [aux_sym_cmd_identifier_token14] = ACTIONS(2175), + [aux_sym_cmd_identifier_token15] = ACTIONS(2175), + [aux_sym_cmd_identifier_token16] = ACTIONS(2181), + [aux_sym_cmd_identifier_token17] = ACTIONS(2181), + [aux_sym_cmd_identifier_token18] = ACTIONS(2181), + [aux_sym_cmd_identifier_token19] = ACTIONS(2181), + [aux_sym_cmd_identifier_token20] = ACTIONS(2181), + [aux_sym_cmd_identifier_token21] = ACTIONS(2181), + [aux_sym_cmd_identifier_token22] = ACTIONS(2181), + [aux_sym_cmd_identifier_token23] = ACTIONS(2181), + [aux_sym_cmd_identifier_token24] = ACTIONS(2181), + [aux_sym_cmd_identifier_token25] = ACTIONS(2181), + [aux_sym_cmd_identifier_token26] = ACTIONS(2181), + [aux_sym_cmd_identifier_token27] = ACTIONS(2181), + [aux_sym_cmd_identifier_token28] = ACTIONS(2181), + [aux_sym_cmd_identifier_token29] = ACTIONS(2181), + [aux_sym_cmd_identifier_token30] = ACTIONS(2181), + [aux_sym_cmd_identifier_token31] = ACTIONS(2181), + [aux_sym_cmd_identifier_token32] = ACTIONS(2181), + [aux_sym_cmd_identifier_token33] = ACTIONS(2181), + [aux_sym_cmd_identifier_token34] = ACTIONS(2175), + [aux_sym_cmd_identifier_token35] = ACTIONS(2181), + [aux_sym_cmd_identifier_token36] = ACTIONS(2181), + [aux_sym_cmd_identifier_token37] = ACTIONS(2181), + [aux_sym_cmd_identifier_token38] = ACTIONS(2175), + [aux_sym_cmd_identifier_token39] = ACTIONS(2181), + [aux_sym_cmd_identifier_token40] = ACTIONS(2181), + [anon_sym_def] = ACTIONS(2175), + [anon_sym_export_DASHenv] = ACTIONS(2175), + [anon_sym_extern] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_use] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2181), + [anon_sym_error] = ACTIONS(2175), + [anon_sym_DASH2] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_in2] = ACTIONS(2175), + [anon_sym_loop] = ACTIONS(2175), + [anon_sym_make] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_catch] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_source] = ACTIONS(2175), + [anon_sym_source_DASHenv] = ACTIONS(2175), + [anon_sym_register] = ACTIONS(2175), + [anon_sym_hide] = ACTIONS(2175), + [anon_sym_hide_DASHenv] = ACTIONS(2175), + [anon_sym_overlay] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_PLUS2] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2181), + [anon_sym_DOT_DOT2] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2181), + [aux_sym__val_number_decimal_token1] = ACTIONS(2175), + [aux_sym__val_number_decimal_token2] = ACTIONS(2181), + [aux_sym__val_number_decimal_token3] = ACTIONS(2181), + [aux_sym__val_number_decimal_token4] = ACTIONS(2181), + [aux_sym__val_number_token1] = ACTIONS(2181), + [aux_sym__val_number_token2] = ACTIONS(2181), + [aux_sym__val_number_token3] = ACTIONS(2181), + [aux_sym__val_number_token4] = ACTIONS(2175), + [aux_sym__val_number_token5] = ACTIONS(2175), + [aux_sym__val_number_token6] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2181), + [sym__str_single_quotes] = ACTIONS(2181), + [sym__str_back_ticks] = ACTIONS(2181), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2181), + }, + [540] = { + [sym_comment] = STATE(540), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(998), + [aux_sym_cmd_identifier_token3] = ACTIONS(998), + [aux_sym_cmd_identifier_token4] = ACTIONS(998), + [aux_sym_cmd_identifier_token5] = ACTIONS(998), + [aux_sym_cmd_identifier_token6] = ACTIONS(998), + [aux_sym_cmd_identifier_token7] = ACTIONS(998), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(998), + [aux_sym_cmd_identifier_token17] = ACTIONS(998), + [aux_sym_cmd_identifier_token18] = ACTIONS(998), + [aux_sym_cmd_identifier_token19] = ACTIONS(998), + [aux_sym_cmd_identifier_token20] = ACTIONS(998), + [aux_sym_cmd_identifier_token21] = ACTIONS(998), + [aux_sym_cmd_identifier_token22] = ACTIONS(998), + [aux_sym_cmd_identifier_token23] = ACTIONS(998), + [aux_sym_cmd_identifier_token24] = ACTIONS(998), + [aux_sym_cmd_identifier_token25] = ACTIONS(998), + [aux_sym_cmd_identifier_token26] = ACTIONS(998), + [aux_sym_cmd_identifier_token27] = ACTIONS(998), + [aux_sym_cmd_identifier_token28] = ACTIONS(998), + [aux_sym_cmd_identifier_token29] = ACTIONS(998), + [aux_sym_cmd_identifier_token30] = ACTIONS(998), + [aux_sym_cmd_identifier_token31] = ACTIONS(998), + [aux_sym_cmd_identifier_token32] = ACTIONS(998), + [aux_sym_cmd_identifier_token33] = ACTIONS(998), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(998), + [aux_sym_cmd_identifier_token36] = ACTIONS(998), + [aux_sym_cmd_identifier_token37] = ACTIONS(998), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(998), + [aux_sym_cmd_identifier_token40] = ACTIONS(998), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(998), + [aux_sym__val_number_decimal_token3] = ACTIONS(998), + [aux_sym__val_number_decimal_token4] = ACTIONS(998), + [aux_sym__val_number_token1] = ACTIONS(998), + [aux_sym__val_number_token2] = ACTIONS(998), + [aux_sym__val_number_token3] = ACTIONS(998), + [aux_sym__val_number_token4] = ACTIONS(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), + [sym__entry_separator] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1705), + [sym_raw_string_begin] = ACTIONS(1000), }, - [456] = { - [sym_path] = STATE(631), - [sym_comment] = STATE(456), - [aux_sym_cell_path_repeat1] = STATE(466), - [anon_sym_export] = ACTIONS(1027), - [anon_sym_alias] = ACTIONS(1027), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_let_DASHenv] = ACTIONS(1027), - [anon_sym_mut] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [aux_sym_cmd_identifier_token1] = ACTIONS(1027), - [aux_sym_cmd_identifier_token2] = ACTIONS(1027), - [aux_sym_cmd_identifier_token3] = ACTIONS(1027), - [aux_sym_cmd_identifier_token4] = ACTIONS(1027), - [aux_sym_cmd_identifier_token5] = ACTIONS(1027), - [aux_sym_cmd_identifier_token6] = ACTIONS(1027), - [aux_sym_cmd_identifier_token7] = ACTIONS(1027), - [aux_sym_cmd_identifier_token8] = ACTIONS(1027), - [aux_sym_cmd_identifier_token9] = ACTIONS(1027), - [aux_sym_cmd_identifier_token10] = ACTIONS(1027), - [aux_sym_cmd_identifier_token11] = ACTIONS(1027), - [aux_sym_cmd_identifier_token12] = ACTIONS(1027), - [aux_sym_cmd_identifier_token13] = ACTIONS(1027), - [aux_sym_cmd_identifier_token14] = ACTIONS(1027), - [aux_sym_cmd_identifier_token15] = ACTIONS(1027), - [aux_sym_cmd_identifier_token16] = ACTIONS(1027), - [aux_sym_cmd_identifier_token17] = ACTIONS(1027), - [aux_sym_cmd_identifier_token18] = ACTIONS(1027), - [aux_sym_cmd_identifier_token19] = ACTIONS(1027), - [aux_sym_cmd_identifier_token20] = ACTIONS(1027), - [aux_sym_cmd_identifier_token21] = ACTIONS(1027), - [aux_sym_cmd_identifier_token22] = ACTIONS(1027), - [aux_sym_cmd_identifier_token23] = ACTIONS(1027), - [aux_sym_cmd_identifier_token24] = ACTIONS(1027), - [aux_sym_cmd_identifier_token25] = ACTIONS(1027), - [aux_sym_cmd_identifier_token26] = ACTIONS(1027), - [aux_sym_cmd_identifier_token27] = ACTIONS(1027), - [aux_sym_cmd_identifier_token28] = ACTIONS(1027), - [aux_sym_cmd_identifier_token29] = ACTIONS(1027), - [aux_sym_cmd_identifier_token30] = ACTIONS(1027), - [aux_sym_cmd_identifier_token31] = ACTIONS(1027), - [aux_sym_cmd_identifier_token32] = ACTIONS(1027), - [aux_sym_cmd_identifier_token33] = ACTIONS(1027), - [aux_sym_cmd_identifier_token34] = ACTIONS(1027), - [aux_sym_cmd_identifier_token35] = ACTIONS(1027), - [aux_sym_cmd_identifier_token36] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1029), - [aux_sym_cmd_identifier_token38] = ACTIONS(1027), - [aux_sym_cmd_identifier_token39] = ACTIONS(1029), - [aux_sym_cmd_identifier_token40] = ACTIONS(1029), - [anon_sym_def] = ACTIONS(1027), - [anon_sym_export_DASHenv] = ACTIONS(1027), - [anon_sym_extern] = ACTIONS(1027), - [anon_sym_module] = ACTIONS(1027), - [anon_sym_use] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_error] = ACTIONS(1027), - [anon_sym_list] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1027), - [anon_sym_continue] = ACTIONS(1027), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(1027), - [anon_sym_make] = ACTIONS(1027), - [anon_sym_while] = ACTIONS(1027), - [anon_sym_do] = ACTIONS(1027), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_else] = ACTIONS(1027), - [anon_sym_match] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1027), - [anon_sym_catch] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_source] = ACTIONS(1027), - [anon_sym_source_DASHenv] = ACTIONS(1027), - [anon_sym_register] = ACTIONS(1027), - [anon_sym_hide] = ACTIONS(1027), - [anon_sym_hide_DASHenv] = ACTIONS(1027), - [anon_sym_overlay] = ACTIONS(1027), - [anon_sym_new] = ACTIONS(1027), - [anon_sym_as] = ACTIONS(1027), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1029), - [aux_sym__val_number_decimal_token1] = ACTIONS(1027), - [aux_sym__val_number_decimal_token2] = ACTIONS(1029), - [aux_sym__val_number_decimal_token3] = ACTIONS(1029), - [aux_sym__val_number_decimal_token4] = ACTIONS(1029), - [aux_sym__val_number_token1] = ACTIONS(1029), - [aux_sym__val_number_token2] = ACTIONS(1029), - [aux_sym__val_number_token3] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1029), + [541] = { + [sym_comment] = STATE(541), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1002), + [aux_sym_cmd_identifier_token3] = ACTIONS(1002), + [aux_sym_cmd_identifier_token4] = ACTIONS(1002), + [aux_sym_cmd_identifier_token5] = ACTIONS(1002), + [aux_sym_cmd_identifier_token6] = ACTIONS(1002), + [aux_sym_cmd_identifier_token7] = ACTIONS(1002), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1002), + [aux_sym_cmd_identifier_token11] = ACTIONS(1002), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1002), + [aux_sym_cmd_identifier_token17] = ACTIONS(1002), + [aux_sym_cmd_identifier_token18] = ACTIONS(1002), + [aux_sym_cmd_identifier_token19] = ACTIONS(1002), + [aux_sym_cmd_identifier_token20] = ACTIONS(1002), + [aux_sym_cmd_identifier_token21] = ACTIONS(1002), + [aux_sym_cmd_identifier_token22] = ACTIONS(1002), + [aux_sym_cmd_identifier_token23] = ACTIONS(1002), + [aux_sym_cmd_identifier_token24] = ACTIONS(1002), + [aux_sym_cmd_identifier_token25] = ACTIONS(1002), + [aux_sym_cmd_identifier_token26] = ACTIONS(1002), + [aux_sym_cmd_identifier_token27] = ACTIONS(1002), + [aux_sym_cmd_identifier_token28] = ACTIONS(1002), + [aux_sym_cmd_identifier_token29] = ACTIONS(1002), + [aux_sym_cmd_identifier_token30] = ACTIONS(1002), + [aux_sym_cmd_identifier_token31] = ACTIONS(1002), + [aux_sym_cmd_identifier_token32] = ACTIONS(1002), + [aux_sym_cmd_identifier_token33] = ACTIONS(1002), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1002), + [aux_sym_cmd_identifier_token36] = ACTIONS(1002), + [aux_sym_cmd_identifier_token37] = ACTIONS(1002), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1002), + [aux_sym_cmd_identifier_token40] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1002), + [aux_sym__val_number_decimal_token4] = ACTIONS(1002), + [aux_sym__val_number_token1] = ACTIONS(1002), + [aux_sym__val_number_token2] = ACTIONS(1002), + [aux_sym__val_number_token3] = ACTIONS(1002), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), + [sym__entry_separator] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1004), }, - [457] = { - [sym_comment] = STATE(457), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1769), - [aux_sym_cmd_identifier_token40] = ACTIONS(1769), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), - [sym__entry_separator] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), + [542] = { + [sym_comment] = STATE(542), + [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(2139), + [aux_sym_cmd_identifier_token3] = ACTIONS(2139), + [aux_sym_cmd_identifier_token4] = ACTIONS(2139), + [aux_sym_cmd_identifier_token5] = ACTIONS(2139), + [aux_sym_cmd_identifier_token6] = ACTIONS(2139), + [aux_sym_cmd_identifier_token7] = ACTIONS(2139), + [aux_sym_cmd_identifier_token8] = ACTIONS(2133), + [aux_sym_cmd_identifier_token9] = ACTIONS(2133), + [aux_sym_cmd_identifier_token10] = ACTIONS(2139), + [aux_sym_cmd_identifier_token11] = ACTIONS(2139), + [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(2139), + [aux_sym_cmd_identifier_token17] = ACTIONS(2139), + [aux_sym_cmd_identifier_token18] = ACTIONS(2139), + [aux_sym_cmd_identifier_token19] = ACTIONS(2139), + [aux_sym_cmd_identifier_token20] = ACTIONS(2139), + [aux_sym_cmd_identifier_token21] = ACTIONS(2139), + [aux_sym_cmd_identifier_token22] = ACTIONS(2139), + [aux_sym_cmd_identifier_token23] = ACTIONS(2139), + [aux_sym_cmd_identifier_token24] = ACTIONS(2139), + [aux_sym_cmd_identifier_token25] = ACTIONS(2139), + [aux_sym_cmd_identifier_token26] = ACTIONS(2139), + [aux_sym_cmd_identifier_token27] = ACTIONS(2139), + [aux_sym_cmd_identifier_token28] = ACTIONS(2139), + [aux_sym_cmd_identifier_token29] = ACTIONS(2139), + [aux_sym_cmd_identifier_token30] = ACTIONS(2139), + [aux_sym_cmd_identifier_token31] = ACTIONS(2139), + [aux_sym_cmd_identifier_token32] = ACTIONS(2139), + [aux_sym_cmd_identifier_token33] = ACTIONS(2139), + [aux_sym_cmd_identifier_token34] = ACTIONS(2133), + [aux_sym_cmd_identifier_token35] = ACTIONS(2139), + [aux_sym_cmd_identifier_token36] = ACTIONS(2139), + [aux_sym_cmd_identifier_token37] = ACTIONS(2139), + [aux_sym_cmd_identifier_token38] = ACTIONS(2133), + [aux_sym_cmd_identifier_token39] = ACTIONS(2139), + [aux_sym_cmd_identifier_token40] = ACTIONS(2139), + [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(2139), + [anon_sym_DOLLAR] = ACTIONS(2139), + [anon_sym_error] = ACTIONS(2133), + [anon_sym_DASH2] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_in2] = 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(2139), + [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_as] = ACTIONS(2133), + [anon_sym_PLUS2] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2139), + [anon_sym_DOT_DOT2] = ACTIONS(2264), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2266), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2266), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2139), + [aux_sym__val_number_decimal_token1] = ACTIONS(2133), + [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), + [aux_sym__val_number_token4] = ACTIONS(2133), + [aux_sym__val_number_token5] = ACTIONS(2133), + [aux_sym__val_number_token6] = ACTIONS(2133), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2139), + }, + [543] = { + [sym_comment] = STATE(543), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [aux_sym_cmd_identifier_token37] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [sym__entry_separator] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1771), + [sym_raw_string_begin] = ACTIONS(992), }, - [458] = { - [sym_comment] = STATE(458), - [anon_sym_export] = ACTIONS(1826), - [anon_sym_alias] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_let_DASHenv] = ACTIONS(1826), - [anon_sym_mut] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [aux_sym_cmd_identifier_token1] = ACTIONS(1826), - [aux_sym_cmd_identifier_token2] = ACTIONS(1826), - [aux_sym_cmd_identifier_token3] = ACTIONS(1826), - [aux_sym_cmd_identifier_token4] = ACTIONS(1826), - [aux_sym_cmd_identifier_token5] = ACTIONS(1826), - [aux_sym_cmd_identifier_token6] = ACTIONS(1826), - [aux_sym_cmd_identifier_token7] = ACTIONS(1826), - [aux_sym_cmd_identifier_token8] = ACTIONS(1826), - [aux_sym_cmd_identifier_token9] = ACTIONS(1826), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1826), - [aux_sym_cmd_identifier_token13] = ACTIONS(1826), - [aux_sym_cmd_identifier_token14] = ACTIONS(1826), - [aux_sym_cmd_identifier_token15] = ACTIONS(1826), - [aux_sym_cmd_identifier_token16] = ACTIONS(1826), - [aux_sym_cmd_identifier_token17] = ACTIONS(1826), - [aux_sym_cmd_identifier_token18] = ACTIONS(1826), - [aux_sym_cmd_identifier_token19] = ACTIONS(1826), - [aux_sym_cmd_identifier_token20] = ACTIONS(1826), - [aux_sym_cmd_identifier_token21] = ACTIONS(1826), - [aux_sym_cmd_identifier_token22] = ACTIONS(1826), - [aux_sym_cmd_identifier_token23] = ACTIONS(1826), - [aux_sym_cmd_identifier_token24] = ACTIONS(1826), - [aux_sym_cmd_identifier_token25] = ACTIONS(1826), - [aux_sym_cmd_identifier_token26] = ACTIONS(1826), - [aux_sym_cmd_identifier_token27] = ACTIONS(1826), - [aux_sym_cmd_identifier_token28] = ACTIONS(1826), - [aux_sym_cmd_identifier_token29] = ACTIONS(1826), - [aux_sym_cmd_identifier_token30] = ACTIONS(1826), - [aux_sym_cmd_identifier_token31] = ACTIONS(1826), - [aux_sym_cmd_identifier_token32] = ACTIONS(1826), - [aux_sym_cmd_identifier_token33] = ACTIONS(1826), - [aux_sym_cmd_identifier_token34] = ACTIONS(1826), - [aux_sym_cmd_identifier_token35] = ACTIONS(1826), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(1826), - [anon_sym_export_DASHenv] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_module] = ACTIONS(1826), - [anon_sym_use] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_error] = ACTIONS(1826), - [anon_sym_list] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_loop] = ACTIONS(1826), - [anon_sym_make] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_match] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_catch] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_source] = ACTIONS(1826), - [anon_sym_source_DASHenv] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_hide] = ACTIONS(1826), - [anon_sym_hide_DASHenv] = ACTIONS(1826), - [anon_sym_overlay] = ACTIONS(1826), - [anon_sym_new] = ACTIONS(1826), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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), - [sym__entry_separator] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), + [544] = { + [sym_comment] = STATE(544), + [anon_sym_export] = ACTIONS(1866), + [anon_sym_alias] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_let_DASHenv] = ACTIONS(1866), + [anon_sym_mut] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [aux_sym_cmd_identifier_token1] = ACTIONS(1866), + [aux_sym_cmd_identifier_token2] = ACTIONS(1866), + [aux_sym_cmd_identifier_token3] = ACTIONS(1866), + [aux_sym_cmd_identifier_token4] = ACTIONS(1866), + [aux_sym_cmd_identifier_token5] = ACTIONS(1866), + [aux_sym_cmd_identifier_token6] = ACTIONS(1866), + [aux_sym_cmd_identifier_token7] = ACTIONS(1866), + [aux_sym_cmd_identifier_token8] = ACTIONS(1866), + [aux_sym_cmd_identifier_token9] = ACTIONS(1866), + [aux_sym_cmd_identifier_token10] = ACTIONS(1866), + [aux_sym_cmd_identifier_token11] = ACTIONS(1866), + [aux_sym_cmd_identifier_token12] = ACTIONS(1866), + [aux_sym_cmd_identifier_token13] = ACTIONS(1866), + [aux_sym_cmd_identifier_token14] = ACTIONS(1866), + [aux_sym_cmd_identifier_token15] = ACTIONS(1866), + [aux_sym_cmd_identifier_token16] = ACTIONS(1866), + [aux_sym_cmd_identifier_token17] = ACTIONS(1866), + [aux_sym_cmd_identifier_token18] = ACTIONS(1866), + [aux_sym_cmd_identifier_token19] = ACTIONS(1866), + [aux_sym_cmd_identifier_token20] = ACTIONS(1866), + [aux_sym_cmd_identifier_token21] = ACTIONS(1866), + [aux_sym_cmd_identifier_token22] = ACTIONS(1866), + [aux_sym_cmd_identifier_token23] = ACTIONS(1866), + [aux_sym_cmd_identifier_token24] = ACTIONS(1866), + [aux_sym_cmd_identifier_token25] = ACTIONS(1866), + [aux_sym_cmd_identifier_token26] = ACTIONS(1866), + [aux_sym_cmd_identifier_token27] = ACTIONS(1866), + [aux_sym_cmd_identifier_token28] = ACTIONS(1866), + [aux_sym_cmd_identifier_token29] = ACTIONS(1866), + [aux_sym_cmd_identifier_token30] = ACTIONS(1866), + [aux_sym_cmd_identifier_token31] = ACTIONS(1866), + [aux_sym_cmd_identifier_token32] = ACTIONS(1866), + [aux_sym_cmd_identifier_token33] = ACTIONS(1866), + [aux_sym_cmd_identifier_token34] = ACTIONS(1866), + [aux_sym_cmd_identifier_token35] = ACTIONS(1866), + [aux_sym_cmd_identifier_token36] = ACTIONS(1866), + [aux_sym_cmd_identifier_token37] = ACTIONS(1866), + [aux_sym_cmd_identifier_token38] = ACTIONS(1866), + [aux_sym_cmd_identifier_token39] = ACTIONS(1866), + [aux_sym_cmd_identifier_token40] = ACTIONS(1866), + [anon_sym_def] = ACTIONS(1866), + [anon_sym_export_DASHenv] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_module] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_error] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_make] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_catch] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_source] = ACTIONS(1866), + [anon_sym_source_DASHenv] = ACTIONS(1866), + [anon_sym_register] = ACTIONS(1866), + [anon_sym_hide] = ACTIONS(1866), + [anon_sym_hide_DASHenv] = ACTIONS(1866), + [anon_sym_overlay] = ACTIONS(1866), + [anon_sym_as] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1866), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [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), + [aux_sym__val_number_token4] = ACTIONS(1866), + [aux_sym__val_number_token5] = ACTIONS(1866), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1874), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1828), + [sym_raw_string_begin] = ACTIONS(1874), }, - [459] = { - [sym_comment] = STATE(459), - [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_QMARK2] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), - [anon_sym_DOT] = 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), + [545] = { + [sym_comment] = STATE(545), + [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(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(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(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_PLUS2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), + [aux_sym__immediate_decimal_token2] = ACTIONS(2123), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = ACTIONS(1755), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [546] = { + [sym_comment] = STATE(546), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(2268), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), + }, + [547] = { + [sym_comment] = STATE(547), + [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(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(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(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = ACTIONS(1755), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [548] = { + [sym_comment] = STATE(548), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), + }, + [549] = { + [sym_comment] = STATE(549), + [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(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(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [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(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(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = 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_as] = ACTIONS(1890), + [anon_sym_PLUS2] = ACTIONS(1890), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [550] = { + [sym_comment] = STATE(550), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_alias] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_let_DASHenv] = ACTIONS(2151), + [anon_sym_mut] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [aux_sym_cmd_identifier_token1] = ACTIONS(2151), + [aux_sym_cmd_identifier_token2] = ACTIONS(2153), + [aux_sym_cmd_identifier_token3] = ACTIONS(2153), + [aux_sym_cmd_identifier_token4] = ACTIONS(2153), + [aux_sym_cmd_identifier_token5] = ACTIONS(2153), + [aux_sym_cmd_identifier_token6] = ACTIONS(2153), + [aux_sym_cmd_identifier_token7] = ACTIONS(2153), + [aux_sym_cmd_identifier_token8] = ACTIONS(2151), + [aux_sym_cmd_identifier_token9] = ACTIONS(2151), + [aux_sym_cmd_identifier_token10] = ACTIONS(2153), + [aux_sym_cmd_identifier_token11] = ACTIONS(2153), + [aux_sym_cmd_identifier_token12] = ACTIONS(2151), + [aux_sym_cmd_identifier_token13] = ACTIONS(2151), + [aux_sym_cmd_identifier_token14] = ACTIONS(2151), + [aux_sym_cmd_identifier_token15] = ACTIONS(2151), + [aux_sym_cmd_identifier_token16] = ACTIONS(2153), + [aux_sym_cmd_identifier_token17] = ACTIONS(2153), + [aux_sym_cmd_identifier_token18] = ACTIONS(2153), + [aux_sym_cmd_identifier_token19] = ACTIONS(2153), + [aux_sym_cmd_identifier_token20] = ACTIONS(2153), + [aux_sym_cmd_identifier_token21] = ACTIONS(2153), + [aux_sym_cmd_identifier_token22] = ACTIONS(2153), + [aux_sym_cmd_identifier_token23] = ACTIONS(2153), + [aux_sym_cmd_identifier_token24] = ACTIONS(2153), + [aux_sym_cmd_identifier_token25] = ACTIONS(2153), + [aux_sym_cmd_identifier_token26] = ACTIONS(2153), + [aux_sym_cmd_identifier_token27] = ACTIONS(2153), + [aux_sym_cmd_identifier_token28] = ACTIONS(2153), + [aux_sym_cmd_identifier_token29] = ACTIONS(2153), + [aux_sym_cmd_identifier_token30] = ACTIONS(2153), + [aux_sym_cmd_identifier_token31] = ACTIONS(2153), + [aux_sym_cmd_identifier_token32] = ACTIONS(2153), + [aux_sym_cmd_identifier_token33] = ACTIONS(2153), + [aux_sym_cmd_identifier_token34] = ACTIONS(2151), + [aux_sym_cmd_identifier_token35] = ACTIONS(2153), + [aux_sym_cmd_identifier_token36] = ACTIONS(2153), + [aux_sym_cmd_identifier_token37] = ACTIONS(2153), + [aux_sym_cmd_identifier_token38] = ACTIONS(2151), + [aux_sym_cmd_identifier_token39] = ACTIONS(2153), + [aux_sym_cmd_identifier_token40] = ACTIONS(2153), + [anon_sym_def] = ACTIONS(2151), + [anon_sym_export_DASHenv] = ACTIONS(2151), + [anon_sym_extern] = ACTIONS(2151), + [anon_sym_module] = ACTIONS(2151), + [anon_sym_use] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_DOLLAR] = ACTIONS(2153), + [anon_sym_error] = ACTIONS(2151), + [anon_sym_DASH2] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_in2] = ACTIONS(2151), + [anon_sym_loop] = ACTIONS(2151), + [anon_sym_make] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_catch] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_source] = ACTIONS(2151), + [anon_sym_source_DASHenv] = ACTIONS(2151), + [anon_sym_register] = ACTIONS(2151), + [anon_sym_hide] = ACTIONS(2151), + [anon_sym_hide_DASHenv] = ACTIONS(2151), + [anon_sym_overlay] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_PLUS2] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2153), + [anon_sym_DOT_DOT2] = ACTIONS(2230), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2153), + [aux_sym__val_number_decimal_token1] = ACTIONS(2151), + [aux_sym__val_number_decimal_token2] = ACTIONS(2153), + [aux_sym__val_number_decimal_token3] = ACTIONS(2153), + [aux_sym__val_number_decimal_token4] = ACTIONS(2153), + [aux_sym__val_number_token1] = ACTIONS(2153), + [aux_sym__val_number_token2] = ACTIONS(2153), + [aux_sym__val_number_token3] = ACTIONS(2153), + [aux_sym__val_number_token4] = ACTIONS(2151), + [aux_sym__val_number_token5] = ACTIONS(2151), + [aux_sym__val_number_token6] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2153), + [sym__str_single_quotes] = ACTIONS(2153), + [sym__str_back_ticks] = ACTIONS(2153), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2153), + }, + [551] = { + [sym_comment] = STATE(551), + [anon_sym_export] = ACTIONS(2155), + [anon_sym_alias] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_let_DASHenv] = ACTIONS(2155), + [anon_sym_mut] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [aux_sym_cmd_identifier_token1] = ACTIONS(2155), + [aux_sym_cmd_identifier_token2] = ACTIONS(2157), + [aux_sym_cmd_identifier_token3] = ACTIONS(2157), + [aux_sym_cmd_identifier_token4] = ACTIONS(2157), + [aux_sym_cmd_identifier_token5] = ACTIONS(2157), + [aux_sym_cmd_identifier_token6] = ACTIONS(2157), + [aux_sym_cmd_identifier_token7] = ACTIONS(2157), + [aux_sym_cmd_identifier_token8] = ACTIONS(2155), + [aux_sym_cmd_identifier_token9] = ACTIONS(2155), + [aux_sym_cmd_identifier_token10] = ACTIONS(2157), + [aux_sym_cmd_identifier_token11] = ACTIONS(2157), + [aux_sym_cmd_identifier_token12] = ACTIONS(2155), + [aux_sym_cmd_identifier_token13] = ACTIONS(2155), + [aux_sym_cmd_identifier_token14] = ACTIONS(2155), + [aux_sym_cmd_identifier_token15] = ACTIONS(2155), + [aux_sym_cmd_identifier_token16] = ACTIONS(2157), + [aux_sym_cmd_identifier_token17] = ACTIONS(2157), + [aux_sym_cmd_identifier_token18] = ACTIONS(2157), + [aux_sym_cmd_identifier_token19] = ACTIONS(2157), + [aux_sym_cmd_identifier_token20] = ACTIONS(2157), + [aux_sym_cmd_identifier_token21] = ACTIONS(2157), + [aux_sym_cmd_identifier_token22] = ACTIONS(2157), + [aux_sym_cmd_identifier_token23] = ACTIONS(2157), + [aux_sym_cmd_identifier_token24] = ACTIONS(2157), + [aux_sym_cmd_identifier_token25] = ACTIONS(2157), + [aux_sym_cmd_identifier_token26] = ACTIONS(2157), + [aux_sym_cmd_identifier_token27] = ACTIONS(2157), + [aux_sym_cmd_identifier_token28] = ACTIONS(2157), + [aux_sym_cmd_identifier_token29] = ACTIONS(2157), + [aux_sym_cmd_identifier_token30] = ACTIONS(2157), + [aux_sym_cmd_identifier_token31] = ACTIONS(2157), + [aux_sym_cmd_identifier_token32] = ACTIONS(2157), + [aux_sym_cmd_identifier_token33] = ACTIONS(2157), + [aux_sym_cmd_identifier_token34] = ACTIONS(2155), + [aux_sym_cmd_identifier_token35] = ACTIONS(2157), + [aux_sym_cmd_identifier_token36] = ACTIONS(2157), + [aux_sym_cmd_identifier_token37] = ACTIONS(2157), + [aux_sym_cmd_identifier_token38] = ACTIONS(2155), + [aux_sym_cmd_identifier_token39] = ACTIONS(2157), + [aux_sym_cmd_identifier_token40] = ACTIONS(2157), + [anon_sym_def] = ACTIONS(2155), + [anon_sym_export_DASHenv] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_module] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_error] = ACTIONS(2155), + [anon_sym_DASH2] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_in2] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_make] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_do] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_else] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2155), + [anon_sym_catch] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_source] = ACTIONS(2155), + [anon_sym_source_DASHenv] = ACTIONS(2155), + [anon_sym_register] = ACTIONS(2155), + [anon_sym_hide] = ACTIONS(2155), + [anon_sym_hide_DASHenv] = ACTIONS(2155), + [anon_sym_overlay] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_PLUS2] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2157), + [anon_sym_DOT_DOT2] = ACTIONS(2230), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2157), + [aux_sym__val_number_decimal_token1] = ACTIONS(2155), + [aux_sym__val_number_decimal_token2] = ACTIONS(2157), + [aux_sym__val_number_decimal_token3] = ACTIONS(2157), + [aux_sym__val_number_decimal_token4] = ACTIONS(2157), + [aux_sym__val_number_token1] = ACTIONS(2157), + [aux_sym__val_number_token2] = ACTIONS(2157), + [aux_sym__val_number_token3] = ACTIONS(2157), + [aux_sym__val_number_token4] = ACTIONS(2155), + [aux_sym__val_number_token5] = ACTIONS(2155), + [aux_sym__val_number_token6] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(2157), + [sym__str_single_quotes] = ACTIONS(2157), + [sym__str_back_ticks] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2157), + }, + [552] = { + [sym_comment] = STATE(552), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [553] = { + [sym_comment] = STATE(553), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_alias] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_let_DASHenv] = ACTIONS(2129), + [anon_sym_mut] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [aux_sym_cmd_identifier_token1] = ACTIONS(2129), + [aux_sym_cmd_identifier_token2] = ACTIONS(2131), + [aux_sym_cmd_identifier_token3] = ACTIONS(2131), + [aux_sym_cmd_identifier_token4] = ACTIONS(2131), + [aux_sym_cmd_identifier_token5] = ACTIONS(2131), + [aux_sym_cmd_identifier_token6] = ACTIONS(2131), + [aux_sym_cmd_identifier_token7] = ACTIONS(2131), + [aux_sym_cmd_identifier_token8] = ACTIONS(2129), + [aux_sym_cmd_identifier_token9] = ACTIONS(2129), + [aux_sym_cmd_identifier_token10] = ACTIONS(2131), + [aux_sym_cmd_identifier_token11] = ACTIONS(2131), + [aux_sym_cmd_identifier_token12] = ACTIONS(2129), + [aux_sym_cmd_identifier_token13] = ACTIONS(2129), + [aux_sym_cmd_identifier_token14] = ACTIONS(2129), + [aux_sym_cmd_identifier_token15] = ACTIONS(2129), + [aux_sym_cmd_identifier_token16] = ACTIONS(2131), + [aux_sym_cmd_identifier_token17] = ACTIONS(2131), + [aux_sym_cmd_identifier_token18] = ACTIONS(2131), + [aux_sym_cmd_identifier_token19] = ACTIONS(2131), + [aux_sym_cmd_identifier_token20] = ACTIONS(2131), + [aux_sym_cmd_identifier_token21] = ACTIONS(2131), + [aux_sym_cmd_identifier_token22] = ACTIONS(2131), + [aux_sym_cmd_identifier_token23] = ACTIONS(2131), + [aux_sym_cmd_identifier_token24] = ACTIONS(2131), + [aux_sym_cmd_identifier_token25] = ACTIONS(2131), + [aux_sym_cmd_identifier_token26] = ACTIONS(2131), + [aux_sym_cmd_identifier_token27] = ACTIONS(2131), + [aux_sym_cmd_identifier_token28] = ACTIONS(2131), + [aux_sym_cmd_identifier_token29] = ACTIONS(2131), + [aux_sym_cmd_identifier_token30] = ACTIONS(2131), + [aux_sym_cmd_identifier_token31] = ACTIONS(2131), + [aux_sym_cmd_identifier_token32] = ACTIONS(2131), + [aux_sym_cmd_identifier_token33] = ACTIONS(2131), + [aux_sym_cmd_identifier_token34] = ACTIONS(2129), + [aux_sym_cmd_identifier_token35] = ACTIONS(2131), + [aux_sym_cmd_identifier_token36] = ACTIONS(2131), + [aux_sym_cmd_identifier_token37] = ACTIONS(2131), + [aux_sym_cmd_identifier_token38] = ACTIONS(2129), + [aux_sym_cmd_identifier_token39] = ACTIONS(2131), + [aux_sym_cmd_identifier_token40] = ACTIONS(2131), + [anon_sym_def] = ACTIONS(2129), + [anon_sym_export_DASHenv] = ACTIONS(2129), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_module] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_error] = ACTIONS(2129), + [anon_sym_DASH2] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_in2] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_make] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_else] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_catch] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_source] = ACTIONS(2129), + [anon_sym_source_DASHenv] = ACTIONS(2129), + [anon_sym_register] = ACTIONS(2129), + [anon_sym_hide] = ACTIONS(2129), + [anon_sym_hide_DASHenv] = ACTIONS(2129), + [anon_sym_overlay] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_PLUS2] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2131), + [anon_sym_DOT_DOT2] = ACTIONS(2129), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2131), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2131), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2131), + [aux_sym__val_number_decimal_token4] = ACTIONS(2131), + [aux_sym__val_number_token1] = ACTIONS(2131), + [aux_sym__val_number_token2] = ACTIONS(2131), + [aux_sym__val_number_token3] = ACTIONS(2131), + [aux_sym__val_number_token4] = ACTIONS(2129), + [aux_sym__val_number_token5] = ACTIONS(2129), + [aux_sym__val_number_token6] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2131), + [sym__str_single_quotes] = ACTIONS(2131), + [sym__str_back_ticks] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2131), + }, + [554] = { + [sym__expr_parenthesized_immediate] = STATE(7368), + [sym_comment] = STATE(554), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_alias] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_let_DASHenv] = ACTIONS(2151), + [anon_sym_mut] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [aux_sym_cmd_identifier_token1] = ACTIONS(2151), + [aux_sym_cmd_identifier_token2] = ACTIONS(2151), + [aux_sym_cmd_identifier_token3] = ACTIONS(2151), + [aux_sym_cmd_identifier_token4] = ACTIONS(2151), + [aux_sym_cmd_identifier_token5] = ACTIONS(2151), + [aux_sym_cmd_identifier_token6] = ACTIONS(2151), + [aux_sym_cmd_identifier_token7] = ACTIONS(2151), + [aux_sym_cmd_identifier_token8] = ACTIONS(2151), + [aux_sym_cmd_identifier_token9] = ACTIONS(2151), + [aux_sym_cmd_identifier_token10] = ACTIONS(2151), + [aux_sym_cmd_identifier_token11] = ACTIONS(2151), + [aux_sym_cmd_identifier_token12] = ACTIONS(2151), + [aux_sym_cmd_identifier_token13] = ACTIONS(2151), + [aux_sym_cmd_identifier_token14] = ACTIONS(2151), + [aux_sym_cmd_identifier_token15] = ACTIONS(2151), + [aux_sym_cmd_identifier_token16] = ACTIONS(2151), + [aux_sym_cmd_identifier_token17] = ACTIONS(2151), + [aux_sym_cmd_identifier_token18] = ACTIONS(2151), + [aux_sym_cmd_identifier_token19] = ACTIONS(2151), + [aux_sym_cmd_identifier_token20] = ACTIONS(2151), + [aux_sym_cmd_identifier_token21] = ACTIONS(2151), + [aux_sym_cmd_identifier_token22] = ACTIONS(2151), + [aux_sym_cmd_identifier_token23] = ACTIONS(2151), + [aux_sym_cmd_identifier_token24] = ACTIONS(2151), + [aux_sym_cmd_identifier_token25] = ACTIONS(2151), + [aux_sym_cmd_identifier_token26] = ACTIONS(2151), + [aux_sym_cmd_identifier_token27] = ACTIONS(2151), + [aux_sym_cmd_identifier_token28] = ACTIONS(2151), + [aux_sym_cmd_identifier_token29] = ACTIONS(2151), + [aux_sym_cmd_identifier_token30] = ACTIONS(2151), + [aux_sym_cmd_identifier_token31] = ACTIONS(2151), + [aux_sym_cmd_identifier_token32] = ACTIONS(2151), + [aux_sym_cmd_identifier_token33] = ACTIONS(2151), + [aux_sym_cmd_identifier_token34] = ACTIONS(2151), + [aux_sym_cmd_identifier_token35] = ACTIONS(2151), + [aux_sym_cmd_identifier_token36] = ACTIONS(2151), + [aux_sym_cmd_identifier_token37] = ACTIONS(2151), + [aux_sym_cmd_identifier_token38] = ACTIONS(2151), + [aux_sym_cmd_identifier_token39] = ACTIONS(2151), + [aux_sym_cmd_identifier_token40] = ACTIONS(2151), + [anon_sym_def] = ACTIONS(2151), + [anon_sym_export_DASHenv] = ACTIONS(2151), + [anon_sym_extern] = ACTIONS(2151), + [anon_sym_module] = ACTIONS(2151), + [anon_sym_use] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_error] = ACTIONS(2151), + [anon_sym_DASH2] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_in2] = ACTIONS(2151), + [anon_sym_loop] = ACTIONS(2151), + [anon_sym_make] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_catch] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_source] = ACTIONS(2151), + [anon_sym_source_DASHenv] = ACTIONS(2151), + [anon_sym_register] = ACTIONS(2151), + [anon_sym_hide] = ACTIONS(2151), + [anon_sym_hide_DASHenv] = ACTIONS(2151), + [anon_sym_overlay] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2151), + [aux_sym__val_number_decimal_token1] = ACTIONS(2151), + [aux_sym__val_number_decimal_token2] = ACTIONS(2151), + [aux_sym__val_number_decimal_token3] = ACTIONS(2151), + [aux_sym__val_number_decimal_token4] = ACTIONS(2151), + [aux_sym__val_number_token1] = ACTIONS(2151), + [aux_sym__val_number_token2] = ACTIONS(2151), + [aux_sym__val_number_token3] = ACTIONS(2151), + [aux_sym__val_number_token4] = ACTIONS(2151), + [aux_sym__val_number_token5] = ACTIONS(2151), + [aux_sym__val_number_token6] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [sym__str_single_quotes] = ACTIONS(2151), + [sym__str_back_ticks] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2151), + [sym__entry_separator] = ACTIONS(2153), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1060), + [sym_raw_string_begin] = ACTIONS(2153), }, - [460] = { - [sym_comment] = STATE(460), - [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(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), - [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(1062), - [anon_sym_DOLLAR] = ACTIONS(1062), - [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(1062), - [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_QMARK2] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [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), - [sym__entry_separator] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1062), + [555] = { + [sym_comment] = STATE(555), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_alias] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_let_DASHenv] = ACTIONS(2183), + [anon_sym_mut] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [aux_sym_cmd_identifier_token1] = ACTIONS(2183), + [aux_sym_cmd_identifier_token2] = ACTIONS(2185), + [aux_sym_cmd_identifier_token3] = ACTIONS(2185), + [aux_sym_cmd_identifier_token4] = ACTIONS(2185), + [aux_sym_cmd_identifier_token5] = ACTIONS(2185), + [aux_sym_cmd_identifier_token6] = ACTIONS(2185), + [aux_sym_cmd_identifier_token7] = ACTIONS(2185), + [aux_sym_cmd_identifier_token8] = ACTIONS(2183), + [aux_sym_cmd_identifier_token9] = ACTIONS(2183), + [aux_sym_cmd_identifier_token10] = ACTIONS(2185), + [aux_sym_cmd_identifier_token11] = ACTIONS(2185), + [aux_sym_cmd_identifier_token12] = ACTIONS(2183), + [aux_sym_cmd_identifier_token13] = ACTIONS(2183), + [aux_sym_cmd_identifier_token14] = ACTIONS(2183), + [aux_sym_cmd_identifier_token15] = ACTIONS(2183), + [aux_sym_cmd_identifier_token16] = ACTIONS(2185), + [aux_sym_cmd_identifier_token17] = ACTIONS(2185), + [aux_sym_cmd_identifier_token18] = ACTIONS(2185), + [aux_sym_cmd_identifier_token19] = ACTIONS(2185), + [aux_sym_cmd_identifier_token20] = ACTIONS(2185), + [aux_sym_cmd_identifier_token21] = ACTIONS(2185), + [aux_sym_cmd_identifier_token22] = ACTIONS(2185), + [aux_sym_cmd_identifier_token23] = ACTIONS(2185), + [aux_sym_cmd_identifier_token24] = ACTIONS(2185), + [aux_sym_cmd_identifier_token25] = ACTIONS(2185), + [aux_sym_cmd_identifier_token26] = ACTIONS(2185), + [aux_sym_cmd_identifier_token27] = ACTIONS(2185), + [aux_sym_cmd_identifier_token28] = ACTIONS(2185), + [aux_sym_cmd_identifier_token29] = ACTIONS(2185), + [aux_sym_cmd_identifier_token30] = ACTIONS(2185), + [aux_sym_cmd_identifier_token31] = ACTIONS(2185), + [aux_sym_cmd_identifier_token32] = ACTIONS(2185), + [aux_sym_cmd_identifier_token33] = ACTIONS(2185), + [aux_sym_cmd_identifier_token34] = ACTIONS(2183), + [aux_sym_cmd_identifier_token35] = ACTIONS(2185), + [aux_sym_cmd_identifier_token36] = ACTIONS(2185), + [aux_sym_cmd_identifier_token37] = ACTIONS(2185), + [aux_sym_cmd_identifier_token38] = ACTIONS(2183), + [aux_sym_cmd_identifier_token39] = ACTIONS(2185), + [aux_sym_cmd_identifier_token40] = ACTIONS(2185), + [anon_sym_def] = ACTIONS(2183), + [anon_sym_export_DASHenv] = ACTIONS(2183), + [anon_sym_extern] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_use] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_error] = ACTIONS(2183), + [anon_sym_DASH2] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_in2] = ACTIONS(2183), + [anon_sym_loop] = ACTIONS(2183), + [anon_sym_make] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_catch] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_source] = ACTIONS(2183), + [anon_sym_source_DASHenv] = ACTIONS(2183), + [anon_sym_register] = ACTIONS(2183), + [anon_sym_hide] = ACTIONS(2183), + [anon_sym_hide_DASHenv] = ACTIONS(2183), + [anon_sym_overlay] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_PLUS2] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2185), + [anon_sym_DOT_DOT2] = ACTIONS(2183), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2185), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2185), + [aux_sym__val_number_decimal_token1] = ACTIONS(2183), + [aux_sym__val_number_decimal_token2] = ACTIONS(2185), + [aux_sym__val_number_decimal_token3] = ACTIONS(2185), + [aux_sym__val_number_decimal_token4] = ACTIONS(2185), + [aux_sym__val_number_token1] = ACTIONS(2185), + [aux_sym__val_number_token2] = ACTIONS(2185), + [aux_sym__val_number_token3] = ACTIONS(2185), + [aux_sym__val_number_token4] = ACTIONS(2183), + [aux_sym__val_number_token5] = ACTIONS(2183), + [aux_sym__val_number_token6] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2185), + [sym__str_single_quotes] = ACTIONS(2185), + [sym__str_back_ticks] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2185), + }, + [556] = { + [sym__expr_parenthesized_immediate] = STATE(7368), + [sym_comment] = STATE(556), + [anon_sym_export] = ACTIONS(2155), + [anon_sym_alias] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_let_DASHenv] = ACTIONS(2155), + [anon_sym_mut] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [aux_sym_cmd_identifier_token1] = ACTIONS(2155), + [aux_sym_cmd_identifier_token2] = ACTIONS(2155), + [aux_sym_cmd_identifier_token3] = ACTIONS(2155), + [aux_sym_cmd_identifier_token4] = ACTIONS(2155), + [aux_sym_cmd_identifier_token5] = ACTIONS(2155), + [aux_sym_cmd_identifier_token6] = ACTIONS(2155), + [aux_sym_cmd_identifier_token7] = ACTIONS(2155), + [aux_sym_cmd_identifier_token8] = ACTIONS(2155), + [aux_sym_cmd_identifier_token9] = ACTIONS(2155), + [aux_sym_cmd_identifier_token10] = ACTIONS(2155), + [aux_sym_cmd_identifier_token11] = ACTIONS(2155), + [aux_sym_cmd_identifier_token12] = ACTIONS(2155), + [aux_sym_cmd_identifier_token13] = ACTIONS(2155), + [aux_sym_cmd_identifier_token14] = ACTIONS(2155), + [aux_sym_cmd_identifier_token15] = ACTIONS(2155), + [aux_sym_cmd_identifier_token16] = ACTIONS(2155), + [aux_sym_cmd_identifier_token17] = ACTIONS(2155), + [aux_sym_cmd_identifier_token18] = ACTIONS(2155), + [aux_sym_cmd_identifier_token19] = ACTIONS(2155), + [aux_sym_cmd_identifier_token20] = ACTIONS(2155), + [aux_sym_cmd_identifier_token21] = ACTIONS(2155), + [aux_sym_cmd_identifier_token22] = ACTIONS(2155), + [aux_sym_cmd_identifier_token23] = ACTIONS(2155), + [aux_sym_cmd_identifier_token24] = ACTIONS(2155), + [aux_sym_cmd_identifier_token25] = ACTIONS(2155), + [aux_sym_cmd_identifier_token26] = ACTIONS(2155), + [aux_sym_cmd_identifier_token27] = ACTIONS(2155), + [aux_sym_cmd_identifier_token28] = ACTIONS(2155), + [aux_sym_cmd_identifier_token29] = ACTIONS(2155), + [aux_sym_cmd_identifier_token30] = ACTIONS(2155), + [aux_sym_cmd_identifier_token31] = ACTIONS(2155), + [aux_sym_cmd_identifier_token32] = ACTIONS(2155), + [aux_sym_cmd_identifier_token33] = ACTIONS(2155), + [aux_sym_cmd_identifier_token34] = ACTIONS(2155), + [aux_sym_cmd_identifier_token35] = ACTIONS(2155), + [aux_sym_cmd_identifier_token36] = ACTIONS(2155), + [aux_sym_cmd_identifier_token37] = ACTIONS(2155), + [aux_sym_cmd_identifier_token38] = ACTIONS(2155), + [aux_sym_cmd_identifier_token39] = ACTIONS(2155), + [aux_sym_cmd_identifier_token40] = ACTIONS(2155), + [anon_sym_def] = ACTIONS(2155), + [anon_sym_export_DASHenv] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_module] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(2155), + [anon_sym_DASH2] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_in2] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_make] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_do] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_else] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_try] = ACTIONS(2155), + [anon_sym_catch] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_source] = ACTIONS(2155), + [anon_sym_source_DASHenv] = ACTIONS(2155), + [anon_sym_register] = ACTIONS(2155), + [anon_sym_hide] = ACTIONS(2155), + [anon_sym_hide_DASHenv] = ACTIONS(2155), + [anon_sym_overlay] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2155), + [aux_sym__val_number_decimal_token1] = ACTIONS(2155), + [aux_sym__val_number_decimal_token2] = ACTIONS(2155), + [aux_sym__val_number_decimal_token3] = ACTIONS(2155), + [aux_sym__val_number_decimal_token4] = ACTIONS(2155), + [aux_sym__val_number_token1] = ACTIONS(2155), + [aux_sym__val_number_token2] = ACTIONS(2155), + [aux_sym__val_number_token3] = ACTIONS(2155), + [aux_sym__val_number_token4] = ACTIONS(2155), + [aux_sym__val_number_token5] = ACTIONS(2155), + [aux_sym__val_number_token6] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(2155), + [sym__str_single_quotes] = ACTIONS(2155), + [sym__str_back_ticks] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2155), + [sym__entry_separator] = ACTIONS(2157), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1064), + [sym_raw_string_begin] = ACTIONS(2157), }, - [461] = { - [sym_comment] = STATE(461), - [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), + [557] = { + [sym__expr_parenthesized_immediate] = STATE(7703), + [sym_comment] = STATE(557), + [anon_sym_export] = ACTIONS(2270), + [anon_sym_alias] = ACTIONS(2270), + [anon_sym_let] = ACTIONS(2270), + [anon_sym_let_DASHenv] = ACTIONS(2270), + [anon_sym_mut] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(2270), + [aux_sym_cmd_identifier_token1] = ACTIONS(2270), + [aux_sym_cmd_identifier_token2] = ACTIONS(2270), + [aux_sym_cmd_identifier_token3] = ACTIONS(2270), + [aux_sym_cmd_identifier_token4] = ACTIONS(2270), + [aux_sym_cmd_identifier_token5] = ACTIONS(2270), + [aux_sym_cmd_identifier_token6] = ACTIONS(2270), + [aux_sym_cmd_identifier_token7] = ACTIONS(2270), + [aux_sym_cmd_identifier_token8] = ACTIONS(2270), + [aux_sym_cmd_identifier_token9] = ACTIONS(2270), + [aux_sym_cmd_identifier_token10] = ACTIONS(2270), + [aux_sym_cmd_identifier_token11] = ACTIONS(2270), + [aux_sym_cmd_identifier_token12] = ACTIONS(2270), + [aux_sym_cmd_identifier_token13] = ACTIONS(2270), + [aux_sym_cmd_identifier_token14] = ACTIONS(2270), + [aux_sym_cmd_identifier_token15] = ACTIONS(2270), + [aux_sym_cmd_identifier_token16] = ACTIONS(2270), + [aux_sym_cmd_identifier_token17] = ACTIONS(2270), + [aux_sym_cmd_identifier_token18] = ACTIONS(2270), + [aux_sym_cmd_identifier_token19] = ACTIONS(2270), + [aux_sym_cmd_identifier_token20] = ACTIONS(2270), + [aux_sym_cmd_identifier_token21] = ACTIONS(2270), + [aux_sym_cmd_identifier_token22] = ACTIONS(2270), + [aux_sym_cmd_identifier_token23] = ACTIONS(2270), + [aux_sym_cmd_identifier_token24] = ACTIONS(2270), + [aux_sym_cmd_identifier_token25] = ACTIONS(2270), + [aux_sym_cmd_identifier_token26] = ACTIONS(2270), + [aux_sym_cmd_identifier_token27] = ACTIONS(2270), + [aux_sym_cmd_identifier_token28] = ACTIONS(2270), + [aux_sym_cmd_identifier_token29] = ACTIONS(2270), + [aux_sym_cmd_identifier_token30] = ACTIONS(2270), + [aux_sym_cmd_identifier_token31] = ACTIONS(2270), + [aux_sym_cmd_identifier_token32] = ACTIONS(2270), + [aux_sym_cmd_identifier_token33] = ACTIONS(2270), + [aux_sym_cmd_identifier_token34] = ACTIONS(2270), + [aux_sym_cmd_identifier_token35] = ACTIONS(2270), + [aux_sym_cmd_identifier_token36] = ACTIONS(2270), + [aux_sym_cmd_identifier_token37] = ACTIONS(2270), + [aux_sym_cmd_identifier_token38] = ACTIONS(2270), + [aux_sym_cmd_identifier_token39] = ACTIONS(2270), + [aux_sym_cmd_identifier_token40] = ACTIONS(2270), + [anon_sym_def] = ACTIONS(2270), + [anon_sym_export_DASHenv] = ACTIONS(2270), + [anon_sym_extern] = ACTIONS(2270), + [anon_sym_module] = ACTIONS(2270), + [anon_sym_use] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(2270), + [anon_sym_DOLLAR] = ACTIONS(2270), + [anon_sym_error] = ACTIONS(2270), + [anon_sym_DASH2] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_in2] = ACTIONS(2270), + [anon_sym_loop] = ACTIONS(2270), + [anon_sym_make] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2270), + [anon_sym_do] = ACTIONS(2270), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_else] = ACTIONS(2270), + [anon_sym_match] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_try] = ACTIONS(2270), + [anon_sym_catch] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_source] = ACTIONS(2270), + [anon_sym_source_DASHenv] = ACTIONS(2270), + [anon_sym_register] = ACTIONS(2270), + [anon_sym_hide] = ACTIONS(2270), + [anon_sym_hide_DASHenv] = ACTIONS(2270), + [anon_sym_overlay] = ACTIONS(2270), + [anon_sym_as] = ACTIONS(2270), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(2270), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2270), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2270), + [aux_sym__val_number_decimal_token1] = ACTIONS(2270), + [aux_sym__val_number_decimal_token2] = ACTIONS(2270), + [aux_sym__val_number_decimal_token3] = ACTIONS(2270), + [aux_sym__val_number_decimal_token4] = ACTIONS(2270), + [aux_sym__val_number_token1] = ACTIONS(2270), + [aux_sym__val_number_token2] = ACTIONS(2270), + [aux_sym__val_number_token3] = ACTIONS(2270), + [aux_sym__val_number_token4] = ACTIONS(2270), + [aux_sym__val_number_token5] = ACTIONS(2270), + [aux_sym__val_number_token6] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym__str_single_quotes] = ACTIONS(2270), + [sym__str_back_ticks] = ACTIONS(2270), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2270), + [sym__entry_separator] = ACTIONS(2272), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1040), + [sym_raw_string_begin] = ACTIONS(2272), }, - [462] = { - [sym_comment] = STATE(462), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [anon_sym_null] = ACTIONS(1703), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1703), - [aux_sym_cmd_identifier_token40] = ACTIONS(1703), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), - [aux_sym__immediate_decimal_token1] = ACTIONS(2258), - [aux_sym__immediate_decimal_token2] = ACTIONS(2260), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [aux_sym__val_number_decimal_token2] = ACTIONS(1703), - [aux_sym__val_number_decimal_token3] = ACTIONS(1703), - [aux_sym__val_number_decimal_token4] = ACTIONS(1703), - [aux_sym__val_number_token1] = ACTIONS(1703), - [aux_sym__val_number_token2] = ACTIONS(1703), - [aux_sym__val_number_token3] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym__str_single_quotes] = ACTIONS(1703), - [sym__str_back_ticks] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), - [sym__entry_separator] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1703), + [558] = { + [sym__expr_parenthesized_immediate] = STATE(7703), + [sym_comment] = STATE(558), + [anon_sym_export] = ACTIONS(2274), + [anon_sym_alias] = ACTIONS(2274), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_let_DASHenv] = ACTIONS(2274), + [anon_sym_mut] = ACTIONS(2274), + [anon_sym_const] = ACTIONS(2274), + [aux_sym_cmd_identifier_token1] = ACTIONS(2274), + [aux_sym_cmd_identifier_token2] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2274), + [aux_sym_cmd_identifier_token4] = ACTIONS(2274), + [aux_sym_cmd_identifier_token5] = ACTIONS(2274), + [aux_sym_cmd_identifier_token6] = ACTIONS(2274), + [aux_sym_cmd_identifier_token7] = ACTIONS(2274), + [aux_sym_cmd_identifier_token8] = ACTIONS(2274), + [aux_sym_cmd_identifier_token9] = ACTIONS(2274), + [aux_sym_cmd_identifier_token10] = ACTIONS(2274), + [aux_sym_cmd_identifier_token11] = ACTIONS(2274), + [aux_sym_cmd_identifier_token12] = ACTIONS(2274), + [aux_sym_cmd_identifier_token13] = ACTIONS(2274), + [aux_sym_cmd_identifier_token14] = ACTIONS(2274), + [aux_sym_cmd_identifier_token15] = ACTIONS(2274), + [aux_sym_cmd_identifier_token16] = ACTIONS(2274), + [aux_sym_cmd_identifier_token17] = ACTIONS(2274), + [aux_sym_cmd_identifier_token18] = ACTIONS(2274), + [aux_sym_cmd_identifier_token19] = ACTIONS(2274), + [aux_sym_cmd_identifier_token20] = ACTIONS(2274), + [aux_sym_cmd_identifier_token21] = ACTIONS(2274), + [aux_sym_cmd_identifier_token22] = ACTIONS(2274), + [aux_sym_cmd_identifier_token23] = ACTIONS(2274), + [aux_sym_cmd_identifier_token24] = ACTIONS(2274), + [aux_sym_cmd_identifier_token25] = ACTIONS(2274), + [aux_sym_cmd_identifier_token26] = ACTIONS(2274), + [aux_sym_cmd_identifier_token27] = ACTIONS(2274), + [aux_sym_cmd_identifier_token28] = ACTIONS(2274), + [aux_sym_cmd_identifier_token29] = ACTIONS(2274), + [aux_sym_cmd_identifier_token30] = ACTIONS(2274), + [aux_sym_cmd_identifier_token31] = ACTIONS(2274), + [aux_sym_cmd_identifier_token32] = ACTIONS(2274), + [aux_sym_cmd_identifier_token33] = ACTIONS(2274), + [aux_sym_cmd_identifier_token34] = ACTIONS(2274), + [aux_sym_cmd_identifier_token35] = ACTIONS(2274), + [aux_sym_cmd_identifier_token36] = ACTIONS(2274), + [aux_sym_cmd_identifier_token37] = ACTIONS(2274), + [aux_sym_cmd_identifier_token38] = ACTIONS(2274), + [aux_sym_cmd_identifier_token39] = ACTIONS(2274), + [aux_sym_cmd_identifier_token40] = ACTIONS(2274), + [anon_sym_def] = ACTIONS(2274), + [anon_sym_export_DASHenv] = ACTIONS(2274), + [anon_sym_extern] = ACTIONS(2274), + [anon_sym_module] = ACTIONS(2274), + [anon_sym_use] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(2274), + [anon_sym_error] = ACTIONS(2274), + [anon_sym_DASH2] = ACTIONS(2274), + [anon_sym_break] = ACTIONS(2274), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_for] = ACTIONS(2274), + [anon_sym_in2] = ACTIONS(2274), + [anon_sym_loop] = ACTIONS(2274), + [anon_sym_make] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2274), + [anon_sym_do] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_else] = ACTIONS(2274), + [anon_sym_match] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_try] = ACTIONS(2274), + [anon_sym_catch] = ACTIONS(2274), + [anon_sym_return] = ACTIONS(2274), + [anon_sym_source] = ACTIONS(2274), + [anon_sym_source_DASHenv] = ACTIONS(2274), + [anon_sym_register] = ACTIONS(2274), + [anon_sym_hide] = ACTIONS(2274), + [anon_sym_hide_DASHenv] = ACTIONS(2274), + [anon_sym_overlay] = ACTIONS(2274), + [anon_sym_as] = ACTIONS(2274), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(2274), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2274), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2274), + [aux_sym__val_number_decimal_token1] = ACTIONS(2274), + [aux_sym__val_number_decimal_token2] = ACTIONS(2274), + [aux_sym__val_number_decimal_token3] = ACTIONS(2274), + [aux_sym__val_number_decimal_token4] = ACTIONS(2274), + [aux_sym__val_number_token1] = ACTIONS(2274), + [aux_sym__val_number_token2] = ACTIONS(2274), + [aux_sym__val_number_token3] = ACTIONS(2274), + [aux_sym__val_number_token4] = ACTIONS(2274), + [aux_sym__val_number_token5] = ACTIONS(2274), + [aux_sym__val_number_token6] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym__str_single_quotes] = ACTIONS(2274), + [sym__str_back_ticks] = ACTIONS(2274), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2274), + [sym__entry_separator] = ACTIONS(2276), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1705), + [sym_raw_string_begin] = ACTIONS(2276), }, - [463] = { - [sym_comment] = STATE(463), - [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_QMARK2] = 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), + [559] = { + [sym__expr_parenthesized_immediate] = STATE(7703), + [sym_comment] = STATE(559), + [anon_sym_export] = ACTIONS(2278), + [anon_sym_alias] = ACTIONS(2278), + [anon_sym_let] = ACTIONS(2278), + [anon_sym_let_DASHenv] = ACTIONS(2278), + [anon_sym_mut] = ACTIONS(2278), + [anon_sym_const] = ACTIONS(2278), + [aux_sym_cmd_identifier_token1] = ACTIONS(2278), + [aux_sym_cmd_identifier_token2] = ACTIONS(2278), + [aux_sym_cmd_identifier_token3] = ACTIONS(2278), + [aux_sym_cmd_identifier_token4] = ACTIONS(2278), + [aux_sym_cmd_identifier_token5] = ACTIONS(2278), + [aux_sym_cmd_identifier_token6] = ACTIONS(2278), + [aux_sym_cmd_identifier_token7] = ACTIONS(2278), + [aux_sym_cmd_identifier_token8] = ACTIONS(2278), + [aux_sym_cmd_identifier_token9] = ACTIONS(2278), + [aux_sym_cmd_identifier_token10] = ACTIONS(2278), + [aux_sym_cmd_identifier_token11] = ACTIONS(2278), + [aux_sym_cmd_identifier_token12] = ACTIONS(2278), + [aux_sym_cmd_identifier_token13] = ACTIONS(2278), + [aux_sym_cmd_identifier_token14] = ACTIONS(2278), + [aux_sym_cmd_identifier_token15] = ACTIONS(2278), + [aux_sym_cmd_identifier_token16] = ACTIONS(2278), + [aux_sym_cmd_identifier_token17] = ACTIONS(2278), + [aux_sym_cmd_identifier_token18] = ACTIONS(2278), + [aux_sym_cmd_identifier_token19] = ACTIONS(2278), + [aux_sym_cmd_identifier_token20] = ACTIONS(2278), + [aux_sym_cmd_identifier_token21] = ACTIONS(2278), + [aux_sym_cmd_identifier_token22] = ACTIONS(2278), + [aux_sym_cmd_identifier_token23] = ACTIONS(2278), + [aux_sym_cmd_identifier_token24] = ACTIONS(2278), + [aux_sym_cmd_identifier_token25] = ACTIONS(2278), + [aux_sym_cmd_identifier_token26] = ACTIONS(2278), + [aux_sym_cmd_identifier_token27] = ACTIONS(2278), + [aux_sym_cmd_identifier_token28] = ACTIONS(2278), + [aux_sym_cmd_identifier_token29] = ACTIONS(2278), + [aux_sym_cmd_identifier_token30] = ACTIONS(2278), + [aux_sym_cmd_identifier_token31] = ACTIONS(2278), + [aux_sym_cmd_identifier_token32] = ACTIONS(2278), + [aux_sym_cmd_identifier_token33] = ACTIONS(2278), + [aux_sym_cmd_identifier_token34] = ACTIONS(2278), + [aux_sym_cmd_identifier_token35] = ACTIONS(2278), + [aux_sym_cmd_identifier_token36] = ACTIONS(2278), + [aux_sym_cmd_identifier_token37] = ACTIONS(2278), + [aux_sym_cmd_identifier_token38] = ACTIONS(2278), + [aux_sym_cmd_identifier_token39] = ACTIONS(2278), + [aux_sym_cmd_identifier_token40] = ACTIONS(2278), + [anon_sym_def] = ACTIONS(2278), + [anon_sym_export_DASHenv] = ACTIONS(2278), + [anon_sym_extern] = ACTIONS(2278), + [anon_sym_module] = ACTIONS(2278), + [anon_sym_use] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2278), + [anon_sym_DOLLAR] = ACTIONS(2278), + [anon_sym_error] = ACTIONS(2278), + [anon_sym_DASH2] = ACTIONS(2278), + [anon_sym_break] = ACTIONS(2278), + [anon_sym_continue] = ACTIONS(2278), + [anon_sym_for] = ACTIONS(2278), + [anon_sym_in2] = ACTIONS(2278), + [anon_sym_loop] = ACTIONS(2278), + [anon_sym_make] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2278), + [anon_sym_do] = ACTIONS(2278), + [anon_sym_if] = ACTIONS(2278), + [anon_sym_else] = ACTIONS(2278), + [anon_sym_match] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_try] = ACTIONS(2278), + [anon_sym_catch] = ACTIONS(2278), + [anon_sym_return] = ACTIONS(2278), + [anon_sym_source] = ACTIONS(2278), + [anon_sym_source_DASHenv] = ACTIONS(2278), + [anon_sym_register] = ACTIONS(2278), + [anon_sym_hide] = ACTIONS(2278), + [anon_sym_hide_DASHenv] = ACTIONS(2278), + [anon_sym_overlay] = ACTIONS(2278), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(2278), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2278), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2278), + [aux_sym__val_number_decimal_token1] = ACTIONS(2278), + [aux_sym__val_number_decimal_token2] = ACTIONS(2278), + [aux_sym__val_number_decimal_token3] = ACTIONS(2278), + [aux_sym__val_number_decimal_token4] = ACTIONS(2278), + [aux_sym__val_number_token1] = ACTIONS(2278), + [aux_sym__val_number_token2] = ACTIONS(2278), + [aux_sym__val_number_token3] = ACTIONS(2278), + [aux_sym__val_number_token4] = ACTIONS(2278), + [aux_sym__val_number_token5] = ACTIONS(2278), + [aux_sym__val_number_token6] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2278), + [sym__str_single_quotes] = ACTIONS(2278), + [sym__str_back_ticks] = ACTIONS(2278), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2278), + [sym__entry_separator] = ACTIONS(2280), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1056), + [sym_raw_string_begin] = ACTIONS(2280), }, - [464] = { - [sym_comment] = STATE(464), - [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(2262), - [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), + [560] = { + [sym__expr_parenthesized_immediate] = STATE(7703), + [sym_comment] = STATE(560), + [anon_sym_export] = ACTIONS(2282), + [anon_sym_alias] = ACTIONS(2282), + [anon_sym_let] = ACTIONS(2282), + [anon_sym_let_DASHenv] = ACTIONS(2282), + [anon_sym_mut] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(2282), + [aux_sym_cmd_identifier_token1] = ACTIONS(2282), + [aux_sym_cmd_identifier_token2] = ACTIONS(2282), + [aux_sym_cmd_identifier_token3] = ACTIONS(2282), + [aux_sym_cmd_identifier_token4] = ACTIONS(2282), + [aux_sym_cmd_identifier_token5] = ACTIONS(2282), + [aux_sym_cmd_identifier_token6] = ACTIONS(2282), + [aux_sym_cmd_identifier_token7] = ACTIONS(2282), + [aux_sym_cmd_identifier_token8] = ACTIONS(2282), + [aux_sym_cmd_identifier_token9] = ACTIONS(2282), + [aux_sym_cmd_identifier_token10] = ACTIONS(2282), + [aux_sym_cmd_identifier_token11] = ACTIONS(2282), + [aux_sym_cmd_identifier_token12] = ACTIONS(2282), + [aux_sym_cmd_identifier_token13] = ACTIONS(2282), + [aux_sym_cmd_identifier_token14] = ACTIONS(2282), + [aux_sym_cmd_identifier_token15] = ACTIONS(2282), + [aux_sym_cmd_identifier_token16] = ACTIONS(2282), + [aux_sym_cmd_identifier_token17] = ACTIONS(2282), + [aux_sym_cmd_identifier_token18] = ACTIONS(2282), + [aux_sym_cmd_identifier_token19] = ACTIONS(2282), + [aux_sym_cmd_identifier_token20] = ACTIONS(2282), + [aux_sym_cmd_identifier_token21] = ACTIONS(2282), + [aux_sym_cmd_identifier_token22] = ACTIONS(2282), + [aux_sym_cmd_identifier_token23] = ACTIONS(2282), + [aux_sym_cmd_identifier_token24] = ACTIONS(2282), + [aux_sym_cmd_identifier_token25] = ACTIONS(2282), + [aux_sym_cmd_identifier_token26] = ACTIONS(2282), + [aux_sym_cmd_identifier_token27] = ACTIONS(2282), + [aux_sym_cmd_identifier_token28] = ACTIONS(2282), + [aux_sym_cmd_identifier_token29] = ACTIONS(2282), + [aux_sym_cmd_identifier_token30] = ACTIONS(2282), + [aux_sym_cmd_identifier_token31] = ACTIONS(2282), + [aux_sym_cmd_identifier_token32] = ACTIONS(2282), + [aux_sym_cmd_identifier_token33] = ACTIONS(2282), + [aux_sym_cmd_identifier_token34] = ACTIONS(2282), + [aux_sym_cmd_identifier_token35] = ACTIONS(2282), + [aux_sym_cmd_identifier_token36] = ACTIONS(2282), + [aux_sym_cmd_identifier_token37] = ACTIONS(2282), + [aux_sym_cmd_identifier_token38] = ACTIONS(2282), + [aux_sym_cmd_identifier_token39] = ACTIONS(2282), + [aux_sym_cmd_identifier_token40] = ACTIONS(2282), + [anon_sym_def] = ACTIONS(2282), + [anon_sym_export_DASHenv] = ACTIONS(2282), + [anon_sym_extern] = ACTIONS(2282), + [anon_sym_module] = ACTIONS(2282), + [anon_sym_use] = ACTIONS(2282), + [anon_sym_LPAREN] = ACTIONS(2282), + [anon_sym_DOLLAR] = ACTIONS(2282), + [anon_sym_error] = ACTIONS(2282), + [anon_sym_DASH2] = ACTIONS(2282), + [anon_sym_break] = ACTIONS(2282), + [anon_sym_continue] = ACTIONS(2282), + [anon_sym_for] = ACTIONS(2282), + [anon_sym_in2] = ACTIONS(2282), + [anon_sym_loop] = ACTIONS(2282), + [anon_sym_make] = ACTIONS(2282), + [anon_sym_while] = ACTIONS(2282), + [anon_sym_do] = ACTIONS(2282), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_else] = ACTIONS(2282), + [anon_sym_match] = ACTIONS(2282), + [anon_sym_RBRACE] = ACTIONS(2282), + [anon_sym_try] = ACTIONS(2282), + [anon_sym_catch] = ACTIONS(2282), + [anon_sym_return] = ACTIONS(2282), + [anon_sym_source] = ACTIONS(2282), + [anon_sym_source_DASHenv] = ACTIONS(2282), + [anon_sym_register] = ACTIONS(2282), + [anon_sym_hide] = ACTIONS(2282), + [anon_sym_hide_DASHenv] = ACTIONS(2282), + [anon_sym_overlay] = ACTIONS(2282), + [anon_sym_as] = ACTIONS(2282), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(2282), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2282), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2282), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2282), + [aux_sym__val_number_decimal_token3] = ACTIONS(2282), + [aux_sym__val_number_decimal_token4] = ACTIONS(2282), + [aux_sym__val_number_token1] = ACTIONS(2282), + [aux_sym__val_number_token2] = ACTIONS(2282), + [aux_sym__val_number_token3] = ACTIONS(2282), + [aux_sym__val_number_token4] = ACTIONS(2282), + [aux_sym__val_number_token5] = ACTIONS(2282), + [aux_sym__val_number_token6] = ACTIONS(2282), + [anon_sym_DQUOTE] = ACTIONS(2282), + [sym__str_single_quotes] = ACTIONS(2282), + [sym__str_back_ticks] = ACTIONS(2282), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2282), + [sym__entry_separator] = ACTIONS(2284), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1044), + [sym_raw_string_begin] = ACTIONS(2284), }, - [465] = { - [sym_comment] = STATE(465), - [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(2264), - [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), + [561] = { + [sym_comment] = STATE(561), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = 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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1050), + [sym_raw_string_begin] = ACTIONS(1757), }, - [466] = { - [sym_path] = STATE(631), - [sym_comment] = STATE(466), - [aux_sym_cell_path_repeat1] = STATE(466), - [anon_sym_export] = ACTIONS(1031), - [anon_sym_alias] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1031), - [anon_sym_let_DASHenv] = ACTIONS(1031), - [anon_sym_mut] = ACTIONS(1031), - [anon_sym_const] = ACTIONS(1031), - [aux_sym_cmd_identifier_token1] = ACTIONS(1031), - [aux_sym_cmd_identifier_token2] = ACTIONS(1031), - [aux_sym_cmd_identifier_token3] = ACTIONS(1031), - [aux_sym_cmd_identifier_token4] = ACTIONS(1031), - [aux_sym_cmd_identifier_token5] = ACTIONS(1031), - [aux_sym_cmd_identifier_token6] = ACTIONS(1031), - [aux_sym_cmd_identifier_token7] = ACTIONS(1031), - [aux_sym_cmd_identifier_token8] = ACTIONS(1031), - [aux_sym_cmd_identifier_token9] = ACTIONS(1031), - [aux_sym_cmd_identifier_token10] = ACTIONS(1031), - [aux_sym_cmd_identifier_token11] = ACTIONS(1031), - [aux_sym_cmd_identifier_token12] = ACTIONS(1031), - [aux_sym_cmd_identifier_token13] = ACTIONS(1031), - [aux_sym_cmd_identifier_token14] = ACTIONS(1031), - [aux_sym_cmd_identifier_token15] = ACTIONS(1031), - [aux_sym_cmd_identifier_token16] = ACTIONS(1031), - [aux_sym_cmd_identifier_token17] = ACTIONS(1031), - [aux_sym_cmd_identifier_token18] = ACTIONS(1031), - [aux_sym_cmd_identifier_token19] = ACTIONS(1031), - [aux_sym_cmd_identifier_token20] = ACTIONS(1031), - [aux_sym_cmd_identifier_token21] = ACTIONS(1031), - [aux_sym_cmd_identifier_token22] = ACTIONS(1031), - [aux_sym_cmd_identifier_token23] = ACTIONS(1031), - [aux_sym_cmd_identifier_token24] = ACTIONS(1031), - [aux_sym_cmd_identifier_token25] = ACTIONS(1031), - [aux_sym_cmd_identifier_token26] = ACTIONS(1031), - [aux_sym_cmd_identifier_token27] = ACTIONS(1031), - [aux_sym_cmd_identifier_token28] = ACTIONS(1031), - [aux_sym_cmd_identifier_token29] = ACTIONS(1031), - [aux_sym_cmd_identifier_token30] = ACTIONS(1031), - [aux_sym_cmd_identifier_token31] = ACTIONS(1031), - [aux_sym_cmd_identifier_token32] = ACTIONS(1031), - [aux_sym_cmd_identifier_token33] = ACTIONS(1031), - [aux_sym_cmd_identifier_token34] = ACTIONS(1031), - [aux_sym_cmd_identifier_token35] = ACTIONS(1031), - [aux_sym_cmd_identifier_token36] = ACTIONS(1031), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [aux_sym_cmd_identifier_token38] = ACTIONS(1031), - [aux_sym_cmd_identifier_token39] = ACTIONS(1033), - [aux_sym_cmd_identifier_token40] = ACTIONS(1033), - [anon_sym_def] = ACTIONS(1031), - [anon_sym_export_DASHenv] = ACTIONS(1031), - [anon_sym_extern] = ACTIONS(1031), - [anon_sym_module] = ACTIONS(1031), - [anon_sym_use] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_error] = ACTIONS(1031), - [anon_sym_list] = ACTIONS(1031), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_break] = ACTIONS(1031), - [anon_sym_continue] = ACTIONS(1031), - [anon_sym_for] = ACTIONS(1031), - [anon_sym_in] = ACTIONS(1031), - [anon_sym_loop] = ACTIONS(1031), - [anon_sym_make] = ACTIONS(1031), - [anon_sym_while] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1031), - [anon_sym_else] = ACTIONS(1031), - [anon_sym_match] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1031), - [anon_sym_catch] = ACTIONS(1031), - [anon_sym_return] = ACTIONS(1031), - [anon_sym_source] = ACTIONS(1031), - [anon_sym_source_DASHenv] = ACTIONS(1031), - [anon_sym_register] = ACTIONS(1031), - [anon_sym_hide] = ACTIONS(1031), - [anon_sym_hide_DASHenv] = ACTIONS(1031), - [anon_sym_overlay] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1031), - [anon_sym_as] = ACTIONS(1031), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(2266), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1031), - [aux_sym__val_number_decimal_token2] = ACTIONS(1033), - [aux_sym__val_number_decimal_token3] = ACTIONS(1033), - [aux_sym__val_number_decimal_token4] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1031), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1033), + [562] = { + [sym_comment] = STATE(562), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_alias] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_let_DASHenv] = ACTIONS(2125), + [anon_sym_mut] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [aux_sym_cmd_identifier_token1] = ACTIONS(2125), + [aux_sym_cmd_identifier_token2] = ACTIONS(2127), + [aux_sym_cmd_identifier_token3] = ACTIONS(2127), + [aux_sym_cmd_identifier_token4] = ACTIONS(2127), + [aux_sym_cmd_identifier_token5] = ACTIONS(2127), + [aux_sym_cmd_identifier_token6] = ACTIONS(2127), + [aux_sym_cmd_identifier_token7] = ACTIONS(2127), + [aux_sym_cmd_identifier_token8] = ACTIONS(2125), + [aux_sym_cmd_identifier_token9] = ACTIONS(2125), + [aux_sym_cmd_identifier_token10] = ACTIONS(2127), + [aux_sym_cmd_identifier_token11] = ACTIONS(2127), + [aux_sym_cmd_identifier_token12] = ACTIONS(2125), + [aux_sym_cmd_identifier_token13] = ACTIONS(2125), + [aux_sym_cmd_identifier_token14] = ACTIONS(2125), + [aux_sym_cmd_identifier_token15] = ACTIONS(2125), + [aux_sym_cmd_identifier_token16] = ACTIONS(2127), + [aux_sym_cmd_identifier_token17] = ACTIONS(2127), + [aux_sym_cmd_identifier_token18] = ACTIONS(2127), + [aux_sym_cmd_identifier_token19] = ACTIONS(2127), + [aux_sym_cmd_identifier_token20] = ACTIONS(2127), + [aux_sym_cmd_identifier_token21] = ACTIONS(2127), + [aux_sym_cmd_identifier_token22] = ACTIONS(2127), + [aux_sym_cmd_identifier_token23] = ACTIONS(2127), + [aux_sym_cmd_identifier_token24] = ACTIONS(2127), + [aux_sym_cmd_identifier_token25] = ACTIONS(2127), + [aux_sym_cmd_identifier_token26] = ACTIONS(2127), + [aux_sym_cmd_identifier_token27] = ACTIONS(2127), + [aux_sym_cmd_identifier_token28] = ACTIONS(2127), + [aux_sym_cmd_identifier_token29] = ACTIONS(2127), + [aux_sym_cmd_identifier_token30] = ACTIONS(2127), + [aux_sym_cmd_identifier_token31] = ACTIONS(2127), + [aux_sym_cmd_identifier_token32] = ACTIONS(2127), + [aux_sym_cmd_identifier_token33] = ACTIONS(2127), + [aux_sym_cmd_identifier_token34] = ACTIONS(2125), + [aux_sym_cmd_identifier_token35] = ACTIONS(2127), + [aux_sym_cmd_identifier_token36] = ACTIONS(2127), + [aux_sym_cmd_identifier_token37] = ACTIONS(2127), + [aux_sym_cmd_identifier_token38] = ACTIONS(2125), + [aux_sym_cmd_identifier_token39] = ACTIONS(2127), + [aux_sym_cmd_identifier_token40] = ACTIONS(2127), + [anon_sym_def] = ACTIONS(2125), + [anon_sym_export_DASHenv] = ACTIONS(2125), + [anon_sym_extern] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_DOLLAR] = ACTIONS(2127), + [anon_sym_error] = ACTIONS(2125), + [anon_sym_DASH2] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_in2] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_make] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_catch] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_source] = ACTIONS(2125), + [anon_sym_source_DASHenv] = ACTIONS(2125), + [anon_sym_register] = ACTIONS(2125), + [anon_sym_hide] = ACTIONS(2125), + [anon_sym_hide_DASHenv] = ACTIONS(2125), + [anon_sym_overlay] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_PLUS2] = ACTIONS(2125), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2127), + [anon_sym_DOT_DOT2] = ACTIONS(2125), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2127), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2125), + [aux_sym__val_number_decimal_token2] = ACTIONS(2127), + [aux_sym__val_number_decimal_token3] = ACTIONS(2127), + [aux_sym__val_number_decimal_token4] = ACTIONS(2127), + [aux_sym__val_number_token1] = ACTIONS(2127), + [aux_sym__val_number_token2] = ACTIONS(2127), + [aux_sym__val_number_token3] = ACTIONS(2127), + [aux_sym__val_number_token4] = ACTIONS(2125), + [aux_sym__val_number_token5] = ACTIONS(2125), + [aux_sym__val_number_token6] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2127), + [sym__str_single_quotes] = ACTIONS(2127), + [sym__str_back_ticks] = ACTIONS(2127), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2127), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2127), }, - [467] = { - [sym_comment] = STATE(467), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(2269), - [aux_sym__immediate_decimal_token2] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), + [563] = { + [sym_comment] = STATE(563), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), + [sym_raw_string_begin] = ACTIONS(1741), }, - [468] = { - [sym_comment] = STATE(468), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_alias] = ACTIONS(1074), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_let_DASHenv] = ACTIONS(1074), - [anon_sym_mut] = ACTIONS(1074), - [anon_sym_const] = ACTIONS(1074), - [aux_sym_cmd_identifier_token1] = ACTIONS(1074), - [aux_sym_cmd_identifier_token2] = ACTIONS(1074), - [aux_sym_cmd_identifier_token3] = ACTIONS(1074), - [aux_sym_cmd_identifier_token4] = ACTIONS(1074), - [aux_sym_cmd_identifier_token5] = ACTIONS(1074), - [aux_sym_cmd_identifier_token6] = ACTIONS(1074), - [aux_sym_cmd_identifier_token7] = ACTIONS(1074), - [aux_sym_cmd_identifier_token8] = ACTIONS(1074), - [aux_sym_cmd_identifier_token9] = ACTIONS(1074), - [aux_sym_cmd_identifier_token10] = ACTIONS(1074), - [aux_sym_cmd_identifier_token11] = ACTIONS(1074), - [aux_sym_cmd_identifier_token12] = ACTIONS(1074), - [aux_sym_cmd_identifier_token13] = ACTIONS(1074), - [aux_sym_cmd_identifier_token14] = ACTIONS(1074), - [aux_sym_cmd_identifier_token15] = ACTIONS(1074), - [aux_sym_cmd_identifier_token16] = ACTIONS(1074), - [aux_sym_cmd_identifier_token17] = ACTIONS(1074), - [aux_sym_cmd_identifier_token18] = ACTIONS(1074), - [aux_sym_cmd_identifier_token19] = ACTIONS(1074), - [aux_sym_cmd_identifier_token20] = ACTIONS(1074), - [aux_sym_cmd_identifier_token21] = ACTIONS(1074), - [aux_sym_cmd_identifier_token22] = ACTIONS(1074), - [aux_sym_cmd_identifier_token23] = ACTIONS(1074), - [aux_sym_cmd_identifier_token24] = ACTIONS(1074), - [aux_sym_cmd_identifier_token25] = ACTIONS(1074), - [aux_sym_cmd_identifier_token26] = ACTIONS(1074), - [aux_sym_cmd_identifier_token27] = ACTIONS(1074), - [aux_sym_cmd_identifier_token28] = ACTIONS(1074), - [aux_sym_cmd_identifier_token29] = ACTIONS(1074), - [aux_sym_cmd_identifier_token30] = ACTIONS(1074), - [aux_sym_cmd_identifier_token31] = ACTIONS(1074), - [aux_sym_cmd_identifier_token32] = ACTIONS(1074), - [aux_sym_cmd_identifier_token33] = ACTIONS(1074), - [aux_sym_cmd_identifier_token34] = ACTIONS(1074), - [aux_sym_cmd_identifier_token35] = ACTIONS(1074), - [aux_sym_cmd_identifier_token36] = ACTIONS(1074), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_null] = ACTIONS(1076), - [aux_sym_cmd_identifier_token38] = ACTIONS(1074), - [aux_sym_cmd_identifier_token39] = ACTIONS(1076), - [aux_sym_cmd_identifier_token40] = ACTIONS(1076), - [anon_sym_def] = ACTIONS(1074), - [anon_sym_export_DASHenv] = ACTIONS(1074), - [anon_sym_extern] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_use] = ACTIONS(1074), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_COMMA] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_error] = ACTIONS(1074), - [anon_sym_list] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_in] = ACTIONS(1074), - [anon_sym_loop] = ACTIONS(1074), - [anon_sym_make] = ACTIONS(1074), - [anon_sym_while] = ACTIONS(1074), - [anon_sym_do] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1074), - [anon_sym_else] = ACTIONS(1074), - [anon_sym_match] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_try] = ACTIONS(1074), - [anon_sym_catch] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_source] = ACTIONS(1074), - [anon_sym_source_DASHenv] = ACTIONS(1074), - [anon_sym_register] = ACTIONS(1074), - [anon_sym_hide] = ACTIONS(1074), - [anon_sym_hide_DASHenv] = ACTIONS(1074), - [anon_sym_overlay] = ACTIONS(1074), - [anon_sym_new] = ACTIONS(1074), - [anon_sym_as] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1074), - [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), - [aux_sym_record_entry_token1] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1074), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1076), + [564] = { + [sym_comment] = STATE(564), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(994), + [aux_sym_cmd_identifier_token3] = ACTIONS(994), + [aux_sym_cmd_identifier_token4] = ACTIONS(994), + [aux_sym_cmd_identifier_token5] = ACTIONS(994), + [aux_sym_cmd_identifier_token6] = ACTIONS(994), + [aux_sym_cmd_identifier_token7] = ACTIONS(994), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(994), + [aux_sym_cmd_identifier_token17] = ACTIONS(994), + [aux_sym_cmd_identifier_token18] = ACTIONS(994), + [aux_sym_cmd_identifier_token19] = ACTIONS(994), + [aux_sym_cmd_identifier_token20] = ACTIONS(994), + [aux_sym_cmd_identifier_token21] = ACTIONS(994), + [aux_sym_cmd_identifier_token22] = ACTIONS(994), + [aux_sym_cmd_identifier_token23] = ACTIONS(994), + [aux_sym_cmd_identifier_token24] = ACTIONS(994), + [aux_sym_cmd_identifier_token25] = ACTIONS(994), + [aux_sym_cmd_identifier_token26] = ACTIONS(994), + [aux_sym_cmd_identifier_token27] = ACTIONS(994), + [aux_sym_cmd_identifier_token28] = ACTIONS(994), + [aux_sym_cmd_identifier_token29] = ACTIONS(994), + [aux_sym_cmd_identifier_token30] = ACTIONS(994), + [aux_sym_cmd_identifier_token31] = ACTIONS(994), + [aux_sym_cmd_identifier_token32] = ACTIONS(994), + [aux_sym_cmd_identifier_token33] = ACTIONS(994), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(994), + [aux_sym_cmd_identifier_token36] = ACTIONS(994), + [aux_sym_cmd_identifier_token37] = ACTIONS(994), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(994), + [aux_sym_cmd_identifier_token40] = ACTIONS(994), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(994), + [aux_sym__val_number_decimal_token3] = ACTIONS(994), + [aux_sym__val_number_decimal_token4] = ACTIONS(994), + [aux_sym__val_number_token1] = ACTIONS(994), + [aux_sym__val_number_token2] = ACTIONS(994), + [aux_sym__val_number_token3] = ACTIONS(994), + [aux_sym__val_number_token4] = ACTIONS(994), + [aux_sym__val_number_token5] = ACTIONS(994), + [aux_sym__val_number_token6] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), + [sym__entry_separator] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(996), }, - [469] = { - [sym_comment] = STATE(469), - [anon_sym_export] = ACTIONS(1090), - [anon_sym_alias] = ACTIONS(1090), - [anon_sym_let] = ACTIONS(1090), - [anon_sym_let_DASHenv] = ACTIONS(1090), - [anon_sym_mut] = ACTIONS(1090), - [anon_sym_const] = ACTIONS(1090), - [aux_sym_cmd_identifier_token1] = ACTIONS(1090), - [aux_sym_cmd_identifier_token2] = ACTIONS(1090), - [aux_sym_cmd_identifier_token3] = ACTIONS(1090), - [aux_sym_cmd_identifier_token4] = ACTIONS(1090), - [aux_sym_cmd_identifier_token5] = ACTIONS(1090), - [aux_sym_cmd_identifier_token6] = ACTIONS(1090), - [aux_sym_cmd_identifier_token7] = ACTIONS(1090), - [aux_sym_cmd_identifier_token8] = ACTIONS(1090), - [aux_sym_cmd_identifier_token9] = ACTIONS(1090), - [aux_sym_cmd_identifier_token10] = ACTIONS(1090), - [aux_sym_cmd_identifier_token11] = ACTIONS(1090), - [aux_sym_cmd_identifier_token12] = ACTIONS(1090), - [aux_sym_cmd_identifier_token13] = ACTIONS(1090), - [aux_sym_cmd_identifier_token14] = ACTIONS(1090), - [aux_sym_cmd_identifier_token15] = ACTIONS(1090), - [aux_sym_cmd_identifier_token16] = ACTIONS(1090), - [aux_sym_cmd_identifier_token17] = ACTIONS(1090), - [aux_sym_cmd_identifier_token18] = ACTIONS(1090), - [aux_sym_cmd_identifier_token19] = ACTIONS(1090), - [aux_sym_cmd_identifier_token20] = ACTIONS(1090), - [aux_sym_cmd_identifier_token21] = ACTIONS(1090), - [aux_sym_cmd_identifier_token22] = ACTIONS(1090), - [aux_sym_cmd_identifier_token23] = ACTIONS(1090), - [aux_sym_cmd_identifier_token24] = ACTIONS(1090), - [aux_sym_cmd_identifier_token25] = ACTIONS(1090), - [aux_sym_cmd_identifier_token26] = ACTIONS(1090), - [aux_sym_cmd_identifier_token27] = ACTIONS(1090), - [aux_sym_cmd_identifier_token28] = ACTIONS(1090), - [aux_sym_cmd_identifier_token29] = ACTIONS(1090), - [aux_sym_cmd_identifier_token30] = ACTIONS(1090), - [aux_sym_cmd_identifier_token31] = ACTIONS(1090), - [aux_sym_cmd_identifier_token32] = ACTIONS(1090), - [aux_sym_cmd_identifier_token33] = ACTIONS(1090), - [aux_sym_cmd_identifier_token34] = ACTIONS(1090), - [aux_sym_cmd_identifier_token35] = ACTIONS(1090), - [aux_sym_cmd_identifier_token36] = ACTIONS(1090), - [anon_sym_true] = ACTIONS(1090), - [anon_sym_false] = ACTIONS(1090), - [anon_sym_null] = ACTIONS(1090), - [aux_sym_cmd_identifier_token38] = ACTIONS(1090), - [aux_sym_cmd_identifier_token39] = ACTIONS(1090), - [aux_sym_cmd_identifier_token40] = ACTIONS(1090), - [anon_sym_def] = ACTIONS(1090), - [anon_sym_export_DASHenv] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(1090), - [anon_sym_module] = ACTIONS(1090), - [anon_sym_use] = ACTIONS(1090), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_DOLLAR] = ACTIONS(1090), - [anon_sym_error] = ACTIONS(1090), - [anon_sym_list] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_break] = ACTIONS(1090), - [anon_sym_continue] = ACTIONS(1090), - [anon_sym_for] = ACTIONS(1090), - [anon_sym_in] = ACTIONS(1090), - [anon_sym_loop] = ACTIONS(1090), - [anon_sym_make] = ACTIONS(1090), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(1090), - [anon_sym_if] = ACTIONS(1090), - [anon_sym_else] = ACTIONS(1090), - [anon_sym_match] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_try] = ACTIONS(1090), - [anon_sym_catch] = ACTIONS(1090), - [anon_sym_return] = ACTIONS(1090), - [anon_sym_source] = ACTIONS(1090), - [anon_sym_source_DASHenv] = ACTIONS(1090), - [anon_sym_register] = ACTIONS(1090), - [anon_sym_hide] = ACTIONS(1090), - [anon_sym_hide_DASHenv] = ACTIONS(1090), - [anon_sym_overlay] = ACTIONS(1090), - [anon_sym_new] = ACTIONS(1090), - [anon_sym_as] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1090), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1090), - [aux_sym__val_number_decimal_token1] = ACTIONS(1090), - [aux_sym__val_number_decimal_token2] = ACTIONS(1090), - [aux_sym__val_number_decimal_token3] = ACTIONS(1090), - [aux_sym__val_number_decimal_token4] = ACTIONS(1090), - [aux_sym__val_number_token1] = ACTIONS(1090), - [aux_sym__val_number_token2] = ACTIONS(1090), - [aux_sym__val_number_token3] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym__str_single_quotes] = ACTIONS(1090), - [sym__str_back_ticks] = ACTIONS(1090), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1090), - [sym__entry_separator] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1090), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2275), + [565] = { + [sym_comment] = STATE(565), + [anon_sym_export] = ACTIONS(1030), + [anon_sym_alias] = ACTIONS(1030), + [anon_sym_let] = ACTIONS(1030), + [anon_sym_let_DASHenv] = ACTIONS(1030), + [anon_sym_mut] = ACTIONS(1030), + [anon_sym_const] = ACTIONS(1030), + [aux_sym_cmd_identifier_token1] = ACTIONS(1030), + [aux_sym_cmd_identifier_token2] = ACTIONS(1030), + [aux_sym_cmd_identifier_token3] = ACTIONS(1030), + [aux_sym_cmd_identifier_token4] = ACTIONS(1030), + [aux_sym_cmd_identifier_token5] = ACTIONS(1030), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [aux_sym_cmd_identifier_token7] = ACTIONS(1030), + [aux_sym_cmd_identifier_token8] = ACTIONS(1030), + [aux_sym_cmd_identifier_token9] = ACTIONS(1030), + [aux_sym_cmd_identifier_token10] = ACTIONS(1030), + [aux_sym_cmd_identifier_token11] = ACTIONS(1030), + [aux_sym_cmd_identifier_token12] = ACTIONS(1030), + [aux_sym_cmd_identifier_token13] = ACTIONS(1030), + [aux_sym_cmd_identifier_token14] = ACTIONS(1030), + [aux_sym_cmd_identifier_token15] = ACTIONS(1030), + [aux_sym_cmd_identifier_token16] = ACTIONS(1030), + [aux_sym_cmd_identifier_token17] = ACTIONS(1030), + [aux_sym_cmd_identifier_token18] = ACTIONS(1030), + [aux_sym_cmd_identifier_token19] = ACTIONS(1030), + [aux_sym_cmd_identifier_token20] = ACTIONS(1030), + [aux_sym_cmd_identifier_token21] = ACTIONS(1030), + [aux_sym_cmd_identifier_token22] = ACTIONS(1030), + [aux_sym_cmd_identifier_token23] = ACTIONS(1030), + [aux_sym_cmd_identifier_token24] = ACTIONS(1030), + [aux_sym_cmd_identifier_token25] = ACTIONS(1030), + [aux_sym_cmd_identifier_token26] = ACTIONS(1030), + [aux_sym_cmd_identifier_token27] = ACTIONS(1030), + [aux_sym_cmd_identifier_token28] = ACTIONS(1030), + [aux_sym_cmd_identifier_token29] = ACTIONS(1030), + [aux_sym_cmd_identifier_token30] = ACTIONS(1030), + [aux_sym_cmd_identifier_token31] = ACTIONS(1030), + [aux_sym_cmd_identifier_token32] = ACTIONS(1030), + [aux_sym_cmd_identifier_token33] = ACTIONS(1030), + [aux_sym_cmd_identifier_token34] = ACTIONS(1030), + [aux_sym_cmd_identifier_token35] = ACTIONS(1030), + [aux_sym_cmd_identifier_token36] = ACTIONS(1030), + [aux_sym_cmd_identifier_token37] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1030), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [anon_sym_def] = ACTIONS(1030), + [anon_sym_export_DASHenv] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1030), + [anon_sym_module] = ACTIONS(1030), + [anon_sym_use] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_error] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_continue] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1030), + [anon_sym_loop] = ACTIONS(1030), + [anon_sym_make] = ACTIONS(1030), + [anon_sym_while] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1030), + [anon_sym_match] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_try] = ACTIONS(1030), + [anon_sym_catch] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1030), + [anon_sym_source] = ACTIONS(1030), + [anon_sym_source_DASHenv] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1030), + [anon_sym_hide] = ACTIONS(1030), + [anon_sym_hide_DASHenv] = ACTIONS(1030), + [anon_sym_overlay] = ACTIONS(1030), + [anon_sym_as] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1032), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [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), + [aux_sym__val_number_token4] = ACTIONS(1030), + [aux_sym__val_number_token5] = ACTIONS(1030), + [aux_sym__val_number_token6] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__str_single_quotes] = ACTIONS(1032), + [sym__str_back_ticks] = ACTIONS(1032), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1032), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2204), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1092), + [sym_raw_string_begin] = ACTIONS(1032), }, - [470] = { - [sym_comment] = STATE(470), - [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(1844), - [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), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1852), + [566] = { + [sym_comment] = STATE(566), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_PLUS2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), + [aux_sym__immediate_decimal_token2] = ACTIONS(2200), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2279), + [sym_raw_string_begin] = ACTIONS(1757), }, - [471] = { - [sym_comment] = STATE(471), - [anon_sym_export] = ACTIONS(2218), - [anon_sym_alias] = ACTIONS(2218), - [anon_sym_let] = ACTIONS(2218), - [anon_sym_let_DASHenv] = ACTIONS(2218), - [anon_sym_mut] = ACTIONS(2218), - [anon_sym_const] = ACTIONS(2218), - [aux_sym_cmd_identifier_token1] = ACTIONS(2218), - [aux_sym_cmd_identifier_token2] = ACTIONS(2218), - [aux_sym_cmd_identifier_token3] = ACTIONS(2218), - [aux_sym_cmd_identifier_token4] = ACTIONS(2218), - [aux_sym_cmd_identifier_token5] = ACTIONS(2218), - [aux_sym_cmd_identifier_token6] = ACTIONS(2218), - [aux_sym_cmd_identifier_token7] = ACTIONS(2218), - [aux_sym_cmd_identifier_token8] = ACTIONS(2218), - [aux_sym_cmd_identifier_token9] = ACTIONS(2218), - [aux_sym_cmd_identifier_token10] = ACTIONS(2218), - [aux_sym_cmd_identifier_token11] = ACTIONS(2218), - [aux_sym_cmd_identifier_token12] = ACTIONS(2218), - [aux_sym_cmd_identifier_token13] = ACTIONS(2218), - [aux_sym_cmd_identifier_token14] = ACTIONS(2218), - [aux_sym_cmd_identifier_token15] = ACTIONS(2218), - [aux_sym_cmd_identifier_token16] = ACTIONS(2218), - [aux_sym_cmd_identifier_token17] = ACTIONS(2218), - [aux_sym_cmd_identifier_token18] = ACTIONS(2218), - [aux_sym_cmd_identifier_token19] = ACTIONS(2218), - [aux_sym_cmd_identifier_token20] = ACTIONS(2218), - [aux_sym_cmd_identifier_token21] = ACTIONS(2218), - [aux_sym_cmd_identifier_token22] = ACTIONS(2218), - [aux_sym_cmd_identifier_token23] = ACTIONS(2218), - [aux_sym_cmd_identifier_token24] = ACTIONS(2218), - [aux_sym_cmd_identifier_token25] = ACTIONS(2218), - [aux_sym_cmd_identifier_token26] = ACTIONS(2218), - [aux_sym_cmd_identifier_token27] = ACTIONS(2218), - [aux_sym_cmd_identifier_token28] = ACTIONS(2218), - [aux_sym_cmd_identifier_token29] = ACTIONS(2218), - [aux_sym_cmd_identifier_token30] = ACTIONS(2218), - [aux_sym_cmd_identifier_token31] = ACTIONS(2218), - [aux_sym_cmd_identifier_token32] = ACTIONS(2218), - [aux_sym_cmd_identifier_token33] = ACTIONS(2218), - [aux_sym_cmd_identifier_token34] = ACTIONS(2218), - [aux_sym_cmd_identifier_token35] = ACTIONS(2218), - [aux_sym_cmd_identifier_token36] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_null] = ACTIONS(2220), - [aux_sym_cmd_identifier_token38] = ACTIONS(2218), - [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(2220), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_error] = ACTIONS(2218), - [anon_sym_list] = ACTIONS(2218), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_break] = ACTIONS(2218), - [anon_sym_continue] = ACTIONS(2218), - [anon_sym_for] = ACTIONS(2218), - [anon_sym_in] = ACTIONS(2218), - [anon_sym_loop] = ACTIONS(2218), - [anon_sym_make] = ACTIONS(2218), - [anon_sym_while] = ACTIONS(2218), - [anon_sym_do] = ACTIONS(2218), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_else] = ACTIONS(2218), - [anon_sym_match] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2220), - [anon_sym_try] = ACTIONS(2218), - [anon_sym_catch] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2218), - [anon_sym_source] = ACTIONS(2218), - [anon_sym_source_DASHenv] = ACTIONS(2218), - [anon_sym_register] = ACTIONS(2218), - [anon_sym_hide] = ACTIONS(2218), - [anon_sym_hide_DASHenv] = ACTIONS(2218), - [anon_sym_overlay] = ACTIONS(2218), - [anon_sym_new] = ACTIONS(2218), - [anon_sym_as] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2220), - [anon_sym_DOT_DOT2] = ACTIONS(2218), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2220), - [anon_sym_DOT_DOT_LT2] = 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(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), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2220), + [567] = { + [sym_comment] = STATE(567), + [anon_sym_export] = ACTIONS(2252), + [anon_sym_alias] = ACTIONS(2252), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_let_DASHenv] = ACTIONS(2252), + [anon_sym_mut] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [aux_sym_cmd_identifier_token1] = ACTIONS(2252), + [aux_sym_cmd_identifier_token2] = ACTIONS(2256), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), + [aux_sym_cmd_identifier_token6] = ACTIONS(2256), + [aux_sym_cmd_identifier_token7] = ACTIONS(2256), + [aux_sym_cmd_identifier_token8] = ACTIONS(2252), + [aux_sym_cmd_identifier_token9] = ACTIONS(2252), + [aux_sym_cmd_identifier_token10] = ACTIONS(2256), + [aux_sym_cmd_identifier_token11] = ACTIONS(2256), + [aux_sym_cmd_identifier_token12] = ACTIONS(2252), + [aux_sym_cmd_identifier_token13] = ACTIONS(2252), + [aux_sym_cmd_identifier_token14] = ACTIONS(2252), + [aux_sym_cmd_identifier_token15] = ACTIONS(2252), + [aux_sym_cmd_identifier_token16] = ACTIONS(2256), + [aux_sym_cmd_identifier_token17] = ACTIONS(2256), + [aux_sym_cmd_identifier_token18] = ACTIONS(2256), + [aux_sym_cmd_identifier_token19] = ACTIONS(2256), + [aux_sym_cmd_identifier_token20] = ACTIONS(2256), + [aux_sym_cmd_identifier_token21] = ACTIONS(2256), + [aux_sym_cmd_identifier_token22] = ACTIONS(2256), + [aux_sym_cmd_identifier_token23] = ACTIONS(2256), + [aux_sym_cmd_identifier_token24] = ACTIONS(2256), + [aux_sym_cmd_identifier_token25] = ACTIONS(2256), + [aux_sym_cmd_identifier_token26] = ACTIONS(2256), + [aux_sym_cmd_identifier_token27] = ACTIONS(2256), + [aux_sym_cmd_identifier_token28] = ACTIONS(2256), + [aux_sym_cmd_identifier_token29] = ACTIONS(2256), + [aux_sym_cmd_identifier_token30] = ACTIONS(2256), + [aux_sym_cmd_identifier_token31] = ACTIONS(2256), + [aux_sym_cmd_identifier_token32] = ACTIONS(2256), + [aux_sym_cmd_identifier_token33] = ACTIONS(2256), + [aux_sym_cmd_identifier_token34] = ACTIONS(2252), + [aux_sym_cmd_identifier_token35] = ACTIONS(2256), + [aux_sym_cmd_identifier_token36] = ACTIONS(2256), + [aux_sym_cmd_identifier_token37] = ACTIONS(2256), + [aux_sym_cmd_identifier_token38] = ACTIONS(2252), + [aux_sym_cmd_identifier_token39] = ACTIONS(2256), + [aux_sym_cmd_identifier_token40] = ACTIONS(2256), + [anon_sym_def] = ACTIONS(2252), + [anon_sym_export_DASHenv] = ACTIONS(2252), + [anon_sym_extern] = ACTIONS(2252), + [anon_sym_module] = ACTIONS(2252), + [anon_sym_use] = ACTIONS(2252), + [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(2256), + [anon_sym_error] = ACTIONS(2252), + [anon_sym_DASH2] = ACTIONS(2252), + [anon_sym_break] = ACTIONS(2252), + [anon_sym_continue] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_in2] = ACTIONS(2252), + [anon_sym_loop] = ACTIONS(2252), + [anon_sym_make] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_do] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_else] = ACTIONS(2252), + [anon_sym_match] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2256), + [anon_sym_try] = ACTIONS(2252), + [anon_sym_catch] = ACTIONS(2252), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_source] = ACTIONS(2252), + [anon_sym_source_DASHenv] = ACTIONS(2252), + [anon_sym_register] = ACTIONS(2252), + [anon_sym_hide] = ACTIONS(2252), + [anon_sym_hide_DASHenv] = ACTIONS(2252), + [anon_sym_overlay] = ACTIONS(2252), + [anon_sym_as] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2256), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2256), + [aux_sym__val_number_decimal_token1] = ACTIONS(2252), + [aux_sym__val_number_decimal_token2] = ACTIONS(2256), + [aux_sym__val_number_decimal_token3] = ACTIONS(2256), + [aux_sym__val_number_decimal_token4] = ACTIONS(2256), + [aux_sym__val_number_token1] = ACTIONS(2256), + [aux_sym__val_number_token2] = ACTIONS(2256), + [aux_sym__val_number_token3] = ACTIONS(2256), + [aux_sym__val_number_token4] = ACTIONS(2252), + [aux_sym__val_number_token5] = ACTIONS(2252), + [aux_sym__val_number_token6] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2256), + [sym__str_single_quotes] = ACTIONS(2256), + [sym__str_back_ticks] = ACTIONS(2256), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2256), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2258), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2256), }, - [472] = { - [sym_comment] = STATE(472), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_alias] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_let_DASHenv] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [aux_sym_cmd_identifier_token1] = ACTIONS(2230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2230), - [aux_sym_cmd_identifier_token3] = ACTIONS(2230), - [aux_sym_cmd_identifier_token4] = ACTIONS(2230), - [aux_sym_cmd_identifier_token5] = ACTIONS(2230), - [aux_sym_cmd_identifier_token6] = ACTIONS(2230), - [aux_sym_cmd_identifier_token7] = ACTIONS(2230), - [aux_sym_cmd_identifier_token8] = ACTIONS(2230), - [aux_sym_cmd_identifier_token9] = ACTIONS(2230), - [aux_sym_cmd_identifier_token10] = ACTIONS(2230), - [aux_sym_cmd_identifier_token11] = ACTIONS(2230), - [aux_sym_cmd_identifier_token12] = ACTIONS(2230), - [aux_sym_cmd_identifier_token13] = ACTIONS(2230), - [aux_sym_cmd_identifier_token14] = ACTIONS(2230), - [aux_sym_cmd_identifier_token15] = ACTIONS(2230), - [aux_sym_cmd_identifier_token16] = ACTIONS(2230), - [aux_sym_cmd_identifier_token17] = ACTIONS(2230), - [aux_sym_cmd_identifier_token18] = ACTIONS(2230), - [aux_sym_cmd_identifier_token19] = ACTIONS(2230), - [aux_sym_cmd_identifier_token20] = ACTIONS(2230), - [aux_sym_cmd_identifier_token21] = ACTIONS(2230), - [aux_sym_cmd_identifier_token22] = ACTIONS(2230), - [aux_sym_cmd_identifier_token23] = ACTIONS(2230), - [aux_sym_cmd_identifier_token24] = ACTIONS(2230), - [aux_sym_cmd_identifier_token25] = ACTIONS(2230), - [aux_sym_cmd_identifier_token26] = ACTIONS(2230), - [aux_sym_cmd_identifier_token27] = ACTIONS(2230), - [aux_sym_cmd_identifier_token28] = ACTIONS(2230), - [aux_sym_cmd_identifier_token29] = ACTIONS(2230), - [aux_sym_cmd_identifier_token30] = ACTIONS(2230), - [aux_sym_cmd_identifier_token31] = ACTIONS(2230), - [aux_sym_cmd_identifier_token32] = ACTIONS(2230), - [aux_sym_cmd_identifier_token33] = ACTIONS(2230), - [aux_sym_cmd_identifier_token34] = ACTIONS(2230), - [aux_sym_cmd_identifier_token35] = ACTIONS(2230), - [aux_sym_cmd_identifier_token36] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [anon_sym_null] = ACTIONS(2232), - [aux_sym_cmd_identifier_token38] = ACTIONS(2230), - [aux_sym_cmd_identifier_token39] = ACTIONS(2232), - [aux_sym_cmd_identifier_token40] = ACTIONS(2232), - [anon_sym_def] = ACTIONS(2230), - [anon_sym_export_DASHenv] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_use] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2232), - [anon_sym_error] = ACTIONS(2230), - [anon_sym_list] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_loop] = ACTIONS(2230), - [anon_sym_make] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_source] = ACTIONS(2230), - [anon_sym_source_DASHenv] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_hide] = ACTIONS(2230), - [anon_sym_hide_DASHenv] = ACTIONS(2230), - [anon_sym_overlay] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2232), - [anon_sym_DOT_DOT2] = ACTIONS(2230), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2232), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2232), - [aux_sym__val_number_decimal_token3] = ACTIONS(2232), - [aux_sym__val_number_decimal_token4] = ACTIONS(2232), - [aux_sym__val_number_token1] = ACTIONS(2232), - [aux_sym__val_number_token2] = ACTIONS(2232), - [aux_sym__val_number_token3] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym__str_single_quotes] = ACTIONS(2232), - [sym__str_back_ticks] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2232), + [568] = { + [sym_comment] = STATE(568), + [anon_sym_export] = ACTIONS(2248), + [anon_sym_alias] = ACTIONS(2248), + [anon_sym_let] = ACTIONS(2248), + [anon_sym_let_DASHenv] = ACTIONS(2248), + [anon_sym_mut] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [aux_sym_cmd_identifier_token1] = ACTIONS(2248), + [aux_sym_cmd_identifier_token2] = ACTIONS(2248), + [aux_sym_cmd_identifier_token3] = ACTIONS(2248), + [aux_sym_cmd_identifier_token4] = ACTIONS(2248), + [aux_sym_cmd_identifier_token5] = ACTIONS(2248), + [aux_sym_cmd_identifier_token6] = ACTIONS(2248), + [aux_sym_cmd_identifier_token7] = ACTIONS(2248), + [aux_sym_cmd_identifier_token8] = ACTIONS(2248), + [aux_sym_cmd_identifier_token9] = ACTIONS(2248), + [aux_sym_cmd_identifier_token10] = ACTIONS(2248), + [aux_sym_cmd_identifier_token11] = ACTIONS(2248), + [aux_sym_cmd_identifier_token12] = ACTIONS(2248), + [aux_sym_cmd_identifier_token13] = ACTIONS(2248), + [aux_sym_cmd_identifier_token14] = ACTIONS(2248), + [aux_sym_cmd_identifier_token15] = ACTIONS(2248), + [aux_sym_cmd_identifier_token16] = ACTIONS(2248), + [aux_sym_cmd_identifier_token17] = ACTIONS(2248), + [aux_sym_cmd_identifier_token18] = ACTIONS(2248), + [aux_sym_cmd_identifier_token19] = ACTIONS(2248), + [aux_sym_cmd_identifier_token20] = ACTIONS(2248), + [aux_sym_cmd_identifier_token21] = ACTIONS(2248), + [aux_sym_cmd_identifier_token22] = ACTIONS(2248), + [aux_sym_cmd_identifier_token23] = ACTIONS(2248), + [aux_sym_cmd_identifier_token24] = ACTIONS(2248), + [aux_sym_cmd_identifier_token25] = ACTIONS(2248), + [aux_sym_cmd_identifier_token26] = ACTIONS(2248), + [aux_sym_cmd_identifier_token27] = ACTIONS(2248), + [aux_sym_cmd_identifier_token28] = ACTIONS(2248), + [aux_sym_cmd_identifier_token29] = ACTIONS(2248), + [aux_sym_cmd_identifier_token30] = ACTIONS(2248), + [aux_sym_cmd_identifier_token31] = ACTIONS(2248), + [aux_sym_cmd_identifier_token32] = ACTIONS(2248), + [aux_sym_cmd_identifier_token33] = ACTIONS(2248), + [aux_sym_cmd_identifier_token34] = ACTIONS(2248), + [aux_sym_cmd_identifier_token35] = ACTIONS(2248), + [aux_sym_cmd_identifier_token36] = ACTIONS(2248), + [aux_sym_cmd_identifier_token37] = ACTIONS(2248), + [aux_sym_cmd_identifier_token38] = ACTIONS(2248), + [aux_sym_cmd_identifier_token39] = ACTIONS(2248), + [aux_sym_cmd_identifier_token40] = ACTIONS(2248), + [anon_sym_def] = ACTIONS(2248), + [anon_sym_export_DASHenv] = ACTIONS(2248), + [anon_sym_extern] = ACTIONS(2248), + [anon_sym_module] = ACTIONS(2248), + [anon_sym_use] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2248), + [anon_sym_DOLLAR] = ACTIONS(2248), + [anon_sym_error] = ACTIONS(2248), + [anon_sym_DASH2] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_in2] = ACTIONS(2248), + [anon_sym_loop] = ACTIONS(2248), + [anon_sym_make] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_do] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_else] = ACTIONS(2248), + [anon_sym_match] = ACTIONS(2248), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2248), + [anon_sym_catch] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_source] = ACTIONS(2248), + [anon_sym_source_DASHenv] = ACTIONS(2248), + [anon_sym_register] = ACTIONS(2248), + [anon_sym_hide] = ACTIONS(2248), + [anon_sym_hide_DASHenv] = ACTIONS(2248), + [anon_sym_overlay] = ACTIONS(2248), + [anon_sym_as] = ACTIONS(2248), + [anon_sym_LPAREN2] = ACTIONS(2250), + [anon_sym_PLUS2] = ACTIONS(2248), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2250), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2248), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2248), + [aux_sym__val_number_decimal_token3] = ACTIONS(2248), + [aux_sym__val_number_decimal_token4] = ACTIONS(2248), + [aux_sym__val_number_token1] = ACTIONS(2248), + [aux_sym__val_number_token2] = ACTIONS(2248), + [aux_sym__val_number_token3] = ACTIONS(2248), + [aux_sym__val_number_token4] = ACTIONS(2248), + [aux_sym__val_number_token5] = ACTIONS(2248), + [aux_sym__val_number_token6] = ACTIONS(2248), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym__str_single_quotes] = ACTIONS(2250), + [sym__str_back_ticks] = ACTIONS(2250), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2250), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2248), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2250), }, - [473] = { - [sym_comment] = STATE(473), - [anon_sym_export] = ACTIONS(2281), - [anon_sym_alias] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_let_DASHenv] = ACTIONS(2281), - [anon_sym_mut] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [aux_sym_cmd_identifier_token1] = ACTIONS(2281), - [aux_sym_cmd_identifier_token2] = ACTIONS(2281), - [aux_sym_cmd_identifier_token3] = ACTIONS(2281), - [aux_sym_cmd_identifier_token4] = ACTIONS(2281), - [aux_sym_cmd_identifier_token5] = ACTIONS(2281), - [aux_sym_cmd_identifier_token6] = ACTIONS(2281), - [aux_sym_cmd_identifier_token7] = ACTIONS(2281), - [aux_sym_cmd_identifier_token8] = ACTIONS(2281), - [aux_sym_cmd_identifier_token9] = ACTIONS(2281), - [aux_sym_cmd_identifier_token10] = ACTIONS(2281), - [aux_sym_cmd_identifier_token11] = ACTIONS(2281), - [aux_sym_cmd_identifier_token12] = ACTIONS(2281), - [aux_sym_cmd_identifier_token13] = ACTIONS(2281), - [aux_sym_cmd_identifier_token14] = ACTIONS(2281), - [aux_sym_cmd_identifier_token15] = ACTIONS(2281), - [aux_sym_cmd_identifier_token16] = ACTIONS(2281), - [aux_sym_cmd_identifier_token17] = ACTIONS(2281), - [aux_sym_cmd_identifier_token18] = ACTIONS(2281), - [aux_sym_cmd_identifier_token19] = ACTIONS(2281), - [aux_sym_cmd_identifier_token20] = ACTIONS(2281), - [aux_sym_cmd_identifier_token21] = ACTIONS(2281), - [aux_sym_cmd_identifier_token22] = ACTIONS(2281), - [aux_sym_cmd_identifier_token23] = ACTIONS(2281), - [aux_sym_cmd_identifier_token24] = ACTIONS(2281), - [aux_sym_cmd_identifier_token25] = ACTIONS(2281), - [aux_sym_cmd_identifier_token26] = ACTIONS(2281), - [aux_sym_cmd_identifier_token27] = ACTIONS(2281), - [aux_sym_cmd_identifier_token28] = ACTIONS(2281), - [aux_sym_cmd_identifier_token29] = ACTIONS(2281), - [aux_sym_cmd_identifier_token30] = ACTIONS(2281), - [aux_sym_cmd_identifier_token31] = ACTIONS(2281), - [aux_sym_cmd_identifier_token32] = ACTIONS(2281), - [aux_sym_cmd_identifier_token33] = ACTIONS(2281), - [aux_sym_cmd_identifier_token34] = ACTIONS(2281), - [aux_sym_cmd_identifier_token35] = ACTIONS(2281), - [aux_sym_cmd_identifier_token36] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_null] = ACTIONS(2281), - [aux_sym_cmd_identifier_token38] = ACTIONS(2281), - [aux_sym_cmd_identifier_token39] = ACTIONS(2281), - [aux_sym_cmd_identifier_token40] = ACTIONS(2281), - [anon_sym_def] = ACTIONS(2281), - [anon_sym_export_DASHenv] = ACTIONS(2281), - [anon_sym_extern] = ACTIONS(2281), - [anon_sym_module] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_error] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_in] = ACTIONS(2281), - [anon_sym_loop] = ACTIONS(2281), - [anon_sym_make] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_catch] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_source] = ACTIONS(2281), - [anon_sym_source_DASHenv] = ACTIONS(2281), - [anon_sym_register] = ACTIONS(2281), - [anon_sym_hide] = ACTIONS(2281), - [anon_sym_hide_DASHenv] = ACTIONS(2281), - [anon_sym_overlay] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2283), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), - [aux_sym__val_number_decimal_token1] = ACTIONS(2281), - [aux_sym__val_number_decimal_token2] = ACTIONS(2281), - [aux_sym__val_number_decimal_token3] = ACTIONS(2281), - [aux_sym__val_number_decimal_token4] = ACTIONS(2281), - [aux_sym__val_number_token1] = ACTIONS(2281), - [aux_sym__val_number_token2] = ACTIONS(2281), - [aux_sym__val_number_token3] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2281), - [sym__str_single_quotes] = ACTIONS(2281), - [sym__str_back_ticks] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2281), - [sym__entry_separator] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2281), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2287), + [569] = { + [sym_comment] = STATE(569), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1006), + [aux_sym_cmd_identifier_token3] = ACTIONS(1006), + [aux_sym_cmd_identifier_token4] = ACTIONS(1006), + [aux_sym_cmd_identifier_token5] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1006), + [aux_sym_cmd_identifier_token7] = ACTIONS(1006), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1006), + [aux_sym_cmd_identifier_token11] = ACTIONS(1006), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1006), + [aux_sym_cmd_identifier_token17] = ACTIONS(1006), + [aux_sym_cmd_identifier_token18] = ACTIONS(1006), + [aux_sym_cmd_identifier_token19] = ACTIONS(1006), + [aux_sym_cmd_identifier_token20] = ACTIONS(1006), + [aux_sym_cmd_identifier_token21] = ACTIONS(1006), + [aux_sym_cmd_identifier_token22] = ACTIONS(1006), + [aux_sym_cmd_identifier_token23] = ACTIONS(1006), + [aux_sym_cmd_identifier_token24] = ACTIONS(1006), + [aux_sym_cmd_identifier_token25] = ACTIONS(1006), + [aux_sym_cmd_identifier_token26] = ACTIONS(1006), + [aux_sym_cmd_identifier_token27] = ACTIONS(1006), + [aux_sym_cmd_identifier_token28] = ACTIONS(1006), + [aux_sym_cmd_identifier_token29] = ACTIONS(1006), + [aux_sym_cmd_identifier_token30] = ACTIONS(1006), + [aux_sym_cmd_identifier_token31] = ACTIONS(1006), + [aux_sym_cmd_identifier_token32] = ACTIONS(1006), + [aux_sym_cmd_identifier_token33] = ACTIONS(1006), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1006), + [aux_sym_cmd_identifier_token36] = ACTIONS(1006), + [aux_sym_cmd_identifier_token37] = ACTIONS(1006), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1006), + [aux_sym_cmd_identifier_token40] = ACTIONS(1006), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1006), + [aux_sym__val_number_decimal_token3] = ACTIONS(1006), + [aux_sym__val_number_decimal_token4] = ACTIONS(1006), + [aux_sym__val_number_token1] = ACTIONS(1006), + [aux_sym__val_number_token2] = ACTIONS(1006), + [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), + [sym__entry_separator] = ACTIONS(1008), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2285), + [sym_raw_string_begin] = ACTIONS(1008), }, - [474] = { - [sym_comment] = STATE(474), - [anon_sym_export] = ACTIONS(2289), - [anon_sym_alias] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_let_DASHenv] = ACTIONS(2289), - [anon_sym_mut] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [aux_sym_cmd_identifier_token1] = ACTIONS(2289), - [aux_sym_cmd_identifier_token2] = ACTIONS(2289), - [aux_sym_cmd_identifier_token3] = ACTIONS(2289), - [aux_sym_cmd_identifier_token4] = ACTIONS(2289), - [aux_sym_cmd_identifier_token5] = ACTIONS(2289), - [aux_sym_cmd_identifier_token6] = ACTIONS(2289), - [aux_sym_cmd_identifier_token7] = ACTIONS(2289), - [aux_sym_cmd_identifier_token8] = ACTIONS(2289), - [aux_sym_cmd_identifier_token9] = ACTIONS(2289), - [aux_sym_cmd_identifier_token10] = ACTIONS(2289), - [aux_sym_cmd_identifier_token11] = ACTIONS(2289), - [aux_sym_cmd_identifier_token12] = ACTIONS(2289), - [aux_sym_cmd_identifier_token13] = ACTIONS(2289), - [aux_sym_cmd_identifier_token14] = ACTIONS(2289), - [aux_sym_cmd_identifier_token15] = ACTIONS(2289), - [aux_sym_cmd_identifier_token16] = ACTIONS(2289), - [aux_sym_cmd_identifier_token17] = ACTIONS(2289), - [aux_sym_cmd_identifier_token18] = ACTIONS(2289), - [aux_sym_cmd_identifier_token19] = ACTIONS(2289), - [aux_sym_cmd_identifier_token20] = ACTIONS(2289), - [aux_sym_cmd_identifier_token21] = ACTIONS(2289), - [aux_sym_cmd_identifier_token22] = ACTIONS(2289), - [aux_sym_cmd_identifier_token23] = ACTIONS(2289), - [aux_sym_cmd_identifier_token24] = ACTIONS(2289), - [aux_sym_cmd_identifier_token25] = ACTIONS(2289), - [aux_sym_cmd_identifier_token26] = ACTIONS(2289), - [aux_sym_cmd_identifier_token27] = ACTIONS(2289), - [aux_sym_cmd_identifier_token28] = ACTIONS(2289), - [aux_sym_cmd_identifier_token29] = ACTIONS(2289), - [aux_sym_cmd_identifier_token30] = ACTIONS(2289), - [aux_sym_cmd_identifier_token31] = ACTIONS(2289), - [aux_sym_cmd_identifier_token32] = ACTIONS(2289), - [aux_sym_cmd_identifier_token33] = ACTIONS(2289), - [aux_sym_cmd_identifier_token34] = ACTIONS(2289), - [aux_sym_cmd_identifier_token35] = ACTIONS(2289), - [aux_sym_cmd_identifier_token36] = ACTIONS(2289), - [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), - [anon_sym_def] = ACTIONS(2289), - [anon_sym_export_DASHenv] = ACTIONS(2289), - [anon_sym_extern] = ACTIONS(2289), - [anon_sym_module] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_DOLLAR] = ACTIONS(2289), - [anon_sym_error] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_loop] = ACTIONS(2289), - [anon_sym_make] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_catch] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_source] = ACTIONS(2289), - [anon_sym_source_DASHenv] = ACTIONS(2289), - [anon_sym_register] = ACTIONS(2289), - [anon_sym_hide] = ACTIONS(2289), - [anon_sym_hide_DASHenv] = ACTIONS(2289), - [anon_sym_overlay] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2289), - [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), - [sym__entry_separator] = ACTIONS(2291), - [anon_sym_PLUS] = ACTIONS(2289), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2289), + [570] = { + [sym_comment] = STATE(570), + [aux_sym__multiple_types_repeat1] = STATE(591), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_alias] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_let_DASHenv] = ACTIONS(2286), + [anon_sym_mut] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [aux_sym_cmd_identifier_token1] = ACTIONS(2286), + [aux_sym_cmd_identifier_token2] = ACTIONS(2286), + [aux_sym_cmd_identifier_token3] = ACTIONS(2286), + [aux_sym_cmd_identifier_token4] = ACTIONS(2286), + [aux_sym_cmd_identifier_token5] = ACTIONS(2286), + [aux_sym_cmd_identifier_token6] = ACTIONS(2286), + [aux_sym_cmd_identifier_token7] = ACTIONS(2286), + [aux_sym_cmd_identifier_token8] = ACTIONS(2286), + [aux_sym_cmd_identifier_token9] = ACTIONS(2286), + [aux_sym_cmd_identifier_token10] = ACTIONS(2286), + [aux_sym_cmd_identifier_token11] = ACTIONS(2286), + [aux_sym_cmd_identifier_token12] = ACTIONS(2286), + [aux_sym_cmd_identifier_token13] = ACTIONS(2286), + [aux_sym_cmd_identifier_token14] = ACTIONS(2286), + [aux_sym_cmd_identifier_token15] = ACTIONS(2286), + [aux_sym_cmd_identifier_token16] = ACTIONS(2286), + [aux_sym_cmd_identifier_token17] = ACTIONS(2286), + [aux_sym_cmd_identifier_token18] = ACTIONS(2286), + [aux_sym_cmd_identifier_token19] = ACTIONS(2286), + [aux_sym_cmd_identifier_token20] = ACTIONS(2286), + [aux_sym_cmd_identifier_token21] = ACTIONS(2286), + [aux_sym_cmd_identifier_token22] = ACTIONS(2286), + [aux_sym_cmd_identifier_token23] = ACTIONS(2286), + [aux_sym_cmd_identifier_token24] = ACTIONS(2286), + [aux_sym_cmd_identifier_token25] = ACTIONS(2286), + [aux_sym_cmd_identifier_token26] = ACTIONS(2286), + [aux_sym_cmd_identifier_token27] = ACTIONS(2286), + [aux_sym_cmd_identifier_token28] = ACTIONS(2286), + [aux_sym_cmd_identifier_token29] = ACTIONS(2286), + [aux_sym_cmd_identifier_token30] = ACTIONS(2286), + [aux_sym_cmd_identifier_token31] = ACTIONS(2286), + [aux_sym_cmd_identifier_token32] = ACTIONS(2286), + [aux_sym_cmd_identifier_token33] = ACTIONS(2286), + [aux_sym_cmd_identifier_token34] = ACTIONS(2286), + [aux_sym_cmd_identifier_token35] = ACTIONS(2286), + [aux_sym_cmd_identifier_token36] = ACTIONS(2286), + [aux_sym_cmd_identifier_token37] = ACTIONS(2286), + [aux_sym_cmd_identifier_token38] = ACTIONS(2286), + [aux_sym_cmd_identifier_token39] = ACTIONS(2286), + [aux_sym_cmd_identifier_token40] = ACTIONS(2286), + [anon_sym_def] = ACTIONS(2286), + [anon_sym_export_DASHenv] = ACTIONS(2286), + [anon_sym_extern] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_use] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_error] = ACTIONS(2286), + [anon_sym_DASH2] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_in2] = ACTIONS(2286), + [anon_sym_loop] = ACTIONS(2286), + [anon_sym_make] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_match] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_source] = ACTIONS(2286), + [anon_sym_source_DASHenv] = ACTIONS(2286), + [anon_sym_register] = ACTIONS(2286), + [anon_sym_hide] = ACTIONS(2286), + [anon_sym_hide_DASHenv] = ACTIONS(2286), + [anon_sym_overlay] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_PLUS2] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), + [aux_sym__val_number_decimal_token1] = ACTIONS(2286), + [aux_sym__val_number_decimal_token2] = ACTIONS(2286), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), + [aux_sym__val_number_token1] = ACTIONS(2286), + [aux_sym__val_number_token2] = ACTIONS(2286), + [aux_sym__val_number_token3] = ACTIONS(2286), + [aux_sym__val_number_token4] = ACTIONS(2286), + [aux_sym__val_number_token5] = ACTIONS(2286), + [aux_sym__val_number_token6] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym__str_single_quotes] = ACTIONS(2286), + [sym__str_back_ticks] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), + [sym__entry_separator] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2291), + [sym_raw_string_begin] = ACTIONS(2292), }, - [475] = { - [sym_comment] = STATE(475), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_alias] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_let_DASHenv] = ACTIONS(2105), - [anon_sym_mut] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [aux_sym_cmd_identifier_token1] = ACTIONS(2105), - [aux_sym_cmd_identifier_token2] = ACTIONS(2105), - [aux_sym_cmd_identifier_token3] = ACTIONS(2105), - [aux_sym_cmd_identifier_token4] = ACTIONS(2105), - [aux_sym_cmd_identifier_token5] = ACTIONS(2105), - [aux_sym_cmd_identifier_token6] = ACTIONS(2105), - [aux_sym_cmd_identifier_token7] = ACTIONS(2105), - [aux_sym_cmd_identifier_token8] = ACTIONS(2105), - [aux_sym_cmd_identifier_token9] = ACTIONS(2105), - [aux_sym_cmd_identifier_token10] = ACTIONS(2105), - [aux_sym_cmd_identifier_token11] = ACTIONS(2105), - [aux_sym_cmd_identifier_token12] = ACTIONS(2105), - [aux_sym_cmd_identifier_token13] = ACTIONS(2105), - [aux_sym_cmd_identifier_token14] = ACTIONS(2105), - [aux_sym_cmd_identifier_token15] = ACTIONS(2105), - [aux_sym_cmd_identifier_token16] = ACTIONS(2105), - [aux_sym_cmd_identifier_token17] = ACTIONS(2105), - [aux_sym_cmd_identifier_token18] = ACTIONS(2105), - [aux_sym_cmd_identifier_token19] = ACTIONS(2105), - [aux_sym_cmd_identifier_token20] = ACTIONS(2105), - [aux_sym_cmd_identifier_token21] = ACTIONS(2105), - [aux_sym_cmd_identifier_token22] = ACTIONS(2105), - [aux_sym_cmd_identifier_token23] = ACTIONS(2105), - [aux_sym_cmd_identifier_token24] = ACTIONS(2105), - [aux_sym_cmd_identifier_token25] = ACTIONS(2105), - [aux_sym_cmd_identifier_token26] = ACTIONS(2105), - [aux_sym_cmd_identifier_token27] = ACTIONS(2105), - [aux_sym_cmd_identifier_token28] = ACTIONS(2105), - [aux_sym_cmd_identifier_token29] = ACTIONS(2105), - [aux_sym_cmd_identifier_token30] = ACTIONS(2105), - [aux_sym_cmd_identifier_token31] = ACTIONS(2105), - [aux_sym_cmd_identifier_token32] = ACTIONS(2105), - [aux_sym_cmd_identifier_token33] = ACTIONS(2105), - [aux_sym_cmd_identifier_token34] = ACTIONS(2105), - [aux_sym_cmd_identifier_token35] = ACTIONS(2105), - [aux_sym_cmd_identifier_token36] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2107), - [anon_sym_false] = ACTIONS(2107), - [anon_sym_null] = ACTIONS(2107), - [aux_sym_cmd_identifier_token38] = ACTIONS(2105), - [aux_sym_cmd_identifier_token39] = ACTIONS(2107), - [aux_sym_cmd_identifier_token40] = ACTIONS(2107), - [anon_sym_def] = ACTIONS(2105), - [anon_sym_export_DASHenv] = ACTIONS(2105), - [anon_sym_extern] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(2107), - [anon_sym_error] = ACTIONS(2105), - [anon_sym_list] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_loop] = ACTIONS(2105), - [anon_sym_make] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_catch] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_source] = ACTIONS(2105), - [anon_sym_source_DASHenv] = ACTIONS(2105), - [anon_sym_register] = ACTIONS(2105), - [anon_sym_hide] = ACTIONS(2105), - [anon_sym_hide_DASHenv] = ACTIONS(2105), - [anon_sym_overlay] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2107), - [anon_sym_DOT_DOT2] = ACTIONS(2105), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2107), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2107), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(2107), - [aux_sym__val_number_decimal_token3] = ACTIONS(2107), - [aux_sym__val_number_decimal_token4] = ACTIONS(2107), - [aux_sym__val_number_token1] = ACTIONS(2107), - [aux_sym__val_number_token2] = ACTIONS(2107), - [aux_sym__val_number_token3] = ACTIONS(2107), - [anon_sym_DQUOTE] = ACTIONS(2107), - [sym__str_single_quotes] = ACTIONS(2107), - [sym__str_back_ticks] = ACTIONS(2107), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2107), + [571] = { + [sym_comment] = STATE(571), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1783), + [aux_sym_cmd_identifier_token3] = ACTIONS(1783), + [aux_sym_cmd_identifier_token4] = ACTIONS(1783), + [aux_sym_cmd_identifier_token5] = ACTIONS(1783), + [aux_sym_cmd_identifier_token6] = ACTIONS(1783), + [aux_sym_cmd_identifier_token7] = ACTIONS(1783), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1783), + [aux_sym_cmd_identifier_token11] = ACTIONS(1783), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1783), + [aux_sym_cmd_identifier_token17] = ACTIONS(1783), + [aux_sym_cmd_identifier_token18] = ACTIONS(1783), + [aux_sym_cmd_identifier_token19] = ACTIONS(1783), + [aux_sym_cmd_identifier_token20] = ACTIONS(1783), + [aux_sym_cmd_identifier_token21] = ACTIONS(1783), + [aux_sym_cmd_identifier_token22] = ACTIONS(1783), + [aux_sym_cmd_identifier_token23] = ACTIONS(1783), + [aux_sym_cmd_identifier_token24] = ACTIONS(1783), + [aux_sym_cmd_identifier_token25] = ACTIONS(1783), + [aux_sym_cmd_identifier_token26] = ACTIONS(1783), + [aux_sym_cmd_identifier_token27] = ACTIONS(1783), + [aux_sym_cmd_identifier_token28] = ACTIONS(1783), + [aux_sym_cmd_identifier_token29] = ACTIONS(1783), + [aux_sym_cmd_identifier_token30] = ACTIONS(1783), + [aux_sym_cmd_identifier_token31] = ACTIONS(1783), + [aux_sym_cmd_identifier_token32] = ACTIONS(1783), + [aux_sym_cmd_identifier_token33] = ACTIONS(1783), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1783), + [aux_sym_cmd_identifier_token36] = ACTIONS(1783), + [aux_sym_cmd_identifier_token37] = ACTIONS(1783), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1783), + [aux_sym_cmd_identifier_token40] = ACTIONS(1783), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), + [aux_sym__immediate_decimal_token2] = ACTIONS(2294), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1783), + [aux_sym__val_number_decimal_token3] = ACTIONS(1783), + [aux_sym__val_number_decimal_token4] = ACTIONS(1783), + [aux_sym__val_number_token1] = ACTIONS(1783), + [aux_sym__val_number_token2] = ACTIONS(1783), + [aux_sym__val_number_token3] = ACTIONS(1783), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [sym__str_single_quotes] = ACTIONS(1783), + [sym__str_back_ticks] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), + [sym__entry_separator] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1785), }, - [476] = { - [sym_comment] = STATE(476), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [572] = { + [sym_comment] = STATE(572), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [aux_sym_cmd_identifier_token1] = ACTIONS(1010), + [aux_sym_cmd_identifier_token2] = ACTIONS(1010), + [aux_sym_cmd_identifier_token3] = ACTIONS(1010), + [aux_sym_cmd_identifier_token4] = ACTIONS(1010), + [aux_sym_cmd_identifier_token5] = ACTIONS(1010), + [aux_sym_cmd_identifier_token6] = ACTIONS(1010), + [aux_sym_cmd_identifier_token7] = ACTIONS(1010), + [aux_sym_cmd_identifier_token8] = ACTIONS(1010), + [aux_sym_cmd_identifier_token9] = ACTIONS(1010), + [aux_sym_cmd_identifier_token10] = ACTIONS(1010), + [aux_sym_cmd_identifier_token11] = ACTIONS(1010), + [aux_sym_cmd_identifier_token12] = ACTIONS(1010), + [aux_sym_cmd_identifier_token13] = ACTIONS(1010), + [aux_sym_cmd_identifier_token14] = ACTIONS(1010), + [aux_sym_cmd_identifier_token15] = ACTIONS(1010), + [aux_sym_cmd_identifier_token16] = ACTIONS(1010), + [aux_sym_cmd_identifier_token17] = ACTIONS(1010), + [aux_sym_cmd_identifier_token18] = ACTIONS(1010), + [aux_sym_cmd_identifier_token19] = ACTIONS(1010), + [aux_sym_cmd_identifier_token20] = ACTIONS(1010), + [aux_sym_cmd_identifier_token21] = ACTIONS(1010), + [aux_sym_cmd_identifier_token22] = ACTIONS(1010), + [aux_sym_cmd_identifier_token23] = ACTIONS(1010), + [aux_sym_cmd_identifier_token24] = ACTIONS(1010), + [aux_sym_cmd_identifier_token25] = ACTIONS(1010), + [aux_sym_cmd_identifier_token26] = ACTIONS(1010), + [aux_sym_cmd_identifier_token27] = ACTIONS(1010), + [aux_sym_cmd_identifier_token28] = ACTIONS(1010), + [aux_sym_cmd_identifier_token29] = ACTIONS(1010), + [aux_sym_cmd_identifier_token30] = ACTIONS(1010), + [aux_sym_cmd_identifier_token31] = ACTIONS(1010), + [aux_sym_cmd_identifier_token32] = ACTIONS(1010), + [aux_sym_cmd_identifier_token33] = ACTIONS(1010), + [aux_sym_cmd_identifier_token34] = ACTIONS(1010), + [aux_sym_cmd_identifier_token35] = ACTIONS(1010), + [aux_sym_cmd_identifier_token36] = ACTIONS(1010), + [aux_sym_cmd_identifier_token37] = ACTIONS(1010), + [aux_sym_cmd_identifier_token38] = ACTIONS(1010), + [aux_sym_cmd_identifier_token39] = ACTIONS(1010), + [aux_sym_cmd_identifier_token40] = ACTIONS(1010), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in2] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_make] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_catch] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_PLUS2] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1010), + [aux_sym__val_number_decimal_token3] = ACTIONS(1010), + [aux_sym__val_number_decimal_token4] = ACTIONS(1010), + [aux_sym__val_number_token1] = ACTIONS(1010), + [aux_sym__val_number_token2] = ACTIONS(1010), + [aux_sym__val_number_token3] = ACTIONS(1010), + [aux_sym__val_number_token4] = ACTIONS(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1010), + [sym__entry_separator] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1012), }, - [477] = { - [sym_comment] = STATE(477), - [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), + [573] = { + [sym_comment] = STATE(573), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [aux_sym_cmd_identifier_token1] = ACTIONS(1014), + [aux_sym_cmd_identifier_token2] = ACTIONS(1014), + [aux_sym_cmd_identifier_token3] = ACTIONS(1014), + [aux_sym_cmd_identifier_token4] = ACTIONS(1014), + [aux_sym_cmd_identifier_token5] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [aux_sym_cmd_identifier_token7] = ACTIONS(1014), + [aux_sym_cmd_identifier_token8] = ACTIONS(1014), + [aux_sym_cmd_identifier_token9] = ACTIONS(1014), + [aux_sym_cmd_identifier_token10] = ACTIONS(1014), + [aux_sym_cmd_identifier_token11] = ACTIONS(1014), + [aux_sym_cmd_identifier_token12] = ACTIONS(1014), + [aux_sym_cmd_identifier_token13] = ACTIONS(1014), + [aux_sym_cmd_identifier_token14] = ACTIONS(1014), + [aux_sym_cmd_identifier_token15] = ACTIONS(1014), + [aux_sym_cmd_identifier_token16] = ACTIONS(1014), + [aux_sym_cmd_identifier_token17] = ACTIONS(1014), + [aux_sym_cmd_identifier_token18] = ACTIONS(1014), + [aux_sym_cmd_identifier_token19] = ACTIONS(1014), + [aux_sym_cmd_identifier_token20] = ACTIONS(1014), + [aux_sym_cmd_identifier_token21] = ACTIONS(1014), + [aux_sym_cmd_identifier_token22] = ACTIONS(1014), + [aux_sym_cmd_identifier_token23] = ACTIONS(1014), + [aux_sym_cmd_identifier_token24] = ACTIONS(1014), + [aux_sym_cmd_identifier_token25] = ACTIONS(1014), + [aux_sym_cmd_identifier_token26] = ACTIONS(1014), + [aux_sym_cmd_identifier_token27] = ACTIONS(1014), + [aux_sym_cmd_identifier_token28] = ACTIONS(1014), + [aux_sym_cmd_identifier_token29] = ACTIONS(1014), + [aux_sym_cmd_identifier_token30] = ACTIONS(1014), + [aux_sym_cmd_identifier_token31] = ACTIONS(1014), + [aux_sym_cmd_identifier_token32] = ACTIONS(1014), + [aux_sym_cmd_identifier_token33] = ACTIONS(1014), + [aux_sym_cmd_identifier_token34] = ACTIONS(1014), + [aux_sym_cmd_identifier_token35] = ACTIONS(1014), + [aux_sym_cmd_identifier_token36] = ACTIONS(1014), + [aux_sym_cmd_identifier_token37] = ACTIONS(1014), + [aux_sym_cmd_identifier_token38] = ACTIONS(1014), + [aux_sym_cmd_identifier_token39] = ACTIONS(1014), + [aux_sym_cmd_identifier_token40] = ACTIONS(1014), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_make] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_catch] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_as] = ACTIONS(1014), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1014), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1014), + [aux_sym__val_number_decimal_token4] = ACTIONS(1014), + [aux_sym__val_number_token1] = ACTIONS(1014), + [aux_sym__val_number_token2] = ACTIONS(1014), + [aux_sym__val_number_token3] = ACTIONS(1014), + [aux_sym__val_number_token4] = ACTIONS(1014), + [aux_sym__val_number_token5] = ACTIONS(1014), + [aux_sym__val_number_token6] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym__str_single_quotes] = ACTIONS(1014), + [sym__str_back_ticks] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1014), + [sym__entry_separator] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2297), + [sym_raw_string_begin] = ACTIONS(1016), }, - [478] = { - [sym_comment] = STATE(478), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_alias] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_let_DASHenv] = ACTIONS(2200), - [anon_sym_mut] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [aux_sym_cmd_identifier_token1] = ACTIONS(2200), - [aux_sym_cmd_identifier_token2] = ACTIONS(2200), - [aux_sym_cmd_identifier_token3] = ACTIONS(2200), - [aux_sym_cmd_identifier_token4] = ACTIONS(2200), - [aux_sym_cmd_identifier_token5] = ACTIONS(2200), - [aux_sym_cmd_identifier_token6] = ACTIONS(2200), - [aux_sym_cmd_identifier_token7] = ACTIONS(2200), - [aux_sym_cmd_identifier_token8] = ACTIONS(2200), - [aux_sym_cmd_identifier_token9] = ACTIONS(2200), - [aux_sym_cmd_identifier_token10] = ACTIONS(2200), - [aux_sym_cmd_identifier_token11] = ACTIONS(2200), - [aux_sym_cmd_identifier_token12] = ACTIONS(2200), - [aux_sym_cmd_identifier_token13] = ACTIONS(2200), - [aux_sym_cmd_identifier_token14] = ACTIONS(2200), - [aux_sym_cmd_identifier_token15] = ACTIONS(2200), - [aux_sym_cmd_identifier_token16] = ACTIONS(2200), - [aux_sym_cmd_identifier_token17] = ACTIONS(2200), - [aux_sym_cmd_identifier_token18] = ACTIONS(2200), - [aux_sym_cmd_identifier_token19] = ACTIONS(2200), - [aux_sym_cmd_identifier_token20] = ACTIONS(2200), - [aux_sym_cmd_identifier_token21] = ACTIONS(2200), - [aux_sym_cmd_identifier_token22] = ACTIONS(2200), - [aux_sym_cmd_identifier_token23] = ACTIONS(2200), - [aux_sym_cmd_identifier_token24] = ACTIONS(2200), - [aux_sym_cmd_identifier_token25] = ACTIONS(2200), - [aux_sym_cmd_identifier_token26] = ACTIONS(2200), - [aux_sym_cmd_identifier_token27] = ACTIONS(2200), - [aux_sym_cmd_identifier_token28] = ACTIONS(2200), - [aux_sym_cmd_identifier_token29] = ACTIONS(2200), - [aux_sym_cmd_identifier_token30] = ACTIONS(2200), - [aux_sym_cmd_identifier_token31] = ACTIONS(2200), - [aux_sym_cmd_identifier_token32] = ACTIONS(2200), - [aux_sym_cmd_identifier_token33] = ACTIONS(2200), - [aux_sym_cmd_identifier_token34] = ACTIONS(2200), - [aux_sym_cmd_identifier_token35] = ACTIONS(2200), - [aux_sym_cmd_identifier_token36] = ACTIONS(2200), - [anon_sym_true] = ACTIONS(2202), - [anon_sym_false] = ACTIONS(2202), - [anon_sym_null] = ACTIONS(2202), - [aux_sym_cmd_identifier_token38] = ACTIONS(2200), - [aux_sym_cmd_identifier_token39] = ACTIONS(2202), - [aux_sym_cmd_identifier_token40] = ACTIONS(2202), - [anon_sym_def] = ACTIONS(2200), - [anon_sym_export_DASHenv] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_error] = ACTIONS(2200), - [anon_sym_list] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_make] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_catch] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_source] = ACTIONS(2200), - [anon_sym_source_DASHenv] = ACTIONS(2200), - [anon_sym_register] = ACTIONS(2200), - [anon_sym_hide] = ACTIONS(2200), - [anon_sym_hide_DASHenv] = ACTIONS(2200), - [anon_sym_overlay] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_as] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2202), - [anon_sym_DOT_DOT2] = ACTIONS(2254), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2256), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2256), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2202), - [aux_sym__val_number_decimal_token1] = ACTIONS(2200), - [aux_sym__val_number_decimal_token2] = ACTIONS(2202), - [aux_sym__val_number_decimal_token3] = ACTIONS(2202), - [aux_sym__val_number_decimal_token4] = ACTIONS(2202), - [aux_sym__val_number_token1] = ACTIONS(2202), - [aux_sym__val_number_token2] = ACTIONS(2202), - [aux_sym__val_number_token3] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(2202), - [sym__str_single_quotes] = ACTIONS(2202), - [sym__str_back_ticks] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2202), + [574] = { + [sym_comment] = STATE(574), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [aux_sym_cmd_identifier_token37] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_register] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(2296), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), }, - [479] = { - [sym_comment] = STATE(479), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(2301), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [575] = { + [sym_comment] = STATE(575), + [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(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(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(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_PLUS2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(2298), + [aux_sym__immediate_decimal_token2] = ACTIONS(2300), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = ACTIONS(1755), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), }, - [480] = { - [sym_comment] = STATE(480), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [576] = { + [sym_comment] = STATE(576), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(986), }, - [481] = { - [sym__expr_parenthesized_immediate] = STATE(7570), - [sym_comment] = STATE(481), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_alias] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_let_DASHenv] = ACTIONS(2196), - [anon_sym_mut] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [aux_sym_cmd_identifier_token1] = ACTIONS(2196), - [aux_sym_cmd_identifier_token2] = ACTIONS(2196), - [aux_sym_cmd_identifier_token3] = ACTIONS(2196), - [aux_sym_cmd_identifier_token4] = ACTIONS(2196), - [aux_sym_cmd_identifier_token5] = ACTIONS(2196), - [aux_sym_cmd_identifier_token6] = ACTIONS(2196), - [aux_sym_cmd_identifier_token7] = ACTIONS(2196), - [aux_sym_cmd_identifier_token8] = ACTIONS(2196), - [aux_sym_cmd_identifier_token9] = ACTIONS(2196), - [aux_sym_cmd_identifier_token10] = ACTIONS(2196), - [aux_sym_cmd_identifier_token11] = ACTIONS(2196), - [aux_sym_cmd_identifier_token12] = ACTIONS(2196), - [aux_sym_cmd_identifier_token13] = ACTIONS(2196), - [aux_sym_cmd_identifier_token14] = ACTIONS(2196), - [aux_sym_cmd_identifier_token15] = ACTIONS(2196), - [aux_sym_cmd_identifier_token16] = ACTIONS(2196), - [aux_sym_cmd_identifier_token17] = ACTIONS(2196), - [aux_sym_cmd_identifier_token18] = ACTIONS(2196), - [aux_sym_cmd_identifier_token19] = ACTIONS(2196), - [aux_sym_cmd_identifier_token20] = ACTIONS(2196), - [aux_sym_cmd_identifier_token21] = ACTIONS(2196), - [aux_sym_cmd_identifier_token22] = ACTIONS(2196), - [aux_sym_cmd_identifier_token23] = ACTIONS(2196), - [aux_sym_cmd_identifier_token24] = ACTIONS(2196), - [aux_sym_cmd_identifier_token25] = ACTIONS(2196), - [aux_sym_cmd_identifier_token26] = ACTIONS(2196), - [aux_sym_cmd_identifier_token27] = ACTIONS(2196), - [aux_sym_cmd_identifier_token28] = ACTIONS(2196), - [aux_sym_cmd_identifier_token29] = ACTIONS(2196), - [aux_sym_cmd_identifier_token30] = ACTIONS(2196), - [aux_sym_cmd_identifier_token31] = ACTIONS(2196), - [aux_sym_cmd_identifier_token32] = ACTIONS(2196), - [aux_sym_cmd_identifier_token33] = ACTIONS(2196), - [aux_sym_cmd_identifier_token34] = ACTIONS(2196), - [aux_sym_cmd_identifier_token35] = ACTIONS(2196), - [aux_sym_cmd_identifier_token36] = ACTIONS(2196), - [anon_sym_true] = ACTIONS(2196), - [anon_sym_false] = ACTIONS(2196), - [anon_sym_null] = ACTIONS(2196), - [aux_sym_cmd_identifier_token38] = ACTIONS(2196), - [aux_sym_cmd_identifier_token39] = ACTIONS(2196), - [aux_sym_cmd_identifier_token40] = ACTIONS(2196), - [anon_sym_def] = ACTIONS(2196), - [anon_sym_export_DASHenv] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_error] = ACTIONS(2196), - [anon_sym_list] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_make] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_catch] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_source] = ACTIONS(2196), - [anon_sym_source_DASHenv] = ACTIONS(2196), - [anon_sym_register] = ACTIONS(2196), - [anon_sym_hide] = ACTIONS(2196), - [anon_sym_hide_DASHenv] = ACTIONS(2196), - [anon_sym_overlay] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2196), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2196), - [aux_sym__val_number_decimal_token3] = ACTIONS(2196), - [aux_sym__val_number_decimal_token4] = ACTIONS(2196), - [aux_sym__val_number_token1] = ACTIONS(2196), - [aux_sym__val_number_token2] = ACTIONS(2196), - [aux_sym__val_number_token3] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [sym__str_single_quotes] = ACTIONS(2196), - [sym__str_back_ticks] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2196), - [sym__entry_separator] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2198), + [577] = { + [sym_comment] = STATE(577), + [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(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(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(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = ACTIONS(1755), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), }, - [482] = { - [sym_comment] = STATE(482), - [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_LPAREN2] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2303), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2303), - [aux_sym__val_number_decimal_token3] = ACTIONS(2303), - [aux_sym__val_number_decimal_token4] = ACTIONS(2303), - [aux_sym__val_number_token1] = ACTIONS(2303), - [aux_sym__val_number_token2] = ACTIONS(2303), - [aux_sym__val_number_token3] = ACTIONS(2303), - [anon_sym_DQUOTE] = ACTIONS(2303), - [sym__str_single_quotes] = ACTIONS(2303), - [sym__str_back_ticks] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2303), - [sym__entry_separator] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2303), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2305), + [578] = { + [sym_comment] = STATE(578), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, - [483] = { - [sym__expr_parenthesized_immediate] = STATE(7570), - [sym_comment] = STATE(483), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_alias] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_let_DASHenv] = ACTIONS(2200), - [anon_sym_mut] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [aux_sym_cmd_identifier_token1] = ACTIONS(2200), - [aux_sym_cmd_identifier_token2] = ACTIONS(2200), - [aux_sym_cmd_identifier_token3] = ACTIONS(2200), - [aux_sym_cmd_identifier_token4] = ACTIONS(2200), - [aux_sym_cmd_identifier_token5] = ACTIONS(2200), - [aux_sym_cmd_identifier_token6] = ACTIONS(2200), - [aux_sym_cmd_identifier_token7] = ACTIONS(2200), - [aux_sym_cmd_identifier_token8] = ACTIONS(2200), - [aux_sym_cmd_identifier_token9] = ACTIONS(2200), - [aux_sym_cmd_identifier_token10] = ACTIONS(2200), - [aux_sym_cmd_identifier_token11] = ACTIONS(2200), - [aux_sym_cmd_identifier_token12] = ACTIONS(2200), - [aux_sym_cmd_identifier_token13] = ACTIONS(2200), - [aux_sym_cmd_identifier_token14] = ACTIONS(2200), - [aux_sym_cmd_identifier_token15] = ACTIONS(2200), - [aux_sym_cmd_identifier_token16] = ACTIONS(2200), - [aux_sym_cmd_identifier_token17] = ACTIONS(2200), - [aux_sym_cmd_identifier_token18] = ACTIONS(2200), - [aux_sym_cmd_identifier_token19] = ACTIONS(2200), - [aux_sym_cmd_identifier_token20] = ACTIONS(2200), - [aux_sym_cmd_identifier_token21] = ACTIONS(2200), - [aux_sym_cmd_identifier_token22] = ACTIONS(2200), - [aux_sym_cmd_identifier_token23] = ACTIONS(2200), - [aux_sym_cmd_identifier_token24] = ACTIONS(2200), - [aux_sym_cmd_identifier_token25] = ACTIONS(2200), - [aux_sym_cmd_identifier_token26] = ACTIONS(2200), - [aux_sym_cmd_identifier_token27] = ACTIONS(2200), - [aux_sym_cmd_identifier_token28] = ACTIONS(2200), - [aux_sym_cmd_identifier_token29] = ACTIONS(2200), - [aux_sym_cmd_identifier_token30] = ACTIONS(2200), - [aux_sym_cmd_identifier_token31] = ACTIONS(2200), - [aux_sym_cmd_identifier_token32] = ACTIONS(2200), - [aux_sym_cmd_identifier_token33] = ACTIONS(2200), - [aux_sym_cmd_identifier_token34] = ACTIONS(2200), - [aux_sym_cmd_identifier_token35] = ACTIONS(2200), - [aux_sym_cmd_identifier_token36] = ACTIONS(2200), - [anon_sym_true] = ACTIONS(2200), - [anon_sym_false] = ACTIONS(2200), - [anon_sym_null] = ACTIONS(2200), - [aux_sym_cmd_identifier_token38] = ACTIONS(2200), - [aux_sym_cmd_identifier_token39] = ACTIONS(2200), - [aux_sym_cmd_identifier_token40] = ACTIONS(2200), - [anon_sym_def] = ACTIONS(2200), - [anon_sym_export_DASHenv] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_DOLLAR] = ACTIONS(2200), - [anon_sym_error] = ACTIONS(2200), - [anon_sym_list] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_make] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_catch] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_source] = ACTIONS(2200), - [anon_sym_source_DASHenv] = ACTIONS(2200), - [anon_sym_register] = ACTIONS(2200), - [anon_sym_hide] = ACTIONS(2200), - [anon_sym_hide_DASHenv] = ACTIONS(2200), - [anon_sym_overlay] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_as] = ACTIONS(2200), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2200), - [aux_sym__val_number_decimal_token1] = ACTIONS(2200), - [aux_sym__val_number_decimal_token2] = ACTIONS(2200), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(2200), - [aux_sym__val_number_token2] = ACTIONS(2200), - [aux_sym__val_number_token3] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [sym__str_single_quotes] = ACTIONS(2200), - [sym__str_back_ticks] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2200), - [sym__entry_separator] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2200), + [579] = { + [sym_comment] = STATE(579), + [aux_sym__multiple_types_repeat1] = STATE(589), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_alias] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_let_DASHenv] = ACTIONS(2304), + [anon_sym_mut] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [aux_sym_cmd_identifier_token1] = ACTIONS(2304), + [aux_sym_cmd_identifier_token2] = ACTIONS(2304), + [aux_sym_cmd_identifier_token3] = ACTIONS(2304), + [aux_sym_cmd_identifier_token4] = ACTIONS(2304), + [aux_sym_cmd_identifier_token5] = ACTIONS(2304), + [aux_sym_cmd_identifier_token6] = ACTIONS(2304), + [aux_sym_cmd_identifier_token7] = ACTIONS(2304), + [aux_sym_cmd_identifier_token8] = ACTIONS(2304), + [aux_sym_cmd_identifier_token9] = ACTIONS(2304), + [aux_sym_cmd_identifier_token10] = ACTIONS(2304), + [aux_sym_cmd_identifier_token11] = ACTIONS(2304), + [aux_sym_cmd_identifier_token12] = ACTIONS(2304), + [aux_sym_cmd_identifier_token13] = ACTIONS(2304), + [aux_sym_cmd_identifier_token14] = ACTIONS(2304), + [aux_sym_cmd_identifier_token15] = ACTIONS(2304), + [aux_sym_cmd_identifier_token16] = ACTIONS(2304), + [aux_sym_cmd_identifier_token17] = ACTIONS(2304), + [aux_sym_cmd_identifier_token18] = ACTIONS(2304), + [aux_sym_cmd_identifier_token19] = ACTIONS(2304), + [aux_sym_cmd_identifier_token20] = ACTIONS(2304), + [aux_sym_cmd_identifier_token21] = ACTIONS(2304), + [aux_sym_cmd_identifier_token22] = ACTIONS(2304), + [aux_sym_cmd_identifier_token23] = ACTIONS(2304), + [aux_sym_cmd_identifier_token24] = ACTIONS(2304), + [aux_sym_cmd_identifier_token25] = ACTIONS(2304), + [aux_sym_cmd_identifier_token26] = ACTIONS(2304), + [aux_sym_cmd_identifier_token27] = ACTIONS(2304), + [aux_sym_cmd_identifier_token28] = ACTIONS(2304), + [aux_sym_cmd_identifier_token29] = ACTIONS(2304), + [aux_sym_cmd_identifier_token30] = ACTIONS(2304), + [aux_sym_cmd_identifier_token31] = ACTIONS(2304), + [aux_sym_cmd_identifier_token32] = ACTIONS(2304), + [aux_sym_cmd_identifier_token33] = ACTIONS(2304), + [aux_sym_cmd_identifier_token34] = ACTIONS(2304), + [aux_sym_cmd_identifier_token35] = ACTIONS(2304), + [aux_sym_cmd_identifier_token36] = ACTIONS(2304), + [aux_sym_cmd_identifier_token37] = ACTIONS(2304), + [aux_sym_cmd_identifier_token38] = ACTIONS(2304), + [aux_sym_cmd_identifier_token39] = ACTIONS(2304), + [aux_sym_cmd_identifier_token40] = ACTIONS(2304), + [anon_sym_def] = ACTIONS(2304), + [anon_sym_export_DASHenv] = ACTIONS(2304), + [anon_sym_extern] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_use] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_DOLLAR] = ACTIONS(2304), + [anon_sym_error] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_in2] = ACTIONS(2304), + [anon_sym_loop] = ACTIONS(2304), + [anon_sym_make] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_match] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_catch] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_source] = ACTIONS(2304), + [anon_sym_source_DASHenv] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2304), + [anon_sym_hide] = ACTIONS(2304), + [anon_sym_hide_DASHenv] = ACTIONS(2304), + [anon_sym_overlay] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2304), + [aux_sym__val_number_decimal_token1] = ACTIONS(2304), + [aux_sym__val_number_decimal_token2] = ACTIONS(2304), + [aux_sym__val_number_decimal_token3] = ACTIONS(2304), + [aux_sym__val_number_decimal_token4] = ACTIONS(2304), + [aux_sym__val_number_token1] = ACTIONS(2304), + [aux_sym__val_number_token2] = ACTIONS(2304), + [aux_sym__val_number_token3] = ACTIONS(2304), + [aux_sym__val_number_token4] = ACTIONS(2304), + [aux_sym__val_number_token5] = ACTIONS(2304), + [aux_sym__val_number_token6] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [sym__str_single_quotes] = ACTIONS(2304), + [sym__str_back_ticks] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2304), + [sym__entry_separator] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2202), + [sym_raw_string_begin] = ACTIONS(2308), }, - [484] = { - [sym__expr_parenthesized_immediate] = STATE(7774), - [sym_comment] = STATE(484), - [anon_sym_export] = ACTIONS(2307), - [anon_sym_alias] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_DASHenv] = ACTIONS(2307), - [anon_sym_mut] = ACTIONS(2307), - [anon_sym_const] = ACTIONS(2307), - [aux_sym_cmd_identifier_token1] = ACTIONS(2307), - [aux_sym_cmd_identifier_token2] = ACTIONS(2307), - [aux_sym_cmd_identifier_token3] = ACTIONS(2307), - [aux_sym_cmd_identifier_token4] = ACTIONS(2307), - [aux_sym_cmd_identifier_token5] = ACTIONS(2307), - [aux_sym_cmd_identifier_token6] = ACTIONS(2307), - [aux_sym_cmd_identifier_token7] = ACTIONS(2307), - [aux_sym_cmd_identifier_token8] = ACTIONS(2307), - [aux_sym_cmd_identifier_token9] = ACTIONS(2307), - [aux_sym_cmd_identifier_token10] = ACTIONS(2307), - [aux_sym_cmd_identifier_token11] = ACTIONS(2307), - [aux_sym_cmd_identifier_token12] = ACTIONS(2307), - [aux_sym_cmd_identifier_token13] = ACTIONS(2307), - [aux_sym_cmd_identifier_token14] = ACTIONS(2307), - [aux_sym_cmd_identifier_token15] = ACTIONS(2307), - [aux_sym_cmd_identifier_token16] = ACTIONS(2307), - [aux_sym_cmd_identifier_token17] = ACTIONS(2307), - [aux_sym_cmd_identifier_token18] = ACTIONS(2307), - [aux_sym_cmd_identifier_token19] = ACTIONS(2307), - [aux_sym_cmd_identifier_token20] = ACTIONS(2307), - [aux_sym_cmd_identifier_token21] = ACTIONS(2307), - [aux_sym_cmd_identifier_token22] = ACTIONS(2307), - [aux_sym_cmd_identifier_token23] = ACTIONS(2307), - [aux_sym_cmd_identifier_token24] = ACTIONS(2307), - [aux_sym_cmd_identifier_token25] = ACTIONS(2307), - [aux_sym_cmd_identifier_token26] = ACTIONS(2307), - [aux_sym_cmd_identifier_token27] = ACTIONS(2307), - [aux_sym_cmd_identifier_token28] = ACTIONS(2307), - [aux_sym_cmd_identifier_token29] = ACTIONS(2307), - [aux_sym_cmd_identifier_token30] = ACTIONS(2307), - [aux_sym_cmd_identifier_token31] = ACTIONS(2307), - [aux_sym_cmd_identifier_token32] = ACTIONS(2307), - [aux_sym_cmd_identifier_token33] = ACTIONS(2307), - [aux_sym_cmd_identifier_token34] = ACTIONS(2307), - [aux_sym_cmd_identifier_token35] = ACTIONS(2307), - [aux_sym_cmd_identifier_token36] = ACTIONS(2307), - [anon_sym_true] = ACTIONS(2307), - [anon_sym_false] = ACTIONS(2307), - [anon_sym_null] = ACTIONS(2307), - [aux_sym_cmd_identifier_token38] = ACTIONS(2307), - [aux_sym_cmd_identifier_token39] = ACTIONS(2307), - [aux_sym_cmd_identifier_token40] = ACTIONS(2307), - [anon_sym_def] = ACTIONS(2307), - [anon_sym_export_DASHenv] = ACTIONS(2307), - [anon_sym_extern] = ACTIONS(2307), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_error] = ACTIONS(2307), - [anon_sym_list] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_break] = ACTIONS(2307), - [anon_sym_continue] = ACTIONS(2307), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_in] = ACTIONS(2307), - [anon_sym_loop] = ACTIONS(2307), - [anon_sym_make] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_else] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_catch] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_source] = ACTIONS(2307), - [anon_sym_source_DASHenv] = ACTIONS(2307), - [anon_sym_register] = ACTIONS(2307), - [anon_sym_hide] = ACTIONS(2307), - [anon_sym_hide_DASHenv] = ACTIONS(2307), - [anon_sym_overlay] = ACTIONS(2307), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_as] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2307), - [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), - [sym__entry_separator] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2309), + [580] = { + [sym_comment] = STATE(580), + [anon_sym_export] = ACTIONS(2187), + [anon_sym_alias] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_let_DASHenv] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [aux_sym_cmd_identifier_token1] = ACTIONS(2187), + [aux_sym_cmd_identifier_token2] = ACTIONS(2189), + [aux_sym_cmd_identifier_token3] = ACTIONS(2189), + [aux_sym_cmd_identifier_token4] = ACTIONS(2189), + [aux_sym_cmd_identifier_token5] = ACTIONS(2189), + [aux_sym_cmd_identifier_token6] = ACTIONS(2189), + [aux_sym_cmd_identifier_token7] = ACTIONS(2189), + [aux_sym_cmd_identifier_token8] = ACTIONS(2187), + [aux_sym_cmd_identifier_token9] = ACTIONS(2187), + [aux_sym_cmd_identifier_token10] = ACTIONS(2189), + [aux_sym_cmd_identifier_token11] = ACTIONS(2189), + [aux_sym_cmd_identifier_token12] = ACTIONS(2187), + [aux_sym_cmd_identifier_token13] = ACTIONS(2187), + [aux_sym_cmd_identifier_token14] = ACTIONS(2187), + [aux_sym_cmd_identifier_token15] = ACTIONS(2187), + [aux_sym_cmd_identifier_token16] = ACTIONS(2189), + [aux_sym_cmd_identifier_token17] = ACTIONS(2189), + [aux_sym_cmd_identifier_token18] = ACTIONS(2189), + [aux_sym_cmd_identifier_token19] = ACTIONS(2189), + [aux_sym_cmd_identifier_token20] = ACTIONS(2189), + [aux_sym_cmd_identifier_token21] = ACTIONS(2189), + [aux_sym_cmd_identifier_token22] = ACTIONS(2189), + [aux_sym_cmd_identifier_token23] = ACTIONS(2189), + [aux_sym_cmd_identifier_token24] = ACTIONS(2189), + [aux_sym_cmd_identifier_token25] = ACTIONS(2189), + [aux_sym_cmd_identifier_token26] = ACTIONS(2189), + [aux_sym_cmd_identifier_token27] = ACTIONS(2189), + [aux_sym_cmd_identifier_token28] = ACTIONS(2189), + [aux_sym_cmd_identifier_token29] = ACTIONS(2189), + [aux_sym_cmd_identifier_token30] = ACTIONS(2189), + [aux_sym_cmd_identifier_token31] = ACTIONS(2189), + [aux_sym_cmd_identifier_token32] = ACTIONS(2189), + [aux_sym_cmd_identifier_token33] = ACTIONS(2189), + [aux_sym_cmd_identifier_token34] = ACTIONS(2187), + [aux_sym_cmd_identifier_token35] = ACTIONS(2189), + [aux_sym_cmd_identifier_token36] = ACTIONS(2189), + [aux_sym_cmd_identifier_token37] = ACTIONS(2189), + [aux_sym_cmd_identifier_token38] = ACTIONS(2187), + [aux_sym_cmd_identifier_token39] = ACTIONS(2189), + [aux_sym_cmd_identifier_token40] = ACTIONS(2189), + [anon_sym_def] = ACTIONS(2187), + [anon_sym_export_DASHenv] = ACTIONS(2187), + [anon_sym_extern] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_use] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2189), + [anon_sym_error] = ACTIONS(2187), + [anon_sym_DASH2] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_in2] = ACTIONS(2187), + [anon_sym_loop] = ACTIONS(2187), + [anon_sym_make] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_do] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_catch] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_source] = ACTIONS(2187), + [anon_sym_source_DASHenv] = ACTIONS(2187), + [anon_sym_register] = ACTIONS(2187), + [anon_sym_hide] = ACTIONS(2187), + [anon_sym_hide_DASHenv] = ACTIONS(2187), + [anon_sym_overlay] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2189), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2189), + [aux_sym__val_number_decimal_token1] = ACTIONS(2187), + [aux_sym__val_number_decimal_token2] = ACTIONS(2189), + [aux_sym__val_number_decimal_token3] = ACTIONS(2189), + [aux_sym__val_number_decimal_token4] = ACTIONS(2189), + [aux_sym__val_number_token1] = ACTIONS(2189), + [aux_sym__val_number_token2] = ACTIONS(2189), + [aux_sym__val_number_token3] = ACTIONS(2189), + [aux_sym__val_number_token4] = ACTIONS(2187), + [aux_sym__val_number_token5] = ACTIONS(2187), + [aux_sym__val_number_token6] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2189), + [sym__str_single_quotes] = ACTIONS(2189), + [sym__str_back_ticks] = ACTIONS(2189), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2189), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2189), }, - [485] = { - [sym__expr_parenthesized_immediate] = STATE(7774), - [sym_comment] = STATE(485), - [anon_sym_export] = ACTIONS(2311), - [anon_sym_alias] = ACTIONS(2311), - [anon_sym_let] = ACTIONS(2311), - [anon_sym_let_DASHenv] = ACTIONS(2311), - [anon_sym_mut] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [aux_sym_cmd_identifier_token1] = ACTIONS(2311), - [aux_sym_cmd_identifier_token2] = ACTIONS(2311), - [aux_sym_cmd_identifier_token3] = ACTIONS(2311), - [aux_sym_cmd_identifier_token4] = ACTIONS(2311), - [aux_sym_cmd_identifier_token5] = ACTIONS(2311), - [aux_sym_cmd_identifier_token6] = ACTIONS(2311), - [aux_sym_cmd_identifier_token7] = ACTIONS(2311), - [aux_sym_cmd_identifier_token8] = ACTIONS(2311), - [aux_sym_cmd_identifier_token9] = ACTIONS(2311), - [aux_sym_cmd_identifier_token10] = ACTIONS(2311), - [aux_sym_cmd_identifier_token11] = ACTIONS(2311), - [aux_sym_cmd_identifier_token12] = ACTIONS(2311), - [aux_sym_cmd_identifier_token13] = ACTIONS(2311), - [aux_sym_cmd_identifier_token14] = ACTIONS(2311), - [aux_sym_cmd_identifier_token15] = ACTIONS(2311), - [aux_sym_cmd_identifier_token16] = ACTIONS(2311), - [aux_sym_cmd_identifier_token17] = ACTIONS(2311), - [aux_sym_cmd_identifier_token18] = ACTIONS(2311), - [aux_sym_cmd_identifier_token19] = ACTIONS(2311), - [aux_sym_cmd_identifier_token20] = ACTIONS(2311), - [aux_sym_cmd_identifier_token21] = ACTIONS(2311), - [aux_sym_cmd_identifier_token22] = ACTIONS(2311), - [aux_sym_cmd_identifier_token23] = ACTIONS(2311), - [aux_sym_cmd_identifier_token24] = ACTIONS(2311), - [aux_sym_cmd_identifier_token25] = ACTIONS(2311), - [aux_sym_cmd_identifier_token26] = ACTIONS(2311), - [aux_sym_cmd_identifier_token27] = ACTIONS(2311), - [aux_sym_cmd_identifier_token28] = ACTIONS(2311), - [aux_sym_cmd_identifier_token29] = ACTIONS(2311), - [aux_sym_cmd_identifier_token30] = ACTIONS(2311), - [aux_sym_cmd_identifier_token31] = ACTIONS(2311), - [aux_sym_cmd_identifier_token32] = ACTIONS(2311), - [aux_sym_cmd_identifier_token33] = ACTIONS(2311), - [aux_sym_cmd_identifier_token34] = ACTIONS(2311), - [aux_sym_cmd_identifier_token35] = ACTIONS(2311), - [aux_sym_cmd_identifier_token36] = ACTIONS(2311), - [anon_sym_true] = ACTIONS(2311), - [anon_sym_false] = ACTIONS(2311), - [anon_sym_null] = ACTIONS(2311), - [aux_sym_cmd_identifier_token38] = ACTIONS(2311), - [aux_sym_cmd_identifier_token39] = ACTIONS(2311), - [aux_sym_cmd_identifier_token40] = ACTIONS(2311), - [anon_sym_def] = ACTIONS(2311), - [anon_sym_export_DASHenv] = ACTIONS(2311), - [anon_sym_extern] = ACTIONS(2311), - [anon_sym_module] = ACTIONS(2311), - [anon_sym_use] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2311), - [anon_sym_error] = ACTIONS(2311), - [anon_sym_list] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_in] = ACTIONS(2311), - [anon_sym_loop] = ACTIONS(2311), - [anon_sym_make] = ACTIONS(2311), - [anon_sym_while] = ACTIONS(2311), - [anon_sym_do] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_else] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_try] = ACTIONS(2311), - [anon_sym_catch] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_source] = ACTIONS(2311), - [anon_sym_source_DASHenv] = ACTIONS(2311), - [anon_sym_register] = ACTIONS(2311), - [anon_sym_hide] = ACTIONS(2311), - [anon_sym_hide_DASHenv] = ACTIONS(2311), - [anon_sym_overlay] = ACTIONS(2311), - [anon_sym_new] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2311), - [aux_sym__val_number_decimal_token1] = ACTIONS(2311), - [aux_sym__val_number_decimal_token2] = ACTIONS(2311), - [aux_sym__val_number_decimal_token3] = ACTIONS(2311), - [aux_sym__val_number_decimal_token4] = ACTIONS(2311), - [aux_sym__val_number_token1] = ACTIONS(2311), - [aux_sym__val_number_token2] = ACTIONS(2311), - [aux_sym__val_number_token3] = ACTIONS(2311), - [anon_sym_DQUOTE] = ACTIONS(2311), - [sym__str_single_quotes] = ACTIONS(2311), - [sym__str_back_ticks] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2311), - [sym__entry_separator] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2311), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2313), + [581] = { + [sym_comment] = STATE(581), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, - [486] = { - [sym__expr_parenthesized_immediate] = STATE(7774), - [sym_comment] = STATE(486), - [anon_sym_export] = ACTIONS(2315), - [anon_sym_alias] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_let_DASHenv] = ACTIONS(2315), - [anon_sym_mut] = ACTIONS(2315), - [anon_sym_const] = ACTIONS(2315), - [aux_sym_cmd_identifier_token1] = ACTIONS(2315), - [aux_sym_cmd_identifier_token2] = ACTIONS(2315), - [aux_sym_cmd_identifier_token3] = ACTIONS(2315), - [aux_sym_cmd_identifier_token4] = ACTIONS(2315), - [aux_sym_cmd_identifier_token5] = ACTIONS(2315), - [aux_sym_cmd_identifier_token6] = ACTIONS(2315), - [aux_sym_cmd_identifier_token7] = ACTIONS(2315), - [aux_sym_cmd_identifier_token8] = ACTIONS(2315), - [aux_sym_cmd_identifier_token9] = ACTIONS(2315), - [aux_sym_cmd_identifier_token10] = ACTIONS(2315), - [aux_sym_cmd_identifier_token11] = ACTIONS(2315), - [aux_sym_cmd_identifier_token12] = ACTIONS(2315), - [aux_sym_cmd_identifier_token13] = ACTIONS(2315), - [aux_sym_cmd_identifier_token14] = ACTIONS(2315), - [aux_sym_cmd_identifier_token15] = ACTIONS(2315), - [aux_sym_cmd_identifier_token16] = ACTIONS(2315), - [aux_sym_cmd_identifier_token17] = ACTIONS(2315), - [aux_sym_cmd_identifier_token18] = ACTIONS(2315), - [aux_sym_cmd_identifier_token19] = ACTIONS(2315), - [aux_sym_cmd_identifier_token20] = ACTIONS(2315), - [aux_sym_cmd_identifier_token21] = ACTIONS(2315), - [aux_sym_cmd_identifier_token22] = ACTIONS(2315), - [aux_sym_cmd_identifier_token23] = ACTIONS(2315), - [aux_sym_cmd_identifier_token24] = ACTIONS(2315), - [aux_sym_cmd_identifier_token25] = ACTIONS(2315), - [aux_sym_cmd_identifier_token26] = ACTIONS(2315), - [aux_sym_cmd_identifier_token27] = ACTIONS(2315), - [aux_sym_cmd_identifier_token28] = ACTIONS(2315), - [aux_sym_cmd_identifier_token29] = ACTIONS(2315), - [aux_sym_cmd_identifier_token30] = ACTIONS(2315), - [aux_sym_cmd_identifier_token31] = ACTIONS(2315), - [aux_sym_cmd_identifier_token32] = ACTIONS(2315), - [aux_sym_cmd_identifier_token33] = ACTIONS(2315), - [aux_sym_cmd_identifier_token34] = ACTIONS(2315), - [aux_sym_cmd_identifier_token35] = ACTIONS(2315), - [aux_sym_cmd_identifier_token36] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(2315), - [anon_sym_false] = ACTIONS(2315), - [anon_sym_null] = ACTIONS(2315), - [aux_sym_cmd_identifier_token38] = ACTIONS(2315), - [aux_sym_cmd_identifier_token39] = ACTIONS(2315), - [aux_sym_cmd_identifier_token40] = ACTIONS(2315), - [anon_sym_def] = ACTIONS(2315), - [anon_sym_export_DASHenv] = ACTIONS(2315), - [anon_sym_extern] = ACTIONS(2315), - [anon_sym_module] = ACTIONS(2315), - [anon_sym_use] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_DOLLAR] = ACTIONS(2315), - [anon_sym_error] = ACTIONS(2315), - [anon_sym_list] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_break] = ACTIONS(2315), - [anon_sym_continue] = ACTIONS(2315), - [anon_sym_for] = ACTIONS(2315), - [anon_sym_in] = ACTIONS(2315), - [anon_sym_loop] = ACTIONS(2315), - [anon_sym_make] = ACTIONS(2315), - [anon_sym_while] = ACTIONS(2315), - [anon_sym_do] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_try] = ACTIONS(2315), - [anon_sym_catch] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2315), - [anon_sym_source] = ACTIONS(2315), - [anon_sym_source_DASHenv] = ACTIONS(2315), - [anon_sym_register] = ACTIONS(2315), - [anon_sym_hide] = ACTIONS(2315), - [anon_sym_hide_DASHenv] = ACTIONS(2315), - [anon_sym_overlay] = ACTIONS(2315), - [anon_sym_new] = ACTIONS(2315), - [anon_sym_as] = ACTIONS(2315), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2315), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2315), - [aux_sym__val_number_decimal_token2] = ACTIONS(2315), - [aux_sym__val_number_decimal_token3] = ACTIONS(2315), - [aux_sym__val_number_decimal_token4] = ACTIONS(2315), - [aux_sym__val_number_token1] = ACTIONS(2315), - [aux_sym__val_number_token2] = ACTIONS(2315), - [aux_sym__val_number_token3] = ACTIONS(2315), - [anon_sym_DQUOTE] = ACTIONS(2315), - [sym__str_single_quotes] = ACTIONS(2315), - [sym__str_back_ticks] = ACTIONS(2315), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2315), - [sym__entry_separator] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2315), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2317), + [582] = { + [sym_comment] = STATE(582), + [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(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(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [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(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(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [aux_sym_cmd_identifier_token37] = 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(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [anon_sym_error] = ACTIONS(1890), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = 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_as] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1892), }, - [487] = { - [sym_comment] = STATE(487), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [583] = { + [sym_comment] = STATE(583), + [anon_sym_export] = ACTIONS(1866), + [anon_sym_alias] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_let_DASHenv] = ACTIONS(1866), + [anon_sym_mut] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [aux_sym_cmd_identifier_token1] = ACTIONS(1866), + [aux_sym_cmd_identifier_token2] = ACTIONS(1874), + [aux_sym_cmd_identifier_token3] = ACTIONS(1874), + [aux_sym_cmd_identifier_token4] = ACTIONS(1874), + [aux_sym_cmd_identifier_token5] = ACTIONS(1874), + [aux_sym_cmd_identifier_token6] = ACTIONS(1874), + [aux_sym_cmd_identifier_token7] = ACTIONS(1874), + [aux_sym_cmd_identifier_token8] = ACTIONS(1866), + [aux_sym_cmd_identifier_token9] = ACTIONS(1866), + [aux_sym_cmd_identifier_token10] = ACTIONS(1874), + [aux_sym_cmd_identifier_token11] = ACTIONS(1874), + [aux_sym_cmd_identifier_token12] = ACTIONS(1866), + [aux_sym_cmd_identifier_token13] = ACTIONS(1866), + [aux_sym_cmd_identifier_token14] = ACTIONS(1866), + [aux_sym_cmd_identifier_token15] = ACTIONS(1866), + [aux_sym_cmd_identifier_token16] = ACTIONS(1874), + [aux_sym_cmd_identifier_token17] = ACTIONS(1874), + [aux_sym_cmd_identifier_token18] = ACTIONS(1874), + [aux_sym_cmd_identifier_token19] = ACTIONS(1874), + [aux_sym_cmd_identifier_token20] = ACTIONS(1874), + [aux_sym_cmd_identifier_token21] = ACTIONS(1874), + [aux_sym_cmd_identifier_token22] = ACTIONS(1874), + [aux_sym_cmd_identifier_token23] = ACTIONS(1874), + [aux_sym_cmd_identifier_token24] = ACTIONS(1874), + [aux_sym_cmd_identifier_token25] = ACTIONS(1874), + [aux_sym_cmd_identifier_token26] = ACTIONS(1874), + [aux_sym_cmd_identifier_token27] = ACTIONS(1874), + [aux_sym_cmd_identifier_token28] = ACTIONS(1874), + [aux_sym_cmd_identifier_token29] = ACTIONS(1874), + [aux_sym_cmd_identifier_token30] = ACTIONS(1874), + [aux_sym_cmd_identifier_token31] = ACTIONS(1874), + [aux_sym_cmd_identifier_token32] = ACTIONS(1874), + [aux_sym_cmd_identifier_token33] = ACTIONS(1874), + [aux_sym_cmd_identifier_token34] = ACTIONS(1866), + [aux_sym_cmd_identifier_token35] = ACTIONS(1874), + [aux_sym_cmd_identifier_token36] = ACTIONS(1874), + [aux_sym_cmd_identifier_token37] = ACTIONS(1874), + [aux_sym_cmd_identifier_token38] = ACTIONS(1866), + [aux_sym_cmd_identifier_token39] = ACTIONS(1874), + [aux_sym_cmd_identifier_token40] = ACTIONS(1874), + [anon_sym_def] = ACTIONS(1866), + [anon_sym_export_DASHenv] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_module] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_error] = ACTIONS(1866), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_in2] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_make] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_do] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1866), + [anon_sym_catch] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_source] = ACTIONS(1866), + [anon_sym_source_DASHenv] = ACTIONS(1866), + [anon_sym_register] = ACTIONS(1866), + [anon_sym_hide] = ACTIONS(1866), + [anon_sym_hide_DASHenv] = ACTIONS(1866), + [anon_sym_overlay] = ACTIONS(1866), + [anon_sym_as] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_PLUS2] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [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), + [aux_sym__val_number_token4] = ACTIONS(1866), + [aux_sym__val_number_token5] = ACTIONS(1866), + [aux_sym__val_number_token6] = ACTIONS(1866), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1874), }, - [488] = { - [sym_comment] = STATE(488), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [584] = { + [sym_comment] = STATE(584), + [aux_sym__multiple_types_repeat1] = STATE(591), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_alias] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_let_DASHenv] = ACTIONS(2286), + [anon_sym_mut] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [aux_sym_cmd_identifier_token1] = ACTIONS(2286), + [aux_sym_cmd_identifier_token2] = ACTIONS(2286), + [aux_sym_cmd_identifier_token3] = ACTIONS(2286), + [aux_sym_cmd_identifier_token4] = ACTIONS(2286), + [aux_sym_cmd_identifier_token5] = ACTIONS(2286), + [aux_sym_cmd_identifier_token6] = ACTIONS(2286), + [aux_sym_cmd_identifier_token7] = ACTIONS(2286), + [aux_sym_cmd_identifier_token8] = ACTIONS(2286), + [aux_sym_cmd_identifier_token9] = ACTIONS(2286), + [aux_sym_cmd_identifier_token10] = ACTIONS(2286), + [aux_sym_cmd_identifier_token11] = ACTIONS(2286), + [aux_sym_cmd_identifier_token12] = ACTIONS(2286), + [aux_sym_cmd_identifier_token13] = ACTIONS(2286), + [aux_sym_cmd_identifier_token14] = ACTIONS(2286), + [aux_sym_cmd_identifier_token15] = ACTIONS(2286), + [aux_sym_cmd_identifier_token16] = ACTIONS(2286), + [aux_sym_cmd_identifier_token17] = ACTIONS(2286), + [aux_sym_cmd_identifier_token18] = ACTIONS(2286), + [aux_sym_cmd_identifier_token19] = ACTIONS(2286), + [aux_sym_cmd_identifier_token20] = ACTIONS(2286), + [aux_sym_cmd_identifier_token21] = ACTIONS(2286), + [aux_sym_cmd_identifier_token22] = ACTIONS(2286), + [aux_sym_cmd_identifier_token23] = ACTIONS(2286), + [aux_sym_cmd_identifier_token24] = ACTIONS(2286), + [aux_sym_cmd_identifier_token25] = ACTIONS(2286), + [aux_sym_cmd_identifier_token26] = ACTIONS(2286), + [aux_sym_cmd_identifier_token27] = ACTIONS(2286), + [aux_sym_cmd_identifier_token28] = ACTIONS(2286), + [aux_sym_cmd_identifier_token29] = ACTIONS(2286), + [aux_sym_cmd_identifier_token30] = ACTIONS(2286), + [aux_sym_cmd_identifier_token31] = ACTIONS(2286), + [aux_sym_cmd_identifier_token32] = ACTIONS(2286), + [aux_sym_cmd_identifier_token33] = ACTIONS(2286), + [aux_sym_cmd_identifier_token34] = ACTIONS(2286), + [aux_sym_cmd_identifier_token35] = ACTIONS(2286), + [aux_sym_cmd_identifier_token36] = ACTIONS(2286), + [aux_sym_cmd_identifier_token37] = ACTIONS(2286), + [aux_sym_cmd_identifier_token38] = ACTIONS(2286), + [aux_sym_cmd_identifier_token39] = ACTIONS(2286), + [aux_sym_cmd_identifier_token40] = ACTIONS(2286), + [anon_sym_def] = ACTIONS(2286), + [anon_sym_export_DASHenv] = ACTIONS(2286), + [anon_sym_extern] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_use] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_error] = ACTIONS(2286), + [anon_sym_DASH2] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_in2] = ACTIONS(2286), + [anon_sym_loop] = ACTIONS(2286), + [anon_sym_make] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_match] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_source] = ACTIONS(2286), + [anon_sym_source_DASHenv] = ACTIONS(2286), + [anon_sym_register] = ACTIONS(2286), + [anon_sym_hide] = ACTIONS(2286), + [anon_sym_hide_DASHenv] = ACTIONS(2286), + [anon_sym_overlay] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_PLUS2] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), + [aux_sym__val_number_decimal_token1] = ACTIONS(2286), + [aux_sym__val_number_decimal_token2] = ACTIONS(2286), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), + [aux_sym__val_number_token1] = ACTIONS(2286), + [aux_sym__val_number_token2] = ACTIONS(2286), + [aux_sym__val_number_token3] = ACTIONS(2286), + [aux_sym__val_number_token4] = ACTIONS(2286), + [aux_sym__val_number_token5] = ACTIONS(2286), + [aux_sym__val_number_token6] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym__str_single_quotes] = ACTIONS(2286), + [sym__str_back_ticks] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), + [sym__entry_separator] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2292), }, - [489] = { - [sym_comment] = STATE(489), - [anon_sym_export] = ACTIONS(1826), - [anon_sym_alias] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_let_DASHenv] = ACTIONS(1826), - [anon_sym_mut] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [aux_sym_cmd_identifier_token1] = ACTIONS(1826), - [aux_sym_cmd_identifier_token2] = ACTIONS(1826), - [aux_sym_cmd_identifier_token3] = ACTIONS(1826), - [aux_sym_cmd_identifier_token4] = ACTIONS(1826), - [aux_sym_cmd_identifier_token5] = ACTIONS(1826), - [aux_sym_cmd_identifier_token6] = ACTIONS(1826), - [aux_sym_cmd_identifier_token7] = ACTIONS(1826), - [aux_sym_cmd_identifier_token8] = ACTIONS(1826), - [aux_sym_cmd_identifier_token9] = ACTIONS(1826), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1826), - [aux_sym_cmd_identifier_token13] = ACTIONS(1826), - [aux_sym_cmd_identifier_token14] = ACTIONS(1826), - [aux_sym_cmd_identifier_token15] = ACTIONS(1826), - [aux_sym_cmd_identifier_token16] = ACTIONS(1826), - [aux_sym_cmd_identifier_token17] = ACTIONS(1826), - [aux_sym_cmd_identifier_token18] = ACTIONS(1826), - [aux_sym_cmd_identifier_token19] = ACTIONS(1826), - [aux_sym_cmd_identifier_token20] = ACTIONS(1826), - [aux_sym_cmd_identifier_token21] = ACTIONS(1826), - [aux_sym_cmd_identifier_token22] = ACTIONS(1826), - [aux_sym_cmd_identifier_token23] = ACTIONS(1826), - [aux_sym_cmd_identifier_token24] = ACTIONS(1826), - [aux_sym_cmd_identifier_token25] = ACTIONS(1826), - [aux_sym_cmd_identifier_token26] = ACTIONS(1826), - [aux_sym_cmd_identifier_token27] = ACTIONS(1826), - [aux_sym_cmd_identifier_token28] = ACTIONS(1826), - [aux_sym_cmd_identifier_token29] = ACTIONS(1826), - [aux_sym_cmd_identifier_token30] = ACTIONS(1826), - [aux_sym_cmd_identifier_token31] = ACTIONS(1826), - [aux_sym_cmd_identifier_token32] = ACTIONS(1826), - [aux_sym_cmd_identifier_token33] = ACTIONS(1826), - [aux_sym_cmd_identifier_token34] = ACTIONS(1826), - [aux_sym_cmd_identifier_token35] = ACTIONS(1826), - [aux_sym_cmd_identifier_token36] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1828), - [aux_sym_cmd_identifier_token38] = ACTIONS(1826), - [aux_sym_cmd_identifier_token39] = ACTIONS(1828), - [aux_sym_cmd_identifier_token40] = ACTIONS(1828), - [anon_sym_def] = ACTIONS(1826), - [anon_sym_export_DASHenv] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_module] = ACTIONS(1826), - [anon_sym_use] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_error] = ACTIONS(1826), - [anon_sym_list] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_loop] = ACTIONS(1826), - [anon_sym_make] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_match] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_catch] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_source] = ACTIONS(1826), - [anon_sym_source_DASHenv] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_hide] = ACTIONS(1826), - [anon_sym_hide_DASHenv] = ACTIONS(1826), - [anon_sym_overlay] = ACTIONS(1826), - [anon_sym_new] = ACTIONS(1826), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), - [anon_sym_DOT_DOT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1828), + [585] = { + [sym_comment] = STATE(585), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(992), + [aux_sym_cmd_identifier_token3] = ACTIONS(992), + [aux_sym_cmd_identifier_token4] = ACTIONS(992), + [aux_sym_cmd_identifier_token5] = ACTIONS(992), + [aux_sym_cmd_identifier_token6] = ACTIONS(992), + [aux_sym_cmd_identifier_token7] = ACTIONS(992), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(992), + [aux_sym_cmd_identifier_token11] = ACTIONS(992), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(992), + [aux_sym_cmd_identifier_token17] = ACTIONS(992), + [aux_sym_cmd_identifier_token18] = ACTIONS(992), + [aux_sym_cmd_identifier_token19] = ACTIONS(992), + [aux_sym_cmd_identifier_token20] = ACTIONS(992), + [aux_sym_cmd_identifier_token21] = ACTIONS(992), + [aux_sym_cmd_identifier_token22] = ACTIONS(992), + [aux_sym_cmd_identifier_token23] = ACTIONS(992), + [aux_sym_cmd_identifier_token24] = ACTIONS(992), + [aux_sym_cmd_identifier_token25] = ACTIONS(992), + [aux_sym_cmd_identifier_token26] = ACTIONS(992), + [aux_sym_cmd_identifier_token27] = ACTIONS(992), + [aux_sym_cmd_identifier_token28] = ACTIONS(992), + [aux_sym_cmd_identifier_token29] = ACTIONS(992), + [aux_sym_cmd_identifier_token30] = ACTIONS(992), + [aux_sym_cmd_identifier_token31] = ACTIONS(992), + [aux_sym_cmd_identifier_token32] = ACTIONS(992), + [aux_sym_cmd_identifier_token33] = ACTIONS(992), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(992), + [aux_sym_cmd_identifier_token36] = ACTIONS(992), + [aux_sym_cmd_identifier_token37] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), }, - [490] = { - [sym_comment] = STATE(490), + [586] = { + [sym_comment] = STATE(586), [anon_sym_export] = ACTIONS(2234), [anon_sym_alias] = ACTIONS(2234), [anon_sym_let] = ACTIONS(2234), @@ -132078,61 +138480,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(2234), [anon_sym_const] = ACTIONS(2234), [aux_sym_cmd_identifier_token1] = ACTIONS(2234), - [aux_sym_cmd_identifier_token2] = ACTIONS(2234), - [aux_sym_cmd_identifier_token3] = ACTIONS(2234), - [aux_sym_cmd_identifier_token4] = ACTIONS(2234), - [aux_sym_cmd_identifier_token5] = ACTIONS(2234), - [aux_sym_cmd_identifier_token6] = ACTIONS(2234), - [aux_sym_cmd_identifier_token7] = ACTIONS(2234), + [aux_sym_cmd_identifier_token2] = ACTIONS(2238), + [aux_sym_cmd_identifier_token3] = ACTIONS(2238), + [aux_sym_cmd_identifier_token4] = ACTIONS(2238), + [aux_sym_cmd_identifier_token5] = ACTIONS(2238), + [aux_sym_cmd_identifier_token6] = ACTIONS(2238), + [aux_sym_cmd_identifier_token7] = ACTIONS(2238), [aux_sym_cmd_identifier_token8] = ACTIONS(2234), [aux_sym_cmd_identifier_token9] = ACTIONS(2234), - [aux_sym_cmd_identifier_token10] = ACTIONS(2234), - [aux_sym_cmd_identifier_token11] = ACTIONS(2234), + [aux_sym_cmd_identifier_token10] = ACTIONS(2238), + [aux_sym_cmd_identifier_token11] = ACTIONS(2238), [aux_sym_cmd_identifier_token12] = ACTIONS(2234), [aux_sym_cmd_identifier_token13] = ACTIONS(2234), [aux_sym_cmd_identifier_token14] = ACTIONS(2234), [aux_sym_cmd_identifier_token15] = ACTIONS(2234), - [aux_sym_cmd_identifier_token16] = ACTIONS(2234), - [aux_sym_cmd_identifier_token17] = ACTIONS(2234), - [aux_sym_cmd_identifier_token18] = ACTIONS(2234), - [aux_sym_cmd_identifier_token19] = ACTIONS(2234), - [aux_sym_cmd_identifier_token20] = ACTIONS(2234), - [aux_sym_cmd_identifier_token21] = ACTIONS(2234), - [aux_sym_cmd_identifier_token22] = ACTIONS(2234), - [aux_sym_cmd_identifier_token23] = ACTIONS(2234), - [aux_sym_cmd_identifier_token24] = ACTIONS(2234), - [aux_sym_cmd_identifier_token25] = ACTIONS(2234), - [aux_sym_cmd_identifier_token26] = ACTIONS(2234), - [aux_sym_cmd_identifier_token27] = ACTIONS(2234), - [aux_sym_cmd_identifier_token28] = ACTIONS(2234), - [aux_sym_cmd_identifier_token29] = ACTIONS(2234), - [aux_sym_cmd_identifier_token30] = ACTIONS(2234), - [aux_sym_cmd_identifier_token31] = ACTIONS(2234), - [aux_sym_cmd_identifier_token32] = ACTIONS(2234), - [aux_sym_cmd_identifier_token33] = ACTIONS(2234), + [aux_sym_cmd_identifier_token16] = ACTIONS(2238), + [aux_sym_cmd_identifier_token17] = ACTIONS(2238), + [aux_sym_cmd_identifier_token18] = ACTIONS(2238), + [aux_sym_cmd_identifier_token19] = ACTIONS(2238), + [aux_sym_cmd_identifier_token20] = ACTIONS(2238), + [aux_sym_cmd_identifier_token21] = ACTIONS(2238), + [aux_sym_cmd_identifier_token22] = ACTIONS(2238), + [aux_sym_cmd_identifier_token23] = ACTIONS(2238), + [aux_sym_cmd_identifier_token24] = ACTIONS(2238), + [aux_sym_cmd_identifier_token25] = ACTIONS(2238), + [aux_sym_cmd_identifier_token26] = ACTIONS(2238), + [aux_sym_cmd_identifier_token27] = ACTIONS(2238), + [aux_sym_cmd_identifier_token28] = ACTIONS(2238), + [aux_sym_cmd_identifier_token29] = ACTIONS(2238), + [aux_sym_cmd_identifier_token30] = ACTIONS(2238), + [aux_sym_cmd_identifier_token31] = ACTIONS(2238), + [aux_sym_cmd_identifier_token32] = ACTIONS(2238), + [aux_sym_cmd_identifier_token33] = ACTIONS(2238), [aux_sym_cmd_identifier_token34] = ACTIONS(2234), - [aux_sym_cmd_identifier_token35] = ACTIONS(2234), - [aux_sym_cmd_identifier_token36] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token35] = ACTIONS(2238), + [aux_sym_cmd_identifier_token36] = ACTIONS(2238), + [aux_sym_cmd_identifier_token37] = ACTIONS(2238), [aux_sym_cmd_identifier_token38] = ACTIONS(2234), - [aux_sym_cmd_identifier_token39] = ACTIONS(2240), - [aux_sym_cmd_identifier_token40] = ACTIONS(2240), + [aux_sym_cmd_identifier_token39] = ACTIONS(2238), + [aux_sym_cmd_identifier_token40] = ACTIONS(2238), [anon_sym_def] = ACTIONS(2234), [anon_sym_export_DASHenv] = ACTIONS(2234), [anon_sym_extern] = ACTIONS(2234), [anon_sym_module] = ACTIONS(2234), [anon_sym_use] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_DOLLAR] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2238), [anon_sym_error] = ACTIONS(2234), - [anon_sym_list] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), [anon_sym_break] = ACTIONS(2234), [anon_sym_continue] = ACTIONS(2234), [anon_sym_for] = ACTIONS(2234), - [anon_sym_in] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), [anon_sym_loop] = ACTIONS(2234), [anon_sym_make] = ACTIONS(2234), [anon_sym_while] = ACTIONS(2234), @@ -132140,7 +138539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2234), [anon_sym_else] = ACTIONS(2234), [anon_sym_match] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2238), [anon_sym_try] = ACTIONS(2234), [anon_sym_catch] = ACTIONS(2234), [anon_sym_return] = ACTIONS(2234), @@ -132150,133 +138549,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(2234), [anon_sym_hide_DASHenv] = ACTIONS(2234), [anon_sym_overlay] = ACTIONS(2234), - [anon_sym_new] = ACTIONS(2234), [anon_sym_as] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2240), - [anon_sym_DOT_DOT2] = ACTIONS(2319), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2240), + [anon_sym_LPAREN2] = ACTIONS(2236), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2238), [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2240), - [aux_sym__val_number_decimal_token3] = ACTIONS(2240), - [aux_sym__val_number_decimal_token4] = ACTIONS(2240), - [aux_sym__val_number_token1] = ACTIONS(2240), - [aux_sym__val_number_token2] = ACTIONS(2240), - [aux_sym__val_number_token3] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2240), - [sym__str_single_quotes] = ACTIONS(2240), - [sym__str_back_ticks] = ACTIONS(2240), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2240), + [aux_sym__val_number_decimal_token2] = ACTIONS(2238), + [aux_sym__val_number_decimal_token3] = ACTIONS(2238), + [aux_sym__val_number_decimal_token4] = ACTIONS(2238), + [aux_sym__val_number_token1] = ACTIONS(2238), + [aux_sym__val_number_token2] = ACTIONS(2238), + [aux_sym__val_number_token3] = ACTIONS(2238), + [aux_sym__val_number_token4] = ACTIONS(2234), + [aux_sym__val_number_token5] = ACTIONS(2234), + [aux_sym__val_number_token6] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2238), + [sym__str_single_quotes] = ACTIONS(2238), + [sym__str_back_ticks] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2238), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2238), }, - [491] = { - [sym_comment] = STATE(491), - [anon_sym_export] = ACTIONS(2113), - [anon_sym_alias] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2113), - [anon_sym_let_DASHenv] = ACTIONS(2113), - [anon_sym_mut] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [aux_sym_cmd_identifier_token1] = ACTIONS(2113), - [aux_sym_cmd_identifier_token2] = ACTIONS(2113), - [aux_sym_cmd_identifier_token3] = ACTIONS(2113), - [aux_sym_cmd_identifier_token4] = ACTIONS(2113), - [aux_sym_cmd_identifier_token5] = ACTIONS(2113), - [aux_sym_cmd_identifier_token6] = ACTIONS(2113), - [aux_sym_cmd_identifier_token7] = ACTIONS(2113), - [aux_sym_cmd_identifier_token8] = ACTIONS(2113), - [aux_sym_cmd_identifier_token9] = ACTIONS(2113), - [aux_sym_cmd_identifier_token10] = ACTIONS(2113), - [aux_sym_cmd_identifier_token11] = ACTIONS(2113), - [aux_sym_cmd_identifier_token12] = ACTIONS(2113), - [aux_sym_cmd_identifier_token13] = ACTIONS(2113), - [aux_sym_cmd_identifier_token14] = ACTIONS(2113), - [aux_sym_cmd_identifier_token15] = ACTIONS(2113), - [aux_sym_cmd_identifier_token16] = ACTIONS(2113), - [aux_sym_cmd_identifier_token17] = ACTIONS(2113), - [aux_sym_cmd_identifier_token18] = ACTIONS(2113), - [aux_sym_cmd_identifier_token19] = ACTIONS(2113), - [aux_sym_cmd_identifier_token20] = ACTIONS(2113), - [aux_sym_cmd_identifier_token21] = ACTIONS(2113), - [aux_sym_cmd_identifier_token22] = ACTIONS(2113), - [aux_sym_cmd_identifier_token23] = ACTIONS(2113), - [aux_sym_cmd_identifier_token24] = ACTIONS(2113), - [aux_sym_cmd_identifier_token25] = ACTIONS(2113), - [aux_sym_cmd_identifier_token26] = ACTIONS(2113), - [aux_sym_cmd_identifier_token27] = ACTIONS(2113), - [aux_sym_cmd_identifier_token28] = ACTIONS(2113), - [aux_sym_cmd_identifier_token29] = ACTIONS(2113), - [aux_sym_cmd_identifier_token30] = ACTIONS(2113), - [aux_sym_cmd_identifier_token31] = ACTIONS(2113), - [aux_sym_cmd_identifier_token32] = ACTIONS(2113), - [aux_sym_cmd_identifier_token33] = ACTIONS(2113), - [aux_sym_cmd_identifier_token34] = ACTIONS(2113), - [aux_sym_cmd_identifier_token35] = ACTIONS(2113), - [aux_sym_cmd_identifier_token36] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_null] = ACTIONS(2119), - [aux_sym_cmd_identifier_token38] = ACTIONS(2113), - [aux_sym_cmd_identifier_token39] = ACTIONS(2119), - [aux_sym_cmd_identifier_token40] = ACTIONS(2119), - [anon_sym_def] = ACTIONS(2113), - [anon_sym_export_DASHenv] = ACTIONS(2113), - [anon_sym_extern] = ACTIONS(2113), - [anon_sym_module] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_DOLLAR] = ACTIONS(2119), - [anon_sym_error] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_in] = ACTIONS(2113), - [anon_sym_loop] = ACTIONS(2113), - [anon_sym_make] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_do] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_else] = ACTIONS(2113), - [anon_sym_match] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_try] = ACTIONS(2113), - [anon_sym_catch] = ACTIONS(2113), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_source] = ACTIONS(2113), - [anon_sym_source_DASHenv] = ACTIONS(2113), - [anon_sym_register] = ACTIONS(2113), - [anon_sym_hide] = ACTIONS(2113), - [anon_sym_hide_DASHenv] = ACTIONS(2113), - [anon_sym_overlay] = ACTIONS(2113), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_as] = ACTIONS(2113), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2119), - [anon_sym_DOT_DOT2] = ACTIONS(2323), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2325), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2119), - [aux_sym__val_number_decimal_token1] = ACTIONS(2113), - [aux_sym__val_number_decimal_token2] = ACTIONS(2119), - [aux_sym__val_number_decimal_token3] = ACTIONS(2119), - [aux_sym__val_number_decimal_token4] = ACTIONS(2119), - [aux_sym__val_number_token1] = ACTIONS(2119), - [aux_sym__val_number_token2] = ACTIONS(2119), - [aux_sym__val_number_token3] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [sym__str_single_quotes] = ACTIONS(2119), - [sym__str_back_ticks] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2119), + [587] = { + [sym_comment] = STATE(587), + [aux_sym__multiple_types_repeat1] = STATE(591), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_alias] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_let_DASHenv] = ACTIONS(2286), + [anon_sym_mut] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [aux_sym_cmd_identifier_token1] = ACTIONS(2286), + [aux_sym_cmd_identifier_token2] = ACTIONS(2286), + [aux_sym_cmd_identifier_token3] = ACTIONS(2286), + [aux_sym_cmd_identifier_token4] = ACTIONS(2286), + [aux_sym_cmd_identifier_token5] = ACTIONS(2286), + [aux_sym_cmd_identifier_token6] = ACTIONS(2286), + [aux_sym_cmd_identifier_token7] = ACTIONS(2286), + [aux_sym_cmd_identifier_token8] = ACTIONS(2286), + [aux_sym_cmd_identifier_token9] = ACTIONS(2286), + [aux_sym_cmd_identifier_token10] = ACTIONS(2286), + [aux_sym_cmd_identifier_token11] = ACTIONS(2286), + [aux_sym_cmd_identifier_token12] = ACTIONS(2286), + [aux_sym_cmd_identifier_token13] = ACTIONS(2286), + [aux_sym_cmd_identifier_token14] = ACTIONS(2286), + [aux_sym_cmd_identifier_token15] = ACTIONS(2286), + [aux_sym_cmd_identifier_token16] = ACTIONS(2286), + [aux_sym_cmd_identifier_token17] = ACTIONS(2286), + [aux_sym_cmd_identifier_token18] = ACTIONS(2286), + [aux_sym_cmd_identifier_token19] = ACTIONS(2286), + [aux_sym_cmd_identifier_token20] = ACTIONS(2286), + [aux_sym_cmd_identifier_token21] = ACTIONS(2286), + [aux_sym_cmd_identifier_token22] = ACTIONS(2286), + [aux_sym_cmd_identifier_token23] = ACTIONS(2286), + [aux_sym_cmd_identifier_token24] = ACTIONS(2286), + [aux_sym_cmd_identifier_token25] = ACTIONS(2286), + [aux_sym_cmd_identifier_token26] = ACTIONS(2286), + [aux_sym_cmd_identifier_token27] = ACTIONS(2286), + [aux_sym_cmd_identifier_token28] = ACTIONS(2286), + [aux_sym_cmd_identifier_token29] = ACTIONS(2286), + [aux_sym_cmd_identifier_token30] = ACTIONS(2286), + [aux_sym_cmd_identifier_token31] = ACTIONS(2286), + [aux_sym_cmd_identifier_token32] = ACTIONS(2286), + [aux_sym_cmd_identifier_token33] = ACTIONS(2286), + [aux_sym_cmd_identifier_token34] = ACTIONS(2286), + [aux_sym_cmd_identifier_token35] = ACTIONS(2286), + [aux_sym_cmd_identifier_token36] = ACTIONS(2286), + [aux_sym_cmd_identifier_token37] = ACTIONS(2286), + [aux_sym_cmd_identifier_token38] = ACTIONS(2286), + [aux_sym_cmd_identifier_token39] = ACTIONS(2286), + [aux_sym_cmd_identifier_token40] = ACTIONS(2286), + [anon_sym_def] = ACTIONS(2286), + [anon_sym_export_DASHenv] = ACTIONS(2286), + [anon_sym_extern] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_use] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_error] = ACTIONS(2286), + [anon_sym_DASH2] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_in2] = ACTIONS(2286), + [anon_sym_loop] = ACTIONS(2286), + [anon_sym_make] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_match] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2312), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_source] = ACTIONS(2286), + [anon_sym_source_DASHenv] = ACTIONS(2286), + [anon_sym_register] = ACTIONS(2286), + [anon_sym_hide] = ACTIONS(2286), + [anon_sym_hide_DASHenv] = ACTIONS(2286), + [anon_sym_overlay] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_PLUS2] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), + [aux_sym__val_number_decimal_token1] = ACTIONS(2286), + [aux_sym__val_number_decimal_token2] = ACTIONS(2286), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), + [aux_sym__val_number_token1] = ACTIONS(2286), + [aux_sym__val_number_token2] = ACTIONS(2286), + [aux_sym__val_number_token3] = ACTIONS(2286), + [aux_sym__val_number_token4] = ACTIONS(2286), + [aux_sym__val_number_token5] = ACTIONS(2286), + [aux_sym__val_number_token6] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym__str_single_quotes] = ACTIONS(2286), + [sym__str_back_ticks] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), + [sym__entry_separator] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2292), }, - [492] = { - [sym_comment] = STATE(492), + [588] = { + [sym_comment] = STATE(588), [anon_sym_export] = ACTIONS(2206), [anon_sym_alias] = ACTIONS(2206), [anon_sym_let] = ACTIONS(2206), @@ -132319,26 +138717,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(2206), [aux_sym_cmd_identifier_token35] = ACTIONS(2206), [aux_sym_cmd_identifier_token36] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_null] = ACTIONS(2212), + [aux_sym_cmd_identifier_token37] = ACTIONS(2206), [aux_sym_cmd_identifier_token38] = ACTIONS(2206), - [aux_sym_cmd_identifier_token39] = ACTIONS(2212), - [aux_sym_cmd_identifier_token40] = ACTIONS(2212), + [aux_sym_cmd_identifier_token39] = ACTIONS(2206), + [aux_sym_cmd_identifier_token40] = ACTIONS(2206), [anon_sym_def] = ACTIONS(2206), [anon_sym_export_DASHenv] = ACTIONS(2206), [anon_sym_extern] = ACTIONS(2206), [anon_sym_module] = ACTIONS(2206), [anon_sym_use] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_DOLLAR] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_DOLLAR] = ACTIONS(2206), [anon_sym_error] = ACTIONS(2206), - [anon_sym_list] = ACTIONS(2206), - [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_DASH2] = ACTIONS(2206), [anon_sym_break] = ACTIONS(2206), [anon_sym_continue] = ACTIONS(2206), [anon_sym_for] = ACTIONS(2206), - [anon_sym_in] = ACTIONS(2206), + [anon_sym_in2] = ACTIONS(2206), [anon_sym_loop] = ACTIONS(2206), [anon_sym_make] = ACTIONS(2206), [anon_sym_while] = ACTIONS(2206), @@ -132346,7 +138741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2206), [anon_sym_else] = ACTIONS(2206), [anon_sym_match] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2210), [anon_sym_try] = ACTIONS(2206), [anon_sym_catch] = ACTIONS(2206), [anon_sym_return] = ACTIONS(2206), @@ -132356,236 +138751,536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(2206), [anon_sym_hide_DASHenv] = ACTIONS(2206), [anon_sym_overlay] = ACTIONS(2206), - [anon_sym_new] = ACTIONS(2206), [anon_sym_as] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2212), - [anon_sym_DOT_DOT2] = ACTIONS(2327), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2329), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_PLUS2] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2210), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2206), [aux_sym__val_number_decimal_token1] = ACTIONS(2206), - [aux_sym__val_number_decimal_token2] = ACTIONS(2212), - [aux_sym__val_number_decimal_token3] = ACTIONS(2212), - [aux_sym__val_number_decimal_token4] = ACTIONS(2212), - [aux_sym__val_number_token1] = ACTIONS(2212), - [aux_sym__val_number_token2] = ACTIONS(2212), - [aux_sym__val_number_token3] = ACTIONS(2212), - [anon_sym_DQUOTE] = ACTIONS(2212), - [sym__str_single_quotes] = ACTIONS(2212), - [sym__str_back_ticks] = ACTIONS(2212), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2212), + [aux_sym__val_number_decimal_token2] = ACTIONS(2206), + [aux_sym__val_number_decimal_token3] = ACTIONS(2206), + [aux_sym__val_number_decimal_token4] = ACTIONS(2206), + [aux_sym__val_number_token1] = ACTIONS(2206), + [aux_sym__val_number_token2] = ACTIONS(2206), + [aux_sym__val_number_token3] = ACTIONS(2206), + [aux_sym__val_number_token4] = ACTIONS(2206), + [aux_sym__val_number_token5] = ACTIONS(2206), + [aux_sym__val_number_token6] = ACTIONS(2206), + [anon_sym_DQUOTE] = ACTIONS(2210), + [sym__str_single_quotes] = ACTIONS(2210), + [sym__str_back_ticks] = ACTIONS(2210), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2210), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2212), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2210), }, - [493] = { - [sym_comment] = STATE(493), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_alias] = ACTIONS(1078), - [anon_sym_let] = ACTIONS(1078), - [anon_sym_let_DASHenv] = ACTIONS(1078), - [anon_sym_mut] = ACTIONS(1078), - [anon_sym_const] = ACTIONS(1078), - [aux_sym_cmd_identifier_token1] = ACTIONS(1078), - [aux_sym_cmd_identifier_token2] = ACTIONS(1078), - [aux_sym_cmd_identifier_token3] = ACTIONS(1078), - [aux_sym_cmd_identifier_token4] = ACTIONS(1078), - [aux_sym_cmd_identifier_token5] = ACTIONS(1078), - [aux_sym_cmd_identifier_token6] = ACTIONS(1078), - [aux_sym_cmd_identifier_token7] = ACTIONS(1078), - [aux_sym_cmd_identifier_token8] = ACTIONS(1078), - [aux_sym_cmd_identifier_token9] = ACTIONS(1078), - [aux_sym_cmd_identifier_token10] = ACTIONS(1078), - [aux_sym_cmd_identifier_token11] = ACTIONS(1078), - [aux_sym_cmd_identifier_token12] = ACTIONS(1078), - [aux_sym_cmd_identifier_token13] = ACTIONS(1078), - [aux_sym_cmd_identifier_token14] = ACTIONS(1078), - [aux_sym_cmd_identifier_token15] = ACTIONS(1078), - [aux_sym_cmd_identifier_token16] = ACTIONS(1078), - [aux_sym_cmd_identifier_token17] = ACTIONS(1078), - [aux_sym_cmd_identifier_token18] = ACTIONS(1078), - [aux_sym_cmd_identifier_token19] = ACTIONS(1078), - [aux_sym_cmd_identifier_token20] = ACTIONS(1078), - [aux_sym_cmd_identifier_token21] = ACTIONS(1078), - [aux_sym_cmd_identifier_token22] = ACTIONS(1078), - [aux_sym_cmd_identifier_token23] = ACTIONS(1078), - [aux_sym_cmd_identifier_token24] = ACTIONS(1078), - [aux_sym_cmd_identifier_token25] = ACTIONS(1078), - [aux_sym_cmd_identifier_token26] = ACTIONS(1078), - [aux_sym_cmd_identifier_token27] = ACTIONS(1078), - [aux_sym_cmd_identifier_token28] = ACTIONS(1078), - [aux_sym_cmd_identifier_token29] = ACTIONS(1078), - [aux_sym_cmd_identifier_token30] = ACTIONS(1078), - [aux_sym_cmd_identifier_token31] = ACTIONS(1078), - [aux_sym_cmd_identifier_token32] = ACTIONS(1078), - [aux_sym_cmd_identifier_token33] = ACTIONS(1078), - [aux_sym_cmd_identifier_token34] = ACTIONS(1078), - [aux_sym_cmd_identifier_token35] = ACTIONS(1078), - [aux_sym_cmd_identifier_token36] = ACTIONS(1078), - [anon_sym_true] = ACTIONS(1080), - [anon_sym_false] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(1080), - [aux_sym_cmd_identifier_token38] = ACTIONS(1078), - [aux_sym_cmd_identifier_token39] = ACTIONS(1080), - [aux_sym_cmd_identifier_token40] = ACTIONS(1080), - [anon_sym_def] = ACTIONS(1078), - [anon_sym_export_DASHenv] = ACTIONS(1078), - [anon_sym_extern] = ACTIONS(1078), - [anon_sym_module] = ACTIONS(1078), - [anon_sym_use] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_error] = ACTIONS(1078), - [anon_sym_list] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_in] = ACTIONS(1078), - [anon_sym_loop] = ACTIONS(1078), - [anon_sym_make] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_else] = ACTIONS(1078), - [anon_sym_match] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_try] = ACTIONS(1078), - [anon_sym_catch] = ACTIONS(1078), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_source] = ACTIONS(1078), - [anon_sym_source_DASHenv] = ACTIONS(1078), - [anon_sym_register] = ACTIONS(1078), - [anon_sym_hide] = ACTIONS(1078), - [anon_sym_hide_DASHenv] = ACTIONS(1078), - [anon_sym_overlay] = ACTIONS(1078), - [anon_sym_new] = ACTIONS(1078), - [anon_sym_as] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1080), - [anon_sym_DOT_DOT2] = ACTIONS(1078), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1080), - [aux_sym__val_number_decimal_token1] = ACTIONS(1078), - [aux_sym__val_number_decimal_token2] = ACTIONS(1080), - [aux_sym__val_number_decimal_token3] = ACTIONS(1080), - [aux_sym__val_number_decimal_token4] = ACTIONS(1080), - [aux_sym__val_number_token1] = ACTIONS(1080), - [aux_sym__val_number_token2] = ACTIONS(1080), - [aux_sym__val_number_token3] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym__str_single_quotes] = ACTIONS(1080), - [sym__str_back_ticks] = ACTIONS(1080), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1080), + [589] = { + [sym_comment] = STATE(589), + [aux_sym__multiple_types_repeat1] = STATE(591), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_alias] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_let_DASHenv] = ACTIONS(2286), + [anon_sym_mut] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [aux_sym_cmd_identifier_token1] = ACTIONS(2286), + [aux_sym_cmd_identifier_token2] = ACTIONS(2286), + [aux_sym_cmd_identifier_token3] = ACTIONS(2286), + [aux_sym_cmd_identifier_token4] = ACTIONS(2286), + [aux_sym_cmd_identifier_token5] = ACTIONS(2286), + [aux_sym_cmd_identifier_token6] = ACTIONS(2286), + [aux_sym_cmd_identifier_token7] = ACTIONS(2286), + [aux_sym_cmd_identifier_token8] = ACTIONS(2286), + [aux_sym_cmd_identifier_token9] = ACTIONS(2286), + [aux_sym_cmd_identifier_token10] = ACTIONS(2286), + [aux_sym_cmd_identifier_token11] = ACTIONS(2286), + [aux_sym_cmd_identifier_token12] = ACTIONS(2286), + [aux_sym_cmd_identifier_token13] = ACTIONS(2286), + [aux_sym_cmd_identifier_token14] = ACTIONS(2286), + [aux_sym_cmd_identifier_token15] = ACTIONS(2286), + [aux_sym_cmd_identifier_token16] = ACTIONS(2286), + [aux_sym_cmd_identifier_token17] = ACTIONS(2286), + [aux_sym_cmd_identifier_token18] = ACTIONS(2286), + [aux_sym_cmd_identifier_token19] = ACTIONS(2286), + [aux_sym_cmd_identifier_token20] = ACTIONS(2286), + [aux_sym_cmd_identifier_token21] = ACTIONS(2286), + [aux_sym_cmd_identifier_token22] = ACTIONS(2286), + [aux_sym_cmd_identifier_token23] = ACTIONS(2286), + [aux_sym_cmd_identifier_token24] = ACTIONS(2286), + [aux_sym_cmd_identifier_token25] = ACTIONS(2286), + [aux_sym_cmd_identifier_token26] = ACTIONS(2286), + [aux_sym_cmd_identifier_token27] = ACTIONS(2286), + [aux_sym_cmd_identifier_token28] = ACTIONS(2286), + [aux_sym_cmd_identifier_token29] = ACTIONS(2286), + [aux_sym_cmd_identifier_token30] = ACTIONS(2286), + [aux_sym_cmd_identifier_token31] = ACTIONS(2286), + [aux_sym_cmd_identifier_token32] = ACTIONS(2286), + [aux_sym_cmd_identifier_token33] = ACTIONS(2286), + [aux_sym_cmd_identifier_token34] = ACTIONS(2286), + [aux_sym_cmd_identifier_token35] = ACTIONS(2286), + [aux_sym_cmd_identifier_token36] = ACTIONS(2286), + [aux_sym_cmd_identifier_token37] = ACTIONS(2286), + [aux_sym_cmd_identifier_token38] = ACTIONS(2286), + [aux_sym_cmd_identifier_token39] = ACTIONS(2286), + [aux_sym_cmd_identifier_token40] = ACTIONS(2286), + [anon_sym_def] = ACTIONS(2286), + [anon_sym_export_DASHenv] = ACTIONS(2286), + [anon_sym_extern] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_use] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_error] = ACTIONS(2286), + [anon_sym_DASH2] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_in2] = ACTIONS(2286), + [anon_sym_loop] = ACTIONS(2286), + [anon_sym_make] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_match] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_source] = ACTIONS(2286), + [anon_sym_source_DASHenv] = ACTIONS(2286), + [anon_sym_register] = ACTIONS(2286), + [anon_sym_hide] = ACTIONS(2286), + [anon_sym_hide_DASHenv] = ACTIONS(2286), + [anon_sym_overlay] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_PLUS2] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), + [aux_sym__val_number_decimal_token1] = ACTIONS(2286), + [aux_sym__val_number_decimal_token2] = ACTIONS(2286), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), + [aux_sym__val_number_token1] = ACTIONS(2286), + [aux_sym__val_number_token2] = ACTIONS(2286), + [aux_sym__val_number_token3] = ACTIONS(2286), + [aux_sym__val_number_token4] = ACTIONS(2286), + [aux_sym__val_number_token5] = ACTIONS(2286), + [aux_sym__val_number_token6] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym__str_single_quotes] = ACTIONS(2286), + [sym__str_back_ticks] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), + [sym__entry_separator] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2292), }, - [494] = { - [sym_comment] = STATE(494), - [anon_sym_export] = ACTIONS(1066), - [anon_sym_alias] = ACTIONS(1066), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_let_DASHenv] = ACTIONS(1066), - [anon_sym_mut] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [aux_sym_cmd_identifier_token1] = ACTIONS(1066), - [aux_sym_cmd_identifier_token2] = ACTIONS(1066), - [aux_sym_cmd_identifier_token3] = ACTIONS(1066), - [aux_sym_cmd_identifier_token4] = ACTIONS(1066), - [aux_sym_cmd_identifier_token5] = ACTIONS(1066), - [aux_sym_cmd_identifier_token6] = ACTIONS(1066), - [aux_sym_cmd_identifier_token7] = ACTIONS(1066), - [aux_sym_cmd_identifier_token8] = ACTIONS(1066), - [aux_sym_cmd_identifier_token9] = ACTIONS(1066), - [aux_sym_cmd_identifier_token10] = ACTIONS(1066), - [aux_sym_cmd_identifier_token11] = ACTIONS(1066), - [aux_sym_cmd_identifier_token12] = ACTIONS(1066), - [aux_sym_cmd_identifier_token13] = ACTIONS(1066), - [aux_sym_cmd_identifier_token14] = ACTIONS(1066), - [aux_sym_cmd_identifier_token15] = ACTIONS(1066), - [aux_sym_cmd_identifier_token16] = ACTIONS(1066), - [aux_sym_cmd_identifier_token17] = ACTIONS(1066), - [aux_sym_cmd_identifier_token18] = ACTIONS(1066), - [aux_sym_cmd_identifier_token19] = ACTIONS(1066), - [aux_sym_cmd_identifier_token20] = ACTIONS(1066), - [aux_sym_cmd_identifier_token21] = ACTIONS(1066), - [aux_sym_cmd_identifier_token22] = ACTIONS(1066), - [aux_sym_cmd_identifier_token23] = ACTIONS(1066), - [aux_sym_cmd_identifier_token24] = ACTIONS(1066), - [aux_sym_cmd_identifier_token25] = ACTIONS(1066), - [aux_sym_cmd_identifier_token26] = ACTIONS(1066), - [aux_sym_cmd_identifier_token27] = ACTIONS(1066), - [aux_sym_cmd_identifier_token28] = ACTIONS(1066), - [aux_sym_cmd_identifier_token29] = ACTIONS(1066), - [aux_sym_cmd_identifier_token30] = ACTIONS(1066), - [aux_sym_cmd_identifier_token31] = ACTIONS(1066), - [aux_sym_cmd_identifier_token32] = ACTIONS(1066), - [aux_sym_cmd_identifier_token33] = ACTIONS(1066), - [aux_sym_cmd_identifier_token34] = ACTIONS(1066), - [aux_sym_cmd_identifier_token35] = ACTIONS(1066), - [aux_sym_cmd_identifier_token36] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), - [anon_sym_null] = ACTIONS(1068), - [aux_sym_cmd_identifier_token38] = ACTIONS(1066), - [aux_sym_cmd_identifier_token39] = ACTIONS(1068), - [aux_sym_cmd_identifier_token40] = ACTIONS(1068), - [anon_sym_def] = ACTIONS(1066), - [anon_sym_export_DASHenv] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym_module] = ACTIONS(1066), - [anon_sym_use] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_error] = ACTIONS(1066), - [anon_sym_list] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_in] = ACTIONS(1066), - [anon_sym_loop] = ACTIONS(1066), - [anon_sym_make] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_else] = ACTIONS(1066), - [anon_sym_match] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_try] = ACTIONS(1066), - [anon_sym_catch] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_source] = ACTIONS(1066), - [anon_sym_source_DASHenv] = ACTIONS(1066), - [anon_sym_register] = ACTIONS(1066), - [anon_sym_hide] = ACTIONS(1066), - [anon_sym_hide_DASHenv] = ACTIONS(1066), - [anon_sym_overlay] = ACTIONS(1066), - [anon_sym_new] = ACTIONS(1066), - [anon_sym_as] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1068), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1068), - [aux_sym__val_number_decimal_token1] = ACTIONS(1066), - [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(1068), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1068), + [590] = { + [sym_comment] = STATE(590), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(2316), + [aux_sym__immediate_decimal_token2] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, - [495] = { - [sym_comment] = STATE(495), + [591] = { + [sym_comment] = STATE(591), + [aux_sym__multiple_types_repeat1] = STATE(591), + [anon_sym_export] = ACTIONS(2320), + [anon_sym_alias] = ACTIONS(2320), + [anon_sym_let] = ACTIONS(2320), + [anon_sym_let_DASHenv] = ACTIONS(2320), + [anon_sym_mut] = ACTIONS(2320), + [anon_sym_const] = ACTIONS(2320), + [aux_sym_cmd_identifier_token1] = ACTIONS(2320), + [aux_sym_cmd_identifier_token2] = ACTIONS(2320), + [aux_sym_cmd_identifier_token3] = ACTIONS(2320), + [aux_sym_cmd_identifier_token4] = ACTIONS(2320), + [aux_sym_cmd_identifier_token5] = ACTIONS(2320), + [aux_sym_cmd_identifier_token6] = ACTIONS(2320), + [aux_sym_cmd_identifier_token7] = ACTIONS(2320), + [aux_sym_cmd_identifier_token8] = ACTIONS(2320), + [aux_sym_cmd_identifier_token9] = ACTIONS(2320), + [aux_sym_cmd_identifier_token10] = ACTIONS(2320), + [aux_sym_cmd_identifier_token11] = ACTIONS(2320), + [aux_sym_cmd_identifier_token12] = ACTIONS(2320), + [aux_sym_cmd_identifier_token13] = ACTIONS(2320), + [aux_sym_cmd_identifier_token14] = ACTIONS(2320), + [aux_sym_cmd_identifier_token15] = ACTIONS(2320), + [aux_sym_cmd_identifier_token16] = ACTIONS(2320), + [aux_sym_cmd_identifier_token17] = ACTIONS(2320), + [aux_sym_cmd_identifier_token18] = ACTIONS(2320), + [aux_sym_cmd_identifier_token19] = ACTIONS(2320), + [aux_sym_cmd_identifier_token20] = ACTIONS(2320), + [aux_sym_cmd_identifier_token21] = ACTIONS(2320), + [aux_sym_cmd_identifier_token22] = ACTIONS(2320), + [aux_sym_cmd_identifier_token23] = ACTIONS(2320), + [aux_sym_cmd_identifier_token24] = ACTIONS(2320), + [aux_sym_cmd_identifier_token25] = ACTIONS(2320), + [aux_sym_cmd_identifier_token26] = ACTIONS(2320), + [aux_sym_cmd_identifier_token27] = ACTIONS(2320), + [aux_sym_cmd_identifier_token28] = ACTIONS(2320), + [aux_sym_cmd_identifier_token29] = ACTIONS(2320), + [aux_sym_cmd_identifier_token30] = ACTIONS(2320), + [aux_sym_cmd_identifier_token31] = ACTIONS(2320), + [aux_sym_cmd_identifier_token32] = ACTIONS(2320), + [aux_sym_cmd_identifier_token33] = ACTIONS(2320), + [aux_sym_cmd_identifier_token34] = ACTIONS(2320), + [aux_sym_cmd_identifier_token35] = ACTIONS(2320), + [aux_sym_cmd_identifier_token36] = ACTIONS(2320), + [aux_sym_cmd_identifier_token37] = ACTIONS(2320), + [aux_sym_cmd_identifier_token38] = ACTIONS(2320), + [aux_sym_cmd_identifier_token39] = ACTIONS(2320), + [aux_sym_cmd_identifier_token40] = ACTIONS(2320), + [anon_sym_def] = ACTIONS(2320), + [anon_sym_export_DASHenv] = ACTIONS(2320), + [anon_sym_extern] = ACTIONS(2320), + [anon_sym_module] = ACTIONS(2320), + [anon_sym_use] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_DOLLAR] = ACTIONS(2320), + [anon_sym_error] = ACTIONS(2320), + [anon_sym_DASH2] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_for] = ACTIONS(2320), + [anon_sym_in2] = ACTIONS(2320), + [anon_sym_loop] = ACTIONS(2320), + [anon_sym_make] = ACTIONS(2320), + [anon_sym_while] = ACTIONS(2320), + [anon_sym_do] = ACTIONS(2320), + [anon_sym_if] = ACTIONS(2320), + [anon_sym_else] = ACTIONS(2320), + [anon_sym_match] = ACTIONS(2320), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2320), + [anon_sym_catch] = ACTIONS(2320), + [anon_sym_return] = ACTIONS(2320), + [anon_sym_source] = ACTIONS(2320), + [anon_sym_source_DASHenv] = ACTIONS(2320), + [anon_sym_register] = ACTIONS(2320), + [anon_sym_hide] = ACTIONS(2320), + [anon_sym_hide_DASHenv] = ACTIONS(2320), + [anon_sym_overlay] = ACTIONS(2320), + [anon_sym_as] = ACTIONS(2320), + [anon_sym_PLUS2] = ACTIONS(2320), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2320), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2320), + [aux_sym__val_number_decimal_token1] = ACTIONS(2320), + [aux_sym__val_number_decimal_token2] = ACTIONS(2320), + [aux_sym__val_number_decimal_token3] = ACTIONS(2320), + [aux_sym__val_number_decimal_token4] = ACTIONS(2320), + [aux_sym__val_number_token1] = ACTIONS(2320), + [aux_sym__val_number_token2] = ACTIONS(2320), + [aux_sym__val_number_token3] = ACTIONS(2320), + [aux_sym__val_number_token4] = ACTIONS(2320), + [aux_sym__val_number_token5] = ACTIONS(2320), + [aux_sym__val_number_token6] = ACTIONS(2320), + [anon_sym_DQUOTE] = ACTIONS(2320), + [sym__str_single_quotes] = ACTIONS(2320), + [sym__str_back_ticks] = ACTIONS(2320), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), + [sym__entry_separator] = ACTIONS(2322), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2325), + }, + [592] = { + [sym_comment] = STATE(592), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_in2] = 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(2218), + [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_as] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), + [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), + [aux_sym__val_number_token4] = ACTIONS(2214), + [aux_sym__val_number_token5] = ACTIONS(2214), + [aux_sym__val_number_token6] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2218), + [sym__str_single_quotes] = ACTIONS(2218), + [sym__str_back_ticks] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2218), + }, + [593] = { + [sym__expr_parenthesized_immediate] = STATE(7493), + [sym_comment] = STATE(593), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_alias] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_let_DASHenv] = ACTIONS(2151), + [anon_sym_mut] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [aux_sym_cmd_identifier_token1] = ACTIONS(2151), + [aux_sym_cmd_identifier_token2] = ACTIONS(2153), + [aux_sym_cmd_identifier_token3] = ACTIONS(2153), + [aux_sym_cmd_identifier_token4] = ACTIONS(2153), + [aux_sym_cmd_identifier_token5] = ACTIONS(2153), + [aux_sym_cmd_identifier_token6] = ACTIONS(2153), + [aux_sym_cmd_identifier_token7] = ACTIONS(2153), + [aux_sym_cmd_identifier_token8] = ACTIONS(2151), + [aux_sym_cmd_identifier_token9] = ACTIONS(2151), + [aux_sym_cmd_identifier_token10] = ACTIONS(2153), + [aux_sym_cmd_identifier_token11] = ACTIONS(2153), + [aux_sym_cmd_identifier_token12] = ACTIONS(2151), + [aux_sym_cmd_identifier_token13] = ACTIONS(2151), + [aux_sym_cmd_identifier_token14] = ACTIONS(2151), + [aux_sym_cmd_identifier_token15] = ACTIONS(2151), + [aux_sym_cmd_identifier_token16] = ACTIONS(2153), + [aux_sym_cmd_identifier_token17] = ACTIONS(2153), + [aux_sym_cmd_identifier_token18] = ACTIONS(2153), + [aux_sym_cmd_identifier_token19] = ACTIONS(2153), + [aux_sym_cmd_identifier_token20] = ACTIONS(2153), + [aux_sym_cmd_identifier_token21] = ACTIONS(2153), + [aux_sym_cmd_identifier_token22] = ACTIONS(2153), + [aux_sym_cmd_identifier_token23] = ACTIONS(2153), + [aux_sym_cmd_identifier_token24] = ACTIONS(2153), + [aux_sym_cmd_identifier_token25] = ACTIONS(2153), + [aux_sym_cmd_identifier_token26] = ACTIONS(2153), + [aux_sym_cmd_identifier_token27] = ACTIONS(2153), + [aux_sym_cmd_identifier_token28] = ACTIONS(2153), + [aux_sym_cmd_identifier_token29] = ACTIONS(2153), + [aux_sym_cmd_identifier_token30] = ACTIONS(2153), + [aux_sym_cmd_identifier_token31] = ACTIONS(2153), + [aux_sym_cmd_identifier_token32] = ACTIONS(2153), + [aux_sym_cmd_identifier_token33] = ACTIONS(2153), + [aux_sym_cmd_identifier_token34] = ACTIONS(2151), + [aux_sym_cmd_identifier_token35] = ACTIONS(2153), + [aux_sym_cmd_identifier_token36] = ACTIONS(2153), + [aux_sym_cmd_identifier_token37] = ACTIONS(2153), + [aux_sym_cmd_identifier_token38] = ACTIONS(2151), + [aux_sym_cmd_identifier_token39] = ACTIONS(2153), + [aux_sym_cmd_identifier_token40] = ACTIONS(2153), + [anon_sym_def] = ACTIONS(2151), + [anon_sym_export_DASHenv] = ACTIONS(2151), + [anon_sym_extern] = ACTIONS(2151), + [anon_sym_module] = ACTIONS(2151), + [anon_sym_use] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_DOLLAR] = ACTIONS(2153), + [anon_sym_error] = ACTIONS(2151), + [anon_sym_DASH2] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_in2] = ACTIONS(2151), + [anon_sym_loop] = ACTIONS(2151), + [anon_sym_make] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_catch] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_source] = ACTIONS(2151), + [anon_sym_source_DASHenv] = ACTIONS(2151), + [anon_sym_register] = ACTIONS(2151), + [anon_sym_hide] = ACTIONS(2151), + [anon_sym_hide_DASHenv] = ACTIONS(2151), + [anon_sym_overlay] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2153), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2153), + [aux_sym__val_number_decimal_token1] = ACTIONS(2151), + [aux_sym__val_number_decimal_token2] = ACTIONS(2153), + [aux_sym__val_number_decimal_token3] = ACTIONS(2153), + [aux_sym__val_number_decimal_token4] = ACTIONS(2153), + [aux_sym__val_number_token1] = ACTIONS(2153), + [aux_sym__val_number_token2] = ACTIONS(2153), + [aux_sym__val_number_token3] = ACTIONS(2153), + [aux_sym__val_number_token4] = ACTIONS(2151), + [aux_sym__val_number_token5] = ACTIONS(2151), + [aux_sym__val_number_token6] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2153), + [sym__str_single_quotes] = ACTIONS(2153), + [sym__str_back_ticks] = ACTIONS(2153), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2153), + }, + [594] = { + [sym_comment] = STATE(594), [anon_sym_export] = ACTIONS(2222), [anon_sym_alias] = ACTIONS(2222), [anon_sym_let] = ACTIONS(2222), @@ -132628,26 +139323,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(2222), [aux_sym_cmd_identifier_token35] = ACTIONS(2222), [aux_sym_cmd_identifier_token36] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_null] = ACTIONS(2228), + [aux_sym_cmd_identifier_token37] = ACTIONS(2222), [aux_sym_cmd_identifier_token38] = ACTIONS(2222), - [aux_sym_cmd_identifier_token39] = ACTIONS(2228), - [aux_sym_cmd_identifier_token40] = ACTIONS(2228), + [aux_sym_cmd_identifier_token39] = ACTIONS(2222), + [aux_sym_cmd_identifier_token40] = ACTIONS(2222), [anon_sym_def] = ACTIONS(2222), [anon_sym_export_DASHenv] = ACTIONS(2222), [anon_sym_extern] = ACTIONS(2222), [anon_sym_module] = ACTIONS(2222), [anon_sym_use] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_DOLLAR] = ACTIONS(2222), [anon_sym_error] = ACTIONS(2222), - [anon_sym_list] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), [anon_sym_break] = ACTIONS(2222), [anon_sym_continue] = ACTIONS(2222), [anon_sym_for] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), [anon_sym_loop] = ACTIONS(2222), [anon_sym_make] = ACTIONS(2222), [anon_sym_while] = ACTIONS(2222), @@ -132655,7 +139347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2222), [anon_sym_else] = ACTIONS(2222), [anon_sym_match] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2224), [anon_sym_try] = ACTIONS(2222), [anon_sym_catch] = ACTIONS(2222), [anon_sym_return] = ACTIONS(2222), @@ -132665,1668 +139357,2146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(2222), [anon_sym_hide_DASHenv] = ACTIONS(2222), [anon_sym_overlay] = ACTIONS(2222), - [anon_sym_new] = ACTIONS(2222), [anon_sym_as] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), - [anon_sym_DOT_DOT2] = ACTIONS(2331), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2333), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2333), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2228), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2224), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2222), [aux_sym__val_number_decimal_token1] = ACTIONS(2222), - [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(2222), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2228), + [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), + [aux_sym__val_number_token4] = ACTIONS(2222), + [aux_sym__val_number_token5] = ACTIONS(2222), + [aux_sym__val_number_token6] = ACTIONS(2222), + [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), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2224), }, - [496] = { - [sym_comment] = STATE(496), - [anon_sym_export] = ACTIONS(1670), - [anon_sym_alias] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1670), - [anon_sym_let_DASHenv] = ACTIONS(1670), - [anon_sym_mut] = ACTIONS(1670), - [anon_sym_const] = ACTIONS(1670), - [aux_sym_cmd_identifier_token1] = ACTIONS(1670), - [aux_sym_cmd_identifier_token2] = ACTIONS(1670), - [aux_sym_cmd_identifier_token3] = ACTIONS(1670), - [aux_sym_cmd_identifier_token4] = ACTIONS(1670), - [aux_sym_cmd_identifier_token5] = ACTIONS(1670), - [aux_sym_cmd_identifier_token6] = ACTIONS(1670), - [aux_sym_cmd_identifier_token7] = ACTIONS(1670), - [aux_sym_cmd_identifier_token8] = ACTIONS(1670), - [aux_sym_cmd_identifier_token9] = ACTIONS(1670), - [aux_sym_cmd_identifier_token10] = ACTIONS(1670), - [aux_sym_cmd_identifier_token11] = ACTIONS(1670), - [aux_sym_cmd_identifier_token12] = ACTIONS(1670), - [aux_sym_cmd_identifier_token13] = ACTIONS(1670), - [aux_sym_cmd_identifier_token14] = ACTIONS(1670), - [aux_sym_cmd_identifier_token15] = ACTIONS(1670), - [aux_sym_cmd_identifier_token16] = ACTIONS(1670), - [aux_sym_cmd_identifier_token17] = ACTIONS(1670), - [aux_sym_cmd_identifier_token18] = ACTIONS(1670), - [aux_sym_cmd_identifier_token19] = ACTIONS(1670), - [aux_sym_cmd_identifier_token20] = ACTIONS(1670), - [aux_sym_cmd_identifier_token21] = ACTIONS(1670), - [aux_sym_cmd_identifier_token22] = ACTIONS(1670), - [aux_sym_cmd_identifier_token23] = ACTIONS(1670), - [aux_sym_cmd_identifier_token24] = ACTIONS(1670), - [aux_sym_cmd_identifier_token25] = ACTIONS(1670), - [aux_sym_cmd_identifier_token26] = ACTIONS(1670), - [aux_sym_cmd_identifier_token27] = ACTIONS(1670), - [aux_sym_cmd_identifier_token28] = ACTIONS(1670), - [aux_sym_cmd_identifier_token29] = ACTIONS(1670), - [aux_sym_cmd_identifier_token30] = ACTIONS(1670), - [aux_sym_cmd_identifier_token31] = ACTIONS(1670), - [aux_sym_cmd_identifier_token32] = ACTIONS(1670), - [aux_sym_cmd_identifier_token33] = ACTIONS(1670), - [aux_sym_cmd_identifier_token34] = ACTIONS(1670), - [aux_sym_cmd_identifier_token35] = ACTIONS(1670), - [aux_sym_cmd_identifier_token36] = ACTIONS(1670), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [aux_sym_cmd_identifier_token38] = ACTIONS(1670), - [aux_sym_cmd_identifier_token39] = ACTIONS(1672), - [aux_sym_cmd_identifier_token40] = ACTIONS(1672), - [anon_sym_def] = ACTIONS(1670), - [anon_sym_export_DASHenv] = ACTIONS(1670), - [anon_sym_extern] = ACTIONS(1670), - [anon_sym_module] = ACTIONS(1670), - [anon_sym_use] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1672), - [anon_sym_error] = ACTIONS(1670), - [anon_sym_list] = ACTIONS(1670), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_in] = ACTIONS(1670), - [anon_sym_loop] = ACTIONS(1670), - [anon_sym_make] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_do] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_match] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(1670), - [anon_sym_catch] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_source] = ACTIONS(1670), - [anon_sym_source_DASHenv] = ACTIONS(1670), - [anon_sym_register] = ACTIONS(1670), - [anon_sym_hide] = ACTIONS(1670), - [anon_sym_hide_DASHenv] = ACTIONS(1670), - [anon_sym_overlay] = ACTIONS(1670), - [anon_sym_new] = ACTIONS(1670), - [anon_sym_as] = ACTIONS(1670), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1672), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1672), - [aux_sym__val_number_decimal_token1] = ACTIONS(1670), - [aux_sym__val_number_decimal_token2] = ACTIONS(1672), - [aux_sym__val_number_decimal_token3] = ACTIONS(1672), - [aux_sym__val_number_decimal_token4] = ACTIONS(1672), - [aux_sym__val_number_token1] = ACTIONS(1672), - [aux_sym__val_number_token2] = ACTIONS(1672), - [aux_sym__val_number_token3] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [sym__str_single_quotes] = ACTIONS(1672), - [sym__str_back_ticks] = ACTIONS(1672), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1672), + [595] = { + [sym__expr_parenthesized_immediate] = STATE(7493), + [sym_comment] = STATE(595), + [anon_sym_export] = ACTIONS(2155), + [anon_sym_alias] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_let_DASHenv] = ACTIONS(2155), + [anon_sym_mut] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [aux_sym_cmd_identifier_token1] = ACTIONS(2155), + [aux_sym_cmd_identifier_token2] = ACTIONS(2157), + [aux_sym_cmd_identifier_token3] = ACTIONS(2157), + [aux_sym_cmd_identifier_token4] = ACTIONS(2157), + [aux_sym_cmd_identifier_token5] = ACTIONS(2157), + [aux_sym_cmd_identifier_token6] = ACTIONS(2157), + [aux_sym_cmd_identifier_token7] = ACTIONS(2157), + [aux_sym_cmd_identifier_token8] = ACTIONS(2155), + [aux_sym_cmd_identifier_token9] = ACTIONS(2155), + [aux_sym_cmd_identifier_token10] = ACTIONS(2157), + [aux_sym_cmd_identifier_token11] = ACTIONS(2157), + [aux_sym_cmd_identifier_token12] = ACTIONS(2155), + [aux_sym_cmd_identifier_token13] = ACTIONS(2155), + [aux_sym_cmd_identifier_token14] = ACTIONS(2155), + [aux_sym_cmd_identifier_token15] = ACTIONS(2155), + [aux_sym_cmd_identifier_token16] = ACTIONS(2157), + [aux_sym_cmd_identifier_token17] = ACTIONS(2157), + [aux_sym_cmd_identifier_token18] = ACTIONS(2157), + [aux_sym_cmd_identifier_token19] = ACTIONS(2157), + [aux_sym_cmd_identifier_token20] = ACTIONS(2157), + [aux_sym_cmd_identifier_token21] = ACTIONS(2157), + [aux_sym_cmd_identifier_token22] = ACTIONS(2157), + [aux_sym_cmd_identifier_token23] = ACTIONS(2157), + [aux_sym_cmd_identifier_token24] = ACTIONS(2157), + [aux_sym_cmd_identifier_token25] = ACTIONS(2157), + [aux_sym_cmd_identifier_token26] = ACTIONS(2157), + [aux_sym_cmd_identifier_token27] = ACTIONS(2157), + [aux_sym_cmd_identifier_token28] = ACTIONS(2157), + [aux_sym_cmd_identifier_token29] = ACTIONS(2157), + [aux_sym_cmd_identifier_token30] = ACTIONS(2157), + [aux_sym_cmd_identifier_token31] = ACTIONS(2157), + [aux_sym_cmd_identifier_token32] = ACTIONS(2157), + [aux_sym_cmd_identifier_token33] = ACTIONS(2157), + [aux_sym_cmd_identifier_token34] = ACTIONS(2155), + [aux_sym_cmd_identifier_token35] = ACTIONS(2157), + [aux_sym_cmd_identifier_token36] = ACTIONS(2157), + [aux_sym_cmd_identifier_token37] = ACTIONS(2157), + [aux_sym_cmd_identifier_token38] = ACTIONS(2155), + [aux_sym_cmd_identifier_token39] = ACTIONS(2157), + [aux_sym_cmd_identifier_token40] = ACTIONS(2157), + [anon_sym_def] = ACTIONS(2155), + [anon_sym_export_DASHenv] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_module] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_error] = ACTIONS(2155), + [anon_sym_DASH2] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_in2] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_make] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_do] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_else] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2155), + [anon_sym_catch] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_source] = ACTIONS(2155), + [anon_sym_source_DASHenv] = ACTIONS(2155), + [anon_sym_register] = ACTIONS(2155), + [anon_sym_hide] = ACTIONS(2155), + [anon_sym_hide_DASHenv] = ACTIONS(2155), + [anon_sym_overlay] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2157), + [aux_sym__val_number_decimal_token1] = ACTIONS(2155), + [aux_sym__val_number_decimal_token2] = ACTIONS(2157), + [aux_sym__val_number_decimal_token3] = ACTIONS(2157), + [aux_sym__val_number_decimal_token4] = ACTIONS(2157), + [aux_sym__val_number_token1] = ACTIONS(2157), + [aux_sym__val_number_token2] = ACTIONS(2157), + [aux_sym__val_number_token3] = ACTIONS(2157), + [aux_sym__val_number_token4] = ACTIONS(2155), + [aux_sym__val_number_token5] = ACTIONS(2155), + [aux_sym__val_number_token6] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(2157), + [sym__str_single_quotes] = ACTIONS(2157), + [sym__str_back_ticks] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2157), }, - [497] = { - [sym_comment] = STATE(497), - [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(1526), + [596] = { + [sym__expr_parenthesized_immediate] = STATE(7703), + [sym_comment] = STATE(596), + [anon_sym_export] = ACTIONS(2270), + [anon_sym_alias] = ACTIONS(2270), + [anon_sym_let] = ACTIONS(2270), + [anon_sym_let_DASHenv] = ACTIONS(2270), + [anon_sym_mut] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(2270), + [aux_sym_cmd_identifier_token1] = ACTIONS(2270), + [aux_sym_cmd_identifier_token2] = ACTIONS(2272), + [aux_sym_cmd_identifier_token3] = ACTIONS(2272), + [aux_sym_cmd_identifier_token4] = ACTIONS(2272), + [aux_sym_cmd_identifier_token5] = ACTIONS(2272), + [aux_sym_cmd_identifier_token6] = ACTIONS(2272), + [aux_sym_cmd_identifier_token7] = ACTIONS(2272), + [aux_sym_cmd_identifier_token8] = ACTIONS(2270), + [aux_sym_cmd_identifier_token9] = ACTIONS(2270), + [aux_sym_cmd_identifier_token10] = ACTIONS(2272), + [aux_sym_cmd_identifier_token11] = ACTIONS(2272), + [aux_sym_cmd_identifier_token12] = ACTIONS(2270), + [aux_sym_cmd_identifier_token13] = ACTIONS(2270), + [aux_sym_cmd_identifier_token14] = ACTIONS(2270), + [aux_sym_cmd_identifier_token15] = ACTIONS(2270), + [aux_sym_cmd_identifier_token16] = ACTIONS(2272), + [aux_sym_cmd_identifier_token17] = ACTIONS(2272), + [aux_sym_cmd_identifier_token18] = ACTIONS(2272), + [aux_sym_cmd_identifier_token19] = ACTIONS(2272), + [aux_sym_cmd_identifier_token20] = ACTIONS(2272), + [aux_sym_cmd_identifier_token21] = ACTIONS(2272), + [aux_sym_cmd_identifier_token22] = ACTIONS(2272), + [aux_sym_cmd_identifier_token23] = ACTIONS(2272), + [aux_sym_cmd_identifier_token24] = ACTIONS(2272), + [aux_sym_cmd_identifier_token25] = ACTIONS(2272), + [aux_sym_cmd_identifier_token26] = ACTIONS(2272), + [aux_sym_cmd_identifier_token27] = ACTIONS(2272), + [aux_sym_cmd_identifier_token28] = ACTIONS(2272), + [aux_sym_cmd_identifier_token29] = ACTIONS(2272), + [aux_sym_cmd_identifier_token30] = ACTIONS(2272), + [aux_sym_cmd_identifier_token31] = ACTIONS(2272), + [aux_sym_cmd_identifier_token32] = ACTIONS(2272), + [aux_sym_cmd_identifier_token33] = ACTIONS(2272), + [aux_sym_cmd_identifier_token34] = ACTIONS(2270), + [aux_sym_cmd_identifier_token35] = ACTIONS(2272), + [aux_sym_cmd_identifier_token36] = ACTIONS(2272), + [aux_sym_cmd_identifier_token37] = ACTIONS(2272), + [aux_sym_cmd_identifier_token38] = ACTIONS(2270), + [aux_sym_cmd_identifier_token39] = ACTIONS(2272), + [aux_sym_cmd_identifier_token40] = ACTIONS(2272), + [anon_sym_def] = ACTIONS(2270), + [anon_sym_export_DASHenv] = ACTIONS(2270), + [anon_sym_extern] = ACTIONS(2270), + [anon_sym_module] = ACTIONS(2270), + [anon_sym_use] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(2270), + [anon_sym_DOLLAR] = ACTIONS(2272), + [anon_sym_error] = ACTIONS(2270), + [anon_sym_DASH2] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_in2] = ACTIONS(2270), + [anon_sym_loop] = ACTIONS(2270), + [anon_sym_make] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2270), + [anon_sym_do] = ACTIONS(2270), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_else] = ACTIONS(2270), + [anon_sym_match] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2270), + [anon_sym_catch] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_source] = ACTIONS(2270), + [anon_sym_source_DASHenv] = ACTIONS(2270), + [anon_sym_register] = ACTIONS(2270), + [anon_sym_hide] = ACTIONS(2270), + [anon_sym_hide_DASHenv] = ACTIONS(2270), + [anon_sym_overlay] = ACTIONS(2270), + [anon_sym_as] = ACTIONS(2270), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(2270), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2272), + [aux_sym__val_number_decimal_token1] = ACTIONS(2270), + [aux_sym__val_number_decimal_token2] = ACTIONS(2272), + [aux_sym__val_number_decimal_token3] = ACTIONS(2272), + [aux_sym__val_number_decimal_token4] = ACTIONS(2272), + [aux_sym__val_number_token1] = ACTIONS(2272), + [aux_sym__val_number_token2] = ACTIONS(2272), + [aux_sym__val_number_token3] = ACTIONS(2272), + [aux_sym__val_number_token4] = ACTIONS(2270), + [aux_sym__val_number_token5] = ACTIONS(2270), + [aux_sym__val_number_token6] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym__str_single_quotes] = ACTIONS(2272), + [sym__str_back_ticks] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2272), + }, + [597] = { + [sym__expr_parenthesized_immediate] = STATE(7703), + [sym_comment] = STATE(597), + [anon_sym_export] = ACTIONS(2274), + [anon_sym_alias] = ACTIONS(2274), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_let_DASHenv] = ACTIONS(2274), + [anon_sym_mut] = ACTIONS(2274), + [anon_sym_const] = ACTIONS(2274), + [aux_sym_cmd_identifier_token1] = ACTIONS(2274), + [aux_sym_cmd_identifier_token2] = ACTIONS(2276), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), + [aux_sym_cmd_identifier_token6] = ACTIONS(2276), + [aux_sym_cmd_identifier_token7] = ACTIONS(2276), + [aux_sym_cmd_identifier_token8] = ACTIONS(2274), + [aux_sym_cmd_identifier_token9] = ACTIONS(2274), + [aux_sym_cmd_identifier_token10] = ACTIONS(2276), + [aux_sym_cmd_identifier_token11] = ACTIONS(2276), + [aux_sym_cmd_identifier_token12] = ACTIONS(2274), + [aux_sym_cmd_identifier_token13] = ACTIONS(2274), + [aux_sym_cmd_identifier_token14] = ACTIONS(2274), + [aux_sym_cmd_identifier_token15] = ACTIONS(2274), + [aux_sym_cmd_identifier_token16] = ACTIONS(2276), + [aux_sym_cmd_identifier_token17] = ACTIONS(2276), + [aux_sym_cmd_identifier_token18] = ACTIONS(2276), + [aux_sym_cmd_identifier_token19] = ACTIONS(2276), + [aux_sym_cmd_identifier_token20] = ACTIONS(2276), + [aux_sym_cmd_identifier_token21] = ACTIONS(2276), + [aux_sym_cmd_identifier_token22] = ACTIONS(2276), + [aux_sym_cmd_identifier_token23] = ACTIONS(2276), + [aux_sym_cmd_identifier_token24] = ACTIONS(2276), + [aux_sym_cmd_identifier_token25] = ACTIONS(2276), + [aux_sym_cmd_identifier_token26] = ACTIONS(2276), + [aux_sym_cmd_identifier_token27] = ACTIONS(2276), + [aux_sym_cmd_identifier_token28] = ACTIONS(2276), + [aux_sym_cmd_identifier_token29] = ACTIONS(2276), + [aux_sym_cmd_identifier_token30] = ACTIONS(2276), + [aux_sym_cmd_identifier_token31] = ACTIONS(2276), + [aux_sym_cmd_identifier_token32] = ACTIONS(2276), + [aux_sym_cmd_identifier_token33] = ACTIONS(2276), + [aux_sym_cmd_identifier_token34] = ACTIONS(2274), + [aux_sym_cmd_identifier_token35] = ACTIONS(2276), + [aux_sym_cmd_identifier_token36] = ACTIONS(2276), + [aux_sym_cmd_identifier_token37] = ACTIONS(2276), + [aux_sym_cmd_identifier_token38] = ACTIONS(2274), + [aux_sym_cmd_identifier_token39] = ACTIONS(2276), + [aux_sym_cmd_identifier_token40] = ACTIONS(2276), + [anon_sym_def] = ACTIONS(2274), + [anon_sym_export_DASHenv] = ACTIONS(2274), + [anon_sym_extern] = ACTIONS(2274), + [anon_sym_module] = ACTIONS(2274), + [anon_sym_use] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(2276), + [anon_sym_error] = ACTIONS(2274), + [anon_sym_DASH2] = ACTIONS(2274), + [anon_sym_break] = ACTIONS(2274), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_for] = ACTIONS(2274), + [anon_sym_in2] = ACTIONS(2274), + [anon_sym_loop] = ACTIONS(2274), + [anon_sym_make] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2274), + [anon_sym_do] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_else] = ACTIONS(2274), + [anon_sym_match] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2274), + [anon_sym_catch] = ACTIONS(2274), + [anon_sym_return] = ACTIONS(2274), + [anon_sym_source] = ACTIONS(2274), + [anon_sym_source_DASHenv] = ACTIONS(2274), + [anon_sym_register] = ACTIONS(2274), + [anon_sym_hide] = ACTIONS(2274), + [anon_sym_hide_DASHenv] = ACTIONS(2274), + [anon_sym_overlay] = ACTIONS(2274), + [anon_sym_as] = ACTIONS(2274), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(2274), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2276), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2276), + [aux_sym__val_number_decimal_token1] = ACTIONS(2274), + [aux_sym__val_number_decimal_token2] = ACTIONS(2276), + [aux_sym__val_number_decimal_token3] = ACTIONS(2276), + [aux_sym__val_number_decimal_token4] = ACTIONS(2276), + [aux_sym__val_number_token1] = ACTIONS(2276), + [aux_sym__val_number_token2] = ACTIONS(2276), + [aux_sym__val_number_token3] = ACTIONS(2276), + [aux_sym__val_number_token4] = ACTIONS(2274), + [aux_sym__val_number_token5] = ACTIONS(2274), + [aux_sym__val_number_token6] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym__str_single_quotes] = ACTIONS(2276), + [sym__str_back_ticks] = ACTIONS(2276), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2276), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2276), + }, + [598] = { + [sym__expr_parenthesized_immediate] = STATE(7703), + [sym_comment] = STATE(598), + [anon_sym_export] = ACTIONS(2278), + [anon_sym_alias] = ACTIONS(2278), + [anon_sym_let] = ACTIONS(2278), + [anon_sym_let_DASHenv] = ACTIONS(2278), + [anon_sym_mut] = ACTIONS(2278), + [anon_sym_const] = ACTIONS(2278), + [aux_sym_cmd_identifier_token1] = ACTIONS(2278), + [aux_sym_cmd_identifier_token2] = ACTIONS(2280), + [aux_sym_cmd_identifier_token3] = ACTIONS(2280), + [aux_sym_cmd_identifier_token4] = ACTIONS(2280), + [aux_sym_cmd_identifier_token5] = ACTIONS(2280), + [aux_sym_cmd_identifier_token6] = ACTIONS(2280), + [aux_sym_cmd_identifier_token7] = ACTIONS(2280), + [aux_sym_cmd_identifier_token8] = ACTIONS(2278), + [aux_sym_cmd_identifier_token9] = ACTIONS(2278), + [aux_sym_cmd_identifier_token10] = ACTIONS(2280), + [aux_sym_cmd_identifier_token11] = ACTIONS(2280), + [aux_sym_cmd_identifier_token12] = ACTIONS(2278), + [aux_sym_cmd_identifier_token13] = ACTIONS(2278), + [aux_sym_cmd_identifier_token14] = ACTIONS(2278), + [aux_sym_cmd_identifier_token15] = ACTIONS(2278), + [aux_sym_cmd_identifier_token16] = ACTIONS(2280), + [aux_sym_cmd_identifier_token17] = ACTIONS(2280), + [aux_sym_cmd_identifier_token18] = ACTIONS(2280), + [aux_sym_cmd_identifier_token19] = ACTIONS(2280), + [aux_sym_cmd_identifier_token20] = ACTIONS(2280), + [aux_sym_cmd_identifier_token21] = ACTIONS(2280), + [aux_sym_cmd_identifier_token22] = ACTIONS(2280), + [aux_sym_cmd_identifier_token23] = ACTIONS(2280), + [aux_sym_cmd_identifier_token24] = ACTIONS(2280), + [aux_sym_cmd_identifier_token25] = ACTIONS(2280), + [aux_sym_cmd_identifier_token26] = ACTIONS(2280), + [aux_sym_cmd_identifier_token27] = ACTIONS(2280), + [aux_sym_cmd_identifier_token28] = ACTIONS(2280), + [aux_sym_cmd_identifier_token29] = ACTIONS(2280), + [aux_sym_cmd_identifier_token30] = ACTIONS(2280), + [aux_sym_cmd_identifier_token31] = ACTIONS(2280), + [aux_sym_cmd_identifier_token32] = ACTIONS(2280), + [aux_sym_cmd_identifier_token33] = ACTIONS(2280), + [aux_sym_cmd_identifier_token34] = ACTIONS(2278), + [aux_sym_cmd_identifier_token35] = ACTIONS(2280), + [aux_sym_cmd_identifier_token36] = ACTIONS(2280), + [aux_sym_cmd_identifier_token37] = ACTIONS(2280), + [aux_sym_cmd_identifier_token38] = ACTIONS(2278), + [aux_sym_cmd_identifier_token39] = ACTIONS(2280), + [aux_sym_cmd_identifier_token40] = ACTIONS(2280), + [anon_sym_def] = ACTIONS(2278), + [anon_sym_export_DASHenv] = ACTIONS(2278), + [anon_sym_extern] = ACTIONS(2278), + [anon_sym_module] = ACTIONS(2278), + [anon_sym_use] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2278), + [anon_sym_DOLLAR] = ACTIONS(2280), + [anon_sym_error] = ACTIONS(2278), + [anon_sym_DASH2] = ACTIONS(2278), + [anon_sym_break] = ACTIONS(2278), + [anon_sym_continue] = ACTIONS(2278), + [anon_sym_for] = ACTIONS(2278), + [anon_sym_in2] = ACTIONS(2278), + [anon_sym_loop] = ACTIONS(2278), + [anon_sym_make] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2278), + [anon_sym_do] = ACTIONS(2278), + [anon_sym_if] = ACTIONS(2278), + [anon_sym_else] = ACTIONS(2278), + [anon_sym_match] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2278), + [anon_sym_catch] = ACTIONS(2278), + [anon_sym_return] = ACTIONS(2278), + [anon_sym_source] = ACTIONS(2278), + [anon_sym_source_DASHenv] = ACTIONS(2278), + [anon_sym_register] = ACTIONS(2278), + [anon_sym_hide] = ACTIONS(2278), + [anon_sym_hide_DASHenv] = ACTIONS(2278), + [anon_sym_overlay] = ACTIONS(2278), + [anon_sym_as] = ACTIONS(2278), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(2278), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2278), + [aux_sym__val_number_decimal_token2] = ACTIONS(2280), + [aux_sym__val_number_decimal_token3] = ACTIONS(2280), + [aux_sym__val_number_decimal_token4] = ACTIONS(2280), + [aux_sym__val_number_token1] = ACTIONS(2280), + [aux_sym__val_number_token2] = ACTIONS(2280), + [aux_sym__val_number_token3] = ACTIONS(2280), + [aux_sym__val_number_token4] = ACTIONS(2278), + [aux_sym__val_number_token5] = ACTIONS(2278), + [aux_sym__val_number_token6] = ACTIONS(2278), + [anon_sym_DQUOTE] = ACTIONS(2280), + [sym__str_single_quotes] = ACTIONS(2280), + [sym__str_back_ticks] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2280), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2280), + }, + [599] = { + [sym__expr_parenthesized_immediate] = STATE(7703), + [sym_comment] = STATE(599), + [anon_sym_export] = ACTIONS(2282), + [anon_sym_alias] = ACTIONS(2282), + [anon_sym_let] = ACTIONS(2282), + [anon_sym_let_DASHenv] = ACTIONS(2282), + [anon_sym_mut] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(2282), + [aux_sym_cmd_identifier_token1] = ACTIONS(2282), + [aux_sym_cmd_identifier_token2] = ACTIONS(2284), + [aux_sym_cmd_identifier_token3] = ACTIONS(2284), + [aux_sym_cmd_identifier_token4] = ACTIONS(2284), + [aux_sym_cmd_identifier_token5] = ACTIONS(2284), + [aux_sym_cmd_identifier_token6] = ACTIONS(2284), + [aux_sym_cmd_identifier_token7] = ACTIONS(2284), + [aux_sym_cmd_identifier_token8] = ACTIONS(2282), + [aux_sym_cmd_identifier_token9] = ACTIONS(2282), + [aux_sym_cmd_identifier_token10] = ACTIONS(2284), + [aux_sym_cmd_identifier_token11] = ACTIONS(2284), + [aux_sym_cmd_identifier_token12] = ACTIONS(2282), + [aux_sym_cmd_identifier_token13] = ACTIONS(2282), + [aux_sym_cmd_identifier_token14] = ACTIONS(2282), + [aux_sym_cmd_identifier_token15] = ACTIONS(2282), + [aux_sym_cmd_identifier_token16] = ACTIONS(2284), + [aux_sym_cmd_identifier_token17] = ACTIONS(2284), + [aux_sym_cmd_identifier_token18] = ACTIONS(2284), + [aux_sym_cmd_identifier_token19] = ACTIONS(2284), + [aux_sym_cmd_identifier_token20] = ACTIONS(2284), + [aux_sym_cmd_identifier_token21] = ACTIONS(2284), + [aux_sym_cmd_identifier_token22] = ACTIONS(2284), + [aux_sym_cmd_identifier_token23] = ACTIONS(2284), + [aux_sym_cmd_identifier_token24] = ACTIONS(2284), + [aux_sym_cmd_identifier_token25] = ACTIONS(2284), + [aux_sym_cmd_identifier_token26] = ACTIONS(2284), + [aux_sym_cmd_identifier_token27] = ACTIONS(2284), + [aux_sym_cmd_identifier_token28] = ACTIONS(2284), + [aux_sym_cmd_identifier_token29] = ACTIONS(2284), + [aux_sym_cmd_identifier_token30] = ACTIONS(2284), + [aux_sym_cmd_identifier_token31] = ACTIONS(2284), + [aux_sym_cmd_identifier_token32] = ACTIONS(2284), + [aux_sym_cmd_identifier_token33] = ACTIONS(2284), + [aux_sym_cmd_identifier_token34] = ACTIONS(2282), + [aux_sym_cmd_identifier_token35] = ACTIONS(2284), + [aux_sym_cmd_identifier_token36] = ACTIONS(2284), + [aux_sym_cmd_identifier_token37] = ACTIONS(2284), + [aux_sym_cmd_identifier_token38] = ACTIONS(2282), + [aux_sym_cmd_identifier_token39] = ACTIONS(2284), + [aux_sym_cmd_identifier_token40] = ACTIONS(2284), + [anon_sym_def] = ACTIONS(2282), + [anon_sym_export_DASHenv] = ACTIONS(2282), + [anon_sym_extern] = ACTIONS(2282), + [anon_sym_module] = ACTIONS(2282), + [anon_sym_use] = ACTIONS(2282), + [anon_sym_LPAREN] = ACTIONS(2282), + [anon_sym_DOLLAR] = ACTIONS(2284), + [anon_sym_error] = ACTIONS(2282), + [anon_sym_DASH2] = ACTIONS(2282), + [anon_sym_break] = ACTIONS(2282), + [anon_sym_continue] = ACTIONS(2282), + [anon_sym_for] = ACTIONS(2282), + [anon_sym_in2] = ACTIONS(2282), + [anon_sym_loop] = ACTIONS(2282), + [anon_sym_make] = ACTIONS(2282), + [anon_sym_while] = ACTIONS(2282), + [anon_sym_do] = ACTIONS(2282), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_else] = ACTIONS(2282), + [anon_sym_match] = ACTIONS(2282), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2282), + [anon_sym_catch] = ACTIONS(2282), + [anon_sym_return] = ACTIONS(2282), + [anon_sym_source] = ACTIONS(2282), + [anon_sym_source_DASHenv] = ACTIONS(2282), + [anon_sym_register] = ACTIONS(2282), + [anon_sym_hide] = ACTIONS(2282), + [anon_sym_hide_DASHenv] = ACTIONS(2282), + [anon_sym_overlay] = ACTIONS(2282), + [anon_sym_as] = ACTIONS(2282), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(2282), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2284), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2284), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2284), + [aux_sym__val_number_decimal_token4] = ACTIONS(2284), + [aux_sym__val_number_token1] = ACTIONS(2284), + [aux_sym__val_number_token2] = ACTIONS(2284), + [aux_sym__val_number_token3] = ACTIONS(2284), + [aux_sym__val_number_token4] = ACTIONS(2282), + [aux_sym__val_number_token5] = ACTIONS(2282), + [aux_sym__val_number_token6] = ACTIONS(2282), + [anon_sym_DQUOTE] = ACTIONS(2284), + [sym__str_single_quotes] = ACTIONS(2284), + [sym__str_back_ticks] = ACTIONS(2284), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2284), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2284), + }, + [600] = { + [sym_comment] = STATE(600), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(1709), + [aux_sym_cmd_identifier_token3] = ACTIONS(1709), + [aux_sym_cmd_identifier_token4] = ACTIONS(1709), + [aux_sym_cmd_identifier_token5] = ACTIONS(1709), + [aux_sym_cmd_identifier_token6] = ACTIONS(1709), + [aux_sym_cmd_identifier_token7] = ACTIONS(1709), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1709), + [aux_sym_cmd_identifier_token11] = ACTIONS(1709), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(1709), + [aux_sym_cmd_identifier_token17] = ACTIONS(1709), + [aux_sym_cmd_identifier_token18] = ACTIONS(1709), + [aux_sym_cmd_identifier_token19] = ACTIONS(1709), + [aux_sym_cmd_identifier_token20] = ACTIONS(1709), + [aux_sym_cmd_identifier_token21] = ACTIONS(1709), + [aux_sym_cmd_identifier_token22] = ACTIONS(1709), + [aux_sym_cmd_identifier_token23] = ACTIONS(1709), + [aux_sym_cmd_identifier_token24] = ACTIONS(1709), + [aux_sym_cmd_identifier_token25] = ACTIONS(1709), + [aux_sym_cmd_identifier_token26] = ACTIONS(1709), + [aux_sym_cmd_identifier_token27] = ACTIONS(1709), + [aux_sym_cmd_identifier_token28] = ACTIONS(1709), + [aux_sym_cmd_identifier_token29] = ACTIONS(1709), + [aux_sym_cmd_identifier_token30] = ACTIONS(1709), + [aux_sym_cmd_identifier_token31] = ACTIONS(1709), + [aux_sym_cmd_identifier_token32] = ACTIONS(1709), + [aux_sym_cmd_identifier_token33] = ACTIONS(1709), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1709), + [aux_sym_cmd_identifier_token36] = ACTIONS(1709), + [aux_sym_cmd_identifier_token37] = ACTIONS(1709), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1709), + [aux_sym_cmd_identifier_token40] = ACTIONS(1709), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1709), + [aux_sym__val_number_decimal_token3] = ACTIONS(1709), + [aux_sym__val_number_decimal_token4] = ACTIONS(1709), + [aux_sym__val_number_token1] = ACTIONS(1709), + [aux_sym__val_number_token2] = ACTIONS(1709), + [aux_sym__val_number_token3] = ACTIONS(1709), + [aux_sym__val_number_token4] = ACTIONS(1709), + [aux_sym__val_number_token5] = ACTIONS(1709), + [aux_sym__val_number_token6] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym__str_single_quotes] = ACTIONS(1709), + [sym__str_back_ticks] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), + [sym__entry_separator] = ACTIONS(1721), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1723), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1796), + [sym_raw_string_begin] = ACTIONS(1721), }, - [498] = { - [sym_comment] = STATE(498), - [anon_sym_export] = ACTIONS(2335), - [anon_sym_alias] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2335), - [anon_sym_let_DASHenv] = ACTIONS(2335), - [anon_sym_mut] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [aux_sym_cmd_identifier_token1] = ACTIONS(2335), - [aux_sym_cmd_identifier_token2] = ACTIONS(2335), - [aux_sym_cmd_identifier_token3] = ACTIONS(2335), - [aux_sym_cmd_identifier_token4] = ACTIONS(2335), - [aux_sym_cmd_identifier_token5] = ACTIONS(2335), - [aux_sym_cmd_identifier_token6] = ACTIONS(2335), - [aux_sym_cmd_identifier_token7] = ACTIONS(2335), - [aux_sym_cmd_identifier_token8] = ACTIONS(2335), - [aux_sym_cmd_identifier_token9] = ACTIONS(2335), - [aux_sym_cmd_identifier_token10] = ACTIONS(2335), - [aux_sym_cmd_identifier_token11] = ACTIONS(2335), - [aux_sym_cmd_identifier_token12] = ACTIONS(2335), - [aux_sym_cmd_identifier_token13] = ACTIONS(2335), - [aux_sym_cmd_identifier_token14] = ACTIONS(2335), - [aux_sym_cmd_identifier_token15] = ACTIONS(2335), - [aux_sym_cmd_identifier_token16] = ACTIONS(2335), - [aux_sym_cmd_identifier_token17] = ACTIONS(2335), - [aux_sym_cmd_identifier_token18] = ACTIONS(2335), - [aux_sym_cmd_identifier_token19] = ACTIONS(2335), - [aux_sym_cmd_identifier_token20] = ACTIONS(2335), - [aux_sym_cmd_identifier_token21] = ACTIONS(2335), - [aux_sym_cmd_identifier_token22] = ACTIONS(2335), - [aux_sym_cmd_identifier_token23] = ACTIONS(2335), - [aux_sym_cmd_identifier_token24] = ACTIONS(2335), - [aux_sym_cmd_identifier_token25] = ACTIONS(2335), - [aux_sym_cmd_identifier_token26] = ACTIONS(2335), - [aux_sym_cmd_identifier_token27] = ACTIONS(2335), - [aux_sym_cmd_identifier_token28] = ACTIONS(2335), - [aux_sym_cmd_identifier_token29] = ACTIONS(2335), - [aux_sym_cmd_identifier_token30] = ACTIONS(2335), - [aux_sym_cmd_identifier_token31] = ACTIONS(2335), - [aux_sym_cmd_identifier_token32] = ACTIONS(2335), - [aux_sym_cmd_identifier_token33] = ACTIONS(2335), - [aux_sym_cmd_identifier_token34] = ACTIONS(2335), - [aux_sym_cmd_identifier_token35] = ACTIONS(2335), - [aux_sym_cmd_identifier_token36] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2335), - [anon_sym_false] = ACTIONS(2335), - [anon_sym_null] = ACTIONS(2335), - [aux_sym_cmd_identifier_token38] = ACTIONS(2335), - [aux_sym_cmd_identifier_token39] = ACTIONS(2335), - [aux_sym_cmd_identifier_token40] = ACTIONS(2335), - [anon_sym_def] = ACTIONS(2335), - [anon_sym_export_DASHenv] = ACTIONS(2335), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_module] = ACTIONS(2335), - [anon_sym_use] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2335), - [anon_sym_error] = ACTIONS(2335), - [anon_sym_list] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_in] = ACTIONS(2335), - [anon_sym_loop] = ACTIONS(2335), - [anon_sym_make] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [anon_sym_do] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_else] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2335), - [anon_sym_catch] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_source] = ACTIONS(2335), - [anon_sym_source_DASHenv] = ACTIONS(2335), - [anon_sym_register] = ACTIONS(2335), - [anon_sym_hide] = ACTIONS(2335), - [anon_sym_hide_DASHenv] = ACTIONS(2335), - [anon_sym_overlay] = ACTIONS(2335), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_as] = ACTIONS(2335), - [anon_sym_LPAREN2] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2335), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2335), - [aux_sym__val_number_decimal_token1] = ACTIONS(2335), - [aux_sym__val_number_decimal_token2] = ACTIONS(2335), - [aux_sym__val_number_decimal_token3] = ACTIONS(2335), - [aux_sym__val_number_decimal_token4] = ACTIONS(2335), - [aux_sym__val_number_token1] = ACTIONS(2335), - [aux_sym__val_number_token2] = ACTIONS(2335), - [aux_sym__val_number_token3] = ACTIONS(2335), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym__str_single_quotes] = ACTIONS(2335), - [sym__str_back_ticks] = ACTIONS(2335), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2335), - [sym__entry_separator] = ACTIONS(2339), - [anon_sym_PLUS] = ACTIONS(2335), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1558), + [601] = { + [sym_comment] = STATE(601), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_alias] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_let_DASHenv] = ACTIONS(2327), + [anon_sym_mut] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [aux_sym_cmd_identifier_token1] = ACTIONS(2327), + [aux_sym_cmd_identifier_token2] = ACTIONS(2327), + [aux_sym_cmd_identifier_token3] = ACTIONS(2327), + [aux_sym_cmd_identifier_token4] = ACTIONS(2327), + [aux_sym_cmd_identifier_token5] = ACTIONS(2327), + [aux_sym_cmd_identifier_token6] = ACTIONS(2327), + [aux_sym_cmd_identifier_token7] = ACTIONS(2327), + [aux_sym_cmd_identifier_token8] = ACTIONS(2327), + [aux_sym_cmd_identifier_token9] = ACTIONS(2327), + [aux_sym_cmd_identifier_token10] = ACTIONS(2327), + [aux_sym_cmd_identifier_token11] = ACTIONS(2327), + [aux_sym_cmd_identifier_token12] = ACTIONS(2327), + [aux_sym_cmd_identifier_token13] = ACTIONS(2327), + [aux_sym_cmd_identifier_token14] = ACTIONS(2327), + [aux_sym_cmd_identifier_token15] = ACTIONS(2327), + [aux_sym_cmd_identifier_token16] = ACTIONS(2327), + [aux_sym_cmd_identifier_token17] = ACTIONS(2327), + [aux_sym_cmd_identifier_token18] = ACTIONS(2327), + [aux_sym_cmd_identifier_token19] = ACTIONS(2327), + [aux_sym_cmd_identifier_token20] = ACTIONS(2327), + [aux_sym_cmd_identifier_token21] = ACTIONS(2327), + [aux_sym_cmd_identifier_token22] = ACTIONS(2327), + [aux_sym_cmd_identifier_token23] = ACTIONS(2327), + [aux_sym_cmd_identifier_token24] = ACTIONS(2327), + [aux_sym_cmd_identifier_token25] = ACTIONS(2327), + [aux_sym_cmd_identifier_token26] = ACTIONS(2327), + [aux_sym_cmd_identifier_token27] = ACTIONS(2327), + [aux_sym_cmd_identifier_token28] = ACTIONS(2327), + [aux_sym_cmd_identifier_token29] = ACTIONS(2327), + [aux_sym_cmd_identifier_token30] = ACTIONS(2327), + [aux_sym_cmd_identifier_token31] = ACTIONS(2327), + [aux_sym_cmd_identifier_token32] = ACTIONS(2327), + [aux_sym_cmd_identifier_token33] = ACTIONS(2327), + [aux_sym_cmd_identifier_token34] = ACTIONS(2327), + [aux_sym_cmd_identifier_token35] = ACTIONS(2327), + [aux_sym_cmd_identifier_token36] = ACTIONS(2327), + [aux_sym_cmd_identifier_token37] = ACTIONS(2327), + [aux_sym_cmd_identifier_token38] = ACTIONS(2327), + [aux_sym_cmd_identifier_token39] = ACTIONS(2327), + [aux_sym_cmd_identifier_token40] = ACTIONS(2327), + [anon_sym_def] = ACTIONS(2327), + [anon_sym_export_DASHenv] = ACTIONS(2327), + [anon_sym_extern] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_use] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_DOLLAR] = ACTIONS(2327), + [anon_sym_error] = ACTIONS(2327), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_in2] = ACTIONS(2327), + [anon_sym_loop] = ACTIONS(2327), + [anon_sym_make] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_else] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_catch] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_source] = ACTIONS(2327), + [anon_sym_source_DASHenv] = ACTIONS(2327), + [anon_sym_register] = ACTIONS(2327), + [anon_sym_hide] = ACTIONS(2327), + [anon_sym_hide_DASHenv] = ACTIONS(2327), + [anon_sym_overlay] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(2329), + [anon_sym_PLUS2] = ACTIONS(2327), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2327), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2327), + [aux_sym__val_number_decimal_token1] = ACTIONS(2327), + [aux_sym__val_number_decimal_token2] = ACTIONS(2327), + [aux_sym__val_number_decimal_token3] = ACTIONS(2327), + [aux_sym__val_number_decimal_token4] = ACTIONS(2327), + [aux_sym__val_number_token1] = ACTIONS(2327), + [aux_sym__val_number_token2] = ACTIONS(2327), + [aux_sym__val_number_token3] = ACTIONS(2327), + [aux_sym__val_number_token4] = ACTIONS(2327), + [aux_sym__val_number_token5] = ACTIONS(2327), + [aux_sym__val_number_token6] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym__str_single_quotes] = ACTIONS(2327), + [sym__str_back_ticks] = ACTIONS(2327), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2327), + [sym__entry_separator] = ACTIONS(2329), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2339), + [sym_raw_string_begin] = ACTIONS(2329), }, - [499] = { - [sym_comment] = STATE(499), - [anon_sym_export] = ACTIONS(1842), - [anon_sym_alias] = ACTIONS(1842), - [anon_sym_let] = ACTIONS(1842), - [anon_sym_let_DASHenv] = ACTIONS(1842), - [anon_sym_mut] = ACTIONS(1842), - [anon_sym_const] = ACTIONS(1842), - [aux_sym_cmd_identifier_token1] = ACTIONS(1842), - [aux_sym_cmd_identifier_token2] = ACTIONS(1842), - [aux_sym_cmd_identifier_token3] = ACTIONS(1842), - [aux_sym_cmd_identifier_token4] = ACTIONS(1842), - [aux_sym_cmd_identifier_token5] = ACTIONS(1842), - [aux_sym_cmd_identifier_token6] = ACTIONS(1842), - [aux_sym_cmd_identifier_token7] = ACTIONS(1842), - [aux_sym_cmd_identifier_token8] = ACTIONS(1842), - [aux_sym_cmd_identifier_token9] = ACTIONS(1842), - [aux_sym_cmd_identifier_token10] = ACTIONS(1842), - [aux_sym_cmd_identifier_token11] = ACTIONS(1842), - [aux_sym_cmd_identifier_token12] = ACTIONS(1842), - [aux_sym_cmd_identifier_token13] = ACTIONS(1842), - [aux_sym_cmd_identifier_token14] = ACTIONS(1842), - [aux_sym_cmd_identifier_token15] = ACTIONS(1842), - [aux_sym_cmd_identifier_token16] = ACTIONS(1842), - [aux_sym_cmd_identifier_token17] = ACTIONS(1842), - [aux_sym_cmd_identifier_token18] = ACTIONS(1842), - [aux_sym_cmd_identifier_token19] = ACTIONS(1842), - [aux_sym_cmd_identifier_token20] = ACTIONS(1842), - [aux_sym_cmd_identifier_token21] = ACTIONS(1842), - [aux_sym_cmd_identifier_token22] = ACTIONS(1842), - [aux_sym_cmd_identifier_token23] = ACTIONS(1842), - [aux_sym_cmd_identifier_token24] = ACTIONS(1842), - [aux_sym_cmd_identifier_token25] = ACTIONS(1842), - [aux_sym_cmd_identifier_token26] = ACTIONS(1842), - [aux_sym_cmd_identifier_token27] = ACTIONS(1842), - [aux_sym_cmd_identifier_token28] = ACTIONS(1842), - [aux_sym_cmd_identifier_token29] = ACTIONS(1842), - [aux_sym_cmd_identifier_token30] = ACTIONS(1842), - [aux_sym_cmd_identifier_token31] = ACTIONS(1842), - [aux_sym_cmd_identifier_token32] = ACTIONS(1842), - [aux_sym_cmd_identifier_token33] = ACTIONS(1842), - [aux_sym_cmd_identifier_token34] = ACTIONS(1842), - [aux_sym_cmd_identifier_token35] = ACTIONS(1842), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(1842), - [anon_sym_export_DASHenv] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1842), - [anon_sym_module] = ACTIONS(1842), - [anon_sym_use] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_error] = ACTIONS(1842), - [anon_sym_list] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_in] = ACTIONS(1842), - [anon_sym_loop] = ACTIONS(1842), - [anon_sym_make] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_else] = ACTIONS(1842), - [anon_sym_match] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_try] = ACTIONS(1842), - [anon_sym_catch] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_source] = ACTIONS(1842), - [anon_sym_source_DASHenv] = ACTIONS(1842), - [anon_sym_register] = ACTIONS(1842), - [anon_sym_hide] = ACTIONS(1842), - [anon_sym_hide_DASHenv] = ACTIONS(1842), - [anon_sym_overlay] = ACTIONS(1842), - [anon_sym_new] = ACTIONS(1842), - [anon_sym_as] = ACTIONS(1842), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1842), - [aux_sym__val_number_decimal_token1] = ACTIONS(1842), - [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), - [sym__entry_separator] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1842), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1852), + [602] = { + [sym_comment] = STATE(602), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [aux_sym_cmd_identifier_token1] = ACTIONS(1018), + [aux_sym_cmd_identifier_token2] = ACTIONS(1020), + [aux_sym_cmd_identifier_token3] = ACTIONS(1020), + [aux_sym_cmd_identifier_token4] = ACTIONS(1020), + [aux_sym_cmd_identifier_token5] = ACTIONS(1020), + [aux_sym_cmd_identifier_token6] = ACTIONS(1020), + [aux_sym_cmd_identifier_token7] = ACTIONS(1020), + [aux_sym_cmd_identifier_token8] = ACTIONS(1018), + [aux_sym_cmd_identifier_token9] = ACTIONS(1018), + [aux_sym_cmd_identifier_token10] = ACTIONS(1020), + [aux_sym_cmd_identifier_token11] = ACTIONS(1020), + [aux_sym_cmd_identifier_token12] = ACTIONS(1018), + [aux_sym_cmd_identifier_token13] = ACTIONS(1018), + [aux_sym_cmd_identifier_token14] = ACTIONS(1018), + [aux_sym_cmd_identifier_token15] = ACTIONS(1018), + [aux_sym_cmd_identifier_token16] = ACTIONS(1020), + [aux_sym_cmd_identifier_token17] = ACTIONS(1020), + [aux_sym_cmd_identifier_token18] = ACTIONS(1020), + [aux_sym_cmd_identifier_token19] = ACTIONS(1020), + [aux_sym_cmd_identifier_token20] = ACTIONS(1020), + [aux_sym_cmd_identifier_token21] = ACTIONS(1020), + [aux_sym_cmd_identifier_token22] = ACTIONS(1020), + [aux_sym_cmd_identifier_token23] = ACTIONS(1020), + [aux_sym_cmd_identifier_token24] = ACTIONS(1020), + [aux_sym_cmd_identifier_token25] = ACTIONS(1020), + [aux_sym_cmd_identifier_token26] = ACTIONS(1020), + [aux_sym_cmd_identifier_token27] = ACTIONS(1020), + [aux_sym_cmd_identifier_token28] = ACTIONS(1020), + [aux_sym_cmd_identifier_token29] = ACTIONS(1020), + [aux_sym_cmd_identifier_token30] = ACTIONS(1020), + [aux_sym_cmd_identifier_token31] = ACTIONS(1020), + [aux_sym_cmd_identifier_token32] = ACTIONS(1020), + [aux_sym_cmd_identifier_token33] = ACTIONS(1020), + [aux_sym_cmd_identifier_token34] = ACTIONS(1018), + [aux_sym_cmd_identifier_token35] = ACTIONS(1020), + [aux_sym_cmd_identifier_token36] = ACTIONS(1020), + [aux_sym_cmd_identifier_token37] = ACTIONS(1020), + [aux_sym_cmd_identifier_token38] = ACTIONS(1018), + [aux_sym_cmd_identifier_token39] = ACTIONS(1020), + [aux_sym_cmd_identifier_token40] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_make] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_catch] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_as] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_decimal_token4] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1018), + [aux_sym__val_number_token5] = ACTIONS(1018), + [aux_sym__val_number_token6] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), + [aux_sym_record_entry_token1] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1020), + }, + [603] = { + [sym_comment] = STATE(603), + [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(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(1022), + [aux_sym_cmd_identifier_token9] = ACTIONS(1022), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [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(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(1022), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [aux_sym_cmd_identifier_token37] = ACTIONS(1028), + [aux_sym_cmd_identifier_token38] = ACTIONS(1022), + [aux_sym_cmd_identifier_token39] = ACTIONS(1028), + [aux_sym_cmd_identifier_token40] = ACTIONS(1028), + [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(1028), + [anon_sym_COMMA] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1022), + [anon_sym_in2] = 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(1028), + [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_as] = ACTIONS(1022), + [anon_sym_PLUS2] = ACTIONS(1022), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [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), + [aux_sym__val_number_token4] = ACTIONS(1022), + [aux_sym__val_number_token5] = ACTIONS(1022), + [aux_sym__val_number_token6] = ACTIONS(1022), + [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), + [aux_sym_record_entry_token1] = ACTIONS(2331), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1028), + }, + [604] = { + [sym_comment] = STATE(604), + [anon_sym_export] = ACTIONS(2333), + [anon_sym_alias] = ACTIONS(2333), + [anon_sym_let] = ACTIONS(2333), + [anon_sym_let_DASHenv] = ACTIONS(2333), + [anon_sym_mut] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [aux_sym_cmd_identifier_token1] = ACTIONS(2333), + [aux_sym_cmd_identifier_token2] = ACTIONS(2333), + [aux_sym_cmd_identifier_token3] = ACTIONS(2333), + [aux_sym_cmd_identifier_token4] = ACTIONS(2333), + [aux_sym_cmd_identifier_token5] = ACTIONS(2333), + [aux_sym_cmd_identifier_token6] = ACTIONS(2333), + [aux_sym_cmd_identifier_token7] = ACTIONS(2333), + [aux_sym_cmd_identifier_token8] = ACTIONS(2333), + [aux_sym_cmd_identifier_token9] = ACTIONS(2333), + [aux_sym_cmd_identifier_token10] = ACTIONS(2333), + [aux_sym_cmd_identifier_token11] = ACTIONS(2333), + [aux_sym_cmd_identifier_token12] = ACTIONS(2333), + [aux_sym_cmd_identifier_token13] = ACTIONS(2333), + [aux_sym_cmd_identifier_token14] = ACTIONS(2333), + [aux_sym_cmd_identifier_token15] = ACTIONS(2333), + [aux_sym_cmd_identifier_token16] = ACTIONS(2333), + [aux_sym_cmd_identifier_token17] = ACTIONS(2333), + [aux_sym_cmd_identifier_token18] = ACTIONS(2333), + [aux_sym_cmd_identifier_token19] = ACTIONS(2333), + [aux_sym_cmd_identifier_token20] = ACTIONS(2333), + [aux_sym_cmd_identifier_token21] = ACTIONS(2333), + [aux_sym_cmd_identifier_token22] = ACTIONS(2333), + [aux_sym_cmd_identifier_token23] = ACTIONS(2333), + [aux_sym_cmd_identifier_token24] = ACTIONS(2333), + [aux_sym_cmd_identifier_token25] = ACTIONS(2333), + [aux_sym_cmd_identifier_token26] = ACTIONS(2333), + [aux_sym_cmd_identifier_token27] = ACTIONS(2333), + [aux_sym_cmd_identifier_token28] = ACTIONS(2333), + [aux_sym_cmd_identifier_token29] = ACTIONS(2333), + [aux_sym_cmd_identifier_token30] = ACTIONS(2333), + [aux_sym_cmd_identifier_token31] = ACTIONS(2333), + [aux_sym_cmd_identifier_token32] = ACTIONS(2333), + [aux_sym_cmd_identifier_token33] = ACTIONS(2333), + [aux_sym_cmd_identifier_token34] = ACTIONS(2333), + [aux_sym_cmd_identifier_token35] = ACTIONS(2333), + [aux_sym_cmd_identifier_token36] = ACTIONS(2333), + [aux_sym_cmd_identifier_token37] = ACTIONS(2333), + [aux_sym_cmd_identifier_token38] = ACTIONS(2333), + [aux_sym_cmd_identifier_token39] = ACTIONS(2333), + [aux_sym_cmd_identifier_token40] = ACTIONS(2333), + [anon_sym_def] = ACTIONS(2333), + [anon_sym_export_DASHenv] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym_module] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_DOLLAR] = ACTIONS(2333), + [anon_sym_error] = ACTIONS(2333), + [anon_sym_DASH2] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_in2] = ACTIONS(2333), + [anon_sym_loop] = ACTIONS(2333), + [anon_sym_make] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_else] = ACTIONS(2333), + [anon_sym_match] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_catch] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_source] = ACTIONS(2333), + [anon_sym_source_DASHenv] = ACTIONS(2333), + [anon_sym_register] = ACTIONS(2333), + [anon_sym_hide] = ACTIONS(2333), + [anon_sym_hide_DASHenv] = ACTIONS(2333), + [anon_sym_overlay] = ACTIONS(2333), + [anon_sym_as] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_PLUS2] = ACTIONS(2333), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2333), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2333), + [aux_sym__val_number_decimal_token1] = ACTIONS(2333), + [aux_sym__val_number_decimal_token2] = ACTIONS(2333), + [aux_sym__val_number_decimal_token3] = ACTIONS(2333), + [aux_sym__val_number_decimal_token4] = ACTIONS(2333), + [aux_sym__val_number_token1] = ACTIONS(2333), + [aux_sym__val_number_token2] = ACTIONS(2333), + [aux_sym__val_number_token3] = ACTIONS(2333), + [aux_sym__val_number_token4] = ACTIONS(2333), + [aux_sym__val_number_token5] = ACTIONS(2333), + [aux_sym__val_number_token6] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(2333), + [sym__str_single_quotes] = ACTIONS(2333), + [sym__str_back_ticks] = ACTIONS(2333), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2333), + [sym__entry_separator] = ACTIONS(2335), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1850), + [sym_raw_string_begin] = ACTIONS(2335), }, - [500] = { - [sym_comment] = STATE(500), - [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_COMMA] = 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] = ACTIONS(1070), - [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), - [aux_sym_record_entry_token1] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1072), + [605] = { + [sym_comment] = STATE(605), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(996), + [aux_sym_cmd_identifier_token3] = ACTIONS(996), + [aux_sym_cmd_identifier_token4] = ACTIONS(996), + [aux_sym_cmd_identifier_token5] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(996), + [aux_sym_cmd_identifier_token7] = ACTIONS(996), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(996), + [aux_sym_cmd_identifier_token11] = ACTIONS(996), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(996), + [aux_sym_cmd_identifier_token17] = ACTIONS(996), + [aux_sym_cmd_identifier_token18] = ACTIONS(996), + [aux_sym_cmd_identifier_token19] = ACTIONS(996), + [aux_sym_cmd_identifier_token20] = ACTIONS(996), + [aux_sym_cmd_identifier_token21] = ACTIONS(996), + [aux_sym_cmd_identifier_token22] = ACTIONS(996), + [aux_sym_cmd_identifier_token23] = ACTIONS(996), + [aux_sym_cmd_identifier_token24] = ACTIONS(996), + [aux_sym_cmd_identifier_token25] = ACTIONS(996), + [aux_sym_cmd_identifier_token26] = ACTIONS(996), + [aux_sym_cmd_identifier_token27] = ACTIONS(996), + [aux_sym_cmd_identifier_token28] = ACTIONS(996), + [aux_sym_cmd_identifier_token29] = ACTIONS(996), + [aux_sym_cmd_identifier_token30] = ACTIONS(996), + [aux_sym_cmd_identifier_token31] = ACTIONS(996), + [aux_sym_cmd_identifier_token32] = ACTIONS(996), + [aux_sym_cmd_identifier_token33] = ACTIONS(996), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(996), + [aux_sym_cmd_identifier_token36] = ACTIONS(996), + [aux_sym_cmd_identifier_token37] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(994), + [aux_sym__val_number_token5] = ACTIONS(994), + [aux_sym__val_number_token6] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), }, - [501] = { - [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_alias] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_let_DASHenv] = ACTIONS(2196), - [anon_sym_mut] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [aux_sym_cmd_identifier_token1] = ACTIONS(2196), - [aux_sym_cmd_identifier_token2] = ACTIONS(2196), - [aux_sym_cmd_identifier_token3] = ACTIONS(2196), - [aux_sym_cmd_identifier_token4] = ACTIONS(2196), - [aux_sym_cmd_identifier_token5] = ACTIONS(2196), - [aux_sym_cmd_identifier_token6] = ACTIONS(2196), - [aux_sym_cmd_identifier_token7] = ACTIONS(2196), - [aux_sym_cmd_identifier_token8] = ACTIONS(2196), - [aux_sym_cmd_identifier_token9] = ACTIONS(2196), - [aux_sym_cmd_identifier_token10] = ACTIONS(2196), - [aux_sym_cmd_identifier_token11] = ACTIONS(2196), - [aux_sym_cmd_identifier_token12] = ACTIONS(2196), - [aux_sym_cmd_identifier_token13] = ACTIONS(2196), - [aux_sym_cmd_identifier_token14] = ACTIONS(2196), - [aux_sym_cmd_identifier_token15] = ACTIONS(2196), - [aux_sym_cmd_identifier_token16] = ACTIONS(2196), - [aux_sym_cmd_identifier_token17] = ACTIONS(2196), - [aux_sym_cmd_identifier_token18] = ACTIONS(2196), - [aux_sym_cmd_identifier_token19] = ACTIONS(2196), - [aux_sym_cmd_identifier_token20] = ACTIONS(2196), - [aux_sym_cmd_identifier_token21] = ACTIONS(2196), - [aux_sym_cmd_identifier_token22] = ACTIONS(2196), - [aux_sym_cmd_identifier_token23] = ACTIONS(2196), - [aux_sym_cmd_identifier_token24] = ACTIONS(2196), - [aux_sym_cmd_identifier_token25] = ACTIONS(2196), - [aux_sym_cmd_identifier_token26] = ACTIONS(2196), - [aux_sym_cmd_identifier_token27] = ACTIONS(2196), - [aux_sym_cmd_identifier_token28] = ACTIONS(2196), - [aux_sym_cmd_identifier_token29] = ACTIONS(2196), - [aux_sym_cmd_identifier_token30] = ACTIONS(2196), - [aux_sym_cmd_identifier_token31] = ACTIONS(2196), - [aux_sym_cmd_identifier_token32] = ACTIONS(2196), - [aux_sym_cmd_identifier_token33] = ACTIONS(2196), - [aux_sym_cmd_identifier_token34] = ACTIONS(2196), - [aux_sym_cmd_identifier_token35] = ACTIONS(2196), - [aux_sym_cmd_identifier_token36] = ACTIONS(2196), - [anon_sym_true] = ACTIONS(2198), - [anon_sym_false] = ACTIONS(2198), - [anon_sym_null] = ACTIONS(2198), - [aux_sym_cmd_identifier_token38] = ACTIONS(2196), - [aux_sym_cmd_identifier_token39] = ACTIONS(2198), - [aux_sym_cmd_identifier_token40] = ACTIONS(2198), - [anon_sym_def] = ACTIONS(2196), - [anon_sym_export_DASHenv] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [anon_sym_error] = ACTIONS(2196), - [anon_sym_list] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_make] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_catch] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_source] = ACTIONS(2196), - [anon_sym_source_DASHenv] = ACTIONS(2196), - [anon_sym_register] = ACTIONS(2196), - [anon_sym_hide] = ACTIONS(2196), - [anon_sym_hide_DASHenv] = ACTIONS(2196), - [anon_sym_overlay] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2198), - [anon_sym_DOT_DOT2] = ACTIONS(2254), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2256), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2256), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2198), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2198), - [aux_sym__val_number_decimal_token4] = ACTIONS(2198), - [aux_sym__val_number_token1] = ACTIONS(2198), - [aux_sym__val_number_token2] = ACTIONS(2198), - [aux_sym__val_number_token3] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym__str_single_quotes] = ACTIONS(2198), - [sym__str_back_ticks] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2198), + [606] = { + [sym_comment] = STATE(606), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(1000), + [aux_sym_cmd_identifier_token3] = ACTIONS(1000), + [aux_sym_cmd_identifier_token4] = ACTIONS(1000), + [aux_sym_cmd_identifier_token5] = ACTIONS(1000), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [aux_sym_cmd_identifier_token7] = ACTIONS(1000), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(1000), + [aux_sym_cmd_identifier_token11] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(1000), + [aux_sym_cmd_identifier_token17] = ACTIONS(1000), + [aux_sym_cmd_identifier_token18] = ACTIONS(1000), + [aux_sym_cmd_identifier_token19] = ACTIONS(1000), + [aux_sym_cmd_identifier_token20] = ACTIONS(1000), + [aux_sym_cmd_identifier_token21] = ACTIONS(1000), + [aux_sym_cmd_identifier_token22] = ACTIONS(1000), + [aux_sym_cmd_identifier_token23] = ACTIONS(1000), + [aux_sym_cmd_identifier_token24] = ACTIONS(1000), + [aux_sym_cmd_identifier_token25] = ACTIONS(1000), + [aux_sym_cmd_identifier_token26] = ACTIONS(1000), + [aux_sym_cmd_identifier_token27] = ACTIONS(1000), + [aux_sym_cmd_identifier_token28] = ACTIONS(1000), + [aux_sym_cmd_identifier_token29] = ACTIONS(1000), + [aux_sym_cmd_identifier_token30] = ACTIONS(1000), + [aux_sym_cmd_identifier_token31] = ACTIONS(1000), + [aux_sym_cmd_identifier_token32] = ACTIONS(1000), + [aux_sym_cmd_identifier_token33] = ACTIONS(1000), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(1000), + [aux_sym_cmd_identifier_token36] = ACTIONS(1000), + [aux_sym_cmd_identifier_token37] = ACTIONS(1000), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(1000), + [aux_sym_cmd_identifier_token40] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_error] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1000), }, - [502] = { - [sym_comment] = STATE(502), - [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(1844), - [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), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2279), + [607] = { + [sym_comment] = STATE(607), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1004), + [aux_sym_cmd_identifier_token3] = ACTIONS(1004), + [aux_sym_cmd_identifier_token4] = ACTIONS(1004), + [aux_sym_cmd_identifier_token5] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1004), + [aux_sym_cmd_identifier_token7] = ACTIONS(1004), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1004), + [aux_sym_cmd_identifier_token11] = ACTIONS(1004), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1004), + [aux_sym_cmd_identifier_token17] = ACTIONS(1004), + [aux_sym_cmd_identifier_token18] = ACTIONS(1004), + [aux_sym_cmd_identifier_token19] = ACTIONS(1004), + [aux_sym_cmd_identifier_token20] = ACTIONS(1004), + [aux_sym_cmd_identifier_token21] = ACTIONS(1004), + [aux_sym_cmd_identifier_token22] = ACTIONS(1004), + [aux_sym_cmd_identifier_token23] = ACTIONS(1004), + [aux_sym_cmd_identifier_token24] = ACTIONS(1004), + [aux_sym_cmd_identifier_token25] = ACTIONS(1004), + [aux_sym_cmd_identifier_token26] = ACTIONS(1004), + [aux_sym_cmd_identifier_token27] = ACTIONS(1004), + [aux_sym_cmd_identifier_token28] = ACTIONS(1004), + [aux_sym_cmd_identifier_token29] = ACTIONS(1004), + [aux_sym_cmd_identifier_token30] = ACTIONS(1004), + [aux_sym_cmd_identifier_token31] = ACTIONS(1004), + [aux_sym_cmd_identifier_token32] = ACTIONS(1004), + [aux_sym_cmd_identifier_token33] = ACTIONS(1004), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1004), + [aux_sym_cmd_identifier_token36] = ACTIONS(1004), + [aux_sym_cmd_identifier_token37] = ACTIONS(1004), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1004), }, - [503] = { - [sym_comment] = STATE(503), - [aux_sym__multiple_types_repeat1] = STATE(516), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_alias] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_let_DASHenv] = ACTIONS(2341), - [anon_sym_mut] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [aux_sym_cmd_identifier_token2] = ACTIONS(2341), - [aux_sym_cmd_identifier_token3] = ACTIONS(2341), - [aux_sym_cmd_identifier_token4] = ACTIONS(2341), - [aux_sym_cmd_identifier_token5] = ACTIONS(2341), - [aux_sym_cmd_identifier_token6] = ACTIONS(2341), - [aux_sym_cmd_identifier_token7] = ACTIONS(2341), - [aux_sym_cmd_identifier_token8] = ACTIONS(2341), - [aux_sym_cmd_identifier_token9] = ACTIONS(2341), - [aux_sym_cmd_identifier_token10] = ACTIONS(2341), - [aux_sym_cmd_identifier_token11] = ACTIONS(2341), - [aux_sym_cmd_identifier_token12] = ACTIONS(2341), - [aux_sym_cmd_identifier_token13] = ACTIONS(2341), - [aux_sym_cmd_identifier_token14] = ACTIONS(2341), - [aux_sym_cmd_identifier_token15] = ACTIONS(2341), - [aux_sym_cmd_identifier_token16] = ACTIONS(2341), - [aux_sym_cmd_identifier_token17] = ACTIONS(2341), - [aux_sym_cmd_identifier_token18] = ACTIONS(2341), - [aux_sym_cmd_identifier_token19] = ACTIONS(2341), - [aux_sym_cmd_identifier_token20] = ACTIONS(2341), - [aux_sym_cmd_identifier_token21] = ACTIONS(2341), - [aux_sym_cmd_identifier_token22] = ACTIONS(2341), - [aux_sym_cmd_identifier_token23] = ACTIONS(2341), - [aux_sym_cmd_identifier_token24] = ACTIONS(2341), - [aux_sym_cmd_identifier_token25] = ACTIONS(2341), - [aux_sym_cmd_identifier_token26] = ACTIONS(2341), - [aux_sym_cmd_identifier_token27] = ACTIONS(2341), - [aux_sym_cmd_identifier_token28] = ACTIONS(2341), - [aux_sym_cmd_identifier_token29] = ACTIONS(2341), - [aux_sym_cmd_identifier_token30] = ACTIONS(2341), - [aux_sym_cmd_identifier_token31] = ACTIONS(2341), - [aux_sym_cmd_identifier_token32] = ACTIONS(2341), - [aux_sym_cmd_identifier_token33] = ACTIONS(2341), - [aux_sym_cmd_identifier_token34] = ACTIONS(2341), - [aux_sym_cmd_identifier_token35] = ACTIONS(2341), - [aux_sym_cmd_identifier_token36] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2341), - [aux_sym_cmd_identifier_token38] = ACTIONS(2341), - [aux_sym_cmd_identifier_token39] = ACTIONS(2341), - [aux_sym_cmd_identifier_token40] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2341), - [anon_sym_export_DASHenv] = ACTIONS(2341), - [anon_sym_extern] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_error] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_make] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_catch] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_source] = ACTIONS(2341), - [anon_sym_source_DASHenv] = ACTIONS(2341), - [anon_sym_register] = ACTIONS(2341), - [anon_sym_hide] = ACTIONS(2341), - [anon_sym_hide_DASHenv] = ACTIONS(2341), - [anon_sym_overlay] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), - [aux_sym__val_number_decimal_token1] = ACTIONS(2341), - [aux_sym__val_number_decimal_token2] = ACTIONS(2341), - [aux_sym__val_number_decimal_token3] = ACTIONS(2341), - [aux_sym__val_number_decimal_token4] = ACTIONS(2341), - [aux_sym__val_number_token1] = ACTIONS(2341), - [aux_sym__val_number_token2] = ACTIONS(2341), - [aux_sym__val_number_token3] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [sym__str_single_quotes] = ACTIONS(2341), - [sym__str_back_ticks] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), - [sym__entry_separator] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2341), + [608] = { + [sym_comment] = STATE(608), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_in2] = 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(2337), + [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_as] = ACTIONS(2337), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2337), + [aux_sym__val_number_token5] = ACTIONS(2337), + [aux_sym__val_number_token6] = ACTIONS(2337), + [anon_sym_LBRACK2] = ACTIONS(2339), + [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(2341), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2347), + [sym_raw_string_begin] = ACTIONS(2341), }, - [504] = { - [sym_comment] = STATE(504), - [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_QMARK2] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1058), - [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(249), - [sym_raw_string_begin] = ACTIONS(1060), + [609] = { + [sym_comment] = STATE(609), + [anon_sym_export] = ACTIONS(1878), + [anon_sym_alias] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_let_DASHenv] = ACTIONS(1878), + [anon_sym_mut] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [aux_sym_cmd_identifier_token1] = ACTIONS(1878), + [aux_sym_cmd_identifier_token2] = ACTIONS(1886), + [aux_sym_cmd_identifier_token3] = ACTIONS(1886), + [aux_sym_cmd_identifier_token4] = ACTIONS(1886), + [aux_sym_cmd_identifier_token5] = ACTIONS(1886), + [aux_sym_cmd_identifier_token6] = ACTIONS(1886), + [aux_sym_cmd_identifier_token7] = ACTIONS(1886), + [aux_sym_cmd_identifier_token8] = ACTIONS(1878), + [aux_sym_cmd_identifier_token9] = ACTIONS(1878), + [aux_sym_cmd_identifier_token10] = ACTIONS(1886), + [aux_sym_cmd_identifier_token11] = ACTIONS(1886), + [aux_sym_cmd_identifier_token12] = ACTIONS(1878), + [aux_sym_cmd_identifier_token13] = ACTIONS(1878), + [aux_sym_cmd_identifier_token14] = ACTIONS(1878), + [aux_sym_cmd_identifier_token15] = ACTIONS(1878), + [aux_sym_cmd_identifier_token16] = ACTIONS(1886), + [aux_sym_cmd_identifier_token17] = ACTIONS(1886), + [aux_sym_cmd_identifier_token18] = ACTIONS(1886), + [aux_sym_cmd_identifier_token19] = ACTIONS(1886), + [aux_sym_cmd_identifier_token20] = ACTIONS(1886), + [aux_sym_cmd_identifier_token21] = ACTIONS(1886), + [aux_sym_cmd_identifier_token22] = ACTIONS(1886), + [aux_sym_cmd_identifier_token23] = ACTIONS(1886), + [aux_sym_cmd_identifier_token24] = ACTIONS(1886), + [aux_sym_cmd_identifier_token25] = ACTIONS(1886), + [aux_sym_cmd_identifier_token26] = ACTIONS(1886), + [aux_sym_cmd_identifier_token27] = ACTIONS(1886), + [aux_sym_cmd_identifier_token28] = ACTIONS(1886), + [aux_sym_cmd_identifier_token29] = ACTIONS(1886), + [aux_sym_cmd_identifier_token30] = ACTIONS(1886), + [aux_sym_cmd_identifier_token31] = ACTIONS(1886), + [aux_sym_cmd_identifier_token32] = ACTIONS(1886), + [aux_sym_cmd_identifier_token33] = ACTIONS(1886), + [aux_sym_cmd_identifier_token34] = ACTIONS(1878), + [aux_sym_cmd_identifier_token35] = ACTIONS(1886), + [aux_sym_cmd_identifier_token36] = ACTIONS(1886), + [aux_sym_cmd_identifier_token37] = ACTIONS(1886), + [aux_sym_cmd_identifier_token38] = ACTIONS(1878), + [aux_sym_cmd_identifier_token39] = ACTIONS(1886), + [aux_sym_cmd_identifier_token40] = ACTIONS(1886), + [anon_sym_def] = ACTIONS(1878), + [anon_sym_export_DASHenv] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_module] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_error] = ACTIONS(1878), + [anon_sym_DASH2] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_in2] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_make] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_do] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1878), + [anon_sym_catch] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_source] = ACTIONS(1878), + [anon_sym_source_DASHenv] = ACTIONS(1878), + [anon_sym_register] = ACTIONS(1878), + [anon_sym_hide] = ACTIONS(1878), + [anon_sym_hide_DASHenv] = ACTIONS(1878), + [anon_sym_overlay] = ACTIONS(1878), + [anon_sym_as] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1878), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1886), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1886), + [aux_sym__val_number_decimal_token1] = ACTIONS(1878), + [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), + [aux_sym__val_number_token4] = ACTIONS(1878), + [aux_sym__val_number_token5] = ACTIONS(1878), + [aux_sym__val_number_token6] = ACTIONS(1878), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1886), }, - [505] = { - [sym_comment] = STATE(505), - [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(1064), - [anon_sym_false] = ACTIONS(1064), - [anon_sym_null] = ACTIONS(1064), - [aux_sym_cmd_identifier_token38] = ACTIONS(1062), - [aux_sym_cmd_identifier_token39] = ACTIONS(1064), - [aux_sym_cmd_identifier_token40] = ACTIONS(1064), - [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(1064), - [anon_sym_DOLLAR] = ACTIONS(1064), - [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(1064), - [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_QMARK2] = ACTIONS(1064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [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), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1064), + [610] = { + [sym_comment] = STATE(610), + [anon_sym_export] = ACTIONS(2106), + [anon_sym_alias] = ACTIONS(2106), + [anon_sym_let] = ACTIONS(2106), + [anon_sym_let_DASHenv] = ACTIONS(2106), + [anon_sym_mut] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [aux_sym_cmd_identifier_token1] = ACTIONS(2106), + [aux_sym_cmd_identifier_token2] = ACTIONS(2106), + [aux_sym_cmd_identifier_token3] = ACTIONS(2106), + [aux_sym_cmd_identifier_token4] = ACTIONS(2106), + [aux_sym_cmd_identifier_token5] = ACTIONS(2106), + [aux_sym_cmd_identifier_token6] = ACTIONS(2106), + [aux_sym_cmd_identifier_token7] = ACTIONS(2106), + [aux_sym_cmd_identifier_token8] = ACTIONS(2106), + [aux_sym_cmd_identifier_token9] = ACTIONS(2106), + [aux_sym_cmd_identifier_token10] = ACTIONS(2106), + [aux_sym_cmd_identifier_token11] = ACTIONS(2106), + [aux_sym_cmd_identifier_token12] = ACTIONS(2106), + [aux_sym_cmd_identifier_token13] = ACTIONS(2106), + [aux_sym_cmd_identifier_token14] = ACTIONS(2106), + [aux_sym_cmd_identifier_token15] = ACTIONS(2106), + [aux_sym_cmd_identifier_token16] = ACTIONS(2106), + [aux_sym_cmd_identifier_token17] = ACTIONS(2106), + [aux_sym_cmd_identifier_token18] = ACTIONS(2106), + [aux_sym_cmd_identifier_token19] = ACTIONS(2106), + [aux_sym_cmd_identifier_token20] = ACTIONS(2106), + [aux_sym_cmd_identifier_token21] = ACTIONS(2106), + [aux_sym_cmd_identifier_token22] = ACTIONS(2106), + [aux_sym_cmd_identifier_token23] = ACTIONS(2106), + [aux_sym_cmd_identifier_token24] = ACTIONS(2106), + [aux_sym_cmd_identifier_token25] = ACTIONS(2106), + [aux_sym_cmd_identifier_token26] = ACTIONS(2106), + [aux_sym_cmd_identifier_token27] = ACTIONS(2106), + [aux_sym_cmd_identifier_token28] = ACTIONS(2106), + [aux_sym_cmd_identifier_token29] = ACTIONS(2106), + [aux_sym_cmd_identifier_token30] = ACTIONS(2106), + [aux_sym_cmd_identifier_token31] = ACTIONS(2106), + [aux_sym_cmd_identifier_token32] = ACTIONS(2106), + [aux_sym_cmd_identifier_token33] = ACTIONS(2106), + [aux_sym_cmd_identifier_token34] = ACTIONS(2106), + [aux_sym_cmd_identifier_token35] = ACTIONS(2106), + [aux_sym_cmd_identifier_token36] = ACTIONS(2106), + [aux_sym_cmd_identifier_token37] = ACTIONS(2106), + [aux_sym_cmd_identifier_token38] = ACTIONS(2106), + [aux_sym_cmd_identifier_token39] = ACTIONS(2106), + [aux_sym_cmd_identifier_token40] = ACTIONS(2106), + [anon_sym_def] = ACTIONS(2106), + [anon_sym_export_DASHenv] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_module] = ACTIONS(2106), + [anon_sym_use] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2106), + [anon_sym_DOLLAR] = ACTIONS(2106), + [anon_sym_error] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in2] = ACTIONS(2106), + [anon_sym_loop] = ACTIONS(2106), + [anon_sym_make] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_do] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_else] = ACTIONS(2106), + [anon_sym_match] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_try] = ACTIONS(2106), + [anon_sym_catch] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_source] = ACTIONS(2106), + [anon_sym_source_DASHenv] = ACTIONS(2106), + [anon_sym_register] = ACTIONS(2106), + [anon_sym_hide] = ACTIONS(2106), + [anon_sym_hide_DASHenv] = ACTIONS(2106), + [anon_sym_overlay] = ACTIONS(2106), + [anon_sym_as] = ACTIONS(2106), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2106), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2106), + [aux_sym__val_number_decimal_token1] = ACTIONS(2106), + [aux_sym__val_number_decimal_token2] = ACTIONS(2106), + [aux_sym__val_number_decimal_token3] = ACTIONS(2106), + [aux_sym__val_number_decimal_token4] = ACTIONS(2106), + [aux_sym__val_number_token1] = ACTIONS(2106), + [aux_sym__val_number_token2] = ACTIONS(2106), + [aux_sym__val_number_token3] = ACTIONS(2106), + [aux_sym__val_number_token4] = ACTIONS(2106), + [aux_sym__val_number_token5] = ACTIONS(2106), + [aux_sym__val_number_token6] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym__str_single_quotes] = ACTIONS(2106), + [sym__str_back_ticks] = ACTIONS(2106), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2106), + [sym__entry_separator] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2108), }, - [506] = { - [sym_comment] = STATE(506), - [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(249), - [sym_raw_string_begin] = ACTIONS(1040), + [611] = { + [sym_comment] = STATE(611), + [anon_sym_export] = ACTIONS(2343), + [anon_sym_alias] = ACTIONS(2343), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_let_DASHenv] = ACTIONS(2343), + [anon_sym_mut] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2343), + [aux_sym_cmd_identifier_token1] = ACTIONS(2343), + [aux_sym_cmd_identifier_token2] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2343), + [aux_sym_cmd_identifier_token4] = ACTIONS(2343), + [aux_sym_cmd_identifier_token5] = ACTIONS(2343), + [aux_sym_cmd_identifier_token6] = ACTIONS(2343), + [aux_sym_cmd_identifier_token7] = ACTIONS(2343), + [aux_sym_cmd_identifier_token8] = ACTIONS(2343), + [aux_sym_cmd_identifier_token9] = ACTIONS(2343), + [aux_sym_cmd_identifier_token10] = ACTIONS(2343), + [aux_sym_cmd_identifier_token11] = ACTIONS(2343), + [aux_sym_cmd_identifier_token12] = ACTIONS(2343), + [aux_sym_cmd_identifier_token13] = ACTIONS(2343), + [aux_sym_cmd_identifier_token14] = ACTIONS(2343), + [aux_sym_cmd_identifier_token15] = ACTIONS(2343), + [aux_sym_cmd_identifier_token16] = ACTIONS(2343), + [aux_sym_cmd_identifier_token17] = ACTIONS(2343), + [aux_sym_cmd_identifier_token18] = ACTIONS(2343), + [aux_sym_cmd_identifier_token19] = ACTIONS(2343), + [aux_sym_cmd_identifier_token20] = ACTIONS(2343), + [aux_sym_cmd_identifier_token21] = ACTIONS(2343), + [aux_sym_cmd_identifier_token22] = ACTIONS(2343), + [aux_sym_cmd_identifier_token23] = ACTIONS(2343), + [aux_sym_cmd_identifier_token24] = ACTIONS(2343), + [aux_sym_cmd_identifier_token25] = ACTIONS(2343), + [aux_sym_cmd_identifier_token26] = ACTIONS(2343), + [aux_sym_cmd_identifier_token27] = ACTIONS(2343), + [aux_sym_cmd_identifier_token28] = ACTIONS(2343), + [aux_sym_cmd_identifier_token29] = ACTIONS(2343), + [aux_sym_cmd_identifier_token30] = ACTIONS(2343), + [aux_sym_cmd_identifier_token31] = ACTIONS(2343), + [aux_sym_cmd_identifier_token32] = ACTIONS(2343), + [aux_sym_cmd_identifier_token33] = ACTIONS(2343), + [aux_sym_cmd_identifier_token34] = ACTIONS(2343), + [aux_sym_cmd_identifier_token35] = ACTIONS(2343), + [aux_sym_cmd_identifier_token36] = ACTIONS(2343), + [aux_sym_cmd_identifier_token37] = ACTIONS(2343), + [aux_sym_cmd_identifier_token38] = ACTIONS(2343), + [aux_sym_cmd_identifier_token39] = ACTIONS(2343), + [aux_sym_cmd_identifier_token40] = ACTIONS(2343), + [anon_sym_def] = ACTIONS(2343), + [anon_sym_export_DASHenv] = ACTIONS(2343), + [anon_sym_extern] = ACTIONS(2343), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_use] = ACTIONS(2343), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2343), + [anon_sym_error] = ACTIONS(2343), + [anon_sym_DASH2] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_for] = ACTIONS(2343), + [anon_sym_in2] = ACTIONS(2343), + [anon_sym_loop] = ACTIONS(2343), + [anon_sym_make] = ACTIONS(2343), + [anon_sym_while] = ACTIONS(2343), + [anon_sym_do] = ACTIONS(2343), + [anon_sym_if] = ACTIONS(2343), + [anon_sym_else] = ACTIONS(2343), + [anon_sym_match] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_try] = ACTIONS(2343), + [anon_sym_catch] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2343), + [anon_sym_source] = ACTIONS(2343), + [anon_sym_source_DASHenv] = ACTIONS(2343), + [anon_sym_register] = ACTIONS(2343), + [anon_sym_hide] = ACTIONS(2343), + [anon_sym_hide_DASHenv] = ACTIONS(2343), + [anon_sym_overlay] = ACTIONS(2343), + [anon_sym_as] = ACTIONS(2343), + [anon_sym_PLUS2] = ACTIONS(2343), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2343), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2343), + [aux_sym__val_number_decimal_token1] = ACTIONS(2343), + [aux_sym__val_number_decimal_token2] = ACTIONS(2343), + [aux_sym__val_number_decimal_token3] = ACTIONS(2343), + [aux_sym__val_number_decimal_token4] = ACTIONS(2343), + [aux_sym__val_number_token1] = ACTIONS(2343), + [aux_sym__val_number_token2] = ACTIONS(2343), + [aux_sym__val_number_token3] = ACTIONS(2343), + [aux_sym__val_number_token4] = ACTIONS(2343), + [aux_sym__val_number_token5] = ACTIONS(2343), + [aux_sym__val_number_token6] = ACTIONS(2343), + [anon_sym_DQUOTE] = ACTIONS(2343), + [sym__str_single_quotes] = ACTIONS(2343), + [sym__str_back_ticks] = ACTIONS(2343), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2343), + [sym__entry_separator] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2345), }, - [507] = { - [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(2289), - [anon_sym_alias] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_let_DASHenv] = ACTIONS(2289), - [anon_sym_mut] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [aux_sym_cmd_identifier_token1] = ACTIONS(2289), - [aux_sym_cmd_identifier_token2] = ACTIONS(2289), - [aux_sym_cmd_identifier_token3] = ACTIONS(2289), - [aux_sym_cmd_identifier_token4] = ACTIONS(2289), - [aux_sym_cmd_identifier_token5] = ACTIONS(2289), - [aux_sym_cmd_identifier_token6] = ACTIONS(2289), - [aux_sym_cmd_identifier_token7] = ACTIONS(2289), - [aux_sym_cmd_identifier_token8] = ACTIONS(2289), - [aux_sym_cmd_identifier_token9] = ACTIONS(2289), - [aux_sym_cmd_identifier_token10] = ACTIONS(2289), - [aux_sym_cmd_identifier_token11] = ACTIONS(2289), - [aux_sym_cmd_identifier_token12] = ACTIONS(2289), - [aux_sym_cmd_identifier_token13] = ACTIONS(2289), - [aux_sym_cmd_identifier_token14] = ACTIONS(2289), - [aux_sym_cmd_identifier_token15] = ACTIONS(2289), - [aux_sym_cmd_identifier_token16] = ACTIONS(2289), - [aux_sym_cmd_identifier_token17] = ACTIONS(2289), - [aux_sym_cmd_identifier_token18] = ACTIONS(2289), - [aux_sym_cmd_identifier_token19] = ACTIONS(2289), - [aux_sym_cmd_identifier_token20] = ACTIONS(2289), - [aux_sym_cmd_identifier_token21] = ACTIONS(2289), - [aux_sym_cmd_identifier_token22] = ACTIONS(2289), - [aux_sym_cmd_identifier_token23] = ACTIONS(2289), - [aux_sym_cmd_identifier_token24] = ACTIONS(2289), - [aux_sym_cmd_identifier_token25] = ACTIONS(2289), - [aux_sym_cmd_identifier_token26] = ACTIONS(2289), - [aux_sym_cmd_identifier_token27] = ACTIONS(2289), - [aux_sym_cmd_identifier_token28] = ACTIONS(2289), - [aux_sym_cmd_identifier_token29] = ACTIONS(2289), - [aux_sym_cmd_identifier_token30] = ACTIONS(2289), - [aux_sym_cmd_identifier_token31] = ACTIONS(2289), - [aux_sym_cmd_identifier_token32] = ACTIONS(2289), - [aux_sym_cmd_identifier_token33] = ACTIONS(2289), - [aux_sym_cmd_identifier_token34] = ACTIONS(2289), - [aux_sym_cmd_identifier_token35] = ACTIONS(2289), - [aux_sym_cmd_identifier_token36] = ACTIONS(2289), - [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), - [anon_sym_def] = ACTIONS(2289), - [anon_sym_export_DASHenv] = ACTIONS(2289), - [anon_sym_extern] = ACTIONS(2289), - [anon_sym_module] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_DOLLAR] = ACTIONS(2289), - [anon_sym_error] = ACTIONS(2289), - [anon_sym_list] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_loop] = ACTIONS(2289), - [anon_sym_make] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_do] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_catch] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_source] = ACTIONS(2289), - [anon_sym_source_DASHenv] = ACTIONS(2289), - [anon_sym_register] = ACTIONS(2289), - [anon_sym_hide] = ACTIONS(2289), - [anon_sym_hide_DASHenv] = ACTIONS(2289), - [anon_sym_overlay] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2289), - [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(2291), - [sym__str_single_quotes] = ACTIONS(2291), - [sym__str_back_ticks] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2291), - [anon_sym_PLUS] = ACTIONS(2289), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2289), + [612] = { + [sym_comment] = STATE(612), + [anon_sym_export] = ACTIONS(2347), + [anon_sym_alias] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_let_DASHenv] = ACTIONS(2347), + [anon_sym_mut] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [aux_sym_cmd_identifier_token1] = ACTIONS(2347), + [aux_sym_cmd_identifier_token2] = ACTIONS(2347), + [aux_sym_cmd_identifier_token3] = ACTIONS(2347), + [aux_sym_cmd_identifier_token4] = ACTIONS(2347), + [aux_sym_cmd_identifier_token5] = ACTIONS(2347), + [aux_sym_cmd_identifier_token6] = ACTIONS(2347), + [aux_sym_cmd_identifier_token7] = ACTIONS(2347), + [aux_sym_cmd_identifier_token8] = ACTIONS(2347), + [aux_sym_cmd_identifier_token9] = ACTIONS(2347), + [aux_sym_cmd_identifier_token10] = ACTIONS(2347), + [aux_sym_cmd_identifier_token11] = ACTIONS(2347), + [aux_sym_cmd_identifier_token12] = ACTIONS(2347), + [aux_sym_cmd_identifier_token13] = ACTIONS(2347), + [aux_sym_cmd_identifier_token14] = ACTIONS(2347), + [aux_sym_cmd_identifier_token15] = ACTIONS(2347), + [aux_sym_cmd_identifier_token16] = ACTIONS(2347), + [aux_sym_cmd_identifier_token17] = ACTIONS(2347), + [aux_sym_cmd_identifier_token18] = ACTIONS(2347), + [aux_sym_cmd_identifier_token19] = ACTIONS(2347), + [aux_sym_cmd_identifier_token20] = ACTIONS(2347), + [aux_sym_cmd_identifier_token21] = ACTIONS(2347), + [aux_sym_cmd_identifier_token22] = ACTIONS(2347), + [aux_sym_cmd_identifier_token23] = ACTIONS(2347), + [aux_sym_cmd_identifier_token24] = ACTIONS(2347), + [aux_sym_cmd_identifier_token25] = ACTIONS(2347), + [aux_sym_cmd_identifier_token26] = ACTIONS(2347), + [aux_sym_cmd_identifier_token27] = ACTIONS(2347), + [aux_sym_cmd_identifier_token28] = ACTIONS(2347), + [aux_sym_cmd_identifier_token29] = ACTIONS(2347), + [aux_sym_cmd_identifier_token30] = ACTIONS(2347), + [aux_sym_cmd_identifier_token31] = ACTIONS(2347), + [aux_sym_cmd_identifier_token32] = ACTIONS(2347), + [aux_sym_cmd_identifier_token33] = ACTIONS(2347), + [aux_sym_cmd_identifier_token34] = ACTIONS(2347), + [aux_sym_cmd_identifier_token35] = ACTIONS(2347), + [aux_sym_cmd_identifier_token36] = ACTIONS(2347), + [aux_sym_cmd_identifier_token37] = ACTIONS(2347), + [aux_sym_cmd_identifier_token38] = ACTIONS(2347), + [aux_sym_cmd_identifier_token39] = ACTIONS(2347), + [aux_sym_cmd_identifier_token40] = ACTIONS(2347), + [anon_sym_def] = ACTIONS(2347), + [anon_sym_export_DASHenv] = ACTIONS(2347), + [anon_sym_extern] = ACTIONS(2347), + [anon_sym_module] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_DOLLAR] = ACTIONS(2347), + [anon_sym_error] = ACTIONS(2347), + [anon_sym_DASH2] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_in2] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_make] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [anon_sym_do] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_else] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_try] = ACTIONS(2347), + [anon_sym_catch] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_source] = ACTIONS(2347), + [anon_sym_source_DASHenv] = ACTIONS(2347), + [anon_sym_register] = ACTIONS(2347), + [anon_sym_hide] = ACTIONS(2347), + [anon_sym_hide_DASHenv] = ACTIONS(2347), + [anon_sym_overlay] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_PLUS2] = ACTIONS(2347), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2347), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2347), + [aux_sym__val_number_decimal_token1] = ACTIONS(2347), + [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), + [aux_sym__val_number_token4] = ACTIONS(2347), + [aux_sym__val_number_token5] = ACTIONS(2347), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(2349), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2291), + [sym_raw_string_begin] = ACTIONS(2349), }, - [508] = { - [sym_comment] = STATE(508), - [aux_sym__multiple_types_repeat1] = STATE(515), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_alias] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_let_DASHenv] = ACTIONS(2349), - [anon_sym_mut] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [aux_sym_cmd_identifier_token1] = ACTIONS(2349), - [aux_sym_cmd_identifier_token2] = ACTIONS(2349), - [aux_sym_cmd_identifier_token3] = ACTIONS(2349), - [aux_sym_cmd_identifier_token4] = ACTIONS(2349), - [aux_sym_cmd_identifier_token5] = ACTIONS(2349), - [aux_sym_cmd_identifier_token6] = ACTIONS(2349), - [aux_sym_cmd_identifier_token7] = ACTIONS(2349), - [aux_sym_cmd_identifier_token8] = ACTIONS(2349), - [aux_sym_cmd_identifier_token9] = ACTIONS(2349), - [aux_sym_cmd_identifier_token10] = ACTIONS(2349), - [aux_sym_cmd_identifier_token11] = ACTIONS(2349), - [aux_sym_cmd_identifier_token12] = ACTIONS(2349), - [aux_sym_cmd_identifier_token13] = ACTIONS(2349), - [aux_sym_cmd_identifier_token14] = ACTIONS(2349), - [aux_sym_cmd_identifier_token15] = ACTIONS(2349), - [aux_sym_cmd_identifier_token16] = ACTIONS(2349), - [aux_sym_cmd_identifier_token17] = ACTIONS(2349), - [aux_sym_cmd_identifier_token18] = ACTIONS(2349), - [aux_sym_cmd_identifier_token19] = ACTIONS(2349), - [aux_sym_cmd_identifier_token20] = ACTIONS(2349), - [aux_sym_cmd_identifier_token21] = ACTIONS(2349), - [aux_sym_cmd_identifier_token22] = ACTIONS(2349), - [aux_sym_cmd_identifier_token23] = ACTIONS(2349), - [aux_sym_cmd_identifier_token24] = ACTIONS(2349), - [aux_sym_cmd_identifier_token25] = ACTIONS(2349), - [aux_sym_cmd_identifier_token26] = ACTIONS(2349), - [aux_sym_cmd_identifier_token27] = ACTIONS(2349), - [aux_sym_cmd_identifier_token28] = ACTIONS(2349), - [aux_sym_cmd_identifier_token29] = ACTIONS(2349), - [aux_sym_cmd_identifier_token30] = ACTIONS(2349), - [aux_sym_cmd_identifier_token31] = ACTIONS(2349), - [aux_sym_cmd_identifier_token32] = ACTIONS(2349), - [aux_sym_cmd_identifier_token33] = ACTIONS(2349), - [aux_sym_cmd_identifier_token34] = ACTIONS(2349), - [aux_sym_cmd_identifier_token35] = ACTIONS(2349), - [aux_sym_cmd_identifier_token36] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [anon_sym_null] = ACTIONS(2349), - [aux_sym_cmd_identifier_token38] = ACTIONS(2349), - [aux_sym_cmd_identifier_token39] = ACTIONS(2349), - [aux_sym_cmd_identifier_token40] = ACTIONS(2349), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_export_DASHenv] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_error] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_in] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_make] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), + [613] = { + [sym_comment] = STATE(613), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_alias] = ACTIONS(2351), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_let_DASHenv] = ACTIONS(2351), + [anon_sym_mut] = ACTIONS(2351), + [anon_sym_const] = ACTIONS(2351), + [aux_sym_cmd_identifier_token1] = ACTIONS(2351), + [aux_sym_cmd_identifier_token2] = ACTIONS(2351), + [aux_sym_cmd_identifier_token3] = ACTIONS(2351), + [aux_sym_cmd_identifier_token4] = ACTIONS(2351), + [aux_sym_cmd_identifier_token5] = ACTIONS(2351), + [aux_sym_cmd_identifier_token6] = ACTIONS(2351), + [aux_sym_cmd_identifier_token7] = ACTIONS(2351), + [aux_sym_cmd_identifier_token8] = ACTIONS(2351), + [aux_sym_cmd_identifier_token9] = ACTIONS(2351), + [aux_sym_cmd_identifier_token10] = ACTIONS(2351), + [aux_sym_cmd_identifier_token11] = ACTIONS(2351), + [aux_sym_cmd_identifier_token12] = ACTIONS(2351), + [aux_sym_cmd_identifier_token13] = ACTIONS(2351), + [aux_sym_cmd_identifier_token14] = ACTIONS(2351), + [aux_sym_cmd_identifier_token15] = ACTIONS(2351), + [aux_sym_cmd_identifier_token16] = ACTIONS(2351), + [aux_sym_cmd_identifier_token17] = ACTIONS(2351), + [aux_sym_cmd_identifier_token18] = ACTIONS(2351), + [aux_sym_cmd_identifier_token19] = ACTIONS(2351), + [aux_sym_cmd_identifier_token20] = ACTIONS(2351), + [aux_sym_cmd_identifier_token21] = ACTIONS(2351), + [aux_sym_cmd_identifier_token22] = ACTIONS(2351), + [aux_sym_cmd_identifier_token23] = ACTIONS(2351), + [aux_sym_cmd_identifier_token24] = ACTIONS(2351), + [aux_sym_cmd_identifier_token25] = ACTIONS(2351), + [aux_sym_cmd_identifier_token26] = ACTIONS(2351), + [aux_sym_cmd_identifier_token27] = ACTIONS(2351), + [aux_sym_cmd_identifier_token28] = ACTIONS(2351), + [aux_sym_cmd_identifier_token29] = ACTIONS(2351), + [aux_sym_cmd_identifier_token30] = ACTIONS(2351), + [aux_sym_cmd_identifier_token31] = ACTIONS(2351), + [aux_sym_cmd_identifier_token32] = ACTIONS(2351), + [aux_sym_cmd_identifier_token33] = ACTIONS(2351), + [aux_sym_cmd_identifier_token34] = ACTIONS(2351), + [aux_sym_cmd_identifier_token35] = ACTIONS(2351), + [aux_sym_cmd_identifier_token36] = ACTIONS(2351), + [aux_sym_cmd_identifier_token37] = ACTIONS(2351), + [aux_sym_cmd_identifier_token38] = ACTIONS(2351), + [aux_sym_cmd_identifier_token39] = ACTIONS(2351), + [aux_sym_cmd_identifier_token40] = ACTIONS(2351), + [anon_sym_def] = ACTIONS(2351), + [anon_sym_export_DASHenv] = ACTIONS(2351), + [anon_sym_extern] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_use] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_DOLLAR] = ACTIONS(2351), + [anon_sym_error] = ACTIONS(2351), + [anon_sym_DASH2] = ACTIONS(2351), + [anon_sym_break] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_in2] = ACTIONS(2351), + [anon_sym_loop] = ACTIONS(2351), + [anon_sym_make] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_do] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_else] = ACTIONS(2351), + [anon_sym_match] = ACTIONS(2351), [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_catch] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_source] = ACTIONS(2349), - [anon_sym_source_DASHenv] = ACTIONS(2349), - [anon_sym_register] = ACTIONS(2349), - [anon_sym_hide] = ACTIONS(2349), - [anon_sym_hide_DASHenv] = ACTIONS(2349), - [anon_sym_overlay] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_as] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2349), - [aux_sym__val_number_decimal_token4] = ACTIONS(2349), - [aux_sym__val_number_token1] = ACTIONS(2349), - [aux_sym__val_number_token2] = ACTIONS(2349), - [aux_sym__val_number_token3] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym__str_single_quotes] = ACTIONS(2349), - [sym__str_back_ticks] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2349), - [sym__entry_separator] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2351), + [anon_sym_catch] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_source] = ACTIONS(2351), + [anon_sym_source_DASHenv] = ACTIONS(2351), + [anon_sym_register] = ACTIONS(2351), + [anon_sym_hide] = ACTIONS(2351), + [anon_sym_hide_DASHenv] = ACTIONS(2351), + [anon_sym_overlay] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_PLUS2] = ACTIONS(2351), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2351), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2351), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2351), + [aux_sym__val_number_decimal_token3] = ACTIONS(2351), + [aux_sym__val_number_decimal_token4] = ACTIONS(2351), + [aux_sym__val_number_token1] = ACTIONS(2351), + [aux_sym__val_number_token2] = ACTIONS(2351), + [aux_sym__val_number_token3] = ACTIONS(2351), + [aux_sym__val_number_token4] = ACTIONS(2351), + [aux_sym__val_number_token5] = ACTIONS(2351), + [aux_sym__val_number_token6] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(2351), + [sym__str_single_quotes] = ACTIONS(2351), + [sym__str_back_ticks] = ACTIONS(2351), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2351), + [sym__entry_separator] = ACTIONS(2353), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2353), }, - [509] = { - [sym_comment] = STATE(509), - [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_QMARK2] = ACTIONS(1056), - [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(249), - [sym_raw_string_begin] = ACTIONS(1056), - }, - [510] = { - [sym_comment] = STATE(510), - [anon_sym_export] = ACTIONS(2281), - [anon_sym_alias] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_let_DASHenv] = ACTIONS(2281), - [anon_sym_mut] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [aux_sym_cmd_identifier_token1] = ACTIONS(2281), - [aux_sym_cmd_identifier_token2] = ACTIONS(2281), - [aux_sym_cmd_identifier_token3] = ACTIONS(2281), - [aux_sym_cmd_identifier_token4] = ACTIONS(2281), - [aux_sym_cmd_identifier_token5] = ACTIONS(2281), - [aux_sym_cmd_identifier_token6] = ACTIONS(2281), - [aux_sym_cmd_identifier_token7] = ACTIONS(2281), - [aux_sym_cmd_identifier_token8] = ACTIONS(2281), - [aux_sym_cmd_identifier_token9] = ACTIONS(2281), - [aux_sym_cmd_identifier_token10] = ACTIONS(2281), - [aux_sym_cmd_identifier_token11] = ACTIONS(2281), - [aux_sym_cmd_identifier_token12] = ACTIONS(2281), - [aux_sym_cmd_identifier_token13] = ACTIONS(2281), - [aux_sym_cmd_identifier_token14] = ACTIONS(2281), - [aux_sym_cmd_identifier_token15] = ACTIONS(2281), - [aux_sym_cmd_identifier_token16] = ACTIONS(2281), - [aux_sym_cmd_identifier_token17] = ACTIONS(2281), - [aux_sym_cmd_identifier_token18] = ACTIONS(2281), - [aux_sym_cmd_identifier_token19] = ACTIONS(2281), - [aux_sym_cmd_identifier_token20] = ACTIONS(2281), - [aux_sym_cmd_identifier_token21] = ACTIONS(2281), - [aux_sym_cmd_identifier_token22] = ACTIONS(2281), - [aux_sym_cmd_identifier_token23] = ACTIONS(2281), - [aux_sym_cmd_identifier_token24] = ACTIONS(2281), - [aux_sym_cmd_identifier_token25] = ACTIONS(2281), - [aux_sym_cmd_identifier_token26] = ACTIONS(2281), - [aux_sym_cmd_identifier_token27] = ACTIONS(2281), - [aux_sym_cmd_identifier_token28] = ACTIONS(2281), - [aux_sym_cmd_identifier_token29] = ACTIONS(2281), - [aux_sym_cmd_identifier_token30] = ACTIONS(2281), - [aux_sym_cmd_identifier_token31] = ACTIONS(2281), - [aux_sym_cmd_identifier_token32] = ACTIONS(2281), - [aux_sym_cmd_identifier_token33] = ACTIONS(2281), - [aux_sym_cmd_identifier_token34] = ACTIONS(2281), - [aux_sym_cmd_identifier_token35] = ACTIONS(2281), - [aux_sym_cmd_identifier_token36] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_null] = ACTIONS(2281), - [aux_sym_cmd_identifier_token38] = ACTIONS(2281), - [aux_sym_cmd_identifier_token39] = ACTIONS(2281), - [aux_sym_cmd_identifier_token40] = ACTIONS(2281), - [anon_sym_def] = ACTIONS(2281), - [anon_sym_export_DASHenv] = ACTIONS(2281), - [anon_sym_extern] = ACTIONS(2281), - [anon_sym_module] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_error] = ACTIONS(2281), - [anon_sym_list] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_in] = ACTIONS(2281), - [anon_sym_loop] = ACTIONS(2281), - [anon_sym_make] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_catch] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_source] = ACTIONS(2281), - [anon_sym_source_DASHenv] = ACTIONS(2281), - [anon_sym_register] = ACTIONS(2281), - [anon_sym_hide] = ACTIONS(2281), - [anon_sym_hide_DASHenv] = ACTIONS(2281), - [anon_sym_overlay] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2283), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2285), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), - [aux_sym__val_number_decimal_token1] = ACTIONS(2281), - [aux_sym__val_number_decimal_token2] = ACTIONS(2281), - [aux_sym__val_number_decimal_token3] = ACTIONS(2281), - [aux_sym__val_number_decimal_token4] = ACTIONS(2281), - [aux_sym__val_number_token1] = ACTIONS(2281), - [aux_sym__val_number_token2] = ACTIONS(2281), - [aux_sym__val_number_token3] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2285), - [sym__str_single_quotes] = ACTIONS(2285), - [sym__str_back_ticks] = ACTIONS(2285), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2281), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2287), + [614] = { + [sym_comment] = STATE(614), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_in2] = 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_as] = ACTIONS(1913), + [anon_sym_PLUS2] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1913), + [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), + [aux_sym__val_number_token4] = ACTIONS(1913), + [aux_sym__val_number_token5] = ACTIONS(1913), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2285), + [sym_raw_string_begin] = ACTIONS(1915), }, - [511] = { - [sym_comment] = STATE(511), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_alias] = ACTIONS(1078), - [anon_sym_let] = ACTIONS(1078), - [anon_sym_let_DASHenv] = ACTIONS(1078), - [anon_sym_mut] = ACTIONS(1078), - [anon_sym_const] = ACTIONS(1078), - [aux_sym_cmd_identifier_token1] = ACTIONS(1078), - [aux_sym_cmd_identifier_token2] = ACTIONS(1078), - [aux_sym_cmd_identifier_token3] = ACTIONS(1078), - [aux_sym_cmd_identifier_token4] = ACTIONS(1078), - [aux_sym_cmd_identifier_token5] = ACTIONS(1078), - [aux_sym_cmd_identifier_token6] = ACTIONS(1078), - [aux_sym_cmd_identifier_token7] = ACTIONS(1078), - [aux_sym_cmd_identifier_token8] = ACTIONS(1078), - [aux_sym_cmd_identifier_token9] = ACTIONS(1078), - [aux_sym_cmd_identifier_token10] = ACTIONS(1078), - [aux_sym_cmd_identifier_token11] = ACTIONS(1078), - [aux_sym_cmd_identifier_token12] = ACTIONS(1078), - [aux_sym_cmd_identifier_token13] = ACTIONS(1078), - [aux_sym_cmd_identifier_token14] = ACTIONS(1078), - [aux_sym_cmd_identifier_token15] = ACTIONS(1078), - [aux_sym_cmd_identifier_token16] = ACTIONS(1078), - [aux_sym_cmd_identifier_token17] = ACTIONS(1078), - [aux_sym_cmd_identifier_token18] = ACTIONS(1078), - [aux_sym_cmd_identifier_token19] = ACTIONS(1078), - [aux_sym_cmd_identifier_token20] = ACTIONS(1078), - [aux_sym_cmd_identifier_token21] = ACTIONS(1078), - [aux_sym_cmd_identifier_token22] = ACTIONS(1078), - [aux_sym_cmd_identifier_token23] = ACTIONS(1078), - [aux_sym_cmd_identifier_token24] = ACTIONS(1078), - [aux_sym_cmd_identifier_token25] = ACTIONS(1078), - [aux_sym_cmd_identifier_token26] = ACTIONS(1078), - [aux_sym_cmd_identifier_token27] = ACTIONS(1078), - [aux_sym_cmd_identifier_token28] = ACTIONS(1078), - [aux_sym_cmd_identifier_token29] = ACTIONS(1078), - [aux_sym_cmd_identifier_token30] = ACTIONS(1078), - [aux_sym_cmd_identifier_token31] = ACTIONS(1078), - [aux_sym_cmd_identifier_token32] = ACTIONS(1078), - [aux_sym_cmd_identifier_token33] = ACTIONS(1078), - [aux_sym_cmd_identifier_token34] = ACTIONS(1078), - [aux_sym_cmd_identifier_token35] = ACTIONS(1078), - [aux_sym_cmd_identifier_token36] = ACTIONS(1078), - [anon_sym_true] = ACTIONS(1080), - [anon_sym_false] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(1080), - [aux_sym_cmd_identifier_token38] = ACTIONS(1078), - [aux_sym_cmd_identifier_token39] = ACTIONS(1080), - [aux_sym_cmd_identifier_token40] = ACTIONS(1080), - [anon_sym_def] = ACTIONS(1078), - [anon_sym_export_DASHenv] = ACTIONS(1078), - [anon_sym_extern] = ACTIONS(1078), - [anon_sym_module] = ACTIONS(1078), - [anon_sym_use] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1080), - [anon_sym_COMMA] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_error] = ACTIONS(1078), - [anon_sym_list] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_in] = ACTIONS(1078), - [anon_sym_loop] = ACTIONS(1078), - [anon_sym_make] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_else] = ACTIONS(1078), - [anon_sym_match] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_try] = ACTIONS(1078), - [anon_sym_catch] = ACTIONS(1078), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_source] = ACTIONS(1078), - [anon_sym_source_DASHenv] = ACTIONS(1078), - [anon_sym_register] = ACTIONS(1078), - [anon_sym_hide] = ACTIONS(1078), - [anon_sym_hide_DASHenv] = ACTIONS(1078), - [anon_sym_overlay] = ACTIONS(1078), - [anon_sym_new] = ACTIONS(1078), - [anon_sym_as] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1080), - [aux_sym__val_number_decimal_token1] = ACTIONS(1078), - [aux_sym__val_number_decimal_token2] = ACTIONS(1080), - [aux_sym__val_number_decimal_token3] = ACTIONS(1080), - [aux_sym__val_number_decimal_token4] = ACTIONS(1080), - [aux_sym__val_number_token1] = ACTIONS(1080), - [aux_sym__val_number_token2] = ACTIONS(1080), - [aux_sym__val_number_token3] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym__str_single_quotes] = ACTIONS(1080), - [sym__str_back_ticks] = ACTIONS(1080), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1080), - [aux_sym_record_entry_token1] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1080), + [615] = { + [sym_comment] = STATE(615), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [aux_sym_cmd_identifier_token1] = ACTIONS(1014), + [aux_sym_cmd_identifier_token2] = ACTIONS(1016), + [aux_sym_cmd_identifier_token3] = ACTIONS(1016), + [aux_sym_cmd_identifier_token4] = ACTIONS(1016), + [aux_sym_cmd_identifier_token5] = ACTIONS(1016), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [aux_sym_cmd_identifier_token7] = ACTIONS(1016), + [aux_sym_cmd_identifier_token8] = ACTIONS(1014), + [aux_sym_cmd_identifier_token9] = ACTIONS(1014), + [aux_sym_cmd_identifier_token10] = ACTIONS(1016), + [aux_sym_cmd_identifier_token11] = ACTIONS(1016), + [aux_sym_cmd_identifier_token12] = ACTIONS(1014), + [aux_sym_cmd_identifier_token13] = ACTIONS(1014), + [aux_sym_cmd_identifier_token14] = ACTIONS(1014), + [aux_sym_cmd_identifier_token15] = ACTIONS(1014), + [aux_sym_cmd_identifier_token16] = ACTIONS(1016), + [aux_sym_cmd_identifier_token17] = ACTIONS(1016), + [aux_sym_cmd_identifier_token18] = ACTIONS(1016), + [aux_sym_cmd_identifier_token19] = ACTIONS(1016), + [aux_sym_cmd_identifier_token20] = ACTIONS(1016), + [aux_sym_cmd_identifier_token21] = ACTIONS(1016), + [aux_sym_cmd_identifier_token22] = ACTIONS(1016), + [aux_sym_cmd_identifier_token23] = ACTIONS(1016), + [aux_sym_cmd_identifier_token24] = ACTIONS(1016), + [aux_sym_cmd_identifier_token25] = ACTIONS(1016), + [aux_sym_cmd_identifier_token26] = ACTIONS(1016), + [aux_sym_cmd_identifier_token27] = ACTIONS(1016), + [aux_sym_cmd_identifier_token28] = ACTIONS(1016), + [aux_sym_cmd_identifier_token29] = ACTIONS(1016), + [aux_sym_cmd_identifier_token30] = ACTIONS(1016), + [aux_sym_cmd_identifier_token31] = ACTIONS(1016), + [aux_sym_cmd_identifier_token32] = ACTIONS(1016), + [aux_sym_cmd_identifier_token33] = ACTIONS(1016), + [aux_sym_cmd_identifier_token34] = ACTIONS(1014), + [aux_sym_cmd_identifier_token35] = ACTIONS(1016), + [aux_sym_cmd_identifier_token36] = ACTIONS(1016), + [aux_sym_cmd_identifier_token37] = ACTIONS(1016), + [aux_sym_cmd_identifier_token38] = ACTIONS(1014), + [aux_sym_cmd_identifier_token39] = ACTIONS(1016), + [aux_sym_cmd_identifier_token40] = ACTIONS(1016), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_make] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_catch] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_as] = ACTIONS(1014), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1016), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(1016), + [aux_sym__val_number_token2] = ACTIONS(1016), + [aux_sym__val_number_token3] = ACTIONS(1016), + [aux_sym__val_number_token4] = ACTIONS(1014), + [aux_sym__val_number_token5] = ACTIONS(1014), + [aux_sym__val_number_token6] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1016), + [sym__str_single_quotes] = ACTIONS(1016), + [sym__str_back_ticks] = ACTIONS(1016), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1016), }, - [512] = { - [sym_comment] = STATE(512), + [616] = { + [sym_comment] = STATE(616), [anon_sym_export] = ACTIONS(2355), [anon_sym_alias] = ACTIONS(2355), [anon_sym_let] = ACTIONS(2355), @@ -134369,9 +141539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_token37] = ACTIONS(2355), [aux_sym_cmd_identifier_token38] = ACTIONS(2355), [aux_sym_cmd_identifier_token39] = ACTIONS(2355), [aux_sym_cmd_identifier_token40] = ACTIONS(2355), @@ -134383,12 +141551,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH2] = ACTIONS(2355), [anon_sym_break] = ACTIONS(2355), [anon_sym_continue] = ACTIONS(2355), [anon_sym_for] = ACTIONS(2355), - [anon_sym_in] = ACTIONS(2355), + [anon_sym_in2] = ACTIONS(2355), [anon_sym_loop] = ACTIONS(2355), [anon_sym_make] = ACTIONS(2355), [anon_sym_while] = ACTIONS(2355), @@ -134406,8 +141573,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS2] = 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), @@ -134417,325 +141584,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(2355), [aux_sym__val_number_token2] = ACTIONS(2355), [aux_sym__val_number_token3] = ACTIONS(2355), - [anon_sym_LBRACK2] = ACTIONS(2357), + [aux_sym__val_number_token4] = ACTIONS(2355), + [aux_sym__val_number_token5] = ACTIONS(2355), + [aux_sym__val_number_token6] = 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(2359), - [anon_sym_PLUS] = ACTIONS(2355), + [sym__entry_separator] = ACTIONS(2357), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2359), + [sym_raw_string_begin] = ACTIONS(2357), }, - [513] = { - [sym_comment] = STATE(513), - [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), + [617] = { + [sym_comment] = STATE(617), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1002), + [aux_sym_cmd_identifier_token3] = ACTIONS(1002), + [aux_sym_cmd_identifier_token4] = ACTIONS(1002), + [aux_sym_cmd_identifier_token5] = ACTIONS(1002), + [aux_sym_cmd_identifier_token6] = ACTIONS(1002), + [aux_sym_cmd_identifier_token7] = ACTIONS(1002), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1002), + [aux_sym_cmd_identifier_token11] = ACTIONS(1002), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1002), + [aux_sym_cmd_identifier_token17] = ACTIONS(1002), + [aux_sym_cmd_identifier_token18] = ACTIONS(1002), + [aux_sym_cmd_identifier_token19] = ACTIONS(1002), + [aux_sym_cmd_identifier_token20] = ACTIONS(1002), + [aux_sym_cmd_identifier_token21] = ACTIONS(1002), + [aux_sym_cmd_identifier_token22] = ACTIONS(1002), + [aux_sym_cmd_identifier_token23] = ACTIONS(1002), + [aux_sym_cmd_identifier_token24] = ACTIONS(1002), + [aux_sym_cmd_identifier_token25] = ACTIONS(1002), + [aux_sym_cmd_identifier_token26] = ACTIONS(1002), + [aux_sym_cmd_identifier_token27] = ACTIONS(1002), + [aux_sym_cmd_identifier_token28] = ACTIONS(1002), + [aux_sym_cmd_identifier_token29] = ACTIONS(1002), + [aux_sym_cmd_identifier_token30] = ACTIONS(1002), + [aux_sym_cmd_identifier_token31] = ACTIONS(1002), + [aux_sym_cmd_identifier_token32] = ACTIONS(1002), + [aux_sym_cmd_identifier_token33] = ACTIONS(1002), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1002), + [aux_sym_cmd_identifier_token36] = ACTIONS(1002), + [aux_sym_cmd_identifier_token37] = ACTIONS(1002), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1002), + [aux_sym_cmd_identifier_token40] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1002), + [aux_sym__val_number_decimal_token4] = ACTIONS(1002), + [aux_sym__val_number_token1] = ACTIONS(1002), + [aux_sym__val_number_token2] = ACTIONS(1002), + [aux_sym__val_number_token3] = ACTIONS(1002), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), + [sym__entry_separator] = ACTIONS(1004), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2297), + [sym_raw_string_begin] = ACTIONS(1004), }, - [514] = { - [sym_comment] = STATE(514), - [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(2305), - [anon_sym_try] = ACTIONS(2303), - [anon_sym_catch] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_source] = ACTIONS(2303), - [anon_sym_source_DASHenv] = ACTIONS(2303), - [anon_sym_register] = ACTIONS(2303), - [anon_sym_hide] = ACTIONS(2303), - [anon_sym_hide_DASHenv] = ACTIONS(2303), - [anon_sym_overlay] = ACTIONS(2303), - [anon_sym_new] = ACTIONS(2303), - [anon_sym_as] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2303), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2303), - [aux_sym__val_number_decimal_token3] = ACTIONS(2303), - [aux_sym__val_number_decimal_token4] = ACTIONS(2303), - [aux_sym__val_number_token1] = ACTIONS(2303), - [aux_sym__val_number_token2] = ACTIONS(2303), - [aux_sym__val_number_token3] = ACTIONS(2303), - [anon_sym_DQUOTE] = ACTIONS(2305), - [sym__str_single_quotes] = ACTIONS(2305), - [sym__str_back_ticks] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2303), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2299), + [618] = { + [sym_comment] = STATE(618), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [aux_sym_cmd_identifier_token1] = ACTIONS(1018), + [aux_sym_cmd_identifier_token2] = ACTIONS(1018), + [aux_sym_cmd_identifier_token3] = ACTIONS(1018), + [aux_sym_cmd_identifier_token4] = ACTIONS(1018), + [aux_sym_cmd_identifier_token5] = ACTIONS(1018), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [aux_sym_cmd_identifier_token7] = ACTIONS(1018), + [aux_sym_cmd_identifier_token8] = ACTIONS(1018), + [aux_sym_cmd_identifier_token9] = ACTIONS(1018), + [aux_sym_cmd_identifier_token10] = ACTIONS(1018), + [aux_sym_cmd_identifier_token11] = ACTIONS(1018), + [aux_sym_cmd_identifier_token12] = ACTIONS(1018), + [aux_sym_cmd_identifier_token13] = ACTIONS(1018), + [aux_sym_cmd_identifier_token14] = ACTIONS(1018), + [aux_sym_cmd_identifier_token15] = ACTIONS(1018), + [aux_sym_cmd_identifier_token16] = ACTIONS(1018), + [aux_sym_cmd_identifier_token17] = ACTIONS(1018), + [aux_sym_cmd_identifier_token18] = ACTIONS(1018), + [aux_sym_cmd_identifier_token19] = ACTIONS(1018), + [aux_sym_cmd_identifier_token20] = ACTIONS(1018), + [aux_sym_cmd_identifier_token21] = ACTIONS(1018), + [aux_sym_cmd_identifier_token22] = ACTIONS(1018), + [aux_sym_cmd_identifier_token23] = ACTIONS(1018), + [aux_sym_cmd_identifier_token24] = ACTIONS(1018), + [aux_sym_cmd_identifier_token25] = ACTIONS(1018), + [aux_sym_cmd_identifier_token26] = ACTIONS(1018), + [aux_sym_cmd_identifier_token27] = ACTIONS(1018), + [aux_sym_cmd_identifier_token28] = ACTIONS(1018), + [aux_sym_cmd_identifier_token29] = ACTIONS(1018), + [aux_sym_cmd_identifier_token30] = ACTIONS(1018), + [aux_sym_cmd_identifier_token31] = ACTIONS(1018), + [aux_sym_cmd_identifier_token32] = ACTIONS(1018), + [aux_sym_cmd_identifier_token33] = ACTIONS(1018), + [aux_sym_cmd_identifier_token34] = ACTIONS(1018), + [aux_sym_cmd_identifier_token35] = ACTIONS(1018), + [aux_sym_cmd_identifier_token36] = ACTIONS(1018), + [aux_sym_cmd_identifier_token37] = ACTIONS(1018), + [aux_sym_cmd_identifier_token38] = ACTIONS(1018), + [aux_sym_cmd_identifier_token39] = ACTIONS(1018), + [aux_sym_cmd_identifier_token40] = ACTIONS(1018), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_make] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_catch] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_as] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1018), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1018), + [aux_sym__val_number_decimal_token3] = ACTIONS(1018), + [aux_sym__val_number_decimal_token4] = ACTIONS(1018), + [aux_sym__val_number_token1] = ACTIONS(1018), + [aux_sym__val_number_token2] = ACTIONS(1018), + [aux_sym__val_number_token3] = ACTIONS(1018), + [aux_sym__val_number_token4] = ACTIONS(1018), + [aux_sym__val_number_token5] = ACTIONS(1018), + [aux_sym__val_number_token6] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym__str_single_quotes] = ACTIONS(1018), + [sym__str_back_ticks] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1018), + [sym__entry_separator] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2305), + [sym_raw_string_begin] = ACTIONS(1020), }, - [515] = { - [sym_comment] = STATE(515), - [aux_sym__multiple_types_repeat1] = STATE(516), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_alias] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_let_DASHenv] = ACTIONS(2341), - [anon_sym_mut] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [aux_sym_cmd_identifier_token2] = ACTIONS(2341), - [aux_sym_cmd_identifier_token3] = ACTIONS(2341), - [aux_sym_cmd_identifier_token4] = ACTIONS(2341), - [aux_sym_cmd_identifier_token5] = ACTIONS(2341), - [aux_sym_cmd_identifier_token6] = ACTIONS(2341), - [aux_sym_cmd_identifier_token7] = ACTIONS(2341), - [aux_sym_cmd_identifier_token8] = ACTIONS(2341), - [aux_sym_cmd_identifier_token9] = ACTIONS(2341), - [aux_sym_cmd_identifier_token10] = ACTIONS(2341), - [aux_sym_cmd_identifier_token11] = ACTIONS(2341), - [aux_sym_cmd_identifier_token12] = ACTIONS(2341), - [aux_sym_cmd_identifier_token13] = ACTIONS(2341), - [aux_sym_cmd_identifier_token14] = ACTIONS(2341), - [aux_sym_cmd_identifier_token15] = ACTIONS(2341), - [aux_sym_cmd_identifier_token16] = ACTIONS(2341), - [aux_sym_cmd_identifier_token17] = ACTIONS(2341), - [aux_sym_cmd_identifier_token18] = ACTIONS(2341), - [aux_sym_cmd_identifier_token19] = ACTIONS(2341), - [aux_sym_cmd_identifier_token20] = ACTIONS(2341), - [aux_sym_cmd_identifier_token21] = ACTIONS(2341), - [aux_sym_cmd_identifier_token22] = ACTIONS(2341), - [aux_sym_cmd_identifier_token23] = ACTIONS(2341), - [aux_sym_cmd_identifier_token24] = ACTIONS(2341), - [aux_sym_cmd_identifier_token25] = ACTIONS(2341), - [aux_sym_cmd_identifier_token26] = ACTIONS(2341), - [aux_sym_cmd_identifier_token27] = ACTIONS(2341), - [aux_sym_cmd_identifier_token28] = ACTIONS(2341), - [aux_sym_cmd_identifier_token29] = ACTIONS(2341), - [aux_sym_cmd_identifier_token30] = ACTIONS(2341), - [aux_sym_cmd_identifier_token31] = ACTIONS(2341), - [aux_sym_cmd_identifier_token32] = ACTIONS(2341), - [aux_sym_cmd_identifier_token33] = ACTIONS(2341), - [aux_sym_cmd_identifier_token34] = ACTIONS(2341), - [aux_sym_cmd_identifier_token35] = ACTIONS(2341), - [aux_sym_cmd_identifier_token36] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2341), - [aux_sym_cmd_identifier_token38] = ACTIONS(2341), - [aux_sym_cmd_identifier_token39] = ACTIONS(2341), - [aux_sym_cmd_identifier_token40] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2341), - [anon_sym_export_DASHenv] = ACTIONS(2341), - [anon_sym_extern] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_error] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_make] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_catch] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_source] = ACTIONS(2341), - [anon_sym_source_DASHenv] = ACTIONS(2341), - [anon_sym_register] = ACTIONS(2341), - [anon_sym_hide] = ACTIONS(2341), - [anon_sym_hide_DASHenv] = ACTIONS(2341), - [anon_sym_overlay] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), - [aux_sym__val_number_decimal_token1] = ACTIONS(2341), - [aux_sym__val_number_decimal_token2] = ACTIONS(2341), - [aux_sym__val_number_decimal_token3] = ACTIONS(2341), - [aux_sym__val_number_decimal_token4] = ACTIONS(2341), - [aux_sym__val_number_token1] = ACTIONS(2341), - [aux_sym__val_number_token2] = ACTIONS(2341), - [aux_sym__val_number_token3] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [sym__str_single_quotes] = ACTIONS(2341), - [sym__str_back_ticks] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), - [sym__entry_separator] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2341), + [619] = { + [sym_comment] = STATE(619), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_in2] = 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_as] = ACTIONS(2359), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2359), + [aux_sym__val_number_token5] = ACTIONS(2359), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2347), + [sym_raw_string_begin] = ACTIONS(2361), }, - [516] = { - [sym_comment] = STATE(516), - [aux_sym__multiple_types_repeat1] = STATE(516), + [620] = { + [sym_comment] = STATE(620), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(1709), + [aux_sym_cmd_identifier_token3] = ACTIONS(1709), + [aux_sym_cmd_identifier_token4] = ACTIONS(1709), + [aux_sym_cmd_identifier_token5] = ACTIONS(1709), + [aux_sym_cmd_identifier_token6] = ACTIONS(1709), + [aux_sym_cmd_identifier_token7] = ACTIONS(1709), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1709), + [aux_sym_cmd_identifier_token11] = ACTIONS(1709), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(1709), + [aux_sym_cmd_identifier_token17] = ACTIONS(1709), + [aux_sym_cmd_identifier_token18] = ACTIONS(1709), + [aux_sym_cmd_identifier_token19] = ACTIONS(1709), + [aux_sym_cmd_identifier_token20] = ACTIONS(1709), + [aux_sym_cmd_identifier_token21] = ACTIONS(1709), + [aux_sym_cmd_identifier_token22] = ACTIONS(1709), + [aux_sym_cmd_identifier_token23] = ACTIONS(1709), + [aux_sym_cmd_identifier_token24] = ACTIONS(1709), + [aux_sym_cmd_identifier_token25] = ACTIONS(1709), + [aux_sym_cmd_identifier_token26] = ACTIONS(1709), + [aux_sym_cmd_identifier_token27] = ACTIONS(1709), + [aux_sym_cmd_identifier_token28] = ACTIONS(1709), + [aux_sym_cmd_identifier_token29] = ACTIONS(1709), + [aux_sym_cmd_identifier_token30] = ACTIONS(1709), + [aux_sym_cmd_identifier_token31] = ACTIONS(1709), + [aux_sym_cmd_identifier_token32] = ACTIONS(1709), + [aux_sym_cmd_identifier_token33] = ACTIONS(1709), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1709), + [aux_sym_cmd_identifier_token36] = ACTIONS(1709), + [aux_sym_cmd_identifier_token37] = ACTIONS(1709), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1709), + [aux_sym_cmd_identifier_token40] = ACTIONS(1709), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1709), + [aux_sym__val_number_decimal_token3] = ACTIONS(1709), + [aux_sym__val_number_decimal_token4] = ACTIONS(1709), + [aux_sym__val_number_token1] = ACTIONS(1709), + [aux_sym__val_number_token2] = ACTIONS(1709), + [aux_sym__val_number_token3] = ACTIONS(1709), + [aux_sym__val_number_token4] = ACTIONS(1709), + [aux_sym__val_number_token5] = ACTIONS(1709), + [aux_sym__val_number_token6] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym__str_single_quotes] = ACTIONS(1709), + [sym__str_back_ticks] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), + [sym__entry_separator] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1721), + }, + [621] = { + [sym_comment] = STATE(621), [anon_sym_export] = ACTIONS(2363), [anon_sym_alias] = ACTIONS(2363), [anon_sym_let] = ACTIONS(2363), @@ -134778,9 +142039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(2363), [aux_sym_cmd_identifier_token35] = ACTIONS(2363), [aux_sym_cmd_identifier_token36] = ACTIONS(2363), - [anon_sym_true] = ACTIONS(2363), - [anon_sym_false] = ACTIONS(2363), - [anon_sym_null] = ACTIONS(2363), + [aux_sym_cmd_identifier_token37] = ACTIONS(2363), [aux_sym_cmd_identifier_token38] = ACTIONS(2363), [aux_sym_cmd_identifier_token39] = ACTIONS(2363), [aux_sym_cmd_identifier_token40] = ACTIONS(2363), @@ -134792,12 +142051,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2363), [anon_sym_DOLLAR] = ACTIONS(2363), [anon_sym_error] = ACTIONS(2363), - [anon_sym_list] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_DASH2] = ACTIONS(2363), [anon_sym_break] = ACTIONS(2363), [anon_sym_continue] = ACTIONS(2363), [anon_sym_for] = ACTIONS(2363), - [anon_sym_in] = ACTIONS(2363), + [anon_sym_in2] = ACTIONS(2363), [anon_sym_loop] = ACTIONS(2363), [anon_sym_make] = ACTIONS(2363), [anon_sym_while] = ACTIONS(2363), @@ -134815,8 +142073,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(2363), [anon_sym_hide_DASHenv] = ACTIONS(2363), [anon_sym_overlay] = ACTIONS(2363), - [anon_sym_new] = ACTIONS(2363), [anon_sym_as] = ACTIONS(2363), + [anon_sym_PLUS2] = ACTIONS(2363), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2363), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2363), [aux_sym__val_number_decimal_token1] = ACTIONS(2363), @@ -134826,2385 +142084,2240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(2363), [aux_sym__val_number_token2] = ACTIONS(2363), [aux_sym__val_number_token3] = ACTIONS(2363), + [aux_sym__val_number_token4] = ACTIONS(2363), + [aux_sym__val_number_token5] = ACTIONS(2363), + [aux_sym__val_number_token6] = ACTIONS(2363), [anon_sym_DQUOTE] = ACTIONS(2363), [sym__str_single_quotes] = ACTIONS(2363), [sym__str_back_ticks] = ACTIONS(2363), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2363), [sym__entry_separator] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2363), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2368), - }, - [517] = { - [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [sym_raw_string_begin] = ACTIONS(2365), }, - [518] = { - [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_alias] = ACTIONS(1074), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_let_DASHenv] = ACTIONS(1074), - [anon_sym_mut] = ACTIONS(1074), - [anon_sym_const] = ACTIONS(1074), - [aux_sym_cmd_identifier_token1] = ACTIONS(1074), - [aux_sym_cmd_identifier_token2] = ACTIONS(1074), - [aux_sym_cmd_identifier_token3] = ACTIONS(1074), - [aux_sym_cmd_identifier_token4] = ACTIONS(1074), - [aux_sym_cmd_identifier_token5] = ACTIONS(1074), - [aux_sym_cmd_identifier_token6] = ACTIONS(1074), - [aux_sym_cmd_identifier_token7] = ACTIONS(1074), - [aux_sym_cmd_identifier_token8] = ACTIONS(1074), - [aux_sym_cmd_identifier_token9] = ACTIONS(1074), - [aux_sym_cmd_identifier_token10] = ACTIONS(1074), - [aux_sym_cmd_identifier_token11] = ACTIONS(1074), - [aux_sym_cmd_identifier_token12] = ACTIONS(1074), - [aux_sym_cmd_identifier_token13] = ACTIONS(1074), - [aux_sym_cmd_identifier_token14] = ACTIONS(1074), - [aux_sym_cmd_identifier_token15] = ACTIONS(1074), - [aux_sym_cmd_identifier_token16] = ACTIONS(1074), - [aux_sym_cmd_identifier_token17] = ACTIONS(1074), - [aux_sym_cmd_identifier_token18] = ACTIONS(1074), - [aux_sym_cmd_identifier_token19] = ACTIONS(1074), - [aux_sym_cmd_identifier_token20] = ACTIONS(1074), - [aux_sym_cmd_identifier_token21] = ACTIONS(1074), - [aux_sym_cmd_identifier_token22] = ACTIONS(1074), - [aux_sym_cmd_identifier_token23] = ACTIONS(1074), - [aux_sym_cmd_identifier_token24] = ACTIONS(1074), - [aux_sym_cmd_identifier_token25] = ACTIONS(1074), - [aux_sym_cmd_identifier_token26] = ACTIONS(1074), - [aux_sym_cmd_identifier_token27] = ACTIONS(1074), - [aux_sym_cmd_identifier_token28] = ACTIONS(1074), - [aux_sym_cmd_identifier_token29] = ACTIONS(1074), - [aux_sym_cmd_identifier_token30] = ACTIONS(1074), - [aux_sym_cmd_identifier_token31] = ACTIONS(1074), - [aux_sym_cmd_identifier_token32] = ACTIONS(1074), - [aux_sym_cmd_identifier_token33] = ACTIONS(1074), - [aux_sym_cmd_identifier_token34] = ACTIONS(1074), - [aux_sym_cmd_identifier_token35] = ACTIONS(1074), - [aux_sym_cmd_identifier_token36] = ACTIONS(1074), - [anon_sym_true] = ACTIONS(1074), - [anon_sym_false] = ACTIONS(1074), - [anon_sym_null] = ACTIONS(1074), - [aux_sym_cmd_identifier_token38] = ACTIONS(1074), - [aux_sym_cmd_identifier_token39] = ACTIONS(1074), - [aux_sym_cmd_identifier_token40] = ACTIONS(1074), - [anon_sym_def] = ACTIONS(1074), - [anon_sym_export_DASHenv] = ACTIONS(1074), - [anon_sym_extern] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_use] = ACTIONS(1074), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_error] = ACTIONS(1074), - [anon_sym_list] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_in] = ACTIONS(1074), - [anon_sym_loop] = ACTIONS(1074), - [anon_sym_make] = ACTIONS(1074), - [anon_sym_while] = ACTIONS(1074), - [anon_sym_do] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1074), - [anon_sym_else] = ACTIONS(1074), - [anon_sym_match] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1074), - [anon_sym_try] = ACTIONS(1074), - [anon_sym_catch] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_source] = ACTIONS(1074), - [anon_sym_source_DASHenv] = ACTIONS(1074), - [anon_sym_register] = ACTIONS(1074), - [anon_sym_hide] = ACTIONS(1074), - [anon_sym_hide_DASHenv] = ACTIONS(1074), - [anon_sym_overlay] = ACTIONS(1074), - [anon_sym_new] = ACTIONS(1074), - [anon_sym_as] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1074), - [aux_sym__val_number_decimal_token1] = ACTIONS(1074), - [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), - [sym__entry_separator] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1074), + [622] = { + [sym_comment] = STATE(622), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_alias] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_let_DASHenv] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [aux_sym_cmd_identifier_token1] = ACTIONS(2159), + [aux_sym_cmd_identifier_token2] = ACTIONS(2159), + [aux_sym_cmd_identifier_token3] = ACTIONS(2159), + [aux_sym_cmd_identifier_token4] = ACTIONS(2159), + [aux_sym_cmd_identifier_token5] = ACTIONS(2159), + [aux_sym_cmd_identifier_token6] = ACTIONS(2159), + [aux_sym_cmd_identifier_token7] = ACTIONS(2159), + [aux_sym_cmd_identifier_token8] = ACTIONS(2159), + [aux_sym_cmd_identifier_token9] = ACTIONS(2159), + [aux_sym_cmd_identifier_token10] = ACTIONS(2159), + [aux_sym_cmd_identifier_token11] = ACTIONS(2159), + [aux_sym_cmd_identifier_token12] = ACTIONS(2159), + [aux_sym_cmd_identifier_token13] = ACTIONS(2159), + [aux_sym_cmd_identifier_token14] = ACTIONS(2159), + [aux_sym_cmd_identifier_token15] = ACTIONS(2159), + [aux_sym_cmd_identifier_token16] = ACTIONS(2159), + [aux_sym_cmd_identifier_token17] = ACTIONS(2159), + [aux_sym_cmd_identifier_token18] = ACTIONS(2159), + [aux_sym_cmd_identifier_token19] = ACTIONS(2159), + [aux_sym_cmd_identifier_token20] = ACTIONS(2159), + [aux_sym_cmd_identifier_token21] = ACTIONS(2159), + [aux_sym_cmd_identifier_token22] = ACTIONS(2159), + [aux_sym_cmd_identifier_token23] = ACTIONS(2159), + [aux_sym_cmd_identifier_token24] = ACTIONS(2159), + [aux_sym_cmd_identifier_token25] = ACTIONS(2159), + [aux_sym_cmd_identifier_token26] = ACTIONS(2159), + [aux_sym_cmd_identifier_token27] = ACTIONS(2159), + [aux_sym_cmd_identifier_token28] = ACTIONS(2159), + [aux_sym_cmd_identifier_token29] = ACTIONS(2159), + [aux_sym_cmd_identifier_token30] = ACTIONS(2159), + [aux_sym_cmd_identifier_token31] = ACTIONS(2159), + [aux_sym_cmd_identifier_token32] = ACTIONS(2159), + [aux_sym_cmd_identifier_token33] = ACTIONS(2159), + [aux_sym_cmd_identifier_token34] = ACTIONS(2159), + [aux_sym_cmd_identifier_token35] = ACTIONS(2159), + [aux_sym_cmd_identifier_token36] = ACTIONS(2159), + [aux_sym_cmd_identifier_token37] = ACTIONS(2159), + [aux_sym_cmd_identifier_token38] = ACTIONS(2159), + [aux_sym_cmd_identifier_token39] = ACTIONS(2159), + [aux_sym_cmd_identifier_token40] = ACTIONS(2159), + [anon_sym_def] = ACTIONS(2159), + [anon_sym_export_DASHenv] = ACTIONS(2159), + [anon_sym_extern] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_use] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_DOLLAR] = ACTIONS(2159), + [anon_sym_error] = ACTIONS(2159), + [anon_sym_DASH2] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_in2] = ACTIONS(2159), + [anon_sym_loop] = ACTIONS(2159), + [anon_sym_make] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_else] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_catch] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_source] = ACTIONS(2159), + [anon_sym_source_DASHenv] = ACTIONS(2159), + [anon_sym_register] = ACTIONS(2159), + [anon_sym_hide] = ACTIONS(2159), + [anon_sym_hide_DASHenv] = ACTIONS(2159), + [anon_sym_overlay] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_PLUS2] = ACTIONS(2159), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2159), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2159), + [aux_sym__val_number_decimal_token1] = ACTIONS(2159), + [aux_sym__val_number_decimal_token2] = ACTIONS(2159), + [aux_sym__val_number_decimal_token3] = ACTIONS(2159), + [aux_sym__val_number_decimal_token4] = ACTIONS(2159), + [aux_sym__val_number_token1] = ACTIONS(2159), + [aux_sym__val_number_token2] = ACTIONS(2159), + [aux_sym__val_number_token3] = ACTIONS(2159), + [aux_sym__val_number_token4] = ACTIONS(2159), + [aux_sym__val_number_token5] = ACTIONS(2159), + [aux_sym__val_number_token6] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [sym__str_single_quotes] = ACTIONS(2159), + [sym__str_back_ticks] = ACTIONS(2159), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2159), + [sym__entry_separator] = ACTIONS(2165), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1076), + [sym_raw_string_begin] = ACTIONS(2165), }, - [519] = { - [sym__expr_parenthesized_immediate] = STATE(7450), - [sym_comment] = STATE(519), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_alias] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_let_DASHenv] = ACTIONS(2196), - [anon_sym_mut] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [aux_sym_cmd_identifier_token1] = ACTIONS(2196), - [aux_sym_cmd_identifier_token2] = ACTIONS(2196), - [aux_sym_cmd_identifier_token3] = ACTIONS(2196), - [aux_sym_cmd_identifier_token4] = ACTIONS(2196), - [aux_sym_cmd_identifier_token5] = ACTIONS(2196), - [aux_sym_cmd_identifier_token6] = ACTIONS(2196), - [aux_sym_cmd_identifier_token7] = ACTIONS(2196), - [aux_sym_cmd_identifier_token8] = ACTIONS(2196), - [aux_sym_cmd_identifier_token9] = ACTIONS(2196), - [aux_sym_cmd_identifier_token10] = ACTIONS(2196), - [aux_sym_cmd_identifier_token11] = ACTIONS(2196), - [aux_sym_cmd_identifier_token12] = ACTIONS(2196), - [aux_sym_cmd_identifier_token13] = ACTIONS(2196), - [aux_sym_cmd_identifier_token14] = ACTIONS(2196), - [aux_sym_cmd_identifier_token15] = ACTIONS(2196), - [aux_sym_cmd_identifier_token16] = ACTIONS(2196), - [aux_sym_cmd_identifier_token17] = ACTIONS(2196), - [aux_sym_cmd_identifier_token18] = ACTIONS(2196), - [aux_sym_cmd_identifier_token19] = ACTIONS(2196), - [aux_sym_cmd_identifier_token20] = ACTIONS(2196), - [aux_sym_cmd_identifier_token21] = ACTIONS(2196), - [aux_sym_cmd_identifier_token22] = ACTIONS(2196), - [aux_sym_cmd_identifier_token23] = ACTIONS(2196), - [aux_sym_cmd_identifier_token24] = ACTIONS(2196), - [aux_sym_cmd_identifier_token25] = ACTIONS(2196), - [aux_sym_cmd_identifier_token26] = ACTIONS(2196), - [aux_sym_cmd_identifier_token27] = ACTIONS(2196), - [aux_sym_cmd_identifier_token28] = ACTIONS(2196), - [aux_sym_cmd_identifier_token29] = ACTIONS(2196), - [aux_sym_cmd_identifier_token30] = ACTIONS(2196), - [aux_sym_cmd_identifier_token31] = ACTIONS(2196), - [aux_sym_cmd_identifier_token32] = ACTIONS(2196), - [aux_sym_cmd_identifier_token33] = ACTIONS(2196), - [aux_sym_cmd_identifier_token34] = ACTIONS(2196), - [aux_sym_cmd_identifier_token35] = ACTIONS(2196), - [aux_sym_cmd_identifier_token36] = ACTIONS(2196), - [anon_sym_true] = ACTIONS(2198), - [anon_sym_false] = ACTIONS(2198), - [anon_sym_null] = ACTIONS(2198), - [aux_sym_cmd_identifier_token38] = ACTIONS(2196), - [aux_sym_cmd_identifier_token39] = ACTIONS(2198), - [aux_sym_cmd_identifier_token40] = ACTIONS(2198), - [anon_sym_def] = ACTIONS(2196), - [anon_sym_export_DASHenv] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(2198), - [anon_sym_error] = ACTIONS(2196), - [anon_sym_list] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_make] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_catch] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_source] = ACTIONS(2196), - [anon_sym_source_DASHenv] = ACTIONS(2196), - [anon_sym_register] = ACTIONS(2196), - [anon_sym_hide] = ACTIONS(2196), - [anon_sym_hide_DASHenv] = ACTIONS(2196), - [anon_sym_overlay] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2198), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2198), - [aux_sym__val_number_decimal_token4] = ACTIONS(2198), - [aux_sym__val_number_token1] = ACTIONS(2198), - [aux_sym__val_number_token2] = ACTIONS(2198), - [aux_sym__val_number_token3] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym__str_single_quotes] = ACTIONS(2198), - [sym__str_back_ticks] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2198), - }, - [520] = { - [sym_comment] = STATE(520), - [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(2370), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), - [aux_sym__val_number_decimal_token1] = ACTIONS(1048), - [aux_sym__val_number_decimal_token2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token3] = ACTIONS(1050), - [aux_sym__val_number_decimal_token4] = ACTIONS(1050), - [aux_sym__val_number_token1] = ACTIONS(1050), - [aux_sym__val_number_token2] = ACTIONS(1050), - [aux_sym__val_number_token3] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym__str_single_quotes] = ACTIONS(1050), - [sym__str_back_ticks] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1050), + [623] = { + [sym_comment] = STATE(623), + [anon_sym_export] = ACTIONS(2367), + [anon_sym_alias] = ACTIONS(2367), + [anon_sym_let] = ACTIONS(2367), + [anon_sym_let_DASHenv] = ACTIONS(2367), + [anon_sym_mut] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [aux_sym_cmd_identifier_token1] = ACTIONS(2367), + [aux_sym_cmd_identifier_token2] = ACTIONS(2367), + [aux_sym_cmd_identifier_token3] = ACTIONS(2367), + [aux_sym_cmd_identifier_token4] = ACTIONS(2367), + [aux_sym_cmd_identifier_token5] = ACTIONS(2367), + [aux_sym_cmd_identifier_token6] = ACTIONS(2367), + [aux_sym_cmd_identifier_token7] = ACTIONS(2367), + [aux_sym_cmd_identifier_token8] = ACTIONS(2367), + [aux_sym_cmd_identifier_token9] = ACTIONS(2367), + [aux_sym_cmd_identifier_token10] = ACTIONS(2367), + [aux_sym_cmd_identifier_token11] = ACTIONS(2367), + [aux_sym_cmd_identifier_token12] = ACTIONS(2367), + [aux_sym_cmd_identifier_token13] = ACTIONS(2367), + [aux_sym_cmd_identifier_token14] = ACTIONS(2367), + [aux_sym_cmd_identifier_token15] = ACTIONS(2367), + [aux_sym_cmd_identifier_token16] = ACTIONS(2367), + [aux_sym_cmd_identifier_token17] = ACTIONS(2367), + [aux_sym_cmd_identifier_token18] = ACTIONS(2367), + [aux_sym_cmd_identifier_token19] = ACTIONS(2367), + [aux_sym_cmd_identifier_token20] = ACTIONS(2367), + [aux_sym_cmd_identifier_token21] = ACTIONS(2367), + [aux_sym_cmd_identifier_token22] = ACTIONS(2367), + [aux_sym_cmd_identifier_token23] = ACTIONS(2367), + [aux_sym_cmd_identifier_token24] = ACTIONS(2367), + [aux_sym_cmd_identifier_token25] = ACTIONS(2367), + [aux_sym_cmd_identifier_token26] = ACTIONS(2367), + [aux_sym_cmd_identifier_token27] = ACTIONS(2367), + [aux_sym_cmd_identifier_token28] = ACTIONS(2367), + [aux_sym_cmd_identifier_token29] = ACTIONS(2367), + [aux_sym_cmd_identifier_token30] = ACTIONS(2367), + [aux_sym_cmd_identifier_token31] = ACTIONS(2367), + [aux_sym_cmd_identifier_token32] = ACTIONS(2367), + [aux_sym_cmd_identifier_token33] = ACTIONS(2367), + [aux_sym_cmd_identifier_token34] = ACTIONS(2367), + [aux_sym_cmd_identifier_token35] = ACTIONS(2367), + [aux_sym_cmd_identifier_token36] = ACTIONS(2367), + [aux_sym_cmd_identifier_token37] = ACTIONS(2367), + [aux_sym_cmd_identifier_token38] = ACTIONS(2367), + [aux_sym_cmd_identifier_token39] = ACTIONS(2367), + [aux_sym_cmd_identifier_token40] = ACTIONS(2367), + [anon_sym_def] = ACTIONS(2367), + [anon_sym_export_DASHenv] = ACTIONS(2367), + [anon_sym_extern] = ACTIONS(2367), + [anon_sym_module] = ACTIONS(2367), + [anon_sym_use] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_DOLLAR] = ACTIONS(2367), + [anon_sym_error] = ACTIONS(2367), + [anon_sym_DASH2] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_in2] = ACTIONS(2367), + [anon_sym_loop] = ACTIONS(2367), + [anon_sym_make] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [anon_sym_do] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_else] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_try] = ACTIONS(2367), + [anon_sym_catch] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_source] = ACTIONS(2367), + [anon_sym_source_DASHenv] = ACTIONS(2367), + [anon_sym_register] = ACTIONS(2367), + [anon_sym_hide] = ACTIONS(2367), + [anon_sym_hide_DASHenv] = ACTIONS(2367), + [anon_sym_overlay] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_PLUS2] = ACTIONS(2367), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2367), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2367), + [aux_sym__val_number_decimal_token1] = ACTIONS(2367), + [aux_sym__val_number_decimal_token2] = ACTIONS(2367), + [aux_sym__val_number_decimal_token3] = ACTIONS(2367), + [aux_sym__val_number_decimal_token4] = ACTIONS(2367), + [aux_sym__val_number_token1] = ACTIONS(2367), + [aux_sym__val_number_token2] = ACTIONS(2367), + [aux_sym__val_number_token3] = ACTIONS(2367), + [aux_sym__val_number_token4] = ACTIONS(2367), + [aux_sym__val_number_token5] = ACTIONS(2367), + [aux_sym__val_number_token6] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(2367), + [sym__str_single_quotes] = ACTIONS(2367), + [sym__str_back_ticks] = ACTIONS(2367), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2367), + [sym__entry_separator] = ACTIONS(2369), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2369), }, - [521] = { - [sym__expr_parenthesized_immediate] = STATE(7450), - [sym_comment] = STATE(521), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_alias] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_let_DASHenv] = ACTIONS(2200), - [anon_sym_mut] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [aux_sym_cmd_identifier_token1] = ACTIONS(2200), - [aux_sym_cmd_identifier_token2] = ACTIONS(2200), - [aux_sym_cmd_identifier_token3] = ACTIONS(2200), - [aux_sym_cmd_identifier_token4] = ACTIONS(2200), - [aux_sym_cmd_identifier_token5] = ACTIONS(2200), - [aux_sym_cmd_identifier_token6] = ACTIONS(2200), - [aux_sym_cmd_identifier_token7] = ACTIONS(2200), - [aux_sym_cmd_identifier_token8] = ACTIONS(2200), - [aux_sym_cmd_identifier_token9] = ACTIONS(2200), - [aux_sym_cmd_identifier_token10] = ACTIONS(2200), - [aux_sym_cmd_identifier_token11] = ACTIONS(2200), - [aux_sym_cmd_identifier_token12] = ACTIONS(2200), - [aux_sym_cmd_identifier_token13] = ACTIONS(2200), - [aux_sym_cmd_identifier_token14] = ACTIONS(2200), - [aux_sym_cmd_identifier_token15] = ACTIONS(2200), - [aux_sym_cmd_identifier_token16] = ACTIONS(2200), - [aux_sym_cmd_identifier_token17] = ACTIONS(2200), - [aux_sym_cmd_identifier_token18] = ACTIONS(2200), - [aux_sym_cmd_identifier_token19] = ACTIONS(2200), - [aux_sym_cmd_identifier_token20] = ACTIONS(2200), - [aux_sym_cmd_identifier_token21] = ACTIONS(2200), - [aux_sym_cmd_identifier_token22] = ACTIONS(2200), - [aux_sym_cmd_identifier_token23] = ACTIONS(2200), - [aux_sym_cmd_identifier_token24] = ACTIONS(2200), - [aux_sym_cmd_identifier_token25] = ACTIONS(2200), - [aux_sym_cmd_identifier_token26] = ACTIONS(2200), - [aux_sym_cmd_identifier_token27] = ACTIONS(2200), - [aux_sym_cmd_identifier_token28] = ACTIONS(2200), - [aux_sym_cmd_identifier_token29] = ACTIONS(2200), - [aux_sym_cmd_identifier_token30] = ACTIONS(2200), - [aux_sym_cmd_identifier_token31] = ACTIONS(2200), - [aux_sym_cmd_identifier_token32] = ACTIONS(2200), - [aux_sym_cmd_identifier_token33] = ACTIONS(2200), - [aux_sym_cmd_identifier_token34] = ACTIONS(2200), - [aux_sym_cmd_identifier_token35] = ACTIONS(2200), - [aux_sym_cmd_identifier_token36] = ACTIONS(2200), - [anon_sym_true] = ACTIONS(2202), - [anon_sym_false] = ACTIONS(2202), - [anon_sym_null] = ACTIONS(2202), - [aux_sym_cmd_identifier_token38] = ACTIONS(2200), - [aux_sym_cmd_identifier_token39] = ACTIONS(2202), - [aux_sym_cmd_identifier_token40] = ACTIONS(2202), - [anon_sym_def] = ACTIONS(2200), - [anon_sym_export_DASHenv] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_error] = ACTIONS(2200), - [anon_sym_list] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_make] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_catch] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_source] = ACTIONS(2200), - [anon_sym_source_DASHenv] = ACTIONS(2200), - [anon_sym_register] = ACTIONS(2200), - [anon_sym_hide] = ACTIONS(2200), - [anon_sym_hide_DASHenv] = ACTIONS(2200), - [anon_sym_overlay] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_as] = ACTIONS(2200), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2202), - [aux_sym__val_number_decimal_token1] = ACTIONS(2200), - [aux_sym__val_number_decimal_token2] = ACTIONS(2202), - [aux_sym__val_number_decimal_token3] = ACTIONS(2202), - [aux_sym__val_number_decimal_token4] = ACTIONS(2202), - [aux_sym__val_number_token1] = ACTIONS(2202), - [aux_sym__val_number_token2] = ACTIONS(2202), - [aux_sym__val_number_token3] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(2202), - [sym__str_single_quotes] = ACTIONS(2202), - [sym__str_back_ticks] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2202), + [624] = { + [sym_comment] = STATE(624), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [aux_sym_cmd_identifier_token37] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [sym__entry_separator] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(992), }, - [522] = { - [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(1090), - [anon_sym_alias] = ACTIONS(1090), - [anon_sym_let] = ACTIONS(1090), - [anon_sym_let_DASHenv] = ACTIONS(1090), - [anon_sym_mut] = ACTIONS(1090), - [anon_sym_const] = ACTIONS(1090), - [aux_sym_cmd_identifier_token1] = ACTIONS(1090), - [aux_sym_cmd_identifier_token2] = ACTIONS(1090), - [aux_sym_cmd_identifier_token3] = ACTIONS(1090), - [aux_sym_cmd_identifier_token4] = ACTIONS(1090), - [aux_sym_cmd_identifier_token5] = ACTIONS(1090), - [aux_sym_cmd_identifier_token6] = ACTIONS(1090), - [aux_sym_cmd_identifier_token7] = ACTIONS(1090), - [aux_sym_cmd_identifier_token8] = ACTIONS(1090), - [aux_sym_cmd_identifier_token9] = ACTIONS(1090), - [aux_sym_cmd_identifier_token10] = ACTIONS(1090), - [aux_sym_cmd_identifier_token11] = ACTIONS(1090), - [aux_sym_cmd_identifier_token12] = ACTIONS(1090), - [aux_sym_cmd_identifier_token13] = ACTIONS(1090), - [aux_sym_cmd_identifier_token14] = ACTIONS(1090), - [aux_sym_cmd_identifier_token15] = ACTIONS(1090), - [aux_sym_cmd_identifier_token16] = ACTIONS(1090), - [aux_sym_cmd_identifier_token17] = ACTIONS(1090), - [aux_sym_cmd_identifier_token18] = ACTIONS(1090), - [aux_sym_cmd_identifier_token19] = ACTIONS(1090), - [aux_sym_cmd_identifier_token20] = ACTIONS(1090), - [aux_sym_cmd_identifier_token21] = ACTIONS(1090), - [aux_sym_cmd_identifier_token22] = ACTIONS(1090), - [aux_sym_cmd_identifier_token23] = ACTIONS(1090), - [aux_sym_cmd_identifier_token24] = ACTIONS(1090), - [aux_sym_cmd_identifier_token25] = ACTIONS(1090), - [aux_sym_cmd_identifier_token26] = ACTIONS(1090), - [aux_sym_cmd_identifier_token27] = ACTIONS(1090), - [aux_sym_cmd_identifier_token28] = ACTIONS(1090), - [aux_sym_cmd_identifier_token29] = ACTIONS(1090), - [aux_sym_cmd_identifier_token30] = ACTIONS(1090), - [aux_sym_cmd_identifier_token31] = ACTIONS(1090), - [aux_sym_cmd_identifier_token32] = ACTIONS(1090), - [aux_sym_cmd_identifier_token33] = ACTIONS(1090), - [aux_sym_cmd_identifier_token34] = ACTIONS(1090), - [aux_sym_cmd_identifier_token35] = ACTIONS(1090), - [aux_sym_cmd_identifier_token36] = ACTIONS(1090), - [anon_sym_true] = ACTIONS(1090), - [anon_sym_false] = ACTIONS(1090), - [anon_sym_null] = ACTIONS(1090), - [aux_sym_cmd_identifier_token38] = ACTIONS(1090), - [aux_sym_cmd_identifier_token39] = ACTIONS(1090), - [aux_sym_cmd_identifier_token40] = ACTIONS(1090), - [anon_sym_def] = ACTIONS(1090), - [anon_sym_export_DASHenv] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(1090), - [anon_sym_module] = ACTIONS(1090), - [anon_sym_use] = ACTIONS(1090), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_DOLLAR] = ACTIONS(1090), - [anon_sym_error] = ACTIONS(1090), - [anon_sym_list] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_break] = ACTIONS(1090), - [anon_sym_continue] = ACTIONS(1090), - [anon_sym_for] = ACTIONS(1090), - [anon_sym_in] = ACTIONS(1090), - [anon_sym_loop] = ACTIONS(1090), - [anon_sym_make] = ACTIONS(1090), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(1090), - [anon_sym_if] = ACTIONS(1090), - [anon_sym_else] = ACTIONS(1090), - [anon_sym_match] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_try] = ACTIONS(1090), - [anon_sym_catch] = ACTIONS(1090), - [anon_sym_return] = ACTIONS(1090), - [anon_sym_source] = ACTIONS(1090), - [anon_sym_source_DASHenv] = ACTIONS(1090), - [anon_sym_register] = ACTIONS(1090), - [anon_sym_hide] = ACTIONS(1090), - [anon_sym_hide_DASHenv] = ACTIONS(1090), - [anon_sym_overlay] = ACTIONS(1090), - [anon_sym_new] = ACTIONS(1090), - [anon_sym_as] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1090), - [aux_sym__val_number_decimal_token1] = ACTIONS(1090), - [aux_sym__val_number_decimal_token2] = ACTIONS(1090), - [aux_sym__val_number_decimal_token3] = ACTIONS(1090), - [aux_sym__val_number_decimal_token4] = ACTIONS(1090), - [aux_sym__val_number_token1] = ACTIONS(1090), - [aux_sym__val_number_token2] = ACTIONS(1090), - [aux_sym__val_number_token3] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1092), - [sym__str_single_quotes] = ACTIONS(1092), - [sym__str_back_ticks] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1090), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2275), + [625] = { + [sym_comment] = STATE(625), + [anon_sym_export] = ACTIONS(2347), + [anon_sym_alias] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_let_DASHenv] = ACTIONS(2347), + [anon_sym_mut] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [aux_sym_cmd_identifier_token1] = ACTIONS(2347), + [aux_sym_cmd_identifier_token2] = ACTIONS(2347), + [aux_sym_cmd_identifier_token3] = ACTIONS(2347), + [aux_sym_cmd_identifier_token4] = ACTIONS(2347), + [aux_sym_cmd_identifier_token5] = ACTIONS(2347), + [aux_sym_cmd_identifier_token6] = ACTIONS(2347), + [aux_sym_cmd_identifier_token7] = ACTIONS(2347), + [aux_sym_cmd_identifier_token8] = ACTIONS(2347), + [aux_sym_cmd_identifier_token9] = ACTIONS(2347), + [aux_sym_cmd_identifier_token10] = ACTIONS(2347), + [aux_sym_cmd_identifier_token11] = ACTIONS(2347), + [aux_sym_cmd_identifier_token12] = ACTIONS(2347), + [aux_sym_cmd_identifier_token13] = ACTIONS(2347), + [aux_sym_cmd_identifier_token14] = ACTIONS(2347), + [aux_sym_cmd_identifier_token15] = ACTIONS(2347), + [aux_sym_cmd_identifier_token16] = ACTIONS(2347), + [aux_sym_cmd_identifier_token17] = ACTIONS(2347), + [aux_sym_cmd_identifier_token18] = ACTIONS(2347), + [aux_sym_cmd_identifier_token19] = ACTIONS(2347), + [aux_sym_cmd_identifier_token20] = ACTIONS(2347), + [aux_sym_cmd_identifier_token21] = ACTIONS(2347), + [aux_sym_cmd_identifier_token22] = ACTIONS(2347), + [aux_sym_cmd_identifier_token23] = ACTIONS(2347), + [aux_sym_cmd_identifier_token24] = ACTIONS(2347), + [aux_sym_cmd_identifier_token25] = ACTIONS(2347), + [aux_sym_cmd_identifier_token26] = ACTIONS(2347), + [aux_sym_cmd_identifier_token27] = ACTIONS(2347), + [aux_sym_cmd_identifier_token28] = ACTIONS(2347), + [aux_sym_cmd_identifier_token29] = ACTIONS(2347), + [aux_sym_cmd_identifier_token30] = ACTIONS(2347), + [aux_sym_cmd_identifier_token31] = ACTIONS(2347), + [aux_sym_cmd_identifier_token32] = ACTIONS(2347), + [aux_sym_cmd_identifier_token33] = ACTIONS(2347), + [aux_sym_cmd_identifier_token34] = ACTIONS(2347), + [aux_sym_cmd_identifier_token35] = ACTIONS(2347), + [aux_sym_cmd_identifier_token36] = ACTIONS(2347), + [aux_sym_cmd_identifier_token37] = ACTIONS(2347), + [aux_sym_cmd_identifier_token38] = ACTIONS(2347), + [aux_sym_cmd_identifier_token39] = ACTIONS(2347), + [aux_sym_cmd_identifier_token40] = ACTIONS(2347), + [anon_sym_def] = ACTIONS(2347), + [anon_sym_export_DASHenv] = ACTIONS(2347), + [anon_sym_extern] = ACTIONS(2347), + [anon_sym_module] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_DOLLAR] = ACTIONS(2347), + [anon_sym_error] = ACTIONS(2347), + [anon_sym_DASH2] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_in2] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_make] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [anon_sym_do] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_else] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_try] = ACTIONS(2347), + [anon_sym_catch] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_source] = ACTIONS(2347), + [anon_sym_source_DASHenv] = ACTIONS(2347), + [anon_sym_register] = ACTIONS(2347), + [anon_sym_hide] = ACTIONS(2347), + [anon_sym_hide_DASHenv] = ACTIONS(2347), + [anon_sym_overlay] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_PLUS2] = ACTIONS(2347), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2347), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2347), + [aux_sym__val_number_decimal_token1] = ACTIONS(2347), + [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), + [aux_sym__val_number_token4] = ACTIONS(2347), + [aux_sym__val_number_token5] = ACTIONS(2347), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(2349), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1092), + [sym_raw_string_begin] = ACTIONS(2349), }, - [523] = { - [sym__expr_parenthesized_immediate] = STATE(7774), - [sym_comment] = STATE(523), - [anon_sym_export] = ACTIONS(2307), - [anon_sym_alias] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_let_DASHenv] = ACTIONS(2307), - [anon_sym_mut] = ACTIONS(2307), - [anon_sym_const] = ACTIONS(2307), - [aux_sym_cmd_identifier_token1] = ACTIONS(2307), - [aux_sym_cmd_identifier_token2] = ACTIONS(2307), - [aux_sym_cmd_identifier_token3] = ACTIONS(2307), - [aux_sym_cmd_identifier_token4] = ACTIONS(2307), - [aux_sym_cmd_identifier_token5] = ACTIONS(2307), - [aux_sym_cmd_identifier_token6] = ACTIONS(2307), - [aux_sym_cmd_identifier_token7] = ACTIONS(2307), - [aux_sym_cmd_identifier_token8] = ACTIONS(2307), - [aux_sym_cmd_identifier_token9] = ACTIONS(2307), - [aux_sym_cmd_identifier_token10] = ACTIONS(2307), - [aux_sym_cmd_identifier_token11] = ACTIONS(2307), - [aux_sym_cmd_identifier_token12] = ACTIONS(2307), - [aux_sym_cmd_identifier_token13] = ACTIONS(2307), - [aux_sym_cmd_identifier_token14] = ACTIONS(2307), - [aux_sym_cmd_identifier_token15] = ACTIONS(2307), - [aux_sym_cmd_identifier_token16] = ACTIONS(2307), - [aux_sym_cmd_identifier_token17] = ACTIONS(2307), - [aux_sym_cmd_identifier_token18] = ACTIONS(2307), - [aux_sym_cmd_identifier_token19] = ACTIONS(2307), - [aux_sym_cmd_identifier_token20] = ACTIONS(2307), - [aux_sym_cmd_identifier_token21] = ACTIONS(2307), - [aux_sym_cmd_identifier_token22] = ACTIONS(2307), - [aux_sym_cmd_identifier_token23] = ACTIONS(2307), - [aux_sym_cmd_identifier_token24] = ACTIONS(2307), - [aux_sym_cmd_identifier_token25] = ACTIONS(2307), - [aux_sym_cmd_identifier_token26] = ACTIONS(2307), - [aux_sym_cmd_identifier_token27] = ACTIONS(2307), - [aux_sym_cmd_identifier_token28] = ACTIONS(2307), - [aux_sym_cmd_identifier_token29] = ACTIONS(2307), - [aux_sym_cmd_identifier_token30] = ACTIONS(2307), - [aux_sym_cmd_identifier_token31] = ACTIONS(2307), - [aux_sym_cmd_identifier_token32] = ACTIONS(2307), - [aux_sym_cmd_identifier_token33] = ACTIONS(2307), - [aux_sym_cmd_identifier_token34] = ACTIONS(2307), - [aux_sym_cmd_identifier_token35] = ACTIONS(2307), - [aux_sym_cmd_identifier_token36] = ACTIONS(2307), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [anon_sym_null] = ACTIONS(2309), - [aux_sym_cmd_identifier_token38] = ACTIONS(2307), - [aux_sym_cmd_identifier_token39] = ACTIONS(2309), - [aux_sym_cmd_identifier_token40] = ACTIONS(2309), - [anon_sym_def] = ACTIONS(2307), - [anon_sym_export_DASHenv] = ACTIONS(2307), - [anon_sym_extern] = ACTIONS(2307), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_error] = ACTIONS(2307), - [anon_sym_list] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_break] = ACTIONS(2307), - [anon_sym_continue] = ACTIONS(2307), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_in] = ACTIONS(2307), - [anon_sym_loop] = ACTIONS(2307), - [anon_sym_make] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_do] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_else] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_catch] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_source] = ACTIONS(2307), - [anon_sym_source_DASHenv] = ACTIONS(2307), - [anon_sym_register] = ACTIONS(2307), - [anon_sym_hide] = ACTIONS(2307), - [anon_sym_hide_DASHenv] = ACTIONS(2307), - [anon_sym_overlay] = ACTIONS(2307), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_as] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2307), - [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), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2309), + [626] = { + [sym_comment] = STATE(626), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_alias] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_let_DASHenv] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [aux_sym_cmd_identifier_token1] = ACTIONS(2371), + [aux_sym_cmd_identifier_token2] = ACTIONS(2371), + [aux_sym_cmd_identifier_token3] = ACTIONS(2371), + [aux_sym_cmd_identifier_token4] = ACTIONS(2371), + [aux_sym_cmd_identifier_token5] = ACTIONS(2371), + [aux_sym_cmd_identifier_token6] = ACTIONS(2371), + [aux_sym_cmd_identifier_token7] = ACTIONS(2371), + [aux_sym_cmd_identifier_token8] = ACTIONS(2371), + [aux_sym_cmd_identifier_token9] = ACTIONS(2371), + [aux_sym_cmd_identifier_token10] = ACTIONS(2371), + [aux_sym_cmd_identifier_token11] = ACTIONS(2371), + [aux_sym_cmd_identifier_token12] = ACTIONS(2371), + [aux_sym_cmd_identifier_token13] = ACTIONS(2371), + [aux_sym_cmd_identifier_token14] = ACTIONS(2371), + [aux_sym_cmd_identifier_token15] = ACTIONS(2371), + [aux_sym_cmd_identifier_token16] = ACTIONS(2371), + [aux_sym_cmd_identifier_token17] = ACTIONS(2371), + [aux_sym_cmd_identifier_token18] = ACTIONS(2371), + [aux_sym_cmd_identifier_token19] = ACTIONS(2371), + [aux_sym_cmd_identifier_token20] = ACTIONS(2371), + [aux_sym_cmd_identifier_token21] = ACTIONS(2371), + [aux_sym_cmd_identifier_token22] = ACTIONS(2371), + [aux_sym_cmd_identifier_token23] = ACTIONS(2371), + [aux_sym_cmd_identifier_token24] = ACTIONS(2371), + [aux_sym_cmd_identifier_token25] = ACTIONS(2371), + [aux_sym_cmd_identifier_token26] = ACTIONS(2371), + [aux_sym_cmd_identifier_token27] = ACTIONS(2371), + [aux_sym_cmd_identifier_token28] = ACTIONS(2371), + [aux_sym_cmd_identifier_token29] = ACTIONS(2371), + [aux_sym_cmd_identifier_token30] = ACTIONS(2371), + [aux_sym_cmd_identifier_token31] = ACTIONS(2371), + [aux_sym_cmd_identifier_token32] = ACTIONS(2371), + [aux_sym_cmd_identifier_token33] = ACTIONS(2371), + [aux_sym_cmd_identifier_token34] = ACTIONS(2371), + [aux_sym_cmd_identifier_token35] = ACTIONS(2371), + [aux_sym_cmd_identifier_token36] = ACTIONS(2371), + [aux_sym_cmd_identifier_token37] = ACTIONS(2371), + [aux_sym_cmd_identifier_token38] = ACTIONS(2371), + [aux_sym_cmd_identifier_token39] = ACTIONS(2371), + [aux_sym_cmd_identifier_token40] = ACTIONS(2371), + [anon_sym_def] = ACTIONS(2371), + [anon_sym_export_DASHenv] = ACTIONS(2371), + [anon_sym_extern] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2371), + [anon_sym_error] = ACTIONS(2371), + [anon_sym_DASH2] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_in2] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_make] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_do] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_else] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_try] = ACTIONS(2371), + [anon_sym_catch] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_source] = ACTIONS(2371), + [anon_sym_source_DASHenv] = ACTIONS(2371), + [anon_sym_register] = ACTIONS(2371), + [anon_sym_hide] = ACTIONS(2371), + [anon_sym_hide_DASHenv] = ACTIONS(2371), + [anon_sym_overlay] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_PLUS2] = ACTIONS(2371), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2371), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2371), + [aux_sym__val_number_decimal_token1] = ACTIONS(2371), + [aux_sym__val_number_decimal_token2] = ACTIONS(2371), + [aux_sym__val_number_decimal_token3] = ACTIONS(2371), + [aux_sym__val_number_decimal_token4] = ACTIONS(2371), + [aux_sym__val_number_token1] = ACTIONS(2371), + [aux_sym__val_number_token2] = ACTIONS(2371), + [aux_sym__val_number_token3] = ACTIONS(2371), + [aux_sym__val_number_token4] = ACTIONS(2371), + [aux_sym__val_number_token5] = ACTIONS(2371), + [aux_sym__val_number_token6] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2371), + [sym__str_single_quotes] = ACTIONS(2371), + [sym__str_back_ticks] = ACTIONS(2371), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2371), + [sym__entry_separator] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2373), }, - [524] = { - [sym__expr_parenthesized_immediate] = STATE(7774), - [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(2311), - [anon_sym_alias] = ACTIONS(2311), - [anon_sym_let] = ACTIONS(2311), - [anon_sym_let_DASHenv] = ACTIONS(2311), - [anon_sym_mut] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [aux_sym_cmd_identifier_token1] = ACTIONS(2311), - [aux_sym_cmd_identifier_token2] = ACTIONS(2311), - [aux_sym_cmd_identifier_token3] = ACTIONS(2311), - [aux_sym_cmd_identifier_token4] = ACTIONS(2311), - [aux_sym_cmd_identifier_token5] = ACTIONS(2311), - [aux_sym_cmd_identifier_token6] = ACTIONS(2311), - [aux_sym_cmd_identifier_token7] = ACTIONS(2311), - [aux_sym_cmd_identifier_token8] = ACTIONS(2311), - [aux_sym_cmd_identifier_token9] = ACTIONS(2311), - [aux_sym_cmd_identifier_token10] = ACTIONS(2311), - [aux_sym_cmd_identifier_token11] = ACTIONS(2311), - [aux_sym_cmd_identifier_token12] = ACTIONS(2311), - [aux_sym_cmd_identifier_token13] = ACTIONS(2311), - [aux_sym_cmd_identifier_token14] = ACTIONS(2311), - [aux_sym_cmd_identifier_token15] = ACTIONS(2311), - [aux_sym_cmd_identifier_token16] = ACTIONS(2311), - [aux_sym_cmd_identifier_token17] = ACTIONS(2311), - [aux_sym_cmd_identifier_token18] = ACTIONS(2311), - [aux_sym_cmd_identifier_token19] = ACTIONS(2311), - [aux_sym_cmd_identifier_token20] = ACTIONS(2311), - [aux_sym_cmd_identifier_token21] = ACTIONS(2311), - [aux_sym_cmd_identifier_token22] = ACTIONS(2311), - [aux_sym_cmd_identifier_token23] = ACTIONS(2311), - [aux_sym_cmd_identifier_token24] = ACTIONS(2311), - [aux_sym_cmd_identifier_token25] = ACTIONS(2311), - [aux_sym_cmd_identifier_token26] = ACTIONS(2311), - [aux_sym_cmd_identifier_token27] = ACTIONS(2311), - [aux_sym_cmd_identifier_token28] = ACTIONS(2311), - [aux_sym_cmd_identifier_token29] = ACTIONS(2311), - [aux_sym_cmd_identifier_token30] = ACTIONS(2311), - [aux_sym_cmd_identifier_token31] = ACTIONS(2311), - [aux_sym_cmd_identifier_token32] = ACTIONS(2311), - [aux_sym_cmd_identifier_token33] = ACTIONS(2311), - [aux_sym_cmd_identifier_token34] = ACTIONS(2311), - [aux_sym_cmd_identifier_token35] = ACTIONS(2311), - [aux_sym_cmd_identifier_token36] = ACTIONS(2311), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [aux_sym_cmd_identifier_token38] = ACTIONS(2311), - [aux_sym_cmd_identifier_token39] = ACTIONS(2313), - [aux_sym_cmd_identifier_token40] = ACTIONS(2313), - [anon_sym_def] = ACTIONS(2311), - [anon_sym_export_DASHenv] = ACTIONS(2311), - [anon_sym_extern] = ACTIONS(2311), - [anon_sym_module] = ACTIONS(2311), - [anon_sym_use] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_error] = ACTIONS(2311), - [anon_sym_list] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_in] = ACTIONS(2311), - [anon_sym_loop] = ACTIONS(2311), - [anon_sym_make] = ACTIONS(2311), - [anon_sym_while] = ACTIONS(2311), - [anon_sym_do] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_else] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2311), - [anon_sym_catch] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_source] = ACTIONS(2311), - [anon_sym_source_DASHenv] = ACTIONS(2311), - [anon_sym_register] = ACTIONS(2311), - [anon_sym_hide] = ACTIONS(2311), - [anon_sym_hide_DASHenv] = ACTIONS(2311), - [anon_sym_overlay] = ACTIONS(2311), - [anon_sym_new] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2311), - [aux_sym__val_number_decimal_token2] = ACTIONS(2313), - [aux_sym__val_number_decimal_token3] = ACTIONS(2313), - [aux_sym__val_number_decimal_token4] = ACTIONS(2313), - [aux_sym__val_number_token1] = ACTIONS(2313), - [aux_sym__val_number_token2] = ACTIONS(2313), - [aux_sym__val_number_token3] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2311), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2313), + [627] = { + [sym_comment] = STATE(627), + [aux_sym__multiple_types_repeat1] = STATE(591), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_alias] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_let_DASHenv] = ACTIONS(2286), + [anon_sym_mut] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [aux_sym_cmd_identifier_token1] = ACTIONS(2286), + [aux_sym_cmd_identifier_token2] = ACTIONS(2286), + [aux_sym_cmd_identifier_token3] = ACTIONS(2286), + [aux_sym_cmd_identifier_token4] = ACTIONS(2286), + [aux_sym_cmd_identifier_token5] = ACTIONS(2286), + [aux_sym_cmd_identifier_token6] = ACTIONS(2286), + [aux_sym_cmd_identifier_token7] = ACTIONS(2286), + [aux_sym_cmd_identifier_token8] = ACTIONS(2286), + [aux_sym_cmd_identifier_token9] = ACTIONS(2286), + [aux_sym_cmd_identifier_token10] = ACTIONS(2286), + [aux_sym_cmd_identifier_token11] = ACTIONS(2286), + [aux_sym_cmd_identifier_token12] = ACTIONS(2286), + [aux_sym_cmd_identifier_token13] = ACTIONS(2286), + [aux_sym_cmd_identifier_token14] = ACTIONS(2286), + [aux_sym_cmd_identifier_token15] = ACTIONS(2286), + [aux_sym_cmd_identifier_token16] = ACTIONS(2286), + [aux_sym_cmd_identifier_token17] = ACTIONS(2286), + [aux_sym_cmd_identifier_token18] = ACTIONS(2286), + [aux_sym_cmd_identifier_token19] = ACTIONS(2286), + [aux_sym_cmd_identifier_token20] = ACTIONS(2286), + [aux_sym_cmd_identifier_token21] = ACTIONS(2286), + [aux_sym_cmd_identifier_token22] = ACTIONS(2286), + [aux_sym_cmd_identifier_token23] = ACTIONS(2286), + [aux_sym_cmd_identifier_token24] = ACTIONS(2286), + [aux_sym_cmd_identifier_token25] = ACTIONS(2286), + [aux_sym_cmd_identifier_token26] = ACTIONS(2286), + [aux_sym_cmd_identifier_token27] = ACTIONS(2286), + [aux_sym_cmd_identifier_token28] = ACTIONS(2286), + [aux_sym_cmd_identifier_token29] = ACTIONS(2286), + [aux_sym_cmd_identifier_token30] = ACTIONS(2286), + [aux_sym_cmd_identifier_token31] = ACTIONS(2286), + [aux_sym_cmd_identifier_token32] = ACTIONS(2286), + [aux_sym_cmd_identifier_token33] = ACTIONS(2286), + [aux_sym_cmd_identifier_token34] = ACTIONS(2286), + [aux_sym_cmd_identifier_token35] = ACTIONS(2286), + [aux_sym_cmd_identifier_token36] = ACTIONS(2286), + [aux_sym_cmd_identifier_token37] = ACTIONS(2286), + [aux_sym_cmd_identifier_token38] = ACTIONS(2286), + [aux_sym_cmd_identifier_token39] = ACTIONS(2286), + [aux_sym_cmd_identifier_token40] = ACTIONS(2286), + [anon_sym_def] = ACTIONS(2286), + [anon_sym_export_DASHenv] = ACTIONS(2286), + [anon_sym_extern] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_use] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_error] = ACTIONS(2286), + [anon_sym_DASH2] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_in2] = ACTIONS(2286), + [anon_sym_loop] = ACTIONS(2286), + [anon_sym_make] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_match] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_source] = ACTIONS(2286), + [anon_sym_source_DASHenv] = ACTIONS(2286), + [anon_sym_register] = ACTIONS(2286), + [anon_sym_hide] = ACTIONS(2286), + [anon_sym_hide_DASHenv] = ACTIONS(2286), + [anon_sym_overlay] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_PLUS2] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), + [aux_sym__val_number_decimal_token1] = ACTIONS(2286), + [aux_sym__val_number_decimal_token2] = ACTIONS(2286), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), + [aux_sym__val_number_token1] = ACTIONS(2286), + [aux_sym__val_number_token2] = ACTIONS(2286), + [aux_sym__val_number_token3] = ACTIONS(2286), + [aux_sym__val_number_token4] = ACTIONS(2286), + [aux_sym__val_number_token5] = ACTIONS(2286), + [aux_sym__val_number_token6] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym__str_single_quotes] = ACTIONS(2286), + [sym__str_back_ticks] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), + [sym__entry_separator] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2292), }, - [525] = { - [sym__expr_parenthesized_immediate] = STATE(7774), - [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(2315), - [anon_sym_alias] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_let_DASHenv] = ACTIONS(2315), - [anon_sym_mut] = ACTIONS(2315), - [anon_sym_const] = ACTIONS(2315), - [aux_sym_cmd_identifier_token1] = ACTIONS(2315), - [aux_sym_cmd_identifier_token2] = ACTIONS(2315), - [aux_sym_cmd_identifier_token3] = ACTIONS(2315), - [aux_sym_cmd_identifier_token4] = ACTIONS(2315), - [aux_sym_cmd_identifier_token5] = ACTIONS(2315), - [aux_sym_cmd_identifier_token6] = ACTIONS(2315), - [aux_sym_cmd_identifier_token7] = ACTIONS(2315), - [aux_sym_cmd_identifier_token8] = ACTIONS(2315), - [aux_sym_cmd_identifier_token9] = ACTIONS(2315), - [aux_sym_cmd_identifier_token10] = ACTIONS(2315), - [aux_sym_cmd_identifier_token11] = ACTIONS(2315), - [aux_sym_cmd_identifier_token12] = ACTIONS(2315), - [aux_sym_cmd_identifier_token13] = ACTIONS(2315), - [aux_sym_cmd_identifier_token14] = ACTIONS(2315), - [aux_sym_cmd_identifier_token15] = ACTIONS(2315), - [aux_sym_cmd_identifier_token16] = ACTIONS(2315), - [aux_sym_cmd_identifier_token17] = ACTIONS(2315), - [aux_sym_cmd_identifier_token18] = ACTIONS(2315), - [aux_sym_cmd_identifier_token19] = ACTIONS(2315), - [aux_sym_cmd_identifier_token20] = ACTIONS(2315), - [aux_sym_cmd_identifier_token21] = ACTIONS(2315), - [aux_sym_cmd_identifier_token22] = ACTIONS(2315), - [aux_sym_cmd_identifier_token23] = ACTIONS(2315), - [aux_sym_cmd_identifier_token24] = ACTIONS(2315), - [aux_sym_cmd_identifier_token25] = ACTIONS(2315), - [aux_sym_cmd_identifier_token26] = ACTIONS(2315), - [aux_sym_cmd_identifier_token27] = ACTIONS(2315), - [aux_sym_cmd_identifier_token28] = ACTIONS(2315), - [aux_sym_cmd_identifier_token29] = ACTIONS(2315), - [aux_sym_cmd_identifier_token30] = ACTIONS(2315), - [aux_sym_cmd_identifier_token31] = ACTIONS(2315), - [aux_sym_cmd_identifier_token32] = ACTIONS(2315), - [aux_sym_cmd_identifier_token33] = ACTIONS(2315), - [aux_sym_cmd_identifier_token34] = ACTIONS(2315), - [aux_sym_cmd_identifier_token35] = ACTIONS(2315), - [aux_sym_cmd_identifier_token36] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2317), - [aux_sym_cmd_identifier_token38] = ACTIONS(2315), - [aux_sym_cmd_identifier_token39] = ACTIONS(2317), - [aux_sym_cmd_identifier_token40] = ACTIONS(2317), - [anon_sym_def] = ACTIONS(2315), - [anon_sym_export_DASHenv] = ACTIONS(2315), - [anon_sym_extern] = ACTIONS(2315), - [anon_sym_module] = ACTIONS(2315), - [anon_sym_use] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_error] = ACTIONS(2315), - [anon_sym_list] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_break] = ACTIONS(2315), - [anon_sym_continue] = ACTIONS(2315), - [anon_sym_for] = ACTIONS(2315), - [anon_sym_in] = ACTIONS(2315), - [anon_sym_loop] = ACTIONS(2315), - [anon_sym_make] = ACTIONS(2315), - [anon_sym_while] = ACTIONS(2315), - [anon_sym_do] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2315), - [anon_sym_catch] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2315), - [anon_sym_source] = ACTIONS(2315), - [anon_sym_source_DASHenv] = ACTIONS(2315), - [anon_sym_register] = ACTIONS(2315), - [anon_sym_hide] = ACTIONS(2315), - [anon_sym_hide_DASHenv] = ACTIONS(2315), - [anon_sym_overlay] = ACTIONS(2315), - [anon_sym_new] = ACTIONS(2315), - [anon_sym_as] = ACTIONS(2315), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2317), - [aux_sym__val_number_decimal_token1] = ACTIONS(2315), - [aux_sym__val_number_decimal_token2] = ACTIONS(2317), - [aux_sym__val_number_decimal_token3] = ACTIONS(2317), - [aux_sym__val_number_decimal_token4] = ACTIONS(2317), - [aux_sym__val_number_token1] = ACTIONS(2317), - [aux_sym__val_number_token2] = ACTIONS(2317), - [aux_sym__val_number_token3] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2317), - [sym__str_single_quotes] = ACTIONS(2317), - [sym__str_back_ticks] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2315), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2317), + [628] = { + [sym_comment] = STATE(628), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1757), }, - [526] = { - [sym__expr_parenthesized_immediate] = STATE(7774), - [sym_comment] = STATE(526), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_alias] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_let_DASHenv] = ACTIONS(2242), - [anon_sym_mut] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [aux_sym_cmd_identifier_token1] = ACTIONS(2242), - [aux_sym_cmd_identifier_token2] = ACTIONS(2242), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [aux_sym_cmd_identifier_token6] = ACTIONS(2242), - [aux_sym_cmd_identifier_token7] = ACTIONS(2242), - [aux_sym_cmd_identifier_token8] = ACTIONS(2242), - [aux_sym_cmd_identifier_token9] = ACTIONS(2242), - [aux_sym_cmd_identifier_token10] = ACTIONS(2242), - [aux_sym_cmd_identifier_token11] = ACTIONS(2242), - [aux_sym_cmd_identifier_token12] = ACTIONS(2242), - [aux_sym_cmd_identifier_token13] = ACTIONS(2242), - [aux_sym_cmd_identifier_token14] = ACTIONS(2242), - [aux_sym_cmd_identifier_token15] = ACTIONS(2242), - [aux_sym_cmd_identifier_token16] = ACTIONS(2242), - [aux_sym_cmd_identifier_token17] = ACTIONS(2242), - [aux_sym_cmd_identifier_token18] = ACTIONS(2242), - [aux_sym_cmd_identifier_token19] = ACTIONS(2242), - [aux_sym_cmd_identifier_token20] = ACTIONS(2242), - [aux_sym_cmd_identifier_token21] = ACTIONS(2242), - [aux_sym_cmd_identifier_token22] = ACTIONS(2242), - [aux_sym_cmd_identifier_token23] = ACTIONS(2242), - [aux_sym_cmd_identifier_token24] = ACTIONS(2242), - [aux_sym_cmd_identifier_token25] = ACTIONS(2242), - [aux_sym_cmd_identifier_token26] = ACTIONS(2242), - [aux_sym_cmd_identifier_token27] = ACTIONS(2242), - [aux_sym_cmd_identifier_token28] = ACTIONS(2242), - [aux_sym_cmd_identifier_token29] = ACTIONS(2242), - [aux_sym_cmd_identifier_token30] = ACTIONS(2242), - [aux_sym_cmd_identifier_token31] = ACTIONS(2242), - [aux_sym_cmd_identifier_token32] = ACTIONS(2242), - [aux_sym_cmd_identifier_token33] = ACTIONS(2242), - [aux_sym_cmd_identifier_token34] = ACTIONS(2242), - [aux_sym_cmd_identifier_token35] = ACTIONS(2242), - [aux_sym_cmd_identifier_token36] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2244), - [anon_sym_false] = ACTIONS(2244), - [anon_sym_null] = ACTIONS(2244), - [aux_sym_cmd_identifier_token38] = ACTIONS(2242), - [aux_sym_cmd_identifier_token39] = ACTIONS(2244), - [aux_sym_cmd_identifier_token40] = ACTIONS(2244), - [anon_sym_def] = ACTIONS(2242), - [anon_sym_export_DASHenv] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(2242), - [anon_sym_module] = ACTIONS(2242), - [anon_sym_use] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_DOLLAR] = ACTIONS(2244), - [anon_sym_error] = ACTIONS(2242), - [anon_sym_list] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [anon_sym_loop] = ACTIONS(2242), - [anon_sym_make] = ACTIONS(2242), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_else] = ACTIONS(2242), - [anon_sym_match] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2244), - [anon_sym_try] = ACTIONS(2242), - [anon_sym_catch] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_source] = ACTIONS(2242), - [anon_sym_source_DASHenv] = ACTIONS(2242), - [anon_sym_register] = ACTIONS(2242), - [anon_sym_hide] = ACTIONS(2242), - [anon_sym_hide_DASHenv] = ACTIONS(2242), - [anon_sym_overlay] = ACTIONS(2242), - [anon_sym_new] = ACTIONS(2242), - [anon_sym_as] = ACTIONS(2242), - [anon_sym_LPAREN2] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2244), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2244), - [aux_sym__val_number_decimal_token1] = ACTIONS(2242), - [aux_sym__val_number_decimal_token2] = ACTIONS(2244), - [aux_sym__val_number_decimal_token3] = ACTIONS(2244), - [aux_sym__val_number_decimal_token4] = ACTIONS(2244), - [aux_sym__val_number_token1] = ACTIONS(2244), - [aux_sym__val_number_token2] = ACTIONS(2244), - [aux_sym__val_number_token3] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym__str_single_quotes] = ACTIONS(2244), - [sym__str_back_ticks] = ACTIONS(2244), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2244), + [629] = { + [sym_comment] = STATE(629), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1783), + [aux_sym_cmd_identifier_token3] = ACTIONS(1783), + [aux_sym_cmd_identifier_token4] = ACTIONS(1783), + [aux_sym_cmd_identifier_token5] = ACTIONS(1783), + [aux_sym_cmd_identifier_token6] = ACTIONS(1783), + [aux_sym_cmd_identifier_token7] = ACTIONS(1783), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1783), + [aux_sym_cmd_identifier_token11] = ACTIONS(1783), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1783), + [aux_sym_cmd_identifier_token17] = ACTIONS(1783), + [aux_sym_cmd_identifier_token18] = ACTIONS(1783), + [aux_sym_cmd_identifier_token19] = ACTIONS(1783), + [aux_sym_cmd_identifier_token20] = ACTIONS(1783), + [aux_sym_cmd_identifier_token21] = ACTIONS(1783), + [aux_sym_cmd_identifier_token22] = ACTIONS(1783), + [aux_sym_cmd_identifier_token23] = ACTIONS(1783), + [aux_sym_cmd_identifier_token24] = ACTIONS(1783), + [aux_sym_cmd_identifier_token25] = ACTIONS(1783), + [aux_sym_cmd_identifier_token26] = ACTIONS(1783), + [aux_sym_cmd_identifier_token27] = ACTIONS(1783), + [aux_sym_cmd_identifier_token28] = ACTIONS(1783), + [aux_sym_cmd_identifier_token29] = ACTIONS(1783), + [aux_sym_cmd_identifier_token30] = ACTIONS(1783), + [aux_sym_cmd_identifier_token31] = ACTIONS(1783), + [aux_sym_cmd_identifier_token32] = ACTIONS(1783), + [aux_sym_cmd_identifier_token33] = ACTIONS(1783), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1783), + [aux_sym_cmd_identifier_token36] = ACTIONS(1783), + [aux_sym_cmd_identifier_token37] = ACTIONS(1783), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1783), + [aux_sym_cmd_identifier_token40] = ACTIONS(1783), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1783), + [aux_sym__val_number_decimal_token3] = ACTIONS(1783), + [aux_sym__val_number_decimal_token4] = ACTIONS(1783), + [aux_sym__val_number_token1] = ACTIONS(1783), + [aux_sym__val_number_token2] = ACTIONS(1783), + [aux_sym__val_number_token3] = ACTIONS(1783), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [sym__str_single_quotes] = ACTIONS(1783), + [sym__str_back_ticks] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), + [sym__entry_separator] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1785), }, - [527] = { - [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [630] = { + [sym_comment] = STATE(630), + [anon_sym_export] = ACTIONS(2375), + [anon_sym_alias] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_let_DASHenv] = ACTIONS(2375), + [anon_sym_mut] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [aux_sym_cmd_identifier_token1] = ACTIONS(2375), + [aux_sym_cmd_identifier_token2] = ACTIONS(2375), + [aux_sym_cmd_identifier_token3] = ACTIONS(2375), + [aux_sym_cmd_identifier_token4] = ACTIONS(2375), + [aux_sym_cmd_identifier_token5] = ACTIONS(2375), + [aux_sym_cmd_identifier_token6] = ACTIONS(2375), + [aux_sym_cmd_identifier_token7] = ACTIONS(2375), + [aux_sym_cmd_identifier_token8] = ACTIONS(2375), + [aux_sym_cmd_identifier_token9] = ACTIONS(2375), + [aux_sym_cmd_identifier_token10] = ACTIONS(2375), + [aux_sym_cmd_identifier_token11] = ACTIONS(2375), + [aux_sym_cmd_identifier_token12] = ACTIONS(2375), + [aux_sym_cmd_identifier_token13] = ACTIONS(2375), + [aux_sym_cmd_identifier_token14] = ACTIONS(2375), + [aux_sym_cmd_identifier_token15] = ACTIONS(2375), + [aux_sym_cmd_identifier_token16] = ACTIONS(2375), + [aux_sym_cmd_identifier_token17] = ACTIONS(2375), + [aux_sym_cmd_identifier_token18] = ACTIONS(2375), + [aux_sym_cmd_identifier_token19] = ACTIONS(2375), + [aux_sym_cmd_identifier_token20] = ACTIONS(2375), + [aux_sym_cmd_identifier_token21] = ACTIONS(2375), + [aux_sym_cmd_identifier_token22] = ACTIONS(2375), + [aux_sym_cmd_identifier_token23] = ACTIONS(2375), + [aux_sym_cmd_identifier_token24] = ACTIONS(2375), + [aux_sym_cmd_identifier_token25] = ACTIONS(2375), + [aux_sym_cmd_identifier_token26] = ACTIONS(2375), + [aux_sym_cmd_identifier_token27] = ACTIONS(2375), + [aux_sym_cmd_identifier_token28] = ACTIONS(2375), + [aux_sym_cmd_identifier_token29] = ACTIONS(2375), + [aux_sym_cmd_identifier_token30] = ACTIONS(2375), + [aux_sym_cmd_identifier_token31] = ACTIONS(2375), + [aux_sym_cmd_identifier_token32] = ACTIONS(2375), + [aux_sym_cmd_identifier_token33] = ACTIONS(2375), + [aux_sym_cmd_identifier_token34] = ACTIONS(2375), + [aux_sym_cmd_identifier_token35] = ACTIONS(2375), + [aux_sym_cmd_identifier_token36] = ACTIONS(2375), + [aux_sym_cmd_identifier_token37] = ACTIONS(2375), + [aux_sym_cmd_identifier_token38] = ACTIONS(2375), + [aux_sym_cmd_identifier_token39] = ACTIONS(2375), + [aux_sym_cmd_identifier_token40] = ACTIONS(2375), + [anon_sym_def] = ACTIONS(2375), + [anon_sym_export_DASHenv] = ACTIONS(2375), + [anon_sym_extern] = ACTIONS(2375), + [anon_sym_module] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_error] = ACTIONS(2375), + [anon_sym_DASH2] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_in2] = ACTIONS(2375), + [anon_sym_loop] = ACTIONS(2375), + [anon_sym_make] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [anon_sym_do] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_else] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_try] = ACTIONS(2375), + [anon_sym_catch] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_source] = ACTIONS(2375), + [anon_sym_source_DASHenv] = ACTIONS(2375), + [anon_sym_register] = ACTIONS(2375), + [anon_sym_hide] = ACTIONS(2375), + [anon_sym_hide_DASHenv] = ACTIONS(2375), + [anon_sym_overlay] = ACTIONS(2375), + [anon_sym_as] = ACTIONS(2375), + [anon_sym_PLUS2] = ACTIONS(2375), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2375), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2375), + [aux_sym__val_number_decimal_token1] = ACTIONS(2375), + [aux_sym__val_number_decimal_token2] = ACTIONS(2375), + [aux_sym__val_number_decimal_token3] = ACTIONS(2375), + [aux_sym__val_number_decimal_token4] = ACTIONS(2375), + [aux_sym__val_number_token1] = ACTIONS(2375), + [aux_sym__val_number_token2] = ACTIONS(2375), + [aux_sym__val_number_token3] = ACTIONS(2375), + [aux_sym__val_number_token4] = ACTIONS(2375), + [aux_sym__val_number_token5] = ACTIONS(2375), + [aux_sym__val_number_token6] = ACTIONS(2375), + [anon_sym_DQUOTE] = ACTIONS(2375), + [sym__str_single_quotes] = ACTIONS(2375), + [sym__str_back_ticks] = ACTIONS(2375), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2375), + [sym__entry_separator] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2377), }, - [528] = { - [sym_comment] = STATE(528), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_alias] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_let_DASHenv] = ACTIONS(1628), - [anon_sym_mut] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [aux_sym_cmd_identifier_token1] = ACTIONS(1628), - [aux_sym_cmd_identifier_token2] = ACTIONS(1628), - [aux_sym_cmd_identifier_token3] = ACTIONS(1628), - [aux_sym_cmd_identifier_token4] = ACTIONS(1628), - [aux_sym_cmd_identifier_token5] = ACTIONS(1628), - [aux_sym_cmd_identifier_token6] = ACTIONS(1628), - [aux_sym_cmd_identifier_token7] = ACTIONS(1628), - [aux_sym_cmd_identifier_token8] = ACTIONS(1628), - [aux_sym_cmd_identifier_token9] = ACTIONS(1628), - [aux_sym_cmd_identifier_token10] = ACTIONS(1628), - [aux_sym_cmd_identifier_token11] = ACTIONS(1628), - [aux_sym_cmd_identifier_token12] = ACTIONS(1628), - [aux_sym_cmd_identifier_token13] = ACTIONS(1628), - [aux_sym_cmd_identifier_token14] = ACTIONS(1628), - [aux_sym_cmd_identifier_token15] = ACTIONS(1628), - [aux_sym_cmd_identifier_token16] = ACTIONS(1628), - [aux_sym_cmd_identifier_token17] = ACTIONS(1628), - [aux_sym_cmd_identifier_token18] = ACTIONS(1628), - [aux_sym_cmd_identifier_token19] = ACTIONS(1628), - [aux_sym_cmd_identifier_token20] = ACTIONS(1628), - [aux_sym_cmd_identifier_token21] = ACTIONS(1628), - [aux_sym_cmd_identifier_token22] = ACTIONS(1628), - [aux_sym_cmd_identifier_token23] = ACTIONS(1628), - [aux_sym_cmd_identifier_token24] = ACTIONS(1628), - [aux_sym_cmd_identifier_token25] = ACTIONS(1628), - [aux_sym_cmd_identifier_token26] = ACTIONS(1628), - [aux_sym_cmd_identifier_token27] = ACTIONS(1628), - [aux_sym_cmd_identifier_token28] = ACTIONS(1628), - [aux_sym_cmd_identifier_token29] = ACTIONS(1628), - [aux_sym_cmd_identifier_token30] = ACTIONS(1628), - [aux_sym_cmd_identifier_token31] = ACTIONS(1628), - [aux_sym_cmd_identifier_token32] = ACTIONS(1628), - [aux_sym_cmd_identifier_token33] = ACTIONS(1628), - [aux_sym_cmd_identifier_token34] = ACTIONS(1628), - [aux_sym_cmd_identifier_token35] = ACTIONS(1628), - [aux_sym_cmd_identifier_token36] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [aux_sym_cmd_identifier_token38] = ACTIONS(1628), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [anon_sym_def] = ACTIONS(1628), - [anon_sym_export_DASHenv] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_error] = ACTIONS(1628), - [anon_sym_list] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_make] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_else] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_try] = ACTIONS(1628), - [anon_sym_catch] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_source] = ACTIONS(1628), - [anon_sym_source_DASHenv] = ACTIONS(1628), - [anon_sym_register] = ACTIONS(1628), - [anon_sym_hide] = ACTIONS(1628), - [anon_sym_hide_DASHenv] = ACTIONS(1628), - [anon_sym_overlay] = ACTIONS(1628), - [anon_sym_new] = ACTIONS(1628), - [anon_sym_as] = ACTIONS(1628), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1628), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1628), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1628), - [aux_sym__val_number_decimal_token4] = ACTIONS(1628), - [aux_sym__val_number_token1] = ACTIONS(1628), - [aux_sym__val_number_token2] = ACTIONS(1628), - [aux_sym__val_number_token3] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(1628), - [sym__str_single_quotes] = ACTIONS(1628), - [sym__str_back_ticks] = ACTIONS(1628), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1628), - [sym__entry_separator] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1628), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1642), + [631] = { + [sym_comment] = STATE(631), + [anon_sym_export] = ACTIONS(1030), + [anon_sym_alias] = ACTIONS(1030), + [anon_sym_let] = ACTIONS(1030), + [anon_sym_let_DASHenv] = ACTIONS(1030), + [anon_sym_mut] = ACTIONS(1030), + [anon_sym_const] = ACTIONS(1030), + [aux_sym_cmd_identifier_token1] = ACTIONS(1030), + [aux_sym_cmd_identifier_token2] = ACTIONS(1030), + [aux_sym_cmd_identifier_token3] = ACTIONS(1030), + [aux_sym_cmd_identifier_token4] = ACTIONS(1030), + [aux_sym_cmd_identifier_token5] = ACTIONS(1030), + [aux_sym_cmd_identifier_token6] = ACTIONS(1030), + [aux_sym_cmd_identifier_token7] = ACTIONS(1030), + [aux_sym_cmd_identifier_token8] = ACTIONS(1030), + [aux_sym_cmd_identifier_token9] = ACTIONS(1030), + [aux_sym_cmd_identifier_token10] = ACTIONS(1030), + [aux_sym_cmd_identifier_token11] = ACTIONS(1030), + [aux_sym_cmd_identifier_token12] = ACTIONS(1030), + [aux_sym_cmd_identifier_token13] = ACTIONS(1030), + [aux_sym_cmd_identifier_token14] = ACTIONS(1030), + [aux_sym_cmd_identifier_token15] = ACTIONS(1030), + [aux_sym_cmd_identifier_token16] = ACTIONS(1030), + [aux_sym_cmd_identifier_token17] = ACTIONS(1030), + [aux_sym_cmd_identifier_token18] = ACTIONS(1030), + [aux_sym_cmd_identifier_token19] = ACTIONS(1030), + [aux_sym_cmd_identifier_token20] = ACTIONS(1030), + [aux_sym_cmd_identifier_token21] = ACTIONS(1030), + [aux_sym_cmd_identifier_token22] = ACTIONS(1030), + [aux_sym_cmd_identifier_token23] = ACTIONS(1030), + [aux_sym_cmd_identifier_token24] = ACTIONS(1030), + [aux_sym_cmd_identifier_token25] = ACTIONS(1030), + [aux_sym_cmd_identifier_token26] = ACTIONS(1030), + [aux_sym_cmd_identifier_token27] = ACTIONS(1030), + [aux_sym_cmd_identifier_token28] = ACTIONS(1030), + [aux_sym_cmd_identifier_token29] = ACTIONS(1030), + [aux_sym_cmd_identifier_token30] = ACTIONS(1030), + [aux_sym_cmd_identifier_token31] = ACTIONS(1030), + [aux_sym_cmd_identifier_token32] = ACTIONS(1030), + [aux_sym_cmd_identifier_token33] = ACTIONS(1030), + [aux_sym_cmd_identifier_token34] = ACTIONS(1030), + [aux_sym_cmd_identifier_token35] = ACTIONS(1030), + [aux_sym_cmd_identifier_token36] = ACTIONS(1030), + [aux_sym_cmd_identifier_token37] = ACTIONS(1030), + [aux_sym_cmd_identifier_token38] = ACTIONS(1030), + [aux_sym_cmd_identifier_token39] = ACTIONS(1030), + [aux_sym_cmd_identifier_token40] = ACTIONS(1030), + [anon_sym_def] = ACTIONS(1030), + [anon_sym_export_DASHenv] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1030), + [anon_sym_module] = ACTIONS(1030), + [anon_sym_use] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_error] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_continue] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1030), + [anon_sym_loop] = ACTIONS(1030), + [anon_sym_make] = ACTIONS(1030), + [anon_sym_while] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1030), + [anon_sym_match] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_try] = ACTIONS(1030), + [anon_sym_catch] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1030), + [anon_sym_source] = ACTIONS(1030), + [anon_sym_source_DASHenv] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1030), + [anon_sym_hide] = ACTIONS(1030), + [anon_sym_hide_DASHenv] = ACTIONS(1030), + [anon_sym_overlay] = ACTIONS(1030), + [anon_sym_as] = ACTIONS(1030), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [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), + [aux_sym__val_number_token4] = ACTIONS(1030), + [aux_sym__val_number_token5] = ACTIONS(1030), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1032), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1640), + [sym_raw_string_begin] = ACTIONS(1032), }, - [529] = { - [sym_comment] = STATE(529), - [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_LPAREN2] = ACTIONS(2374), - [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), + [632] = { + [sym_comment] = STATE(632), + [anon_sym_export] = ACTIONS(1972), + [anon_sym_alias] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_let_DASHenv] = ACTIONS(1972), + [anon_sym_mut] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [aux_sym_cmd_identifier_token1] = ACTIONS(1972), + [aux_sym_cmd_identifier_token2] = ACTIONS(1972), + [aux_sym_cmd_identifier_token3] = ACTIONS(1972), + [aux_sym_cmd_identifier_token4] = ACTIONS(1972), + [aux_sym_cmd_identifier_token5] = ACTIONS(1972), + [aux_sym_cmd_identifier_token6] = ACTIONS(1972), + [aux_sym_cmd_identifier_token7] = ACTIONS(1972), + [aux_sym_cmd_identifier_token8] = ACTIONS(1972), + [aux_sym_cmd_identifier_token9] = ACTIONS(1972), + [aux_sym_cmd_identifier_token10] = ACTIONS(1972), + [aux_sym_cmd_identifier_token11] = ACTIONS(1972), + [aux_sym_cmd_identifier_token12] = ACTIONS(1972), + [aux_sym_cmd_identifier_token13] = ACTIONS(1972), + [aux_sym_cmd_identifier_token14] = ACTIONS(1972), + [aux_sym_cmd_identifier_token15] = ACTIONS(1972), + [aux_sym_cmd_identifier_token16] = ACTIONS(1972), + [aux_sym_cmd_identifier_token17] = ACTIONS(1972), + [aux_sym_cmd_identifier_token18] = ACTIONS(1972), + [aux_sym_cmd_identifier_token19] = ACTIONS(1972), + [aux_sym_cmd_identifier_token20] = ACTIONS(1972), + [aux_sym_cmd_identifier_token21] = ACTIONS(1972), + [aux_sym_cmd_identifier_token22] = ACTIONS(1972), + [aux_sym_cmd_identifier_token23] = ACTIONS(1972), + [aux_sym_cmd_identifier_token24] = ACTIONS(1972), + [aux_sym_cmd_identifier_token25] = ACTIONS(1972), + [aux_sym_cmd_identifier_token26] = ACTIONS(1972), + [aux_sym_cmd_identifier_token27] = ACTIONS(1972), + [aux_sym_cmd_identifier_token28] = ACTIONS(1972), + [aux_sym_cmd_identifier_token29] = ACTIONS(1972), + [aux_sym_cmd_identifier_token30] = ACTIONS(1972), + [aux_sym_cmd_identifier_token31] = ACTIONS(1972), + [aux_sym_cmd_identifier_token32] = ACTIONS(1972), + [aux_sym_cmd_identifier_token33] = ACTIONS(1972), + [aux_sym_cmd_identifier_token34] = ACTIONS(1972), + [aux_sym_cmd_identifier_token35] = ACTIONS(1972), + [aux_sym_cmd_identifier_token36] = ACTIONS(1972), + [aux_sym_cmd_identifier_token37] = ACTIONS(1972), + [aux_sym_cmd_identifier_token38] = ACTIONS(1972), + [aux_sym_cmd_identifier_token39] = ACTIONS(1972), + [aux_sym_cmd_identifier_token40] = ACTIONS(1972), + [anon_sym_def] = ACTIONS(1972), + [anon_sym_export_DASHenv] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_module] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_error] = ACTIONS(1972), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_in2] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_make] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_source] = ACTIONS(1972), + [anon_sym_source_DASHenv] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_hide] = ACTIONS(1972), + [anon_sym_hide_DASHenv] = ACTIONS(1972), + [anon_sym_overlay] = ACTIONS(1972), + [anon_sym_as] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1972), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1972), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), + [aux_sym__val_number_token1] = ACTIONS(1972), + [aux_sym__val_number_token2] = ACTIONS(1972), + [aux_sym__val_number_token3] = ACTIONS(1972), + [aux_sym__val_number_token4] = ACTIONS(1972), + [aux_sym__val_number_token5] = ACTIONS(1972), + [aux_sym__val_number_token6] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1972), + [sym__str_single_quotes] = ACTIONS(1972), + [sym__str_back_ticks] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1972), + [sym__entry_separator] = ACTIONS(1974), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2374), + [sym_raw_string_begin] = ACTIONS(1974), }, - [530] = { - [sym_comment] = STATE(530), - [anon_sym_export] = ACTIONS(1826), - [anon_sym_alias] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_let_DASHenv] = ACTIONS(1826), - [anon_sym_mut] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [aux_sym_cmd_identifier_token1] = ACTIONS(1826), - [aux_sym_cmd_identifier_token2] = ACTIONS(1826), - [aux_sym_cmd_identifier_token3] = ACTIONS(1826), - [aux_sym_cmd_identifier_token4] = ACTIONS(1826), - [aux_sym_cmd_identifier_token5] = ACTIONS(1826), - [aux_sym_cmd_identifier_token6] = ACTIONS(1826), - [aux_sym_cmd_identifier_token7] = ACTIONS(1826), - [aux_sym_cmd_identifier_token8] = ACTIONS(1826), - [aux_sym_cmd_identifier_token9] = ACTIONS(1826), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1826), - [aux_sym_cmd_identifier_token13] = ACTIONS(1826), - [aux_sym_cmd_identifier_token14] = ACTIONS(1826), - [aux_sym_cmd_identifier_token15] = ACTIONS(1826), - [aux_sym_cmd_identifier_token16] = ACTIONS(1826), - [aux_sym_cmd_identifier_token17] = ACTIONS(1826), - [aux_sym_cmd_identifier_token18] = ACTIONS(1826), - [aux_sym_cmd_identifier_token19] = ACTIONS(1826), - [aux_sym_cmd_identifier_token20] = ACTIONS(1826), - [aux_sym_cmd_identifier_token21] = ACTIONS(1826), - [aux_sym_cmd_identifier_token22] = ACTIONS(1826), - [aux_sym_cmd_identifier_token23] = ACTIONS(1826), - [aux_sym_cmd_identifier_token24] = ACTIONS(1826), - [aux_sym_cmd_identifier_token25] = ACTIONS(1826), - [aux_sym_cmd_identifier_token26] = ACTIONS(1826), - [aux_sym_cmd_identifier_token27] = ACTIONS(1826), - [aux_sym_cmd_identifier_token28] = ACTIONS(1826), - [aux_sym_cmd_identifier_token29] = ACTIONS(1826), - [aux_sym_cmd_identifier_token30] = ACTIONS(1826), - [aux_sym_cmd_identifier_token31] = ACTIONS(1826), - [aux_sym_cmd_identifier_token32] = ACTIONS(1826), - [aux_sym_cmd_identifier_token33] = ACTIONS(1826), - [aux_sym_cmd_identifier_token34] = ACTIONS(1826), - [aux_sym_cmd_identifier_token35] = ACTIONS(1826), - [aux_sym_cmd_identifier_token36] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1828), - [aux_sym_cmd_identifier_token38] = ACTIONS(1826), - [aux_sym_cmd_identifier_token39] = ACTIONS(1828), - [aux_sym_cmd_identifier_token40] = ACTIONS(1828), - [anon_sym_def] = ACTIONS(1826), - [anon_sym_export_DASHenv] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_module] = ACTIONS(1826), - [anon_sym_use] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_error] = ACTIONS(1826), - [anon_sym_list] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_loop] = ACTIONS(1826), - [anon_sym_make] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_match] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_catch] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_source] = ACTIONS(1826), - [anon_sym_source_DASHenv] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_hide] = ACTIONS(1826), - [anon_sym_hide_DASHenv] = ACTIONS(1826), - [anon_sym_overlay] = ACTIONS(1826), - [anon_sym_new] = ACTIONS(1826), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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), - [anon_sym_PLUS] = ACTIONS(1826), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1828), + [633] = { + [sym_comment] = STATE(633), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_alias] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_let_DASHenv] = ACTIONS(2090), + [anon_sym_mut] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [aux_sym_cmd_identifier_token1] = ACTIONS(2090), + [aux_sym_cmd_identifier_token2] = ACTIONS(2090), + [aux_sym_cmd_identifier_token3] = ACTIONS(2090), + [aux_sym_cmd_identifier_token4] = ACTIONS(2090), + [aux_sym_cmd_identifier_token5] = ACTIONS(2090), + [aux_sym_cmd_identifier_token6] = ACTIONS(2090), + [aux_sym_cmd_identifier_token7] = ACTIONS(2090), + [aux_sym_cmd_identifier_token8] = ACTIONS(2090), + [aux_sym_cmd_identifier_token9] = ACTIONS(2090), + [aux_sym_cmd_identifier_token10] = ACTIONS(2090), + [aux_sym_cmd_identifier_token11] = ACTIONS(2090), + [aux_sym_cmd_identifier_token12] = ACTIONS(2090), + [aux_sym_cmd_identifier_token13] = ACTIONS(2090), + [aux_sym_cmd_identifier_token14] = ACTIONS(2090), + [aux_sym_cmd_identifier_token15] = ACTIONS(2090), + [aux_sym_cmd_identifier_token16] = ACTIONS(2090), + [aux_sym_cmd_identifier_token17] = ACTIONS(2090), + [aux_sym_cmd_identifier_token18] = ACTIONS(2090), + [aux_sym_cmd_identifier_token19] = ACTIONS(2090), + [aux_sym_cmd_identifier_token20] = ACTIONS(2090), + [aux_sym_cmd_identifier_token21] = ACTIONS(2090), + [aux_sym_cmd_identifier_token22] = ACTIONS(2090), + [aux_sym_cmd_identifier_token23] = ACTIONS(2090), + [aux_sym_cmd_identifier_token24] = ACTIONS(2090), + [aux_sym_cmd_identifier_token25] = ACTIONS(2090), + [aux_sym_cmd_identifier_token26] = ACTIONS(2090), + [aux_sym_cmd_identifier_token27] = ACTIONS(2090), + [aux_sym_cmd_identifier_token28] = ACTIONS(2090), + [aux_sym_cmd_identifier_token29] = ACTIONS(2090), + [aux_sym_cmd_identifier_token30] = ACTIONS(2090), + [aux_sym_cmd_identifier_token31] = ACTIONS(2090), + [aux_sym_cmd_identifier_token32] = ACTIONS(2090), + [aux_sym_cmd_identifier_token33] = ACTIONS(2090), + [aux_sym_cmd_identifier_token34] = ACTIONS(2090), + [aux_sym_cmd_identifier_token35] = ACTIONS(2090), + [aux_sym_cmd_identifier_token36] = ACTIONS(2090), + [aux_sym_cmd_identifier_token37] = ACTIONS(2090), + [aux_sym_cmd_identifier_token38] = ACTIONS(2090), + [aux_sym_cmd_identifier_token39] = ACTIONS(2090), + [aux_sym_cmd_identifier_token40] = ACTIONS(2090), + [anon_sym_def] = ACTIONS(2090), + [anon_sym_export_DASHenv] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_use] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_DOLLAR] = ACTIONS(2090), + [anon_sym_error] = ACTIONS(2090), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_in2] = ACTIONS(2090), + [anon_sym_loop] = ACTIONS(2090), + [anon_sym_make] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_match] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_catch] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_source] = ACTIONS(2090), + [anon_sym_source_DASHenv] = ACTIONS(2090), + [anon_sym_register] = ACTIONS(2090), + [anon_sym_hide] = ACTIONS(2090), + [anon_sym_hide_DASHenv] = ACTIONS(2090), + [anon_sym_overlay] = ACTIONS(2090), + [anon_sym_as] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2090), + [aux_sym__val_number_decimal_token1] = ACTIONS(2090), + [aux_sym__val_number_decimal_token2] = ACTIONS(2090), + [aux_sym__val_number_decimal_token3] = ACTIONS(2090), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), + [aux_sym__val_number_token1] = ACTIONS(2090), + [aux_sym__val_number_token2] = ACTIONS(2090), + [aux_sym__val_number_token3] = ACTIONS(2090), + [aux_sym__val_number_token4] = ACTIONS(2090), + [aux_sym__val_number_token5] = ACTIONS(2090), + [aux_sym__val_number_token6] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym__str_single_quotes] = ACTIONS(2090), + [sym__str_back_ticks] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2090), + [sym__entry_separator] = ACTIONS(2092), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2092), }, - [531] = { - [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [aux_sym__immediate_decimal_token2] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), + [634] = { + [sym_comment] = STATE(634), + [anon_sym_export] = ACTIONS(2379), + [anon_sym_alias] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_let_DASHenv] = ACTIONS(2379), + [anon_sym_mut] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [aux_sym_cmd_identifier_token1] = ACTIONS(2379), + [aux_sym_cmd_identifier_token2] = ACTIONS(2379), + [aux_sym_cmd_identifier_token3] = ACTIONS(2379), + [aux_sym_cmd_identifier_token4] = ACTIONS(2379), + [aux_sym_cmd_identifier_token5] = ACTIONS(2379), + [aux_sym_cmd_identifier_token6] = ACTIONS(2379), + [aux_sym_cmd_identifier_token7] = ACTIONS(2379), + [aux_sym_cmd_identifier_token8] = ACTIONS(2379), + [aux_sym_cmd_identifier_token9] = ACTIONS(2379), + [aux_sym_cmd_identifier_token10] = ACTIONS(2379), + [aux_sym_cmd_identifier_token11] = ACTIONS(2379), + [aux_sym_cmd_identifier_token12] = ACTIONS(2379), + [aux_sym_cmd_identifier_token13] = ACTIONS(2379), + [aux_sym_cmd_identifier_token14] = ACTIONS(2379), + [aux_sym_cmd_identifier_token15] = ACTIONS(2379), + [aux_sym_cmd_identifier_token16] = ACTIONS(2379), + [aux_sym_cmd_identifier_token17] = ACTIONS(2379), + [aux_sym_cmd_identifier_token18] = ACTIONS(2379), + [aux_sym_cmd_identifier_token19] = ACTIONS(2379), + [aux_sym_cmd_identifier_token20] = ACTIONS(2379), + [aux_sym_cmd_identifier_token21] = ACTIONS(2379), + [aux_sym_cmd_identifier_token22] = ACTIONS(2379), + [aux_sym_cmd_identifier_token23] = ACTIONS(2379), + [aux_sym_cmd_identifier_token24] = ACTIONS(2379), + [aux_sym_cmd_identifier_token25] = ACTIONS(2379), + [aux_sym_cmd_identifier_token26] = ACTIONS(2379), + [aux_sym_cmd_identifier_token27] = ACTIONS(2379), + [aux_sym_cmd_identifier_token28] = ACTIONS(2379), + [aux_sym_cmd_identifier_token29] = ACTIONS(2379), + [aux_sym_cmd_identifier_token30] = ACTIONS(2379), + [aux_sym_cmd_identifier_token31] = ACTIONS(2379), + [aux_sym_cmd_identifier_token32] = ACTIONS(2379), + [aux_sym_cmd_identifier_token33] = ACTIONS(2379), + [aux_sym_cmd_identifier_token34] = ACTIONS(2379), + [aux_sym_cmd_identifier_token35] = ACTIONS(2379), + [aux_sym_cmd_identifier_token36] = ACTIONS(2379), + [aux_sym_cmd_identifier_token37] = ACTIONS(2379), + [aux_sym_cmd_identifier_token38] = ACTIONS(2379), + [aux_sym_cmd_identifier_token39] = ACTIONS(2379), + [aux_sym_cmd_identifier_token40] = ACTIONS(2379), + [anon_sym_def] = ACTIONS(2379), + [anon_sym_export_DASHenv] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym_module] = ACTIONS(2379), + [anon_sym_use] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_error] = ACTIONS(2379), + [anon_sym_DASH2] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_in2] = ACTIONS(2379), + [anon_sym_loop] = ACTIONS(2379), + [anon_sym_make] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_do] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_catch] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_source] = ACTIONS(2379), + [anon_sym_source_DASHenv] = ACTIONS(2379), + [anon_sym_register] = ACTIONS(2379), + [anon_sym_hide] = ACTIONS(2379), + [anon_sym_hide_DASHenv] = ACTIONS(2379), + [anon_sym_overlay] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_PLUS2] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2379), + [aux_sym__val_number_decimal_token1] = ACTIONS(2379), + [aux_sym__val_number_decimal_token2] = ACTIONS(2379), + [aux_sym__val_number_decimal_token3] = ACTIONS(2379), + [aux_sym__val_number_decimal_token4] = ACTIONS(2379), + [aux_sym__val_number_token1] = ACTIONS(2379), + [aux_sym__val_number_token2] = ACTIONS(2379), + [aux_sym__val_number_token3] = ACTIONS(2379), + [aux_sym__val_number_token4] = ACTIONS(2379), + [aux_sym__val_number_token5] = ACTIONS(2379), + [aux_sym__val_number_token6] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2379), + [sym__str_single_quotes] = ACTIONS(2379), + [sym__str_back_ticks] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2379), + [sym__entry_separator] = ACTIONS(2381), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), + [sym_raw_string_begin] = ACTIONS(2381), }, - [532] = { - [sym_comment] = STATE(532), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1769), - [aux_sym_cmd_identifier_token40] = ACTIONS(1769), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), - [aux_sym__immediate_decimal_token2] = ACTIONS(2376), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), - [sym__entry_separator] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), + [635] = { + [sym_comment] = STATE(635), + [anon_sym_export] = ACTIONS(2383), + [anon_sym_alias] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_let_DASHenv] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [aux_sym_cmd_identifier_token1] = ACTIONS(2383), + [aux_sym_cmd_identifier_token2] = ACTIONS(2383), + [aux_sym_cmd_identifier_token3] = ACTIONS(2383), + [aux_sym_cmd_identifier_token4] = ACTIONS(2383), + [aux_sym_cmd_identifier_token5] = ACTIONS(2383), + [aux_sym_cmd_identifier_token6] = ACTIONS(2383), + [aux_sym_cmd_identifier_token7] = ACTIONS(2383), + [aux_sym_cmd_identifier_token8] = ACTIONS(2383), + [aux_sym_cmd_identifier_token9] = ACTIONS(2383), + [aux_sym_cmd_identifier_token10] = ACTIONS(2383), + [aux_sym_cmd_identifier_token11] = ACTIONS(2383), + [aux_sym_cmd_identifier_token12] = ACTIONS(2383), + [aux_sym_cmd_identifier_token13] = ACTIONS(2383), + [aux_sym_cmd_identifier_token14] = ACTIONS(2383), + [aux_sym_cmd_identifier_token15] = ACTIONS(2383), + [aux_sym_cmd_identifier_token16] = ACTIONS(2383), + [aux_sym_cmd_identifier_token17] = ACTIONS(2383), + [aux_sym_cmd_identifier_token18] = ACTIONS(2383), + [aux_sym_cmd_identifier_token19] = ACTIONS(2383), + [aux_sym_cmd_identifier_token20] = ACTIONS(2383), + [aux_sym_cmd_identifier_token21] = ACTIONS(2383), + [aux_sym_cmd_identifier_token22] = ACTIONS(2383), + [aux_sym_cmd_identifier_token23] = ACTIONS(2383), + [aux_sym_cmd_identifier_token24] = ACTIONS(2383), + [aux_sym_cmd_identifier_token25] = ACTIONS(2383), + [aux_sym_cmd_identifier_token26] = ACTIONS(2383), + [aux_sym_cmd_identifier_token27] = ACTIONS(2383), + [aux_sym_cmd_identifier_token28] = ACTIONS(2383), + [aux_sym_cmd_identifier_token29] = ACTIONS(2383), + [aux_sym_cmd_identifier_token30] = ACTIONS(2383), + [aux_sym_cmd_identifier_token31] = ACTIONS(2383), + [aux_sym_cmd_identifier_token32] = ACTIONS(2383), + [aux_sym_cmd_identifier_token33] = ACTIONS(2383), + [aux_sym_cmd_identifier_token34] = ACTIONS(2383), + [aux_sym_cmd_identifier_token35] = ACTIONS(2383), + [aux_sym_cmd_identifier_token36] = ACTIONS(2383), + [aux_sym_cmd_identifier_token37] = ACTIONS(2383), + [aux_sym_cmd_identifier_token38] = ACTIONS(2383), + [aux_sym_cmd_identifier_token39] = ACTIONS(2383), + [aux_sym_cmd_identifier_token40] = ACTIONS(2383), + [anon_sym_def] = ACTIONS(2383), + [anon_sym_export_DASHenv] = ACTIONS(2383), + [anon_sym_extern] = ACTIONS(2383), + [anon_sym_module] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_DOLLAR] = ACTIONS(2383), + [anon_sym_error] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_in2] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_make] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [anon_sym_do] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_else] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_try] = ACTIONS(2383), + [anon_sym_catch] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_source] = ACTIONS(2383), + [anon_sym_source_DASHenv] = ACTIONS(2383), + [anon_sym_register] = ACTIONS(2383), + [anon_sym_hide] = ACTIONS(2383), + [anon_sym_hide_DASHenv] = ACTIONS(2383), + [anon_sym_overlay] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2383), + [aux_sym__val_number_decimal_token1] = ACTIONS(2383), + [aux_sym__val_number_decimal_token2] = ACTIONS(2383), + [aux_sym__val_number_decimal_token3] = ACTIONS(2383), + [aux_sym__val_number_decimal_token4] = ACTIONS(2383), + [aux_sym__val_number_token1] = ACTIONS(2383), + [aux_sym__val_number_token2] = ACTIONS(2383), + [aux_sym__val_number_token3] = ACTIONS(2383), + [aux_sym__val_number_token4] = ACTIONS(2383), + [aux_sym__val_number_token5] = ACTIONS(2383), + [aux_sym__val_number_token6] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2383), + [sym__str_single_quotes] = ACTIONS(2383), + [sym__str_back_ticks] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2383), + [sym__entry_separator] = ACTIONS(2385), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1771), + [sym_raw_string_begin] = ACTIONS(2385), }, - [533] = { - [sym_comment] = STATE(533), - [anon_sym_export] = ACTIONS(2378), - [anon_sym_alias] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2378), - [anon_sym_let_DASHenv] = ACTIONS(2378), - [anon_sym_mut] = ACTIONS(2378), - [anon_sym_const] = ACTIONS(2378), - [aux_sym_cmd_identifier_token1] = ACTIONS(2378), - [aux_sym_cmd_identifier_token2] = ACTIONS(2378), - [aux_sym_cmd_identifier_token3] = ACTIONS(2378), - [aux_sym_cmd_identifier_token4] = ACTIONS(2378), - [aux_sym_cmd_identifier_token5] = ACTIONS(2378), - [aux_sym_cmd_identifier_token6] = ACTIONS(2378), - [aux_sym_cmd_identifier_token7] = ACTIONS(2378), - [aux_sym_cmd_identifier_token8] = ACTIONS(2378), - [aux_sym_cmd_identifier_token9] = ACTIONS(2378), - [aux_sym_cmd_identifier_token10] = ACTIONS(2378), - [aux_sym_cmd_identifier_token11] = ACTIONS(2378), - [aux_sym_cmd_identifier_token12] = ACTIONS(2378), - [aux_sym_cmd_identifier_token13] = ACTIONS(2378), - [aux_sym_cmd_identifier_token14] = ACTIONS(2378), - [aux_sym_cmd_identifier_token15] = ACTIONS(2378), - [aux_sym_cmd_identifier_token16] = ACTIONS(2378), - [aux_sym_cmd_identifier_token17] = ACTIONS(2378), - [aux_sym_cmd_identifier_token18] = ACTIONS(2378), - [aux_sym_cmd_identifier_token19] = ACTIONS(2378), - [aux_sym_cmd_identifier_token20] = ACTIONS(2378), - [aux_sym_cmd_identifier_token21] = ACTIONS(2378), - [aux_sym_cmd_identifier_token22] = ACTIONS(2378), - [aux_sym_cmd_identifier_token23] = ACTIONS(2378), - [aux_sym_cmd_identifier_token24] = ACTIONS(2378), - [aux_sym_cmd_identifier_token25] = ACTIONS(2378), - [aux_sym_cmd_identifier_token26] = ACTIONS(2378), - [aux_sym_cmd_identifier_token27] = ACTIONS(2378), - [aux_sym_cmd_identifier_token28] = ACTIONS(2378), - [aux_sym_cmd_identifier_token29] = ACTIONS(2378), - [aux_sym_cmd_identifier_token30] = ACTIONS(2378), - [aux_sym_cmd_identifier_token31] = ACTIONS(2378), - [aux_sym_cmd_identifier_token32] = ACTIONS(2378), - [aux_sym_cmd_identifier_token33] = ACTIONS(2378), - [aux_sym_cmd_identifier_token34] = ACTIONS(2378), - [aux_sym_cmd_identifier_token35] = ACTIONS(2378), - [aux_sym_cmd_identifier_token36] = ACTIONS(2378), - [anon_sym_true] = ACTIONS(2378), - [anon_sym_false] = ACTIONS(2378), - [anon_sym_null] = ACTIONS(2378), - [aux_sym_cmd_identifier_token38] = ACTIONS(2378), - [aux_sym_cmd_identifier_token39] = ACTIONS(2378), - [aux_sym_cmd_identifier_token40] = ACTIONS(2378), - [anon_sym_def] = ACTIONS(2378), - [anon_sym_export_DASHenv] = ACTIONS(2378), - [anon_sym_extern] = ACTIONS(2378), - [anon_sym_module] = ACTIONS(2378), - [anon_sym_use] = ACTIONS(2378), - [anon_sym_LPAREN] = ACTIONS(2378), - [anon_sym_DOLLAR] = ACTIONS(2378), - [anon_sym_error] = ACTIONS(2378), - [anon_sym_list] = ACTIONS(2378), - [anon_sym_DASH] = ACTIONS(2378), - [anon_sym_break] = ACTIONS(2378), - [anon_sym_continue] = ACTIONS(2378), - [anon_sym_for] = ACTIONS(2378), - [anon_sym_in] = ACTIONS(2378), - [anon_sym_loop] = ACTIONS(2378), - [anon_sym_make] = ACTIONS(2378), - [anon_sym_while] = ACTIONS(2378), - [anon_sym_do] = ACTIONS(2378), - [anon_sym_if] = ACTIONS(2378), - [anon_sym_else] = ACTIONS(2378), - [anon_sym_match] = ACTIONS(2378), - [anon_sym_RBRACE] = ACTIONS(2378), - [anon_sym_try] = ACTIONS(2378), - [anon_sym_catch] = ACTIONS(2378), - [anon_sym_return] = ACTIONS(2378), - [anon_sym_source] = ACTIONS(2378), - [anon_sym_source_DASHenv] = ACTIONS(2378), - [anon_sym_register] = ACTIONS(2378), - [anon_sym_hide] = ACTIONS(2378), - [anon_sym_hide_DASHenv] = ACTIONS(2378), - [anon_sym_overlay] = ACTIONS(2378), - [anon_sym_new] = ACTIONS(2378), - [anon_sym_as] = ACTIONS(2378), - [anon_sym_LPAREN2] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2378), - [aux_sym__val_number_decimal_token1] = ACTIONS(2378), - [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), - [sym__entry_separator] = ACTIONS(2380), - [anon_sym_PLUS] = ACTIONS(2378), + [636] = { + [sym_comment] = STATE(636), + [anon_sym_export] = ACTIONS(2387), + [anon_sym_alias] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2387), + [anon_sym_let_DASHenv] = ACTIONS(2387), + [anon_sym_mut] = ACTIONS(2387), + [anon_sym_const] = ACTIONS(2387), + [aux_sym_cmd_identifier_token1] = ACTIONS(2387), + [aux_sym_cmd_identifier_token2] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2387), + [aux_sym_cmd_identifier_token4] = ACTIONS(2387), + [aux_sym_cmd_identifier_token5] = ACTIONS(2387), + [aux_sym_cmd_identifier_token6] = ACTIONS(2387), + [aux_sym_cmd_identifier_token7] = ACTIONS(2387), + [aux_sym_cmd_identifier_token8] = ACTIONS(2387), + [aux_sym_cmd_identifier_token9] = ACTIONS(2387), + [aux_sym_cmd_identifier_token10] = ACTIONS(2387), + [aux_sym_cmd_identifier_token11] = ACTIONS(2387), + [aux_sym_cmd_identifier_token12] = ACTIONS(2387), + [aux_sym_cmd_identifier_token13] = ACTIONS(2387), + [aux_sym_cmd_identifier_token14] = ACTIONS(2387), + [aux_sym_cmd_identifier_token15] = ACTIONS(2387), + [aux_sym_cmd_identifier_token16] = ACTIONS(2387), + [aux_sym_cmd_identifier_token17] = ACTIONS(2387), + [aux_sym_cmd_identifier_token18] = ACTIONS(2387), + [aux_sym_cmd_identifier_token19] = ACTIONS(2387), + [aux_sym_cmd_identifier_token20] = ACTIONS(2387), + [aux_sym_cmd_identifier_token21] = ACTIONS(2387), + [aux_sym_cmd_identifier_token22] = ACTIONS(2387), + [aux_sym_cmd_identifier_token23] = ACTIONS(2387), + [aux_sym_cmd_identifier_token24] = ACTIONS(2387), + [aux_sym_cmd_identifier_token25] = ACTIONS(2387), + [aux_sym_cmd_identifier_token26] = ACTIONS(2387), + [aux_sym_cmd_identifier_token27] = ACTIONS(2387), + [aux_sym_cmd_identifier_token28] = ACTIONS(2387), + [aux_sym_cmd_identifier_token29] = ACTIONS(2387), + [aux_sym_cmd_identifier_token30] = ACTIONS(2387), + [aux_sym_cmd_identifier_token31] = ACTIONS(2387), + [aux_sym_cmd_identifier_token32] = ACTIONS(2387), + [aux_sym_cmd_identifier_token33] = ACTIONS(2387), + [aux_sym_cmd_identifier_token34] = ACTIONS(2387), + [aux_sym_cmd_identifier_token35] = ACTIONS(2387), + [aux_sym_cmd_identifier_token36] = ACTIONS(2387), + [aux_sym_cmd_identifier_token37] = ACTIONS(2387), + [aux_sym_cmd_identifier_token38] = ACTIONS(2387), + [aux_sym_cmd_identifier_token39] = ACTIONS(2387), + [aux_sym_cmd_identifier_token40] = ACTIONS(2387), + [anon_sym_def] = ACTIONS(2387), + [anon_sym_export_DASHenv] = ACTIONS(2387), + [anon_sym_extern] = ACTIONS(2387), + [anon_sym_module] = ACTIONS(2387), + [anon_sym_use] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_DOLLAR] = ACTIONS(2387), + [anon_sym_error] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2387), + [anon_sym_break] = ACTIONS(2387), + [anon_sym_continue] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_in2] = ACTIONS(2387), + [anon_sym_loop] = ACTIONS(2387), + [anon_sym_make] = ACTIONS(2387), + [anon_sym_while] = ACTIONS(2387), + [anon_sym_do] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_else] = ACTIONS(2387), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_try] = ACTIONS(2387), + [anon_sym_catch] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_source] = ACTIONS(2387), + [anon_sym_source_DASHenv] = ACTIONS(2387), + [anon_sym_register] = ACTIONS(2387), + [anon_sym_hide] = ACTIONS(2387), + [anon_sym_hide_DASHenv] = ACTIONS(2387), + [anon_sym_overlay] = ACTIONS(2387), + [anon_sym_as] = ACTIONS(2387), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2387), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2387), + [aux_sym__val_number_decimal_token1] = ACTIONS(2387), + [aux_sym__val_number_decimal_token2] = ACTIONS(2387), + [aux_sym__val_number_decimal_token3] = ACTIONS(2387), + [aux_sym__val_number_decimal_token4] = ACTIONS(2387), + [aux_sym__val_number_token1] = ACTIONS(2387), + [aux_sym__val_number_token2] = ACTIONS(2387), + [aux_sym__val_number_token3] = ACTIONS(2387), + [aux_sym__val_number_token4] = ACTIONS(2387), + [aux_sym__val_number_token5] = ACTIONS(2387), + [aux_sym__val_number_token6] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(2387), + [sym__str_single_quotes] = ACTIONS(2387), + [sym__str_back_ticks] = ACTIONS(2387), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2387), + [sym__entry_separator] = ACTIONS(2389), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2380), + [sym_raw_string_begin] = ACTIONS(2389), }, - [534] = { - [sym_comment] = STATE(534), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(2382), - [aux_sym__immediate_decimal_token2] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [637] = { + [sym_comment] = STATE(637), + [anon_sym_export] = ACTIONS(1948), + [anon_sym_alias] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1948), + [anon_sym_let_DASHenv] = ACTIONS(1948), + [anon_sym_mut] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [aux_sym_cmd_identifier_token1] = ACTIONS(1948), + [aux_sym_cmd_identifier_token2] = ACTIONS(1948), + [aux_sym_cmd_identifier_token3] = ACTIONS(1948), + [aux_sym_cmd_identifier_token4] = ACTIONS(1948), + [aux_sym_cmd_identifier_token5] = ACTIONS(1948), + [aux_sym_cmd_identifier_token6] = ACTIONS(1948), + [aux_sym_cmd_identifier_token7] = ACTIONS(1948), + [aux_sym_cmd_identifier_token8] = ACTIONS(1948), + [aux_sym_cmd_identifier_token9] = ACTIONS(1948), + [aux_sym_cmd_identifier_token10] = ACTIONS(1948), + [aux_sym_cmd_identifier_token11] = ACTIONS(1948), + [aux_sym_cmd_identifier_token12] = ACTIONS(1948), + [aux_sym_cmd_identifier_token13] = ACTIONS(1948), + [aux_sym_cmd_identifier_token14] = ACTIONS(1948), + [aux_sym_cmd_identifier_token15] = ACTIONS(1948), + [aux_sym_cmd_identifier_token16] = ACTIONS(1948), + [aux_sym_cmd_identifier_token17] = ACTIONS(1948), + [aux_sym_cmd_identifier_token18] = ACTIONS(1948), + [aux_sym_cmd_identifier_token19] = ACTIONS(1948), + [aux_sym_cmd_identifier_token20] = ACTIONS(1948), + [aux_sym_cmd_identifier_token21] = ACTIONS(1948), + [aux_sym_cmd_identifier_token22] = ACTIONS(1948), + [aux_sym_cmd_identifier_token23] = ACTIONS(1948), + [aux_sym_cmd_identifier_token24] = ACTIONS(1948), + [aux_sym_cmd_identifier_token25] = ACTIONS(1948), + [aux_sym_cmd_identifier_token26] = ACTIONS(1948), + [aux_sym_cmd_identifier_token27] = ACTIONS(1948), + [aux_sym_cmd_identifier_token28] = ACTIONS(1948), + [aux_sym_cmd_identifier_token29] = ACTIONS(1948), + [aux_sym_cmd_identifier_token30] = ACTIONS(1948), + [aux_sym_cmd_identifier_token31] = ACTIONS(1948), + [aux_sym_cmd_identifier_token32] = ACTIONS(1948), + [aux_sym_cmd_identifier_token33] = ACTIONS(1948), + [aux_sym_cmd_identifier_token34] = ACTIONS(1948), + [aux_sym_cmd_identifier_token35] = ACTIONS(1948), + [aux_sym_cmd_identifier_token36] = ACTIONS(1948), + [aux_sym_cmd_identifier_token37] = ACTIONS(1948), + [aux_sym_cmd_identifier_token38] = ACTIONS(1948), + [aux_sym_cmd_identifier_token39] = ACTIONS(1948), + [aux_sym_cmd_identifier_token40] = ACTIONS(1948), + [anon_sym_def] = ACTIONS(1948), + [anon_sym_export_DASHenv] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym_module] = ACTIONS(1948), + [anon_sym_use] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1948), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_error] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_in2] = ACTIONS(1948), + [anon_sym_loop] = ACTIONS(1948), + [anon_sym_make] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(1948), + [anon_sym_match] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_source] = ACTIONS(1948), + [anon_sym_source_DASHenv] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_hide] = ACTIONS(1948), + [anon_sym_hide_DASHenv] = ACTIONS(1948), + [anon_sym_overlay] = ACTIONS(1948), + [anon_sym_as] = ACTIONS(1948), + [anon_sym_PLUS2] = ACTIONS(1948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1948), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1948), + [aux_sym__val_number_decimal_token3] = ACTIONS(1948), + [aux_sym__val_number_decimal_token4] = ACTIONS(1948), + [aux_sym__val_number_token1] = ACTIONS(1948), + [aux_sym__val_number_token2] = ACTIONS(1948), + [aux_sym__val_number_token3] = ACTIONS(1948), + [aux_sym__val_number_token4] = ACTIONS(1948), + [aux_sym__val_number_token5] = ACTIONS(1948), + [aux_sym__val_number_token6] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1948), + [sym__str_single_quotes] = ACTIONS(1948), + [sym__str_back_ticks] = ACTIONS(1948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1948), + [sym__entry_separator] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1950), }, - [535] = { - [sym_comment] = STATE(535), - [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(1526), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1796), + [638] = { + [sym_comment] = STATE(638), + [anon_sym_export] = ACTIONS(2391), + [anon_sym_alias] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_let_DASHenv] = ACTIONS(2391), + [anon_sym_mut] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [aux_sym_cmd_identifier_token1] = ACTIONS(2391), + [aux_sym_cmd_identifier_token2] = ACTIONS(2391), + [aux_sym_cmd_identifier_token3] = ACTIONS(2391), + [aux_sym_cmd_identifier_token4] = ACTIONS(2391), + [aux_sym_cmd_identifier_token5] = ACTIONS(2391), + [aux_sym_cmd_identifier_token6] = ACTIONS(2391), + [aux_sym_cmd_identifier_token7] = ACTIONS(2391), + [aux_sym_cmd_identifier_token8] = ACTIONS(2391), + [aux_sym_cmd_identifier_token9] = ACTIONS(2391), + [aux_sym_cmd_identifier_token10] = ACTIONS(2391), + [aux_sym_cmd_identifier_token11] = ACTIONS(2391), + [aux_sym_cmd_identifier_token12] = ACTIONS(2391), + [aux_sym_cmd_identifier_token13] = ACTIONS(2391), + [aux_sym_cmd_identifier_token14] = ACTIONS(2391), + [aux_sym_cmd_identifier_token15] = ACTIONS(2391), + [aux_sym_cmd_identifier_token16] = ACTIONS(2391), + [aux_sym_cmd_identifier_token17] = ACTIONS(2391), + [aux_sym_cmd_identifier_token18] = ACTIONS(2391), + [aux_sym_cmd_identifier_token19] = ACTIONS(2391), + [aux_sym_cmd_identifier_token20] = ACTIONS(2391), + [aux_sym_cmd_identifier_token21] = ACTIONS(2391), + [aux_sym_cmd_identifier_token22] = ACTIONS(2391), + [aux_sym_cmd_identifier_token23] = ACTIONS(2391), + [aux_sym_cmd_identifier_token24] = ACTIONS(2391), + [aux_sym_cmd_identifier_token25] = ACTIONS(2391), + [aux_sym_cmd_identifier_token26] = ACTIONS(2391), + [aux_sym_cmd_identifier_token27] = ACTIONS(2391), + [aux_sym_cmd_identifier_token28] = ACTIONS(2391), + [aux_sym_cmd_identifier_token29] = ACTIONS(2391), + [aux_sym_cmd_identifier_token30] = ACTIONS(2391), + [aux_sym_cmd_identifier_token31] = ACTIONS(2391), + [aux_sym_cmd_identifier_token32] = ACTIONS(2391), + [aux_sym_cmd_identifier_token33] = ACTIONS(2391), + [aux_sym_cmd_identifier_token34] = ACTIONS(2391), + [aux_sym_cmd_identifier_token35] = ACTIONS(2391), + [aux_sym_cmd_identifier_token36] = ACTIONS(2391), + [aux_sym_cmd_identifier_token37] = ACTIONS(2391), + [aux_sym_cmd_identifier_token38] = ACTIONS(2391), + [aux_sym_cmd_identifier_token39] = ACTIONS(2391), + [aux_sym_cmd_identifier_token40] = ACTIONS(2391), + [anon_sym_def] = ACTIONS(2391), + [anon_sym_export_DASHenv] = ACTIONS(2391), + [anon_sym_extern] = ACTIONS(2391), + [anon_sym_module] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_error] = ACTIONS(2391), + [anon_sym_DASH2] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_in2] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_make] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [anon_sym_do] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_else] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_try] = ACTIONS(2391), + [anon_sym_catch] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_source] = ACTIONS(2391), + [anon_sym_source_DASHenv] = ACTIONS(2391), + [anon_sym_register] = ACTIONS(2391), + [anon_sym_hide] = ACTIONS(2391), + [anon_sym_hide_DASHenv] = ACTIONS(2391), + [anon_sym_overlay] = ACTIONS(2391), + [anon_sym_as] = ACTIONS(2391), + [anon_sym_PLUS2] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2391), + [aux_sym__val_number_decimal_token1] = ACTIONS(2391), + [aux_sym__val_number_decimal_token2] = ACTIONS(2391), + [aux_sym__val_number_decimal_token3] = ACTIONS(2391), + [aux_sym__val_number_decimal_token4] = ACTIONS(2391), + [aux_sym__val_number_token1] = ACTIONS(2391), + [aux_sym__val_number_token2] = ACTIONS(2391), + [aux_sym__val_number_token3] = ACTIONS(2391), + [aux_sym__val_number_token4] = ACTIONS(2391), + [aux_sym__val_number_token5] = ACTIONS(2391), + [aux_sym__val_number_token6] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(2391), + [sym__str_single_quotes] = ACTIONS(2391), + [sym__str_back_ticks] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2391), + [sym__entry_separator] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2393), }, - [536] = { - [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(2386), - [aux_sym__immediate_decimal_token2] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [639] = { + [sym_comment] = STATE(639), + [anon_sym_export] = ACTIONS(2395), + [anon_sym_alias] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2395), + [anon_sym_let_DASHenv] = ACTIONS(2395), + [anon_sym_mut] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [aux_sym_cmd_identifier_token1] = ACTIONS(2395), + [aux_sym_cmd_identifier_token2] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2395), + [aux_sym_cmd_identifier_token4] = ACTIONS(2395), + [aux_sym_cmd_identifier_token5] = ACTIONS(2395), + [aux_sym_cmd_identifier_token6] = ACTIONS(2395), + [aux_sym_cmd_identifier_token7] = ACTIONS(2395), + [aux_sym_cmd_identifier_token8] = ACTIONS(2395), + [aux_sym_cmd_identifier_token9] = ACTIONS(2395), + [aux_sym_cmd_identifier_token10] = ACTIONS(2395), + [aux_sym_cmd_identifier_token11] = ACTIONS(2395), + [aux_sym_cmd_identifier_token12] = ACTIONS(2395), + [aux_sym_cmd_identifier_token13] = ACTIONS(2395), + [aux_sym_cmd_identifier_token14] = ACTIONS(2395), + [aux_sym_cmd_identifier_token15] = ACTIONS(2395), + [aux_sym_cmd_identifier_token16] = ACTIONS(2395), + [aux_sym_cmd_identifier_token17] = ACTIONS(2395), + [aux_sym_cmd_identifier_token18] = ACTIONS(2395), + [aux_sym_cmd_identifier_token19] = ACTIONS(2395), + [aux_sym_cmd_identifier_token20] = ACTIONS(2395), + [aux_sym_cmd_identifier_token21] = ACTIONS(2395), + [aux_sym_cmd_identifier_token22] = ACTIONS(2395), + [aux_sym_cmd_identifier_token23] = ACTIONS(2395), + [aux_sym_cmd_identifier_token24] = ACTIONS(2395), + [aux_sym_cmd_identifier_token25] = ACTIONS(2395), + [aux_sym_cmd_identifier_token26] = ACTIONS(2395), + [aux_sym_cmd_identifier_token27] = ACTIONS(2395), + [aux_sym_cmd_identifier_token28] = ACTIONS(2395), + [aux_sym_cmd_identifier_token29] = ACTIONS(2395), + [aux_sym_cmd_identifier_token30] = ACTIONS(2395), + [aux_sym_cmd_identifier_token31] = ACTIONS(2395), + [aux_sym_cmd_identifier_token32] = ACTIONS(2395), + [aux_sym_cmd_identifier_token33] = ACTIONS(2395), + [aux_sym_cmd_identifier_token34] = ACTIONS(2395), + [aux_sym_cmd_identifier_token35] = ACTIONS(2395), + [aux_sym_cmd_identifier_token36] = ACTIONS(2395), + [aux_sym_cmd_identifier_token37] = ACTIONS(2395), + [aux_sym_cmd_identifier_token38] = ACTIONS(2395), + [aux_sym_cmd_identifier_token39] = ACTIONS(2395), + [aux_sym_cmd_identifier_token40] = ACTIONS(2395), + [anon_sym_def] = ACTIONS(2395), + [anon_sym_export_DASHenv] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym_module] = ACTIONS(2395), + [anon_sym_use] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2395), + [anon_sym_error] = ACTIONS(2395), + [anon_sym_DASH2] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_in2] = ACTIONS(2395), + [anon_sym_loop] = ACTIONS(2395), + [anon_sym_make] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_catch] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_source] = ACTIONS(2395), + [anon_sym_source_DASHenv] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_hide] = ACTIONS(2395), + [anon_sym_hide_DASHenv] = ACTIONS(2395), + [anon_sym_overlay] = ACTIONS(2395), + [anon_sym_as] = ACTIONS(2395), + [anon_sym_PLUS2] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2395), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2395), + [aux_sym__val_number_decimal_token3] = ACTIONS(2395), + [aux_sym__val_number_decimal_token4] = ACTIONS(2395), + [aux_sym__val_number_token1] = ACTIONS(2395), + [aux_sym__val_number_token2] = ACTIONS(2395), + [aux_sym__val_number_token3] = ACTIONS(2395), + [aux_sym__val_number_token4] = ACTIONS(2395), + [aux_sym__val_number_token5] = ACTIONS(2395), + [aux_sym__val_number_token6] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2395), + [sym__str_single_quotes] = ACTIONS(2395), + [sym__str_back_ticks] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2395), + [sym__entry_separator] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2397), }, - [537] = { - [sym_comment] = STATE(537), - [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(2390), - [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(249), - [sym_raw_string_begin] = ACTIONS(1044), + [640] = { + [sym_comment] = STATE(640), + [anon_sym_export] = ACTIONS(2399), + [anon_sym_alias] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), + [anon_sym_let_DASHenv] = ACTIONS(2399), + [anon_sym_mut] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [aux_sym_cmd_identifier_token1] = ACTIONS(2399), + [aux_sym_cmd_identifier_token2] = ACTIONS(2399), + [aux_sym_cmd_identifier_token3] = ACTIONS(2399), + [aux_sym_cmd_identifier_token4] = ACTIONS(2399), + [aux_sym_cmd_identifier_token5] = ACTIONS(2399), + [aux_sym_cmd_identifier_token6] = ACTIONS(2399), + [aux_sym_cmd_identifier_token7] = ACTIONS(2399), + [aux_sym_cmd_identifier_token8] = ACTIONS(2399), + [aux_sym_cmd_identifier_token9] = ACTIONS(2399), + [aux_sym_cmd_identifier_token10] = ACTIONS(2399), + [aux_sym_cmd_identifier_token11] = ACTIONS(2399), + [aux_sym_cmd_identifier_token12] = ACTIONS(2399), + [aux_sym_cmd_identifier_token13] = ACTIONS(2399), + [aux_sym_cmd_identifier_token14] = ACTIONS(2399), + [aux_sym_cmd_identifier_token15] = ACTIONS(2399), + [aux_sym_cmd_identifier_token16] = ACTIONS(2399), + [aux_sym_cmd_identifier_token17] = ACTIONS(2399), + [aux_sym_cmd_identifier_token18] = ACTIONS(2399), + [aux_sym_cmd_identifier_token19] = ACTIONS(2399), + [aux_sym_cmd_identifier_token20] = ACTIONS(2399), + [aux_sym_cmd_identifier_token21] = ACTIONS(2399), + [aux_sym_cmd_identifier_token22] = ACTIONS(2399), + [aux_sym_cmd_identifier_token23] = ACTIONS(2399), + [aux_sym_cmd_identifier_token24] = ACTIONS(2399), + [aux_sym_cmd_identifier_token25] = ACTIONS(2399), + [aux_sym_cmd_identifier_token26] = ACTIONS(2399), + [aux_sym_cmd_identifier_token27] = ACTIONS(2399), + [aux_sym_cmd_identifier_token28] = ACTIONS(2399), + [aux_sym_cmd_identifier_token29] = ACTIONS(2399), + [aux_sym_cmd_identifier_token30] = ACTIONS(2399), + [aux_sym_cmd_identifier_token31] = ACTIONS(2399), + [aux_sym_cmd_identifier_token32] = ACTIONS(2399), + [aux_sym_cmd_identifier_token33] = ACTIONS(2399), + [aux_sym_cmd_identifier_token34] = ACTIONS(2399), + [aux_sym_cmd_identifier_token35] = ACTIONS(2399), + [aux_sym_cmd_identifier_token36] = ACTIONS(2399), + [aux_sym_cmd_identifier_token37] = ACTIONS(2399), + [aux_sym_cmd_identifier_token38] = ACTIONS(2399), + [aux_sym_cmd_identifier_token39] = ACTIONS(2399), + [aux_sym_cmd_identifier_token40] = ACTIONS(2399), + [anon_sym_def] = ACTIONS(2399), + [anon_sym_export_DASHenv] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2399), + [anon_sym_module] = ACTIONS(2399), + [anon_sym_use] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_error] = ACTIONS(2399), + [anon_sym_DASH2] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_in2] = ACTIONS(2399), + [anon_sym_loop] = ACTIONS(2399), + [anon_sym_make] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_do] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_try] = ACTIONS(2399), + [anon_sym_catch] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_source] = ACTIONS(2399), + [anon_sym_source_DASHenv] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2399), + [anon_sym_hide] = ACTIONS(2399), + [anon_sym_hide_DASHenv] = ACTIONS(2399), + [anon_sym_overlay] = ACTIONS(2399), + [anon_sym_as] = ACTIONS(2399), + [anon_sym_PLUS2] = ACTIONS(2399), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2399), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2399), + [aux_sym__val_number_decimal_token1] = ACTIONS(2399), + [aux_sym__val_number_decimal_token2] = ACTIONS(2399), + [aux_sym__val_number_decimal_token3] = ACTIONS(2399), + [aux_sym__val_number_decimal_token4] = ACTIONS(2399), + [aux_sym__val_number_token1] = ACTIONS(2399), + [aux_sym__val_number_token2] = ACTIONS(2399), + [aux_sym__val_number_token3] = ACTIONS(2399), + [aux_sym__val_number_token4] = ACTIONS(2399), + [aux_sym__val_number_token5] = ACTIONS(2399), + [aux_sym__val_number_token6] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym__str_single_quotes] = ACTIONS(2399), + [sym__str_back_ticks] = ACTIONS(2399), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2399), + [sym__entry_separator] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2401), }, - [538] = { - [sym_comment] = STATE(538), - [anon_sym_export] = ACTIONS(1066), - [anon_sym_alias] = ACTIONS(1066), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_let_DASHenv] = ACTIONS(1066), - [anon_sym_mut] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [aux_sym_cmd_identifier_token1] = ACTIONS(1066), - [aux_sym_cmd_identifier_token2] = ACTIONS(1066), - [aux_sym_cmd_identifier_token3] = ACTIONS(1066), - [aux_sym_cmd_identifier_token4] = ACTIONS(1066), - [aux_sym_cmd_identifier_token5] = ACTIONS(1066), - [aux_sym_cmd_identifier_token6] = ACTIONS(1066), - [aux_sym_cmd_identifier_token7] = ACTIONS(1066), - [aux_sym_cmd_identifier_token8] = ACTIONS(1066), - [aux_sym_cmd_identifier_token9] = ACTIONS(1066), - [aux_sym_cmd_identifier_token10] = ACTIONS(1066), - [aux_sym_cmd_identifier_token11] = ACTIONS(1066), - [aux_sym_cmd_identifier_token12] = ACTIONS(1066), - [aux_sym_cmd_identifier_token13] = ACTIONS(1066), - [aux_sym_cmd_identifier_token14] = ACTIONS(1066), - [aux_sym_cmd_identifier_token15] = ACTIONS(1066), - [aux_sym_cmd_identifier_token16] = ACTIONS(1066), - [aux_sym_cmd_identifier_token17] = ACTIONS(1066), - [aux_sym_cmd_identifier_token18] = ACTIONS(1066), - [aux_sym_cmd_identifier_token19] = ACTIONS(1066), - [aux_sym_cmd_identifier_token20] = ACTIONS(1066), - [aux_sym_cmd_identifier_token21] = ACTIONS(1066), - [aux_sym_cmd_identifier_token22] = ACTIONS(1066), - [aux_sym_cmd_identifier_token23] = ACTIONS(1066), - [aux_sym_cmd_identifier_token24] = ACTIONS(1066), - [aux_sym_cmd_identifier_token25] = ACTIONS(1066), - [aux_sym_cmd_identifier_token26] = ACTIONS(1066), - [aux_sym_cmd_identifier_token27] = ACTIONS(1066), - [aux_sym_cmd_identifier_token28] = ACTIONS(1066), - [aux_sym_cmd_identifier_token29] = ACTIONS(1066), - [aux_sym_cmd_identifier_token30] = ACTIONS(1066), - [aux_sym_cmd_identifier_token31] = ACTIONS(1066), - [aux_sym_cmd_identifier_token32] = ACTIONS(1066), - [aux_sym_cmd_identifier_token33] = ACTIONS(1066), - [aux_sym_cmd_identifier_token34] = ACTIONS(1066), - [aux_sym_cmd_identifier_token35] = ACTIONS(1066), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(1066), - [anon_sym_export_DASHenv] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym_module] = ACTIONS(1066), - [anon_sym_use] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1066), - [anon_sym_error] = ACTIONS(1066), - [anon_sym_list] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_in] = ACTIONS(1066), - [anon_sym_loop] = ACTIONS(1066), - [anon_sym_make] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_else] = ACTIONS(1066), - [anon_sym_match] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_try] = ACTIONS(1066), - [anon_sym_catch] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_source] = ACTIONS(1066), - [anon_sym_source_DASHenv] = ACTIONS(1066), - [anon_sym_register] = ACTIONS(1066), - [anon_sym_hide] = ACTIONS(1066), - [anon_sym_hide_DASHenv] = ACTIONS(1066), - [anon_sym_overlay] = ACTIONS(1066), - [anon_sym_new] = ACTIONS(1066), - [anon_sym_as] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1066), - [aux_sym__val_number_decimal_token1] = ACTIONS(1066), - [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), - [sym__entry_separator] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1066), + [641] = { + [sym_comment] = STATE(641), + [anon_sym_export] = ACTIONS(2403), + [anon_sym_alias] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_let_DASHenv] = ACTIONS(2403), + [anon_sym_mut] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [aux_sym_cmd_identifier_token1] = ACTIONS(2403), + [aux_sym_cmd_identifier_token2] = ACTIONS(2403), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [aux_sym_cmd_identifier_token6] = ACTIONS(2403), + [aux_sym_cmd_identifier_token7] = ACTIONS(2403), + [aux_sym_cmd_identifier_token8] = ACTIONS(2403), + [aux_sym_cmd_identifier_token9] = ACTIONS(2403), + [aux_sym_cmd_identifier_token10] = ACTIONS(2403), + [aux_sym_cmd_identifier_token11] = ACTIONS(2403), + [aux_sym_cmd_identifier_token12] = ACTIONS(2403), + [aux_sym_cmd_identifier_token13] = ACTIONS(2403), + [aux_sym_cmd_identifier_token14] = ACTIONS(2403), + [aux_sym_cmd_identifier_token15] = ACTIONS(2403), + [aux_sym_cmd_identifier_token16] = ACTIONS(2403), + [aux_sym_cmd_identifier_token17] = ACTIONS(2403), + [aux_sym_cmd_identifier_token18] = ACTIONS(2403), + [aux_sym_cmd_identifier_token19] = ACTIONS(2403), + [aux_sym_cmd_identifier_token20] = ACTIONS(2403), + [aux_sym_cmd_identifier_token21] = ACTIONS(2403), + [aux_sym_cmd_identifier_token22] = ACTIONS(2403), + [aux_sym_cmd_identifier_token23] = ACTIONS(2403), + [aux_sym_cmd_identifier_token24] = ACTIONS(2403), + [aux_sym_cmd_identifier_token25] = ACTIONS(2403), + [aux_sym_cmd_identifier_token26] = ACTIONS(2403), + [aux_sym_cmd_identifier_token27] = ACTIONS(2403), + [aux_sym_cmd_identifier_token28] = ACTIONS(2403), + [aux_sym_cmd_identifier_token29] = ACTIONS(2403), + [aux_sym_cmd_identifier_token30] = ACTIONS(2403), + [aux_sym_cmd_identifier_token31] = ACTIONS(2403), + [aux_sym_cmd_identifier_token32] = ACTIONS(2403), + [aux_sym_cmd_identifier_token33] = ACTIONS(2403), + [aux_sym_cmd_identifier_token34] = ACTIONS(2403), + [aux_sym_cmd_identifier_token35] = ACTIONS(2403), + [aux_sym_cmd_identifier_token36] = ACTIONS(2403), + [aux_sym_cmd_identifier_token37] = ACTIONS(2403), + [aux_sym_cmd_identifier_token38] = ACTIONS(2403), + [aux_sym_cmd_identifier_token39] = ACTIONS(2403), + [aux_sym_cmd_identifier_token40] = ACTIONS(2403), + [anon_sym_def] = ACTIONS(2403), + [anon_sym_export_DASHenv] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_module] = ACTIONS(2403), + [anon_sym_use] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_error] = ACTIONS(2403), + [anon_sym_DASH2] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_in2] = ACTIONS(2403), + [anon_sym_loop] = ACTIONS(2403), + [anon_sym_make] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_match] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_catch] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_source] = ACTIONS(2403), + [anon_sym_source_DASHenv] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_hide] = ACTIONS(2403), + [anon_sym_hide_DASHenv] = ACTIONS(2403), + [anon_sym_overlay] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_PLUS2] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2403), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2403), + [aux_sym__val_number_decimal_token3] = ACTIONS(2403), + [aux_sym__val_number_decimal_token4] = ACTIONS(2403), + [aux_sym__val_number_token1] = ACTIONS(2403), + [aux_sym__val_number_token2] = ACTIONS(2403), + [aux_sym__val_number_token3] = ACTIONS(2403), + [aux_sym__val_number_token4] = ACTIONS(2403), + [aux_sym__val_number_token5] = ACTIONS(2403), + [aux_sym__val_number_token6] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(2403), + [sym__str_single_quotes] = ACTIONS(2403), + [sym__str_back_ticks] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2403), + [sym__entry_separator] = ACTIONS(2405), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1068), + [sym_raw_string_begin] = ACTIONS(2405), }, - [539] = { - [sym_comment] = STATE(539), - [aux_sym__multiple_types_repeat1] = STATE(516), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_alias] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_let_DASHenv] = ACTIONS(2341), - [anon_sym_mut] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [aux_sym_cmd_identifier_token2] = ACTIONS(2341), - [aux_sym_cmd_identifier_token3] = ACTIONS(2341), - [aux_sym_cmd_identifier_token4] = ACTIONS(2341), - [aux_sym_cmd_identifier_token5] = ACTIONS(2341), - [aux_sym_cmd_identifier_token6] = ACTIONS(2341), - [aux_sym_cmd_identifier_token7] = ACTIONS(2341), - [aux_sym_cmd_identifier_token8] = ACTIONS(2341), - [aux_sym_cmd_identifier_token9] = ACTIONS(2341), - [aux_sym_cmd_identifier_token10] = ACTIONS(2341), - [aux_sym_cmd_identifier_token11] = ACTIONS(2341), - [aux_sym_cmd_identifier_token12] = ACTIONS(2341), - [aux_sym_cmd_identifier_token13] = ACTIONS(2341), - [aux_sym_cmd_identifier_token14] = ACTIONS(2341), - [aux_sym_cmd_identifier_token15] = ACTIONS(2341), - [aux_sym_cmd_identifier_token16] = ACTIONS(2341), - [aux_sym_cmd_identifier_token17] = ACTIONS(2341), - [aux_sym_cmd_identifier_token18] = ACTIONS(2341), - [aux_sym_cmd_identifier_token19] = ACTIONS(2341), - [aux_sym_cmd_identifier_token20] = ACTIONS(2341), - [aux_sym_cmd_identifier_token21] = ACTIONS(2341), - [aux_sym_cmd_identifier_token22] = ACTIONS(2341), - [aux_sym_cmd_identifier_token23] = ACTIONS(2341), - [aux_sym_cmd_identifier_token24] = ACTIONS(2341), - [aux_sym_cmd_identifier_token25] = ACTIONS(2341), - [aux_sym_cmd_identifier_token26] = ACTIONS(2341), - [aux_sym_cmd_identifier_token27] = ACTIONS(2341), - [aux_sym_cmd_identifier_token28] = ACTIONS(2341), - [aux_sym_cmd_identifier_token29] = ACTIONS(2341), - [aux_sym_cmd_identifier_token30] = ACTIONS(2341), - [aux_sym_cmd_identifier_token31] = ACTIONS(2341), - [aux_sym_cmd_identifier_token32] = ACTIONS(2341), - [aux_sym_cmd_identifier_token33] = ACTIONS(2341), - [aux_sym_cmd_identifier_token34] = ACTIONS(2341), - [aux_sym_cmd_identifier_token35] = ACTIONS(2341), - [aux_sym_cmd_identifier_token36] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2341), - [aux_sym_cmd_identifier_token38] = ACTIONS(2341), - [aux_sym_cmd_identifier_token39] = ACTIONS(2341), - [aux_sym_cmd_identifier_token40] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2341), - [anon_sym_export_DASHenv] = ACTIONS(2341), - [anon_sym_extern] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_error] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_make] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_catch] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_source] = ACTIONS(2341), - [anon_sym_source_DASHenv] = ACTIONS(2341), - [anon_sym_register] = ACTIONS(2341), - [anon_sym_hide] = ACTIONS(2341), - [anon_sym_hide_DASHenv] = ACTIONS(2341), - [anon_sym_overlay] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), - [aux_sym__val_number_decimal_token1] = ACTIONS(2341), - [aux_sym__val_number_decimal_token2] = ACTIONS(2341), - [aux_sym__val_number_decimal_token3] = ACTIONS(2341), - [aux_sym__val_number_decimal_token4] = ACTIONS(2341), - [aux_sym__val_number_token1] = ACTIONS(2341), - [aux_sym__val_number_token2] = ACTIONS(2341), - [aux_sym__val_number_token3] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [sym__str_single_quotes] = ACTIONS(2341), - [sym__str_back_ticks] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), - [sym__entry_separator] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2341), + [642] = { + [sym_comment] = STATE(642), + [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(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(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(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_PLUS2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), + [aux_sym__immediate_decimal_token2] = ACTIONS(2300), + [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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = ACTIONS(1755), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [643] = { + [sym_comment] = STATE(643), + [anon_sym_export] = ACTIONS(2407), + [anon_sym_alias] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_let_DASHenv] = ACTIONS(2407), + [anon_sym_mut] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [aux_sym_cmd_identifier_token1] = ACTIONS(2407), + [aux_sym_cmd_identifier_token2] = ACTIONS(2407), + [aux_sym_cmd_identifier_token3] = ACTIONS(2407), + [aux_sym_cmd_identifier_token4] = ACTIONS(2407), + [aux_sym_cmd_identifier_token5] = ACTIONS(2407), + [aux_sym_cmd_identifier_token6] = ACTIONS(2407), + [aux_sym_cmd_identifier_token7] = ACTIONS(2407), + [aux_sym_cmd_identifier_token8] = ACTIONS(2407), + [aux_sym_cmd_identifier_token9] = ACTIONS(2407), + [aux_sym_cmd_identifier_token10] = ACTIONS(2407), + [aux_sym_cmd_identifier_token11] = ACTIONS(2407), + [aux_sym_cmd_identifier_token12] = ACTIONS(2407), + [aux_sym_cmd_identifier_token13] = ACTIONS(2407), + [aux_sym_cmd_identifier_token14] = ACTIONS(2407), + [aux_sym_cmd_identifier_token15] = ACTIONS(2407), + [aux_sym_cmd_identifier_token16] = ACTIONS(2407), + [aux_sym_cmd_identifier_token17] = ACTIONS(2407), + [aux_sym_cmd_identifier_token18] = ACTIONS(2407), + [aux_sym_cmd_identifier_token19] = ACTIONS(2407), + [aux_sym_cmd_identifier_token20] = ACTIONS(2407), + [aux_sym_cmd_identifier_token21] = ACTIONS(2407), + [aux_sym_cmd_identifier_token22] = ACTIONS(2407), + [aux_sym_cmd_identifier_token23] = ACTIONS(2407), + [aux_sym_cmd_identifier_token24] = ACTIONS(2407), + [aux_sym_cmd_identifier_token25] = ACTIONS(2407), + [aux_sym_cmd_identifier_token26] = ACTIONS(2407), + [aux_sym_cmd_identifier_token27] = ACTIONS(2407), + [aux_sym_cmd_identifier_token28] = ACTIONS(2407), + [aux_sym_cmd_identifier_token29] = ACTIONS(2407), + [aux_sym_cmd_identifier_token30] = ACTIONS(2407), + [aux_sym_cmd_identifier_token31] = ACTIONS(2407), + [aux_sym_cmd_identifier_token32] = ACTIONS(2407), + [aux_sym_cmd_identifier_token33] = ACTIONS(2407), + [aux_sym_cmd_identifier_token34] = ACTIONS(2407), + [aux_sym_cmd_identifier_token35] = ACTIONS(2407), + [aux_sym_cmd_identifier_token36] = ACTIONS(2407), + [aux_sym_cmd_identifier_token37] = ACTIONS(2407), + [aux_sym_cmd_identifier_token38] = ACTIONS(2407), + [aux_sym_cmd_identifier_token39] = ACTIONS(2407), + [aux_sym_cmd_identifier_token40] = ACTIONS(2407), + [anon_sym_def] = ACTIONS(2407), + [anon_sym_export_DASHenv] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym_module] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2407), + [anon_sym_error] = ACTIONS(2407), + [anon_sym_DASH2] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_in2] = ACTIONS(2407), + [anon_sym_loop] = ACTIONS(2407), + [anon_sym_make] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_catch] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_source] = ACTIONS(2407), + [anon_sym_source_DASHenv] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_hide] = ACTIONS(2407), + [anon_sym_hide_DASHenv] = ACTIONS(2407), + [anon_sym_overlay] = ACTIONS(2407), + [anon_sym_as] = ACTIONS(2407), + [anon_sym_PLUS2] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2407), + [aux_sym__val_number_decimal_token2] = ACTIONS(2407), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [aux_sym__val_number_token1] = ACTIONS(2407), + [aux_sym__val_number_token2] = ACTIONS(2407), + [aux_sym__val_number_token3] = ACTIONS(2407), + [aux_sym__val_number_token4] = ACTIONS(2407), + [aux_sym__val_number_token5] = ACTIONS(2407), + [aux_sym__val_number_token6] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym__str_single_quotes] = ACTIONS(2407), + [sym__str_back_ticks] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2407), + [sym__entry_separator] = ACTIONS(2409), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2347), + [sym_raw_string_begin] = ACTIONS(2409), }, - [540] = { - [sym_comment] = STATE(540), - [aux_sym__multiple_types_repeat1] = STATE(516), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_alias] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_let_DASHenv] = ACTIONS(2341), - [anon_sym_mut] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), + [644] = { + [sym_comment] = STATE(644), + [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(2341), [aux_sym_cmd_identifier_token3] = ACTIONS(2341), [aux_sym_cmd_identifier_token4] = ACTIONS(2341), [aux_sym_cmd_identifier_token5] = ACTIONS(2341), [aux_sym_cmd_identifier_token6] = ACTIONS(2341), [aux_sym_cmd_identifier_token7] = ACTIONS(2341), - [aux_sym_cmd_identifier_token8] = ACTIONS(2341), - [aux_sym_cmd_identifier_token9] = ACTIONS(2341), + [aux_sym_cmd_identifier_token8] = ACTIONS(2337), + [aux_sym_cmd_identifier_token9] = ACTIONS(2337), [aux_sym_cmd_identifier_token10] = ACTIONS(2341), [aux_sym_cmd_identifier_token11] = ACTIONS(2341), - [aux_sym_cmd_identifier_token12] = ACTIONS(2341), - [aux_sym_cmd_identifier_token13] = ACTIONS(2341), - [aux_sym_cmd_identifier_token14] = ACTIONS(2341), - [aux_sym_cmd_identifier_token15] = ACTIONS(2341), + [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(2341), [aux_sym_cmd_identifier_token17] = ACTIONS(2341), [aux_sym_cmd_identifier_token18] = ACTIONS(2341), @@ -137223,191 +144336,1488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2341), [aux_sym_cmd_identifier_token32] = ACTIONS(2341), [aux_sym_cmd_identifier_token33] = ACTIONS(2341), - [aux_sym_cmd_identifier_token34] = ACTIONS(2341), + [aux_sym_cmd_identifier_token34] = ACTIONS(2337), [aux_sym_cmd_identifier_token35] = ACTIONS(2341), [aux_sym_cmd_identifier_token36] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2341), - [aux_sym_cmd_identifier_token38] = ACTIONS(2341), + [aux_sym_cmd_identifier_token37] = ACTIONS(2341), + [aux_sym_cmd_identifier_token38] = ACTIONS(2337), [aux_sym_cmd_identifier_token39] = ACTIONS(2341), [aux_sym_cmd_identifier_token40] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2341), - [anon_sym_export_DASHenv] = ACTIONS(2341), - [anon_sym_extern] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), + [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(2341), [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_error] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_make] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_catch] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_source] = ACTIONS(2341), - [anon_sym_source_DASHenv] = ACTIONS(2341), - [anon_sym_register] = ACTIONS(2341), - [anon_sym_hide] = ACTIONS(2341), - [anon_sym_hide_DASHenv] = ACTIONS(2341), - [anon_sym_overlay] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), + [anon_sym_error] = ACTIONS(2337), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_in2] = 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(2341), + [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_as] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2337), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), - [aux_sym__val_number_decimal_token1] = ACTIONS(2341), + [aux_sym__val_number_decimal_token1] = ACTIONS(2337), [aux_sym__val_number_decimal_token2] = ACTIONS(2341), [aux_sym__val_number_decimal_token3] = ACTIONS(2341), [aux_sym__val_number_decimal_token4] = ACTIONS(2341), [aux_sym__val_number_token1] = ACTIONS(2341), [aux_sym__val_number_token2] = ACTIONS(2341), [aux_sym__val_number_token3] = ACTIONS(2341), + [aux_sym__val_number_token4] = ACTIONS(2337), + [aux_sym__val_number_token5] = ACTIONS(2337), + [aux_sym__val_number_token6] = ACTIONS(2337), + [anon_sym_LBRACK2] = ACTIONS(2411), [anon_sym_DQUOTE] = ACTIONS(2341), [sym__str_single_quotes] = ACTIONS(2341), [sym__str_back_ticks] = ACTIONS(2341), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), - [sym__entry_separator] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2341), + }, + [645] = { + [sym_comment] = STATE(645), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_alias] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_let_DASHenv] = ACTIONS(2413), + [anon_sym_mut] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [aux_sym_cmd_identifier_token1] = ACTIONS(2413), + [aux_sym_cmd_identifier_token2] = ACTIONS(2413), + [aux_sym_cmd_identifier_token3] = ACTIONS(2413), + [aux_sym_cmd_identifier_token4] = ACTIONS(2413), + [aux_sym_cmd_identifier_token5] = ACTIONS(2413), + [aux_sym_cmd_identifier_token6] = ACTIONS(2413), + [aux_sym_cmd_identifier_token7] = ACTIONS(2413), + [aux_sym_cmd_identifier_token8] = ACTIONS(2413), + [aux_sym_cmd_identifier_token9] = ACTIONS(2413), + [aux_sym_cmd_identifier_token10] = ACTIONS(2413), + [aux_sym_cmd_identifier_token11] = ACTIONS(2413), + [aux_sym_cmd_identifier_token12] = ACTIONS(2413), + [aux_sym_cmd_identifier_token13] = ACTIONS(2413), + [aux_sym_cmd_identifier_token14] = ACTIONS(2413), + [aux_sym_cmd_identifier_token15] = ACTIONS(2413), + [aux_sym_cmd_identifier_token16] = ACTIONS(2413), + [aux_sym_cmd_identifier_token17] = ACTIONS(2413), + [aux_sym_cmd_identifier_token18] = ACTIONS(2413), + [aux_sym_cmd_identifier_token19] = ACTIONS(2413), + [aux_sym_cmd_identifier_token20] = ACTIONS(2413), + [aux_sym_cmd_identifier_token21] = ACTIONS(2413), + [aux_sym_cmd_identifier_token22] = ACTIONS(2413), + [aux_sym_cmd_identifier_token23] = ACTIONS(2413), + [aux_sym_cmd_identifier_token24] = ACTIONS(2413), + [aux_sym_cmd_identifier_token25] = ACTIONS(2413), + [aux_sym_cmd_identifier_token26] = ACTIONS(2413), + [aux_sym_cmd_identifier_token27] = ACTIONS(2413), + [aux_sym_cmd_identifier_token28] = ACTIONS(2413), + [aux_sym_cmd_identifier_token29] = ACTIONS(2413), + [aux_sym_cmd_identifier_token30] = ACTIONS(2413), + [aux_sym_cmd_identifier_token31] = ACTIONS(2413), + [aux_sym_cmd_identifier_token32] = ACTIONS(2413), + [aux_sym_cmd_identifier_token33] = ACTIONS(2413), + [aux_sym_cmd_identifier_token34] = ACTIONS(2413), + [aux_sym_cmd_identifier_token35] = ACTIONS(2413), + [aux_sym_cmd_identifier_token36] = ACTIONS(2413), + [aux_sym_cmd_identifier_token37] = ACTIONS(2413), + [aux_sym_cmd_identifier_token38] = ACTIONS(2413), + [aux_sym_cmd_identifier_token39] = ACTIONS(2413), + [aux_sym_cmd_identifier_token40] = ACTIONS(2413), + [anon_sym_def] = ACTIONS(2413), + [anon_sym_export_DASHenv] = ACTIONS(2413), + [anon_sym_extern] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_error] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_in2] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_make] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_else] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_catch] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_source] = ACTIONS(2413), + [anon_sym_source_DASHenv] = ACTIONS(2413), + [anon_sym_register] = ACTIONS(2413), + [anon_sym_hide] = ACTIONS(2413), + [anon_sym_hide_DASHenv] = ACTIONS(2413), + [anon_sym_overlay] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2413), + [aux_sym__val_number_decimal_token1] = ACTIONS(2413), + [aux_sym__val_number_decimal_token2] = ACTIONS(2413), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(2413), + [aux_sym__val_number_token2] = ACTIONS(2413), + [aux_sym__val_number_token3] = ACTIONS(2413), + [aux_sym__val_number_token4] = ACTIONS(2413), + [aux_sym__val_number_token5] = ACTIONS(2413), + [aux_sym__val_number_token6] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym__str_single_quotes] = ACTIONS(2413), + [sym__str_back_ticks] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2413), + [sym__entry_separator] = ACTIONS(2415), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2347), + [sym_raw_string_begin] = ACTIONS(2415), }, - [541] = { - [sym_comment] = STATE(541), - [anon_sym_export] = ACTIONS(1842), - [anon_sym_alias] = ACTIONS(1842), - [anon_sym_let] = ACTIONS(1842), - [anon_sym_let_DASHenv] = ACTIONS(1842), - [anon_sym_mut] = ACTIONS(1842), - [anon_sym_const] = ACTIONS(1842), - [aux_sym_cmd_identifier_token1] = ACTIONS(1842), - [aux_sym_cmd_identifier_token2] = ACTIONS(1842), - [aux_sym_cmd_identifier_token3] = ACTIONS(1842), - [aux_sym_cmd_identifier_token4] = ACTIONS(1842), - [aux_sym_cmd_identifier_token5] = ACTIONS(1842), - [aux_sym_cmd_identifier_token6] = ACTIONS(1842), - [aux_sym_cmd_identifier_token7] = ACTIONS(1842), - [aux_sym_cmd_identifier_token8] = ACTIONS(1842), - [aux_sym_cmd_identifier_token9] = ACTIONS(1842), - [aux_sym_cmd_identifier_token10] = ACTIONS(1842), - [aux_sym_cmd_identifier_token11] = ACTIONS(1842), - [aux_sym_cmd_identifier_token12] = ACTIONS(1842), - [aux_sym_cmd_identifier_token13] = ACTIONS(1842), - [aux_sym_cmd_identifier_token14] = ACTIONS(1842), - [aux_sym_cmd_identifier_token15] = ACTIONS(1842), - [aux_sym_cmd_identifier_token16] = ACTIONS(1842), - [aux_sym_cmd_identifier_token17] = ACTIONS(1842), - [aux_sym_cmd_identifier_token18] = ACTIONS(1842), - [aux_sym_cmd_identifier_token19] = ACTIONS(1842), - [aux_sym_cmd_identifier_token20] = ACTIONS(1842), - [aux_sym_cmd_identifier_token21] = ACTIONS(1842), - [aux_sym_cmd_identifier_token22] = ACTIONS(1842), - [aux_sym_cmd_identifier_token23] = ACTIONS(1842), - [aux_sym_cmd_identifier_token24] = ACTIONS(1842), - [aux_sym_cmd_identifier_token25] = ACTIONS(1842), - [aux_sym_cmd_identifier_token26] = ACTIONS(1842), - [aux_sym_cmd_identifier_token27] = ACTIONS(1842), - [aux_sym_cmd_identifier_token28] = ACTIONS(1842), - [aux_sym_cmd_identifier_token29] = ACTIONS(1842), - [aux_sym_cmd_identifier_token30] = ACTIONS(1842), - [aux_sym_cmd_identifier_token31] = ACTIONS(1842), - [aux_sym_cmd_identifier_token32] = ACTIONS(1842), - [aux_sym_cmd_identifier_token33] = ACTIONS(1842), - [aux_sym_cmd_identifier_token34] = ACTIONS(1842), - [aux_sym_cmd_identifier_token35] = ACTIONS(1842), - [aux_sym_cmd_identifier_token36] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1850), - [anon_sym_false] = ACTIONS(1850), - [anon_sym_null] = ACTIONS(1850), - [aux_sym_cmd_identifier_token38] = ACTIONS(1842), - [aux_sym_cmd_identifier_token39] = ACTIONS(1850), - [aux_sym_cmd_identifier_token40] = ACTIONS(1850), - [anon_sym_def] = ACTIONS(1842), - [anon_sym_export_DASHenv] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1842), - [anon_sym_module] = ACTIONS(1842), - [anon_sym_use] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1850), - [anon_sym_error] = ACTIONS(1842), - [anon_sym_list] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_in] = ACTIONS(1842), - [anon_sym_loop] = ACTIONS(1842), - [anon_sym_make] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_else] = ACTIONS(1842), - [anon_sym_match] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_try] = ACTIONS(1842), - [anon_sym_catch] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_source] = ACTIONS(1842), - [anon_sym_source_DASHenv] = ACTIONS(1842), - [anon_sym_register] = ACTIONS(1842), - [anon_sym_hide] = ACTIONS(1842), - [anon_sym_hide_DASHenv] = ACTIONS(1842), - [anon_sym_overlay] = ACTIONS(1842), - [anon_sym_new] = ACTIONS(1842), - [anon_sym_as] = ACTIONS(1842), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1850), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1850), - [aux_sym__val_number_decimal_token1] = ACTIONS(1842), - [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(1842), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1850), + [646] = { + [sym_comment] = STATE(646), + [anon_sym_export] = ACTIONS(2417), + [anon_sym_alias] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_let_DASHenv] = ACTIONS(2417), + [anon_sym_mut] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [aux_sym_cmd_identifier_token1] = ACTIONS(2417), + [aux_sym_cmd_identifier_token2] = ACTIONS(2417), + [aux_sym_cmd_identifier_token3] = ACTIONS(2417), + [aux_sym_cmd_identifier_token4] = ACTIONS(2417), + [aux_sym_cmd_identifier_token5] = ACTIONS(2417), + [aux_sym_cmd_identifier_token6] = ACTIONS(2417), + [aux_sym_cmd_identifier_token7] = ACTIONS(2417), + [aux_sym_cmd_identifier_token8] = ACTIONS(2417), + [aux_sym_cmd_identifier_token9] = ACTIONS(2417), + [aux_sym_cmd_identifier_token10] = ACTIONS(2417), + [aux_sym_cmd_identifier_token11] = ACTIONS(2417), + [aux_sym_cmd_identifier_token12] = ACTIONS(2417), + [aux_sym_cmd_identifier_token13] = ACTIONS(2417), + [aux_sym_cmd_identifier_token14] = ACTIONS(2417), + [aux_sym_cmd_identifier_token15] = ACTIONS(2417), + [aux_sym_cmd_identifier_token16] = ACTIONS(2417), + [aux_sym_cmd_identifier_token17] = ACTIONS(2417), + [aux_sym_cmd_identifier_token18] = ACTIONS(2417), + [aux_sym_cmd_identifier_token19] = ACTIONS(2417), + [aux_sym_cmd_identifier_token20] = ACTIONS(2417), + [aux_sym_cmd_identifier_token21] = ACTIONS(2417), + [aux_sym_cmd_identifier_token22] = ACTIONS(2417), + [aux_sym_cmd_identifier_token23] = ACTIONS(2417), + [aux_sym_cmd_identifier_token24] = ACTIONS(2417), + [aux_sym_cmd_identifier_token25] = ACTIONS(2417), + [aux_sym_cmd_identifier_token26] = ACTIONS(2417), + [aux_sym_cmd_identifier_token27] = ACTIONS(2417), + [aux_sym_cmd_identifier_token28] = ACTIONS(2417), + [aux_sym_cmd_identifier_token29] = ACTIONS(2417), + [aux_sym_cmd_identifier_token30] = ACTIONS(2417), + [aux_sym_cmd_identifier_token31] = ACTIONS(2417), + [aux_sym_cmd_identifier_token32] = ACTIONS(2417), + [aux_sym_cmd_identifier_token33] = ACTIONS(2417), + [aux_sym_cmd_identifier_token34] = ACTIONS(2417), + [aux_sym_cmd_identifier_token35] = ACTIONS(2417), + [aux_sym_cmd_identifier_token36] = ACTIONS(2417), + [aux_sym_cmd_identifier_token37] = ACTIONS(2417), + [aux_sym_cmd_identifier_token38] = ACTIONS(2417), + [aux_sym_cmd_identifier_token39] = ACTIONS(2417), + [aux_sym_cmd_identifier_token40] = ACTIONS(2417), + [anon_sym_def] = ACTIONS(2417), + [anon_sym_export_DASHenv] = ACTIONS(2417), + [anon_sym_extern] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_DOLLAR] = ACTIONS(2417), + [anon_sym_error] = ACTIONS(2417), + [anon_sym_DASH2] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_in2] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_make] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_else] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_catch] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_source] = ACTIONS(2417), + [anon_sym_source_DASHenv] = ACTIONS(2417), + [anon_sym_register] = ACTIONS(2417), + [anon_sym_hide] = ACTIONS(2417), + [anon_sym_hide_DASHenv] = ACTIONS(2417), + [anon_sym_overlay] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_PLUS2] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2417), + [aux_sym__val_number_decimal_token1] = ACTIONS(2417), + [aux_sym__val_number_decimal_token2] = ACTIONS(2417), + [aux_sym__val_number_decimal_token3] = ACTIONS(2417), + [aux_sym__val_number_decimal_token4] = ACTIONS(2417), + [aux_sym__val_number_token1] = ACTIONS(2417), + [aux_sym__val_number_token2] = ACTIONS(2417), + [aux_sym__val_number_token3] = ACTIONS(2417), + [aux_sym__val_number_token4] = ACTIONS(2417), + [aux_sym__val_number_token5] = ACTIONS(2417), + [aux_sym__val_number_token6] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2417), + [sym__str_single_quotes] = ACTIONS(2417), + [sym__str_back_ticks] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2417), + [sym__entry_separator] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2419), }, - [542] = { - [sym_comment] = STATE(542), - [anon_sym_export] = ACTIONS(2335), - [anon_sym_alias] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2335), - [anon_sym_let_DASHenv] = ACTIONS(2335), - [anon_sym_mut] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [aux_sym_cmd_identifier_token1] = ACTIONS(2335), + [647] = { + [sym_comment] = STATE(647), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_alias] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1988), + [anon_sym_let_DASHenv] = ACTIONS(1988), + [anon_sym_mut] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [aux_sym_cmd_identifier_token1] = ACTIONS(1988), + [aux_sym_cmd_identifier_token2] = ACTIONS(1988), + [aux_sym_cmd_identifier_token3] = ACTIONS(1988), + [aux_sym_cmd_identifier_token4] = ACTIONS(1988), + [aux_sym_cmd_identifier_token5] = ACTIONS(1988), + [aux_sym_cmd_identifier_token6] = ACTIONS(1988), + [aux_sym_cmd_identifier_token7] = ACTIONS(1988), + [aux_sym_cmd_identifier_token8] = ACTIONS(1988), + [aux_sym_cmd_identifier_token9] = ACTIONS(1988), + [aux_sym_cmd_identifier_token10] = ACTIONS(1988), + [aux_sym_cmd_identifier_token11] = ACTIONS(1988), + [aux_sym_cmd_identifier_token12] = ACTIONS(1988), + [aux_sym_cmd_identifier_token13] = ACTIONS(1988), + [aux_sym_cmd_identifier_token14] = ACTIONS(1988), + [aux_sym_cmd_identifier_token15] = ACTIONS(1988), + [aux_sym_cmd_identifier_token16] = ACTIONS(1988), + [aux_sym_cmd_identifier_token17] = ACTIONS(1988), + [aux_sym_cmd_identifier_token18] = ACTIONS(1988), + [aux_sym_cmd_identifier_token19] = ACTIONS(1988), + [aux_sym_cmd_identifier_token20] = ACTIONS(1988), + [aux_sym_cmd_identifier_token21] = ACTIONS(1988), + [aux_sym_cmd_identifier_token22] = ACTIONS(1988), + [aux_sym_cmd_identifier_token23] = ACTIONS(1988), + [aux_sym_cmd_identifier_token24] = ACTIONS(1988), + [aux_sym_cmd_identifier_token25] = ACTIONS(1988), + [aux_sym_cmd_identifier_token26] = ACTIONS(1988), + [aux_sym_cmd_identifier_token27] = ACTIONS(1988), + [aux_sym_cmd_identifier_token28] = ACTIONS(1988), + [aux_sym_cmd_identifier_token29] = ACTIONS(1988), + [aux_sym_cmd_identifier_token30] = ACTIONS(1988), + [aux_sym_cmd_identifier_token31] = ACTIONS(1988), + [aux_sym_cmd_identifier_token32] = ACTIONS(1988), + [aux_sym_cmd_identifier_token33] = ACTIONS(1988), + [aux_sym_cmd_identifier_token34] = ACTIONS(1988), + [aux_sym_cmd_identifier_token35] = ACTIONS(1988), + [aux_sym_cmd_identifier_token36] = ACTIONS(1988), + [aux_sym_cmd_identifier_token37] = ACTIONS(1988), + [aux_sym_cmd_identifier_token38] = ACTIONS(1988), + [aux_sym_cmd_identifier_token39] = ACTIONS(1988), + [aux_sym_cmd_identifier_token40] = ACTIONS(1988), + [anon_sym_def] = ACTIONS(1988), + [anon_sym_export_DASHenv] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym_module] = ACTIONS(1988), + [anon_sym_use] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(1988), + [anon_sym_error] = ACTIONS(1988), + [anon_sym_DASH2] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_in2] = ACTIONS(1988), + [anon_sym_loop] = ACTIONS(1988), + [anon_sym_make] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_do] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1988), + [anon_sym_match] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1988), + [anon_sym_catch] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_source] = ACTIONS(1988), + [anon_sym_source_DASHenv] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1988), + [anon_sym_hide] = ACTIONS(1988), + [anon_sym_hide_DASHenv] = ACTIONS(1988), + [anon_sym_overlay] = ACTIONS(1988), + [anon_sym_as] = ACTIONS(1988), + [anon_sym_PLUS2] = ACTIONS(1988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1988), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1988), + [aux_sym__val_number_decimal_token1] = ACTIONS(1988), + [aux_sym__val_number_decimal_token2] = ACTIONS(1988), + [aux_sym__val_number_decimal_token3] = ACTIONS(1988), + [aux_sym__val_number_decimal_token4] = ACTIONS(1988), + [aux_sym__val_number_token1] = ACTIONS(1988), + [aux_sym__val_number_token2] = ACTIONS(1988), + [aux_sym__val_number_token3] = ACTIONS(1988), + [aux_sym__val_number_token4] = ACTIONS(1988), + [aux_sym__val_number_token5] = ACTIONS(1988), + [aux_sym__val_number_token6] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1988), + [sym__str_single_quotes] = ACTIONS(1988), + [sym__str_back_ticks] = ACTIONS(1988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1988), + [sym__entry_separator] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1990), + }, + [648] = { + [sym_comment] = STATE(648), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_alias] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_let_DASHenv] = ACTIONS(2167), + [anon_sym_mut] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [aux_sym_cmd_identifier_token1] = ACTIONS(2167), + [aux_sym_cmd_identifier_token2] = ACTIONS(2167), + [aux_sym_cmd_identifier_token3] = ACTIONS(2167), + [aux_sym_cmd_identifier_token4] = ACTIONS(2167), + [aux_sym_cmd_identifier_token5] = ACTIONS(2167), + [aux_sym_cmd_identifier_token6] = ACTIONS(2167), + [aux_sym_cmd_identifier_token7] = ACTIONS(2167), + [aux_sym_cmd_identifier_token8] = ACTIONS(2167), + [aux_sym_cmd_identifier_token9] = ACTIONS(2167), + [aux_sym_cmd_identifier_token10] = ACTIONS(2167), + [aux_sym_cmd_identifier_token11] = ACTIONS(2167), + [aux_sym_cmd_identifier_token12] = ACTIONS(2167), + [aux_sym_cmd_identifier_token13] = ACTIONS(2167), + [aux_sym_cmd_identifier_token14] = ACTIONS(2167), + [aux_sym_cmd_identifier_token15] = ACTIONS(2167), + [aux_sym_cmd_identifier_token16] = ACTIONS(2167), + [aux_sym_cmd_identifier_token17] = ACTIONS(2167), + [aux_sym_cmd_identifier_token18] = ACTIONS(2167), + [aux_sym_cmd_identifier_token19] = ACTIONS(2167), + [aux_sym_cmd_identifier_token20] = ACTIONS(2167), + [aux_sym_cmd_identifier_token21] = ACTIONS(2167), + [aux_sym_cmd_identifier_token22] = ACTIONS(2167), + [aux_sym_cmd_identifier_token23] = ACTIONS(2167), + [aux_sym_cmd_identifier_token24] = ACTIONS(2167), + [aux_sym_cmd_identifier_token25] = ACTIONS(2167), + [aux_sym_cmd_identifier_token26] = ACTIONS(2167), + [aux_sym_cmd_identifier_token27] = ACTIONS(2167), + [aux_sym_cmd_identifier_token28] = ACTIONS(2167), + [aux_sym_cmd_identifier_token29] = ACTIONS(2167), + [aux_sym_cmd_identifier_token30] = ACTIONS(2167), + [aux_sym_cmd_identifier_token31] = ACTIONS(2167), + [aux_sym_cmd_identifier_token32] = ACTIONS(2167), + [aux_sym_cmd_identifier_token33] = ACTIONS(2167), + [aux_sym_cmd_identifier_token34] = ACTIONS(2167), + [aux_sym_cmd_identifier_token35] = ACTIONS(2167), + [aux_sym_cmd_identifier_token36] = ACTIONS(2167), + [aux_sym_cmd_identifier_token37] = ACTIONS(2167), + [aux_sym_cmd_identifier_token38] = ACTIONS(2167), + [aux_sym_cmd_identifier_token39] = ACTIONS(2167), + [aux_sym_cmd_identifier_token40] = ACTIONS(2167), + [anon_sym_def] = ACTIONS(2167), + [anon_sym_export_DASHenv] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_use] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2167), + [anon_sym_error] = ACTIONS(2167), + [anon_sym_DASH2] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_in2] = ACTIONS(2167), + [anon_sym_loop] = ACTIONS(2167), + [anon_sym_make] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_catch] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_source] = ACTIONS(2167), + [anon_sym_source_DASHenv] = ACTIONS(2167), + [anon_sym_register] = ACTIONS(2167), + [anon_sym_hide] = ACTIONS(2167), + [anon_sym_hide_DASHenv] = ACTIONS(2167), + [anon_sym_overlay] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_PLUS2] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2167), + [aux_sym__val_number_decimal_token1] = ACTIONS(2167), + [aux_sym__val_number_decimal_token2] = ACTIONS(2167), + [aux_sym__val_number_decimal_token3] = ACTIONS(2167), + [aux_sym__val_number_decimal_token4] = ACTIONS(2167), + [aux_sym__val_number_token1] = ACTIONS(2167), + [aux_sym__val_number_token2] = ACTIONS(2167), + [aux_sym__val_number_token3] = ACTIONS(2167), + [aux_sym__val_number_token4] = ACTIONS(2167), + [aux_sym__val_number_token5] = ACTIONS(2167), + [aux_sym__val_number_token6] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [sym__str_single_quotes] = ACTIONS(2167), + [sym__str_back_ticks] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2167), + [sym__entry_separator] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2173), + }, + [649] = { + [sym_comment] = STATE(649), + [anon_sym_export] = ACTIONS(2421), + [anon_sym_alias] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_let_DASHenv] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [aux_sym_cmd_identifier_token1] = ACTIONS(2421), + [aux_sym_cmd_identifier_token2] = ACTIONS(2421), + [aux_sym_cmd_identifier_token3] = ACTIONS(2421), + [aux_sym_cmd_identifier_token4] = ACTIONS(2421), + [aux_sym_cmd_identifier_token5] = ACTIONS(2421), + [aux_sym_cmd_identifier_token6] = ACTIONS(2421), + [aux_sym_cmd_identifier_token7] = ACTIONS(2421), + [aux_sym_cmd_identifier_token8] = ACTIONS(2421), + [aux_sym_cmd_identifier_token9] = ACTIONS(2421), + [aux_sym_cmd_identifier_token10] = ACTIONS(2421), + [aux_sym_cmd_identifier_token11] = ACTIONS(2421), + [aux_sym_cmd_identifier_token12] = ACTIONS(2421), + [aux_sym_cmd_identifier_token13] = ACTIONS(2421), + [aux_sym_cmd_identifier_token14] = ACTIONS(2421), + [aux_sym_cmd_identifier_token15] = ACTIONS(2421), + [aux_sym_cmd_identifier_token16] = ACTIONS(2421), + [aux_sym_cmd_identifier_token17] = ACTIONS(2421), + [aux_sym_cmd_identifier_token18] = ACTIONS(2421), + [aux_sym_cmd_identifier_token19] = ACTIONS(2421), + [aux_sym_cmd_identifier_token20] = ACTIONS(2421), + [aux_sym_cmd_identifier_token21] = ACTIONS(2421), + [aux_sym_cmd_identifier_token22] = ACTIONS(2421), + [aux_sym_cmd_identifier_token23] = ACTIONS(2421), + [aux_sym_cmd_identifier_token24] = ACTIONS(2421), + [aux_sym_cmd_identifier_token25] = ACTIONS(2421), + [aux_sym_cmd_identifier_token26] = ACTIONS(2421), + [aux_sym_cmd_identifier_token27] = ACTIONS(2421), + [aux_sym_cmd_identifier_token28] = ACTIONS(2421), + [aux_sym_cmd_identifier_token29] = ACTIONS(2421), + [aux_sym_cmd_identifier_token30] = ACTIONS(2421), + [aux_sym_cmd_identifier_token31] = ACTIONS(2421), + [aux_sym_cmd_identifier_token32] = ACTIONS(2421), + [aux_sym_cmd_identifier_token33] = ACTIONS(2421), + [aux_sym_cmd_identifier_token34] = ACTIONS(2421), + [aux_sym_cmd_identifier_token35] = ACTIONS(2421), + [aux_sym_cmd_identifier_token36] = ACTIONS(2421), + [aux_sym_cmd_identifier_token37] = ACTIONS(2421), + [aux_sym_cmd_identifier_token38] = ACTIONS(2421), + [aux_sym_cmd_identifier_token39] = ACTIONS(2421), + [aux_sym_cmd_identifier_token40] = ACTIONS(2421), + [anon_sym_def] = ACTIONS(2421), + [anon_sym_export_DASHenv] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_error] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_in2] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_make] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_else] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_catch] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_source] = ACTIONS(2421), + [anon_sym_source_DASHenv] = ACTIONS(2421), + [anon_sym_register] = ACTIONS(2421), + [anon_sym_hide] = ACTIONS(2421), + [anon_sym_hide_DASHenv] = ACTIONS(2421), + [anon_sym_overlay] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2421), + [aux_sym__val_number_decimal_token1] = ACTIONS(2421), + [aux_sym__val_number_decimal_token2] = ACTIONS(2421), + [aux_sym__val_number_decimal_token3] = ACTIONS(2421), + [aux_sym__val_number_decimal_token4] = ACTIONS(2421), + [aux_sym__val_number_token1] = ACTIONS(2421), + [aux_sym__val_number_token2] = ACTIONS(2421), + [aux_sym__val_number_token3] = ACTIONS(2421), + [aux_sym__val_number_token4] = ACTIONS(2421), + [aux_sym__val_number_token5] = ACTIONS(2421), + [aux_sym__val_number_token6] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym__str_single_quotes] = ACTIONS(2421), + [sym__str_back_ticks] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2421), + [sym__entry_separator] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2423), + }, + [650] = { + [sym_comment] = STATE(650), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_alias] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_let_DASHenv] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [aux_sym_cmd_identifier_token1] = ACTIONS(2175), + [aux_sym_cmd_identifier_token2] = ACTIONS(2175), + [aux_sym_cmd_identifier_token3] = ACTIONS(2175), + [aux_sym_cmd_identifier_token4] = ACTIONS(2175), + [aux_sym_cmd_identifier_token5] = ACTIONS(2175), + [aux_sym_cmd_identifier_token6] = ACTIONS(2175), + [aux_sym_cmd_identifier_token7] = ACTIONS(2175), + [aux_sym_cmd_identifier_token8] = ACTIONS(2175), + [aux_sym_cmd_identifier_token9] = ACTIONS(2175), + [aux_sym_cmd_identifier_token10] = ACTIONS(2175), + [aux_sym_cmd_identifier_token11] = ACTIONS(2175), + [aux_sym_cmd_identifier_token12] = ACTIONS(2175), + [aux_sym_cmd_identifier_token13] = ACTIONS(2175), + [aux_sym_cmd_identifier_token14] = ACTIONS(2175), + [aux_sym_cmd_identifier_token15] = ACTIONS(2175), + [aux_sym_cmd_identifier_token16] = ACTIONS(2175), + [aux_sym_cmd_identifier_token17] = ACTIONS(2175), + [aux_sym_cmd_identifier_token18] = ACTIONS(2175), + [aux_sym_cmd_identifier_token19] = ACTIONS(2175), + [aux_sym_cmd_identifier_token20] = ACTIONS(2175), + [aux_sym_cmd_identifier_token21] = ACTIONS(2175), + [aux_sym_cmd_identifier_token22] = ACTIONS(2175), + [aux_sym_cmd_identifier_token23] = ACTIONS(2175), + [aux_sym_cmd_identifier_token24] = ACTIONS(2175), + [aux_sym_cmd_identifier_token25] = ACTIONS(2175), + [aux_sym_cmd_identifier_token26] = ACTIONS(2175), + [aux_sym_cmd_identifier_token27] = ACTIONS(2175), + [aux_sym_cmd_identifier_token28] = ACTIONS(2175), + [aux_sym_cmd_identifier_token29] = ACTIONS(2175), + [aux_sym_cmd_identifier_token30] = ACTIONS(2175), + [aux_sym_cmd_identifier_token31] = ACTIONS(2175), + [aux_sym_cmd_identifier_token32] = ACTIONS(2175), + [aux_sym_cmd_identifier_token33] = ACTIONS(2175), + [aux_sym_cmd_identifier_token34] = ACTIONS(2175), + [aux_sym_cmd_identifier_token35] = ACTIONS(2175), + [aux_sym_cmd_identifier_token36] = ACTIONS(2175), + [aux_sym_cmd_identifier_token37] = ACTIONS(2175), + [aux_sym_cmd_identifier_token38] = ACTIONS(2175), + [aux_sym_cmd_identifier_token39] = ACTIONS(2175), + [aux_sym_cmd_identifier_token40] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2175), + [anon_sym_export_DASHenv] = ACTIONS(2175), + [anon_sym_extern] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_use] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2175), + [anon_sym_error] = ACTIONS(2175), + [anon_sym_DASH2] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_in2] = ACTIONS(2175), + [anon_sym_loop] = ACTIONS(2175), + [anon_sym_make] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_catch] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_source] = ACTIONS(2175), + [anon_sym_source_DASHenv] = ACTIONS(2175), + [anon_sym_register] = ACTIONS(2175), + [anon_sym_hide] = ACTIONS(2175), + [anon_sym_hide_DASHenv] = ACTIONS(2175), + [anon_sym_overlay] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_PLUS2] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2175), + [aux_sym__val_number_decimal_token1] = ACTIONS(2175), + [aux_sym__val_number_decimal_token2] = ACTIONS(2175), + [aux_sym__val_number_decimal_token3] = ACTIONS(2175), + [aux_sym__val_number_decimal_token4] = ACTIONS(2175), + [aux_sym__val_number_token1] = ACTIONS(2175), + [aux_sym__val_number_token2] = ACTIONS(2175), + [aux_sym__val_number_token3] = ACTIONS(2175), + [aux_sym__val_number_token4] = ACTIONS(2175), + [aux_sym__val_number_token5] = ACTIONS(2175), + [aux_sym__val_number_token6] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [sym__str_single_quotes] = ACTIONS(2175), + [sym__str_back_ticks] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2175), + [sym__entry_separator] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2181), + }, + [651] = { + [sym_comment] = STATE(651), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [aux_sym_cmd_identifier_token37] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [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), + [aux_sym__val_number_token4] = ACTIONS(1709), + [aux_sym__val_number_token5] = ACTIONS(1709), + [aux_sym__val_number_token6] = ACTIONS(1709), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1721), + }, + [652] = { + [sym_comment] = STATE(652), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_alias] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_let_DASHenv] = ACTIONS(2327), + [anon_sym_mut] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [aux_sym_cmd_identifier_token1] = ACTIONS(2327), + [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(2327), + [aux_sym_cmd_identifier_token9] = ACTIONS(2327), + [aux_sym_cmd_identifier_token10] = ACTIONS(2329), + [aux_sym_cmd_identifier_token11] = ACTIONS(2329), + [aux_sym_cmd_identifier_token12] = ACTIONS(2327), + [aux_sym_cmd_identifier_token13] = ACTIONS(2327), + [aux_sym_cmd_identifier_token14] = ACTIONS(2327), + [aux_sym_cmd_identifier_token15] = ACTIONS(2327), + [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(2327), + [aux_sym_cmd_identifier_token35] = ACTIONS(2329), + [aux_sym_cmd_identifier_token36] = ACTIONS(2329), + [aux_sym_cmd_identifier_token37] = ACTIONS(2329), + [aux_sym_cmd_identifier_token38] = ACTIONS(2327), + [aux_sym_cmd_identifier_token39] = ACTIONS(2329), + [aux_sym_cmd_identifier_token40] = ACTIONS(2329), + [anon_sym_def] = ACTIONS(2327), + [anon_sym_export_DASHenv] = ACTIONS(2327), + [anon_sym_extern] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_use] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_DOLLAR] = ACTIONS(2329), + [anon_sym_error] = ACTIONS(2327), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_in2] = ACTIONS(2327), + [anon_sym_loop] = ACTIONS(2327), + [anon_sym_make] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_else] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2329), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_catch] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_source] = ACTIONS(2327), + [anon_sym_source_DASHenv] = ACTIONS(2327), + [anon_sym_register] = ACTIONS(2327), + [anon_sym_hide] = ACTIONS(2327), + [anon_sym_hide_DASHenv] = ACTIONS(2327), + [anon_sym_overlay] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(2329), + [anon_sym_PLUS2] = ACTIONS(2327), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2329), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2329), + [aux_sym__val_number_decimal_token1] = ACTIONS(2327), + [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), + [aux_sym__val_number_token4] = ACTIONS(2327), + [aux_sym__val_number_token5] = ACTIONS(2327), + [aux_sym__val_number_token6] = ACTIONS(2327), + [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), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2329), + }, + [653] = { + [sym_comment] = STATE(653), + [anon_sym_export] = ACTIONS(1992), + [anon_sym_alias] = ACTIONS(1992), + [anon_sym_let] = ACTIONS(1992), + [anon_sym_let_DASHenv] = ACTIONS(1992), + [anon_sym_mut] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [aux_sym_cmd_identifier_token1] = ACTIONS(1992), + [aux_sym_cmd_identifier_token2] = ACTIONS(1992), + [aux_sym_cmd_identifier_token3] = ACTIONS(1992), + [aux_sym_cmd_identifier_token4] = ACTIONS(1992), + [aux_sym_cmd_identifier_token5] = ACTIONS(1992), + [aux_sym_cmd_identifier_token6] = ACTIONS(1992), + [aux_sym_cmd_identifier_token7] = ACTIONS(1992), + [aux_sym_cmd_identifier_token8] = ACTIONS(1992), + [aux_sym_cmd_identifier_token9] = ACTIONS(1992), + [aux_sym_cmd_identifier_token10] = ACTIONS(1992), + [aux_sym_cmd_identifier_token11] = ACTIONS(1992), + [aux_sym_cmd_identifier_token12] = ACTIONS(1992), + [aux_sym_cmd_identifier_token13] = ACTIONS(1992), + [aux_sym_cmd_identifier_token14] = ACTIONS(1992), + [aux_sym_cmd_identifier_token15] = ACTIONS(1992), + [aux_sym_cmd_identifier_token16] = ACTIONS(1992), + [aux_sym_cmd_identifier_token17] = ACTIONS(1992), + [aux_sym_cmd_identifier_token18] = ACTIONS(1992), + [aux_sym_cmd_identifier_token19] = ACTIONS(1992), + [aux_sym_cmd_identifier_token20] = ACTIONS(1992), + [aux_sym_cmd_identifier_token21] = ACTIONS(1992), + [aux_sym_cmd_identifier_token22] = ACTIONS(1992), + [aux_sym_cmd_identifier_token23] = ACTIONS(1992), + [aux_sym_cmd_identifier_token24] = ACTIONS(1992), + [aux_sym_cmd_identifier_token25] = ACTIONS(1992), + [aux_sym_cmd_identifier_token26] = ACTIONS(1992), + [aux_sym_cmd_identifier_token27] = ACTIONS(1992), + [aux_sym_cmd_identifier_token28] = ACTIONS(1992), + [aux_sym_cmd_identifier_token29] = ACTIONS(1992), + [aux_sym_cmd_identifier_token30] = ACTIONS(1992), + [aux_sym_cmd_identifier_token31] = ACTIONS(1992), + [aux_sym_cmd_identifier_token32] = ACTIONS(1992), + [aux_sym_cmd_identifier_token33] = ACTIONS(1992), + [aux_sym_cmd_identifier_token34] = ACTIONS(1992), + [aux_sym_cmd_identifier_token35] = ACTIONS(1992), + [aux_sym_cmd_identifier_token36] = ACTIONS(1992), + [aux_sym_cmd_identifier_token37] = ACTIONS(1992), + [aux_sym_cmd_identifier_token38] = ACTIONS(1992), + [aux_sym_cmd_identifier_token39] = ACTIONS(1992), + [aux_sym_cmd_identifier_token40] = ACTIONS(1992), + [anon_sym_def] = ACTIONS(1992), + [anon_sym_export_DASHenv] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym_module] = ACTIONS(1992), + [anon_sym_use] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(1992), + [anon_sym_error] = ACTIONS(1992), + [anon_sym_DASH2] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_in2] = ACTIONS(1992), + [anon_sym_loop] = ACTIONS(1992), + [anon_sym_make] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_match] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_try] = ACTIONS(1992), + [anon_sym_catch] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_source] = ACTIONS(1992), + [anon_sym_source_DASHenv] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_hide] = ACTIONS(1992), + [anon_sym_hide_DASHenv] = ACTIONS(1992), + [anon_sym_overlay] = ACTIONS(1992), + [anon_sym_as] = ACTIONS(1992), + [anon_sym_PLUS2] = ACTIONS(1992), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1992), + [aux_sym__val_number_decimal_token1] = ACTIONS(1992), + [aux_sym__val_number_decimal_token2] = ACTIONS(1992), + [aux_sym__val_number_decimal_token3] = ACTIONS(1992), + [aux_sym__val_number_decimal_token4] = ACTIONS(1992), + [aux_sym__val_number_token1] = ACTIONS(1992), + [aux_sym__val_number_token2] = ACTIONS(1992), + [aux_sym__val_number_token3] = ACTIONS(1992), + [aux_sym__val_number_token4] = ACTIONS(1992), + [aux_sym__val_number_token5] = ACTIONS(1992), + [aux_sym__val_number_token6] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1992), + [sym__str_single_quotes] = ACTIONS(1992), + [sym__str_back_ticks] = ACTIONS(1992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1992), + [sym__entry_separator] = ACTIONS(1994), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1994), + }, + [654] = { + [sym_comment] = STATE(654), + [anon_sym_export] = ACTIONS(1010), + [anon_sym_alias] = ACTIONS(1010), + [anon_sym_let] = ACTIONS(1010), + [anon_sym_let_DASHenv] = ACTIONS(1010), + [anon_sym_mut] = ACTIONS(1010), + [anon_sym_const] = ACTIONS(1010), + [aux_sym_cmd_identifier_token1] = ACTIONS(1010), + [aux_sym_cmd_identifier_token2] = ACTIONS(1012), + [aux_sym_cmd_identifier_token3] = ACTIONS(1012), + [aux_sym_cmd_identifier_token4] = ACTIONS(1012), + [aux_sym_cmd_identifier_token5] = ACTIONS(1012), + [aux_sym_cmd_identifier_token6] = ACTIONS(1012), + [aux_sym_cmd_identifier_token7] = ACTIONS(1012), + [aux_sym_cmd_identifier_token8] = ACTIONS(1010), + [aux_sym_cmd_identifier_token9] = ACTIONS(1010), + [aux_sym_cmd_identifier_token10] = ACTIONS(1012), + [aux_sym_cmd_identifier_token11] = ACTIONS(1012), + [aux_sym_cmd_identifier_token12] = ACTIONS(1010), + [aux_sym_cmd_identifier_token13] = ACTIONS(1010), + [aux_sym_cmd_identifier_token14] = ACTIONS(1010), + [aux_sym_cmd_identifier_token15] = ACTIONS(1010), + [aux_sym_cmd_identifier_token16] = ACTIONS(1012), + [aux_sym_cmd_identifier_token17] = ACTIONS(1012), + [aux_sym_cmd_identifier_token18] = ACTIONS(1012), + [aux_sym_cmd_identifier_token19] = ACTIONS(1012), + [aux_sym_cmd_identifier_token20] = ACTIONS(1012), + [aux_sym_cmd_identifier_token21] = ACTIONS(1012), + [aux_sym_cmd_identifier_token22] = ACTIONS(1012), + [aux_sym_cmd_identifier_token23] = ACTIONS(1012), + [aux_sym_cmd_identifier_token24] = ACTIONS(1012), + [aux_sym_cmd_identifier_token25] = ACTIONS(1012), + [aux_sym_cmd_identifier_token26] = ACTIONS(1012), + [aux_sym_cmd_identifier_token27] = ACTIONS(1012), + [aux_sym_cmd_identifier_token28] = ACTIONS(1012), + [aux_sym_cmd_identifier_token29] = ACTIONS(1012), + [aux_sym_cmd_identifier_token30] = ACTIONS(1012), + [aux_sym_cmd_identifier_token31] = ACTIONS(1012), + [aux_sym_cmd_identifier_token32] = ACTIONS(1012), + [aux_sym_cmd_identifier_token33] = ACTIONS(1012), + [aux_sym_cmd_identifier_token34] = ACTIONS(1010), + [aux_sym_cmd_identifier_token35] = ACTIONS(1012), + [aux_sym_cmd_identifier_token36] = ACTIONS(1012), + [aux_sym_cmd_identifier_token37] = ACTIONS(1012), + [aux_sym_cmd_identifier_token38] = ACTIONS(1010), + [aux_sym_cmd_identifier_token39] = ACTIONS(1012), + [aux_sym_cmd_identifier_token40] = ACTIONS(1012), + [anon_sym_def] = ACTIONS(1010), + [anon_sym_export_DASHenv] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1010), + [anon_sym_module] = ACTIONS(1010), + [anon_sym_use] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_error] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_break] = ACTIONS(1010), + [anon_sym_continue] = ACTIONS(1010), + [anon_sym_for] = ACTIONS(1010), + [anon_sym_in2] = ACTIONS(1010), + [anon_sym_loop] = ACTIONS(1010), + [anon_sym_make] = ACTIONS(1010), + [anon_sym_while] = ACTIONS(1010), + [anon_sym_do] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_try] = ACTIONS(1010), + [anon_sym_catch] = ACTIONS(1010), + [anon_sym_return] = ACTIONS(1010), + [anon_sym_source] = ACTIONS(1010), + [anon_sym_source_DASHenv] = ACTIONS(1010), + [anon_sym_register] = ACTIONS(1010), + [anon_sym_hide] = ACTIONS(1010), + [anon_sym_hide_DASHenv] = ACTIONS(1010), + [anon_sym_overlay] = ACTIONS(1010), + [anon_sym_as] = ACTIONS(1010), + [anon_sym_PLUS2] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), + [aux_sym__val_number_token1] = ACTIONS(1012), + [aux_sym__val_number_token2] = ACTIONS(1012), + [aux_sym__val_number_token3] = ACTIONS(1012), + [aux_sym__val_number_token4] = ACTIONS(1010), + [aux_sym__val_number_token5] = ACTIONS(1010), + [aux_sym__val_number_token6] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1012), + }, + [655] = { + [sym_comment] = STATE(655), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_alias] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_let_DASHenv] = ACTIONS(2425), + [anon_sym_mut] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [aux_sym_cmd_identifier_token1] = ACTIONS(2425), + [aux_sym_cmd_identifier_token2] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [aux_sym_cmd_identifier_token6] = ACTIONS(2425), + [aux_sym_cmd_identifier_token7] = ACTIONS(2425), + [aux_sym_cmd_identifier_token8] = ACTIONS(2425), + [aux_sym_cmd_identifier_token9] = ACTIONS(2425), + [aux_sym_cmd_identifier_token10] = ACTIONS(2425), + [aux_sym_cmd_identifier_token11] = ACTIONS(2425), + [aux_sym_cmd_identifier_token12] = ACTIONS(2425), + [aux_sym_cmd_identifier_token13] = ACTIONS(2425), + [aux_sym_cmd_identifier_token14] = ACTIONS(2425), + [aux_sym_cmd_identifier_token15] = ACTIONS(2425), + [aux_sym_cmd_identifier_token16] = ACTIONS(2425), + [aux_sym_cmd_identifier_token17] = ACTIONS(2425), + [aux_sym_cmd_identifier_token18] = ACTIONS(2425), + [aux_sym_cmd_identifier_token19] = ACTIONS(2425), + [aux_sym_cmd_identifier_token20] = ACTIONS(2425), + [aux_sym_cmd_identifier_token21] = ACTIONS(2425), + [aux_sym_cmd_identifier_token22] = ACTIONS(2425), + [aux_sym_cmd_identifier_token23] = ACTIONS(2425), + [aux_sym_cmd_identifier_token24] = ACTIONS(2425), + [aux_sym_cmd_identifier_token25] = ACTIONS(2425), + [aux_sym_cmd_identifier_token26] = ACTIONS(2425), + [aux_sym_cmd_identifier_token27] = ACTIONS(2425), + [aux_sym_cmd_identifier_token28] = ACTIONS(2425), + [aux_sym_cmd_identifier_token29] = ACTIONS(2425), + [aux_sym_cmd_identifier_token30] = ACTIONS(2425), + [aux_sym_cmd_identifier_token31] = ACTIONS(2425), + [aux_sym_cmd_identifier_token32] = ACTIONS(2425), + [aux_sym_cmd_identifier_token33] = ACTIONS(2425), + [aux_sym_cmd_identifier_token34] = ACTIONS(2425), + [aux_sym_cmd_identifier_token35] = ACTIONS(2425), + [aux_sym_cmd_identifier_token36] = ACTIONS(2425), + [aux_sym_cmd_identifier_token37] = ACTIONS(2425), + [aux_sym_cmd_identifier_token38] = ACTIONS(2425), + [aux_sym_cmd_identifier_token39] = ACTIONS(2425), + [aux_sym_cmd_identifier_token40] = ACTIONS(2425), + [anon_sym_def] = ACTIONS(2425), + [anon_sym_export_DASHenv] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2425), + [anon_sym_error] = ACTIONS(2425), + [anon_sym_DASH2] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_in2] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_make] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_catch] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_source] = ACTIONS(2425), + [anon_sym_source_DASHenv] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_hide] = ACTIONS(2425), + [anon_sym_hide_DASHenv] = ACTIONS(2425), + [anon_sym_overlay] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_PLUS2] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2425), + [aux_sym__val_number_decimal_token1] = ACTIONS(2425), + [aux_sym__val_number_decimal_token2] = ACTIONS(2425), + [aux_sym__val_number_decimal_token3] = ACTIONS(2425), + [aux_sym__val_number_decimal_token4] = ACTIONS(2425), + [aux_sym__val_number_token1] = ACTIONS(2425), + [aux_sym__val_number_token2] = ACTIONS(2425), + [aux_sym__val_number_token3] = ACTIONS(2425), + [aux_sym__val_number_token4] = ACTIONS(2425), + [aux_sym__val_number_token5] = ACTIONS(2425), + [aux_sym__val_number_token6] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [sym__str_single_quotes] = ACTIONS(2425), + [sym__str_back_ticks] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2425), + [sym__entry_separator] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2427), + }, + [656] = { + [sym_comment] = STATE(656), + [anon_sym_export] = ACTIONS(2094), + [anon_sym_alias] = ACTIONS(2094), + [anon_sym_let] = ACTIONS(2094), + [anon_sym_let_DASHenv] = ACTIONS(2094), + [anon_sym_mut] = ACTIONS(2094), + [anon_sym_const] = ACTIONS(2094), + [aux_sym_cmd_identifier_token1] = ACTIONS(2094), + [aux_sym_cmd_identifier_token2] = ACTIONS(2094), + [aux_sym_cmd_identifier_token3] = ACTIONS(2094), + [aux_sym_cmd_identifier_token4] = ACTIONS(2094), + [aux_sym_cmd_identifier_token5] = ACTIONS(2094), + [aux_sym_cmd_identifier_token6] = ACTIONS(2094), + [aux_sym_cmd_identifier_token7] = ACTIONS(2094), + [aux_sym_cmd_identifier_token8] = ACTIONS(2094), + [aux_sym_cmd_identifier_token9] = ACTIONS(2094), + [aux_sym_cmd_identifier_token10] = ACTIONS(2094), + [aux_sym_cmd_identifier_token11] = ACTIONS(2094), + [aux_sym_cmd_identifier_token12] = ACTIONS(2094), + [aux_sym_cmd_identifier_token13] = ACTIONS(2094), + [aux_sym_cmd_identifier_token14] = ACTIONS(2094), + [aux_sym_cmd_identifier_token15] = ACTIONS(2094), + [aux_sym_cmd_identifier_token16] = ACTIONS(2094), + [aux_sym_cmd_identifier_token17] = ACTIONS(2094), + [aux_sym_cmd_identifier_token18] = ACTIONS(2094), + [aux_sym_cmd_identifier_token19] = ACTIONS(2094), + [aux_sym_cmd_identifier_token20] = ACTIONS(2094), + [aux_sym_cmd_identifier_token21] = ACTIONS(2094), + [aux_sym_cmd_identifier_token22] = ACTIONS(2094), + [aux_sym_cmd_identifier_token23] = ACTIONS(2094), + [aux_sym_cmd_identifier_token24] = ACTIONS(2094), + [aux_sym_cmd_identifier_token25] = ACTIONS(2094), + [aux_sym_cmd_identifier_token26] = ACTIONS(2094), + [aux_sym_cmd_identifier_token27] = ACTIONS(2094), + [aux_sym_cmd_identifier_token28] = ACTIONS(2094), + [aux_sym_cmd_identifier_token29] = ACTIONS(2094), + [aux_sym_cmd_identifier_token30] = ACTIONS(2094), + [aux_sym_cmd_identifier_token31] = ACTIONS(2094), + [aux_sym_cmd_identifier_token32] = ACTIONS(2094), + [aux_sym_cmd_identifier_token33] = ACTIONS(2094), + [aux_sym_cmd_identifier_token34] = ACTIONS(2094), + [aux_sym_cmd_identifier_token35] = ACTIONS(2094), + [aux_sym_cmd_identifier_token36] = ACTIONS(2094), + [aux_sym_cmd_identifier_token37] = ACTIONS(2094), + [aux_sym_cmd_identifier_token38] = ACTIONS(2094), + [aux_sym_cmd_identifier_token39] = ACTIONS(2094), + [aux_sym_cmd_identifier_token40] = ACTIONS(2094), + [anon_sym_def] = ACTIONS(2094), + [anon_sym_export_DASHenv] = ACTIONS(2094), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_module] = ACTIONS(2094), + [anon_sym_use] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(2094), + [anon_sym_DOLLAR] = ACTIONS(2094), + [anon_sym_error] = ACTIONS(2094), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_in2] = ACTIONS(2094), + [anon_sym_loop] = ACTIONS(2094), + [anon_sym_make] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_do] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_else] = ACTIONS(2094), + [anon_sym_match] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_try] = ACTIONS(2094), + [anon_sym_catch] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_source] = ACTIONS(2094), + [anon_sym_source_DASHenv] = ACTIONS(2094), + [anon_sym_register] = ACTIONS(2094), + [anon_sym_hide] = ACTIONS(2094), + [anon_sym_hide_DASHenv] = ACTIONS(2094), + [anon_sym_overlay] = ACTIONS(2094), + [anon_sym_as] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2094), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2094), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2094), + [aux_sym__val_number_decimal_token1] = ACTIONS(2094), + [aux_sym__val_number_decimal_token2] = ACTIONS(2094), + [aux_sym__val_number_decimal_token3] = ACTIONS(2094), + [aux_sym__val_number_decimal_token4] = ACTIONS(2094), + [aux_sym__val_number_token1] = ACTIONS(2094), + [aux_sym__val_number_token2] = ACTIONS(2094), + [aux_sym__val_number_token3] = ACTIONS(2094), + [aux_sym__val_number_token4] = ACTIONS(2094), + [aux_sym__val_number_token5] = ACTIONS(2094), + [aux_sym__val_number_token6] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(2094), + [sym__str_single_quotes] = ACTIONS(2094), + [sym__str_back_ticks] = ACTIONS(2094), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2094), + [sym__entry_separator] = ACTIONS(2096), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2096), + }, + [657] = { + [sym_comment] = STATE(657), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), + [aux_sym_cmd_identifier_token2] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2429), + [aux_sym_cmd_identifier_token4] = ACTIONS(2429), + [aux_sym_cmd_identifier_token5] = ACTIONS(2429), + [aux_sym_cmd_identifier_token6] = ACTIONS(2429), + [aux_sym_cmd_identifier_token7] = ACTIONS(2429), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2429), + [aux_sym_cmd_identifier_token11] = ACTIONS(2429), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), + [aux_sym_cmd_identifier_token16] = ACTIONS(2429), + [aux_sym_cmd_identifier_token17] = ACTIONS(2429), + [aux_sym_cmd_identifier_token18] = ACTIONS(2429), + [aux_sym_cmd_identifier_token19] = ACTIONS(2429), + [aux_sym_cmd_identifier_token20] = ACTIONS(2429), + [aux_sym_cmd_identifier_token21] = ACTIONS(2429), + [aux_sym_cmd_identifier_token22] = ACTIONS(2429), + [aux_sym_cmd_identifier_token23] = ACTIONS(2429), + [aux_sym_cmd_identifier_token24] = ACTIONS(2429), + [aux_sym_cmd_identifier_token25] = ACTIONS(2429), + [aux_sym_cmd_identifier_token26] = ACTIONS(2429), + [aux_sym_cmd_identifier_token27] = ACTIONS(2429), + [aux_sym_cmd_identifier_token28] = ACTIONS(2429), + [aux_sym_cmd_identifier_token29] = ACTIONS(2429), + [aux_sym_cmd_identifier_token30] = ACTIONS(2429), + [aux_sym_cmd_identifier_token31] = ACTIONS(2429), + [aux_sym_cmd_identifier_token32] = ACTIONS(2429), + [aux_sym_cmd_identifier_token33] = ACTIONS(2429), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2429), + [aux_sym_cmd_identifier_token36] = ACTIONS(2429), + [aux_sym_cmd_identifier_token37] = ACTIONS(2429), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), + [aux_sym_cmd_identifier_token39] = ACTIONS(2429), + [aux_sym_cmd_identifier_token40] = ACTIONS(2429), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), + [aux_sym__val_number_decimal_token2] = ACTIONS(2429), + [aux_sym__val_number_decimal_token3] = ACTIONS(2429), + [aux_sym__val_number_decimal_token4] = ACTIONS(2429), + [aux_sym__val_number_token1] = ACTIONS(2429), + [aux_sym__val_number_token2] = ACTIONS(2429), + [aux_sym__val_number_token3] = ACTIONS(2429), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [sym__str_single_quotes] = ACTIONS(2429), + [sym__str_back_ticks] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), + [sym__entry_separator] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2431), + }, + [658] = { + [sym_comment] = STATE(658), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = 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_as] = ACTIONS(1890), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [659] = { + [sym_comment] = STATE(659), + [anon_sym_export] = ACTIONS(2333), + [anon_sym_alias] = ACTIONS(2333), + [anon_sym_let] = ACTIONS(2333), + [anon_sym_let_DASHenv] = ACTIONS(2333), + [anon_sym_mut] = ACTIONS(2333), + [anon_sym_const] = ACTIONS(2333), + [aux_sym_cmd_identifier_token1] = ACTIONS(2333), [aux_sym_cmd_identifier_token2] = ACTIONS(2335), [aux_sym_cmd_identifier_token3] = ACTIONS(2335), [aux_sym_cmd_identifier_token4] = ACTIONS(2335), [aux_sym_cmd_identifier_token5] = ACTIONS(2335), [aux_sym_cmd_identifier_token6] = ACTIONS(2335), [aux_sym_cmd_identifier_token7] = ACTIONS(2335), - [aux_sym_cmd_identifier_token8] = ACTIONS(2335), - [aux_sym_cmd_identifier_token9] = ACTIONS(2335), + [aux_sym_cmd_identifier_token8] = ACTIONS(2333), + [aux_sym_cmd_identifier_token9] = ACTIONS(2333), [aux_sym_cmd_identifier_token10] = ACTIONS(2335), [aux_sym_cmd_identifier_token11] = ACTIONS(2335), - [aux_sym_cmd_identifier_token12] = ACTIONS(2335), - [aux_sym_cmd_identifier_token13] = ACTIONS(2335), - [aux_sym_cmd_identifier_token14] = ACTIONS(2335), - [aux_sym_cmd_identifier_token15] = ACTIONS(2335), + [aux_sym_cmd_identifier_token12] = ACTIONS(2333), + [aux_sym_cmd_identifier_token13] = ACTIONS(2333), + [aux_sym_cmd_identifier_token14] = ACTIONS(2333), + [aux_sym_cmd_identifier_token15] = ACTIONS(2333), [aux_sym_cmd_identifier_token16] = ACTIONS(2335), [aux_sym_cmd_identifier_token17] = ACTIONS(2335), [aux_sym_cmd_identifier_token18] = ACTIONS(2335), @@ -137426,5346 +145836,4578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2335), [aux_sym_cmd_identifier_token32] = ACTIONS(2335), [aux_sym_cmd_identifier_token33] = ACTIONS(2335), - [aux_sym_cmd_identifier_token34] = ACTIONS(2335), + [aux_sym_cmd_identifier_token34] = ACTIONS(2333), [aux_sym_cmd_identifier_token35] = ACTIONS(2335), [aux_sym_cmd_identifier_token36] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2339), - [anon_sym_false] = ACTIONS(2339), - [anon_sym_null] = ACTIONS(2339), - [aux_sym_cmd_identifier_token38] = ACTIONS(2335), - [aux_sym_cmd_identifier_token39] = ACTIONS(2339), - [aux_sym_cmd_identifier_token40] = ACTIONS(2339), - [anon_sym_def] = ACTIONS(2335), - [anon_sym_export_DASHenv] = ACTIONS(2335), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_module] = ACTIONS(2335), - [anon_sym_use] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2339), - [anon_sym_error] = ACTIONS(2335), - [anon_sym_list] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_in] = ACTIONS(2335), - [anon_sym_loop] = ACTIONS(2335), - [anon_sym_make] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [anon_sym_do] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_else] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_try] = ACTIONS(2335), - [anon_sym_catch] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_source] = ACTIONS(2335), - [anon_sym_source_DASHenv] = ACTIONS(2335), - [anon_sym_register] = ACTIONS(2335), - [anon_sym_hide] = ACTIONS(2335), - [anon_sym_hide_DASHenv] = ACTIONS(2335), - [anon_sym_overlay] = ACTIONS(2335), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_as] = ACTIONS(2335), - [anon_sym_LPAREN2] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2339), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2339), - [aux_sym__val_number_decimal_token1] = ACTIONS(2335), - [aux_sym__val_number_decimal_token2] = ACTIONS(2339), - [aux_sym__val_number_decimal_token3] = ACTIONS(2339), - [aux_sym__val_number_decimal_token4] = ACTIONS(2339), - [aux_sym__val_number_token1] = ACTIONS(2339), - [aux_sym__val_number_token2] = ACTIONS(2339), - [aux_sym__val_number_token3] = ACTIONS(2339), - [anon_sym_DQUOTE] = ACTIONS(2339), - [sym__str_single_quotes] = ACTIONS(2339), - [sym__str_back_ticks] = ACTIONS(2339), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2339), - [anon_sym_PLUS] = ACTIONS(2335), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2339), - }, - [543] = { - [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_alias] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_let_DASHenv] = ACTIONS(2246), - [anon_sym_mut] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [aux_sym_cmd_identifier_token1] = ACTIONS(2246), - [aux_sym_cmd_identifier_token2] = ACTIONS(2246), - [aux_sym_cmd_identifier_token3] = ACTIONS(2246), - [aux_sym_cmd_identifier_token4] = ACTIONS(2246), - [aux_sym_cmd_identifier_token5] = ACTIONS(2246), - [aux_sym_cmd_identifier_token6] = ACTIONS(2246), - [aux_sym_cmd_identifier_token7] = ACTIONS(2246), - [aux_sym_cmd_identifier_token8] = ACTIONS(2246), - [aux_sym_cmd_identifier_token9] = ACTIONS(2246), - [aux_sym_cmd_identifier_token10] = ACTIONS(2246), - [aux_sym_cmd_identifier_token11] = ACTIONS(2246), - [aux_sym_cmd_identifier_token12] = ACTIONS(2246), - [aux_sym_cmd_identifier_token13] = ACTIONS(2246), - [aux_sym_cmd_identifier_token14] = ACTIONS(2246), - [aux_sym_cmd_identifier_token15] = ACTIONS(2246), - [aux_sym_cmd_identifier_token16] = ACTIONS(2246), - [aux_sym_cmd_identifier_token17] = ACTIONS(2246), - [aux_sym_cmd_identifier_token18] = ACTIONS(2246), - [aux_sym_cmd_identifier_token19] = ACTIONS(2246), - [aux_sym_cmd_identifier_token20] = ACTIONS(2246), - [aux_sym_cmd_identifier_token21] = ACTIONS(2246), - [aux_sym_cmd_identifier_token22] = ACTIONS(2246), - [aux_sym_cmd_identifier_token23] = ACTIONS(2246), - [aux_sym_cmd_identifier_token24] = ACTIONS(2246), - [aux_sym_cmd_identifier_token25] = ACTIONS(2246), - [aux_sym_cmd_identifier_token26] = ACTIONS(2246), - [aux_sym_cmd_identifier_token27] = ACTIONS(2246), - [aux_sym_cmd_identifier_token28] = ACTIONS(2246), - [aux_sym_cmd_identifier_token29] = ACTIONS(2246), - [aux_sym_cmd_identifier_token30] = ACTIONS(2246), - [aux_sym_cmd_identifier_token31] = ACTIONS(2246), - [aux_sym_cmd_identifier_token32] = ACTIONS(2246), - [aux_sym_cmd_identifier_token33] = ACTIONS(2246), - [aux_sym_cmd_identifier_token34] = ACTIONS(2246), - [aux_sym_cmd_identifier_token35] = ACTIONS(2246), - [aux_sym_cmd_identifier_token36] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(2250), - [anon_sym_false] = ACTIONS(2250), - [anon_sym_null] = ACTIONS(2250), - [aux_sym_cmd_identifier_token38] = ACTIONS(2246), - [aux_sym_cmd_identifier_token39] = ACTIONS(2250), - [aux_sym_cmd_identifier_token40] = ACTIONS(2250), - [anon_sym_def] = ACTIONS(2246), - [anon_sym_export_DASHenv] = ACTIONS(2246), - [anon_sym_extern] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_use] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_DOLLAR] = ACTIONS(2250), - [anon_sym_error] = ACTIONS(2246), - [anon_sym_list] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [anon_sym_loop] = ACTIONS(2246), - [anon_sym_make] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_match] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_catch] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_source] = ACTIONS(2246), - [anon_sym_source_DASHenv] = ACTIONS(2246), - [anon_sym_register] = ACTIONS(2246), - [anon_sym_hide] = ACTIONS(2246), - [anon_sym_hide_DASHenv] = ACTIONS(2246), - [anon_sym_overlay] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_as] = ACTIONS(2246), - [anon_sym_LPAREN2] = ACTIONS(2248), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2250), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2250), - [aux_sym__val_number_decimal_token1] = ACTIONS(2246), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2250), - [aux_sym__val_number_decimal_token4] = ACTIONS(2250), - [aux_sym__val_number_token1] = ACTIONS(2250), - [aux_sym__val_number_token2] = ACTIONS(2250), - [aux_sym__val_number_token3] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2246), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2250), - }, - [544] = { - [sym_comment] = STATE(544), - [anon_sym_export] = ACTIONS(1082), - [anon_sym_alias] = ACTIONS(1082), - [anon_sym_let] = ACTIONS(1082), - [anon_sym_let_DASHenv] = ACTIONS(1082), - [anon_sym_mut] = ACTIONS(1082), - [anon_sym_const] = ACTIONS(1082), - [aux_sym_cmd_identifier_token1] = ACTIONS(1082), - [aux_sym_cmd_identifier_token2] = ACTIONS(1082), - [aux_sym_cmd_identifier_token3] = ACTIONS(1082), - [aux_sym_cmd_identifier_token4] = ACTIONS(1082), - [aux_sym_cmd_identifier_token5] = ACTIONS(1082), - [aux_sym_cmd_identifier_token6] = ACTIONS(1082), - [aux_sym_cmd_identifier_token7] = ACTIONS(1082), - [aux_sym_cmd_identifier_token8] = ACTIONS(1082), - [aux_sym_cmd_identifier_token9] = ACTIONS(1082), - [aux_sym_cmd_identifier_token10] = ACTIONS(1082), - [aux_sym_cmd_identifier_token11] = ACTIONS(1082), - [aux_sym_cmd_identifier_token12] = ACTIONS(1082), - [aux_sym_cmd_identifier_token13] = ACTIONS(1082), - [aux_sym_cmd_identifier_token14] = ACTIONS(1082), - [aux_sym_cmd_identifier_token15] = ACTIONS(1082), - [aux_sym_cmd_identifier_token16] = ACTIONS(1082), - [aux_sym_cmd_identifier_token17] = ACTIONS(1082), - [aux_sym_cmd_identifier_token18] = ACTIONS(1082), - [aux_sym_cmd_identifier_token19] = ACTIONS(1082), - [aux_sym_cmd_identifier_token20] = ACTIONS(1082), - [aux_sym_cmd_identifier_token21] = ACTIONS(1082), - [aux_sym_cmd_identifier_token22] = ACTIONS(1082), - [aux_sym_cmd_identifier_token23] = ACTIONS(1082), - [aux_sym_cmd_identifier_token24] = ACTIONS(1082), - [aux_sym_cmd_identifier_token25] = ACTIONS(1082), - [aux_sym_cmd_identifier_token26] = ACTIONS(1082), - [aux_sym_cmd_identifier_token27] = ACTIONS(1082), - [aux_sym_cmd_identifier_token28] = ACTIONS(1082), - [aux_sym_cmd_identifier_token29] = ACTIONS(1082), - [aux_sym_cmd_identifier_token30] = ACTIONS(1082), - [aux_sym_cmd_identifier_token31] = ACTIONS(1082), - [aux_sym_cmd_identifier_token32] = ACTIONS(1082), - [aux_sym_cmd_identifier_token33] = ACTIONS(1082), - [aux_sym_cmd_identifier_token34] = ACTIONS(1082), - [aux_sym_cmd_identifier_token35] = ACTIONS(1082), - [aux_sym_cmd_identifier_token36] = ACTIONS(1082), - [anon_sym_true] = ACTIONS(1088), - [anon_sym_false] = ACTIONS(1088), - [anon_sym_null] = ACTIONS(1088), - [aux_sym_cmd_identifier_token38] = ACTIONS(1082), - [aux_sym_cmd_identifier_token39] = ACTIONS(1088), - [aux_sym_cmd_identifier_token40] = ACTIONS(1088), - [anon_sym_def] = ACTIONS(1082), - [anon_sym_export_DASHenv] = ACTIONS(1082), - [anon_sym_extern] = ACTIONS(1082), - [anon_sym_module] = ACTIONS(1082), - [anon_sym_use] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1094), - [anon_sym_DOLLAR] = ACTIONS(1088), - [anon_sym_error] = ACTIONS(1082), - [anon_sym_list] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_break] = ACTIONS(1082), - [anon_sym_continue] = ACTIONS(1082), - [anon_sym_for] = ACTIONS(1082), - [anon_sym_in] = ACTIONS(1082), - [anon_sym_loop] = ACTIONS(1082), - [anon_sym_make] = ACTIONS(1082), - [anon_sym_while] = ACTIONS(1082), - [anon_sym_do] = ACTIONS(1082), - [anon_sym_if] = ACTIONS(1082), - [anon_sym_else] = ACTIONS(1082), - [anon_sym_match] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_try] = ACTIONS(1082), - [anon_sym_catch] = ACTIONS(1082), - [anon_sym_return] = ACTIONS(1082), - [anon_sym_source] = ACTIONS(1082), - [anon_sym_source_DASHenv] = ACTIONS(1082), - [anon_sym_register] = ACTIONS(1082), - [anon_sym_hide] = ACTIONS(1082), - [anon_sym_hide_DASHenv] = ACTIONS(1082), - [anon_sym_overlay] = ACTIONS(1082), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_as] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1088), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1088), - [aux_sym__val_number_decimal_token1] = ACTIONS(1082), - [aux_sym__val_number_decimal_token2] = ACTIONS(1088), - [aux_sym__val_number_decimal_token3] = ACTIONS(1088), - [aux_sym__val_number_decimal_token4] = ACTIONS(1088), - [aux_sym__val_number_token1] = ACTIONS(1088), - [aux_sym__val_number_token2] = ACTIONS(1088), - [aux_sym__val_number_token3] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [sym__str_single_quotes] = ACTIONS(1088), - [sym__str_back_ticks] = ACTIONS(1088), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1088), - [aux_sym_record_entry_token1] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1088), + [aux_sym_cmd_identifier_token37] = ACTIONS(2335), + [aux_sym_cmd_identifier_token38] = ACTIONS(2333), + [aux_sym_cmd_identifier_token39] = ACTIONS(2335), + [aux_sym_cmd_identifier_token40] = ACTIONS(2335), + [anon_sym_def] = ACTIONS(2333), + [anon_sym_export_DASHenv] = ACTIONS(2333), + [anon_sym_extern] = ACTIONS(2333), + [anon_sym_module] = ACTIONS(2333), + [anon_sym_use] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_error] = ACTIONS(2333), + [anon_sym_DASH2] = ACTIONS(2333), + [anon_sym_break] = ACTIONS(2333), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_in2] = ACTIONS(2333), + [anon_sym_loop] = ACTIONS(2333), + [anon_sym_make] = ACTIONS(2333), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2333), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_else] = ACTIONS(2333), + [anon_sym_match] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2333), + [anon_sym_catch] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_source] = ACTIONS(2333), + [anon_sym_source_DASHenv] = ACTIONS(2333), + [anon_sym_register] = ACTIONS(2333), + [anon_sym_hide] = ACTIONS(2333), + [anon_sym_hide_DASHenv] = ACTIONS(2333), + [anon_sym_overlay] = ACTIONS(2333), + [anon_sym_as] = ACTIONS(2333), + [anon_sym_LPAREN2] = ACTIONS(2335), + [anon_sym_PLUS2] = ACTIONS(2333), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2335), + [aux_sym__val_number_decimal_token1] = ACTIONS(2333), + [aux_sym__val_number_decimal_token2] = ACTIONS(2335), + [aux_sym__val_number_decimal_token3] = ACTIONS(2335), + [aux_sym__val_number_decimal_token4] = ACTIONS(2335), + [aux_sym__val_number_token1] = ACTIONS(2335), + [aux_sym__val_number_token2] = ACTIONS(2335), + [aux_sym__val_number_token3] = ACTIONS(2335), + [aux_sym__val_number_token4] = ACTIONS(2333), + [aux_sym__val_number_token5] = ACTIONS(2333), + [aux_sym__val_number_token6] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym__str_single_quotes] = ACTIONS(2335), + [sym__str_back_ticks] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2335), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2335), }, - [545] = { - [sym_comment] = STATE(545), - [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] = 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), + [660] = { + [sym_comment] = STATE(660), + [anon_sym_export] = ACTIONS(2433), + [anon_sym_alias] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_let_DASHenv] = ACTIONS(2433), + [anon_sym_mut] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [aux_sym_cmd_identifier_token1] = ACTIONS(2433), + [aux_sym_cmd_identifier_token2] = ACTIONS(2433), + [aux_sym_cmd_identifier_token3] = ACTIONS(2433), + [aux_sym_cmd_identifier_token4] = ACTIONS(2433), + [aux_sym_cmd_identifier_token5] = ACTIONS(2433), + [aux_sym_cmd_identifier_token6] = ACTIONS(2433), + [aux_sym_cmd_identifier_token7] = ACTIONS(2433), + [aux_sym_cmd_identifier_token8] = ACTIONS(2433), + [aux_sym_cmd_identifier_token9] = ACTIONS(2433), + [aux_sym_cmd_identifier_token10] = ACTIONS(2433), + [aux_sym_cmd_identifier_token11] = ACTIONS(2433), + [aux_sym_cmd_identifier_token12] = ACTIONS(2433), + [aux_sym_cmd_identifier_token13] = ACTIONS(2433), + [aux_sym_cmd_identifier_token14] = ACTIONS(2433), + [aux_sym_cmd_identifier_token15] = ACTIONS(2433), + [aux_sym_cmd_identifier_token16] = ACTIONS(2433), + [aux_sym_cmd_identifier_token17] = ACTIONS(2433), + [aux_sym_cmd_identifier_token18] = ACTIONS(2433), + [aux_sym_cmd_identifier_token19] = ACTIONS(2433), + [aux_sym_cmd_identifier_token20] = ACTIONS(2433), + [aux_sym_cmd_identifier_token21] = ACTIONS(2433), + [aux_sym_cmd_identifier_token22] = ACTIONS(2433), + [aux_sym_cmd_identifier_token23] = ACTIONS(2433), + [aux_sym_cmd_identifier_token24] = ACTIONS(2433), + [aux_sym_cmd_identifier_token25] = ACTIONS(2433), + [aux_sym_cmd_identifier_token26] = ACTIONS(2433), + [aux_sym_cmd_identifier_token27] = ACTIONS(2433), + [aux_sym_cmd_identifier_token28] = ACTIONS(2433), + [aux_sym_cmd_identifier_token29] = ACTIONS(2433), + [aux_sym_cmd_identifier_token30] = ACTIONS(2433), + [aux_sym_cmd_identifier_token31] = ACTIONS(2433), + [aux_sym_cmd_identifier_token32] = ACTIONS(2433), + [aux_sym_cmd_identifier_token33] = ACTIONS(2433), + [aux_sym_cmd_identifier_token34] = ACTIONS(2433), + [aux_sym_cmd_identifier_token35] = ACTIONS(2433), + [aux_sym_cmd_identifier_token36] = ACTIONS(2433), + [aux_sym_cmd_identifier_token37] = ACTIONS(2433), + [aux_sym_cmd_identifier_token38] = ACTIONS(2433), + [aux_sym_cmd_identifier_token39] = ACTIONS(2433), + [aux_sym_cmd_identifier_token40] = ACTIONS(2433), + [anon_sym_def] = ACTIONS(2433), + [anon_sym_export_DASHenv] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_module] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_DOLLAR] = ACTIONS(2433), + [anon_sym_error] = ACTIONS(2433), + [anon_sym_DASH2] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_in2] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_make] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_catch] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_source] = ACTIONS(2433), + [anon_sym_source_DASHenv] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_hide] = ACTIONS(2433), + [anon_sym_hide_DASHenv] = ACTIONS(2433), + [anon_sym_overlay] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_PLUS2] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2433), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2433), + [aux_sym__val_number_decimal_token3] = ACTIONS(2433), + [aux_sym__val_number_decimal_token4] = ACTIONS(2433), + [aux_sym__val_number_token1] = ACTIONS(2433), + [aux_sym__val_number_token2] = ACTIONS(2433), + [aux_sym__val_number_token3] = ACTIONS(2433), + [aux_sym__val_number_token4] = ACTIONS(2433), + [aux_sym__val_number_token5] = ACTIONS(2433), + [aux_sym__val_number_token6] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2433), + [sym__str_single_quotes] = ACTIONS(2433), + [sym__str_back_ticks] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2433), + [sym__entry_separator] = ACTIONS(2435), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1072), - }, - [546] = { - [sym_comment] = STATE(546), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_LPAREN2] = 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(1703), - [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), - [anon_sym_PLUS] = ACTIONS(1703), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [sym_raw_string_begin] = ACTIONS(2435), }, - [547] = { - [sym_comment] = STATE(547), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_alias] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_let_DASHenv] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [aux_sym_cmd_identifier_token1] = ACTIONS(2230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2230), - [aux_sym_cmd_identifier_token3] = ACTIONS(2230), - [aux_sym_cmd_identifier_token4] = ACTIONS(2230), - [aux_sym_cmd_identifier_token5] = ACTIONS(2230), - [aux_sym_cmd_identifier_token6] = ACTIONS(2230), - [aux_sym_cmd_identifier_token7] = ACTIONS(2230), - [aux_sym_cmd_identifier_token8] = ACTIONS(2230), - [aux_sym_cmd_identifier_token9] = ACTIONS(2230), - [aux_sym_cmd_identifier_token10] = ACTIONS(2230), - [aux_sym_cmd_identifier_token11] = ACTIONS(2230), - [aux_sym_cmd_identifier_token12] = ACTIONS(2230), - [aux_sym_cmd_identifier_token13] = ACTIONS(2230), - [aux_sym_cmd_identifier_token14] = ACTIONS(2230), - [aux_sym_cmd_identifier_token15] = ACTIONS(2230), - [aux_sym_cmd_identifier_token16] = ACTIONS(2230), - [aux_sym_cmd_identifier_token17] = ACTIONS(2230), - [aux_sym_cmd_identifier_token18] = ACTIONS(2230), - [aux_sym_cmd_identifier_token19] = ACTIONS(2230), - [aux_sym_cmd_identifier_token20] = ACTIONS(2230), - [aux_sym_cmd_identifier_token21] = ACTIONS(2230), - [aux_sym_cmd_identifier_token22] = ACTIONS(2230), - [aux_sym_cmd_identifier_token23] = ACTIONS(2230), - [aux_sym_cmd_identifier_token24] = ACTIONS(2230), - [aux_sym_cmd_identifier_token25] = ACTIONS(2230), - [aux_sym_cmd_identifier_token26] = ACTIONS(2230), - [aux_sym_cmd_identifier_token27] = ACTIONS(2230), - [aux_sym_cmd_identifier_token28] = ACTIONS(2230), - [aux_sym_cmd_identifier_token29] = ACTIONS(2230), - [aux_sym_cmd_identifier_token30] = ACTIONS(2230), - [aux_sym_cmd_identifier_token31] = ACTIONS(2230), - [aux_sym_cmd_identifier_token32] = ACTIONS(2230), - [aux_sym_cmd_identifier_token33] = ACTIONS(2230), - [aux_sym_cmd_identifier_token34] = ACTIONS(2230), - [aux_sym_cmd_identifier_token35] = ACTIONS(2230), - [aux_sym_cmd_identifier_token36] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2230), - [anon_sym_false] = ACTIONS(2230), - [anon_sym_null] = ACTIONS(2230), - [aux_sym_cmd_identifier_token38] = ACTIONS(2230), - [aux_sym_cmd_identifier_token39] = ACTIONS(2230), - [aux_sym_cmd_identifier_token40] = ACTIONS(2230), - [anon_sym_def] = ACTIONS(2230), - [anon_sym_export_DASHenv] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_use] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_error] = ACTIONS(2230), - [anon_sym_list] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_loop] = ACTIONS(2230), - [anon_sym_make] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_source] = ACTIONS(2230), - [anon_sym_source_DASHenv] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_hide] = ACTIONS(2230), - [anon_sym_hide_DASHenv] = ACTIONS(2230), - [anon_sym_overlay] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2230), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2230), - [aux_sym__val_number_decimal_token3] = ACTIONS(2230), - [aux_sym__val_number_decimal_token4] = ACTIONS(2230), - [aux_sym__val_number_token1] = ACTIONS(2230), - [aux_sym__val_number_token2] = ACTIONS(2230), - [aux_sym__val_number_token3] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [sym__str_single_quotes] = ACTIONS(2230), - [sym__str_back_ticks] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2230), - [sym__entry_separator] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2230), + [661] = { + [sym_comment] = STATE(661), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_alias] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_let_DASHenv] = ACTIONS(2437), + [anon_sym_mut] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [aux_sym_cmd_identifier_token1] = ACTIONS(2437), + [aux_sym_cmd_identifier_token2] = ACTIONS(2437), + [aux_sym_cmd_identifier_token3] = ACTIONS(2437), + [aux_sym_cmd_identifier_token4] = ACTIONS(2437), + [aux_sym_cmd_identifier_token5] = ACTIONS(2437), + [aux_sym_cmd_identifier_token6] = ACTIONS(2437), + [aux_sym_cmd_identifier_token7] = ACTIONS(2437), + [aux_sym_cmd_identifier_token8] = ACTIONS(2437), + [aux_sym_cmd_identifier_token9] = ACTIONS(2437), + [aux_sym_cmd_identifier_token10] = ACTIONS(2437), + [aux_sym_cmd_identifier_token11] = ACTIONS(2437), + [aux_sym_cmd_identifier_token12] = ACTIONS(2437), + [aux_sym_cmd_identifier_token13] = ACTIONS(2437), + [aux_sym_cmd_identifier_token14] = ACTIONS(2437), + [aux_sym_cmd_identifier_token15] = ACTIONS(2437), + [aux_sym_cmd_identifier_token16] = ACTIONS(2437), + [aux_sym_cmd_identifier_token17] = ACTIONS(2437), + [aux_sym_cmd_identifier_token18] = ACTIONS(2437), + [aux_sym_cmd_identifier_token19] = ACTIONS(2437), + [aux_sym_cmd_identifier_token20] = ACTIONS(2437), + [aux_sym_cmd_identifier_token21] = ACTIONS(2437), + [aux_sym_cmd_identifier_token22] = ACTIONS(2437), + [aux_sym_cmd_identifier_token23] = ACTIONS(2437), + [aux_sym_cmd_identifier_token24] = ACTIONS(2437), + [aux_sym_cmd_identifier_token25] = ACTIONS(2437), + [aux_sym_cmd_identifier_token26] = ACTIONS(2437), + [aux_sym_cmd_identifier_token27] = ACTIONS(2437), + [aux_sym_cmd_identifier_token28] = ACTIONS(2437), + [aux_sym_cmd_identifier_token29] = ACTIONS(2437), + [aux_sym_cmd_identifier_token30] = ACTIONS(2437), + [aux_sym_cmd_identifier_token31] = ACTIONS(2437), + [aux_sym_cmd_identifier_token32] = ACTIONS(2437), + [aux_sym_cmd_identifier_token33] = ACTIONS(2437), + [aux_sym_cmd_identifier_token34] = ACTIONS(2437), + [aux_sym_cmd_identifier_token35] = ACTIONS(2437), + [aux_sym_cmd_identifier_token36] = ACTIONS(2437), + [aux_sym_cmd_identifier_token37] = ACTIONS(2437), + [aux_sym_cmd_identifier_token38] = ACTIONS(2437), + [aux_sym_cmd_identifier_token39] = ACTIONS(2437), + [aux_sym_cmd_identifier_token40] = ACTIONS(2437), + [anon_sym_def] = ACTIONS(2437), + [anon_sym_export_DASHenv] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_DOLLAR] = ACTIONS(2437), + [anon_sym_error] = ACTIONS(2437), + [anon_sym_DASH2] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_in2] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_make] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_catch] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_source] = ACTIONS(2437), + [anon_sym_source_DASHenv] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_hide] = ACTIONS(2437), + [anon_sym_hide_DASHenv] = ACTIONS(2437), + [anon_sym_overlay] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_PLUS2] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2437), + [aux_sym__val_number_decimal_token2] = ACTIONS(2437), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(2437), + [aux_sym__val_number_token2] = ACTIONS(2437), + [aux_sym__val_number_token3] = ACTIONS(2437), + [aux_sym__val_number_token4] = ACTIONS(2437), + [aux_sym__val_number_token5] = ACTIONS(2437), + [aux_sym__val_number_token6] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(2437), + [sym__str_single_quotes] = ACTIONS(2437), + [sym__str_back_ticks] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2437), + [sym__entry_separator] = ACTIONS(2439), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2232), + [sym_raw_string_begin] = ACTIONS(2439), }, - [548] = { - [sym_comment] = STATE(548), - [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), + [662] = { + [sym_comment] = STATE(662), + [anon_sym_export] = ACTIONS(2004), + [anon_sym_alias] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_let_DASHenv] = ACTIONS(2004), + [anon_sym_mut] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [aux_sym_cmd_identifier_token1] = ACTIONS(2004), + [aux_sym_cmd_identifier_token2] = ACTIONS(2004), + [aux_sym_cmd_identifier_token3] = ACTIONS(2004), + [aux_sym_cmd_identifier_token4] = ACTIONS(2004), + [aux_sym_cmd_identifier_token5] = ACTIONS(2004), + [aux_sym_cmd_identifier_token6] = ACTIONS(2004), + [aux_sym_cmd_identifier_token7] = ACTIONS(2004), + [aux_sym_cmd_identifier_token8] = ACTIONS(2004), + [aux_sym_cmd_identifier_token9] = ACTIONS(2004), + [aux_sym_cmd_identifier_token10] = ACTIONS(2004), + [aux_sym_cmd_identifier_token11] = ACTIONS(2004), + [aux_sym_cmd_identifier_token12] = ACTIONS(2004), + [aux_sym_cmd_identifier_token13] = ACTIONS(2004), + [aux_sym_cmd_identifier_token14] = ACTIONS(2004), + [aux_sym_cmd_identifier_token15] = ACTIONS(2004), + [aux_sym_cmd_identifier_token16] = ACTIONS(2004), + [aux_sym_cmd_identifier_token17] = ACTIONS(2004), + [aux_sym_cmd_identifier_token18] = ACTIONS(2004), + [aux_sym_cmd_identifier_token19] = ACTIONS(2004), + [aux_sym_cmd_identifier_token20] = ACTIONS(2004), + [aux_sym_cmd_identifier_token21] = ACTIONS(2004), + [aux_sym_cmd_identifier_token22] = ACTIONS(2004), + [aux_sym_cmd_identifier_token23] = ACTIONS(2004), + [aux_sym_cmd_identifier_token24] = ACTIONS(2004), + [aux_sym_cmd_identifier_token25] = ACTIONS(2004), + [aux_sym_cmd_identifier_token26] = ACTIONS(2004), + [aux_sym_cmd_identifier_token27] = ACTIONS(2004), + [aux_sym_cmd_identifier_token28] = ACTIONS(2004), + [aux_sym_cmd_identifier_token29] = ACTIONS(2004), + [aux_sym_cmd_identifier_token30] = ACTIONS(2004), + [aux_sym_cmd_identifier_token31] = ACTIONS(2004), + [aux_sym_cmd_identifier_token32] = ACTIONS(2004), + [aux_sym_cmd_identifier_token33] = ACTIONS(2004), + [aux_sym_cmd_identifier_token34] = ACTIONS(2004), + [aux_sym_cmd_identifier_token35] = ACTIONS(2004), + [aux_sym_cmd_identifier_token36] = ACTIONS(2004), + [aux_sym_cmd_identifier_token37] = ACTIONS(2004), + [aux_sym_cmd_identifier_token38] = ACTIONS(2004), + [aux_sym_cmd_identifier_token39] = ACTIONS(2004), + [aux_sym_cmd_identifier_token40] = ACTIONS(2004), + [anon_sym_def] = ACTIONS(2004), + [anon_sym_export_DASHenv] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_module] = ACTIONS(2004), + [anon_sym_use] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_DOLLAR] = ACTIONS(2004), + [anon_sym_error] = ACTIONS(2004), + [anon_sym_DASH2] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_in2] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_make] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_catch] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_source] = ACTIONS(2004), + [anon_sym_source_DASHenv] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_hide] = ACTIONS(2004), + [anon_sym_hide_DASHenv] = ACTIONS(2004), + [anon_sym_overlay] = ACTIONS(2004), + [anon_sym_as] = ACTIONS(2004), + [anon_sym_PLUS2] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2004), + [aux_sym__val_number_decimal_token2] = ACTIONS(2004), + [aux_sym__val_number_decimal_token3] = ACTIONS(2004), + [aux_sym__val_number_decimal_token4] = ACTIONS(2004), + [aux_sym__val_number_token1] = ACTIONS(2004), + [aux_sym__val_number_token2] = ACTIONS(2004), + [aux_sym__val_number_token3] = ACTIONS(2004), + [aux_sym__val_number_token4] = ACTIONS(2004), + [aux_sym__val_number_token5] = ACTIONS(2004), + [aux_sym__val_number_token6] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2004), + [sym__str_single_quotes] = ACTIONS(2004), + [sym__str_back_ticks] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2004), + [sym__entry_separator] = ACTIONS(2006), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1040), + [sym_raw_string_begin] = ACTIONS(2006), }, - [549] = { - [sym_comment] = STATE(549), - [anon_sym_export] = ACTIONS(2398), - [anon_sym_alias] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_let_DASHenv] = ACTIONS(2398), - [anon_sym_mut] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [aux_sym_cmd_identifier_token1] = ACTIONS(2398), - [aux_sym_cmd_identifier_token2] = ACTIONS(2398), - [aux_sym_cmd_identifier_token3] = ACTIONS(2398), - [aux_sym_cmd_identifier_token4] = ACTIONS(2398), - [aux_sym_cmd_identifier_token5] = ACTIONS(2398), - [aux_sym_cmd_identifier_token6] = ACTIONS(2398), - [aux_sym_cmd_identifier_token7] = ACTIONS(2398), - [aux_sym_cmd_identifier_token8] = ACTIONS(2398), - [aux_sym_cmd_identifier_token9] = ACTIONS(2398), - [aux_sym_cmd_identifier_token10] = ACTIONS(2398), - [aux_sym_cmd_identifier_token11] = ACTIONS(2398), - [aux_sym_cmd_identifier_token12] = ACTIONS(2398), - [aux_sym_cmd_identifier_token13] = ACTIONS(2398), - [aux_sym_cmd_identifier_token14] = ACTIONS(2398), - [aux_sym_cmd_identifier_token15] = ACTIONS(2398), - [aux_sym_cmd_identifier_token16] = ACTIONS(2398), - [aux_sym_cmd_identifier_token17] = ACTIONS(2398), - [aux_sym_cmd_identifier_token18] = ACTIONS(2398), - [aux_sym_cmd_identifier_token19] = ACTIONS(2398), - [aux_sym_cmd_identifier_token20] = ACTIONS(2398), - [aux_sym_cmd_identifier_token21] = ACTIONS(2398), - [aux_sym_cmd_identifier_token22] = ACTIONS(2398), - [aux_sym_cmd_identifier_token23] = ACTIONS(2398), - [aux_sym_cmd_identifier_token24] = ACTIONS(2398), - [aux_sym_cmd_identifier_token25] = ACTIONS(2398), - [aux_sym_cmd_identifier_token26] = ACTIONS(2398), - [aux_sym_cmd_identifier_token27] = ACTIONS(2398), - [aux_sym_cmd_identifier_token28] = ACTIONS(2398), - [aux_sym_cmd_identifier_token29] = ACTIONS(2398), - [aux_sym_cmd_identifier_token30] = ACTIONS(2398), - [aux_sym_cmd_identifier_token31] = ACTIONS(2398), - [aux_sym_cmd_identifier_token32] = ACTIONS(2398), - [aux_sym_cmd_identifier_token33] = ACTIONS(2398), - [aux_sym_cmd_identifier_token34] = ACTIONS(2398), - [aux_sym_cmd_identifier_token35] = ACTIONS(2398), - [aux_sym_cmd_identifier_token36] = ACTIONS(2398), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2398), - [aux_sym_cmd_identifier_token38] = ACTIONS(2398), - [aux_sym_cmd_identifier_token39] = ACTIONS(2398), - [aux_sym_cmd_identifier_token40] = ACTIONS(2398), - [anon_sym_def] = ACTIONS(2398), - [anon_sym_export_DASHenv] = ACTIONS(2398), - [anon_sym_extern] = ACTIONS(2398), - [anon_sym_module] = ACTIONS(2398), - [anon_sym_use] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [anon_sym_error] = ACTIONS(2398), - [anon_sym_list] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_in] = ACTIONS(2398), - [anon_sym_loop] = ACTIONS(2398), - [anon_sym_make] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_do] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_else] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2398), - [anon_sym_catch] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_source] = ACTIONS(2398), - [anon_sym_source_DASHenv] = ACTIONS(2398), - [anon_sym_register] = ACTIONS(2398), - [anon_sym_hide] = ACTIONS(2398), - [anon_sym_hide_DASHenv] = ACTIONS(2398), - [anon_sym_overlay] = ACTIONS(2398), - [anon_sym_new] = ACTIONS(2398), - [anon_sym_as] = 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(2398), - [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), - [sym__entry_separator] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2398), + [663] = { + [sym_comment] = STATE(663), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_alias] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_let_DASHenv] = ACTIONS(2441), + [anon_sym_mut] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [aux_sym_cmd_identifier_token1] = ACTIONS(2441), + [aux_sym_cmd_identifier_token2] = ACTIONS(2441), + [aux_sym_cmd_identifier_token3] = ACTIONS(2441), + [aux_sym_cmd_identifier_token4] = ACTIONS(2441), + [aux_sym_cmd_identifier_token5] = ACTIONS(2441), + [aux_sym_cmd_identifier_token6] = ACTIONS(2441), + [aux_sym_cmd_identifier_token7] = ACTIONS(2441), + [aux_sym_cmd_identifier_token8] = ACTIONS(2441), + [aux_sym_cmd_identifier_token9] = ACTIONS(2441), + [aux_sym_cmd_identifier_token10] = ACTIONS(2441), + [aux_sym_cmd_identifier_token11] = ACTIONS(2441), + [aux_sym_cmd_identifier_token12] = ACTIONS(2441), + [aux_sym_cmd_identifier_token13] = ACTIONS(2441), + [aux_sym_cmd_identifier_token14] = ACTIONS(2441), + [aux_sym_cmd_identifier_token15] = ACTIONS(2441), + [aux_sym_cmd_identifier_token16] = ACTIONS(2441), + [aux_sym_cmd_identifier_token17] = ACTIONS(2441), + [aux_sym_cmd_identifier_token18] = ACTIONS(2441), + [aux_sym_cmd_identifier_token19] = ACTIONS(2441), + [aux_sym_cmd_identifier_token20] = ACTIONS(2441), + [aux_sym_cmd_identifier_token21] = ACTIONS(2441), + [aux_sym_cmd_identifier_token22] = ACTIONS(2441), + [aux_sym_cmd_identifier_token23] = ACTIONS(2441), + [aux_sym_cmd_identifier_token24] = ACTIONS(2441), + [aux_sym_cmd_identifier_token25] = ACTIONS(2441), + [aux_sym_cmd_identifier_token26] = ACTIONS(2441), + [aux_sym_cmd_identifier_token27] = ACTIONS(2441), + [aux_sym_cmd_identifier_token28] = ACTIONS(2441), + [aux_sym_cmd_identifier_token29] = ACTIONS(2441), + [aux_sym_cmd_identifier_token30] = ACTIONS(2441), + [aux_sym_cmd_identifier_token31] = ACTIONS(2441), + [aux_sym_cmd_identifier_token32] = ACTIONS(2441), + [aux_sym_cmd_identifier_token33] = ACTIONS(2441), + [aux_sym_cmd_identifier_token34] = ACTIONS(2441), + [aux_sym_cmd_identifier_token35] = ACTIONS(2441), + [aux_sym_cmd_identifier_token36] = ACTIONS(2441), + [aux_sym_cmd_identifier_token37] = ACTIONS(2441), + [aux_sym_cmd_identifier_token38] = ACTIONS(2441), + [aux_sym_cmd_identifier_token39] = ACTIONS(2441), + [aux_sym_cmd_identifier_token40] = ACTIONS(2441), + [anon_sym_def] = ACTIONS(2441), + [anon_sym_export_DASHenv] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_DOLLAR] = ACTIONS(2441), + [anon_sym_error] = ACTIONS(2441), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_in2] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_make] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_catch] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_source] = ACTIONS(2441), + [anon_sym_source_DASHenv] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_hide] = ACTIONS(2441), + [anon_sym_hide_DASHenv] = ACTIONS(2441), + [anon_sym_overlay] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_PLUS2] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2441), + [aux_sym__val_number_decimal_token1] = ACTIONS(2441), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2441), + [aux_sym__val_number_decimal_token4] = ACTIONS(2441), + [aux_sym__val_number_token1] = ACTIONS(2441), + [aux_sym__val_number_token2] = ACTIONS(2441), + [aux_sym__val_number_token3] = ACTIONS(2441), + [aux_sym__val_number_token4] = ACTIONS(2441), + [aux_sym__val_number_token5] = ACTIONS(2441), + [aux_sym__val_number_token6] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym__str_single_quotes] = ACTIONS(2441), + [sym__str_back_ticks] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2441), + [sym__entry_separator] = ACTIONS(2443), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2400), + [sym_raw_string_begin] = ACTIONS(2443), }, - [550] = { - [sym_comment] = STATE(550), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_alias] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_let_DASHenv] = ACTIONS(2402), - [anon_sym_mut] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [aux_sym_cmd_identifier_token1] = ACTIONS(2402), - [aux_sym_cmd_identifier_token2] = ACTIONS(2402), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), - [aux_sym_cmd_identifier_token6] = ACTIONS(2402), - [aux_sym_cmd_identifier_token7] = ACTIONS(2402), - [aux_sym_cmd_identifier_token8] = ACTIONS(2402), - [aux_sym_cmd_identifier_token9] = ACTIONS(2402), - [aux_sym_cmd_identifier_token10] = ACTIONS(2402), - [aux_sym_cmd_identifier_token11] = ACTIONS(2402), - [aux_sym_cmd_identifier_token12] = ACTIONS(2402), - [aux_sym_cmd_identifier_token13] = ACTIONS(2402), - [aux_sym_cmd_identifier_token14] = ACTIONS(2402), - [aux_sym_cmd_identifier_token15] = ACTIONS(2402), - [aux_sym_cmd_identifier_token16] = ACTIONS(2402), - [aux_sym_cmd_identifier_token17] = ACTIONS(2402), - [aux_sym_cmd_identifier_token18] = ACTIONS(2402), - [aux_sym_cmd_identifier_token19] = ACTIONS(2402), - [aux_sym_cmd_identifier_token20] = ACTIONS(2402), - [aux_sym_cmd_identifier_token21] = ACTIONS(2402), - [aux_sym_cmd_identifier_token22] = ACTIONS(2402), - [aux_sym_cmd_identifier_token23] = ACTIONS(2402), - [aux_sym_cmd_identifier_token24] = ACTIONS(2402), - [aux_sym_cmd_identifier_token25] = ACTIONS(2402), - [aux_sym_cmd_identifier_token26] = ACTIONS(2402), - [aux_sym_cmd_identifier_token27] = ACTIONS(2402), - [aux_sym_cmd_identifier_token28] = ACTIONS(2402), - [aux_sym_cmd_identifier_token29] = ACTIONS(2402), - [aux_sym_cmd_identifier_token30] = ACTIONS(2402), - [aux_sym_cmd_identifier_token31] = ACTIONS(2402), - [aux_sym_cmd_identifier_token32] = ACTIONS(2402), - [aux_sym_cmd_identifier_token33] = ACTIONS(2402), - [aux_sym_cmd_identifier_token34] = ACTIONS(2402), - [aux_sym_cmd_identifier_token35] = ACTIONS(2402), - [aux_sym_cmd_identifier_token36] = ACTIONS(2402), - [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [anon_sym_null] = ACTIONS(2402), - [aux_sym_cmd_identifier_token38] = ACTIONS(2402), - [aux_sym_cmd_identifier_token39] = ACTIONS(2402), - [aux_sym_cmd_identifier_token40] = ACTIONS(2402), - [anon_sym_def] = ACTIONS(2402), - [anon_sym_export_DASHenv] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_use] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(2402), - [anon_sym_error] = ACTIONS(2402), - [anon_sym_list] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_in] = ACTIONS(2402), - [anon_sym_loop] = ACTIONS(2402), - [anon_sym_make] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_match] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_catch] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_source] = ACTIONS(2402), - [anon_sym_source_DASHenv] = ACTIONS(2402), - [anon_sym_register] = ACTIONS(2402), - [anon_sym_hide] = ACTIONS(2402), - [anon_sym_hide_DASHenv] = ACTIONS(2402), - [anon_sym_overlay] = ACTIONS(2402), - [anon_sym_new] = ACTIONS(2402), - [anon_sym_as] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2402), - [aux_sym__val_number_decimal_token1] = ACTIONS(2402), - [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), - [sym__entry_separator] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2402), + [664] = { + [sym_comment] = STATE(664), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_alias] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_let_DASHenv] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [aux_sym_cmd_identifier_token1] = ACTIONS(2445), + [aux_sym_cmd_identifier_token2] = ACTIONS(2445), + [aux_sym_cmd_identifier_token3] = ACTIONS(2445), + [aux_sym_cmd_identifier_token4] = ACTIONS(2445), + [aux_sym_cmd_identifier_token5] = ACTIONS(2445), + [aux_sym_cmd_identifier_token6] = ACTIONS(2445), + [aux_sym_cmd_identifier_token7] = ACTIONS(2445), + [aux_sym_cmd_identifier_token8] = ACTIONS(2445), + [aux_sym_cmd_identifier_token9] = ACTIONS(2445), + [aux_sym_cmd_identifier_token10] = ACTIONS(2445), + [aux_sym_cmd_identifier_token11] = ACTIONS(2445), + [aux_sym_cmd_identifier_token12] = ACTIONS(2445), + [aux_sym_cmd_identifier_token13] = ACTIONS(2445), + [aux_sym_cmd_identifier_token14] = ACTIONS(2445), + [aux_sym_cmd_identifier_token15] = ACTIONS(2445), + [aux_sym_cmd_identifier_token16] = ACTIONS(2445), + [aux_sym_cmd_identifier_token17] = ACTIONS(2445), + [aux_sym_cmd_identifier_token18] = ACTIONS(2445), + [aux_sym_cmd_identifier_token19] = ACTIONS(2445), + [aux_sym_cmd_identifier_token20] = ACTIONS(2445), + [aux_sym_cmd_identifier_token21] = ACTIONS(2445), + [aux_sym_cmd_identifier_token22] = ACTIONS(2445), + [aux_sym_cmd_identifier_token23] = ACTIONS(2445), + [aux_sym_cmd_identifier_token24] = ACTIONS(2445), + [aux_sym_cmd_identifier_token25] = ACTIONS(2445), + [aux_sym_cmd_identifier_token26] = ACTIONS(2445), + [aux_sym_cmd_identifier_token27] = ACTIONS(2445), + [aux_sym_cmd_identifier_token28] = ACTIONS(2445), + [aux_sym_cmd_identifier_token29] = ACTIONS(2445), + [aux_sym_cmd_identifier_token30] = ACTIONS(2445), + [aux_sym_cmd_identifier_token31] = ACTIONS(2445), + [aux_sym_cmd_identifier_token32] = ACTIONS(2445), + [aux_sym_cmd_identifier_token33] = ACTIONS(2445), + [aux_sym_cmd_identifier_token34] = ACTIONS(2445), + [aux_sym_cmd_identifier_token35] = ACTIONS(2445), + [aux_sym_cmd_identifier_token36] = ACTIONS(2445), + [aux_sym_cmd_identifier_token37] = ACTIONS(2445), + [aux_sym_cmd_identifier_token38] = ACTIONS(2445), + [aux_sym_cmd_identifier_token39] = ACTIONS(2445), + [aux_sym_cmd_identifier_token40] = ACTIONS(2445), + [anon_sym_def] = ACTIONS(2445), + [anon_sym_export_DASHenv] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_DOLLAR] = ACTIONS(2445), + [anon_sym_error] = ACTIONS(2445), + [anon_sym_DASH2] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_in2] = ACTIONS(2445), + [anon_sym_loop] = ACTIONS(2445), + [anon_sym_make] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_catch] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_source] = ACTIONS(2445), + [anon_sym_source_DASHenv] = ACTIONS(2445), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_hide] = ACTIONS(2445), + [anon_sym_hide_DASHenv] = ACTIONS(2445), + [anon_sym_overlay] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_PLUS2] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2445), + [aux_sym__val_number_decimal_token1] = ACTIONS(2445), + [aux_sym__val_number_decimal_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), + [aux_sym__val_number_token4] = ACTIONS(2445), + [aux_sym__val_number_token5] = ACTIONS(2445), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(2447), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2404), + [sym_raw_string_begin] = ACTIONS(2447), }, - [551] = { - [sym_comment] = STATE(551), - [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_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), + [665] = { + [sym_comment] = STATE(665), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_in2] = 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_as] = ACTIONS(2449), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2449), + [aux_sym__val_number_token5] = ACTIONS(2449), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1056), + [sym_raw_string_begin] = ACTIONS(2451), }, - [552] = { - [sym_comment] = STATE(552), - [anon_sym_export] = ACTIONS(2406), - [anon_sym_alias] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_let_DASHenv] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [aux_sym_cmd_identifier_token1] = ACTIONS(2406), - [aux_sym_cmd_identifier_token2] = ACTIONS(2406), - [aux_sym_cmd_identifier_token3] = ACTIONS(2406), - [aux_sym_cmd_identifier_token4] = ACTIONS(2406), - [aux_sym_cmd_identifier_token5] = ACTIONS(2406), - [aux_sym_cmd_identifier_token6] = ACTIONS(2406), - [aux_sym_cmd_identifier_token7] = ACTIONS(2406), - [aux_sym_cmd_identifier_token8] = ACTIONS(2406), - [aux_sym_cmd_identifier_token9] = ACTIONS(2406), - [aux_sym_cmd_identifier_token10] = ACTIONS(2406), - [aux_sym_cmd_identifier_token11] = ACTIONS(2406), - [aux_sym_cmd_identifier_token12] = ACTIONS(2406), - [aux_sym_cmd_identifier_token13] = ACTIONS(2406), - [aux_sym_cmd_identifier_token14] = ACTIONS(2406), - [aux_sym_cmd_identifier_token15] = ACTIONS(2406), - [aux_sym_cmd_identifier_token16] = ACTIONS(2406), - [aux_sym_cmd_identifier_token17] = ACTIONS(2406), - [aux_sym_cmd_identifier_token18] = ACTIONS(2406), - [aux_sym_cmd_identifier_token19] = ACTIONS(2406), - [aux_sym_cmd_identifier_token20] = ACTIONS(2406), - [aux_sym_cmd_identifier_token21] = ACTIONS(2406), - [aux_sym_cmd_identifier_token22] = ACTIONS(2406), - [aux_sym_cmd_identifier_token23] = ACTIONS(2406), - [aux_sym_cmd_identifier_token24] = ACTIONS(2406), - [aux_sym_cmd_identifier_token25] = ACTIONS(2406), - [aux_sym_cmd_identifier_token26] = ACTIONS(2406), - [aux_sym_cmd_identifier_token27] = ACTIONS(2406), - [aux_sym_cmd_identifier_token28] = ACTIONS(2406), - [aux_sym_cmd_identifier_token29] = ACTIONS(2406), - [aux_sym_cmd_identifier_token30] = ACTIONS(2406), - [aux_sym_cmd_identifier_token31] = ACTIONS(2406), - [aux_sym_cmd_identifier_token32] = ACTIONS(2406), - [aux_sym_cmd_identifier_token33] = ACTIONS(2406), - [aux_sym_cmd_identifier_token34] = ACTIONS(2406), - [aux_sym_cmd_identifier_token35] = ACTIONS(2406), - [aux_sym_cmd_identifier_token36] = ACTIONS(2406), - [anon_sym_true] = ACTIONS(2406), - [anon_sym_false] = ACTIONS(2406), - [anon_sym_null] = ACTIONS(2406), - [aux_sym_cmd_identifier_token38] = ACTIONS(2406), - [aux_sym_cmd_identifier_token39] = ACTIONS(2406), - [aux_sym_cmd_identifier_token40] = ACTIONS(2406), - [anon_sym_def] = ACTIONS(2406), - [anon_sym_export_DASHenv] = ACTIONS(2406), - [anon_sym_extern] = ACTIONS(2406), - [anon_sym_module] = ACTIONS(2406), - [anon_sym_use] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_DOLLAR] = ACTIONS(2406), - [anon_sym_error] = ACTIONS(2406), - [anon_sym_list] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_in] = ACTIONS(2406), - [anon_sym_loop] = ACTIONS(2406), - [anon_sym_make] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [anon_sym_do] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2406), - [anon_sym_catch] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_source] = ACTIONS(2406), - [anon_sym_source_DASHenv] = ACTIONS(2406), - [anon_sym_register] = ACTIONS(2406), - [anon_sym_hide] = ACTIONS(2406), - [anon_sym_hide_DASHenv] = ACTIONS(2406), - [anon_sym_overlay] = ACTIONS(2406), - [anon_sym_new] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2406), - [aux_sym__val_number_decimal_token1] = ACTIONS(2406), - [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), - [sym__entry_separator] = ACTIONS(2408), - [anon_sym_PLUS] = ACTIONS(2406), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2408), + [666] = { + [sym_comment] = STATE(666), + [aux_sym_shebang_repeat1] = STATE(666), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_alias] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_let_DASHenv] = ACTIONS(1294), + [anon_sym_mut] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [aux_sym_cmd_identifier_token1] = ACTIONS(1294), + [aux_sym_cmd_identifier_token2] = ACTIONS(1296), + [aux_sym_cmd_identifier_token3] = ACTIONS(1296), + [aux_sym_cmd_identifier_token4] = ACTIONS(1296), + [aux_sym_cmd_identifier_token5] = ACTIONS(1296), + [aux_sym_cmd_identifier_token6] = ACTIONS(1296), + [aux_sym_cmd_identifier_token7] = ACTIONS(1296), + [aux_sym_cmd_identifier_token8] = ACTIONS(1294), + [aux_sym_cmd_identifier_token9] = ACTIONS(1294), + [aux_sym_cmd_identifier_token10] = ACTIONS(1296), + [aux_sym_cmd_identifier_token11] = ACTIONS(1296), + [aux_sym_cmd_identifier_token12] = ACTIONS(1294), + [aux_sym_cmd_identifier_token13] = ACTIONS(1294), + [aux_sym_cmd_identifier_token14] = ACTIONS(1294), + [aux_sym_cmd_identifier_token15] = ACTIONS(1294), + [aux_sym_cmd_identifier_token16] = ACTIONS(1296), + [aux_sym_cmd_identifier_token17] = ACTIONS(1296), + [aux_sym_cmd_identifier_token18] = ACTIONS(1296), + [aux_sym_cmd_identifier_token19] = ACTIONS(1296), + [aux_sym_cmd_identifier_token20] = ACTIONS(1296), + [aux_sym_cmd_identifier_token21] = ACTIONS(1296), + [aux_sym_cmd_identifier_token22] = ACTIONS(1296), + [aux_sym_cmd_identifier_token23] = ACTIONS(1296), + [aux_sym_cmd_identifier_token24] = ACTIONS(1296), + [aux_sym_cmd_identifier_token25] = ACTIONS(1296), + [aux_sym_cmd_identifier_token26] = ACTIONS(1296), + [aux_sym_cmd_identifier_token27] = ACTIONS(1296), + [aux_sym_cmd_identifier_token28] = ACTIONS(1296), + [aux_sym_cmd_identifier_token29] = ACTIONS(1296), + [aux_sym_cmd_identifier_token30] = ACTIONS(1296), + [aux_sym_cmd_identifier_token31] = ACTIONS(1296), + [aux_sym_cmd_identifier_token32] = ACTIONS(1296), + [aux_sym_cmd_identifier_token33] = ACTIONS(1296), + [aux_sym_cmd_identifier_token34] = ACTIONS(1294), + [aux_sym_cmd_identifier_token35] = ACTIONS(1296), + [aux_sym_cmd_identifier_token36] = ACTIONS(1296), + [aux_sym_cmd_identifier_token37] = ACTIONS(1296), + [aux_sym_cmd_identifier_token38] = ACTIONS(1294), + [aux_sym_cmd_identifier_token39] = ACTIONS(1296), + [aux_sym_cmd_identifier_token40] = ACTIONS(1296), + [sym__newline] = ACTIONS(2453), + [anon_sym_def] = ACTIONS(1294), + [anon_sym_export_DASHenv] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_error] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_in2] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_make] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_catch] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_source] = ACTIONS(1294), + [anon_sym_source_DASHenv] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_hide] = ACTIONS(1294), + [anon_sym_hide_DASHenv] = ACTIONS(1294), + [anon_sym_overlay] = ACTIONS(1294), + [anon_sym_as] = ACTIONS(1294), + [anon_sym_PLUS2] = ACTIONS(1294), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1296), + [aux_sym__val_number_decimal_token1] = ACTIONS(1294), + [aux_sym__val_number_decimal_token2] = ACTIONS(1296), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(1296), + [aux_sym__val_number_token2] = ACTIONS(1296), + [aux_sym__val_number_token3] = ACTIONS(1296), + [aux_sym__val_number_token4] = ACTIONS(1294), + [aux_sym__val_number_token5] = ACTIONS(1294), + [aux_sym__val_number_token6] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__str_single_quotes] = ACTIONS(1296), + [sym__str_back_ticks] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1296), }, - [553] = { - [sym_comment] = STATE(553), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_alias] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_let_DASHenv] = ACTIONS(2410), - [anon_sym_mut] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [aux_sym_cmd_identifier_token1] = ACTIONS(2410), - [aux_sym_cmd_identifier_token2] = ACTIONS(2410), - [aux_sym_cmd_identifier_token3] = ACTIONS(2410), - [aux_sym_cmd_identifier_token4] = ACTIONS(2410), - [aux_sym_cmd_identifier_token5] = ACTIONS(2410), - [aux_sym_cmd_identifier_token6] = ACTIONS(2410), - [aux_sym_cmd_identifier_token7] = ACTIONS(2410), - [aux_sym_cmd_identifier_token8] = ACTIONS(2410), - [aux_sym_cmd_identifier_token9] = ACTIONS(2410), - [aux_sym_cmd_identifier_token10] = ACTIONS(2410), - [aux_sym_cmd_identifier_token11] = ACTIONS(2410), - [aux_sym_cmd_identifier_token12] = ACTIONS(2410), - [aux_sym_cmd_identifier_token13] = ACTIONS(2410), - [aux_sym_cmd_identifier_token14] = ACTIONS(2410), - [aux_sym_cmd_identifier_token15] = ACTIONS(2410), - [aux_sym_cmd_identifier_token16] = ACTIONS(2410), - [aux_sym_cmd_identifier_token17] = ACTIONS(2410), - [aux_sym_cmd_identifier_token18] = ACTIONS(2410), - [aux_sym_cmd_identifier_token19] = ACTIONS(2410), - [aux_sym_cmd_identifier_token20] = ACTIONS(2410), - [aux_sym_cmd_identifier_token21] = ACTIONS(2410), - [aux_sym_cmd_identifier_token22] = ACTIONS(2410), - [aux_sym_cmd_identifier_token23] = ACTIONS(2410), - [aux_sym_cmd_identifier_token24] = ACTIONS(2410), - [aux_sym_cmd_identifier_token25] = ACTIONS(2410), - [aux_sym_cmd_identifier_token26] = ACTIONS(2410), - [aux_sym_cmd_identifier_token27] = ACTIONS(2410), - [aux_sym_cmd_identifier_token28] = ACTIONS(2410), - [aux_sym_cmd_identifier_token29] = ACTIONS(2410), - [aux_sym_cmd_identifier_token30] = ACTIONS(2410), - [aux_sym_cmd_identifier_token31] = ACTIONS(2410), - [aux_sym_cmd_identifier_token32] = ACTIONS(2410), - [aux_sym_cmd_identifier_token33] = ACTIONS(2410), - [aux_sym_cmd_identifier_token34] = ACTIONS(2410), - [aux_sym_cmd_identifier_token35] = ACTIONS(2410), - [aux_sym_cmd_identifier_token36] = ACTIONS(2410), - [anon_sym_true] = ACTIONS(2410), - [anon_sym_false] = ACTIONS(2410), - [anon_sym_null] = ACTIONS(2410), - [aux_sym_cmd_identifier_token38] = ACTIONS(2410), - [aux_sym_cmd_identifier_token39] = ACTIONS(2410), - [aux_sym_cmd_identifier_token40] = ACTIONS(2410), - [anon_sym_def] = ACTIONS(2410), - [anon_sym_export_DASHenv] = ACTIONS(2410), - [anon_sym_extern] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_use] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_DOLLAR] = ACTIONS(2410), - [anon_sym_error] = ACTIONS(2410), - [anon_sym_list] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_in] = ACTIONS(2410), - [anon_sym_loop] = ACTIONS(2410), - [anon_sym_make] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_do] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2410), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_catch] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_source] = ACTIONS(2410), - [anon_sym_source_DASHenv] = ACTIONS(2410), - [anon_sym_register] = ACTIONS(2410), - [anon_sym_hide] = ACTIONS(2410), - [anon_sym_hide_DASHenv] = ACTIONS(2410), - [anon_sym_overlay] = ACTIONS(2410), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2410), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [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), - [sym__entry_separator] = ACTIONS(2412), - [anon_sym_PLUS] = ACTIONS(2410), + [667] = { + [sym_comment] = STATE(667), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_alias] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_let_DASHenv] = ACTIONS(2456), + [anon_sym_mut] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [aux_sym_cmd_identifier_token1] = ACTIONS(2456), + [aux_sym_cmd_identifier_token2] = ACTIONS(2456), + [aux_sym_cmd_identifier_token3] = ACTIONS(2456), + [aux_sym_cmd_identifier_token4] = ACTIONS(2456), + [aux_sym_cmd_identifier_token5] = ACTIONS(2456), + [aux_sym_cmd_identifier_token6] = ACTIONS(2456), + [aux_sym_cmd_identifier_token7] = ACTIONS(2456), + [aux_sym_cmd_identifier_token8] = ACTIONS(2456), + [aux_sym_cmd_identifier_token9] = ACTIONS(2456), + [aux_sym_cmd_identifier_token10] = ACTIONS(2456), + [aux_sym_cmd_identifier_token11] = ACTIONS(2456), + [aux_sym_cmd_identifier_token12] = ACTIONS(2456), + [aux_sym_cmd_identifier_token13] = ACTIONS(2456), + [aux_sym_cmd_identifier_token14] = ACTIONS(2456), + [aux_sym_cmd_identifier_token15] = ACTIONS(2456), + [aux_sym_cmd_identifier_token16] = ACTIONS(2456), + [aux_sym_cmd_identifier_token17] = ACTIONS(2456), + [aux_sym_cmd_identifier_token18] = ACTIONS(2456), + [aux_sym_cmd_identifier_token19] = ACTIONS(2456), + [aux_sym_cmd_identifier_token20] = ACTIONS(2456), + [aux_sym_cmd_identifier_token21] = ACTIONS(2456), + [aux_sym_cmd_identifier_token22] = ACTIONS(2456), + [aux_sym_cmd_identifier_token23] = ACTIONS(2456), + [aux_sym_cmd_identifier_token24] = ACTIONS(2456), + [aux_sym_cmd_identifier_token25] = ACTIONS(2456), + [aux_sym_cmd_identifier_token26] = ACTIONS(2456), + [aux_sym_cmd_identifier_token27] = ACTIONS(2456), + [aux_sym_cmd_identifier_token28] = ACTIONS(2456), + [aux_sym_cmd_identifier_token29] = ACTIONS(2456), + [aux_sym_cmd_identifier_token30] = ACTIONS(2456), + [aux_sym_cmd_identifier_token31] = ACTIONS(2456), + [aux_sym_cmd_identifier_token32] = ACTIONS(2456), + [aux_sym_cmd_identifier_token33] = ACTIONS(2456), + [aux_sym_cmd_identifier_token34] = ACTIONS(2456), + [aux_sym_cmd_identifier_token35] = ACTIONS(2456), + [aux_sym_cmd_identifier_token36] = ACTIONS(2456), + [aux_sym_cmd_identifier_token37] = ACTIONS(2456), + [aux_sym_cmd_identifier_token38] = ACTIONS(2456), + [aux_sym_cmd_identifier_token39] = ACTIONS(2456), + [aux_sym_cmd_identifier_token40] = ACTIONS(2456), + [anon_sym_def] = ACTIONS(2456), + [anon_sym_export_DASHenv] = ACTIONS(2456), + [anon_sym_extern] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_use] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_DOLLAR] = ACTIONS(2456), + [anon_sym_error] = ACTIONS(2456), + [anon_sym_DASH2] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_in2] = ACTIONS(2456), + [anon_sym_loop] = ACTIONS(2456), + [anon_sym_make] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_match] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_catch] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_source] = ACTIONS(2456), + [anon_sym_source_DASHenv] = ACTIONS(2456), + [anon_sym_register] = ACTIONS(2456), + [anon_sym_hide] = ACTIONS(2456), + [anon_sym_hide_DASHenv] = ACTIONS(2456), + [anon_sym_overlay] = ACTIONS(2456), + [anon_sym_as] = ACTIONS(2456), + [anon_sym_PLUS2] = ACTIONS(2456), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2456), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2456), + [aux_sym__val_number_decimal_token1] = ACTIONS(2456), + [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), + [aux_sym__val_number_token4] = ACTIONS(2456), + [aux_sym__val_number_token5] = ACTIONS(2456), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2412), + [sym_raw_string_begin] = ACTIONS(2458), }, - [554] = { - [sym_comment] = STATE(554), - [anon_sym_export] = ACTIONS(2414), - [anon_sym_alias] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_let_DASHenv] = ACTIONS(2414), - [anon_sym_mut] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [aux_sym_cmd_identifier_token1] = ACTIONS(2414), - [aux_sym_cmd_identifier_token2] = ACTIONS(2414), - [aux_sym_cmd_identifier_token3] = ACTIONS(2414), - [aux_sym_cmd_identifier_token4] = ACTIONS(2414), - [aux_sym_cmd_identifier_token5] = ACTIONS(2414), - [aux_sym_cmd_identifier_token6] = ACTIONS(2414), - [aux_sym_cmd_identifier_token7] = ACTIONS(2414), - [aux_sym_cmd_identifier_token8] = ACTIONS(2414), - [aux_sym_cmd_identifier_token9] = ACTIONS(2414), - [aux_sym_cmd_identifier_token10] = ACTIONS(2414), - [aux_sym_cmd_identifier_token11] = ACTIONS(2414), - [aux_sym_cmd_identifier_token12] = ACTIONS(2414), - [aux_sym_cmd_identifier_token13] = ACTIONS(2414), - [aux_sym_cmd_identifier_token14] = ACTIONS(2414), - [aux_sym_cmd_identifier_token15] = ACTIONS(2414), - [aux_sym_cmd_identifier_token16] = ACTIONS(2414), - [aux_sym_cmd_identifier_token17] = ACTIONS(2414), - [aux_sym_cmd_identifier_token18] = ACTIONS(2414), - [aux_sym_cmd_identifier_token19] = ACTIONS(2414), - [aux_sym_cmd_identifier_token20] = ACTIONS(2414), - [aux_sym_cmd_identifier_token21] = ACTIONS(2414), - [aux_sym_cmd_identifier_token22] = ACTIONS(2414), - [aux_sym_cmd_identifier_token23] = ACTIONS(2414), - [aux_sym_cmd_identifier_token24] = ACTIONS(2414), - [aux_sym_cmd_identifier_token25] = ACTIONS(2414), - [aux_sym_cmd_identifier_token26] = ACTIONS(2414), - [aux_sym_cmd_identifier_token27] = ACTIONS(2414), - [aux_sym_cmd_identifier_token28] = ACTIONS(2414), - [aux_sym_cmd_identifier_token29] = ACTIONS(2414), - [aux_sym_cmd_identifier_token30] = ACTIONS(2414), - [aux_sym_cmd_identifier_token31] = ACTIONS(2414), - [aux_sym_cmd_identifier_token32] = ACTIONS(2414), - [aux_sym_cmd_identifier_token33] = ACTIONS(2414), - [aux_sym_cmd_identifier_token34] = ACTIONS(2414), - [aux_sym_cmd_identifier_token35] = ACTIONS(2414), - [aux_sym_cmd_identifier_token36] = ACTIONS(2414), - [anon_sym_true] = ACTIONS(2414), - [anon_sym_false] = ACTIONS(2414), - [anon_sym_null] = ACTIONS(2414), - [aux_sym_cmd_identifier_token38] = ACTIONS(2414), - [aux_sym_cmd_identifier_token39] = ACTIONS(2414), - [aux_sym_cmd_identifier_token40] = ACTIONS(2414), - [anon_sym_def] = ACTIONS(2414), - [anon_sym_export_DASHenv] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_use] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2414), - [anon_sym_DOLLAR] = ACTIONS(2414), - [anon_sym_error] = ACTIONS(2414), - [anon_sym_list] = ACTIONS(2414), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_in] = ACTIONS(2414), - [anon_sym_loop] = ACTIONS(2414), - [anon_sym_make] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_do] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_else] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2414), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_try] = ACTIONS(2414), - [anon_sym_catch] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_source] = ACTIONS(2414), - [anon_sym_source_DASHenv] = ACTIONS(2414), - [anon_sym_register] = ACTIONS(2414), - [anon_sym_hide] = ACTIONS(2414), - [anon_sym_hide_DASHenv] = ACTIONS(2414), - [anon_sym_overlay] = ACTIONS(2414), - [anon_sym_new] = ACTIONS(2414), - [anon_sym_as] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2414), - [aux_sym__val_number_decimal_token1] = ACTIONS(2414), - [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), - [sym__entry_separator] = ACTIONS(2416), - [anon_sym_PLUS] = ACTIONS(2414), + [668] = { + [sym_comment] = STATE(668), + [anon_sym_export] = ACTIONS(2460), + [anon_sym_alias] = ACTIONS(2460), + [anon_sym_let] = ACTIONS(2460), + [anon_sym_let_DASHenv] = ACTIONS(2460), + [anon_sym_mut] = ACTIONS(2460), + [anon_sym_const] = ACTIONS(2460), + [aux_sym_cmd_identifier_token1] = ACTIONS(2460), + [aux_sym_cmd_identifier_token2] = ACTIONS(2460), + [aux_sym_cmd_identifier_token3] = ACTIONS(2460), + [aux_sym_cmd_identifier_token4] = ACTIONS(2460), + [aux_sym_cmd_identifier_token5] = ACTIONS(2460), + [aux_sym_cmd_identifier_token6] = ACTIONS(2460), + [aux_sym_cmd_identifier_token7] = ACTIONS(2460), + [aux_sym_cmd_identifier_token8] = ACTIONS(2460), + [aux_sym_cmd_identifier_token9] = ACTIONS(2460), + [aux_sym_cmd_identifier_token10] = ACTIONS(2460), + [aux_sym_cmd_identifier_token11] = ACTIONS(2460), + [aux_sym_cmd_identifier_token12] = ACTIONS(2460), + [aux_sym_cmd_identifier_token13] = ACTIONS(2460), + [aux_sym_cmd_identifier_token14] = ACTIONS(2460), + [aux_sym_cmd_identifier_token15] = ACTIONS(2460), + [aux_sym_cmd_identifier_token16] = ACTIONS(2460), + [aux_sym_cmd_identifier_token17] = ACTIONS(2460), + [aux_sym_cmd_identifier_token18] = ACTIONS(2460), + [aux_sym_cmd_identifier_token19] = ACTIONS(2460), + [aux_sym_cmd_identifier_token20] = ACTIONS(2460), + [aux_sym_cmd_identifier_token21] = ACTIONS(2460), + [aux_sym_cmd_identifier_token22] = ACTIONS(2460), + [aux_sym_cmd_identifier_token23] = ACTIONS(2460), + [aux_sym_cmd_identifier_token24] = ACTIONS(2460), + [aux_sym_cmd_identifier_token25] = ACTIONS(2460), + [aux_sym_cmd_identifier_token26] = ACTIONS(2460), + [aux_sym_cmd_identifier_token27] = ACTIONS(2460), + [aux_sym_cmd_identifier_token28] = ACTIONS(2460), + [aux_sym_cmd_identifier_token29] = ACTIONS(2460), + [aux_sym_cmd_identifier_token30] = ACTIONS(2460), + [aux_sym_cmd_identifier_token31] = ACTIONS(2460), + [aux_sym_cmd_identifier_token32] = ACTIONS(2460), + [aux_sym_cmd_identifier_token33] = ACTIONS(2460), + [aux_sym_cmd_identifier_token34] = ACTIONS(2460), + [aux_sym_cmd_identifier_token35] = ACTIONS(2460), + [aux_sym_cmd_identifier_token36] = ACTIONS(2460), + [aux_sym_cmd_identifier_token37] = ACTIONS(2460), + [aux_sym_cmd_identifier_token38] = ACTIONS(2460), + [aux_sym_cmd_identifier_token39] = ACTIONS(2460), + [aux_sym_cmd_identifier_token40] = ACTIONS(2460), + [anon_sym_def] = ACTIONS(2460), + [anon_sym_export_DASHenv] = ACTIONS(2460), + [anon_sym_extern] = ACTIONS(2460), + [anon_sym_module] = ACTIONS(2460), + [anon_sym_use] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(2460), + [anon_sym_DOLLAR] = ACTIONS(2460), + [anon_sym_error] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2460), + [anon_sym_break] = ACTIONS(2460), + [anon_sym_continue] = ACTIONS(2460), + [anon_sym_for] = ACTIONS(2460), + [anon_sym_in2] = ACTIONS(2460), + [anon_sym_loop] = ACTIONS(2460), + [anon_sym_make] = ACTIONS(2460), + [anon_sym_while] = ACTIONS(2460), + [anon_sym_do] = ACTIONS(2460), + [anon_sym_if] = ACTIONS(2460), + [anon_sym_else] = ACTIONS(2460), + [anon_sym_match] = ACTIONS(2460), + [anon_sym_RBRACE] = ACTIONS(2460), + [anon_sym_try] = ACTIONS(2460), + [anon_sym_catch] = ACTIONS(2460), + [anon_sym_return] = ACTIONS(2460), + [anon_sym_source] = ACTIONS(2460), + [anon_sym_source_DASHenv] = ACTIONS(2460), + [anon_sym_register] = ACTIONS(2460), + [anon_sym_hide] = ACTIONS(2460), + [anon_sym_hide_DASHenv] = ACTIONS(2460), + [anon_sym_overlay] = ACTIONS(2460), + [anon_sym_as] = ACTIONS(2460), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2460), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2460), + [aux_sym__val_number_decimal_token1] = ACTIONS(2460), + [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), + [aux_sym__val_number_token4] = ACTIONS(2460), + [aux_sym__val_number_token5] = ACTIONS(2460), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(2462), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2416), + [sym_raw_string_begin] = ACTIONS(2462), }, - [555] = { - [sym_comment] = STATE(555), - [anon_sym_export] = ACTIONS(2418), - [anon_sym_alias] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_let_DASHenv] = ACTIONS(2418), - [anon_sym_mut] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [aux_sym_cmd_identifier_token1] = ACTIONS(2418), - [aux_sym_cmd_identifier_token2] = ACTIONS(2418), - [aux_sym_cmd_identifier_token3] = ACTIONS(2418), - [aux_sym_cmd_identifier_token4] = ACTIONS(2418), - [aux_sym_cmd_identifier_token5] = ACTIONS(2418), - [aux_sym_cmd_identifier_token6] = ACTIONS(2418), - [aux_sym_cmd_identifier_token7] = ACTIONS(2418), - [aux_sym_cmd_identifier_token8] = ACTIONS(2418), - [aux_sym_cmd_identifier_token9] = ACTIONS(2418), - [aux_sym_cmd_identifier_token10] = ACTIONS(2418), - [aux_sym_cmd_identifier_token11] = ACTIONS(2418), - [aux_sym_cmd_identifier_token12] = ACTIONS(2418), - [aux_sym_cmd_identifier_token13] = ACTIONS(2418), - [aux_sym_cmd_identifier_token14] = ACTIONS(2418), - [aux_sym_cmd_identifier_token15] = ACTIONS(2418), - [aux_sym_cmd_identifier_token16] = ACTIONS(2418), - [aux_sym_cmd_identifier_token17] = ACTIONS(2418), - [aux_sym_cmd_identifier_token18] = ACTIONS(2418), - [aux_sym_cmd_identifier_token19] = ACTIONS(2418), - [aux_sym_cmd_identifier_token20] = ACTIONS(2418), - [aux_sym_cmd_identifier_token21] = ACTIONS(2418), - [aux_sym_cmd_identifier_token22] = ACTIONS(2418), - [aux_sym_cmd_identifier_token23] = ACTIONS(2418), - [aux_sym_cmd_identifier_token24] = ACTIONS(2418), - [aux_sym_cmd_identifier_token25] = ACTIONS(2418), - [aux_sym_cmd_identifier_token26] = ACTIONS(2418), - [aux_sym_cmd_identifier_token27] = ACTIONS(2418), - [aux_sym_cmd_identifier_token28] = ACTIONS(2418), - [aux_sym_cmd_identifier_token29] = ACTIONS(2418), - [aux_sym_cmd_identifier_token30] = ACTIONS(2418), - [aux_sym_cmd_identifier_token31] = ACTIONS(2418), - [aux_sym_cmd_identifier_token32] = ACTIONS(2418), - [aux_sym_cmd_identifier_token33] = ACTIONS(2418), - [aux_sym_cmd_identifier_token34] = ACTIONS(2418), - [aux_sym_cmd_identifier_token35] = ACTIONS(2418), - [aux_sym_cmd_identifier_token36] = ACTIONS(2418), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_null] = ACTIONS(2418), - [aux_sym_cmd_identifier_token38] = ACTIONS(2418), - [aux_sym_cmd_identifier_token39] = ACTIONS(2418), - [aux_sym_cmd_identifier_token40] = ACTIONS(2418), - [anon_sym_def] = ACTIONS(2418), - [anon_sym_export_DASHenv] = ACTIONS(2418), - [anon_sym_extern] = ACTIONS(2418), - [anon_sym_module] = ACTIONS(2418), - [anon_sym_use] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_error] = ACTIONS(2418), - [anon_sym_list] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_loop] = ACTIONS(2418), - [anon_sym_make] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_do] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_else] = ACTIONS(2418), - [anon_sym_match] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2418), - [anon_sym_catch] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_source] = ACTIONS(2418), - [anon_sym_source_DASHenv] = ACTIONS(2418), - [anon_sym_register] = ACTIONS(2418), - [anon_sym_hide] = ACTIONS(2418), - [anon_sym_hide_DASHenv] = ACTIONS(2418), - [anon_sym_overlay] = ACTIONS(2418), - [anon_sym_new] = ACTIONS(2418), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2418), - [aux_sym__val_number_decimal_token1] = ACTIONS(2418), - [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), - [sym__entry_separator] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2418), + [669] = { + [sym_comment] = STATE(669), + [anon_sym_export] = ACTIONS(2464), + [anon_sym_alias] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_let_DASHenv] = ACTIONS(2464), + [anon_sym_mut] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [aux_sym_cmd_identifier_token1] = ACTIONS(2464), + [aux_sym_cmd_identifier_token2] = ACTIONS(2464), + [aux_sym_cmd_identifier_token3] = ACTIONS(2464), + [aux_sym_cmd_identifier_token4] = ACTIONS(2464), + [aux_sym_cmd_identifier_token5] = ACTIONS(2464), + [aux_sym_cmd_identifier_token6] = ACTIONS(2464), + [aux_sym_cmd_identifier_token7] = ACTIONS(2464), + [aux_sym_cmd_identifier_token8] = ACTIONS(2464), + [aux_sym_cmd_identifier_token9] = ACTIONS(2464), + [aux_sym_cmd_identifier_token10] = ACTIONS(2464), + [aux_sym_cmd_identifier_token11] = ACTIONS(2464), + [aux_sym_cmd_identifier_token12] = ACTIONS(2464), + [aux_sym_cmd_identifier_token13] = ACTIONS(2464), + [aux_sym_cmd_identifier_token14] = ACTIONS(2464), + [aux_sym_cmd_identifier_token15] = ACTIONS(2464), + [aux_sym_cmd_identifier_token16] = ACTIONS(2464), + [aux_sym_cmd_identifier_token17] = ACTIONS(2464), + [aux_sym_cmd_identifier_token18] = ACTIONS(2464), + [aux_sym_cmd_identifier_token19] = ACTIONS(2464), + [aux_sym_cmd_identifier_token20] = ACTIONS(2464), + [aux_sym_cmd_identifier_token21] = ACTIONS(2464), + [aux_sym_cmd_identifier_token22] = ACTIONS(2464), + [aux_sym_cmd_identifier_token23] = ACTIONS(2464), + [aux_sym_cmd_identifier_token24] = ACTIONS(2464), + [aux_sym_cmd_identifier_token25] = ACTIONS(2464), + [aux_sym_cmd_identifier_token26] = ACTIONS(2464), + [aux_sym_cmd_identifier_token27] = ACTIONS(2464), + [aux_sym_cmd_identifier_token28] = ACTIONS(2464), + [aux_sym_cmd_identifier_token29] = ACTIONS(2464), + [aux_sym_cmd_identifier_token30] = ACTIONS(2464), + [aux_sym_cmd_identifier_token31] = ACTIONS(2464), + [aux_sym_cmd_identifier_token32] = ACTIONS(2464), + [aux_sym_cmd_identifier_token33] = ACTIONS(2464), + [aux_sym_cmd_identifier_token34] = ACTIONS(2464), + [aux_sym_cmd_identifier_token35] = ACTIONS(2464), + [aux_sym_cmd_identifier_token36] = ACTIONS(2464), + [aux_sym_cmd_identifier_token37] = ACTIONS(2464), + [aux_sym_cmd_identifier_token38] = ACTIONS(2464), + [aux_sym_cmd_identifier_token39] = ACTIONS(2464), + [aux_sym_cmd_identifier_token40] = ACTIONS(2464), + [anon_sym_def] = ACTIONS(2464), + [anon_sym_export_DASHenv] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_module] = ACTIONS(2464), + [anon_sym_use] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2464), + [anon_sym_DOLLAR] = ACTIONS(2464), + [anon_sym_error] = ACTIONS(2464), + [anon_sym_DASH2] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_in2] = ACTIONS(2464), + [anon_sym_loop] = ACTIONS(2464), + [anon_sym_make] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_do] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_else] = ACTIONS(2464), + [anon_sym_match] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_try] = ACTIONS(2464), + [anon_sym_catch] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_source] = ACTIONS(2464), + [anon_sym_source_DASHenv] = ACTIONS(2464), + [anon_sym_register] = ACTIONS(2464), + [anon_sym_hide] = ACTIONS(2464), + [anon_sym_hide_DASHenv] = ACTIONS(2464), + [anon_sym_overlay] = ACTIONS(2464), + [anon_sym_as] = ACTIONS(2464), + [anon_sym_PLUS2] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2464), + [aux_sym__val_number_decimal_token1] = ACTIONS(2464), + [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), + [aux_sym__val_number_token4] = ACTIONS(2464), + [aux_sym__val_number_token5] = ACTIONS(2464), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(2466), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2420), + [sym_raw_string_begin] = ACTIONS(2466), }, - [556] = { - [sym_comment] = STATE(556), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_alias] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_let_DASHenv] = ACTIONS(2422), - [anon_sym_mut] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [aux_sym_cmd_identifier_token1] = ACTIONS(2422), - [aux_sym_cmd_identifier_token2] = ACTIONS(2422), - [aux_sym_cmd_identifier_token3] = ACTIONS(2422), - [aux_sym_cmd_identifier_token4] = ACTIONS(2422), - [aux_sym_cmd_identifier_token5] = ACTIONS(2422), - [aux_sym_cmd_identifier_token6] = ACTIONS(2422), - [aux_sym_cmd_identifier_token7] = ACTIONS(2422), - [aux_sym_cmd_identifier_token8] = ACTIONS(2422), - [aux_sym_cmd_identifier_token9] = ACTIONS(2422), - [aux_sym_cmd_identifier_token10] = ACTIONS(2422), - [aux_sym_cmd_identifier_token11] = ACTIONS(2422), - [aux_sym_cmd_identifier_token12] = ACTIONS(2422), - [aux_sym_cmd_identifier_token13] = ACTIONS(2422), - [aux_sym_cmd_identifier_token14] = ACTIONS(2422), - [aux_sym_cmd_identifier_token15] = ACTIONS(2422), - [aux_sym_cmd_identifier_token16] = ACTIONS(2422), - [aux_sym_cmd_identifier_token17] = ACTIONS(2422), - [aux_sym_cmd_identifier_token18] = ACTIONS(2422), - [aux_sym_cmd_identifier_token19] = ACTIONS(2422), - [aux_sym_cmd_identifier_token20] = ACTIONS(2422), - [aux_sym_cmd_identifier_token21] = ACTIONS(2422), - [aux_sym_cmd_identifier_token22] = ACTIONS(2422), - [aux_sym_cmd_identifier_token23] = ACTIONS(2422), - [aux_sym_cmd_identifier_token24] = ACTIONS(2422), - [aux_sym_cmd_identifier_token25] = ACTIONS(2422), - [aux_sym_cmd_identifier_token26] = ACTIONS(2422), - [aux_sym_cmd_identifier_token27] = ACTIONS(2422), - [aux_sym_cmd_identifier_token28] = ACTIONS(2422), - [aux_sym_cmd_identifier_token29] = ACTIONS(2422), - [aux_sym_cmd_identifier_token30] = ACTIONS(2422), - [aux_sym_cmd_identifier_token31] = ACTIONS(2422), - [aux_sym_cmd_identifier_token32] = ACTIONS(2422), - [aux_sym_cmd_identifier_token33] = ACTIONS(2422), - [aux_sym_cmd_identifier_token34] = ACTIONS(2422), - [aux_sym_cmd_identifier_token35] = ACTIONS(2422), - [aux_sym_cmd_identifier_token36] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2422), - [aux_sym_cmd_identifier_token38] = ACTIONS(2422), - [aux_sym_cmd_identifier_token39] = ACTIONS(2422), - [aux_sym_cmd_identifier_token40] = ACTIONS(2422), - [anon_sym_def] = ACTIONS(2422), - [anon_sym_export_DASHenv] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_module] = ACTIONS(2422), - [anon_sym_use] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_DOLLAR] = ACTIONS(2422), - [anon_sym_error] = ACTIONS(2422), - [anon_sym_list] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_loop] = ACTIONS(2422), - [anon_sym_make] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_do] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_else] = ACTIONS(2422), - [anon_sym_match] = ACTIONS(2422), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2422), - [anon_sym_catch] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_source] = ACTIONS(2422), - [anon_sym_source_DASHenv] = ACTIONS(2422), - [anon_sym_register] = ACTIONS(2422), - [anon_sym_hide] = ACTIONS(2422), - [anon_sym_hide_DASHenv] = ACTIONS(2422), - [anon_sym_overlay] = ACTIONS(2422), - [anon_sym_new] = ACTIONS(2422), - [anon_sym_as] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2422), - [aux_sym__val_number_decimal_token1] = ACTIONS(2422), - [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), - [sym__entry_separator] = ACTIONS(2424), - [anon_sym_PLUS] = ACTIONS(2422), + [670] = { + [sym_comment] = STATE(670), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_alias] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_let_DASHenv] = ACTIONS(2151), + [anon_sym_mut] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [aux_sym_cmd_identifier_token1] = ACTIONS(2151), + [aux_sym_cmd_identifier_token2] = ACTIONS(2151), + [aux_sym_cmd_identifier_token3] = ACTIONS(2151), + [aux_sym_cmd_identifier_token4] = ACTIONS(2151), + [aux_sym_cmd_identifier_token5] = ACTIONS(2151), + [aux_sym_cmd_identifier_token6] = ACTIONS(2151), + [aux_sym_cmd_identifier_token7] = ACTIONS(2151), + [aux_sym_cmd_identifier_token8] = ACTIONS(2151), + [aux_sym_cmd_identifier_token9] = ACTIONS(2151), + [aux_sym_cmd_identifier_token10] = ACTIONS(2151), + [aux_sym_cmd_identifier_token11] = ACTIONS(2151), + [aux_sym_cmd_identifier_token12] = ACTIONS(2151), + [aux_sym_cmd_identifier_token13] = ACTIONS(2151), + [aux_sym_cmd_identifier_token14] = ACTIONS(2151), + [aux_sym_cmd_identifier_token15] = ACTIONS(2151), + [aux_sym_cmd_identifier_token16] = ACTIONS(2151), + [aux_sym_cmd_identifier_token17] = ACTIONS(2151), + [aux_sym_cmd_identifier_token18] = ACTIONS(2151), + [aux_sym_cmd_identifier_token19] = ACTIONS(2151), + [aux_sym_cmd_identifier_token20] = ACTIONS(2151), + [aux_sym_cmd_identifier_token21] = ACTIONS(2151), + [aux_sym_cmd_identifier_token22] = ACTIONS(2151), + [aux_sym_cmd_identifier_token23] = ACTIONS(2151), + [aux_sym_cmd_identifier_token24] = ACTIONS(2151), + [aux_sym_cmd_identifier_token25] = ACTIONS(2151), + [aux_sym_cmd_identifier_token26] = ACTIONS(2151), + [aux_sym_cmd_identifier_token27] = ACTIONS(2151), + [aux_sym_cmd_identifier_token28] = ACTIONS(2151), + [aux_sym_cmd_identifier_token29] = ACTIONS(2151), + [aux_sym_cmd_identifier_token30] = ACTIONS(2151), + [aux_sym_cmd_identifier_token31] = ACTIONS(2151), + [aux_sym_cmd_identifier_token32] = ACTIONS(2151), + [aux_sym_cmd_identifier_token33] = ACTIONS(2151), + [aux_sym_cmd_identifier_token34] = ACTIONS(2151), + [aux_sym_cmd_identifier_token35] = ACTIONS(2151), + [aux_sym_cmd_identifier_token36] = ACTIONS(2151), + [aux_sym_cmd_identifier_token37] = ACTIONS(2151), + [aux_sym_cmd_identifier_token38] = ACTIONS(2151), + [aux_sym_cmd_identifier_token39] = ACTIONS(2151), + [aux_sym_cmd_identifier_token40] = ACTIONS(2151), + [anon_sym_def] = ACTIONS(2151), + [anon_sym_export_DASHenv] = ACTIONS(2151), + [anon_sym_extern] = ACTIONS(2151), + [anon_sym_module] = ACTIONS(2151), + [anon_sym_use] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_error] = ACTIONS(2151), + [anon_sym_DASH2] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_in2] = ACTIONS(2151), + [anon_sym_loop] = ACTIONS(2151), + [anon_sym_make] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_catch] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_source] = ACTIONS(2151), + [anon_sym_source_DASHenv] = ACTIONS(2151), + [anon_sym_register] = ACTIONS(2151), + [anon_sym_hide] = ACTIONS(2151), + [anon_sym_hide_DASHenv] = ACTIONS(2151), + [anon_sym_overlay] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_PLUS2] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2151), + [aux_sym__val_number_decimal_token1] = ACTIONS(2151), + [aux_sym__val_number_decimal_token2] = ACTIONS(2151), + [aux_sym__val_number_decimal_token3] = ACTIONS(2151), + [aux_sym__val_number_decimal_token4] = ACTIONS(2151), + [aux_sym__val_number_token1] = ACTIONS(2151), + [aux_sym__val_number_token2] = ACTIONS(2151), + [aux_sym__val_number_token3] = ACTIONS(2151), + [aux_sym__val_number_token4] = ACTIONS(2151), + [aux_sym__val_number_token5] = ACTIONS(2151), + [aux_sym__val_number_token6] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [sym__str_single_quotes] = ACTIONS(2151), + [sym__str_back_ticks] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2151), + [sym__entry_separator] = ACTIONS(2153), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2424), + [sym_raw_string_begin] = ACTIONS(2153), }, - [557] = { - [sym_comment] = STATE(557), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_alias] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_let_DASHenv] = ACTIONS(2426), - [anon_sym_mut] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [aux_sym_cmd_identifier_token1] = ACTIONS(2426), - [aux_sym_cmd_identifier_token2] = ACTIONS(2426), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), - [aux_sym_cmd_identifier_token6] = ACTIONS(2426), - [aux_sym_cmd_identifier_token7] = ACTIONS(2426), - [aux_sym_cmd_identifier_token8] = ACTIONS(2426), - [aux_sym_cmd_identifier_token9] = ACTIONS(2426), - [aux_sym_cmd_identifier_token10] = ACTIONS(2426), - [aux_sym_cmd_identifier_token11] = ACTIONS(2426), - [aux_sym_cmd_identifier_token12] = ACTIONS(2426), - [aux_sym_cmd_identifier_token13] = ACTIONS(2426), - [aux_sym_cmd_identifier_token14] = ACTIONS(2426), - [aux_sym_cmd_identifier_token15] = ACTIONS(2426), - [aux_sym_cmd_identifier_token16] = ACTIONS(2426), - [aux_sym_cmd_identifier_token17] = ACTIONS(2426), - [aux_sym_cmd_identifier_token18] = ACTIONS(2426), - [aux_sym_cmd_identifier_token19] = ACTIONS(2426), - [aux_sym_cmd_identifier_token20] = ACTIONS(2426), - [aux_sym_cmd_identifier_token21] = ACTIONS(2426), - [aux_sym_cmd_identifier_token22] = ACTIONS(2426), - [aux_sym_cmd_identifier_token23] = ACTIONS(2426), - [aux_sym_cmd_identifier_token24] = ACTIONS(2426), - [aux_sym_cmd_identifier_token25] = ACTIONS(2426), - [aux_sym_cmd_identifier_token26] = ACTIONS(2426), - [aux_sym_cmd_identifier_token27] = ACTIONS(2426), - [aux_sym_cmd_identifier_token28] = ACTIONS(2426), - [aux_sym_cmd_identifier_token29] = ACTIONS(2426), - [aux_sym_cmd_identifier_token30] = ACTIONS(2426), - [aux_sym_cmd_identifier_token31] = ACTIONS(2426), - [aux_sym_cmd_identifier_token32] = ACTIONS(2426), - [aux_sym_cmd_identifier_token33] = ACTIONS(2426), - [aux_sym_cmd_identifier_token34] = ACTIONS(2426), - [aux_sym_cmd_identifier_token35] = ACTIONS(2426), - [aux_sym_cmd_identifier_token36] = ACTIONS(2426), - [anon_sym_true] = ACTIONS(2426), - [anon_sym_false] = ACTIONS(2426), - [anon_sym_null] = ACTIONS(2426), - [aux_sym_cmd_identifier_token38] = ACTIONS(2426), - [aux_sym_cmd_identifier_token39] = ACTIONS(2426), - [aux_sym_cmd_identifier_token40] = ACTIONS(2426), - [anon_sym_def] = ACTIONS(2426), - [anon_sym_export_DASHenv] = ACTIONS(2426), - [anon_sym_extern] = ACTIONS(2426), - [anon_sym_module] = ACTIONS(2426), - [anon_sym_use] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_error] = ACTIONS(2426), - [anon_sym_list] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(2426), - [anon_sym_loop] = ACTIONS(2426), - [anon_sym_make] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_do] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_else] = ACTIONS(2426), - [anon_sym_match] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [anon_sym_catch] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_source] = ACTIONS(2426), - [anon_sym_source_DASHenv] = ACTIONS(2426), - [anon_sym_register] = ACTIONS(2426), - [anon_sym_hide] = ACTIONS(2426), - [anon_sym_hide_DASHenv] = ACTIONS(2426), - [anon_sym_overlay] = ACTIONS(2426), - [anon_sym_new] = ACTIONS(2426), - [anon_sym_as] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2426), - [aux_sym__val_number_decimal_token1] = ACTIONS(2426), - [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), - [sym__entry_separator] = ACTIONS(2428), - [anon_sym_PLUS] = ACTIONS(2426), + [671] = { + [sym_comment] = STATE(671), + [anon_sym_export] = ACTIONS(2468), + [anon_sym_alias] = ACTIONS(2468), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_let_DASHenv] = ACTIONS(2468), + [anon_sym_mut] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [aux_sym_cmd_identifier_token1] = ACTIONS(2468), + [aux_sym_cmd_identifier_token2] = ACTIONS(2468), + [aux_sym_cmd_identifier_token3] = ACTIONS(2468), + [aux_sym_cmd_identifier_token4] = ACTIONS(2468), + [aux_sym_cmd_identifier_token5] = ACTIONS(2468), + [aux_sym_cmd_identifier_token6] = ACTIONS(2468), + [aux_sym_cmd_identifier_token7] = ACTIONS(2468), + [aux_sym_cmd_identifier_token8] = ACTIONS(2468), + [aux_sym_cmd_identifier_token9] = ACTIONS(2468), + [aux_sym_cmd_identifier_token10] = ACTIONS(2468), + [aux_sym_cmd_identifier_token11] = ACTIONS(2468), + [aux_sym_cmd_identifier_token12] = ACTIONS(2468), + [aux_sym_cmd_identifier_token13] = ACTIONS(2468), + [aux_sym_cmd_identifier_token14] = ACTIONS(2468), + [aux_sym_cmd_identifier_token15] = ACTIONS(2468), + [aux_sym_cmd_identifier_token16] = ACTIONS(2468), + [aux_sym_cmd_identifier_token17] = ACTIONS(2468), + [aux_sym_cmd_identifier_token18] = ACTIONS(2468), + [aux_sym_cmd_identifier_token19] = ACTIONS(2468), + [aux_sym_cmd_identifier_token20] = ACTIONS(2468), + [aux_sym_cmd_identifier_token21] = ACTIONS(2468), + [aux_sym_cmd_identifier_token22] = ACTIONS(2468), + [aux_sym_cmd_identifier_token23] = ACTIONS(2468), + [aux_sym_cmd_identifier_token24] = ACTIONS(2468), + [aux_sym_cmd_identifier_token25] = ACTIONS(2468), + [aux_sym_cmd_identifier_token26] = ACTIONS(2468), + [aux_sym_cmd_identifier_token27] = ACTIONS(2468), + [aux_sym_cmd_identifier_token28] = ACTIONS(2468), + [aux_sym_cmd_identifier_token29] = ACTIONS(2468), + [aux_sym_cmd_identifier_token30] = ACTIONS(2468), + [aux_sym_cmd_identifier_token31] = ACTIONS(2468), + [aux_sym_cmd_identifier_token32] = ACTIONS(2468), + [aux_sym_cmd_identifier_token33] = ACTIONS(2468), + [aux_sym_cmd_identifier_token34] = ACTIONS(2468), + [aux_sym_cmd_identifier_token35] = ACTIONS(2468), + [aux_sym_cmd_identifier_token36] = ACTIONS(2468), + [aux_sym_cmd_identifier_token37] = ACTIONS(2468), + [aux_sym_cmd_identifier_token38] = ACTIONS(2468), + [aux_sym_cmd_identifier_token39] = ACTIONS(2468), + [aux_sym_cmd_identifier_token40] = ACTIONS(2468), + [anon_sym_def] = ACTIONS(2468), + [anon_sym_export_DASHenv] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_module] = ACTIONS(2468), + [anon_sym_use] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2468), + [anon_sym_DOLLAR] = ACTIONS(2468), + [anon_sym_error] = ACTIONS(2468), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_in2] = ACTIONS(2468), + [anon_sym_loop] = ACTIONS(2468), + [anon_sym_make] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_match] = ACTIONS(2468), + [anon_sym_RBRACE] = ACTIONS(2468), + [anon_sym_try] = ACTIONS(2468), + [anon_sym_catch] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_source] = ACTIONS(2468), + [anon_sym_source_DASHenv] = ACTIONS(2468), + [anon_sym_register] = ACTIONS(2468), + [anon_sym_hide] = ACTIONS(2468), + [anon_sym_hide_DASHenv] = ACTIONS(2468), + [anon_sym_overlay] = ACTIONS(2468), + [anon_sym_as] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2468), + [aux_sym__val_number_decimal_token1] = ACTIONS(2468), + [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), + [aux_sym__val_number_token4] = ACTIONS(2468), + [aux_sym__val_number_token5] = ACTIONS(2468), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(2470), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2428), + [sym_raw_string_begin] = ACTIONS(2470), }, - [558] = { - [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_alias] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_let_DASHenv] = ACTIONS(1628), - [anon_sym_mut] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [aux_sym_cmd_identifier_token1] = ACTIONS(1628), - [aux_sym_cmd_identifier_token2] = ACTIONS(1628), - [aux_sym_cmd_identifier_token3] = ACTIONS(1628), - [aux_sym_cmd_identifier_token4] = ACTIONS(1628), - [aux_sym_cmd_identifier_token5] = ACTIONS(1628), - [aux_sym_cmd_identifier_token6] = ACTIONS(1628), - [aux_sym_cmd_identifier_token7] = ACTIONS(1628), - [aux_sym_cmd_identifier_token8] = ACTIONS(1628), - [aux_sym_cmd_identifier_token9] = ACTIONS(1628), - [aux_sym_cmd_identifier_token10] = ACTIONS(1628), - [aux_sym_cmd_identifier_token11] = ACTIONS(1628), - [aux_sym_cmd_identifier_token12] = ACTIONS(1628), - [aux_sym_cmd_identifier_token13] = ACTIONS(1628), - [aux_sym_cmd_identifier_token14] = ACTIONS(1628), - [aux_sym_cmd_identifier_token15] = ACTIONS(1628), - [aux_sym_cmd_identifier_token16] = ACTIONS(1628), - [aux_sym_cmd_identifier_token17] = ACTIONS(1628), - [aux_sym_cmd_identifier_token18] = ACTIONS(1628), - [aux_sym_cmd_identifier_token19] = ACTIONS(1628), - [aux_sym_cmd_identifier_token20] = ACTIONS(1628), - [aux_sym_cmd_identifier_token21] = ACTIONS(1628), - [aux_sym_cmd_identifier_token22] = ACTIONS(1628), - [aux_sym_cmd_identifier_token23] = ACTIONS(1628), - [aux_sym_cmd_identifier_token24] = ACTIONS(1628), - [aux_sym_cmd_identifier_token25] = ACTIONS(1628), - [aux_sym_cmd_identifier_token26] = ACTIONS(1628), - [aux_sym_cmd_identifier_token27] = ACTIONS(1628), - [aux_sym_cmd_identifier_token28] = ACTIONS(1628), - [aux_sym_cmd_identifier_token29] = ACTIONS(1628), - [aux_sym_cmd_identifier_token30] = ACTIONS(1628), - [aux_sym_cmd_identifier_token31] = ACTIONS(1628), - [aux_sym_cmd_identifier_token32] = ACTIONS(1628), - [aux_sym_cmd_identifier_token33] = ACTIONS(1628), - [aux_sym_cmd_identifier_token34] = ACTIONS(1628), - [aux_sym_cmd_identifier_token35] = ACTIONS(1628), - [aux_sym_cmd_identifier_token36] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [aux_sym_cmd_identifier_token38] = ACTIONS(1628), - [aux_sym_cmd_identifier_token39] = ACTIONS(1640), - [aux_sym_cmd_identifier_token40] = ACTIONS(1640), - [anon_sym_def] = ACTIONS(1628), - [anon_sym_export_DASHenv] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1640), - [anon_sym_error] = ACTIONS(1628), - [anon_sym_list] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_make] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_else] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_try] = ACTIONS(1628), - [anon_sym_catch] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_source] = ACTIONS(1628), - [anon_sym_source_DASHenv] = ACTIONS(1628), - [anon_sym_register] = ACTIONS(1628), - [anon_sym_hide] = ACTIONS(1628), - [anon_sym_hide_DASHenv] = ACTIONS(1628), - [anon_sym_overlay] = ACTIONS(1628), - [anon_sym_new] = ACTIONS(1628), - [anon_sym_as] = ACTIONS(1628), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1640), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1640), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_decimal_token2] = ACTIONS(1640), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_decimal_token4] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1628), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1640), - }, - [559] = { - [sym_comment] = STATE(559), - [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(2372), - [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_LPAREN2] = ACTIONS(2374), - [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(249), - [sym_raw_string_begin] = ACTIONS(2374), - }, - [560] = { - [sym_comment] = STATE(560), - [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), + [672] = { + [sym_comment] = STATE(672), + [anon_sym_export] = ACTIONS(2472), + [anon_sym_alias] = ACTIONS(2472), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_let_DASHenv] = ACTIONS(2472), + [anon_sym_mut] = ACTIONS(2472), + [anon_sym_const] = ACTIONS(2472), + [aux_sym_cmd_identifier_token1] = ACTIONS(2472), + [aux_sym_cmd_identifier_token2] = ACTIONS(2472), + [aux_sym_cmd_identifier_token3] = ACTIONS(2472), + [aux_sym_cmd_identifier_token4] = ACTIONS(2472), + [aux_sym_cmd_identifier_token5] = ACTIONS(2472), + [aux_sym_cmd_identifier_token6] = ACTIONS(2472), + [aux_sym_cmd_identifier_token7] = ACTIONS(2472), + [aux_sym_cmd_identifier_token8] = ACTIONS(2472), + [aux_sym_cmd_identifier_token9] = ACTIONS(2472), + [aux_sym_cmd_identifier_token10] = ACTIONS(2472), + [aux_sym_cmd_identifier_token11] = ACTIONS(2472), + [aux_sym_cmd_identifier_token12] = ACTIONS(2472), + [aux_sym_cmd_identifier_token13] = ACTIONS(2472), + [aux_sym_cmd_identifier_token14] = ACTIONS(2472), + [aux_sym_cmd_identifier_token15] = ACTIONS(2472), + [aux_sym_cmd_identifier_token16] = ACTIONS(2472), + [aux_sym_cmd_identifier_token17] = ACTIONS(2472), + [aux_sym_cmd_identifier_token18] = ACTIONS(2472), + [aux_sym_cmd_identifier_token19] = ACTIONS(2472), + [aux_sym_cmd_identifier_token20] = ACTIONS(2472), + [aux_sym_cmd_identifier_token21] = ACTIONS(2472), + [aux_sym_cmd_identifier_token22] = ACTIONS(2472), + [aux_sym_cmd_identifier_token23] = ACTIONS(2472), + [aux_sym_cmd_identifier_token24] = ACTIONS(2472), + [aux_sym_cmd_identifier_token25] = ACTIONS(2472), + [aux_sym_cmd_identifier_token26] = ACTIONS(2472), + [aux_sym_cmd_identifier_token27] = ACTIONS(2472), + [aux_sym_cmd_identifier_token28] = ACTIONS(2472), + [aux_sym_cmd_identifier_token29] = ACTIONS(2472), + [aux_sym_cmd_identifier_token30] = ACTIONS(2472), + [aux_sym_cmd_identifier_token31] = ACTIONS(2472), + [aux_sym_cmd_identifier_token32] = ACTIONS(2472), + [aux_sym_cmd_identifier_token33] = ACTIONS(2472), + [aux_sym_cmd_identifier_token34] = ACTIONS(2472), + [aux_sym_cmd_identifier_token35] = ACTIONS(2472), + [aux_sym_cmd_identifier_token36] = ACTIONS(2472), + [aux_sym_cmd_identifier_token37] = ACTIONS(2472), + [aux_sym_cmd_identifier_token38] = ACTIONS(2472), + [aux_sym_cmd_identifier_token39] = ACTIONS(2472), + [aux_sym_cmd_identifier_token40] = ACTIONS(2472), + [anon_sym_def] = ACTIONS(2472), + [anon_sym_export_DASHenv] = ACTIONS(2472), + [anon_sym_extern] = ACTIONS(2472), + [anon_sym_module] = ACTIONS(2472), + [anon_sym_use] = ACTIONS(2472), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_DOLLAR] = ACTIONS(2472), + [anon_sym_error] = ACTIONS(2472), + [anon_sym_DASH2] = ACTIONS(2472), + [anon_sym_break] = ACTIONS(2472), + [anon_sym_continue] = ACTIONS(2472), + [anon_sym_for] = ACTIONS(2472), + [anon_sym_in2] = ACTIONS(2472), + [anon_sym_loop] = ACTIONS(2472), + [anon_sym_make] = ACTIONS(2472), + [anon_sym_while] = ACTIONS(2472), + [anon_sym_do] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_else] = ACTIONS(2472), + [anon_sym_match] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2472), + [anon_sym_try] = ACTIONS(2472), + [anon_sym_catch] = ACTIONS(2472), + [anon_sym_return] = ACTIONS(2472), + [anon_sym_source] = ACTIONS(2472), + [anon_sym_source_DASHenv] = ACTIONS(2472), + [anon_sym_register] = ACTIONS(2472), + [anon_sym_hide] = ACTIONS(2472), + [anon_sym_hide_DASHenv] = ACTIONS(2472), + [anon_sym_overlay] = ACTIONS(2472), + [anon_sym_as] = ACTIONS(2472), + [anon_sym_PLUS2] = ACTIONS(2472), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2472), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2472), + [aux_sym__val_number_decimal_token1] = ACTIONS(2472), + [aux_sym__val_number_decimal_token2] = ACTIONS(2472), + [aux_sym__val_number_decimal_token3] = ACTIONS(2472), + [aux_sym__val_number_decimal_token4] = ACTIONS(2472), + [aux_sym__val_number_token1] = ACTIONS(2472), + [aux_sym__val_number_token2] = ACTIONS(2472), + [aux_sym__val_number_token3] = ACTIONS(2472), + [aux_sym__val_number_token4] = ACTIONS(2472), + [aux_sym__val_number_token5] = ACTIONS(2472), + [aux_sym__val_number_token6] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2472), + [sym__str_single_quotes] = ACTIONS(2472), + [sym__str_back_ticks] = ACTIONS(2472), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2472), + [sym__entry_separator] = ACTIONS(2474), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2432), + [sym_raw_string_begin] = ACTIONS(2474), }, - [561] = { - [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(2206), - [anon_sym_alias] = ACTIONS(2206), - [anon_sym_let] = ACTIONS(2206), - [anon_sym_let_DASHenv] = ACTIONS(2206), - [anon_sym_mut] = ACTIONS(2206), - [anon_sym_const] = ACTIONS(2206), - [aux_sym_cmd_identifier_token1] = ACTIONS(2206), - [aux_sym_cmd_identifier_token2] = ACTIONS(2206), - [aux_sym_cmd_identifier_token3] = ACTIONS(2206), - [aux_sym_cmd_identifier_token4] = ACTIONS(2206), - [aux_sym_cmd_identifier_token5] = ACTIONS(2206), - [aux_sym_cmd_identifier_token6] = ACTIONS(2206), - [aux_sym_cmd_identifier_token7] = ACTIONS(2206), - [aux_sym_cmd_identifier_token8] = ACTIONS(2206), - [aux_sym_cmd_identifier_token9] = ACTIONS(2206), - [aux_sym_cmd_identifier_token10] = ACTIONS(2206), - [aux_sym_cmd_identifier_token11] = ACTIONS(2206), - [aux_sym_cmd_identifier_token12] = ACTIONS(2206), - [aux_sym_cmd_identifier_token13] = ACTIONS(2206), - [aux_sym_cmd_identifier_token14] = ACTIONS(2206), - [aux_sym_cmd_identifier_token15] = ACTIONS(2206), - [aux_sym_cmd_identifier_token16] = ACTIONS(2206), - [aux_sym_cmd_identifier_token17] = ACTIONS(2206), - [aux_sym_cmd_identifier_token18] = ACTIONS(2206), - [aux_sym_cmd_identifier_token19] = ACTIONS(2206), - [aux_sym_cmd_identifier_token20] = ACTIONS(2206), - [aux_sym_cmd_identifier_token21] = ACTIONS(2206), - [aux_sym_cmd_identifier_token22] = ACTIONS(2206), - [aux_sym_cmd_identifier_token23] = ACTIONS(2206), - [aux_sym_cmd_identifier_token24] = ACTIONS(2206), - [aux_sym_cmd_identifier_token25] = ACTIONS(2206), - [aux_sym_cmd_identifier_token26] = ACTIONS(2206), - [aux_sym_cmd_identifier_token27] = ACTIONS(2206), - [aux_sym_cmd_identifier_token28] = ACTIONS(2206), - [aux_sym_cmd_identifier_token29] = ACTIONS(2206), - [aux_sym_cmd_identifier_token30] = ACTIONS(2206), - [aux_sym_cmd_identifier_token31] = ACTIONS(2206), - [aux_sym_cmd_identifier_token32] = ACTIONS(2206), - [aux_sym_cmd_identifier_token33] = ACTIONS(2206), - [aux_sym_cmd_identifier_token34] = ACTIONS(2206), - [aux_sym_cmd_identifier_token35] = ACTIONS(2206), - [aux_sym_cmd_identifier_token36] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2206), - [anon_sym_false] = ACTIONS(2206), - [anon_sym_null] = ACTIONS(2206), - [aux_sym_cmd_identifier_token38] = ACTIONS(2206), - [aux_sym_cmd_identifier_token39] = ACTIONS(2206), - [aux_sym_cmd_identifier_token40] = ACTIONS(2206), - [anon_sym_def] = ACTIONS(2206), - [anon_sym_export_DASHenv] = ACTIONS(2206), - [anon_sym_extern] = ACTIONS(2206), - [anon_sym_module] = ACTIONS(2206), - [anon_sym_use] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2206), - [anon_sym_error] = ACTIONS(2206), - [anon_sym_list] = ACTIONS(2206), - [anon_sym_DASH] = ACTIONS(2206), - [anon_sym_break] = ACTIONS(2206), - [anon_sym_continue] = ACTIONS(2206), - [anon_sym_for] = ACTIONS(2206), - [anon_sym_in] = ACTIONS(2206), - [anon_sym_loop] = ACTIONS(2206), - [anon_sym_make] = ACTIONS(2206), - [anon_sym_while] = ACTIONS(2206), - [anon_sym_do] = ACTIONS(2206), - [anon_sym_if] = ACTIONS(2206), - [anon_sym_else] = ACTIONS(2206), - [anon_sym_match] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_try] = ACTIONS(2206), - [anon_sym_catch] = ACTIONS(2206), - [anon_sym_return] = ACTIONS(2206), - [anon_sym_source] = ACTIONS(2206), - [anon_sym_source_DASHenv] = ACTIONS(2206), - [anon_sym_register] = ACTIONS(2206), - [anon_sym_hide] = ACTIONS(2206), - [anon_sym_hide_DASHenv] = ACTIONS(2206), - [anon_sym_overlay] = ACTIONS(2206), - [anon_sym_new] = ACTIONS(2206), - [anon_sym_as] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2206), - [aux_sym__val_number_decimal_token1] = ACTIONS(2206), - [aux_sym__val_number_decimal_token2] = ACTIONS(2206), - [aux_sym__val_number_decimal_token3] = ACTIONS(2206), - [aux_sym__val_number_decimal_token4] = ACTIONS(2206), - [aux_sym__val_number_token1] = ACTIONS(2206), - [aux_sym__val_number_token2] = ACTIONS(2206), - [aux_sym__val_number_token3] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2206), - [sym__str_single_quotes] = ACTIONS(2206), - [sym__str_back_ticks] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2206), - [sym__entry_separator] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2206), + [673] = { + [sym_comment] = STATE(673), + [anon_sym_export] = ACTIONS(2086), + [anon_sym_alias] = ACTIONS(2086), + [anon_sym_let] = ACTIONS(2086), + [anon_sym_let_DASHenv] = ACTIONS(2086), + [anon_sym_mut] = ACTIONS(2086), + [anon_sym_const] = ACTIONS(2086), + [aux_sym_cmd_identifier_token1] = ACTIONS(2086), + [aux_sym_cmd_identifier_token2] = ACTIONS(2086), + [aux_sym_cmd_identifier_token3] = ACTIONS(2086), + [aux_sym_cmd_identifier_token4] = ACTIONS(2086), + [aux_sym_cmd_identifier_token5] = ACTIONS(2086), + [aux_sym_cmd_identifier_token6] = ACTIONS(2086), + [aux_sym_cmd_identifier_token7] = ACTIONS(2086), + [aux_sym_cmd_identifier_token8] = ACTIONS(2086), + [aux_sym_cmd_identifier_token9] = ACTIONS(2086), + [aux_sym_cmd_identifier_token10] = ACTIONS(2086), + [aux_sym_cmd_identifier_token11] = ACTIONS(2086), + [aux_sym_cmd_identifier_token12] = ACTIONS(2086), + [aux_sym_cmd_identifier_token13] = ACTIONS(2086), + [aux_sym_cmd_identifier_token14] = ACTIONS(2086), + [aux_sym_cmd_identifier_token15] = ACTIONS(2086), + [aux_sym_cmd_identifier_token16] = ACTIONS(2086), + [aux_sym_cmd_identifier_token17] = ACTIONS(2086), + [aux_sym_cmd_identifier_token18] = ACTIONS(2086), + [aux_sym_cmd_identifier_token19] = ACTIONS(2086), + [aux_sym_cmd_identifier_token20] = ACTIONS(2086), + [aux_sym_cmd_identifier_token21] = ACTIONS(2086), + [aux_sym_cmd_identifier_token22] = ACTIONS(2086), + [aux_sym_cmd_identifier_token23] = ACTIONS(2086), + [aux_sym_cmd_identifier_token24] = ACTIONS(2086), + [aux_sym_cmd_identifier_token25] = ACTIONS(2086), + [aux_sym_cmd_identifier_token26] = ACTIONS(2086), + [aux_sym_cmd_identifier_token27] = ACTIONS(2086), + [aux_sym_cmd_identifier_token28] = ACTIONS(2086), + [aux_sym_cmd_identifier_token29] = ACTIONS(2086), + [aux_sym_cmd_identifier_token30] = ACTIONS(2086), + [aux_sym_cmd_identifier_token31] = ACTIONS(2086), + [aux_sym_cmd_identifier_token32] = ACTIONS(2086), + [aux_sym_cmd_identifier_token33] = ACTIONS(2086), + [aux_sym_cmd_identifier_token34] = ACTIONS(2086), + [aux_sym_cmd_identifier_token35] = ACTIONS(2086), + [aux_sym_cmd_identifier_token36] = ACTIONS(2086), + [aux_sym_cmd_identifier_token37] = ACTIONS(2086), + [aux_sym_cmd_identifier_token38] = ACTIONS(2086), + [aux_sym_cmd_identifier_token39] = ACTIONS(2086), + [aux_sym_cmd_identifier_token40] = ACTIONS(2086), + [anon_sym_def] = ACTIONS(2086), + [anon_sym_export_DASHenv] = ACTIONS(2086), + [anon_sym_extern] = ACTIONS(2086), + [anon_sym_module] = ACTIONS(2086), + [anon_sym_use] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2086), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_error] = ACTIONS(2086), + [anon_sym_DASH2] = ACTIONS(2086), + [anon_sym_break] = ACTIONS(2086), + [anon_sym_continue] = ACTIONS(2086), + [anon_sym_for] = ACTIONS(2086), + [anon_sym_in2] = ACTIONS(2086), + [anon_sym_loop] = ACTIONS(2086), + [anon_sym_make] = ACTIONS(2086), + [anon_sym_while] = ACTIONS(2086), + [anon_sym_do] = ACTIONS(2086), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_else] = ACTIONS(2086), + [anon_sym_match] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_try] = ACTIONS(2086), + [anon_sym_catch] = ACTIONS(2086), + [anon_sym_return] = ACTIONS(2086), + [anon_sym_source] = ACTIONS(2086), + [anon_sym_source_DASHenv] = ACTIONS(2086), + [anon_sym_register] = ACTIONS(2086), + [anon_sym_hide] = ACTIONS(2086), + [anon_sym_hide_DASHenv] = ACTIONS(2086), + [anon_sym_overlay] = ACTIONS(2086), + [anon_sym_as] = ACTIONS(2086), + [anon_sym_PLUS2] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2086), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2086), + [aux_sym__val_number_decimal_token3] = ACTIONS(2086), + [aux_sym__val_number_decimal_token4] = ACTIONS(2086), + [aux_sym__val_number_token1] = ACTIONS(2086), + [aux_sym__val_number_token2] = ACTIONS(2086), + [aux_sym__val_number_token3] = ACTIONS(2086), + [aux_sym__val_number_token4] = ACTIONS(2086), + [aux_sym__val_number_token5] = ACTIONS(2086), + [aux_sym__val_number_token6] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym__str_single_quotes] = ACTIONS(2086), + [sym__str_back_ticks] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2086), + [sym__entry_separator] = ACTIONS(2088), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2212), + [sym_raw_string_begin] = ACTIONS(2088), }, - [562] = { - [sym_comment] = STATE(562), - [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), + [674] = { + [sym_comment] = STATE(674), + [anon_sym_export] = ACTIONS(2476), + [anon_sym_alias] = ACTIONS(2476), + [anon_sym_let] = ACTIONS(2476), + [anon_sym_let_DASHenv] = ACTIONS(2476), + [anon_sym_mut] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [aux_sym_cmd_identifier_token1] = ACTIONS(2476), + [aux_sym_cmd_identifier_token2] = ACTIONS(2476), + [aux_sym_cmd_identifier_token3] = ACTIONS(2476), + [aux_sym_cmd_identifier_token4] = ACTIONS(2476), + [aux_sym_cmd_identifier_token5] = ACTIONS(2476), + [aux_sym_cmd_identifier_token6] = ACTIONS(2476), + [aux_sym_cmd_identifier_token7] = ACTIONS(2476), + [aux_sym_cmd_identifier_token8] = ACTIONS(2476), + [aux_sym_cmd_identifier_token9] = ACTIONS(2476), + [aux_sym_cmd_identifier_token10] = ACTIONS(2476), + [aux_sym_cmd_identifier_token11] = ACTIONS(2476), + [aux_sym_cmd_identifier_token12] = ACTIONS(2476), + [aux_sym_cmd_identifier_token13] = ACTIONS(2476), + [aux_sym_cmd_identifier_token14] = ACTIONS(2476), + [aux_sym_cmd_identifier_token15] = ACTIONS(2476), + [aux_sym_cmd_identifier_token16] = ACTIONS(2476), + [aux_sym_cmd_identifier_token17] = ACTIONS(2476), + [aux_sym_cmd_identifier_token18] = ACTIONS(2476), + [aux_sym_cmd_identifier_token19] = ACTIONS(2476), + [aux_sym_cmd_identifier_token20] = ACTIONS(2476), + [aux_sym_cmd_identifier_token21] = ACTIONS(2476), + [aux_sym_cmd_identifier_token22] = ACTIONS(2476), + [aux_sym_cmd_identifier_token23] = ACTIONS(2476), + [aux_sym_cmd_identifier_token24] = ACTIONS(2476), + [aux_sym_cmd_identifier_token25] = ACTIONS(2476), + [aux_sym_cmd_identifier_token26] = ACTIONS(2476), + [aux_sym_cmd_identifier_token27] = ACTIONS(2476), + [aux_sym_cmd_identifier_token28] = ACTIONS(2476), + [aux_sym_cmd_identifier_token29] = ACTIONS(2476), + [aux_sym_cmd_identifier_token30] = ACTIONS(2476), + [aux_sym_cmd_identifier_token31] = ACTIONS(2476), + [aux_sym_cmd_identifier_token32] = ACTIONS(2476), + [aux_sym_cmd_identifier_token33] = ACTIONS(2476), + [aux_sym_cmd_identifier_token34] = ACTIONS(2476), + [aux_sym_cmd_identifier_token35] = ACTIONS(2476), + [aux_sym_cmd_identifier_token36] = ACTIONS(2476), + [aux_sym_cmd_identifier_token37] = ACTIONS(2476), + [aux_sym_cmd_identifier_token38] = ACTIONS(2476), + [aux_sym_cmd_identifier_token39] = ACTIONS(2476), + [aux_sym_cmd_identifier_token40] = ACTIONS(2476), + [anon_sym_def] = ACTIONS(2476), + [anon_sym_export_DASHenv] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym_module] = ACTIONS(2476), + [anon_sym_use] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2476), + [anon_sym_error] = ACTIONS(2476), + [anon_sym_DASH2] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_in2] = ACTIONS(2476), + [anon_sym_loop] = ACTIONS(2476), + [anon_sym_make] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_match] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_source] = ACTIONS(2476), + [anon_sym_source_DASHenv] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_hide] = ACTIONS(2476), + [anon_sym_hide_DASHenv] = ACTIONS(2476), + [anon_sym_overlay] = ACTIONS(2476), + [anon_sym_as] = ACTIONS(2476), + [anon_sym_PLUS2] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2476), + [aux_sym__val_number_decimal_token1] = ACTIONS(2476), + [aux_sym__val_number_decimal_token2] = ACTIONS(2476), + [aux_sym__val_number_decimal_token3] = ACTIONS(2476), + [aux_sym__val_number_decimal_token4] = ACTIONS(2476), + [aux_sym__val_number_token1] = ACTIONS(2476), + [aux_sym__val_number_token2] = ACTIONS(2476), + [aux_sym__val_number_token3] = ACTIONS(2476), + [aux_sym__val_number_token4] = ACTIONS(2476), + [aux_sym__val_number_token5] = ACTIONS(2476), + [aux_sym__val_number_token6] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2476), + [sym__str_single_quotes] = ACTIONS(2476), + [sym__str_back_ticks] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2476), + [sym__entry_separator] = ACTIONS(2478), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2436), + [sym_raw_string_begin] = ACTIONS(2478), }, - [563] = { - [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(2059), - [anon_sym_alias] = ACTIONS(2059), - [anon_sym_let] = ACTIONS(2059), - [anon_sym_let_DASHenv] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [aux_sym_cmd_identifier_token1] = ACTIONS(2059), - [aux_sym_cmd_identifier_token2] = ACTIONS(2059), - [aux_sym_cmd_identifier_token3] = ACTIONS(2059), - [aux_sym_cmd_identifier_token4] = ACTIONS(2059), - [aux_sym_cmd_identifier_token5] = ACTIONS(2059), - [aux_sym_cmd_identifier_token6] = ACTIONS(2059), - [aux_sym_cmd_identifier_token7] = ACTIONS(2059), - [aux_sym_cmd_identifier_token8] = ACTIONS(2059), - [aux_sym_cmd_identifier_token9] = ACTIONS(2059), - [aux_sym_cmd_identifier_token10] = ACTIONS(2059), - [aux_sym_cmd_identifier_token11] = ACTIONS(2059), - [aux_sym_cmd_identifier_token12] = ACTIONS(2059), - [aux_sym_cmd_identifier_token13] = ACTIONS(2059), - [aux_sym_cmd_identifier_token14] = ACTIONS(2059), - [aux_sym_cmd_identifier_token15] = ACTIONS(2059), - [aux_sym_cmd_identifier_token16] = ACTIONS(2059), - [aux_sym_cmd_identifier_token17] = ACTIONS(2059), - [aux_sym_cmd_identifier_token18] = ACTIONS(2059), - [aux_sym_cmd_identifier_token19] = ACTIONS(2059), - [aux_sym_cmd_identifier_token20] = ACTIONS(2059), - [aux_sym_cmd_identifier_token21] = ACTIONS(2059), - [aux_sym_cmd_identifier_token22] = ACTIONS(2059), - [aux_sym_cmd_identifier_token23] = ACTIONS(2059), - [aux_sym_cmd_identifier_token24] = ACTIONS(2059), - [aux_sym_cmd_identifier_token25] = ACTIONS(2059), - [aux_sym_cmd_identifier_token26] = ACTIONS(2059), - [aux_sym_cmd_identifier_token27] = ACTIONS(2059), - [aux_sym_cmd_identifier_token28] = ACTIONS(2059), - [aux_sym_cmd_identifier_token29] = ACTIONS(2059), - [aux_sym_cmd_identifier_token30] = ACTIONS(2059), - [aux_sym_cmd_identifier_token31] = ACTIONS(2059), - [aux_sym_cmd_identifier_token32] = ACTIONS(2059), - [aux_sym_cmd_identifier_token33] = ACTIONS(2059), - [aux_sym_cmd_identifier_token34] = ACTIONS(2059), - [aux_sym_cmd_identifier_token35] = ACTIONS(2059), - [aux_sym_cmd_identifier_token36] = ACTIONS(2059), - [anon_sym_true] = ACTIONS(2059), - [anon_sym_false] = ACTIONS(2059), - [anon_sym_null] = ACTIONS(2059), - [aux_sym_cmd_identifier_token38] = ACTIONS(2059), - [aux_sym_cmd_identifier_token39] = ACTIONS(2059), - [aux_sym_cmd_identifier_token40] = ACTIONS(2059), - [anon_sym_def] = ACTIONS(2059), - [anon_sym_export_DASHenv] = ACTIONS(2059), - [anon_sym_extern] = ACTIONS(2059), - [anon_sym_module] = ACTIONS(2059), - [anon_sym_use] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_error] = ACTIONS(2059), - [anon_sym_list] = ACTIONS(2059), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_loop] = ACTIONS(2059), - [anon_sym_make] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_do] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_else] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2059), - [anon_sym_catch] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_source] = ACTIONS(2059), - [anon_sym_source_DASHenv] = ACTIONS(2059), - [anon_sym_register] = ACTIONS(2059), - [anon_sym_hide] = ACTIONS(2059), - [anon_sym_hide_DASHenv] = ACTIONS(2059), - [anon_sym_overlay] = ACTIONS(2059), - [anon_sym_new] = ACTIONS(2059), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2059), - [aux_sym__val_number_decimal_token1] = ACTIONS(2059), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2059), - [aux_sym__val_number_decimal_token4] = ACTIONS(2059), - [aux_sym__val_number_token1] = ACTIONS(2059), - [aux_sym__val_number_token2] = ACTIONS(2059), - [aux_sym__val_number_token3] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2059), - [sym__str_single_quotes] = ACTIONS(2059), - [sym__str_back_ticks] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2059), - [sym__entry_separator] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(2059), + [675] = { + [sym_comment] = STATE(675), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_alias] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_let_DASHenv] = ACTIONS(2068), + [anon_sym_mut] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [aux_sym_cmd_identifier_token1] = ACTIONS(2068), + [aux_sym_cmd_identifier_token2] = ACTIONS(2068), + [aux_sym_cmd_identifier_token3] = ACTIONS(2068), + [aux_sym_cmd_identifier_token4] = ACTIONS(2068), + [aux_sym_cmd_identifier_token5] = ACTIONS(2068), + [aux_sym_cmd_identifier_token6] = ACTIONS(2068), + [aux_sym_cmd_identifier_token7] = ACTIONS(2068), + [aux_sym_cmd_identifier_token8] = ACTIONS(2068), + [aux_sym_cmd_identifier_token9] = ACTIONS(2068), + [aux_sym_cmd_identifier_token10] = ACTIONS(2068), + [aux_sym_cmd_identifier_token11] = ACTIONS(2068), + [aux_sym_cmd_identifier_token12] = ACTIONS(2068), + [aux_sym_cmd_identifier_token13] = ACTIONS(2068), + [aux_sym_cmd_identifier_token14] = ACTIONS(2068), + [aux_sym_cmd_identifier_token15] = ACTIONS(2068), + [aux_sym_cmd_identifier_token16] = ACTIONS(2068), + [aux_sym_cmd_identifier_token17] = ACTIONS(2068), + [aux_sym_cmd_identifier_token18] = ACTIONS(2068), + [aux_sym_cmd_identifier_token19] = ACTIONS(2068), + [aux_sym_cmd_identifier_token20] = ACTIONS(2068), + [aux_sym_cmd_identifier_token21] = ACTIONS(2068), + [aux_sym_cmd_identifier_token22] = ACTIONS(2068), + [aux_sym_cmd_identifier_token23] = ACTIONS(2068), + [aux_sym_cmd_identifier_token24] = ACTIONS(2068), + [aux_sym_cmd_identifier_token25] = ACTIONS(2068), + [aux_sym_cmd_identifier_token26] = ACTIONS(2068), + [aux_sym_cmd_identifier_token27] = ACTIONS(2068), + [aux_sym_cmd_identifier_token28] = ACTIONS(2068), + [aux_sym_cmd_identifier_token29] = ACTIONS(2068), + [aux_sym_cmd_identifier_token30] = ACTIONS(2068), + [aux_sym_cmd_identifier_token31] = ACTIONS(2068), + [aux_sym_cmd_identifier_token32] = ACTIONS(2068), + [aux_sym_cmd_identifier_token33] = ACTIONS(2068), + [aux_sym_cmd_identifier_token34] = ACTIONS(2068), + [aux_sym_cmd_identifier_token35] = ACTIONS(2068), + [aux_sym_cmd_identifier_token36] = ACTIONS(2068), + [aux_sym_cmd_identifier_token37] = ACTIONS(2068), + [aux_sym_cmd_identifier_token38] = ACTIONS(2068), + [aux_sym_cmd_identifier_token39] = ACTIONS(2068), + [aux_sym_cmd_identifier_token40] = ACTIONS(2068), + [anon_sym_def] = ACTIONS(2068), + [anon_sym_export_DASHenv] = ACTIONS(2068), + [anon_sym_extern] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_use] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [anon_sym_error] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_loop] = ACTIONS(2068), + [anon_sym_make] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_match] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_catch] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_source] = ACTIONS(2068), + [anon_sym_source_DASHenv] = ACTIONS(2068), + [anon_sym_register] = ACTIONS(2068), + [anon_sym_hide] = ACTIONS(2068), + [anon_sym_hide_DASHenv] = ACTIONS(2068), + [anon_sym_overlay] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2068), + [aux_sym__val_number_decimal_token1] = ACTIONS(2068), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2068), + [aux_sym__val_number_decimal_token4] = ACTIONS(2068), + [aux_sym__val_number_token1] = ACTIONS(2068), + [aux_sym__val_number_token2] = ACTIONS(2068), + [aux_sym__val_number_token3] = ACTIONS(2068), + [aux_sym__val_number_token4] = ACTIONS(2068), + [aux_sym__val_number_token5] = ACTIONS(2068), + [aux_sym__val_number_token6] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2068), + [sym__str_single_quotes] = ACTIONS(2068), + [sym__str_back_ticks] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2068), + [sym__entry_separator] = ACTIONS(2070), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2061), + [sym_raw_string_begin] = ACTIONS(2070), }, - [564] = { - [sym_comment] = STATE(564), - [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), + [676] = { + [sym_comment] = STATE(676), + [anon_sym_export] = ACTIONS(2155), + [anon_sym_alias] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_let_DASHenv] = ACTIONS(2155), + [anon_sym_mut] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [aux_sym_cmd_identifier_token1] = ACTIONS(2155), + [aux_sym_cmd_identifier_token2] = ACTIONS(2155), + [aux_sym_cmd_identifier_token3] = ACTIONS(2155), + [aux_sym_cmd_identifier_token4] = ACTIONS(2155), + [aux_sym_cmd_identifier_token5] = ACTIONS(2155), + [aux_sym_cmd_identifier_token6] = ACTIONS(2155), + [aux_sym_cmd_identifier_token7] = ACTIONS(2155), + [aux_sym_cmd_identifier_token8] = ACTIONS(2155), + [aux_sym_cmd_identifier_token9] = ACTIONS(2155), + [aux_sym_cmd_identifier_token10] = ACTIONS(2155), + [aux_sym_cmd_identifier_token11] = ACTIONS(2155), + [aux_sym_cmd_identifier_token12] = ACTIONS(2155), + [aux_sym_cmd_identifier_token13] = ACTIONS(2155), + [aux_sym_cmd_identifier_token14] = ACTIONS(2155), + [aux_sym_cmd_identifier_token15] = ACTIONS(2155), + [aux_sym_cmd_identifier_token16] = ACTIONS(2155), + [aux_sym_cmd_identifier_token17] = ACTIONS(2155), + [aux_sym_cmd_identifier_token18] = ACTIONS(2155), + [aux_sym_cmd_identifier_token19] = ACTIONS(2155), + [aux_sym_cmd_identifier_token20] = ACTIONS(2155), + [aux_sym_cmd_identifier_token21] = ACTIONS(2155), + [aux_sym_cmd_identifier_token22] = ACTIONS(2155), + [aux_sym_cmd_identifier_token23] = ACTIONS(2155), + [aux_sym_cmd_identifier_token24] = ACTIONS(2155), + [aux_sym_cmd_identifier_token25] = ACTIONS(2155), + [aux_sym_cmd_identifier_token26] = ACTIONS(2155), + [aux_sym_cmd_identifier_token27] = ACTIONS(2155), + [aux_sym_cmd_identifier_token28] = ACTIONS(2155), + [aux_sym_cmd_identifier_token29] = ACTIONS(2155), + [aux_sym_cmd_identifier_token30] = ACTIONS(2155), + [aux_sym_cmd_identifier_token31] = ACTIONS(2155), + [aux_sym_cmd_identifier_token32] = ACTIONS(2155), + [aux_sym_cmd_identifier_token33] = ACTIONS(2155), + [aux_sym_cmd_identifier_token34] = ACTIONS(2155), + [aux_sym_cmd_identifier_token35] = ACTIONS(2155), + [aux_sym_cmd_identifier_token36] = ACTIONS(2155), + [aux_sym_cmd_identifier_token37] = ACTIONS(2155), + [aux_sym_cmd_identifier_token38] = ACTIONS(2155), + [aux_sym_cmd_identifier_token39] = ACTIONS(2155), + [aux_sym_cmd_identifier_token40] = ACTIONS(2155), + [anon_sym_def] = ACTIONS(2155), + [anon_sym_export_DASHenv] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_module] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_error] = ACTIONS(2155), + [anon_sym_DASH2] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_in2] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_make] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_do] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_else] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_try] = ACTIONS(2155), + [anon_sym_catch] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_source] = ACTIONS(2155), + [anon_sym_source_DASHenv] = ACTIONS(2155), + [anon_sym_register] = ACTIONS(2155), + [anon_sym_hide] = ACTIONS(2155), + [anon_sym_hide_DASHenv] = ACTIONS(2155), + [anon_sym_overlay] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_PLUS2] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2155), + [aux_sym__val_number_decimal_token1] = ACTIONS(2155), + [aux_sym__val_number_decimal_token2] = ACTIONS(2155), + [aux_sym__val_number_decimal_token3] = ACTIONS(2155), + [aux_sym__val_number_decimal_token4] = ACTIONS(2155), + [aux_sym__val_number_token1] = ACTIONS(2155), + [aux_sym__val_number_token2] = ACTIONS(2155), + [aux_sym__val_number_token3] = ACTIONS(2155), + [aux_sym__val_number_token4] = ACTIONS(2155), + [aux_sym__val_number_token5] = ACTIONS(2155), + [aux_sym__val_number_token6] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(2155), + [sym__str_single_quotes] = ACTIONS(2155), + [sym__str_back_ticks] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2155), + [sym__entry_separator] = ACTIONS(2157), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2440), + [sym_raw_string_begin] = ACTIONS(2157), }, - [565] = { - [sym_comment] = STATE(565), - [aux_sym__multiple_types_repeat1] = STATE(516), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_alias] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_let_DASHenv] = ACTIONS(2341), - [anon_sym_mut] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [aux_sym_cmd_identifier_token2] = ACTIONS(2341), - [aux_sym_cmd_identifier_token3] = ACTIONS(2341), - [aux_sym_cmd_identifier_token4] = ACTIONS(2341), - [aux_sym_cmd_identifier_token5] = ACTIONS(2341), - [aux_sym_cmd_identifier_token6] = ACTIONS(2341), - [aux_sym_cmd_identifier_token7] = ACTIONS(2341), - [aux_sym_cmd_identifier_token8] = ACTIONS(2341), - [aux_sym_cmd_identifier_token9] = ACTIONS(2341), - [aux_sym_cmd_identifier_token10] = ACTIONS(2341), - [aux_sym_cmd_identifier_token11] = ACTIONS(2341), - [aux_sym_cmd_identifier_token12] = ACTIONS(2341), - [aux_sym_cmd_identifier_token13] = ACTIONS(2341), - [aux_sym_cmd_identifier_token14] = ACTIONS(2341), - [aux_sym_cmd_identifier_token15] = ACTIONS(2341), - [aux_sym_cmd_identifier_token16] = ACTIONS(2341), - [aux_sym_cmd_identifier_token17] = ACTIONS(2341), - [aux_sym_cmd_identifier_token18] = ACTIONS(2341), - [aux_sym_cmd_identifier_token19] = ACTIONS(2341), - [aux_sym_cmd_identifier_token20] = ACTIONS(2341), - [aux_sym_cmd_identifier_token21] = ACTIONS(2341), - [aux_sym_cmd_identifier_token22] = ACTIONS(2341), - [aux_sym_cmd_identifier_token23] = ACTIONS(2341), - [aux_sym_cmd_identifier_token24] = ACTIONS(2341), - [aux_sym_cmd_identifier_token25] = ACTIONS(2341), - [aux_sym_cmd_identifier_token26] = ACTIONS(2341), - [aux_sym_cmd_identifier_token27] = ACTIONS(2341), - [aux_sym_cmd_identifier_token28] = ACTIONS(2341), - [aux_sym_cmd_identifier_token29] = ACTIONS(2341), - [aux_sym_cmd_identifier_token30] = ACTIONS(2341), - [aux_sym_cmd_identifier_token31] = ACTIONS(2341), - [aux_sym_cmd_identifier_token32] = ACTIONS(2341), - [aux_sym_cmd_identifier_token33] = ACTIONS(2341), - [aux_sym_cmd_identifier_token34] = ACTIONS(2341), - [aux_sym_cmd_identifier_token35] = ACTIONS(2341), - [aux_sym_cmd_identifier_token36] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2341), - [aux_sym_cmd_identifier_token38] = ACTIONS(2341), - [aux_sym_cmd_identifier_token39] = ACTIONS(2341), - [aux_sym_cmd_identifier_token40] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2341), - [anon_sym_export_DASHenv] = ACTIONS(2341), - [anon_sym_extern] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_error] = ACTIONS(2341), - [anon_sym_list] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_make] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_catch] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_source] = ACTIONS(2341), - [anon_sym_source_DASHenv] = ACTIONS(2341), - [anon_sym_register] = ACTIONS(2341), - [anon_sym_hide] = ACTIONS(2341), - [anon_sym_hide_DASHenv] = ACTIONS(2341), - [anon_sym_overlay] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), - [aux_sym__val_number_decimal_token1] = ACTIONS(2341), - [aux_sym__val_number_decimal_token2] = ACTIONS(2341), - [aux_sym__val_number_decimal_token3] = ACTIONS(2341), - [aux_sym__val_number_decimal_token4] = ACTIONS(2341), - [aux_sym__val_number_token1] = ACTIONS(2341), - [aux_sym__val_number_token2] = ACTIONS(2341), - [aux_sym__val_number_token3] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [sym__str_single_quotes] = ACTIONS(2341), - [sym__str_back_ticks] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), - [sym__entry_separator] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2341), + [677] = { + [sym_comment] = STATE(677), + [anon_sym_export] = ACTIONS(2480), + [anon_sym_alias] = ACTIONS(2480), + [anon_sym_let] = ACTIONS(2480), + [anon_sym_let_DASHenv] = ACTIONS(2480), + [anon_sym_mut] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [aux_sym_cmd_identifier_token1] = ACTIONS(2480), + [aux_sym_cmd_identifier_token2] = ACTIONS(2480), + [aux_sym_cmd_identifier_token3] = ACTIONS(2480), + [aux_sym_cmd_identifier_token4] = ACTIONS(2480), + [aux_sym_cmd_identifier_token5] = ACTIONS(2480), + [aux_sym_cmd_identifier_token6] = ACTIONS(2480), + [aux_sym_cmd_identifier_token7] = ACTIONS(2480), + [aux_sym_cmd_identifier_token8] = ACTIONS(2480), + [aux_sym_cmd_identifier_token9] = ACTIONS(2480), + [aux_sym_cmd_identifier_token10] = ACTIONS(2480), + [aux_sym_cmd_identifier_token11] = ACTIONS(2480), + [aux_sym_cmd_identifier_token12] = ACTIONS(2480), + [aux_sym_cmd_identifier_token13] = ACTIONS(2480), + [aux_sym_cmd_identifier_token14] = ACTIONS(2480), + [aux_sym_cmd_identifier_token15] = ACTIONS(2480), + [aux_sym_cmd_identifier_token16] = ACTIONS(2480), + [aux_sym_cmd_identifier_token17] = ACTIONS(2480), + [aux_sym_cmd_identifier_token18] = ACTIONS(2480), + [aux_sym_cmd_identifier_token19] = ACTIONS(2480), + [aux_sym_cmd_identifier_token20] = ACTIONS(2480), + [aux_sym_cmd_identifier_token21] = ACTIONS(2480), + [aux_sym_cmd_identifier_token22] = ACTIONS(2480), + [aux_sym_cmd_identifier_token23] = ACTIONS(2480), + [aux_sym_cmd_identifier_token24] = ACTIONS(2480), + [aux_sym_cmd_identifier_token25] = ACTIONS(2480), + [aux_sym_cmd_identifier_token26] = ACTIONS(2480), + [aux_sym_cmd_identifier_token27] = ACTIONS(2480), + [aux_sym_cmd_identifier_token28] = ACTIONS(2480), + [aux_sym_cmd_identifier_token29] = ACTIONS(2480), + [aux_sym_cmd_identifier_token30] = ACTIONS(2480), + [aux_sym_cmd_identifier_token31] = ACTIONS(2480), + [aux_sym_cmd_identifier_token32] = ACTIONS(2480), + [aux_sym_cmd_identifier_token33] = ACTIONS(2480), + [aux_sym_cmd_identifier_token34] = ACTIONS(2480), + [aux_sym_cmd_identifier_token35] = ACTIONS(2480), + [aux_sym_cmd_identifier_token36] = ACTIONS(2480), + [aux_sym_cmd_identifier_token37] = ACTIONS(2480), + [aux_sym_cmd_identifier_token38] = ACTIONS(2480), + [aux_sym_cmd_identifier_token39] = ACTIONS(2480), + [aux_sym_cmd_identifier_token40] = ACTIONS(2480), + [anon_sym_def] = ACTIONS(2480), + [anon_sym_export_DASHenv] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2480), + [anon_sym_use] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_DOLLAR] = ACTIONS(2480), + [anon_sym_error] = ACTIONS(2480), + [anon_sym_DASH2] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_in2] = ACTIONS(2480), + [anon_sym_loop] = ACTIONS(2480), + [anon_sym_make] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_else] = ACTIONS(2480), + [anon_sym_match] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2480), + [anon_sym_try] = ACTIONS(2480), + [anon_sym_catch] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_source] = ACTIONS(2480), + [anon_sym_source_DASHenv] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_hide] = ACTIONS(2480), + [anon_sym_hide_DASHenv] = ACTIONS(2480), + [anon_sym_overlay] = ACTIONS(2480), + [anon_sym_as] = ACTIONS(2480), + [anon_sym_PLUS2] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2480), + [aux_sym__val_number_decimal_token2] = ACTIONS(2480), + [aux_sym__val_number_decimal_token3] = ACTIONS(2480), + [aux_sym__val_number_decimal_token4] = ACTIONS(2480), + [aux_sym__val_number_token1] = ACTIONS(2480), + [aux_sym__val_number_token2] = ACTIONS(2480), + [aux_sym__val_number_token3] = ACTIONS(2480), + [aux_sym__val_number_token4] = ACTIONS(2480), + [aux_sym__val_number_token5] = ACTIONS(2480), + [aux_sym__val_number_token6] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2480), + [sym__str_single_quotes] = ACTIONS(2480), + [sym__str_back_ticks] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2480), + [sym__entry_separator] = ACTIONS(2482), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2347), + [sym_raw_string_begin] = ACTIONS(2482), }, - [566] = { - [sym_comment] = STATE(566), - [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), + [678] = { + [sym_comment] = STATE(678), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(994), + [aux_sym_cmd_identifier_token3] = ACTIONS(994), + [aux_sym_cmd_identifier_token4] = ACTIONS(994), + [aux_sym_cmd_identifier_token5] = ACTIONS(994), + [aux_sym_cmd_identifier_token6] = ACTIONS(994), + [aux_sym_cmd_identifier_token7] = ACTIONS(994), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(994), + [aux_sym_cmd_identifier_token17] = ACTIONS(994), + [aux_sym_cmd_identifier_token18] = ACTIONS(994), + [aux_sym_cmd_identifier_token19] = ACTIONS(994), + [aux_sym_cmd_identifier_token20] = ACTIONS(994), + [aux_sym_cmd_identifier_token21] = ACTIONS(994), + [aux_sym_cmd_identifier_token22] = ACTIONS(994), + [aux_sym_cmd_identifier_token23] = ACTIONS(994), + [aux_sym_cmd_identifier_token24] = ACTIONS(994), + [aux_sym_cmd_identifier_token25] = ACTIONS(994), + [aux_sym_cmd_identifier_token26] = ACTIONS(994), + [aux_sym_cmd_identifier_token27] = ACTIONS(994), + [aux_sym_cmd_identifier_token28] = ACTIONS(994), + [aux_sym_cmd_identifier_token29] = ACTIONS(994), + [aux_sym_cmd_identifier_token30] = ACTIONS(994), + [aux_sym_cmd_identifier_token31] = ACTIONS(994), + [aux_sym_cmd_identifier_token32] = ACTIONS(994), + [aux_sym_cmd_identifier_token33] = ACTIONS(994), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(994), + [aux_sym_cmd_identifier_token36] = ACTIONS(994), + [aux_sym_cmd_identifier_token37] = ACTIONS(994), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(994), + [aux_sym_cmd_identifier_token40] = ACTIONS(994), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(994), + [aux_sym__val_number_decimal_token3] = ACTIONS(994), + [aux_sym__val_number_decimal_token4] = ACTIONS(994), + [aux_sym__val_number_token1] = ACTIONS(994), + [aux_sym__val_number_token2] = ACTIONS(994), + [aux_sym__val_number_token3] = ACTIONS(994), + [aux_sym__val_number_token4] = ACTIONS(994), + [aux_sym__val_number_token5] = ACTIONS(994), + [aux_sym__val_number_token6] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), + [sym__entry_separator] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2444), - }, - [567] = { - [sym_comment] = STATE(567), - [anon_sym_export] = ACTIONS(2378), - [anon_sym_alias] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2378), - [anon_sym_let_DASHenv] = ACTIONS(2378), - [anon_sym_mut] = ACTIONS(2378), - [anon_sym_const] = ACTIONS(2378), - [aux_sym_cmd_identifier_token1] = ACTIONS(2378), - [aux_sym_cmd_identifier_token2] = ACTIONS(2378), - [aux_sym_cmd_identifier_token3] = ACTIONS(2378), - [aux_sym_cmd_identifier_token4] = ACTIONS(2378), - [aux_sym_cmd_identifier_token5] = ACTIONS(2378), - [aux_sym_cmd_identifier_token6] = ACTIONS(2378), - [aux_sym_cmd_identifier_token7] = ACTIONS(2378), - [aux_sym_cmd_identifier_token8] = ACTIONS(2378), - [aux_sym_cmd_identifier_token9] = ACTIONS(2378), - [aux_sym_cmd_identifier_token10] = ACTIONS(2378), - [aux_sym_cmd_identifier_token11] = ACTIONS(2378), - [aux_sym_cmd_identifier_token12] = ACTIONS(2378), - [aux_sym_cmd_identifier_token13] = ACTIONS(2378), - [aux_sym_cmd_identifier_token14] = ACTIONS(2378), - [aux_sym_cmd_identifier_token15] = ACTIONS(2378), - [aux_sym_cmd_identifier_token16] = ACTIONS(2378), - [aux_sym_cmd_identifier_token17] = ACTIONS(2378), - [aux_sym_cmd_identifier_token18] = ACTIONS(2378), - [aux_sym_cmd_identifier_token19] = ACTIONS(2378), - [aux_sym_cmd_identifier_token20] = ACTIONS(2378), - [aux_sym_cmd_identifier_token21] = ACTIONS(2378), - [aux_sym_cmd_identifier_token22] = ACTIONS(2378), - [aux_sym_cmd_identifier_token23] = ACTIONS(2378), - [aux_sym_cmd_identifier_token24] = ACTIONS(2378), - [aux_sym_cmd_identifier_token25] = ACTIONS(2378), - [aux_sym_cmd_identifier_token26] = ACTIONS(2378), - [aux_sym_cmd_identifier_token27] = ACTIONS(2378), - [aux_sym_cmd_identifier_token28] = ACTIONS(2378), - [aux_sym_cmd_identifier_token29] = ACTIONS(2378), - [aux_sym_cmd_identifier_token30] = ACTIONS(2378), - [aux_sym_cmd_identifier_token31] = ACTIONS(2378), - [aux_sym_cmd_identifier_token32] = ACTIONS(2378), - [aux_sym_cmd_identifier_token33] = ACTIONS(2378), - [aux_sym_cmd_identifier_token34] = ACTIONS(2378), - [aux_sym_cmd_identifier_token35] = ACTIONS(2378), - [aux_sym_cmd_identifier_token36] = ACTIONS(2378), - [anon_sym_true] = ACTIONS(2380), - [anon_sym_false] = ACTIONS(2380), - [anon_sym_null] = ACTIONS(2380), - [aux_sym_cmd_identifier_token38] = ACTIONS(2378), - [aux_sym_cmd_identifier_token39] = ACTIONS(2380), - [aux_sym_cmd_identifier_token40] = ACTIONS(2380), - [anon_sym_def] = ACTIONS(2378), - [anon_sym_export_DASHenv] = ACTIONS(2378), - [anon_sym_extern] = ACTIONS(2378), - [anon_sym_module] = ACTIONS(2378), - [anon_sym_use] = ACTIONS(2378), - [anon_sym_LPAREN] = ACTIONS(2378), - [anon_sym_DOLLAR] = ACTIONS(2380), - [anon_sym_error] = ACTIONS(2378), - [anon_sym_list] = ACTIONS(2378), - [anon_sym_DASH] = ACTIONS(2378), - [anon_sym_break] = ACTIONS(2378), - [anon_sym_continue] = ACTIONS(2378), - [anon_sym_for] = ACTIONS(2378), - [anon_sym_in] = ACTIONS(2378), - [anon_sym_loop] = ACTIONS(2378), - [anon_sym_make] = ACTIONS(2378), - [anon_sym_while] = ACTIONS(2378), - [anon_sym_do] = ACTIONS(2378), - [anon_sym_if] = ACTIONS(2378), - [anon_sym_else] = ACTIONS(2378), - [anon_sym_match] = ACTIONS(2378), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_try] = ACTIONS(2378), - [anon_sym_catch] = ACTIONS(2378), - [anon_sym_return] = ACTIONS(2378), - [anon_sym_source] = ACTIONS(2378), - [anon_sym_source_DASHenv] = ACTIONS(2378), - [anon_sym_register] = ACTIONS(2378), - [anon_sym_hide] = ACTIONS(2378), - [anon_sym_hide_DASHenv] = ACTIONS(2378), - [anon_sym_overlay] = ACTIONS(2378), - [anon_sym_new] = ACTIONS(2378), - [anon_sym_as] = ACTIONS(2378), - [anon_sym_LPAREN2] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2380), - [aux_sym__val_number_decimal_token1] = ACTIONS(2378), - [aux_sym__val_number_decimal_token2] = ACTIONS(2380), - [aux_sym__val_number_decimal_token3] = ACTIONS(2380), - [aux_sym__val_number_decimal_token4] = ACTIONS(2380), - [aux_sym__val_number_token1] = ACTIONS(2380), - [aux_sym__val_number_token2] = ACTIONS(2380), - [aux_sym__val_number_token3] = ACTIONS(2380), - [anon_sym_DQUOTE] = ACTIONS(2380), - [sym__str_single_quotes] = ACTIONS(2380), - [sym__str_back_ticks] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2380), - [anon_sym_PLUS] = ACTIONS(2378), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2380), + [sym_raw_string_begin] = ACTIONS(996), }, - [568] = { - [sym_comment] = STATE(568), - [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), + [679] = { + [sym_comment] = STATE(679), + [anon_sym_export] = ACTIONS(2484), + [anon_sym_alias] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2484), + [anon_sym_let_DASHenv] = ACTIONS(2484), + [anon_sym_mut] = ACTIONS(2484), + [anon_sym_const] = ACTIONS(2484), + [aux_sym_cmd_identifier_token1] = ACTIONS(2484), + [aux_sym_cmd_identifier_token2] = ACTIONS(2484), + [aux_sym_cmd_identifier_token3] = ACTIONS(2484), + [aux_sym_cmd_identifier_token4] = ACTIONS(2484), + [aux_sym_cmd_identifier_token5] = ACTIONS(2484), + [aux_sym_cmd_identifier_token6] = ACTIONS(2484), + [aux_sym_cmd_identifier_token7] = ACTIONS(2484), + [aux_sym_cmd_identifier_token8] = ACTIONS(2484), + [aux_sym_cmd_identifier_token9] = ACTIONS(2484), + [aux_sym_cmd_identifier_token10] = ACTIONS(2484), + [aux_sym_cmd_identifier_token11] = ACTIONS(2484), + [aux_sym_cmd_identifier_token12] = ACTIONS(2484), + [aux_sym_cmd_identifier_token13] = ACTIONS(2484), + [aux_sym_cmd_identifier_token14] = ACTIONS(2484), + [aux_sym_cmd_identifier_token15] = ACTIONS(2484), + [aux_sym_cmd_identifier_token16] = ACTIONS(2484), + [aux_sym_cmd_identifier_token17] = ACTIONS(2484), + [aux_sym_cmd_identifier_token18] = ACTIONS(2484), + [aux_sym_cmd_identifier_token19] = ACTIONS(2484), + [aux_sym_cmd_identifier_token20] = ACTIONS(2484), + [aux_sym_cmd_identifier_token21] = ACTIONS(2484), + [aux_sym_cmd_identifier_token22] = ACTIONS(2484), + [aux_sym_cmd_identifier_token23] = ACTIONS(2484), + [aux_sym_cmd_identifier_token24] = ACTIONS(2484), + [aux_sym_cmd_identifier_token25] = ACTIONS(2484), + [aux_sym_cmd_identifier_token26] = ACTIONS(2484), + [aux_sym_cmd_identifier_token27] = ACTIONS(2484), + [aux_sym_cmd_identifier_token28] = ACTIONS(2484), + [aux_sym_cmd_identifier_token29] = ACTIONS(2484), + [aux_sym_cmd_identifier_token30] = ACTIONS(2484), + [aux_sym_cmd_identifier_token31] = ACTIONS(2484), + [aux_sym_cmd_identifier_token32] = ACTIONS(2484), + [aux_sym_cmd_identifier_token33] = ACTIONS(2484), + [aux_sym_cmd_identifier_token34] = ACTIONS(2484), + [aux_sym_cmd_identifier_token35] = ACTIONS(2484), + [aux_sym_cmd_identifier_token36] = ACTIONS(2484), + [aux_sym_cmd_identifier_token37] = ACTIONS(2484), + [aux_sym_cmd_identifier_token38] = ACTIONS(2484), + [aux_sym_cmd_identifier_token39] = ACTIONS(2484), + [aux_sym_cmd_identifier_token40] = ACTIONS(2484), + [anon_sym_def] = ACTIONS(2484), + [anon_sym_export_DASHenv] = ACTIONS(2484), + [anon_sym_extern] = ACTIONS(2484), + [anon_sym_module] = ACTIONS(2484), + [anon_sym_use] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2484), + [anon_sym_error] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2484), + [anon_sym_break] = ACTIONS(2484), + [anon_sym_continue] = ACTIONS(2484), + [anon_sym_for] = ACTIONS(2484), + [anon_sym_in2] = ACTIONS(2484), + [anon_sym_loop] = ACTIONS(2484), + [anon_sym_make] = ACTIONS(2484), + [anon_sym_while] = ACTIONS(2484), + [anon_sym_do] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2484), + [anon_sym_else] = ACTIONS(2484), + [anon_sym_match] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_try] = ACTIONS(2484), + [anon_sym_catch] = ACTIONS(2484), + [anon_sym_return] = ACTIONS(2484), + [anon_sym_source] = ACTIONS(2484), + [anon_sym_source_DASHenv] = ACTIONS(2484), + [anon_sym_register] = ACTIONS(2484), + [anon_sym_hide] = ACTIONS(2484), + [anon_sym_hide_DASHenv] = ACTIONS(2484), + [anon_sym_overlay] = ACTIONS(2484), + [anon_sym_as] = ACTIONS(2484), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2484), + [aux_sym__val_number_decimal_token1] = ACTIONS(2484), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2484), + [aux_sym__val_number_decimal_token4] = ACTIONS(2484), + [aux_sym__val_number_token1] = ACTIONS(2484), + [aux_sym__val_number_token2] = ACTIONS(2484), + [aux_sym__val_number_token3] = ACTIONS(2484), + [aux_sym__val_number_token4] = ACTIONS(2484), + [aux_sym__val_number_token5] = ACTIONS(2484), + [aux_sym__val_number_token6] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [sym__str_single_quotes] = ACTIONS(2484), + [sym__str_back_ticks] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2484), + [sym__entry_separator] = ACTIONS(2486), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2448), + [sym_raw_string_begin] = ACTIONS(2486), }, - [569] = { - [sym_comment] = STATE(569), - [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), + [680] = { + [sym_comment] = STATE(680), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_alias] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_let_DASHenv] = ACTIONS(2488), + [anon_sym_mut] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [aux_sym_cmd_identifier_token1] = ACTIONS(2488), + [aux_sym_cmd_identifier_token2] = ACTIONS(2488), + [aux_sym_cmd_identifier_token3] = ACTIONS(2488), + [aux_sym_cmd_identifier_token4] = ACTIONS(2488), + [aux_sym_cmd_identifier_token5] = ACTIONS(2488), + [aux_sym_cmd_identifier_token6] = ACTIONS(2488), + [aux_sym_cmd_identifier_token7] = ACTIONS(2488), + [aux_sym_cmd_identifier_token8] = ACTIONS(2488), + [aux_sym_cmd_identifier_token9] = ACTIONS(2488), + [aux_sym_cmd_identifier_token10] = ACTIONS(2488), + [aux_sym_cmd_identifier_token11] = ACTIONS(2488), + [aux_sym_cmd_identifier_token12] = ACTIONS(2488), + [aux_sym_cmd_identifier_token13] = ACTIONS(2488), + [aux_sym_cmd_identifier_token14] = ACTIONS(2488), + [aux_sym_cmd_identifier_token15] = ACTIONS(2488), + [aux_sym_cmd_identifier_token16] = ACTIONS(2488), + [aux_sym_cmd_identifier_token17] = ACTIONS(2488), + [aux_sym_cmd_identifier_token18] = ACTIONS(2488), + [aux_sym_cmd_identifier_token19] = ACTIONS(2488), + [aux_sym_cmd_identifier_token20] = ACTIONS(2488), + [aux_sym_cmd_identifier_token21] = ACTIONS(2488), + [aux_sym_cmd_identifier_token22] = ACTIONS(2488), + [aux_sym_cmd_identifier_token23] = ACTIONS(2488), + [aux_sym_cmd_identifier_token24] = ACTIONS(2488), + [aux_sym_cmd_identifier_token25] = ACTIONS(2488), + [aux_sym_cmd_identifier_token26] = ACTIONS(2488), + [aux_sym_cmd_identifier_token27] = ACTIONS(2488), + [aux_sym_cmd_identifier_token28] = ACTIONS(2488), + [aux_sym_cmd_identifier_token29] = ACTIONS(2488), + [aux_sym_cmd_identifier_token30] = ACTIONS(2488), + [aux_sym_cmd_identifier_token31] = ACTIONS(2488), + [aux_sym_cmd_identifier_token32] = ACTIONS(2488), + [aux_sym_cmd_identifier_token33] = ACTIONS(2488), + [aux_sym_cmd_identifier_token34] = ACTIONS(2488), + [aux_sym_cmd_identifier_token35] = ACTIONS(2488), + [aux_sym_cmd_identifier_token36] = ACTIONS(2488), + [aux_sym_cmd_identifier_token37] = ACTIONS(2488), + [aux_sym_cmd_identifier_token38] = ACTIONS(2488), + [aux_sym_cmd_identifier_token39] = ACTIONS(2488), + [aux_sym_cmd_identifier_token40] = ACTIONS(2488), + [anon_sym_def] = ACTIONS(2488), + [anon_sym_export_DASHenv] = ACTIONS(2488), + [anon_sym_extern] = ACTIONS(2488), + [anon_sym_module] = ACTIONS(2488), + [anon_sym_use] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(2488), + [anon_sym_error] = ACTIONS(2488), + [anon_sym_DASH2] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_in2] = ACTIONS(2488), + [anon_sym_loop] = ACTIONS(2488), + [anon_sym_make] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_else] = ACTIONS(2488), + [anon_sym_match] = ACTIONS(2488), + [anon_sym_RBRACE] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_catch] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_source] = ACTIONS(2488), + [anon_sym_source_DASHenv] = ACTIONS(2488), + [anon_sym_register] = ACTIONS(2488), + [anon_sym_hide] = ACTIONS(2488), + [anon_sym_hide_DASHenv] = ACTIONS(2488), + [anon_sym_overlay] = ACTIONS(2488), + [anon_sym_as] = ACTIONS(2488), + [anon_sym_PLUS2] = ACTIONS(2488), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2488), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2488), + [aux_sym__val_number_decimal_token1] = ACTIONS(2488), + [aux_sym__val_number_decimal_token2] = ACTIONS(2488), + [aux_sym__val_number_decimal_token3] = ACTIONS(2488), + [aux_sym__val_number_decimal_token4] = ACTIONS(2488), + [aux_sym__val_number_token1] = ACTIONS(2488), + [aux_sym__val_number_token2] = ACTIONS(2488), + [aux_sym__val_number_token3] = ACTIONS(2488), + [aux_sym__val_number_token4] = ACTIONS(2488), + [aux_sym__val_number_token5] = ACTIONS(2488), + [aux_sym__val_number_token6] = ACTIONS(2488), + [anon_sym_DQUOTE] = ACTIONS(2488), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2488), + [sym__entry_separator] = ACTIONS(2490), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2452), + [sym_raw_string_begin] = ACTIONS(2490), }, - [570] = { - [sym_comment] = STATE(570), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_alias] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_let_DASHenv] = ACTIONS(2067), - [anon_sym_mut] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [aux_sym_cmd_identifier_token1] = ACTIONS(2067), - [aux_sym_cmd_identifier_token2] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [aux_sym_cmd_identifier_token6] = ACTIONS(2067), - [aux_sym_cmd_identifier_token7] = ACTIONS(2067), - [aux_sym_cmd_identifier_token8] = ACTIONS(2067), - [aux_sym_cmd_identifier_token9] = ACTIONS(2067), - [aux_sym_cmd_identifier_token10] = ACTIONS(2067), - [aux_sym_cmd_identifier_token11] = ACTIONS(2067), - [aux_sym_cmd_identifier_token12] = ACTIONS(2067), - [aux_sym_cmd_identifier_token13] = ACTIONS(2067), - [aux_sym_cmd_identifier_token14] = ACTIONS(2067), - [aux_sym_cmd_identifier_token15] = ACTIONS(2067), - [aux_sym_cmd_identifier_token16] = ACTIONS(2067), - [aux_sym_cmd_identifier_token17] = ACTIONS(2067), - [aux_sym_cmd_identifier_token18] = ACTIONS(2067), - [aux_sym_cmd_identifier_token19] = ACTIONS(2067), - [aux_sym_cmd_identifier_token20] = ACTIONS(2067), - [aux_sym_cmd_identifier_token21] = ACTIONS(2067), - [aux_sym_cmd_identifier_token22] = ACTIONS(2067), - [aux_sym_cmd_identifier_token23] = ACTIONS(2067), - [aux_sym_cmd_identifier_token24] = ACTIONS(2067), - [aux_sym_cmd_identifier_token25] = ACTIONS(2067), - [aux_sym_cmd_identifier_token26] = ACTIONS(2067), - [aux_sym_cmd_identifier_token27] = ACTIONS(2067), - [aux_sym_cmd_identifier_token28] = ACTIONS(2067), - [aux_sym_cmd_identifier_token29] = ACTIONS(2067), - [aux_sym_cmd_identifier_token30] = ACTIONS(2067), - [aux_sym_cmd_identifier_token31] = ACTIONS(2067), - [aux_sym_cmd_identifier_token32] = ACTIONS(2067), - [aux_sym_cmd_identifier_token33] = ACTIONS(2067), - [aux_sym_cmd_identifier_token34] = ACTIONS(2067), - [aux_sym_cmd_identifier_token35] = ACTIONS(2067), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(2067), - [anon_sym_export_DASHenv] = ACTIONS(2067), - [anon_sym_extern] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_use] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2067), - [anon_sym_error] = ACTIONS(2067), - [anon_sym_list] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_loop] = ACTIONS(2067), - [anon_sym_make] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_source] = ACTIONS(2067), - [anon_sym_source_DASHenv] = ACTIONS(2067), - [anon_sym_register] = ACTIONS(2067), - [anon_sym_hide] = ACTIONS(2067), - [anon_sym_hide_DASHenv] = ACTIONS(2067), - [anon_sym_overlay] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2067), - [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), - [sym__entry_separator] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(2067), + [681] = { + [sym_comment] = STATE(681), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2069), + [sym_raw_string_begin] = ACTIONS(1741), }, - [571] = { - [sym_comment] = STATE(571), - [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), + [682] = { + [sym_comment] = STATE(682), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_alias] = ACTIONS(2492), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_let_DASHenv] = ACTIONS(2492), + [anon_sym_mut] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [aux_sym_cmd_identifier_token1] = ACTIONS(2492), + [aux_sym_cmd_identifier_token2] = ACTIONS(2492), + [aux_sym_cmd_identifier_token3] = ACTIONS(2492), + [aux_sym_cmd_identifier_token4] = ACTIONS(2492), + [aux_sym_cmd_identifier_token5] = ACTIONS(2492), + [aux_sym_cmd_identifier_token6] = ACTIONS(2492), + [aux_sym_cmd_identifier_token7] = ACTIONS(2492), + [aux_sym_cmd_identifier_token8] = ACTIONS(2492), + [aux_sym_cmd_identifier_token9] = ACTIONS(2492), + [aux_sym_cmd_identifier_token10] = ACTIONS(2492), + [aux_sym_cmd_identifier_token11] = ACTIONS(2492), + [aux_sym_cmd_identifier_token12] = ACTIONS(2492), + [aux_sym_cmd_identifier_token13] = ACTIONS(2492), + [aux_sym_cmd_identifier_token14] = ACTIONS(2492), + [aux_sym_cmd_identifier_token15] = ACTIONS(2492), + [aux_sym_cmd_identifier_token16] = ACTIONS(2492), + [aux_sym_cmd_identifier_token17] = ACTIONS(2492), + [aux_sym_cmd_identifier_token18] = ACTIONS(2492), + [aux_sym_cmd_identifier_token19] = ACTIONS(2492), + [aux_sym_cmd_identifier_token20] = ACTIONS(2492), + [aux_sym_cmd_identifier_token21] = ACTIONS(2492), + [aux_sym_cmd_identifier_token22] = ACTIONS(2492), + [aux_sym_cmd_identifier_token23] = ACTIONS(2492), + [aux_sym_cmd_identifier_token24] = ACTIONS(2492), + [aux_sym_cmd_identifier_token25] = ACTIONS(2492), + [aux_sym_cmd_identifier_token26] = ACTIONS(2492), + [aux_sym_cmd_identifier_token27] = ACTIONS(2492), + [aux_sym_cmd_identifier_token28] = ACTIONS(2492), + [aux_sym_cmd_identifier_token29] = ACTIONS(2492), + [aux_sym_cmd_identifier_token30] = ACTIONS(2492), + [aux_sym_cmd_identifier_token31] = ACTIONS(2492), + [aux_sym_cmd_identifier_token32] = ACTIONS(2492), + [aux_sym_cmd_identifier_token33] = ACTIONS(2492), + [aux_sym_cmd_identifier_token34] = ACTIONS(2492), + [aux_sym_cmd_identifier_token35] = ACTIONS(2492), + [aux_sym_cmd_identifier_token36] = ACTIONS(2492), + [aux_sym_cmd_identifier_token37] = ACTIONS(2492), + [aux_sym_cmd_identifier_token38] = ACTIONS(2492), + [aux_sym_cmd_identifier_token39] = ACTIONS(2492), + [aux_sym_cmd_identifier_token40] = ACTIONS(2492), + [anon_sym_def] = ACTIONS(2492), + [anon_sym_export_DASHenv] = ACTIONS(2492), + [anon_sym_extern] = ACTIONS(2492), + [anon_sym_module] = ACTIONS(2492), + [anon_sym_use] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_DOLLAR] = ACTIONS(2492), + [anon_sym_error] = ACTIONS(2492), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_in2] = ACTIONS(2492), + [anon_sym_loop] = ACTIONS(2492), + [anon_sym_make] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_do] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_else] = ACTIONS(2492), + [anon_sym_match] = ACTIONS(2492), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_catch] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_source] = ACTIONS(2492), + [anon_sym_source_DASHenv] = ACTIONS(2492), + [anon_sym_register] = ACTIONS(2492), + [anon_sym_hide] = ACTIONS(2492), + [anon_sym_hide_DASHenv] = ACTIONS(2492), + [anon_sym_overlay] = ACTIONS(2492), + [anon_sym_as] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2492), + [aux_sym__val_number_decimal_token1] = ACTIONS(2492), + [aux_sym__val_number_decimal_token2] = ACTIONS(2492), + [aux_sym__val_number_decimal_token3] = ACTIONS(2492), + [aux_sym__val_number_decimal_token4] = ACTIONS(2492), + [aux_sym__val_number_token1] = ACTIONS(2492), + [aux_sym__val_number_token2] = ACTIONS(2492), + [aux_sym__val_number_token3] = ACTIONS(2492), + [aux_sym__val_number_token4] = ACTIONS(2492), + [aux_sym__val_number_token5] = ACTIONS(2492), + [aux_sym__val_number_token6] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2492), + [sym__str_single_quotes] = ACTIONS(2492), + [sym__str_back_ticks] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2492), + [sym__entry_separator] = ACTIONS(2494), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2456), + [sym_raw_string_begin] = ACTIONS(2494), }, - [572] = { - [sym_comment] = STATE(572), - [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), + [683] = { + [sym_comment] = STATE(683), + [anon_sym_export] = ACTIONS(2496), + [anon_sym_alias] = ACTIONS(2496), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_let_DASHenv] = ACTIONS(2496), + [anon_sym_mut] = ACTIONS(2496), + [anon_sym_const] = ACTIONS(2496), + [aux_sym_cmd_identifier_token1] = ACTIONS(2496), + [aux_sym_cmd_identifier_token2] = ACTIONS(2496), + [aux_sym_cmd_identifier_token3] = ACTIONS(2496), + [aux_sym_cmd_identifier_token4] = ACTIONS(2496), + [aux_sym_cmd_identifier_token5] = ACTIONS(2496), + [aux_sym_cmd_identifier_token6] = ACTIONS(2496), + [aux_sym_cmd_identifier_token7] = ACTIONS(2496), + [aux_sym_cmd_identifier_token8] = ACTIONS(2496), + [aux_sym_cmd_identifier_token9] = ACTIONS(2496), + [aux_sym_cmd_identifier_token10] = ACTIONS(2496), + [aux_sym_cmd_identifier_token11] = ACTIONS(2496), + [aux_sym_cmd_identifier_token12] = ACTIONS(2496), + [aux_sym_cmd_identifier_token13] = ACTIONS(2496), + [aux_sym_cmd_identifier_token14] = ACTIONS(2496), + [aux_sym_cmd_identifier_token15] = ACTIONS(2496), + [aux_sym_cmd_identifier_token16] = ACTIONS(2496), + [aux_sym_cmd_identifier_token17] = ACTIONS(2496), + [aux_sym_cmd_identifier_token18] = ACTIONS(2496), + [aux_sym_cmd_identifier_token19] = ACTIONS(2496), + [aux_sym_cmd_identifier_token20] = ACTIONS(2496), + [aux_sym_cmd_identifier_token21] = ACTIONS(2496), + [aux_sym_cmd_identifier_token22] = ACTIONS(2496), + [aux_sym_cmd_identifier_token23] = ACTIONS(2496), + [aux_sym_cmd_identifier_token24] = ACTIONS(2496), + [aux_sym_cmd_identifier_token25] = ACTIONS(2496), + [aux_sym_cmd_identifier_token26] = ACTIONS(2496), + [aux_sym_cmd_identifier_token27] = ACTIONS(2496), + [aux_sym_cmd_identifier_token28] = ACTIONS(2496), + [aux_sym_cmd_identifier_token29] = ACTIONS(2496), + [aux_sym_cmd_identifier_token30] = ACTIONS(2496), + [aux_sym_cmd_identifier_token31] = ACTIONS(2496), + [aux_sym_cmd_identifier_token32] = ACTIONS(2496), + [aux_sym_cmd_identifier_token33] = ACTIONS(2496), + [aux_sym_cmd_identifier_token34] = ACTIONS(2496), + [aux_sym_cmd_identifier_token35] = ACTIONS(2496), + [aux_sym_cmd_identifier_token36] = ACTIONS(2496), + [aux_sym_cmd_identifier_token37] = ACTIONS(2496), + [aux_sym_cmd_identifier_token38] = ACTIONS(2496), + [aux_sym_cmd_identifier_token39] = ACTIONS(2496), + [aux_sym_cmd_identifier_token40] = ACTIONS(2496), + [anon_sym_def] = ACTIONS(2496), + [anon_sym_export_DASHenv] = ACTIONS(2496), + [anon_sym_extern] = ACTIONS(2496), + [anon_sym_module] = ACTIONS(2496), + [anon_sym_use] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_DOLLAR] = ACTIONS(2496), + [anon_sym_error] = ACTIONS(2496), + [anon_sym_DASH2] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_in2] = ACTIONS(2496), + [anon_sym_loop] = ACTIONS(2496), + [anon_sym_make] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_do] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_else] = ACTIONS(2496), + [anon_sym_match] = ACTIONS(2496), + [anon_sym_RBRACE] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2496), + [anon_sym_catch] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_source] = ACTIONS(2496), + [anon_sym_source_DASHenv] = ACTIONS(2496), + [anon_sym_register] = ACTIONS(2496), + [anon_sym_hide] = ACTIONS(2496), + [anon_sym_hide_DASHenv] = ACTIONS(2496), + [anon_sym_overlay] = ACTIONS(2496), + [anon_sym_as] = ACTIONS(2496), + [anon_sym_PLUS2] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2496), + [aux_sym__val_number_decimal_token1] = ACTIONS(2496), + [aux_sym__val_number_decimal_token2] = ACTIONS(2496), + [aux_sym__val_number_decimal_token3] = ACTIONS(2496), + [aux_sym__val_number_decimal_token4] = ACTIONS(2496), + [aux_sym__val_number_token1] = ACTIONS(2496), + [aux_sym__val_number_token2] = ACTIONS(2496), + [aux_sym__val_number_token3] = ACTIONS(2496), + [aux_sym__val_number_token4] = ACTIONS(2496), + [aux_sym__val_number_token5] = ACTIONS(2496), + [aux_sym__val_number_token6] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2496), + [sym__str_single_quotes] = ACTIONS(2496), + [sym__str_back_ticks] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2496), + [sym__entry_separator] = ACTIONS(2498), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2460), + [sym_raw_string_begin] = ACTIONS(2498), }, - [573] = { - [sym_comment] = STATE(573), - [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), + [684] = { + [sym_comment] = STATE(684), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_in2] = 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_as] = ACTIONS(2133), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2133), + [aux_sym__val_number_token5] = ACTIONS(2133), + [aux_sym__val_number_token6] = 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(2139), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2464), + [sym_raw_string_begin] = ACTIONS(2139), }, - [574] = { - [sym_comment] = STATE(574), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), + [685] = { + [sym_comment] = STATE(685), + [anon_sym_export] = ACTIONS(2500), + [anon_sym_alias] = ACTIONS(2500), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_let_DASHenv] = ACTIONS(2500), + [anon_sym_mut] = ACTIONS(2500), + [anon_sym_const] = ACTIONS(2500), + [aux_sym_cmd_identifier_token1] = ACTIONS(2500), + [aux_sym_cmd_identifier_token2] = ACTIONS(2500), + [aux_sym_cmd_identifier_token3] = ACTIONS(2500), + [aux_sym_cmd_identifier_token4] = ACTIONS(2500), + [aux_sym_cmd_identifier_token5] = ACTIONS(2500), + [aux_sym_cmd_identifier_token6] = ACTIONS(2500), + [aux_sym_cmd_identifier_token7] = ACTIONS(2500), + [aux_sym_cmd_identifier_token8] = ACTIONS(2500), + [aux_sym_cmd_identifier_token9] = ACTIONS(2500), + [aux_sym_cmd_identifier_token10] = ACTIONS(2500), + [aux_sym_cmd_identifier_token11] = ACTIONS(2500), + [aux_sym_cmd_identifier_token12] = ACTIONS(2500), + [aux_sym_cmd_identifier_token13] = ACTIONS(2500), + [aux_sym_cmd_identifier_token14] = ACTIONS(2500), + [aux_sym_cmd_identifier_token15] = ACTIONS(2500), + [aux_sym_cmd_identifier_token16] = ACTIONS(2500), + [aux_sym_cmd_identifier_token17] = ACTIONS(2500), + [aux_sym_cmd_identifier_token18] = ACTIONS(2500), + [aux_sym_cmd_identifier_token19] = ACTIONS(2500), + [aux_sym_cmd_identifier_token20] = ACTIONS(2500), + [aux_sym_cmd_identifier_token21] = ACTIONS(2500), + [aux_sym_cmd_identifier_token22] = ACTIONS(2500), + [aux_sym_cmd_identifier_token23] = ACTIONS(2500), + [aux_sym_cmd_identifier_token24] = ACTIONS(2500), + [aux_sym_cmd_identifier_token25] = ACTIONS(2500), + [aux_sym_cmd_identifier_token26] = ACTIONS(2500), + [aux_sym_cmd_identifier_token27] = ACTIONS(2500), + [aux_sym_cmd_identifier_token28] = ACTIONS(2500), + [aux_sym_cmd_identifier_token29] = ACTIONS(2500), + [aux_sym_cmd_identifier_token30] = ACTIONS(2500), + [aux_sym_cmd_identifier_token31] = ACTIONS(2500), + [aux_sym_cmd_identifier_token32] = ACTIONS(2500), + [aux_sym_cmd_identifier_token33] = ACTIONS(2500), + [aux_sym_cmd_identifier_token34] = ACTIONS(2500), + [aux_sym_cmd_identifier_token35] = ACTIONS(2500), + [aux_sym_cmd_identifier_token36] = ACTIONS(2500), + [aux_sym_cmd_identifier_token37] = ACTIONS(2500), + [aux_sym_cmd_identifier_token38] = ACTIONS(2500), + [aux_sym_cmd_identifier_token39] = ACTIONS(2500), + [aux_sym_cmd_identifier_token40] = ACTIONS(2500), + [anon_sym_def] = ACTIONS(2500), + [anon_sym_export_DASHenv] = ACTIONS(2500), + [anon_sym_extern] = ACTIONS(2500), + [anon_sym_module] = ACTIONS(2500), + [anon_sym_use] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(2500), + [anon_sym_DOLLAR] = ACTIONS(2500), + [anon_sym_error] = ACTIONS(2500), + [anon_sym_DASH2] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_in2] = ACTIONS(2500), + [anon_sym_loop] = ACTIONS(2500), + [anon_sym_make] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_do] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_else] = ACTIONS(2500), + [anon_sym_match] = ACTIONS(2500), + [anon_sym_RBRACE] = ACTIONS(2500), + [anon_sym_try] = ACTIONS(2500), + [anon_sym_catch] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_source] = ACTIONS(2500), + [anon_sym_source_DASHenv] = ACTIONS(2500), + [anon_sym_register] = ACTIONS(2500), + [anon_sym_hide] = ACTIONS(2500), + [anon_sym_hide_DASHenv] = ACTIONS(2500), + [anon_sym_overlay] = ACTIONS(2500), + [anon_sym_as] = ACTIONS(2500), + [anon_sym_PLUS2] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2500), + [aux_sym__val_number_decimal_token1] = ACTIONS(2500), + [aux_sym__val_number_decimal_token2] = ACTIONS(2500), + [aux_sym__val_number_decimal_token3] = ACTIONS(2500), + [aux_sym__val_number_decimal_token4] = ACTIONS(2500), + [aux_sym__val_number_token1] = ACTIONS(2500), + [aux_sym__val_number_token2] = ACTIONS(2500), + [aux_sym__val_number_token3] = ACTIONS(2500), + [aux_sym__val_number_token4] = ACTIONS(2500), + [aux_sym__val_number_token5] = ACTIONS(2500), + [aux_sym__val_number_token6] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(2500), + [sym__str_single_quotes] = ACTIONS(2500), + [sym__str_back_ticks] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2500), + [sym__entry_separator] = ACTIONS(2502), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), + [sym_raw_string_begin] = ACTIONS(2502), }, - [575] = { - [sym_comment] = STATE(575), - [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), + [686] = { + [sym_comment] = STATE(686), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_alias] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_let_DASHenv] = ACTIONS(1907), + [anon_sym_mut] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [aux_sym_cmd_identifier_token1] = ACTIONS(1907), + [aux_sym_cmd_identifier_token2] = ACTIONS(1907), + [aux_sym_cmd_identifier_token3] = ACTIONS(1907), + [aux_sym_cmd_identifier_token4] = ACTIONS(1907), + [aux_sym_cmd_identifier_token5] = ACTIONS(1907), + [aux_sym_cmd_identifier_token6] = ACTIONS(1907), + [aux_sym_cmd_identifier_token7] = ACTIONS(1907), + [aux_sym_cmd_identifier_token8] = ACTIONS(1907), + [aux_sym_cmd_identifier_token9] = ACTIONS(1907), + [aux_sym_cmd_identifier_token10] = ACTIONS(1907), + [aux_sym_cmd_identifier_token11] = ACTIONS(1907), + [aux_sym_cmd_identifier_token12] = ACTIONS(1907), + [aux_sym_cmd_identifier_token13] = ACTIONS(1907), + [aux_sym_cmd_identifier_token14] = ACTIONS(1907), + [aux_sym_cmd_identifier_token15] = ACTIONS(1907), + [aux_sym_cmd_identifier_token16] = ACTIONS(1907), + [aux_sym_cmd_identifier_token17] = ACTIONS(1907), + [aux_sym_cmd_identifier_token18] = ACTIONS(1907), + [aux_sym_cmd_identifier_token19] = ACTIONS(1907), + [aux_sym_cmd_identifier_token20] = ACTIONS(1907), + [aux_sym_cmd_identifier_token21] = ACTIONS(1907), + [aux_sym_cmd_identifier_token22] = ACTIONS(1907), + [aux_sym_cmd_identifier_token23] = ACTIONS(1907), + [aux_sym_cmd_identifier_token24] = ACTIONS(1907), + [aux_sym_cmd_identifier_token25] = ACTIONS(1907), + [aux_sym_cmd_identifier_token26] = ACTIONS(1907), + [aux_sym_cmd_identifier_token27] = ACTIONS(1907), + [aux_sym_cmd_identifier_token28] = ACTIONS(1907), + [aux_sym_cmd_identifier_token29] = ACTIONS(1907), + [aux_sym_cmd_identifier_token30] = ACTIONS(1907), + [aux_sym_cmd_identifier_token31] = ACTIONS(1907), + [aux_sym_cmd_identifier_token32] = ACTIONS(1907), + [aux_sym_cmd_identifier_token33] = ACTIONS(1907), + [aux_sym_cmd_identifier_token34] = ACTIONS(1907), + [aux_sym_cmd_identifier_token35] = ACTIONS(1907), + [aux_sym_cmd_identifier_token36] = ACTIONS(1907), + [aux_sym_cmd_identifier_token37] = ACTIONS(1907), + [aux_sym_cmd_identifier_token38] = ACTIONS(1907), + [aux_sym_cmd_identifier_token39] = ACTIONS(1907), + [aux_sym_cmd_identifier_token40] = ACTIONS(1907), + [anon_sym_def] = ACTIONS(1907), + [anon_sym_export_DASHenv] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_use] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_DOLLAR] = ACTIONS(1907), + [anon_sym_error] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_in2] = ACTIONS(1907), + [anon_sym_loop] = ACTIONS(1907), + [anon_sym_make] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_catch] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_source] = ACTIONS(1907), + [anon_sym_source_DASHenv] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_hide] = ACTIONS(1907), + [anon_sym_hide_DASHenv] = ACTIONS(1907), + [anon_sym_overlay] = ACTIONS(1907), + [anon_sym_as] = ACTIONS(1907), + [anon_sym_PLUS2] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1907), + [aux_sym__val_number_decimal_token1] = ACTIONS(1907), + [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), + [aux_sym__val_number_token4] = ACTIONS(1907), + [aux_sym__val_number_token5] = ACTIONS(1907), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1911), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2468), + [sym_raw_string_begin] = ACTIONS(1911), }, - [576] = { - [sym_comment] = STATE(576), - [anon_sym_export] = ACTIONS(2087), - [anon_sym_alias] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_let_DASHenv] = ACTIONS(2087), - [anon_sym_mut] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [aux_sym_cmd_identifier_token1] = ACTIONS(2087), - [aux_sym_cmd_identifier_token2] = ACTIONS(2087), - [aux_sym_cmd_identifier_token3] = ACTIONS(2087), - [aux_sym_cmd_identifier_token4] = ACTIONS(2087), - [aux_sym_cmd_identifier_token5] = ACTIONS(2087), - [aux_sym_cmd_identifier_token6] = ACTIONS(2087), - [aux_sym_cmd_identifier_token7] = ACTIONS(2087), - [aux_sym_cmd_identifier_token8] = ACTIONS(2087), - [aux_sym_cmd_identifier_token9] = ACTIONS(2087), - [aux_sym_cmd_identifier_token10] = ACTIONS(2087), - [aux_sym_cmd_identifier_token11] = ACTIONS(2087), - [aux_sym_cmd_identifier_token12] = ACTIONS(2087), - [aux_sym_cmd_identifier_token13] = ACTIONS(2087), - [aux_sym_cmd_identifier_token14] = ACTIONS(2087), - [aux_sym_cmd_identifier_token15] = ACTIONS(2087), - [aux_sym_cmd_identifier_token16] = ACTIONS(2087), - [aux_sym_cmd_identifier_token17] = ACTIONS(2087), - [aux_sym_cmd_identifier_token18] = ACTIONS(2087), - [aux_sym_cmd_identifier_token19] = ACTIONS(2087), - [aux_sym_cmd_identifier_token20] = ACTIONS(2087), - [aux_sym_cmd_identifier_token21] = ACTIONS(2087), - [aux_sym_cmd_identifier_token22] = ACTIONS(2087), - [aux_sym_cmd_identifier_token23] = ACTIONS(2087), - [aux_sym_cmd_identifier_token24] = ACTIONS(2087), - [aux_sym_cmd_identifier_token25] = ACTIONS(2087), - [aux_sym_cmd_identifier_token26] = ACTIONS(2087), - [aux_sym_cmd_identifier_token27] = ACTIONS(2087), - [aux_sym_cmd_identifier_token28] = ACTIONS(2087), - [aux_sym_cmd_identifier_token29] = ACTIONS(2087), - [aux_sym_cmd_identifier_token30] = ACTIONS(2087), - [aux_sym_cmd_identifier_token31] = ACTIONS(2087), - [aux_sym_cmd_identifier_token32] = ACTIONS(2087), - [aux_sym_cmd_identifier_token33] = ACTIONS(2087), - [aux_sym_cmd_identifier_token34] = ACTIONS(2087), - [aux_sym_cmd_identifier_token35] = ACTIONS(2087), - [aux_sym_cmd_identifier_token36] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(2087), - [anon_sym_false] = ACTIONS(2087), - [anon_sym_null] = ACTIONS(2087), - [aux_sym_cmd_identifier_token38] = ACTIONS(2087), - [aux_sym_cmd_identifier_token39] = ACTIONS(2087), - [aux_sym_cmd_identifier_token40] = ACTIONS(2087), - [anon_sym_def] = ACTIONS(2087), - [anon_sym_export_DASHenv] = ACTIONS(2087), - [anon_sym_extern] = ACTIONS(2087), - [anon_sym_module] = ACTIONS(2087), - [anon_sym_use] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_DOLLAR] = ACTIONS(2087), - [anon_sym_error] = ACTIONS(2087), - [anon_sym_list] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_in] = ACTIONS(2087), - [anon_sym_loop] = ACTIONS(2087), - [anon_sym_make] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_do] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_else] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_try] = ACTIONS(2087), - [anon_sym_catch] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_source] = ACTIONS(2087), - [anon_sym_source_DASHenv] = ACTIONS(2087), - [anon_sym_register] = ACTIONS(2087), - [anon_sym_hide] = ACTIONS(2087), - [anon_sym_hide_DASHenv] = ACTIONS(2087), - [anon_sym_overlay] = ACTIONS(2087), - [anon_sym_new] = ACTIONS(2087), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2087), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2087), - [aux_sym__val_number_decimal_token3] = ACTIONS(2087), - [aux_sym__val_number_decimal_token4] = ACTIONS(2087), - [aux_sym__val_number_token1] = ACTIONS(2087), - [aux_sym__val_number_token2] = ACTIONS(2087), - [aux_sym__val_number_token3] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2087), - [sym__str_single_quotes] = ACTIONS(2087), - [sym__str_back_ticks] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2087), - [sym__entry_separator] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2087), + [687] = { + [sym_comment] = STATE(687), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(998), + [aux_sym_cmd_identifier_token3] = ACTIONS(998), + [aux_sym_cmd_identifier_token4] = ACTIONS(998), + [aux_sym_cmd_identifier_token5] = ACTIONS(998), + [aux_sym_cmd_identifier_token6] = ACTIONS(998), + [aux_sym_cmd_identifier_token7] = ACTIONS(998), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(998), + [aux_sym_cmd_identifier_token17] = ACTIONS(998), + [aux_sym_cmd_identifier_token18] = ACTIONS(998), + [aux_sym_cmd_identifier_token19] = ACTIONS(998), + [aux_sym_cmd_identifier_token20] = ACTIONS(998), + [aux_sym_cmd_identifier_token21] = ACTIONS(998), + [aux_sym_cmd_identifier_token22] = ACTIONS(998), + [aux_sym_cmd_identifier_token23] = ACTIONS(998), + [aux_sym_cmd_identifier_token24] = ACTIONS(998), + [aux_sym_cmd_identifier_token25] = ACTIONS(998), + [aux_sym_cmd_identifier_token26] = ACTIONS(998), + [aux_sym_cmd_identifier_token27] = ACTIONS(998), + [aux_sym_cmd_identifier_token28] = ACTIONS(998), + [aux_sym_cmd_identifier_token29] = ACTIONS(998), + [aux_sym_cmd_identifier_token30] = ACTIONS(998), + [aux_sym_cmd_identifier_token31] = ACTIONS(998), + [aux_sym_cmd_identifier_token32] = ACTIONS(998), + [aux_sym_cmd_identifier_token33] = ACTIONS(998), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(998), + [aux_sym_cmd_identifier_token36] = ACTIONS(998), + [aux_sym_cmd_identifier_token37] = ACTIONS(998), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(998), + [aux_sym_cmd_identifier_token40] = ACTIONS(998), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(998), + [aux_sym__val_number_decimal_token3] = ACTIONS(998), + [aux_sym__val_number_decimal_token4] = ACTIONS(998), + [aux_sym__val_number_token1] = ACTIONS(998), + [aux_sym__val_number_token2] = ACTIONS(998), + [aux_sym__val_number_token3] = ACTIONS(998), + [aux_sym__val_number_token4] = ACTIONS(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), + [sym__entry_separator] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2089), + [sym_raw_string_begin] = ACTIONS(1000), }, - [577] = { - [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(2017), - [anon_sym_alias] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_let_DASHenv] = ACTIONS(2017), - [anon_sym_mut] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [aux_sym_cmd_identifier_token1] = ACTIONS(2017), - [aux_sym_cmd_identifier_token2] = ACTIONS(2017), - [aux_sym_cmd_identifier_token3] = ACTIONS(2017), - [aux_sym_cmd_identifier_token4] = ACTIONS(2017), - [aux_sym_cmd_identifier_token5] = ACTIONS(2017), - [aux_sym_cmd_identifier_token6] = ACTIONS(2017), - [aux_sym_cmd_identifier_token7] = ACTIONS(2017), - [aux_sym_cmd_identifier_token8] = ACTIONS(2017), - [aux_sym_cmd_identifier_token9] = ACTIONS(2017), - [aux_sym_cmd_identifier_token10] = ACTIONS(2017), - [aux_sym_cmd_identifier_token11] = ACTIONS(2017), - [aux_sym_cmd_identifier_token12] = ACTIONS(2017), - [aux_sym_cmd_identifier_token13] = ACTIONS(2017), - [aux_sym_cmd_identifier_token14] = ACTIONS(2017), - [aux_sym_cmd_identifier_token15] = ACTIONS(2017), - [aux_sym_cmd_identifier_token16] = ACTIONS(2017), - [aux_sym_cmd_identifier_token17] = ACTIONS(2017), - [aux_sym_cmd_identifier_token18] = ACTIONS(2017), - [aux_sym_cmd_identifier_token19] = ACTIONS(2017), - [aux_sym_cmd_identifier_token20] = ACTIONS(2017), - [aux_sym_cmd_identifier_token21] = ACTIONS(2017), - [aux_sym_cmd_identifier_token22] = ACTIONS(2017), - [aux_sym_cmd_identifier_token23] = ACTIONS(2017), - [aux_sym_cmd_identifier_token24] = ACTIONS(2017), - [aux_sym_cmd_identifier_token25] = ACTIONS(2017), - [aux_sym_cmd_identifier_token26] = ACTIONS(2017), - [aux_sym_cmd_identifier_token27] = ACTIONS(2017), - [aux_sym_cmd_identifier_token28] = ACTIONS(2017), - [aux_sym_cmd_identifier_token29] = ACTIONS(2017), - [aux_sym_cmd_identifier_token30] = ACTIONS(2017), - [aux_sym_cmd_identifier_token31] = ACTIONS(2017), - [aux_sym_cmd_identifier_token32] = ACTIONS(2017), - [aux_sym_cmd_identifier_token33] = ACTIONS(2017), - [aux_sym_cmd_identifier_token34] = ACTIONS(2017), - [aux_sym_cmd_identifier_token35] = ACTIONS(2017), - [aux_sym_cmd_identifier_token36] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [aux_sym_cmd_identifier_token38] = ACTIONS(2017), - [aux_sym_cmd_identifier_token39] = ACTIONS(2017), - [aux_sym_cmd_identifier_token40] = ACTIONS(2017), - [anon_sym_def] = ACTIONS(2017), - [anon_sym_export_DASHenv] = ACTIONS(2017), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_error] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_in] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_make] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_catch] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_source] = ACTIONS(2017), - [anon_sym_source_DASHenv] = ACTIONS(2017), - [anon_sym_register] = ACTIONS(2017), - [anon_sym_hide] = ACTIONS(2017), - [anon_sym_hide_DASHenv] = ACTIONS(2017), - [anon_sym_overlay] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [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), - [sym__entry_separator] = ACTIONS(2019), - [anon_sym_PLUS] = ACTIONS(2017), + [688] = { + [sym_comment] = STATE(688), + [anon_sym_export] = ACTIONS(2504), + [anon_sym_alias] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_let_DASHenv] = ACTIONS(2504), + [anon_sym_mut] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [aux_sym_cmd_identifier_token1] = ACTIONS(2504), + [aux_sym_cmd_identifier_token2] = ACTIONS(2504), + [aux_sym_cmd_identifier_token3] = ACTIONS(2504), + [aux_sym_cmd_identifier_token4] = ACTIONS(2504), + [aux_sym_cmd_identifier_token5] = ACTIONS(2504), + [aux_sym_cmd_identifier_token6] = ACTIONS(2504), + [aux_sym_cmd_identifier_token7] = ACTIONS(2504), + [aux_sym_cmd_identifier_token8] = ACTIONS(2504), + [aux_sym_cmd_identifier_token9] = ACTIONS(2504), + [aux_sym_cmd_identifier_token10] = ACTIONS(2504), + [aux_sym_cmd_identifier_token11] = ACTIONS(2504), + [aux_sym_cmd_identifier_token12] = ACTIONS(2504), + [aux_sym_cmd_identifier_token13] = ACTIONS(2504), + [aux_sym_cmd_identifier_token14] = ACTIONS(2504), + [aux_sym_cmd_identifier_token15] = ACTIONS(2504), + [aux_sym_cmd_identifier_token16] = ACTIONS(2504), + [aux_sym_cmd_identifier_token17] = ACTIONS(2504), + [aux_sym_cmd_identifier_token18] = ACTIONS(2504), + [aux_sym_cmd_identifier_token19] = ACTIONS(2504), + [aux_sym_cmd_identifier_token20] = ACTIONS(2504), + [aux_sym_cmd_identifier_token21] = ACTIONS(2504), + [aux_sym_cmd_identifier_token22] = ACTIONS(2504), + [aux_sym_cmd_identifier_token23] = ACTIONS(2504), + [aux_sym_cmd_identifier_token24] = ACTIONS(2504), + [aux_sym_cmd_identifier_token25] = ACTIONS(2504), + [aux_sym_cmd_identifier_token26] = ACTIONS(2504), + [aux_sym_cmd_identifier_token27] = ACTIONS(2504), + [aux_sym_cmd_identifier_token28] = ACTIONS(2504), + [aux_sym_cmd_identifier_token29] = ACTIONS(2504), + [aux_sym_cmd_identifier_token30] = ACTIONS(2504), + [aux_sym_cmd_identifier_token31] = ACTIONS(2504), + [aux_sym_cmd_identifier_token32] = ACTIONS(2504), + [aux_sym_cmd_identifier_token33] = ACTIONS(2504), + [aux_sym_cmd_identifier_token34] = ACTIONS(2504), + [aux_sym_cmd_identifier_token35] = ACTIONS(2504), + [aux_sym_cmd_identifier_token36] = ACTIONS(2504), + [aux_sym_cmd_identifier_token37] = ACTIONS(2504), + [aux_sym_cmd_identifier_token38] = ACTIONS(2504), + [aux_sym_cmd_identifier_token39] = ACTIONS(2504), + [aux_sym_cmd_identifier_token40] = ACTIONS(2504), + [anon_sym_def] = ACTIONS(2504), + [anon_sym_export_DASHenv] = ACTIONS(2504), + [anon_sym_extern] = ACTIONS(2504), + [anon_sym_module] = ACTIONS(2504), + [anon_sym_use] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_DOLLAR] = ACTIONS(2504), + [anon_sym_error] = ACTIONS(2504), + [anon_sym_DASH2] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_in2] = ACTIONS(2504), + [anon_sym_loop] = ACTIONS(2504), + [anon_sym_make] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_do] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2504), + [anon_sym_catch] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_source] = ACTIONS(2504), + [anon_sym_source_DASHenv] = ACTIONS(2504), + [anon_sym_register] = ACTIONS(2504), + [anon_sym_hide] = ACTIONS(2504), + [anon_sym_hide_DASHenv] = ACTIONS(2504), + [anon_sym_overlay] = ACTIONS(2504), + [anon_sym_as] = ACTIONS(2504), + [anon_sym_PLUS2] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2504), + [aux_sym__val_number_decimal_token1] = ACTIONS(2504), + [aux_sym__val_number_decimal_token2] = ACTIONS(2504), + [aux_sym__val_number_decimal_token3] = ACTIONS(2504), + [aux_sym__val_number_decimal_token4] = ACTIONS(2504), + [aux_sym__val_number_token1] = ACTIONS(2504), + [aux_sym__val_number_token2] = ACTIONS(2504), + [aux_sym__val_number_token3] = ACTIONS(2504), + [aux_sym__val_number_token4] = ACTIONS(2504), + [aux_sym__val_number_token5] = ACTIONS(2504), + [aux_sym__val_number_token6] = ACTIONS(2504), + [anon_sym_DQUOTE] = ACTIONS(2504), + [sym__str_single_quotes] = ACTIONS(2504), + [sym__str_back_ticks] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2504), + [sym__entry_separator] = ACTIONS(2506), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2019), + [sym_raw_string_begin] = ACTIONS(2506), }, - [578] = { - [sym_comment] = STATE(578), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_alias] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_let_DASHenv] = ACTIONS(2470), - [anon_sym_mut] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [aux_sym_cmd_identifier_token1] = ACTIONS(2470), - [aux_sym_cmd_identifier_token2] = ACTIONS(2470), - [aux_sym_cmd_identifier_token3] = ACTIONS(2470), - [aux_sym_cmd_identifier_token4] = ACTIONS(2470), - [aux_sym_cmd_identifier_token5] = ACTIONS(2470), - [aux_sym_cmd_identifier_token6] = ACTIONS(2470), - [aux_sym_cmd_identifier_token7] = ACTIONS(2470), - [aux_sym_cmd_identifier_token8] = ACTIONS(2470), - [aux_sym_cmd_identifier_token9] = ACTIONS(2470), - [aux_sym_cmd_identifier_token10] = ACTIONS(2470), - [aux_sym_cmd_identifier_token11] = ACTIONS(2470), - [aux_sym_cmd_identifier_token12] = ACTIONS(2470), - [aux_sym_cmd_identifier_token13] = ACTIONS(2470), - [aux_sym_cmd_identifier_token14] = ACTIONS(2470), - [aux_sym_cmd_identifier_token15] = ACTIONS(2470), - [aux_sym_cmd_identifier_token16] = ACTIONS(2470), - [aux_sym_cmd_identifier_token17] = ACTIONS(2470), - [aux_sym_cmd_identifier_token18] = ACTIONS(2470), - [aux_sym_cmd_identifier_token19] = ACTIONS(2470), - [aux_sym_cmd_identifier_token20] = ACTIONS(2470), - [aux_sym_cmd_identifier_token21] = ACTIONS(2470), - [aux_sym_cmd_identifier_token22] = ACTIONS(2470), - [aux_sym_cmd_identifier_token23] = ACTIONS(2470), - [aux_sym_cmd_identifier_token24] = ACTIONS(2470), - [aux_sym_cmd_identifier_token25] = ACTIONS(2470), - [aux_sym_cmd_identifier_token26] = ACTIONS(2470), - [aux_sym_cmd_identifier_token27] = ACTIONS(2470), - [aux_sym_cmd_identifier_token28] = ACTIONS(2470), - [aux_sym_cmd_identifier_token29] = ACTIONS(2470), - [aux_sym_cmd_identifier_token30] = ACTIONS(2470), - [aux_sym_cmd_identifier_token31] = ACTIONS(2470), - [aux_sym_cmd_identifier_token32] = ACTIONS(2470), - [aux_sym_cmd_identifier_token33] = ACTIONS(2470), - [aux_sym_cmd_identifier_token34] = ACTIONS(2470), - [aux_sym_cmd_identifier_token35] = ACTIONS(2470), - [aux_sym_cmd_identifier_token36] = ACTIONS(2470), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_null] = ACTIONS(2470), - [aux_sym_cmd_identifier_token38] = ACTIONS(2470), - [aux_sym_cmd_identifier_token39] = ACTIONS(2470), - [aux_sym_cmd_identifier_token40] = ACTIONS(2470), - [anon_sym_def] = ACTIONS(2470), - [anon_sym_export_DASHenv] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_use] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2470), - [anon_sym_DOLLAR] = ACTIONS(2470), - [anon_sym_error] = ACTIONS(2470), - [anon_sym_list] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_in] = ACTIONS(2470), - [anon_sym_loop] = ACTIONS(2470), - [anon_sym_make] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_RBRACE] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_catch] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_source] = ACTIONS(2470), - [anon_sym_source_DASHenv] = ACTIONS(2470), - [anon_sym_register] = ACTIONS(2470), - [anon_sym_hide] = ACTIONS(2470), - [anon_sym_hide_DASHenv] = ACTIONS(2470), - [anon_sym_overlay] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_as] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2470), - [aux_sym__val_number_decimal_token1] = ACTIONS(2470), - [aux_sym__val_number_decimal_token2] = ACTIONS(2470), - [aux_sym__val_number_decimal_token3] = ACTIONS(2470), - [aux_sym__val_number_decimal_token4] = ACTIONS(2470), - [aux_sym__val_number_token1] = ACTIONS(2470), - [aux_sym__val_number_token2] = ACTIONS(2470), - [aux_sym__val_number_token3] = ACTIONS(2470), - [anon_sym_DQUOTE] = ACTIONS(2470), - [sym__str_single_quotes] = ACTIONS(2470), - [sym__str_back_ticks] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2470), - [sym__entry_separator] = ACTIONS(2472), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2472), + [689] = { + [sym_comment] = STATE(689), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1008), + [aux_sym_cmd_identifier_token3] = ACTIONS(1008), + [aux_sym_cmd_identifier_token4] = ACTIONS(1008), + [aux_sym_cmd_identifier_token5] = ACTIONS(1008), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [aux_sym_cmd_identifier_token7] = ACTIONS(1008), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1008), + [aux_sym_cmd_identifier_token11] = ACTIONS(1008), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1008), + [aux_sym_cmd_identifier_token17] = ACTIONS(1008), + [aux_sym_cmd_identifier_token18] = ACTIONS(1008), + [aux_sym_cmd_identifier_token19] = ACTIONS(1008), + [aux_sym_cmd_identifier_token20] = ACTIONS(1008), + [aux_sym_cmd_identifier_token21] = ACTIONS(1008), + [aux_sym_cmd_identifier_token22] = ACTIONS(1008), + [aux_sym_cmd_identifier_token23] = ACTIONS(1008), + [aux_sym_cmd_identifier_token24] = ACTIONS(1008), + [aux_sym_cmd_identifier_token25] = ACTIONS(1008), + [aux_sym_cmd_identifier_token26] = ACTIONS(1008), + [aux_sym_cmd_identifier_token27] = ACTIONS(1008), + [aux_sym_cmd_identifier_token28] = ACTIONS(1008), + [aux_sym_cmd_identifier_token29] = ACTIONS(1008), + [aux_sym_cmd_identifier_token30] = ACTIONS(1008), + [aux_sym_cmd_identifier_token31] = ACTIONS(1008), + [aux_sym_cmd_identifier_token32] = ACTIONS(1008), + [aux_sym_cmd_identifier_token33] = ACTIONS(1008), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1008), + [aux_sym_cmd_identifier_token36] = ACTIONS(1008), + [aux_sym_cmd_identifier_token37] = ACTIONS(1008), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1008), }, - [579] = { - [sym_comment] = STATE(579), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_alias] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_let_DASHenv] = ACTIONS(2196), - [anon_sym_mut] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [aux_sym_cmd_identifier_token1] = ACTIONS(2196), - [aux_sym_cmd_identifier_token2] = ACTIONS(2196), - [aux_sym_cmd_identifier_token3] = ACTIONS(2196), - [aux_sym_cmd_identifier_token4] = ACTIONS(2196), - [aux_sym_cmd_identifier_token5] = ACTIONS(2196), - [aux_sym_cmd_identifier_token6] = ACTIONS(2196), - [aux_sym_cmd_identifier_token7] = ACTIONS(2196), - [aux_sym_cmd_identifier_token8] = ACTIONS(2196), - [aux_sym_cmd_identifier_token9] = ACTIONS(2196), - [aux_sym_cmd_identifier_token10] = ACTIONS(2196), - [aux_sym_cmd_identifier_token11] = ACTIONS(2196), - [aux_sym_cmd_identifier_token12] = ACTIONS(2196), - [aux_sym_cmd_identifier_token13] = ACTIONS(2196), - [aux_sym_cmd_identifier_token14] = ACTIONS(2196), - [aux_sym_cmd_identifier_token15] = ACTIONS(2196), - [aux_sym_cmd_identifier_token16] = ACTIONS(2196), - [aux_sym_cmd_identifier_token17] = ACTIONS(2196), - [aux_sym_cmd_identifier_token18] = ACTIONS(2196), - [aux_sym_cmd_identifier_token19] = ACTIONS(2196), - [aux_sym_cmd_identifier_token20] = ACTIONS(2196), - [aux_sym_cmd_identifier_token21] = ACTIONS(2196), - [aux_sym_cmd_identifier_token22] = ACTIONS(2196), - [aux_sym_cmd_identifier_token23] = ACTIONS(2196), - [aux_sym_cmd_identifier_token24] = ACTIONS(2196), - [aux_sym_cmd_identifier_token25] = ACTIONS(2196), - [aux_sym_cmd_identifier_token26] = ACTIONS(2196), - [aux_sym_cmd_identifier_token27] = ACTIONS(2196), - [aux_sym_cmd_identifier_token28] = ACTIONS(2196), - [aux_sym_cmd_identifier_token29] = ACTIONS(2196), - [aux_sym_cmd_identifier_token30] = ACTIONS(2196), - [aux_sym_cmd_identifier_token31] = ACTIONS(2196), - [aux_sym_cmd_identifier_token32] = ACTIONS(2196), - [aux_sym_cmd_identifier_token33] = ACTIONS(2196), - [aux_sym_cmd_identifier_token34] = ACTIONS(2196), - [aux_sym_cmd_identifier_token35] = ACTIONS(2196), - [aux_sym_cmd_identifier_token36] = ACTIONS(2196), - [anon_sym_true] = ACTIONS(2196), - [anon_sym_false] = ACTIONS(2196), - [anon_sym_null] = ACTIONS(2196), - [aux_sym_cmd_identifier_token38] = ACTIONS(2196), - [aux_sym_cmd_identifier_token39] = ACTIONS(2196), - [aux_sym_cmd_identifier_token40] = ACTIONS(2196), - [anon_sym_def] = ACTIONS(2196), - [anon_sym_export_DASHenv] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_error] = ACTIONS(2196), - [anon_sym_list] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_make] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_catch] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_source] = ACTIONS(2196), - [anon_sym_source_DASHenv] = ACTIONS(2196), - [anon_sym_register] = ACTIONS(2196), - [anon_sym_hide] = ACTIONS(2196), - [anon_sym_hide_DASHenv] = ACTIONS(2196), - [anon_sym_overlay] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2196), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2196), - [aux_sym__val_number_decimal_token3] = ACTIONS(2196), - [aux_sym__val_number_decimal_token4] = ACTIONS(2196), - [aux_sym__val_number_token1] = ACTIONS(2196), - [aux_sym__val_number_token2] = ACTIONS(2196), - [aux_sym__val_number_token3] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2196), - [sym__str_single_quotes] = ACTIONS(2196), - [sym__str_back_ticks] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2196), - [sym__entry_separator] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2196), + [690] = { + [sym_comment] = STATE(690), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_alias] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_let_DASHenv] = ACTIONS(2129), + [anon_sym_mut] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [aux_sym_cmd_identifier_token1] = ACTIONS(2129), + [aux_sym_cmd_identifier_token2] = ACTIONS(2129), + [aux_sym_cmd_identifier_token3] = ACTIONS(2129), + [aux_sym_cmd_identifier_token4] = ACTIONS(2129), + [aux_sym_cmd_identifier_token5] = ACTIONS(2129), + [aux_sym_cmd_identifier_token6] = ACTIONS(2129), + [aux_sym_cmd_identifier_token7] = ACTIONS(2129), + [aux_sym_cmd_identifier_token8] = ACTIONS(2129), + [aux_sym_cmd_identifier_token9] = ACTIONS(2129), + [aux_sym_cmd_identifier_token10] = ACTIONS(2129), + [aux_sym_cmd_identifier_token11] = ACTIONS(2129), + [aux_sym_cmd_identifier_token12] = ACTIONS(2129), + [aux_sym_cmd_identifier_token13] = ACTIONS(2129), + [aux_sym_cmd_identifier_token14] = ACTIONS(2129), + [aux_sym_cmd_identifier_token15] = ACTIONS(2129), + [aux_sym_cmd_identifier_token16] = ACTIONS(2129), + [aux_sym_cmd_identifier_token17] = ACTIONS(2129), + [aux_sym_cmd_identifier_token18] = ACTIONS(2129), + [aux_sym_cmd_identifier_token19] = ACTIONS(2129), + [aux_sym_cmd_identifier_token20] = ACTIONS(2129), + [aux_sym_cmd_identifier_token21] = ACTIONS(2129), + [aux_sym_cmd_identifier_token22] = ACTIONS(2129), + [aux_sym_cmd_identifier_token23] = ACTIONS(2129), + [aux_sym_cmd_identifier_token24] = ACTIONS(2129), + [aux_sym_cmd_identifier_token25] = ACTIONS(2129), + [aux_sym_cmd_identifier_token26] = ACTIONS(2129), + [aux_sym_cmd_identifier_token27] = ACTIONS(2129), + [aux_sym_cmd_identifier_token28] = ACTIONS(2129), + [aux_sym_cmd_identifier_token29] = ACTIONS(2129), + [aux_sym_cmd_identifier_token30] = ACTIONS(2129), + [aux_sym_cmd_identifier_token31] = ACTIONS(2129), + [aux_sym_cmd_identifier_token32] = ACTIONS(2129), + [aux_sym_cmd_identifier_token33] = ACTIONS(2129), + [aux_sym_cmd_identifier_token34] = ACTIONS(2129), + [aux_sym_cmd_identifier_token35] = ACTIONS(2129), + [aux_sym_cmd_identifier_token36] = ACTIONS(2129), + [aux_sym_cmd_identifier_token37] = ACTIONS(2129), + [aux_sym_cmd_identifier_token38] = ACTIONS(2129), + [aux_sym_cmd_identifier_token39] = ACTIONS(2129), + [aux_sym_cmd_identifier_token40] = ACTIONS(2129), + [anon_sym_def] = ACTIONS(2129), + [anon_sym_export_DASHenv] = ACTIONS(2129), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_module] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_DOLLAR] = ACTIONS(2129), + [anon_sym_error] = ACTIONS(2129), + [anon_sym_DASH2] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_in2] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_make] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_else] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_catch] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_source] = ACTIONS(2129), + [anon_sym_source_DASHenv] = ACTIONS(2129), + [anon_sym_register] = ACTIONS(2129), + [anon_sym_hide] = ACTIONS(2129), + [anon_sym_hide_DASHenv] = ACTIONS(2129), + [anon_sym_overlay] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_PLUS2] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2129), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2129), + [aux_sym__val_number_decimal_token3] = ACTIONS(2129), + [aux_sym__val_number_decimal_token4] = ACTIONS(2129), + [aux_sym__val_number_token1] = ACTIONS(2129), + [aux_sym__val_number_token2] = ACTIONS(2129), + [aux_sym__val_number_token3] = ACTIONS(2129), + [aux_sym__val_number_token4] = ACTIONS(2129), + [aux_sym__val_number_token5] = ACTIONS(2129), + [aux_sym__val_number_token6] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2129), + [sym__str_single_quotes] = ACTIONS(2129), + [sym__str_back_ticks] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2129), + [sym__entry_separator] = ACTIONS(2131), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2198), + [sym_raw_string_begin] = ACTIONS(2131), }, - [580] = { - [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_alias] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_let_DASHenv] = ACTIONS(2474), - [anon_sym_mut] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [aux_sym_cmd_identifier_token1] = ACTIONS(2474), - [aux_sym_cmd_identifier_token2] = ACTIONS(2474), - [aux_sym_cmd_identifier_token3] = ACTIONS(2474), - [aux_sym_cmd_identifier_token4] = ACTIONS(2474), - [aux_sym_cmd_identifier_token5] = ACTIONS(2474), - [aux_sym_cmd_identifier_token6] = ACTIONS(2474), - [aux_sym_cmd_identifier_token7] = ACTIONS(2474), - [aux_sym_cmd_identifier_token8] = ACTIONS(2474), - [aux_sym_cmd_identifier_token9] = ACTIONS(2474), - [aux_sym_cmd_identifier_token10] = ACTIONS(2474), - [aux_sym_cmd_identifier_token11] = ACTIONS(2474), - [aux_sym_cmd_identifier_token12] = ACTIONS(2474), - [aux_sym_cmd_identifier_token13] = ACTIONS(2474), - [aux_sym_cmd_identifier_token14] = ACTIONS(2474), - [aux_sym_cmd_identifier_token15] = ACTIONS(2474), - [aux_sym_cmd_identifier_token16] = ACTIONS(2474), - [aux_sym_cmd_identifier_token17] = ACTIONS(2474), - [aux_sym_cmd_identifier_token18] = ACTIONS(2474), - [aux_sym_cmd_identifier_token19] = ACTIONS(2474), - [aux_sym_cmd_identifier_token20] = ACTIONS(2474), - [aux_sym_cmd_identifier_token21] = ACTIONS(2474), - [aux_sym_cmd_identifier_token22] = ACTIONS(2474), - [aux_sym_cmd_identifier_token23] = ACTIONS(2474), - [aux_sym_cmd_identifier_token24] = ACTIONS(2474), - [aux_sym_cmd_identifier_token25] = ACTIONS(2474), - [aux_sym_cmd_identifier_token26] = ACTIONS(2474), - [aux_sym_cmd_identifier_token27] = ACTIONS(2474), - [aux_sym_cmd_identifier_token28] = ACTIONS(2474), - [aux_sym_cmd_identifier_token29] = ACTIONS(2474), - [aux_sym_cmd_identifier_token30] = ACTIONS(2474), - [aux_sym_cmd_identifier_token31] = ACTIONS(2474), - [aux_sym_cmd_identifier_token32] = ACTIONS(2474), - [aux_sym_cmd_identifier_token33] = ACTIONS(2474), - [aux_sym_cmd_identifier_token34] = ACTIONS(2474), - [aux_sym_cmd_identifier_token35] = ACTIONS(2474), - [aux_sym_cmd_identifier_token36] = ACTIONS(2474), - [anon_sym_true] = ACTIONS(2474), - [anon_sym_false] = ACTIONS(2474), - [anon_sym_null] = ACTIONS(2474), - [aux_sym_cmd_identifier_token38] = ACTIONS(2474), - [aux_sym_cmd_identifier_token39] = ACTIONS(2474), - [aux_sym_cmd_identifier_token40] = ACTIONS(2474), - [anon_sym_def] = ACTIONS(2474), - [anon_sym_export_DASHenv] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_use] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_DOLLAR] = ACTIONS(2474), - [anon_sym_error] = ACTIONS(2474), - [anon_sym_list] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_in] = ACTIONS(2474), - [anon_sym_loop] = ACTIONS(2474), - [anon_sym_make] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_match] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_catch] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_source] = ACTIONS(2474), - [anon_sym_source_DASHenv] = ACTIONS(2474), - [anon_sym_register] = ACTIONS(2474), - [anon_sym_hide] = ACTIONS(2474), - [anon_sym_hide_DASHenv] = ACTIONS(2474), - [anon_sym_overlay] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_as] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2474), - [aux_sym__val_number_decimal_token1] = ACTIONS(2474), - [aux_sym__val_number_decimal_token2] = ACTIONS(2474), - [aux_sym__val_number_decimal_token3] = ACTIONS(2474), - [aux_sym__val_number_decimal_token4] = ACTIONS(2474), - [aux_sym__val_number_token1] = ACTIONS(2474), - [aux_sym__val_number_token2] = ACTIONS(2474), - [aux_sym__val_number_token3] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(2474), - [sym__str_single_quotes] = ACTIONS(2474), - [sym__str_back_ticks] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2474), - [sym__entry_separator] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2474), + [691] = { + [sym_comment] = STATE(691), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_alias] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_let_DASHenv] = ACTIONS(2183), + [anon_sym_mut] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [aux_sym_cmd_identifier_token1] = ACTIONS(2183), + [aux_sym_cmd_identifier_token2] = ACTIONS(2183), + [aux_sym_cmd_identifier_token3] = ACTIONS(2183), + [aux_sym_cmd_identifier_token4] = ACTIONS(2183), + [aux_sym_cmd_identifier_token5] = ACTIONS(2183), + [aux_sym_cmd_identifier_token6] = ACTIONS(2183), + [aux_sym_cmd_identifier_token7] = ACTIONS(2183), + [aux_sym_cmd_identifier_token8] = ACTIONS(2183), + [aux_sym_cmd_identifier_token9] = ACTIONS(2183), + [aux_sym_cmd_identifier_token10] = ACTIONS(2183), + [aux_sym_cmd_identifier_token11] = ACTIONS(2183), + [aux_sym_cmd_identifier_token12] = ACTIONS(2183), + [aux_sym_cmd_identifier_token13] = ACTIONS(2183), + [aux_sym_cmd_identifier_token14] = ACTIONS(2183), + [aux_sym_cmd_identifier_token15] = ACTIONS(2183), + [aux_sym_cmd_identifier_token16] = ACTIONS(2183), + [aux_sym_cmd_identifier_token17] = ACTIONS(2183), + [aux_sym_cmd_identifier_token18] = ACTIONS(2183), + [aux_sym_cmd_identifier_token19] = ACTIONS(2183), + [aux_sym_cmd_identifier_token20] = ACTIONS(2183), + [aux_sym_cmd_identifier_token21] = ACTIONS(2183), + [aux_sym_cmd_identifier_token22] = ACTIONS(2183), + [aux_sym_cmd_identifier_token23] = ACTIONS(2183), + [aux_sym_cmd_identifier_token24] = ACTIONS(2183), + [aux_sym_cmd_identifier_token25] = ACTIONS(2183), + [aux_sym_cmd_identifier_token26] = ACTIONS(2183), + [aux_sym_cmd_identifier_token27] = ACTIONS(2183), + [aux_sym_cmd_identifier_token28] = ACTIONS(2183), + [aux_sym_cmd_identifier_token29] = ACTIONS(2183), + [aux_sym_cmd_identifier_token30] = ACTIONS(2183), + [aux_sym_cmd_identifier_token31] = ACTIONS(2183), + [aux_sym_cmd_identifier_token32] = ACTIONS(2183), + [aux_sym_cmd_identifier_token33] = ACTIONS(2183), + [aux_sym_cmd_identifier_token34] = ACTIONS(2183), + [aux_sym_cmd_identifier_token35] = ACTIONS(2183), + [aux_sym_cmd_identifier_token36] = ACTIONS(2183), + [aux_sym_cmd_identifier_token37] = ACTIONS(2183), + [aux_sym_cmd_identifier_token38] = ACTIONS(2183), + [aux_sym_cmd_identifier_token39] = ACTIONS(2183), + [aux_sym_cmd_identifier_token40] = ACTIONS(2183), + [anon_sym_def] = ACTIONS(2183), + [anon_sym_export_DASHenv] = ACTIONS(2183), + [anon_sym_extern] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_use] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2183), + [anon_sym_error] = ACTIONS(2183), + [anon_sym_DASH2] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_in2] = ACTIONS(2183), + [anon_sym_loop] = ACTIONS(2183), + [anon_sym_make] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_catch] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_source] = ACTIONS(2183), + [anon_sym_source_DASHenv] = ACTIONS(2183), + [anon_sym_register] = ACTIONS(2183), + [anon_sym_hide] = ACTIONS(2183), + [anon_sym_hide_DASHenv] = ACTIONS(2183), + [anon_sym_overlay] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_PLUS2] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2183), + [aux_sym__val_number_decimal_token1] = ACTIONS(2183), + [aux_sym__val_number_decimal_token2] = ACTIONS(2183), + [aux_sym__val_number_decimal_token3] = ACTIONS(2183), + [aux_sym__val_number_decimal_token4] = ACTIONS(2183), + [aux_sym__val_number_token1] = ACTIONS(2183), + [aux_sym__val_number_token2] = ACTIONS(2183), + [aux_sym__val_number_token3] = ACTIONS(2183), + [aux_sym__val_number_token4] = ACTIONS(2183), + [aux_sym__val_number_token5] = ACTIONS(2183), + [aux_sym__val_number_token6] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [sym__str_single_quotes] = ACTIONS(2183), + [sym__str_back_ticks] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2183), + [sym__entry_separator] = ACTIONS(2185), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2476), + [sym_raw_string_begin] = ACTIONS(2185), }, - [581] = { - [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_alias] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_let_DASHenv] = ACTIONS(2478), - [anon_sym_mut] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [aux_sym_cmd_identifier_token1] = ACTIONS(2478), - [aux_sym_cmd_identifier_token2] = ACTIONS(2478), - [aux_sym_cmd_identifier_token3] = ACTIONS(2478), - [aux_sym_cmd_identifier_token4] = ACTIONS(2478), - [aux_sym_cmd_identifier_token5] = ACTIONS(2478), - [aux_sym_cmd_identifier_token6] = ACTIONS(2478), - [aux_sym_cmd_identifier_token7] = ACTIONS(2478), - [aux_sym_cmd_identifier_token8] = ACTIONS(2478), - [aux_sym_cmd_identifier_token9] = ACTIONS(2478), - [aux_sym_cmd_identifier_token10] = ACTIONS(2478), - [aux_sym_cmd_identifier_token11] = ACTIONS(2478), - [aux_sym_cmd_identifier_token12] = ACTIONS(2478), - [aux_sym_cmd_identifier_token13] = ACTIONS(2478), - [aux_sym_cmd_identifier_token14] = ACTIONS(2478), - [aux_sym_cmd_identifier_token15] = ACTIONS(2478), - [aux_sym_cmd_identifier_token16] = ACTIONS(2478), - [aux_sym_cmd_identifier_token17] = ACTIONS(2478), - [aux_sym_cmd_identifier_token18] = ACTIONS(2478), - [aux_sym_cmd_identifier_token19] = ACTIONS(2478), - [aux_sym_cmd_identifier_token20] = ACTIONS(2478), - [aux_sym_cmd_identifier_token21] = ACTIONS(2478), - [aux_sym_cmd_identifier_token22] = ACTIONS(2478), - [aux_sym_cmd_identifier_token23] = ACTIONS(2478), - [aux_sym_cmd_identifier_token24] = ACTIONS(2478), - [aux_sym_cmd_identifier_token25] = ACTIONS(2478), - [aux_sym_cmd_identifier_token26] = ACTIONS(2478), - [aux_sym_cmd_identifier_token27] = ACTIONS(2478), - [aux_sym_cmd_identifier_token28] = ACTIONS(2478), - [aux_sym_cmd_identifier_token29] = ACTIONS(2478), - [aux_sym_cmd_identifier_token30] = ACTIONS(2478), - [aux_sym_cmd_identifier_token31] = ACTIONS(2478), - [aux_sym_cmd_identifier_token32] = ACTIONS(2478), - [aux_sym_cmd_identifier_token33] = ACTIONS(2478), - [aux_sym_cmd_identifier_token34] = ACTIONS(2478), - [aux_sym_cmd_identifier_token35] = ACTIONS(2478), - [aux_sym_cmd_identifier_token36] = ACTIONS(2478), - [anon_sym_true] = ACTIONS(2478), - [anon_sym_false] = ACTIONS(2478), - [anon_sym_null] = ACTIONS(2478), - [aux_sym_cmd_identifier_token38] = ACTIONS(2478), - [aux_sym_cmd_identifier_token39] = ACTIONS(2478), - [aux_sym_cmd_identifier_token40] = ACTIONS(2478), - [anon_sym_def] = ACTIONS(2478), - [anon_sym_export_DASHenv] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_use] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_DOLLAR] = ACTIONS(2478), - [anon_sym_error] = ACTIONS(2478), - [anon_sym_list] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2478), - [anon_sym_loop] = ACTIONS(2478), - [anon_sym_make] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_match] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_source] = ACTIONS(2478), - [anon_sym_source_DASHenv] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_hide] = ACTIONS(2478), - [anon_sym_hide_DASHenv] = ACTIONS(2478), - [anon_sym_overlay] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2478), - [aux_sym__val_number_decimal_token1] = ACTIONS(2478), - [aux_sym__val_number_decimal_token2] = ACTIONS(2478), - [aux_sym__val_number_decimal_token3] = ACTIONS(2478), - [aux_sym__val_number_decimal_token4] = ACTIONS(2478), - [aux_sym__val_number_token1] = ACTIONS(2478), - [aux_sym__val_number_token2] = ACTIONS(2478), - [aux_sym__val_number_token3] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(2478), - [sym__str_single_quotes] = ACTIONS(2478), - [sym__str_back_ticks] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2478), - [sym__entry_separator] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2478), + [692] = { + [sym_comment] = STATE(692), + [anon_sym_export] = ACTIONS(2508), + [anon_sym_alias] = ACTIONS(2508), + [anon_sym_let] = ACTIONS(2508), + [anon_sym_let_DASHenv] = ACTIONS(2508), + [anon_sym_mut] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [aux_sym_cmd_identifier_token1] = ACTIONS(2508), + [aux_sym_cmd_identifier_token2] = ACTIONS(2508), + [aux_sym_cmd_identifier_token3] = ACTIONS(2508), + [aux_sym_cmd_identifier_token4] = ACTIONS(2508), + [aux_sym_cmd_identifier_token5] = ACTIONS(2508), + [aux_sym_cmd_identifier_token6] = ACTIONS(2508), + [aux_sym_cmd_identifier_token7] = ACTIONS(2508), + [aux_sym_cmd_identifier_token8] = ACTIONS(2508), + [aux_sym_cmd_identifier_token9] = ACTIONS(2508), + [aux_sym_cmd_identifier_token10] = ACTIONS(2508), + [aux_sym_cmd_identifier_token11] = ACTIONS(2508), + [aux_sym_cmd_identifier_token12] = ACTIONS(2508), + [aux_sym_cmd_identifier_token13] = ACTIONS(2508), + [aux_sym_cmd_identifier_token14] = ACTIONS(2508), + [aux_sym_cmd_identifier_token15] = ACTIONS(2508), + [aux_sym_cmd_identifier_token16] = ACTIONS(2508), + [aux_sym_cmd_identifier_token17] = ACTIONS(2508), + [aux_sym_cmd_identifier_token18] = ACTIONS(2508), + [aux_sym_cmd_identifier_token19] = ACTIONS(2508), + [aux_sym_cmd_identifier_token20] = ACTIONS(2508), + [aux_sym_cmd_identifier_token21] = ACTIONS(2508), + [aux_sym_cmd_identifier_token22] = ACTIONS(2508), + [aux_sym_cmd_identifier_token23] = ACTIONS(2508), + [aux_sym_cmd_identifier_token24] = ACTIONS(2508), + [aux_sym_cmd_identifier_token25] = ACTIONS(2508), + [aux_sym_cmd_identifier_token26] = ACTIONS(2508), + [aux_sym_cmd_identifier_token27] = ACTIONS(2508), + [aux_sym_cmd_identifier_token28] = ACTIONS(2508), + [aux_sym_cmd_identifier_token29] = ACTIONS(2508), + [aux_sym_cmd_identifier_token30] = ACTIONS(2508), + [aux_sym_cmd_identifier_token31] = ACTIONS(2508), + [aux_sym_cmd_identifier_token32] = ACTIONS(2508), + [aux_sym_cmd_identifier_token33] = ACTIONS(2508), + [aux_sym_cmd_identifier_token34] = ACTIONS(2508), + [aux_sym_cmd_identifier_token35] = ACTIONS(2508), + [aux_sym_cmd_identifier_token36] = ACTIONS(2508), + [aux_sym_cmd_identifier_token37] = ACTIONS(2508), + [aux_sym_cmd_identifier_token38] = ACTIONS(2508), + [aux_sym_cmd_identifier_token39] = ACTIONS(2508), + [aux_sym_cmd_identifier_token40] = ACTIONS(2508), + [anon_sym_def] = ACTIONS(2508), + [anon_sym_export_DASHenv] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym_module] = ACTIONS(2508), + [anon_sym_use] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_DOLLAR] = ACTIONS(2508), + [anon_sym_error] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_in2] = ACTIONS(2508), + [anon_sym_loop] = ACTIONS(2508), + [anon_sym_make] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_match] = ACTIONS(2508), + [anon_sym_RBRACE] = ACTIONS(2508), + [anon_sym_try] = ACTIONS(2508), + [anon_sym_catch] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_source] = ACTIONS(2508), + [anon_sym_source_DASHenv] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_hide] = ACTIONS(2508), + [anon_sym_hide_DASHenv] = ACTIONS(2508), + [anon_sym_overlay] = ACTIONS(2508), + [anon_sym_as] = ACTIONS(2508), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2508), + [aux_sym__val_number_decimal_token1] = ACTIONS(2508), + [aux_sym__val_number_decimal_token2] = ACTIONS(2508), + [aux_sym__val_number_decimal_token3] = ACTIONS(2508), + [aux_sym__val_number_decimal_token4] = ACTIONS(2508), + [aux_sym__val_number_token1] = ACTIONS(2508), + [aux_sym__val_number_token2] = ACTIONS(2508), + [aux_sym__val_number_token3] = ACTIONS(2508), + [aux_sym__val_number_token4] = ACTIONS(2508), + [aux_sym__val_number_token5] = ACTIONS(2508), + [aux_sym__val_number_token6] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2508), + [sym__str_single_quotes] = ACTIONS(2508), + [sym__str_back_ticks] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2508), + [sym__entry_separator] = ACTIONS(2510), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2480), + [sym_raw_string_begin] = ACTIONS(2510), }, - [582] = { - [sym_comment] = STATE(582), - [anon_sym_export] = ACTIONS(2063), - [anon_sym_alias] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_let_DASHenv] = ACTIONS(2063), - [anon_sym_mut] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2063), - [aux_sym_cmd_identifier_token1] = ACTIONS(2063), - [aux_sym_cmd_identifier_token2] = ACTIONS(2063), - [aux_sym_cmd_identifier_token3] = ACTIONS(2063), - [aux_sym_cmd_identifier_token4] = ACTIONS(2063), - [aux_sym_cmd_identifier_token5] = ACTIONS(2063), - [aux_sym_cmd_identifier_token6] = ACTIONS(2063), - [aux_sym_cmd_identifier_token7] = ACTIONS(2063), - [aux_sym_cmd_identifier_token8] = ACTIONS(2063), - [aux_sym_cmd_identifier_token9] = ACTIONS(2063), - [aux_sym_cmd_identifier_token10] = ACTIONS(2063), - [aux_sym_cmd_identifier_token11] = ACTIONS(2063), - [aux_sym_cmd_identifier_token12] = ACTIONS(2063), - [aux_sym_cmd_identifier_token13] = ACTIONS(2063), - [aux_sym_cmd_identifier_token14] = ACTIONS(2063), - [aux_sym_cmd_identifier_token15] = ACTIONS(2063), - [aux_sym_cmd_identifier_token16] = ACTIONS(2063), - [aux_sym_cmd_identifier_token17] = ACTIONS(2063), - [aux_sym_cmd_identifier_token18] = ACTIONS(2063), - [aux_sym_cmd_identifier_token19] = ACTIONS(2063), - [aux_sym_cmd_identifier_token20] = ACTIONS(2063), - [aux_sym_cmd_identifier_token21] = ACTIONS(2063), - [aux_sym_cmd_identifier_token22] = ACTIONS(2063), - [aux_sym_cmd_identifier_token23] = ACTIONS(2063), - [aux_sym_cmd_identifier_token24] = ACTIONS(2063), - [aux_sym_cmd_identifier_token25] = ACTIONS(2063), - [aux_sym_cmd_identifier_token26] = ACTIONS(2063), - [aux_sym_cmd_identifier_token27] = ACTIONS(2063), - [aux_sym_cmd_identifier_token28] = ACTIONS(2063), - [aux_sym_cmd_identifier_token29] = ACTIONS(2063), - [aux_sym_cmd_identifier_token30] = ACTIONS(2063), - [aux_sym_cmd_identifier_token31] = ACTIONS(2063), - [aux_sym_cmd_identifier_token32] = ACTIONS(2063), - [aux_sym_cmd_identifier_token33] = ACTIONS(2063), - [aux_sym_cmd_identifier_token34] = ACTIONS(2063), - [aux_sym_cmd_identifier_token35] = ACTIONS(2063), - [aux_sym_cmd_identifier_token36] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2063), - [aux_sym_cmd_identifier_token38] = ACTIONS(2063), - [aux_sym_cmd_identifier_token39] = ACTIONS(2063), - [aux_sym_cmd_identifier_token40] = ACTIONS(2063), - [anon_sym_def] = ACTIONS(2063), - [anon_sym_export_DASHenv] = ACTIONS(2063), - [anon_sym_extern] = ACTIONS(2063), - [anon_sym_module] = ACTIONS(2063), - [anon_sym_use] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_DOLLAR] = ACTIONS(2063), - [anon_sym_error] = ACTIONS(2063), - [anon_sym_list] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_break] = ACTIONS(2063), - [anon_sym_continue] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2063), - [anon_sym_in] = ACTIONS(2063), - [anon_sym_loop] = ACTIONS(2063), - [anon_sym_make] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [anon_sym_do] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(2063), - [anon_sym_else] = ACTIONS(2063), - [anon_sym_match] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_try] = ACTIONS(2063), - [anon_sym_catch] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2063), - [anon_sym_source] = ACTIONS(2063), - [anon_sym_source_DASHenv] = ACTIONS(2063), - [anon_sym_register] = ACTIONS(2063), - [anon_sym_hide] = ACTIONS(2063), - [anon_sym_hide_DASHenv] = ACTIONS(2063), - [anon_sym_overlay] = ACTIONS(2063), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2063), - [aux_sym__val_number_decimal_token1] = ACTIONS(2063), - [aux_sym__val_number_decimal_token2] = ACTIONS(2063), - [aux_sym__val_number_decimal_token3] = ACTIONS(2063), - [aux_sym__val_number_decimal_token4] = ACTIONS(2063), - [aux_sym__val_number_token1] = ACTIONS(2063), - [aux_sym__val_number_token2] = ACTIONS(2063), - [aux_sym__val_number_token3] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(2063), - [sym__str_single_quotes] = ACTIONS(2063), - [sym__str_back_ticks] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2063), - [sym__entry_separator] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2063), + [693] = { + [sym_comment] = STATE(693), + [anon_sym_export] = ACTIONS(2512), + [anon_sym_alias] = ACTIONS(2512), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_let_DASHenv] = ACTIONS(2512), + [anon_sym_mut] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [aux_sym_cmd_identifier_token1] = ACTIONS(2512), + [aux_sym_cmd_identifier_token2] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2512), + [aux_sym_cmd_identifier_token4] = ACTIONS(2512), + [aux_sym_cmd_identifier_token5] = ACTIONS(2512), + [aux_sym_cmd_identifier_token6] = ACTIONS(2512), + [aux_sym_cmd_identifier_token7] = ACTIONS(2512), + [aux_sym_cmd_identifier_token8] = ACTIONS(2512), + [aux_sym_cmd_identifier_token9] = ACTIONS(2512), + [aux_sym_cmd_identifier_token10] = ACTIONS(2512), + [aux_sym_cmd_identifier_token11] = ACTIONS(2512), + [aux_sym_cmd_identifier_token12] = ACTIONS(2512), + [aux_sym_cmd_identifier_token13] = ACTIONS(2512), + [aux_sym_cmd_identifier_token14] = ACTIONS(2512), + [aux_sym_cmd_identifier_token15] = ACTIONS(2512), + [aux_sym_cmd_identifier_token16] = ACTIONS(2512), + [aux_sym_cmd_identifier_token17] = ACTIONS(2512), + [aux_sym_cmd_identifier_token18] = ACTIONS(2512), + [aux_sym_cmd_identifier_token19] = ACTIONS(2512), + [aux_sym_cmd_identifier_token20] = ACTIONS(2512), + [aux_sym_cmd_identifier_token21] = ACTIONS(2512), + [aux_sym_cmd_identifier_token22] = ACTIONS(2512), + [aux_sym_cmd_identifier_token23] = ACTIONS(2512), + [aux_sym_cmd_identifier_token24] = ACTIONS(2512), + [aux_sym_cmd_identifier_token25] = ACTIONS(2512), + [aux_sym_cmd_identifier_token26] = ACTIONS(2512), + [aux_sym_cmd_identifier_token27] = ACTIONS(2512), + [aux_sym_cmd_identifier_token28] = ACTIONS(2512), + [aux_sym_cmd_identifier_token29] = ACTIONS(2512), + [aux_sym_cmd_identifier_token30] = ACTIONS(2512), + [aux_sym_cmd_identifier_token31] = ACTIONS(2512), + [aux_sym_cmd_identifier_token32] = ACTIONS(2512), + [aux_sym_cmd_identifier_token33] = ACTIONS(2512), + [aux_sym_cmd_identifier_token34] = ACTIONS(2512), + [aux_sym_cmd_identifier_token35] = ACTIONS(2512), + [aux_sym_cmd_identifier_token36] = ACTIONS(2512), + [aux_sym_cmd_identifier_token37] = ACTIONS(2512), + [aux_sym_cmd_identifier_token38] = ACTIONS(2512), + [aux_sym_cmd_identifier_token39] = ACTIONS(2512), + [aux_sym_cmd_identifier_token40] = ACTIONS(2512), + [anon_sym_def] = ACTIONS(2512), + [anon_sym_export_DASHenv] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym_module] = ACTIONS(2512), + [anon_sym_use] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2512), + [anon_sym_DOLLAR] = ACTIONS(2512), + [anon_sym_error] = ACTIONS(2512), + [anon_sym_DASH2] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in2] = ACTIONS(2512), + [anon_sym_loop] = ACTIONS(2512), + [anon_sym_make] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_match] = ACTIONS(2512), + [anon_sym_RBRACE] = ACTIONS(2512), + [anon_sym_try] = ACTIONS(2512), + [anon_sym_catch] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_source] = ACTIONS(2512), + [anon_sym_source_DASHenv] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_hide] = ACTIONS(2512), + [anon_sym_hide_DASHenv] = ACTIONS(2512), + [anon_sym_overlay] = ACTIONS(2512), + [anon_sym_as] = ACTIONS(2512), + [anon_sym_PLUS2] = ACTIONS(2512), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2512), + [aux_sym__val_number_decimal_token1] = ACTIONS(2512), + [aux_sym__val_number_decimal_token2] = ACTIONS(2512), + [aux_sym__val_number_decimal_token3] = ACTIONS(2512), + [aux_sym__val_number_decimal_token4] = ACTIONS(2512), + [aux_sym__val_number_token1] = ACTIONS(2512), + [aux_sym__val_number_token2] = ACTIONS(2512), + [aux_sym__val_number_token3] = ACTIONS(2512), + [aux_sym__val_number_token4] = ACTIONS(2512), + [aux_sym__val_number_token5] = ACTIONS(2512), + [aux_sym__val_number_token6] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2512), + [sym__str_single_quotes] = ACTIONS(2512), + [sym__str_back_ticks] = ACTIONS(2512), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2512), + [sym__entry_separator] = ACTIONS(2514), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2065), + [sym_raw_string_begin] = ACTIONS(2514), }, - [583] = { - [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [anon_sym_null] = ACTIONS(1703), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1703), - [aux_sym_cmd_identifier_token40] = ACTIONS(1703), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [aux_sym__val_number_decimal_token2] = ACTIONS(1703), - [aux_sym__val_number_decimal_token3] = ACTIONS(1703), - [aux_sym__val_number_decimal_token4] = ACTIONS(1703), - [aux_sym__val_number_token1] = ACTIONS(1703), - [aux_sym__val_number_token2] = ACTIONS(1703), - [aux_sym__val_number_token3] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym__str_single_quotes] = ACTIONS(1703), - [sym__str_back_ticks] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), - [sym__entry_separator] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1705), + [694] = { + [sym_comment] = STATE(694), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, - [584] = { - [sym_comment] = STATE(584), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_alias] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_let_DASHenv] = ACTIONS(2482), - [anon_sym_mut] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [aux_sym_cmd_identifier_token1] = ACTIONS(2482), - [aux_sym_cmd_identifier_token2] = ACTIONS(2482), - [aux_sym_cmd_identifier_token3] = ACTIONS(2482), - [aux_sym_cmd_identifier_token4] = ACTIONS(2482), - [aux_sym_cmd_identifier_token5] = ACTIONS(2482), - [aux_sym_cmd_identifier_token6] = ACTIONS(2482), - [aux_sym_cmd_identifier_token7] = ACTIONS(2482), - [aux_sym_cmd_identifier_token8] = ACTIONS(2482), - [aux_sym_cmd_identifier_token9] = ACTIONS(2482), - [aux_sym_cmd_identifier_token10] = ACTIONS(2482), - [aux_sym_cmd_identifier_token11] = ACTIONS(2482), - [aux_sym_cmd_identifier_token12] = ACTIONS(2482), - [aux_sym_cmd_identifier_token13] = ACTIONS(2482), - [aux_sym_cmd_identifier_token14] = ACTIONS(2482), - [aux_sym_cmd_identifier_token15] = ACTIONS(2482), - [aux_sym_cmd_identifier_token16] = ACTIONS(2482), - [aux_sym_cmd_identifier_token17] = ACTIONS(2482), - [aux_sym_cmd_identifier_token18] = ACTIONS(2482), - [aux_sym_cmd_identifier_token19] = ACTIONS(2482), - [aux_sym_cmd_identifier_token20] = ACTIONS(2482), - [aux_sym_cmd_identifier_token21] = ACTIONS(2482), - [aux_sym_cmd_identifier_token22] = ACTIONS(2482), - [aux_sym_cmd_identifier_token23] = ACTIONS(2482), - [aux_sym_cmd_identifier_token24] = ACTIONS(2482), - [aux_sym_cmd_identifier_token25] = ACTIONS(2482), - [aux_sym_cmd_identifier_token26] = ACTIONS(2482), - [aux_sym_cmd_identifier_token27] = ACTIONS(2482), - [aux_sym_cmd_identifier_token28] = ACTIONS(2482), - [aux_sym_cmd_identifier_token29] = ACTIONS(2482), - [aux_sym_cmd_identifier_token30] = ACTIONS(2482), - [aux_sym_cmd_identifier_token31] = ACTIONS(2482), - [aux_sym_cmd_identifier_token32] = ACTIONS(2482), - [aux_sym_cmd_identifier_token33] = ACTIONS(2482), - [aux_sym_cmd_identifier_token34] = ACTIONS(2482), - [aux_sym_cmd_identifier_token35] = ACTIONS(2482), - [aux_sym_cmd_identifier_token36] = ACTIONS(2482), - [anon_sym_true] = ACTIONS(2482), - [anon_sym_false] = ACTIONS(2482), - [anon_sym_null] = ACTIONS(2482), - [aux_sym_cmd_identifier_token38] = ACTIONS(2482), - [aux_sym_cmd_identifier_token39] = ACTIONS(2482), - [aux_sym_cmd_identifier_token40] = ACTIONS(2482), - [anon_sym_def] = ACTIONS(2482), - [anon_sym_export_DASHenv] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_module] = ACTIONS(2482), - [anon_sym_use] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_DOLLAR] = ACTIONS(2482), - [anon_sym_error] = ACTIONS(2482), - [anon_sym_list] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_in] = ACTIONS(2482), - [anon_sym_loop] = ACTIONS(2482), - [anon_sym_make] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_do] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2482), - [anon_sym_match] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_catch] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_source] = ACTIONS(2482), - [anon_sym_source_DASHenv] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_hide] = ACTIONS(2482), - [anon_sym_hide_DASHenv] = ACTIONS(2482), - [anon_sym_overlay] = ACTIONS(2482), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_as] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2482), - [aux_sym__val_number_decimal_token1] = ACTIONS(2482), - [aux_sym__val_number_decimal_token2] = ACTIONS(2482), - [aux_sym__val_number_decimal_token3] = ACTIONS(2482), - [aux_sym__val_number_decimal_token4] = ACTIONS(2482), - [aux_sym__val_number_token1] = ACTIONS(2482), - [aux_sym__val_number_token2] = ACTIONS(2482), - [aux_sym__val_number_token3] = ACTIONS(2482), - [anon_sym_DQUOTE] = ACTIONS(2482), - [sym__str_single_quotes] = ACTIONS(2482), - [sym__str_back_ticks] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2482), - [sym__entry_separator] = ACTIONS(2484), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2484), - }, - [585] = { - [sym_comment] = STATE(585), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_alias] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_let_DASHenv] = ACTIONS(2200), - [anon_sym_mut] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [aux_sym_cmd_identifier_token1] = ACTIONS(2200), - [aux_sym_cmd_identifier_token2] = ACTIONS(2200), - [aux_sym_cmd_identifier_token3] = ACTIONS(2200), - [aux_sym_cmd_identifier_token4] = ACTIONS(2200), - [aux_sym_cmd_identifier_token5] = ACTIONS(2200), - [aux_sym_cmd_identifier_token6] = ACTIONS(2200), - [aux_sym_cmd_identifier_token7] = ACTIONS(2200), - [aux_sym_cmd_identifier_token8] = ACTIONS(2200), - [aux_sym_cmd_identifier_token9] = ACTIONS(2200), - [aux_sym_cmd_identifier_token10] = ACTIONS(2200), - [aux_sym_cmd_identifier_token11] = ACTIONS(2200), - [aux_sym_cmd_identifier_token12] = ACTIONS(2200), - [aux_sym_cmd_identifier_token13] = ACTIONS(2200), - [aux_sym_cmd_identifier_token14] = ACTIONS(2200), - [aux_sym_cmd_identifier_token15] = ACTIONS(2200), - [aux_sym_cmd_identifier_token16] = ACTIONS(2200), - [aux_sym_cmd_identifier_token17] = ACTIONS(2200), - [aux_sym_cmd_identifier_token18] = ACTIONS(2200), - [aux_sym_cmd_identifier_token19] = ACTIONS(2200), - [aux_sym_cmd_identifier_token20] = ACTIONS(2200), - [aux_sym_cmd_identifier_token21] = ACTIONS(2200), - [aux_sym_cmd_identifier_token22] = ACTIONS(2200), - [aux_sym_cmd_identifier_token23] = ACTIONS(2200), - [aux_sym_cmd_identifier_token24] = ACTIONS(2200), - [aux_sym_cmd_identifier_token25] = ACTIONS(2200), - [aux_sym_cmd_identifier_token26] = ACTIONS(2200), - [aux_sym_cmd_identifier_token27] = ACTIONS(2200), - [aux_sym_cmd_identifier_token28] = ACTIONS(2200), - [aux_sym_cmd_identifier_token29] = ACTIONS(2200), - [aux_sym_cmd_identifier_token30] = ACTIONS(2200), - [aux_sym_cmd_identifier_token31] = ACTIONS(2200), - [aux_sym_cmd_identifier_token32] = ACTIONS(2200), - [aux_sym_cmd_identifier_token33] = ACTIONS(2200), - [aux_sym_cmd_identifier_token34] = ACTIONS(2200), - [aux_sym_cmd_identifier_token35] = ACTIONS(2200), - [aux_sym_cmd_identifier_token36] = ACTIONS(2200), - [anon_sym_true] = ACTIONS(2200), - [anon_sym_false] = ACTIONS(2200), - [anon_sym_null] = ACTIONS(2200), - [aux_sym_cmd_identifier_token38] = ACTIONS(2200), - [aux_sym_cmd_identifier_token39] = ACTIONS(2200), - [aux_sym_cmd_identifier_token40] = ACTIONS(2200), - [anon_sym_def] = ACTIONS(2200), - [anon_sym_export_DASHenv] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_DOLLAR] = ACTIONS(2200), - [anon_sym_error] = ACTIONS(2200), - [anon_sym_list] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_make] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_catch] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_source] = ACTIONS(2200), - [anon_sym_source_DASHenv] = ACTIONS(2200), - [anon_sym_register] = ACTIONS(2200), - [anon_sym_hide] = ACTIONS(2200), - [anon_sym_hide_DASHenv] = ACTIONS(2200), - [anon_sym_overlay] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_as] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2200), - [aux_sym__val_number_decimal_token1] = ACTIONS(2200), - [aux_sym__val_number_decimal_token2] = ACTIONS(2200), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(2200), - [aux_sym__val_number_token2] = ACTIONS(2200), - [aux_sym__val_number_token3] = ACTIONS(2200), - [anon_sym_DQUOTE] = ACTIONS(2200), - [sym__str_single_quotes] = ACTIONS(2200), - [sym__str_back_ticks] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2200), - [sym__entry_separator] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2202), + [695] = { + [sym_comment] = STATE(695), + [anon_sym_export] = ACTIONS(2512), + [anon_sym_alias] = ACTIONS(2512), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_let_DASHenv] = ACTIONS(2512), + [anon_sym_mut] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [aux_sym_cmd_identifier_token1] = ACTIONS(2512), + [aux_sym_cmd_identifier_token2] = ACTIONS(2514), + [aux_sym_cmd_identifier_token3] = ACTIONS(2514), + [aux_sym_cmd_identifier_token4] = ACTIONS(2514), + [aux_sym_cmd_identifier_token5] = ACTIONS(2514), + [aux_sym_cmd_identifier_token6] = ACTIONS(2514), + [aux_sym_cmd_identifier_token7] = ACTIONS(2514), + [aux_sym_cmd_identifier_token8] = ACTIONS(2512), + [aux_sym_cmd_identifier_token9] = ACTIONS(2512), + [aux_sym_cmd_identifier_token10] = ACTIONS(2514), + [aux_sym_cmd_identifier_token11] = ACTIONS(2514), + [aux_sym_cmd_identifier_token12] = ACTIONS(2512), + [aux_sym_cmd_identifier_token13] = ACTIONS(2512), + [aux_sym_cmd_identifier_token14] = ACTIONS(2512), + [aux_sym_cmd_identifier_token15] = ACTIONS(2512), + [aux_sym_cmd_identifier_token16] = ACTIONS(2514), + [aux_sym_cmd_identifier_token17] = ACTIONS(2514), + [aux_sym_cmd_identifier_token18] = ACTIONS(2514), + [aux_sym_cmd_identifier_token19] = ACTIONS(2514), + [aux_sym_cmd_identifier_token20] = ACTIONS(2514), + [aux_sym_cmd_identifier_token21] = ACTIONS(2514), + [aux_sym_cmd_identifier_token22] = ACTIONS(2514), + [aux_sym_cmd_identifier_token23] = ACTIONS(2514), + [aux_sym_cmd_identifier_token24] = ACTIONS(2514), + [aux_sym_cmd_identifier_token25] = ACTIONS(2514), + [aux_sym_cmd_identifier_token26] = ACTIONS(2514), + [aux_sym_cmd_identifier_token27] = ACTIONS(2514), + [aux_sym_cmd_identifier_token28] = ACTIONS(2514), + [aux_sym_cmd_identifier_token29] = ACTIONS(2514), + [aux_sym_cmd_identifier_token30] = ACTIONS(2514), + [aux_sym_cmd_identifier_token31] = ACTIONS(2514), + [aux_sym_cmd_identifier_token32] = ACTIONS(2514), + [aux_sym_cmd_identifier_token33] = ACTIONS(2514), + [aux_sym_cmd_identifier_token34] = ACTIONS(2512), + [aux_sym_cmd_identifier_token35] = ACTIONS(2514), + [aux_sym_cmd_identifier_token36] = ACTIONS(2514), + [aux_sym_cmd_identifier_token37] = ACTIONS(2514), + [aux_sym_cmd_identifier_token38] = ACTIONS(2512), + [aux_sym_cmd_identifier_token39] = ACTIONS(2514), + [aux_sym_cmd_identifier_token40] = ACTIONS(2514), + [anon_sym_def] = ACTIONS(2512), + [anon_sym_export_DASHenv] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym_module] = ACTIONS(2512), + [anon_sym_use] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_DOLLAR] = ACTIONS(2514), + [anon_sym_error] = ACTIONS(2512), + [anon_sym_DASH2] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_in2] = ACTIONS(2512), + [anon_sym_loop] = ACTIONS(2512), + [anon_sym_make] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_match] = ACTIONS(2512), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_try] = ACTIONS(2512), + [anon_sym_catch] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_source] = ACTIONS(2512), + [anon_sym_source_DASHenv] = ACTIONS(2512), + [anon_sym_register] = ACTIONS(2512), + [anon_sym_hide] = ACTIONS(2512), + [anon_sym_hide_DASHenv] = ACTIONS(2512), + [anon_sym_overlay] = ACTIONS(2512), + [anon_sym_as] = ACTIONS(2512), + [anon_sym_PLUS2] = ACTIONS(2512), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2514), + [aux_sym__val_number_decimal_token1] = ACTIONS(2512), + [aux_sym__val_number_decimal_token2] = ACTIONS(2514), + [aux_sym__val_number_decimal_token3] = ACTIONS(2514), + [aux_sym__val_number_decimal_token4] = ACTIONS(2514), + [aux_sym__val_number_token1] = ACTIONS(2514), + [aux_sym__val_number_token2] = ACTIONS(2514), + [aux_sym__val_number_token3] = ACTIONS(2514), + [aux_sym__val_number_token4] = ACTIONS(2512), + [aux_sym__val_number_token5] = ACTIONS(2512), + [aux_sym__val_number_token6] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2514), + [sym__str_single_quotes] = ACTIONS(2514), + [sym__str_back_ticks] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2514), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2514), }, - [586] = { - [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_alias] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_let_DASHenv] = ACTIONS(2095), - [anon_sym_mut] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [aux_sym_cmd_identifier_token1] = ACTIONS(2095), - [aux_sym_cmd_identifier_token2] = ACTIONS(2095), - [aux_sym_cmd_identifier_token3] = ACTIONS(2095), - [aux_sym_cmd_identifier_token4] = ACTIONS(2095), - [aux_sym_cmd_identifier_token5] = ACTIONS(2095), - [aux_sym_cmd_identifier_token6] = ACTIONS(2095), - [aux_sym_cmd_identifier_token7] = ACTIONS(2095), - [aux_sym_cmd_identifier_token8] = ACTIONS(2095), - [aux_sym_cmd_identifier_token9] = ACTIONS(2095), - [aux_sym_cmd_identifier_token10] = ACTIONS(2095), - [aux_sym_cmd_identifier_token11] = ACTIONS(2095), - [aux_sym_cmd_identifier_token12] = ACTIONS(2095), - [aux_sym_cmd_identifier_token13] = ACTIONS(2095), - [aux_sym_cmd_identifier_token14] = ACTIONS(2095), - [aux_sym_cmd_identifier_token15] = ACTIONS(2095), - [aux_sym_cmd_identifier_token16] = ACTIONS(2095), - [aux_sym_cmd_identifier_token17] = ACTIONS(2095), - [aux_sym_cmd_identifier_token18] = ACTIONS(2095), - [aux_sym_cmd_identifier_token19] = ACTIONS(2095), - [aux_sym_cmd_identifier_token20] = ACTIONS(2095), - [aux_sym_cmd_identifier_token21] = ACTIONS(2095), - [aux_sym_cmd_identifier_token22] = ACTIONS(2095), - [aux_sym_cmd_identifier_token23] = ACTIONS(2095), - [aux_sym_cmd_identifier_token24] = ACTIONS(2095), - [aux_sym_cmd_identifier_token25] = ACTIONS(2095), - [aux_sym_cmd_identifier_token26] = ACTIONS(2095), - [aux_sym_cmd_identifier_token27] = ACTIONS(2095), - [aux_sym_cmd_identifier_token28] = ACTIONS(2095), - [aux_sym_cmd_identifier_token29] = ACTIONS(2095), - [aux_sym_cmd_identifier_token30] = ACTIONS(2095), - [aux_sym_cmd_identifier_token31] = ACTIONS(2095), - [aux_sym_cmd_identifier_token32] = ACTIONS(2095), - [aux_sym_cmd_identifier_token33] = ACTIONS(2095), - [aux_sym_cmd_identifier_token34] = ACTIONS(2095), - [aux_sym_cmd_identifier_token35] = ACTIONS(2095), - [aux_sym_cmd_identifier_token36] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [anon_sym_null] = ACTIONS(2095), - [aux_sym_cmd_identifier_token38] = ACTIONS(2095), - [aux_sym_cmd_identifier_token39] = ACTIONS(2095), - [aux_sym_cmd_identifier_token40] = ACTIONS(2095), - [anon_sym_def] = ACTIONS(2095), - [anon_sym_export_DASHenv] = ACTIONS(2095), - [anon_sym_extern] = ACTIONS(2095), - [anon_sym_module] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_DOLLAR] = ACTIONS(2095), - [anon_sym_error] = ACTIONS(2095), - [anon_sym_list] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_make] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_do] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_try] = ACTIONS(2095), - [anon_sym_catch] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_source] = ACTIONS(2095), - [anon_sym_source_DASHenv] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2095), - [anon_sym_hide] = ACTIONS(2095), - [anon_sym_hide_DASHenv] = ACTIONS(2095), - [anon_sym_overlay] = ACTIONS(2095), - [anon_sym_new] = ACTIONS(2095), - [anon_sym_as] = ACTIONS(2095), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2095), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2095), - [aux_sym__val_number_decimal_token1] = ACTIONS(2095), - [aux_sym__val_number_decimal_token2] = ACTIONS(2095), - [aux_sym__val_number_decimal_token3] = ACTIONS(2095), - [aux_sym__val_number_decimal_token4] = ACTIONS(2095), - [aux_sym__val_number_token1] = ACTIONS(2095), - [aux_sym__val_number_token2] = ACTIONS(2095), - [aux_sym__val_number_token3] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym__str_single_quotes] = ACTIONS(2095), - [sym__str_back_ticks] = ACTIONS(2095), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2095), - [sym__entry_separator] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2097), + [696] = { + [sym_comment] = STATE(696), + [anon_sym_export] = ACTIONS(2375), + [anon_sym_alias] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_let_DASHenv] = ACTIONS(2375), + [anon_sym_mut] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [aux_sym_cmd_identifier_token1] = ACTIONS(2375), + [aux_sym_cmd_identifier_token2] = ACTIONS(2377), + [aux_sym_cmd_identifier_token3] = ACTIONS(2377), + [aux_sym_cmd_identifier_token4] = ACTIONS(2377), + [aux_sym_cmd_identifier_token5] = ACTIONS(2377), + [aux_sym_cmd_identifier_token6] = ACTIONS(2377), + [aux_sym_cmd_identifier_token7] = ACTIONS(2377), + [aux_sym_cmd_identifier_token8] = ACTIONS(2375), + [aux_sym_cmd_identifier_token9] = ACTIONS(2375), + [aux_sym_cmd_identifier_token10] = ACTIONS(2377), + [aux_sym_cmd_identifier_token11] = ACTIONS(2377), + [aux_sym_cmd_identifier_token12] = ACTIONS(2375), + [aux_sym_cmd_identifier_token13] = ACTIONS(2375), + [aux_sym_cmd_identifier_token14] = ACTIONS(2375), + [aux_sym_cmd_identifier_token15] = ACTIONS(2375), + [aux_sym_cmd_identifier_token16] = ACTIONS(2377), + [aux_sym_cmd_identifier_token17] = ACTIONS(2377), + [aux_sym_cmd_identifier_token18] = ACTIONS(2377), + [aux_sym_cmd_identifier_token19] = ACTIONS(2377), + [aux_sym_cmd_identifier_token20] = ACTIONS(2377), + [aux_sym_cmd_identifier_token21] = ACTIONS(2377), + [aux_sym_cmd_identifier_token22] = ACTIONS(2377), + [aux_sym_cmd_identifier_token23] = ACTIONS(2377), + [aux_sym_cmd_identifier_token24] = ACTIONS(2377), + [aux_sym_cmd_identifier_token25] = ACTIONS(2377), + [aux_sym_cmd_identifier_token26] = ACTIONS(2377), + [aux_sym_cmd_identifier_token27] = ACTIONS(2377), + [aux_sym_cmd_identifier_token28] = ACTIONS(2377), + [aux_sym_cmd_identifier_token29] = ACTIONS(2377), + [aux_sym_cmd_identifier_token30] = ACTIONS(2377), + [aux_sym_cmd_identifier_token31] = ACTIONS(2377), + [aux_sym_cmd_identifier_token32] = ACTIONS(2377), + [aux_sym_cmd_identifier_token33] = ACTIONS(2377), + [aux_sym_cmd_identifier_token34] = ACTIONS(2375), + [aux_sym_cmd_identifier_token35] = ACTIONS(2377), + [aux_sym_cmd_identifier_token36] = ACTIONS(2377), + [aux_sym_cmd_identifier_token37] = ACTIONS(2377), + [aux_sym_cmd_identifier_token38] = ACTIONS(2375), + [aux_sym_cmd_identifier_token39] = ACTIONS(2377), + [aux_sym_cmd_identifier_token40] = ACTIONS(2377), + [anon_sym_def] = ACTIONS(2375), + [anon_sym_export_DASHenv] = ACTIONS(2375), + [anon_sym_extern] = ACTIONS(2375), + [anon_sym_module] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2377), + [anon_sym_error] = ACTIONS(2375), + [anon_sym_DASH2] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_in2] = ACTIONS(2375), + [anon_sym_loop] = ACTIONS(2375), + [anon_sym_make] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [anon_sym_do] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_else] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2375), + [anon_sym_catch] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_source] = ACTIONS(2375), + [anon_sym_source_DASHenv] = ACTIONS(2375), + [anon_sym_register] = ACTIONS(2375), + [anon_sym_hide] = ACTIONS(2375), + [anon_sym_hide_DASHenv] = ACTIONS(2375), + [anon_sym_overlay] = ACTIONS(2375), + [anon_sym_as] = ACTIONS(2375), + [anon_sym_PLUS2] = ACTIONS(2375), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2377), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2377), + [aux_sym__val_number_decimal_token1] = ACTIONS(2375), + [aux_sym__val_number_decimal_token2] = ACTIONS(2377), + [aux_sym__val_number_decimal_token3] = ACTIONS(2377), + [aux_sym__val_number_decimal_token4] = ACTIONS(2377), + [aux_sym__val_number_token1] = ACTIONS(2377), + [aux_sym__val_number_token2] = ACTIONS(2377), + [aux_sym__val_number_token3] = ACTIONS(2377), + [aux_sym__val_number_token4] = ACTIONS(2375), + [aux_sym__val_number_token5] = ACTIONS(2375), + [aux_sym__val_number_token6] = ACTIONS(2375), + [anon_sym_DQUOTE] = ACTIONS(2377), + [sym__str_single_quotes] = ACTIONS(2377), + [sym__str_back_ticks] = ACTIONS(2377), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2377), }, - [587] = { - [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_alias] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_let_DASHenv] = ACTIONS(2486), - [anon_sym_mut] = ACTIONS(2486), - [anon_sym_const] = ACTIONS(2486), - [aux_sym_cmd_identifier_token1] = ACTIONS(2486), - [aux_sym_cmd_identifier_token2] = ACTIONS(2486), - [aux_sym_cmd_identifier_token3] = ACTIONS(2486), - [aux_sym_cmd_identifier_token4] = ACTIONS(2486), - [aux_sym_cmd_identifier_token5] = ACTIONS(2486), - [aux_sym_cmd_identifier_token6] = ACTIONS(2486), - [aux_sym_cmd_identifier_token7] = ACTIONS(2486), - [aux_sym_cmd_identifier_token8] = ACTIONS(2486), - [aux_sym_cmd_identifier_token9] = ACTIONS(2486), - [aux_sym_cmd_identifier_token10] = ACTIONS(2486), - [aux_sym_cmd_identifier_token11] = ACTIONS(2486), - [aux_sym_cmd_identifier_token12] = ACTIONS(2486), - [aux_sym_cmd_identifier_token13] = ACTIONS(2486), - [aux_sym_cmd_identifier_token14] = ACTIONS(2486), - [aux_sym_cmd_identifier_token15] = ACTIONS(2486), - [aux_sym_cmd_identifier_token16] = ACTIONS(2486), - [aux_sym_cmd_identifier_token17] = ACTIONS(2486), - [aux_sym_cmd_identifier_token18] = ACTIONS(2486), - [aux_sym_cmd_identifier_token19] = ACTIONS(2486), - [aux_sym_cmd_identifier_token20] = ACTIONS(2486), - [aux_sym_cmd_identifier_token21] = ACTIONS(2486), - [aux_sym_cmd_identifier_token22] = ACTIONS(2486), - [aux_sym_cmd_identifier_token23] = ACTIONS(2486), - [aux_sym_cmd_identifier_token24] = ACTIONS(2486), - [aux_sym_cmd_identifier_token25] = ACTIONS(2486), - [aux_sym_cmd_identifier_token26] = ACTIONS(2486), - [aux_sym_cmd_identifier_token27] = ACTIONS(2486), - [aux_sym_cmd_identifier_token28] = ACTIONS(2486), - [aux_sym_cmd_identifier_token29] = ACTIONS(2486), - [aux_sym_cmd_identifier_token30] = ACTIONS(2486), - [aux_sym_cmd_identifier_token31] = ACTIONS(2486), - [aux_sym_cmd_identifier_token32] = ACTIONS(2486), - [aux_sym_cmd_identifier_token33] = ACTIONS(2486), - [aux_sym_cmd_identifier_token34] = ACTIONS(2486), - [aux_sym_cmd_identifier_token35] = ACTIONS(2486), - [aux_sym_cmd_identifier_token36] = ACTIONS(2486), - [anon_sym_true] = ACTIONS(2486), - [anon_sym_false] = ACTIONS(2486), - [anon_sym_null] = ACTIONS(2486), - [aux_sym_cmd_identifier_token38] = ACTIONS(2486), - [aux_sym_cmd_identifier_token39] = ACTIONS(2486), - [aux_sym_cmd_identifier_token40] = ACTIONS(2486), - [anon_sym_def] = ACTIONS(2486), - [anon_sym_export_DASHenv] = ACTIONS(2486), - [anon_sym_extern] = ACTIONS(2486), - [anon_sym_module] = ACTIONS(2486), - [anon_sym_use] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_DOLLAR] = ACTIONS(2486), - [anon_sym_error] = ACTIONS(2486), - [anon_sym_list] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_for] = ACTIONS(2486), - [anon_sym_in] = ACTIONS(2486), - [anon_sym_loop] = ACTIONS(2486), - [anon_sym_make] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(2486), - [anon_sym_if] = ACTIONS(2486), - [anon_sym_else] = ACTIONS(2486), - [anon_sym_match] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2486), - [anon_sym_try] = ACTIONS(2486), - [anon_sym_catch] = ACTIONS(2486), - [anon_sym_return] = ACTIONS(2486), - [anon_sym_source] = ACTIONS(2486), - [anon_sym_source_DASHenv] = ACTIONS(2486), - [anon_sym_register] = ACTIONS(2486), - [anon_sym_hide] = ACTIONS(2486), - [anon_sym_hide_DASHenv] = ACTIONS(2486), - [anon_sym_overlay] = ACTIONS(2486), - [anon_sym_new] = ACTIONS(2486), - [anon_sym_as] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2486), - [aux_sym__val_number_decimal_token1] = ACTIONS(2486), - [aux_sym__val_number_decimal_token2] = ACTIONS(2486), - [aux_sym__val_number_decimal_token3] = ACTIONS(2486), - [aux_sym__val_number_decimal_token4] = ACTIONS(2486), - [aux_sym__val_number_token1] = ACTIONS(2486), - [aux_sym__val_number_token2] = ACTIONS(2486), - [aux_sym__val_number_token3] = ACTIONS(2486), - [anon_sym_DQUOTE] = ACTIONS(2486), - [sym__str_single_quotes] = ACTIONS(2486), - [sym__str_back_ticks] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2486), - [sym__entry_separator] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2486), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2488), + [697] = { + [sym_comment] = STATE(697), + [anon_sym_export] = ACTIONS(2518), + [anon_sym_alias] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_let_DASHenv] = ACTIONS(2518), + [anon_sym_mut] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [aux_sym_cmd_identifier_token1] = ACTIONS(2518), + [aux_sym_cmd_identifier_token2] = ACTIONS(2520), + [aux_sym_cmd_identifier_token3] = ACTIONS(2520), + [aux_sym_cmd_identifier_token4] = ACTIONS(2520), + [aux_sym_cmd_identifier_token5] = ACTIONS(2520), + [aux_sym_cmd_identifier_token6] = ACTIONS(2520), + [aux_sym_cmd_identifier_token7] = ACTIONS(2520), + [aux_sym_cmd_identifier_token8] = ACTIONS(2518), + [aux_sym_cmd_identifier_token9] = ACTIONS(2518), + [aux_sym_cmd_identifier_token10] = ACTIONS(2520), + [aux_sym_cmd_identifier_token11] = ACTIONS(2520), + [aux_sym_cmd_identifier_token12] = ACTIONS(2518), + [aux_sym_cmd_identifier_token13] = ACTIONS(2518), + [aux_sym_cmd_identifier_token14] = ACTIONS(2518), + [aux_sym_cmd_identifier_token15] = ACTIONS(2518), + [aux_sym_cmd_identifier_token16] = ACTIONS(2520), + [aux_sym_cmd_identifier_token17] = ACTIONS(2520), + [aux_sym_cmd_identifier_token18] = ACTIONS(2520), + [aux_sym_cmd_identifier_token19] = ACTIONS(2520), + [aux_sym_cmd_identifier_token20] = ACTIONS(2520), + [aux_sym_cmd_identifier_token21] = ACTIONS(2520), + [aux_sym_cmd_identifier_token22] = ACTIONS(2520), + [aux_sym_cmd_identifier_token23] = ACTIONS(2520), + [aux_sym_cmd_identifier_token24] = ACTIONS(2520), + [aux_sym_cmd_identifier_token25] = ACTIONS(2520), + [aux_sym_cmd_identifier_token26] = ACTIONS(2520), + [aux_sym_cmd_identifier_token27] = ACTIONS(2520), + [aux_sym_cmd_identifier_token28] = ACTIONS(2520), + [aux_sym_cmd_identifier_token29] = ACTIONS(2520), + [aux_sym_cmd_identifier_token30] = ACTIONS(2520), + [aux_sym_cmd_identifier_token31] = ACTIONS(2520), + [aux_sym_cmd_identifier_token32] = ACTIONS(2520), + [aux_sym_cmd_identifier_token33] = ACTIONS(2520), + [aux_sym_cmd_identifier_token34] = ACTIONS(2518), + [aux_sym_cmd_identifier_token35] = ACTIONS(2520), + [aux_sym_cmd_identifier_token36] = ACTIONS(2520), + [aux_sym_cmd_identifier_token37] = ACTIONS(2520), + [aux_sym_cmd_identifier_token38] = ACTIONS(2518), + [aux_sym_cmd_identifier_token39] = ACTIONS(2520), + [aux_sym_cmd_identifier_token40] = ACTIONS(2520), + [anon_sym_def] = ACTIONS(2518), + [anon_sym_export_DASHenv] = ACTIONS(2518), + [anon_sym_extern] = ACTIONS(2518), + [anon_sym_module] = ACTIONS(2518), + [anon_sym_use] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2520), + [anon_sym_error] = ACTIONS(2518), + [anon_sym_DASH2] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_in2] = ACTIONS(2518), + [anon_sym_loop] = ACTIONS(2518), + [anon_sym_make] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_do] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2518), + [anon_sym_match] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_try] = ACTIONS(2518), + [anon_sym_catch] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_source] = ACTIONS(2518), + [anon_sym_source_DASHenv] = ACTIONS(2518), + [anon_sym_register] = ACTIONS(2518), + [anon_sym_hide] = ACTIONS(2518), + [anon_sym_hide_DASHenv] = ACTIONS(2518), + [anon_sym_overlay] = ACTIONS(2518), + [anon_sym_as] = ACTIONS(2518), + [anon_sym_PLUS2] = ACTIONS(2518), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2520), + [aux_sym__val_number_decimal_token1] = ACTIONS(2518), + [aux_sym__val_number_decimal_token2] = ACTIONS(2520), + [aux_sym__val_number_decimal_token3] = ACTIONS(2520), + [aux_sym__val_number_decimal_token4] = ACTIONS(2520), + [aux_sym__val_number_token1] = ACTIONS(2520), + [aux_sym__val_number_token2] = ACTIONS(2520), + [aux_sym__val_number_token3] = ACTIONS(2520), + [aux_sym__val_number_token4] = ACTIONS(2518), + [aux_sym__val_number_token5] = ACTIONS(2518), + [aux_sym__val_number_token6] = ACTIONS(2518), + [anon_sym_DQUOTE] = ACTIONS(2520), + [sym__str_single_quotes] = ACTIONS(2520), + [sym__str_back_ticks] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2520), }, - [588] = { - [sym_comment] = STATE(588), - [anon_sym_export] = ACTIONS(2490), - [anon_sym_alias] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_let_DASHenv] = ACTIONS(2490), - [anon_sym_mut] = ACTIONS(2490), - [anon_sym_const] = ACTIONS(2490), - [aux_sym_cmd_identifier_token1] = ACTIONS(2490), - [aux_sym_cmd_identifier_token2] = ACTIONS(2490), - [aux_sym_cmd_identifier_token3] = ACTIONS(2490), - [aux_sym_cmd_identifier_token4] = ACTIONS(2490), - [aux_sym_cmd_identifier_token5] = ACTIONS(2490), - [aux_sym_cmd_identifier_token6] = ACTIONS(2490), - [aux_sym_cmd_identifier_token7] = ACTIONS(2490), - [aux_sym_cmd_identifier_token8] = ACTIONS(2490), - [aux_sym_cmd_identifier_token9] = ACTIONS(2490), - [aux_sym_cmd_identifier_token10] = ACTIONS(2490), - [aux_sym_cmd_identifier_token11] = ACTIONS(2490), - [aux_sym_cmd_identifier_token12] = ACTIONS(2490), - [aux_sym_cmd_identifier_token13] = ACTIONS(2490), - [aux_sym_cmd_identifier_token14] = ACTIONS(2490), - [aux_sym_cmd_identifier_token15] = ACTIONS(2490), - [aux_sym_cmd_identifier_token16] = ACTIONS(2490), - [aux_sym_cmd_identifier_token17] = ACTIONS(2490), - [aux_sym_cmd_identifier_token18] = ACTIONS(2490), - [aux_sym_cmd_identifier_token19] = ACTIONS(2490), - [aux_sym_cmd_identifier_token20] = ACTIONS(2490), - [aux_sym_cmd_identifier_token21] = ACTIONS(2490), - [aux_sym_cmd_identifier_token22] = ACTIONS(2490), - [aux_sym_cmd_identifier_token23] = ACTIONS(2490), - [aux_sym_cmd_identifier_token24] = ACTIONS(2490), - [aux_sym_cmd_identifier_token25] = ACTIONS(2490), - [aux_sym_cmd_identifier_token26] = ACTIONS(2490), - [aux_sym_cmd_identifier_token27] = ACTIONS(2490), - [aux_sym_cmd_identifier_token28] = ACTIONS(2490), - [aux_sym_cmd_identifier_token29] = ACTIONS(2490), - [aux_sym_cmd_identifier_token30] = ACTIONS(2490), - [aux_sym_cmd_identifier_token31] = ACTIONS(2490), - [aux_sym_cmd_identifier_token32] = ACTIONS(2490), - [aux_sym_cmd_identifier_token33] = ACTIONS(2490), - [aux_sym_cmd_identifier_token34] = ACTIONS(2490), - [aux_sym_cmd_identifier_token35] = ACTIONS(2490), - [aux_sym_cmd_identifier_token36] = ACTIONS(2490), - [anon_sym_true] = ACTIONS(2490), - [anon_sym_false] = ACTIONS(2490), - [anon_sym_null] = ACTIONS(2490), - [aux_sym_cmd_identifier_token38] = ACTIONS(2490), - [aux_sym_cmd_identifier_token39] = ACTIONS(2490), - [aux_sym_cmd_identifier_token40] = ACTIONS(2490), - [anon_sym_def] = ACTIONS(2490), - [anon_sym_export_DASHenv] = ACTIONS(2490), - [anon_sym_extern] = ACTIONS(2490), - [anon_sym_module] = ACTIONS(2490), - [anon_sym_use] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2490), - [anon_sym_DOLLAR] = ACTIONS(2490), - [anon_sym_error] = ACTIONS(2490), - [anon_sym_list] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_break] = ACTIONS(2490), - [anon_sym_continue] = ACTIONS(2490), - [anon_sym_for] = ACTIONS(2490), - [anon_sym_in] = ACTIONS(2490), - [anon_sym_loop] = ACTIONS(2490), - [anon_sym_make] = ACTIONS(2490), - [anon_sym_while] = ACTIONS(2490), - [anon_sym_do] = ACTIONS(2490), - [anon_sym_if] = ACTIONS(2490), - [anon_sym_else] = ACTIONS(2490), - [anon_sym_match] = ACTIONS(2490), - [anon_sym_RBRACE] = ACTIONS(2490), - [anon_sym_try] = ACTIONS(2490), - [anon_sym_catch] = ACTIONS(2490), - [anon_sym_return] = ACTIONS(2490), - [anon_sym_source] = ACTIONS(2490), - [anon_sym_source_DASHenv] = ACTIONS(2490), - [anon_sym_register] = ACTIONS(2490), - [anon_sym_hide] = ACTIONS(2490), - [anon_sym_hide_DASHenv] = ACTIONS(2490), - [anon_sym_overlay] = ACTIONS(2490), - [anon_sym_new] = ACTIONS(2490), - [anon_sym_as] = ACTIONS(2490), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2490), - [aux_sym__val_number_decimal_token1] = ACTIONS(2490), - [aux_sym__val_number_decimal_token2] = ACTIONS(2490), - [aux_sym__val_number_decimal_token3] = ACTIONS(2490), - [aux_sym__val_number_decimal_token4] = ACTIONS(2490), - [aux_sym__val_number_token1] = ACTIONS(2490), - [aux_sym__val_number_token2] = ACTIONS(2490), - [aux_sym__val_number_token3] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2490), - [sym__str_single_quotes] = ACTIONS(2490), - [sym__str_back_ticks] = ACTIONS(2490), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2490), - [sym__entry_separator] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2492), + [698] = { + [sym_comment] = STATE(698), + [anon_sym_export] = ACTIONS(2407), + [anon_sym_alias] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_let_DASHenv] = ACTIONS(2407), + [anon_sym_mut] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [aux_sym_cmd_identifier_token1] = ACTIONS(2407), + [aux_sym_cmd_identifier_token2] = ACTIONS(2409), + [aux_sym_cmd_identifier_token3] = ACTIONS(2409), + [aux_sym_cmd_identifier_token4] = ACTIONS(2409), + [aux_sym_cmd_identifier_token5] = ACTIONS(2409), + [aux_sym_cmd_identifier_token6] = ACTIONS(2409), + [aux_sym_cmd_identifier_token7] = ACTIONS(2409), + [aux_sym_cmd_identifier_token8] = ACTIONS(2407), + [aux_sym_cmd_identifier_token9] = ACTIONS(2407), + [aux_sym_cmd_identifier_token10] = ACTIONS(2409), + [aux_sym_cmd_identifier_token11] = ACTIONS(2409), + [aux_sym_cmd_identifier_token12] = ACTIONS(2407), + [aux_sym_cmd_identifier_token13] = ACTIONS(2407), + [aux_sym_cmd_identifier_token14] = ACTIONS(2407), + [aux_sym_cmd_identifier_token15] = ACTIONS(2407), + [aux_sym_cmd_identifier_token16] = ACTIONS(2409), + [aux_sym_cmd_identifier_token17] = ACTIONS(2409), + [aux_sym_cmd_identifier_token18] = ACTIONS(2409), + [aux_sym_cmd_identifier_token19] = ACTIONS(2409), + [aux_sym_cmd_identifier_token20] = ACTIONS(2409), + [aux_sym_cmd_identifier_token21] = ACTIONS(2409), + [aux_sym_cmd_identifier_token22] = ACTIONS(2409), + [aux_sym_cmd_identifier_token23] = ACTIONS(2409), + [aux_sym_cmd_identifier_token24] = ACTIONS(2409), + [aux_sym_cmd_identifier_token25] = ACTIONS(2409), + [aux_sym_cmd_identifier_token26] = ACTIONS(2409), + [aux_sym_cmd_identifier_token27] = ACTIONS(2409), + [aux_sym_cmd_identifier_token28] = ACTIONS(2409), + [aux_sym_cmd_identifier_token29] = ACTIONS(2409), + [aux_sym_cmd_identifier_token30] = ACTIONS(2409), + [aux_sym_cmd_identifier_token31] = ACTIONS(2409), + [aux_sym_cmd_identifier_token32] = ACTIONS(2409), + [aux_sym_cmd_identifier_token33] = ACTIONS(2409), + [aux_sym_cmd_identifier_token34] = ACTIONS(2407), + [aux_sym_cmd_identifier_token35] = ACTIONS(2409), + [aux_sym_cmd_identifier_token36] = ACTIONS(2409), + [aux_sym_cmd_identifier_token37] = ACTIONS(2409), + [aux_sym_cmd_identifier_token38] = ACTIONS(2407), + [aux_sym_cmd_identifier_token39] = ACTIONS(2409), + [aux_sym_cmd_identifier_token40] = ACTIONS(2409), + [anon_sym_def] = ACTIONS(2407), + [anon_sym_export_DASHenv] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym_module] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_error] = ACTIONS(2407), + [anon_sym_DASH2] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_in2] = ACTIONS(2407), + [anon_sym_loop] = ACTIONS(2407), + [anon_sym_make] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_catch] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_source] = ACTIONS(2407), + [anon_sym_source_DASHenv] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_hide] = ACTIONS(2407), + [anon_sym_hide_DASHenv] = ACTIONS(2407), + [anon_sym_overlay] = ACTIONS(2407), + [anon_sym_as] = ACTIONS(2407), + [anon_sym_PLUS2] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2409), + [aux_sym__val_number_decimal_token1] = ACTIONS(2407), + [aux_sym__val_number_decimal_token2] = ACTIONS(2409), + [aux_sym__val_number_decimal_token3] = ACTIONS(2409), + [aux_sym__val_number_decimal_token4] = ACTIONS(2409), + [aux_sym__val_number_token1] = ACTIONS(2409), + [aux_sym__val_number_token2] = ACTIONS(2409), + [aux_sym__val_number_token3] = ACTIONS(2409), + [aux_sym__val_number_token4] = ACTIONS(2407), + [aux_sym__val_number_token5] = ACTIONS(2407), + [aux_sym__val_number_token6] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym__str_single_quotes] = ACTIONS(2409), + [sym__str_back_ticks] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2409), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2409), }, - [589] = { - [sym_comment] = STATE(589), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1769), - [aux_sym_cmd_identifier_token40] = ACTIONS(1769), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), - [sym__entry_separator] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1771), + [699] = { + [sym_comment] = STATE(699), + [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(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1755), + [aux_sym_cmd_identifier_token9] = ACTIONS(1755), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(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(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1755), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_in2] = 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_as] = ACTIONS(1755), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1755), + [aux_sym__val_number_token5] = ACTIONS(1755), + [aux_sym__val_number_token6] = ACTIONS(1755), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), }, - [590] = { - [sym_comment] = STATE(590), - [anon_sym_export] = ACTIONS(1826), - [anon_sym_alias] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_let_DASHenv] = ACTIONS(1826), - [anon_sym_mut] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [aux_sym_cmd_identifier_token1] = ACTIONS(1826), - [aux_sym_cmd_identifier_token2] = ACTIONS(1826), - [aux_sym_cmd_identifier_token3] = ACTIONS(1826), - [aux_sym_cmd_identifier_token4] = ACTIONS(1826), - [aux_sym_cmd_identifier_token5] = ACTIONS(1826), - [aux_sym_cmd_identifier_token6] = ACTIONS(1826), - [aux_sym_cmd_identifier_token7] = ACTIONS(1826), - [aux_sym_cmd_identifier_token8] = ACTIONS(1826), - [aux_sym_cmd_identifier_token9] = ACTIONS(1826), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1826), - [aux_sym_cmd_identifier_token13] = ACTIONS(1826), - [aux_sym_cmd_identifier_token14] = ACTIONS(1826), - [aux_sym_cmd_identifier_token15] = ACTIONS(1826), - [aux_sym_cmd_identifier_token16] = ACTIONS(1826), - [aux_sym_cmd_identifier_token17] = ACTIONS(1826), - [aux_sym_cmd_identifier_token18] = ACTIONS(1826), - [aux_sym_cmd_identifier_token19] = ACTIONS(1826), - [aux_sym_cmd_identifier_token20] = ACTIONS(1826), - [aux_sym_cmd_identifier_token21] = ACTIONS(1826), - [aux_sym_cmd_identifier_token22] = ACTIONS(1826), - [aux_sym_cmd_identifier_token23] = ACTIONS(1826), - [aux_sym_cmd_identifier_token24] = ACTIONS(1826), - [aux_sym_cmd_identifier_token25] = ACTIONS(1826), - [aux_sym_cmd_identifier_token26] = ACTIONS(1826), - [aux_sym_cmd_identifier_token27] = ACTIONS(1826), - [aux_sym_cmd_identifier_token28] = ACTIONS(1826), - [aux_sym_cmd_identifier_token29] = ACTIONS(1826), - [aux_sym_cmd_identifier_token30] = ACTIONS(1826), - [aux_sym_cmd_identifier_token31] = ACTIONS(1826), - [aux_sym_cmd_identifier_token32] = ACTIONS(1826), - [aux_sym_cmd_identifier_token33] = ACTIONS(1826), - [aux_sym_cmd_identifier_token34] = ACTIONS(1826), - [aux_sym_cmd_identifier_token35] = ACTIONS(1826), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(1826), - [anon_sym_export_DASHenv] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_module] = ACTIONS(1826), - [anon_sym_use] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_error] = ACTIONS(1826), - [anon_sym_list] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_loop] = ACTIONS(1826), - [anon_sym_make] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_match] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_catch] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_source] = ACTIONS(1826), - [anon_sym_source_DASHenv] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_hide] = ACTIONS(1826), - [anon_sym_hide_DASHenv] = ACTIONS(1826), - [anon_sym_overlay] = ACTIONS(1826), - [anon_sym_new] = ACTIONS(1826), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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), - [sym__entry_separator] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1828), + [700] = { + [sym_comment] = STATE(700), + [anon_sym_export] = ACTIONS(1783), + [anon_sym_alias] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_let_DASHenv] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1783), + [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1783), + [aux_sym_cmd_identifier_token13] = ACTIONS(1783), + [aux_sym_cmd_identifier_token14] = ACTIONS(1783), + [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_export_DASHenv] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_module] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1783), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_in2] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_make] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_source] = ACTIONS(1783), + [anon_sym_source_DASHenv] = ACTIONS(1783), + [anon_sym_register] = ACTIONS(1783), + [anon_sym_hide] = ACTIONS(1783), + [anon_sym_hide_DASHenv] = ACTIONS(1783), + [anon_sym_overlay] = ACTIONS(1783), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1783), + [aux_sym__val_number_token5] = ACTIONS(1783), + [aux_sym__val_number_token6] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, - [591] = { - [sym_comment] = STATE(591), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_alias] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_let_DASHenv] = ACTIONS(1628), - [anon_sym_mut] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [aux_sym_cmd_identifier_token1] = ACTIONS(1628), - [aux_sym_cmd_identifier_token2] = ACTIONS(1628), - [aux_sym_cmd_identifier_token3] = ACTIONS(1628), - [aux_sym_cmd_identifier_token4] = ACTIONS(1628), - [aux_sym_cmd_identifier_token5] = ACTIONS(1628), - [aux_sym_cmd_identifier_token6] = ACTIONS(1628), - [aux_sym_cmd_identifier_token7] = ACTIONS(1628), - [aux_sym_cmd_identifier_token8] = ACTIONS(1628), - [aux_sym_cmd_identifier_token9] = ACTIONS(1628), - [aux_sym_cmd_identifier_token10] = ACTIONS(1628), - [aux_sym_cmd_identifier_token11] = ACTIONS(1628), - [aux_sym_cmd_identifier_token12] = ACTIONS(1628), - [aux_sym_cmd_identifier_token13] = ACTIONS(1628), - [aux_sym_cmd_identifier_token14] = ACTIONS(1628), - [aux_sym_cmd_identifier_token15] = ACTIONS(1628), - [aux_sym_cmd_identifier_token16] = ACTIONS(1628), - [aux_sym_cmd_identifier_token17] = ACTIONS(1628), - [aux_sym_cmd_identifier_token18] = ACTIONS(1628), - [aux_sym_cmd_identifier_token19] = ACTIONS(1628), - [aux_sym_cmd_identifier_token20] = ACTIONS(1628), - [aux_sym_cmd_identifier_token21] = ACTIONS(1628), - [aux_sym_cmd_identifier_token22] = ACTIONS(1628), - [aux_sym_cmd_identifier_token23] = ACTIONS(1628), - [aux_sym_cmd_identifier_token24] = ACTIONS(1628), - [aux_sym_cmd_identifier_token25] = ACTIONS(1628), - [aux_sym_cmd_identifier_token26] = ACTIONS(1628), - [aux_sym_cmd_identifier_token27] = ACTIONS(1628), - [aux_sym_cmd_identifier_token28] = ACTIONS(1628), - [aux_sym_cmd_identifier_token29] = ACTIONS(1628), - [aux_sym_cmd_identifier_token30] = ACTIONS(1628), - [aux_sym_cmd_identifier_token31] = ACTIONS(1628), - [aux_sym_cmd_identifier_token32] = ACTIONS(1628), - [aux_sym_cmd_identifier_token33] = ACTIONS(1628), - [aux_sym_cmd_identifier_token34] = ACTIONS(1628), - [aux_sym_cmd_identifier_token35] = ACTIONS(1628), - [aux_sym_cmd_identifier_token36] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [aux_sym_cmd_identifier_token38] = ACTIONS(1628), - [aux_sym_cmd_identifier_token39] = ACTIONS(1628), - [aux_sym_cmd_identifier_token40] = ACTIONS(1628), - [anon_sym_def] = ACTIONS(1628), - [anon_sym_export_DASHenv] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_error] = ACTIONS(1628), - [anon_sym_list] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_make] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_else] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_try] = ACTIONS(1628), - [anon_sym_catch] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_source] = ACTIONS(1628), - [anon_sym_source_DASHenv] = ACTIONS(1628), - [anon_sym_register] = ACTIONS(1628), - [anon_sym_hide] = ACTIONS(1628), - [anon_sym_hide_DASHenv] = ACTIONS(1628), - [anon_sym_overlay] = ACTIONS(1628), - [anon_sym_new] = ACTIONS(1628), - [anon_sym_as] = ACTIONS(1628), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1628), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1628), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1628), - [aux_sym__val_number_decimal_token4] = ACTIONS(1628), - [aux_sym__val_number_token1] = ACTIONS(1628), - [aux_sym__val_number_token2] = ACTIONS(1628), - [aux_sym__val_number_token3] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(1628), - [sym__str_single_quotes] = ACTIONS(1628), - [sym__str_back_ticks] = ACTIONS(1628), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1628), - [sym__entry_separator] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1640), + [701] = { + [sym_comment] = STATE(701), + [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(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(1890), + [aux_sym_cmd_identifier_token9] = ACTIONS(1890), + [aux_sym_cmd_identifier_token10] = ACTIONS(1892), + [aux_sym_cmd_identifier_token11] = ACTIONS(1892), + [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(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(1890), + [aux_sym_cmd_identifier_token35] = ACTIONS(1892), + [aux_sym_cmd_identifier_token36] = ACTIONS(1892), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_in2] = 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_as] = ACTIONS(1890), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(1890), + [aux_sym__val_number_token5] = ACTIONS(1890), + [aux_sym__val_number_token6] = ACTIONS(1890), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1892), }, - [592] = { - [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(2113), - [anon_sym_alias] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2113), - [anon_sym_let_DASHenv] = ACTIONS(2113), - [anon_sym_mut] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [aux_sym_cmd_identifier_token1] = ACTIONS(2113), - [aux_sym_cmd_identifier_token2] = ACTIONS(2113), - [aux_sym_cmd_identifier_token3] = ACTIONS(2113), - [aux_sym_cmd_identifier_token4] = ACTIONS(2113), - [aux_sym_cmd_identifier_token5] = ACTIONS(2113), - [aux_sym_cmd_identifier_token6] = ACTIONS(2113), - [aux_sym_cmd_identifier_token7] = ACTIONS(2113), - [aux_sym_cmd_identifier_token8] = ACTIONS(2113), - [aux_sym_cmd_identifier_token9] = ACTIONS(2113), - [aux_sym_cmd_identifier_token10] = ACTIONS(2113), - [aux_sym_cmd_identifier_token11] = ACTIONS(2113), - [aux_sym_cmd_identifier_token12] = ACTIONS(2113), - [aux_sym_cmd_identifier_token13] = ACTIONS(2113), - [aux_sym_cmd_identifier_token14] = ACTIONS(2113), - [aux_sym_cmd_identifier_token15] = ACTIONS(2113), - [aux_sym_cmd_identifier_token16] = ACTIONS(2113), - [aux_sym_cmd_identifier_token17] = ACTIONS(2113), - [aux_sym_cmd_identifier_token18] = ACTIONS(2113), - [aux_sym_cmd_identifier_token19] = ACTIONS(2113), - [aux_sym_cmd_identifier_token20] = ACTIONS(2113), - [aux_sym_cmd_identifier_token21] = ACTIONS(2113), - [aux_sym_cmd_identifier_token22] = ACTIONS(2113), - [aux_sym_cmd_identifier_token23] = ACTIONS(2113), - [aux_sym_cmd_identifier_token24] = ACTIONS(2113), - [aux_sym_cmd_identifier_token25] = ACTIONS(2113), - [aux_sym_cmd_identifier_token26] = ACTIONS(2113), - [aux_sym_cmd_identifier_token27] = ACTIONS(2113), - [aux_sym_cmd_identifier_token28] = ACTIONS(2113), - [aux_sym_cmd_identifier_token29] = ACTIONS(2113), - [aux_sym_cmd_identifier_token30] = ACTIONS(2113), - [aux_sym_cmd_identifier_token31] = ACTIONS(2113), - [aux_sym_cmd_identifier_token32] = ACTIONS(2113), - [aux_sym_cmd_identifier_token33] = ACTIONS(2113), - [aux_sym_cmd_identifier_token34] = ACTIONS(2113), - [aux_sym_cmd_identifier_token35] = ACTIONS(2113), - [aux_sym_cmd_identifier_token36] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2113), - [anon_sym_false] = ACTIONS(2113), - [anon_sym_null] = ACTIONS(2113), - [aux_sym_cmd_identifier_token38] = ACTIONS(2113), - [aux_sym_cmd_identifier_token39] = ACTIONS(2113), - [aux_sym_cmd_identifier_token40] = ACTIONS(2113), - [anon_sym_def] = ACTIONS(2113), - [anon_sym_export_DASHenv] = ACTIONS(2113), - [anon_sym_extern] = ACTIONS(2113), - [anon_sym_module] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2113), - [anon_sym_error] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_in] = ACTIONS(2113), - [anon_sym_loop] = ACTIONS(2113), - [anon_sym_make] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_do] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_else] = ACTIONS(2113), - [anon_sym_match] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_try] = ACTIONS(2113), - [anon_sym_catch] = ACTIONS(2113), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_source] = ACTIONS(2113), - [anon_sym_source_DASHenv] = ACTIONS(2113), - [anon_sym_register] = ACTIONS(2113), - [anon_sym_hide] = ACTIONS(2113), - [anon_sym_hide_DASHenv] = ACTIONS(2113), - [anon_sym_overlay] = ACTIONS(2113), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_as] = ACTIONS(2113), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2113), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2113), - [aux_sym__val_number_decimal_token1] = ACTIONS(2113), - [aux_sym__val_number_decimal_token2] = ACTIONS(2113), - [aux_sym__val_number_decimal_token3] = ACTIONS(2113), - [aux_sym__val_number_decimal_token4] = ACTIONS(2113), - [aux_sym__val_number_token1] = ACTIONS(2113), - [aux_sym__val_number_token2] = ACTIONS(2113), - [aux_sym__val_number_token3] = ACTIONS(2113), - [anon_sym_DQUOTE] = ACTIONS(2113), - [sym__str_single_quotes] = ACTIONS(2113), - [sym__str_back_ticks] = ACTIONS(2113), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2113), - [sym__entry_separator] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2119), + [702] = { + [sym_comment] = STATE(702), + [anon_sym_export] = ACTIONS(2094), + [anon_sym_alias] = ACTIONS(2094), + [anon_sym_let] = ACTIONS(2094), + [anon_sym_let_DASHenv] = ACTIONS(2094), + [anon_sym_mut] = ACTIONS(2094), + [anon_sym_const] = ACTIONS(2094), + [aux_sym_cmd_identifier_token1] = ACTIONS(2094), + [aux_sym_cmd_identifier_token2] = ACTIONS(2096), + [aux_sym_cmd_identifier_token3] = ACTIONS(2096), + [aux_sym_cmd_identifier_token4] = ACTIONS(2096), + [aux_sym_cmd_identifier_token5] = ACTIONS(2096), + [aux_sym_cmd_identifier_token6] = ACTIONS(2096), + [aux_sym_cmd_identifier_token7] = ACTIONS(2096), + [aux_sym_cmd_identifier_token8] = ACTIONS(2094), + [aux_sym_cmd_identifier_token9] = ACTIONS(2094), + [aux_sym_cmd_identifier_token10] = ACTIONS(2096), + [aux_sym_cmd_identifier_token11] = ACTIONS(2096), + [aux_sym_cmd_identifier_token12] = ACTIONS(2094), + [aux_sym_cmd_identifier_token13] = ACTIONS(2094), + [aux_sym_cmd_identifier_token14] = ACTIONS(2094), + [aux_sym_cmd_identifier_token15] = ACTIONS(2094), + [aux_sym_cmd_identifier_token16] = ACTIONS(2096), + [aux_sym_cmd_identifier_token17] = ACTIONS(2096), + [aux_sym_cmd_identifier_token18] = ACTIONS(2096), + [aux_sym_cmd_identifier_token19] = ACTIONS(2096), + [aux_sym_cmd_identifier_token20] = ACTIONS(2096), + [aux_sym_cmd_identifier_token21] = ACTIONS(2096), + [aux_sym_cmd_identifier_token22] = ACTIONS(2096), + [aux_sym_cmd_identifier_token23] = ACTIONS(2096), + [aux_sym_cmd_identifier_token24] = ACTIONS(2096), + [aux_sym_cmd_identifier_token25] = ACTIONS(2096), + [aux_sym_cmd_identifier_token26] = ACTIONS(2096), + [aux_sym_cmd_identifier_token27] = ACTIONS(2096), + [aux_sym_cmd_identifier_token28] = ACTIONS(2096), + [aux_sym_cmd_identifier_token29] = ACTIONS(2096), + [aux_sym_cmd_identifier_token30] = ACTIONS(2096), + [aux_sym_cmd_identifier_token31] = ACTIONS(2096), + [aux_sym_cmd_identifier_token32] = ACTIONS(2096), + [aux_sym_cmd_identifier_token33] = ACTIONS(2096), + [aux_sym_cmd_identifier_token34] = ACTIONS(2094), + [aux_sym_cmd_identifier_token35] = ACTIONS(2096), + [aux_sym_cmd_identifier_token36] = ACTIONS(2096), + [aux_sym_cmd_identifier_token37] = ACTIONS(2096), + [aux_sym_cmd_identifier_token38] = ACTIONS(2094), + [aux_sym_cmd_identifier_token39] = ACTIONS(2096), + [aux_sym_cmd_identifier_token40] = ACTIONS(2096), + [anon_sym_def] = ACTIONS(2094), + [anon_sym_export_DASHenv] = ACTIONS(2094), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_module] = ACTIONS(2094), + [anon_sym_use] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_DOLLAR] = ACTIONS(2096), + [anon_sym_error] = ACTIONS(2094), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_in2] = ACTIONS(2094), + [anon_sym_loop] = ACTIONS(2094), + [anon_sym_make] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_do] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_else] = ACTIONS(2094), + [anon_sym_match] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2094), + [anon_sym_catch] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_source] = ACTIONS(2094), + [anon_sym_source_DASHenv] = ACTIONS(2094), + [anon_sym_register] = ACTIONS(2094), + [anon_sym_hide] = ACTIONS(2094), + [anon_sym_hide_DASHenv] = ACTIONS(2094), + [anon_sym_overlay] = ACTIONS(2094), + [anon_sym_as] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2094), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2096), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2096), + [aux_sym__val_number_decimal_token1] = ACTIONS(2094), + [aux_sym__val_number_decimal_token2] = ACTIONS(2096), + [aux_sym__val_number_decimal_token3] = ACTIONS(2096), + [aux_sym__val_number_decimal_token4] = ACTIONS(2096), + [aux_sym__val_number_token1] = ACTIONS(2096), + [aux_sym__val_number_token2] = ACTIONS(2096), + [aux_sym__val_number_token3] = ACTIONS(2096), + [aux_sym__val_number_token4] = ACTIONS(2094), + [aux_sym__val_number_token5] = ACTIONS(2094), + [aux_sym__val_number_token6] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(2096), + [sym__str_single_quotes] = ACTIONS(2096), + [sym__str_back_ticks] = ACTIONS(2096), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2096), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2096), }, - [593] = { - [sym_comment] = STATE(593), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_alias] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_let_DASHenv] = ACTIONS(2494), - [anon_sym_mut] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [aux_sym_cmd_identifier_token1] = ACTIONS(2494), - [aux_sym_cmd_identifier_token2] = ACTIONS(2494), - [aux_sym_cmd_identifier_token3] = ACTIONS(2494), - [aux_sym_cmd_identifier_token4] = ACTIONS(2494), - [aux_sym_cmd_identifier_token5] = ACTIONS(2494), - [aux_sym_cmd_identifier_token6] = ACTIONS(2494), - [aux_sym_cmd_identifier_token7] = ACTIONS(2494), - [aux_sym_cmd_identifier_token8] = ACTIONS(2494), - [aux_sym_cmd_identifier_token9] = ACTIONS(2494), - [aux_sym_cmd_identifier_token10] = ACTIONS(2494), - [aux_sym_cmd_identifier_token11] = ACTIONS(2494), - [aux_sym_cmd_identifier_token12] = ACTIONS(2494), - [aux_sym_cmd_identifier_token13] = ACTIONS(2494), - [aux_sym_cmd_identifier_token14] = ACTIONS(2494), - [aux_sym_cmd_identifier_token15] = ACTIONS(2494), - [aux_sym_cmd_identifier_token16] = ACTIONS(2494), - [aux_sym_cmd_identifier_token17] = ACTIONS(2494), - [aux_sym_cmd_identifier_token18] = ACTIONS(2494), - [aux_sym_cmd_identifier_token19] = ACTIONS(2494), - [aux_sym_cmd_identifier_token20] = ACTIONS(2494), - [aux_sym_cmd_identifier_token21] = ACTIONS(2494), - [aux_sym_cmd_identifier_token22] = ACTIONS(2494), - [aux_sym_cmd_identifier_token23] = ACTIONS(2494), - [aux_sym_cmd_identifier_token24] = ACTIONS(2494), - [aux_sym_cmd_identifier_token25] = ACTIONS(2494), - [aux_sym_cmd_identifier_token26] = ACTIONS(2494), - [aux_sym_cmd_identifier_token27] = ACTIONS(2494), - [aux_sym_cmd_identifier_token28] = ACTIONS(2494), - [aux_sym_cmd_identifier_token29] = ACTIONS(2494), - [aux_sym_cmd_identifier_token30] = ACTIONS(2494), - [aux_sym_cmd_identifier_token31] = ACTIONS(2494), - [aux_sym_cmd_identifier_token32] = ACTIONS(2494), - [aux_sym_cmd_identifier_token33] = ACTIONS(2494), - [aux_sym_cmd_identifier_token34] = ACTIONS(2494), - [aux_sym_cmd_identifier_token35] = ACTIONS(2494), - [aux_sym_cmd_identifier_token36] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2494), - [anon_sym_false] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2494), - [aux_sym_cmd_identifier_token38] = ACTIONS(2494), - [aux_sym_cmd_identifier_token39] = ACTIONS(2494), - [aux_sym_cmd_identifier_token40] = ACTIONS(2494), - [anon_sym_def] = ACTIONS(2494), - [anon_sym_export_DASHenv] = ACTIONS(2494), - [anon_sym_extern] = ACTIONS(2494), - [anon_sym_module] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2494), - [anon_sym_error] = ACTIONS(2494), - [anon_sym_list] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_in] = ACTIONS(2494), - [anon_sym_loop] = ACTIONS(2494), - [anon_sym_make] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_do] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_else] = ACTIONS(2494), - [anon_sym_match] = ACTIONS(2494), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2494), - [anon_sym_catch] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_source] = ACTIONS(2494), - [anon_sym_source_DASHenv] = ACTIONS(2494), - [anon_sym_register] = ACTIONS(2494), - [anon_sym_hide] = ACTIONS(2494), - [anon_sym_hide_DASHenv] = ACTIONS(2494), - [anon_sym_overlay] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_as] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2494), - [aux_sym__val_number_decimal_token1] = ACTIONS(2494), - [aux_sym__val_number_decimal_token2] = ACTIONS(2494), - [aux_sym__val_number_decimal_token3] = ACTIONS(2494), - [aux_sym__val_number_decimal_token4] = ACTIONS(2494), - [aux_sym__val_number_token1] = ACTIONS(2494), - [aux_sym__val_number_token2] = ACTIONS(2494), - [aux_sym__val_number_token3] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2494), - [sym__str_single_quotes] = ACTIONS(2494), - [sym__str_back_ticks] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2494), - [sym__entry_separator] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2496), + [703] = { + [sym_comment] = STATE(703), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_alias] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_let_DASHenv] = ACTIONS(2167), + [anon_sym_mut] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [aux_sym_cmd_identifier_token1] = ACTIONS(2167), + [aux_sym_cmd_identifier_token2] = ACTIONS(2173), + [aux_sym_cmd_identifier_token3] = ACTIONS(2173), + [aux_sym_cmd_identifier_token4] = ACTIONS(2173), + [aux_sym_cmd_identifier_token5] = ACTIONS(2173), + [aux_sym_cmd_identifier_token6] = ACTIONS(2173), + [aux_sym_cmd_identifier_token7] = ACTIONS(2173), + [aux_sym_cmd_identifier_token8] = ACTIONS(2167), + [aux_sym_cmd_identifier_token9] = ACTIONS(2167), + [aux_sym_cmd_identifier_token10] = ACTIONS(2173), + [aux_sym_cmd_identifier_token11] = ACTIONS(2173), + [aux_sym_cmd_identifier_token12] = ACTIONS(2167), + [aux_sym_cmd_identifier_token13] = ACTIONS(2167), + [aux_sym_cmd_identifier_token14] = ACTIONS(2167), + [aux_sym_cmd_identifier_token15] = ACTIONS(2167), + [aux_sym_cmd_identifier_token16] = ACTIONS(2173), + [aux_sym_cmd_identifier_token17] = ACTIONS(2173), + [aux_sym_cmd_identifier_token18] = ACTIONS(2173), + [aux_sym_cmd_identifier_token19] = ACTIONS(2173), + [aux_sym_cmd_identifier_token20] = ACTIONS(2173), + [aux_sym_cmd_identifier_token21] = ACTIONS(2173), + [aux_sym_cmd_identifier_token22] = ACTIONS(2173), + [aux_sym_cmd_identifier_token23] = ACTIONS(2173), + [aux_sym_cmd_identifier_token24] = ACTIONS(2173), + [aux_sym_cmd_identifier_token25] = ACTIONS(2173), + [aux_sym_cmd_identifier_token26] = ACTIONS(2173), + [aux_sym_cmd_identifier_token27] = ACTIONS(2173), + [aux_sym_cmd_identifier_token28] = ACTIONS(2173), + [aux_sym_cmd_identifier_token29] = ACTIONS(2173), + [aux_sym_cmd_identifier_token30] = ACTIONS(2173), + [aux_sym_cmd_identifier_token31] = ACTIONS(2173), + [aux_sym_cmd_identifier_token32] = ACTIONS(2173), + [aux_sym_cmd_identifier_token33] = ACTIONS(2173), + [aux_sym_cmd_identifier_token34] = ACTIONS(2167), + [aux_sym_cmd_identifier_token35] = ACTIONS(2173), + [aux_sym_cmd_identifier_token36] = ACTIONS(2173), + [aux_sym_cmd_identifier_token37] = ACTIONS(2173), + [aux_sym_cmd_identifier_token38] = ACTIONS(2167), + [aux_sym_cmd_identifier_token39] = ACTIONS(2173), + [aux_sym_cmd_identifier_token40] = ACTIONS(2173), + [anon_sym_def] = ACTIONS(2167), + [anon_sym_export_DASHenv] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_use] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2173), + [anon_sym_error] = ACTIONS(2167), + [anon_sym_DASH2] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_in2] = ACTIONS(2167), + [anon_sym_loop] = ACTIONS(2167), + [anon_sym_make] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_catch] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_source] = ACTIONS(2167), + [anon_sym_source_DASHenv] = ACTIONS(2167), + [anon_sym_register] = ACTIONS(2167), + [anon_sym_hide] = ACTIONS(2167), + [anon_sym_hide_DASHenv] = ACTIONS(2167), + [anon_sym_overlay] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_PLUS2] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2167), + [aux_sym__val_number_decimal_token2] = ACTIONS(2173), + [aux_sym__val_number_decimal_token3] = ACTIONS(2173), + [aux_sym__val_number_decimal_token4] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2167), + [aux_sym__val_number_token5] = ACTIONS(2167), + [aux_sym__val_number_token6] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2173), }, - [594] = { - [sym_comment] = STATE(594), - [anon_sym_export] = ACTIONS(2498), - [anon_sym_alias] = ACTIONS(2498), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_let_DASHenv] = ACTIONS(2498), - [anon_sym_mut] = ACTIONS(2498), - [anon_sym_const] = ACTIONS(2498), - [aux_sym_cmd_identifier_token1] = ACTIONS(2498), - [aux_sym_cmd_identifier_token2] = ACTIONS(2498), - [aux_sym_cmd_identifier_token3] = ACTIONS(2498), - [aux_sym_cmd_identifier_token4] = ACTIONS(2498), - [aux_sym_cmd_identifier_token5] = ACTIONS(2498), - [aux_sym_cmd_identifier_token6] = ACTIONS(2498), - [aux_sym_cmd_identifier_token7] = ACTIONS(2498), - [aux_sym_cmd_identifier_token8] = ACTIONS(2498), - [aux_sym_cmd_identifier_token9] = ACTIONS(2498), - [aux_sym_cmd_identifier_token10] = ACTIONS(2498), - [aux_sym_cmd_identifier_token11] = ACTIONS(2498), - [aux_sym_cmd_identifier_token12] = ACTIONS(2498), - [aux_sym_cmd_identifier_token13] = ACTIONS(2498), - [aux_sym_cmd_identifier_token14] = ACTIONS(2498), - [aux_sym_cmd_identifier_token15] = ACTIONS(2498), - [aux_sym_cmd_identifier_token16] = ACTIONS(2498), - [aux_sym_cmd_identifier_token17] = ACTIONS(2498), - [aux_sym_cmd_identifier_token18] = ACTIONS(2498), - [aux_sym_cmd_identifier_token19] = ACTIONS(2498), - [aux_sym_cmd_identifier_token20] = ACTIONS(2498), - [aux_sym_cmd_identifier_token21] = ACTIONS(2498), - [aux_sym_cmd_identifier_token22] = ACTIONS(2498), - [aux_sym_cmd_identifier_token23] = ACTIONS(2498), - [aux_sym_cmd_identifier_token24] = ACTIONS(2498), - [aux_sym_cmd_identifier_token25] = ACTIONS(2498), - [aux_sym_cmd_identifier_token26] = ACTIONS(2498), - [aux_sym_cmd_identifier_token27] = ACTIONS(2498), - [aux_sym_cmd_identifier_token28] = ACTIONS(2498), - [aux_sym_cmd_identifier_token29] = ACTIONS(2498), - [aux_sym_cmd_identifier_token30] = ACTIONS(2498), - [aux_sym_cmd_identifier_token31] = ACTIONS(2498), - [aux_sym_cmd_identifier_token32] = ACTIONS(2498), - [aux_sym_cmd_identifier_token33] = ACTIONS(2498), - [aux_sym_cmd_identifier_token34] = ACTIONS(2498), - [aux_sym_cmd_identifier_token35] = ACTIONS(2498), - [aux_sym_cmd_identifier_token36] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_null] = ACTIONS(2498), - [aux_sym_cmd_identifier_token38] = ACTIONS(2498), - [aux_sym_cmd_identifier_token39] = ACTIONS(2498), - [aux_sym_cmd_identifier_token40] = ACTIONS(2498), - [anon_sym_def] = ACTIONS(2498), - [anon_sym_export_DASHenv] = ACTIONS(2498), - [anon_sym_extern] = ACTIONS(2498), - [anon_sym_module] = ACTIONS(2498), - [anon_sym_use] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2498), - [anon_sym_DOLLAR] = ACTIONS(2498), - [anon_sym_error] = ACTIONS(2498), - [anon_sym_list] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2498), - [anon_sym_continue] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2498), - [anon_sym_in] = ACTIONS(2498), - [anon_sym_loop] = ACTIONS(2498), - [anon_sym_make] = ACTIONS(2498), - [anon_sym_while] = ACTIONS(2498), - [anon_sym_do] = ACTIONS(2498), - [anon_sym_if] = ACTIONS(2498), - [anon_sym_else] = ACTIONS(2498), - [anon_sym_match] = ACTIONS(2498), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2498), - [anon_sym_catch] = ACTIONS(2498), - [anon_sym_return] = ACTIONS(2498), - [anon_sym_source] = ACTIONS(2498), - [anon_sym_source_DASHenv] = ACTIONS(2498), - [anon_sym_register] = ACTIONS(2498), - [anon_sym_hide] = ACTIONS(2498), - [anon_sym_hide_DASHenv] = ACTIONS(2498), - [anon_sym_overlay] = ACTIONS(2498), - [anon_sym_new] = ACTIONS(2498), - [anon_sym_as] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2498), - [aux_sym__val_number_decimal_token1] = ACTIONS(2498), - [aux_sym__val_number_decimal_token2] = ACTIONS(2498), - [aux_sym__val_number_decimal_token3] = ACTIONS(2498), - [aux_sym__val_number_decimal_token4] = ACTIONS(2498), - [aux_sym__val_number_token1] = ACTIONS(2498), - [aux_sym__val_number_token2] = ACTIONS(2498), - [aux_sym__val_number_token3] = ACTIONS(2498), - [anon_sym_DQUOTE] = ACTIONS(2498), - [sym__str_single_quotes] = ACTIONS(2498), - [sym__str_back_ticks] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2498), - [sym__entry_separator] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2500), + [704] = { + [sym_comment] = STATE(704), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_alias] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_let_DASHenv] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [aux_sym_cmd_identifier_token1] = ACTIONS(2175), + [aux_sym_cmd_identifier_token2] = ACTIONS(2181), + [aux_sym_cmd_identifier_token3] = ACTIONS(2181), + [aux_sym_cmd_identifier_token4] = ACTIONS(2181), + [aux_sym_cmd_identifier_token5] = ACTIONS(2181), + [aux_sym_cmd_identifier_token6] = ACTIONS(2181), + [aux_sym_cmd_identifier_token7] = ACTIONS(2181), + [aux_sym_cmd_identifier_token8] = ACTIONS(2175), + [aux_sym_cmd_identifier_token9] = ACTIONS(2175), + [aux_sym_cmd_identifier_token10] = ACTIONS(2181), + [aux_sym_cmd_identifier_token11] = ACTIONS(2181), + [aux_sym_cmd_identifier_token12] = ACTIONS(2175), + [aux_sym_cmd_identifier_token13] = ACTIONS(2175), + [aux_sym_cmd_identifier_token14] = ACTIONS(2175), + [aux_sym_cmd_identifier_token15] = ACTIONS(2175), + [aux_sym_cmd_identifier_token16] = ACTIONS(2181), + [aux_sym_cmd_identifier_token17] = ACTIONS(2181), + [aux_sym_cmd_identifier_token18] = ACTIONS(2181), + [aux_sym_cmd_identifier_token19] = ACTIONS(2181), + [aux_sym_cmd_identifier_token20] = ACTIONS(2181), + [aux_sym_cmd_identifier_token21] = ACTIONS(2181), + [aux_sym_cmd_identifier_token22] = ACTIONS(2181), + [aux_sym_cmd_identifier_token23] = ACTIONS(2181), + [aux_sym_cmd_identifier_token24] = ACTIONS(2181), + [aux_sym_cmd_identifier_token25] = ACTIONS(2181), + [aux_sym_cmd_identifier_token26] = ACTIONS(2181), + [aux_sym_cmd_identifier_token27] = ACTIONS(2181), + [aux_sym_cmd_identifier_token28] = ACTIONS(2181), + [aux_sym_cmd_identifier_token29] = ACTIONS(2181), + [aux_sym_cmd_identifier_token30] = ACTIONS(2181), + [aux_sym_cmd_identifier_token31] = ACTIONS(2181), + [aux_sym_cmd_identifier_token32] = ACTIONS(2181), + [aux_sym_cmd_identifier_token33] = ACTIONS(2181), + [aux_sym_cmd_identifier_token34] = ACTIONS(2175), + [aux_sym_cmd_identifier_token35] = ACTIONS(2181), + [aux_sym_cmd_identifier_token36] = ACTIONS(2181), + [aux_sym_cmd_identifier_token37] = ACTIONS(2181), + [aux_sym_cmd_identifier_token38] = ACTIONS(2175), + [aux_sym_cmd_identifier_token39] = ACTIONS(2181), + [aux_sym_cmd_identifier_token40] = ACTIONS(2181), + [anon_sym_def] = ACTIONS(2175), + [anon_sym_export_DASHenv] = ACTIONS(2175), + [anon_sym_extern] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_use] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2181), + [anon_sym_error] = ACTIONS(2175), + [anon_sym_DASH2] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_in2] = ACTIONS(2175), + [anon_sym_loop] = ACTIONS(2175), + [anon_sym_make] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_catch] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_source] = ACTIONS(2175), + [anon_sym_source_DASHenv] = ACTIONS(2175), + [anon_sym_register] = ACTIONS(2175), + [anon_sym_hide] = ACTIONS(2175), + [anon_sym_hide_DASHenv] = ACTIONS(2175), + [anon_sym_overlay] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_PLUS2] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2181), + [aux_sym__val_number_decimal_token1] = ACTIONS(2175), + [aux_sym__val_number_decimal_token2] = ACTIONS(2181), + [aux_sym__val_number_decimal_token3] = ACTIONS(2181), + [aux_sym__val_number_decimal_token4] = ACTIONS(2181), + [aux_sym__val_number_token1] = ACTIONS(2181), + [aux_sym__val_number_token2] = ACTIONS(2181), + [aux_sym__val_number_token3] = ACTIONS(2181), + [aux_sym__val_number_token4] = ACTIONS(2175), + [aux_sym__val_number_token5] = ACTIONS(2175), + [aux_sym__val_number_token6] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2181), + [sym__str_single_quotes] = ACTIONS(2181), + [sym__str_back_ticks] = ACTIONS(2181), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2181), }, - [595] = { - [sym_comment] = STATE(595), - [anon_sym_export] = ACTIONS(2502), - [anon_sym_alias] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_let_DASHenv] = ACTIONS(2502), - [anon_sym_mut] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [aux_sym_cmd_identifier_token1] = ACTIONS(2502), + [705] = { + [sym_comment] = STATE(705), + [anon_sym_export] = ACTIONS(2500), + [anon_sym_alias] = ACTIONS(2500), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_let_DASHenv] = ACTIONS(2500), + [anon_sym_mut] = ACTIONS(2500), + [anon_sym_const] = ACTIONS(2500), + [aux_sym_cmd_identifier_token1] = ACTIONS(2500), [aux_sym_cmd_identifier_token2] = ACTIONS(2502), [aux_sym_cmd_identifier_token3] = ACTIONS(2502), [aux_sym_cmd_identifier_token4] = ACTIONS(2502), [aux_sym_cmd_identifier_token5] = ACTIONS(2502), [aux_sym_cmd_identifier_token6] = ACTIONS(2502), [aux_sym_cmd_identifier_token7] = ACTIONS(2502), - [aux_sym_cmd_identifier_token8] = ACTIONS(2502), - [aux_sym_cmd_identifier_token9] = ACTIONS(2502), + [aux_sym_cmd_identifier_token8] = ACTIONS(2500), + [aux_sym_cmd_identifier_token9] = ACTIONS(2500), [aux_sym_cmd_identifier_token10] = ACTIONS(2502), [aux_sym_cmd_identifier_token11] = ACTIONS(2502), - [aux_sym_cmd_identifier_token12] = ACTIONS(2502), - [aux_sym_cmd_identifier_token13] = ACTIONS(2502), - [aux_sym_cmd_identifier_token14] = ACTIONS(2502), - [aux_sym_cmd_identifier_token15] = ACTIONS(2502), + [aux_sym_cmd_identifier_token12] = ACTIONS(2500), + [aux_sym_cmd_identifier_token13] = ACTIONS(2500), + [aux_sym_cmd_identifier_token14] = ACTIONS(2500), + [aux_sym_cmd_identifier_token15] = ACTIONS(2500), [aux_sym_cmd_identifier_token16] = ACTIONS(2502), [aux_sym_cmd_identifier_token17] = ACTIONS(2502), [aux_sym_cmd_identifier_token18] = ACTIONS(2502), @@ -142784,190 +150426,681 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2502), [aux_sym_cmd_identifier_token32] = ACTIONS(2502), [aux_sym_cmd_identifier_token33] = ACTIONS(2502), - [aux_sym_cmd_identifier_token34] = ACTIONS(2502), + [aux_sym_cmd_identifier_token34] = ACTIONS(2500), [aux_sym_cmd_identifier_token35] = ACTIONS(2502), [aux_sym_cmd_identifier_token36] = ACTIONS(2502), - [anon_sym_true] = ACTIONS(2502), - [anon_sym_false] = ACTIONS(2502), - [anon_sym_null] = ACTIONS(2502), - [aux_sym_cmd_identifier_token38] = ACTIONS(2502), + [aux_sym_cmd_identifier_token37] = ACTIONS(2502), + [aux_sym_cmd_identifier_token38] = ACTIONS(2500), [aux_sym_cmd_identifier_token39] = ACTIONS(2502), [aux_sym_cmd_identifier_token40] = ACTIONS(2502), - [anon_sym_def] = ACTIONS(2502), - [anon_sym_export_DASHenv] = ACTIONS(2502), - [anon_sym_extern] = ACTIONS(2502), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_use] = ACTIONS(2502), + [anon_sym_def] = ACTIONS(2500), + [anon_sym_export_DASHenv] = ACTIONS(2500), + [anon_sym_extern] = ACTIONS(2500), + [anon_sym_module] = ACTIONS(2500), + [anon_sym_use] = ACTIONS(2500), [anon_sym_LPAREN] = ACTIONS(2502), [anon_sym_DOLLAR] = ACTIONS(2502), - [anon_sym_error] = ACTIONS(2502), - [anon_sym_list] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_in] = ACTIONS(2502), - [anon_sym_loop] = ACTIONS(2502), - [anon_sym_make] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_do] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_else] = ACTIONS(2502), - [anon_sym_match] = ACTIONS(2502), + [anon_sym_error] = ACTIONS(2500), + [anon_sym_DASH2] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_in2] = ACTIONS(2500), + [anon_sym_loop] = ACTIONS(2500), + [anon_sym_make] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_do] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_else] = ACTIONS(2500), + [anon_sym_match] = ACTIONS(2500), [anon_sym_RBRACE] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_catch] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_source] = ACTIONS(2502), - [anon_sym_source_DASHenv] = ACTIONS(2502), - [anon_sym_register] = ACTIONS(2502), - [anon_sym_hide] = ACTIONS(2502), - [anon_sym_hide_DASHenv] = ACTIONS(2502), - [anon_sym_overlay] = ACTIONS(2502), - [anon_sym_new] = ACTIONS(2502), - [anon_sym_as] = ACTIONS(2502), + [anon_sym_try] = ACTIONS(2500), + [anon_sym_catch] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_source] = ACTIONS(2500), + [anon_sym_source_DASHenv] = ACTIONS(2500), + [anon_sym_register] = ACTIONS(2500), + [anon_sym_hide] = ACTIONS(2500), + [anon_sym_hide_DASHenv] = ACTIONS(2500), + [anon_sym_overlay] = ACTIONS(2500), + [anon_sym_as] = ACTIONS(2500), + [anon_sym_PLUS2] = ACTIONS(2500), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2502), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2502), - [aux_sym__val_number_decimal_token1] = ACTIONS(2502), + [aux_sym__val_number_decimal_token1] = ACTIONS(2500), [aux_sym__val_number_decimal_token2] = ACTIONS(2502), [aux_sym__val_number_decimal_token3] = ACTIONS(2502), [aux_sym__val_number_decimal_token4] = ACTIONS(2502), [aux_sym__val_number_token1] = ACTIONS(2502), [aux_sym__val_number_token2] = ACTIONS(2502), [aux_sym__val_number_token3] = ACTIONS(2502), + [aux_sym__val_number_token4] = ACTIONS(2500), + [aux_sym__val_number_token5] = ACTIONS(2500), + [aux_sym__val_number_token6] = ACTIONS(2500), [anon_sym_DQUOTE] = ACTIONS(2502), [sym__str_single_quotes] = ACTIONS(2502), [sym__str_back_ticks] = ACTIONS(2502), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2502), - [sym__entry_separator] = ACTIONS(2504), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2504), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2502), }, - [596] = { - [sym_comment] = STATE(596), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_alias] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_let_DASHenv] = ACTIONS(2494), - [anon_sym_mut] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [aux_sym_cmd_identifier_token1] = ACTIONS(2494), - [aux_sym_cmd_identifier_token2] = ACTIONS(2494), - [aux_sym_cmd_identifier_token3] = ACTIONS(2494), - [aux_sym_cmd_identifier_token4] = ACTIONS(2494), - [aux_sym_cmd_identifier_token5] = ACTIONS(2494), - [aux_sym_cmd_identifier_token6] = ACTIONS(2494), - [aux_sym_cmd_identifier_token7] = ACTIONS(2494), - [aux_sym_cmd_identifier_token8] = ACTIONS(2494), - [aux_sym_cmd_identifier_token9] = ACTIONS(2494), - [aux_sym_cmd_identifier_token10] = ACTIONS(2494), - [aux_sym_cmd_identifier_token11] = ACTIONS(2494), - [aux_sym_cmd_identifier_token12] = ACTIONS(2494), - [aux_sym_cmd_identifier_token13] = ACTIONS(2494), - [aux_sym_cmd_identifier_token14] = ACTIONS(2494), - [aux_sym_cmd_identifier_token15] = ACTIONS(2494), - [aux_sym_cmd_identifier_token16] = ACTIONS(2494), - [aux_sym_cmd_identifier_token17] = ACTIONS(2494), - [aux_sym_cmd_identifier_token18] = ACTIONS(2494), - [aux_sym_cmd_identifier_token19] = ACTIONS(2494), - [aux_sym_cmd_identifier_token20] = ACTIONS(2494), - [aux_sym_cmd_identifier_token21] = ACTIONS(2494), - [aux_sym_cmd_identifier_token22] = ACTIONS(2494), - [aux_sym_cmd_identifier_token23] = ACTIONS(2494), - [aux_sym_cmd_identifier_token24] = ACTIONS(2494), - [aux_sym_cmd_identifier_token25] = ACTIONS(2494), - [aux_sym_cmd_identifier_token26] = ACTIONS(2494), - [aux_sym_cmd_identifier_token27] = ACTIONS(2494), - [aux_sym_cmd_identifier_token28] = ACTIONS(2494), - [aux_sym_cmd_identifier_token29] = ACTIONS(2494), - [aux_sym_cmd_identifier_token30] = ACTIONS(2494), - [aux_sym_cmd_identifier_token31] = ACTIONS(2494), - [aux_sym_cmd_identifier_token32] = ACTIONS(2494), - [aux_sym_cmd_identifier_token33] = ACTIONS(2494), - [aux_sym_cmd_identifier_token34] = ACTIONS(2494), - [aux_sym_cmd_identifier_token35] = ACTIONS(2494), - [aux_sym_cmd_identifier_token36] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2494), - [anon_sym_false] = ACTIONS(2494), - [anon_sym_null] = ACTIONS(2494), - [aux_sym_cmd_identifier_token38] = ACTIONS(2494), - [aux_sym_cmd_identifier_token39] = ACTIONS(2494), - [aux_sym_cmd_identifier_token40] = ACTIONS(2494), - [anon_sym_def] = ACTIONS(2494), - [anon_sym_export_DASHenv] = ACTIONS(2494), - [anon_sym_extern] = ACTIONS(2494), - [anon_sym_module] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2494), - [anon_sym_error] = ACTIONS(2494), - [anon_sym_list] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_in] = ACTIONS(2494), - [anon_sym_loop] = ACTIONS(2494), - [anon_sym_make] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_do] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_else] = ACTIONS(2494), - [anon_sym_match] = ACTIONS(2494), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2494), - [anon_sym_catch] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_source] = ACTIONS(2494), - [anon_sym_source_DASHenv] = ACTIONS(2494), - [anon_sym_register] = ACTIONS(2494), - [anon_sym_hide] = ACTIONS(2494), - [anon_sym_hide_DASHenv] = ACTIONS(2494), - [anon_sym_overlay] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_as] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2494), - [aux_sym__val_number_decimal_token1] = ACTIONS(2494), - [aux_sym__val_number_decimal_token2] = ACTIONS(2494), - [aux_sym__val_number_decimal_token3] = ACTIONS(2494), - [aux_sym__val_number_decimal_token4] = ACTIONS(2494), - [aux_sym__val_number_token1] = ACTIONS(2494), - [aux_sym__val_number_token2] = ACTIONS(2494), - [aux_sym__val_number_token3] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2494), - [sym__str_single_quotes] = ACTIONS(2494), - [sym__str_back_ticks] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2494), - [sym__entry_separator] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2496), + [706] = { + [sym_comment] = STATE(706), + [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(2139), + [aux_sym_cmd_identifier_token3] = ACTIONS(2139), + [aux_sym_cmd_identifier_token4] = ACTIONS(2139), + [aux_sym_cmd_identifier_token5] = ACTIONS(2139), + [aux_sym_cmd_identifier_token6] = ACTIONS(2139), + [aux_sym_cmd_identifier_token7] = ACTIONS(2139), + [aux_sym_cmd_identifier_token8] = ACTIONS(2133), + [aux_sym_cmd_identifier_token9] = ACTIONS(2133), + [aux_sym_cmd_identifier_token10] = ACTIONS(2139), + [aux_sym_cmd_identifier_token11] = ACTIONS(2139), + [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(2139), + [aux_sym_cmd_identifier_token17] = ACTIONS(2139), + [aux_sym_cmd_identifier_token18] = ACTIONS(2139), + [aux_sym_cmd_identifier_token19] = ACTIONS(2139), + [aux_sym_cmd_identifier_token20] = ACTIONS(2139), + [aux_sym_cmd_identifier_token21] = ACTIONS(2139), + [aux_sym_cmd_identifier_token22] = ACTIONS(2139), + [aux_sym_cmd_identifier_token23] = ACTIONS(2139), + [aux_sym_cmd_identifier_token24] = ACTIONS(2139), + [aux_sym_cmd_identifier_token25] = ACTIONS(2139), + [aux_sym_cmd_identifier_token26] = ACTIONS(2139), + [aux_sym_cmd_identifier_token27] = ACTIONS(2139), + [aux_sym_cmd_identifier_token28] = ACTIONS(2139), + [aux_sym_cmd_identifier_token29] = ACTIONS(2139), + [aux_sym_cmd_identifier_token30] = ACTIONS(2139), + [aux_sym_cmd_identifier_token31] = ACTIONS(2139), + [aux_sym_cmd_identifier_token32] = ACTIONS(2139), + [aux_sym_cmd_identifier_token33] = ACTIONS(2139), + [aux_sym_cmd_identifier_token34] = ACTIONS(2133), + [aux_sym_cmd_identifier_token35] = ACTIONS(2139), + [aux_sym_cmd_identifier_token36] = ACTIONS(2139), + [aux_sym_cmd_identifier_token37] = ACTIONS(2139), + [aux_sym_cmd_identifier_token38] = ACTIONS(2133), + [aux_sym_cmd_identifier_token39] = ACTIONS(2139), + [aux_sym_cmd_identifier_token40] = ACTIONS(2139), + [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(2139), + [anon_sym_DOLLAR] = ACTIONS(2139), + [anon_sym_error] = ACTIONS(2133), + [anon_sym_DASH2] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_in2] = 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(2139), + [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_as] = ACTIONS(2133), + [anon_sym_PLUS2] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2139), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2139), + [aux_sym__val_number_decimal_token1] = ACTIONS(2133), + [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), + [aux_sym__val_number_token4] = ACTIONS(2133), + [aux_sym__val_number_token5] = ACTIONS(2133), + [aux_sym__val_number_token6] = ACTIONS(2133), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2139), }, - [597] = { - [sym_comment] = STATE(597), - [anon_sym_export] = ACTIONS(2506), - [anon_sym_alias] = ACTIONS(2506), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_let_DASHenv] = ACTIONS(2506), - [anon_sym_mut] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [aux_sym_cmd_identifier_token1] = ACTIONS(2506), + [707] = { + [sym_comment] = STATE(707), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_alias] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_let_DASHenv] = ACTIONS(1290), + [anon_sym_mut] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [aux_sym_cmd_identifier_token1] = ACTIONS(1290), + [aux_sym_cmd_identifier_token2] = ACTIONS(1288), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [aux_sym_cmd_identifier_token6] = ACTIONS(1288), + [aux_sym_cmd_identifier_token7] = ACTIONS(1288), + [aux_sym_cmd_identifier_token8] = ACTIONS(1290), + [aux_sym_cmd_identifier_token9] = ACTIONS(1290), + [aux_sym_cmd_identifier_token10] = ACTIONS(1288), + [aux_sym_cmd_identifier_token11] = ACTIONS(1288), + [aux_sym_cmd_identifier_token12] = ACTIONS(1290), + [aux_sym_cmd_identifier_token13] = ACTIONS(1290), + [aux_sym_cmd_identifier_token14] = ACTIONS(1290), + [aux_sym_cmd_identifier_token15] = ACTIONS(1290), + [aux_sym_cmd_identifier_token16] = ACTIONS(1288), + [aux_sym_cmd_identifier_token17] = ACTIONS(1288), + [aux_sym_cmd_identifier_token18] = ACTIONS(1288), + [aux_sym_cmd_identifier_token19] = ACTIONS(1288), + [aux_sym_cmd_identifier_token20] = ACTIONS(1288), + [aux_sym_cmd_identifier_token21] = ACTIONS(1288), + [aux_sym_cmd_identifier_token22] = ACTIONS(1288), + [aux_sym_cmd_identifier_token23] = ACTIONS(1288), + [aux_sym_cmd_identifier_token24] = ACTIONS(1288), + [aux_sym_cmd_identifier_token25] = ACTIONS(1288), + [aux_sym_cmd_identifier_token26] = ACTIONS(1288), + [aux_sym_cmd_identifier_token27] = ACTIONS(1288), + [aux_sym_cmd_identifier_token28] = ACTIONS(1288), + [aux_sym_cmd_identifier_token29] = ACTIONS(1288), + [aux_sym_cmd_identifier_token30] = ACTIONS(1288), + [aux_sym_cmd_identifier_token31] = ACTIONS(1288), + [aux_sym_cmd_identifier_token32] = ACTIONS(1288), + [aux_sym_cmd_identifier_token33] = ACTIONS(1288), + [aux_sym_cmd_identifier_token34] = ACTIONS(1290), + [aux_sym_cmd_identifier_token35] = ACTIONS(1288), + [aux_sym_cmd_identifier_token36] = ACTIONS(1288), + [aux_sym_cmd_identifier_token37] = ACTIONS(1288), + [aux_sym_cmd_identifier_token38] = ACTIONS(1290), + [aux_sym_cmd_identifier_token39] = ACTIONS(1288), + [aux_sym_cmd_identifier_token40] = ACTIONS(1288), + [sym__newline] = ACTIONS(1288), + [anon_sym_def] = ACTIONS(1290), + [anon_sym_export_DASHenv] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_use] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1288), + [anon_sym_error] = ACTIONS(1290), + [anon_sym_DASH2] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_in2] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1290), + [anon_sym_make] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_try] = ACTIONS(1290), + [anon_sym_catch] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_source] = ACTIONS(1290), + [anon_sym_source_DASHenv] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_hide] = ACTIONS(1290), + [anon_sym_hide_DASHenv] = ACTIONS(1290), + [anon_sym_overlay] = ACTIONS(1290), + [anon_sym_as] = ACTIONS(1290), + [anon_sym_PLUS2] = ACTIONS(1290), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1288), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1288), + [aux_sym__val_number_decimal_token1] = ACTIONS(1290), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1288), + [aux_sym__val_number_token1] = ACTIONS(1288), + [aux_sym__val_number_token2] = ACTIONS(1288), + [aux_sym__val_number_token3] = ACTIONS(1288), + [aux_sym__val_number_token4] = ACTIONS(1290), + [aux_sym__val_number_token5] = ACTIONS(1290), + [aux_sym__val_number_token6] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym__str_single_quotes] = ACTIONS(1288), + [sym__str_back_ticks] = ACTIONS(1288), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1288), + }, + [708] = { + [sym_comment] = STATE(708), + [anon_sym_export] = ACTIONS(2472), + [anon_sym_alias] = ACTIONS(2472), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_let_DASHenv] = ACTIONS(2472), + [anon_sym_mut] = ACTIONS(2472), + [anon_sym_const] = ACTIONS(2472), + [aux_sym_cmd_identifier_token1] = ACTIONS(2472), + [aux_sym_cmd_identifier_token2] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2474), + [aux_sym_cmd_identifier_token4] = ACTIONS(2474), + [aux_sym_cmd_identifier_token5] = ACTIONS(2474), + [aux_sym_cmd_identifier_token6] = ACTIONS(2474), + [aux_sym_cmd_identifier_token7] = ACTIONS(2474), + [aux_sym_cmd_identifier_token8] = ACTIONS(2472), + [aux_sym_cmd_identifier_token9] = ACTIONS(2472), + [aux_sym_cmd_identifier_token10] = ACTIONS(2474), + [aux_sym_cmd_identifier_token11] = ACTIONS(2474), + [aux_sym_cmd_identifier_token12] = ACTIONS(2472), + [aux_sym_cmd_identifier_token13] = ACTIONS(2472), + [aux_sym_cmd_identifier_token14] = ACTIONS(2472), + [aux_sym_cmd_identifier_token15] = ACTIONS(2472), + [aux_sym_cmd_identifier_token16] = ACTIONS(2474), + [aux_sym_cmd_identifier_token17] = ACTIONS(2474), + [aux_sym_cmd_identifier_token18] = ACTIONS(2474), + [aux_sym_cmd_identifier_token19] = ACTIONS(2474), + [aux_sym_cmd_identifier_token20] = ACTIONS(2474), + [aux_sym_cmd_identifier_token21] = ACTIONS(2474), + [aux_sym_cmd_identifier_token22] = ACTIONS(2474), + [aux_sym_cmd_identifier_token23] = ACTIONS(2474), + [aux_sym_cmd_identifier_token24] = ACTIONS(2474), + [aux_sym_cmd_identifier_token25] = ACTIONS(2474), + [aux_sym_cmd_identifier_token26] = ACTIONS(2474), + [aux_sym_cmd_identifier_token27] = ACTIONS(2474), + [aux_sym_cmd_identifier_token28] = ACTIONS(2474), + [aux_sym_cmd_identifier_token29] = ACTIONS(2474), + [aux_sym_cmd_identifier_token30] = ACTIONS(2474), + [aux_sym_cmd_identifier_token31] = ACTIONS(2474), + [aux_sym_cmd_identifier_token32] = ACTIONS(2474), + [aux_sym_cmd_identifier_token33] = ACTIONS(2474), + [aux_sym_cmd_identifier_token34] = ACTIONS(2472), + [aux_sym_cmd_identifier_token35] = ACTIONS(2474), + [aux_sym_cmd_identifier_token36] = ACTIONS(2474), + [aux_sym_cmd_identifier_token37] = ACTIONS(2474), + [aux_sym_cmd_identifier_token38] = ACTIONS(2472), + [aux_sym_cmd_identifier_token39] = ACTIONS(2474), + [aux_sym_cmd_identifier_token40] = ACTIONS(2474), + [anon_sym_def] = ACTIONS(2472), + [anon_sym_export_DASHenv] = ACTIONS(2472), + [anon_sym_extern] = ACTIONS(2472), + [anon_sym_module] = ACTIONS(2472), + [anon_sym_use] = ACTIONS(2472), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_DOLLAR] = ACTIONS(2474), + [anon_sym_error] = ACTIONS(2472), + [anon_sym_DASH2] = ACTIONS(2472), + [anon_sym_break] = ACTIONS(2472), + [anon_sym_continue] = ACTIONS(2472), + [anon_sym_for] = ACTIONS(2472), + [anon_sym_in2] = ACTIONS(2472), + [anon_sym_loop] = ACTIONS(2472), + [anon_sym_make] = ACTIONS(2472), + [anon_sym_while] = ACTIONS(2472), + [anon_sym_do] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_else] = ACTIONS(2472), + [anon_sym_match] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2472), + [anon_sym_catch] = ACTIONS(2472), + [anon_sym_return] = ACTIONS(2472), + [anon_sym_source] = ACTIONS(2472), + [anon_sym_source_DASHenv] = ACTIONS(2472), + [anon_sym_register] = ACTIONS(2472), + [anon_sym_hide] = ACTIONS(2472), + [anon_sym_hide_DASHenv] = ACTIONS(2472), + [anon_sym_overlay] = ACTIONS(2472), + [anon_sym_as] = ACTIONS(2472), + [anon_sym_PLUS2] = ACTIONS(2472), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2474), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2474), + [aux_sym__val_number_decimal_token1] = ACTIONS(2472), + [aux_sym__val_number_decimal_token2] = ACTIONS(2474), + [aux_sym__val_number_decimal_token3] = ACTIONS(2474), + [aux_sym__val_number_decimal_token4] = ACTIONS(2474), + [aux_sym__val_number_token1] = ACTIONS(2474), + [aux_sym__val_number_token2] = ACTIONS(2474), + [aux_sym__val_number_token3] = ACTIONS(2474), + [aux_sym__val_number_token4] = ACTIONS(2472), + [aux_sym__val_number_token5] = ACTIONS(2472), + [aux_sym__val_number_token6] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2474), + [sym__str_single_quotes] = ACTIONS(2474), + [sym__str_back_ticks] = ACTIONS(2474), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2474), + }, + [709] = { + [sym_comment] = STATE(709), + [anon_sym_export] = ACTIONS(2347), + [anon_sym_alias] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_let_DASHenv] = ACTIONS(2347), + [anon_sym_mut] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [aux_sym_cmd_identifier_token1] = ACTIONS(2347), + [aux_sym_cmd_identifier_token2] = ACTIONS(2349), + [aux_sym_cmd_identifier_token3] = ACTIONS(2349), + [aux_sym_cmd_identifier_token4] = ACTIONS(2349), + [aux_sym_cmd_identifier_token5] = ACTIONS(2349), + [aux_sym_cmd_identifier_token6] = ACTIONS(2349), + [aux_sym_cmd_identifier_token7] = ACTIONS(2349), + [aux_sym_cmd_identifier_token8] = ACTIONS(2347), + [aux_sym_cmd_identifier_token9] = ACTIONS(2347), + [aux_sym_cmd_identifier_token10] = ACTIONS(2349), + [aux_sym_cmd_identifier_token11] = ACTIONS(2349), + [aux_sym_cmd_identifier_token12] = ACTIONS(2347), + [aux_sym_cmd_identifier_token13] = ACTIONS(2347), + [aux_sym_cmd_identifier_token14] = ACTIONS(2347), + [aux_sym_cmd_identifier_token15] = ACTIONS(2347), + [aux_sym_cmd_identifier_token16] = ACTIONS(2349), + [aux_sym_cmd_identifier_token17] = ACTIONS(2349), + [aux_sym_cmd_identifier_token18] = ACTIONS(2349), + [aux_sym_cmd_identifier_token19] = ACTIONS(2349), + [aux_sym_cmd_identifier_token20] = ACTIONS(2349), + [aux_sym_cmd_identifier_token21] = ACTIONS(2349), + [aux_sym_cmd_identifier_token22] = ACTIONS(2349), + [aux_sym_cmd_identifier_token23] = ACTIONS(2349), + [aux_sym_cmd_identifier_token24] = ACTIONS(2349), + [aux_sym_cmd_identifier_token25] = ACTIONS(2349), + [aux_sym_cmd_identifier_token26] = ACTIONS(2349), + [aux_sym_cmd_identifier_token27] = ACTIONS(2349), + [aux_sym_cmd_identifier_token28] = ACTIONS(2349), + [aux_sym_cmd_identifier_token29] = ACTIONS(2349), + [aux_sym_cmd_identifier_token30] = ACTIONS(2349), + [aux_sym_cmd_identifier_token31] = ACTIONS(2349), + [aux_sym_cmd_identifier_token32] = ACTIONS(2349), + [aux_sym_cmd_identifier_token33] = ACTIONS(2349), + [aux_sym_cmd_identifier_token34] = ACTIONS(2347), + [aux_sym_cmd_identifier_token35] = ACTIONS(2349), + [aux_sym_cmd_identifier_token36] = ACTIONS(2349), + [aux_sym_cmd_identifier_token37] = ACTIONS(2349), + [aux_sym_cmd_identifier_token38] = ACTIONS(2347), + [aux_sym_cmd_identifier_token39] = ACTIONS(2349), + [aux_sym_cmd_identifier_token40] = ACTIONS(2349), + [anon_sym_def] = ACTIONS(2347), + [anon_sym_export_DASHenv] = ACTIONS(2347), + [anon_sym_extern] = ACTIONS(2347), + [anon_sym_module] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2349), + [anon_sym_error] = ACTIONS(2347), + [anon_sym_DASH2] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_in2] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_make] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [anon_sym_do] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_else] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2347), + [anon_sym_catch] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_source] = ACTIONS(2347), + [anon_sym_source_DASHenv] = ACTIONS(2347), + [anon_sym_register] = ACTIONS(2347), + [anon_sym_hide] = ACTIONS(2347), + [anon_sym_hide_DASHenv] = ACTIONS(2347), + [anon_sym_overlay] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_PLUS2] = ACTIONS(2347), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2347), + [aux_sym__val_number_decimal_token2] = ACTIONS(2349), + [aux_sym__val_number_decimal_token3] = ACTIONS(2349), + [aux_sym__val_number_decimal_token4] = ACTIONS(2349), + [aux_sym__val_number_token1] = ACTIONS(2349), + [aux_sym__val_number_token2] = ACTIONS(2349), + [aux_sym__val_number_token3] = ACTIONS(2349), + [aux_sym__val_number_token4] = ACTIONS(2347), + [aux_sym__val_number_token5] = ACTIONS(2347), + [aux_sym__val_number_token6] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym__str_single_quotes] = ACTIONS(2349), + [sym__str_back_ticks] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2349), + }, + [710] = { + [sym_comment] = STATE(710), + [anon_sym_export] = ACTIONS(2347), + [anon_sym_alias] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_let_DASHenv] = ACTIONS(2347), + [anon_sym_mut] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [aux_sym_cmd_identifier_token1] = ACTIONS(2347), + [aux_sym_cmd_identifier_token2] = ACTIONS(2349), + [aux_sym_cmd_identifier_token3] = ACTIONS(2349), + [aux_sym_cmd_identifier_token4] = ACTIONS(2349), + [aux_sym_cmd_identifier_token5] = ACTIONS(2349), + [aux_sym_cmd_identifier_token6] = ACTIONS(2349), + [aux_sym_cmd_identifier_token7] = ACTIONS(2349), + [aux_sym_cmd_identifier_token8] = ACTIONS(2347), + [aux_sym_cmd_identifier_token9] = ACTIONS(2347), + [aux_sym_cmd_identifier_token10] = ACTIONS(2349), + [aux_sym_cmd_identifier_token11] = ACTIONS(2349), + [aux_sym_cmd_identifier_token12] = ACTIONS(2347), + [aux_sym_cmd_identifier_token13] = ACTIONS(2347), + [aux_sym_cmd_identifier_token14] = ACTIONS(2347), + [aux_sym_cmd_identifier_token15] = ACTIONS(2347), + [aux_sym_cmd_identifier_token16] = ACTIONS(2349), + [aux_sym_cmd_identifier_token17] = ACTIONS(2349), + [aux_sym_cmd_identifier_token18] = ACTIONS(2349), + [aux_sym_cmd_identifier_token19] = ACTIONS(2349), + [aux_sym_cmd_identifier_token20] = ACTIONS(2349), + [aux_sym_cmd_identifier_token21] = ACTIONS(2349), + [aux_sym_cmd_identifier_token22] = ACTIONS(2349), + [aux_sym_cmd_identifier_token23] = ACTIONS(2349), + [aux_sym_cmd_identifier_token24] = ACTIONS(2349), + [aux_sym_cmd_identifier_token25] = ACTIONS(2349), + [aux_sym_cmd_identifier_token26] = ACTIONS(2349), + [aux_sym_cmd_identifier_token27] = ACTIONS(2349), + [aux_sym_cmd_identifier_token28] = ACTIONS(2349), + [aux_sym_cmd_identifier_token29] = ACTIONS(2349), + [aux_sym_cmd_identifier_token30] = ACTIONS(2349), + [aux_sym_cmd_identifier_token31] = ACTIONS(2349), + [aux_sym_cmd_identifier_token32] = ACTIONS(2349), + [aux_sym_cmd_identifier_token33] = ACTIONS(2349), + [aux_sym_cmd_identifier_token34] = ACTIONS(2347), + [aux_sym_cmd_identifier_token35] = ACTIONS(2349), + [aux_sym_cmd_identifier_token36] = ACTIONS(2349), + [aux_sym_cmd_identifier_token37] = ACTIONS(2349), + [aux_sym_cmd_identifier_token38] = ACTIONS(2347), + [aux_sym_cmd_identifier_token39] = ACTIONS(2349), + [aux_sym_cmd_identifier_token40] = ACTIONS(2349), + [anon_sym_def] = ACTIONS(2347), + [anon_sym_export_DASHenv] = ACTIONS(2347), + [anon_sym_extern] = ACTIONS(2347), + [anon_sym_module] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2349), + [anon_sym_error] = ACTIONS(2347), + [anon_sym_DASH2] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_in2] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_make] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [anon_sym_do] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_else] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2347), + [anon_sym_catch] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_source] = ACTIONS(2347), + [anon_sym_source_DASHenv] = ACTIONS(2347), + [anon_sym_register] = ACTIONS(2347), + [anon_sym_hide] = ACTIONS(2347), + [anon_sym_hide_DASHenv] = ACTIONS(2347), + [anon_sym_overlay] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_PLUS2] = ACTIONS(2347), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2347), + [aux_sym__val_number_decimal_token2] = ACTIONS(2349), + [aux_sym__val_number_decimal_token3] = ACTIONS(2349), + [aux_sym__val_number_decimal_token4] = ACTIONS(2349), + [aux_sym__val_number_token1] = ACTIONS(2349), + [aux_sym__val_number_token2] = ACTIONS(2349), + [aux_sym__val_number_token3] = ACTIONS(2349), + [aux_sym__val_number_token4] = ACTIONS(2347), + [aux_sym__val_number_token5] = ACTIONS(2347), + [aux_sym__val_number_token6] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym__str_single_quotes] = ACTIONS(2349), + [sym__str_back_ticks] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2349), + }, + [711] = { + [sym_comment] = STATE(711), + [anon_sym_export] = ACTIONS(2476), + [anon_sym_alias] = ACTIONS(2476), + [anon_sym_let] = ACTIONS(2476), + [anon_sym_let_DASHenv] = ACTIONS(2476), + [anon_sym_mut] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [aux_sym_cmd_identifier_token1] = ACTIONS(2476), + [aux_sym_cmd_identifier_token2] = ACTIONS(2478), + [aux_sym_cmd_identifier_token3] = ACTIONS(2478), + [aux_sym_cmd_identifier_token4] = ACTIONS(2478), + [aux_sym_cmd_identifier_token5] = ACTIONS(2478), + [aux_sym_cmd_identifier_token6] = ACTIONS(2478), + [aux_sym_cmd_identifier_token7] = ACTIONS(2478), + [aux_sym_cmd_identifier_token8] = ACTIONS(2476), + [aux_sym_cmd_identifier_token9] = ACTIONS(2476), + [aux_sym_cmd_identifier_token10] = ACTIONS(2478), + [aux_sym_cmd_identifier_token11] = ACTIONS(2478), + [aux_sym_cmd_identifier_token12] = ACTIONS(2476), + [aux_sym_cmd_identifier_token13] = ACTIONS(2476), + [aux_sym_cmd_identifier_token14] = ACTIONS(2476), + [aux_sym_cmd_identifier_token15] = ACTIONS(2476), + [aux_sym_cmd_identifier_token16] = ACTIONS(2478), + [aux_sym_cmd_identifier_token17] = ACTIONS(2478), + [aux_sym_cmd_identifier_token18] = ACTIONS(2478), + [aux_sym_cmd_identifier_token19] = ACTIONS(2478), + [aux_sym_cmd_identifier_token20] = ACTIONS(2478), + [aux_sym_cmd_identifier_token21] = ACTIONS(2478), + [aux_sym_cmd_identifier_token22] = ACTIONS(2478), + [aux_sym_cmd_identifier_token23] = ACTIONS(2478), + [aux_sym_cmd_identifier_token24] = ACTIONS(2478), + [aux_sym_cmd_identifier_token25] = ACTIONS(2478), + [aux_sym_cmd_identifier_token26] = ACTIONS(2478), + [aux_sym_cmd_identifier_token27] = ACTIONS(2478), + [aux_sym_cmd_identifier_token28] = ACTIONS(2478), + [aux_sym_cmd_identifier_token29] = ACTIONS(2478), + [aux_sym_cmd_identifier_token30] = ACTIONS(2478), + [aux_sym_cmd_identifier_token31] = ACTIONS(2478), + [aux_sym_cmd_identifier_token32] = ACTIONS(2478), + [aux_sym_cmd_identifier_token33] = ACTIONS(2478), + [aux_sym_cmd_identifier_token34] = ACTIONS(2476), + [aux_sym_cmd_identifier_token35] = ACTIONS(2478), + [aux_sym_cmd_identifier_token36] = ACTIONS(2478), + [aux_sym_cmd_identifier_token37] = ACTIONS(2478), + [aux_sym_cmd_identifier_token38] = ACTIONS(2476), + [aux_sym_cmd_identifier_token39] = ACTIONS(2478), + [aux_sym_cmd_identifier_token40] = ACTIONS(2478), + [anon_sym_def] = ACTIONS(2476), + [anon_sym_export_DASHenv] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym_module] = ACTIONS(2476), + [anon_sym_use] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_DOLLAR] = ACTIONS(2478), + [anon_sym_error] = ACTIONS(2476), + [anon_sym_DASH2] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_in2] = ACTIONS(2476), + [anon_sym_loop] = ACTIONS(2476), + [anon_sym_make] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_match] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_source] = ACTIONS(2476), + [anon_sym_source_DASHenv] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_hide] = ACTIONS(2476), + [anon_sym_hide_DASHenv] = ACTIONS(2476), + [anon_sym_overlay] = ACTIONS(2476), + [anon_sym_as] = ACTIONS(2476), + [anon_sym_PLUS2] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2478), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2478), + [aux_sym__val_number_decimal_token1] = ACTIONS(2476), + [aux_sym__val_number_decimal_token2] = ACTIONS(2478), + [aux_sym__val_number_decimal_token3] = ACTIONS(2478), + [aux_sym__val_number_decimal_token4] = ACTIONS(2478), + [aux_sym__val_number_token1] = ACTIONS(2478), + [aux_sym__val_number_token2] = ACTIONS(2478), + [aux_sym__val_number_token3] = ACTIONS(2478), + [aux_sym__val_number_token4] = ACTIONS(2476), + [aux_sym__val_number_token5] = ACTIONS(2476), + [aux_sym__val_number_token6] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym__str_single_quotes] = ACTIONS(2478), + [sym__str_back_ticks] = ACTIONS(2478), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2478), + }, + [712] = { + [sym_comment] = STATE(712), + [anon_sym_export] = ACTIONS(2504), + [anon_sym_alias] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_let_DASHenv] = ACTIONS(2504), + [anon_sym_mut] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [aux_sym_cmd_identifier_token1] = ACTIONS(2504), [aux_sym_cmd_identifier_token2] = ACTIONS(2506), [aux_sym_cmd_identifier_token3] = ACTIONS(2506), [aux_sym_cmd_identifier_token4] = ACTIONS(2506), [aux_sym_cmd_identifier_token5] = ACTIONS(2506), [aux_sym_cmd_identifier_token6] = ACTIONS(2506), [aux_sym_cmd_identifier_token7] = ACTIONS(2506), - [aux_sym_cmd_identifier_token8] = ACTIONS(2506), - [aux_sym_cmd_identifier_token9] = ACTIONS(2506), + [aux_sym_cmd_identifier_token8] = ACTIONS(2504), + [aux_sym_cmd_identifier_token9] = ACTIONS(2504), [aux_sym_cmd_identifier_token10] = ACTIONS(2506), [aux_sym_cmd_identifier_token11] = ACTIONS(2506), - [aux_sym_cmd_identifier_token12] = ACTIONS(2506), - [aux_sym_cmd_identifier_token13] = ACTIONS(2506), - [aux_sym_cmd_identifier_token14] = ACTIONS(2506), - [aux_sym_cmd_identifier_token15] = ACTIONS(2506), + [aux_sym_cmd_identifier_token12] = ACTIONS(2504), + [aux_sym_cmd_identifier_token13] = ACTIONS(2504), + [aux_sym_cmd_identifier_token14] = ACTIONS(2504), + [aux_sym_cmd_identifier_token15] = ACTIONS(2504), [aux_sym_cmd_identifier_token16] = ACTIONS(2506), [aux_sym_cmd_identifier_token17] = ACTIONS(2506), [aux_sym_cmd_identifier_token18] = ACTIONS(2506), @@ -142986,89 +151119,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2506), [aux_sym_cmd_identifier_token32] = ACTIONS(2506), [aux_sym_cmd_identifier_token33] = ACTIONS(2506), - [aux_sym_cmd_identifier_token34] = ACTIONS(2506), + [aux_sym_cmd_identifier_token34] = ACTIONS(2504), [aux_sym_cmd_identifier_token35] = ACTIONS(2506), [aux_sym_cmd_identifier_token36] = ACTIONS(2506), - [anon_sym_true] = ACTIONS(2506), - [anon_sym_false] = ACTIONS(2506), - [anon_sym_null] = ACTIONS(2506), - [aux_sym_cmd_identifier_token38] = ACTIONS(2506), + [aux_sym_cmd_identifier_token37] = ACTIONS(2506), + [aux_sym_cmd_identifier_token38] = ACTIONS(2504), [aux_sym_cmd_identifier_token39] = ACTIONS(2506), [aux_sym_cmd_identifier_token40] = ACTIONS(2506), - [anon_sym_def] = ACTIONS(2506), - [anon_sym_export_DASHenv] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2506), - [anon_sym_module] = ACTIONS(2506), - [anon_sym_use] = ACTIONS(2506), + [anon_sym_def] = ACTIONS(2504), + [anon_sym_export_DASHenv] = ACTIONS(2504), + [anon_sym_extern] = ACTIONS(2504), + [anon_sym_module] = ACTIONS(2504), + [anon_sym_use] = ACTIONS(2504), [anon_sym_LPAREN] = ACTIONS(2506), [anon_sym_DOLLAR] = ACTIONS(2506), - [anon_sym_error] = ACTIONS(2506), - [anon_sym_list] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_in] = ACTIONS(2506), - [anon_sym_loop] = ACTIONS(2506), - [anon_sym_make] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_do] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_else] = ACTIONS(2506), - [anon_sym_match] = ACTIONS(2506), + [anon_sym_error] = ACTIONS(2504), + [anon_sym_DASH2] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_in2] = ACTIONS(2504), + [anon_sym_loop] = ACTIONS(2504), + [anon_sym_make] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_do] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2506), - [anon_sym_catch] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_source] = ACTIONS(2506), - [anon_sym_source_DASHenv] = ACTIONS(2506), - [anon_sym_register] = ACTIONS(2506), - [anon_sym_hide] = ACTIONS(2506), - [anon_sym_hide_DASHenv] = ACTIONS(2506), - [anon_sym_overlay] = ACTIONS(2506), - [anon_sym_new] = ACTIONS(2506), - [anon_sym_as] = ACTIONS(2506), + [anon_sym_try] = ACTIONS(2504), + [anon_sym_catch] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_source] = ACTIONS(2504), + [anon_sym_source_DASHenv] = ACTIONS(2504), + [anon_sym_register] = ACTIONS(2504), + [anon_sym_hide] = ACTIONS(2504), + [anon_sym_hide_DASHenv] = ACTIONS(2504), + [anon_sym_overlay] = ACTIONS(2504), + [anon_sym_as] = ACTIONS(2504), + [anon_sym_PLUS2] = ACTIONS(2504), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2506), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2506), - [aux_sym__val_number_decimal_token1] = ACTIONS(2506), + [aux_sym__val_number_decimal_token1] = ACTIONS(2504), [aux_sym__val_number_decimal_token2] = ACTIONS(2506), [aux_sym__val_number_decimal_token3] = ACTIONS(2506), [aux_sym__val_number_decimal_token4] = ACTIONS(2506), [aux_sym__val_number_token1] = ACTIONS(2506), [aux_sym__val_number_token2] = ACTIONS(2506), [aux_sym__val_number_token3] = ACTIONS(2506), + [aux_sym__val_number_token4] = ACTIONS(2504), + [aux_sym__val_number_token5] = ACTIONS(2504), + [aux_sym__val_number_token6] = ACTIONS(2504), [anon_sym_DQUOTE] = ACTIONS(2506), [sym__str_single_quotes] = ACTIONS(2506), [sym__str_back_ticks] = ACTIONS(2506), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2506), - [sym__entry_separator] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2506), }, - [598] = { - [sym_comment] = STATE(598), - [anon_sym_export] = ACTIONS(2510), - [anon_sym_alias] = ACTIONS(2510), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_let_DASHenv] = ACTIONS(2510), - [anon_sym_mut] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [aux_sym_cmd_identifier_token1] = ACTIONS(2510), + [713] = { + [sym_comment] = STATE(713), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_alias] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_let_DASHenv] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [aux_sym_cmd_identifier_token1] = ACTIONS(2371), + [aux_sym_cmd_identifier_token2] = ACTIONS(2373), + [aux_sym_cmd_identifier_token3] = ACTIONS(2373), + [aux_sym_cmd_identifier_token4] = ACTIONS(2373), + [aux_sym_cmd_identifier_token5] = ACTIONS(2373), + [aux_sym_cmd_identifier_token6] = ACTIONS(2373), + [aux_sym_cmd_identifier_token7] = ACTIONS(2373), + [aux_sym_cmd_identifier_token8] = ACTIONS(2371), + [aux_sym_cmd_identifier_token9] = ACTIONS(2371), + [aux_sym_cmd_identifier_token10] = ACTIONS(2373), + [aux_sym_cmd_identifier_token11] = ACTIONS(2373), + [aux_sym_cmd_identifier_token12] = ACTIONS(2371), + [aux_sym_cmd_identifier_token13] = ACTIONS(2371), + [aux_sym_cmd_identifier_token14] = ACTIONS(2371), + [aux_sym_cmd_identifier_token15] = ACTIONS(2371), + [aux_sym_cmd_identifier_token16] = ACTIONS(2373), + [aux_sym_cmd_identifier_token17] = ACTIONS(2373), + [aux_sym_cmd_identifier_token18] = ACTIONS(2373), + [aux_sym_cmd_identifier_token19] = ACTIONS(2373), + [aux_sym_cmd_identifier_token20] = ACTIONS(2373), + [aux_sym_cmd_identifier_token21] = ACTIONS(2373), + [aux_sym_cmd_identifier_token22] = ACTIONS(2373), + [aux_sym_cmd_identifier_token23] = ACTIONS(2373), + [aux_sym_cmd_identifier_token24] = ACTIONS(2373), + [aux_sym_cmd_identifier_token25] = ACTIONS(2373), + [aux_sym_cmd_identifier_token26] = ACTIONS(2373), + [aux_sym_cmd_identifier_token27] = ACTIONS(2373), + [aux_sym_cmd_identifier_token28] = ACTIONS(2373), + [aux_sym_cmd_identifier_token29] = ACTIONS(2373), + [aux_sym_cmd_identifier_token30] = ACTIONS(2373), + [aux_sym_cmd_identifier_token31] = ACTIONS(2373), + [aux_sym_cmd_identifier_token32] = ACTIONS(2373), + [aux_sym_cmd_identifier_token33] = ACTIONS(2373), + [aux_sym_cmd_identifier_token34] = ACTIONS(2371), + [aux_sym_cmd_identifier_token35] = ACTIONS(2373), + [aux_sym_cmd_identifier_token36] = ACTIONS(2373), + [aux_sym_cmd_identifier_token37] = ACTIONS(2373), + [aux_sym_cmd_identifier_token38] = ACTIONS(2371), + [aux_sym_cmd_identifier_token39] = ACTIONS(2373), + [aux_sym_cmd_identifier_token40] = ACTIONS(2373), + [anon_sym_def] = ACTIONS(2371), + [anon_sym_export_DASHenv] = ACTIONS(2371), + [anon_sym_extern] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_error] = ACTIONS(2371), + [anon_sym_DASH2] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_in2] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_make] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_do] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_else] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2371), + [anon_sym_catch] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_source] = ACTIONS(2371), + [anon_sym_source_DASHenv] = ACTIONS(2371), + [anon_sym_register] = ACTIONS(2371), + [anon_sym_hide] = ACTIONS(2371), + [anon_sym_hide_DASHenv] = ACTIONS(2371), + [anon_sym_overlay] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_PLUS2] = ACTIONS(2371), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2373), + [aux_sym__val_number_decimal_token1] = ACTIONS(2371), + [aux_sym__val_number_decimal_token2] = ACTIONS(2373), + [aux_sym__val_number_decimal_token3] = ACTIONS(2373), + [aux_sym__val_number_decimal_token4] = ACTIONS(2373), + [aux_sym__val_number_token1] = ACTIONS(2373), + [aux_sym__val_number_token2] = ACTIONS(2373), + [aux_sym__val_number_token3] = ACTIONS(2373), + [aux_sym__val_number_token4] = ACTIONS(2371), + [aux_sym__val_number_token5] = ACTIONS(2371), + [aux_sym__val_number_token6] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2373), + [sym__str_single_quotes] = ACTIONS(2373), + [sym__str_back_ticks] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2373), + }, + [714] = { + [sym_comment] = STATE(714), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_alias] = ACTIONS(2492), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_let_DASHenv] = ACTIONS(2492), + [anon_sym_mut] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [aux_sym_cmd_identifier_token1] = ACTIONS(2492), + [aux_sym_cmd_identifier_token2] = ACTIONS(2494), + [aux_sym_cmd_identifier_token3] = ACTIONS(2494), + [aux_sym_cmd_identifier_token4] = ACTIONS(2494), + [aux_sym_cmd_identifier_token5] = ACTIONS(2494), + [aux_sym_cmd_identifier_token6] = ACTIONS(2494), + [aux_sym_cmd_identifier_token7] = ACTIONS(2494), + [aux_sym_cmd_identifier_token8] = ACTIONS(2492), + [aux_sym_cmd_identifier_token9] = ACTIONS(2492), + [aux_sym_cmd_identifier_token10] = ACTIONS(2494), + [aux_sym_cmd_identifier_token11] = ACTIONS(2494), + [aux_sym_cmd_identifier_token12] = ACTIONS(2492), + [aux_sym_cmd_identifier_token13] = ACTIONS(2492), + [aux_sym_cmd_identifier_token14] = ACTIONS(2492), + [aux_sym_cmd_identifier_token15] = ACTIONS(2492), + [aux_sym_cmd_identifier_token16] = ACTIONS(2494), + [aux_sym_cmd_identifier_token17] = ACTIONS(2494), + [aux_sym_cmd_identifier_token18] = ACTIONS(2494), + [aux_sym_cmd_identifier_token19] = ACTIONS(2494), + [aux_sym_cmd_identifier_token20] = ACTIONS(2494), + [aux_sym_cmd_identifier_token21] = ACTIONS(2494), + [aux_sym_cmd_identifier_token22] = ACTIONS(2494), + [aux_sym_cmd_identifier_token23] = ACTIONS(2494), + [aux_sym_cmd_identifier_token24] = ACTIONS(2494), + [aux_sym_cmd_identifier_token25] = ACTIONS(2494), + [aux_sym_cmd_identifier_token26] = ACTIONS(2494), + [aux_sym_cmd_identifier_token27] = ACTIONS(2494), + [aux_sym_cmd_identifier_token28] = ACTIONS(2494), + [aux_sym_cmd_identifier_token29] = ACTIONS(2494), + [aux_sym_cmd_identifier_token30] = ACTIONS(2494), + [aux_sym_cmd_identifier_token31] = ACTIONS(2494), + [aux_sym_cmd_identifier_token32] = ACTIONS(2494), + [aux_sym_cmd_identifier_token33] = ACTIONS(2494), + [aux_sym_cmd_identifier_token34] = ACTIONS(2492), + [aux_sym_cmd_identifier_token35] = ACTIONS(2494), + [aux_sym_cmd_identifier_token36] = ACTIONS(2494), + [aux_sym_cmd_identifier_token37] = ACTIONS(2494), + [aux_sym_cmd_identifier_token38] = ACTIONS(2492), + [aux_sym_cmd_identifier_token39] = ACTIONS(2494), + [aux_sym_cmd_identifier_token40] = ACTIONS(2494), + [anon_sym_def] = ACTIONS(2492), + [anon_sym_export_DASHenv] = ACTIONS(2492), + [anon_sym_extern] = ACTIONS(2492), + [anon_sym_module] = ACTIONS(2492), + [anon_sym_use] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_DOLLAR] = ACTIONS(2494), + [anon_sym_error] = ACTIONS(2492), + [anon_sym_DASH2] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_in2] = ACTIONS(2492), + [anon_sym_loop] = ACTIONS(2492), + [anon_sym_make] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_do] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_else] = ACTIONS(2492), + [anon_sym_match] = ACTIONS(2492), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_catch] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_source] = ACTIONS(2492), + [anon_sym_source_DASHenv] = ACTIONS(2492), + [anon_sym_register] = ACTIONS(2492), + [anon_sym_hide] = ACTIONS(2492), + [anon_sym_hide_DASHenv] = ACTIONS(2492), + [anon_sym_overlay] = ACTIONS(2492), + [anon_sym_as] = ACTIONS(2492), + [anon_sym_PLUS2] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2494), + [aux_sym__val_number_decimal_token1] = ACTIONS(2492), + [aux_sym__val_number_decimal_token2] = ACTIONS(2494), + [aux_sym__val_number_decimal_token3] = ACTIONS(2494), + [aux_sym__val_number_decimal_token4] = ACTIONS(2494), + [aux_sym__val_number_token1] = ACTIONS(2494), + [aux_sym__val_number_token2] = ACTIONS(2494), + [aux_sym__val_number_token3] = ACTIONS(2494), + [aux_sym__val_number_token4] = ACTIONS(2492), + [aux_sym__val_number_token5] = ACTIONS(2492), + [aux_sym__val_number_token6] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2494), + [sym__str_single_quotes] = ACTIONS(2494), + [sym__str_back_ticks] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2494), + }, + [715] = { + [sym_comment] = STATE(715), + [anon_sym_export] = ACTIONS(2508), + [anon_sym_alias] = ACTIONS(2508), + [anon_sym_let] = ACTIONS(2508), + [anon_sym_let_DASHenv] = ACTIONS(2508), + [anon_sym_mut] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [aux_sym_cmd_identifier_token1] = ACTIONS(2508), [aux_sym_cmd_identifier_token2] = ACTIONS(2510), [aux_sym_cmd_identifier_token3] = ACTIONS(2510), [aux_sym_cmd_identifier_token4] = ACTIONS(2510), [aux_sym_cmd_identifier_token5] = ACTIONS(2510), [aux_sym_cmd_identifier_token6] = ACTIONS(2510), [aux_sym_cmd_identifier_token7] = ACTIONS(2510), - [aux_sym_cmd_identifier_token8] = ACTIONS(2510), - [aux_sym_cmd_identifier_token9] = ACTIONS(2510), + [aux_sym_cmd_identifier_token8] = ACTIONS(2508), + [aux_sym_cmd_identifier_token9] = ACTIONS(2508), [aux_sym_cmd_identifier_token10] = ACTIONS(2510), [aux_sym_cmd_identifier_token11] = ACTIONS(2510), - [aux_sym_cmd_identifier_token12] = ACTIONS(2510), - [aux_sym_cmd_identifier_token13] = ACTIONS(2510), - [aux_sym_cmd_identifier_token14] = ACTIONS(2510), - [aux_sym_cmd_identifier_token15] = ACTIONS(2510), + [aux_sym_cmd_identifier_token12] = ACTIONS(2508), + [aux_sym_cmd_identifier_token13] = ACTIONS(2508), + [aux_sym_cmd_identifier_token14] = ACTIONS(2508), + [aux_sym_cmd_identifier_token15] = ACTIONS(2508), [aux_sym_cmd_identifier_token16] = ACTIONS(2510), [aux_sym_cmd_identifier_token17] = ACTIONS(2510), [aux_sym_cmd_identifier_token18] = ACTIONS(2510), @@ -143087,601 +151416,5535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2510), [aux_sym_cmd_identifier_token32] = ACTIONS(2510), [aux_sym_cmd_identifier_token33] = ACTIONS(2510), - [aux_sym_cmd_identifier_token34] = ACTIONS(2510), + [aux_sym_cmd_identifier_token34] = ACTIONS(2508), [aux_sym_cmd_identifier_token35] = ACTIONS(2510), [aux_sym_cmd_identifier_token36] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2510), - [anon_sym_false] = ACTIONS(2510), - [anon_sym_null] = ACTIONS(2510), - [aux_sym_cmd_identifier_token38] = ACTIONS(2510), + [aux_sym_cmd_identifier_token37] = ACTIONS(2510), + [aux_sym_cmd_identifier_token38] = ACTIONS(2508), [aux_sym_cmd_identifier_token39] = ACTIONS(2510), [aux_sym_cmd_identifier_token40] = ACTIONS(2510), - [anon_sym_def] = ACTIONS(2510), - [anon_sym_export_DASHenv] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym_module] = ACTIONS(2510), - [anon_sym_use] = ACTIONS(2510), + [anon_sym_def] = ACTIONS(2508), + [anon_sym_export_DASHenv] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym_module] = ACTIONS(2508), + [anon_sym_use] = ACTIONS(2508), [anon_sym_LPAREN] = ACTIONS(2510), [anon_sym_DOLLAR] = ACTIONS(2510), - [anon_sym_error] = ACTIONS(2510), - [anon_sym_list] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_in] = ACTIONS(2510), - [anon_sym_loop] = ACTIONS(2510), - [anon_sym_make] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_match] = ACTIONS(2510), + [anon_sym_error] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_in2] = ACTIONS(2508), + [anon_sym_loop] = ACTIONS(2508), + [anon_sym_make] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_match] = ACTIONS(2508), [anon_sym_RBRACE] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_catch] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_source] = ACTIONS(2510), - [anon_sym_source_DASHenv] = ACTIONS(2510), - [anon_sym_register] = ACTIONS(2510), - [anon_sym_hide] = ACTIONS(2510), - [anon_sym_hide_DASHenv] = ACTIONS(2510), - [anon_sym_overlay] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_as] = ACTIONS(2510), + [anon_sym_try] = ACTIONS(2508), + [anon_sym_catch] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_source] = ACTIONS(2508), + [anon_sym_source_DASHenv] = ACTIONS(2508), + [anon_sym_register] = ACTIONS(2508), + [anon_sym_hide] = ACTIONS(2508), + [anon_sym_hide_DASHenv] = ACTIONS(2508), + [anon_sym_overlay] = ACTIONS(2508), + [anon_sym_as] = ACTIONS(2508), + [anon_sym_PLUS2] = ACTIONS(2508), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2510), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2510), - [aux_sym__val_number_decimal_token1] = ACTIONS(2510), + [aux_sym__val_number_decimal_token1] = ACTIONS(2508), [aux_sym__val_number_decimal_token2] = ACTIONS(2510), [aux_sym__val_number_decimal_token3] = ACTIONS(2510), [aux_sym__val_number_decimal_token4] = ACTIONS(2510), [aux_sym__val_number_token1] = ACTIONS(2510), [aux_sym__val_number_token2] = ACTIONS(2510), [aux_sym__val_number_token3] = ACTIONS(2510), + [aux_sym__val_number_token4] = ACTIONS(2508), + [aux_sym__val_number_token5] = ACTIONS(2508), + [aux_sym__val_number_token6] = ACTIONS(2508), [anon_sym_DQUOTE] = ACTIONS(2510), [sym__str_single_quotes] = ACTIONS(2510), [sym__str_back_ticks] = ACTIONS(2510), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2510), - [sym__entry_separator] = ACTIONS(2512), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2510), }, - [599] = { - [sym_comment] = STATE(599), - [anon_sym_export] = ACTIONS(2079), - [anon_sym_alias] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_let_DASHenv] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [aux_sym_cmd_identifier_token1] = ACTIONS(2079), - [aux_sym_cmd_identifier_token2] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2079), - [aux_sym_cmd_identifier_token4] = ACTIONS(2079), - [aux_sym_cmd_identifier_token5] = ACTIONS(2079), - [aux_sym_cmd_identifier_token6] = ACTIONS(2079), - [aux_sym_cmd_identifier_token7] = ACTIONS(2079), - [aux_sym_cmd_identifier_token8] = ACTIONS(2079), - [aux_sym_cmd_identifier_token9] = ACTIONS(2079), - [aux_sym_cmd_identifier_token10] = ACTIONS(2079), - [aux_sym_cmd_identifier_token11] = ACTIONS(2079), - [aux_sym_cmd_identifier_token12] = ACTIONS(2079), - [aux_sym_cmd_identifier_token13] = ACTIONS(2079), - [aux_sym_cmd_identifier_token14] = ACTIONS(2079), - [aux_sym_cmd_identifier_token15] = ACTIONS(2079), - [aux_sym_cmd_identifier_token16] = ACTIONS(2079), - [aux_sym_cmd_identifier_token17] = ACTIONS(2079), - [aux_sym_cmd_identifier_token18] = ACTIONS(2079), - [aux_sym_cmd_identifier_token19] = ACTIONS(2079), - [aux_sym_cmd_identifier_token20] = ACTIONS(2079), - [aux_sym_cmd_identifier_token21] = ACTIONS(2079), - [aux_sym_cmd_identifier_token22] = ACTIONS(2079), - [aux_sym_cmd_identifier_token23] = ACTIONS(2079), - [aux_sym_cmd_identifier_token24] = ACTIONS(2079), - [aux_sym_cmd_identifier_token25] = ACTIONS(2079), - [aux_sym_cmd_identifier_token26] = ACTIONS(2079), - [aux_sym_cmd_identifier_token27] = ACTIONS(2079), - [aux_sym_cmd_identifier_token28] = ACTIONS(2079), - [aux_sym_cmd_identifier_token29] = ACTIONS(2079), - [aux_sym_cmd_identifier_token30] = ACTIONS(2079), - [aux_sym_cmd_identifier_token31] = ACTIONS(2079), - [aux_sym_cmd_identifier_token32] = ACTIONS(2079), - [aux_sym_cmd_identifier_token33] = ACTIONS(2079), - [aux_sym_cmd_identifier_token34] = ACTIONS(2079), - [aux_sym_cmd_identifier_token35] = ACTIONS(2079), - [aux_sym_cmd_identifier_token36] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [anon_sym_null] = ACTIONS(2079), - [aux_sym_cmd_identifier_token38] = ACTIONS(2079), - [aux_sym_cmd_identifier_token39] = ACTIONS(2079), - [aux_sym_cmd_identifier_token40] = ACTIONS(2079), - [anon_sym_def] = ACTIONS(2079), - [anon_sym_export_DASHenv] = ACTIONS(2079), - [anon_sym_extern] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_DOLLAR] = ACTIONS(2079), - [anon_sym_error] = ACTIONS(2079), - [anon_sym_list] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_make] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_else] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_catch] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_source] = ACTIONS(2079), - [anon_sym_source_DASHenv] = ACTIONS(2079), - [anon_sym_register] = ACTIONS(2079), - [anon_sym_hide] = ACTIONS(2079), - [anon_sym_hide_DASHenv] = ACTIONS(2079), - [anon_sym_overlay] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2079), - [aux_sym__val_number_decimal_token1] = ACTIONS(2079), - [aux_sym__val_number_decimal_token2] = ACTIONS(2079), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(2079), - [aux_sym__val_number_token2] = ACTIONS(2079), - [aux_sym__val_number_token3] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2079), - [sym__str_single_quotes] = ACTIONS(2079), - [sym__str_back_ticks] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2079), - [sym__entry_separator] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2081), + [716] = { + [sym_comment] = STATE(716), + [anon_sym_export] = ACTIONS(2391), + [anon_sym_alias] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_let_DASHenv] = ACTIONS(2391), + [anon_sym_mut] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [aux_sym_cmd_identifier_token1] = ACTIONS(2391), + [aux_sym_cmd_identifier_token2] = ACTIONS(2393), + [aux_sym_cmd_identifier_token3] = ACTIONS(2393), + [aux_sym_cmd_identifier_token4] = ACTIONS(2393), + [aux_sym_cmd_identifier_token5] = ACTIONS(2393), + [aux_sym_cmd_identifier_token6] = ACTIONS(2393), + [aux_sym_cmd_identifier_token7] = ACTIONS(2393), + [aux_sym_cmd_identifier_token8] = ACTIONS(2391), + [aux_sym_cmd_identifier_token9] = ACTIONS(2391), + [aux_sym_cmd_identifier_token10] = ACTIONS(2393), + [aux_sym_cmd_identifier_token11] = ACTIONS(2393), + [aux_sym_cmd_identifier_token12] = ACTIONS(2391), + [aux_sym_cmd_identifier_token13] = ACTIONS(2391), + [aux_sym_cmd_identifier_token14] = ACTIONS(2391), + [aux_sym_cmd_identifier_token15] = ACTIONS(2391), + [aux_sym_cmd_identifier_token16] = ACTIONS(2393), + [aux_sym_cmd_identifier_token17] = ACTIONS(2393), + [aux_sym_cmd_identifier_token18] = ACTIONS(2393), + [aux_sym_cmd_identifier_token19] = ACTIONS(2393), + [aux_sym_cmd_identifier_token20] = ACTIONS(2393), + [aux_sym_cmd_identifier_token21] = ACTIONS(2393), + [aux_sym_cmd_identifier_token22] = ACTIONS(2393), + [aux_sym_cmd_identifier_token23] = ACTIONS(2393), + [aux_sym_cmd_identifier_token24] = ACTIONS(2393), + [aux_sym_cmd_identifier_token25] = ACTIONS(2393), + [aux_sym_cmd_identifier_token26] = ACTIONS(2393), + [aux_sym_cmd_identifier_token27] = ACTIONS(2393), + [aux_sym_cmd_identifier_token28] = ACTIONS(2393), + [aux_sym_cmd_identifier_token29] = ACTIONS(2393), + [aux_sym_cmd_identifier_token30] = ACTIONS(2393), + [aux_sym_cmd_identifier_token31] = ACTIONS(2393), + [aux_sym_cmd_identifier_token32] = ACTIONS(2393), + [aux_sym_cmd_identifier_token33] = ACTIONS(2393), + [aux_sym_cmd_identifier_token34] = ACTIONS(2391), + [aux_sym_cmd_identifier_token35] = ACTIONS(2393), + [aux_sym_cmd_identifier_token36] = ACTIONS(2393), + [aux_sym_cmd_identifier_token37] = ACTIONS(2393), + [aux_sym_cmd_identifier_token38] = ACTIONS(2391), + [aux_sym_cmd_identifier_token39] = ACTIONS(2393), + [aux_sym_cmd_identifier_token40] = ACTIONS(2393), + [anon_sym_def] = ACTIONS(2391), + [anon_sym_export_DASHenv] = ACTIONS(2391), + [anon_sym_extern] = ACTIONS(2391), + [anon_sym_module] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_error] = ACTIONS(2391), + [anon_sym_DASH2] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_in2] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_make] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [anon_sym_do] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_else] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_try] = ACTIONS(2391), + [anon_sym_catch] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_source] = ACTIONS(2391), + [anon_sym_source_DASHenv] = ACTIONS(2391), + [anon_sym_register] = ACTIONS(2391), + [anon_sym_hide] = ACTIONS(2391), + [anon_sym_hide_DASHenv] = ACTIONS(2391), + [anon_sym_overlay] = ACTIONS(2391), + [anon_sym_as] = ACTIONS(2391), + [anon_sym_PLUS2] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2393), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2391), + [aux_sym__val_number_decimal_token2] = ACTIONS(2393), + [aux_sym__val_number_decimal_token3] = ACTIONS(2393), + [aux_sym__val_number_decimal_token4] = ACTIONS(2393), + [aux_sym__val_number_token1] = ACTIONS(2393), + [aux_sym__val_number_token2] = ACTIONS(2393), + [aux_sym__val_number_token3] = ACTIONS(2393), + [aux_sym__val_number_token4] = ACTIONS(2391), + [aux_sym__val_number_token5] = ACTIONS(2391), + [aux_sym__val_number_token6] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(2393), + [sym__str_single_quotes] = ACTIONS(2393), + [sym__str_back_ticks] = ACTIONS(2393), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2393), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2393), }, - [600] = { - [sym_comment] = STATE(600), - [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(2359), - [anon_sym_false] = ACTIONS(2359), - [anon_sym_null] = ACTIONS(2359), - [aux_sym_cmd_identifier_token38] = ACTIONS(2355), - [aux_sym_cmd_identifier_token39] = ACTIONS(2359), - [aux_sym_cmd_identifier_token40] = ACTIONS(2359), - [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(2359), - [anon_sym_DOLLAR] = ACTIONS(2359), - [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(2359), - [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(2359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2355), - [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_LBRACK2] = ACTIONS(2514), - [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), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2359), + [717] = { + [sym_comment] = STATE(717), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_alias] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_let_DASHenv] = ACTIONS(2413), + [anon_sym_mut] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [aux_sym_cmd_identifier_token1] = ACTIONS(2413), + [aux_sym_cmd_identifier_token2] = ACTIONS(2415), + [aux_sym_cmd_identifier_token3] = ACTIONS(2415), + [aux_sym_cmd_identifier_token4] = ACTIONS(2415), + [aux_sym_cmd_identifier_token5] = ACTIONS(2415), + [aux_sym_cmd_identifier_token6] = ACTIONS(2415), + [aux_sym_cmd_identifier_token7] = ACTIONS(2415), + [aux_sym_cmd_identifier_token8] = ACTIONS(2413), + [aux_sym_cmd_identifier_token9] = ACTIONS(2413), + [aux_sym_cmd_identifier_token10] = ACTIONS(2415), + [aux_sym_cmd_identifier_token11] = ACTIONS(2415), + [aux_sym_cmd_identifier_token12] = ACTIONS(2413), + [aux_sym_cmd_identifier_token13] = ACTIONS(2413), + [aux_sym_cmd_identifier_token14] = ACTIONS(2413), + [aux_sym_cmd_identifier_token15] = ACTIONS(2413), + [aux_sym_cmd_identifier_token16] = ACTIONS(2415), + [aux_sym_cmd_identifier_token17] = ACTIONS(2415), + [aux_sym_cmd_identifier_token18] = ACTIONS(2415), + [aux_sym_cmd_identifier_token19] = ACTIONS(2415), + [aux_sym_cmd_identifier_token20] = ACTIONS(2415), + [aux_sym_cmd_identifier_token21] = ACTIONS(2415), + [aux_sym_cmd_identifier_token22] = ACTIONS(2415), + [aux_sym_cmd_identifier_token23] = ACTIONS(2415), + [aux_sym_cmd_identifier_token24] = ACTIONS(2415), + [aux_sym_cmd_identifier_token25] = ACTIONS(2415), + [aux_sym_cmd_identifier_token26] = ACTIONS(2415), + [aux_sym_cmd_identifier_token27] = ACTIONS(2415), + [aux_sym_cmd_identifier_token28] = ACTIONS(2415), + [aux_sym_cmd_identifier_token29] = ACTIONS(2415), + [aux_sym_cmd_identifier_token30] = ACTIONS(2415), + [aux_sym_cmd_identifier_token31] = ACTIONS(2415), + [aux_sym_cmd_identifier_token32] = ACTIONS(2415), + [aux_sym_cmd_identifier_token33] = ACTIONS(2415), + [aux_sym_cmd_identifier_token34] = ACTIONS(2413), + [aux_sym_cmd_identifier_token35] = ACTIONS(2415), + [aux_sym_cmd_identifier_token36] = ACTIONS(2415), + [aux_sym_cmd_identifier_token37] = ACTIONS(2415), + [aux_sym_cmd_identifier_token38] = ACTIONS(2413), + [aux_sym_cmd_identifier_token39] = ACTIONS(2415), + [aux_sym_cmd_identifier_token40] = ACTIONS(2415), + [anon_sym_def] = ACTIONS(2413), + [anon_sym_export_DASHenv] = ACTIONS(2413), + [anon_sym_extern] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_DOLLAR] = ACTIONS(2415), + [anon_sym_error] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_in2] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_make] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_else] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_catch] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_source] = ACTIONS(2413), + [anon_sym_source_DASHenv] = ACTIONS(2413), + [anon_sym_register] = ACTIONS(2413), + [anon_sym_hide] = ACTIONS(2413), + [anon_sym_hide_DASHenv] = ACTIONS(2413), + [anon_sym_overlay] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2415), + [aux_sym__val_number_decimal_token1] = ACTIONS(2413), + [aux_sym__val_number_decimal_token2] = ACTIONS(2415), + [aux_sym__val_number_decimal_token3] = ACTIONS(2415), + [aux_sym__val_number_decimal_token4] = ACTIONS(2415), + [aux_sym__val_number_token1] = ACTIONS(2415), + [aux_sym__val_number_token2] = ACTIONS(2415), + [aux_sym__val_number_token3] = ACTIONS(2415), + [aux_sym__val_number_token4] = ACTIONS(2413), + [aux_sym__val_number_token5] = ACTIONS(2413), + [aux_sym__val_number_token6] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2415), + [sym__str_single_quotes] = ACTIONS(2415), + [sym__str_back_ticks] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2415), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2415), }, - [601] = { - [sym_comment] = STATE(601), - [anon_sym_export] = ACTIONS(2516), - [anon_sym_alias] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2516), - [anon_sym_let_DASHenv] = ACTIONS(2516), - [anon_sym_mut] = ACTIONS(2516), - [anon_sym_const] = ACTIONS(2516), - [aux_sym_cmd_identifier_token1] = ACTIONS(2516), - [aux_sym_cmd_identifier_token2] = ACTIONS(2516), - [aux_sym_cmd_identifier_token3] = ACTIONS(2516), - [aux_sym_cmd_identifier_token4] = ACTIONS(2516), - [aux_sym_cmd_identifier_token5] = ACTIONS(2516), - [aux_sym_cmd_identifier_token6] = ACTIONS(2516), - [aux_sym_cmd_identifier_token7] = ACTIONS(2516), - [aux_sym_cmd_identifier_token8] = ACTIONS(2516), - [aux_sym_cmd_identifier_token9] = ACTIONS(2516), - [aux_sym_cmd_identifier_token10] = ACTIONS(2516), - [aux_sym_cmd_identifier_token11] = ACTIONS(2516), - [aux_sym_cmd_identifier_token12] = ACTIONS(2516), - [aux_sym_cmd_identifier_token13] = ACTIONS(2516), - [aux_sym_cmd_identifier_token14] = ACTIONS(2516), - [aux_sym_cmd_identifier_token15] = ACTIONS(2516), - [aux_sym_cmd_identifier_token16] = ACTIONS(2516), - [aux_sym_cmd_identifier_token17] = ACTIONS(2516), - [aux_sym_cmd_identifier_token18] = ACTIONS(2516), - [aux_sym_cmd_identifier_token19] = ACTIONS(2516), - [aux_sym_cmd_identifier_token20] = ACTIONS(2516), - [aux_sym_cmd_identifier_token21] = ACTIONS(2516), - [aux_sym_cmd_identifier_token22] = ACTIONS(2516), - [aux_sym_cmd_identifier_token23] = ACTIONS(2516), - [aux_sym_cmd_identifier_token24] = ACTIONS(2516), - [aux_sym_cmd_identifier_token25] = ACTIONS(2516), - [aux_sym_cmd_identifier_token26] = ACTIONS(2516), - [aux_sym_cmd_identifier_token27] = ACTIONS(2516), - [aux_sym_cmd_identifier_token28] = ACTIONS(2516), - [aux_sym_cmd_identifier_token29] = ACTIONS(2516), - [aux_sym_cmd_identifier_token30] = ACTIONS(2516), - [aux_sym_cmd_identifier_token31] = ACTIONS(2516), - [aux_sym_cmd_identifier_token32] = ACTIONS(2516), - [aux_sym_cmd_identifier_token33] = ACTIONS(2516), - [aux_sym_cmd_identifier_token34] = ACTIONS(2516), - [aux_sym_cmd_identifier_token35] = ACTIONS(2516), - [aux_sym_cmd_identifier_token36] = ACTIONS(2516), - [anon_sym_true] = ACTIONS(2516), - [anon_sym_false] = ACTIONS(2516), - [anon_sym_null] = ACTIONS(2516), - [aux_sym_cmd_identifier_token38] = ACTIONS(2516), - [aux_sym_cmd_identifier_token39] = ACTIONS(2516), - [aux_sym_cmd_identifier_token40] = ACTIONS(2516), - [anon_sym_def] = ACTIONS(2516), - [anon_sym_export_DASHenv] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2516), - [anon_sym_module] = ACTIONS(2516), - [anon_sym_use] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_DOLLAR] = ACTIONS(2516), - [anon_sym_error] = ACTIONS(2516), - [anon_sym_list] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_in] = ACTIONS(2516), - [anon_sym_loop] = ACTIONS(2516), - [anon_sym_make] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_do] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_else] = ACTIONS(2516), - [anon_sym_match] = ACTIONS(2516), - [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_try] = ACTIONS(2516), - [anon_sym_catch] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_source] = ACTIONS(2516), - [anon_sym_source_DASHenv] = ACTIONS(2516), - [anon_sym_register] = ACTIONS(2516), - [anon_sym_hide] = ACTIONS(2516), - [anon_sym_hide_DASHenv] = ACTIONS(2516), - [anon_sym_overlay] = ACTIONS(2516), - [anon_sym_new] = ACTIONS(2516), - [anon_sym_as] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2516), - [aux_sym__val_number_decimal_token1] = ACTIONS(2516), - [aux_sym__val_number_decimal_token2] = ACTIONS(2516), - [aux_sym__val_number_decimal_token3] = ACTIONS(2516), - [aux_sym__val_number_decimal_token4] = ACTIONS(2516), - [aux_sym__val_number_token1] = ACTIONS(2516), - [aux_sym__val_number_token2] = ACTIONS(2516), - [aux_sym__val_number_token3] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2516), - [sym__str_single_quotes] = ACTIONS(2516), - [sym__str_back_ticks] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2516), - [sym__entry_separator] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2516), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2518), + [718] = { + [sym_comment] = STATE(718), + [anon_sym_export] = ACTIONS(2480), + [anon_sym_alias] = ACTIONS(2480), + [anon_sym_let] = ACTIONS(2480), + [anon_sym_let_DASHenv] = ACTIONS(2480), + [anon_sym_mut] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [aux_sym_cmd_identifier_token1] = ACTIONS(2480), + [aux_sym_cmd_identifier_token2] = ACTIONS(2482), + [aux_sym_cmd_identifier_token3] = ACTIONS(2482), + [aux_sym_cmd_identifier_token4] = ACTIONS(2482), + [aux_sym_cmd_identifier_token5] = ACTIONS(2482), + [aux_sym_cmd_identifier_token6] = ACTIONS(2482), + [aux_sym_cmd_identifier_token7] = ACTIONS(2482), + [aux_sym_cmd_identifier_token8] = ACTIONS(2480), + [aux_sym_cmd_identifier_token9] = ACTIONS(2480), + [aux_sym_cmd_identifier_token10] = ACTIONS(2482), + [aux_sym_cmd_identifier_token11] = ACTIONS(2482), + [aux_sym_cmd_identifier_token12] = ACTIONS(2480), + [aux_sym_cmd_identifier_token13] = ACTIONS(2480), + [aux_sym_cmd_identifier_token14] = ACTIONS(2480), + [aux_sym_cmd_identifier_token15] = ACTIONS(2480), + [aux_sym_cmd_identifier_token16] = ACTIONS(2482), + [aux_sym_cmd_identifier_token17] = ACTIONS(2482), + [aux_sym_cmd_identifier_token18] = ACTIONS(2482), + [aux_sym_cmd_identifier_token19] = ACTIONS(2482), + [aux_sym_cmd_identifier_token20] = ACTIONS(2482), + [aux_sym_cmd_identifier_token21] = ACTIONS(2482), + [aux_sym_cmd_identifier_token22] = ACTIONS(2482), + [aux_sym_cmd_identifier_token23] = ACTIONS(2482), + [aux_sym_cmd_identifier_token24] = ACTIONS(2482), + [aux_sym_cmd_identifier_token25] = ACTIONS(2482), + [aux_sym_cmd_identifier_token26] = ACTIONS(2482), + [aux_sym_cmd_identifier_token27] = ACTIONS(2482), + [aux_sym_cmd_identifier_token28] = ACTIONS(2482), + [aux_sym_cmd_identifier_token29] = ACTIONS(2482), + [aux_sym_cmd_identifier_token30] = ACTIONS(2482), + [aux_sym_cmd_identifier_token31] = ACTIONS(2482), + [aux_sym_cmd_identifier_token32] = ACTIONS(2482), + [aux_sym_cmd_identifier_token33] = ACTIONS(2482), + [aux_sym_cmd_identifier_token34] = ACTIONS(2480), + [aux_sym_cmd_identifier_token35] = ACTIONS(2482), + [aux_sym_cmd_identifier_token36] = ACTIONS(2482), + [aux_sym_cmd_identifier_token37] = ACTIONS(2482), + [aux_sym_cmd_identifier_token38] = ACTIONS(2480), + [aux_sym_cmd_identifier_token39] = ACTIONS(2482), + [aux_sym_cmd_identifier_token40] = ACTIONS(2482), + [anon_sym_def] = ACTIONS(2480), + [anon_sym_export_DASHenv] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2480), + [anon_sym_use] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_DOLLAR] = ACTIONS(2482), + [anon_sym_error] = ACTIONS(2480), + [anon_sym_DASH2] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_in2] = ACTIONS(2480), + [anon_sym_loop] = ACTIONS(2480), + [anon_sym_make] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_else] = ACTIONS(2480), + [anon_sym_match] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2480), + [anon_sym_catch] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_source] = ACTIONS(2480), + [anon_sym_source_DASHenv] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_hide] = ACTIONS(2480), + [anon_sym_hide_DASHenv] = ACTIONS(2480), + [anon_sym_overlay] = ACTIONS(2480), + [anon_sym_as] = ACTIONS(2480), + [anon_sym_PLUS2] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2482), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2482), + [aux_sym__val_number_decimal_token1] = ACTIONS(2480), + [aux_sym__val_number_decimal_token2] = ACTIONS(2482), + [aux_sym__val_number_decimal_token3] = ACTIONS(2482), + [aux_sym__val_number_decimal_token4] = ACTIONS(2482), + [aux_sym__val_number_token1] = ACTIONS(2482), + [aux_sym__val_number_token2] = ACTIONS(2482), + [aux_sym__val_number_token3] = ACTIONS(2482), + [aux_sym__val_number_token4] = ACTIONS(2480), + [aux_sym__val_number_token5] = ACTIONS(2480), + [aux_sym__val_number_token6] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2482), + [sym__str_single_quotes] = ACTIONS(2482), + [sym__str_back_ticks] = ACTIONS(2482), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2482), }, - [602] = { - [sym_comment] = STATE(602), - [anon_sym_export] = ACTIONS(2520), - [anon_sym_alias] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_DASHenv] = ACTIONS(2520), - [anon_sym_mut] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [aux_sym_cmd_identifier_token1] = ACTIONS(2520), - [aux_sym_cmd_identifier_token2] = ACTIONS(2520), - [aux_sym_cmd_identifier_token3] = ACTIONS(2520), - [aux_sym_cmd_identifier_token4] = ACTIONS(2520), - [aux_sym_cmd_identifier_token5] = ACTIONS(2520), - [aux_sym_cmd_identifier_token6] = ACTIONS(2520), - [aux_sym_cmd_identifier_token7] = ACTIONS(2520), - [aux_sym_cmd_identifier_token8] = ACTIONS(2520), - [aux_sym_cmd_identifier_token9] = ACTIONS(2520), - [aux_sym_cmd_identifier_token10] = ACTIONS(2520), - [aux_sym_cmd_identifier_token11] = ACTIONS(2520), - [aux_sym_cmd_identifier_token12] = ACTIONS(2520), - [aux_sym_cmd_identifier_token13] = ACTIONS(2520), - [aux_sym_cmd_identifier_token14] = ACTIONS(2520), - [aux_sym_cmd_identifier_token15] = ACTIONS(2520), - [aux_sym_cmd_identifier_token16] = ACTIONS(2520), - [aux_sym_cmd_identifier_token17] = ACTIONS(2520), - [aux_sym_cmd_identifier_token18] = ACTIONS(2520), - [aux_sym_cmd_identifier_token19] = ACTIONS(2520), - [aux_sym_cmd_identifier_token20] = ACTIONS(2520), - [aux_sym_cmd_identifier_token21] = ACTIONS(2520), - [aux_sym_cmd_identifier_token22] = ACTIONS(2520), - [aux_sym_cmd_identifier_token23] = ACTIONS(2520), - [aux_sym_cmd_identifier_token24] = ACTIONS(2520), - [aux_sym_cmd_identifier_token25] = ACTIONS(2520), - [aux_sym_cmd_identifier_token26] = ACTIONS(2520), - [aux_sym_cmd_identifier_token27] = ACTIONS(2520), - [aux_sym_cmd_identifier_token28] = ACTIONS(2520), - [aux_sym_cmd_identifier_token29] = ACTIONS(2520), - [aux_sym_cmd_identifier_token30] = ACTIONS(2520), - [aux_sym_cmd_identifier_token31] = ACTIONS(2520), - [aux_sym_cmd_identifier_token32] = ACTIONS(2520), - [aux_sym_cmd_identifier_token33] = ACTIONS(2520), - [aux_sym_cmd_identifier_token34] = ACTIONS(2520), - [aux_sym_cmd_identifier_token35] = ACTIONS(2520), - [aux_sym_cmd_identifier_token36] = ACTIONS(2520), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [anon_sym_null] = ACTIONS(2520), - [aux_sym_cmd_identifier_token38] = ACTIONS(2520), - [aux_sym_cmd_identifier_token39] = ACTIONS(2520), - [aux_sym_cmd_identifier_token40] = ACTIONS(2520), - [anon_sym_def] = ACTIONS(2520), - [anon_sym_export_DASHenv] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_module] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_error] = ACTIONS(2520), - [anon_sym_list] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_in] = ACTIONS(2520), - [anon_sym_loop] = ACTIONS(2520), - [anon_sym_make] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_catch] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_source] = ACTIONS(2520), - [anon_sym_source_DASHenv] = ACTIONS(2520), - [anon_sym_register] = ACTIONS(2520), - [anon_sym_hide] = ACTIONS(2520), - [anon_sym_hide_DASHenv] = ACTIONS(2520), - [anon_sym_overlay] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2520), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2520), - [aux_sym__val_number_decimal_token3] = ACTIONS(2520), - [aux_sym__val_number_decimal_token4] = ACTIONS(2520), - [aux_sym__val_number_token1] = ACTIONS(2520), - [aux_sym__val_number_token2] = ACTIONS(2520), - [aux_sym__val_number_token3] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [sym__str_single_quotes] = ACTIONS(2520), - [sym__str_back_ticks] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2520), - [sym__entry_separator] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2522), + [719] = { + [sym_comment] = STATE(719), + [anon_sym_export] = ACTIONS(2464), + [anon_sym_alias] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_let_DASHenv] = ACTIONS(2464), + [anon_sym_mut] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [aux_sym_cmd_identifier_token1] = ACTIONS(2464), + [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(2464), + [aux_sym_cmd_identifier_token9] = ACTIONS(2464), + [aux_sym_cmd_identifier_token10] = ACTIONS(2466), + [aux_sym_cmd_identifier_token11] = ACTIONS(2466), + [aux_sym_cmd_identifier_token12] = ACTIONS(2464), + [aux_sym_cmd_identifier_token13] = ACTIONS(2464), + [aux_sym_cmd_identifier_token14] = ACTIONS(2464), + [aux_sym_cmd_identifier_token15] = ACTIONS(2464), + [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(2464), + [aux_sym_cmd_identifier_token35] = ACTIONS(2466), + [aux_sym_cmd_identifier_token36] = ACTIONS(2466), + [aux_sym_cmd_identifier_token37] = ACTIONS(2466), + [aux_sym_cmd_identifier_token38] = ACTIONS(2464), + [aux_sym_cmd_identifier_token39] = ACTIONS(2466), + [aux_sym_cmd_identifier_token40] = ACTIONS(2466), + [anon_sym_def] = ACTIONS(2464), + [anon_sym_export_DASHenv] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_module] = ACTIONS(2464), + [anon_sym_use] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_DOLLAR] = ACTIONS(2466), + [anon_sym_error] = ACTIONS(2464), + [anon_sym_DASH2] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_in2] = ACTIONS(2464), + [anon_sym_loop] = ACTIONS(2464), + [anon_sym_make] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_do] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_else] = ACTIONS(2464), + [anon_sym_match] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2464), + [anon_sym_catch] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_source] = ACTIONS(2464), + [anon_sym_source_DASHenv] = ACTIONS(2464), + [anon_sym_register] = ACTIONS(2464), + [anon_sym_hide] = ACTIONS(2464), + [anon_sym_hide_DASHenv] = ACTIONS(2464), + [anon_sym_overlay] = ACTIONS(2464), + [anon_sym_as] = ACTIONS(2464), + [anon_sym_PLUS2] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2466), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2466), + [aux_sym__val_number_decimal_token1] = ACTIONS(2464), + [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), + [aux_sym__val_number_token4] = ACTIONS(2464), + [aux_sym__val_number_token5] = ACTIONS(2464), + [aux_sym__val_number_token6] = ACTIONS(2464), + [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), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2466), }, - [603] = { - [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [720] = { + [sym_comment] = STATE(720), + [anon_sym_export] = ACTIONS(2468), + [anon_sym_alias] = ACTIONS(2468), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_let_DASHenv] = ACTIONS(2468), + [anon_sym_mut] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [aux_sym_cmd_identifier_token1] = ACTIONS(2468), + [aux_sym_cmd_identifier_token2] = ACTIONS(2470), + [aux_sym_cmd_identifier_token3] = ACTIONS(2470), + [aux_sym_cmd_identifier_token4] = ACTIONS(2470), + [aux_sym_cmd_identifier_token5] = ACTIONS(2470), + [aux_sym_cmd_identifier_token6] = ACTIONS(2470), + [aux_sym_cmd_identifier_token7] = ACTIONS(2470), + [aux_sym_cmd_identifier_token8] = ACTIONS(2468), + [aux_sym_cmd_identifier_token9] = ACTIONS(2468), + [aux_sym_cmd_identifier_token10] = ACTIONS(2470), + [aux_sym_cmd_identifier_token11] = ACTIONS(2470), + [aux_sym_cmd_identifier_token12] = ACTIONS(2468), + [aux_sym_cmd_identifier_token13] = ACTIONS(2468), + [aux_sym_cmd_identifier_token14] = ACTIONS(2468), + [aux_sym_cmd_identifier_token15] = ACTIONS(2468), + [aux_sym_cmd_identifier_token16] = ACTIONS(2470), + [aux_sym_cmd_identifier_token17] = ACTIONS(2470), + [aux_sym_cmd_identifier_token18] = ACTIONS(2470), + [aux_sym_cmd_identifier_token19] = ACTIONS(2470), + [aux_sym_cmd_identifier_token20] = ACTIONS(2470), + [aux_sym_cmd_identifier_token21] = ACTIONS(2470), + [aux_sym_cmd_identifier_token22] = ACTIONS(2470), + [aux_sym_cmd_identifier_token23] = ACTIONS(2470), + [aux_sym_cmd_identifier_token24] = ACTIONS(2470), + [aux_sym_cmd_identifier_token25] = ACTIONS(2470), + [aux_sym_cmd_identifier_token26] = ACTIONS(2470), + [aux_sym_cmd_identifier_token27] = ACTIONS(2470), + [aux_sym_cmd_identifier_token28] = ACTIONS(2470), + [aux_sym_cmd_identifier_token29] = ACTIONS(2470), + [aux_sym_cmd_identifier_token30] = ACTIONS(2470), + [aux_sym_cmd_identifier_token31] = ACTIONS(2470), + [aux_sym_cmd_identifier_token32] = ACTIONS(2470), + [aux_sym_cmd_identifier_token33] = ACTIONS(2470), + [aux_sym_cmd_identifier_token34] = ACTIONS(2468), + [aux_sym_cmd_identifier_token35] = ACTIONS(2470), + [aux_sym_cmd_identifier_token36] = ACTIONS(2470), + [aux_sym_cmd_identifier_token37] = ACTIONS(2470), + [aux_sym_cmd_identifier_token38] = ACTIONS(2468), + [aux_sym_cmd_identifier_token39] = ACTIONS(2470), + [aux_sym_cmd_identifier_token40] = ACTIONS(2470), + [anon_sym_def] = ACTIONS(2468), + [anon_sym_export_DASHenv] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_module] = ACTIONS(2468), + [anon_sym_use] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_DOLLAR] = ACTIONS(2470), + [anon_sym_error] = ACTIONS(2468), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_in2] = ACTIONS(2468), + [anon_sym_loop] = ACTIONS(2468), + [anon_sym_make] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_match] = ACTIONS(2468), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2468), + [anon_sym_catch] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_source] = ACTIONS(2468), + [anon_sym_source_DASHenv] = ACTIONS(2468), + [anon_sym_register] = ACTIONS(2468), + [anon_sym_hide] = ACTIONS(2468), + [anon_sym_hide_DASHenv] = ACTIONS(2468), + [anon_sym_overlay] = ACTIONS(2468), + [anon_sym_as] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2470), + [aux_sym__val_number_decimal_token1] = ACTIONS(2468), + [aux_sym__val_number_decimal_token2] = ACTIONS(2470), + [aux_sym__val_number_decimal_token3] = ACTIONS(2470), + [aux_sym__val_number_decimal_token4] = ACTIONS(2470), + [aux_sym__val_number_token1] = ACTIONS(2470), + [aux_sym__val_number_token2] = ACTIONS(2470), + [aux_sym__val_number_token3] = ACTIONS(2470), + [aux_sym__val_number_token4] = ACTIONS(2468), + [aux_sym__val_number_token5] = ACTIONS(2468), + [aux_sym__val_number_token6] = ACTIONS(2468), + [anon_sym_DQUOTE] = ACTIONS(2470), + [sym__str_single_quotes] = ACTIONS(2470), + [sym__str_back_ticks] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2470), }, - [604] = { - [sym_comment] = STATE(604), - [anon_sym_export] = ACTIONS(2524), - [anon_sym_alias] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_let_DASHenv] = ACTIONS(2524), - [anon_sym_mut] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [aux_sym_cmd_identifier_token1] = ACTIONS(2524), - [aux_sym_cmd_identifier_token2] = ACTIONS(2524), - [aux_sym_cmd_identifier_token3] = ACTIONS(2524), - [aux_sym_cmd_identifier_token4] = ACTIONS(2524), - [aux_sym_cmd_identifier_token5] = ACTIONS(2524), - [aux_sym_cmd_identifier_token6] = ACTIONS(2524), - [aux_sym_cmd_identifier_token7] = ACTIONS(2524), - [aux_sym_cmd_identifier_token8] = ACTIONS(2524), - [aux_sym_cmd_identifier_token9] = ACTIONS(2524), - [aux_sym_cmd_identifier_token10] = ACTIONS(2524), - [aux_sym_cmd_identifier_token11] = ACTIONS(2524), - [aux_sym_cmd_identifier_token12] = ACTIONS(2524), - [aux_sym_cmd_identifier_token13] = ACTIONS(2524), - [aux_sym_cmd_identifier_token14] = ACTIONS(2524), - [aux_sym_cmd_identifier_token15] = ACTIONS(2524), - [aux_sym_cmd_identifier_token16] = ACTIONS(2524), - [aux_sym_cmd_identifier_token17] = ACTIONS(2524), - [aux_sym_cmd_identifier_token18] = ACTIONS(2524), - [aux_sym_cmd_identifier_token19] = ACTIONS(2524), - [aux_sym_cmd_identifier_token20] = ACTIONS(2524), - [aux_sym_cmd_identifier_token21] = ACTIONS(2524), - [aux_sym_cmd_identifier_token22] = ACTIONS(2524), + [721] = { + [sym_comment] = STATE(721), + [anon_sym_export] = ACTIONS(2421), + [anon_sym_alias] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_let_DASHenv] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [aux_sym_cmd_identifier_token1] = ACTIONS(2421), + [aux_sym_cmd_identifier_token2] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2423), + [aux_sym_cmd_identifier_token4] = ACTIONS(2423), + [aux_sym_cmd_identifier_token5] = ACTIONS(2423), + [aux_sym_cmd_identifier_token6] = ACTIONS(2423), + [aux_sym_cmd_identifier_token7] = ACTIONS(2423), + [aux_sym_cmd_identifier_token8] = ACTIONS(2421), + [aux_sym_cmd_identifier_token9] = ACTIONS(2421), + [aux_sym_cmd_identifier_token10] = ACTIONS(2423), + [aux_sym_cmd_identifier_token11] = ACTIONS(2423), + [aux_sym_cmd_identifier_token12] = ACTIONS(2421), + [aux_sym_cmd_identifier_token13] = ACTIONS(2421), + [aux_sym_cmd_identifier_token14] = ACTIONS(2421), + [aux_sym_cmd_identifier_token15] = ACTIONS(2421), + [aux_sym_cmd_identifier_token16] = ACTIONS(2423), + [aux_sym_cmd_identifier_token17] = ACTIONS(2423), + [aux_sym_cmd_identifier_token18] = ACTIONS(2423), + [aux_sym_cmd_identifier_token19] = ACTIONS(2423), + [aux_sym_cmd_identifier_token20] = ACTIONS(2423), + [aux_sym_cmd_identifier_token21] = ACTIONS(2423), + [aux_sym_cmd_identifier_token22] = ACTIONS(2423), + [aux_sym_cmd_identifier_token23] = ACTIONS(2423), + [aux_sym_cmd_identifier_token24] = ACTIONS(2423), + [aux_sym_cmd_identifier_token25] = ACTIONS(2423), + [aux_sym_cmd_identifier_token26] = ACTIONS(2423), + [aux_sym_cmd_identifier_token27] = ACTIONS(2423), + [aux_sym_cmd_identifier_token28] = ACTIONS(2423), + [aux_sym_cmd_identifier_token29] = ACTIONS(2423), + [aux_sym_cmd_identifier_token30] = ACTIONS(2423), + [aux_sym_cmd_identifier_token31] = ACTIONS(2423), + [aux_sym_cmd_identifier_token32] = ACTIONS(2423), + [aux_sym_cmd_identifier_token33] = ACTIONS(2423), + [aux_sym_cmd_identifier_token34] = ACTIONS(2421), + [aux_sym_cmd_identifier_token35] = ACTIONS(2423), + [aux_sym_cmd_identifier_token36] = ACTIONS(2423), + [aux_sym_cmd_identifier_token37] = ACTIONS(2423), + [aux_sym_cmd_identifier_token38] = ACTIONS(2421), + [aux_sym_cmd_identifier_token39] = ACTIONS(2423), + [aux_sym_cmd_identifier_token40] = ACTIONS(2423), + [anon_sym_def] = ACTIONS(2421), + [anon_sym_export_DASHenv] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2423), + [anon_sym_error] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_in2] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_make] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_else] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_catch] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_source] = ACTIONS(2421), + [anon_sym_source_DASHenv] = ACTIONS(2421), + [anon_sym_register] = ACTIONS(2421), + [anon_sym_hide] = ACTIONS(2421), + [anon_sym_hide_DASHenv] = ACTIONS(2421), + [anon_sym_overlay] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2423), + [aux_sym__val_number_decimal_token1] = ACTIONS(2421), + [aux_sym__val_number_decimal_token2] = ACTIONS(2423), + [aux_sym__val_number_decimal_token3] = ACTIONS(2423), + [aux_sym__val_number_decimal_token4] = ACTIONS(2423), + [aux_sym__val_number_token1] = ACTIONS(2423), + [aux_sym__val_number_token2] = ACTIONS(2423), + [aux_sym__val_number_token3] = ACTIONS(2423), + [aux_sym__val_number_token4] = ACTIONS(2421), + [aux_sym__val_number_token5] = ACTIONS(2421), + [aux_sym__val_number_token6] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2423), + [sym__str_single_quotes] = ACTIONS(2423), + [sym__str_back_ticks] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2423), + }, + [722] = { + [sym_comment] = STATE(722), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_alias] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_let_DASHenv] = ACTIONS(2425), + [anon_sym_mut] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [aux_sym_cmd_identifier_token1] = ACTIONS(2425), + [aux_sym_cmd_identifier_token2] = ACTIONS(2427), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), + [aux_sym_cmd_identifier_token6] = ACTIONS(2427), + [aux_sym_cmd_identifier_token7] = ACTIONS(2427), + [aux_sym_cmd_identifier_token8] = ACTIONS(2425), + [aux_sym_cmd_identifier_token9] = ACTIONS(2425), + [aux_sym_cmd_identifier_token10] = ACTIONS(2427), + [aux_sym_cmd_identifier_token11] = ACTIONS(2427), + [aux_sym_cmd_identifier_token12] = ACTIONS(2425), + [aux_sym_cmd_identifier_token13] = ACTIONS(2425), + [aux_sym_cmd_identifier_token14] = ACTIONS(2425), + [aux_sym_cmd_identifier_token15] = ACTIONS(2425), + [aux_sym_cmd_identifier_token16] = ACTIONS(2427), + [aux_sym_cmd_identifier_token17] = ACTIONS(2427), + [aux_sym_cmd_identifier_token18] = ACTIONS(2427), + [aux_sym_cmd_identifier_token19] = ACTIONS(2427), + [aux_sym_cmd_identifier_token20] = ACTIONS(2427), + [aux_sym_cmd_identifier_token21] = ACTIONS(2427), + [aux_sym_cmd_identifier_token22] = ACTIONS(2427), + [aux_sym_cmd_identifier_token23] = ACTIONS(2427), + [aux_sym_cmd_identifier_token24] = ACTIONS(2427), + [aux_sym_cmd_identifier_token25] = ACTIONS(2427), + [aux_sym_cmd_identifier_token26] = ACTIONS(2427), + [aux_sym_cmd_identifier_token27] = ACTIONS(2427), + [aux_sym_cmd_identifier_token28] = ACTIONS(2427), + [aux_sym_cmd_identifier_token29] = ACTIONS(2427), + [aux_sym_cmd_identifier_token30] = ACTIONS(2427), + [aux_sym_cmd_identifier_token31] = ACTIONS(2427), + [aux_sym_cmd_identifier_token32] = ACTIONS(2427), + [aux_sym_cmd_identifier_token33] = ACTIONS(2427), + [aux_sym_cmd_identifier_token34] = ACTIONS(2425), + [aux_sym_cmd_identifier_token35] = ACTIONS(2427), + [aux_sym_cmd_identifier_token36] = ACTIONS(2427), + [aux_sym_cmd_identifier_token37] = ACTIONS(2427), + [aux_sym_cmd_identifier_token38] = ACTIONS(2425), + [aux_sym_cmd_identifier_token39] = ACTIONS(2427), + [aux_sym_cmd_identifier_token40] = ACTIONS(2427), + [anon_sym_def] = ACTIONS(2425), + [anon_sym_export_DASHenv] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_error] = ACTIONS(2425), + [anon_sym_DASH2] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_in2] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_make] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_catch] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_source] = ACTIONS(2425), + [anon_sym_source_DASHenv] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_hide] = ACTIONS(2425), + [anon_sym_hide_DASHenv] = ACTIONS(2425), + [anon_sym_overlay] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_PLUS2] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2427), + [aux_sym__val_number_decimal_token1] = ACTIONS(2425), + [aux_sym__val_number_decimal_token2] = ACTIONS(2427), + [aux_sym__val_number_decimal_token3] = ACTIONS(2427), + [aux_sym__val_number_decimal_token4] = ACTIONS(2427), + [aux_sym__val_number_token1] = ACTIONS(2427), + [aux_sym__val_number_token2] = ACTIONS(2427), + [aux_sym__val_number_token3] = ACTIONS(2427), + [aux_sym__val_number_token4] = ACTIONS(2425), + [aux_sym__val_number_token5] = ACTIONS(2425), + [aux_sym__val_number_token6] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym__str_single_quotes] = ACTIONS(2427), + [sym__str_back_ticks] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2427), + }, + [723] = { + [sym_comment] = STATE(723), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_alias] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_let_DASHenv] = ACTIONS(2488), + [anon_sym_mut] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [aux_sym_cmd_identifier_token1] = ACTIONS(2488), + [aux_sym_cmd_identifier_token2] = ACTIONS(2490), + [aux_sym_cmd_identifier_token3] = ACTIONS(2490), + [aux_sym_cmd_identifier_token4] = ACTIONS(2490), + [aux_sym_cmd_identifier_token5] = ACTIONS(2490), + [aux_sym_cmd_identifier_token6] = ACTIONS(2490), + [aux_sym_cmd_identifier_token7] = ACTIONS(2490), + [aux_sym_cmd_identifier_token8] = ACTIONS(2488), + [aux_sym_cmd_identifier_token9] = ACTIONS(2488), + [aux_sym_cmd_identifier_token10] = ACTIONS(2490), + [aux_sym_cmd_identifier_token11] = ACTIONS(2490), + [aux_sym_cmd_identifier_token12] = ACTIONS(2488), + [aux_sym_cmd_identifier_token13] = ACTIONS(2488), + [aux_sym_cmd_identifier_token14] = ACTIONS(2488), + [aux_sym_cmd_identifier_token15] = ACTIONS(2488), + [aux_sym_cmd_identifier_token16] = ACTIONS(2490), + [aux_sym_cmd_identifier_token17] = ACTIONS(2490), + [aux_sym_cmd_identifier_token18] = ACTIONS(2490), + [aux_sym_cmd_identifier_token19] = ACTIONS(2490), + [aux_sym_cmd_identifier_token20] = ACTIONS(2490), + [aux_sym_cmd_identifier_token21] = ACTIONS(2490), + [aux_sym_cmd_identifier_token22] = ACTIONS(2490), + [aux_sym_cmd_identifier_token23] = ACTIONS(2490), + [aux_sym_cmd_identifier_token24] = ACTIONS(2490), + [aux_sym_cmd_identifier_token25] = ACTIONS(2490), + [aux_sym_cmd_identifier_token26] = ACTIONS(2490), + [aux_sym_cmd_identifier_token27] = ACTIONS(2490), + [aux_sym_cmd_identifier_token28] = ACTIONS(2490), + [aux_sym_cmd_identifier_token29] = ACTIONS(2490), + [aux_sym_cmd_identifier_token30] = ACTIONS(2490), + [aux_sym_cmd_identifier_token31] = ACTIONS(2490), + [aux_sym_cmd_identifier_token32] = ACTIONS(2490), + [aux_sym_cmd_identifier_token33] = ACTIONS(2490), + [aux_sym_cmd_identifier_token34] = ACTIONS(2488), + [aux_sym_cmd_identifier_token35] = ACTIONS(2490), + [aux_sym_cmd_identifier_token36] = ACTIONS(2490), + [aux_sym_cmd_identifier_token37] = ACTIONS(2490), + [aux_sym_cmd_identifier_token38] = ACTIONS(2488), + [aux_sym_cmd_identifier_token39] = ACTIONS(2490), + [aux_sym_cmd_identifier_token40] = ACTIONS(2490), + [anon_sym_def] = ACTIONS(2488), + [anon_sym_export_DASHenv] = ACTIONS(2488), + [anon_sym_extern] = ACTIONS(2488), + [anon_sym_module] = ACTIONS(2488), + [anon_sym_use] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_DOLLAR] = ACTIONS(2490), + [anon_sym_error] = ACTIONS(2488), + [anon_sym_DASH2] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_in2] = ACTIONS(2488), + [anon_sym_loop] = ACTIONS(2488), + [anon_sym_make] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_else] = ACTIONS(2488), + [anon_sym_match] = ACTIONS(2488), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_catch] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_source] = ACTIONS(2488), + [anon_sym_source_DASHenv] = ACTIONS(2488), + [anon_sym_register] = ACTIONS(2488), + [anon_sym_hide] = ACTIONS(2488), + [anon_sym_hide_DASHenv] = ACTIONS(2488), + [anon_sym_overlay] = ACTIONS(2488), + [anon_sym_as] = ACTIONS(2488), + [anon_sym_PLUS2] = ACTIONS(2488), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2490), + [aux_sym__val_number_decimal_token1] = ACTIONS(2488), + [aux_sym__val_number_decimal_token2] = ACTIONS(2490), + [aux_sym__val_number_decimal_token3] = ACTIONS(2490), + [aux_sym__val_number_decimal_token4] = ACTIONS(2490), + [aux_sym__val_number_token1] = ACTIONS(2490), + [aux_sym__val_number_token2] = ACTIONS(2490), + [aux_sym__val_number_token3] = ACTIONS(2490), + [aux_sym__val_number_token4] = ACTIONS(2488), + [aux_sym__val_number_token5] = ACTIONS(2488), + [aux_sym__val_number_token6] = ACTIONS(2488), + [anon_sym_DQUOTE] = ACTIONS(2490), + [sym__str_single_quotes] = ACTIONS(2490), + [sym__str_back_ticks] = ACTIONS(2490), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2490), + }, + [724] = { + [sym_comment] = STATE(724), + [anon_sym_export] = ACTIONS(2496), + [anon_sym_alias] = ACTIONS(2496), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_let_DASHenv] = ACTIONS(2496), + [anon_sym_mut] = ACTIONS(2496), + [anon_sym_const] = ACTIONS(2496), + [aux_sym_cmd_identifier_token1] = ACTIONS(2496), + [aux_sym_cmd_identifier_token2] = ACTIONS(2498), + [aux_sym_cmd_identifier_token3] = ACTIONS(2498), + [aux_sym_cmd_identifier_token4] = ACTIONS(2498), + [aux_sym_cmd_identifier_token5] = ACTIONS(2498), + [aux_sym_cmd_identifier_token6] = ACTIONS(2498), + [aux_sym_cmd_identifier_token7] = ACTIONS(2498), + [aux_sym_cmd_identifier_token8] = ACTIONS(2496), + [aux_sym_cmd_identifier_token9] = ACTIONS(2496), + [aux_sym_cmd_identifier_token10] = ACTIONS(2498), + [aux_sym_cmd_identifier_token11] = ACTIONS(2498), + [aux_sym_cmd_identifier_token12] = ACTIONS(2496), + [aux_sym_cmd_identifier_token13] = ACTIONS(2496), + [aux_sym_cmd_identifier_token14] = ACTIONS(2496), + [aux_sym_cmd_identifier_token15] = ACTIONS(2496), + [aux_sym_cmd_identifier_token16] = ACTIONS(2498), + [aux_sym_cmd_identifier_token17] = ACTIONS(2498), + [aux_sym_cmd_identifier_token18] = ACTIONS(2498), + [aux_sym_cmd_identifier_token19] = ACTIONS(2498), + [aux_sym_cmd_identifier_token20] = ACTIONS(2498), + [aux_sym_cmd_identifier_token21] = ACTIONS(2498), + [aux_sym_cmd_identifier_token22] = ACTIONS(2498), + [aux_sym_cmd_identifier_token23] = ACTIONS(2498), + [aux_sym_cmd_identifier_token24] = ACTIONS(2498), + [aux_sym_cmd_identifier_token25] = ACTIONS(2498), + [aux_sym_cmd_identifier_token26] = ACTIONS(2498), + [aux_sym_cmd_identifier_token27] = ACTIONS(2498), + [aux_sym_cmd_identifier_token28] = ACTIONS(2498), + [aux_sym_cmd_identifier_token29] = ACTIONS(2498), + [aux_sym_cmd_identifier_token30] = ACTIONS(2498), + [aux_sym_cmd_identifier_token31] = ACTIONS(2498), + [aux_sym_cmd_identifier_token32] = ACTIONS(2498), + [aux_sym_cmd_identifier_token33] = ACTIONS(2498), + [aux_sym_cmd_identifier_token34] = ACTIONS(2496), + [aux_sym_cmd_identifier_token35] = ACTIONS(2498), + [aux_sym_cmd_identifier_token36] = ACTIONS(2498), + [aux_sym_cmd_identifier_token37] = ACTIONS(2498), + [aux_sym_cmd_identifier_token38] = ACTIONS(2496), + [aux_sym_cmd_identifier_token39] = ACTIONS(2498), + [aux_sym_cmd_identifier_token40] = ACTIONS(2498), + [anon_sym_def] = ACTIONS(2496), + [anon_sym_export_DASHenv] = ACTIONS(2496), + [anon_sym_extern] = ACTIONS(2496), + [anon_sym_module] = ACTIONS(2496), + [anon_sym_use] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_DOLLAR] = ACTIONS(2498), + [anon_sym_error] = ACTIONS(2496), + [anon_sym_DASH2] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_in2] = ACTIONS(2496), + [anon_sym_loop] = ACTIONS(2496), + [anon_sym_make] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_do] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_else] = ACTIONS(2496), + [anon_sym_match] = ACTIONS(2496), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2496), + [anon_sym_catch] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_source] = ACTIONS(2496), + [anon_sym_source_DASHenv] = ACTIONS(2496), + [anon_sym_register] = ACTIONS(2496), + [anon_sym_hide] = ACTIONS(2496), + [anon_sym_hide_DASHenv] = ACTIONS(2496), + [anon_sym_overlay] = ACTIONS(2496), + [anon_sym_as] = ACTIONS(2496), + [anon_sym_PLUS2] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2498), + [aux_sym__val_number_decimal_token1] = ACTIONS(2496), + [aux_sym__val_number_decimal_token2] = ACTIONS(2498), + [aux_sym__val_number_decimal_token3] = ACTIONS(2498), + [aux_sym__val_number_decimal_token4] = ACTIONS(2498), + [aux_sym__val_number_token1] = ACTIONS(2498), + [aux_sym__val_number_token2] = ACTIONS(2498), + [aux_sym__val_number_token3] = ACTIONS(2498), + [aux_sym__val_number_token4] = ACTIONS(2496), + [aux_sym__val_number_token5] = ACTIONS(2496), + [aux_sym__val_number_token6] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2498), + [sym__str_single_quotes] = ACTIONS(2498), + [sym__str_back_ticks] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2498), + }, + [725] = { + [sym_comment] = STATE(725), + [anon_sym_export] = ACTIONS(1948), + [anon_sym_alias] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1948), + [anon_sym_let_DASHenv] = ACTIONS(1948), + [anon_sym_mut] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [aux_sym_cmd_identifier_token1] = ACTIONS(1948), + [aux_sym_cmd_identifier_token2] = ACTIONS(1950), + [aux_sym_cmd_identifier_token3] = ACTIONS(1950), + [aux_sym_cmd_identifier_token4] = ACTIONS(1950), + [aux_sym_cmd_identifier_token5] = ACTIONS(1950), + [aux_sym_cmd_identifier_token6] = ACTIONS(1950), + [aux_sym_cmd_identifier_token7] = ACTIONS(1950), + [aux_sym_cmd_identifier_token8] = ACTIONS(1948), + [aux_sym_cmd_identifier_token9] = ACTIONS(1948), + [aux_sym_cmd_identifier_token10] = ACTIONS(1950), + [aux_sym_cmd_identifier_token11] = ACTIONS(1950), + [aux_sym_cmd_identifier_token12] = ACTIONS(1948), + [aux_sym_cmd_identifier_token13] = ACTIONS(1948), + [aux_sym_cmd_identifier_token14] = ACTIONS(1948), + [aux_sym_cmd_identifier_token15] = ACTIONS(1948), + [aux_sym_cmd_identifier_token16] = ACTIONS(1950), + [aux_sym_cmd_identifier_token17] = ACTIONS(1950), + [aux_sym_cmd_identifier_token18] = ACTIONS(1950), + [aux_sym_cmd_identifier_token19] = ACTIONS(1950), + [aux_sym_cmd_identifier_token20] = ACTIONS(1950), + [aux_sym_cmd_identifier_token21] = ACTIONS(1950), + [aux_sym_cmd_identifier_token22] = ACTIONS(1950), + [aux_sym_cmd_identifier_token23] = ACTIONS(1950), + [aux_sym_cmd_identifier_token24] = ACTIONS(1950), + [aux_sym_cmd_identifier_token25] = ACTIONS(1950), + [aux_sym_cmd_identifier_token26] = ACTIONS(1950), + [aux_sym_cmd_identifier_token27] = ACTIONS(1950), + [aux_sym_cmd_identifier_token28] = ACTIONS(1950), + [aux_sym_cmd_identifier_token29] = ACTIONS(1950), + [aux_sym_cmd_identifier_token30] = ACTIONS(1950), + [aux_sym_cmd_identifier_token31] = ACTIONS(1950), + [aux_sym_cmd_identifier_token32] = ACTIONS(1950), + [aux_sym_cmd_identifier_token33] = ACTIONS(1950), + [aux_sym_cmd_identifier_token34] = ACTIONS(1948), + [aux_sym_cmd_identifier_token35] = ACTIONS(1950), + [aux_sym_cmd_identifier_token36] = ACTIONS(1950), + [aux_sym_cmd_identifier_token37] = ACTIONS(1950), + [aux_sym_cmd_identifier_token38] = ACTIONS(1948), + [aux_sym_cmd_identifier_token39] = ACTIONS(1950), + [aux_sym_cmd_identifier_token40] = ACTIONS(1950), + [anon_sym_def] = ACTIONS(1948), + [anon_sym_export_DASHenv] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym_module] = ACTIONS(1948), + [anon_sym_use] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_error] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_in2] = ACTIONS(1948), + [anon_sym_loop] = ACTIONS(1948), + [anon_sym_make] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_else] = ACTIONS(1948), + [anon_sym_match] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1948), + [anon_sym_catch] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_source] = ACTIONS(1948), + [anon_sym_source_DASHenv] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_hide] = ACTIONS(1948), + [anon_sym_hide_DASHenv] = ACTIONS(1948), + [anon_sym_overlay] = ACTIONS(1948), + [anon_sym_as] = ACTIONS(1948), + [anon_sym_PLUS2] = ACTIONS(1948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1950), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1950), + [aux_sym__val_number_decimal_token4] = ACTIONS(1950), + [aux_sym__val_number_token1] = ACTIONS(1950), + [aux_sym__val_number_token2] = ACTIONS(1950), + [aux_sym__val_number_token3] = ACTIONS(1950), + [aux_sym__val_number_token4] = ACTIONS(1948), + [aux_sym__val_number_token5] = ACTIONS(1948), + [aux_sym__val_number_token6] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym__str_single_quotes] = ACTIONS(1950), + [sym__str_back_ticks] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1950), + }, + [726] = { + [sym_comment] = STATE(726), + [anon_sym_export] = ACTIONS(2387), + [anon_sym_alias] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2387), + [anon_sym_let_DASHenv] = ACTIONS(2387), + [anon_sym_mut] = ACTIONS(2387), + [anon_sym_const] = ACTIONS(2387), + [aux_sym_cmd_identifier_token1] = ACTIONS(2387), + [aux_sym_cmd_identifier_token2] = ACTIONS(2389), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), + [aux_sym_cmd_identifier_token6] = ACTIONS(2389), + [aux_sym_cmd_identifier_token7] = ACTIONS(2389), + [aux_sym_cmd_identifier_token8] = ACTIONS(2387), + [aux_sym_cmd_identifier_token9] = ACTIONS(2387), + [aux_sym_cmd_identifier_token10] = ACTIONS(2389), + [aux_sym_cmd_identifier_token11] = ACTIONS(2389), + [aux_sym_cmd_identifier_token12] = ACTIONS(2387), + [aux_sym_cmd_identifier_token13] = ACTIONS(2387), + [aux_sym_cmd_identifier_token14] = ACTIONS(2387), + [aux_sym_cmd_identifier_token15] = ACTIONS(2387), + [aux_sym_cmd_identifier_token16] = ACTIONS(2389), + [aux_sym_cmd_identifier_token17] = ACTIONS(2389), + [aux_sym_cmd_identifier_token18] = ACTIONS(2389), + [aux_sym_cmd_identifier_token19] = ACTIONS(2389), + [aux_sym_cmd_identifier_token20] = ACTIONS(2389), + [aux_sym_cmd_identifier_token21] = ACTIONS(2389), + [aux_sym_cmd_identifier_token22] = ACTIONS(2389), + [aux_sym_cmd_identifier_token23] = ACTIONS(2389), + [aux_sym_cmd_identifier_token24] = ACTIONS(2389), + [aux_sym_cmd_identifier_token25] = ACTIONS(2389), + [aux_sym_cmd_identifier_token26] = ACTIONS(2389), + [aux_sym_cmd_identifier_token27] = ACTIONS(2389), + [aux_sym_cmd_identifier_token28] = ACTIONS(2389), + [aux_sym_cmd_identifier_token29] = ACTIONS(2389), + [aux_sym_cmd_identifier_token30] = ACTIONS(2389), + [aux_sym_cmd_identifier_token31] = ACTIONS(2389), + [aux_sym_cmd_identifier_token32] = ACTIONS(2389), + [aux_sym_cmd_identifier_token33] = ACTIONS(2389), + [aux_sym_cmd_identifier_token34] = ACTIONS(2387), + [aux_sym_cmd_identifier_token35] = ACTIONS(2389), + [aux_sym_cmd_identifier_token36] = ACTIONS(2389), + [aux_sym_cmd_identifier_token37] = ACTIONS(2389), + [aux_sym_cmd_identifier_token38] = ACTIONS(2387), + [aux_sym_cmd_identifier_token39] = ACTIONS(2389), + [aux_sym_cmd_identifier_token40] = ACTIONS(2389), + [anon_sym_def] = ACTIONS(2387), + [anon_sym_export_DASHenv] = ACTIONS(2387), + [anon_sym_extern] = ACTIONS(2387), + [anon_sym_module] = ACTIONS(2387), + [anon_sym_use] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2389), + [anon_sym_error] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2387), + [anon_sym_break] = ACTIONS(2387), + [anon_sym_continue] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_in2] = ACTIONS(2387), + [anon_sym_loop] = ACTIONS(2387), + [anon_sym_make] = ACTIONS(2387), + [anon_sym_while] = ACTIONS(2387), + [anon_sym_do] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_else] = ACTIONS(2387), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2387), + [anon_sym_catch] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_source] = ACTIONS(2387), + [anon_sym_source_DASHenv] = ACTIONS(2387), + [anon_sym_register] = ACTIONS(2387), + [anon_sym_hide] = ACTIONS(2387), + [anon_sym_hide_DASHenv] = ACTIONS(2387), + [anon_sym_overlay] = ACTIONS(2387), + [anon_sym_as] = ACTIONS(2387), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2389), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2389), + [aux_sym__val_number_decimal_token1] = ACTIONS(2387), + [aux_sym__val_number_decimal_token2] = ACTIONS(2389), + [aux_sym__val_number_decimal_token3] = ACTIONS(2389), + [aux_sym__val_number_decimal_token4] = ACTIONS(2389), + [aux_sym__val_number_token1] = ACTIONS(2389), + [aux_sym__val_number_token2] = ACTIONS(2389), + [aux_sym__val_number_token3] = ACTIONS(2389), + [aux_sym__val_number_token4] = ACTIONS(2387), + [aux_sym__val_number_token5] = ACTIONS(2387), + [aux_sym__val_number_token6] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(2389), + [sym__str_single_quotes] = ACTIONS(2389), + [sym__str_back_ticks] = ACTIONS(2389), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2389), + }, + [727] = { + [sym_comment] = STATE(727), + [anon_sym_export] = ACTIONS(2367), + [anon_sym_alias] = ACTIONS(2367), + [anon_sym_let] = ACTIONS(2367), + [anon_sym_let_DASHenv] = ACTIONS(2367), + [anon_sym_mut] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [aux_sym_cmd_identifier_token1] = ACTIONS(2367), + [aux_sym_cmd_identifier_token2] = ACTIONS(2369), + [aux_sym_cmd_identifier_token3] = ACTIONS(2369), + [aux_sym_cmd_identifier_token4] = ACTIONS(2369), + [aux_sym_cmd_identifier_token5] = ACTIONS(2369), + [aux_sym_cmd_identifier_token6] = ACTIONS(2369), + [aux_sym_cmd_identifier_token7] = ACTIONS(2369), + [aux_sym_cmd_identifier_token8] = ACTIONS(2367), + [aux_sym_cmd_identifier_token9] = ACTIONS(2367), + [aux_sym_cmd_identifier_token10] = ACTIONS(2369), + [aux_sym_cmd_identifier_token11] = ACTIONS(2369), + [aux_sym_cmd_identifier_token12] = ACTIONS(2367), + [aux_sym_cmd_identifier_token13] = ACTIONS(2367), + [aux_sym_cmd_identifier_token14] = ACTIONS(2367), + [aux_sym_cmd_identifier_token15] = ACTIONS(2367), + [aux_sym_cmd_identifier_token16] = ACTIONS(2369), + [aux_sym_cmd_identifier_token17] = ACTIONS(2369), + [aux_sym_cmd_identifier_token18] = ACTIONS(2369), + [aux_sym_cmd_identifier_token19] = ACTIONS(2369), + [aux_sym_cmd_identifier_token20] = ACTIONS(2369), + [aux_sym_cmd_identifier_token21] = ACTIONS(2369), + [aux_sym_cmd_identifier_token22] = ACTIONS(2369), + [aux_sym_cmd_identifier_token23] = ACTIONS(2369), + [aux_sym_cmd_identifier_token24] = ACTIONS(2369), + [aux_sym_cmd_identifier_token25] = ACTIONS(2369), + [aux_sym_cmd_identifier_token26] = ACTIONS(2369), + [aux_sym_cmd_identifier_token27] = ACTIONS(2369), + [aux_sym_cmd_identifier_token28] = ACTIONS(2369), + [aux_sym_cmd_identifier_token29] = ACTIONS(2369), + [aux_sym_cmd_identifier_token30] = ACTIONS(2369), + [aux_sym_cmd_identifier_token31] = ACTIONS(2369), + [aux_sym_cmd_identifier_token32] = ACTIONS(2369), + [aux_sym_cmd_identifier_token33] = ACTIONS(2369), + [aux_sym_cmd_identifier_token34] = ACTIONS(2367), + [aux_sym_cmd_identifier_token35] = ACTIONS(2369), + [aux_sym_cmd_identifier_token36] = ACTIONS(2369), + [aux_sym_cmd_identifier_token37] = ACTIONS(2369), + [aux_sym_cmd_identifier_token38] = ACTIONS(2367), + [aux_sym_cmd_identifier_token39] = ACTIONS(2369), + [aux_sym_cmd_identifier_token40] = ACTIONS(2369), + [anon_sym_def] = ACTIONS(2367), + [anon_sym_export_DASHenv] = ACTIONS(2367), + [anon_sym_extern] = ACTIONS(2367), + [anon_sym_module] = ACTIONS(2367), + [anon_sym_use] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_error] = ACTIONS(2367), + [anon_sym_DASH2] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_in2] = ACTIONS(2367), + [anon_sym_loop] = ACTIONS(2367), + [anon_sym_make] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [anon_sym_do] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_else] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2367), + [anon_sym_catch] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_source] = ACTIONS(2367), + [anon_sym_source_DASHenv] = ACTIONS(2367), + [anon_sym_register] = ACTIONS(2367), + [anon_sym_hide] = ACTIONS(2367), + [anon_sym_hide_DASHenv] = ACTIONS(2367), + [anon_sym_overlay] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_PLUS2] = ACTIONS(2367), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2369), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2369), + [aux_sym__val_number_decimal_token1] = ACTIONS(2367), + [aux_sym__val_number_decimal_token2] = ACTIONS(2369), + [aux_sym__val_number_decimal_token3] = ACTIONS(2369), + [aux_sym__val_number_decimal_token4] = ACTIONS(2369), + [aux_sym__val_number_token1] = ACTIONS(2369), + [aux_sym__val_number_token2] = ACTIONS(2369), + [aux_sym__val_number_token3] = ACTIONS(2369), + [aux_sym__val_number_token4] = ACTIONS(2367), + [aux_sym__val_number_token5] = ACTIONS(2367), + [aux_sym__val_number_token6] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(2369), + [sym__str_single_quotes] = ACTIONS(2369), + [sym__str_back_ticks] = ACTIONS(2369), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2369), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2369), + }, + [728] = { + [sym_comment] = STATE(728), + [anon_sym_export] = ACTIONS(1972), + [anon_sym_alias] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_let_DASHenv] = ACTIONS(1972), + [anon_sym_mut] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [aux_sym_cmd_identifier_token1] = ACTIONS(1972), + [aux_sym_cmd_identifier_token2] = ACTIONS(1974), + [aux_sym_cmd_identifier_token3] = ACTIONS(1974), + [aux_sym_cmd_identifier_token4] = ACTIONS(1974), + [aux_sym_cmd_identifier_token5] = ACTIONS(1974), + [aux_sym_cmd_identifier_token6] = ACTIONS(1974), + [aux_sym_cmd_identifier_token7] = ACTIONS(1974), + [aux_sym_cmd_identifier_token8] = ACTIONS(1972), + [aux_sym_cmd_identifier_token9] = ACTIONS(1972), + [aux_sym_cmd_identifier_token10] = ACTIONS(1974), + [aux_sym_cmd_identifier_token11] = ACTIONS(1974), + [aux_sym_cmd_identifier_token12] = ACTIONS(1972), + [aux_sym_cmd_identifier_token13] = ACTIONS(1972), + [aux_sym_cmd_identifier_token14] = ACTIONS(1972), + [aux_sym_cmd_identifier_token15] = ACTIONS(1972), + [aux_sym_cmd_identifier_token16] = ACTIONS(1974), + [aux_sym_cmd_identifier_token17] = ACTIONS(1974), + [aux_sym_cmd_identifier_token18] = ACTIONS(1974), + [aux_sym_cmd_identifier_token19] = ACTIONS(1974), + [aux_sym_cmd_identifier_token20] = ACTIONS(1974), + [aux_sym_cmd_identifier_token21] = ACTIONS(1974), + [aux_sym_cmd_identifier_token22] = ACTIONS(1974), + [aux_sym_cmd_identifier_token23] = ACTIONS(1974), + [aux_sym_cmd_identifier_token24] = ACTIONS(1974), + [aux_sym_cmd_identifier_token25] = ACTIONS(1974), + [aux_sym_cmd_identifier_token26] = ACTIONS(1974), + [aux_sym_cmd_identifier_token27] = ACTIONS(1974), + [aux_sym_cmd_identifier_token28] = ACTIONS(1974), + [aux_sym_cmd_identifier_token29] = ACTIONS(1974), + [aux_sym_cmd_identifier_token30] = ACTIONS(1974), + [aux_sym_cmd_identifier_token31] = ACTIONS(1974), + [aux_sym_cmd_identifier_token32] = ACTIONS(1974), + [aux_sym_cmd_identifier_token33] = ACTIONS(1974), + [aux_sym_cmd_identifier_token34] = ACTIONS(1972), + [aux_sym_cmd_identifier_token35] = ACTIONS(1974), + [aux_sym_cmd_identifier_token36] = ACTIONS(1974), + [aux_sym_cmd_identifier_token37] = ACTIONS(1974), + [aux_sym_cmd_identifier_token38] = ACTIONS(1972), + [aux_sym_cmd_identifier_token39] = ACTIONS(1974), + [aux_sym_cmd_identifier_token40] = ACTIONS(1974), + [anon_sym_def] = ACTIONS(1972), + [anon_sym_export_DASHenv] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_module] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [anon_sym_error] = ACTIONS(1972), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_in2] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_make] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_else] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_try] = ACTIONS(1972), + [anon_sym_catch] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_source] = ACTIONS(1972), + [anon_sym_source_DASHenv] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_hide] = ACTIONS(1972), + [anon_sym_hide_DASHenv] = ACTIONS(1972), + [anon_sym_overlay] = ACTIONS(1972), + [anon_sym_as] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1974), + [aux_sym__val_number_decimal_token3] = ACTIONS(1974), + [aux_sym__val_number_decimal_token4] = ACTIONS(1974), + [aux_sym__val_number_token1] = ACTIONS(1974), + [aux_sym__val_number_token2] = ACTIONS(1974), + [aux_sym__val_number_token3] = ACTIONS(1974), + [aux_sym__val_number_token4] = ACTIONS(1972), + [aux_sym__val_number_token5] = ACTIONS(1972), + [aux_sym__val_number_token6] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym__str_single_quotes] = ACTIONS(1974), + [sym__str_back_ticks] = ACTIONS(1974), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1974), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1974), + }, + [729] = { + [sym_comment] = STATE(729), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_alias] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_let_DASHenv] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [aux_sym_cmd_identifier_token1] = ACTIONS(2445), + [aux_sym_cmd_identifier_token2] = ACTIONS(2447), + [aux_sym_cmd_identifier_token3] = ACTIONS(2447), + [aux_sym_cmd_identifier_token4] = ACTIONS(2447), + [aux_sym_cmd_identifier_token5] = ACTIONS(2447), + [aux_sym_cmd_identifier_token6] = ACTIONS(2447), + [aux_sym_cmd_identifier_token7] = ACTIONS(2447), + [aux_sym_cmd_identifier_token8] = ACTIONS(2445), + [aux_sym_cmd_identifier_token9] = ACTIONS(2445), + [aux_sym_cmd_identifier_token10] = ACTIONS(2447), + [aux_sym_cmd_identifier_token11] = ACTIONS(2447), + [aux_sym_cmd_identifier_token12] = ACTIONS(2445), + [aux_sym_cmd_identifier_token13] = ACTIONS(2445), + [aux_sym_cmd_identifier_token14] = ACTIONS(2445), + [aux_sym_cmd_identifier_token15] = ACTIONS(2445), + [aux_sym_cmd_identifier_token16] = ACTIONS(2447), + [aux_sym_cmd_identifier_token17] = ACTIONS(2447), + [aux_sym_cmd_identifier_token18] = ACTIONS(2447), + [aux_sym_cmd_identifier_token19] = ACTIONS(2447), + [aux_sym_cmd_identifier_token20] = ACTIONS(2447), + [aux_sym_cmd_identifier_token21] = ACTIONS(2447), + [aux_sym_cmd_identifier_token22] = ACTIONS(2447), + [aux_sym_cmd_identifier_token23] = ACTIONS(2447), + [aux_sym_cmd_identifier_token24] = ACTIONS(2447), + [aux_sym_cmd_identifier_token25] = ACTIONS(2447), + [aux_sym_cmd_identifier_token26] = ACTIONS(2447), + [aux_sym_cmd_identifier_token27] = ACTIONS(2447), + [aux_sym_cmd_identifier_token28] = ACTIONS(2447), + [aux_sym_cmd_identifier_token29] = ACTIONS(2447), + [aux_sym_cmd_identifier_token30] = ACTIONS(2447), + [aux_sym_cmd_identifier_token31] = ACTIONS(2447), + [aux_sym_cmd_identifier_token32] = ACTIONS(2447), + [aux_sym_cmd_identifier_token33] = ACTIONS(2447), + [aux_sym_cmd_identifier_token34] = ACTIONS(2445), + [aux_sym_cmd_identifier_token35] = ACTIONS(2447), + [aux_sym_cmd_identifier_token36] = ACTIONS(2447), + [aux_sym_cmd_identifier_token37] = ACTIONS(2447), + [aux_sym_cmd_identifier_token38] = ACTIONS(2445), + [aux_sym_cmd_identifier_token39] = ACTIONS(2447), + [aux_sym_cmd_identifier_token40] = ACTIONS(2447), + [anon_sym_def] = ACTIONS(2445), + [anon_sym_export_DASHenv] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_DOLLAR] = ACTIONS(2447), + [anon_sym_error] = ACTIONS(2445), + [anon_sym_DASH2] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_in2] = ACTIONS(2445), + [anon_sym_loop] = ACTIONS(2445), + [anon_sym_make] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_catch] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_source] = ACTIONS(2445), + [anon_sym_source_DASHenv] = ACTIONS(2445), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_hide] = ACTIONS(2445), + [anon_sym_hide_DASHenv] = ACTIONS(2445), + [anon_sym_overlay] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_PLUS2] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2447), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2447), + [aux_sym__val_number_decimal_token1] = ACTIONS(2445), + [aux_sym__val_number_decimal_token2] = ACTIONS(2447), + [aux_sym__val_number_decimal_token3] = ACTIONS(2447), + [aux_sym__val_number_decimal_token4] = ACTIONS(2447), + [aux_sym__val_number_token1] = ACTIONS(2447), + [aux_sym__val_number_token2] = ACTIONS(2447), + [aux_sym__val_number_token3] = ACTIONS(2447), + [aux_sym__val_number_token4] = ACTIONS(2445), + [aux_sym__val_number_token5] = ACTIONS(2445), + [aux_sym__val_number_token6] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2447), + [sym__str_single_quotes] = ACTIONS(2447), + [sym__str_back_ticks] = ACTIONS(2447), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2447), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2447), + }, + [730] = { + [sym_comment] = STATE(730), + [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(2451), + [aux_sym_cmd_identifier_token3] = ACTIONS(2451), + [aux_sym_cmd_identifier_token4] = ACTIONS(2451), + [aux_sym_cmd_identifier_token5] = ACTIONS(2451), + [aux_sym_cmd_identifier_token6] = ACTIONS(2451), + [aux_sym_cmd_identifier_token7] = ACTIONS(2451), + [aux_sym_cmd_identifier_token8] = ACTIONS(2449), + [aux_sym_cmd_identifier_token9] = ACTIONS(2449), + [aux_sym_cmd_identifier_token10] = ACTIONS(2451), + [aux_sym_cmd_identifier_token11] = ACTIONS(2451), + [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(2451), + [aux_sym_cmd_identifier_token17] = ACTIONS(2451), + [aux_sym_cmd_identifier_token18] = ACTIONS(2451), + [aux_sym_cmd_identifier_token19] = ACTIONS(2451), + [aux_sym_cmd_identifier_token20] = ACTIONS(2451), + [aux_sym_cmd_identifier_token21] = ACTIONS(2451), + [aux_sym_cmd_identifier_token22] = ACTIONS(2451), + [aux_sym_cmd_identifier_token23] = ACTIONS(2451), + [aux_sym_cmd_identifier_token24] = ACTIONS(2451), + [aux_sym_cmd_identifier_token25] = ACTIONS(2451), + [aux_sym_cmd_identifier_token26] = ACTIONS(2451), + [aux_sym_cmd_identifier_token27] = ACTIONS(2451), + [aux_sym_cmd_identifier_token28] = ACTIONS(2451), + [aux_sym_cmd_identifier_token29] = ACTIONS(2451), + [aux_sym_cmd_identifier_token30] = ACTIONS(2451), + [aux_sym_cmd_identifier_token31] = ACTIONS(2451), + [aux_sym_cmd_identifier_token32] = ACTIONS(2451), + [aux_sym_cmd_identifier_token33] = ACTIONS(2451), + [aux_sym_cmd_identifier_token34] = ACTIONS(2449), + [aux_sym_cmd_identifier_token35] = ACTIONS(2451), + [aux_sym_cmd_identifier_token36] = ACTIONS(2451), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_in2] = 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_as] = ACTIONS(2449), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2449), + [aux_sym__val_number_token5] = ACTIONS(2449), + [aux_sym__val_number_token6] = ACTIONS(2449), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2451), + }, + [731] = { + [sym_comment] = STATE(731), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_alias] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1988), + [anon_sym_let_DASHenv] = ACTIONS(1988), + [anon_sym_mut] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [aux_sym_cmd_identifier_token1] = ACTIONS(1988), + [aux_sym_cmd_identifier_token2] = ACTIONS(1990), + [aux_sym_cmd_identifier_token3] = ACTIONS(1990), + [aux_sym_cmd_identifier_token4] = ACTIONS(1990), + [aux_sym_cmd_identifier_token5] = ACTIONS(1990), + [aux_sym_cmd_identifier_token6] = ACTIONS(1990), + [aux_sym_cmd_identifier_token7] = ACTIONS(1990), + [aux_sym_cmd_identifier_token8] = ACTIONS(1988), + [aux_sym_cmd_identifier_token9] = ACTIONS(1988), + [aux_sym_cmd_identifier_token10] = ACTIONS(1990), + [aux_sym_cmd_identifier_token11] = ACTIONS(1990), + [aux_sym_cmd_identifier_token12] = ACTIONS(1988), + [aux_sym_cmd_identifier_token13] = ACTIONS(1988), + [aux_sym_cmd_identifier_token14] = ACTIONS(1988), + [aux_sym_cmd_identifier_token15] = ACTIONS(1988), + [aux_sym_cmd_identifier_token16] = ACTIONS(1990), + [aux_sym_cmd_identifier_token17] = ACTIONS(1990), + [aux_sym_cmd_identifier_token18] = ACTIONS(1990), + [aux_sym_cmd_identifier_token19] = ACTIONS(1990), + [aux_sym_cmd_identifier_token20] = ACTIONS(1990), + [aux_sym_cmd_identifier_token21] = ACTIONS(1990), + [aux_sym_cmd_identifier_token22] = ACTIONS(1990), + [aux_sym_cmd_identifier_token23] = ACTIONS(1990), + [aux_sym_cmd_identifier_token24] = ACTIONS(1990), + [aux_sym_cmd_identifier_token25] = ACTIONS(1990), + [aux_sym_cmd_identifier_token26] = ACTIONS(1990), + [aux_sym_cmd_identifier_token27] = ACTIONS(1990), + [aux_sym_cmd_identifier_token28] = ACTIONS(1990), + [aux_sym_cmd_identifier_token29] = ACTIONS(1990), + [aux_sym_cmd_identifier_token30] = ACTIONS(1990), + [aux_sym_cmd_identifier_token31] = ACTIONS(1990), + [aux_sym_cmd_identifier_token32] = ACTIONS(1990), + [aux_sym_cmd_identifier_token33] = ACTIONS(1990), + [aux_sym_cmd_identifier_token34] = ACTIONS(1988), + [aux_sym_cmd_identifier_token35] = ACTIONS(1990), + [aux_sym_cmd_identifier_token36] = ACTIONS(1990), + [aux_sym_cmd_identifier_token37] = ACTIONS(1990), + [aux_sym_cmd_identifier_token38] = ACTIONS(1988), + [aux_sym_cmd_identifier_token39] = ACTIONS(1990), + [aux_sym_cmd_identifier_token40] = ACTIONS(1990), + [anon_sym_def] = ACTIONS(1988), + [anon_sym_export_DASHenv] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym_module] = ACTIONS(1988), + [anon_sym_use] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_DOLLAR] = ACTIONS(1990), + [anon_sym_error] = ACTIONS(1988), + [anon_sym_DASH2] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_in2] = ACTIONS(1988), + [anon_sym_loop] = ACTIONS(1988), + [anon_sym_make] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_do] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1988), + [anon_sym_match] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_try] = ACTIONS(1988), + [anon_sym_catch] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_source] = ACTIONS(1988), + [anon_sym_source_DASHenv] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1988), + [anon_sym_hide] = ACTIONS(1988), + [anon_sym_hide_DASHenv] = ACTIONS(1988), + [anon_sym_overlay] = ACTIONS(1988), + [anon_sym_as] = ACTIONS(1988), + [anon_sym_PLUS2] = ACTIONS(1988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1990), + [aux_sym__val_number_decimal_token1] = ACTIONS(1988), + [aux_sym__val_number_decimal_token2] = ACTIONS(1990), + [aux_sym__val_number_decimal_token3] = ACTIONS(1990), + [aux_sym__val_number_decimal_token4] = ACTIONS(1990), + [aux_sym__val_number_token1] = ACTIONS(1990), + [aux_sym__val_number_token2] = ACTIONS(1990), + [aux_sym__val_number_token3] = ACTIONS(1990), + [aux_sym__val_number_token4] = ACTIONS(1988), + [aux_sym__val_number_token5] = ACTIONS(1988), + [aux_sym__val_number_token6] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym__str_single_quotes] = ACTIONS(1990), + [sym__str_back_ticks] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1990), + }, + [732] = { + [sym_comment] = STATE(732), + [anon_sym_export] = ACTIONS(1992), + [anon_sym_alias] = ACTIONS(1992), + [anon_sym_let] = ACTIONS(1992), + [anon_sym_let_DASHenv] = ACTIONS(1992), + [anon_sym_mut] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [aux_sym_cmd_identifier_token1] = ACTIONS(1992), + [aux_sym_cmd_identifier_token2] = ACTIONS(1994), + [aux_sym_cmd_identifier_token3] = ACTIONS(1994), + [aux_sym_cmd_identifier_token4] = ACTIONS(1994), + [aux_sym_cmd_identifier_token5] = ACTIONS(1994), + [aux_sym_cmd_identifier_token6] = ACTIONS(1994), + [aux_sym_cmd_identifier_token7] = ACTIONS(1994), + [aux_sym_cmd_identifier_token8] = ACTIONS(1992), + [aux_sym_cmd_identifier_token9] = ACTIONS(1992), + [aux_sym_cmd_identifier_token10] = ACTIONS(1994), + [aux_sym_cmd_identifier_token11] = ACTIONS(1994), + [aux_sym_cmd_identifier_token12] = ACTIONS(1992), + [aux_sym_cmd_identifier_token13] = ACTIONS(1992), + [aux_sym_cmd_identifier_token14] = ACTIONS(1992), + [aux_sym_cmd_identifier_token15] = ACTIONS(1992), + [aux_sym_cmd_identifier_token16] = ACTIONS(1994), + [aux_sym_cmd_identifier_token17] = ACTIONS(1994), + [aux_sym_cmd_identifier_token18] = ACTIONS(1994), + [aux_sym_cmd_identifier_token19] = ACTIONS(1994), + [aux_sym_cmd_identifier_token20] = ACTIONS(1994), + [aux_sym_cmd_identifier_token21] = ACTIONS(1994), + [aux_sym_cmd_identifier_token22] = ACTIONS(1994), + [aux_sym_cmd_identifier_token23] = ACTIONS(1994), + [aux_sym_cmd_identifier_token24] = ACTIONS(1994), + [aux_sym_cmd_identifier_token25] = ACTIONS(1994), + [aux_sym_cmd_identifier_token26] = ACTIONS(1994), + [aux_sym_cmd_identifier_token27] = ACTIONS(1994), + [aux_sym_cmd_identifier_token28] = ACTIONS(1994), + [aux_sym_cmd_identifier_token29] = ACTIONS(1994), + [aux_sym_cmd_identifier_token30] = ACTIONS(1994), + [aux_sym_cmd_identifier_token31] = ACTIONS(1994), + [aux_sym_cmd_identifier_token32] = ACTIONS(1994), + [aux_sym_cmd_identifier_token33] = ACTIONS(1994), + [aux_sym_cmd_identifier_token34] = ACTIONS(1992), + [aux_sym_cmd_identifier_token35] = ACTIONS(1994), + [aux_sym_cmd_identifier_token36] = ACTIONS(1994), + [aux_sym_cmd_identifier_token37] = ACTIONS(1994), + [aux_sym_cmd_identifier_token38] = ACTIONS(1992), + [aux_sym_cmd_identifier_token39] = ACTIONS(1994), + [aux_sym_cmd_identifier_token40] = ACTIONS(1994), + [anon_sym_def] = ACTIONS(1992), + [anon_sym_export_DASHenv] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym_module] = ACTIONS(1992), + [anon_sym_use] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [anon_sym_error] = ACTIONS(1992), + [anon_sym_DASH2] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_in2] = ACTIONS(1992), + [anon_sym_loop] = ACTIONS(1992), + [anon_sym_make] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_match] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_try] = ACTIONS(1992), + [anon_sym_catch] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_source] = ACTIONS(1992), + [anon_sym_source_DASHenv] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_hide] = ACTIONS(1992), + [anon_sym_hide_DASHenv] = ACTIONS(1992), + [anon_sym_overlay] = ACTIONS(1992), + [anon_sym_as] = ACTIONS(1992), + [anon_sym_PLUS2] = ACTIONS(1992), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1994), + [aux_sym__val_number_decimal_token1] = ACTIONS(1992), + [aux_sym__val_number_decimal_token2] = ACTIONS(1994), + [aux_sym__val_number_decimal_token3] = ACTIONS(1994), + [aux_sym__val_number_decimal_token4] = ACTIONS(1994), + [aux_sym__val_number_token1] = ACTIONS(1994), + [aux_sym__val_number_token2] = ACTIONS(1994), + [aux_sym__val_number_token3] = ACTIONS(1994), + [aux_sym__val_number_token4] = ACTIONS(1992), + [aux_sym__val_number_token5] = ACTIONS(1992), + [aux_sym__val_number_token6] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym__str_single_quotes] = ACTIONS(1994), + [sym__str_back_ticks] = ACTIONS(1994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1994), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1994), + }, + [733] = { + [sym_comment] = STATE(733), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_alias] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_let_DASHenv] = ACTIONS(2437), + [anon_sym_mut] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [aux_sym_cmd_identifier_token1] = ACTIONS(2437), + [aux_sym_cmd_identifier_token2] = ACTIONS(2439), + [aux_sym_cmd_identifier_token3] = ACTIONS(2439), + [aux_sym_cmd_identifier_token4] = ACTIONS(2439), + [aux_sym_cmd_identifier_token5] = ACTIONS(2439), + [aux_sym_cmd_identifier_token6] = ACTIONS(2439), + [aux_sym_cmd_identifier_token7] = ACTIONS(2439), + [aux_sym_cmd_identifier_token8] = ACTIONS(2437), + [aux_sym_cmd_identifier_token9] = ACTIONS(2437), + [aux_sym_cmd_identifier_token10] = ACTIONS(2439), + [aux_sym_cmd_identifier_token11] = ACTIONS(2439), + [aux_sym_cmd_identifier_token12] = ACTIONS(2437), + [aux_sym_cmd_identifier_token13] = ACTIONS(2437), + [aux_sym_cmd_identifier_token14] = ACTIONS(2437), + [aux_sym_cmd_identifier_token15] = ACTIONS(2437), + [aux_sym_cmd_identifier_token16] = ACTIONS(2439), + [aux_sym_cmd_identifier_token17] = ACTIONS(2439), + [aux_sym_cmd_identifier_token18] = ACTIONS(2439), + [aux_sym_cmd_identifier_token19] = ACTIONS(2439), + [aux_sym_cmd_identifier_token20] = ACTIONS(2439), + [aux_sym_cmd_identifier_token21] = ACTIONS(2439), + [aux_sym_cmd_identifier_token22] = ACTIONS(2439), + [aux_sym_cmd_identifier_token23] = ACTIONS(2439), + [aux_sym_cmd_identifier_token24] = ACTIONS(2439), + [aux_sym_cmd_identifier_token25] = ACTIONS(2439), + [aux_sym_cmd_identifier_token26] = ACTIONS(2439), + [aux_sym_cmd_identifier_token27] = ACTIONS(2439), + [aux_sym_cmd_identifier_token28] = ACTIONS(2439), + [aux_sym_cmd_identifier_token29] = ACTIONS(2439), + [aux_sym_cmd_identifier_token30] = ACTIONS(2439), + [aux_sym_cmd_identifier_token31] = ACTIONS(2439), + [aux_sym_cmd_identifier_token32] = ACTIONS(2439), + [aux_sym_cmd_identifier_token33] = ACTIONS(2439), + [aux_sym_cmd_identifier_token34] = ACTIONS(2437), + [aux_sym_cmd_identifier_token35] = ACTIONS(2439), + [aux_sym_cmd_identifier_token36] = ACTIONS(2439), + [aux_sym_cmd_identifier_token37] = ACTIONS(2439), + [aux_sym_cmd_identifier_token38] = ACTIONS(2437), + [aux_sym_cmd_identifier_token39] = ACTIONS(2439), + [aux_sym_cmd_identifier_token40] = ACTIONS(2439), + [anon_sym_def] = ACTIONS(2437), + [anon_sym_export_DASHenv] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_DOLLAR] = ACTIONS(2439), + [anon_sym_error] = ACTIONS(2437), + [anon_sym_DASH2] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_in2] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_make] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_catch] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_source] = ACTIONS(2437), + [anon_sym_source_DASHenv] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_hide] = ACTIONS(2437), + [anon_sym_hide_DASHenv] = ACTIONS(2437), + [anon_sym_overlay] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_PLUS2] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2439), + [aux_sym__val_number_decimal_token1] = ACTIONS(2437), + [aux_sym__val_number_decimal_token2] = ACTIONS(2439), + [aux_sym__val_number_decimal_token3] = ACTIONS(2439), + [aux_sym__val_number_decimal_token4] = ACTIONS(2439), + [aux_sym__val_number_token1] = ACTIONS(2439), + [aux_sym__val_number_token2] = ACTIONS(2439), + [aux_sym__val_number_token3] = ACTIONS(2439), + [aux_sym__val_number_token4] = ACTIONS(2437), + [aux_sym__val_number_token5] = ACTIONS(2437), + [aux_sym__val_number_token6] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(2439), + [sym__str_single_quotes] = ACTIONS(2439), + [sym__str_back_ticks] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2439), + }, + [734] = { + [sym_comment] = STATE(734), + [anon_sym_export] = ACTIONS(2004), + [anon_sym_alias] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_let_DASHenv] = ACTIONS(2004), + [anon_sym_mut] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [aux_sym_cmd_identifier_token1] = ACTIONS(2004), + [aux_sym_cmd_identifier_token2] = ACTIONS(2006), + [aux_sym_cmd_identifier_token3] = ACTIONS(2006), + [aux_sym_cmd_identifier_token4] = ACTIONS(2006), + [aux_sym_cmd_identifier_token5] = ACTIONS(2006), + [aux_sym_cmd_identifier_token6] = ACTIONS(2006), + [aux_sym_cmd_identifier_token7] = ACTIONS(2006), + [aux_sym_cmd_identifier_token8] = ACTIONS(2004), + [aux_sym_cmd_identifier_token9] = ACTIONS(2004), + [aux_sym_cmd_identifier_token10] = ACTIONS(2006), + [aux_sym_cmd_identifier_token11] = ACTIONS(2006), + [aux_sym_cmd_identifier_token12] = ACTIONS(2004), + [aux_sym_cmd_identifier_token13] = ACTIONS(2004), + [aux_sym_cmd_identifier_token14] = ACTIONS(2004), + [aux_sym_cmd_identifier_token15] = ACTIONS(2004), + [aux_sym_cmd_identifier_token16] = ACTIONS(2006), + [aux_sym_cmd_identifier_token17] = ACTIONS(2006), + [aux_sym_cmd_identifier_token18] = ACTIONS(2006), + [aux_sym_cmd_identifier_token19] = ACTIONS(2006), + [aux_sym_cmd_identifier_token20] = ACTIONS(2006), + [aux_sym_cmd_identifier_token21] = ACTIONS(2006), + [aux_sym_cmd_identifier_token22] = ACTIONS(2006), + [aux_sym_cmd_identifier_token23] = ACTIONS(2006), + [aux_sym_cmd_identifier_token24] = ACTIONS(2006), + [aux_sym_cmd_identifier_token25] = ACTIONS(2006), + [aux_sym_cmd_identifier_token26] = ACTIONS(2006), + [aux_sym_cmd_identifier_token27] = ACTIONS(2006), + [aux_sym_cmd_identifier_token28] = ACTIONS(2006), + [aux_sym_cmd_identifier_token29] = ACTIONS(2006), + [aux_sym_cmd_identifier_token30] = ACTIONS(2006), + [aux_sym_cmd_identifier_token31] = ACTIONS(2006), + [aux_sym_cmd_identifier_token32] = ACTIONS(2006), + [aux_sym_cmd_identifier_token33] = ACTIONS(2006), + [aux_sym_cmd_identifier_token34] = ACTIONS(2004), + [aux_sym_cmd_identifier_token35] = ACTIONS(2006), + [aux_sym_cmd_identifier_token36] = ACTIONS(2006), + [aux_sym_cmd_identifier_token37] = ACTIONS(2006), + [aux_sym_cmd_identifier_token38] = ACTIONS(2004), + [aux_sym_cmd_identifier_token39] = ACTIONS(2006), + [aux_sym_cmd_identifier_token40] = ACTIONS(2006), + [anon_sym_def] = ACTIONS(2004), + [anon_sym_export_DASHenv] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_module] = ACTIONS(2004), + [anon_sym_use] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2006), + [anon_sym_error] = ACTIONS(2004), + [anon_sym_DASH2] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_in2] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_make] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_catch] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_source] = ACTIONS(2004), + [anon_sym_source_DASHenv] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_hide] = ACTIONS(2004), + [anon_sym_hide_DASHenv] = ACTIONS(2004), + [anon_sym_overlay] = ACTIONS(2004), + [anon_sym_as] = ACTIONS(2004), + [anon_sym_PLUS2] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2006), + [aux_sym__val_number_decimal_token1] = ACTIONS(2004), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2006), + [aux_sym__val_number_decimal_token4] = ACTIONS(2006), + [aux_sym__val_number_token1] = ACTIONS(2006), + [aux_sym__val_number_token2] = ACTIONS(2006), + [aux_sym__val_number_token3] = ACTIONS(2006), + [aux_sym__val_number_token4] = ACTIONS(2004), + [aux_sym__val_number_token5] = ACTIONS(2004), + [aux_sym__val_number_token6] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym__str_single_quotes] = ACTIONS(2006), + [sym__str_back_ticks] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2006), + }, + [735] = { + [sym_comment] = STATE(735), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_alias] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_let_DASHenv] = ACTIONS(2456), + [anon_sym_mut] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [aux_sym_cmd_identifier_token1] = ACTIONS(2456), + [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(2456), + [aux_sym_cmd_identifier_token9] = ACTIONS(2456), + [aux_sym_cmd_identifier_token10] = ACTIONS(2458), + [aux_sym_cmd_identifier_token11] = ACTIONS(2458), + [aux_sym_cmd_identifier_token12] = ACTIONS(2456), + [aux_sym_cmd_identifier_token13] = ACTIONS(2456), + [aux_sym_cmd_identifier_token14] = ACTIONS(2456), + [aux_sym_cmd_identifier_token15] = ACTIONS(2456), + [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(2456), + [aux_sym_cmd_identifier_token35] = ACTIONS(2458), + [aux_sym_cmd_identifier_token36] = ACTIONS(2458), + [aux_sym_cmd_identifier_token37] = ACTIONS(2458), + [aux_sym_cmd_identifier_token38] = ACTIONS(2456), + [aux_sym_cmd_identifier_token39] = ACTIONS(2458), + [aux_sym_cmd_identifier_token40] = ACTIONS(2458), + [anon_sym_def] = ACTIONS(2456), + [anon_sym_export_DASHenv] = ACTIONS(2456), + [anon_sym_extern] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_use] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2458), + [anon_sym_error] = ACTIONS(2456), + [anon_sym_DASH2] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_in2] = ACTIONS(2456), + [anon_sym_loop] = ACTIONS(2456), + [anon_sym_make] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_match] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_catch] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_source] = ACTIONS(2456), + [anon_sym_source_DASHenv] = ACTIONS(2456), + [anon_sym_register] = ACTIONS(2456), + [anon_sym_hide] = ACTIONS(2456), + [anon_sym_hide_DASHenv] = ACTIONS(2456), + [anon_sym_overlay] = ACTIONS(2456), + [anon_sym_as] = ACTIONS(2456), + [anon_sym_PLUS2] = ACTIONS(2456), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2458), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2458), + [aux_sym__val_number_decimal_token1] = ACTIONS(2456), + [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), + [aux_sym__val_number_token4] = ACTIONS(2456), + [aux_sym__val_number_token5] = ACTIONS(2456), + [aux_sym__val_number_token6] = ACTIONS(2456), + [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), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2458), + }, + [736] = { + [sym_comment] = STATE(736), + [anon_sym_export] = ACTIONS(2460), + [anon_sym_alias] = ACTIONS(2460), + [anon_sym_let] = ACTIONS(2460), + [anon_sym_let_DASHenv] = ACTIONS(2460), + [anon_sym_mut] = ACTIONS(2460), + [anon_sym_const] = ACTIONS(2460), + [aux_sym_cmd_identifier_token1] = ACTIONS(2460), + [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(2460), + [aux_sym_cmd_identifier_token9] = ACTIONS(2460), + [aux_sym_cmd_identifier_token10] = ACTIONS(2462), + [aux_sym_cmd_identifier_token11] = ACTIONS(2462), + [aux_sym_cmd_identifier_token12] = ACTIONS(2460), + [aux_sym_cmd_identifier_token13] = ACTIONS(2460), + [aux_sym_cmd_identifier_token14] = ACTIONS(2460), + [aux_sym_cmd_identifier_token15] = ACTIONS(2460), + [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(2460), + [aux_sym_cmd_identifier_token35] = ACTIONS(2462), + [aux_sym_cmd_identifier_token36] = ACTIONS(2462), + [aux_sym_cmd_identifier_token37] = ACTIONS(2462), + [aux_sym_cmd_identifier_token38] = ACTIONS(2460), + [aux_sym_cmd_identifier_token39] = ACTIONS(2462), + [aux_sym_cmd_identifier_token40] = ACTIONS(2462), + [anon_sym_def] = ACTIONS(2460), + [anon_sym_export_DASHenv] = ACTIONS(2460), + [anon_sym_extern] = ACTIONS(2460), + [anon_sym_module] = ACTIONS(2460), + [anon_sym_use] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_DOLLAR] = ACTIONS(2462), + [anon_sym_error] = ACTIONS(2460), + [anon_sym_DASH2] = ACTIONS(2460), + [anon_sym_break] = ACTIONS(2460), + [anon_sym_continue] = ACTIONS(2460), + [anon_sym_for] = ACTIONS(2460), + [anon_sym_in2] = ACTIONS(2460), + [anon_sym_loop] = ACTIONS(2460), + [anon_sym_make] = ACTIONS(2460), + [anon_sym_while] = ACTIONS(2460), + [anon_sym_do] = ACTIONS(2460), + [anon_sym_if] = ACTIONS(2460), + [anon_sym_else] = ACTIONS(2460), + [anon_sym_match] = ACTIONS(2460), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2460), + [anon_sym_catch] = ACTIONS(2460), + [anon_sym_return] = ACTIONS(2460), + [anon_sym_source] = ACTIONS(2460), + [anon_sym_source_DASHenv] = ACTIONS(2460), + [anon_sym_register] = ACTIONS(2460), + [anon_sym_hide] = ACTIONS(2460), + [anon_sym_hide_DASHenv] = ACTIONS(2460), + [anon_sym_overlay] = ACTIONS(2460), + [anon_sym_as] = ACTIONS(2460), + [anon_sym_PLUS2] = ACTIONS(2460), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2462), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2462), + [aux_sym__val_number_decimal_token1] = ACTIONS(2460), + [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), + [aux_sym__val_number_token4] = ACTIONS(2460), + [aux_sym__val_number_token5] = ACTIONS(2460), + [aux_sym__val_number_token6] = ACTIONS(2460), + [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), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2462), + }, + [737] = { + [sym_comment] = STATE(737), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_alias] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_let_DASHenv] = ACTIONS(2129), + [anon_sym_mut] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [aux_sym_cmd_identifier_token1] = ACTIONS(2129), + [aux_sym_cmd_identifier_token2] = ACTIONS(2131), + [aux_sym_cmd_identifier_token3] = ACTIONS(2131), + [aux_sym_cmd_identifier_token4] = ACTIONS(2131), + [aux_sym_cmd_identifier_token5] = ACTIONS(2131), + [aux_sym_cmd_identifier_token6] = ACTIONS(2131), + [aux_sym_cmd_identifier_token7] = ACTIONS(2131), + [aux_sym_cmd_identifier_token8] = ACTIONS(2129), + [aux_sym_cmd_identifier_token9] = ACTIONS(2129), + [aux_sym_cmd_identifier_token10] = ACTIONS(2131), + [aux_sym_cmd_identifier_token11] = ACTIONS(2131), + [aux_sym_cmd_identifier_token12] = ACTIONS(2129), + [aux_sym_cmd_identifier_token13] = ACTIONS(2129), + [aux_sym_cmd_identifier_token14] = ACTIONS(2129), + [aux_sym_cmd_identifier_token15] = ACTIONS(2129), + [aux_sym_cmd_identifier_token16] = ACTIONS(2131), + [aux_sym_cmd_identifier_token17] = ACTIONS(2131), + [aux_sym_cmd_identifier_token18] = ACTIONS(2131), + [aux_sym_cmd_identifier_token19] = ACTIONS(2131), + [aux_sym_cmd_identifier_token20] = ACTIONS(2131), + [aux_sym_cmd_identifier_token21] = ACTIONS(2131), + [aux_sym_cmd_identifier_token22] = ACTIONS(2131), + [aux_sym_cmd_identifier_token23] = ACTIONS(2131), + [aux_sym_cmd_identifier_token24] = ACTIONS(2131), + [aux_sym_cmd_identifier_token25] = ACTIONS(2131), + [aux_sym_cmd_identifier_token26] = ACTIONS(2131), + [aux_sym_cmd_identifier_token27] = ACTIONS(2131), + [aux_sym_cmd_identifier_token28] = ACTIONS(2131), + [aux_sym_cmd_identifier_token29] = ACTIONS(2131), + [aux_sym_cmd_identifier_token30] = ACTIONS(2131), + [aux_sym_cmd_identifier_token31] = ACTIONS(2131), + [aux_sym_cmd_identifier_token32] = ACTIONS(2131), + [aux_sym_cmd_identifier_token33] = ACTIONS(2131), + [aux_sym_cmd_identifier_token34] = ACTIONS(2129), + [aux_sym_cmd_identifier_token35] = ACTIONS(2131), + [aux_sym_cmd_identifier_token36] = ACTIONS(2131), + [aux_sym_cmd_identifier_token37] = ACTIONS(2131), + [aux_sym_cmd_identifier_token38] = ACTIONS(2129), + [aux_sym_cmd_identifier_token39] = ACTIONS(2131), + [aux_sym_cmd_identifier_token40] = ACTIONS(2131), + [anon_sym_def] = ACTIONS(2129), + [anon_sym_export_DASHenv] = ACTIONS(2129), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_module] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_error] = ACTIONS(2129), + [anon_sym_DASH2] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_in2] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_make] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_else] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_catch] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_source] = ACTIONS(2129), + [anon_sym_source_DASHenv] = ACTIONS(2129), + [anon_sym_register] = ACTIONS(2129), + [anon_sym_hide] = ACTIONS(2129), + [anon_sym_hide_DASHenv] = ACTIONS(2129), + [anon_sym_overlay] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2129), + [anon_sym_PLUS2] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2131), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2131), + [aux_sym__val_number_decimal_token4] = ACTIONS(2131), + [aux_sym__val_number_token1] = ACTIONS(2131), + [aux_sym__val_number_token2] = ACTIONS(2131), + [aux_sym__val_number_token3] = ACTIONS(2131), + [aux_sym__val_number_token4] = ACTIONS(2129), + [aux_sym__val_number_token5] = ACTIONS(2129), + [aux_sym__val_number_token6] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2131), + [sym__str_single_quotes] = ACTIONS(2131), + [sym__str_back_ticks] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2131), + }, + [738] = { + [sym_comment] = STATE(738), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_alias] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_let_DASHenv] = ACTIONS(2183), + [anon_sym_mut] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [aux_sym_cmd_identifier_token1] = ACTIONS(2183), + [aux_sym_cmd_identifier_token2] = ACTIONS(2185), + [aux_sym_cmd_identifier_token3] = ACTIONS(2185), + [aux_sym_cmd_identifier_token4] = ACTIONS(2185), + [aux_sym_cmd_identifier_token5] = ACTIONS(2185), + [aux_sym_cmd_identifier_token6] = ACTIONS(2185), + [aux_sym_cmd_identifier_token7] = ACTIONS(2185), + [aux_sym_cmd_identifier_token8] = ACTIONS(2183), + [aux_sym_cmd_identifier_token9] = ACTIONS(2183), + [aux_sym_cmd_identifier_token10] = ACTIONS(2185), + [aux_sym_cmd_identifier_token11] = ACTIONS(2185), + [aux_sym_cmd_identifier_token12] = ACTIONS(2183), + [aux_sym_cmd_identifier_token13] = ACTIONS(2183), + [aux_sym_cmd_identifier_token14] = ACTIONS(2183), + [aux_sym_cmd_identifier_token15] = ACTIONS(2183), + [aux_sym_cmd_identifier_token16] = ACTIONS(2185), + [aux_sym_cmd_identifier_token17] = ACTIONS(2185), + [aux_sym_cmd_identifier_token18] = ACTIONS(2185), + [aux_sym_cmd_identifier_token19] = ACTIONS(2185), + [aux_sym_cmd_identifier_token20] = ACTIONS(2185), + [aux_sym_cmd_identifier_token21] = ACTIONS(2185), + [aux_sym_cmd_identifier_token22] = ACTIONS(2185), + [aux_sym_cmd_identifier_token23] = ACTIONS(2185), + [aux_sym_cmd_identifier_token24] = ACTIONS(2185), + [aux_sym_cmd_identifier_token25] = ACTIONS(2185), + [aux_sym_cmd_identifier_token26] = ACTIONS(2185), + [aux_sym_cmd_identifier_token27] = ACTIONS(2185), + [aux_sym_cmd_identifier_token28] = ACTIONS(2185), + [aux_sym_cmd_identifier_token29] = ACTIONS(2185), + [aux_sym_cmd_identifier_token30] = ACTIONS(2185), + [aux_sym_cmd_identifier_token31] = ACTIONS(2185), + [aux_sym_cmd_identifier_token32] = ACTIONS(2185), + [aux_sym_cmd_identifier_token33] = ACTIONS(2185), + [aux_sym_cmd_identifier_token34] = ACTIONS(2183), + [aux_sym_cmd_identifier_token35] = ACTIONS(2185), + [aux_sym_cmd_identifier_token36] = ACTIONS(2185), + [aux_sym_cmd_identifier_token37] = ACTIONS(2185), + [aux_sym_cmd_identifier_token38] = ACTIONS(2183), + [aux_sym_cmd_identifier_token39] = ACTIONS(2185), + [aux_sym_cmd_identifier_token40] = ACTIONS(2185), + [anon_sym_def] = ACTIONS(2183), + [anon_sym_export_DASHenv] = ACTIONS(2183), + [anon_sym_extern] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_use] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_error] = ACTIONS(2183), + [anon_sym_DASH2] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_in2] = ACTIONS(2183), + [anon_sym_loop] = ACTIONS(2183), + [anon_sym_make] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_catch] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_source] = ACTIONS(2183), + [anon_sym_source_DASHenv] = ACTIONS(2183), + [anon_sym_register] = ACTIONS(2183), + [anon_sym_hide] = ACTIONS(2183), + [anon_sym_hide_DASHenv] = ACTIONS(2183), + [anon_sym_overlay] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_PLUS2] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2185), + [aux_sym__val_number_decimal_token1] = ACTIONS(2183), + [aux_sym__val_number_decimal_token2] = ACTIONS(2185), + [aux_sym__val_number_decimal_token3] = ACTIONS(2185), + [aux_sym__val_number_decimal_token4] = ACTIONS(2185), + [aux_sym__val_number_token1] = ACTIONS(2185), + [aux_sym__val_number_token2] = ACTIONS(2185), + [aux_sym__val_number_token3] = ACTIONS(2185), + [aux_sym__val_number_token4] = ACTIONS(2183), + [aux_sym__val_number_token5] = ACTIONS(2183), + [aux_sym__val_number_token6] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2185), + [sym__str_single_quotes] = ACTIONS(2185), + [sym__str_back_ticks] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2185), + }, + [739] = { + [sym_comment] = STATE(739), + [anon_sym_export] = ACTIONS(2068), + [anon_sym_alias] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_let_DASHenv] = ACTIONS(2068), + [anon_sym_mut] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [aux_sym_cmd_identifier_token1] = ACTIONS(2068), + [aux_sym_cmd_identifier_token2] = ACTIONS(2070), + [aux_sym_cmd_identifier_token3] = ACTIONS(2070), + [aux_sym_cmd_identifier_token4] = ACTIONS(2070), + [aux_sym_cmd_identifier_token5] = ACTIONS(2070), + [aux_sym_cmd_identifier_token6] = ACTIONS(2070), + [aux_sym_cmd_identifier_token7] = ACTIONS(2070), + [aux_sym_cmd_identifier_token8] = ACTIONS(2068), + [aux_sym_cmd_identifier_token9] = ACTIONS(2068), + [aux_sym_cmd_identifier_token10] = ACTIONS(2070), + [aux_sym_cmd_identifier_token11] = ACTIONS(2070), + [aux_sym_cmd_identifier_token12] = ACTIONS(2068), + [aux_sym_cmd_identifier_token13] = ACTIONS(2068), + [aux_sym_cmd_identifier_token14] = ACTIONS(2068), + [aux_sym_cmd_identifier_token15] = ACTIONS(2068), + [aux_sym_cmd_identifier_token16] = ACTIONS(2070), + [aux_sym_cmd_identifier_token17] = ACTIONS(2070), + [aux_sym_cmd_identifier_token18] = ACTIONS(2070), + [aux_sym_cmd_identifier_token19] = ACTIONS(2070), + [aux_sym_cmd_identifier_token20] = ACTIONS(2070), + [aux_sym_cmd_identifier_token21] = ACTIONS(2070), + [aux_sym_cmd_identifier_token22] = ACTIONS(2070), + [aux_sym_cmd_identifier_token23] = ACTIONS(2070), + [aux_sym_cmd_identifier_token24] = ACTIONS(2070), + [aux_sym_cmd_identifier_token25] = ACTIONS(2070), + [aux_sym_cmd_identifier_token26] = ACTIONS(2070), + [aux_sym_cmd_identifier_token27] = ACTIONS(2070), + [aux_sym_cmd_identifier_token28] = ACTIONS(2070), + [aux_sym_cmd_identifier_token29] = ACTIONS(2070), + [aux_sym_cmd_identifier_token30] = ACTIONS(2070), + [aux_sym_cmd_identifier_token31] = ACTIONS(2070), + [aux_sym_cmd_identifier_token32] = ACTIONS(2070), + [aux_sym_cmd_identifier_token33] = ACTIONS(2070), + [aux_sym_cmd_identifier_token34] = ACTIONS(2068), + [aux_sym_cmd_identifier_token35] = ACTIONS(2070), + [aux_sym_cmd_identifier_token36] = ACTIONS(2070), + [aux_sym_cmd_identifier_token37] = ACTIONS(2070), + [aux_sym_cmd_identifier_token38] = ACTIONS(2068), + [aux_sym_cmd_identifier_token39] = ACTIONS(2070), + [aux_sym_cmd_identifier_token40] = ACTIONS(2070), + [anon_sym_def] = ACTIONS(2068), + [anon_sym_export_DASHenv] = ACTIONS(2068), + [anon_sym_extern] = ACTIONS(2068), + [anon_sym_module] = ACTIONS(2068), + [anon_sym_use] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_DOLLAR] = ACTIONS(2070), + [anon_sym_error] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_loop] = ACTIONS(2068), + [anon_sym_make] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_else] = ACTIONS(2068), + [anon_sym_match] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2068), + [anon_sym_catch] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_source] = ACTIONS(2068), + [anon_sym_source_DASHenv] = ACTIONS(2068), + [anon_sym_register] = ACTIONS(2068), + [anon_sym_hide] = ACTIONS(2068), + [anon_sym_hide_DASHenv] = ACTIONS(2068), + [anon_sym_overlay] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), + [aux_sym__val_number_decimal_token1] = ACTIONS(2068), + [aux_sym__val_number_decimal_token2] = ACTIONS(2070), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(2070), + [aux_sym__val_number_token2] = ACTIONS(2070), + [aux_sym__val_number_token3] = ACTIONS(2070), + [aux_sym__val_number_token4] = ACTIONS(2068), + [aux_sym__val_number_token5] = ACTIONS(2068), + [aux_sym__val_number_token6] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2070), + [sym__str_single_quotes] = ACTIONS(2070), + [sym__str_back_ticks] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2070), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2070), + }, + [740] = { + [sym_comment] = STATE(740), + [anon_sym_export] = ACTIONS(2151), + [anon_sym_alias] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_let_DASHenv] = ACTIONS(2151), + [anon_sym_mut] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [aux_sym_cmd_identifier_token1] = ACTIONS(2151), + [aux_sym_cmd_identifier_token2] = ACTIONS(2153), + [aux_sym_cmd_identifier_token3] = ACTIONS(2153), + [aux_sym_cmd_identifier_token4] = ACTIONS(2153), + [aux_sym_cmd_identifier_token5] = ACTIONS(2153), + [aux_sym_cmd_identifier_token6] = ACTIONS(2153), + [aux_sym_cmd_identifier_token7] = ACTIONS(2153), + [aux_sym_cmd_identifier_token8] = ACTIONS(2151), + [aux_sym_cmd_identifier_token9] = ACTIONS(2151), + [aux_sym_cmd_identifier_token10] = ACTIONS(2153), + [aux_sym_cmd_identifier_token11] = ACTIONS(2153), + [aux_sym_cmd_identifier_token12] = ACTIONS(2151), + [aux_sym_cmd_identifier_token13] = ACTIONS(2151), + [aux_sym_cmd_identifier_token14] = ACTIONS(2151), + [aux_sym_cmd_identifier_token15] = ACTIONS(2151), + [aux_sym_cmd_identifier_token16] = ACTIONS(2153), + [aux_sym_cmd_identifier_token17] = ACTIONS(2153), + [aux_sym_cmd_identifier_token18] = ACTIONS(2153), + [aux_sym_cmd_identifier_token19] = ACTIONS(2153), + [aux_sym_cmd_identifier_token20] = ACTIONS(2153), + [aux_sym_cmd_identifier_token21] = ACTIONS(2153), + [aux_sym_cmd_identifier_token22] = ACTIONS(2153), + [aux_sym_cmd_identifier_token23] = ACTIONS(2153), + [aux_sym_cmd_identifier_token24] = ACTIONS(2153), + [aux_sym_cmd_identifier_token25] = ACTIONS(2153), + [aux_sym_cmd_identifier_token26] = ACTIONS(2153), + [aux_sym_cmd_identifier_token27] = ACTIONS(2153), + [aux_sym_cmd_identifier_token28] = ACTIONS(2153), + [aux_sym_cmd_identifier_token29] = ACTIONS(2153), + [aux_sym_cmd_identifier_token30] = ACTIONS(2153), + [aux_sym_cmd_identifier_token31] = ACTIONS(2153), + [aux_sym_cmd_identifier_token32] = ACTIONS(2153), + [aux_sym_cmd_identifier_token33] = ACTIONS(2153), + [aux_sym_cmd_identifier_token34] = ACTIONS(2151), + [aux_sym_cmd_identifier_token35] = ACTIONS(2153), + [aux_sym_cmd_identifier_token36] = ACTIONS(2153), + [aux_sym_cmd_identifier_token37] = ACTIONS(2153), + [aux_sym_cmd_identifier_token38] = ACTIONS(2151), + [aux_sym_cmd_identifier_token39] = ACTIONS(2153), + [aux_sym_cmd_identifier_token40] = ACTIONS(2153), + [anon_sym_def] = ACTIONS(2151), + [anon_sym_export_DASHenv] = ACTIONS(2151), + [anon_sym_extern] = ACTIONS(2151), + [anon_sym_module] = ACTIONS(2151), + [anon_sym_use] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_DOLLAR] = ACTIONS(2153), + [anon_sym_error] = ACTIONS(2151), + [anon_sym_DASH2] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_in2] = ACTIONS(2151), + [anon_sym_loop] = ACTIONS(2151), + [anon_sym_make] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_else] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_catch] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_source] = ACTIONS(2151), + [anon_sym_source_DASHenv] = ACTIONS(2151), + [anon_sym_register] = ACTIONS(2151), + [anon_sym_hide] = ACTIONS(2151), + [anon_sym_hide_DASHenv] = ACTIONS(2151), + [anon_sym_overlay] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_PLUS2] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2153), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2153), + [aux_sym__val_number_decimal_token1] = ACTIONS(2151), + [aux_sym__val_number_decimal_token2] = ACTIONS(2153), + [aux_sym__val_number_decimal_token3] = ACTIONS(2153), + [aux_sym__val_number_decimal_token4] = ACTIONS(2153), + [aux_sym__val_number_token1] = ACTIONS(2153), + [aux_sym__val_number_token2] = ACTIONS(2153), + [aux_sym__val_number_token3] = ACTIONS(2153), + [aux_sym__val_number_token4] = ACTIONS(2151), + [aux_sym__val_number_token5] = ACTIONS(2151), + [aux_sym__val_number_token6] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2153), + [sym__str_single_quotes] = ACTIONS(2153), + [sym__str_back_ticks] = ACTIONS(2153), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2153), + }, + [741] = { + [sym_comment] = STATE(741), + [anon_sym_export] = ACTIONS(2086), + [anon_sym_alias] = ACTIONS(2086), + [anon_sym_let] = ACTIONS(2086), + [anon_sym_let_DASHenv] = ACTIONS(2086), + [anon_sym_mut] = ACTIONS(2086), + [anon_sym_const] = ACTIONS(2086), + [aux_sym_cmd_identifier_token1] = ACTIONS(2086), + [aux_sym_cmd_identifier_token2] = ACTIONS(2088), + [aux_sym_cmd_identifier_token3] = ACTIONS(2088), + [aux_sym_cmd_identifier_token4] = ACTIONS(2088), + [aux_sym_cmd_identifier_token5] = ACTIONS(2088), + [aux_sym_cmd_identifier_token6] = ACTIONS(2088), + [aux_sym_cmd_identifier_token7] = ACTIONS(2088), + [aux_sym_cmd_identifier_token8] = ACTIONS(2086), + [aux_sym_cmd_identifier_token9] = ACTIONS(2086), + [aux_sym_cmd_identifier_token10] = ACTIONS(2088), + [aux_sym_cmd_identifier_token11] = ACTIONS(2088), + [aux_sym_cmd_identifier_token12] = ACTIONS(2086), + [aux_sym_cmd_identifier_token13] = ACTIONS(2086), + [aux_sym_cmd_identifier_token14] = ACTIONS(2086), + [aux_sym_cmd_identifier_token15] = ACTIONS(2086), + [aux_sym_cmd_identifier_token16] = ACTIONS(2088), + [aux_sym_cmd_identifier_token17] = ACTIONS(2088), + [aux_sym_cmd_identifier_token18] = ACTIONS(2088), + [aux_sym_cmd_identifier_token19] = ACTIONS(2088), + [aux_sym_cmd_identifier_token20] = ACTIONS(2088), + [aux_sym_cmd_identifier_token21] = ACTIONS(2088), + [aux_sym_cmd_identifier_token22] = ACTIONS(2088), + [aux_sym_cmd_identifier_token23] = ACTIONS(2088), + [aux_sym_cmd_identifier_token24] = ACTIONS(2088), + [aux_sym_cmd_identifier_token25] = ACTIONS(2088), + [aux_sym_cmd_identifier_token26] = ACTIONS(2088), + [aux_sym_cmd_identifier_token27] = ACTIONS(2088), + [aux_sym_cmd_identifier_token28] = ACTIONS(2088), + [aux_sym_cmd_identifier_token29] = ACTIONS(2088), + [aux_sym_cmd_identifier_token30] = ACTIONS(2088), + [aux_sym_cmd_identifier_token31] = ACTIONS(2088), + [aux_sym_cmd_identifier_token32] = ACTIONS(2088), + [aux_sym_cmd_identifier_token33] = ACTIONS(2088), + [aux_sym_cmd_identifier_token34] = ACTIONS(2086), + [aux_sym_cmd_identifier_token35] = ACTIONS(2088), + [aux_sym_cmd_identifier_token36] = ACTIONS(2088), + [aux_sym_cmd_identifier_token37] = ACTIONS(2088), + [aux_sym_cmd_identifier_token38] = ACTIONS(2086), + [aux_sym_cmd_identifier_token39] = ACTIONS(2088), + [aux_sym_cmd_identifier_token40] = ACTIONS(2088), + [anon_sym_def] = ACTIONS(2086), + [anon_sym_export_DASHenv] = ACTIONS(2086), + [anon_sym_extern] = ACTIONS(2086), + [anon_sym_module] = ACTIONS(2086), + [anon_sym_use] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_DOLLAR] = ACTIONS(2088), + [anon_sym_error] = ACTIONS(2086), + [anon_sym_DASH2] = ACTIONS(2086), + [anon_sym_break] = ACTIONS(2086), + [anon_sym_continue] = ACTIONS(2086), + [anon_sym_for] = ACTIONS(2086), + [anon_sym_in2] = ACTIONS(2086), + [anon_sym_loop] = ACTIONS(2086), + [anon_sym_make] = ACTIONS(2086), + [anon_sym_while] = ACTIONS(2086), + [anon_sym_do] = ACTIONS(2086), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_else] = ACTIONS(2086), + [anon_sym_match] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_try] = ACTIONS(2086), + [anon_sym_catch] = ACTIONS(2086), + [anon_sym_return] = ACTIONS(2086), + [anon_sym_source] = ACTIONS(2086), + [anon_sym_source_DASHenv] = ACTIONS(2086), + [anon_sym_register] = ACTIONS(2086), + [anon_sym_hide] = ACTIONS(2086), + [anon_sym_hide_DASHenv] = ACTIONS(2086), + [anon_sym_overlay] = ACTIONS(2086), + [anon_sym_as] = ACTIONS(2086), + [anon_sym_PLUS2] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2088), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2088), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2088), + [aux_sym__val_number_decimal_token3] = ACTIONS(2088), + [aux_sym__val_number_decimal_token4] = ACTIONS(2088), + [aux_sym__val_number_token1] = ACTIONS(2088), + [aux_sym__val_number_token2] = ACTIONS(2088), + [aux_sym__val_number_token3] = ACTIONS(2088), + [aux_sym__val_number_token4] = ACTIONS(2086), + [aux_sym__val_number_token5] = ACTIONS(2086), + [aux_sym__val_number_token6] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym__str_single_quotes] = ACTIONS(2088), + [sym__str_back_ticks] = ACTIONS(2088), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2088), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2088), + }, + [742] = { + [sym_comment] = STATE(742), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_alias] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_let_DASHenv] = ACTIONS(1907), + [anon_sym_mut] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [aux_sym_cmd_identifier_token1] = ACTIONS(1907), + [aux_sym_cmd_identifier_token2] = ACTIONS(1911), + [aux_sym_cmd_identifier_token3] = ACTIONS(1911), + [aux_sym_cmd_identifier_token4] = ACTIONS(1911), + [aux_sym_cmd_identifier_token5] = ACTIONS(1911), + [aux_sym_cmd_identifier_token6] = ACTIONS(1911), + [aux_sym_cmd_identifier_token7] = ACTIONS(1911), + [aux_sym_cmd_identifier_token8] = ACTIONS(1907), + [aux_sym_cmd_identifier_token9] = ACTIONS(1907), + [aux_sym_cmd_identifier_token10] = ACTIONS(1911), + [aux_sym_cmd_identifier_token11] = ACTIONS(1911), + [aux_sym_cmd_identifier_token12] = ACTIONS(1907), + [aux_sym_cmd_identifier_token13] = ACTIONS(1907), + [aux_sym_cmd_identifier_token14] = ACTIONS(1907), + [aux_sym_cmd_identifier_token15] = ACTIONS(1907), + [aux_sym_cmd_identifier_token16] = ACTIONS(1911), + [aux_sym_cmd_identifier_token17] = ACTIONS(1911), + [aux_sym_cmd_identifier_token18] = ACTIONS(1911), + [aux_sym_cmd_identifier_token19] = ACTIONS(1911), + [aux_sym_cmd_identifier_token20] = ACTIONS(1911), + [aux_sym_cmd_identifier_token21] = ACTIONS(1911), + [aux_sym_cmd_identifier_token22] = ACTIONS(1911), + [aux_sym_cmd_identifier_token23] = ACTIONS(1911), + [aux_sym_cmd_identifier_token24] = ACTIONS(1911), + [aux_sym_cmd_identifier_token25] = ACTIONS(1911), + [aux_sym_cmd_identifier_token26] = ACTIONS(1911), + [aux_sym_cmd_identifier_token27] = ACTIONS(1911), + [aux_sym_cmd_identifier_token28] = ACTIONS(1911), + [aux_sym_cmd_identifier_token29] = ACTIONS(1911), + [aux_sym_cmd_identifier_token30] = ACTIONS(1911), + [aux_sym_cmd_identifier_token31] = ACTIONS(1911), + [aux_sym_cmd_identifier_token32] = ACTIONS(1911), + [aux_sym_cmd_identifier_token33] = ACTIONS(1911), + [aux_sym_cmd_identifier_token34] = ACTIONS(1907), + [aux_sym_cmd_identifier_token35] = ACTIONS(1911), + [aux_sym_cmd_identifier_token36] = ACTIONS(1911), + [aux_sym_cmd_identifier_token37] = ACTIONS(1911), + [aux_sym_cmd_identifier_token38] = ACTIONS(1907), + [aux_sym_cmd_identifier_token39] = ACTIONS(1911), + [aux_sym_cmd_identifier_token40] = ACTIONS(1911), + [anon_sym_def] = ACTIONS(1907), + [anon_sym_export_DASHenv] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_use] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_error] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_in2] = ACTIONS(1907), + [anon_sym_loop] = ACTIONS(1907), + [anon_sym_make] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_catch] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_source] = ACTIONS(1907), + [anon_sym_source_DASHenv] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_hide] = ACTIONS(1907), + [anon_sym_hide_DASHenv] = ACTIONS(1907), + [anon_sym_overlay] = ACTIONS(1907), + [anon_sym_as] = ACTIONS(1907), + [anon_sym_PLUS2] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1907), + [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), + [aux_sym__val_number_token4] = ACTIONS(1907), + [aux_sym__val_number_token5] = ACTIONS(1907), + [aux_sym__val_number_token6] = ACTIONS(1907), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1911), + }, + [743] = { + [sym_comment] = STATE(743), + [anon_sym_export] = ACTIONS(2155), + [anon_sym_alias] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_let_DASHenv] = ACTIONS(2155), + [anon_sym_mut] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [aux_sym_cmd_identifier_token1] = ACTIONS(2155), + [aux_sym_cmd_identifier_token2] = ACTIONS(2157), + [aux_sym_cmd_identifier_token3] = ACTIONS(2157), + [aux_sym_cmd_identifier_token4] = ACTIONS(2157), + [aux_sym_cmd_identifier_token5] = ACTIONS(2157), + [aux_sym_cmd_identifier_token6] = ACTIONS(2157), + [aux_sym_cmd_identifier_token7] = ACTIONS(2157), + [aux_sym_cmd_identifier_token8] = ACTIONS(2155), + [aux_sym_cmd_identifier_token9] = ACTIONS(2155), + [aux_sym_cmd_identifier_token10] = ACTIONS(2157), + [aux_sym_cmd_identifier_token11] = ACTIONS(2157), + [aux_sym_cmd_identifier_token12] = ACTIONS(2155), + [aux_sym_cmd_identifier_token13] = ACTIONS(2155), + [aux_sym_cmd_identifier_token14] = ACTIONS(2155), + [aux_sym_cmd_identifier_token15] = ACTIONS(2155), + [aux_sym_cmd_identifier_token16] = ACTIONS(2157), + [aux_sym_cmd_identifier_token17] = ACTIONS(2157), + [aux_sym_cmd_identifier_token18] = ACTIONS(2157), + [aux_sym_cmd_identifier_token19] = ACTIONS(2157), + [aux_sym_cmd_identifier_token20] = ACTIONS(2157), + [aux_sym_cmd_identifier_token21] = ACTIONS(2157), + [aux_sym_cmd_identifier_token22] = ACTIONS(2157), + [aux_sym_cmd_identifier_token23] = ACTIONS(2157), + [aux_sym_cmd_identifier_token24] = ACTIONS(2157), + [aux_sym_cmd_identifier_token25] = ACTIONS(2157), + [aux_sym_cmd_identifier_token26] = ACTIONS(2157), + [aux_sym_cmd_identifier_token27] = ACTIONS(2157), + [aux_sym_cmd_identifier_token28] = ACTIONS(2157), + [aux_sym_cmd_identifier_token29] = ACTIONS(2157), + [aux_sym_cmd_identifier_token30] = ACTIONS(2157), + [aux_sym_cmd_identifier_token31] = ACTIONS(2157), + [aux_sym_cmd_identifier_token32] = ACTIONS(2157), + [aux_sym_cmd_identifier_token33] = ACTIONS(2157), + [aux_sym_cmd_identifier_token34] = ACTIONS(2155), + [aux_sym_cmd_identifier_token35] = ACTIONS(2157), + [aux_sym_cmd_identifier_token36] = ACTIONS(2157), + [aux_sym_cmd_identifier_token37] = ACTIONS(2157), + [aux_sym_cmd_identifier_token38] = ACTIONS(2155), + [aux_sym_cmd_identifier_token39] = ACTIONS(2157), + [aux_sym_cmd_identifier_token40] = ACTIONS(2157), + [anon_sym_def] = ACTIONS(2155), + [anon_sym_export_DASHenv] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_module] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_error] = ACTIONS(2155), + [anon_sym_DASH2] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_in2] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_make] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_do] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_else] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2155), + [anon_sym_catch] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_source] = ACTIONS(2155), + [anon_sym_source_DASHenv] = ACTIONS(2155), + [anon_sym_register] = ACTIONS(2155), + [anon_sym_hide] = ACTIONS(2155), + [anon_sym_hide_DASHenv] = ACTIONS(2155), + [anon_sym_overlay] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_PLUS2] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2157), + [aux_sym__val_number_decimal_token1] = ACTIONS(2155), + [aux_sym__val_number_decimal_token2] = ACTIONS(2157), + [aux_sym__val_number_decimal_token3] = ACTIONS(2157), + [aux_sym__val_number_decimal_token4] = ACTIONS(2157), + [aux_sym__val_number_token1] = ACTIONS(2157), + [aux_sym__val_number_token2] = ACTIONS(2157), + [aux_sym__val_number_token3] = ACTIONS(2157), + [aux_sym__val_number_token4] = ACTIONS(2155), + [aux_sym__val_number_token5] = ACTIONS(2155), + [aux_sym__val_number_token6] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(2157), + [sym__str_single_quotes] = ACTIONS(2157), + [sym__str_back_ticks] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2157), + }, + [744] = { + [sym_comment] = STATE(744), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_alias] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_let_DASHenv] = ACTIONS(2304), + [anon_sym_mut] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [aux_sym_cmd_identifier_token1] = ACTIONS(2304), + [aux_sym_cmd_identifier_token2] = ACTIONS(2308), + [aux_sym_cmd_identifier_token3] = ACTIONS(2308), + [aux_sym_cmd_identifier_token4] = ACTIONS(2308), + [aux_sym_cmd_identifier_token5] = ACTIONS(2308), + [aux_sym_cmd_identifier_token6] = ACTIONS(2308), + [aux_sym_cmd_identifier_token7] = ACTIONS(2308), + [aux_sym_cmd_identifier_token8] = ACTIONS(2304), + [aux_sym_cmd_identifier_token9] = ACTIONS(2304), + [aux_sym_cmd_identifier_token10] = ACTIONS(2308), + [aux_sym_cmd_identifier_token11] = ACTIONS(2308), + [aux_sym_cmd_identifier_token12] = ACTIONS(2304), + [aux_sym_cmd_identifier_token13] = ACTIONS(2304), + [aux_sym_cmd_identifier_token14] = ACTIONS(2304), + [aux_sym_cmd_identifier_token15] = ACTIONS(2304), + [aux_sym_cmd_identifier_token16] = ACTIONS(2308), + [aux_sym_cmd_identifier_token17] = ACTIONS(2308), + [aux_sym_cmd_identifier_token18] = ACTIONS(2308), + [aux_sym_cmd_identifier_token19] = ACTIONS(2308), + [aux_sym_cmd_identifier_token20] = ACTIONS(2308), + [aux_sym_cmd_identifier_token21] = ACTIONS(2308), + [aux_sym_cmd_identifier_token22] = ACTIONS(2308), + [aux_sym_cmd_identifier_token23] = ACTIONS(2308), + [aux_sym_cmd_identifier_token24] = ACTIONS(2308), + [aux_sym_cmd_identifier_token25] = ACTIONS(2308), + [aux_sym_cmd_identifier_token26] = ACTIONS(2308), + [aux_sym_cmd_identifier_token27] = ACTIONS(2308), + [aux_sym_cmd_identifier_token28] = ACTIONS(2308), + [aux_sym_cmd_identifier_token29] = ACTIONS(2308), + [aux_sym_cmd_identifier_token30] = ACTIONS(2308), + [aux_sym_cmd_identifier_token31] = ACTIONS(2308), + [aux_sym_cmd_identifier_token32] = ACTIONS(2308), + [aux_sym_cmd_identifier_token33] = ACTIONS(2308), + [aux_sym_cmd_identifier_token34] = ACTIONS(2304), + [aux_sym_cmd_identifier_token35] = ACTIONS(2308), + [aux_sym_cmd_identifier_token36] = ACTIONS(2308), + [aux_sym_cmd_identifier_token37] = ACTIONS(2308), + [aux_sym_cmd_identifier_token38] = ACTIONS(2304), + [aux_sym_cmd_identifier_token39] = ACTIONS(2308), + [aux_sym_cmd_identifier_token40] = ACTIONS(2308), + [anon_sym_def] = ACTIONS(2304), + [anon_sym_export_DASHenv] = ACTIONS(2304), + [anon_sym_extern] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_use] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_DOLLAR] = ACTIONS(2308), + [anon_sym_error] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_in2] = ACTIONS(2304), + [anon_sym_loop] = ACTIONS(2304), + [anon_sym_make] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_match] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_catch] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_source] = ACTIONS(2304), + [anon_sym_source_DASHenv] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2304), + [anon_sym_hide] = ACTIONS(2304), + [anon_sym_hide_DASHenv] = ACTIONS(2304), + [anon_sym_overlay] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2308), + [aux_sym__val_number_decimal_token1] = ACTIONS(2304), + [aux_sym__val_number_decimal_token2] = ACTIONS(2308), + [aux_sym__val_number_decimal_token3] = ACTIONS(2308), + [aux_sym__val_number_decimal_token4] = ACTIONS(2308), + [aux_sym__val_number_token1] = ACTIONS(2308), + [aux_sym__val_number_token2] = ACTIONS(2308), + [aux_sym__val_number_token3] = ACTIONS(2308), + [aux_sym__val_number_token4] = ACTIONS(2304), + [aux_sym__val_number_token5] = ACTIONS(2304), + [aux_sym__val_number_token6] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2308), + [sym__str_single_quotes] = ACTIONS(2308), + [sym__str_back_ticks] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2308), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2308), + }, + [745] = { + [sym_comment] = STATE(745), + [anon_sym_export] = ACTIONS(2484), + [anon_sym_alias] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2484), + [anon_sym_let_DASHenv] = ACTIONS(2484), + [anon_sym_mut] = ACTIONS(2484), + [anon_sym_const] = ACTIONS(2484), + [aux_sym_cmd_identifier_token1] = ACTIONS(2484), + [aux_sym_cmd_identifier_token2] = ACTIONS(2486), + [aux_sym_cmd_identifier_token3] = ACTIONS(2486), + [aux_sym_cmd_identifier_token4] = ACTIONS(2486), + [aux_sym_cmd_identifier_token5] = ACTIONS(2486), + [aux_sym_cmd_identifier_token6] = ACTIONS(2486), + [aux_sym_cmd_identifier_token7] = ACTIONS(2486), + [aux_sym_cmd_identifier_token8] = ACTIONS(2484), + [aux_sym_cmd_identifier_token9] = ACTIONS(2484), + [aux_sym_cmd_identifier_token10] = ACTIONS(2486), + [aux_sym_cmd_identifier_token11] = ACTIONS(2486), + [aux_sym_cmd_identifier_token12] = ACTIONS(2484), + [aux_sym_cmd_identifier_token13] = ACTIONS(2484), + [aux_sym_cmd_identifier_token14] = ACTIONS(2484), + [aux_sym_cmd_identifier_token15] = ACTIONS(2484), + [aux_sym_cmd_identifier_token16] = ACTIONS(2486), + [aux_sym_cmd_identifier_token17] = ACTIONS(2486), + [aux_sym_cmd_identifier_token18] = ACTIONS(2486), + [aux_sym_cmd_identifier_token19] = ACTIONS(2486), + [aux_sym_cmd_identifier_token20] = ACTIONS(2486), + [aux_sym_cmd_identifier_token21] = ACTIONS(2486), + [aux_sym_cmd_identifier_token22] = ACTIONS(2486), + [aux_sym_cmd_identifier_token23] = ACTIONS(2486), + [aux_sym_cmd_identifier_token24] = ACTIONS(2486), + [aux_sym_cmd_identifier_token25] = ACTIONS(2486), + [aux_sym_cmd_identifier_token26] = ACTIONS(2486), + [aux_sym_cmd_identifier_token27] = ACTIONS(2486), + [aux_sym_cmd_identifier_token28] = ACTIONS(2486), + [aux_sym_cmd_identifier_token29] = ACTIONS(2486), + [aux_sym_cmd_identifier_token30] = ACTIONS(2486), + [aux_sym_cmd_identifier_token31] = ACTIONS(2486), + [aux_sym_cmd_identifier_token32] = ACTIONS(2486), + [aux_sym_cmd_identifier_token33] = ACTIONS(2486), + [aux_sym_cmd_identifier_token34] = ACTIONS(2484), + [aux_sym_cmd_identifier_token35] = ACTIONS(2486), + [aux_sym_cmd_identifier_token36] = ACTIONS(2486), + [aux_sym_cmd_identifier_token37] = ACTIONS(2486), + [aux_sym_cmd_identifier_token38] = ACTIONS(2484), + [aux_sym_cmd_identifier_token39] = ACTIONS(2486), + [aux_sym_cmd_identifier_token40] = ACTIONS(2486), + [anon_sym_def] = ACTIONS(2484), + [anon_sym_export_DASHenv] = ACTIONS(2484), + [anon_sym_extern] = ACTIONS(2484), + [anon_sym_module] = ACTIONS(2484), + [anon_sym_use] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_DOLLAR] = ACTIONS(2486), + [anon_sym_error] = ACTIONS(2484), + [anon_sym_DASH2] = ACTIONS(2484), + [anon_sym_break] = ACTIONS(2484), + [anon_sym_continue] = ACTIONS(2484), + [anon_sym_for] = ACTIONS(2484), + [anon_sym_in2] = ACTIONS(2484), + [anon_sym_loop] = ACTIONS(2484), + [anon_sym_make] = ACTIONS(2484), + [anon_sym_while] = ACTIONS(2484), + [anon_sym_do] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2484), + [anon_sym_else] = ACTIONS(2484), + [anon_sym_match] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_try] = ACTIONS(2484), + [anon_sym_catch] = ACTIONS(2484), + [anon_sym_return] = ACTIONS(2484), + [anon_sym_source] = ACTIONS(2484), + [anon_sym_source_DASHenv] = ACTIONS(2484), + [anon_sym_register] = ACTIONS(2484), + [anon_sym_hide] = ACTIONS(2484), + [anon_sym_hide_DASHenv] = ACTIONS(2484), + [anon_sym_overlay] = ACTIONS(2484), + [anon_sym_as] = ACTIONS(2484), + [anon_sym_PLUS2] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2486), + [aux_sym__val_number_decimal_token1] = ACTIONS(2484), + [aux_sym__val_number_decimal_token2] = ACTIONS(2486), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), + [aux_sym__val_number_token1] = ACTIONS(2486), + [aux_sym__val_number_token2] = ACTIONS(2486), + [aux_sym__val_number_token3] = ACTIONS(2486), + [aux_sym__val_number_token4] = ACTIONS(2484), + [aux_sym__val_number_token5] = ACTIONS(2484), + [aux_sym__val_number_token6] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2486), + [sym__str_back_ticks] = ACTIONS(2486), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2486), + }, + [746] = { + [sym_comment] = STATE(746), + [anon_sym_export] = ACTIONS(2343), + [anon_sym_alias] = ACTIONS(2343), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_let_DASHenv] = ACTIONS(2343), + [anon_sym_mut] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2343), + [aux_sym_cmd_identifier_token1] = ACTIONS(2343), + [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(2343), + [aux_sym_cmd_identifier_token9] = ACTIONS(2343), + [aux_sym_cmd_identifier_token10] = ACTIONS(2345), + [aux_sym_cmd_identifier_token11] = ACTIONS(2345), + [aux_sym_cmd_identifier_token12] = ACTIONS(2343), + [aux_sym_cmd_identifier_token13] = ACTIONS(2343), + [aux_sym_cmd_identifier_token14] = ACTIONS(2343), + [aux_sym_cmd_identifier_token15] = ACTIONS(2343), + [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(2343), + [aux_sym_cmd_identifier_token35] = ACTIONS(2345), + [aux_sym_cmd_identifier_token36] = ACTIONS(2345), + [aux_sym_cmd_identifier_token37] = ACTIONS(2345), + [aux_sym_cmd_identifier_token38] = ACTIONS(2343), + [aux_sym_cmd_identifier_token39] = ACTIONS(2345), + [aux_sym_cmd_identifier_token40] = ACTIONS(2345), + [anon_sym_def] = ACTIONS(2343), + [anon_sym_export_DASHenv] = ACTIONS(2343), + [anon_sym_extern] = ACTIONS(2343), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_use] = ACTIONS(2343), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_error] = ACTIONS(2343), + [anon_sym_DASH2] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_for] = ACTIONS(2343), + [anon_sym_in2] = ACTIONS(2343), + [anon_sym_loop] = ACTIONS(2343), + [anon_sym_make] = ACTIONS(2343), + [anon_sym_while] = ACTIONS(2343), + [anon_sym_do] = ACTIONS(2343), + [anon_sym_if] = ACTIONS(2343), + [anon_sym_else] = ACTIONS(2343), + [anon_sym_match] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2343), + [anon_sym_catch] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2343), + [anon_sym_source] = ACTIONS(2343), + [anon_sym_source_DASHenv] = ACTIONS(2343), + [anon_sym_register] = ACTIONS(2343), + [anon_sym_hide] = ACTIONS(2343), + [anon_sym_hide_DASHenv] = ACTIONS(2343), + [anon_sym_overlay] = ACTIONS(2343), + [anon_sym_as] = ACTIONS(2343), + [anon_sym_PLUS2] = ACTIONS(2343), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2345), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2345), + [aux_sym__val_number_decimal_token1] = ACTIONS(2343), + [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), + [aux_sym__val_number_token4] = ACTIONS(2343), + [aux_sym__val_number_token5] = ACTIONS(2343), + [aux_sym__val_number_token6] = ACTIONS(2343), + [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), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2345), + }, + [747] = { + [sym_comment] = STATE(747), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_alias] = ACTIONS(2351), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_let_DASHenv] = ACTIONS(2351), + [anon_sym_mut] = ACTIONS(2351), + [anon_sym_const] = ACTIONS(2351), + [aux_sym_cmd_identifier_token1] = ACTIONS(2351), + [aux_sym_cmd_identifier_token2] = ACTIONS(2353), + [aux_sym_cmd_identifier_token3] = ACTIONS(2353), + [aux_sym_cmd_identifier_token4] = ACTIONS(2353), + [aux_sym_cmd_identifier_token5] = ACTIONS(2353), + [aux_sym_cmd_identifier_token6] = ACTIONS(2353), + [aux_sym_cmd_identifier_token7] = ACTIONS(2353), + [aux_sym_cmd_identifier_token8] = ACTIONS(2351), + [aux_sym_cmd_identifier_token9] = ACTIONS(2351), + [aux_sym_cmd_identifier_token10] = ACTIONS(2353), + [aux_sym_cmd_identifier_token11] = ACTIONS(2353), + [aux_sym_cmd_identifier_token12] = ACTIONS(2351), + [aux_sym_cmd_identifier_token13] = ACTIONS(2351), + [aux_sym_cmd_identifier_token14] = ACTIONS(2351), + [aux_sym_cmd_identifier_token15] = ACTIONS(2351), + [aux_sym_cmd_identifier_token16] = ACTIONS(2353), + [aux_sym_cmd_identifier_token17] = ACTIONS(2353), + [aux_sym_cmd_identifier_token18] = ACTIONS(2353), + [aux_sym_cmd_identifier_token19] = ACTIONS(2353), + [aux_sym_cmd_identifier_token20] = ACTIONS(2353), + [aux_sym_cmd_identifier_token21] = ACTIONS(2353), + [aux_sym_cmd_identifier_token22] = ACTIONS(2353), + [aux_sym_cmd_identifier_token23] = ACTIONS(2353), + [aux_sym_cmd_identifier_token24] = ACTIONS(2353), + [aux_sym_cmd_identifier_token25] = ACTIONS(2353), + [aux_sym_cmd_identifier_token26] = ACTIONS(2353), + [aux_sym_cmd_identifier_token27] = ACTIONS(2353), + [aux_sym_cmd_identifier_token28] = ACTIONS(2353), + [aux_sym_cmd_identifier_token29] = ACTIONS(2353), + [aux_sym_cmd_identifier_token30] = ACTIONS(2353), + [aux_sym_cmd_identifier_token31] = ACTIONS(2353), + [aux_sym_cmd_identifier_token32] = ACTIONS(2353), + [aux_sym_cmd_identifier_token33] = ACTIONS(2353), + [aux_sym_cmd_identifier_token34] = ACTIONS(2351), + [aux_sym_cmd_identifier_token35] = ACTIONS(2353), + [aux_sym_cmd_identifier_token36] = ACTIONS(2353), + [aux_sym_cmd_identifier_token37] = ACTIONS(2353), + [aux_sym_cmd_identifier_token38] = ACTIONS(2351), + [aux_sym_cmd_identifier_token39] = ACTIONS(2353), + [aux_sym_cmd_identifier_token40] = ACTIONS(2353), + [anon_sym_def] = ACTIONS(2351), + [anon_sym_export_DASHenv] = ACTIONS(2351), + [anon_sym_extern] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_use] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_DOLLAR] = ACTIONS(2353), + [anon_sym_error] = ACTIONS(2351), + [anon_sym_DASH2] = ACTIONS(2351), + [anon_sym_break] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_in2] = ACTIONS(2351), + [anon_sym_loop] = ACTIONS(2351), + [anon_sym_make] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_do] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_else] = ACTIONS(2351), + [anon_sym_match] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2351), + [anon_sym_catch] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_source] = ACTIONS(2351), + [anon_sym_source_DASHenv] = ACTIONS(2351), + [anon_sym_register] = ACTIONS(2351), + [anon_sym_hide] = ACTIONS(2351), + [anon_sym_hide_DASHenv] = ACTIONS(2351), + [anon_sym_overlay] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_PLUS2] = ACTIONS(2351), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2353), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2353), + [aux_sym__val_number_decimal_token4] = ACTIONS(2353), + [aux_sym__val_number_token1] = ACTIONS(2353), + [aux_sym__val_number_token2] = ACTIONS(2353), + [aux_sym__val_number_token3] = ACTIONS(2353), + [aux_sym__val_number_token4] = ACTIONS(2351), + [aux_sym__val_number_token5] = ACTIONS(2351), + [aux_sym__val_number_token6] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(2353), + [sym__str_single_quotes] = ACTIONS(2353), + [sym__str_back_ticks] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2353), + }, + [748] = { + [sym_comment] = STATE(748), + [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(1915), + [aux_sym_cmd_identifier_token3] = ACTIONS(1915), + [aux_sym_cmd_identifier_token4] = ACTIONS(1915), + [aux_sym_cmd_identifier_token5] = ACTIONS(1915), + [aux_sym_cmd_identifier_token6] = ACTIONS(1915), + [aux_sym_cmd_identifier_token7] = ACTIONS(1915), + [aux_sym_cmd_identifier_token8] = ACTIONS(1913), + [aux_sym_cmd_identifier_token9] = ACTIONS(1913), + [aux_sym_cmd_identifier_token10] = ACTIONS(1915), + [aux_sym_cmd_identifier_token11] = ACTIONS(1915), + [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(1915), + [aux_sym_cmd_identifier_token17] = ACTIONS(1915), + [aux_sym_cmd_identifier_token18] = ACTIONS(1915), + [aux_sym_cmd_identifier_token19] = ACTIONS(1915), + [aux_sym_cmd_identifier_token20] = ACTIONS(1915), + [aux_sym_cmd_identifier_token21] = ACTIONS(1915), + [aux_sym_cmd_identifier_token22] = ACTIONS(1915), + [aux_sym_cmd_identifier_token23] = ACTIONS(1915), + [aux_sym_cmd_identifier_token24] = ACTIONS(1915), + [aux_sym_cmd_identifier_token25] = ACTIONS(1915), + [aux_sym_cmd_identifier_token26] = ACTIONS(1915), + [aux_sym_cmd_identifier_token27] = ACTIONS(1915), + [aux_sym_cmd_identifier_token28] = ACTIONS(1915), + [aux_sym_cmd_identifier_token29] = ACTIONS(1915), + [aux_sym_cmd_identifier_token30] = ACTIONS(1915), + [aux_sym_cmd_identifier_token31] = ACTIONS(1915), + [aux_sym_cmd_identifier_token32] = ACTIONS(1915), + [aux_sym_cmd_identifier_token33] = ACTIONS(1915), + [aux_sym_cmd_identifier_token34] = ACTIONS(1913), + [aux_sym_cmd_identifier_token35] = ACTIONS(1915), + [aux_sym_cmd_identifier_token36] = ACTIONS(1915), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_in2] = 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_as] = ACTIONS(1913), + [anon_sym_PLUS2] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1915), + [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), + [aux_sym__val_number_token4] = ACTIONS(1913), + [aux_sym__val_number_token5] = ACTIONS(1913), + [aux_sym__val_number_token6] = ACTIONS(1913), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1915), + }, + [749] = { + [sym_comment] = STATE(749), + [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(2357), + [aux_sym_cmd_identifier_token3] = ACTIONS(2357), + [aux_sym_cmd_identifier_token4] = ACTIONS(2357), + [aux_sym_cmd_identifier_token5] = ACTIONS(2357), + [aux_sym_cmd_identifier_token6] = ACTIONS(2357), + [aux_sym_cmd_identifier_token7] = ACTIONS(2357), + [aux_sym_cmd_identifier_token8] = ACTIONS(2355), + [aux_sym_cmd_identifier_token9] = ACTIONS(2355), + [aux_sym_cmd_identifier_token10] = ACTIONS(2357), + [aux_sym_cmd_identifier_token11] = ACTIONS(2357), + [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(2357), + [aux_sym_cmd_identifier_token17] = ACTIONS(2357), + [aux_sym_cmd_identifier_token18] = ACTIONS(2357), + [aux_sym_cmd_identifier_token19] = ACTIONS(2357), + [aux_sym_cmd_identifier_token20] = ACTIONS(2357), + [aux_sym_cmd_identifier_token21] = ACTIONS(2357), + [aux_sym_cmd_identifier_token22] = ACTIONS(2357), + [aux_sym_cmd_identifier_token23] = ACTIONS(2357), + [aux_sym_cmd_identifier_token24] = ACTIONS(2357), + [aux_sym_cmd_identifier_token25] = ACTIONS(2357), + [aux_sym_cmd_identifier_token26] = ACTIONS(2357), + [aux_sym_cmd_identifier_token27] = ACTIONS(2357), + [aux_sym_cmd_identifier_token28] = ACTIONS(2357), + [aux_sym_cmd_identifier_token29] = ACTIONS(2357), + [aux_sym_cmd_identifier_token30] = ACTIONS(2357), + [aux_sym_cmd_identifier_token31] = ACTIONS(2357), + [aux_sym_cmd_identifier_token32] = ACTIONS(2357), + [aux_sym_cmd_identifier_token33] = ACTIONS(2357), + [aux_sym_cmd_identifier_token34] = ACTIONS(2355), + [aux_sym_cmd_identifier_token35] = ACTIONS(2357), + [aux_sym_cmd_identifier_token36] = ACTIONS(2357), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_in2] = 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_as] = ACTIONS(2355), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2355), + [aux_sym__val_number_token5] = ACTIONS(2355), + [aux_sym__val_number_token6] = ACTIONS(2355), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2357), + }, + [750] = { + [sym_comment] = STATE(750), + [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(2361), + [aux_sym_cmd_identifier_token3] = ACTIONS(2361), + [aux_sym_cmd_identifier_token4] = ACTIONS(2361), + [aux_sym_cmd_identifier_token5] = ACTIONS(2361), + [aux_sym_cmd_identifier_token6] = ACTIONS(2361), + [aux_sym_cmd_identifier_token7] = ACTIONS(2361), + [aux_sym_cmd_identifier_token8] = ACTIONS(2359), + [aux_sym_cmd_identifier_token9] = ACTIONS(2359), + [aux_sym_cmd_identifier_token10] = ACTIONS(2361), + [aux_sym_cmd_identifier_token11] = ACTIONS(2361), + [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(2361), + [aux_sym_cmd_identifier_token17] = ACTIONS(2361), + [aux_sym_cmd_identifier_token18] = ACTIONS(2361), + [aux_sym_cmd_identifier_token19] = ACTIONS(2361), + [aux_sym_cmd_identifier_token20] = ACTIONS(2361), + [aux_sym_cmd_identifier_token21] = ACTIONS(2361), + [aux_sym_cmd_identifier_token22] = ACTIONS(2361), + [aux_sym_cmd_identifier_token23] = ACTIONS(2361), + [aux_sym_cmd_identifier_token24] = ACTIONS(2361), + [aux_sym_cmd_identifier_token25] = ACTIONS(2361), + [aux_sym_cmd_identifier_token26] = ACTIONS(2361), + [aux_sym_cmd_identifier_token27] = ACTIONS(2361), + [aux_sym_cmd_identifier_token28] = ACTIONS(2361), + [aux_sym_cmd_identifier_token29] = ACTIONS(2361), + [aux_sym_cmd_identifier_token30] = ACTIONS(2361), + [aux_sym_cmd_identifier_token31] = ACTIONS(2361), + [aux_sym_cmd_identifier_token32] = ACTIONS(2361), + [aux_sym_cmd_identifier_token33] = ACTIONS(2361), + [aux_sym_cmd_identifier_token34] = ACTIONS(2359), + [aux_sym_cmd_identifier_token35] = ACTIONS(2361), + [aux_sym_cmd_identifier_token36] = ACTIONS(2361), + [aux_sym_cmd_identifier_token37] = ACTIONS(2361), + [aux_sym_cmd_identifier_token38] = ACTIONS(2359), + [aux_sym_cmd_identifier_token39] = ACTIONS(2361), + [aux_sym_cmd_identifier_token40] = ACTIONS(2361), + [anon_sym_def] = ACTIONS(2359), + [anon_sym_export_DASHenv] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym_module] = ACTIONS(2359), + [anon_sym_use] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2361), + [anon_sym_error] = ACTIONS(2359), + [anon_sym_DASH2] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_in2] = ACTIONS(2359), + [anon_sym_loop] = ACTIONS(2359), + [anon_sym_make] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_do] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_else] = ACTIONS(2359), + [anon_sym_match] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_source] = ACTIONS(2359), + [anon_sym_source_DASHenv] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_hide] = ACTIONS(2359), + [anon_sym_hide_DASHenv] = ACTIONS(2359), + [anon_sym_overlay] = ACTIONS(2359), + [anon_sym_as] = ACTIONS(2359), + [anon_sym_PLUS2] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2361), + [aux_sym__val_number_decimal_token1] = ACTIONS(2359), + [aux_sym__val_number_decimal_token2] = ACTIONS(2361), + [aux_sym__val_number_decimal_token3] = ACTIONS(2361), + [aux_sym__val_number_decimal_token4] = ACTIONS(2361), + [aux_sym__val_number_token1] = ACTIONS(2361), + [aux_sym__val_number_token2] = ACTIONS(2361), + [aux_sym__val_number_token3] = ACTIONS(2361), + [aux_sym__val_number_token4] = ACTIONS(2359), + [aux_sym__val_number_token5] = ACTIONS(2359), + [aux_sym__val_number_token6] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(2361), + [sym__str_single_quotes] = ACTIONS(2361), + [sym__str_back_ticks] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2361), + }, + [751] = { + [sym_comment] = STATE(751), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [aux_sym_cmd_identifier_token37] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [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), + [aux_sym__val_number_token4] = ACTIONS(1709), + [aux_sym__val_number_token5] = ACTIONS(1709), + [aux_sym__val_number_token6] = ACTIONS(1709), + [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), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1721), + }, + [752] = { + [sym_comment] = STATE(752), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), + [aux_sym_cmd_identifier_token2] = ACTIONS(2431), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [aux_sym_cmd_identifier_token6] = ACTIONS(2431), + [aux_sym_cmd_identifier_token7] = ACTIONS(2431), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2431), + [aux_sym_cmd_identifier_token11] = ACTIONS(2431), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), + [aux_sym_cmd_identifier_token16] = ACTIONS(2431), + [aux_sym_cmd_identifier_token17] = ACTIONS(2431), + [aux_sym_cmd_identifier_token18] = ACTIONS(2431), + [aux_sym_cmd_identifier_token19] = ACTIONS(2431), + [aux_sym_cmd_identifier_token20] = ACTIONS(2431), + [aux_sym_cmd_identifier_token21] = ACTIONS(2431), + [aux_sym_cmd_identifier_token22] = ACTIONS(2431), + [aux_sym_cmd_identifier_token23] = ACTIONS(2431), + [aux_sym_cmd_identifier_token24] = ACTIONS(2431), + [aux_sym_cmd_identifier_token25] = ACTIONS(2431), + [aux_sym_cmd_identifier_token26] = ACTIONS(2431), + [aux_sym_cmd_identifier_token27] = ACTIONS(2431), + [aux_sym_cmd_identifier_token28] = ACTIONS(2431), + [aux_sym_cmd_identifier_token29] = ACTIONS(2431), + [aux_sym_cmd_identifier_token30] = ACTIONS(2431), + [aux_sym_cmd_identifier_token31] = ACTIONS(2431), + [aux_sym_cmd_identifier_token32] = ACTIONS(2431), + [aux_sym_cmd_identifier_token33] = ACTIONS(2431), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2431), + [aux_sym_cmd_identifier_token36] = ACTIONS(2431), + [aux_sym_cmd_identifier_token37] = ACTIONS(2431), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), + [aux_sym_cmd_identifier_token39] = ACTIONS(2431), + [aux_sym_cmd_identifier_token40] = ACTIONS(2431), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_DOLLAR] = ACTIONS(2431), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), + [aux_sym__val_number_decimal_token2] = ACTIONS(2431), + [aux_sym__val_number_decimal_token3] = ACTIONS(2431), + [aux_sym__val_number_decimal_token4] = ACTIONS(2431), + [aux_sym__val_number_token1] = ACTIONS(2431), + [aux_sym__val_number_token2] = ACTIONS(2431), + [aux_sym__val_number_token3] = ACTIONS(2431), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2431), + [sym__str_single_quotes] = ACTIONS(2431), + [sym__str_back_ticks] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2431), + }, + [753] = { + [sym_comment] = STATE(753), + [anon_sym_export] = ACTIONS(2363), + [anon_sym_alias] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_DASHenv] = ACTIONS(2363), + [anon_sym_mut] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [aux_sym_cmd_identifier_token1] = ACTIONS(2363), + [aux_sym_cmd_identifier_token2] = ACTIONS(2365), + [aux_sym_cmd_identifier_token3] = ACTIONS(2365), + [aux_sym_cmd_identifier_token4] = ACTIONS(2365), + [aux_sym_cmd_identifier_token5] = ACTIONS(2365), + [aux_sym_cmd_identifier_token6] = ACTIONS(2365), + [aux_sym_cmd_identifier_token7] = ACTIONS(2365), + [aux_sym_cmd_identifier_token8] = ACTIONS(2363), + [aux_sym_cmd_identifier_token9] = ACTIONS(2363), + [aux_sym_cmd_identifier_token10] = ACTIONS(2365), + [aux_sym_cmd_identifier_token11] = ACTIONS(2365), + [aux_sym_cmd_identifier_token12] = ACTIONS(2363), + [aux_sym_cmd_identifier_token13] = ACTIONS(2363), + [aux_sym_cmd_identifier_token14] = ACTIONS(2363), + [aux_sym_cmd_identifier_token15] = ACTIONS(2363), + [aux_sym_cmd_identifier_token16] = ACTIONS(2365), + [aux_sym_cmd_identifier_token17] = ACTIONS(2365), + [aux_sym_cmd_identifier_token18] = ACTIONS(2365), + [aux_sym_cmd_identifier_token19] = ACTIONS(2365), + [aux_sym_cmd_identifier_token20] = ACTIONS(2365), + [aux_sym_cmd_identifier_token21] = ACTIONS(2365), + [aux_sym_cmd_identifier_token22] = ACTIONS(2365), + [aux_sym_cmd_identifier_token23] = ACTIONS(2365), + [aux_sym_cmd_identifier_token24] = ACTIONS(2365), + [aux_sym_cmd_identifier_token25] = ACTIONS(2365), + [aux_sym_cmd_identifier_token26] = ACTIONS(2365), + [aux_sym_cmd_identifier_token27] = ACTIONS(2365), + [aux_sym_cmd_identifier_token28] = ACTIONS(2365), + [aux_sym_cmd_identifier_token29] = ACTIONS(2365), + [aux_sym_cmd_identifier_token30] = ACTIONS(2365), + [aux_sym_cmd_identifier_token31] = ACTIONS(2365), + [aux_sym_cmd_identifier_token32] = ACTIONS(2365), + [aux_sym_cmd_identifier_token33] = ACTIONS(2365), + [aux_sym_cmd_identifier_token34] = ACTIONS(2363), + [aux_sym_cmd_identifier_token35] = ACTIONS(2365), + [aux_sym_cmd_identifier_token36] = ACTIONS(2365), + [aux_sym_cmd_identifier_token37] = ACTIONS(2365), + [aux_sym_cmd_identifier_token38] = ACTIONS(2363), + [aux_sym_cmd_identifier_token39] = ACTIONS(2365), + [aux_sym_cmd_identifier_token40] = ACTIONS(2365), + [anon_sym_def] = ACTIONS(2363), + [anon_sym_export_DASHenv] = ACTIONS(2363), + [anon_sym_extern] = ACTIONS(2363), + [anon_sym_module] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_DOLLAR] = ACTIONS(2365), + [anon_sym_error] = ACTIONS(2363), + [anon_sym_DASH2] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_in2] = ACTIONS(2363), + [anon_sym_loop] = ACTIONS(2363), + [anon_sym_make] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_else] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_catch] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_source] = ACTIONS(2363), + [anon_sym_source_DASHenv] = ACTIONS(2363), + [anon_sym_register] = ACTIONS(2363), + [anon_sym_hide] = ACTIONS(2363), + [anon_sym_hide_DASHenv] = ACTIONS(2363), + [anon_sym_overlay] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_PLUS2] = ACTIONS(2363), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2365), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2365), + [aux_sym__val_number_decimal_token1] = ACTIONS(2363), + [aux_sym__val_number_decimal_token2] = ACTIONS(2365), + [aux_sym__val_number_decimal_token3] = ACTIONS(2365), + [aux_sym__val_number_decimal_token4] = ACTIONS(2365), + [aux_sym__val_number_token1] = ACTIONS(2365), + [aux_sym__val_number_token2] = ACTIONS(2365), + [aux_sym__val_number_token3] = ACTIONS(2365), + [aux_sym__val_number_token4] = ACTIONS(2363), + [aux_sym__val_number_token5] = ACTIONS(2363), + [aux_sym__val_number_token6] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2365), + [sym__str_single_quotes] = ACTIONS(2365), + [sym__str_back_ticks] = ACTIONS(2365), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2365), + }, + [754] = { + [sym_comment] = STATE(754), + [anon_sym_export] = ACTIONS(2433), + [anon_sym_alias] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_let_DASHenv] = ACTIONS(2433), + [anon_sym_mut] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [aux_sym_cmd_identifier_token1] = ACTIONS(2433), + [aux_sym_cmd_identifier_token2] = ACTIONS(2435), + [aux_sym_cmd_identifier_token3] = ACTIONS(2435), + [aux_sym_cmd_identifier_token4] = ACTIONS(2435), + [aux_sym_cmd_identifier_token5] = ACTIONS(2435), + [aux_sym_cmd_identifier_token6] = ACTIONS(2435), + [aux_sym_cmd_identifier_token7] = ACTIONS(2435), + [aux_sym_cmd_identifier_token8] = ACTIONS(2433), + [aux_sym_cmd_identifier_token9] = ACTIONS(2433), + [aux_sym_cmd_identifier_token10] = ACTIONS(2435), + [aux_sym_cmd_identifier_token11] = ACTIONS(2435), + [aux_sym_cmd_identifier_token12] = ACTIONS(2433), + [aux_sym_cmd_identifier_token13] = ACTIONS(2433), + [aux_sym_cmd_identifier_token14] = ACTIONS(2433), + [aux_sym_cmd_identifier_token15] = ACTIONS(2433), + [aux_sym_cmd_identifier_token16] = ACTIONS(2435), + [aux_sym_cmd_identifier_token17] = ACTIONS(2435), + [aux_sym_cmd_identifier_token18] = ACTIONS(2435), + [aux_sym_cmd_identifier_token19] = ACTIONS(2435), + [aux_sym_cmd_identifier_token20] = ACTIONS(2435), + [aux_sym_cmd_identifier_token21] = ACTIONS(2435), + [aux_sym_cmd_identifier_token22] = ACTIONS(2435), + [aux_sym_cmd_identifier_token23] = ACTIONS(2435), + [aux_sym_cmd_identifier_token24] = ACTIONS(2435), + [aux_sym_cmd_identifier_token25] = ACTIONS(2435), + [aux_sym_cmd_identifier_token26] = ACTIONS(2435), + [aux_sym_cmd_identifier_token27] = ACTIONS(2435), + [aux_sym_cmd_identifier_token28] = ACTIONS(2435), + [aux_sym_cmd_identifier_token29] = ACTIONS(2435), + [aux_sym_cmd_identifier_token30] = ACTIONS(2435), + [aux_sym_cmd_identifier_token31] = ACTIONS(2435), + [aux_sym_cmd_identifier_token32] = ACTIONS(2435), + [aux_sym_cmd_identifier_token33] = ACTIONS(2435), + [aux_sym_cmd_identifier_token34] = ACTIONS(2433), + [aux_sym_cmd_identifier_token35] = ACTIONS(2435), + [aux_sym_cmd_identifier_token36] = ACTIONS(2435), + [aux_sym_cmd_identifier_token37] = ACTIONS(2435), + [aux_sym_cmd_identifier_token38] = ACTIONS(2433), + [aux_sym_cmd_identifier_token39] = ACTIONS(2435), + [aux_sym_cmd_identifier_token40] = ACTIONS(2435), + [anon_sym_def] = ACTIONS(2433), + [anon_sym_export_DASHenv] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_module] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_DOLLAR] = ACTIONS(2435), + [anon_sym_error] = ACTIONS(2433), + [anon_sym_DASH2] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_in2] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_make] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_catch] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_source] = ACTIONS(2433), + [anon_sym_source_DASHenv] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_hide] = ACTIONS(2433), + [anon_sym_hide_DASHenv] = ACTIONS(2433), + [anon_sym_overlay] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_PLUS2] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2435), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2435), + [aux_sym__val_number_decimal_token4] = ACTIONS(2435), + [aux_sym__val_number_token1] = ACTIONS(2435), + [aux_sym__val_number_token2] = ACTIONS(2435), + [aux_sym__val_number_token3] = ACTIONS(2435), + [aux_sym__val_number_token4] = ACTIONS(2433), + [aux_sym__val_number_token5] = ACTIONS(2433), + [aux_sym__val_number_token6] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2435), + [sym__str_single_quotes] = ACTIONS(2435), + [sym__str_back_ticks] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2435), + }, + [755] = { + [sym_comment] = STATE(755), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_alias] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_let_DASHenv] = ACTIONS(2441), + [anon_sym_mut] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [aux_sym_cmd_identifier_token1] = ACTIONS(2441), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(2441), + [aux_sym_cmd_identifier_token9] = ACTIONS(2441), + [aux_sym_cmd_identifier_token10] = ACTIONS(2443), + [aux_sym_cmd_identifier_token11] = ACTIONS(2443), + [aux_sym_cmd_identifier_token12] = ACTIONS(2441), + [aux_sym_cmd_identifier_token13] = ACTIONS(2441), + [aux_sym_cmd_identifier_token14] = ACTIONS(2441), + [aux_sym_cmd_identifier_token15] = ACTIONS(2441), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(2441), + [aux_sym_cmd_identifier_token35] = ACTIONS(2443), + [aux_sym_cmd_identifier_token36] = ACTIONS(2443), + [aux_sym_cmd_identifier_token37] = ACTIONS(2443), + [aux_sym_cmd_identifier_token38] = ACTIONS(2441), + [aux_sym_cmd_identifier_token39] = ACTIONS(2443), + [aux_sym_cmd_identifier_token40] = ACTIONS(2443), + [anon_sym_def] = ACTIONS(2441), + [anon_sym_export_DASHenv] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_DOLLAR] = ACTIONS(2443), + [anon_sym_error] = ACTIONS(2441), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_in2] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_make] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_catch] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_source] = ACTIONS(2441), + [anon_sym_source_DASHenv] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_hide] = ACTIONS(2441), + [anon_sym_hide_DASHenv] = ACTIONS(2441), + [anon_sym_overlay] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_PLUS2] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2443), + [aux_sym__val_number_decimal_token1] = ACTIONS(2441), + [aux_sym__val_number_decimal_token2] = ACTIONS(2443), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [aux_sym__val_number_token1] = ACTIONS(2443), + [aux_sym__val_number_token2] = ACTIONS(2443), + [aux_sym__val_number_token3] = ACTIONS(2443), + [aux_sym__val_number_token4] = ACTIONS(2441), + [aux_sym__val_number_token5] = ACTIONS(2441), + [aux_sym__val_number_token6] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2443), + [sym__str_single_quotes] = ACTIONS(2443), + [sym__str_back_ticks] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2443), + }, + [756] = { + [sym_comment] = STATE(756), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [aux_sym_cmd_identifier_token1] = ACTIONS(1018), + [aux_sym_cmd_identifier_token2] = ACTIONS(1020), + [aux_sym_cmd_identifier_token3] = ACTIONS(1020), + [aux_sym_cmd_identifier_token4] = ACTIONS(1020), + [aux_sym_cmd_identifier_token5] = ACTIONS(1020), + [aux_sym_cmd_identifier_token6] = ACTIONS(1020), + [aux_sym_cmd_identifier_token7] = ACTIONS(1020), + [aux_sym_cmd_identifier_token8] = ACTIONS(1018), + [aux_sym_cmd_identifier_token9] = ACTIONS(1018), + [aux_sym_cmd_identifier_token10] = ACTIONS(1020), + [aux_sym_cmd_identifier_token11] = ACTIONS(1020), + [aux_sym_cmd_identifier_token12] = ACTIONS(1018), + [aux_sym_cmd_identifier_token13] = ACTIONS(1018), + [aux_sym_cmd_identifier_token14] = ACTIONS(1018), + [aux_sym_cmd_identifier_token15] = ACTIONS(1018), + [aux_sym_cmd_identifier_token16] = ACTIONS(1020), + [aux_sym_cmd_identifier_token17] = ACTIONS(1020), + [aux_sym_cmd_identifier_token18] = ACTIONS(1020), + [aux_sym_cmd_identifier_token19] = ACTIONS(1020), + [aux_sym_cmd_identifier_token20] = ACTIONS(1020), + [aux_sym_cmd_identifier_token21] = ACTIONS(1020), + [aux_sym_cmd_identifier_token22] = ACTIONS(1020), + [aux_sym_cmd_identifier_token23] = ACTIONS(1020), + [aux_sym_cmd_identifier_token24] = ACTIONS(1020), + [aux_sym_cmd_identifier_token25] = ACTIONS(1020), + [aux_sym_cmd_identifier_token26] = ACTIONS(1020), + [aux_sym_cmd_identifier_token27] = ACTIONS(1020), + [aux_sym_cmd_identifier_token28] = ACTIONS(1020), + [aux_sym_cmd_identifier_token29] = ACTIONS(1020), + [aux_sym_cmd_identifier_token30] = ACTIONS(1020), + [aux_sym_cmd_identifier_token31] = ACTIONS(1020), + [aux_sym_cmd_identifier_token32] = ACTIONS(1020), + [aux_sym_cmd_identifier_token33] = ACTIONS(1020), + [aux_sym_cmd_identifier_token34] = ACTIONS(1018), + [aux_sym_cmd_identifier_token35] = ACTIONS(1020), + [aux_sym_cmd_identifier_token36] = ACTIONS(1020), + [aux_sym_cmd_identifier_token37] = ACTIONS(1020), + [aux_sym_cmd_identifier_token38] = ACTIONS(1018), + [aux_sym_cmd_identifier_token39] = ACTIONS(1020), + [aux_sym_cmd_identifier_token40] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_make] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_catch] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_as] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_decimal_token4] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1018), + [aux_sym__val_number_token5] = ACTIONS(1018), + [aux_sym__val_number_token6] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1020), + }, + [757] = { + [sym_comment] = STATE(757), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_alias] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_let_DASHenv] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [aux_sym_cmd_identifier_token1] = ACTIONS(2159), + [aux_sym_cmd_identifier_token2] = ACTIONS(2165), + [aux_sym_cmd_identifier_token3] = ACTIONS(2165), + [aux_sym_cmd_identifier_token4] = ACTIONS(2165), + [aux_sym_cmd_identifier_token5] = ACTIONS(2165), + [aux_sym_cmd_identifier_token6] = ACTIONS(2165), + [aux_sym_cmd_identifier_token7] = ACTIONS(2165), + [aux_sym_cmd_identifier_token8] = ACTIONS(2159), + [aux_sym_cmd_identifier_token9] = ACTIONS(2159), + [aux_sym_cmd_identifier_token10] = ACTIONS(2165), + [aux_sym_cmd_identifier_token11] = ACTIONS(2165), + [aux_sym_cmd_identifier_token12] = ACTIONS(2159), + [aux_sym_cmd_identifier_token13] = ACTIONS(2159), + [aux_sym_cmd_identifier_token14] = ACTIONS(2159), + [aux_sym_cmd_identifier_token15] = ACTIONS(2159), + [aux_sym_cmd_identifier_token16] = ACTIONS(2165), + [aux_sym_cmd_identifier_token17] = ACTIONS(2165), + [aux_sym_cmd_identifier_token18] = ACTIONS(2165), + [aux_sym_cmd_identifier_token19] = ACTIONS(2165), + [aux_sym_cmd_identifier_token20] = ACTIONS(2165), + [aux_sym_cmd_identifier_token21] = ACTIONS(2165), + [aux_sym_cmd_identifier_token22] = ACTIONS(2165), + [aux_sym_cmd_identifier_token23] = ACTIONS(2165), + [aux_sym_cmd_identifier_token24] = ACTIONS(2165), + [aux_sym_cmd_identifier_token25] = ACTIONS(2165), + [aux_sym_cmd_identifier_token26] = ACTIONS(2165), + [aux_sym_cmd_identifier_token27] = ACTIONS(2165), + [aux_sym_cmd_identifier_token28] = ACTIONS(2165), + [aux_sym_cmd_identifier_token29] = ACTIONS(2165), + [aux_sym_cmd_identifier_token30] = ACTIONS(2165), + [aux_sym_cmd_identifier_token31] = ACTIONS(2165), + [aux_sym_cmd_identifier_token32] = ACTIONS(2165), + [aux_sym_cmd_identifier_token33] = ACTIONS(2165), + [aux_sym_cmd_identifier_token34] = ACTIONS(2159), + [aux_sym_cmd_identifier_token35] = ACTIONS(2165), + [aux_sym_cmd_identifier_token36] = ACTIONS(2165), + [aux_sym_cmd_identifier_token37] = ACTIONS(2165), + [aux_sym_cmd_identifier_token38] = ACTIONS(2159), + [aux_sym_cmd_identifier_token39] = ACTIONS(2165), + [aux_sym_cmd_identifier_token40] = ACTIONS(2165), + [anon_sym_def] = ACTIONS(2159), + [anon_sym_export_DASHenv] = ACTIONS(2159), + [anon_sym_extern] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_use] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_DOLLAR] = ACTIONS(2165), + [anon_sym_error] = ACTIONS(2159), + [anon_sym_DASH2] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_in2] = ACTIONS(2159), + [anon_sym_loop] = ACTIONS(2159), + [anon_sym_make] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_do] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_else] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_catch] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_source] = ACTIONS(2159), + [anon_sym_source_DASHenv] = ACTIONS(2159), + [anon_sym_register] = ACTIONS(2159), + [anon_sym_hide] = ACTIONS(2159), + [anon_sym_hide_DASHenv] = ACTIONS(2159), + [anon_sym_overlay] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_PLUS2] = ACTIONS(2159), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2165), + [aux_sym__val_number_decimal_token1] = ACTIONS(2159), + [aux_sym__val_number_decimal_token2] = ACTIONS(2165), + [aux_sym__val_number_decimal_token3] = ACTIONS(2165), + [aux_sym__val_number_decimal_token4] = ACTIONS(2165), + [aux_sym__val_number_token1] = ACTIONS(2165), + [aux_sym__val_number_token2] = ACTIONS(2165), + [aux_sym__val_number_token3] = ACTIONS(2165), + [aux_sym__val_number_token4] = ACTIONS(2159), + [aux_sym__val_number_token5] = ACTIONS(2159), + [aux_sym__val_number_token6] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2165), + [sym__str_single_quotes] = ACTIONS(2165), + [sym__str_back_ticks] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2165), + }, + [758] = { + [sym_comment] = STATE(758), + [anon_sym_export] = ACTIONS(1030), + [anon_sym_alias] = ACTIONS(1030), + [anon_sym_let] = ACTIONS(1030), + [anon_sym_let_DASHenv] = ACTIONS(1030), + [anon_sym_mut] = ACTIONS(1030), + [anon_sym_const] = ACTIONS(1030), + [aux_sym_cmd_identifier_token1] = ACTIONS(1030), + [aux_sym_cmd_identifier_token2] = ACTIONS(1032), + [aux_sym_cmd_identifier_token3] = ACTIONS(1032), + [aux_sym_cmd_identifier_token4] = ACTIONS(1032), + [aux_sym_cmd_identifier_token5] = ACTIONS(1032), + [aux_sym_cmd_identifier_token6] = ACTIONS(1032), + [aux_sym_cmd_identifier_token7] = ACTIONS(1032), + [aux_sym_cmd_identifier_token8] = ACTIONS(1030), + [aux_sym_cmd_identifier_token9] = ACTIONS(1030), + [aux_sym_cmd_identifier_token10] = ACTIONS(1032), + [aux_sym_cmd_identifier_token11] = ACTIONS(1032), + [aux_sym_cmd_identifier_token12] = ACTIONS(1030), + [aux_sym_cmd_identifier_token13] = ACTIONS(1030), + [aux_sym_cmd_identifier_token14] = ACTIONS(1030), + [aux_sym_cmd_identifier_token15] = ACTIONS(1030), + [aux_sym_cmd_identifier_token16] = ACTIONS(1032), + [aux_sym_cmd_identifier_token17] = ACTIONS(1032), + [aux_sym_cmd_identifier_token18] = ACTIONS(1032), + [aux_sym_cmd_identifier_token19] = ACTIONS(1032), + [aux_sym_cmd_identifier_token20] = ACTIONS(1032), + [aux_sym_cmd_identifier_token21] = ACTIONS(1032), + [aux_sym_cmd_identifier_token22] = ACTIONS(1032), + [aux_sym_cmd_identifier_token23] = ACTIONS(1032), + [aux_sym_cmd_identifier_token24] = ACTIONS(1032), + [aux_sym_cmd_identifier_token25] = ACTIONS(1032), + [aux_sym_cmd_identifier_token26] = ACTIONS(1032), + [aux_sym_cmd_identifier_token27] = ACTIONS(1032), + [aux_sym_cmd_identifier_token28] = ACTIONS(1032), + [aux_sym_cmd_identifier_token29] = ACTIONS(1032), + [aux_sym_cmd_identifier_token30] = ACTIONS(1032), + [aux_sym_cmd_identifier_token31] = ACTIONS(1032), + [aux_sym_cmd_identifier_token32] = ACTIONS(1032), + [aux_sym_cmd_identifier_token33] = ACTIONS(1032), + [aux_sym_cmd_identifier_token34] = ACTIONS(1030), + [aux_sym_cmd_identifier_token35] = ACTIONS(1032), + [aux_sym_cmd_identifier_token36] = ACTIONS(1032), + [aux_sym_cmd_identifier_token37] = ACTIONS(1032), + [aux_sym_cmd_identifier_token38] = ACTIONS(1030), + [aux_sym_cmd_identifier_token39] = ACTIONS(1032), + [aux_sym_cmd_identifier_token40] = ACTIONS(1032), + [anon_sym_def] = ACTIONS(1030), + [anon_sym_export_DASHenv] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(1030), + [anon_sym_module] = ACTIONS(1030), + [anon_sym_use] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_error] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_continue] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1030), + [anon_sym_loop] = ACTIONS(1030), + [anon_sym_make] = ACTIONS(1030), + [anon_sym_while] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(1030), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(1030), + [anon_sym_match] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_try] = ACTIONS(1030), + [anon_sym_catch] = ACTIONS(1030), + [anon_sym_return] = ACTIONS(1030), + [anon_sym_source] = ACTIONS(1030), + [anon_sym_source_DASHenv] = ACTIONS(1030), + [anon_sym_register] = ACTIONS(1030), + [anon_sym_hide] = ACTIONS(1030), + [anon_sym_hide_DASHenv] = ACTIONS(1030), + [anon_sym_overlay] = ACTIONS(1030), + [anon_sym_as] = ACTIONS(1030), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1032), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1032), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1032), + [aux_sym__val_number_decimal_token4] = ACTIONS(1032), + [aux_sym__val_number_token1] = ACTIONS(1032), + [aux_sym__val_number_token2] = ACTIONS(1032), + [aux_sym__val_number_token3] = ACTIONS(1032), + [aux_sym__val_number_token4] = ACTIONS(1030), + [aux_sym__val_number_token5] = ACTIONS(1030), + [aux_sym__val_number_token6] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__str_single_quotes] = ACTIONS(1032), + [sym__str_back_ticks] = ACTIONS(1032), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1032), + }, + [759] = { + [sym_comment] = STATE(759), + [anon_sym_export] = ACTIONS(2090), + [anon_sym_alias] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_let_DASHenv] = ACTIONS(2090), + [anon_sym_mut] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [aux_sym_cmd_identifier_token1] = ACTIONS(2090), + [aux_sym_cmd_identifier_token2] = ACTIONS(2092), + [aux_sym_cmd_identifier_token3] = ACTIONS(2092), + [aux_sym_cmd_identifier_token4] = ACTIONS(2092), + [aux_sym_cmd_identifier_token5] = ACTIONS(2092), + [aux_sym_cmd_identifier_token6] = ACTIONS(2092), + [aux_sym_cmd_identifier_token7] = ACTIONS(2092), + [aux_sym_cmd_identifier_token8] = ACTIONS(2090), + [aux_sym_cmd_identifier_token9] = ACTIONS(2090), + [aux_sym_cmd_identifier_token10] = ACTIONS(2092), + [aux_sym_cmd_identifier_token11] = ACTIONS(2092), + [aux_sym_cmd_identifier_token12] = ACTIONS(2090), + [aux_sym_cmd_identifier_token13] = ACTIONS(2090), + [aux_sym_cmd_identifier_token14] = ACTIONS(2090), + [aux_sym_cmd_identifier_token15] = ACTIONS(2090), + [aux_sym_cmd_identifier_token16] = ACTIONS(2092), + [aux_sym_cmd_identifier_token17] = ACTIONS(2092), + [aux_sym_cmd_identifier_token18] = ACTIONS(2092), + [aux_sym_cmd_identifier_token19] = ACTIONS(2092), + [aux_sym_cmd_identifier_token20] = ACTIONS(2092), + [aux_sym_cmd_identifier_token21] = ACTIONS(2092), + [aux_sym_cmd_identifier_token22] = ACTIONS(2092), + [aux_sym_cmd_identifier_token23] = ACTIONS(2092), + [aux_sym_cmd_identifier_token24] = ACTIONS(2092), + [aux_sym_cmd_identifier_token25] = ACTIONS(2092), + [aux_sym_cmd_identifier_token26] = ACTIONS(2092), + [aux_sym_cmd_identifier_token27] = ACTIONS(2092), + [aux_sym_cmd_identifier_token28] = ACTIONS(2092), + [aux_sym_cmd_identifier_token29] = ACTIONS(2092), + [aux_sym_cmd_identifier_token30] = ACTIONS(2092), + [aux_sym_cmd_identifier_token31] = ACTIONS(2092), + [aux_sym_cmd_identifier_token32] = ACTIONS(2092), + [aux_sym_cmd_identifier_token33] = ACTIONS(2092), + [aux_sym_cmd_identifier_token34] = ACTIONS(2090), + [aux_sym_cmd_identifier_token35] = ACTIONS(2092), + [aux_sym_cmd_identifier_token36] = ACTIONS(2092), + [aux_sym_cmd_identifier_token37] = ACTIONS(2092), + [aux_sym_cmd_identifier_token38] = ACTIONS(2090), + [aux_sym_cmd_identifier_token39] = ACTIONS(2092), + [aux_sym_cmd_identifier_token40] = ACTIONS(2092), + [anon_sym_def] = ACTIONS(2090), + [anon_sym_export_DASHenv] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2090), + [anon_sym_module] = ACTIONS(2090), + [anon_sym_use] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_error] = ACTIONS(2090), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_in2] = ACTIONS(2090), + [anon_sym_loop] = ACTIONS(2090), + [anon_sym_make] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_do] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_else] = ACTIONS(2090), + [anon_sym_match] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_try] = ACTIONS(2090), + [anon_sym_catch] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_source] = ACTIONS(2090), + [anon_sym_source_DASHenv] = ACTIONS(2090), + [anon_sym_register] = ACTIONS(2090), + [anon_sym_hide] = ACTIONS(2090), + [anon_sym_hide_DASHenv] = ACTIONS(2090), + [anon_sym_overlay] = ACTIONS(2090), + [anon_sym_as] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2092), + [aux_sym__val_number_decimal_token1] = ACTIONS(2090), + [aux_sym__val_number_decimal_token2] = ACTIONS(2092), + [aux_sym__val_number_decimal_token3] = ACTIONS(2092), + [aux_sym__val_number_decimal_token4] = ACTIONS(2092), + [aux_sym__val_number_token1] = ACTIONS(2092), + [aux_sym__val_number_token2] = ACTIONS(2092), + [aux_sym__val_number_token3] = ACTIONS(2092), + [aux_sym__val_number_token4] = ACTIONS(2090), + [aux_sym__val_number_token5] = ACTIONS(2090), + [aux_sym__val_number_token6] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2092), + [sym__str_single_quotes] = ACTIONS(2092), + [sym__str_back_ticks] = ACTIONS(2092), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2092), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2092), + }, + [760] = { + [sym_comment] = STATE(760), + [anon_sym_export] = ACTIONS(2383), + [anon_sym_alias] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_let_DASHenv] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [aux_sym_cmd_identifier_token1] = ACTIONS(2383), + [aux_sym_cmd_identifier_token2] = ACTIONS(2385), + [aux_sym_cmd_identifier_token3] = ACTIONS(2385), + [aux_sym_cmd_identifier_token4] = ACTIONS(2385), + [aux_sym_cmd_identifier_token5] = ACTIONS(2385), + [aux_sym_cmd_identifier_token6] = ACTIONS(2385), + [aux_sym_cmd_identifier_token7] = ACTIONS(2385), + [aux_sym_cmd_identifier_token8] = ACTIONS(2383), + [aux_sym_cmd_identifier_token9] = ACTIONS(2383), + [aux_sym_cmd_identifier_token10] = ACTIONS(2385), + [aux_sym_cmd_identifier_token11] = ACTIONS(2385), + [aux_sym_cmd_identifier_token12] = ACTIONS(2383), + [aux_sym_cmd_identifier_token13] = ACTIONS(2383), + [aux_sym_cmd_identifier_token14] = ACTIONS(2383), + [aux_sym_cmd_identifier_token15] = ACTIONS(2383), + [aux_sym_cmd_identifier_token16] = ACTIONS(2385), + [aux_sym_cmd_identifier_token17] = ACTIONS(2385), + [aux_sym_cmd_identifier_token18] = ACTIONS(2385), + [aux_sym_cmd_identifier_token19] = ACTIONS(2385), + [aux_sym_cmd_identifier_token20] = ACTIONS(2385), + [aux_sym_cmd_identifier_token21] = ACTIONS(2385), + [aux_sym_cmd_identifier_token22] = ACTIONS(2385), + [aux_sym_cmd_identifier_token23] = ACTIONS(2385), + [aux_sym_cmd_identifier_token24] = ACTIONS(2385), + [aux_sym_cmd_identifier_token25] = ACTIONS(2385), + [aux_sym_cmd_identifier_token26] = ACTIONS(2385), + [aux_sym_cmd_identifier_token27] = ACTIONS(2385), + [aux_sym_cmd_identifier_token28] = ACTIONS(2385), + [aux_sym_cmd_identifier_token29] = ACTIONS(2385), + [aux_sym_cmd_identifier_token30] = ACTIONS(2385), + [aux_sym_cmd_identifier_token31] = ACTIONS(2385), + [aux_sym_cmd_identifier_token32] = ACTIONS(2385), + [aux_sym_cmd_identifier_token33] = ACTIONS(2385), + [aux_sym_cmd_identifier_token34] = ACTIONS(2383), + [aux_sym_cmd_identifier_token35] = ACTIONS(2385), + [aux_sym_cmd_identifier_token36] = ACTIONS(2385), + [aux_sym_cmd_identifier_token37] = ACTIONS(2385), + [aux_sym_cmd_identifier_token38] = ACTIONS(2383), + [aux_sym_cmd_identifier_token39] = ACTIONS(2385), + [aux_sym_cmd_identifier_token40] = ACTIONS(2385), + [anon_sym_def] = ACTIONS(2383), + [anon_sym_export_DASHenv] = ACTIONS(2383), + [anon_sym_extern] = ACTIONS(2383), + [anon_sym_module] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_error] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_in2] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_make] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [anon_sym_do] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_else] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2383), + [anon_sym_catch] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_source] = ACTIONS(2383), + [anon_sym_source_DASHenv] = ACTIONS(2383), + [anon_sym_register] = ACTIONS(2383), + [anon_sym_hide] = ACTIONS(2383), + [anon_sym_hide_DASHenv] = ACTIONS(2383), + [anon_sym_overlay] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2385), + [aux_sym__val_number_decimal_token1] = ACTIONS(2383), + [aux_sym__val_number_decimal_token2] = ACTIONS(2385), + [aux_sym__val_number_decimal_token3] = ACTIONS(2385), + [aux_sym__val_number_decimal_token4] = ACTIONS(2385), + [aux_sym__val_number_token1] = ACTIONS(2385), + [aux_sym__val_number_token2] = ACTIONS(2385), + [aux_sym__val_number_token3] = ACTIONS(2385), + [aux_sym__val_number_token4] = ACTIONS(2383), + [aux_sym__val_number_token5] = ACTIONS(2383), + [aux_sym__val_number_token6] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2385), + [sym__str_single_quotes] = ACTIONS(2385), + [sym__str_back_ticks] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2385), + }, + [761] = { + [sym_comment] = STATE(761), + [anon_sym_export] = ACTIONS(2395), + [anon_sym_alias] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2395), + [anon_sym_let_DASHenv] = ACTIONS(2395), + [anon_sym_mut] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [aux_sym_cmd_identifier_token1] = ACTIONS(2395), + [aux_sym_cmd_identifier_token2] = ACTIONS(2397), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [aux_sym_cmd_identifier_token6] = ACTIONS(2397), + [aux_sym_cmd_identifier_token7] = ACTIONS(2397), + [aux_sym_cmd_identifier_token8] = ACTIONS(2395), + [aux_sym_cmd_identifier_token9] = ACTIONS(2395), + [aux_sym_cmd_identifier_token10] = ACTIONS(2397), + [aux_sym_cmd_identifier_token11] = ACTIONS(2397), + [aux_sym_cmd_identifier_token12] = ACTIONS(2395), + [aux_sym_cmd_identifier_token13] = ACTIONS(2395), + [aux_sym_cmd_identifier_token14] = ACTIONS(2395), + [aux_sym_cmd_identifier_token15] = ACTIONS(2395), + [aux_sym_cmd_identifier_token16] = ACTIONS(2397), + [aux_sym_cmd_identifier_token17] = ACTIONS(2397), + [aux_sym_cmd_identifier_token18] = ACTIONS(2397), + [aux_sym_cmd_identifier_token19] = ACTIONS(2397), + [aux_sym_cmd_identifier_token20] = ACTIONS(2397), + [aux_sym_cmd_identifier_token21] = ACTIONS(2397), + [aux_sym_cmd_identifier_token22] = ACTIONS(2397), + [aux_sym_cmd_identifier_token23] = ACTIONS(2397), + [aux_sym_cmd_identifier_token24] = ACTIONS(2397), + [aux_sym_cmd_identifier_token25] = ACTIONS(2397), + [aux_sym_cmd_identifier_token26] = ACTIONS(2397), + [aux_sym_cmd_identifier_token27] = ACTIONS(2397), + [aux_sym_cmd_identifier_token28] = ACTIONS(2397), + [aux_sym_cmd_identifier_token29] = ACTIONS(2397), + [aux_sym_cmd_identifier_token30] = ACTIONS(2397), + [aux_sym_cmd_identifier_token31] = ACTIONS(2397), + [aux_sym_cmd_identifier_token32] = ACTIONS(2397), + [aux_sym_cmd_identifier_token33] = ACTIONS(2397), + [aux_sym_cmd_identifier_token34] = ACTIONS(2395), + [aux_sym_cmd_identifier_token35] = ACTIONS(2397), + [aux_sym_cmd_identifier_token36] = ACTIONS(2397), + [aux_sym_cmd_identifier_token37] = ACTIONS(2397), + [aux_sym_cmd_identifier_token38] = ACTIONS(2395), + [aux_sym_cmd_identifier_token39] = ACTIONS(2397), + [aux_sym_cmd_identifier_token40] = ACTIONS(2397), + [anon_sym_def] = ACTIONS(2395), + [anon_sym_export_DASHenv] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym_module] = ACTIONS(2395), + [anon_sym_use] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_error] = ACTIONS(2395), + [anon_sym_DASH2] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_in2] = ACTIONS(2395), + [anon_sym_loop] = ACTIONS(2395), + [anon_sym_make] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_do] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_catch] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_source] = ACTIONS(2395), + [anon_sym_source_DASHenv] = ACTIONS(2395), + [anon_sym_register] = ACTIONS(2395), + [anon_sym_hide] = ACTIONS(2395), + [anon_sym_hide_DASHenv] = ACTIONS(2395), + [anon_sym_overlay] = ACTIONS(2395), + [anon_sym_as] = ACTIONS(2395), + [anon_sym_PLUS2] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2397), + [aux_sym__val_number_decimal_token1] = ACTIONS(2395), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2397), + [aux_sym__val_number_decimal_token4] = ACTIONS(2397), + [aux_sym__val_number_token1] = ACTIONS(2397), + [aux_sym__val_number_token2] = ACTIONS(2397), + [aux_sym__val_number_token3] = ACTIONS(2397), + [aux_sym__val_number_token4] = ACTIONS(2395), + [aux_sym__val_number_token5] = ACTIONS(2395), + [aux_sym__val_number_token6] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym__str_single_quotes] = ACTIONS(2397), + [sym__str_back_ticks] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2397), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2397), + }, + [762] = { + [sym_comment] = STATE(762), + [anon_sym_export] = ACTIONS(2399), + [anon_sym_alias] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), + [anon_sym_let_DASHenv] = ACTIONS(2399), + [anon_sym_mut] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [aux_sym_cmd_identifier_token1] = ACTIONS(2399), + [aux_sym_cmd_identifier_token2] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2401), + [aux_sym_cmd_identifier_token4] = ACTIONS(2401), + [aux_sym_cmd_identifier_token5] = ACTIONS(2401), + [aux_sym_cmd_identifier_token6] = ACTIONS(2401), + [aux_sym_cmd_identifier_token7] = ACTIONS(2401), + [aux_sym_cmd_identifier_token8] = ACTIONS(2399), + [aux_sym_cmd_identifier_token9] = ACTIONS(2399), + [aux_sym_cmd_identifier_token10] = ACTIONS(2401), + [aux_sym_cmd_identifier_token11] = ACTIONS(2401), + [aux_sym_cmd_identifier_token12] = ACTIONS(2399), + [aux_sym_cmd_identifier_token13] = ACTIONS(2399), + [aux_sym_cmd_identifier_token14] = ACTIONS(2399), + [aux_sym_cmd_identifier_token15] = ACTIONS(2399), + [aux_sym_cmd_identifier_token16] = ACTIONS(2401), + [aux_sym_cmd_identifier_token17] = ACTIONS(2401), + [aux_sym_cmd_identifier_token18] = ACTIONS(2401), + [aux_sym_cmd_identifier_token19] = ACTIONS(2401), + [aux_sym_cmd_identifier_token20] = ACTIONS(2401), + [aux_sym_cmd_identifier_token21] = ACTIONS(2401), + [aux_sym_cmd_identifier_token22] = ACTIONS(2401), + [aux_sym_cmd_identifier_token23] = ACTIONS(2401), + [aux_sym_cmd_identifier_token24] = ACTIONS(2401), + [aux_sym_cmd_identifier_token25] = ACTIONS(2401), + [aux_sym_cmd_identifier_token26] = ACTIONS(2401), + [aux_sym_cmd_identifier_token27] = ACTIONS(2401), + [aux_sym_cmd_identifier_token28] = ACTIONS(2401), + [aux_sym_cmd_identifier_token29] = ACTIONS(2401), + [aux_sym_cmd_identifier_token30] = ACTIONS(2401), + [aux_sym_cmd_identifier_token31] = ACTIONS(2401), + [aux_sym_cmd_identifier_token32] = ACTIONS(2401), + [aux_sym_cmd_identifier_token33] = ACTIONS(2401), + [aux_sym_cmd_identifier_token34] = ACTIONS(2399), + [aux_sym_cmd_identifier_token35] = ACTIONS(2401), + [aux_sym_cmd_identifier_token36] = ACTIONS(2401), + [aux_sym_cmd_identifier_token37] = ACTIONS(2401), + [aux_sym_cmd_identifier_token38] = ACTIONS(2399), + [aux_sym_cmd_identifier_token39] = ACTIONS(2401), + [aux_sym_cmd_identifier_token40] = ACTIONS(2401), + [anon_sym_def] = ACTIONS(2399), + [anon_sym_export_DASHenv] = ACTIONS(2399), + [anon_sym_extern] = ACTIONS(2399), + [anon_sym_module] = ACTIONS(2399), + [anon_sym_use] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_error] = ACTIONS(2399), + [anon_sym_DASH2] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_in2] = ACTIONS(2399), + [anon_sym_loop] = ACTIONS(2399), + [anon_sym_make] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_do] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_else] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2399), + [anon_sym_catch] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_source] = ACTIONS(2399), + [anon_sym_source_DASHenv] = ACTIONS(2399), + [anon_sym_register] = ACTIONS(2399), + [anon_sym_hide] = ACTIONS(2399), + [anon_sym_hide_DASHenv] = ACTIONS(2399), + [anon_sym_overlay] = ACTIONS(2399), + [anon_sym_as] = ACTIONS(2399), + [anon_sym_PLUS2] = ACTIONS(2399), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2401), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2399), + [aux_sym__val_number_decimal_token2] = ACTIONS(2401), + [aux_sym__val_number_decimal_token3] = ACTIONS(2401), + [aux_sym__val_number_decimal_token4] = ACTIONS(2401), + [aux_sym__val_number_token1] = ACTIONS(2401), + [aux_sym__val_number_token2] = ACTIONS(2401), + [aux_sym__val_number_token3] = ACTIONS(2401), + [aux_sym__val_number_token4] = ACTIONS(2399), + [aux_sym__val_number_token5] = ACTIONS(2399), + [aux_sym__val_number_token6] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2401), + [sym__str_single_quotes] = ACTIONS(2401), + [sym__str_back_ticks] = ACTIONS(2401), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2401), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2401), + }, + [763] = { + [sym_comment] = STATE(763), + [anon_sym_export] = ACTIONS(2403), + [anon_sym_alias] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_let_DASHenv] = ACTIONS(2403), + [anon_sym_mut] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [aux_sym_cmd_identifier_token1] = ACTIONS(2403), + [aux_sym_cmd_identifier_token2] = ACTIONS(2405), + [aux_sym_cmd_identifier_token3] = ACTIONS(2405), + [aux_sym_cmd_identifier_token4] = ACTIONS(2405), + [aux_sym_cmd_identifier_token5] = ACTIONS(2405), + [aux_sym_cmd_identifier_token6] = ACTIONS(2405), + [aux_sym_cmd_identifier_token7] = ACTIONS(2405), + [aux_sym_cmd_identifier_token8] = ACTIONS(2403), + [aux_sym_cmd_identifier_token9] = ACTIONS(2403), + [aux_sym_cmd_identifier_token10] = ACTIONS(2405), + [aux_sym_cmd_identifier_token11] = ACTIONS(2405), + [aux_sym_cmd_identifier_token12] = ACTIONS(2403), + [aux_sym_cmd_identifier_token13] = ACTIONS(2403), + [aux_sym_cmd_identifier_token14] = ACTIONS(2403), + [aux_sym_cmd_identifier_token15] = ACTIONS(2403), + [aux_sym_cmd_identifier_token16] = ACTIONS(2405), + [aux_sym_cmd_identifier_token17] = ACTIONS(2405), + [aux_sym_cmd_identifier_token18] = ACTIONS(2405), + [aux_sym_cmd_identifier_token19] = ACTIONS(2405), + [aux_sym_cmd_identifier_token20] = ACTIONS(2405), + [aux_sym_cmd_identifier_token21] = ACTIONS(2405), + [aux_sym_cmd_identifier_token22] = ACTIONS(2405), + [aux_sym_cmd_identifier_token23] = ACTIONS(2405), + [aux_sym_cmd_identifier_token24] = ACTIONS(2405), + [aux_sym_cmd_identifier_token25] = ACTIONS(2405), + [aux_sym_cmd_identifier_token26] = ACTIONS(2405), + [aux_sym_cmd_identifier_token27] = ACTIONS(2405), + [aux_sym_cmd_identifier_token28] = ACTIONS(2405), + [aux_sym_cmd_identifier_token29] = ACTIONS(2405), + [aux_sym_cmd_identifier_token30] = ACTIONS(2405), + [aux_sym_cmd_identifier_token31] = ACTIONS(2405), + [aux_sym_cmd_identifier_token32] = ACTIONS(2405), + [aux_sym_cmd_identifier_token33] = ACTIONS(2405), + [aux_sym_cmd_identifier_token34] = ACTIONS(2403), + [aux_sym_cmd_identifier_token35] = ACTIONS(2405), + [aux_sym_cmd_identifier_token36] = ACTIONS(2405), + [aux_sym_cmd_identifier_token37] = ACTIONS(2405), + [aux_sym_cmd_identifier_token38] = ACTIONS(2403), + [aux_sym_cmd_identifier_token39] = ACTIONS(2405), + [aux_sym_cmd_identifier_token40] = ACTIONS(2405), + [anon_sym_def] = ACTIONS(2403), + [anon_sym_export_DASHenv] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_module] = ACTIONS(2403), + [anon_sym_use] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_error] = ACTIONS(2403), + [anon_sym_DASH2] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_in2] = ACTIONS(2403), + [anon_sym_loop] = ACTIONS(2403), + [anon_sym_make] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_match] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_catch] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_source] = ACTIONS(2403), + [anon_sym_source_DASHenv] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_hide] = ACTIONS(2403), + [anon_sym_hide_DASHenv] = ACTIONS(2403), + [anon_sym_overlay] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_PLUS2] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2405), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2405), + [aux_sym__val_number_decimal_token4] = ACTIONS(2405), + [aux_sym__val_number_token1] = ACTIONS(2405), + [aux_sym__val_number_token2] = ACTIONS(2405), + [aux_sym__val_number_token3] = ACTIONS(2405), + [aux_sym__val_number_token4] = ACTIONS(2403), + [aux_sym__val_number_token5] = ACTIONS(2403), + [aux_sym__val_number_token6] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym__str_single_quotes] = ACTIONS(2405), + [sym__str_back_ticks] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2405), + }, + [764] = { + [sym_comment] = STATE(764), + [anon_sym_export] = ACTIONS(2106), + [anon_sym_alias] = ACTIONS(2106), + [anon_sym_let] = ACTIONS(2106), + [anon_sym_let_DASHenv] = ACTIONS(2106), + [anon_sym_mut] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [aux_sym_cmd_identifier_token1] = ACTIONS(2106), + [aux_sym_cmd_identifier_token2] = ACTIONS(2108), + [aux_sym_cmd_identifier_token3] = ACTIONS(2108), + [aux_sym_cmd_identifier_token4] = ACTIONS(2108), + [aux_sym_cmd_identifier_token5] = ACTIONS(2108), + [aux_sym_cmd_identifier_token6] = ACTIONS(2108), + [aux_sym_cmd_identifier_token7] = ACTIONS(2108), + [aux_sym_cmd_identifier_token8] = ACTIONS(2106), + [aux_sym_cmd_identifier_token9] = ACTIONS(2106), + [aux_sym_cmd_identifier_token10] = ACTIONS(2108), + [aux_sym_cmd_identifier_token11] = ACTIONS(2108), + [aux_sym_cmd_identifier_token12] = ACTIONS(2106), + [aux_sym_cmd_identifier_token13] = ACTIONS(2106), + [aux_sym_cmd_identifier_token14] = ACTIONS(2106), + [aux_sym_cmd_identifier_token15] = ACTIONS(2106), + [aux_sym_cmd_identifier_token16] = ACTIONS(2108), + [aux_sym_cmd_identifier_token17] = ACTIONS(2108), + [aux_sym_cmd_identifier_token18] = ACTIONS(2108), + [aux_sym_cmd_identifier_token19] = ACTIONS(2108), + [aux_sym_cmd_identifier_token20] = ACTIONS(2108), + [aux_sym_cmd_identifier_token21] = ACTIONS(2108), + [aux_sym_cmd_identifier_token22] = ACTIONS(2108), + [aux_sym_cmd_identifier_token23] = ACTIONS(2108), + [aux_sym_cmd_identifier_token24] = ACTIONS(2108), + [aux_sym_cmd_identifier_token25] = ACTIONS(2108), + [aux_sym_cmd_identifier_token26] = ACTIONS(2108), + [aux_sym_cmd_identifier_token27] = ACTIONS(2108), + [aux_sym_cmd_identifier_token28] = ACTIONS(2108), + [aux_sym_cmd_identifier_token29] = ACTIONS(2108), + [aux_sym_cmd_identifier_token30] = ACTIONS(2108), + [aux_sym_cmd_identifier_token31] = ACTIONS(2108), + [aux_sym_cmd_identifier_token32] = ACTIONS(2108), + [aux_sym_cmd_identifier_token33] = ACTIONS(2108), + [aux_sym_cmd_identifier_token34] = ACTIONS(2106), + [aux_sym_cmd_identifier_token35] = ACTIONS(2108), + [aux_sym_cmd_identifier_token36] = ACTIONS(2108), + [aux_sym_cmd_identifier_token37] = ACTIONS(2108), + [aux_sym_cmd_identifier_token38] = ACTIONS(2106), + [aux_sym_cmd_identifier_token39] = ACTIONS(2108), + [aux_sym_cmd_identifier_token40] = ACTIONS(2108), + [anon_sym_def] = ACTIONS(2106), + [anon_sym_export_DASHenv] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_module] = ACTIONS(2106), + [anon_sym_use] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_error] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_in2] = ACTIONS(2106), + [anon_sym_loop] = ACTIONS(2106), + [anon_sym_make] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_do] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_else] = ACTIONS(2106), + [anon_sym_match] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2106), + [anon_sym_catch] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_source] = ACTIONS(2106), + [anon_sym_source_DASHenv] = ACTIONS(2106), + [anon_sym_register] = ACTIONS(2106), + [anon_sym_hide] = ACTIONS(2106), + [anon_sym_hide_DASHenv] = ACTIONS(2106), + [anon_sym_overlay] = ACTIONS(2106), + [anon_sym_as] = ACTIONS(2106), + [anon_sym_PLUS2] = ACTIONS(2106), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2108), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2108), + [aux_sym__val_number_decimal_token1] = ACTIONS(2106), + [aux_sym__val_number_decimal_token2] = ACTIONS(2108), + [aux_sym__val_number_decimal_token3] = ACTIONS(2108), + [aux_sym__val_number_decimal_token4] = ACTIONS(2108), + [aux_sym__val_number_token1] = ACTIONS(2108), + [aux_sym__val_number_token2] = ACTIONS(2108), + [aux_sym__val_number_token3] = ACTIONS(2108), + [aux_sym__val_number_token4] = ACTIONS(2106), + [aux_sym__val_number_token5] = ACTIONS(2106), + [aux_sym__val_number_token6] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2108), + [sym__str_single_quotes] = ACTIONS(2108), + [sym__str_back_ticks] = ACTIONS(2108), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2108), + }, + [765] = { + [sym_comment] = STATE(765), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(996), + [aux_sym_cmd_identifier_token3] = ACTIONS(996), + [aux_sym_cmd_identifier_token4] = ACTIONS(996), + [aux_sym_cmd_identifier_token5] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(996), + [aux_sym_cmd_identifier_token7] = ACTIONS(996), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(996), + [aux_sym_cmd_identifier_token11] = ACTIONS(996), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(996), + [aux_sym_cmd_identifier_token17] = ACTIONS(996), + [aux_sym_cmd_identifier_token18] = ACTIONS(996), + [aux_sym_cmd_identifier_token19] = ACTIONS(996), + [aux_sym_cmd_identifier_token20] = ACTIONS(996), + [aux_sym_cmd_identifier_token21] = ACTIONS(996), + [aux_sym_cmd_identifier_token22] = ACTIONS(996), + [aux_sym_cmd_identifier_token23] = ACTIONS(996), + [aux_sym_cmd_identifier_token24] = ACTIONS(996), + [aux_sym_cmd_identifier_token25] = ACTIONS(996), + [aux_sym_cmd_identifier_token26] = ACTIONS(996), + [aux_sym_cmd_identifier_token27] = ACTIONS(996), + [aux_sym_cmd_identifier_token28] = ACTIONS(996), + [aux_sym_cmd_identifier_token29] = ACTIONS(996), + [aux_sym_cmd_identifier_token30] = ACTIONS(996), + [aux_sym_cmd_identifier_token31] = ACTIONS(996), + [aux_sym_cmd_identifier_token32] = ACTIONS(996), + [aux_sym_cmd_identifier_token33] = ACTIONS(996), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(996), + [aux_sym_cmd_identifier_token36] = ACTIONS(996), + [aux_sym_cmd_identifier_token37] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(994), + [aux_sym__val_number_token5] = ACTIONS(994), + [aux_sym__val_number_token6] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), + }, + [766] = { + [sym_comment] = STATE(766), + [anon_sym_export] = ACTIONS(2379), + [anon_sym_alias] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_let_DASHenv] = ACTIONS(2379), + [anon_sym_mut] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [aux_sym_cmd_identifier_token1] = ACTIONS(2379), + [aux_sym_cmd_identifier_token2] = ACTIONS(2381), + [aux_sym_cmd_identifier_token3] = ACTIONS(2381), + [aux_sym_cmd_identifier_token4] = ACTIONS(2381), + [aux_sym_cmd_identifier_token5] = ACTIONS(2381), + [aux_sym_cmd_identifier_token6] = ACTIONS(2381), + [aux_sym_cmd_identifier_token7] = ACTIONS(2381), + [aux_sym_cmd_identifier_token8] = ACTIONS(2379), + [aux_sym_cmd_identifier_token9] = ACTIONS(2379), + [aux_sym_cmd_identifier_token10] = ACTIONS(2381), + [aux_sym_cmd_identifier_token11] = ACTIONS(2381), + [aux_sym_cmd_identifier_token12] = ACTIONS(2379), + [aux_sym_cmd_identifier_token13] = ACTIONS(2379), + [aux_sym_cmd_identifier_token14] = ACTIONS(2379), + [aux_sym_cmd_identifier_token15] = ACTIONS(2379), + [aux_sym_cmd_identifier_token16] = ACTIONS(2381), + [aux_sym_cmd_identifier_token17] = ACTIONS(2381), + [aux_sym_cmd_identifier_token18] = ACTIONS(2381), + [aux_sym_cmd_identifier_token19] = ACTIONS(2381), + [aux_sym_cmd_identifier_token20] = ACTIONS(2381), + [aux_sym_cmd_identifier_token21] = ACTIONS(2381), + [aux_sym_cmd_identifier_token22] = ACTIONS(2381), + [aux_sym_cmd_identifier_token23] = ACTIONS(2381), + [aux_sym_cmd_identifier_token24] = ACTIONS(2381), + [aux_sym_cmd_identifier_token25] = ACTIONS(2381), + [aux_sym_cmd_identifier_token26] = ACTIONS(2381), + [aux_sym_cmd_identifier_token27] = ACTIONS(2381), + [aux_sym_cmd_identifier_token28] = ACTIONS(2381), + [aux_sym_cmd_identifier_token29] = ACTIONS(2381), + [aux_sym_cmd_identifier_token30] = ACTIONS(2381), + [aux_sym_cmd_identifier_token31] = ACTIONS(2381), + [aux_sym_cmd_identifier_token32] = ACTIONS(2381), + [aux_sym_cmd_identifier_token33] = ACTIONS(2381), + [aux_sym_cmd_identifier_token34] = ACTIONS(2379), + [aux_sym_cmd_identifier_token35] = ACTIONS(2381), + [aux_sym_cmd_identifier_token36] = ACTIONS(2381), + [aux_sym_cmd_identifier_token37] = ACTIONS(2381), + [aux_sym_cmd_identifier_token38] = ACTIONS(2379), + [aux_sym_cmd_identifier_token39] = ACTIONS(2381), + [aux_sym_cmd_identifier_token40] = ACTIONS(2381), + [anon_sym_def] = ACTIONS(2379), + [anon_sym_export_DASHenv] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym_module] = ACTIONS(2379), + [anon_sym_use] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_error] = ACTIONS(2379), + [anon_sym_DASH2] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_in2] = ACTIONS(2379), + [anon_sym_loop] = ACTIONS(2379), + [anon_sym_make] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_do] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_catch] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_source] = ACTIONS(2379), + [anon_sym_source_DASHenv] = ACTIONS(2379), + [anon_sym_register] = ACTIONS(2379), + [anon_sym_hide] = ACTIONS(2379), + [anon_sym_hide_DASHenv] = ACTIONS(2379), + [anon_sym_overlay] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_PLUS2] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2381), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2381), + [aux_sym__val_number_decimal_token1] = ACTIONS(2379), + [aux_sym__val_number_decimal_token2] = ACTIONS(2381), + [aux_sym__val_number_decimal_token3] = ACTIONS(2381), + [aux_sym__val_number_decimal_token4] = ACTIONS(2381), + [aux_sym__val_number_token1] = ACTIONS(2381), + [aux_sym__val_number_token2] = ACTIONS(2381), + [aux_sym__val_number_token3] = ACTIONS(2381), + [aux_sym__val_number_token4] = ACTIONS(2379), + [aux_sym__val_number_token5] = ACTIONS(2379), + [aux_sym__val_number_token6] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2381), + [sym__str_single_quotes] = ACTIONS(2381), + [sym__str_back_ticks] = ACTIONS(2381), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2381), + }, + [767] = { + [sym_comment] = STATE(767), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(1000), + [aux_sym_cmd_identifier_token3] = ACTIONS(1000), + [aux_sym_cmd_identifier_token4] = ACTIONS(1000), + [aux_sym_cmd_identifier_token5] = ACTIONS(1000), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [aux_sym_cmd_identifier_token7] = ACTIONS(1000), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(1000), + [aux_sym_cmd_identifier_token11] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(1000), + [aux_sym_cmd_identifier_token17] = ACTIONS(1000), + [aux_sym_cmd_identifier_token18] = ACTIONS(1000), + [aux_sym_cmd_identifier_token19] = ACTIONS(1000), + [aux_sym_cmd_identifier_token20] = ACTIONS(1000), + [aux_sym_cmd_identifier_token21] = ACTIONS(1000), + [aux_sym_cmd_identifier_token22] = ACTIONS(1000), + [aux_sym_cmd_identifier_token23] = ACTIONS(1000), + [aux_sym_cmd_identifier_token24] = ACTIONS(1000), + [aux_sym_cmd_identifier_token25] = ACTIONS(1000), + [aux_sym_cmd_identifier_token26] = ACTIONS(1000), + [aux_sym_cmd_identifier_token27] = ACTIONS(1000), + [aux_sym_cmd_identifier_token28] = ACTIONS(1000), + [aux_sym_cmd_identifier_token29] = ACTIONS(1000), + [aux_sym_cmd_identifier_token30] = ACTIONS(1000), + [aux_sym_cmd_identifier_token31] = ACTIONS(1000), + [aux_sym_cmd_identifier_token32] = ACTIONS(1000), + [aux_sym_cmd_identifier_token33] = ACTIONS(1000), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(1000), + [aux_sym_cmd_identifier_token36] = ACTIONS(1000), + [aux_sym_cmd_identifier_token37] = ACTIONS(1000), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(1000), + [aux_sym_cmd_identifier_token40] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_error] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [768] = { + [sym_comment] = STATE(768), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1004), + [aux_sym_cmd_identifier_token3] = ACTIONS(1004), + [aux_sym_cmd_identifier_token4] = ACTIONS(1004), + [aux_sym_cmd_identifier_token5] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1004), + [aux_sym_cmd_identifier_token7] = ACTIONS(1004), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1004), + [aux_sym_cmd_identifier_token11] = ACTIONS(1004), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1004), + [aux_sym_cmd_identifier_token17] = ACTIONS(1004), + [aux_sym_cmd_identifier_token18] = ACTIONS(1004), + [aux_sym_cmd_identifier_token19] = ACTIONS(1004), + [aux_sym_cmd_identifier_token20] = ACTIONS(1004), + [aux_sym_cmd_identifier_token21] = ACTIONS(1004), + [aux_sym_cmd_identifier_token22] = ACTIONS(1004), + [aux_sym_cmd_identifier_token23] = ACTIONS(1004), + [aux_sym_cmd_identifier_token24] = ACTIONS(1004), + [aux_sym_cmd_identifier_token25] = ACTIONS(1004), + [aux_sym_cmd_identifier_token26] = ACTIONS(1004), + [aux_sym_cmd_identifier_token27] = ACTIONS(1004), + [aux_sym_cmd_identifier_token28] = ACTIONS(1004), + [aux_sym_cmd_identifier_token29] = ACTIONS(1004), + [aux_sym_cmd_identifier_token30] = ACTIONS(1004), + [aux_sym_cmd_identifier_token31] = ACTIONS(1004), + [aux_sym_cmd_identifier_token32] = ACTIONS(1004), + [aux_sym_cmd_identifier_token33] = ACTIONS(1004), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1004), + [aux_sym_cmd_identifier_token36] = ACTIONS(1004), + [aux_sym_cmd_identifier_token37] = ACTIONS(1004), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1004), + }, + [769] = { + [sym_comment] = STATE(769), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(992), + [aux_sym_cmd_identifier_token3] = ACTIONS(992), + [aux_sym_cmd_identifier_token4] = ACTIONS(992), + [aux_sym_cmd_identifier_token5] = ACTIONS(992), + [aux_sym_cmd_identifier_token6] = ACTIONS(992), + [aux_sym_cmd_identifier_token7] = ACTIONS(992), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(992), + [aux_sym_cmd_identifier_token11] = ACTIONS(992), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(992), + [aux_sym_cmd_identifier_token17] = ACTIONS(992), + [aux_sym_cmd_identifier_token18] = ACTIONS(992), + [aux_sym_cmd_identifier_token19] = ACTIONS(992), + [aux_sym_cmd_identifier_token20] = ACTIONS(992), + [aux_sym_cmd_identifier_token21] = ACTIONS(992), + [aux_sym_cmd_identifier_token22] = ACTIONS(992), + [aux_sym_cmd_identifier_token23] = ACTIONS(992), + [aux_sym_cmd_identifier_token24] = ACTIONS(992), + [aux_sym_cmd_identifier_token25] = ACTIONS(992), + [aux_sym_cmd_identifier_token26] = ACTIONS(992), + [aux_sym_cmd_identifier_token27] = ACTIONS(992), + [aux_sym_cmd_identifier_token28] = ACTIONS(992), + [aux_sym_cmd_identifier_token29] = ACTIONS(992), + [aux_sym_cmd_identifier_token30] = ACTIONS(992), + [aux_sym_cmd_identifier_token31] = ACTIONS(992), + [aux_sym_cmd_identifier_token32] = ACTIONS(992), + [aux_sym_cmd_identifier_token33] = ACTIONS(992), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(992), + [aux_sym_cmd_identifier_token36] = ACTIONS(992), + [aux_sym_cmd_identifier_token37] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), + }, + [770] = { + [sym_comment] = STATE(770), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [771] = { + [aux_sym__pipe_separator] = STATE(771), + [sym_comment] = STATE(771), + [aux_sym_shebang_repeat1] = STATE(5172), + [aux_sym_cmd_identifier_token1] = ACTIONS(2522), + [aux_sym_cmd_identifier_token2] = ACTIONS(2524), + [aux_sym_cmd_identifier_token3] = ACTIONS(2524), + [aux_sym_cmd_identifier_token4] = ACTIONS(2524), + [aux_sym_cmd_identifier_token5] = ACTIONS(2524), + [aux_sym_cmd_identifier_token6] = ACTIONS(2524), + [aux_sym_cmd_identifier_token7] = ACTIONS(2524), + [aux_sym_cmd_identifier_token8] = ACTIONS(2524), + [aux_sym_cmd_identifier_token9] = ACTIONS(2522), + [aux_sym_cmd_identifier_token10] = ACTIONS(2524), + [aux_sym_cmd_identifier_token11] = ACTIONS(2524), + [aux_sym_cmd_identifier_token12] = ACTIONS(2524), + [aux_sym_cmd_identifier_token13] = ACTIONS(2522), + [aux_sym_cmd_identifier_token14] = ACTIONS(2524), + [aux_sym_cmd_identifier_token15] = ACTIONS(2522), + [aux_sym_cmd_identifier_token16] = ACTIONS(2524), + [aux_sym_cmd_identifier_token17] = ACTIONS(2524), + [aux_sym_cmd_identifier_token18] = ACTIONS(2524), + [aux_sym_cmd_identifier_token19] = ACTIONS(2524), + [aux_sym_cmd_identifier_token20] = ACTIONS(2524), + [aux_sym_cmd_identifier_token21] = ACTIONS(2524), + [aux_sym_cmd_identifier_token22] = ACTIONS(2524), [aux_sym_cmd_identifier_token23] = ACTIONS(2524), [aux_sym_cmd_identifier_token24] = ACTIONS(2524), [aux_sym_cmd_identifier_token25] = ACTIONS(2524), @@ -143693,61050 +156956,48084 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2524), [aux_sym_cmd_identifier_token32] = ACTIONS(2524), [aux_sym_cmd_identifier_token33] = ACTIONS(2524), - [aux_sym_cmd_identifier_token34] = ACTIONS(2524), + [aux_sym_cmd_identifier_token34] = ACTIONS(2522), [aux_sym_cmd_identifier_token35] = ACTIONS(2524), [aux_sym_cmd_identifier_token36] = ACTIONS(2524), - [anon_sym_true] = ACTIONS(2524), - [anon_sym_false] = ACTIONS(2524), - [anon_sym_null] = ACTIONS(2524), - [aux_sym_cmd_identifier_token38] = ACTIONS(2524), + [aux_sym_cmd_identifier_token37] = ACTIONS(2524), + [aux_sym_cmd_identifier_token38] = ACTIONS(2522), [aux_sym_cmd_identifier_token39] = ACTIONS(2524), [aux_sym_cmd_identifier_token40] = ACTIONS(2524), - [anon_sym_def] = ACTIONS(2524), - [anon_sym_export_DASHenv] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_module] = ACTIONS(2524), - [anon_sym_use] = ACTIONS(2524), + [sym__newline] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2529), + [anon_sym_err_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_GT_PIPE] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2524), [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_DOLLAR] = ACTIONS(2524), - [anon_sym_error] = ACTIONS(2524), - [anon_sym_list] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_in] = ACTIONS(2524), - [anon_sym_loop] = ACTIONS(2524), - [anon_sym_make] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_do] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_else] = ACTIONS(2524), - [anon_sym_match] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_try] = ACTIONS(2524), - [anon_sym_catch] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_source] = ACTIONS(2524), - [anon_sym_source_DASHenv] = ACTIONS(2524), - [anon_sym_register] = ACTIONS(2524), - [anon_sym_hide] = ACTIONS(2524), - [anon_sym_hide_DASHenv] = ACTIONS(2524), - [anon_sym_overlay] = ACTIONS(2524), - [anon_sym_new] = ACTIONS(2524), - [anon_sym_as] = ACTIONS(2524), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2524), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2524), - [aux_sym__val_number_decimal_token1] = ACTIONS(2524), + [anon_sym_DOLLAR] = ACTIONS(2522), + [anon_sym_DASH2] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_do] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_match] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_DOT_DOT] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_where] = ACTIONS(2524), + [aux_sym_expr_unary_token1] = ACTIONS(2524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2524), + [anon_sym_DOT_DOT_LT] = ACTIONS(2524), + [anon_sym_null] = ACTIONS(2522), + [anon_sym_true] = ACTIONS(2522), + [anon_sym_false] = ACTIONS(2522), + [aux_sym__val_number_decimal_token1] = ACTIONS(2522), [aux_sym__val_number_decimal_token2] = ACTIONS(2524), [aux_sym__val_number_decimal_token3] = ACTIONS(2524), [aux_sym__val_number_decimal_token4] = ACTIONS(2524), [aux_sym__val_number_token1] = ACTIONS(2524), [aux_sym__val_number_token2] = ACTIONS(2524), [aux_sym__val_number_token3] = ACTIONS(2524), + [aux_sym__val_number_token4] = ACTIONS(2522), + [aux_sym__val_number_token5] = ACTIONS(2522), + [aux_sym__val_number_token6] = ACTIONS(2522), + [anon_sym_0b] = ACTIONS(2522), + [anon_sym_0o] = ACTIONS(2522), + [anon_sym_0x] = ACTIONS(2522), + [sym_val_date] = ACTIONS(2524), [anon_sym_DQUOTE] = ACTIONS(2524), [sym__str_single_quotes] = ACTIONS(2524), [sym__str_back_ticks] = ACTIONS(2524), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2524), - [sym__entry_separator] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2524), + [aux_sym_env_var_token1] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2524), + }, + [772] = { + [aux_sym__pipe_separator] = STATE(771), + [sym_comment] = STATE(772), + [aux_sym_shebang_repeat1] = STATE(5172), + [aux_sym_cmd_identifier_token1] = ACTIONS(2532), + [aux_sym_cmd_identifier_token2] = ACTIONS(2534), + [aux_sym_cmd_identifier_token3] = ACTIONS(2534), + [aux_sym_cmd_identifier_token4] = ACTIONS(2534), + [aux_sym_cmd_identifier_token5] = ACTIONS(2534), + [aux_sym_cmd_identifier_token6] = ACTIONS(2534), + [aux_sym_cmd_identifier_token7] = ACTIONS(2534), + [aux_sym_cmd_identifier_token8] = ACTIONS(2534), + [aux_sym_cmd_identifier_token9] = ACTIONS(2532), + [aux_sym_cmd_identifier_token10] = ACTIONS(2534), + [aux_sym_cmd_identifier_token11] = ACTIONS(2534), + [aux_sym_cmd_identifier_token12] = ACTIONS(2534), + [aux_sym_cmd_identifier_token13] = ACTIONS(2532), + [aux_sym_cmd_identifier_token14] = ACTIONS(2534), + [aux_sym_cmd_identifier_token15] = ACTIONS(2532), + [aux_sym_cmd_identifier_token16] = ACTIONS(2534), + [aux_sym_cmd_identifier_token17] = ACTIONS(2534), + [aux_sym_cmd_identifier_token18] = ACTIONS(2534), + [aux_sym_cmd_identifier_token19] = ACTIONS(2534), + [aux_sym_cmd_identifier_token20] = ACTIONS(2534), + [aux_sym_cmd_identifier_token21] = ACTIONS(2534), + [aux_sym_cmd_identifier_token22] = ACTIONS(2534), + [aux_sym_cmd_identifier_token23] = ACTIONS(2534), + [aux_sym_cmd_identifier_token24] = ACTIONS(2534), + [aux_sym_cmd_identifier_token25] = ACTIONS(2534), + [aux_sym_cmd_identifier_token26] = ACTIONS(2534), + [aux_sym_cmd_identifier_token27] = ACTIONS(2534), + [aux_sym_cmd_identifier_token28] = ACTIONS(2534), + [aux_sym_cmd_identifier_token29] = ACTIONS(2534), + [aux_sym_cmd_identifier_token30] = ACTIONS(2534), + [aux_sym_cmd_identifier_token31] = ACTIONS(2534), + [aux_sym_cmd_identifier_token32] = ACTIONS(2534), + [aux_sym_cmd_identifier_token33] = ACTIONS(2534), + [aux_sym_cmd_identifier_token34] = ACTIONS(2532), + [aux_sym_cmd_identifier_token35] = ACTIONS(2534), + [aux_sym_cmd_identifier_token36] = ACTIONS(2534), + [aux_sym_cmd_identifier_token37] = ACTIONS(2534), + [aux_sym_cmd_identifier_token38] = ACTIONS(2532), + [aux_sym_cmd_identifier_token39] = ACTIONS(2534), + [aux_sym_cmd_identifier_token40] = ACTIONS(2534), + [sym__newline] = ACTIONS(2536), + [anon_sym_PIPE] = ACTIONS(2538), + [anon_sym_err_GT_PIPE] = ACTIONS(2538), + [anon_sym_out_GT_PIPE] = ACTIONS(2538), + [anon_sym_e_GT_PIPE] = ACTIONS(2538), + [anon_sym_o_GT_PIPE] = ACTIONS(2538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_DOLLAR] = ACTIONS(2532), + [anon_sym_DASH2] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_match] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_DOT_DOT] = ACTIONS(2532), + [anon_sym_try] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2534), + [aux_sym_expr_unary_token1] = ACTIONS(2534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2534), + [anon_sym_DOT_DOT_LT] = ACTIONS(2534), + [anon_sym_null] = ACTIONS(2532), + [anon_sym_true] = ACTIONS(2532), + [anon_sym_false] = ACTIONS(2532), + [aux_sym__val_number_decimal_token1] = ACTIONS(2532), + [aux_sym__val_number_decimal_token2] = ACTIONS(2534), + [aux_sym__val_number_decimal_token3] = ACTIONS(2534), + [aux_sym__val_number_decimal_token4] = ACTIONS(2534), + [aux_sym__val_number_token1] = ACTIONS(2534), + [aux_sym__val_number_token2] = ACTIONS(2534), + [aux_sym__val_number_token3] = ACTIONS(2534), + [aux_sym__val_number_token4] = ACTIONS(2532), + [aux_sym__val_number_token5] = ACTIONS(2532), + [aux_sym__val_number_token6] = ACTIONS(2532), + [anon_sym_0b] = ACTIONS(2532), + [anon_sym_0o] = ACTIONS(2532), + [anon_sym_0x] = ACTIONS(2532), + [sym_val_date] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [sym__str_single_quotes] = ACTIONS(2534), + [sym__str_back_ticks] = ACTIONS(2534), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2534), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2534), + [aux_sym_env_var_token1] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2534), + }, + [773] = { + [sym__match_pattern_expression] = STATE(3107), + [sym__match_pattern_value] = STATE(3147), + [sym__match_pattern_list] = STATE(3109), + [sym__match_pattern_rest] = STATE(7807), + [sym__match_pattern_record] = STATE(3111), + [sym_expr_parenthesized] = STATE(2822), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(3063), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(3071), + [sym_val_bool] = STATE(2853), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(2823), + [sym_val_number] = STATE(3071), + [sym__val_number_decimal] = STATE(2514), + [sym__val_number] = STATE(3004), + [sym_val_duration] = STATE(3071), + [sym_val_filesize] = STATE(3071), + [sym_val_binary] = STATE(3071), + [sym_val_string] = STATE(3071), + [sym__raw_str] = STATE(3073), + [sym__str_double_quotes] = STATE(3073), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7273), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7890), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(3071), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(2856), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(7053), + [sym_comment] = STATE(773), + [aux_sym_shebang_repeat1] = STATE(902), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym__match_pattern_list_repeat1] = STATE(1272), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_RBRACK] = ACTIONS(2544), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(2550), + [anon_sym_LBRACE] = ACTIONS(2552), + [anon_sym_DOT_DOT] = ACTIONS(2554), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2556), + [anon_sym_DOT_DOT_LT] = ACTIONS(2556), + [anon_sym_null] = ACTIONS(2558), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(2562), + [aux_sym__val_number_decimal_token2] = ACTIONS(2564), + [aux_sym__val_number_decimal_token3] = ACTIONS(2566), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(2570), + [aux_sym__val_number_token2] = ACTIONS(2570), + [aux_sym__val_number_token3] = ACTIONS(2570), + [aux_sym__val_number_token4] = ACTIONS(2572), + [aux_sym__val_number_token5] = ACTIONS(2572), + [aux_sym__val_number_token6] = ACTIONS(2572), + [anon_sym_0b] = ACTIONS(2574), + [anon_sym_0o] = ACTIONS(2576), + [anon_sym_0x] = ACTIONS(2576), + [sym_val_date] = ACTIONS(2578), + [anon_sym_DQUOTE] = ACTIONS(2580), + [sym__str_single_quotes] = ACTIONS(2582), + [sym__str_back_ticks] = ACTIONS(2582), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2596), + }, + [774] = { + [aux_sym__pipe_separator] = STATE(771), + [sym_comment] = STATE(774), + [aux_sym_shebang_repeat1] = STATE(777), + [aux_sym_cmd_identifier_token1] = ACTIONS(2598), + [aux_sym_cmd_identifier_token2] = ACTIONS(2600), + [aux_sym_cmd_identifier_token3] = ACTIONS(2600), + [aux_sym_cmd_identifier_token4] = ACTIONS(2600), + [aux_sym_cmd_identifier_token5] = ACTIONS(2600), + [aux_sym_cmd_identifier_token6] = ACTIONS(2600), + [aux_sym_cmd_identifier_token7] = ACTIONS(2600), + [aux_sym_cmd_identifier_token8] = ACTIONS(2600), + [aux_sym_cmd_identifier_token9] = ACTIONS(2598), + [aux_sym_cmd_identifier_token10] = ACTIONS(2600), + [aux_sym_cmd_identifier_token11] = ACTIONS(2600), + [aux_sym_cmd_identifier_token12] = ACTIONS(2600), + [aux_sym_cmd_identifier_token13] = ACTIONS(2598), + [aux_sym_cmd_identifier_token14] = ACTIONS(2600), + [aux_sym_cmd_identifier_token15] = ACTIONS(2598), + [aux_sym_cmd_identifier_token16] = ACTIONS(2600), + [aux_sym_cmd_identifier_token17] = ACTIONS(2600), + [aux_sym_cmd_identifier_token18] = ACTIONS(2600), + [aux_sym_cmd_identifier_token19] = ACTIONS(2600), + [aux_sym_cmd_identifier_token20] = ACTIONS(2600), + [aux_sym_cmd_identifier_token21] = ACTIONS(2600), + [aux_sym_cmd_identifier_token22] = ACTIONS(2600), + [aux_sym_cmd_identifier_token23] = ACTIONS(2600), + [aux_sym_cmd_identifier_token24] = ACTIONS(2600), + [aux_sym_cmd_identifier_token25] = ACTIONS(2600), + [aux_sym_cmd_identifier_token26] = ACTIONS(2600), + [aux_sym_cmd_identifier_token27] = ACTIONS(2600), + [aux_sym_cmd_identifier_token28] = ACTIONS(2600), + [aux_sym_cmd_identifier_token29] = ACTIONS(2600), + [aux_sym_cmd_identifier_token30] = ACTIONS(2600), + [aux_sym_cmd_identifier_token31] = ACTIONS(2600), + [aux_sym_cmd_identifier_token32] = ACTIONS(2600), + [aux_sym_cmd_identifier_token33] = ACTIONS(2600), + [aux_sym_cmd_identifier_token34] = ACTIONS(2598), + [aux_sym_cmd_identifier_token35] = ACTIONS(2600), + [aux_sym_cmd_identifier_token36] = ACTIONS(2600), + [aux_sym_cmd_identifier_token37] = ACTIONS(2600), + [aux_sym_cmd_identifier_token38] = ACTIONS(2598), + [aux_sym_cmd_identifier_token39] = ACTIONS(2600), + [aux_sym_cmd_identifier_token40] = ACTIONS(2600), + [sym__newline] = ACTIONS(2602), + [anon_sym_PIPE] = ACTIONS(2538), + [anon_sym_err_GT_PIPE] = ACTIONS(2538), + [anon_sym_out_GT_PIPE] = ACTIONS(2538), + [anon_sym_e_GT_PIPE] = ACTIONS(2538), + [anon_sym_o_GT_PIPE] = ACTIONS(2538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_DOLLAR] = ACTIONS(2598), + [anon_sym_DASH2] = ACTIONS(2598), + [anon_sym_break] = ACTIONS(2598), + [anon_sym_continue] = ACTIONS(2598), + [anon_sym_do] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2598), + [anon_sym_match] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_DOT_DOT] = ACTIONS(2598), + [anon_sym_try] = ACTIONS(2598), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_where] = ACTIONS(2600), + [aux_sym_expr_unary_token1] = ACTIONS(2600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2600), + [anon_sym_DOT_DOT_LT] = ACTIONS(2600), + [anon_sym_null] = ACTIONS(2598), + [anon_sym_true] = ACTIONS(2598), + [anon_sym_false] = ACTIONS(2598), + [aux_sym__val_number_decimal_token1] = ACTIONS(2598), + [aux_sym__val_number_decimal_token2] = ACTIONS(2600), + [aux_sym__val_number_decimal_token3] = ACTIONS(2600), + [aux_sym__val_number_decimal_token4] = ACTIONS(2600), + [aux_sym__val_number_token1] = ACTIONS(2600), + [aux_sym__val_number_token2] = ACTIONS(2600), + [aux_sym__val_number_token3] = ACTIONS(2600), + [aux_sym__val_number_token4] = ACTIONS(2598), + [aux_sym__val_number_token5] = ACTIONS(2598), + [aux_sym__val_number_token6] = ACTIONS(2598), + [anon_sym_0b] = ACTIONS(2598), + [anon_sym_0o] = ACTIONS(2598), + [anon_sym_0x] = ACTIONS(2598), + [sym_val_date] = ACTIONS(2600), + [anon_sym_DQUOTE] = ACTIONS(2600), + [sym__str_single_quotes] = ACTIONS(2600), + [sym__str_back_ticks] = ACTIONS(2600), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2600), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2600), + [aux_sym_env_var_token1] = ACTIONS(2598), + [anon_sym_CARET] = ACTIONS(2600), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2600), + }, + [775] = { + [sym__match_pattern_expression] = STATE(3107), + [sym__match_pattern_value] = STATE(3147), + [sym__match_pattern_list] = STATE(3109), + [sym__match_pattern_rest] = STATE(7807), + [sym__match_pattern_record] = STATE(3111), + [sym_expr_parenthesized] = STATE(2822), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(3063), + [sym__val_range] = STATE(7756), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(3071), + [sym_val_bool] = STATE(2853), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(2823), + [sym_val_number] = STATE(3071), + [sym__val_number_decimal] = STATE(2514), + [sym__val_number] = STATE(3004), + [sym_val_duration] = STATE(3071), + [sym_val_filesize] = STATE(3071), + [sym_val_binary] = STATE(3071), + [sym_val_string] = STATE(3071), + [sym__raw_str] = STATE(3073), + [sym__str_double_quotes] = STATE(3073), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7250), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7633), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(3071), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(2856), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(7053), + [sym_comment] = STATE(775), + [aux_sym_shebang_repeat1] = STATE(899), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym__match_pattern_list_repeat1] = STATE(1272), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_RBRACK] = ACTIONS(2604), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(2550), + [anon_sym_LBRACE] = ACTIONS(2552), + [anon_sym_DOT_DOT] = ACTIONS(2554), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2556), + [anon_sym_DOT_DOT_LT] = ACTIONS(2556), + [anon_sym_null] = ACTIONS(2558), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(2562), + [aux_sym__val_number_decimal_token2] = ACTIONS(2564), + [aux_sym__val_number_decimal_token3] = ACTIONS(2566), + [aux_sym__val_number_decimal_token4] = ACTIONS(2568), + [aux_sym__val_number_token1] = ACTIONS(2570), + [aux_sym__val_number_token2] = ACTIONS(2570), + [aux_sym__val_number_token3] = ACTIONS(2570), + [aux_sym__val_number_token4] = ACTIONS(2572), + [aux_sym__val_number_token5] = ACTIONS(2572), + [aux_sym__val_number_token6] = ACTIONS(2572), + [anon_sym_0b] = ACTIONS(2574), + [anon_sym_0o] = ACTIONS(2576), + [anon_sym_0x] = ACTIONS(2576), + [sym_val_date] = ACTIONS(2578), + [anon_sym_DQUOTE] = ACTIONS(2580), + [sym__str_single_quotes] = ACTIONS(2582), + [sym__str_back_ticks] = ACTIONS(2582), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2596), + }, + [776] = { + [sym_comment] = STATE(776), + [aux_sym_shebang_repeat1] = STATE(776), + [aux_sym_cmd_identifier_token1] = ACTIONS(1294), + [aux_sym_cmd_identifier_token2] = ACTIONS(1296), + [aux_sym_cmd_identifier_token3] = ACTIONS(1296), + [aux_sym_cmd_identifier_token4] = ACTIONS(1296), + [aux_sym_cmd_identifier_token5] = ACTIONS(1296), + [aux_sym_cmd_identifier_token6] = ACTIONS(1296), + [aux_sym_cmd_identifier_token7] = ACTIONS(1296), + [aux_sym_cmd_identifier_token8] = ACTIONS(1296), + [aux_sym_cmd_identifier_token9] = ACTIONS(1294), + [aux_sym_cmd_identifier_token10] = ACTIONS(1296), + [aux_sym_cmd_identifier_token11] = ACTIONS(1296), + [aux_sym_cmd_identifier_token12] = ACTIONS(1296), + [aux_sym_cmd_identifier_token13] = ACTIONS(1294), + [aux_sym_cmd_identifier_token14] = ACTIONS(1296), + [aux_sym_cmd_identifier_token15] = ACTIONS(1294), + [aux_sym_cmd_identifier_token16] = ACTIONS(1296), + [aux_sym_cmd_identifier_token17] = ACTIONS(1296), + [aux_sym_cmd_identifier_token18] = ACTIONS(1296), + [aux_sym_cmd_identifier_token19] = ACTIONS(1296), + [aux_sym_cmd_identifier_token20] = ACTIONS(1296), + [aux_sym_cmd_identifier_token21] = ACTIONS(1296), + [aux_sym_cmd_identifier_token22] = ACTIONS(1296), + [aux_sym_cmd_identifier_token23] = ACTIONS(1296), + [aux_sym_cmd_identifier_token24] = ACTIONS(1296), + [aux_sym_cmd_identifier_token25] = ACTIONS(1296), + [aux_sym_cmd_identifier_token26] = ACTIONS(1296), + [aux_sym_cmd_identifier_token27] = ACTIONS(1296), + [aux_sym_cmd_identifier_token28] = ACTIONS(1296), + [aux_sym_cmd_identifier_token29] = ACTIONS(1296), + [aux_sym_cmd_identifier_token30] = ACTIONS(1296), + [aux_sym_cmd_identifier_token31] = ACTIONS(1296), + [aux_sym_cmd_identifier_token32] = ACTIONS(1296), + [aux_sym_cmd_identifier_token33] = ACTIONS(1296), + [aux_sym_cmd_identifier_token34] = ACTIONS(1294), + [aux_sym_cmd_identifier_token35] = ACTIONS(1296), + [aux_sym_cmd_identifier_token36] = ACTIONS(1296), + [aux_sym_cmd_identifier_token37] = ACTIONS(1296), + [aux_sym_cmd_identifier_token38] = ACTIONS(1294), + [aux_sym_cmd_identifier_token39] = ACTIONS(1296), + [aux_sym_cmd_identifier_token40] = ACTIONS(1296), + [sym__newline] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_err_GT_PIPE] = ACTIONS(1296), + [anon_sym_out_GT_PIPE] = ACTIONS(1296), + [anon_sym_e_GT_PIPE] = ACTIONS(1296), + [anon_sym_o_GT_PIPE] = ACTIONS(1296), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1296), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1296), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1296), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_where] = ACTIONS(1296), + [aux_sym_expr_unary_token1] = ACTIONS(1296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), + [anon_sym_DOT_DOT_LT] = ACTIONS(1296), + [anon_sym_null] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [aux_sym__val_number_decimal_token1] = ACTIONS(1294), + [aux_sym__val_number_decimal_token2] = ACTIONS(1296), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(1296), + [aux_sym__val_number_token2] = ACTIONS(1296), + [aux_sym__val_number_token3] = ACTIONS(1296), + [aux_sym__val_number_token4] = ACTIONS(1294), + [aux_sym__val_number_token5] = ACTIONS(1294), + [aux_sym__val_number_token6] = ACTIONS(1294), + [anon_sym_0b] = ACTIONS(1294), + [anon_sym_0o] = ACTIONS(1294), + [anon_sym_0x] = ACTIONS(1294), + [sym_val_date] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__str_single_quotes] = ACTIONS(1296), + [sym__str_back_ticks] = ACTIONS(1296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), + [aux_sym_env_var_token1] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1296), + }, + [777] = { + [sym_comment] = STATE(777), + [aux_sym_shebang_repeat1] = STATE(776), + [aux_sym_cmd_identifier_token1] = ACTIONS(2609), + [aux_sym_cmd_identifier_token2] = ACTIONS(2611), + [aux_sym_cmd_identifier_token3] = ACTIONS(2611), + [aux_sym_cmd_identifier_token4] = ACTIONS(2611), + [aux_sym_cmd_identifier_token5] = ACTIONS(2611), + [aux_sym_cmd_identifier_token6] = ACTIONS(2611), + [aux_sym_cmd_identifier_token7] = ACTIONS(2611), + [aux_sym_cmd_identifier_token8] = ACTIONS(2611), + [aux_sym_cmd_identifier_token9] = ACTIONS(2609), + [aux_sym_cmd_identifier_token10] = ACTIONS(2611), + [aux_sym_cmd_identifier_token11] = ACTIONS(2611), + [aux_sym_cmd_identifier_token12] = ACTIONS(2611), + [aux_sym_cmd_identifier_token13] = ACTIONS(2609), + [aux_sym_cmd_identifier_token14] = ACTIONS(2611), + [aux_sym_cmd_identifier_token15] = ACTIONS(2609), + [aux_sym_cmd_identifier_token16] = ACTIONS(2611), + [aux_sym_cmd_identifier_token17] = ACTIONS(2611), + [aux_sym_cmd_identifier_token18] = ACTIONS(2611), + [aux_sym_cmd_identifier_token19] = ACTIONS(2611), + [aux_sym_cmd_identifier_token20] = ACTIONS(2611), + [aux_sym_cmd_identifier_token21] = ACTIONS(2611), + [aux_sym_cmd_identifier_token22] = ACTIONS(2611), + [aux_sym_cmd_identifier_token23] = ACTIONS(2611), + [aux_sym_cmd_identifier_token24] = ACTIONS(2611), + [aux_sym_cmd_identifier_token25] = ACTIONS(2611), + [aux_sym_cmd_identifier_token26] = ACTIONS(2611), + [aux_sym_cmd_identifier_token27] = ACTIONS(2611), + [aux_sym_cmd_identifier_token28] = ACTIONS(2611), + [aux_sym_cmd_identifier_token29] = ACTIONS(2611), + [aux_sym_cmd_identifier_token30] = ACTIONS(2611), + [aux_sym_cmd_identifier_token31] = ACTIONS(2611), + [aux_sym_cmd_identifier_token32] = ACTIONS(2611), + [aux_sym_cmd_identifier_token33] = ACTIONS(2611), + [aux_sym_cmd_identifier_token34] = ACTIONS(2609), + [aux_sym_cmd_identifier_token35] = ACTIONS(2611), + [aux_sym_cmd_identifier_token36] = ACTIONS(2611), + [aux_sym_cmd_identifier_token37] = ACTIONS(2611), + [aux_sym_cmd_identifier_token38] = ACTIONS(2609), + [aux_sym_cmd_identifier_token39] = ACTIONS(2611), + [aux_sym_cmd_identifier_token40] = ACTIONS(2611), + [sym__newline] = ACTIONS(2602), + [anon_sym_PIPE] = ACTIONS(2613), + [anon_sym_err_GT_PIPE] = ACTIONS(2613), + [anon_sym_out_GT_PIPE] = ACTIONS(2613), + [anon_sym_e_GT_PIPE] = ACTIONS(2613), + [anon_sym_o_GT_PIPE] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_DOLLAR] = ACTIONS(2609), + [anon_sym_DASH2] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_do] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_match] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_DOT_DOT] = ACTIONS(2609), + [anon_sym_try] = ACTIONS(2609), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_where] = ACTIONS(2611), + [aux_sym_expr_unary_token1] = ACTIONS(2611), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2611), + [anon_sym_DOT_DOT_LT] = ACTIONS(2611), + [anon_sym_null] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [aux_sym__val_number_decimal_token1] = ACTIONS(2609), + [aux_sym__val_number_decimal_token2] = ACTIONS(2611), + [aux_sym__val_number_decimal_token3] = ACTIONS(2611), + [aux_sym__val_number_decimal_token4] = ACTIONS(2611), + [aux_sym__val_number_token1] = ACTIONS(2611), + [aux_sym__val_number_token2] = ACTIONS(2611), + [aux_sym__val_number_token3] = ACTIONS(2611), + [aux_sym__val_number_token4] = ACTIONS(2609), + [aux_sym__val_number_token5] = ACTIONS(2609), + [aux_sym__val_number_token6] = ACTIONS(2609), + [anon_sym_0b] = ACTIONS(2609), + [anon_sym_0o] = ACTIONS(2609), + [anon_sym_0x] = ACTIONS(2609), + [sym_val_date] = ACTIONS(2611), + [anon_sym_DQUOTE] = ACTIONS(2611), + [sym__str_single_quotes] = ACTIONS(2611), + [sym__str_back_ticks] = ACTIONS(2611), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2611), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2611), + [aux_sym_env_var_token1] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2611), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2611), + }, + [778] = { + [sym_expr_parenthesized] = STATE(1518), + [sym_val_range] = STATE(1800), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7371), + [sym__value] = STATE(1800), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1587), + [sym_val_variable] = STATE(1536), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1289), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym__flag] = STATE(1800), + [sym_short_flag] = STATE(1831), + [sym_long_flag] = STATE(1831), + [sym_unquoted] = STATE(1589), + [sym__unquoted_with_expr] = STATE(1801), + [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_comment] = STATE(778), + [aux_sym_ctrl_do_repeat2] = STATE(779), + [sym__newline] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_err_GT_PIPE] = ACTIONS(2615), + [anon_sym_out_GT_PIPE] = ACTIONS(2615), + [anon_sym_e_GT_PIPE] = ACTIONS(2615), + [anon_sym_o_GT_PIPE] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_RPAREN] = ACTIONS(2615), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_DASH2] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), + [anon_sym_DOT_DOT_LT] = ACTIONS(2631), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [aux_sym__val_number_decimal_token1] = ACTIONS(2637), + [aux_sym__val_number_decimal_token2] = ACTIONS(2639), + [aux_sym__val_number_decimal_token3] = ACTIONS(2641), + [aux_sym__val_number_decimal_token4] = ACTIONS(2643), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(2647), + [aux_sym__val_number_token5] = ACTIONS(2647), + [aux_sym__val_number_token6] = ACTIONS(2647), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), + }, + [779] = { + [sym_expr_parenthesized] = STATE(1518), + [sym_val_range] = STATE(1800), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7371), + [sym__value] = STATE(1800), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1587), + [sym_val_variable] = STATE(1536), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1289), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym__flag] = STATE(1800), + [sym_short_flag] = STATE(1831), + [sym_long_flag] = STATE(1831), + [sym_unquoted] = STATE(1589), + [sym__unquoted_with_expr] = STATE(1801), + [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_comment] = STATE(779), + [aux_sym_ctrl_do_repeat2] = STATE(784), + [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(2617), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_DASH2] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), + [anon_sym_DOT_DOT_LT] = ACTIONS(2631), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [aux_sym__val_number_decimal_token1] = ACTIONS(2637), + [aux_sym__val_number_decimal_token2] = ACTIONS(2639), + [aux_sym__val_number_decimal_token3] = ACTIONS(2641), + [aux_sym__val_number_decimal_token4] = ACTIONS(2643), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(2647), + [aux_sym__val_number_token5] = ACTIONS(2647), + [aux_sym__val_number_token6] = ACTIONS(2647), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), + }, + [780] = { + [sym_expr_parenthesized] = STATE(1518), + [sym_val_range] = STATE(1800), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7371), + [sym__value] = STATE(1800), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1587), + [sym_val_variable] = STATE(1536), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1289), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym__flag] = STATE(1800), + [sym_short_flag] = STATE(1831), + [sym_long_flag] = STATE(1831), + [sym_unquoted] = STATE(1589), + [sym__unquoted_with_expr] = STATE(1801), + [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_comment] = STATE(780), + [aux_sym_ctrl_do_repeat2] = STATE(788), + [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(2617), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_DASH2] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), + [anon_sym_DOT_DOT_LT] = ACTIONS(2631), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [aux_sym__val_number_decimal_token1] = ACTIONS(2637), + [aux_sym__val_number_decimal_token2] = ACTIONS(2639), + [aux_sym__val_number_decimal_token3] = ACTIONS(2641), + [aux_sym__val_number_decimal_token4] = ACTIONS(2643), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(2647), + [aux_sym__val_number_token5] = ACTIONS(2647), + [aux_sym__val_number_token6] = ACTIONS(2647), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), + }, + [781] = { + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1949), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7371), + [sym__value] = STATE(1949), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1587), + [sym_val_variable] = STATE(1536), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1289), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym__flag] = STATE(1949), + [sym_short_flag] = STATE(1831), + [sym_long_flag] = STATE(1831), + [sym_unquoted] = STATE(1720), + [sym__unquoted_with_expr] = STATE(1950), + [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_comment] = STATE(781), + [aux_sym_shebang_repeat1] = STATE(967), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(785), + [sym__newline] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym_PIPE] = ACTIONS(2673), + [anon_sym_err_GT_PIPE] = ACTIONS(2673), + [anon_sym_out_GT_PIPE] = ACTIONS(2673), + [anon_sym_e_GT_PIPE] = ACTIONS(2673), + [anon_sym_o_GT_PIPE] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_RPAREN] = ACTIONS(2673), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_DASH2] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), + [anon_sym_DOT_DOT_LT] = ACTIONS(2631), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [aux_sym__val_number_decimal_token1] = ACTIONS(2637), + [aux_sym__val_number_decimal_token2] = ACTIONS(2639), + [aux_sym__val_number_decimal_token3] = ACTIONS(2641), + [aux_sym__val_number_decimal_token4] = ACTIONS(2643), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(2647), + [aux_sym__val_number_token5] = ACTIONS(2647), + [aux_sym__val_number_token6] = ACTIONS(2647), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), + }, + [782] = { + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1949), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7371), + [sym__value] = STATE(1949), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1587), + [sym_val_variable] = STATE(1536), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1289), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym__flag] = STATE(1949), + [sym_short_flag] = STATE(1831), + [sym_long_flag] = STATE(1831), + [sym_unquoted] = STATE(1720), + [sym__unquoted_with_expr] = STATE(1950), + [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_comment] = STATE(782), + [aux_sym_shebang_repeat1] = STATE(967), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(783), + [sym__newline] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2675), + [anon_sym_err_GT_PIPE] = ACTIONS(2675), + [anon_sym_out_GT_PIPE] = ACTIONS(2675), + [anon_sym_e_GT_PIPE] = ACTIONS(2675), + [anon_sym_o_GT_PIPE] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_DASH2] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), + [anon_sym_DOT_DOT_LT] = ACTIONS(2631), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [aux_sym__val_number_decimal_token1] = ACTIONS(2637), + [aux_sym__val_number_decimal_token2] = ACTIONS(2639), + [aux_sym__val_number_decimal_token3] = ACTIONS(2641), + [aux_sym__val_number_decimal_token4] = ACTIONS(2643), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(2647), + [aux_sym__val_number_token5] = ACTIONS(2647), + [aux_sym__val_number_token6] = ACTIONS(2647), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), + }, + [783] = { + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1949), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7371), + [sym__value] = STATE(1949), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1587), + [sym_val_variable] = STATE(1536), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1289), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym__flag] = STATE(1949), + [sym_short_flag] = STATE(1831), + [sym_long_flag] = STATE(1831), + [sym_unquoted] = STATE(1720), + [sym__unquoted_with_expr] = STATE(1950), + [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_comment] = STATE(783), + [aux_sym_shebang_repeat1] = STATE(967), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(786), + [sym__newline] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym_PIPE] = ACTIONS(2673), + [anon_sym_err_GT_PIPE] = ACTIONS(2673), + [anon_sym_out_GT_PIPE] = ACTIONS(2673), + [anon_sym_e_GT_PIPE] = ACTIONS(2673), + [anon_sym_o_GT_PIPE] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_RPAREN] = ACTIONS(2673), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_DASH2] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), + [anon_sym_DOT_DOT_LT] = ACTIONS(2631), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [aux_sym__val_number_decimal_token1] = ACTIONS(2637), + [aux_sym__val_number_decimal_token2] = ACTIONS(2639), + [aux_sym__val_number_decimal_token3] = ACTIONS(2641), + [aux_sym__val_number_decimal_token4] = ACTIONS(2643), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(2647), + [aux_sym__val_number_token5] = ACTIONS(2647), + [aux_sym__val_number_token6] = ACTIONS(2647), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), + }, + [784] = { + [sym_expr_parenthesized] = STATE(1518), + [sym_val_range] = STATE(1800), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7371), + [sym__value] = STATE(1800), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1587), + [sym_val_variable] = STATE(1536), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1289), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym__flag] = STATE(1800), + [sym_short_flag] = STATE(1831), + [sym_long_flag] = STATE(1831), + [sym_unquoted] = STATE(1589), + [sym__unquoted_with_expr] = STATE(1801), + [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_comment] = STATE(784), + [aux_sym_ctrl_do_repeat2] = STATE(784), + [sym__newline] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_err_GT_PIPE] = ACTIONS(2679), + [anon_sym_out_GT_PIPE] = ACTIONS(2679), + [anon_sym_e_GT_PIPE] = ACTIONS(2679), + [anon_sym_o_GT_PIPE] = ACTIONS(2679), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2679), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2679), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2679), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_DASH_DASH] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2699), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_DOT_DOT_LT] = ACTIONS(2702), + [anon_sym_null] = ACTIONS(2705), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [aux_sym__val_number_decimal_token1] = ACTIONS(2711), + [aux_sym__val_number_decimal_token2] = ACTIONS(2714), + [aux_sym__val_number_decimal_token3] = ACTIONS(2717), + [aux_sym__val_number_decimal_token4] = ACTIONS(2720), + [aux_sym__val_number_token1] = ACTIONS(2723), + [aux_sym__val_number_token2] = ACTIONS(2723), + [aux_sym__val_number_token3] = ACTIONS(2723), + [aux_sym__val_number_token4] = ACTIONS(2726), + [aux_sym__val_number_token5] = ACTIONS(2726), + [aux_sym__val_number_token6] = ACTIONS(2726), + [anon_sym_0b] = ACTIONS(2729), + [anon_sym_0o] = ACTIONS(2732), + [anon_sym_0x] = ACTIONS(2732), + [sym_val_date] = ACTIONS(2735), + [anon_sym_DQUOTE] = ACTIONS(2738), + [sym__str_single_quotes] = ACTIONS(2741), + [sym__str_back_ticks] = ACTIONS(2741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2747), + [anon_sym_err_GT] = ACTIONS(2750), + [anon_sym_out_GT] = ACTIONS(2750), + [anon_sym_e_GT] = ACTIONS(2750), + [anon_sym_o_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT] = ACTIONS(2750), + [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(2756), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2759), + }, + [785] = { + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1949), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7371), + [sym__value] = STATE(1949), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1587), + [sym_val_variable] = STATE(1536), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1289), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym__flag] = STATE(1949), + [sym_short_flag] = STATE(1831), + [sym_long_flag] = STATE(1831), + [sym_unquoted] = STATE(1720), + [sym__unquoted_with_expr] = STATE(1950), + [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_comment] = STATE(785), + [aux_sym_shebang_repeat1] = STATE(967), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(786), + [sym__newline] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_DASH2] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), + [anon_sym_DOT_DOT_LT] = ACTIONS(2631), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [aux_sym__val_number_decimal_token1] = ACTIONS(2637), + [aux_sym__val_number_decimal_token2] = ACTIONS(2639), + [aux_sym__val_number_decimal_token3] = ACTIONS(2641), + [aux_sym__val_number_decimal_token4] = ACTIONS(2643), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(2647), + [aux_sym__val_number_token5] = ACTIONS(2647), + [aux_sym__val_number_token6] = ACTIONS(2647), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), + }, + [786] = { + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1949), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7371), + [sym__value] = STATE(1949), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1587), + [sym_val_variable] = STATE(1536), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1289), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym__flag] = STATE(1949), + [sym_short_flag] = STATE(1831), + [sym_long_flag] = STATE(1831), + [sym_unquoted] = STATE(1720), + [sym__unquoted_with_expr] = STATE(1950), + [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_comment] = STATE(786), + [aux_sym_shebang_repeat1] = STATE(967), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(786), + [sym__newline] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_err_GT_PIPE] = ACTIONS(2767), + [anon_sym_out_GT_PIPE] = ACTIONS(2767), + [anon_sym_e_GT_PIPE] = ACTIONS(2767), + [anon_sym_o_GT_PIPE] = ACTIONS(2767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2767), + [anon_sym_DOLLAR] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2784), + [anon_sym_DOT_DOT] = ACTIONS(2787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2790), + [anon_sym_DOT_DOT_LT] = ACTIONS(2790), + [anon_sym_null] = ACTIONS(2793), + [anon_sym_true] = ACTIONS(2796), + [anon_sym_false] = ACTIONS(2796), + [aux_sym__val_number_decimal_token1] = ACTIONS(2799), + [aux_sym__val_number_decimal_token2] = ACTIONS(2802), + [aux_sym__val_number_decimal_token3] = ACTIONS(2805), + [aux_sym__val_number_decimal_token4] = ACTIONS(2808), + [aux_sym__val_number_token1] = ACTIONS(2811), + [aux_sym__val_number_token2] = ACTIONS(2811), + [aux_sym__val_number_token3] = ACTIONS(2811), + [aux_sym__val_number_token4] = ACTIONS(2814), + [aux_sym__val_number_token5] = ACTIONS(2814), + [aux_sym__val_number_token6] = ACTIONS(2814), + [anon_sym_0b] = ACTIONS(2817), + [anon_sym_0o] = ACTIONS(2820), + [anon_sym_0x] = ACTIONS(2820), + [sym_val_date] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2826), + [sym__str_single_quotes] = ACTIONS(2829), + [sym__str_back_ticks] = ACTIONS(2829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2835), + [anon_sym_err_GT] = ACTIONS(2838), + [anon_sym_out_GT] = ACTIONS(2838), + [anon_sym_e_GT] = ACTIONS(2838), + [anon_sym_o_GT] = ACTIONS(2838), + [anon_sym_err_PLUSout_GT] = ACTIONS(2838), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), + [anon_sym_o_PLUSe_GT] = ACTIONS(2838), + [anon_sym_e_PLUSo_GT] = ACTIONS(2838), + [anon_sym_err_GT_GT] = ACTIONS(2841), + [anon_sym_out_GT_GT] = ACTIONS(2841), + [anon_sym_e_GT_GT] = ACTIONS(2841), + [anon_sym_o_GT_GT] = ACTIONS(2841), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2841), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2841), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2841), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2841), + [aux_sym_unquoted_token1] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2847), + }, + [787] = { + [sym_comment] = STATE(787), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(2850), + [aux_sym__immediate_decimal_token2] = ACTIONS(2852), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1623), + [aux_sym_record_entry_token1] = ACTIONS(1621), + [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(1621), + [anon_sym_out_GT_GT] = ACTIONS(1621), + [anon_sym_e_GT_GT] = ACTIONS(1621), + [anon_sym_o_GT_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2526), }, - [605] = { - [sym_comment] = STATE(605), - [aux_sym_shebang_repeat1] = STATE(605), - [anon_sym_export] = ACTIONS(1349), - [anon_sym_alias] = ACTIONS(1349), - [anon_sym_let] = ACTIONS(1349), - [anon_sym_let_DASHenv] = ACTIONS(1349), - [anon_sym_mut] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [aux_sym_cmd_identifier_token1] = ACTIONS(1349), - [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(1349), - [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(1349), - [aux_sym_cmd_identifier_token14] = ACTIONS(1349), - [aux_sym_cmd_identifier_token15] = ACTIONS(1349), - [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(1349), - [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(1349), - [anon_sym_true] = ACTIONS(1351), - [anon_sym_false] = ACTIONS(1351), - [anon_sym_null] = ACTIONS(1351), - [aux_sym_cmd_identifier_token38] = ACTIONS(1349), - [aux_sym_cmd_identifier_token39] = ACTIONS(1351), - [aux_sym_cmd_identifier_token40] = ACTIONS(1351), - [sym__newline] = ACTIONS(2528), - [anon_sym_def] = ACTIONS(1349), - [anon_sym_export_DASHenv] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym_module] = ACTIONS(1349), - [anon_sym_use] = ACTIONS(1349), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_DOLLAR] = ACTIONS(1351), - [anon_sym_error] = ACTIONS(1349), - [anon_sym_list] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_in] = ACTIONS(1349), - [anon_sym_loop] = ACTIONS(1349), - [anon_sym_make] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_do] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_else] = ACTIONS(1349), - [anon_sym_match] = ACTIONS(1349), - [anon_sym_try] = ACTIONS(1349), - [anon_sym_catch] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_source] = ACTIONS(1349), - [anon_sym_source_DASHenv] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_hide] = ACTIONS(1349), - [anon_sym_hide_DASHenv] = ACTIONS(1349), - [anon_sym_overlay] = ACTIONS(1349), - [anon_sym_new] = ACTIONS(1349), - [anon_sym_as] = ACTIONS(1349), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1351), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1351), - [aux_sym__val_number_decimal_token1] = ACTIONS(1349), - [aux_sym__val_number_decimal_token2] = ACTIONS(1351), - [aux_sym__val_number_decimal_token3] = ACTIONS(1351), - [aux_sym__val_number_decimal_token4] = ACTIONS(1351), - [aux_sym__val_number_token1] = ACTIONS(1351), - [aux_sym__val_number_token2] = ACTIONS(1351), - [aux_sym__val_number_token3] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [sym__str_single_quotes] = ACTIONS(1351), - [sym__str_back_ticks] = ACTIONS(1351), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1351), + [788] = { + [sym_expr_parenthesized] = STATE(1518), + [sym_val_range] = STATE(1800), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7371), + [sym__value] = STATE(1800), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1587), + [sym_val_variable] = STATE(1536), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1289), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym__flag] = STATE(1800), + [sym_short_flag] = STATE(1831), + [sym_long_flag] = STATE(1831), + [sym_unquoted] = STATE(1589), + [sym__unquoted_with_expr] = STATE(1801), + [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_comment] = STATE(788), + [aux_sym_ctrl_do_repeat2] = STATE(784), + [sym__newline] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_err_GT_PIPE] = ACTIONS(2854), + [anon_sym_out_GT_PIPE] = ACTIONS(2854), + [anon_sym_e_GT_PIPE] = ACTIONS(2854), + [anon_sym_o_GT_PIPE] = ACTIONS(2854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_RPAREN] = ACTIONS(2854), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_DASH2] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), + [anon_sym_DOT_DOT_LT] = ACTIONS(2631), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [aux_sym__val_number_decimal_token1] = ACTIONS(2637), + [aux_sym__val_number_decimal_token2] = ACTIONS(2639), + [aux_sym__val_number_decimal_token3] = ACTIONS(2641), + [aux_sym__val_number_decimal_token4] = ACTIONS(2643), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(2647), + [aux_sym__val_number_token5] = ACTIONS(2647), + [aux_sym__val_number_token6] = ACTIONS(2647), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), }, - [606] = { - [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_alias] = ACTIONS(1078), - [anon_sym_let] = ACTIONS(1078), - [anon_sym_let_DASHenv] = ACTIONS(1078), - [anon_sym_mut] = ACTIONS(1078), - [anon_sym_const] = ACTIONS(1078), - [aux_sym_cmd_identifier_token1] = ACTIONS(1078), - [aux_sym_cmd_identifier_token2] = ACTIONS(1078), - [aux_sym_cmd_identifier_token3] = ACTIONS(1078), - [aux_sym_cmd_identifier_token4] = ACTIONS(1078), - [aux_sym_cmd_identifier_token5] = ACTIONS(1078), - [aux_sym_cmd_identifier_token6] = ACTIONS(1078), - [aux_sym_cmd_identifier_token7] = ACTIONS(1078), - [aux_sym_cmd_identifier_token8] = ACTIONS(1078), - [aux_sym_cmd_identifier_token9] = ACTIONS(1078), - [aux_sym_cmd_identifier_token10] = ACTIONS(1078), - [aux_sym_cmd_identifier_token11] = ACTIONS(1078), - [aux_sym_cmd_identifier_token12] = ACTIONS(1078), - [aux_sym_cmd_identifier_token13] = ACTIONS(1078), - [aux_sym_cmd_identifier_token14] = ACTIONS(1078), - [aux_sym_cmd_identifier_token15] = ACTIONS(1078), - [aux_sym_cmd_identifier_token16] = ACTIONS(1078), - [aux_sym_cmd_identifier_token17] = ACTIONS(1078), - [aux_sym_cmd_identifier_token18] = ACTIONS(1078), - [aux_sym_cmd_identifier_token19] = ACTIONS(1078), - [aux_sym_cmd_identifier_token20] = ACTIONS(1078), - [aux_sym_cmd_identifier_token21] = ACTIONS(1078), - [aux_sym_cmd_identifier_token22] = ACTIONS(1078), - [aux_sym_cmd_identifier_token23] = ACTIONS(1078), - [aux_sym_cmd_identifier_token24] = ACTIONS(1078), - [aux_sym_cmd_identifier_token25] = ACTIONS(1078), - [aux_sym_cmd_identifier_token26] = ACTIONS(1078), - [aux_sym_cmd_identifier_token27] = ACTIONS(1078), - [aux_sym_cmd_identifier_token28] = ACTIONS(1078), - [aux_sym_cmd_identifier_token29] = ACTIONS(1078), - [aux_sym_cmd_identifier_token30] = ACTIONS(1078), - [aux_sym_cmd_identifier_token31] = ACTIONS(1078), - [aux_sym_cmd_identifier_token32] = ACTIONS(1078), - [aux_sym_cmd_identifier_token33] = ACTIONS(1078), - [aux_sym_cmd_identifier_token34] = ACTIONS(1078), - [aux_sym_cmd_identifier_token35] = ACTIONS(1078), - [aux_sym_cmd_identifier_token36] = 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), - [anon_sym_def] = ACTIONS(1078), - [anon_sym_export_DASHenv] = ACTIONS(1078), - [anon_sym_extern] = ACTIONS(1078), - [anon_sym_module] = ACTIONS(1078), - [anon_sym_use] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1078), - [anon_sym_error] = ACTIONS(1078), - [anon_sym_list] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_in] = ACTIONS(1078), - [anon_sym_loop] = ACTIONS(1078), - [anon_sym_make] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_else] = ACTIONS(1078), - [anon_sym_match] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1078), - [anon_sym_try] = ACTIONS(1078), - [anon_sym_catch] = ACTIONS(1078), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_source] = ACTIONS(1078), - [anon_sym_source_DASHenv] = ACTIONS(1078), - [anon_sym_register] = ACTIONS(1078), - [anon_sym_hide] = ACTIONS(1078), - [anon_sym_hide_DASHenv] = ACTIONS(1078), - [anon_sym_overlay] = ACTIONS(1078), - [anon_sym_new] = ACTIONS(1078), - [anon_sym_as] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1078), - [aux_sym__val_number_decimal_token1] = ACTIONS(1078), - [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), - [sym__entry_separator] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1078), + [789] = { + [sym_comment] = STATE(789), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(2856), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(2858), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [aux_sym_record_entry_token1] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1080), }, - [607] = { - [sym_comment] = STATE(607), - [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(2531), - [anon_sym_false] = ACTIONS(2531), - [anon_sym_null] = ACTIONS(2531), - [aux_sym_cmd_identifier_token38] = ACTIONS(2531), - [aux_sym_cmd_identifier_token39] = ACTIONS(2531), - [aux_sym_cmd_identifier_token40] = ACTIONS(2531), - [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(2531), - [anon_sym_DOLLAR] = ACTIONS(2531), - [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(2531), - [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(2531), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2531), - [aux_sym__val_number_decimal_token1] = ACTIONS(2531), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2531), - [aux_sym__val_number_decimal_token4] = ACTIONS(2531), - [aux_sym__val_number_token1] = ACTIONS(2531), - [aux_sym__val_number_token2] = ACTIONS(2531), - [aux_sym__val_number_token3] = ACTIONS(2531), - [anon_sym_DQUOTE] = ACTIONS(2531), - [sym__str_single_quotes] = ACTIONS(2531), - [sym__str_back_ticks] = ACTIONS(2531), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2531), - [sym__entry_separator] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2531), + [790] = { + [sym_expr_parenthesized] = STATE(1625), + [sym_val_range] = STATE(1853), + [sym__val_range] = STATE(7587), + [sym__val_range_with_end] = STATE(7455), + [sym__value] = STATE(1853), + [sym_val_nothing] = STATE(1890), + [sym_val_bool] = STATE(1685), + [sym_val_variable] = STATE(1583), + [sym_val_number] = STATE(1890), + [sym__val_number_decimal] = STATE(1375), + [sym__val_number] = STATE(1944), + [sym_val_duration] = STATE(1890), + [sym_val_filesize] = STATE(1890), + [sym_val_binary] = STATE(1890), + [sym_val_string] = STATE(1890), + [sym__raw_str] = STATE(1873), + [sym__str_double_quotes] = STATE(1873), + [sym_val_interpolated] = STATE(1890), + [sym__inter_single_quotes] = STATE(1966), + [sym__inter_double_quotes] = STATE(1967), + [sym_val_list] = STATE(1890), + [sym_val_record] = STATE(1890), + [sym_val_table] = STATE(1890), + [sym_val_closure] = STATE(1890), + [sym__flag] = STATE(1853), + [sym_short_flag] = STATE(1876), + [sym_long_flag] = STATE(1876), + [sym_unquoted] = STATE(1727), + [sym__unquoted_with_expr] = STATE(1975), + [sym__unquoted_anonymous_prefix] = STATE(6997), + [sym_comment] = STATE(790), + [aux_sym_ctrl_do_repeat2] = STATE(800), + [ts_builtin_sym_end] = ACTIONS(2615), + [sym__newline] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_err_GT_PIPE] = ACTIONS(2615), + [anon_sym_out_GT_PIPE] = ACTIONS(2615), + [anon_sym_e_GT_PIPE] = ACTIONS(2615), + [anon_sym_o_GT_PIPE] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_DASH2] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(2872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2874), + [anon_sym_DOT_DOT_LT] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_true] = ACTIONS(2878), + [anon_sym_false] = ACTIONS(2878), + [aux_sym__val_number_decimal_token1] = ACTIONS(2880), + [aux_sym__val_number_decimal_token2] = ACTIONS(2882), + [aux_sym__val_number_decimal_token3] = ACTIONS(2884), + [aux_sym__val_number_decimal_token4] = ACTIONS(2886), + [aux_sym__val_number_token1] = ACTIONS(2888), + [aux_sym__val_number_token2] = ACTIONS(2888), + [aux_sym__val_number_token3] = ACTIONS(2888), + [aux_sym__val_number_token4] = ACTIONS(2890), + [aux_sym__val_number_token5] = ACTIONS(2890), + [aux_sym__val_number_token6] = ACTIONS(2890), + [anon_sym_0b] = ACTIONS(2892), + [anon_sym_0o] = ACTIONS(2894), + [anon_sym_0x] = ACTIONS(2894), + [sym_val_date] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2898), + [sym__str_single_quotes] = ACTIONS(2900), + [sym__str_back_ticks] = ACTIONS(2900), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2908), + }, + [791] = { + [sym_expr_parenthesized] = STATE(1625), + [sym_val_range] = STATE(1853), + [sym__val_range] = STATE(7587), + [sym__val_range_with_end] = STATE(7455), + [sym__value] = STATE(1853), + [sym_val_nothing] = STATE(1890), + [sym_val_bool] = STATE(1685), + [sym_val_variable] = STATE(1583), + [sym_val_number] = STATE(1890), + [sym__val_number_decimal] = STATE(1375), + [sym__val_number] = STATE(1944), + [sym_val_duration] = STATE(1890), + [sym_val_filesize] = STATE(1890), + [sym_val_binary] = STATE(1890), + [sym_val_string] = STATE(1890), + [sym__raw_str] = STATE(1873), + [sym__str_double_quotes] = STATE(1873), + [sym_val_interpolated] = STATE(1890), + [sym__inter_single_quotes] = STATE(1966), + [sym__inter_double_quotes] = STATE(1967), + [sym_val_list] = STATE(1890), + [sym_val_record] = STATE(1890), + [sym_val_table] = STATE(1890), + [sym_val_closure] = STATE(1890), + [sym__flag] = STATE(1853), + [sym_short_flag] = STATE(1876), + [sym_long_flag] = STATE(1876), + [sym_unquoted] = STATE(1727), + [sym__unquoted_with_expr] = STATE(1975), + [sym__unquoted_anonymous_prefix] = STATE(6997), + [sym_comment] = STATE(791), + [aux_sym_ctrl_do_repeat2] = STATE(793), + [ts_builtin_sym_end] = 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(2860), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_DASH2] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(2872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2874), + [anon_sym_DOT_DOT_LT] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_true] = ACTIONS(2878), + [anon_sym_false] = ACTIONS(2878), + [aux_sym__val_number_decimal_token1] = ACTIONS(2880), + [aux_sym__val_number_decimal_token2] = ACTIONS(2882), + [aux_sym__val_number_decimal_token3] = ACTIONS(2884), + [aux_sym__val_number_decimal_token4] = ACTIONS(2886), + [aux_sym__val_number_token1] = ACTIONS(2888), + [aux_sym__val_number_token2] = ACTIONS(2888), + [aux_sym__val_number_token3] = ACTIONS(2888), + [aux_sym__val_number_token4] = ACTIONS(2890), + [aux_sym__val_number_token5] = ACTIONS(2890), + [aux_sym__val_number_token6] = ACTIONS(2890), + [anon_sym_0b] = ACTIONS(2892), + [anon_sym_0o] = ACTIONS(2894), + [anon_sym_0x] = ACTIONS(2894), + [sym_val_date] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2898), + [sym__str_single_quotes] = ACTIONS(2900), + [sym__str_back_ticks] = ACTIONS(2900), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2908), + }, + [792] = { + [sym_comment] = STATE(792), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(2912), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2533), }, - [608] = { - [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(2535), - [anon_sym_alias] = ACTIONS(2535), - [anon_sym_let] = ACTIONS(2535), - [anon_sym_let_DASHenv] = ACTIONS(2535), - [anon_sym_mut] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [aux_sym_cmd_identifier_token1] = ACTIONS(2535), - [aux_sym_cmd_identifier_token2] = ACTIONS(2535), - [aux_sym_cmd_identifier_token3] = ACTIONS(2535), - [aux_sym_cmd_identifier_token4] = ACTIONS(2535), - [aux_sym_cmd_identifier_token5] = ACTIONS(2535), - [aux_sym_cmd_identifier_token6] = ACTIONS(2535), - [aux_sym_cmd_identifier_token7] = ACTIONS(2535), - [aux_sym_cmd_identifier_token8] = ACTIONS(2535), - [aux_sym_cmd_identifier_token9] = ACTIONS(2535), - [aux_sym_cmd_identifier_token10] = ACTIONS(2535), - [aux_sym_cmd_identifier_token11] = ACTIONS(2535), - [aux_sym_cmd_identifier_token12] = ACTIONS(2535), - [aux_sym_cmd_identifier_token13] = ACTIONS(2535), - [aux_sym_cmd_identifier_token14] = ACTIONS(2535), - [aux_sym_cmd_identifier_token15] = ACTIONS(2535), - [aux_sym_cmd_identifier_token16] = ACTIONS(2535), - [aux_sym_cmd_identifier_token17] = ACTIONS(2535), - [aux_sym_cmd_identifier_token18] = ACTIONS(2535), - [aux_sym_cmd_identifier_token19] = ACTIONS(2535), - [aux_sym_cmd_identifier_token20] = ACTIONS(2535), - [aux_sym_cmd_identifier_token21] = ACTIONS(2535), - [aux_sym_cmd_identifier_token22] = ACTIONS(2535), - [aux_sym_cmd_identifier_token23] = ACTIONS(2535), - [aux_sym_cmd_identifier_token24] = ACTIONS(2535), - [aux_sym_cmd_identifier_token25] = ACTIONS(2535), - [aux_sym_cmd_identifier_token26] = ACTIONS(2535), - [aux_sym_cmd_identifier_token27] = ACTIONS(2535), - [aux_sym_cmd_identifier_token28] = ACTIONS(2535), - [aux_sym_cmd_identifier_token29] = ACTIONS(2535), - [aux_sym_cmd_identifier_token30] = ACTIONS(2535), - [aux_sym_cmd_identifier_token31] = ACTIONS(2535), - [aux_sym_cmd_identifier_token32] = ACTIONS(2535), - [aux_sym_cmd_identifier_token33] = ACTIONS(2535), - [aux_sym_cmd_identifier_token34] = ACTIONS(2535), - [aux_sym_cmd_identifier_token35] = ACTIONS(2535), - [aux_sym_cmd_identifier_token36] = ACTIONS(2535), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2535), - [aux_sym_cmd_identifier_token38] = ACTIONS(2535), - [aux_sym_cmd_identifier_token39] = ACTIONS(2535), - [aux_sym_cmd_identifier_token40] = ACTIONS(2535), - [anon_sym_def] = ACTIONS(2535), - [anon_sym_export_DASHenv] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym_module] = ACTIONS(2535), - [anon_sym_use] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_DOLLAR] = ACTIONS(2535), - [anon_sym_error] = ACTIONS(2535), - [anon_sym_list] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_in] = ACTIONS(2535), - [anon_sym_loop] = ACTIONS(2535), - [anon_sym_make] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_do] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_else] = ACTIONS(2535), - [anon_sym_match] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_try] = ACTIONS(2535), - [anon_sym_catch] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_source] = ACTIONS(2535), - [anon_sym_source_DASHenv] = ACTIONS(2535), - [anon_sym_register] = ACTIONS(2535), - [anon_sym_hide] = ACTIONS(2535), - [anon_sym_hide_DASHenv] = ACTIONS(2535), - [anon_sym_overlay] = ACTIONS(2535), - [anon_sym_new] = ACTIONS(2535), - [anon_sym_as] = ACTIONS(2535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2535), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2535), - [aux_sym__val_number_decimal_token1] = ACTIONS(2535), - [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), - [sym__entry_separator] = ACTIONS(2537), - [anon_sym_PLUS] = ACTIONS(2535), + [793] = { + [sym_expr_parenthesized] = STATE(1625), + [sym_val_range] = STATE(1853), + [sym__val_range] = STATE(7587), + [sym__val_range_with_end] = STATE(7455), + [sym__value] = STATE(1853), + [sym_val_nothing] = STATE(1890), + [sym_val_bool] = STATE(1685), + [sym_val_variable] = STATE(1583), + [sym_val_number] = STATE(1890), + [sym__val_number_decimal] = STATE(1375), + [sym__val_number] = STATE(1944), + [sym_val_duration] = STATE(1890), + [sym_val_filesize] = STATE(1890), + [sym_val_binary] = STATE(1890), + [sym_val_string] = STATE(1890), + [sym__raw_str] = STATE(1873), + [sym__str_double_quotes] = STATE(1873), + [sym_val_interpolated] = STATE(1890), + [sym__inter_single_quotes] = STATE(1966), + [sym__inter_double_quotes] = STATE(1967), + [sym_val_list] = STATE(1890), + [sym_val_record] = STATE(1890), + [sym_val_table] = STATE(1890), + [sym_val_closure] = STATE(1890), + [sym__flag] = STATE(1853), + [sym_short_flag] = STATE(1876), + [sym_long_flag] = STATE(1876), + [sym_unquoted] = STATE(1727), + [sym__unquoted_with_expr] = STATE(1975), + [sym__unquoted_anonymous_prefix] = STATE(6997), + [sym_comment] = STATE(793), + [aux_sym_ctrl_do_repeat2] = STATE(806), + [ts_builtin_sym_end] = ACTIONS(2854), + [sym__newline] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_err_GT_PIPE] = ACTIONS(2854), + [anon_sym_out_GT_PIPE] = ACTIONS(2854), + [anon_sym_e_GT_PIPE] = ACTIONS(2854), + [anon_sym_o_GT_PIPE] = ACTIONS(2854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_DASH2] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(2872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2874), + [anon_sym_DOT_DOT_LT] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_true] = ACTIONS(2878), + [anon_sym_false] = ACTIONS(2878), + [aux_sym__val_number_decimal_token1] = ACTIONS(2880), + [aux_sym__val_number_decimal_token2] = ACTIONS(2882), + [aux_sym__val_number_decimal_token3] = ACTIONS(2884), + [aux_sym__val_number_decimal_token4] = ACTIONS(2886), + [aux_sym__val_number_token1] = ACTIONS(2888), + [aux_sym__val_number_token2] = ACTIONS(2888), + [aux_sym__val_number_token3] = ACTIONS(2888), + [aux_sym__val_number_token4] = ACTIONS(2890), + [aux_sym__val_number_token5] = ACTIONS(2890), + [aux_sym__val_number_token6] = ACTIONS(2890), + [anon_sym_0b] = ACTIONS(2892), + [anon_sym_0o] = ACTIONS(2894), + [anon_sym_0x] = ACTIONS(2894), + [sym_val_date] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2898), + [sym__str_single_quotes] = ACTIONS(2900), + [sym__str_back_ticks] = ACTIONS(2900), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2908), + }, + [794] = { + [sym_comment] = STATE(794), + [aux_sym_cmd_identifier_token1] = ACTIONS(2914), + [aux_sym_cmd_identifier_token2] = ACTIONS(2916), + [aux_sym_cmd_identifier_token3] = ACTIONS(2916), + [aux_sym_cmd_identifier_token4] = ACTIONS(2916), + [aux_sym_cmd_identifier_token5] = ACTIONS(2916), + [aux_sym_cmd_identifier_token6] = ACTIONS(2916), + [aux_sym_cmd_identifier_token7] = ACTIONS(2916), + [aux_sym_cmd_identifier_token8] = ACTIONS(2916), + [aux_sym_cmd_identifier_token9] = ACTIONS(2914), + [aux_sym_cmd_identifier_token10] = ACTIONS(2916), + [aux_sym_cmd_identifier_token11] = ACTIONS(2916), + [aux_sym_cmd_identifier_token12] = ACTIONS(2916), + [aux_sym_cmd_identifier_token13] = ACTIONS(2914), + [aux_sym_cmd_identifier_token14] = ACTIONS(2916), + [aux_sym_cmd_identifier_token15] = ACTIONS(2914), + [aux_sym_cmd_identifier_token16] = ACTIONS(2916), + [aux_sym_cmd_identifier_token17] = ACTIONS(2916), + [aux_sym_cmd_identifier_token18] = ACTIONS(2916), + [aux_sym_cmd_identifier_token19] = ACTIONS(2916), + [aux_sym_cmd_identifier_token20] = ACTIONS(2916), + [aux_sym_cmd_identifier_token21] = ACTIONS(2916), + [aux_sym_cmd_identifier_token22] = ACTIONS(2916), + [aux_sym_cmd_identifier_token23] = ACTIONS(2916), + [aux_sym_cmd_identifier_token24] = ACTIONS(2916), + [aux_sym_cmd_identifier_token25] = ACTIONS(2916), + [aux_sym_cmd_identifier_token26] = ACTIONS(2916), + [aux_sym_cmd_identifier_token27] = ACTIONS(2916), + [aux_sym_cmd_identifier_token28] = ACTIONS(2916), + [aux_sym_cmd_identifier_token29] = ACTIONS(2916), + [aux_sym_cmd_identifier_token30] = ACTIONS(2916), + [aux_sym_cmd_identifier_token31] = ACTIONS(2916), + [aux_sym_cmd_identifier_token32] = ACTIONS(2916), + [aux_sym_cmd_identifier_token33] = ACTIONS(2916), + [aux_sym_cmd_identifier_token34] = ACTIONS(2914), + [aux_sym_cmd_identifier_token35] = ACTIONS(2916), + [aux_sym_cmd_identifier_token36] = ACTIONS(2916), + [aux_sym_cmd_identifier_token37] = ACTIONS(2916), + [aux_sym_cmd_identifier_token38] = ACTIONS(2914), + [aux_sym_cmd_identifier_token39] = ACTIONS(2916), + [aux_sym_cmd_identifier_token40] = ACTIONS(2916), + [sym__newline] = ACTIONS(2916), + [anon_sym_PIPE] = ACTIONS(2916), + [anon_sym_err_GT_PIPE] = ACTIONS(2916), + [anon_sym_out_GT_PIPE] = ACTIONS(2916), + [anon_sym_e_GT_PIPE] = ACTIONS(2916), + [anon_sym_o_GT_PIPE] = ACTIONS(2916), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2916), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2916), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2916), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_DOLLAR] = ACTIONS(2914), + [anon_sym_DASH2] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_do] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_DOT_DOT] = ACTIONS(2914), + [anon_sym_try] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_where] = ACTIONS(2916), + [aux_sym_expr_unary_token1] = ACTIONS(2916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2916), + [anon_sym_DOT_DOT_LT] = ACTIONS(2916), + [anon_sym_null] = ACTIONS(2914), + [anon_sym_true] = ACTIONS(2914), + [anon_sym_false] = ACTIONS(2914), + [aux_sym__val_number_decimal_token1] = ACTIONS(2914), + [aux_sym__val_number_decimal_token2] = ACTIONS(2916), + [aux_sym__val_number_decimal_token3] = ACTIONS(2916), + [aux_sym__val_number_decimal_token4] = ACTIONS(2916), + [aux_sym__val_number_token1] = ACTIONS(2916), + [aux_sym__val_number_token2] = ACTIONS(2916), + [aux_sym__val_number_token3] = ACTIONS(2916), + [aux_sym__val_number_token4] = ACTIONS(2914), + [aux_sym__val_number_token5] = ACTIONS(2914), + [aux_sym__val_number_token6] = ACTIONS(2914), + [anon_sym_0b] = ACTIONS(2914), + [anon_sym_0o] = ACTIONS(2914), + [anon_sym_0x] = ACTIONS(2914), + [sym_val_date] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym__str_single_quotes] = ACTIONS(2916), + [sym__str_back_ticks] = ACTIONS(2916), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), + [aux_sym_env_var_token1] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2916), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2916), + }, + [795] = { + [sym_comment] = STATE(795), + [aux_sym_cmd_identifier_token1] = ACTIONS(2522), + [aux_sym_cmd_identifier_token2] = ACTIONS(2524), + [aux_sym_cmd_identifier_token3] = ACTIONS(2524), + [aux_sym_cmd_identifier_token4] = ACTIONS(2524), + [aux_sym_cmd_identifier_token5] = ACTIONS(2524), + [aux_sym_cmd_identifier_token6] = ACTIONS(2524), + [aux_sym_cmd_identifier_token7] = ACTIONS(2524), + [aux_sym_cmd_identifier_token8] = ACTIONS(2524), + [aux_sym_cmd_identifier_token9] = ACTIONS(2522), + [aux_sym_cmd_identifier_token10] = ACTIONS(2524), + [aux_sym_cmd_identifier_token11] = ACTIONS(2524), + [aux_sym_cmd_identifier_token12] = ACTIONS(2524), + [aux_sym_cmd_identifier_token13] = ACTIONS(2522), + [aux_sym_cmd_identifier_token14] = ACTIONS(2524), + [aux_sym_cmd_identifier_token15] = ACTIONS(2522), + [aux_sym_cmd_identifier_token16] = ACTIONS(2524), + [aux_sym_cmd_identifier_token17] = ACTIONS(2524), + [aux_sym_cmd_identifier_token18] = ACTIONS(2524), + [aux_sym_cmd_identifier_token19] = ACTIONS(2524), + [aux_sym_cmd_identifier_token20] = ACTIONS(2524), + [aux_sym_cmd_identifier_token21] = ACTIONS(2524), + [aux_sym_cmd_identifier_token22] = ACTIONS(2524), + [aux_sym_cmd_identifier_token23] = ACTIONS(2524), + [aux_sym_cmd_identifier_token24] = ACTIONS(2524), + [aux_sym_cmd_identifier_token25] = ACTIONS(2524), + [aux_sym_cmd_identifier_token26] = ACTIONS(2524), + [aux_sym_cmd_identifier_token27] = ACTIONS(2524), + [aux_sym_cmd_identifier_token28] = ACTIONS(2524), + [aux_sym_cmd_identifier_token29] = ACTIONS(2524), + [aux_sym_cmd_identifier_token30] = ACTIONS(2524), + [aux_sym_cmd_identifier_token31] = ACTIONS(2524), + [aux_sym_cmd_identifier_token32] = ACTIONS(2524), + [aux_sym_cmd_identifier_token33] = ACTIONS(2524), + [aux_sym_cmd_identifier_token34] = ACTIONS(2522), + [aux_sym_cmd_identifier_token35] = ACTIONS(2524), + [aux_sym_cmd_identifier_token36] = ACTIONS(2524), + [aux_sym_cmd_identifier_token37] = ACTIONS(2524), + [aux_sym_cmd_identifier_token38] = ACTIONS(2522), + [aux_sym_cmd_identifier_token39] = ACTIONS(2524), + [aux_sym_cmd_identifier_token40] = ACTIONS(2524), + [sym__newline] = ACTIONS(2524), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_err_GT_PIPE] = ACTIONS(2524), + [anon_sym_out_GT_PIPE] = ACTIONS(2524), + [anon_sym_e_GT_PIPE] = ACTIONS(2524), + [anon_sym_o_GT_PIPE] = ACTIONS(2524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2524), + [anon_sym_DOLLAR] = ACTIONS(2522), + [anon_sym_DASH2] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_do] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_match] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_DOT_DOT] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_where] = ACTIONS(2524), + [aux_sym_expr_unary_token1] = ACTIONS(2524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2524), + [anon_sym_DOT_DOT_LT] = ACTIONS(2524), + [anon_sym_null] = ACTIONS(2522), + [anon_sym_true] = ACTIONS(2522), + [anon_sym_false] = ACTIONS(2522), + [aux_sym__val_number_decimal_token1] = ACTIONS(2522), + [aux_sym__val_number_decimal_token2] = ACTIONS(2524), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [aux_sym__val_number_token1] = ACTIONS(2524), + [aux_sym__val_number_token2] = ACTIONS(2524), + [aux_sym__val_number_token3] = ACTIONS(2524), + [aux_sym__val_number_token4] = ACTIONS(2522), + [aux_sym__val_number_token5] = ACTIONS(2522), + [aux_sym__val_number_token6] = ACTIONS(2522), + [anon_sym_0b] = ACTIONS(2522), + [anon_sym_0o] = ACTIONS(2522), + [anon_sym_0x] = ACTIONS(2522), + [sym_val_date] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [sym__str_single_quotes] = ACTIONS(2524), + [sym__str_back_ticks] = ACTIONS(2524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2524), + [aux_sym_env_var_token1] = ACTIONS(2522), + [anon_sym_CARET] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2524), + }, + [796] = { + [sym_comment] = STATE(796), + [aux_sym_cmd_identifier_token1] = ACTIONS(1290), + [aux_sym_cmd_identifier_token2] = ACTIONS(1288), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [aux_sym_cmd_identifier_token6] = ACTIONS(1288), + [aux_sym_cmd_identifier_token7] = ACTIONS(1288), + [aux_sym_cmd_identifier_token8] = ACTIONS(1288), + [aux_sym_cmd_identifier_token9] = ACTIONS(1290), + [aux_sym_cmd_identifier_token10] = ACTIONS(1288), + [aux_sym_cmd_identifier_token11] = ACTIONS(1288), + [aux_sym_cmd_identifier_token12] = ACTIONS(1288), + [aux_sym_cmd_identifier_token13] = ACTIONS(1290), + [aux_sym_cmd_identifier_token14] = ACTIONS(1288), + [aux_sym_cmd_identifier_token15] = ACTIONS(1290), + [aux_sym_cmd_identifier_token16] = ACTIONS(1288), + [aux_sym_cmd_identifier_token17] = ACTIONS(1288), + [aux_sym_cmd_identifier_token18] = ACTIONS(1288), + [aux_sym_cmd_identifier_token19] = ACTIONS(1288), + [aux_sym_cmd_identifier_token20] = ACTIONS(1288), + [aux_sym_cmd_identifier_token21] = ACTIONS(1288), + [aux_sym_cmd_identifier_token22] = ACTIONS(1288), + [aux_sym_cmd_identifier_token23] = ACTIONS(1288), + [aux_sym_cmd_identifier_token24] = ACTIONS(1288), + [aux_sym_cmd_identifier_token25] = ACTIONS(1288), + [aux_sym_cmd_identifier_token26] = ACTIONS(1288), + [aux_sym_cmd_identifier_token27] = ACTIONS(1288), + [aux_sym_cmd_identifier_token28] = ACTIONS(1288), + [aux_sym_cmd_identifier_token29] = ACTIONS(1288), + [aux_sym_cmd_identifier_token30] = ACTIONS(1288), + [aux_sym_cmd_identifier_token31] = ACTIONS(1288), + [aux_sym_cmd_identifier_token32] = ACTIONS(1288), + [aux_sym_cmd_identifier_token33] = ACTIONS(1288), + [aux_sym_cmd_identifier_token34] = ACTIONS(1290), + [aux_sym_cmd_identifier_token35] = ACTIONS(1288), + [aux_sym_cmd_identifier_token36] = ACTIONS(1288), + [aux_sym_cmd_identifier_token37] = ACTIONS(1288), + [aux_sym_cmd_identifier_token38] = ACTIONS(1290), + [aux_sym_cmd_identifier_token39] = ACTIONS(1288), + [aux_sym_cmd_identifier_token40] = ACTIONS(1288), + [sym__newline] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_err_GT_PIPE] = ACTIONS(1288), + [anon_sym_out_GT_PIPE] = ACTIONS(1288), + [anon_sym_e_GT_PIPE] = ACTIONS(1288), + [anon_sym_o_GT_PIPE] = ACTIONS(1288), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1288), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1288), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1288), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_DASH2] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_try] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_where] = ACTIONS(1288), + [aux_sym_expr_unary_token1] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), + [anon_sym_DOT_DOT_LT] = ACTIONS(1288), + [anon_sym_null] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [aux_sym__val_number_decimal_token1] = ACTIONS(1290), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1288), + [aux_sym__val_number_token1] = ACTIONS(1288), + [aux_sym__val_number_token2] = ACTIONS(1288), + [aux_sym__val_number_token3] = ACTIONS(1288), + [aux_sym__val_number_token4] = ACTIONS(1290), + [aux_sym__val_number_token5] = ACTIONS(1290), + [aux_sym__val_number_token6] = ACTIONS(1290), + [anon_sym_0b] = ACTIONS(1290), + [anon_sym_0o] = ACTIONS(1290), + [anon_sym_0x] = ACTIONS(1290), + [sym_val_date] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym__str_single_quotes] = ACTIONS(1288), + [sym__str_back_ticks] = ACTIONS(1288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), + [aux_sym_env_var_token1] = ACTIONS(1290), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1288), + }, + [797] = { + [sym_comment] = STATE(797), + [ts_builtin_sym_end] = ACTIONS(1609), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(2920), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2537), }, - [609] = { - [sym_comment] = STATE(609), - [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), + [798] = { + [sym_comment] = STATE(798), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(2858), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [aux_sym_record_entry_token1] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1911), }, - [610] = { - [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(2539), - [anon_sym_alias] = ACTIONS(2539), - [anon_sym_let] = ACTIONS(2539), - [anon_sym_let_DASHenv] = ACTIONS(2539), - [anon_sym_mut] = ACTIONS(2539), - [anon_sym_const] = ACTIONS(2539), - [aux_sym_cmd_identifier_token1] = ACTIONS(2539), - [aux_sym_cmd_identifier_token2] = ACTIONS(2539), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), - [aux_sym_cmd_identifier_token6] = ACTIONS(2539), - [aux_sym_cmd_identifier_token7] = ACTIONS(2539), - [aux_sym_cmd_identifier_token8] = ACTIONS(2539), - [aux_sym_cmd_identifier_token9] = ACTIONS(2539), - [aux_sym_cmd_identifier_token10] = ACTIONS(2539), - [aux_sym_cmd_identifier_token11] = ACTIONS(2539), - [aux_sym_cmd_identifier_token12] = ACTIONS(2539), - [aux_sym_cmd_identifier_token13] = ACTIONS(2539), - [aux_sym_cmd_identifier_token14] = ACTIONS(2539), - [aux_sym_cmd_identifier_token15] = ACTIONS(2539), - [aux_sym_cmd_identifier_token16] = ACTIONS(2539), - [aux_sym_cmd_identifier_token17] = ACTIONS(2539), - [aux_sym_cmd_identifier_token18] = ACTIONS(2539), - [aux_sym_cmd_identifier_token19] = ACTIONS(2539), - [aux_sym_cmd_identifier_token20] = ACTIONS(2539), - [aux_sym_cmd_identifier_token21] = ACTIONS(2539), - [aux_sym_cmd_identifier_token22] = ACTIONS(2539), - [aux_sym_cmd_identifier_token23] = ACTIONS(2539), - [aux_sym_cmd_identifier_token24] = ACTIONS(2539), - [aux_sym_cmd_identifier_token25] = ACTIONS(2539), - [aux_sym_cmd_identifier_token26] = ACTIONS(2539), - [aux_sym_cmd_identifier_token27] = ACTIONS(2539), - [aux_sym_cmd_identifier_token28] = ACTIONS(2539), - [aux_sym_cmd_identifier_token29] = ACTIONS(2539), - [aux_sym_cmd_identifier_token30] = ACTIONS(2539), - [aux_sym_cmd_identifier_token31] = ACTIONS(2539), - [aux_sym_cmd_identifier_token32] = ACTIONS(2539), - [aux_sym_cmd_identifier_token33] = ACTIONS(2539), - [aux_sym_cmd_identifier_token34] = ACTIONS(2539), - [aux_sym_cmd_identifier_token35] = ACTIONS(2539), - [aux_sym_cmd_identifier_token36] = ACTIONS(2539), - [anon_sym_true] = ACTIONS(2539), - [anon_sym_false] = ACTIONS(2539), - [anon_sym_null] = ACTIONS(2539), - [aux_sym_cmd_identifier_token38] = ACTIONS(2539), - [aux_sym_cmd_identifier_token39] = ACTIONS(2539), - [aux_sym_cmd_identifier_token40] = ACTIONS(2539), - [anon_sym_def] = ACTIONS(2539), - [anon_sym_export_DASHenv] = ACTIONS(2539), - [anon_sym_extern] = ACTIONS(2539), - [anon_sym_module] = ACTIONS(2539), - [anon_sym_use] = ACTIONS(2539), - [anon_sym_LPAREN] = ACTIONS(2539), - [anon_sym_DOLLAR] = ACTIONS(2539), - [anon_sym_error] = ACTIONS(2539), - [anon_sym_list] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_break] = ACTIONS(2539), - [anon_sym_continue] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_in] = ACTIONS(2539), - [anon_sym_loop] = ACTIONS(2539), - [anon_sym_make] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_do] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2539), - [anon_sym_match] = ACTIONS(2539), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_try] = ACTIONS(2539), - [anon_sym_catch] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_source] = ACTIONS(2539), - [anon_sym_source_DASHenv] = ACTIONS(2539), - [anon_sym_register] = ACTIONS(2539), - [anon_sym_hide] = ACTIONS(2539), - [anon_sym_hide_DASHenv] = ACTIONS(2539), - [anon_sym_overlay] = ACTIONS(2539), - [anon_sym_new] = ACTIONS(2539), - [anon_sym_as] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2539), - [aux_sym__val_number_decimal_token1] = ACTIONS(2539), - [aux_sym__val_number_decimal_token2] = ACTIONS(2539), - [aux_sym__val_number_decimal_token3] = ACTIONS(2539), - [aux_sym__val_number_decimal_token4] = ACTIONS(2539), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), - [anon_sym_DQUOTE] = ACTIONS(2539), - [sym__str_single_quotes] = ACTIONS(2539), - [sym__str_back_ticks] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2539), - [sym__entry_separator] = ACTIONS(2541), - [anon_sym_PLUS] = ACTIONS(2539), + [799] = { + [sym_comment] = STATE(799), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(2922), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [aux_sym_record_entry_token1] = ACTIONS(1673), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2541), }, - [611] = { - [sym_comment] = STATE(611), - [anon_sym_export] = ACTIONS(1090), - [anon_sym_alias] = ACTIONS(1090), - [anon_sym_let] = ACTIONS(1090), - [anon_sym_let_DASHenv] = ACTIONS(1090), - [anon_sym_mut] = ACTIONS(1090), - [anon_sym_const] = ACTIONS(1090), - [aux_sym_cmd_identifier_token1] = ACTIONS(1090), - [aux_sym_cmd_identifier_token2] = ACTIONS(1090), - [aux_sym_cmd_identifier_token3] = ACTIONS(1090), - [aux_sym_cmd_identifier_token4] = ACTIONS(1090), - [aux_sym_cmd_identifier_token5] = ACTIONS(1090), - [aux_sym_cmd_identifier_token6] = ACTIONS(1090), - [aux_sym_cmd_identifier_token7] = ACTIONS(1090), - [aux_sym_cmd_identifier_token8] = ACTIONS(1090), - [aux_sym_cmd_identifier_token9] = ACTIONS(1090), - [aux_sym_cmd_identifier_token10] = ACTIONS(1090), - [aux_sym_cmd_identifier_token11] = ACTIONS(1090), - [aux_sym_cmd_identifier_token12] = ACTIONS(1090), - [aux_sym_cmd_identifier_token13] = ACTIONS(1090), - [aux_sym_cmd_identifier_token14] = ACTIONS(1090), - [aux_sym_cmd_identifier_token15] = ACTIONS(1090), - [aux_sym_cmd_identifier_token16] = ACTIONS(1090), - [aux_sym_cmd_identifier_token17] = ACTIONS(1090), - [aux_sym_cmd_identifier_token18] = ACTIONS(1090), - [aux_sym_cmd_identifier_token19] = ACTIONS(1090), - [aux_sym_cmd_identifier_token20] = ACTIONS(1090), - [aux_sym_cmd_identifier_token21] = ACTIONS(1090), - [aux_sym_cmd_identifier_token22] = ACTIONS(1090), - [aux_sym_cmd_identifier_token23] = ACTIONS(1090), - [aux_sym_cmd_identifier_token24] = ACTIONS(1090), - [aux_sym_cmd_identifier_token25] = ACTIONS(1090), - [aux_sym_cmd_identifier_token26] = ACTIONS(1090), - [aux_sym_cmd_identifier_token27] = ACTIONS(1090), - [aux_sym_cmd_identifier_token28] = ACTIONS(1090), - [aux_sym_cmd_identifier_token29] = ACTIONS(1090), - [aux_sym_cmd_identifier_token30] = ACTIONS(1090), - [aux_sym_cmd_identifier_token31] = ACTIONS(1090), - [aux_sym_cmd_identifier_token32] = ACTIONS(1090), - [aux_sym_cmd_identifier_token33] = ACTIONS(1090), - [aux_sym_cmd_identifier_token34] = ACTIONS(1090), - [aux_sym_cmd_identifier_token35] = ACTIONS(1090), - [aux_sym_cmd_identifier_token36] = ACTIONS(1090), - [anon_sym_true] = ACTIONS(1090), - [anon_sym_false] = ACTIONS(1090), - [anon_sym_null] = ACTIONS(1090), - [aux_sym_cmd_identifier_token38] = ACTIONS(1090), - [aux_sym_cmd_identifier_token39] = ACTIONS(1090), - [aux_sym_cmd_identifier_token40] = ACTIONS(1090), - [anon_sym_def] = ACTIONS(1090), - [anon_sym_export_DASHenv] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(1090), - [anon_sym_module] = ACTIONS(1090), - [anon_sym_use] = ACTIONS(1090), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_DOLLAR] = ACTIONS(1090), - [anon_sym_error] = ACTIONS(1090), - [anon_sym_list] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_break] = ACTIONS(1090), - [anon_sym_continue] = ACTIONS(1090), - [anon_sym_for] = ACTIONS(1090), - [anon_sym_in] = ACTIONS(1090), - [anon_sym_loop] = ACTIONS(1090), - [anon_sym_make] = ACTIONS(1090), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(1090), - [anon_sym_if] = ACTIONS(1090), - [anon_sym_else] = ACTIONS(1090), - [anon_sym_match] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_try] = ACTIONS(1090), - [anon_sym_catch] = ACTIONS(1090), - [anon_sym_return] = ACTIONS(1090), - [anon_sym_source] = ACTIONS(1090), - [anon_sym_source_DASHenv] = ACTIONS(1090), - [anon_sym_register] = ACTIONS(1090), - [anon_sym_hide] = ACTIONS(1090), - [anon_sym_hide_DASHenv] = ACTIONS(1090), - [anon_sym_overlay] = ACTIONS(1090), - [anon_sym_new] = ACTIONS(1090), - [anon_sym_as] = ACTIONS(1090), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1090), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1090), - [aux_sym__val_number_decimal_token1] = ACTIONS(1090), - [aux_sym__val_number_decimal_token2] = ACTIONS(1090), - [aux_sym__val_number_decimal_token3] = ACTIONS(1090), - [aux_sym__val_number_decimal_token4] = ACTIONS(1090), - [aux_sym__val_number_token1] = ACTIONS(1090), - [aux_sym__val_number_token2] = ACTIONS(1090), - [aux_sym__val_number_token3] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym__str_single_quotes] = ACTIONS(1090), - [sym__str_back_ticks] = ACTIONS(1090), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1090), - [sym__entry_separator] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1090), + [800] = { + [sym_expr_parenthesized] = STATE(1625), + [sym_val_range] = STATE(1853), + [sym__val_range] = STATE(7587), + [sym__val_range_with_end] = STATE(7455), + [sym__value] = STATE(1853), + [sym_val_nothing] = STATE(1890), + [sym_val_bool] = STATE(1685), + [sym_val_variable] = STATE(1583), + [sym_val_number] = STATE(1890), + [sym__val_number_decimal] = STATE(1375), + [sym__val_number] = STATE(1944), + [sym_val_duration] = STATE(1890), + [sym_val_filesize] = STATE(1890), + [sym_val_binary] = STATE(1890), + [sym_val_string] = STATE(1890), + [sym__raw_str] = STATE(1873), + [sym__str_double_quotes] = STATE(1873), + [sym_val_interpolated] = STATE(1890), + [sym__inter_single_quotes] = STATE(1966), + [sym__inter_double_quotes] = STATE(1967), + [sym_val_list] = STATE(1890), + [sym_val_record] = STATE(1890), + [sym_val_table] = STATE(1890), + [sym_val_closure] = STATE(1890), + [sym__flag] = STATE(1853), + [sym_short_flag] = STATE(1876), + [sym_long_flag] = STATE(1876), + [sym_unquoted] = STATE(1727), + [sym__unquoted_with_expr] = STATE(1975), + [sym__unquoted_anonymous_prefix] = STATE(6997), + [sym_comment] = STATE(800), + [aux_sym_ctrl_do_repeat2] = STATE(806), + [ts_builtin_sym_end] = 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(2860), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_DASH2] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(2872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2874), + [anon_sym_DOT_DOT_LT] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2876), + [anon_sym_true] = ACTIONS(2878), + [anon_sym_false] = ACTIONS(2878), + [aux_sym__val_number_decimal_token1] = ACTIONS(2880), + [aux_sym__val_number_decimal_token2] = ACTIONS(2882), + [aux_sym__val_number_decimal_token3] = ACTIONS(2884), + [aux_sym__val_number_decimal_token4] = ACTIONS(2886), + [aux_sym__val_number_token1] = ACTIONS(2888), + [aux_sym__val_number_token2] = ACTIONS(2888), + [aux_sym__val_number_token3] = ACTIONS(2888), + [aux_sym__val_number_token4] = ACTIONS(2890), + [aux_sym__val_number_token5] = ACTIONS(2890), + [aux_sym__val_number_token6] = ACTIONS(2890), + [anon_sym_0b] = ACTIONS(2892), + [anon_sym_0o] = ACTIONS(2894), + [anon_sym_0x] = ACTIONS(2894), + [sym_val_date] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2898), + [sym__str_single_quotes] = ACTIONS(2900), + [sym__str_back_ticks] = ACTIONS(2900), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2908), + }, + [801] = { + [sym_comment] = STATE(801), + [aux_sym_cmd_identifier_token1] = ACTIONS(2924), + [aux_sym_cmd_identifier_token2] = ACTIONS(2926), + [aux_sym_cmd_identifier_token3] = ACTIONS(2926), + [aux_sym_cmd_identifier_token4] = ACTIONS(2926), + [aux_sym_cmd_identifier_token5] = ACTIONS(2926), + [aux_sym_cmd_identifier_token6] = ACTIONS(2926), + [aux_sym_cmd_identifier_token7] = ACTIONS(2926), + [aux_sym_cmd_identifier_token8] = ACTIONS(2926), + [aux_sym_cmd_identifier_token9] = ACTIONS(2924), + [aux_sym_cmd_identifier_token10] = ACTIONS(2926), + [aux_sym_cmd_identifier_token11] = ACTIONS(2926), + [aux_sym_cmd_identifier_token12] = ACTIONS(2926), + [aux_sym_cmd_identifier_token13] = ACTIONS(2924), + [aux_sym_cmd_identifier_token14] = ACTIONS(2926), + [aux_sym_cmd_identifier_token15] = ACTIONS(2924), + [aux_sym_cmd_identifier_token16] = ACTIONS(2926), + [aux_sym_cmd_identifier_token17] = ACTIONS(2926), + [aux_sym_cmd_identifier_token18] = ACTIONS(2926), + [aux_sym_cmd_identifier_token19] = ACTIONS(2926), + [aux_sym_cmd_identifier_token20] = ACTIONS(2926), + [aux_sym_cmd_identifier_token21] = ACTIONS(2926), + [aux_sym_cmd_identifier_token22] = ACTIONS(2926), + [aux_sym_cmd_identifier_token23] = ACTIONS(2926), + [aux_sym_cmd_identifier_token24] = ACTIONS(2926), + [aux_sym_cmd_identifier_token25] = ACTIONS(2926), + [aux_sym_cmd_identifier_token26] = ACTIONS(2926), + [aux_sym_cmd_identifier_token27] = ACTIONS(2926), + [aux_sym_cmd_identifier_token28] = ACTIONS(2926), + [aux_sym_cmd_identifier_token29] = ACTIONS(2926), + [aux_sym_cmd_identifier_token30] = ACTIONS(2926), + [aux_sym_cmd_identifier_token31] = ACTIONS(2926), + [aux_sym_cmd_identifier_token32] = ACTIONS(2926), + [aux_sym_cmd_identifier_token33] = ACTIONS(2926), + [aux_sym_cmd_identifier_token34] = ACTIONS(2924), + [aux_sym_cmd_identifier_token35] = ACTIONS(2926), + [aux_sym_cmd_identifier_token36] = ACTIONS(2926), + [aux_sym_cmd_identifier_token37] = ACTIONS(2926), + [aux_sym_cmd_identifier_token38] = ACTIONS(2924), + [aux_sym_cmd_identifier_token39] = ACTIONS(2926), + [aux_sym_cmd_identifier_token40] = ACTIONS(2926), + [sym__newline] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_err_GT_PIPE] = ACTIONS(1288), + [anon_sym_out_GT_PIPE] = ACTIONS(1288), + [anon_sym_e_GT_PIPE] = ACTIONS(1288), + [anon_sym_o_GT_PIPE] = ACTIONS(1288), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1288), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1288), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1288), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_DASH2] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_do] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_DOT_DOT] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_where] = ACTIONS(2926), + [aux_sym_expr_unary_token1] = ACTIONS(2926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2926), + [anon_sym_DOT_DOT_LT] = ACTIONS(2926), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2924), + [anon_sym_false] = ACTIONS(2924), + [aux_sym__val_number_decimal_token1] = ACTIONS(2924), + [aux_sym__val_number_decimal_token2] = ACTIONS(2926), + [aux_sym__val_number_decimal_token3] = ACTIONS(2926), + [aux_sym__val_number_decimal_token4] = ACTIONS(2926), + [aux_sym__val_number_token1] = ACTIONS(2926), + [aux_sym__val_number_token2] = ACTIONS(2926), + [aux_sym__val_number_token3] = ACTIONS(2926), + [aux_sym__val_number_token4] = ACTIONS(2924), + [aux_sym__val_number_token5] = ACTIONS(2924), + [aux_sym__val_number_token6] = ACTIONS(2924), + [anon_sym_0b] = ACTIONS(2924), + [anon_sym_0o] = ACTIONS(2924), + [anon_sym_0x] = ACTIONS(2924), + [sym_val_date] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [sym__str_single_quotes] = ACTIONS(2926), + [sym__str_back_ticks] = ACTIONS(2926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2926), + [aux_sym_env_var_token1] = ACTIONS(2924), + [anon_sym_CARET] = ACTIONS(2926), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2926), + }, + [802] = { + [sym_comment] = STATE(802), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(2928), + [aux_sym__immediate_decimal_token2] = ACTIONS(2930), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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(1621), + [anon_sym_out_GT_GT] = ACTIONS(1621), + [anon_sym_e_GT_GT] = ACTIONS(1621), + [anon_sym_o_GT_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1092), }, - [612] = { - [sym_comment] = STATE(612), - [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(2045), - [anon_sym_PLUS] = ACTIONS(2043), + [803] = { + [sym_comment] = STATE(803), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(2932), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(2934), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2045), }, - [613] = { - [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_alias] = ACTIONS(1897), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_let_DASHenv] = ACTIONS(1897), - [anon_sym_mut] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(1897), - [aux_sym_cmd_identifier_token1] = ACTIONS(1897), - [aux_sym_cmd_identifier_token2] = ACTIONS(1897), - [aux_sym_cmd_identifier_token3] = ACTIONS(1897), - [aux_sym_cmd_identifier_token4] = ACTIONS(1897), - [aux_sym_cmd_identifier_token5] = ACTIONS(1897), - [aux_sym_cmd_identifier_token6] = ACTIONS(1897), - [aux_sym_cmd_identifier_token7] = ACTIONS(1897), - [aux_sym_cmd_identifier_token8] = ACTIONS(1897), - [aux_sym_cmd_identifier_token9] = ACTIONS(1897), - [aux_sym_cmd_identifier_token10] = ACTIONS(1897), - [aux_sym_cmd_identifier_token11] = ACTIONS(1897), - [aux_sym_cmd_identifier_token12] = ACTIONS(1897), - [aux_sym_cmd_identifier_token13] = ACTIONS(1897), - [aux_sym_cmd_identifier_token14] = ACTIONS(1897), - [aux_sym_cmd_identifier_token15] = ACTIONS(1897), - [aux_sym_cmd_identifier_token16] = ACTIONS(1897), - [aux_sym_cmd_identifier_token17] = ACTIONS(1897), - [aux_sym_cmd_identifier_token18] = ACTIONS(1897), - [aux_sym_cmd_identifier_token19] = ACTIONS(1897), - [aux_sym_cmd_identifier_token20] = ACTIONS(1897), - [aux_sym_cmd_identifier_token21] = ACTIONS(1897), - [aux_sym_cmd_identifier_token22] = ACTIONS(1897), - [aux_sym_cmd_identifier_token23] = ACTIONS(1897), - [aux_sym_cmd_identifier_token24] = ACTIONS(1897), - [aux_sym_cmd_identifier_token25] = ACTIONS(1897), - [aux_sym_cmd_identifier_token26] = ACTIONS(1897), - [aux_sym_cmd_identifier_token27] = ACTIONS(1897), - [aux_sym_cmd_identifier_token28] = ACTIONS(1897), - [aux_sym_cmd_identifier_token29] = ACTIONS(1897), - [aux_sym_cmd_identifier_token30] = ACTIONS(1897), - [aux_sym_cmd_identifier_token31] = ACTIONS(1897), - [aux_sym_cmd_identifier_token32] = ACTIONS(1897), - [aux_sym_cmd_identifier_token33] = ACTIONS(1897), - [aux_sym_cmd_identifier_token34] = ACTIONS(1897), - [aux_sym_cmd_identifier_token35] = ACTIONS(1897), - [aux_sym_cmd_identifier_token36] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [aux_sym_cmd_identifier_token38] = ACTIONS(1897), - [aux_sym_cmd_identifier_token39] = ACTIONS(1897), - [aux_sym_cmd_identifier_token40] = ACTIONS(1897), - [anon_sym_def] = ACTIONS(1897), - [anon_sym_export_DASHenv] = ACTIONS(1897), - [anon_sym_extern] = ACTIONS(1897), - [anon_sym_module] = ACTIONS(1897), - [anon_sym_use] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1897), - [anon_sym_error] = ACTIONS(1897), - [anon_sym_list] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_in] = ACTIONS(1897), - [anon_sym_loop] = ACTIONS(1897), - [anon_sym_make] = ACTIONS(1897), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_do] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_else] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1897), - [anon_sym_catch] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_source] = ACTIONS(1897), - [anon_sym_source_DASHenv] = ACTIONS(1897), - [anon_sym_register] = ACTIONS(1897), - [anon_sym_hide] = ACTIONS(1897), - [anon_sym_hide_DASHenv] = ACTIONS(1897), - [anon_sym_overlay] = ACTIONS(1897), - [anon_sym_new] = ACTIONS(1897), - [anon_sym_as] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1897), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), - [sym__entry_separator] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1897), + [804] = { + [sym_comment] = STATE(804), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_RPAREN] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(2936), + [aux_sym__immediate_decimal_token2] = ACTIONS(2938), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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(1621), + [anon_sym_out_GT_GT] = ACTIONS(1621), + [anon_sym_e_GT_GT] = ACTIONS(1621), + [anon_sym_o_GT_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1899), }, - [614] = { - [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(2543), - [anon_sym_alias] = ACTIONS(2543), - [anon_sym_let] = ACTIONS(2543), - [anon_sym_let_DASHenv] = ACTIONS(2543), - [anon_sym_mut] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [aux_sym_cmd_identifier_token1] = ACTIONS(2543), - [aux_sym_cmd_identifier_token2] = ACTIONS(2543), - [aux_sym_cmd_identifier_token3] = ACTIONS(2543), - [aux_sym_cmd_identifier_token4] = ACTIONS(2543), - [aux_sym_cmd_identifier_token5] = ACTIONS(2543), - [aux_sym_cmd_identifier_token6] = ACTIONS(2543), - [aux_sym_cmd_identifier_token7] = ACTIONS(2543), - [aux_sym_cmd_identifier_token8] = ACTIONS(2543), - [aux_sym_cmd_identifier_token9] = ACTIONS(2543), - [aux_sym_cmd_identifier_token10] = ACTIONS(2543), - [aux_sym_cmd_identifier_token11] = ACTIONS(2543), - [aux_sym_cmd_identifier_token12] = ACTIONS(2543), - [aux_sym_cmd_identifier_token13] = ACTIONS(2543), - [aux_sym_cmd_identifier_token14] = ACTIONS(2543), - [aux_sym_cmd_identifier_token15] = ACTIONS(2543), - [aux_sym_cmd_identifier_token16] = ACTIONS(2543), - [aux_sym_cmd_identifier_token17] = ACTIONS(2543), - [aux_sym_cmd_identifier_token18] = ACTIONS(2543), - [aux_sym_cmd_identifier_token19] = ACTIONS(2543), - [aux_sym_cmd_identifier_token20] = ACTIONS(2543), - [aux_sym_cmd_identifier_token21] = ACTIONS(2543), - [aux_sym_cmd_identifier_token22] = ACTIONS(2543), - [aux_sym_cmd_identifier_token23] = ACTIONS(2543), - [aux_sym_cmd_identifier_token24] = ACTIONS(2543), - [aux_sym_cmd_identifier_token25] = ACTIONS(2543), - [aux_sym_cmd_identifier_token26] = ACTIONS(2543), - [aux_sym_cmd_identifier_token27] = ACTIONS(2543), - [aux_sym_cmd_identifier_token28] = ACTIONS(2543), - [aux_sym_cmd_identifier_token29] = ACTIONS(2543), - [aux_sym_cmd_identifier_token30] = ACTIONS(2543), - [aux_sym_cmd_identifier_token31] = ACTIONS(2543), - [aux_sym_cmd_identifier_token32] = ACTIONS(2543), - [aux_sym_cmd_identifier_token33] = ACTIONS(2543), - [aux_sym_cmd_identifier_token34] = ACTIONS(2543), - [aux_sym_cmd_identifier_token35] = ACTIONS(2543), - [aux_sym_cmd_identifier_token36] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2543), - [anon_sym_false] = ACTIONS(2543), - [anon_sym_null] = ACTIONS(2543), - [aux_sym_cmd_identifier_token38] = ACTIONS(2543), - [aux_sym_cmd_identifier_token39] = ACTIONS(2543), - [aux_sym_cmd_identifier_token40] = ACTIONS(2543), - [anon_sym_def] = ACTIONS(2543), - [anon_sym_export_DASHenv] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym_module] = ACTIONS(2543), - [anon_sym_use] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_DOLLAR] = ACTIONS(2543), - [anon_sym_error] = ACTIONS(2543), - [anon_sym_list] = ACTIONS(2543), - [anon_sym_DASH] = ACTIONS(2543), - [anon_sym_break] = ACTIONS(2543), - [anon_sym_continue] = ACTIONS(2543), - [anon_sym_for] = ACTIONS(2543), - [anon_sym_in] = ACTIONS(2543), - [anon_sym_loop] = ACTIONS(2543), - [anon_sym_make] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2543), - [anon_sym_do] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2543), - [anon_sym_else] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_try] = ACTIONS(2543), - [anon_sym_catch] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2543), - [anon_sym_source] = ACTIONS(2543), - [anon_sym_source_DASHenv] = ACTIONS(2543), - [anon_sym_register] = ACTIONS(2543), - [anon_sym_hide] = ACTIONS(2543), - [anon_sym_hide_DASHenv] = ACTIONS(2543), - [anon_sym_overlay] = ACTIONS(2543), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_as] = ACTIONS(2543), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2543), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2543), - [aux_sym__val_number_decimal_token1] = ACTIONS(2543), - [aux_sym__val_number_decimal_token2] = ACTIONS(2543), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2543), - [aux_sym__val_number_token2] = ACTIONS(2543), - [aux_sym__val_number_token3] = ACTIONS(2543), - [anon_sym_DQUOTE] = ACTIONS(2543), - [sym__str_single_quotes] = ACTIONS(2543), - [sym__str_back_ticks] = ACTIONS(2543), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2543), - [sym__entry_separator] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2543), + [805] = { + [sym_comment] = STATE(805), + [ts_builtin_sym_end] = ACTIONS(1623), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(2940), + [aux_sym__immediate_decimal_token2] = ACTIONS(2942), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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(1621), + [anon_sym_out_GT_GT] = ACTIONS(1621), + [anon_sym_e_GT_GT] = ACTIONS(1621), + [anon_sym_o_GT_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2545), }, - [615] = { - [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [aux_sym_cmd_identifier_token1] = ACTIONS(2547), - [aux_sym_cmd_identifier_token2] = ACTIONS(2547), - [aux_sym_cmd_identifier_token3] = ACTIONS(2547), - [aux_sym_cmd_identifier_token4] = ACTIONS(2547), - [aux_sym_cmd_identifier_token5] = ACTIONS(2547), - [aux_sym_cmd_identifier_token6] = ACTIONS(2547), - [aux_sym_cmd_identifier_token7] = ACTIONS(2547), - [aux_sym_cmd_identifier_token8] = ACTIONS(2547), - [aux_sym_cmd_identifier_token9] = ACTIONS(2547), - [aux_sym_cmd_identifier_token10] = ACTIONS(2547), - [aux_sym_cmd_identifier_token11] = ACTIONS(2547), - [aux_sym_cmd_identifier_token12] = ACTIONS(2547), - [aux_sym_cmd_identifier_token13] = ACTIONS(2547), - [aux_sym_cmd_identifier_token14] = ACTIONS(2547), - [aux_sym_cmd_identifier_token15] = ACTIONS(2547), - [aux_sym_cmd_identifier_token16] = ACTIONS(2547), - [aux_sym_cmd_identifier_token17] = ACTIONS(2547), - [aux_sym_cmd_identifier_token18] = ACTIONS(2547), - [aux_sym_cmd_identifier_token19] = ACTIONS(2547), - [aux_sym_cmd_identifier_token20] = ACTIONS(2547), - [aux_sym_cmd_identifier_token21] = ACTIONS(2547), - [aux_sym_cmd_identifier_token22] = ACTIONS(2547), - [aux_sym_cmd_identifier_token23] = ACTIONS(2547), - [aux_sym_cmd_identifier_token24] = ACTIONS(2547), - [aux_sym_cmd_identifier_token25] = ACTIONS(2547), - [aux_sym_cmd_identifier_token26] = ACTIONS(2547), - [aux_sym_cmd_identifier_token27] = ACTIONS(2547), - [aux_sym_cmd_identifier_token28] = ACTIONS(2547), - [aux_sym_cmd_identifier_token29] = ACTIONS(2547), - [aux_sym_cmd_identifier_token30] = ACTIONS(2547), - [aux_sym_cmd_identifier_token31] = ACTIONS(2547), - [aux_sym_cmd_identifier_token32] = ACTIONS(2547), - [aux_sym_cmd_identifier_token33] = ACTIONS(2547), - [aux_sym_cmd_identifier_token34] = ACTIONS(2547), - [aux_sym_cmd_identifier_token35] = ACTIONS(2547), - [aux_sym_cmd_identifier_token36] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_null] = ACTIONS(2547), - [aux_sym_cmd_identifier_token38] = ACTIONS(2547), - [aux_sym_cmd_identifier_token39] = ACTIONS(2547), - [aux_sym_cmd_identifier_token40] = ACTIONS(2547), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_list] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_in] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_make] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_else] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_catch] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_new] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2547), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2547), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2547), - [aux_sym__val_number_decimal_token3] = ACTIONS(2547), - [aux_sym__val_number_decimal_token4] = ACTIONS(2547), - [aux_sym__val_number_token1] = ACTIONS(2547), - [aux_sym__val_number_token2] = ACTIONS(2547), - [aux_sym__val_number_token3] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [sym__str_single_quotes] = ACTIONS(2547), - [sym__str_back_ticks] = ACTIONS(2547), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2547), - [sym__entry_separator] = ACTIONS(2549), - [anon_sym_PLUS] = ACTIONS(2547), + [806] = { + [sym_expr_parenthesized] = STATE(1625), + [sym_val_range] = STATE(1853), + [sym__val_range] = STATE(7587), + [sym__val_range_with_end] = STATE(7455), + [sym__value] = STATE(1853), + [sym_val_nothing] = STATE(1890), + [sym_val_bool] = STATE(1685), + [sym_val_variable] = STATE(1583), + [sym_val_number] = STATE(1890), + [sym__val_number_decimal] = STATE(1375), + [sym__val_number] = STATE(1944), + [sym_val_duration] = STATE(1890), + [sym_val_filesize] = STATE(1890), + [sym_val_binary] = STATE(1890), + [sym_val_string] = STATE(1890), + [sym__raw_str] = STATE(1873), + [sym__str_double_quotes] = STATE(1873), + [sym_val_interpolated] = STATE(1890), + [sym__inter_single_quotes] = STATE(1966), + [sym__inter_double_quotes] = STATE(1967), + [sym_val_list] = STATE(1890), + [sym_val_record] = STATE(1890), + [sym_val_table] = STATE(1890), + [sym_val_closure] = STATE(1890), + [sym__flag] = STATE(1853), + [sym_short_flag] = STATE(1876), + [sym_long_flag] = STATE(1876), + [sym_unquoted] = STATE(1727), + [sym__unquoted_with_expr] = STATE(1975), + [sym__unquoted_anonymous_prefix] = STATE(6997), + [sym_comment] = STATE(806), + [aux_sym_ctrl_do_repeat2] = STATE(806), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym__newline] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_err_GT_PIPE] = ACTIONS(2679), + [anon_sym_out_GT_PIPE] = ACTIONS(2679), + [anon_sym_e_GT_PIPE] = ACTIONS(2679), + [anon_sym_o_GT_PIPE] = ACTIONS(2679), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2679), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2679), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2679), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_DOLLAR] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_DASH2] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_DOT_DOT] = ACTIONS(2962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2965), + [anon_sym_DOT_DOT_LT] = ACTIONS(2965), + [anon_sym_null] = ACTIONS(2968), + [anon_sym_true] = ACTIONS(2971), + [anon_sym_false] = ACTIONS(2971), + [aux_sym__val_number_decimal_token1] = ACTIONS(2974), + [aux_sym__val_number_decimal_token2] = ACTIONS(2977), + [aux_sym__val_number_decimal_token3] = ACTIONS(2980), + [aux_sym__val_number_decimal_token4] = ACTIONS(2983), + [aux_sym__val_number_token1] = ACTIONS(2986), + [aux_sym__val_number_token2] = ACTIONS(2986), + [aux_sym__val_number_token3] = ACTIONS(2986), + [aux_sym__val_number_token4] = ACTIONS(2989), + [aux_sym__val_number_token5] = ACTIONS(2989), + [aux_sym__val_number_token6] = ACTIONS(2989), + [anon_sym_0b] = ACTIONS(2992), + [anon_sym_0o] = ACTIONS(2995), + [anon_sym_0x] = ACTIONS(2995), + [sym_val_date] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(3001), + [sym__str_single_quotes] = ACTIONS(3004), + [sym__str_back_ticks] = ACTIONS(3004), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), + [anon_sym_err_GT] = ACTIONS(2750), + [anon_sym_out_GT] = ACTIONS(2750), + [anon_sym_e_GT] = ACTIONS(2750), + [anon_sym_o_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT] = ACTIONS(2750), + [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(3013), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3016), + }, + [807] = { + [sym_comment] = STATE(807), + [ts_builtin_sym_end] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(3019), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2549), }, - [616] = { - [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(2551), - [anon_sym_alias] = ACTIONS(2551), - [anon_sym_let] = ACTIONS(2551), - [anon_sym_let_DASHenv] = ACTIONS(2551), - [anon_sym_mut] = ACTIONS(2551), - [anon_sym_const] = ACTIONS(2551), - [aux_sym_cmd_identifier_token1] = ACTIONS(2551), - [aux_sym_cmd_identifier_token2] = ACTIONS(2551), - [aux_sym_cmd_identifier_token3] = ACTIONS(2551), - [aux_sym_cmd_identifier_token4] = ACTIONS(2551), - [aux_sym_cmd_identifier_token5] = ACTIONS(2551), - [aux_sym_cmd_identifier_token6] = ACTIONS(2551), - [aux_sym_cmd_identifier_token7] = ACTIONS(2551), - [aux_sym_cmd_identifier_token8] = ACTIONS(2551), - [aux_sym_cmd_identifier_token9] = ACTIONS(2551), - [aux_sym_cmd_identifier_token10] = ACTIONS(2551), - [aux_sym_cmd_identifier_token11] = ACTIONS(2551), - [aux_sym_cmd_identifier_token12] = ACTIONS(2551), - [aux_sym_cmd_identifier_token13] = ACTIONS(2551), - [aux_sym_cmd_identifier_token14] = ACTIONS(2551), - [aux_sym_cmd_identifier_token15] = ACTIONS(2551), - [aux_sym_cmd_identifier_token16] = ACTIONS(2551), - [aux_sym_cmd_identifier_token17] = ACTIONS(2551), - [aux_sym_cmd_identifier_token18] = ACTIONS(2551), - [aux_sym_cmd_identifier_token19] = ACTIONS(2551), - [aux_sym_cmd_identifier_token20] = ACTIONS(2551), - [aux_sym_cmd_identifier_token21] = ACTIONS(2551), - [aux_sym_cmd_identifier_token22] = ACTIONS(2551), - [aux_sym_cmd_identifier_token23] = ACTIONS(2551), - [aux_sym_cmd_identifier_token24] = ACTIONS(2551), - [aux_sym_cmd_identifier_token25] = ACTIONS(2551), - [aux_sym_cmd_identifier_token26] = ACTIONS(2551), - [aux_sym_cmd_identifier_token27] = ACTIONS(2551), - [aux_sym_cmd_identifier_token28] = ACTIONS(2551), - [aux_sym_cmd_identifier_token29] = ACTIONS(2551), - [aux_sym_cmd_identifier_token30] = ACTIONS(2551), - [aux_sym_cmd_identifier_token31] = ACTIONS(2551), - [aux_sym_cmd_identifier_token32] = ACTIONS(2551), - [aux_sym_cmd_identifier_token33] = ACTIONS(2551), - [aux_sym_cmd_identifier_token34] = ACTIONS(2551), - [aux_sym_cmd_identifier_token35] = ACTIONS(2551), - [aux_sym_cmd_identifier_token36] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2551), - [aux_sym_cmd_identifier_token38] = ACTIONS(2551), - [aux_sym_cmd_identifier_token39] = ACTIONS(2551), - [aux_sym_cmd_identifier_token40] = ACTIONS(2551), - [anon_sym_def] = ACTIONS(2551), - [anon_sym_export_DASHenv] = ACTIONS(2551), - [anon_sym_extern] = ACTIONS(2551), - [anon_sym_module] = ACTIONS(2551), - [anon_sym_use] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2551), - [anon_sym_error] = ACTIONS(2551), - [anon_sym_list] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_break] = ACTIONS(2551), - [anon_sym_continue] = ACTIONS(2551), - [anon_sym_for] = ACTIONS(2551), - [anon_sym_in] = ACTIONS(2551), - [anon_sym_loop] = ACTIONS(2551), - [anon_sym_make] = ACTIONS(2551), - [anon_sym_while] = ACTIONS(2551), - [anon_sym_do] = ACTIONS(2551), - [anon_sym_if] = ACTIONS(2551), - [anon_sym_else] = ACTIONS(2551), - [anon_sym_match] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2551), - [anon_sym_catch] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2551), - [anon_sym_source] = ACTIONS(2551), - [anon_sym_source_DASHenv] = ACTIONS(2551), - [anon_sym_register] = ACTIONS(2551), - [anon_sym_hide] = ACTIONS(2551), - [anon_sym_hide_DASHenv] = ACTIONS(2551), - [anon_sym_overlay] = ACTIONS(2551), - [anon_sym_new] = ACTIONS(2551), - [anon_sym_as] = ACTIONS(2551), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2551), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2551), - [aux_sym__val_number_decimal_token1] = ACTIONS(2551), - [aux_sym__val_number_decimal_token2] = ACTIONS(2551), - [aux_sym__val_number_decimal_token3] = ACTIONS(2551), - [aux_sym__val_number_decimal_token4] = ACTIONS(2551), - [aux_sym__val_number_token1] = ACTIONS(2551), - [aux_sym__val_number_token2] = ACTIONS(2551), - [aux_sym__val_number_token3] = ACTIONS(2551), - [anon_sym_DQUOTE] = ACTIONS(2551), - [sym__str_single_quotes] = ACTIONS(2551), - [sym__str_back_ticks] = ACTIONS(2551), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2551), - [sym__entry_separator] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2551), + [808] = { + [sym_comment] = STATE(808), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(3021), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2553), }, - [617] = { - [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [809] = { + [sym_comment] = STATE(809), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(3023), + [aux_sym__immediate_decimal_token2] = ACTIONS(3025), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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(1621), + [anon_sym_out_GT_GT] = ACTIONS(1621), + [anon_sym_e_GT_GT] = ACTIONS(1621), + [anon_sym_o_GT_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(3), }, - [618] = { - [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(2557), - [anon_sym_alias] = ACTIONS(2557), - [anon_sym_let] = ACTIONS(2557), - [anon_sym_let_DASHenv] = ACTIONS(2557), - [anon_sym_mut] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [aux_sym_cmd_identifier_token1] = ACTIONS(2557), - [aux_sym_cmd_identifier_token2] = ACTIONS(2557), - [aux_sym_cmd_identifier_token3] = ACTIONS(2557), - [aux_sym_cmd_identifier_token4] = ACTIONS(2557), - [aux_sym_cmd_identifier_token5] = ACTIONS(2557), - [aux_sym_cmd_identifier_token6] = ACTIONS(2557), - [aux_sym_cmd_identifier_token7] = ACTIONS(2557), - [aux_sym_cmd_identifier_token8] = ACTIONS(2557), - [aux_sym_cmd_identifier_token9] = ACTIONS(2557), - [aux_sym_cmd_identifier_token10] = ACTIONS(2557), - [aux_sym_cmd_identifier_token11] = ACTIONS(2557), - [aux_sym_cmd_identifier_token12] = ACTIONS(2557), - [aux_sym_cmd_identifier_token13] = ACTIONS(2557), - [aux_sym_cmd_identifier_token14] = ACTIONS(2557), - [aux_sym_cmd_identifier_token15] = ACTIONS(2557), - [aux_sym_cmd_identifier_token16] = ACTIONS(2557), - [aux_sym_cmd_identifier_token17] = ACTIONS(2557), - [aux_sym_cmd_identifier_token18] = ACTIONS(2557), - [aux_sym_cmd_identifier_token19] = ACTIONS(2557), - [aux_sym_cmd_identifier_token20] = ACTIONS(2557), - [aux_sym_cmd_identifier_token21] = ACTIONS(2557), - [aux_sym_cmd_identifier_token22] = ACTIONS(2557), - [aux_sym_cmd_identifier_token23] = ACTIONS(2557), - [aux_sym_cmd_identifier_token24] = ACTIONS(2557), - [aux_sym_cmd_identifier_token25] = ACTIONS(2557), - [aux_sym_cmd_identifier_token26] = ACTIONS(2557), - [aux_sym_cmd_identifier_token27] = ACTIONS(2557), - [aux_sym_cmd_identifier_token28] = ACTIONS(2557), - [aux_sym_cmd_identifier_token29] = ACTIONS(2557), - [aux_sym_cmd_identifier_token30] = ACTIONS(2557), - [aux_sym_cmd_identifier_token31] = ACTIONS(2557), - [aux_sym_cmd_identifier_token32] = ACTIONS(2557), - [aux_sym_cmd_identifier_token33] = ACTIONS(2557), - [aux_sym_cmd_identifier_token34] = ACTIONS(2557), - [aux_sym_cmd_identifier_token35] = ACTIONS(2557), - [aux_sym_cmd_identifier_token36] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_null] = ACTIONS(2557), - [aux_sym_cmd_identifier_token38] = ACTIONS(2557), - [aux_sym_cmd_identifier_token39] = ACTIONS(2557), - [aux_sym_cmd_identifier_token40] = ACTIONS(2557), - [anon_sym_def] = ACTIONS(2557), - [anon_sym_export_DASHenv] = ACTIONS(2557), - [anon_sym_extern] = ACTIONS(2557), - [anon_sym_module] = ACTIONS(2557), - [anon_sym_use] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2557), - [anon_sym_DOLLAR] = ACTIONS(2557), - [anon_sym_error] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_in] = ACTIONS(2557), - [anon_sym_loop] = ACTIONS(2557), - [anon_sym_make] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_else] = ACTIONS(2557), - [anon_sym_match] = ACTIONS(2557), - [anon_sym_RBRACE] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_catch] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_source] = ACTIONS(2557), - [anon_sym_source_DASHenv] = ACTIONS(2557), - [anon_sym_register] = ACTIONS(2557), - [anon_sym_hide] = ACTIONS(2557), - [anon_sym_hide_DASHenv] = ACTIONS(2557), - [anon_sym_overlay] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_as] = ACTIONS(2557), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2557), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2557), - [aux_sym__val_number_decimal_token1] = ACTIONS(2557), - [aux_sym__val_number_decimal_token2] = ACTIONS(2557), - [aux_sym__val_number_decimal_token3] = ACTIONS(2557), - [aux_sym__val_number_decimal_token4] = ACTIONS(2557), - [aux_sym__val_number_token1] = ACTIONS(2557), - [aux_sym__val_number_token2] = ACTIONS(2557), - [aux_sym__val_number_token3] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2557), - [sym__str_single_quotes] = ACTIONS(2557), - [sym__str_back_ticks] = ACTIONS(2557), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2557), - [sym__entry_separator] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2557), + [810] = { + [sym_comment] = STATE(810), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1623), + [aux_sym_record_entry_token1] = ACTIONS(1621), + [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(1621), + [anon_sym_out_GT_GT] = ACTIONS(1621), + [anon_sym_e_GT_GT] = ACTIONS(1621), + [anon_sym_o_GT_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2559), }, - [619] = { - [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(2561), - [anon_sym_alias] = ACTIONS(2561), - [anon_sym_let] = ACTIONS(2561), - [anon_sym_let_DASHenv] = ACTIONS(2561), - [anon_sym_mut] = ACTIONS(2561), - [anon_sym_const] = ACTIONS(2561), - [aux_sym_cmd_identifier_token1] = ACTIONS(2561), - [aux_sym_cmd_identifier_token2] = ACTIONS(2561), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), - [aux_sym_cmd_identifier_token6] = ACTIONS(2561), - [aux_sym_cmd_identifier_token7] = ACTIONS(2561), - [aux_sym_cmd_identifier_token8] = ACTIONS(2561), - [aux_sym_cmd_identifier_token9] = ACTIONS(2561), - [aux_sym_cmd_identifier_token10] = ACTIONS(2561), - [aux_sym_cmd_identifier_token11] = ACTIONS(2561), - [aux_sym_cmd_identifier_token12] = ACTIONS(2561), - [aux_sym_cmd_identifier_token13] = ACTIONS(2561), - [aux_sym_cmd_identifier_token14] = ACTIONS(2561), - [aux_sym_cmd_identifier_token15] = ACTIONS(2561), - [aux_sym_cmd_identifier_token16] = ACTIONS(2561), - [aux_sym_cmd_identifier_token17] = ACTIONS(2561), - [aux_sym_cmd_identifier_token18] = ACTIONS(2561), - [aux_sym_cmd_identifier_token19] = ACTIONS(2561), - [aux_sym_cmd_identifier_token20] = ACTIONS(2561), - [aux_sym_cmd_identifier_token21] = ACTIONS(2561), - [aux_sym_cmd_identifier_token22] = ACTIONS(2561), - [aux_sym_cmd_identifier_token23] = ACTIONS(2561), - [aux_sym_cmd_identifier_token24] = ACTIONS(2561), - [aux_sym_cmd_identifier_token25] = ACTIONS(2561), - [aux_sym_cmd_identifier_token26] = ACTIONS(2561), - [aux_sym_cmd_identifier_token27] = ACTIONS(2561), - [aux_sym_cmd_identifier_token28] = ACTIONS(2561), - [aux_sym_cmd_identifier_token29] = ACTIONS(2561), - [aux_sym_cmd_identifier_token30] = ACTIONS(2561), - [aux_sym_cmd_identifier_token31] = ACTIONS(2561), - [aux_sym_cmd_identifier_token32] = ACTIONS(2561), - [aux_sym_cmd_identifier_token33] = ACTIONS(2561), - [aux_sym_cmd_identifier_token34] = ACTIONS(2561), - [aux_sym_cmd_identifier_token35] = ACTIONS(2561), - [aux_sym_cmd_identifier_token36] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(2561), - [anon_sym_false] = ACTIONS(2561), - [anon_sym_null] = ACTIONS(2561), - [aux_sym_cmd_identifier_token38] = ACTIONS(2561), - [aux_sym_cmd_identifier_token39] = ACTIONS(2561), - [aux_sym_cmd_identifier_token40] = ACTIONS(2561), - [anon_sym_def] = ACTIONS(2561), - [anon_sym_export_DASHenv] = ACTIONS(2561), - [anon_sym_extern] = ACTIONS(2561), - [anon_sym_module] = ACTIONS(2561), - [anon_sym_use] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_DOLLAR] = ACTIONS(2561), - [anon_sym_error] = ACTIONS(2561), - [anon_sym_list] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_break] = ACTIONS(2561), - [anon_sym_continue] = ACTIONS(2561), - [anon_sym_for] = ACTIONS(2561), - [anon_sym_in] = ACTIONS(2561), - [anon_sym_loop] = ACTIONS(2561), - [anon_sym_make] = ACTIONS(2561), - [anon_sym_while] = ACTIONS(2561), - [anon_sym_do] = ACTIONS(2561), - [anon_sym_if] = ACTIONS(2561), - [anon_sym_else] = ACTIONS(2561), - [anon_sym_match] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_try] = ACTIONS(2561), - [anon_sym_catch] = ACTIONS(2561), - [anon_sym_return] = ACTIONS(2561), - [anon_sym_source] = ACTIONS(2561), - [anon_sym_source_DASHenv] = ACTIONS(2561), - [anon_sym_register] = ACTIONS(2561), - [anon_sym_hide] = ACTIONS(2561), - [anon_sym_hide_DASHenv] = ACTIONS(2561), - [anon_sym_overlay] = ACTIONS(2561), - [anon_sym_new] = ACTIONS(2561), - [anon_sym_as] = ACTIONS(2561), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2561), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2561), - [aux_sym__val_number_decimal_token1] = ACTIONS(2561), - [aux_sym__val_number_decimal_token2] = ACTIONS(2561), - [aux_sym__val_number_decimal_token3] = ACTIONS(2561), - [aux_sym__val_number_decimal_token4] = ACTIONS(2561), - [aux_sym__val_number_token1] = ACTIONS(2561), - [aux_sym__val_number_token2] = ACTIONS(2561), - [aux_sym__val_number_token3] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym__str_single_quotes] = ACTIONS(2561), - [sym__str_back_ticks] = ACTIONS(2561), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2561), - [sym__entry_separator] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2561), + [811] = { + [sym_comment] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(1609), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(2920), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2563), }, - [620] = { - [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(2222), - [anon_sym_alias] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_let_DASHenv] = ACTIONS(2222), - [anon_sym_mut] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [aux_sym_cmd_identifier_token1] = ACTIONS(2222), - [aux_sym_cmd_identifier_token2] = ACTIONS(2222), - [aux_sym_cmd_identifier_token3] = ACTIONS(2222), - [aux_sym_cmd_identifier_token4] = ACTIONS(2222), - [aux_sym_cmd_identifier_token5] = ACTIONS(2222), - [aux_sym_cmd_identifier_token6] = ACTIONS(2222), - [aux_sym_cmd_identifier_token7] = ACTIONS(2222), - [aux_sym_cmd_identifier_token8] = ACTIONS(2222), - [aux_sym_cmd_identifier_token9] = ACTIONS(2222), - [aux_sym_cmd_identifier_token10] = ACTIONS(2222), - [aux_sym_cmd_identifier_token11] = ACTIONS(2222), - [aux_sym_cmd_identifier_token12] = ACTIONS(2222), - [aux_sym_cmd_identifier_token13] = ACTIONS(2222), - [aux_sym_cmd_identifier_token14] = ACTIONS(2222), - [aux_sym_cmd_identifier_token15] = ACTIONS(2222), - [aux_sym_cmd_identifier_token16] = ACTIONS(2222), - [aux_sym_cmd_identifier_token17] = ACTIONS(2222), - [aux_sym_cmd_identifier_token18] = ACTIONS(2222), - [aux_sym_cmd_identifier_token19] = ACTIONS(2222), - [aux_sym_cmd_identifier_token20] = ACTIONS(2222), - [aux_sym_cmd_identifier_token21] = ACTIONS(2222), - [aux_sym_cmd_identifier_token22] = ACTIONS(2222), - [aux_sym_cmd_identifier_token23] = ACTIONS(2222), - [aux_sym_cmd_identifier_token24] = ACTIONS(2222), - [aux_sym_cmd_identifier_token25] = ACTIONS(2222), - [aux_sym_cmd_identifier_token26] = ACTIONS(2222), - [aux_sym_cmd_identifier_token27] = ACTIONS(2222), - [aux_sym_cmd_identifier_token28] = ACTIONS(2222), - [aux_sym_cmd_identifier_token29] = ACTIONS(2222), - [aux_sym_cmd_identifier_token30] = ACTIONS(2222), - [aux_sym_cmd_identifier_token31] = ACTIONS(2222), - [aux_sym_cmd_identifier_token32] = ACTIONS(2222), - [aux_sym_cmd_identifier_token33] = ACTIONS(2222), - [aux_sym_cmd_identifier_token34] = ACTIONS(2222), - [aux_sym_cmd_identifier_token35] = ACTIONS(2222), - [aux_sym_cmd_identifier_token36] = ACTIONS(2222), - [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), - [anon_sym_def] = ACTIONS(2222), - [anon_sym_export_DASHenv] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_module] = ACTIONS(2222), - [anon_sym_use] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2222), - [anon_sym_error] = ACTIONS(2222), - [anon_sym_list] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2222), - [anon_sym_loop] = ACTIONS(2222), - [anon_sym_make] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2222), - [anon_sym_match] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_catch] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_source] = ACTIONS(2222), - [anon_sym_source_DASHenv] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_hide] = ACTIONS(2222), - [anon_sym_hide_DASHenv] = ACTIONS(2222), - [anon_sym_overlay] = ACTIONS(2222), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_as] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2222), - [aux_sym__val_number_decimal_token1] = ACTIONS(2222), - [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), - [sym__entry_separator] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2222), + [812] = { + [sym_comment] = STATE(812), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [aux_sym_record_entry_token1] = ACTIONS(1673), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2228), }, - [621] = { - [sym_comment] = STATE(621), - [anon_sym_export] = ACTIONS(2218), - [anon_sym_alias] = ACTIONS(2218), - [anon_sym_let] = ACTIONS(2218), - [anon_sym_let_DASHenv] = ACTIONS(2218), - [anon_sym_mut] = ACTIONS(2218), - [anon_sym_const] = ACTIONS(2218), - [aux_sym_cmd_identifier_token1] = ACTIONS(2218), - [aux_sym_cmd_identifier_token2] = ACTIONS(2218), - [aux_sym_cmd_identifier_token3] = ACTIONS(2218), - [aux_sym_cmd_identifier_token4] = ACTIONS(2218), - [aux_sym_cmd_identifier_token5] = ACTIONS(2218), - [aux_sym_cmd_identifier_token6] = ACTIONS(2218), - [aux_sym_cmd_identifier_token7] = ACTIONS(2218), - [aux_sym_cmd_identifier_token8] = ACTIONS(2218), - [aux_sym_cmd_identifier_token9] = ACTIONS(2218), - [aux_sym_cmd_identifier_token10] = ACTIONS(2218), - [aux_sym_cmd_identifier_token11] = ACTIONS(2218), - [aux_sym_cmd_identifier_token12] = ACTIONS(2218), - [aux_sym_cmd_identifier_token13] = ACTIONS(2218), - [aux_sym_cmd_identifier_token14] = ACTIONS(2218), - [aux_sym_cmd_identifier_token15] = ACTIONS(2218), - [aux_sym_cmd_identifier_token16] = ACTIONS(2218), - [aux_sym_cmd_identifier_token17] = ACTIONS(2218), - [aux_sym_cmd_identifier_token18] = ACTIONS(2218), - [aux_sym_cmd_identifier_token19] = ACTIONS(2218), - [aux_sym_cmd_identifier_token20] = ACTIONS(2218), - [aux_sym_cmd_identifier_token21] = ACTIONS(2218), - [aux_sym_cmd_identifier_token22] = ACTIONS(2218), - [aux_sym_cmd_identifier_token23] = ACTIONS(2218), - [aux_sym_cmd_identifier_token24] = ACTIONS(2218), - [aux_sym_cmd_identifier_token25] = ACTIONS(2218), - [aux_sym_cmd_identifier_token26] = ACTIONS(2218), - [aux_sym_cmd_identifier_token27] = ACTIONS(2218), - [aux_sym_cmd_identifier_token28] = ACTIONS(2218), - [aux_sym_cmd_identifier_token29] = ACTIONS(2218), - [aux_sym_cmd_identifier_token30] = ACTIONS(2218), - [aux_sym_cmd_identifier_token31] = ACTIONS(2218), - [aux_sym_cmd_identifier_token32] = ACTIONS(2218), - [aux_sym_cmd_identifier_token33] = ACTIONS(2218), - [aux_sym_cmd_identifier_token34] = ACTIONS(2218), - [aux_sym_cmd_identifier_token35] = ACTIONS(2218), - [aux_sym_cmd_identifier_token36] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2218), - [anon_sym_false] = ACTIONS(2218), - [anon_sym_null] = ACTIONS(2218), - [aux_sym_cmd_identifier_token38] = ACTIONS(2218), - [aux_sym_cmd_identifier_token39] = ACTIONS(2218), - [aux_sym_cmd_identifier_token40] = ACTIONS(2218), - [anon_sym_def] = ACTIONS(2218), - [anon_sym_export_DASHenv] = ACTIONS(2218), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_module] = ACTIONS(2218), - [anon_sym_use] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2218), - [anon_sym_error] = ACTIONS(2218), - [anon_sym_list] = ACTIONS(2218), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_break] = ACTIONS(2218), - [anon_sym_continue] = ACTIONS(2218), - [anon_sym_for] = ACTIONS(2218), - [anon_sym_in] = ACTIONS(2218), - [anon_sym_loop] = ACTIONS(2218), - [anon_sym_make] = ACTIONS(2218), - [anon_sym_while] = ACTIONS(2218), - [anon_sym_do] = ACTIONS(2218), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_else] = ACTIONS(2218), - [anon_sym_match] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_try] = ACTIONS(2218), - [anon_sym_catch] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2218), - [anon_sym_source] = ACTIONS(2218), - [anon_sym_source_DASHenv] = ACTIONS(2218), - [anon_sym_register] = ACTIONS(2218), - [anon_sym_hide] = ACTIONS(2218), - [anon_sym_hide_DASHenv] = ACTIONS(2218), - [anon_sym_overlay] = ACTIONS(2218), - [anon_sym_new] = ACTIONS(2218), - [anon_sym_as] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2218), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2218), - [aux_sym__val_number_decimal_token3] = ACTIONS(2218), - [aux_sym__val_number_decimal_token4] = ACTIONS(2218), - [aux_sym__val_number_token1] = ACTIONS(2218), - [aux_sym__val_number_token2] = ACTIONS(2218), - [aux_sym__val_number_token3] = ACTIONS(2218), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym__str_single_quotes] = ACTIONS(2218), - [sym__str_back_ticks] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), - [sym__entry_separator] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2218), + [813] = { + [sym_comment] = STATE(813), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3029), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2220), }, - [622] = { - [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(2047), - [anon_sym_alias] = ACTIONS(2047), - [anon_sym_let] = ACTIONS(2047), - [anon_sym_let_DASHenv] = ACTIONS(2047), - [anon_sym_mut] = ACTIONS(2047), - [anon_sym_const] = ACTIONS(2047), - [aux_sym_cmd_identifier_token1] = ACTIONS(2047), - [aux_sym_cmd_identifier_token2] = ACTIONS(2047), - [aux_sym_cmd_identifier_token3] = ACTIONS(2047), - [aux_sym_cmd_identifier_token4] = ACTIONS(2047), - [aux_sym_cmd_identifier_token5] = ACTIONS(2047), - [aux_sym_cmd_identifier_token6] = ACTIONS(2047), - [aux_sym_cmd_identifier_token7] = ACTIONS(2047), - [aux_sym_cmd_identifier_token8] = ACTIONS(2047), - [aux_sym_cmd_identifier_token9] = ACTIONS(2047), - [aux_sym_cmd_identifier_token10] = ACTIONS(2047), - [aux_sym_cmd_identifier_token11] = ACTIONS(2047), - [aux_sym_cmd_identifier_token12] = ACTIONS(2047), - [aux_sym_cmd_identifier_token13] = ACTIONS(2047), - [aux_sym_cmd_identifier_token14] = ACTIONS(2047), - [aux_sym_cmd_identifier_token15] = ACTIONS(2047), - [aux_sym_cmd_identifier_token16] = ACTIONS(2047), - [aux_sym_cmd_identifier_token17] = ACTIONS(2047), - [aux_sym_cmd_identifier_token18] = ACTIONS(2047), - [aux_sym_cmd_identifier_token19] = ACTIONS(2047), - [aux_sym_cmd_identifier_token20] = ACTIONS(2047), - [aux_sym_cmd_identifier_token21] = ACTIONS(2047), - [aux_sym_cmd_identifier_token22] = ACTIONS(2047), - [aux_sym_cmd_identifier_token23] = ACTIONS(2047), - [aux_sym_cmd_identifier_token24] = ACTIONS(2047), - [aux_sym_cmd_identifier_token25] = ACTIONS(2047), - [aux_sym_cmd_identifier_token26] = ACTIONS(2047), - [aux_sym_cmd_identifier_token27] = ACTIONS(2047), - [aux_sym_cmd_identifier_token28] = ACTIONS(2047), - [aux_sym_cmd_identifier_token29] = ACTIONS(2047), - [aux_sym_cmd_identifier_token30] = ACTIONS(2047), - [aux_sym_cmd_identifier_token31] = ACTIONS(2047), - [aux_sym_cmd_identifier_token32] = ACTIONS(2047), - [aux_sym_cmd_identifier_token33] = ACTIONS(2047), - [aux_sym_cmd_identifier_token34] = ACTIONS(2047), - [aux_sym_cmd_identifier_token35] = ACTIONS(2047), - [aux_sym_cmd_identifier_token36] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_null] = ACTIONS(2047), - [aux_sym_cmd_identifier_token38] = ACTIONS(2047), - [aux_sym_cmd_identifier_token39] = ACTIONS(2047), - [aux_sym_cmd_identifier_token40] = ACTIONS(2047), - [anon_sym_def] = ACTIONS(2047), - [anon_sym_export_DASHenv] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2047), - [anon_sym_module] = ACTIONS(2047), - [anon_sym_use] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2047), - [anon_sym_error] = ACTIONS(2047), - [anon_sym_list] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_break] = ACTIONS(2047), - [anon_sym_continue] = ACTIONS(2047), - [anon_sym_for] = ACTIONS(2047), - [anon_sym_in] = ACTIONS(2047), - [anon_sym_loop] = ACTIONS(2047), - [anon_sym_make] = ACTIONS(2047), - [anon_sym_while] = ACTIONS(2047), - [anon_sym_do] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2047), - [anon_sym_else] = ACTIONS(2047), - [anon_sym_match] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_try] = ACTIONS(2047), - [anon_sym_catch] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2047), - [anon_sym_source] = ACTIONS(2047), - [anon_sym_source_DASHenv] = ACTIONS(2047), - [anon_sym_register] = ACTIONS(2047), - [anon_sym_hide] = ACTIONS(2047), - [anon_sym_hide_DASHenv] = ACTIONS(2047), - [anon_sym_overlay] = ACTIONS(2047), - [anon_sym_new] = ACTIONS(2047), - [anon_sym_as] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2047), - [aux_sym__val_number_decimal_token1] = ACTIONS(2047), - [aux_sym__val_number_decimal_token2] = ACTIONS(2047), - [aux_sym__val_number_decimal_token3] = ACTIONS(2047), - [aux_sym__val_number_decimal_token4] = ACTIONS(2047), - [aux_sym__val_number_token1] = ACTIONS(2047), - [aux_sym__val_number_token2] = ACTIONS(2047), - [aux_sym__val_number_token3] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(2047), - [sym__str_single_quotes] = ACTIONS(2047), - [sym__str_back_ticks] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2047), - [sym__entry_separator] = ACTIONS(2049), - [anon_sym_PLUS] = ACTIONS(2047), + [814] = { + [sym_comment] = STATE(814), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_bit_DASHshl] = ACTIONS(1765), + [anon_sym_bit_DASHshr] = ACTIONS(1765), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_BANG_TILDE] = ACTIONS(1765), + [anon_sym_bit_DASHand] = ACTIONS(1765), + [anon_sym_bit_DASHxor] = ACTIONS(1765), + [anon_sym_bit_DASHor] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_xor] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not_DASHin] = ACTIONS(1765), + [anon_sym_starts_DASHwith] = ACTIONS(1765), + [anon_sym_ends_DASHwith] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1765), + [aux_sym_cmd_identifier_token41] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [aux_sym_record_entry_token1] = ACTIONS(1763), + [anon_sym_err_GT] = ACTIONS(1763), + [anon_sym_out_GT] = ACTIONS(1763), + [anon_sym_e_GT] = ACTIONS(1763), + [anon_sym_o_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT] = ACTIONS(1763), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2049), }, - [623] = { - [sym_comment] = STATE(623), - [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), + [815] = { + [sym_comment] = STATE(815), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [aux_sym_record_entry_token1] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1060), }, - [624] = { - [sym_comment] = STATE(624), - [anon_sym_export] = ACTIONS(1066), - [anon_sym_alias] = ACTIONS(1066), - [anon_sym_let] = ACTIONS(1066), - [anon_sym_let_DASHenv] = ACTIONS(1066), - [anon_sym_mut] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [aux_sym_cmd_identifier_token1] = ACTIONS(1066), - [aux_sym_cmd_identifier_token2] = ACTIONS(1066), - [aux_sym_cmd_identifier_token3] = ACTIONS(1066), - [aux_sym_cmd_identifier_token4] = ACTIONS(1066), - [aux_sym_cmd_identifier_token5] = ACTIONS(1066), - [aux_sym_cmd_identifier_token6] = ACTIONS(1066), - [aux_sym_cmd_identifier_token7] = ACTIONS(1066), - [aux_sym_cmd_identifier_token8] = ACTIONS(1066), - [aux_sym_cmd_identifier_token9] = ACTIONS(1066), - [aux_sym_cmd_identifier_token10] = ACTIONS(1066), - [aux_sym_cmd_identifier_token11] = ACTIONS(1066), - [aux_sym_cmd_identifier_token12] = ACTIONS(1066), - [aux_sym_cmd_identifier_token13] = ACTIONS(1066), - [aux_sym_cmd_identifier_token14] = ACTIONS(1066), - [aux_sym_cmd_identifier_token15] = ACTIONS(1066), - [aux_sym_cmd_identifier_token16] = ACTIONS(1066), - [aux_sym_cmd_identifier_token17] = ACTIONS(1066), - [aux_sym_cmd_identifier_token18] = ACTIONS(1066), - [aux_sym_cmd_identifier_token19] = ACTIONS(1066), - [aux_sym_cmd_identifier_token20] = ACTIONS(1066), - [aux_sym_cmd_identifier_token21] = ACTIONS(1066), - [aux_sym_cmd_identifier_token22] = ACTIONS(1066), - [aux_sym_cmd_identifier_token23] = ACTIONS(1066), - [aux_sym_cmd_identifier_token24] = ACTIONS(1066), - [aux_sym_cmd_identifier_token25] = ACTIONS(1066), - [aux_sym_cmd_identifier_token26] = ACTIONS(1066), - [aux_sym_cmd_identifier_token27] = ACTIONS(1066), - [aux_sym_cmd_identifier_token28] = ACTIONS(1066), - [aux_sym_cmd_identifier_token29] = ACTIONS(1066), - [aux_sym_cmd_identifier_token30] = ACTIONS(1066), - [aux_sym_cmd_identifier_token31] = ACTIONS(1066), - [aux_sym_cmd_identifier_token32] = ACTIONS(1066), - [aux_sym_cmd_identifier_token33] = ACTIONS(1066), - [aux_sym_cmd_identifier_token34] = ACTIONS(1066), - [aux_sym_cmd_identifier_token35] = ACTIONS(1066), - [aux_sym_cmd_identifier_token36] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), - [anon_sym_null] = ACTIONS(1068), - [aux_sym_cmd_identifier_token38] = ACTIONS(1066), - [aux_sym_cmd_identifier_token39] = ACTIONS(1068), - [aux_sym_cmd_identifier_token40] = ACTIONS(1068), - [anon_sym_def] = ACTIONS(1066), - [anon_sym_export_DASHenv] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym_module] = ACTIONS(1066), - [anon_sym_use] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_error] = ACTIONS(1066), - [anon_sym_list] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_in] = ACTIONS(1066), - [anon_sym_loop] = ACTIONS(1066), - [anon_sym_make] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_else] = ACTIONS(1066), - [anon_sym_match] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_try] = ACTIONS(1066), - [anon_sym_catch] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_source] = ACTIONS(1066), - [anon_sym_source_DASHenv] = ACTIONS(1066), - [anon_sym_register] = ACTIONS(1066), - [anon_sym_hide] = ACTIONS(1066), - [anon_sym_hide_DASHenv] = ACTIONS(1066), - [anon_sym_overlay] = ACTIONS(1066), - [anon_sym_new] = ACTIONS(1066), - [anon_sym_as] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1068), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1068), - [aux_sym__val_number_decimal_token1] = ACTIONS(1066), - [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), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1068), + [816] = { + [sym_comment] = STATE(816), + [anon_sym_STAR_STAR] = ACTIONS(3031), + [anon_sym_PLUS_PLUS] = ACTIONS(3031), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_SLASH] = ACTIONS(3033), + [anon_sym_mod] = ACTIONS(3031), + [anon_sym_SLASH_SLASH] = ACTIONS(3031), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_bit_DASHshl] = ACTIONS(3031), + [anon_sym_bit_DASHshr] = ACTIONS(3031), + [anon_sym_EQ_TILDE] = ACTIONS(3031), + [anon_sym_BANG_TILDE] = ACTIONS(3031), + [anon_sym_bit_DASHand] = ACTIONS(3031), + [anon_sym_bit_DASHxor] = ACTIONS(3031), + [anon_sym_bit_DASHor] = ACTIONS(3031), + [anon_sym_and] = ACTIONS(3031), + [anon_sym_xor] = ACTIONS(3031), + [anon_sym_or] = ACTIONS(3031), + [anon_sym_in] = ACTIONS(3031), + [anon_sym_not_DASHin] = ACTIONS(3031), + [anon_sym_starts_DASHwith] = ACTIONS(3031), + [anon_sym_ends_DASHwith] = ACTIONS(3031), + [anon_sym_EQ_EQ] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_LT_EQ] = ACTIONS(3031), + [anon_sym_GT] = ACTIONS(3033), + [anon_sym_GT_EQ] = ACTIONS(3031), + [aux_sym_cmd_identifier_token41] = ACTIONS(3035), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), + [sym_filesize_unit] = ACTIONS(3041), + [sym_duration_unit] = ACTIONS(3043), + [aux_sym_record_entry_token1] = ACTIONS(1709), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(3), }, - [625] = { - [sym_comment] = STATE(625), - [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] = ACTIONS(1070), - [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(249), - [sym_raw_string_begin] = ACTIONS(1072), + [817] = { + [sym_comment] = STATE(817), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(2912), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, - [626] = { - [sym_comment] = STATE(626), - [anon_sym_export] = ACTIONS(2001), - [anon_sym_alias] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_let_DASHenv] = ACTIONS(2001), - [anon_sym_mut] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(2001), - [aux_sym_cmd_identifier_token1] = ACTIONS(2001), - [aux_sym_cmd_identifier_token2] = ACTIONS(2001), - [aux_sym_cmd_identifier_token3] = ACTIONS(2001), - [aux_sym_cmd_identifier_token4] = ACTIONS(2001), - [aux_sym_cmd_identifier_token5] = ACTIONS(2001), - [aux_sym_cmd_identifier_token6] = ACTIONS(2001), - [aux_sym_cmd_identifier_token7] = ACTIONS(2001), - [aux_sym_cmd_identifier_token8] = ACTIONS(2001), - [aux_sym_cmd_identifier_token9] = ACTIONS(2001), - [aux_sym_cmd_identifier_token10] = ACTIONS(2001), - [aux_sym_cmd_identifier_token11] = ACTIONS(2001), - [aux_sym_cmd_identifier_token12] = ACTIONS(2001), - [aux_sym_cmd_identifier_token13] = ACTIONS(2001), - [aux_sym_cmd_identifier_token14] = ACTIONS(2001), - [aux_sym_cmd_identifier_token15] = ACTIONS(2001), - [aux_sym_cmd_identifier_token16] = ACTIONS(2001), - [aux_sym_cmd_identifier_token17] = ACTIONS(2001), - [aux_sym_cmd_identifier_token18] = ACTIONS(2001), - [aux_sym_cmd_identifier_token19] = ACTIONS(2001), - [aux_sym_cmd_identifier_token20] = ACTIONS(2001), - [aux_sym_cmd_identifier_token21] = ACTIONS(2001), - [aux_sym_cmd_identifier_token22] = ACTIONS(2001), - [aux_sym_cmd_identifier_token23] = ACTIONS(2001), - [aux_sym_cmd_identifier_token24] = ACTIONS(2001), - [aux_sym_cmd_identifier_token25] = ACTIONS(2001), - [aux_sym_cmd_identifier_token26] = ACTIONS(2001), - [aux_sym_cmd_identifier_token27] = ACTIONS(2001), - [aux_sym_cmd_identifier_token28] = ACTIONS(2001), - [aux_sym_cmd_identifier_token29] = ACTIONS(2001), - [aux_sym_cmd_identifier_token30] = ACTIONS(2001), - [aux_sym_cmd_identifier_token31] = ACTIONS(2001), - [aux_sym_cmd_identifier_token32] = ACTIONS(2001), - [aux_sym_cmd_identifier_token33] = ACTIONS(2001), - [aux_sym_cmd_identifier_token34] = ACTIONS(2001), - [aux_sym_cmd_identifier_token35] = ACTIONS(2001), - [aux_sym_cmd_identifier_token36] = ACTIONS(2001), - [anon_sym_true] = ACTIONS(2001), - [anon_sym_false] = ACTIONS(2001), - [anon_sym_null] = ACTIONS(2001), - [aux_sym_cmd_identifier_token38] = ACTIONS(2001), - [aux_sym_cmd_identifier_token39] = ACTIONS(2001), - [aux_sym_cmd_identifier_token40] = ACTIONS(2001), - [anon_sym_def] = ACTIONS(2001), - [anon_sym_export_DASHenv] = ACTIONS(2001), - [anon_sym_extern] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_use] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_error] = ACTIONS(2001), - [anon_sym_list] = ACTIONS(2001), - [anon_sym_DASH] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2001), - [anon_sym_continue] = ACTIONS(2001), - [anon_sym_for] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_loop] = ACTIONS(2001), - [anon_sym_make] = ACTIONS(2001), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(2001), - [anon_sym_if] = ACTIONS(2001), - [anon_sym_else] = ACTIONS(2001), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_try] = ACTIONS(2001), - [anon_sym_catch] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2001), - [anon_sym_source] = ACTIONS(2001), - [anon_sym_source_DASHenv] = ACTIONS(2001), - [anon_sym_register] = ACTIONS(2001), - [anon_sym_hide] = ACTIONS(2001), - [anon_sym_hide_DASHenv] = ACTIONS(2001), - [anon_sym_overlay] = ACTIONS(2001), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2001), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2001), - [aux_sym__val_number_decimal_token3] = ACTIONS(2001), - [aux_sym__val_number_decimal_token4] = ACTIONS(2001), - [aux_sym__val_number_token1] = ACTIONS(2001), - [aux_sym__val_number_token2] = ACTIONS(2001), - [aux_sym__val_number_token3] = ACTIONS(2001), - [anon_sym_DQUOTE] = ACTIONS(2001), - [sym__str_single_quotes] = ACTIONS(2001), - [sym__str_back_ticks] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2001), - [sym__entry_separator] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2001), + [818] = { + [sym_comment] = STATE(818), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(2934), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2003), }, - [627] = { - [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(2565), - [anon_sym_alias] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_let_DASHenv] = ACTIONS(2565), - [anon_sym_mut] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [aux_sym_cmd_identifier_token1] = ACTIONS(2565), - [aux_sym_cmd_identifier_token2] = ACTIONS(2565), - [aux_sym_cmd_identifier_token3] = ACTIONS(2565), - [aux_sym_cmd_identifier_token4] = ACTIONS(2565), - [aux_sym_cmd_identifier_token5] = ACTIONS(2565), - [aux_sym_cmd_identifier_token6] = ACTIONS(2565), - [aux_sym_cmd_identifier_token7] = ACTIONS(2565), - [aux_sym_cmd_identifier_token8] = ACTIONS(2565), - [aux_sym_cmd_identifier_token9] = ACTIONS(2565), - [aux_sym_cmd_identifier_token10] = ACTIONS(2565), - [aux_sym_cmd_identifier_token11] = ACTIONS(2565), - [aux_sym_cmd_identifier_token12] = ACTIONS(2565), - [aux_sym_cmd_identifier_token13] = ACTIONS(2565), - [aux_sym_cmd_identifier_token14] = ACTIONS(2565), - [aux_sym_cmd_identifier_token15] = ACTIONS(2565), - [aux_sym_cmd_identifier_token16] = ACTIONS(2565), - [aux_sym_cmd_identifier_token17] = ACTIONS(2565), - [aux_sym_cmd_identifier_token18] = ACTIONS(2565), - [aux_sym_cmd_identifier_token19] = ACTIONS(2565), - [aux_sym_cmd_identifier_token20] = ACTIONS(2565), - [aux_sym_cmd_identifier_token21] = ACTIONS(2565), - [aux_sym_cmd_identifier_token22] = ACTIONS(2565), - [aux_sym_cmd_identifier_token23] = ACTIONS(2565), - [aux_sym_cmd_identifier_token24] = ACTIONS(2565), - [aux_sym_cmd_identifier_token25] = ACTIONS(2565), - [aux_sym_cmd_identifier_token26] = ACTIONS(2565), - [aux_sym_cmd_identifier_token27] = ACTIONS(2565), - [aux_sym_cmd_identifier_token28] = ACTIONS(2565), - [aux_sym_cmd_identifier_token29] = ACTIONS(2565), - [aux_sym_cmd_identifier_token30] = ACTIONS(2565), - [aux_sym_cmd_identifier_token31] = ACTIONS(2565), - [aux_sym_cmd_identifier_token32] = ACTIONS(2565), - [aux_sym_cmd_identifier_token33] = ACTIONS(2565), - [aux_sym_cmd_identifier_token34] = ACTIONS(2565), - [aux_sym_cmd_identifier_token35] = ACTIONS(2565), - [aux_sym_cmd_identifier_token36] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(2565), - [anon_sym_false] = ACTIONS(2565), - [anon_sym_null] = ACTIONS(2565), - [aux_sym_cmd_identifier_token38] = ACTIONS(2565), - [aux_sym_cmd_identifier_token39] = ACTIONS(2565), - [aux_sym_cmd_identifier_token40] = ACTIONS(2565), - [anon_sym_def] = ACTIONS(2565), - [anon_sym_export_DASHenv] = ACTIONS(2565), - [anon_sym_extern] = ACTIONS(2565), - [anon_sym_module] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2565), - [anon_sym_DOLLAR] = ACTIONS(2565), - [anon_sym_error] = ACTIONS(2565), - [anon_sym_list] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_in] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_make] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [anon_sym_do] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_else] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_RBRACE] = ACTIONS(2565), - [anon_sym_try] = ACTIONS(2565), - [anon_sym_catch] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_source] = ACTIONS(2565), - [anon_sym_source_DASHenv] = ACTIONS(2565), - [anon_sym_register] = ACTIONS(2565), - [anon_sym_hide] = ACTIONS(2565), - [anon_sym_hide_DASHenv] = ACTIONS(2565), - [anon_sym_overlay] = ACTIONS(2565), - [anon_sym_new] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2565), - [aux_sym__val_number_decimal_token1] = ACTIONS(2565), - [aux_sym__val_number_decimal_token2] = ACTIONS(2565), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2565), - [aux_sym__val_number_token2] = ACTIONS(2565), - [aux_sym__val_number_token3] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym__str_single_quotes] = ACTIONS(2565), - [sym__str_back_ticks] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2565), - [sym__entry_separator] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2565), + [819] = { + [sym_comment] = STATE(819), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(3045), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2567), }, - [628] = { - [sym_comment] = STATE(628), - [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(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), - [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(1062), - [anon_sym_DOLLAR] = ACTIONS(1062), - [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(1062), - [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(1062), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [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), - [sym__entry_separator] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1062), + [820] = { + [sym_comment] = STATE(820), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1064), }, - [629] = { - [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(2569), - [anon_sym_alias] = ACTIONS(2569), - [anon_sym_let] = ACTIONS(2569), - [anon_sym_let_DASHenv] = ACTIONS(2569), - [anon_sym_mut] = ACTIONS(2569), - [anon_sym_const] = ACTIONS(2569), - [aux_sym_cmd_identifier_token1] = ACTIONS(2569), - [aux_sym_cmd_identifier_token2] = ACTIONS(2569), - [aux_sym_cmd_identifier_token3] = ACTIONS(2569), - [aux_sym_cmd_identifier_token4] = ACTIONS(2569), - [aux_sym_cmd_identifier_token5] = ACTIONS(2569), - [aux_sym_cmd_identifier_token6] = ACTIONS(2569), - [aux_sym_cmd_identifier_token7] = ACTIONS(2569), - [aux_sym_cmd_identifier_token8] = ACTIONS(2569), - [aux_sym_cmd_identifier_token9] = ACTIONS(2569), - [aux_sym_cmd_identifier_token10] = ACTIONS(2569), - [aux_sym_cmd_identifier_token11] = ACTIONS(2569), - [aux_sym_cmd_identifier_token12] = ACTIONS(2569), - [aux_sym_cmd_identifier_token13] = ACTIONS(2569), - [aux_sym_cmd_identifier_token14] = ACTIONS(2569), - [aux_sym_cmd_identifier_token15] = ACTIONS(2569), - [aux_sym_cmd_identifier_token16] = ACTIONS(2569), - [aux_sym_cmd_identifier_token17] = ACTIONS(2569), - [aux_sym_cmd_identifier_token18] = ACTIONS(2569), - [aux_sym_cmd_identifier_token19] = ACTIONS(2569), - [aux_sym_cmd_identifier_token20] = ACTIONS(2569), - [aux_sym_cmd_identifier_token21] = ACTIONS(2569), - [aux_sym_cmd_identifier_token22] = ACTIONS(2569), - [aux_sym_cmd_identifier_token23] = ACTIONS(2569), - [aux_sym_cmd_identifier_token24] = ACTIONS(2569), - [aux_sym_cmd_identifier_token25] = ACTIONS(2569), - [aux_sym_cmd_identifier_token26] = ACTIONS(2569), - [aux_sym_cmd_identifier_token27] = ACTIONS(2569), - [aux_sym_cmd_identifier_token28] = ACTIONS(2569), - [aux_sym_cmd_identifier_token29] = ACTIONS(2569), - [aux_sym_cmd_identifier_token30] = ACTIONS(2569), - [aux_sym_cmd_identifier_token31] = ACTIONS(2569), - [aux_sym_cmd_identifier_token32] = ACTIONS(2569), - [aux_sym_cmd_identifier_token33] = ACTIONS(2569), - [aux_sym_cmd_identifier_token34] = ACTIONS(2569), - [aux_sym_cmd_identifier_token35] = ACTIONS(2569), - [aux_sym_cmd_identifier_token36] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(2569), - [anon_sym_false] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2569), - [aux_sym_cmd_identifier_token38] = ACTIONS(2569), - [aux_sym_cmd_identifier_token39] = ACTIONS(2569), - [aux_sym_cmd_identifier_token40] = ACTIONS(2569), - [anon_sym_def] = ACTIONS(2569), - [anon_sym_export_DASHenv] = ACTIONS(2569), - [anon_sym_extern] = ACTIONS(2569), - [anon_sym_module] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2569), - [anon_sym_error] = ACTIONS(2569), - [anon_sym_list] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [anon_sym_in] = ACTIONS(2569), - [anon_sym_loop] = ACTIONS(2569), - [anon_sym_make] = ACTIONS(2569), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [anon_sym_else] = ACTIONS(2569), - [anon_sym_match] = ACTIONS(2569), - [anon_sym_RBRACE] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_catch] = ACTIONS(2569), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_source] = ACTIONS(2569), - [anon_sym_source_DASHenv] = ACTIONS(2569), - [anon_sym_register] = ACTIONS(2569), - [anon_sym_hide] = ACTIONS(2569), - [anon_sym_hide_DASHenv] = ACTIONS(2569), - [anon_sym_overlay] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_as] = ACTIONS(2569), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2569), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2569), - [aux_sym__val_number_decimal_token1] = ACTIONS(2569), - [aux_sym__val_number_decimal_token2] = ACTIONS(2569), - [aux_sym__val_number_decimal_token3] = ACTIONS(2569), - [aux_sym__val_number_decimal_token4] = ACTIONS(2569), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(2569), - [sym__str_single_quotes] = ACTIONS(2569), - [sym__str_back_ticks] = ACTIONS(2569), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2569), - [sym__entry_separator] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2569), + [821] = { + [sym_comment] = STATE(821), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(3047), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2571), }, - [630] = { - [sym_comment] = STATE(630), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_alias] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_let_DASHenv] = ACTIONS(2234), - [anon_sym_mut] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [aux_sym_cmd_identifier_token1] = ACTIONS(2234), - [aux_sym_cmd_identifier_token2] = ACTIONS(2234), - [aux_sym_cmd_identifier_token3] = ACTIONS(2234), - [aux_sym_cmd_identifier_token4] = ACTIONS(2234), - [aux_sym_cmd_identifier_token5] = ACTIONS(2234), - [aux_sym_cmd_identifier_token6] = ACTIONS(2234), - [aux_sym_cmd_identifier_token7] = ACTIONS(2234), - [aux_sym_cmd_identifier_token8] = ACTIONS(2234), - [aux_sym_cmd_identifier_token9] = ACTIONS(2234), - [aux_sym_cmd_identifier_token10] = ACTIONS(2234), - [aux_sym_cmd_identifier_token11] = ACTIONS(2234), - [aux_sym_cmd_identifier_token12] = ACTIONS(2234), - [aux_sym_cmd_identifier_token13] = ACTIONS(2234), - [aux_sym_cmd_identifier_token14] = ACTIONS(2234), - [aux_sym_cmd_identifier_token15] = ACTIONS(2234), - [aux_sym_cmd_identifier_token16] = ACTIONS(2234), - [aux_sym_cmd_identifier_token17] = ACTIONS(2234), - [aux_sym_cmd_identifier_token18] = ACTIONS(2234), - [aux_sym_cmd_identifier_token19] = ACTIONS(2234), - [aux_sym_cmd_identifier_token20] = ACTIONS(2234), - [aux_sym_cmd_identifier_token21] = ACTIONS(2234), - [aux_sym_cmd_identifier_token22] = ACTIONS(2234), - [aux_sym_cmd_identifier_token23] = ACTIONS(2234), - [aux_sym_cmd_identifier_token24] = ACTIONS(2234), - [aux_sym_cmd_identifier_token25] = ACTIONS(2234), - [aux_sym_cmd_identifier_token26] = ACTIONS(2234), - [aux_sym_cmd_identifier_token27] = ACTIONS(2234), - [aux_sym_cmd_identifier_token28] = ACTIONS(2234), - [aux_sym_cmd_identifier_token29] = ACTIONS(2234), - [aux_sym_cmd_identifier_token30] = ACTIONS(2234), - [aux_sym_cmd_identifier_token31] = ACTIONS(2234), - [aux_sym_cmd_identifier_token32] = ACTIONS(2234), - [aux_sym_cmd_identifier_token33] = ACTIONS(2234), - [aux_sym_cmd_identifier_token34] = ACTIONS(2234), - [aux_sym_cmd_identifier_token35] = ACTIONS(2234), - [aux_sym_cmd_identifier_token36] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2234), - [anon_sym_false] = ACTIONS(2234), - [anon_sym_null] = ACTIONS(2234), - [aux_sym_cmd_identifier_token38] = ACTIONS(2234), - [aux_sym_cmd_identifier_token39] = ACTIONS(2234), - [aux_sym_cmd_identifier_token40] = ACTIONS(2234), - [anon_sym_def] = ACTIONS(2234), - [anon_sym_export_DASHenv] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_use] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_DOLLAR] = ACTIONS(2234), - [anon_sym_error] = ACTIONS(2234), - [anon_sym_list] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_in] = ACTIONS(2234), - [anon_sym_loop] = ACTIONS(2234), - [anon_sym_make] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2234), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_catch] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_source] = ACTIONS(2234), - [anon_sym_source_DASHenv] = ACTIONS(2234), - [anon_sym_register] = ACTIONS(2234), - [anon_sym_hide] = ACTIONS(2234), - [anon_sym_hide_DASHenv] = ACTIONS(2234), - [anon_sym_overlay] = ACTIONS(2234), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_as] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2234), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2234), - [aux_sym__val_number_decimal_token3] = ACTIONS(2234), - [aux_sym__val_number_decimal_token4] = ACTIONS(2234), - [aux_sym__val_number_token1] = ACTIONS(2234), - [aux_sym__val_number_token2] = ACTIONS(2234), - [aux_sym__val_number_token3] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2234), - [sym__str_single_quotes] = ACTIONS(2234), - [sym__str_back_ticks] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2234), - [sym__entry_separator] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2234), + [822] = { + [sym_comment] = STATE(822), + [ts_builtin_sym_end] = ACTIONS(1765), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_bit_DASHshl] = ACTIONS(1765), + [anon_sym_bit_DASHshr] = ACTIONS(1765), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_BANG_TILDE] = ACTIONS(1765), + [anon_sym_bit_DASHand] = ACTIONS(1765), + [anon_sym_bit_DASHxor] = ACTIONS(1765), + [anon_sym_bit_DASHor] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_xor] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not_DASHin] = ACTIONS(1765), + [anon_sym_starts_DASHwith] = ACTIONS(1765), + [anon_sym_ends_DASHwith] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1765), + [aux_sym_cmd_identifier_token41] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_err_GT] = ACTIONS(1763), + [anon_sym_out_GT] = ACTIONS(1763), + [anon_sym_e_GT] = ACTIONS(1763), + [anon_sym_o_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT] = ACTIONS(1763), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2240), }, - [631] = { - [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(1074), - [anon_sym_alias] = ACTIONS(1074), - [anon_sym_let] = ACTIONS(1074), - [anon_sym_let_DASHenv] = ACTIONS(1074), - [anon_sym_mut] = ACTIONS(1074), - [anon_sym_const] = ACTIONS(1074), - [aux_sym_cmd_identifier_token1] = ACTIONS(1074), - [aux_sym_cmd_identifier_token2] = ACTIONS(1074), - [aux_sym_cmd_identifier_token3] = ACTIONS(1074), - [aux_sym_cmd_identifier_token4] = ACTIONS(1074), - [aux_sym_cmd_identifier_token5] = ACTIONS(1074), - [aux_sym_cmd_identifier_token6] = ACTIONS(1074), - [aux_sym_cmd_identifier_token7] = ACTIONS(1074), - [aux_sym_cmd_identifier_token8] = ACTIONS(1074), - [aux_sym_cmd_identifier_token9] = ACTIONS(1074), - [aux_sym_cmd_identifier_token10] = ACTIONS(1074), - [aux_sym_cmd_identifier_token11] = ACTIONS(1074), - [aux_sym_cmd_identifier_token12] = ACTIONS(1074), - [aux_sym_cmd_identifier_token13] = ACTIONS(1074), - [aux_sym_cmd_identifier_token14] = ACTIONS(1074), - [aux_sym_cmd_identifier_token15] = ACTIONS(1074), - [aux_sym_cmd_identifier_token16] = ACTIONS(1074), - [aux_sym_cmd_identifier_token17] = ACTIONS(1074), - [aux_sym_cmd_identifier_token18] = ACTIONS(1074), - [aux_sym_cmd_identifier_token19] = ACTIONS(1074), - [aux_sym_cmd_identifier_token20] = ACTIONS(1074), - [aux_sym_cmd_identifier_token21] = ACTIONS(1074), - [aux_sym_cmd_identifier_token22] = ACTIONS(1074), - [aux_sym_cmd_identifier_token23] = ACTIONS(1074), - [aux_sym_cmd_identifier_token24] = ACTIONS(1074), - [aux_sym_cmd_identifier_token25] = ACTIONS(1074), - [aux_sym_cmd_identifier_token26] = ACTIONS(1074), - [aux_sym_cmd_identifier_token27] = ACTIONS(1074), - [aux_sym_cmd_identifier_token28] = ACTIONS(1074), - [aux_sym_cmd_identifier_token29] = ACTIONS(1074), - [aux_sym_cmd_identifier_token30] = ACTIONS(1074), - [aux_sym_cmd_identifier_token31] = ACTIONS(1074), - [aux_sym_cmd_identifier_token32] = ACTIONS(1074), - [aux_sym_cmd_identifier_token33] = ACTIONS(1074), - [aux_sym_cmd_identifier_token34] = ACTIONS(1074), - [aux_sym_cmd_identifier_token35] = ACTIONS(1074), - [aux_sym_cmd_identifier_token36] = ACTIONS(1074), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_null] = ACTIONS(1076), - [aux_sym_cmd_identifier_token38] = ACTIONS(1074), - [aux_sym_cmd_identifier_token39] = ACTIONS(1076), - [aux_sym_cmd_identifier_token40] = ACTIONS(1076), - [anon_sym_def] = ACTIONS(1074), - [anon_sym_export_DASHenv] = ACTIONS(1074), - [anon_sym_extern] = ACTIONS(1074), - [anon_sym_module] = ACTIONS(1074), - [anon_sym_use] = ACTIONS(1074), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_error] = ACTIONS(1074), - [anon_sym_list] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_in] = ACTIONS(1074), - [anon_sym_loop] = ACTIONS(1074), - [anon_sym_make] = ACTIONS(1074), - [anon_sym_while] = ACTIONS(1074), - [anon_sym_do] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1074), - [anon_sym_else] = ACTIONS(1074), - [anon_sym_match] = ACTIONS(1074), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_try] = ACTIONS(1074), - [anon_sym_catch] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_source] = ACTIONS(1074), - [anon_sym_source_DASHenv] = ACTIONS(1074), - [anon_sym_register] = ACTIONS(1074), - [anon_sym_hide] = ACTIONS(1074), - [anon_sym_hide_DASHenv] = ACTIONS(1074), - [anon_sym_overlay] = ACTIONS(1074), - [anon_sym_new] = ACTIONS(1074), - [anon_sym_as] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1074), - [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), - [anon_sym_PLUS] = ACTIONS(1074), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1076), + [823] = { + [sym_comment] = STATE(823), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_bit_DASHshl] = ACTIONS(1765), + [anon_sym_bit_DASHshr] = ACTIONS(1765), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_BANG_TILDE] = ACTIONS(1765), + [anon_sym_bit_DASHand] = ACTIONS(1765), + [anon_sym_bit_DASHxor] = ACTIONS(1765), + [anon_sym_bit_DASHor] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_xor] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not_DASHin] = ACTIONS(1765), + [anon_sym_starts_DASHwith] = ACTIONS(1765), + [anon_sym_ends_DASHwith] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1765), + [aux_sym_cmd_identifier_token41] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_err_GT] = ACTIONS(1763), + [anon_sym_out_GT] = ACTIONS(1763), + [anon_sym_e_GT] = ACTIONS(1763), + [anon_sym_o_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT] = ACTIONS(1763), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(3), }, - [632] = { - [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(2569), - [anon_sym_alias] = ACTIONS(2569), - [anon_sym_let] = ACTIONS(2569), - [anon_sym_let_DASHenv] = ACTIONS(2569), - [anon_sym_mut] = ACTIONS(2569), - [anon_sym_const] = ACTIONS(2569), - [aux_sym_cmd_identifier_token1] = ACTIONS(2569), - [aux_sym_cmd_identifier_token2] = ACTIONS(2569), - [aux_sym_cmd_identifier_token3] = ACTIONS(2569), - [aux_sym_cmd_identifier_token4] = ACTIONS(2569), - [aux_sym_cmd_identifier_token5] = ACTIONS(2569), - [aux_sym_cmd_identifier_token6] = ACTIONS(2569), - [aux_sym_cmd_identifier_token7] = ACTIONS(2569), - [aux_sym_cmd_identifier_token8] = ACTIONS(2569), - [aux_sym_cmd_identifier_token9] = ACTIONS(2569), - [aux_sym_cmd_identifier_token10] = ACTIONS(2569), - [aux_sym_cmd_identifier_token11] = ACTIONS(2569), - [aux_sym_cmd_identifier_token12] = ACTIONS(2569), - [aux_sym_cmd_identifier_token13] = ACTIONS(2569), - [aux_sym_cmd_identifier_token14] = ACTIONS(2569), - [aux_sym_cmd_identifier_token15] = ACTIONS(2569), - [aux_sym_cmd_identifier_token16] = ACTIONS(2569), - [aux_sym_cmd_identifier_token17] = ACTIONS(2569), - [aux_sym_cmd_identifier_token18] = ACTIONS(2569), - [aux_sym_cmd_identifier_token19] = ACTIONS(2569), - [aux_sym_cmd_identifier_token20] = ACTIONS(2569), - [aux_sym_cmd_identifier_token21] = ACTIONS(2569), - [aux_sym_cmd_identifier_token22] = ACTIONS(2569), - [aux_sym_cmd_identifier_token23] = ACTIONS(2569), - [aux_sym_cmd_identifier_token24] = ACTIONS(2569), - [aux_sym_cmd_identifier_token25] = ACTIONS(2569), - [aux_sym_cmd_identifier_token26] = ACTIONS(2569), - [aux_sym_cmd_identifier_token27] = ACTIONS(2569), - [aux_sym_cmd_identifier_token28] = ACTIONS(2569), - [aux_sym_cmd_identifier_token29] = ACTIONS(2569), - [aux_sym_cmd_identifier_token30] = ACTIONS(2569), - [aux_sym_cmd_identifier_token31] = ACTIONS(2569), - [aux_sym_cmd_identifier_token32] = ACTIONS(2569), - [aux_sym_cmd_identifier_token33] = ACTIONS(2569), - [aux_sym_cmd_identifier_token34] = ACTIONS(2569), - [aux_sym_cmd_identifier_token35] = ACTIONS(2569), - [aux_sym_cmd_identifier_token36] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(2571), - [anon_sym_false] = ACTIONS(2571), - [anon_sym_null] = ACTIONS(2571), - [aux_sym_cmd_identifier_token38] = ACTIONS(2569), - [aux_sym_cmd_identifier_token39] = ACTIONS(2571), - [aux_sym_cmd_identifier_token40] = ACTIONS(2571), - [anon_sym_def] = ACTIONS(2569), - [anon_sym_export_DASHenv] = ACTIONS(2569), - [anon_sym_extern] = ACTIONS(2569), - [anon_sym_module] = ACTIONS(2569), - [anon_sym_use] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(2571), - [anon_sym_error] = ACTIONS(2569), - [anon_sym_list] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [anon_sym_in] = ACTIONS(2569), - [anon_sym_loop] = ACTIONS(2569), - [anon_sym_make] = ACTIONS(2569), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [anon_sym_else] = ACTIONS(2569), - [anon_sym_match] = ACTIONS(2569), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_catch] = ACTIONS(2569), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_source] = ACTIONS(2569), - [anon_sym_source_DASHenv] = ACTIONS(2569), - [anon_sym_register] = ACTIONS(2569), - [anon_sym_hide] = ACTIONS(2569), - [anon_sym_hide_DASHenv] = ACTIONS(2569), - [anon_sym_overlay] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_as] = ACTIONS(2569), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2571), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2571), - [aux_sym__val_number_decimal_token1] = ACTIONS(2569), - [aux_sym__val_number_decimal_token2] = ACTIONS(2571), - [aux_sym__val_number_decimal_token3] = ACTIONS(2571), - [aux_sym__val_number_decimal_token4] = ACTIONS(2571), - [aux_sym__val_number_token1] = ACTIONS(2571), - [aux_sym__val_number_token2] = ACTIONS(2571), - [aux_sym__val_number_token3] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [sym__str_single_quotes] = ACTIONS(2571), - [sym__str_back_ticks] = ACTIONS(2571), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2571), - [anon_sym_PLUS] = ACTIONS(2569), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2571), + [824] = { + [sym_comment] = STATE(824), + [ts_builtin_sym_end] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(3), }, - [633] = { - [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(2516), - [anon_sym_alias] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2516), - [anon_sym_let_DASHenv] = ACTIONS(2516), - [anon_sym_mut] = ACTIONS(2516), - [anon_sym_const] = ACTIONS(2516), - [aux_sym_cmd_identifier_token1] = ACTIONS(2516), - [aux_sym_cmd_identifier_token2] = ACTIONS(2516), - [aux_sym_cmd_identifier_token3] = ACTIONS(2516), - [aux_sym_cmd_identifier_token4] = ACTIONS(2516), - [aux_sym_cmd_identifier_token5] = ACTIONS(2516), - [aux_sym_cmd_identifier_token6] = ACTIONS(2516), - [aux_sym_cmd_identifier_token7] = ACTIONS(2516), - [aux_sym_cmd_identifier_token8] = ACTIONS(2516), - [aux_sym_cmd_identifier_token9] = ACTIONS(2516), - [aux_sym_cmd_identifier_token10] = ACTIONS(2516), - [aux_sym_cmd_identifier_token11] = ACTIONS(2516), - [aux_sym_cmd_identifier_token12] = ACTIONS(2516), - [aux_sym_cmd_identifier_token13] = ACTIONS(2516), - [aux_sym_cmd_identifier_token14] = ACTIONS(2516), - [aux_sym_cmd_identifier_token15] = ACTIONS(2516), - [aux_sym_cmd_identifier_token16] = ACTIONS(2516), - [aux_sym_cmd_identifier_token17] = ACTIONS(2516), - [aux_sym_cmd_identifier_token18] = ACTIONS(2516), - [aux_sym_cmd_identifier_token19] = ACTIONS(2516), - [aux_sym_cmd_identifier_token20] = ACTIONS(2516), - [aux_sym_cmd_identifier_token21] = ACTIONS(2516), - [aux_sym_cmd_identifier_token22] = ACTIONS(2516), - [aux_sym_cmd_identifier_token23] = ACTIONS(2516), - [aux_sym_cmd_identifier_token24] = ACTIONS(2516), - [aux_sym_cmd_identifier_token25] = ACTIONS(2516), - [aux_sym_cmd_identifier_token26] = ACTIONS(2516), - [aux_sym_cmd_identifier_token27] = ACTIONS(2516), - [aux_sym_cmd_identifier_token28] = ACTIONS(2516), - [aux_sym_cmd_identifier_token29] = ACTIONS(2516), - [aux_sym_cmd_identifier_token30] = ACTIONS(2516), - [aux_sym_cmd_identifier_token31] = ACTIONS(2516), - [aux_sym_cmd_identifier_token32] = ACTIONS(2516), - [aux_sym_cmd_identifier_token33] = ACTIONS(2516), - [aux_sym_cmd_identifier_token34] = ACTIONS(2516), - [aux_sym_cmd_identifier_token35] = ACTIONS(2516), - [aux_sym_cmd_identifier_token36] = ACTIONS(2516), - [anon_sym_true] = ACTIONS(2518), - [anon_sym_false] = ACTIONS(2518), - [anon_sym_null] = ACTIONS(2518), - [aux_sym_cmd_identifier_token38] = ACTIONS(2516), - [aux_sym_cmd_identifier_token39] = ACTIONS(2518), - [aux_sym_cmd_identifier_token40] = ACTIONS(2518), - [anon_sym_def] = ACTIONS(2516), - [anon_sym_export_DASHenv] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2516), - [anon_sym_module] = ACTIONS(2516), - [anon_sym_use] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_error] = ACTIONS(2516), - [anon_sym_list] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_in] = ACTIONS(2516), - [anon_sym_loop] = ACTIONS(2516), - [anon_sym_make] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_do] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_else] = ACTIONS(2516), - [anon_sym_match] = ACTIONS(2516), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2516), - [anon_sym_catch] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_source] = ACTIONS(2516), - [anon_sym_source_DASHenv] = ACTIONS(2516), - [anon_sym_register] = ACTIONS(2516), - [anon_sym_hide] = ACTIONS(2516), - [anon_sym_hide_DASHenv] = ACTIONS(2516), - [anon_sym_overlay] = ACTIONS(2516), - [anon_sym_new] = ACTIONS(2516), - [anon_sym_as] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2516), - [aux_sym__val_number_decimal_token2] = ACTIONS(2518), - [aux_sym__val_number_decimal_token3] = ACTIONS(2518), - [aux_sym__val_number_decimal_token4] = ACTIONS(2518), - [aux_sym__val_number_token1] = ACTIONS(2518), - [aux_sym__val_number_token2] = ACTIONS(2518), - [aux_sym__val_number_token3] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [sym__str_single_quotes] = ACTIONS(2518), - [sym__str_back_ticks] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2516), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2518), + [825] = { + [sym_comment] = STATE(825), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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(1621), + [anon_sym_out_GT_GT] = ACTIONS(1621), + [anon_sym_e_GT_GT] = ACTIONS(1621), + [anon_sym_o_GT_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(3), }, - [634] = { - [sym_comment] = STATE(634), - [anon_sym_export] = ACTIONS(2520), - [anon_sym_alias] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_DASHenv] = ACTIONS(2520), - [anon_sym_mut] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [aux_sym_cmd_identifier_token1] = ACTIONS(2520), - [aux_sym_cmd_identifier_token2] = ACTIONS(2520), - [aux_sym_cmd_identifier_token3] = ACTIONS(2520), - [aux_sym_cmd_identifier_token4] = ACTIONS(2520), - [aux_sym_cmd_identifier_token5] = ACTIONS(2520), - [aux_sym_cmd_identifier_token6] = ACTIONS(2520), - [aux_sym_cmd_identifier_token7] = ACTIONS(2520), - [aux_sym_cmd_identifier_token8] = ACTIONS(2520), - [aux_sym_cmd_identifier_token9] = ACTIONS(2520), - [aux_sym_cmd_identifier_token10] = ACTIONS(2520), - [aux_sym_cmd_identifier_token11] = ACTIONS(2520), - [aux_sym_cmd_identifier_token12] = ACTIONS(2520), - [aux_sym_cmd_identifier_token13] = ACTIONS(2520), - [aux_sym_cmd_identifier_token14] = ACTIONS(2520), - [aux_sym_cmd_identifier_token15] = ACTIONS(2520), - [aux_sym_cmd_identifier_token16] = ACTIONS(2520), - [aux_sym_cmd_identifier_token17] = ACTIONS(2520), - [aux_sym_cmd_identifier_token18] = ACTIONS(2520), - [aux_sym_cmd_identifier_token19] = ACTIONS(2520), - [aux_sym_cmd_identifier_token20] = ACTIONS(2520), - [aux_sym_cmd_identifier_token21] = ACTIONS(2520), - [aux_sym_cmd_identifier_token22] = ACTIONS(2520), - [aux_sym_cmd_identifier_token23] = ACTIONS(2520), - [aux_sym_cmd_identifier_token24] = ACTIONS(2520), - [aux_sym_cmd_identifier_token25] = ACTIONS(2520), - [aux_sym_cmd_identifier_token26] = ACTIONS(2520), - [aux_sym_cmd_identifier_token27] = ACTIONS(2520), - [aux_sym_cmd_identifier_token28] = ACTIONS(2520), - [aux_sym_cmd_identifier_token29] = ACTIONS(2520), - [aux_sym_cmd_identifier_token30] = ACTIONS(2520), - [aux_sym_cmd_identifier_token31] = ACTIONS(2520), - [aux_sym_cmd_identifier_token32] = ACTIONS(2520), - [aux_sym_cmd_identifier_token33] = ACTIONS(2520), - [aux_sym_cmd_identifier_token34] = ACTIONS(2520), - [aux_sym_cmd_identifier_token35] = ACTIONS(2520), - [aux_sym_cmd_identifier_token36] = ACTIONS(2520), - [anon_sym_true] = ACTIONS(2522), - [anon_sym_false] = ACTIONS(2522), - [anon_sym_null] = ACTIONS(2522), - [aux_sym_cmd_identifier_token38] = ACTIONS(2520), - [aux_sym_cmd_identifier_token39] = ACTIONS(2522), - [aux_sym_cmd_identifier_token40] = ACTIONS(2522), - [anon_sym_def] = ACTIONS(2520), - [anon_sym_export_DASHenv] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_module] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_DOLLAR] = ACTIONS(2522), - [anon_sym_error] = ACTIONS(2520), - [anon_sym_list] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_in] = ACTIONS(2520), - [anon_sym_loop] = ACTIONS(2520), - [anon_sym_make] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_catch] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_source] = ACTIONS(2520), - [anon_sym_source_DASHenv] = ACTIONS(2520), - [anon_sym_register] = ACTIONS(2520), - [anon_sym_hide] = ACTIONS(2520), - [anon_sym_hide_DASHenv] = ACTIONS(2520), - [anon_sym_overlay] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2522), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2522), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2522), - [aux_sym__val_number_decimal_token4] = ACTIONS(2522), - [aux_sym__val_number_token1] = ACTIONS(2522), - [aux_sym__val_number_token2] = ACTIONS(2522), - [aux_sym__val_number_token3] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2522), - [sym__str_single_quotes] = ACTIONS(2522), - [sym__str_back_ticks] = ACTIONS(2522), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2522), + [826] = { + [sym_comment] = STATE(826), + [ts_builtin_sym_end] = ACTIONS(1721), + [anon_sym_STAR_STAR] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_SLASH] = ACTIONS(3051), + [anon_sym_mod] = ACTIONS(3049), + [anon_sym_SLASH_SLASH] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3051), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_bit_DASHshl] = ACTIONS(3049), + [anon_sym_bit_DASHshr] = ACTIONS(3049), + [anon_sym_EQ_TILDE] = ACTIONS(3049), + [anon_sym_BANG_TILDE] = ACTIONS(3049), + [anon_sym_bit_DASHand] = ACTIONS(3049), + [anon_sym_bit_DASHxor] = ACTIONS(3049), + [anon_sym_bit_DASHor] = ACTIONS(3049), + [anon_sym_and] = ACTIONS(3049), + [anon_sym_xor] = ACTIONS(3049), + [anon_sym_or] = ACTIONS(3049), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_not_DASHin] = ACTIONS(3049), + [anon_sym_starts_DASHwith] = ACTIONS(3049), + [anon_sym_ends_DASHwith] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_LT_EQ] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_EQ] = ACTIONS(3049), + [aux_sym_cmd_identifier_token41] = ACTIONS(3053), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(3055), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3057), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3057), + [sym_filesize_unit] = ACTIONS(3059), + [sym_duration_unit] = ACTIONS(3061), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(3), }, - [635] = { - [sym_comment] = STATE(635), - [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(1364), - [aux_sym_cmd_identifier_token2] = ACTIONS(1364), - [aux_sym_cmd_identifier_token3] = ACTIONS(1364), - [aux_sym_cmd_identifier_token4] = ACTIONS(1364), - [aux_sym_cmd_identifier_token5] = ACTIONS(1364), - [aux_sym_cmd_identifier_token6] = ACTIONS(1364), - [aux_sym_cmd_identifier_token7] = ACTIONS(1364), - [aux_sym_cmd_identifier_token8] = ACTIONS(1364), - [aux_sym_cmd_identifier_token9] = ACTIONS(1364), - [aux_sym_cmd_identifier_token10] = ACTIONS(1364), - [aux_sym_cmd_identifier_token11] = ACTIONS(1364), - [aux_sym_cmd_identifier_token12] = ACTIONS(1364), - [aux_sym_cmd_identifier_token13] = ACTIONS(1364), - [aux_sym_cmd_identifier_token14] = ACTIONS(1364), - [aux_sym_cmd_identifier_token15] = ACTIONS(1364), - [aux_sym_cmd_identifier_token16] = ACTIONS(1364), - [aux_sym_cmd_identifier_token17] = ACTIONS(1364), - [aux_sym_cmd_identifier_token18] = ACTIONS(1364), - [aux_sym_cmd_identifier_token19] = ACTIONS(1364), - [aux_sym_cmd_identifier_token20] = ACTIONS(1364), - [aux_sym_cmd_identifier_token21] = ACTIONS(1364), - [aux_sym_cmd_identifier_token22] = ACTIONS(1364), - [aux_sym_cmd_identifier_token23] = ACTIONS(1364), - [aux_sym_cmd_identifier_token24] = ACTIONS(1364), - [aux_sym_cmd_identifier_token25] = ACTIONS(1364), - [aux_sym_cmd_identifier_token26] = ACTIONS(1364), - [aux_sym_cmd_identifier_token27] = ACTIONS(1364), - [aux_sym_cmd_identifier_token28] = ACTIONS(1364), - [aux_sym_cmd_identifier_token29] = ACTIONS(1364), - [aux_sym_cmd_identifier_token30] = ACTIONS(1364), - [aux_sym_cmd_identifier_token31] = ACTIONS(1364), - [aux_sym_cmd_identifier_token32] = ACTIONS(1364), - [aux_sym_cmd_identifier_token33] = ACTIONS(1364), - [aux_sym_cmd_identifier_token34] = ACTIONS(1364), - [aux_sym_cmd_identifier_token35] = ACTIONS(1364), - [aux_sym_cmd_identifier_token36] = ACTIONS(1364), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [aux_sym_cmd_identifier_token38] = ACTIONS(1364), - [aux_sym_cmd_identifier_token39] = ACTIONS(1362), - [aux_sym_cmd_identifier_token40] = ACTIONS(1362), - [sym__newline] = ACTIONS(1362), - [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(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_error] = ACTIONS(1364), - [anon_sym_list] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [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_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(1362), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1364), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_decimal_token4] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1362), + [827] = { + [sym_comment] = STATE(827), + [anon_sym_STAR_STAR] = ACTIONS(3063), + [anon_sym_PLUS_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_mod] = ACTIONS(3063), + [anon_sym_SLASH_SLASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_bit_DASHshl] = ACTIONS(3063), + [anon_sym_bit_DASHshr] = ACTIONS(3063), + [anon_sym_EQ_TILDE] = ACTIONS(3063), + [anon_sym_BANG_TILDE] = ACTIONS(3063), + [anon_sym_bit_DASHand] = ACTIONS(3063), + [anon_sym_bit_DASHxor] = ACTIONS(3063), + [anon_sym_bit_DASHor] = ACTIONS(3063), + [anon_sym_and] = ACTIONS(3063), + [anon_sym_xor] = ACTIONS(3063), + [anon_sym_or] = ACTIONS(3063), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_not_DASHin] = ACTIONS(3063), + [anon_sym_starts_DASHwith] = ACTIONS(3063), + [anon_sym_ends_DASHwith] = ACTIONS(3063), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3063), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3063), + [aux_sym_cmd_identifier_token41] = ACTIONS(3067), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), + [sym_filesize_unit] = ACTIONS(3069), + [sym_duration_unit] = ACTIONS(3071), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(3), }, - [636] = { - [sym_comment] = STATE(636), - [anon_sym_export] = ACTIONS(2222), - [anon_sym_alias] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_let_DASHenv] = ACTIONS(2222), - [anon_sym_mut] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [aux_sym_cmd_identifier_token1] = ACTIONS(2222), - [aux_sym_cmd_identifier_token2] = ACTIONS(2222), - [aux_sym_cmd_identifier_token3] = ACTIONS(2222), - [aux_sym_cmd_identifier_token4] = ACTIONS(2222), - [aux_sym_cmd_identifier_token5] = ACTIONS(2222), - [aux_sym_cmd_identifier_token6] = ACTIONS(2222), - [aux_sym_cmd_identifier_token7] = ACTIONS(2222), - [aux_sym_cmd_identifier_token8] = ACTIONS(2222), - [aux_sym_cmd_identifier_token9] = ACTIONS(2222), - [aux_sym_cmd_identifier_token10] = ACTIONS(2222), - [aux_sym_cmd_identifier_token11] = ACTIONS(2222), - [aux_sym_cmd_identifier_token12] = ACTIONS(2222), - [aux_sym_cmd_identifier_token13] = ACTIONS(2222), - [aux_sym_cmd_identifier_token14] = ACTIONS(2222), - [aux_sym_cmd_identifier_token15] = ACTIONS(2222), - [aux_sym_cmd_identifier_token16] = ACTIONS(2222), - [aux_sym_cmd_identifier_token17] = ACTIONS(2222), - [aux_sym_cmd_identifier_token18] = ACTIONS(2222), - [aux_sym_cmd_identifier_token19] = ACTIONS(2222), - [aux_sym_cmd_identifier_token20] = ACTIONS(2222), - [aux_sym_cmd_identifier_token21] = ACTIONS(2222), - [aux_sym_cmd_identifier_token22] = ACTIONS(2222), - [aux_sym_cmd_identifier_token23] = ACTIONS(2222), - [aux_sym_cmd_identifier_token24] = ACTIONS(2222), - [aux_sym_cmd_identifier_token25] = ACTIONS(2222), - [aux_sym_cmd_identifier_token26] = ACTIONS(2222), - [aux_sym_cmd_identifier_token27] = ACTIONS(2222), - [aux_sym_cmd_identifier_token28] = ACTIONS(2222), - [aux_sym_cmd_identifier_token29] = ACTIONS(2222), - [aux_sym_cmd_identifier_token30] = ACTIONS(2222), - [aux_sym_cmd_identifier_token31] = ACTIONS(2222), - [aux_sym_cmd_identifier_token32] = ACTIONS(2222), - [aux_sym_cmd_identifier_token33] = ACTIONS(2222), - [aux_sym_cmd_identifier_token34] = ACTIONS(2222), - [aux_sym_cmd_identifier_token35] = ACTIONS(2222), - [aux_sym_cmd_identifier_token36] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [anon_sym_null] = ACTIONS(2228), - [aux_sym_cmd_identifier_token38] = ACTIONS(2222), - [aux_sym_cmd_identifier_token39] = ACTIONS(2228), - [aux_sym_cmd_identifier_token40] = ACTIONS(2228), - [anon_sym_def] = ACTIONS(2222), - [anon_sym_export_DASHenv] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_module] = ACTIONS(2222), - [anon_sym_use] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2228), - [anon_sym_error] = ACTIONS(2222), - [anon_sym_list] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2222), - [anon_sym_loop] = ACTIONS(2222), - [anon_sym_make] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2222), - [anon_sym_match] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_catch] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_source] = ACTIONS(2222), - [anon_sym_source_DASHenv] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_hide] = ACTIONS(2222), - [anon_sym_hide_DASHenv] = ACTIONS(2222), - [anon_sym_overlay] = ACTIONS(2222), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_as] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2228), - [aux_sym__val_number_decimal_token1] = ACTIONS(2222), - [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(2222), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2228), + [828] = { + [sym_comment] = STATE(828), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3029), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, - [637] = { - [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(2565), - [anon_sym_alias] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_let_DASHenv] = ACTIONS(2565), - [anon_sym_mut] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [aux_sym_cmd_identifier_token1] = ACTIONS(2565), - [aux_sym_cmd_identifier_token2] = ACTIONS(2565), - [aux_sym_cmd_identifier_token3] = ACTIONS(2565), - [aux_sym_cmd_identifier_token4] = ACTIONS(2565), - [aux_sym_cmd_identifier_token5] = ACTIONS(2565), - [aux_sym_cmd_identifier_token6] = ACTIONS(2565), - [aux_sym_cmd_identifier_token7] = ACTIONS(2565), - [aux_sym_cmd_identifier_token8] = ACTIONS(2565), - [aux_sym_cmd_identifier_token9] = ACTIONS(2565), - [aux_sym_cmd_identifier_token10] = ACTIONS(2565), - [aux_sym_cmd_identifier_token11] = ACTIONS(2565), - [aux_sym_cmd_identifier_token12] = ACTIONS(2565), - [aux_sym_cmd_identifier_token13] = ACTIONS(2565), - [aux_sym_cmd_identifier_token14] = ACTIONS(2565), - [aux_sym_cmd_identifier_token15] = ACTIONS(2565), - [aux_sym_cmd_identifier_token16] = ACTIONS(2565), - [aux_sym_cmd_identifier_token17] = ACTIONS(2565), - [aux_sym_cmd_identifier_token18] = ACTIONS(2565), - [aux_sym_cmd_identifier_token19] = ACTIONS(2565), - [aux_sym_cmd_identifier_token20] = ACTIONS(2565), - [aux_sym_cmd_identifier_token21] = ACTIONS(2565), - [aux_sym_cmd_identifier_token22] = ACTIONS(2565), - [aux_sym_cmd_identifier_token23] = ACTIONS(2565), - [aux_sym_cmd_identifier_token24] = ACTIONS(2565), - [aux_sym_cmd_identifier_token25] = ACTIONS(2565), - [aux_sym_cmd_identifier_token26] = ACTIONS(2565), - [aux_sym_cmd_identifier_token27] = ACTIONS(2565), - [aux_sym_cmd_identifier_token28] = ACTIONS(2565), - [aux_sym_cmd_identifier_token29] = ACTIONS(2565), - [aux_sym_cmd_identifier_token30] = ACTIONS(2565), - [aux_sym_cmd_identifier_token31] = ACTIONS(2565), - [aux_sym_cmd_identifier_token32] = ACTIONS(2565), - [aux_sym_cmd_identifier_token33] = ACTIONS(2565), - [aux_sym_cmd_identifier_token34] = ACTIONS(2565), - [aux_sym_cmd_identifier_token35] = ACTIONS(2565), - [aux_sym_cmd_identifier_token36] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(2567), - [anon_sym_false] = ACTIONS(2567), - [anon_sym_null] = ACTIONS(2567), - [aux_sym_cmd_identifier_token38] = ACTIONS(2565), - [aux_sym_cmd_identifier_token39] = ACTIONS(2567), - [aux_sym_cmd_identifier_token40] = ACTIONS(2567), - [anon_sym_def] = ACTIONS(2565), - [anon_sym_export_DASHenv] = ACTIONS(2565), - [anon_sym_extern] = ACTIONS(2565), - [anon_sym_module] = ACTIONS(2565), - [anon_sym_use] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_error] = ACTIONS(2565), - [anon_sym_list] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_in] = ACTIONS(2565), - [anon_sym_loop] = ACTIONS(2565), - [anon_sym_make] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [anon_sym_do] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_else] = ACTIONS(2565), - [anon_sym_match] = ACTIONS(2565), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2565), - [anon_sym_catch] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_source] = ACTIONS(2565), - [anon_sym_source_DASHenv] = ACTIONS(2565), - [anon_sym_register] = ACTIONS(2565), - [anon_sym_hide] = ACTIONS(2565), - [anon_sym_hide_DASHenv] = ACTIONS(2565), - [anon_sym_overlay] = ACTIONS(2565), - [anon_sym_new] = ACTIONS(2565), - [anon_sym_as] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2567), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2567), - [aux_sym__val_number_decimal_token1] = ACTIONS(2565), - [aux_sym__val_number_decimal_token2] = ACTIONS(2567), - [aux_sym__val_number_decimal_token3] = ACTIONS(2567), - [aux_sym__val_number_decimal_token4] = ACTIONS(2567), - [aux_sym__val_number_token1] = ACTIONS(2567), - [aux_sym__val_number_token2] = ACTIONS(2567), - [aux_sym__val_number_token3] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [sym__str_single_quotes] = ACTIONS(2567), - [sym__str_back_ticks] = ACTIONS(2567), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2567), - [anon_sym_PLUS] = ACTIONS(2565), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2567), + [829] = { + [sym_comment] = STATE(829), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_RPAREN] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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(1621), + [anon_sym_out_GT_GT] = ACTIONS(1621), + [anon_sym_e_GT_GT] = ACTIONS(1621), + [anon_sym_o_GT_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(3), }, - [638] = { - [sym_comment] = STATE(638), - [anon_sym_export] = ACTIONS(2079), - [anon_sym_alias] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_let_DASHenv] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [aux_sym_cmd_identifier_token1] = ACTIONS(2079), - [aux_sym_cmd_identifier_token2] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2079), - [aux_sym_cmd_identifier_token4] = ACTIONS(2079), - [aux_sym_cmd_identifier_token5] = ACTIONS(2079), - [aux_sym_cmd_identifier_token6] = ACTIONS(2079), - [aux_sym_cmd_identifier_token7] = ACTIONS(2079), - [aux_sym_cmd_identifier_token8] = ACTIONS(2079), - [aux_sym_cmd_identifier_token9] = ACTIONS(2079), - [aux_sym_cmd_identifier_token10] = ACTIONS(2079), - [aux_sym_cmd_identifier_token11] = ACTIONS(2079), - [aux_sym_cmd_identifier_token12] = ACTIONS(2079), - [aux_sym_cmd_identifier_token13] = ACTIONS(2079), - [aux_sym_cmd_identifier_token14] = ACTIONS(2079), - [aux_sym_cmd_identifier_token15] = ACTIONS(2079), - [aux_sym_cmd_identifier_token16] = ACTIONS(2079), - [aux_sym_cmd_identifier_token17] = ACTIONS(2079), - [aux_sym_cmd_identifier_token18] = ACTIONS(2079), - [aux_sym_cmd_identifier_token19] = ACTIONS(2079), - [aux_sym_cmd_identifier_token20] = ACTIONS(2079), - [aux_sym_cmd_identifier_token21] = ACTIONS(2079), - [aux_sym_cmd_identifier_token22] = ACTIONS(2079), - [aux_sym_cmd_identifier_token23] = ACTIONS(2079), - [aux_sym_cmd_identifier_token24] = ACTIONS(2079), - [aux_sym_cmd_identifier_token25] = ACTIONS(2079), - [aux_sym_cmd_identifier_token26] = ACTIONS(2079), - [aux_sym_cmd_identifier_token27] = ACTIONS(2079), - [aux_sym_cmd_identifier_token28] = ACTIONS(2079), - [aux_sym_cmd_identifier_token29] = ACTIONS(2079), - [aux_sym_cmd_identifier_token30] = ACTIONS(2079), - [aux_sym_cmd_identifier_token31] = ACTIONS(2079), - [aux_sym_cmd_identifier_token32] = ACTIONS(2079), - [aux_sym_cmd_identifier_token33] = ACTIONS(2079), - [aux_sym_cmd_identifier_token34] = ACTIONS(2079), - [aux_sym_cmd_identifier_token35] = ACTIONS(2079), - [aux_sym_cmd_identifier_token36] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [anon_sym_null] = ACTIONS(2081), - [aux_sym_cmd_identifier_token38] = ACTIONS(2079), - [aux_sym_cmd_identifier_token39] = ACTIONS(2081), - [aux_sym_cmd_identifier_token40] = ACTIONS(2081), - [anon_sym_def] = ACTIONS(2079), - [anon_sym_export_DASHenv] = ACTIONS(2079), - [anon_sym_extern] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2081), - [anon_sym_error] = ACTIONS(2079), - [anon_sym_list] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_in] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_make] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_else] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_catch] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_source] = ACTIONS(2079), - [anon_sym_source_DASHenv] = ACTIONS(2079), - [anon_sym_register] = ACTIONS(2079), - [anon_sym_hide] = ACTIONS(2079), - [anon_sym_hide_DASHenv] = ACTIONS(2079), - [anon_sym_overlay] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2081), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2081), - [aux_sym__val_number_decimal_token1] = ACTIONS(2079), - [aux_sym__val_number_decimal_token2] = ACTIONS(2081), - [aux_sym__val_number_decimal_token3] = ACTIONS(2081), - [aux_sym__val_number_decimal_token4] = ACTIONS(2081), - [aux_sym__val_number_token1] = ACTIONS(2081), - [aux_sym__val_number_token2] = ACTIONS(2081), - [aux_sym__val_number_token3] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [sym__str_single_quotes] = ACTIONS(2081), - [sym__str_back_ticks] = ACTIONS(2081), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2081), + [830] = { + [sym_comment] = STATE(830), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(3073), + [aux_sym__immediate_decimal_token2] = ACTIONS(3075), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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(1621), + [anon_sym_out_GT_GT] = ACTIONS(1621), + [anon_sym_e_GT_GT] = ACTIONS(1621), + [anon_sym_o_GT_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(3), }, - [639] = { - [sym_comment] = STATE(639), - [anon_sym_export] = ACTIONS(2113), - [anon_sym_alias] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2113), - [anon_sym_let_DASHenv] = ACTIONS(2113), - [anon_sym_mut] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [aux_sym_cmd_identifier_token1] = ACTIONS(2113), - [aux_sym_cmd_identifier_token2] = ACTIONS(2113), - [aux_sym_cmd_identifier_token3] = ACTIONS(2113), - [aux_sym_cmd_identifier_token4] = ACTIONS(2113), - [aux_sym_cmd_identifier_token5] = ACTIONS(2113), - [aux_sym_cmd_identifier_token6] = ACTIONS(2113), - [aux_sym_cmd_identifier_token7] = ACTIONS(2113), - [aux_sym_cmd_identifier_token8] = ACTIONS(2113), - [aux_sym_cmd_identifier_token9] = ACTIONS(2113), - [aux_sym_cmd_identifier_token10] = ACTIONS(2113), - [aux_sym_cmd_identifier_token11] = ACTIONS(2113), - [aux_sym_cmd_identifier_token12] = ACTIONS(2113), - [aux_sym_cmd_identifier_token13] = ACTIONS(2113), - [aux_sym_cmd_identifier_token14] = ACTIONS(2113), - [aux_sym_cmd_identifier_token15] = ACTIONS(2113), - [aux_sym_cmd_identifier_token16] = ACTIONS(2113), - [aux_sym_cmd_identifier_token17] = ACTIONS(2113), - [aux_sym_cmd_identifier_token18] = ACTIONS(2113), - [aux_sym_cmd_identifier_token19] = ACTIONS(2113), - [aux_sym_cmd_identifier_token20] = ACTIONS(2113), - [aux_sym_cmd_identifier_token21] = ACTIONS(2113), - [aux_sym_cmd_identifier_token22] = ACTIONS(2113), - [aux_sym_cmd_identifier_token23] = ACTIONS(2113), - [aux_sym_cmd_identifier_token24] = ACTIONS(2113), - [aux_sym_cmd_identifier_token25] = ACTIONS(2113), - [aux_sym_cmd_identifier_token26] = ACTIONS(2113), - [aux_sym_cmd_identifier_token27] = ACTIONS(2113), - [aux_sym_cmd_identifier_token28] = ACTIONS(2113), - [aux_sym_cmd_identifier_token29] = ACTIONS(2113), - [aux_sym_cmd_identifier_token30] = ACTIONS(2113), - [aux_sym_cmd_identifier_token31] = ACTIONS(2113), - [aux_sym_cmd_identifier_token32] = ACTIONS(2113), - [aux_sym_cmd_identifier_token33] = ACTIONS(2113), - [aux_sym_cmd_identifier_token34] = ACTIONS(2113), - [aux_sym_cmd_identifier_token35] = ACTIONS(2113), - [aux_sym_cmd_identifier_token36] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_null] = ACTIONS(2119), - [aux_sym_cmd_identifier_token38] = ACTIONS(2113), - [aux_sym_cmd_identifier_token39] = ACTIONS(2119), - [aux_sym_cmd_identifier_token40] = ACTIONS(2119), - [anon_sym_def] = ACTIONS(2113), - [anon_sym_export_DASHenv] = ACTIONS(2113), - [anon_sym_extern] = ACTIONS(2113), - [anon_sym_module] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_DOLLAR] = ACTIONS(2119), - [anon_sym_error] = ACTIONS(2113), - [anon_sym_list] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_in] = ACTIONS(2113), - [anon_sym_loop] = ACTIONS(2113), - [anon_sym_make] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_do] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_else] = ACTIONS(2113), - [anon_sym_match] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_try] = ACTIONS(2113), - [anon_sym_catch] = ACTIONS(2113), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_source] = ACTIONS(2113), - [anon_sym_source_DASHenv] = ACTIONS(2113), - [anon_sym_register] = ACTIONS(2113), - [anon_sym_hide] = ACTIONS(2113), - [anon_sym_hide_DASHenv] = ACTIONS(2113), - [anon_sym_overlay] = ACTIONS(2113), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_as] = ACTIONS(2113), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2119), - [aux_sym__val_number_decimal_token1] = ACTIONS(2113), - [aux_sym__val_number_decimal_token2] = ACTIONS(2119), - [aux_sym__val_number_decimal_token3] = ACTIONS(2119), - [aux_sym__val_number_decimal_token4] = ACTIONS(2119), - [aux_sym__val_number_token1] = ACTIONS(2119), - [aux_sym__val_number_token2] = ACTIONS(2119), - [aux_sym__val_number_token3] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [sym__str_single_quotes] = ACTIONS(2119), - [sym__str_back_ticks] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2119), + [831] = { + [sym_comment] = STATE(831), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(3077), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3079), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, - [640] = { - [sym_comment] = STATE(640), - [anon_sym_export] = ACTIONS(2206), - [anon_sym_alias] = ACTIONS(2206), - [anon_sym_let] = ACTIONS(2206), - [anon_sym_let_DASHenv] = ACTIONS(2206), - [anon_sym_mut] = ACTIONS(2206), - [anon_sym_const] = ACTIONS(2206), - [aux_sym_cmd_identifier_token1] = ACTIONS(2206), - [aux_sym_cmd_identifier_token2] = ACTIONS(2206), - [aux_sym_cmd_identifier_token3] = ACTIONS(2206), - [aux_sym_cmd_identifier_token4] = ACTIONS(2206), - [aux_sym_cmd_identifier_token5] = ACTIONS(2206), - [aux_sym_cmd_identifier_token6] = ACTIONS(2206), - [aux_sym_cmd_identifier_token7] = ACTIONS(2206), - [aux_sym_cmd_identifier_token8] = ACTIONS(2206), - [aux_sym_cmd_identifier_token9] = ACTIONS(2206), - [aux_sym_cmd_identifier_token10] = ACTIONS(2206), - [aux_sym_cmd_identifier_token11] = ACTIONS(2206), - [aux_sym_cmd_identifier_token12] = ACTIONS(2206), - [aux_sym_cmd_identifier_token13] = ACTIONS(2206), - [aux_sym_cmd_identifier_token14] = ACTIONS(2206), - [aux_sym_cmd_identifier_token15] = ACTIONS(2206), - [aux_sym_cmd_identifier_token16] = ACTIONS(2206), - [aux_sym_cmd_identifier_token17] = ACTIONS(2206), - [aux_sym_cmd_identifier_token18] = ACTIONS(2206), - [aux_sym_cmd_identifier_token19] = ACTIONS(2206), - [aux_sym_cmd_identifier_token20] = ACTIONS(2206), - [aux_sym_cmd_identifier_token21] = ACTIONS(2206), - [aux_sym_cmd_identifier_token22] = ACTIONS(2206), - [aux_sym_cmd_identifier_token23] = ACTIONS(2206), - [aux_sym_cmd_identifier_token24] = ACTIONS(2206), - [aux_sym_cmd_identifier_token25] = ACTIONS(2206), - [aux_sym_cmd_identifier_token26] = ACTIONS(2206), - [aux_sym_cmd_identifier_token27] = ACTIONS(2206), - [aux_sym_cmd_identifier_token28] = ACTIONS(2206), - [aux_sym_cmd_identifier_token29] = ACTIONS(2206), - [aux_sym_cmd_identifier_token30] = ACTIONS(2206), - [aux_sym_cmd_identifier_token31] = ACTIONS(2206), - [aux_sym_cmd_identifier_token32] = ACTIONS(2206), - [aux_sym_cmd_identifier_token33] = ACTIONS(2206), - [aux_sym_cmd_identifier_token34] = ACTIONS(2206), - [aux_sym_cmd_identifier_token35] = ACTIONS(2206), - [aux_sym_cmd_identifier_token36] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_null] = ACTIONS(2212), - [aux_sym_cmd_identifier_token38] = ACTIONS(2206), - [aux_sym_cmd_identifier_token39] = ACTIONS(2212), - [aux_sym_cmd_identifier_token40] = ACTIONS(2212), - [anon_sym_def] = ACTIONS(2206), - [anon_sym_export_DASHenv] = ACTIONS(2206), - [anon_sym_extern] = ACTIONS(2206), - [anon_sym_module] = ACTIONS(2206), - [anon_sym_use] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_DOLLAR] = ACTIONS(2212), - [anon_sym_error] = ACTIONS(2206), - [anon_sym_list] = ACTIONS(2206), - [anon_sym_DASH] = ACTIONS(2206), - [anon_sym_break] = ACTIONS(2206), - [anon_sym_continue] = ACTIONS(2206), - [anon_sym_for] = ACTIONS(2206), - [anon_sym_in] = ACTIONS(2206), - [anon_sym_loop] = ACTIONS(2206), - [anon_sym_make] = ACTIONS(2206), - [anon_sym_while] = ACTIONS(2206), - [anon_sym_do] = ACTIONS(2206), - [anon_sym_if] = ACTIONS(2206), - [anon_sym_else] = ACTIONS(2206), - [anon_sym_match] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2206), - [anon_sym_catch] = ACTIONS(2206), - [anon_sym_return] = ACTIONS(2206), - [anon_sym_source] = ACTIONS(2206), - [anon_sym_source_DASHenv] = ACTIONS(2206), - [anon_sym_register] = ACTIONS(2206), - [anon_sym_hide] = ACTIONS(2206), - [anon_sym_hide_DASHenv] = ACTIONS(2206), - [anon_sym_overlay] = ACTIONS(2206), - [anon_sym_new] = ACTIONS(2206), - [anon_sym_as] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2212), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2212), - [aux_sym__val_number_decimal_token1] = ACTIONS(2206), - [aux_sym__val_number_decimal_token2] = ACTIONS(2212), - [aux_sym__val_number_decimal_token3] = ACTIONS(2212), - [aux_sym__val_number_decimal_token4] = ACTIONS(2212), - [aux_sym__val_number_token1] = ACTIONS(2212), - [aux_sym__val_number_token2] = ACTIONS(2212), - [aux_sym__val_number_token3] = ACTIONS(2212), - [anon_sym_DQUOTE] = ACTIONS(2212), - [sym__str_single_quotes] = ACTIONS(2212), - [sym__str_back_ticks] = ACTIONS(2212), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2212), + [832] = { + [sym_comment] = STATE(832), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, - [641] = { - [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(2551), - [anon_sym_alias] = ACTIONS(2551), - [anon_sym_let] = ACTIONS(2551), - [anon_sym_let_DASHenv] = ACTIONS(2551), - [anon_sym_mut] = ACTIONS(2551), - [anon_sym_const] = ACTIONS(2551), - [aux_sym_cmd_identifier_token1] = ACTIONS(2551), - [aux_sym_cmd_identifier_token2] = ACTIONS(2551), - [aux_sym_cmd_identifier_token3] = ACTIONS(2551), - [aux_sym_cmd_identifier_token4] = ACTIONS(2551), - [aux_sym_cmd_identifier_token5] = ACTIONS(2551), - [aux_sym_cmd_identifier_token6] = ACTIONS(2551), - [aux_sym_cmd_identifier_token7] = ACTIONS(2551), - [aux_sym_cmd_identifier_token8] = ACTIONS(2551), - [aux_sym_cmd_identifier_token9] = ACTIONS(2551), - [aux_sym_cmd_identifier_token10] = ACTIONS(2551), - [aux_sym_cmd_identifier_token11] = ACTIONS(2551), - [aux_sym_cmd_identifier_token12] = ACTIONS(2551), - [aux_sym_cmd_identifier_token13] = ACTIONS(2551), - [aux_sym_cmd_identifier_token14] = ACTIONS(2551), - [aux_sym_cmd_identifier_token15] = ACTIONS(2551), - [aux_sym_cmd_identifier_token16] = ACTIONS(2551), - [aux_sym_cmd_identifier_token17] = ACTIONS(2551), - [aux_sym_cmd_identifier_token18] = ACTIONS(2551), - [aux_sym_cmd_identifier_token19] = ACTIONS(2551), - [aux_sym_cmd_identifier_token20] = ACTIONS(2551), - [aux_sym_cmd_identifier_token21] = ACTIONS(2551), - [aux_sym_cmd_identifier_token22] = ACTIONS(2551), - [aux_sym_cmd_identifier_token23] = ACTIONS(2551), - [aux_sym_cmd_identifier_token24] = ACTIONS(2551), - [aux_sym_cmd_identifier_token25] = ACTIONS(2551), - [aux_sym_cmd_identifier_token26] = ACTIONS(2551), - [aux_sym_cmd_identifier_token27] = ACTIONS(2551), - [aux_sym_cmd_identifier_token28] = ACTIONS(2551), - [aux_sym_cmd_identifier_token29] = ACTIONS(2551), - [aux_sym_cmd_identifier_token30] = ACTIONS(2551), - [aux_sym_cmd_identifier_token31] = ACTIONS(2551), - [aux_sym_cmd_identifier_token32] = ACTIONS(2551), - [aux_sym_cmd_identifier_token33] = ACTIONS(2551), - [aux_sym_cmd_identifier_token34] = ACTIONS(2551), - [aux_sym_cmd_identifier_token35] = ACTIONS(2551), - [aux_sym_cmd_identifier_token36] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token38] = ACTIONS(2551), - [aux_sym_cmd_identifier_token39] = ACTIONS(2553), - [aux_sym_cmd_identifier_token40] = ACTIONS(2553), - [anon_sym_def] = ACTIONS(2551), - [anon_sym_export_DASHenv] = ACTIONS(2551), - [anon_sym_extern] = ACTIONS(2551), - [anon_sym_module] = ACTIONS(2551), - [anon_sym_use] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_DOLLAR] = ACTIONS(2553), - [anon_sym_error] = ACTIONS(2551), - [anon_sym_list] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_break] = ACTIONS(2551), - [anon_sym_continue] = ACTIONS(2551), - [anon_sym_for] = ACTIONS(2551), - [anon_sym_in] = ACTIONS(2551), - [anon_sym_loop] = ACTIONS(2551), - [anon_sym_make] = ACTIONS(2551), - [anon_sym_while] = ACTIONS(2551), - [anon_sym_do] = ACTIONS(2551), - [anon_sym_if] = ACTIONS(2551), - [anon_sym_else] = ACTIONS(2551), - [anon_sym_match] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2553), - [anon_sym_try] = ACTIONS(2551), - [anon_sym_catch] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2551), - [anon_sym_source] = ACTIONS(2551), - [anon_sym_source_DASHenv] = ACTIONS(2551), - [anon_sym_register] = ACTIONS(2551), - [anon_sym_hide] = ACTIONS(2551), - [anon_sym_hide_DASHenv] = ACTIONS(2551), - [anon_sym_overlay] = ACTIONS(2551), - [anon_sym_new] = ACTIONS(2551), - [anon_sym_as] = ACTIONS(2551), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2553), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2553), - [aux_sym__val_number_decimal_token1] = ACTIONS(2551), - [aux_sym__val_number_decimal_token2] = ACTIONS(2553), - [aux_sym__val_number_decimal_token3] = ACTIONS(2553), - [aux_sym__val_number_decimal_token4] = ACTIONS(2553), - [aux_sym__val_number_token1] = ACTIONS(2553), - [aux_sym__val_number_token2] = ACTIONS(2553), - [aux_sym__val_number_token3] = ACTIONS(2553), - [anon_sym_DQUOTE] = ACTIONS(2553), - [sym__str_single_quotes] = ACTIONS(2553), - [sym__str_back_ticks] = ACTIONS(2553), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2551), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2553), + [833] = { + [sym_comment] = STATE(833), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(3), }, - [642] = { - [sym_comment] = STATE(642), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_alias] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_let_DASHenv] = ACTIONS(2422), - [anon_sym_mut] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [aux_sym_cmd_identifier_token1] = ACTIONS(2422), - [aux_sym_cmd_identifier_token2] = ACTIONS(2422), - [aux_sym_cmd_identifier_token3] = ACTIONS(2422), - [aux_sym_cmd_identifier_token4] = ACTIONS(2422), - [aux_sym_cmd_identifier_token5] = ACTIONS(2422), - [aux_sym_cmd_identifier_token6] = ACTIONS(2422), - [aux_sym_cmd_identifier_token7] = ACTIONS(2422), - [aux_sym_cmd_identifier_token8] = ACTIONS(2422), - [aux_sym_cmd_identifier_token9] = ACTIONS(2422), - [aux_sym_cmd_identifier_token10] = ACTIONS(2422), - [aux_sym_cmd_identifier_token11] = ACTIONS(2422), - [aux_sym_cmd_identifier_token12] = ACTIONS(2422), - [aux_sym_cmd_identifier_token13] = ACTIONS(2422), - [aux_sym_cmd_identifier_token14] = ACTIONS(2422), - [aux_sym_cmd_identifier_token15] = ACTIONS(2422), - [aux_sym_cmd_identifier_token16] = ACTIONS(2422), - [aux_sym_cmd_identifier_token17] = ACTIONS(2422), - [aux_sym_cmd_identifier_token18] = ACTIONS(2422), - [aux_sym_cmd_identifier_token19] = ACTIONS(2422), - [aux_sym_cmd_identifier_token20] = ACTIONS(2422), - [aux_sym_cmd_identifier_token21] = ACTIONS(2422), - [aux_sym_cmd_identifier_token22] = ACTIONS(2422), - [aux_sym_cmd_identifier_token23] = ACTIONS(2422), - [aux_sym_cmd_identifier_token24] = ACTIONS(2422), - [aux_sym_cmd_identifier_token25] = ACTIONS(2422), - [aux_sym_cmd_identifier_token26] = ACTIONS(2422), - [aux_sym_cmd_identifier_token27] = ACTIONS(2422), - [aux_sym_cmd_identifier_token28] = ACTIONS(2422), - [aux_sym_cmd_identifier_token29] = ACTIONS(2422), - [aux_sym_cmd_identifier_token30] = ACTIONS(2422), - [aux_sym_cmd_identifier_token31] = ACTIONS(2422), - [aux_sym_cmd_identifier_token32] = ACTIONS(2422), - [aux_sym_cmd_identifier_token33] = ACTIONS(2422), - [aux_sym_cmd_identifier_token34] = ACTIONS(2422), - [aux_sym_cmd_identifier_token35] = ACTIONS(2422), - [aux_sym_cmd_identifier_token36] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2424), - [anon_sym_false] = ACTIONS(2424), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token38] = ACTIONS(2422), - [aux_sym_cmd_identifier_token39] = ACTIONS(2424), - [aux_sym_cmd_identifier_token40] = ACTIONS(2424), - [anon_sym_def] = ACTIONS(2422), - [anon_sym_export_DASHenv] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_module] = ACTIONS(2422), - [anon_sym_use] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_DOLLAR] = ACTIONS(2424), - [anon_sym_error] = ACTIONS(2422), - [anon_sym_list] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_loop] = ACTIONS(2422), - [anon_sym_make] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_do] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_else] = ACTIONS(2422), - [anon_sym_match] = ACTIONS(2422), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_try] = ACTIONS(2422), - [anon_sym_catch] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_source] = ACTIONS(2422), - [anon_sym_source_DASHenv] = ACTIONS(2422), - [anon_sym_register] = ACTIONS(2422), - [anon_sym_hide] = ACTIONS(2422), - [anon_sym_hide_DASHenv] = ACTIONS(2422), - [anon_sym_overlay] = ACTIONS(2422), - [anon_sym_new] = ACTIONS(2422), - [anon_sym_as] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2424), - [aux_sym__val_number_decimal_token1] = ACTIONS(2422), - [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), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2424), + [834] = { + [sym_comment] = STATE(834), + [ts_builtin_sym_end] = ACTIONS(1609), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, - [643] = { - [sym_comment] = STATE(643), - [anon_sym_export] = ACTIONS(2557), - [anon_sym_alias] = ACTIONS(2557), - [anon_sym_let] = ACTIONS(2557), - [anon_sym_let_DASHenv] = ACTIONS(2557), - [anon_sym_mut] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [aux_sym_cmd_identifier_token1] = ACTIONS(2557), - [aux_sym_cmd_identifier_token2] = ACTIONS(2557), - [aux_sym_cmd_identifier_token3] = ACTIONS(2557), - [aux_sym_cmd_identifier_token4] = ACTIONS(2557), - [aux_sym_cmd_identifier_token5] = ACTIONS(2557), - [aux_sym_cmd_identifier_token6] = ACTIONS(2557), - [aux_sym_cmd_identifier_token7] = ACTIONS(2557), - [aux_sym_cmd_identifier_token8] = ACTIONS(2557), - [aux_sym_cmd_identifier_token9] = ACTIONS(2557), - [aux_sym_cmd_identifier_token10] = ACTIONS(2557), - [aux_sym_cmd_identifier_token11] = ACTIONS(2557), - [aux_sym_cmd_identifier_token12] = ACTIONS(2557), - [aux_sym_cmd_identifier_token13] = ACTIONS(2557), - [aux_sym_cmd_identifier_token14] = ACTIONS(2557), - [aux_sym_cmd_identifier_token15] = ACTIONS(2557), - [aux_sym_cmd_identifier_token16] = ACTIONS(2557), - [aux_sym_cmd_identifier_token17] = ACTIONS(2557), - [aux_sym_cmd_identifier_token18] = ACTIONS(2557), - [aux_sym_cmd_identifier_token19] = ACTIONS(2557), - [aux_sym_cmd_identifier_token20] = ACTIONS(2557), - [aux_sym_cmd_identifier_token21] = ACTIONS(2557), - [aux_sym_cmd_identifier_token22] = ACTIONS(2557), - [aux_sym_cmd_identifier_token23] = ACTIONS(2557), - [aux_sym_cmd_identifier_token24] = ACTIONS(2557), - [aux_sym_cmd_identifier_token25] = ACTIONS(2557), - [aux_sym_cmd_identifier_token26] = ACTIONS(2557), - [aux_sym_cmd_identifier_token27] = ACTIONS(2557), - [aux_sym_cmd_identifier_token28] = ACTIONS(2557), - [aux_sym_cmd_identifier_token29] = ACTIONS(2557), - [aux_sym_cmd_identifier_token30] = ACTIONS(2557), - [aux_sym_cmd_identifier_token31] = ACTIONS(2557), - [aux_sym_cmd_identifier_token32] = ACTIONS(2557), - [aux_sym_cmd_identifier_token33] = ACTIONS(2557), - [aux_sym_cmd_identifier_token34] = ACTIONS(2557), - [aux_sym_cmd_identifier_token35] = ACTIONS(2557), - [aux_sym_cmd_identifier_token36] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(2559), - [anon_sym_false] = ACTIONS(2559), - [anon_sym_null] = ACTIONS(2559), - [aux_sym_cmd_identifier_token38] = ACTIONS(2557), - [aux_sym_cmd_identifier_token39] = ACTIONS(2559), - [aux_sym_cmd_identifier_token40] = ACTIONS(2559), - [anon_sym_def] = ACTIONS(2557), - [anon_sym_export_DASHenv] = ACTIONS(2557), - [anon_sym_extern] = ACTIONS(2557), - [anon_sym_module] = ACTIONS(2557), - [anon_sym_use] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2559), - [anon_sym_DOLLAR] = ACTIONS(2559), - [anon_sym_error] = ACTIONS(2557), - [anon_sym_list] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_in] = ACTIONS(2557), - [anon_sym_loop] = ACTIONS(2557), - [anon_sym_make] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_else] = ACTIONS(2557), - [anon_sym_match] = ACTIONS(2557), - [anon_sym_RBRACE] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2557), - [anon_sym_catch] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_source] = ACTIONS(2557), - [anon_sym_source_DASHenv] = ACTIONS(2557), - [anon_sym_register] = ACTIONS(2557), - [anon_sym_hide] = ACTIONS(2557), - [anon_sym_hide_DASHenv] = ACTIONS(2557), - [anon_sym_overlay] = ACTIONS(2557), - [anon_sym_new] = ACTIONS(2557), - [anon_sym_as] = ACTIONS(2557), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2559), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2559), - [aux_sym__val_number_decimal_token1] = ACTIONS(2557), - [aux_sym__val_number_decimal_token2] = ACTIONS(2559), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2559), - [aux_sym__val_number_token2] = ACTIONS(2559), - [aux_sym__val_number_token3] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2559), - [sym__str_single_quotes] = ACTIONS(2559), - [sym__str_back_ticks] = ACTIONS(2559), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2559), + [835] = { + [sym_comment] = STATE(835), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, - [644] = { - [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(2498), - [anon_sym_alias] = ACTIONS(2498), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_let_DASHenv] = ACTIONS(2498), - [anon_sym_mut] = ACTIONS(2498), - [anon_sym_const] = ACTIONS(2498), - [aux_sym_cmd_identifier_token1] = ACTIONS(2498), - [aux_sym_cmd_identifier_token2] = ACTIONS(2498), - [aux_sym_cmd_identifier_token3] = ACTIONS(2498), - [aux_sym_cmd_identifier_token4] = ACTIONS(2498), - [aux_sym_cmd_identifier_token5] = ACTIONS(2498), - [aux_sym_cmd_identifier_token6] = ACTIONS(2498), - [aux_sym_cmd_identifier_token7] = ACTIONS(2498), - [aux_sym_cmd_identifier_token8] = ACTIONS(2498), - [aux_sym_cmd_identifier_token9] = ACTIONS(2498), - [aux_sym_cmd_identifier_token10] = ACTIONS(2498), - [aux_sym_cmd_identifier_token11] = ACTIONS(2498), - [aux_sym_cmd_identifier_token12] = ACTIONS(2498), - [aux_sym_cmd_identifier_token13] = ACTIONS(2498), - [aux_sym_cmd_identifier_token14] = ACTIONS(2498), - [aux_sym_cmd_identifier_token15] = ACTIONS(2498), - [aux_sym_cmd_identifier_token16] = ACTIONS(2498), - [aux_sym_cmd_identifier_token17] = ACTIONS(2498), - [aux_sym_cmd_identifier_token18] = ACTIONS(2498), - [aux_sym_cmd_identifier_token19] = ACTIONS(2498), - [aux_sym_cmd_identifier_token20] = ACTIONS(2498), - [aux_sym_cmd_identifier_token21] = ACTIONS(2498), - [aux_sym_cmd_identifier_token22] = ACTIONS(2498), - [aux_sym_cmd_identifier_token23] = ACTIONS(2498), - [aux_sym_cmd_identifier_token24] = ACTIONS(2498), - [aux_sym_cmd_identifier_token25] = ACTIONS(2498), - [aux_sym_cmd_identifier_token26] = ACTIONS(2498), - [aux_sym_cmd_identifier_token27] = ACTIONS(2498), - [aux_sym_cmd_identifier_token28] = ACTIONS(2498), - [aux_sym_cmd_identifier_token29] = ACTIONS(2498), - [aux_sym_cmd_identifier_token30] = ACTIONS(2498), - [aux_sym_cmd_identifier_token31] = ACTIONS(2498), - [aux_sym_cmd_identifier_token32] = ACTIONS(2498), - [aux_sym_cmd_identifier_token33] = ACTIONS(2498), - [aux_sym_cmd_identifier_token34] = ACTIONS(2498), - [aux_sym_cmd_identifier_token35] = ACTIONS(2498), - [aux_sym_cmd_identifier_token36] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(2500), - [anon_sym_false] = ACTIONS(2500), - [anon_sym_null] = ACTIONS(2500), - [aux_sym_cmd_identifier_token38] = ACTIONS(2498), - [aux_sym_cmd_identifier_token39] = ACTIONS(2500), - [aux_sym_cmd_identifier_token40] = ACTIONS(2500), - [anon_sym_def] = ACTIONS(2498), - [anon_sym_export_DASHenv] = ACTIONS(2498), - [anon_sym_extern] = ACTIONS(2498), - [anon_sym_module] = ACTIONS(2498), - [anon_sym_use] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2500), - [anon_sym_error] = ACTIONS(2498), - [anon_sym_list] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2498), - [anon_sym_continue] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2498), - [anon_sym_in] = ACTIONS(2498), - [anon_sym_loop] = ACTIONS(2498), - [anon_sym_make] = ACTIONS(2498), - [anon_sym_while] = ACTIONS(2498), - [anon_sym_do] = ACTIONS(2498), - [anon_sym_if] = ACTIONS(2498), - [anon_sym_else] = ACTIONS(2498), - [anon_sym_match] = ACTIONS(2498), - [anon_sym_RBRACE] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2498), - [anon_sym_catch] = ACTIONS(2498), - [anon_sym_return] = ACTIONS(2498), - [anon_sym_source] = ACTIONS(2498), - [anon_sym_source_DASHenv] = ACTIONS(2498), - [anon_sym_register] = ACTIONS(2498), - [anon_sym_hide] = ACTIONS(2498), - [anon_sym_hide_DASHenv] = ACTIONS(2498), - [anon_sym_overlay] = ACTIONS(2498), - [anon_sym_new] = ACTIONS(2498), - [anon_sym_as] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2500), - [aux_sym__val_number_decimal_token1] = ACTIONS(2498), - [aux_sym__val_number_decimal_token2] = ACTIONS(2500), - [aux_sym__val_number_decimal_token3] = ACTIONS(2500), - [aux_sym__val_number_decimal_token4] = ACTIONS(2500), - [aux_sym__val_number_token1] = ACTIONS(2500), - [aux_sym__val_number_token2] = ACTIONS(2500), - [aux_sym__val_number_token3] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [sym__str_single_quotes] = ACTIONS(2500), - [sym__str_back_ticks] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2500), + [836] = { + [sym_comment] = STATE(836), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_bit_DASHshl] = ACTIONS(1765), + [anon_sym_bit_DASHshr] = ACTIONS(1765), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_BANG_TILDE] = ACTIONS(1765), + [anon_sym_bit_DASHand] = ACTIONS(1765), + [anon_sym_bit_DASHxor] = ACTIONS(1765), + [anon_sym_bit_DASHor] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_xor] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not_DASHin] = ACTIONS(1765), + [anon_sym_starts_DASHwith] = ACTIONS(1765), + [anon_sym_ends_DASHwith] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1765), + [aux_sym_cmd_identifier_token41] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_err_GT] = ACTIONS(1763), + [anon_sym_out_GT] = ACTIONS(1763), + [anon_sym_e_GT] = ACTIONS(1763), + [anon_sym_o_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT] = ACTIONS(1763), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(3), }, - [645] = { - [sym_comment] = STATE(645), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_alias] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_let_DASHenv] = ACTIONS(2426), - [anon_sym_mut] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [aux_sym_cmd_identifier_token1] = ACTIONS(2426), - [aux_sym_cmd_identifier_token2] = ACTIONS(2426), - [aux_sym_cmd_identifier_token3] = ACTIONS(2426), - [aux_sym_cmd_identifier_token4] = ACTIONS(2426), - [aux_sym_cmd_identifier_token5] = ACTIONS(2426), - [aux_sym_cmd_identifier_token6] = ACTIONS(2426), - [aux_sym_cmd_identifier_token7] = ACTIONS(2426), - [aux_sym_cmd_identifier_token8] = ACTIONS(2426), - [aux_sym_cmd_identifier_token9] = ACTIONS(2426), - [aux_sym_cmd_identifier_token10] = ACTIONS(2426), - [aux_sym_cmd_identifier_token11] = ACTIONS(2426), - [aux_sym_cmd_identifier_token12] = ACTIONS(2426), - [aux_sym_cmd_identifier_token13] = ACTIONS(2426), - [aux_sym_cmd_identifier_token14] = ACTIONS(2426), - [aux_sym_cmd_identifier_token15] = ACTIONS(2426), - [aux_sym_cmd_identifier_token16] = ACTIONS(2426), - [aux_sym_cmd_identifier_token17] = ACTIONS(2426), - [aux_sym_cmd_identifier_token18] = ACTIONS(2426), - [aux_sym_cmd_identifier_token19] = ACTIONS(2426), - [aux_sym_cmd_identifier_token20] = ACTIONS(2426), - [aux_sym_cmd_identifier_token21] = ACTIONS(2426), - [aux_sym_cmd_identifier_token22] = ACTIONS(2426), - [aux_sym_cmd_identifier_token23] = ACTIONS(2426), - [aux_sym_cmd_identifier_token24] = ACTIONS(2426), - [aux_sym_cmd_identifier_token25] = ACTIONS(2426), - [aux_sym_cmd_identifier_token26] = ACTIONS(2426), - [aux_sym_cmd_identifier_token27] = ACTIONS(2426), - [aux_sym_cmd_identifier_token28] = ACTIONS(2426), - [aux_sym_cmd_identifier_token29] = ACTIONS(2426), - [aux_sym_cmd_identifier_token30] = ACTIONS(2426), - [aux_sym_cmd_identifier_token31] = ACTIONS(2426), - [aux_sym_cmd_identifier_token32] = ACTIONS(2426), - [aux_sym_cmd_identifier_token33] = ACTIONS(2426), - [aux_sym_cmd_identifier_token34] = ACTIONS(2426), - [aux_sym_cmd_identifier_token35] = ACTIONS(2426), - [aux_sym_cmd_identifier_token36] = ACTIONS(2426), - [anon_sym_true] = ACTIONS(2428), - [anon_sym_false] = ACTIONS(2428), - [anon_sym_null] = ACTIONS(2428), - [aux_sym_cmd_identifier_token38] = ACTIONS(2426), - [aux_sym_cmd_identifier_token39] = ACTIONS(2428), - [aux_sym_cmd_identifier_token40] = ACTIONS(2428), - [anon_sym_def] = ACTIONS(2426), - [anon_sym_export_DASHenv] = ACTIONS(2426), - [anon_sym_extern] = ACTIONS(2426), - [anon_sym_module] = ACTIONS(2426), - [anon_sym_use] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_DOLLAR] = ACTIONS(2428), - [anon_sym_error] = ACTIONS(2426), - [anon_sym_list] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(2426), - [anon_sym_loop] = ACTIONS(2426), - [anon_sym_make] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_do] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_else] = ACTIONS(2426), - [anon_sym_match] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_try] = ACTIONS(2426), - [anon_sym_catch] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_source] = ACTIONS(2426), - [anon_sym_source_DASHenv] = ACTIONS(2426), - [anon_sym_register] = ACTIONS(2426), - [anon_sym_hide] = ACTIONS(2426), - [anon_sym_hide_DASHenv] = ACTIONS(2426), - [anon_sym_overlay] = ACTIONS(2426), - [anon_sym_new] = ACTIONS(2426), - [anon_sym_as] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2428), - [aux_sym__val_number_decimal_token1] = ACTIONS(2426), - [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), - [anon_sym_PLUS] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2428), + [837] = { + [sym_comment] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(1623), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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(1621), + [anon_sym_out_GT_GT] = ACTIONS(1621), + [anon_sym_e_GT_GT] = ACTIONS(1621), + [anon_sym_o_GT_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(3), }, - [646] = { - [sym_comment] = STATE(646), - [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(249), - [sym_raw_string_begin] = ACTIONS(2448), + [838] = { + [sym_comment] = STATE(838), + [anon_sym_STAR_STAR] = ACTIONS(3063), + [anon_sym_PLUS_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_mod] = ACTIONS(3063), + [anon_sym_SLASH_SLASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_bit_DASHshl] = ACTIONS(3063), + [anon_sym_bit_DASHshr] = ACTIONS(3063), + [anon_sym_EQ_TILDE] = ACTIONS(3063), + [anon_sym_BANG_TILDE] = ACTIONS(3063), + [anon_sym_bit_DASHand] = ACTIONS(3063), + [anon_sym_bit_DASHxor] = ACTIONS(3063), + [anon_sym_bit_DASHor] = ACTIONS(3063), + [anon_sym_and] = ACTIONS(3063), + [anon_sym_xor] = ACTIONS(3063), + [anon_sym_or] = ACTIONS(3063), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_not_DASHin] = ACTIONS(3063), + [anon_sym_starts_DASHwith] = ACTIONS(3063), + [anon_sym_ends_DASHwith] = ACTIONS(3063), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3063), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3063), + [aux_sym_cmd_identifier_token41] = ACTIONS(3067), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), + [sym_filesize_unit] = ACTIONS(3081), + [sym_duration_unit] = ACTIONS(3083), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(3), }, - [647] = { - [sym_comment] = STATE(647), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_alias] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_let_DASHenv] = ACTIONS(2486), - [anon_sym_mut] = ACTIONS(2486), - [anon_sym_const] = ACTIONS(2486), - [aux_sym_cmd_identifier_token1] = ACTIONS(2486), - [aux_sym_cmd_identifier_token2] = ACTIONS(2486), - [aux_sym_cmd_identifier_token3] = ACTIONS(2486), - [aux_sym_cmd_identifier_token4] = ACTIONS(2486), - [aux_sym_cmd_identifier_token5] = ACTIONS(2486), - [aux_sym_cmd_identifier_token6] = ACTIONS(2486), - [aux_sym_cmd_identifier_token7] = ACTIONS(2486), - [aux_sym_cmd_identifier_token8] = ACTIONS(2486), - [aux_sym_cmd_identifier_token9] = ACTIONS(2486), - [aux_sym_cmd_identifier_token10] = ACTIONS(2486), - [aux_sym_cmd_identifier_token11] = ACTIONS(2486), - [aux_sym_cmd_identifier_token12] = ACTIONS(2486), - [aux_sym_cmd_identifier_token13] = ACTIONS(2486), - [aux_sym_cmd_identifier_token14] = ACTIONS(2486), - [aux_sym_cmd_identifier_token15] = ACTIONS(2486), - [aux_sym_cmd_identifier_token16] = ACTIONS(2486), - [aux_sym_cmd_identifier_token17] = ACTIONS(2486), - [aux_sym_cmd_identifier_token18] = ACTIONS(2486), - [aux_sym_cmd_identifier_token19] = ACTIONS(2486), - [aux_sym_cmd_identifier_token20] = ACTIONS(2486), - [aux_sym_cmd_identifier_token21] = ACTIONS(2486), - [aux_sym_cmd_identifier_token22] = ACTIONS(2486), - [aux_sym_cmd_identifier_token23] = ACTIONS(2486), - [aux_sym_cmd_identifier_token24] = ACTIONS(2486), - [aux_sym_cmd_identifier_token25] = ACTIONS(2486), - [aux_sym_cmd_identifier_token26] = ACTIONS(2486), - [aux_sym_cmd_identifier_token27] = ACTIONS(2486), - [aux_sym_cmd_identifier_token28] = ACTIONS(2486), - [aux_sym_cmd_identifier_token29] = ACTIONS(2486), - [aux_sym_cmd_identifier_token30] = ACTIONS(2486), - [aux_sym_cmd_identifier_token31] = ACTIONS(2486), - [aux_sym_cmd_identifier_token32] = ACTIONS(2486), - [aux_sym_cmd_identifier_token33] = ACTIONS(2486), - [aux_sym_cmd_identifier_token34] = ACTIONS(2486), - [aux_sym_cmd_identifier_token35] = ACTIONS(2486), - [aux_sym_cmd_identifier_token36] = ACTIONS(2486), - [anon_sym_true] = ACTIONS(2488), - [anon_sym_false] = ACTIONS(2488), - [anon_sym_null] = ACTIONS(2488), - [aux_sym_cmd_identifier_token38] = ACTIONS(2486), - [aux_sym_cmd_identifier_token39] = ACTIONS(2488), - [aux_sym_cmd_identifier_token40] = ACTIONS(2488), - [anon_sym_def] = ACTIONS(2486), - [anon_sym_export_DASHenv] = ACTIONS(2486), - [anon_sym_extern] = ACTIONS(2486), - [anon_sym_module] = ACTIONS(2486), - [anon_sym_use] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_DOLLAR] = ACTIONS(2488), - [anon_sym_error] = ACTIONS(2486), - [anon_sym_list] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_for] = ACTIONS(2486), - [anon_sym_in] = ACTIONS(2486), - [anon_sym_loop] = ACTIONS(2486), - [anon_sym_make] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(2486), - [anon_sym_if] = ACTIONS(2486), - [anon_sym_else] = ACTIONS(2486), - [anon_sym_match] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2486), - [anon_sym_catch] = ACTIONS(2486), - [anon_sym_return] = ACTIONS(2486), - [anon_sym_source] = ACTIONS(2486), - [anon_sym_source_DASHenv] = ACTIONS(2486), - [anon_sym_register] = ACTIONS(2486), - [anon_sym_hide] = ACTIONS(2486), - [anon_sym_hide_DASHenv] = ACTIONS(2486), - [anon_sym_overlay] = ACTIONS(2486), - [anon_sym_new] = ACTIONS(2486), - [anon_sym_as] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2488), - [aux_sym__val_number_decimal_token1] = ACTIONS(2486), - [aux_sym__val_number_decimal_token2] = ACTIONS(2488), - [aux_sym__val_number_decimal_token3] = ACTIONS(2488), - [aux_sym__val_number_decimal_token4] = ACTIONS(2488), - [aux_sym__val_number_token1] = ACTIONS(2488), - [aux_sym__val_number_token2] = ACTIONS(2488), - [aux_sym__val_number_token3] = ACTIONS(2488), - [anon_sym_DQUOTE] = ACTIONS(2488), - [sym__str_single_quotes] = ACTIONS(2488), - [sym__str_back_ticks] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2486), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2488), + [839] = { + [sym_comment] = STATE(839), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(3), }, - [648] = { - [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(2414), - [anon_sym_alias] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_let_DASHenv] = ACTIONS(2414), - [anon_sym_mut] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [aux_sym_cmd_identifier_token1] = ACTIONS(2414), - [aux_sym_cmd_identifier_token2] = ACTIONS(2414), - [aux_sym_cmd_identifier_token3] = ACTIONS(2414), - [aux_sym_cmd_identifier_token4] = ACTIONS(2414), - [aux_sym_cmd_identifier_token5] = ACTIONS(2414), - [aux_sym_cmd_identifier_token6] = ACTIONS(2414), - [aux_sym_cmd_identifier_token7] = ACTIONS(2414), - [aux_sym_cmd_identifier_token8] = ACTIONS(2414), - [aux_sym_cmd_identifier_token9] = ACTIONS(2414), - [aux_sym_cmd_identifier_token10] = ACTIONS(2414), - [aux_sym_cmd_identifier_token11] = ACTIONS(2414), - [aux_sym_cmd_identifier_token12] = ACTIONS(2414), - [aux_sym_cmd_identifier_token13] = ACTIONS(2414), - [aux_sym_cmd_identifier_token14] = ACTIONS(2414), - [aux_sym_cmd_identifier_token15] = ACTIONS(2414), - [aux_sym_cmd_identifier_token16] = ACTIONS(2414), - [aux_sym_cmd_identifier_token17] = ACTIONS(2414), - [aux_sym_cmd_identifier_token18] = ACTIONS(2414), - [aux_sym_cmd_identifier_token19] = ACTIONS(2414), - [aux_sym_cmd_identifier_token20] = ACTIONS(2414), - [aux_sym_cmd_identifier_token21] = ACTIONS(2414), - [aux_sym_cmd_identifier_token22] = ACTIONS(2414), - [aux_sym_cmd_identifier_token23] = ACTIONS(2414), - [aux_sym_cmd_identifier_token24] = ACTIONS(2414), - [aux_sym_cmd_identifier_token25] = ACTIONS(2414), - [aux_sym_cmd_identifier_token26] = ACTIONS(2414), - [aux_sym_cmd_identifier_token27] = ACTIONS(2414), - [aux_sym_cmd_identifier_token28] = ACTIONS(2414), - [aux_sym_cmd_identifier_token29] = ACTIONS(2414), - [aux_sym_cmd_identifier_token30] = ACTIONS(2414), - [aux_sym_cmd_identifier_token31] = ACTIONS(2414), - [aux_sym_cmd_identifier_token32] = ACTIONS(2414), - [aux_sym_cmd_identifier_token33] = ACTIONS(2414), - [aux_sym_cmd_identifier_token34] = ACTIONS(2414), - [aux_sym_cmd_identifier_token35] = ACTIONS(2414), - [aux_sym_cmd_identifier_token36] = ACTIONS(2414), - [anon_sym_true] = ACTIONS(2416), - [anon_sym_false] = ACTIONS(2416), - [anon_sym_null] = ACTIONS(2416), - [aux_sym_cmd_identifier_token38] = ACTIONS(2414), - [aux_sym_cmd_identifier_token39] = ACTIONS(2416), - [aux_sym_cmd_identifier_token40] = ACTIONS(2416), - [anon_sym_def] = ACTIONS(2414), - [anon_sym_export_DASHenv] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_module] = ACTIONS(2414), - [anon_sym_use] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_DOLLAR] = ACTIONS(2416), - [anon_sym_error] = ACTIONS(2414), - [anon_sym_list] = ACTIONS(2414), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_in] = ACTIONS(2414), - [anon_sym_loop] = ACTIONS(2414), - [anon_sym_make] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_do] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_else] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2414), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2414), - [anon_sym_catch] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_source] = ACTIONS(2414), - [anon_sym_source_DASHenv] = ACTIONS(2414), - [anon_sym_register] = ACTIONS(2414), - [anon_sym_hide] = ACTIONS(2414), - [anon_sym_hide_DASHenv] = ACTIONS(2414), - [anon_sym_overlay] = ACTIONS(2414), - [anon_sym_new] = ACTIONS(2414), - [anon_sym_as] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2416), - [aux_sym__val_number_decimal_token1] = ACTIONS(2414), - [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), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2416), + [840] = { + [sym_comment] = STATE(840), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3079), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, - [649] = { - [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_alias] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_let_DASHenv] = ACTIONS(2482), - [anon_sym_mut] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [aux_sym_cmd_identifier_token1] = ACTIONS(2482), - [aux_sym_cmd_identifier_token2] = ACTIONS(2482), - [aux_sym_cmd_identifier_token3] = ACTIONS(2482), - [aux_sym_cmd_identifier_token4] = ACTIONS(2482), - [aux_sym_cmd_identifier_token5] = ACTIONS(2482), - [aux_sym_cmd_identifier_token6] = ACTIONS(2482), - [aux_sym_cmd_identifier_token7] = ACTIONS(2482), - [aux_sym_cmd_identifier_token8] = ACTIONS(2482), - [aux_sym_cmd_identifier_token9] = ACTIONS(2482), - [aux_sym_cmd_identifier_token10] = ACTIONS(2482), - [aux_sym_cmd_identifier_token11] = ACTIONS(2482), - [aux_sym_cmd_identifier_token12] = ACTIONS(2482), - [aux_sym_cmd_identifier_token13] = ACTIONS(2482), - [aux_sym_cmd_identifier_token14] = ACTIONS(2482), - [aux_sym_cmd_identifier_token15] = ACTIONS(2482), - [aux_sym_cmd_identifier_token16] = ACTIONS(2482), - [aux_sym_cmd_identifier_token17] = ACTIONS(2482), - [aux_sym_cmd_identifier_token18] = ACTIONS(2482), - [aux_sym_cmd_identifier_token19] = ACTIONS(2482), - [aux_sym_cmd_identifier_token20] = ACTIONS(2482), - [aux_sym_cmd_identifier_token21] = ACTIONS(2482), - [aux_sym_cmd_identifier_token22] = ACTIONS(2482), - [aux_sym_cmd_identifier_token23] = ACTIONS(2482), - [aux_sym_cmd_identifier_token24] = ACTIONS(2482), - [aux_sym_cmd_identifier_token25] = ACTIONS(2482), - [aux_sym_cmd_identifier_token26] = ACTIONS(2482), - [aux_sym_cmd_identifier_token27] = ACTIONS(2482), - [aux_sym_cmd_identifier_token28] = ACTIONS(2482), - [aux_sym_cmd_identifier_token29] = ACTIONS(2482), - [aux_sym_cmd_identifier_token30] = ACTIONS(2482), - [aux_sym_cmd_identifier_token31] = ACTIONS(2482), - [aux_sym_cmd_identifier_token32] = ACTIONS(2482), - [aux_sym_cmd_identifier_token33] = ACTIONS(2482), - [aux_sym_cmd_identifier_token34] = ACTIONS(2482), - [aux_sym_cmd_identifier_token35] = ACTIONS(2482), - [aux_sym_cmd_identifier_token36] = ACTIONS(2482), - [anon_sym_true] = ACTIONS(2484), - [anon_sym_false] = ACTIONS(2484), - [anon_sym_null] = ACTIONS(2484), - [aux_sym_cmd_identifier_token38] = ACTIONS(2482), - [aux_sym_cmd_identifier_token39] = ACTIONS(2484), - [aux_sym_cmd_identifier_token40] = ACTIONS(2484), - [anon_sym_def] = ACTIONS(2482), - [anon_sym_export_DASHenv] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_module] = ACTIONS(2482), - [anon_sym_use] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2484), - [anon_sym_DOLLAR] = ACTIONS(2484), - [anon_sym_error] = ACTIONS(2482), - [anon_sym_list] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_in] = ACTIONS(2482), - [anon_sym_loop] = ACTIONS(2482), - [anon_sym_make] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_do] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2482), - [anon_sym_match] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2484), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_catch] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_source] = ACTIONS(2482), - [anon_sym_source_DASHenv] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_hide] = ACTIONS(2482), - [anon_sym_hide_DASHenv] = ACTIONS(2482), - [anon_sym_overlay] = ACTIONS(2482), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_as] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2484), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2484), - [aux_sym__val_number_decimal_token1] = ACTIONS(2482), - [aux_sym__val_number_decimal_token2] = ACTIONS(2484), - [aux_sym__val_number_decimal_token3] = ACTIONS(2484), - [aux_sym__val_number_decimal_token4] = ACTIONS(2484), - [aux_sym__val_number_token1] = ACTIONS(2484), - [aux_sym__val_number_token2] = ACTIONS(2484), - [aux_sym__val_number_token3] = ACTIONS(2484), - [anon_sym_DQUOTE] = ACTIONS(2484), - [sym__str_single_quotes] = ACTIONS(2484), - [sym__str_back_ticks] = ACTIONS(2484), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2484), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2484), + [841] = { + [sym_comment] = STATE(841), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, - [650] = { - [sym_comment] = STATE(650), - [anon_sym_export] = ACTIONS(2524), - [anon_sym_alias] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_let_DASHenv] = ACTIONS(2524), - [anon_sym_mut] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [aux_sym_cmd_identifier_token1] = ACTIONS(2524), - [aux_sym_cmd_identifier_token2] = ACTIONS(2524), - [aux_sym_cmd_identifier_token3] = ACTIONS(2524), - [aux_sym_cmd_identifier_token4] = ACTIONS(2524), - [aux_sym_cmd_identifier_token5] = ACTIONS(2524), - [aux_sym_cmd_identifier_token6] = ACTIONS(2524), - [aux_sym_cmd_identifier_token7] = ACTIONS(2524), - [aux_sym_cmd_identifier_token8] = ACTIONS(2524), - [aux_sym_cmd_identifier_token9] = ACTIONS(2524), - [aux_sym_cmd_identifier_token10] = ACTIONS(2524), - [aux_sym_cmd_identifier_token11] = ACTIONS(2524), - [aux_sym_cmd_identifier_token12] = ACTIONS(2524), - [aux_sym_cmd_identifier_token13] = ACTIONS(2524), - [aux_sym_cmd_identifier_token14] = ACTIONS(2524), - [aux_sym_cmd_identifier_token15] = ACTIONS(2524), - [aux_sym_cmd_identifier_token16] = ACTIONS(2524), - [aux_sym_cmd_identifier_token17] = ACTIONS(2524), - [aux_sym_cmd_identifier_token18] = ACTIONS(2524), - [aux_sym_cmd_identifier_token19] = ACTIONS(2524), - [aux_sym_cmd_identifier_token20] = ACTIONS(2524), - [aux_sym_cmd_identifier_token21] = ACTIONS(2524), - [aux_sym_cmd_identifier_token22] = ACTIONS(2524), - [aux_sym_cmd_identifier_token23] = ACTIONS(2524), - [aux_sym_cmd_identifier_token24] = ACTIONS(2524), - [aux_sym_cmd_identifier_token25] = ACTIONS(2524), - [aux_sym_cmd_identifier_token26] = ACTIONS(2524), - [aux_sym_cmd_identifier_token27] = ACTIONS(2524), - [aux_sym_cmd_identifier_token28] = ACTIONS(2524), - [aux_sym_cmd_identifier_token29] = ACTIONS(2524), - [aux_sym_cmd_identifier_token30] = ACTIONS(2524), - [aux_sym_cmd_identifier_token31] = ACTIONS(2524), - [aux_sym_cmd_identifier_token32] = ACTIONS(2524), - [aux_sym_cmd_identifier_token33] = ACTIONS(2524), - [aux_sym_cmd_identifier_token34] = ACTIONS(2524), - [aux_sym_cmd_identifier_token35] = ACTIONS(2524), - [aux_sym_cmd_identifier_token36] = ACTIONS(2524), - [anon_sym_true] = ACTIONS(2526), - [anon_sym_false] = ACTIONS(2526), - [anon_sym_null] = ACTIONS(2526), - [aux_sym_cmd_identifier_token38] = ACTIONS(2524), - [aux_sym_cmd_identifier_token39] = ACTIONS(2526), - [aux_sym_cmd_identifier_token40] = ACTIONS(2526), - [anon_sym_def] = ACTIONS(2524), - [anon_sym_export_DASHenv] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_module] = ACTIONS(2524), - [anon_sym_use] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2526), - [anon_sym_error] = ACTIONS(2524), - [anon_sym_list] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_in] = ACTIONS(2524), - [anon_sym_loop] = ACTIONS(2524), - [anon_sym_make] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_do] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_else] = ACTIONS(2524), - [anon_sym_match] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2524), - [anon_sym_catch] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_source] = ACTIONS(2524), - [anon_sym_source_DASHenv] = ACTIONS(2524), - [anon_sym_register] = ACTIONS(2524), - [anon_sym_hide] = ACTIONS(2524), - [anon_sym_hide_DASHenv] = ACTIONS(2524), - [anon_sym_overlay] = ACTIONS(2524), - [anon_sym_new] = ACTIONS(2524), - [anon_sym_as] = ACTIONS(2524), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2526), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2526), - [aux_sym__val_number_decimal_token1] = ACTIONS(2524), - [aux_sym__val_number_decimal_token2] = ACTIONS(2526), - [aux_sym__val_number_decimal_token3] = ACTIONS(2526), - [aux_sym__val_number_decimal_token4] = ACTIONS(2526), - [aux_sym__val_number_token1] = ACTIONS(2526), - [aux_sym__val_number_token2] = ACTIONS(2526), - [aux_sym__val_number_token3] = ACTIONS(2526), - [anon_sym_DQUOTE] = ACTIONS(2526), - [sym__str_single_quotes] = ACTIONS(2526), - [sym__str_back_ticks] = ACTIONS(2526), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2524), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2526), + [842] = { + [sym_comment] = STATE(842), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_bit_DASHshl] = ACTIONS(1765), + [anon_sym_bit_DASHshr] = ACTIONS(1765), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_BANG_TILDE] = ACTIONS(1765), + [anon_sym_bit_DASHand] = ACTIONS(1765), + [anon_sym_bit_DASHxor] = ACTIONS(1765), + [anon_sym_bit_DASHor] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_xor] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not_DASHin] = ACTIONS(1765), + [anon_sym_starts_DASHwith] = ACTIONS(1765), + [anon_sym_ends_DASHwith] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1765), + [aux_sym_cmd_identifier_token41] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_err_GT] = ACTIONS(1763), + [anon_sym_out_GT] = ACTIONS(1763), + [anon_sym_e_GT] = ACTIONS(1763), + [anon_sym_o_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT] = ACTIONS(1763), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(3), }, - [651] = { - [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(1090), - [anon_sym_alias] = ACTIONS(1090), - [anon_sym_let] = ACTIONS(1090), - [anon_sym_let_DASHenv] = ACTIONS(1090), - [anon_sym_mut] = ACTIONS(1090), - [anon_sym_const] = ACTIONS(1090), - [aux_sym_cmd_identifier_token1] = ACTIONS(1090), - [aux_sym_cmd_identifier_token2] = ACTIONS(1090), - [aux_sym_cmd_identifier_token3] = ACTIONS(1090), - [aux_sym_cmd_identifier_token4] = ACTIONS(1090), - [aux_sym_cmd_identifier_token5] = ACTIONS(1090), - [aux_sym_cmd_identifier_token6] = ACTIONS(1090), - [aux_sym_cmd_identifier_token7] = ACTIONS(1090), - [aux_sym_cmd_identifier_token8] = ACTIONS(1090), - [aux_sym_cmd_identifier_token9] = ACTIONS(1090), - [aux_sym_cmd_identifier_token10] = ACTIONS(1090), - [aux_sym_cmd_identifier_token11] = ACTIONS(1090), - [aux_sym_cmd_identifier_token12] = ACTIONS(1090), - [aux_sym_cmd_identifier_token13] = ACTIONS(1090), - [aux_sym_cmd_identifier_token14] = ACTIONS(1090), - [aux_sym_cmd_identifier_token15] = ACTIONS(1090), - [aux_sym_cmd_identifier_token16] = ACTIONS(1090), - [aux_sym_cmd_identifier_token17] = ACTIONS(1090), - [aux_sym_cmd_identifier_token18] = ACTIONS(1090), - [aux_sym_cmd_identifier_token19] = ACTIONS(1090), - [aux_sym_cmd_identifier_token20] = ACTIONS(1090), - [aux_sym_cmd_identifier_token21] = ACTIONS(1090), - [aux_sym_cmd_identifier_token22] = ACTIONS(1090), - [aux_sym_cmd_identifier_token23] = ACTIONS(1090), - [aux_sym_cmd_identifier_token24] = ACTIONS(1090), - [aux_sym_cmd_identifier_token25] = ACTIONS(1090), - [aux_sym_cmd_identifier_token26] = ACTIONS(1090), - [aux_sym_cmd_identifier_token27] = ACTIONS(1090), - [aux_sym_cmd_identifier_token28] = ACTIONS(1090), - [aux_sym_cmd_identifier_token29] = ACTIONS(1090), - [aux_sym_cmd_identifier_token30] = ACTIONS(1090), - [aux_sym_cmd_identifier_token31] = ACTIONS(1090), - [aux_sym_cmd_identifier_token32] = ACTIONS(1090), - [aux_sym_cmd_identifier_token33] = ACTIONS(1090), - [aux_sym_cmd_identifier_token34] = ACTIONS(1090), - [aux_sym_cmd_identifier_token35] = ACTIONS(1090), - [aux_sym_cmd_identifier_token36] = ACTIONS(1090), - [anon_sym_true] = ACTIONS(1092), - [anon_sym_false] = ACTIONS(1092), - [anon_sym_null] = ACTIONS(1092), - [aux_sym_cmd_identifier_token38] = ACTIONS(1090), - [aux_sym_cmd_identifier_token39] = ACTIONS(1092), - [aux_sym_cmd_identifier_token40] = ACTIONS(1092), - [anon_sym_def] = ACTIONS(1090), - [anon_sym_export_DASHenv] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(1090), - [anon_sym_module] = ACTIONS(1090), - [anon_sym_use] = ACTIONS(1090), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_error] = ACTIONS(1090), - [anon_sym_list] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_break] = ACTIONS(1090), - [anon_sym_continue] = ACTIONS(1090), - [anon_sym_for] = ACTIONS(1090), - [anon_sym_in] = ACTIONS(1090), - [anon_sym_loop] = ACTIONS(1090), - [anon_sym_make] = ACTIONS(1090), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(1090), - [anon_sym_if] = ACTIONS(1090), - [anon_sym_else] = ACTIONS(1090), - [anon_sym_match] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_try] = ACTIONS(1090), - [anon_sym_catch] = ACTIONS(1090), - [anon_sym_return] = ACTIONS(1090), - [anon_sym_source] = ACTIONS(1090), - [anon_sym_source_DASHenv] = ACTIONS(1090), - [anon_sym_register] = ACTIONS(1090), - [anon_sym_hide] = ACTIONS(1090), - [anon_sym_hide_DASHenv] = ACTIONS(1090), - [anon_sym_overlay] = ACTIONS(1090), - [anon_sym_new] = ACTIONS(1090), - [anon_sym_as] = ACTIONS(1090), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1092), - [aux_sym__val_number_decimal_token1] = ACTIONS(1090), - [aux_sym__val_number_decimal_token2] = ACTIONS(1092), - [aux_sym__val_number_decimal_token3] = ACTIONS(1092), - [aux_sym__val_number_decimal_token4] = ACTIONS(1092), - [aux_sym__val_number_token1] = ACTIONS(1092), - [aux_sym__val_number_token2] = ACTIONS(1092), - [aux_sym__val_number_token3] = ACTIONS(1092), - [anon_sym_DQUOTE] = ACTIONS(1092), - [sym__str_single_quotes] = ACTIONS(1092), - [sym__str_back_ticks] = ACTIONS(1092), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1092), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1092), + [843] = { + [sym_comment] = STATE(843), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(3085), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(3), }, - [652] = { - [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_alias] = ACTIONS(1897), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_let_DASHenv] = ACTIONS(1897), - [anon_sym_mut] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(1897), - [aux_sym_cmd_identifier_token1] = ACTIONS(1897), - [aux_sym_cmd_identifier_token2] = ACTIONS(1897), - [aux_sym_cmd_identifier_token3] = ACTIONS(1897), - [aux_sym_cmd_identifier_token4] = ACTIONS(1897), - [aux_sym_cmd_identifier_token5] = ACTIONS(1897), - [aux_sym_cmd_identifier_token6] = ACTIONS(1897), - [aux_sym_cmd_identifier_token7] = ACTIONS(1897), - [aux_sym_cmd_identifier_token8] = ACTIONS(1897), - [aux_sym_cmd_identifier_token9] = ACTIONS(1897), - [aux_sym_cmd_identifier_token10] = ACTIONS(1897), - [aux_sym_cmd_identifier_token11] = ACTIONS(1897), - [aux_sym_cmd_identifier_token12] = ACTIONS(1897), - [aux_sym_cmd_identifier_token13] = ACTIONS(1897), - [aux_sym_cmd_identifier_token14] = ACTIONS(1897), - [aux_sym_cmd_identifier_token15] = ACTIONS(1897), - [aux_sym_cmd_identifier_token16] = ACTIONS(1897), - [aux_sym_cmd_identifier_token17] = ACTIONS(1897), - [aux_sym_cmd_identifier_token18] = ACTIONS(1897), - [aux_sym_cmd_identifier_token19] = ACTIONS(1897), - [aux_sym_cmd_identifier_token20] = ACTIONS(1897), - [aux_sym_cmd_identifier_token21] = ACTIONS(1897), - [aux_sym_cmd_identifier_token22] = ACTIONS(1897), - [aux_sym_cmd_identifier_token23] = ACTIONS(1897), - [aux_sym_cmd_identifier_token24] = ACTIONS(1897), - [aux_sym_cmd_identifier_token25] = ACTIONS(1897), - [aux_sym_cmd_identifier_token26] = ACTIONS(1897), - [aux_sym_cmd_identifier_token27] = ACTIONS(1897), - [aux_sym_cmd_identifier_token28] = ACTIONS(1897), - [aux_sym_cmd_identifier_token29] = ACTIONS(1897), - [aux_sym_cmd_identifier_token30] = ACTIONS(1897), - [aux_sym_cmd_identifier_token31] = ACTIONS(1897), - [aux_sym_cmd_identifier_token32] = ACTIONS(1897), - [aux_sym_cmd_identifier_token33] = ACTIONS(1897), - [aux_sym_cmd_identifier_token34] = ACTIONS(1897), - [aux_sym_cmd_identifier_token35] = ACTIONS(1897), - [aux_sym_cmd_identifier_token36] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = ACTIONS(1899), - [anon_sym_null] = ACTIONS(1899), - [aux_sym_cmd_identifier_token38] = ACTIONS(1897), - [aux_sym_cmd_identifier_token39] = ACTIONS(1899), - [aux_sym_cmd_identifier_token40] = ACTIONS(1899), - [anon_sym_def] = ACTIONS(1897), - [anon_sym_export_DASHenv] = ACTIONS(1897), - [anon_sym_extern] = ACTIONS(1897), - [anon_sym_module] = ACTIONS(1897), - [anon_sym_use] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_DOLLAR] = ACTIONS(1899), - [anon_sym_error] = ACTIONS(1897), - [anon_sym_list] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_in] = ACTIONS(1897), - [anon_sym_loop] = ACTIONS(1897), - [anon_sym_make] = ACTIONS(1897), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_do] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_else] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1897), - [anon_sym_catch] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_source] = ACTIONS(1897), - [anon_sym_source_DASHenv] = ACTIONS(1897), - [anon_sym_register] = ACTIONS(1897), - [anon_sym_hide] = ACTIONS(1897), - [anon_sym_hide_DASHenv] = ACTIONS(1897), - [anon_sym_overlay] = ACTIONS(1897), - [anon_sym_new] = ACTIONS(1897), - [anon_sym_as] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), - [aux_sym__val_number_decimal_token1] = ACTIONS(1897), - [aux_sym__val_number_decimal_token2] = ACTIONS(1899), - [aux_sym__val_number_decimal_token3] = ACTIONS(1899), - [aux_sym__val_number_decimal_token4] = ACTIONS(1899), - [aux_sym__val_number_token1] = ACTIONS(1899), - [aux_sym__val_number_token2] = ACTIONS(1899), - [aux_sym__val_number_token3] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [sym__str_single_quotes] = ACTIONS(1899), - [sym__str_back_ticks] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1899), + [844] = { + [sym_comment] = STATE(844), + [anon_sym_STAR_STAR] = ACTIONS(3063), + [anon_sym_PLUS_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_mod] = ACTIONS(3063), + [anon_sym_SLASH_SLASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_bit_DASHshl] = ACTIONS(3063), + [anon_sym_bit_DASHshr] = ACTIONS(3063), + [anon_sym_EQ_TILDE] = ACTIONS(3063), + [anon_sym_BANG_TILDE] = ACTIONS(3063), + [anon_sym_bit_DASHand] = ACTIONS(3063), + [anon_sym_bit_DASHxor] = ACTIONS(3063), + [anon_sym_bit_DASHor] = ACTIONS(3063), + [anon_sym_and] = ACTIONS(3063), + [anon_sym_xor] = ACTIONS(3063), + [anon_sym_or] = ACTIONS(3063), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_not_DASHin] = ACTIONS(3063), + [anon_sym_starts_DASHwith] = ACTIONS(3063), + [anon_sym_ends_DASHwith] = ACTIONS(3063), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3063), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3063), + [aux_sym_cmd_identifier_token41] = ACTIONS(3067), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), + [sym_filesize_unit] = ACTIONS(3087), + [sym_duration_unit] = ACTIONS(3089), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(3), }, - [653] = { - [sym_comment] = STATE(653), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_alias] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_let_DASHenv] = ACTIONS(2547), - [anon_sym_mut] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [aux_sym_cmd_identifier_token1] = ACTIONS(2547), - [aux_sym_cmd_identifier_token2] = ACTIONS(2547), - [aux_sym_cmd_identifier_token3] = ACTIONS(2547), - [aux_sym_cmd_identifier_token4] = ACTIONS(2547), - [aux_sym_cmd_identifier_token5] = ACTIONS(2547), - [aux_sym_cmd_identifier_token6] = ACTIONS(2547), - [aux_sym_cmd_identifier_token7] = ACTIONS(2547), - [aux_sym_cmd_identifier_token8] = ACTIONS(2547), - [aux_sym_cmd_identifier_token9] = ACTIONS(2547), - [aux_sym_cmd_identifier_token10] = ACTIONS(2547), - [aux_sym_cmd_identifier_token11] = ACTIONS(2547), - [aux_sym_cmd_identifier_token12] = ACTIONS(2547), - [aux_sym_cmd_identifier_token13] = ACTIONS(2547), - [aux_sym_cmd_identifier_token14] = ACTIONS(2547), - [aux_sym_cmd_identifier_token15] = ACTIONS(2547), - [aux_sym_cmd_identifier_token16] = ACTIONS(2547), - [aux_sym_cmd_identifier_token17] = ACTIONS(2547), - [aux_sym_cmd_identifier_token18] = ACTIONS(2547), - [aux_sym_cmd_identifier_token19] = ACTIONS(2547), - [aux_sym_cmd_identifier_token20] = ACTIONS(2547), - [aux_sym_cmd_identifier_token21] = ACTIONS(2547), - [aux_sym_cmd_identifier_token22] = ACTIONS(2547), - [aux_sym_cmd_identifier_token23] = ACTIONS(2547), - [aux_sym_cmd_identifier_token24] = ACTIONS(2547), - [aux_sym_cmd_identifier_token25] = ACTIONS(2547), - [aux_sym_cmd_identifier_token26] = ACTIONS(2547), - [aux_sym_cmd_identifier_token27] = ACTIONS(2547), - [aux_sym_cmd_identifier_token28] = ACTIONS(2547), - [aux_sym_cmd_identifier_token29] = ACTIONS(2547), - [aux_sym_cmd_identifier_token30] = ACTIONS(2547), - [aux_sym_cmd_identifier_token31] = ACTIONS(2547), - [aux_sym_cmd_identifier_token32] = ACTIONS(2547), - [aux_sym_cmd_identifier_token33] = ACTIONS(2547), - [aux_sym_cmd_identifier_token34] = ACTIONS(2547), - [aux_sym_cmd_identifier_token35] = ACTIONS(2547), - [aux_sym_cmd_identifier_token36] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2549), - [anon_sym_false] = ACTIONS(2549), - [anon_sym_null] = ACTIONS(2549), - [aux_sym_cmd_identifier_token38] = ACTIONS(2547), - [aux_sym_cmd_identifier_token39] = ACTIONS(2549), - [aux_sym_cmd_identifier_token40] = ACTIONS(2549), - [anon_sym_def] = ACTIONS(2547), - [anon_sym_export_DASHenv] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_DOLLAR] = ACTIONS(2549), - [anon_sym_error] = ACTIONS(2547), - [anon_sym_list] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_in] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_make] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_do] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_else] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2549), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_catch] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_source] = ACTIONS(2547), - [anon_sym_source_DASHenv] = ACTIONS(2547), - [anon_sym_register] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_hide_DASHenv] = ACTIONS(2547), - [anon_sym_overlay] = ACTIONS(2547), - [anon_sym_new] = ACTIONS(2547), - [anon_sym_as] = ACTIONS(2547), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2549), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2549), - [aux_sym__val_number_decimal_token1] = ACTIONS(2547), - [aux_sym__val_number_decimal_token2] = ACTIONS(2549), - [aux_sym__val_number_decimal_token3] = ACTIONS(2549), - [aux_sym__val_number_decimal_token4] = ACTIONS(2549), - [aux_sym__val_number_token1] = ACTIONS(2549), - [aux_sym__val_number_token2] = ACTIONS(2549), - [aux_sym__val_number_token3] = ACTIONS(2549), - [anon_sym_DQUOTE] = ACTIONS(2549), - [sym__str_single_quotes] = ACTIONS(2549), - [sym__str_back_ticks] = ACTIONS(2549), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2549), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2549), + [845] = { + [sym_comment] = STATE(845), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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(1621), + [anon_sym_out_GT_GT] = ACTIONS(1621), + [anon_sym_e_GT_GT] = ACTIONS(1621), + [anon_sym_o_GT_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(3), }, - [654] = { - [sym_comment] = STATE(654), - [anon_sym_export] = ACTIONS(2398), - [anon_sym_alias] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_let_DASHenv] = ACTIONS(2398), - [anon_sym_mut] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [aux_sym_cmd_identifier_token1] = ACTIONS(2398), - [aux_sym_cmd_identifier_token2] = ACTIONS(2398), - [aux_sym_cmd_identifier_token3] = ACTIONS(2398), - [aux_sym_cmd_identifier_token4] = ACTIONS(2398), - [aux_sym_cmd_identifier_token5] = ACTIONS(2398), - [aux_sym_cmd_identifier_token6] = ACTIONS(2398), - [aux_sym_cmd_identifier_token7] = ACTIONS(2398), - [aux_sym_cmd_identifier_token8] = ACTIONS(2398), - [aux_sym_cmd_identifier_token9] = ACTIONS(2398), - [aux_sym_cmd_identifier_token10] = ACTIONS(2398), - [aux_sym_cmd_identifier_token11] = ACTIONS(2398), - [aux_sym_cmd_identifier_token12] = ACTIONS(2398), - [aux_sym_cmd_identifier_token13] = ACTIONS(2398), - [aux_sym_cmd_identifier_token14] = ACTIONS(2398), - [aux_sym_cmd_identifier_token15] = ACTIONS(2398), - [aux_sym_cmd_identifier_token16] = ACTIONS(2398), - [aux_sym_cmd_identifier_token17] = ACTIONS(2398), - [aux_sym_cmd_identifier_token18] = ACTIONS(2398), - [aux_sym_cmd_identifier_token19] = ACTIONS(2398), - [aux_sym_cmd_identifier_token20] = ACTIONS(2398), - [aux_sym_cmd_identifier_token21] = ACTIONS(2398), - [aux_sym_cmd_identifier_token22] = ACTIONS(2398), - [aux_sym_cmd_identifier_token23] = ACTIONS(2398), - [aux_sym_cmd_identifier_token24] = ACTIONS(2398), - [aux_sym_cmd_identifier_token25] = ACTIONS(2398), - [aux_sym_cmd_identifier_token26] = ACTIONS(2398), - [aux_sym_cmd_identifier_token27] = ACTIONS(2398), - [aux_sym_cmd_identifier_token28] = ACTIONS(2398), - [aux_sym_cmd_identifier_token29] = ACTIONS(2398), - [aux_sym_cmd_identifier_token30] = ACTIONS(2398), - [aux_sym_cmd_identifier_token31] = ACTIONS(2398), - [aux_sym_cmd_identifier_token32] = ACTIONS(2398), - [aux_sym_cmd_identifier_token33] = ACTIONS(2398), - [aux_sym_cmd_identifier_token34] = ACTIONS(2398), - [aux_sym_cmd_identifier_token35] = ACTIONS(2398), - [aux_sym_cmd_identifier_token36] = ACTIONS(2398), - [anon_sym_true] = ACTIONS(2400), - [anon_sym_false] = ACTIONS(2400), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token38] = ACTIONS(2398), - [aux_sym_cmd_identifier_token39] = ACTIONS(2400), - [aux_sym_cmd_identifier_token40] = ACTIONS(2400), - [anon_sym_def] = ACTIONS(2398), - [anon_sym_export_DASHenv] = ACTIONS(2398), - [anon_sym_extern] = ACTIONS(2398), - [anon_sym_module] = ACTIONS(2398), - [anon_sym_use] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_DOLLAR] = ACTIONS(2400), - [anon_sym_error] = ACTIONS(2398), - [anon_sym_list] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_in] = ACTIONS(2398), - [anon_sym_loop] = ACTIONS(2398), - [anon_sym_make] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_do] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_else] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_try] = ACTIONS(2398), - [anon_sym_catch] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_source] = ACTIONS(2398), - [anon_sym_source_DASHenv] = ACTIONS(2398), - [anon_sym_register] = ACTIONS(2398), - [anon_sym_hide] = ACTIONS(2398), - [anon_sym_hide_DASHenv] = ACTIONS(2398), - [anon_sym_overlay] = ACTIONS(2398), - [anon_sym_new] = ACTIONS(2398), - [anon_sym_as] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2400), - [aux_sym__val_number_decimal_token1] = ACTIONS(2398), - [aux_sym__val_number_decimal_token2] = ACTIONS(2400), - [aux_sym__val_number_decimal_token3] = ACTIONS(2400), - [aux_sym__val_number_decimal_token4] = ACTIONS(2400), - [aux_sym__val_number_token1] = ACTIONS(2400), - [aux_sym__val_number_token2] = ACTIONS(2400), - [aux_sym__val_number_token3] = ACTIONS(2400), - [anon_sym_DQUOTE] = ACTIONS(2400), - [sym__str_single_quotes] = ACTIONS(2400), - [sym__str_back_ticks] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2400), + [846] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7294), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7619), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(846), + [aux_sym_shebang_repeat1] = STATE(885), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [655] = { - [sym_comment] = STATE(655), - [anon_sym_export] = ACTIONS(2406), - [anon_sym_alias] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_let_DASHenv] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [aux_sym_cmd_identifier_token1] = ACTIONS(2406), - [aux_sym_cmd_identifier_token2] = ACTIONS(2406), - [aux_sym_cmd_identifier_token3] = ACTIONS(2406), - [aux_sym_cmd_identifier_token4] = ACTIONS(2406), - [aux_sym_cmd_identifier_token5] = ACTIONS(2406), - [aux_sym_cmd_identifier_token6] = ACTIONS(2406), - [aux_sym_cmd_identifier_token7] = ACTIONS(2406), - [aux_sym_cmd_identifier_token8] = ACTIONS(2406), - [aux_sym_cmd_identifier_token9] = ACTIONS(2406), - [aux_sym_cmd_identifier_token10] = ACTIONS(2406), - [aux_sym_cmd_identifier_token11] = ACTIONS(2406), - [aux_sym_cmd_identifier_token12] = ACTIONS(2406), - [aux_sym_cmd_identifier_token13] = ACTIONS(2406), - [aux_sym_cmd_identifier_token14] = ACTIONS(2406), - [aux_sym_cmd_identifier_token15] = ACTIONS(2406), - [aux_sym_cmd_identifier_token16] = ACTIONS(2406), - [aux_sym_cmd_identifier_token17] = ACTIONS(2406), - [aux_sym_cmd_identifier_token18] = ACTIONS(2406), - [aux_sym_cmd_identifier_token19] = ACTIONS(2406), - [aux_sym_cmd_identifier_token20] = ACTIONS(2406), - [aux_sym_cmd_identifier_token21] = ACTIONS(2406), - [aux_sym_cmd_identifier_token22] = ACTIONS(2406), - [aux_sym_cmd_identifier_token23] = ACTIONS(2406), - [aux_sym_cmd_identifier_token24] = ACTIONS(2406), - [aux_sym_cmd_identifier_token25] = ACTIONS(2406), - [aux_sym_cmd_identifier_token26] = ACTIONS(2406), - [aux_sym_cmd_identifier_token27] = ACTIONS(2406), - [aux_sym_cmd_identifier_token28] = ACTIONS(2406), - [aux_sym_cmd_identifier_token29] = ACTIONS(2406), - [aux_sym_cmd_identifier_token30] = ACTIONS(2406), - [aux_sym_cmd_identifier_token31] = ACTIONS(2406), - [aux_sym_cmd_identifier_token32] = ACTIONS(2406), - [aux_sym_cmd_identifier_token33] = ACTIONS(2406), - [aux_sym_cmd_identifier_token34] = ACTIONS(2406), - [aux_sym_cmd_identifier_token35] = ACTIONS(2406), - [aux_sym_cmd_identifier_token36] = ACTIONS(2406), - [anon_sym_true] = ACTIONS(2408), - [anon_sym_false] = ACTIONS(2408), - [anon_sym_null] = ACTIONS(2408), - [aux_sym_cmd_identifier_token38] = ACTIONS(2406), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [anon_sym_def] = ACTIONS(2406), - [anon_sym_export_DASHenv] = ACTIONS(2406), - [anon_sym_extern] = ACTIONS(2406), - [anon_sym_module] = ACTIONS(2406), - [anon_sym_use] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_DOLLAR] = ACTIONS(2408), - [anon_sym_error] = ACTIONS(2406), - [anon_sym_list] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_in] = ACTIONS(2406), - [anon_sym_loop] = ACTIONS(2406), - [anon_sym_make] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [anon_sym_do] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2408), - [anon_sym_try] = ACTIONS(2406), - [anon_sym_catch] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_source] = ACTIONS(2406), - [anon_sym_source_DASHenv] = ACTIONS(2406), - [anon_sym_register] = ACTIONS(2406), - [anon_sym_hide] = ACTIONS(2406), - [anon_sym_hide_DASHenv] = ACTIONS(2406), - [anon_sym_overlay] = ACTIONS(2406), - [anon_sym_new] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2406), - [aux_sym__val_number_decimal_token2] = ACTIONS(2408), - [aux_sym__val_number_decimal_token3] = ACTIONS(2408), - [aux_sym__val_number_decimal_token4] = ACTIONS(2408), - [aux_sym__val_number_token1] = ACTIONS(2408), - [aux_sym__val_number_token2] = ACTIONS(2408), - [aux_sym__val_number_token3] = ACTIONS(2408), - [anon_sym_DQUOTE] = ACTIONS(2408), - [sym__str_single_quotes] = ACTIONS(2408), - [sym__str_back_ticks] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2408), - [anon_sym_PLUS] = ACTIONS(2406), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2408), + [847] = { + [sym_comment] = STATE(847), + [anon_sym_STAR_STAR] = ACTIONS(3063), + [anon_sym_PLUS_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_mod] = ACTIONS(3063), + [anon_sym_SLASH_SLASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_bit_DASHshl] = ACTIONS(3063), + [anon_sym_bit_DASHshr] = ACTIONS(3063), + [anon_sym_EQ_TILDE] = ACTIONS(3063), + [anon_sym_BANG_TILDE] = ACTIONS(3063), + [anon_sym_bit_DASHand] = ACTIONS(3063), + [anon_sym_bit_DASHxor] = ACTIONS(3063), + [anon_sym_bit_DASHor] = ACTIONS(3063), + [anon_sym_and] = ACTIONS(3063), + [anon_sym_xor] = ACTIONS(3063), + [anon_sym_or] = ACTIONS(3063), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_not_DASHin] = ACTIONS(3063), + [anon_sym_starts_DASHwith] = ACTIONS(3063), + [anon_sym_ends_DASHwith] = ACTIONS(3063), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3063), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3063), + [aux_sym_cmd_identifier_token41] = ACTIONS(3067), + [sym__newline] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), + [sym_filesize_unit] = ACTIONS(3135), + [sym_duration_unit] = ACTIONS(3137), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(3), }, - [656] = { - [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(2506), - [anon_sym_alias] = ACTIONS(2506), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_let_DASHenv] = ACTIONS(2506), - [anon_sym_mut] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [aux_sym_cmd_identifier_token1] = ACTIONS(2506), - [aux_sym_cmd_identifier_token2] = ACTIONS(2506), - [aux_sym_cmd_identifier_token3] = ACTIONS(2506), - [aux_sym_cmd_identifier_token4] = ACTIONS(2506), - [aux_sym_cmd_identifier_token5] = ACTIONS(2506), - [aux_sym_cmd_identifier_token6] = ACTIONS(2506), - [aux_sym_cmd_identifier_token7] = ACTIONS(2506), - [aux_sym_cmd_identifier_token8] = ACTIONS(2506), - [aux_sym_cmd_identifier_token9] = ACTIONS(2506), - [aux_sym_cmd_identifier_token10] = ACTIONS(2506), - [aux_sym_cmd_identifier_token11] = ACTIONS(2506), - [aux_sym_cmd_identifier_token12] = ACTIONS(2506), - [aux_sym_cmd_identifier_token13] = ACTIONS(2506), - [aux_sym_cmd_identifier_token14] = ACTIONS(2506), - [aux_sym_cmd_identifier_token15] = ACTIONS(2506), - [aux_sym_cmd_identifier_token16] = ACTIONS(2506), - [aux_sym_cmd_identifier_token17] = ACTIONS(2506), - [aux_sym_cmd_identifier_token18] = ACTIONS(2506), - [aux_sym_cmd_identifier_token19] = ACTIONS(2506), - [aux_sym_cmd_identifier_token20] = ACTIONS(2506), - [aux_sym_cmd_identifier_token21] = ACTIONS(2506), - [aux_sym_cmd_identifier_token22] = ACTIONS(2506), - [aux_sym_cmd_identifier_token23] = ACTIONS(2506), - [aux_sym_cmd_identifier_token24] = ACTIONS(2506), - [aux_sym_cmd_identifier_token25] = ACTIONS(2506), - [aux_sym_cmd_identifier_token26] = ACTIONS(2506), - [aux_sym_cmd_identifier_token27] = ACTIONS(2506), - [aux_sym_cmd_identifier_token28] = ACTIONS(2506), - [aux_sym_cmd_identifier_token29] = ACTIONS(2506), - [aux_sym_cmd_identifier_token30] = ACTIONS(2506), - [aux_sym_cmd_identifier_token31] = ACTIONS(2506), - [aux_sym_cmd_identifier_token32] = ACTIONS(2506), - [aux_sym_cmd_identifier_token33] = ACTIONS(2506), - [aux_sym_cmd_identifier_token34] = ACTIONS(2506), - [aux_sym_cmd_identifier_token35] = ACTIONS(2506), - [aux_sym_cmd_identifier_token36] = ACTIONS(2506), - [anon_sym_true] = ACTIONS(2508), - [anon_sym_false] = ACTIONS(2508), - [anon_sym_null] = ACTIONS(2508), - [aux_sym_cmd_identifier_token38] = ACTIONS(2506), - [aux_sym_cmd_identifier_token39] = ACTIONS(2508), - [aux_sym_cmd_identifier_token40] = ACTIONS(2508), - [anon_sym_def] = ACTIONS(2506), - [anon_sym_export_DASHenv] = ACTIONS(2506), - [anon_sym_extern] = ACTIONS(2506), - [anon_sym_module] = ACTIONS(2506), - [anon_sym_use] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_DOLLAR] = ACTIONS(2508), - [anon_sym_error] = ACTIONS(2506), - [anon_sym_list] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_in] = ACTIONS(2506), - [anon_sym_loop] = ACTIONS(2506), - [anon_sym_make] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_do] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_else] = ACTIONS(2506), - [anon_sym_match] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_try] = ACTIONS(2506), - [anon_sym_catch] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_source] = ACTIONS(2506), - [anon_sym_source_DASHenv] = ACTIONS(2506), - [anon_sym_register] = ACTIONS(2506), - [anon_sym_hide] = ACTIONS(2506), - [anon_sym_hide_DASHenv] = ACTIONS(2506), - [anon_sym_overlay] = ACTIONS(2506), - [anon_sym_new] = ACTIONS(2506), - [anon_sym_as] = ACTIONS(2506), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2508), - [aux_sym__val_number_decimal_token1] = ACTIONS(2506), - [aux_sym__val_number_decimal_token2] = ACTIONS(2508), - [aux_sym__val_number_decimal_token3] = ACTIONS(2508), - [aux_sym__val_number_decimal_token4] = ACTIONS(2508), - [aux_sym__val_number_token1] = ACTIONS(2508), - [aux_sym__val_number_token2] = ACTIONS(2508), - [aux_sym__val_number_token3] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [sym__str_single_quotes] = ACTIONS(2508), - [sym__str_back_ticks] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2508), + [848] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7090), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7890), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(848), + [aux_sym_shebang_repeat1] = STATE(888), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [657] = { - [sym_comment] = STATE(657), - [anon_sym_export] = ACTIONS(2510), - [anon_sym_alias] = ACTIONS(2510), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_let_DASHenv] = ACTIONS(2510), - [anon_sym_mut] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [aux_sym_cmd_identifier_token1] = ACTIONS(2510), - [aux_sym_cmd_identifier_token2] = ACTIONS(2510), - [aux_sym_cmd_identifier_token3] = ACTIONS(2510), - [aux_sym_cmd_identifier_token4] = ACTIONS(2510), - [aux_sym_cmd_identifier_token5] = ACTIONS(2510), - [aux_sym_cmd_identifier_token6] = ACTIONS(2510), - [aux_sym_cmd_identifier_token7] = ACTIONS(2510), - [aux_sym_cmd_identifier_token8] = ACTIONS(2510), - [aux_sym_cmd_identifier_token9] = ACTIONS(2510), - [aux_sym_cmd_identifier_token10] = ACTIONS(2510), - [aux_sym_cmd_identifier_token11] = ACTIONS(2510), - [aux_sym_cmd_identifier_token12] = ACTIONS(2510), - [aux_sym_cmd_identifier_token13] = ACTIONS(2510), - [aux_sym_cmd_identifier_token14] = ACTIONS(2510), - [aux_sym_cmd_identifier_token15] = ACTIONS(2510), - [aux_sym_cmd_identifier_token16] = ACTIONS(2510), - [aux_sym_cmd_identifier_token17] = ACTIONS(2510), - [aux_sym_cmd_identifier_token18] = ACTIONS(2510), - [aux_sym_cmd_identifier_token19] = ACTIONS(2510), - [aux_sym_cmd_identifier_token20] = ACTIONS(2510), - [aux_sym_cmd_identifier_token21] = ACTIONS(2510), - [aux_sym_cmd_identifier_token22] = ACTIONS(2510), - [aux_sym_cmd_identifier_token23] = ACTIONS(2510), - [aux_sym_cmd_identifier_token24] = ACTIONS(2510), - [aux_sym_cmd_identifier_token25] = ACTIONS(2510), - [aux_sym_cmd_identifier_token26] = ACTIONS(2510), - [aux_sym_cmd_identifier_token27] = ACTIONS(2510), - [aux_sym_cmd_identifier_token28] = ACTIONS(2510), - [aux_sym_cmd_identifier_token29] = ACTIONS(2510), - [aux_sym_cmd_identifier_token30] = ACTIONS(2510), - [aux_sym_cmd_identifier_token31] = ACTIONS(2510), - [aux_sym_cmd_identifier_token32] = ACTIONS(2510), - [aux_sym_cmd_identifier_token33] = ACTIONS(2510), - [aux_sym_cmd_identifier_token34] = ACTIONS(2510), - [aux_sym_cmd_identifier_token35] = ACTIONS(2510), - [aux_sym_cmd_identifier_token36] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2512), - [anon_sym_false] = ACTIONS(2512), - [anon_sym_null] = ACTIONS(2512), - [aux_sym_cmd_identifier_token38] = ACTIONS(2510), - [aux_sym_cmd_identifier_token39] = ACTIONS(2512), - [aux_sym_cmd_identifier_token40] = ACTIONS(2512), - [anon_sym_def] = ACTIONS(2510), - [anon_sym_export_DASHenv] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym_module] = ACTIONS(2510), - [anon_sym_use] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_DOLLAR] = ACTIONS(2512), - [anon_sym_error] = ACTIONS(2510), - [anon_sym_list] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_in] = ACTIONS(2510), - [anon_sym_loop] = ACTIONS(2510), - [anon_sym_make] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_match] = ACTIONS(2510), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_catch] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_source] = ACTIONS(2510), - [anon_sym_source_DASHenv] = ACTIONS(2510), - [anon_sym_register] = ACTIONS(2510), - [anon_sym_hide] = ACTIONS(2510), - [anon_sym_hide_DASHenv] = ACTIONS(2510), - [anon_sym_overlay] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_as] = ACTIONS(2510), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2512), - [aux_sym__val_number_decimal_token1] = ACTIONS(2510), - [aux_sym__val_number_decimal_token2] = ACTIONS(2512), - [aux_sym__val_number_decimal_token3] = ACTIONS(2512), - [aux_sym__val_number_decimal_token4] = ACTIONS(2512), - [aux_sym__val_number_token1] = ACTIONS(2512), - [aux_sym__val_number_token2] = ACTIONS(2512), - [aux_sym__val_number_token3] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [sym__str_single_quotes] = ACTIONS(2512), - [sym__str_back_ticks] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2512), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2512), + [849] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7097), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7967), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(849), + [aux_sym_shebang_repeat1] = STATE(886), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_RBRACK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [658] = { - [sym_comment] = STATE(658), - [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(249), - [sym_raw_string_begin] = ACTIONS(1911), + [850] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7097), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7633), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(850), + [aux_sym_shebang_repeat1] = STATE(886), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_RBRACK] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [659] = { - [sym_comment] = STATE(659), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_alias] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_let_DASHenv] = ACTIONS(1628), - [anon_sym_mut] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [aux_sym_cmd_identifier_token1] = ACTIONS(1628), - [aux_sym_cmd_identifier_token2] = ACTIONS(1628), - [aux_sym_cmd_identifier_token3] = ACTIONS(1628), - [aux_sym_cmd_identifier_token4] = ACTIONS(1628), - [aux_sym_cmd_identifier_token5] = ACTIONS(1628), - [aux_sym_cmd_identifier_token6] = ACTIONS(1628), - [aux_sym_cmd_identifier_token7] = ACTIONS(1628), - [aux_sym_cmd_identifier_token8] = ACTIONS(1628), - [aux_sym_cmd_identifier_token9] = ACTIONS(1628), - [aux_sym_cmd_identifier_token10] = ACTIONS(1628), - [aux_sym_cmd_identifier_token11] = ACTIONS(1628), - [aux_sym_cmd_identifier_token12] = ACTIONS(1628), - [aux_sym_cmd_identifier_token13] = ACTIONS(1628), - [aux_sym_cmd_identifier_token14] = ACTIONS(1628), - [aux_sym_cmd_identifier_token15] = ACTIONS(1628), - [aux_sym_cmd_identifier_token16] = ACTIONS(1628), - [aux_sym_cmd_identifier_token17] = ACTIONS(1628), - [aux_sym_cmd_identifier_token18] = ACTIONS(1628), - [aux_sym_cmd_identifier_token19] = ACTIONS(1628), - [aux_sym_cmd_identifier_token20] = ACTIONS(1628), - [aux_sym_cmd_identifier_token21] = ACTIONS(1628), - [aux_sym_cmd_identifier_token22] = ACTIONS(1628), - [aux_sym_cmd_identifier_token23] = ACTIONS(1628), - [aux_sym_cmd_identifier_token24] = ACTIONS(1628), - [aux_sym_cmd_identifier_token25] = ACTIONS(1628), - [aux_sym_cmd_identifier_token26] = ACTIONS(1628), - [aux_sym_cmd_identifier_token27] = ACTIONS(1628), - [aux_sym_cmd_identifier_token28] = ACTIONS(1628), - [aux_sym_cmd_identifier_token29] = ACTIONS(1628), - [aux_sym_cmd_identifier_token30] = ACTIONS(1628), - [aux_sym_cmd_identifier_token31] = ACTIONS(1628), - [aux_sym_cmd_identifier_token32] = ACTIONS(1628), - [aux_sym_cmd_identifier_token33] = ACTIONS(1628), - [aux_sym_cmd_identifier_token34] = ACTIONS(1628), - [aux_sym_cmd_identifier_token35] = ACTIONS(1628), - [aux_sym_cmd_identifier_token36] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [aux_sym_cmd_identifier_token38] = ACTIONS(1628), - [aux_sym_cmd_identifier_token39] = ACTIONS(1640), - [aux_sym_cmd_identifier_token40] = ACTIONS(1640), - [anon_sym_def] = ACTIONS(1628), - [anon_sym_export_DASHenv] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1640), - [anon_sym_error] = ACTIONS(1628), - [anon_sym_list] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_make] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_else] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_try] = ACTIONS(1628), - [anon_sym_catch] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_source] = ACTIONS(1628), - [anon_sym_source_DASHenv] = ACTIONS(1628), - [anon_sym_register] = ACTIONS(1628), - [anon_sym_hide] = ACTIONS(1628), - [anon_sym_hide_DASHenv] = ACTIONS(1628), - [anon_sym_overlay] = ACTIONS(1628), - [anon_sym_new] = ACTIONS(1628), - [anon_sym_as] = ACTIONS(1628), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1640), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1640), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_decimal_token2] = ACTIONS(1640), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_decimal_token4] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1640), + [851] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(6836), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7690), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(851), + [aux_sym_shebang_repeat1] = STATE(890), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [660] = { - [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(2418), - [anon_sym_alias] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_let_DASHenv] = ACTIONS(2418), - [anon_sym_mut] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [aux_sym_cmd_identifier_token1] = ACTIONS(2418), - [aux_sym_cmd_identifier_token2] = ACTIONS(2418), - [aux_sym_cmd_identifier_token3] = ACTIONS(2418), - [aux_sym_cmd_identifier_token4] = ACTIONS(2418), - [aux_sym_cmd_identifier_token5] = ACTIONS(2418), - [aux_sym_cmd_identifier_token6] = ACTIONS(2418), - [aux_sym_cmd_identifier_token7] = ACTIONS(2418), - [aux_sym_cmd_identifier_token8] = ACTIONS(2418), - [aux_sym_cmd_identifier_token9] = ACTIONS(2418), - [aux_sym_cmd_identifier_token10] = ACTIONS(2418), - [aux_sym_cmd_identifier_token11] = ACTIONS(2418), - [aux_sym_cmd_identifier_token12] = ACTIONS(2418), - [aux_sym_cmd_identifier_token13] = ACTIONS(2418), - [aux_sym_cmd_identifier_token14] = ACTIONS(2418), - [aux_sym_cmd_identifier_token15] = ACTIONS(2418), - [aux_sym_cmd_identifier_token16] = ACTIONS(2418), - [aux_sym_cmd_identifier_token17] = ACTIONS(2418), - [aux_sym_cmd_identifier_token18] = ACTIONS(2418), - [aux_sym_cmd_identifier_token19] = ACTIONS(2418), - [aux_sym_cmd_identifier_token20] = ACTIONS(2418), - [aux_sym_cmd_identifier_token21] = ACTIONS(2418), - [aux_sym_cmd_identifier_token22] = ACTIONS(2418), - [aux_sym_cmd_identifier_token23] = ACTIONS(2418), - [aux_sym_cmd_identifier_token24] = ACTIONS(2418), - [aux_sym_cmd_identifier_token25] = ACTIONS(2418), - [aux_sym_cmd_identifier_token26] = ACTIONS(2418), - [aux_sym_cmd_identifier_token27] = ACTIONS(2418), - [aux_sym_cmd_identifier_token28] = ACTIONS(2418), - [aux_sym_cmd_identifier_token29] = ACTIONS(2418), - [aux_sym_cmd_identifier_token30] = ACTIONS(2418), - [aux_sym_cmd_identifier_token31] = ACTIONS(2418), - [aux_sym_cmd_identifier_token32] = ACTIONS(2418), - [aux_sym_cmd_identifier_token33] = ACTIONS(2418), - [aux_sym_cmd_identifier_token34] = ACTIONS(2418), - [aux_sym_cmd_identifier_token35] = ACTIONS(2418), - [aux_sym_cmd_identifier_token36] = ACTIONS(2418), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_null] = ACTIONS(2420), - [aux_sym_cmd_identifier_token38] = ACTIONS(2418), - [aux_sym_cmd_identifier_token39] = ACTIONS(2420), - [aux_sym_cmd_identifier_token40] = ACTIONS(2420), - [anon_sym_def] = ACTIONS(2418), - [anon_sym_export_DASHenv] = ACTIONS(2418), - [anon_sym_extern] = ACTIONS(2418), - [anon_sym_module] = ACTIONS(2418), - [anon_sym_use] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_DOLLAR] = ACTIONS(2420), - [anon_sym_error] = ACTIONS(2418), - [anon_sym_list] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_loop] = ACTIONS(2418), - [anon_sym_make] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_do] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_else] = ACTIONS(2418), - [anon_sym_match] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_try] = ACTIONS(2418), - [anon_sym_catch] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_source] = ACTIONS(2418), - [anon_sym_source_DASHenv] = ACTIONS(2418), - [anon_sym_register] = ACTIONS(2418), - [anon_sym_hide] = ACTIONS(2418), - [anon_sym_hide_DASHenv] = ACTIONS(2418), - [anon_sym_overlay] = ACTIONS(2418), - [anon_sym_new] = ACTIONS(2418), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2420), - [aux_sym__val_number_decimal_token1] = ACTIONS(2418), - [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), - [anon_sym_PLUS] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2420), + [852] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7097), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7596), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(852), + [aux_sym_shebang_repeat1] = STATE(886), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_RBRACK] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [661] = { - [sym_comment] = STATE(661), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_alias] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_let_DASHenv] = ACTIONS(2494), - [anon_sym_mut] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [aux_sym_cmd_identifier_token1] = ACTIONS(2494), - [aux_sym_cmd_identifier_token2] = ACTIONS(2494), - [aux_sym_cmd_identifier_token3] = ACTIONS(2494), - [aux_sym_cmd_identifier_token4] = ACTIONS(2494), - [aux_sym_cmd_identifier_token5] = ACTIONS(2494), - [aux_sym_cmd_identifier_token6] = ACTIONS(2494), - [aux_sym_cmd_identifier_token7] = ACTIONS(2494), - [aux_sym_cmd_identifier_token8] = ACTIONS(2494), - [aux_sym_cmd_identifier_token9] = ACTIONS(2494), - [aux_sym_cmd_identifier_token10] = ACTIONS(2494), - [aux_sym_cmd_identifier_token11] = ACTIONS(2494), - [aux_sym_cmd_identifier_token12] = ACTIONS(2494), - [aux_sym_cmd_identifier_token13] = ACTIONS(2494), - [aux_sym_cmd_identifier_token14] = ACTIONS(2494), - [aux_sym_cmd_identifier_token15] = ACTIONS(2494), - [aux_sym_cmd_identifier_token16] = ACTIONS(2494), - [aux_sym_cmd_identifier_token17] = ACTIONS(2494), - [aux_sym_cmd_identifier_token18] = ACTIONS(2494), - [aux_sym_cmd_identifier_token19] = ACTIONS(2494), - [aux_sym_cmd_identifier_token20] = ACTIONS(2494), - [aux_sym_cmd_identifier_token21] = ACTIONS(2494), - [aux_sym_cmd_identifier_token22] = ACTIONS(2494), - [aux_sym_cmd_identifier_token23] = ACTIONS(2494), - [aux_sym_cmd_identifier_token24] = ACTIONS(2494), - [aux_sym_cmd_identifier_token25] = ACTIONS(2494), - [aux_sym_cmd_identifier_token26] = ACTIONS(2494), - [aux_sym_cmd_identifier_token27] = ACTIONS(2494), - [aux_sym_cmd_identifier_token28] = ACTIONS(2494), - [aux_sym_cmd_identifier_token29] = ACTIONS(2494), - [aux_sym_cmd_identifier_token30] = ACTIONS(2494), - [aux_sym_cmd_identifier_token31] = ACTIONS(2494), - [aux_sym_cmd_identifier_token32] = ACTIONS(2494), - [aux_sym_cmd_identifier_token33] = ACTIONS(2494), - [aux_sym_cmd_identifier_token34] = ACTIONS(2494), - [aux_sym_cmd_identifier_token35] = ACTIONS(2494), - [aux_sym_cmd_identifier_token36] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2496), - [anon_sym_false] = ACTIONS(2496), - [anon_sym_null] = ACTIONS(2496), - [aux_sym_cmd_identifier_token38] = ACTIONS(2494), - [aux_sym_cmd_identifier_token39] = ACTIONS(2496), - [aux_sym_cmd_identifier_token40] = ACTIONS(2496), - [anon_sym_def] = ACTIONS(2494), - [anon_sym_export_DASHenv] = ACTIONS(2494), - [anon_sym_extern] = ACTIONS(2494), - [anon_sym_module] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_DOLLAR] = ACTIONS(2496), - [anon_sym_error] = ACTIONS(2494), - [anon_sym_list] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_in] = ACTIONS(2494), - [anon_sym_loop] = ACTIONS(2494), - [anon_sym_make] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_do] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_else] = ACTIONS(2494), - [anon_sym_match] = ACTIONS(2494), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2494), - [anon_sym_catch] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_source] = ACTIONS(2494), - [anon_sym_source_DASHenv] = ACTIONS(2494), - [anon_sym_register] = ACTIONS(2494), - [anon_sym_hide] = ACTIONS(2494), - [anon_sym_hide_DASHenv] = ACTIONS(2494), - [anon_sym_overlay] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_as] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2496), - [aux_sym__val_number_decimal_token1] = ACTIONS(2494), - [aux_sym__val_number_decimal_token2] = ACTIONS(2496), - [aux_sym__val_number_decimal_token3] = ACTIONS(2496), - [aux_sym__val_number_decimal_token4] = ACTIONS(2496), - [aux_sym__val_number_token1] = ACTIONS(2496), - [aux_sym__val_number_token2] = ACTIONS(2496), - [aux_sym__val_number_token3] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2496), - [sym__str_single_quotes] = ACTIONS(2496), - [sym__str_back_ticks] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2496), + [853] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7152), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7744), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(853), + [aux_sym_shebang_repeat1] = STATE(883), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [662] = { - [sym_comment] = STATE(662), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_alias] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_let_DASHenv] = ACTIONS(2494), - [anon_sym_mut] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [aux_sym_cmd_identifier_token1] = ACTIONS(2494), - [aux_sym_cmd_identifier_token2] = ACTIONS(2494), - [aux_sym_cmd_identifier_token3] = ACTIONS(2494), - [aux_sym_cmd_identifier_token4] = ACTIONS(2494), - [aux_sym_cmd_identifier_token5] = ACTIONS(2494), - [aux_sym_cmd_identifier_token6] = ACTIONS(2494), - [aux_sym_cmd_identifier_token7] = ACTIONS(2494), - [aux_sym_cmd_identifier_token8] = ACTIONS(2494), - [aux_sym_cmd_identifier_token9] = ACTIONS(2494), - [aux_sym_cmd_identifier_token10] = ACTIONS(2494), - [aux_sym_cmd_identifier_token11] = ACTIONS(2494), - [aux_sym_cmd_identifier_token12] = ACTIONS(2494), - [aux_sym_cmd_identifier_token13] = ACTIONS(2494), - [aux_sym_cmd_identifier_token14] = ACTIONS(2494), - [aux_sym_cmd_identifier_token15] = ACTIONS(2494), - [aux_sym_cmd_identifier_token16] = ACTIONS(2494), - [aux_sym_cmd_identifier_token17] = ACTIONS(2494), - [aux_sym_cmd_identifier_token18] = ACTIONS(2494), - [aux_sym_cmd_identifier_token19] = ACTIONS(2494), - [aux_sym_cmd_identifier_token20] = ACTIONS(2494), - [aux_sym_cmd_identifier_token21] = ACTIONS(2494), - [aux_sym_cmd_identifier_token22] = ACTIONS(2494), - [aux_sym_cmd_identifier_token23] = ACTIONS(2494), - [aux_sym_cmd_identifier_token24] = ACTIONS(2494), - [aux_sym_cmd_identifier_token25] = ACTIONS(2494), - [aux_sym_cmd_identifier_token26] = ACTIONS(2494), - [aux_sym_cmd_identifier_token27] = ACTIONS(2494), - [aux_sym_cmd_identifier_token28] = ACTIONS(2494), - [aux_sym_cmd_identifier_token29] = ACTIONS(2494), - [aux_sym_cmd_identifier_token30] = ACTIONS(2494), - [aux_sym_cmd_identifier_token31] = ACTIONS(2494), - [aux_sym_cmd_identifier_token32] = ACTIONS(2494), - [aux_sym_cmd_identifier_token33] = ACTIONS(2494), - [aux_sym_cmd_identifier_token34] = ACTIONS(2494), - [aux_sym_cmd_identifier_token35] = ACTIONS(2494), - [aux_sym_cmd_identifier_token36] = ACTIONS(2494), - [anon_sym_true] = ACTIONS(2496), - [anon_sym_false] = ACTIONS(2496), - [anon_sym_null] = ACTIONS(2496), - [aux_sym_cmd_identifier_token38] = ACTIONS(2494), - [aux_sym_cmd_identifier_token39] = ACTIONS(2496), - [aux_sym_cmd_identifier_token40] = ACTIONS(2496), - [anon_sym_def] = ACTIONS(2494), - [anon_sym_export_DASHenv] = ACTIONS(2494), - [anon_sym_extern] = ACTIONS(2494), - [anon_sym_module] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_DOLLAR] = ACTIONS(2496), - [anon_sym_error] = ACTIONS(2494), - [anon_sym_list] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_in] = ACTIONS(2494), - [anon_sym_loop] = ACTIONS(2494), - [anon_sym_make] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_do] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_else] = ACTIONS(2494), - [anon_sym_match] = ACTIONS(2494), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2494), - [anon_sym_catch] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_source] = ACTIONS(2494), - [anon_sym_source_DASHenv] = ACTIONS(2494), - [anon_sym_register] = ACTIONS(2494), - [anon_sym_hide] = ACTIONS(2494), - [anon_sym_hide_DASHenv] = ACTIONS(2494), - [anon_sym_overlay] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_as] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2496), - [aux_sym__val_number_decimal_token1] = ACTIONS(2494), - [aux_sym__val_number_decimal_token2] = ACTIONS(2496), - [aux_sym__val_number_decimal_token3] = ACTIONS(2496), - [aux_sym__val_number_decimal_token4] = ACTIONS(2496), - [aux_sym__val_number_token1] = ACTIONS(2496), - [aux_sym__val_number_token2] = ACTIONS(2496), - [aux_sym__val_number_token3] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2496), - [sym__str_single_quotes] = ACTIONS(2496), - [sym__str_back_ticks] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2496), + [854] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7097), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7877), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(854), + [aux_sym_shebang_repeat1] = STATE(886), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_RBRACK] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [663] = { - [sym_comment] = STATE(663), - [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(249), - [sym_raw_string_begin] = ACTIONS(2456), + [855] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7097), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7709), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(855), + [aux_sym_shebang_repeat1] = STATE(886), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_RBRACK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [664] = { - [sym_comment] = STATE(664), - [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(249), - [sym_raw_string_begin] = ACTIONS(2432), + [856] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7090), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7596), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(856), + [aux_sym_shebang_repeat1] = STATE(888), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [665] = { - [sym_comment] = STATE(665), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_alias] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_let_DASHenv] = ACTIONS(2478), - [anon_sym_mut] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [aux_sym_cmd_identifier_token1] = ACTIONS(2478), - [aux_sym_cmd_identifier_token2] = ACTIONS(2478), - [aux_sym_cmd_identifier_token3] = ACTIONS(2478), - [aux_sym_cmd_identifier_token4] = ACTIONS(2478), - [aux_sym_cmd_identifier_token5] = ACTIONS(2478), - [aux_sym_cmd_identifier_token6] = ACTIONS(2478), - [aux_sym_cmd_identifier_token7] = ACTIONS(2478), - [aux_sym_cmd_identifier_token8] = ACTIONS(2478), - [aux_sym_cmd_identifier_token9] = ACTIONS(2478), - [aux_sym_cmd_identifier_token10] = ACTIONS(2478), - [aux_sym_cmd_identifier_token11] = ACTIONS(2478), - [aux_sym_cmd_identifier_token12] = ACTIONS(2478), - [aux_sym_cmd_identifier_token13] = ACTIONS(2478), - [aux_sym_cmd_identifier_token14] = ACTIONS(2478), - [aux_sym_cmd_identifier_token15] = ACTIONS(2478), - [aux_sym_cmd_identifier_token16] = ACTIONS(2478), - [aux_sym_cmd_identifier_token17] = ACTIONS(2478), - [aux_sym_cmd_identifier_token18] = ACTIONS(2478), - [aux_sym_cmd_identifier_token19] = ACTIONS(2478), - [aux_sym_cmd_identifier_token20] = ACTIONS(2478), - [aux_sym_cmd_identifier_token21] = ACTIONS(2478), - [aux_sym_cmd_identifier_token22] = ACTIONS(2478), - [aux_sym_cmd_identifier_token23] = ACTIONS(2478), - [aux_sym_cmd_identifier_token24] = ACTIONS(2478), - [aux_sym_cmd_identifier_token25] = ACTIONS(2478), - [aux_sym_cmd_identifier_token26] = ACTIONS(2478), - [aux_sym_cmd_identifier_token27] = ACTIONS(2478), - [aux_sym_cmd_identifier_token28] = ACTIONS(2478), - [aux_sym_cmd_identifier_token29] = ACTIONS(2478), - [aux_sym_cmd_identifier_token30] = ACTIONS(2478), - [aux_sym_cmd_identifier_token31] = ACTIONS(2478), - [aux_sym_cmd_identifier_token32] = ACTIONS(2478), - [aux_sym_cmd_identifier_token33] = ACTIONS(2478), - [aux_sym_cmd_identifier_token34] = ACTIONS(2478), - [aux_sym_cmd_identifier_token35] = ACTIONS(2478), - [aux_sym_cmd_identifier_token36] = ACTIONS(2478), - [anon_sym_true] = ACTIONS(2480), - [anon_sym_false] = ACTIONS(2480), - [anon_sym_null] = ACTIONS(2480), - [aux_sym_cmd_identifier_token38] = ACTIONS(2478), - [aux_sym_cmd_identifier_token39] = ACTIONS(2480), - [aux_sym_cmd_identifier_token40] = ACTIONS(2480), - [anon_sym_def] = ACTIONS(2478), - [anon_sym_export_DASHenv] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_use] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_DOLLAR] = ACTIONS(2480), - [anon_sym_error] = ACTIONS(2478), - [anon_sym_list] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2478), - [anon_sym_loop] = ACTIONS(2478), - [anon_sym_make] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_match] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_source] = ACTIONS(2478), - [anon_sym_source_DASHenv] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_hide] = ACTIONS(2478), - [anon_sym_hide_DASHenv] = ACTIONS(2478), - [anon_sym_overlay] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2480), - [aux_sym__val_number_decimal_token1] = ACTIONS(2478), - [aux_sym__val_number_decimal_token2] = ACTIONS(2480), - [aux_sym__val_number_decimal_token3] = ACTIONS(2480), - [aux_sym__val_number_decimal_token4] = ACTIONS(2480), - [aux_sym__val_number_token1] = ACTIONS(2480), - [aux_sym__val_number_token2] = ACTIONS(2480), - [aux_sym__val_number_token3] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym__str_single_quotes] = ACTIONS(2480), - [sym__str_back_ticks] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2480), + [857] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7194), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7824), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(857), + [aux_sym_shebang_repeat1] = STATE(892), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [666] = { - [sym_comment] = STATE(666), - [anon_sym_export] = ACTIONS(2539), - [anon_sym_alias] = ACTIONS(2539), - [anon_sym_let] = ACTIONS(2539), - [anon_sym_let_DASHenv] = ACTIONS(2539), - [anon_sym_mut] = ACTIONS(2539), - [anon_sym_const] = ACTIONS(2539), - [aux_sym_cmd_identifier_token1] = ACTIONS(2539), - [aux_sym_cmd_identifier_token2] = ACTIONS(2539), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), - [aux_sym_cmd_identifier_token6] = ACTIONS(2539), - [aux_sym_cmd_identifier_token7] = ACTIONS(2539), - [aux_sym_cmd_identifier_token8] = ACTIONS(2539), - [aux_sym_cmd_identifier_token9] = ACTIONS(2539), - [aux_sym_cmd_identifier_token10] = ACTIONS(2539), - [aux_sym_cmd_identifier_token11] = ACTIONS(2539), - [aux_sym_cmd_identifier_token12] = ACTIONS(2539), - [aux_sym_cmd_identifier_token13] = ACTIONS(2539), - [aux_sym_cmd_identifier_token14] = ACTIONS(2539), - [aux_sym_cmd_identifier_token15] = ACTIONS(2539), - [aux_sym_cmd_identifier_token16] = ACTIONS(2539), - [aux_sym_cmd_identifier_token17] = ACTIONS(2539), - [aux_sym_cmd_identifier_token18] = ACTIONS(2539), - [aux_sym_cmd_identifier_token19] = ACTIONS(2539), - [aux_sym_cmd_identifier_token20] = ACTIONS(2539), - [aux_sym_cmd_identifier_token21] = ACTIONS(2539), - [aux_sym_cmd_identifier_token22] = ACTIONS(2539), - [aux_sym_cmd_identifier_token23] = ACTIONS(2539), - [aux_sym_cmd_identifier_token24] = ACTIONS(2539), - [aux_sym_cmd_identifier_token25] = ACTIONS(2539), - [aux_sym_cmd_identifier_token26] = ACTIONS(2539), - [aux_sym_cmd_identifier_token27] = ACTIONS(2539), - [aux_sym_cmd_identifier_token28] = ACTIONS(2539), - [aux_sym_cmd_identifier_token29] = ACTIONS(2539), - [aux_sym_cmd_identifier_token30] = ACTIONS(2539), - [aux_sym_cmd_identifier_token31] = ACTIONS(2539), - [aux_sym_cmd_identifier_token32] = ACTIONS(2539), - [aux_sym_cmd_identifier_token33] = ACTIONS(2539), - [aux_sym_cmd_identifier_token34] = ACTIONS(2539), - [aux_sym_cmd_identifier_token35] = ACTIONS(2539), - [aux_sym_cmd_identifier_token36] = ACTIONS(2539), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_null] = ACTIONS(2541), - [aux_sym_cmd_identifier_token38] = ACTIONS(2539), - [aux_sym_cmd_identifier_token39] = ACTIONS(2541), - [aux_sym_cmd_identifier_token40] = ACTIONS(2541), - [anon_sym_def] = ACTIONS(2539), - [anon_sym_export_DASHenv] = ACTIONS(2539), - [anon_sym_extern] = ACTIONS(2539), - [anon_sym_module] = ACTIONS(2539), - [anon_sym_use] = ACTIONS(2539), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_DOLLAR] = ACTIONS(2541), - [anon_sym_error] = ACTIONS(2539), - [anon_sym_list] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_break] = ACTIONS(2539), - [anon_sym_continue] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_in] = ACTIONS(2539), - [anon_sym_loop] = ACTIONS(2539), - [anon_sym_make] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_do] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2539), - [anon_sym_match] = ACTIONS(2539), - [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_try] = ACTIONS(2539), - [anon_sym_catch] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_source] = ACTIONS(2539), - [anon_sym_source_DASHenv] = ACTIONS(2539), - [anon_sym_register] = ACTIONS(2539), - [anon_sym_hide] = ACTIONS(2539), - [anon_sym_hide_DASHenv] = ACTIONS(2539), - [anon_sym_overlay] = ACTIONS(2539), - [anon_sym_new] = ACTIONS(2539), - [anon_sym_as] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2541), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2541), - [aux_sym__val_number_decimal_token1] = ACTIONS(2539), - [aux_sym__val_number_decimal_token2] = ACTIONS(2541), - [aux_sym__val_number_decimal_token3] = ACTIONS(2541), - [aux_sym__val_number_decimal_token4] = ACTIONS(2541), - [aux_sym__val_number_token1] = ACTIONS(2541), - [aux_sym__val_number_token2] = ACTIONS(2541), - [aux_sym__val_number_token3] = ACTIONS(2541), - [anon_sym_DQUOTE] = ACTIONS(2541), - [sym__str_single_quotes] = ACTIONS(2541), - [sym__str_back_ticks] = ACTIONS(2541), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2541), - [anon_sym_PLUS] = ACTIONS(2539), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2541), + [858] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7202), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7579), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(858), + [aux_sym_shebang_repeat1] = STATE(893), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [667] = { - [sym_comment] = STATE(667), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_alias] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_let_DASHenv] = ACTIONS(2410), - [anon_sym_mut] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [aux_sym_cmd_identifier_token1] = ACTIONS(2410), - [aux_sym_cmd_identifier_token2] = ACTIONS(2410), - [aux_sym_cmd_identifier_token3] = ACTIONS(2410), - [aux_sym_cmd_identifier_token4] = ACTIONS(2410), - [aux_sym_cmd_identifier_token5] = ACTIONS(2410), - [aux_sym_cmd_identifier_token6] = ACTIONS(2410), - [aux_sym_cmd_identifier_token7] = ACTIONS(2410), - [aux_sym_cmd_identifier_token8] = ACTIONS(2410), - [aux_sym_cmd_identifier_token9] = ACTIONS(2410), - [aux_sym_cmd_identifier_token10] = ACTIONS(2410), - [aux_sym_cmd_identifier_token11] = ACTIONS(2410), - [aux_sym_cmd_identifier_token12] = ACTIONS(2410), - [aux_sym_cmd_identifier_token13] = ACTIONS(2410), - [aux_sym_cmd_identifier_token14] = ACTIONS(2410), - [aux_sym_cmd_identifier_token15] = ACTIONS(2410), - [aux_sym_cmd_identifier_token16] = ACTIONS(2410), - [aux_sym_cmd_identifier_token17] = ACTIONS(2410), - [aux_sym_cmd_identifier_token18] = ACTIONS(2410), - [aux_sym_cmd_identifier_token19] = ACTIONS(2410), - [aux_sym_cmd_identifier_token20] = ACTIONS(2410), - [aux_sym_cmd_identifier_token21] = ACTIONS(2410), - [aux_sym_cmd_identifier_token22] = ACTIONS(2410), - [aux_sym_cmd_identifier_token23] = ACTIONS(2410), - [aux_sym_cmd_identifier_token24] = ACTIONS(2410), - [aux_sym_cmd_identifier_token25] = ACTIONS(2410), - [aux_sym_cmd_identifier_token26] = ACTIONS(2410), - [aux_sym_cmd_identifier_token27] = ACTIONS(2410), - [aux_sym_cmd_identifier_token28] = ACTIONS(2410), - [aux_sym_cmd_identifier_token29] = ACTIONS(2410), - [aux_sym_cmd_identifier_token30] = ACTIONS(2410), - [aux_sym_cmd_identifier_token31] = ACTIONS(2410), - [aux_sym_cmd_identifier_token32] = ACTIONS(2410), - [aux_sym_cmd_identifier_token33] = ACTIONS(2410), - [aux_sym_cmd_identifier_token34] = ACTIONS(2410), - [aux_sym_cmd_identifier_token35] = ACTIONS(2410), - [aux_sym_cmd_identifier_token36] = ACTIONS(2410), - [anon_sym_true] = ACTIONS(2412), - [anon_sym_false] = ACTIONS(2412), - [anon_sym_null] = ACTIONS(2412), - [aux_sym_cmd_identifier_token38] = ACTIONS(2410), - [aux_sym_cmd_identifier_token39] = ACTIONS(2412), - [aux_sym_cmd_identifier_token40] = ACTIONS(2412), - [anon_sym_def] = ACTIONS(2410), - [anon_sym_export_DASHenv] = ACTIONS(2410), - [anon_sym_extern] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_use] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_DOLLAR] = ACTIONS(2412), - [anon_sym_error] = ACTIONS(2410), - [anon_sym_list] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_in] = ACTIONS(2410), - [anon_sym_loop] = ACTIONS(2410), - [anon_sym_make] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_do] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2410), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2412), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_catch] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_source] = ACTIONS(2410), - [anon_sym_source_DASHenv] = ACTIONS(2410), - [anon_sym_register] = ACTIONS(2410), - [anon_sym_hide] = ACTIONS(2410), - [anon_sym_hide_DASHenv] = ACTIONS(2410), - [anon_sym_overlay] = ACTIONS(2410), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2412), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2412), - [aux_sym__val_number_decimal_token4] = ACTIONS(2412), - [aux_sym__val_number_token1] = ACTIONS(2412), - [aux_sym__val_number_token2] = ACTIONS(2412), - [aux_sym__val_number_token3] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2412), - [sym__str_single_quotes] = ACTIONS(2412), - [sym__str_back_ticks] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2412), - [anon_sym_PLUS] = ACTIONS(2410), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2412), + [859] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7212), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7668), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(859), + [aux_sym_shebang_repeat1] = STATE(894), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [668] = { - [sym_comment] = STATE(668), - [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(249), - [sym_raw_string_begin] = ACTIONS(2440), + [860] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7220), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7678), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(860), + [aux_sym_shebang_repeat1] = STATE(895), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [669] = { - [sym_comment] = STATE(669), - [anon_sym_export] = ACTIONS(2543), - [anon_sym_alias] = ACTIONS(2543), - [anon_sym_let] = ACTIONS(2543), - [anon_sym_let_DASHenv] = ACTIONS(2543), - [anon_sym_mut] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [aux_sym_cmd_identifier_token1] = ACTIONS(2543), - [aux_sym_cmd_identifier_token2] = ACTIONS(2543), - [aux_sym_cmd_identifier_token3] = ACTIONS(2543), - [aux_sym_cmd_identifier_token4] = ACTIONS(2543), - [aux_sym_cmd_identifier_token5] = ACTIONS(2543), - [aux_sym_cmd_identifier_token6] = ACTIONS(2543), - [aux_sym_cmd_identifier_token7] = ACTIONS(2543), - [aux_sym_cmd_identifier_token8] = ACTIONS(2543), - [aux_sym_cmd_identifier_token9] = ACTIONS(2543), - [aux_sym_cmd_identifier_token10] = ACTIONS(2543), - [aux_sym_cmd_identifier_token11] = ACTIONS(2543), - [aux_sym_cmd_identifier_token12] = ACTIONS(2543), - [aux_sym_cmd_identifier_token13] = ACTIONS(2543), - [aux_sym_cmd_identifier_token14] = ACTIONS(2543), - [aux_sym_cmd_identifier_token15] = ACTIONS(2543), - [aux_sym_cmd_identifier_token16] = ACTIONS(2543), - [aux_sym_cmd_identifier_token17] = ACTIONS(2543), - [aux_sym_cmd_identifier_token18] = ACTIONS(2543), - [aux_sym_cmd_identifier_token19] = ACTIONS(2543), - [aux_sym_cmd_identifier_token20] = ACTIONS(2543), - [aux_sym_cmd_identifier_token21] = ACTIONS(2543), - [aux_sym_cmd_identifier_token22] = ACTIONS(2543), - [aux_sym_cmd_identifier_token23] = ACTIONS(2543), - [aux_sym_cmd_identifier_token24] = ACTIONS(2543), - [aux_sym_cmd_identifier_token25] = ACTIONS(2543), - [aux_sym_cmd_identifier_token26] = ACTIONS(2543), - [aux_sym_cmd_identifier_token27] = ACTIONS(2543), - [aux_sym_cmd_identifier_token28] = ACTIONS(2543), - [aux_sym_cmd_identifier_token29] = ACTIONS(2543), - [aux_sym_cmd_identifier_token30] = ACTIONS(2543), - [aux_sym_cmd_identifier_token31] = ACTIONS(2543), - [aux_sym_cmd_identifier_token32] = ACTIONS(2543), - [aux_sym_cmd_identifier_token33] = ACTIONS(2543), - [aux_sym_cmd_identifier_token34] = ACTIONS(2543), - [aux_sym_cmd_identifier_token35] = ACTIONS(2543), - [aux_sym_cmd_identifier_token36] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2545), - [anon_sym_false] = ACTIONS(2545), - [anon_sym_null] = ACTIONS(2545), - [aux_sym_cmd_identifier_token38] = ACTIONS(2543), - [aux_sym_cmd_identifier_token39] = ACTIONS(2545), - [aux_sym_cmd_identifier_token40] = ACTIONS(2545), - [anon_sym_def] = ACTIONS(2543), - [anon_sym_export_DASHenv] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym_module] = ACTIONS(2543), - [anon_sym_use] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(2545), - [anon_sym_error] = ACTIONS(2543), - [anon_sym_list] = ACTIONS(2543), - [anon_sym_DASH] = ACTIONS(2543), - [anon_sym_break] = ACTIONS(2543), - [anon_sym_continue] = ACTIONS(2543), - [anon_sym_for] = ACTIONS(2543), - [anon_sym_in] = ACTIONS(2543), - [anon_sym_loop] = ACTIONS(2543), - [anon_sym_make] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2543), - [anon_sym_do] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2543), - [anon_sym_else] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2545), - [anon_sym_try] = ACTIONS(2543), - [anon_sym_catch] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2543), - [anon_sym_source] = ACTIONS(2543), - [anon_sym_source_DASHenv] = ACTIONS(2543), - [anon_sym_register] = ACTIONS(2543), - [anon_sym_hide] = ACTIONS(2543), - [anon_sym_hide_DASHenv] = ACTIONS(2543), - [anon_sym_overlay] = ACTIONS(2543), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_as] = ACTIONS(2543), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2545), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2545), - [aux_sym__val_number_decimal_token1] = ACTIONS(2543), - [aux_sym__val_number_decimal_token2] = ACTIONS(2545), - [aux_sym__val_number_decimal_token3] = ACTIONS(2545), - [aux_sym__val_number_decimal_token4] = ACTIONS(2545), - [aux_sym__val_number_token1] = ACTIONS(2545), - [aux_sym__val_number_token2] = ACTIONS(2545), - [aux_sym__val_number_token3] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(2545), - [sym__str_single_quotes] = ACTIONS(2545), - [sym__str_back_ticks] = ACTIONS(2545), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2543), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2545), + [861] = { + [sym_comment] = STATE(861), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, - [670] = { - [sym_comment] = STATE(670), - [anon_sym_export] = ACTIONS(2561), - [anon_sym_alias] = ACTIONS(2561), - [anon_sym_let] = ACTIONS(2561), - [anon_sym_let_DASHenv] = ACTIONS(2561), - [anon_sym_mut] = ACTIONS(2561), - [anon_sym_const] = ACTIONS(2561), - [aux_sym_cmd_identifier_token1] = ACTIONS(2561), - [aux_sym_cmd_identifier_token2] = ACTIONS(2561), - [aux_sym_cmd_identifier_token3] = ACTIONS(2561), - [aux_sym_cmd_identifier_token4] = ACTIONS(2561), - [aux_sym_cmd_identifier_token5] = ACTIONS(2561), - [aux_sym_cmd_identifier_token6] = ACTIONS(2561), - [aux_sym_cmd_identifier_token7] = ACTIONS(2561), - [aux_sym_cmd_identifier_token8] = ACTIONS(2561), - [aux_sym_cmd_identifier_token9] = ACTIONS(2561), - [aux_sym_cmd_identifier_token10] = ACTIONS(2561), - [aux_sym_cmd_identifier_token11] = ACTIONS(2561), - [aux_sym_cmd_identifier_token12] = ACTIONS(2561), - [aux_sym_cmd_identifier_token13] = ACTIONS(2561), - [aux_sym_cmd_identifier_token14] = ACTIONS(2561), - [aux_sym_cmd_identifier_token15] = ACTIONS(2561), - [aux_sym_cmd_identifier_token16] = ACTIONS(2561), - [aux_sym_cmd_identifier_token17] = ACTIONS(2561), - [aux_sym_cmd_identifier_token18] = ACTIONS(2561), - [aux_sym_cmd_identifier_token19] = ACTIONS(2561), - [aux_sym_cmd_identifier_token20] = ACTIONS(2561), - [aux_sym_cmd_identifier_token21] = ACTIONS(2561), - [aux_sym_cmd_identifier_token22] = ACTIONS(2561), - [aux_sym_cmd_identifier_token23] = ACTIONS(2561), - [aux_sym_cmd_identifier_token24] = ACTIONS(2561), - [aux_sym_cmd_identifier_token25] = ACTIONS(2561), - [aux_sym_cmd_identifier_token26] = ACTIONS(2561), - [aux_sym_cmd_identifier_token27] = ACTIONS(2561), - [aux_sym_cmd_identifier_token28] = ACTIONS(2561), - [aux_sym_cmd_identifier_token29] = ACTIONS(2561), - [aux_sym_cmd_identifier_token30] = ACTIONS(2561), - [aux_sym_cmd_identifier_token31] = ACTIONS(2561), - [aux_sym_cmd_identifier_token32] = ACTIONS(2561), - [aux_sym_cmd_identifier_token33] = ACTIONS(2561), - [aux_sym_cmd_identifier_token34] = ACTIONS(2561), - [aux_sym_cmd_identifier_token35] = ACTIONS(2561), - [aux_sym_cmd_identifier_token36] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(2563), - [anon_sym_false] = ACTIONS(2563), - [anon_sym_null] = ACTIONS(2563), - [aux_sym_cmd_identifier_token38] = ACTIONS(2561), - [aux_sym_cmd_identifier_token39] = ACTIONS(2563), - [aux_sym_cmd_identifier_token40] = ACTIONS(2563), - [anon_sym_def] = ACTIONS(2561), - [anon_sym_export_DASHenv] = ACTIONS(2561), - [anon_sym_extern] = ACTIONS(2561), - [anon_sym_module] = ACTIONS(2561), - [anon_sym_use] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2563), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_error] = ACTIONS(2561), - [anon_sym_list] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_break] = ACTIONS(2561), - [anon_sym_continue] = ACTIONS(2561), - [anon_sym_for] = ACTIONS(2561), - [anon_sym_in] = ACTIONS(2561), - [anon_sym_loop] = ACTIONS(2561), - [anon_sym_make] = ACTIONS(2561), - [anon_sym_while] = ACTIONS(2561), - [anon_sym_do] = ACTIONS(2561), - [anon_sym_if] = ACTIONS(2561), - [anon_sym_else] = ACTIONS(2561), - [anon_sym_match] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2561), - [anon_sym_catch] = ACTIONS(2561), - [anon_sym_return] = ACTIONS(2561), - [anon_sym_source] = ACTIONS(2561), - [anon_sym_source_DASHenv] = ACTIONS(2561), - [anon_sym_register] = ACTIONS(2561), - [anon_sym_hide] = ACTIONS(2561), - [anon_sym_hide_DASHenv] = ACTIONS(2561), - [anon_sym_overlay] = ACTIONS(2561), - [anon_sym_new] = ACTIONS(2561), - [anon_sym_as] = ACTIONS(2561), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2563), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2563), - [aux_sym__val_number_decimal_token1] = ACTIONS(2561), - [aux_sym__val_number_decimal_token2] = ACTIONS(2563), - [aux_sym__val_number_decimal_token3] = ACTIONS(2563), - [aux_sym__val_number_decimal_token4] = ACTIONS(2563), - [aux_sym__val_number_token1] = ACTIONS(2563), - [aux_sym__val_number_token2] = ACTIONS(2563), - [aux_sym__val_number_token3] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2563), - [sym__str_single_quotes] = ACTIONS(2563), - [sym__str_back_ticks] = ACTIONS(2563), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2563), + [862] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7228), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7567), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(862), + [aux_sym_shebang_repeat1] = STATE(896), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [671] = { - [sym_comment] = STATE(671), - [anon_sym_export] = ACTIONS(2001), - [anon_sym_alias] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_let_DASHenv] = ACTIONS(2001), - [anon_sym_mut] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(2001), - [aux_sym_cmd_identifier_token1] = ACTIONS(2001), - [aux_sym_cmd_identifier_token2] = ACTIONS(2001), - [aux_sym_cmd_identifier_token3] = ACTIONS(2001), - [aux_sym_cmd_identifier_token4] = ACTIONS(2001), - [aux_sym_cmd_identifier_token5] = ACTIONS(2001), - [aux_sym_cmd_identifier_token6] = ACTIONS(2001), - [aux_sym_cmd_identifier_token7] = ACTIONS(2001), - [aux_sym_cmd_identifier_token8] = ACTIONS(2001), - [aux_sym_cmd_identifier_token9] = ACTIONS(2001), - [aux_sym_cmd_identifier_token10] = ACTIONS(2001), - [aux_sym_cmd_identifier_token11] = ACTIONS(2001), - [aux_sym_cmd_identifier_token12] = ACTIONS(2001), - [aux_sym_cmd_identifier_token13] = ACTIONS(2001), - [aux_sym_cmd_identifier_token14] = ACTIONS(2001), - [aux_sym_cmd_identifier_token15] = ACTIONS(2001), - [aux_sym_cmd_identifier_token16] = ACTIONS(2001), - [aux_sym_cmd_identifier_token17] = ACTIONS(2001), - [aux_sym_cmd_identifier_token18] = ACTIONS(2001), - [aux_sym_cmd_identifier_token19] = ACTIONS(2001), - [aux_sym_cmd_identifier_token20] = ACTIONS(2001), - [aux_sym_cmd_identifier_token21] = ACTIONS(2001), - [aux_sym_cmd_identifier_token22] = ACTIONS(2001), - [aux_sym_cmd_identifier_token23] = ACTIONS(2001), - [aux_sym_cmd_identifier_token24] = ACTIONS(2001), - [aux_sym_cmd_identifier_token25] = ACTIONS(2001), - [aux_sym_cmd_identifier_token26] = ACTIONS(2001), - [aux_sym_cmd_identifier_token27] = ACTIONS(2001), - [aux_sym_cmd_identifier_token28] = ACTIONS(2001), - [aux_sym_cmd_identifier_token29] = ACTIONS(2001), - [aux_sym_cmd_identifier_token30] = ACTIONS(2001), - [aux_sym_cmd_identifier_token31] = ACTIONS(2001), - [aux_sym_cmd_identifier_token32] = ACTIONS(2001), - [aux_sym_cmd_identifier_token33] = ACTIONS(2001), - [aux_sym_cmd_identifier_token34] = ACTIONS(2001), - [aux_sym_cmd_identifier_token35] = ACTIONS(2001), - [aux_sym_cmd_identifier_token36] = ACTIONS(2001), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [aux_sym_cmd_identifier_token38] = ACTIONS(2001), - [aux_sym_cmd_identifier_token39] = ACTIONS(2003), - [aux_sym_cmd_identifier_token40] = ACTIONS(2003), - [anon_sym_def] = ACTIONS(2001), - [anon_sym_export_DASHenv] = ACTIONS(2001), - [anon_sym_extern] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_use] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2003), - [anon_sym_error] = ACTIONS(2001), - [anon_sym_list] = ACTIONS(2001), - [anon_sym_DASH] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2001), - [anon_sym_continue] = ACTIONS(2001), - [anon_sym_for] = ACTIONS(2001), - [anon_sym_in] = ACTIONS(2001), - [anon_sym_loop] = ACTIONS(2001), - [anon_sym_make] = ACTIONS(2001), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(2001), - [anon_sym_if] = ACTIONS(2001), - [anon_sym_else] = ACTIONS(2001), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2001), - [anon_sym_catch] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2001), - [anon_sym_source] = ACTIONS(2001), - [anon_sym_source_DASHenv] = ACTIONS(2001), - [anon_sym_register] = ACTIONS(2001), - [anon_sym_hide] = ACTIONS(2001), - [anon_sym_hide_DASHenv] = ACTIONS(2001), - [anon_sym_overlay] = ACTIONS(2001), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2003), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2003), - [aux_sym__val_number_decimal_token3] = ACTIONS(2003), - [aux_sym__val_number_decimal_token4] = ACTIONS(2003), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [sym__str_single_quotes] = ACTIONS(2003), - [sym__str_back_ticks] = ACTIONS(2003), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2001), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2003), + [863] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7235), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7754), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(863), + [aux_sym_shebang_repeat1] = STATE(897), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [672] = { - [sym_comment] = STATE(672), - [anon_sym_export] = ACTIONS(2535), - [anon_sym_alias] = ACTIONS(2535), - [anon_sym_let] = ACTIONS(2535), - [anon_sym_let_DASHenv] = ACTIONS(2535), - [anon_sym_mut] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [aux_sym_cmd_identifier_token1] = ACTIONS(2535), - [aux_sym_cmd_identifier_token2] = ACTIONS(2535), - [aux_sym_cmd_identifier_token3] = ACTIONS(2535), - [aux_sym_cmd_identifier_token4] = ACTIONS(2535), - [aux_sym_cmd_identifier_token5] = ACTIONS(2535), - [aux_sym_cmd_identifier_token6] = ACTIONS(2535), - [aux_sym_cmd_identifier_token7] = ACTIONS(2535), - [aux_sym_cmd_identifier_token8] = ACTIONS(2535), - [aux_sym_cmd_identifier_token9] = ACTIONS(2535), - [aux_sym_cmd_identifier_token10] = ACTIONS(2535), - [aux_sym_cmd_identifier_token11] = ACTIONS(2535), - [aux_sym_cmd_identifier_token12] = ACTIONS(2535), - [aux_sym_cmd_identifier_token13] = ACTIONS(2535), - [aux_sym_cmd_identifier_token14] = ACTIONS(2535), - [aux_sym_cmd_identifier_token15] = ACTIONS(2535), - [aux_sym_cmd_identifier_token16] = ACTIONS(2535), - [aux_sym_cmd_identifier_token17] = ACTIONS(2535), - [aux_sym_cmd_identifier_token18] = ACTIONS(2535), - [aux_sym_cmd_identifier_token19] = ACTIONS(2535), - [aux_sym_cmd_identifier_token20] = ACTIONS(2535), - [aux_sym_cmd_identifier_token21] = ACTIONS(2535), - [aux_sym_cmd_identifier_token22] = ACTIONS(2535), - [aux_sym_cmd_identifier_token23] = ACTIONS(2535), - [aux_sym_cmd_identifier_token24] = ACTIONS(2535), - [aux_sym_cmd_identifier_token25] = ACTIONS(2535), - [aux_sym_cmd_identifier_token26] = ACTIONS(2535), - [aux_sym_cmd_identifier_token27] = ACTIONS(2535), - [aux_sym_cmd_identifier_token28] = ACTIONS(2535), - [aux_sym_cmd_identifier_token29] = ACTIONS(2535), - [aux_sym_cmd_identifier_token30] = ACTIONS(2535), - [aux_sym_cmd_identifier_token31] = ACTIONS(2535), - [aux_sym_cmd_identifier_token32] = ACTIONS(2535), - [aux_sym_cmd_identifier_token33] = ACTIONS(2535), - [aux_sym_cmd_identifier_token34] = ACTIONS(2535), - [aux_sym_cmd_identifier_token35] = ACTIONS(2535), - [aux_sym_cmd_identifier_token36] = ACTIONS(2535), - [anon_sym_true] = ACTIONS(2537), - [anon_sym_false] = ACTIONS(2537), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token38] = ACTIONS(2535), - [aux_sym_cmd_identifier_token39] = ACTIONS(2537), - [aux_sym_cmd_identifier_token40] = ACTIONS(2537), - [anon_sym_def] = ACTIONS(2535), - [anon_sym_export_DASHenv] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym_module] = ACTIONS(2535), - [anon_sym_use] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_error] = ACTIONS(2535), - [anon_sym_list] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_in] = ACTIONS(2535), - [anon_sym_loop] = ACTIONS(2535), - [anon_sym_make] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_do] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_else] = ACTIONS(2535), - [anon_sym_match] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_try] = ACTIONS(2535), - [anon_sym_catch] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_source] = ACTIONS(2535), - [anon_sym_source_DASHenv] = ACTIONS(2535), - [anon_sym_register] = ACTIONS(2535), - [anon_sym_hide] = ACTIONS(2535), - [anon_sym_hide_DASHenv] = ACTIONS(2535), - [anon_sym_overlay] = ACTIONS(2535), - [anon_sym_new] = ACTIONS(2535), - [anon_sym_as] = ACTIONS(2535), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2537), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2537), - [aux_sym__val_number_decimal_token1] = ACTIONS(2535), - [aux_sym__val_number_decimal_token2] = ACTIONS(2537), - [aux_sym__val_number_decimal_token3] = ACTIONS(2537), - [aux_sym__val_number_decimal_token4] = ACTIONS(2537), - [aux_sym__val_number_token1] = ACTIONS(2537), - [aux_sym__val_number_token2] = ACTIONS(2537), - [aux_sym__val_number_token3] = ACTIONS(2537), - [anon_sym_DQUOTE] = ACTIONS(2537), - [sym__str_single_quotes] = ACTIONS(2537), - [sym__str_back_ticks] = ACTIONS(2537), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2537), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2537), + [864] = { + [sym_comment] = STATE(864), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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(1621), + [anon_sym_out_GT_GT] = ACTIONS(1621), + [anon_sym_e_GT_GT] = ACTIONS(1621), + [anon_sym_o_GT_GT] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(3), }, - [673] = { - [sym_comment] = STATE(673), - [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(249), - [sym_raw_string_begin] = ACTIONS(2468), + [865] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7243), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7976), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(865), + [aux_sym_shebang_repeat1] = STATE(898), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [674] = { - [sym_comment] = STATE(674), - [anon_sym_export] = ACTIONS(2017), - [anon_sym_alias] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_let_DASHenv] = ACTIONS(2017), - [anon_sym_mut] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [aux_sym_cmd_identifier_token1] = ACTIONS(2017), - [aux_sym_cmd_identifier_token2] = ACTIONS(2017), - [aux_sym_cmd_identifier_token3] = ACTIONS(2017), - [aux_sym_cmd_identifier_token4] = ACTIONS(2017), - [aux_sym_cmd_identifier_token5] = ACTIONS(2017), - [aux_sym_cmd_identifier_token6] = ACTIONS(2017), - [aux_sym_cmd_identifier_token7] = ACTIONS(2017), - [aux_sym_cmd_identifier_token8] = ACTIONS(2017), - [aux_sym_cmd_identifier_token9] = ACTIONS(2017), - [aux_sym_cmd_identifier_token10] = ACTIONS(2017), - [aux_sym_cmd_identifier_token11] = ACTIONS(2017), - [aux_sym_cmd_identifier_token12] = ACTIONS(2017), - [aux_sym_cmd_identifier_token13] = ACTIONS(2017), - [aux_sym_cmd_identifier_token14] = ACTIONS(2017), - [aux_sym_cmd_identifier_token15] = ACTIONS(2017), - [aux_sym_cmd_identifier_token16] = ACTIONS(2017), - [aux_sym_cmd_identifier_token17] = ACTIONS(2017), - [aux_sym_cmd_identifier_token18] = ACTIONS(2017), - [aux_sym_cmd_identifier_token19] = ACTIONS(2017), - [aux_sym_cmd_identifier_token20] = ACTIONS(2017), - [aux_sym_cmd_identifier_token21] = ACTIONS(2017), - [aux_sym_cmd_identifier_token22] = ACTIONS(2017), - [aux_sym_cmd_identifier_token23] = ACTIONS(2017), - [aux_sym_cmd_identifier_token24] = ACTIONS(2017), - [aux_sym_cmd_identifier_token25] = ACTIONS(2017), - [aux_sym_cmd_identifier_token26] = ACTIONS(2017), - [aux_sym_cmd_identifier_token27] = ACTIONS(2017), - [aux_sym_cmd_identifier_token28] = ACTIONS(2017), - [aux_sym_cmd_identifier_token29] = ACTIONS(2017), - [aux_sym_cmd_identifier_token30] = ACTIONS(2017), - [aux_sym_cmd_identifier_token31] = ACTIONS(2017), - [aux_sym_cmd_identifier_token32] = ACTIONS(2017), - [aux_sym_cmd_identifier_token33] = ACTIONS(2017), - [aux_sym_cmd_identifier_token34] = ACTIONS(2017), - [aux_sym_cmd_identifier_token35] = ACTIONS(2017), - [aux_sym_cmd_identifier_token36] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [anon_sym_null] = ACTIONS(2019), - [aux_sym_cmd_identifier_token38] = ACTIONS(2017), - [aux_sym_cmd_identifier_token39] = ACTIONS(2019), - [aux_sym_cmd_identifier_token40] = ACTIONS(2019), - [anon_sym_def] = ACTIONS(2017), - [anon_sym_export_DASHenv] = ACTIONS(2017), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_error] = ACTIONS(2017), - [anon_sym_list] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_in] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_make] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_catch] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_source] = ACTIONS(2017), - [anon_sym_source_DASHenv] = ACTIONS(2017), - [anon_sym_register] = ACTIONS(2017), - [anon_sym_hide] = ACTIONS(2017), - [anon_sym_hide_DASHenv] = ACTIONS(2017), - [anon_sym_overlay] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2019), - [aux_sym__val_number_decimal_token3] = ACTIONS(2019), - [aux_sym__val_number_decimal_token4] = ACTIONS(2019), - [aux_sym__val_number_token1] = ACTIONS(2019), - [aux_sym__val_number_token2] = ACTIONS(2019), - [aux_sym__val_number_token3] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2019), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2019), + [866] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7256), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7730), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(866), + [aux_sym_shebang_repeat1] = STATE(900), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [675] = { - [sym_comment] = STATE(675), - [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(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [aux_sym_cmd_identifier_token38] = ACTIONS(2043), - [aux_sym_cmd_identifier_token39] = ACTIONS(2045), - [aux_sym_cmd_identifier_token40] = ACTIONS(2045), - [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(2045), - [anon_sym_DOLLAR] = ACTIONS(2045), - [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(2045), - [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(2045), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2045), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2045), - [aux_sym__val_number_decimal_token3] = ACTIONS(2045), - [aux_sym__val_number_decimal_token4] = ACTIONS(2045), - [aux_sym__val_number_token1] = ACTIONS(2045), - [aux_sym__val_number_token2] = ACTIONS(2045), - [aux_sym__val_number_token3] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [sym__str_single_quotes] = ACTIONS(2045), - [sym__str_back_ticks] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2045), + [867] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7264), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7867), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(867), + [aux_sym_shebang_repeat1] = STATE(901), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [676] = { - [sym_comment] = STATE(676), - [anon_sym_export] = ACTIONS(2047), - [anon_sym_alias] = ACTIONS(2047), - [anon_sym_let] = ACTIONS(2047), - [anon_sym_let_DASHenv] = ACTIONS(2047), - [anon_sym_mut] = ACTIONS(2047), - [anon_sym_const] = ACTIONS(2047), - [aux_sym_cmd_identifier_token1] = ACTIONS(2047), - [aux_sym_cmd_identifier_token2] = ACTIONS(2047), - [aux_sym_cmd_identifier_token3] = ACTIONS(2047), - [aux_sym_cmd_identifier_token4] = ACTIONS(2047), - [aux_sym_cmd_identifier_token5] = ACTIONS(2047), - [aux_sym_cmd_identifier_token6] = ACTIONS(2047), - [aux_sym_cmd_identifier_token7] = ACTIONS(2047), - [aux_sym_cmd_identifier_token8] = ACTIONS(2047), - [aux_sym_cmd_identifier_token9] = ACTIONS(2047), - [aux_sym_cmd_identifier_token10] = ACTIONS(2047), - [aux_sym_cmd_identifier_token11] = ACTIONS(2047), - [aux_sym_cmd_identifier_token12] = ACTIONS(2047), - [aux_sym_cmd_identifier_token13] = ACTIONS(2047), - [aux_sym_cmd_identifier_token14] = ACTIONS(2047), - [aux_sym_cmd_identifier_token15] = ACTIONS(2047), - [aux_sym_cmd_identifier_token16] = ACTIONS(2047), - [aux_sym_cmd_identifier_token17] = ACTIONS(2047), - [aux_sym_cmd_identifier_token18] = ACTIONS(2047), - [aux_sym_cmd_identifier_token19] = ACTIONS(2047), - [aux_sym_cmd_identifier_token20] = ACTIONS(2047), - [aux_sym_cmd_identifier_token21] = ACTIONS(2047), - [aux_sym_cmd_identifier_token22] = ACTIONS(2047), - [aux_sym_cmd_identifier_token23] = ACTIONS(2047), - [aux_sym_cmd_identifier_token24] = ACTIONS(2047), - [aux_sym_cmd_identifier_token25] = ACTIONS(2047), - [aux_sym_cmd_identifier_token26] = ACTIONS(2047), - [aux_sym_cmd_identifier_token27] = ACTIONS(2047), - [aux_sym_cmd_identifier_token28] = ACTIONS(2047), - [aux_sym_cmd_identifier_token29] = ACTIONS(2047), - [aux_sym_cmd_identifier_token30] = ACTIONS(2047), - [aux_sym_cmd_identifier_token31] = ACTIONS(2047), - [aux_sym_cmd_identifier_token32] = ACTIONS(2047), - [aux_sym_cmd_identifier_token33] = ACTIONS(2047), - [aux_sym_cmd_identifier_token34] = ACTIONS(2047), - [aux_sym_cmd_identifier_token35] = ACTIONS(2047), - [aux_sym_cmd_identifier_token36] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_null] = ACTIONS(2049), - [aux_sym_cmd_identifier_token38] = ACTIONS(2047), - [aux_sym_cmd_identifier_token39] = ACTIONS(2049), - [aux_sym_cmd_identifier_token40] = ACTIONS(2049), - [anon_sym_def] = ACTIONS(2047), - [anon_sym_export_DASHenv] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2047), - [anon_sym_module] = ACTIONS(2047), - [anon_sym_use] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_error] = ACTIONS(2047), - [anon_sym_list] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_break] = ACTIONS(2047), - [anon_sym_continue] = ACTIONS(2047), - [anon_sym_for] = ACTIONS(2047), - [anon_sym_in] = ACTIONS(2047), - [anon_sym_loop] = ACTIONS(2047), - [anon_sym_make] = ACTIONS(2047), - [anon_sym_while] = ACTIONS(2047), - [anon_sym_do] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2047), - [anon_sym_else] = ACTIONS(2047), - [anon_sym_match] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2047), - [anon_sym_catch] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2047), - [anon_sym_source] = ACTIONS(2047), - [anon_sym_source_DASHenv] = ACTIONS(2047), - [anon_sym_register] = ACTIONS(2047), - [anon_sym_hide] = ACTIONS(2047), - [anon_sym_hide_DASHenv] = ACTIONS(2047), - [anon_sym_overlay] = ACTIONS(2047), - [anon_sym_new] = ACTIONS(2047), - [anon_sym_as] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), - [aux_sym__val_number_decimal_token1] = ACTIONS(2047), - [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(2047), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2049), + [868] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7279), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7979), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(868), + [aux_sym_shebang_repeat1] = STATE(903), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [677] = { - [sym_comment] = STATE(677), - [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(249), - [sym_raw_string_begin] = ACTIONS(2436), + [869] = { + [sym_comment] = STATE(869), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(3), }, - [678] = { - [sym_comment] = STATE(678), - [anon_sym_export] = ACTIONS(2059), - [anon_sym_alias] = ACTIONS(2059), - [anon_sym_let] = ACTIONS(2059), - [anon_sym_let_DASHenv] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [aux_sym_cmd_identifier_token1] = ACTIONS(2059), - [aux_sym_cmd_identifier_token2] = ACTIONS(2059), - [aux_sym_cmd_identifier_token3] = ACTIONS(2059), - [aux_sym_cmd_identifier_token4] = ACTIONS(2059), - [aux_sym_cmd_identifier_token5] = ACTIONS(2059), - [aux_sym_cmd_identifier_token6] = ACTIONS(2059), - [aux_sym_cmd_identifier_token7] = ACTIONS(2059), - [aux_sym_cmd_identifier_token8] = ACTIONS(2059), - [aux_sym_cmd_identifier_token9] = ACTIONS(2059), - [aux_sym_cmd_identifier_token10] = ACTIONS(2059), - [aux_sym_cmd_identifier_token11] = ACTIONS(2059), - [aux_sym_cmd_identifier_token12] = ACTIONS(2059), - [aux_sym_cmd_identifier_token13] = ACTIONS(2059), - [aux_sym_cmd_identifier_token14] = ACTIONS(2059), - [aux_sym_cmd_identifier_token15] = ACTIONS(2059), - [aux_sym_cmd_identifier_token16] = ACTIONS(2059), - [aux_sym_cmd_identifier_token17] = ACTIONS(2059), - [aux_sym_cmd_identifier_token18] = ACTIONS(2059), - [aux_sym_cmd_identifier_token19] = ACTIONS(2059), - [aux_sym_cmd_identifier_token20] = ACTIONS(2059), - [aux_sym_cmd_identifier_token21] = ACTIONS(2059), - [aux_sym_cmd_identifier_token22] = ACTIONS(2059), - [aux_sym_cmd_identifier_token23] = ACTIONS(2059), - [aux_sym_cmd_identifier_token24] = ACTIONS(2059), - [aux_sym_cmd_identifier_token25] = ACTIONS(2059), - [aux_sym_cmd_identifier_token26] = ACTIONS(2059), - [aux_sym_cmd_identifier_token27] = ACTIONS(2059), - [aux_sym_cmd_identifier_token28] = ACTIONS(2059), - [aux_sym_cmd_identifier_token29] = ACTIONS(2059), - [aux_sym_cmd_identifier_token30] = ACTIONS(2059), - [aux_sym_cmd_identifier_token31] = ACTIONS(2059), - [aux_sym_cmd_identifier_token32] = ACTIONS(2059), - [aux_sym_cmd_identifier_token33] = ACTIONS(2059), - [aux_sym_cmd_identifier_token34] = ACTIONS(2059), - [aux_sym_cmd_identifier_token35] = ACTIONS(2059), - [aux_sym_cmd_identifier_token36] = ACTIONS(2059), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [anon_sym_null] = ACTIONS(2061), - [aux_sym_cmd_identifier_token38] = ACTIONS(2059), - [aux_sym_cmd_identifier_token39] = ACTIONS(2061), - [aux_sym_cmd_identifier_token40] = ACTIONS(2061), - [anon_sym_def] = ACTIONS(2059), - [anon_sym_export_DASHenv] = ACTIONS(2059), - [anon_sym_extern] = ACTIONS(2059), - [anon_sym_module] = ACTIONS(2059), - [anon_sym_use] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_error] = ACTIONS(2059), - [anon_sym_list] = ACTIONS(2059), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_loop] = ACTIONS(2059), - [anon_sym_make] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_do] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_else] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2059), - [anon_sym_catch] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_source] = ACTIONS(2059), - [anon_sym_source_DASHenv] = ACTIONS(2059), - [anon_sym_register] = ACTIONS(2059), - [anon_sym_hide] = ACTIONS(2059), - [anon_sym_hide_DASHenv] = ACTIONS(2059), - [anon_sym_overlay] = ACTIONS(2059), - [anon_sym_new] = ACTIONS(2059), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2061), - [aux_sym__val_number_decimal_token1] = ACTIONS(2059), - [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), - [anon_sym_PLUS] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2061), + [870] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7286), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7574), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(870), + [aux_sym_shebang_repeat1] = STATE(891), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [679] = { - [sym_comment] = STATE(679), - [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(249), - [sym_raw_string_begin] = ACTIONS(2444), + [871] = { + [sym_comment] = STATE(871), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_bit_DASHshl] = ACTIONS(1765), + [anon_sym_bit_DASHshr] = ACTIONS(1765), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_BANG_TILDE] = ACTIONS(1765), + [anon_sym_bit_DASHand] = ACTIONS(1765), + [anon_sym_bit_DASHxor] = ACTIONS(1765), + [anon_sym_bit_DASHor] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_xor] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not_DASHin] = ACTIONS(1765), + [anon_sym_starts_DASHwith] = ACTIONS(1765), + [anon_sym_ends_DASHwith] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1765), + [aux_sym_cmd_identifier_token41] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_err_GT] = ACTIONS(1763), + [anon_sym_out_GT] = ACTIONS(1763), + [anon_sym_e_GT] = ACTIONS(1763), + [anon_sym_o_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT] = ACTIONS(1763), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(3), }, - [680] = { - [sym_comment] = STATE(680), - [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(249), - [sym_raw_string_begin] = ACTIONS(2452), + [872] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7302), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7664), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(872), + [aux_sym_shebang_repeat1] = STATE(887), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [681] = { - [sym_comment] = STATE(681), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_alias] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_let_DASHenv] = ACTIONS(2067), - [anon_sym_mut] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [aux_sym_cmd_identifier_token1] = ACTIONS(2067), - [aux_sym_cmd_identifier_token2] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [aux_sym_cmd_identifier_token6] = ACTIONS(2067), - [aux_sym_cmd_identifier_token7] = ACTIONS(2067), - [aux_sym_cmd_identifier_token8] = ACTIONS(2067), - [aux_sym_cmd_identifier_token9] = ACTIONS(2067), - [aux_sym_cmd_identifier_token10] = ACTIONS(2067), - [aux_sym_cmd_identifier_token11] = ACTIONS(2067), - [aux_sym_cmd_identifier_token12] = ACTIONS(2067), - [aux_sym_cmd_identifier_token13] = ACTIONS(2067), - [aux_sym_cmd_identifier_token14] = ACTIONS(2067), - [aux_sym_cmd_identifier_token15] = ACTIONS(2067), - [aux_sym_cmd_identifier_token16] = ACTIONS(2067), - [aux_sym_cmd_identifier_token17] = ACTIONS(2067), - [aux_sym_cmd_identifier_token18] = ACTIONS(2067), - [aux_sym_cmd_identifier_token19] = ACTIONS(2067), - [aux_sym_cmd_identifier_token20] = ACTIONS(2067), - [aux_sym_cmd_identifier_token21] = ACTIONS(2067), - [aux_sym_cmd_identifier_token22] = ACTIONS(2067), - [aux_sym_cmd_identifier_token23] = ACTIONS(2067), - [aux_sym_cmd_identifier_token24] = ACTIONS(2067), - [aux_sym_cmd_identifier_token25] = ACTIONS(2067), - [aux_sym_cmd_identifier_token26] = ACTIONS(2067), - [aux_sym_cmd_identifier_token27] = ACTIONS(2067), - [aux_sym_cmd_identifier_token28] = ACTIONS(2067), - [aux_sym_cmd_identifier_token29] = ACTIONS(2067), - [aux_sym_cmd_identifier_token30] = ACTIONS(2067), - [aux_sym_cmd_identifier_token31] = ACTIONS(2067), - [aux_sym_cmd_identifier_token32] = ACTIONS(2067), - [aux_sym_cmd_identifier_token33] = ACTIONS(2067), - [aux_sym_cmd_identifier_token34] = ACTIONS(2067), - [aux_sym_cmd_identifier_token35] = ACTIONS(2067), - [aux_sym_cmd_identifier_token36] = ACTIONS(2067), - [anon_sym_true] = ACTIONS(2069), - [anon_sym_false] = ACTIONS(2069), - [anon_sym_null] = ACTIONS(2069), - [aux_sym_cmd_identifier_token38] = ACTIONS(2067), - [aux_sym_cmd_identifier_token39] = ACTIONS(2069), - [aux_sym_cmd_identifier_token40] = ACTIONS(2069), - [anon_sym_def] = ACTIONS(2067), - [anon_sym_export_DASHenv] = ACTIONS(2067), - [anon_sym_extern] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_use] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_error] = ACTIONS(2067), - [anon_sym_list] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_loop] = ACTIONS(2067), - [anon_sym_make] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_source] = ACTIONS(2067), - [anon_sym_source_DASHenv] = ACTIONS(2067), - [anon_sym_register] = ACTIONS(2067), - [anon_sym_hide] = ACTIONS(2067), - [anon_sym_hide_DASHenv] = ACTIONS(2067), - [anon_sym_overlay] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2069), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2069), - [aux_sym__val_number_decimal_token1] = ACTIONS(2067), - [aux_sym__val_number_decimal_token2] = ACTIONS(2069), - [aux_sym__val_number_decimal_token3] = ACTIONS(2069), - [aux_sym__val_number_decimal_token4] = ACTIONS(2069), - [aux_sym__val_number_token1] = ACTIONS(2069), - [aux_sym__val_number_token2] = ACTIONS(2069), - [aux_sym__val_number_token3] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2069), - [sym__str_single_quotes] = ACTIONS(2069), - [sym__str_back_ticks] = ACTIONS(2069), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2069), + [873] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7183), + [sym__spread_list] = STATE(7416), + [sym_list_body] = STATE(7758), + [sym_val_entry] = STATE(6851), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(873), + [aux_sym_shebang_repeat1] = STATE(882), + [aux_sym_parameter_repeat2] = STATE(6505), + [aux_sym_list_body_repeat1] = STATE(907), + [sym__newline] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [682] = { - [sym_comment] = STATE(682), - [anon_sym_export] = ACTIONS(2087), - [anon_sym_alias] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_let_DASHenv] = ACTIONS(2087), - [anon_sym_mut] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [aux_sym_cmd_identifier_token1] = ACTIONS(2087), - [aux_sym_cmd_identifier_token2] = ACTIONS(2087), - [aux_sym_cmd_identifier_token3] = ACTIONS(2087), - [aux_sym_cmd_identifier_token4] = ACTIONS(2087), - [aux_sym_cmd_identifier_token5] = ACTIONS(2087), - [aux_sym_cmd_identifier_token6] = ACTIONS(2087), - [aux_sym_cmd_identifier_token7] = ACTIONS(2087), - [aux_sym_cmd_identifier_token8] = ACTIONS(2087), - [aux_sym_cmd_identifier_token9] = ACTIONS(2087), - [aux_sym_cmd_identifier_token10] = ACTIONS(2087), - [aux_sym_cmd_identifier_token11] = ACTIONS(2087), - [aux_sym_cmd_identifier_token12] = ACTIONS(2087), - [aux_sym_cmd_identifier_token13] = ACTIONS(2087), - [aux_sym_cmd_identifier_token14] = ACTIONS(2087), - [aux_sym_cmd_identifier_token15] = ACTIONS(2087), - [aux_sym_cmd_identifier_token16] = ACTIONS(2087), - [aux_sym_cmd_identifier_token17] = ACTIONS(2087), - [aux_sym_cmd_identifier_token18] = ACTIONS(2087), - [aux_sym_cmd_identifier_token19] = ACTIONS(2087), - [aux_sym_cmd_identifier_token20] = ACTIONS(2087), - [aux_sym_cmd_identifier_token21] = ACTIONS(2087), - [aux_sym_cmd_identifier_token22] = ACTIONS(2087), - [aux_sym_cmd_identifier_token23] = ACTIONS(2087), - [aux_sym_cmd_identifier_token24] = ACTIONS(2087), - [aux_sym_cmd_identifier_token25] = ACTIONS(2087), - [aux_sym_cmd_identifier_token26] = ACTIONS(2087), - [aux_sym_cmd_identifier_token27] = ACTIONS(2087), - [aux_sym_cmd_identifier_token28] = ACTIONS(2087), - [aux_sym_cmd_identifier_token29] = ACTIONS(2087), - [aux_sym_cmd_identifier_token30] = ACTIONS(2087), - [aux_sym_cmd_identifier_token31] = ACTIONS(2087), - [aux_sym_cmd_identifier_token32] = ACTIONS(2087), - [aux_sym_cmd_identifier_token33] = ACTIONS(2087), - [aux_sym_cmd_identifier_token34] = ACTIONS(2087), - [aux_sym_cmd_identifier_token35] = ACTIONS(2087), - [aux_sym_cmd_identifier_token36] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [aux_sym_cmd_identifier_token38] = ACTIONS(2087), - [aux_sym_cmd_identifier_token39] = ACTIONS(2089), - [aux_sym_cmd_identifier_token40] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2087), - [anon_sym_export_DASHenv] = ACTIONS(2087), - [anon_sym_extern] = ACTIONS(2087), - [anon_sym_module] = ACTIONS(2087), - [anon_sym_use] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_error] = ACTIONS(2087), - [anon_sym_list] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_in] = ACTIONS(2087), - [anon_sym_loop] = ACTIONS(2087), - [anon_sym_make] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_do] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_else] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2087), - [anon_sym_catch] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_source] = ACTIONS(2087), - [anon_sym_source_DASHenv] = ACTIONS(2087), - [anon_sym_register] = ACTIONS(2087), - [anon_sym_hide] = ACTIONS(2087), - [anon_sym_hide_DASHenv] = ACTIONS(2087), - [anon_sym_overlay] = ACTIONS(2087), - [anon_sym_new] = ACTIONS(2087), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [sym__str_single_quotes] = ACTIONS(2089), - [sym__str_back_ticks] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2089), + [874] = { + [sym_comment] = STATE(874), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [sym__newline] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_err_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_GT_PIPE] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_GT2] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_STAR2] = ACTIONS(2214), + [anon_sym_and2] = ACTIONS(2214), + [anon_sym_xor2] = ACTIONS(2214), + [anon_sym_or2] = ACTIONS(2214), + [anon_sym_not_DASHin2] = ACTIONS(2214), + [anon_sym_starts_DASHwith2] = ACTIONS(2214), + [anon_sym_ends_DASHwith2] = ACTIONS(2214), + [anon_sym_EQ_EQ2] = ACTIONS(2214), + [anon_sym_BANG_EQ2] = ACTIONS(2214), + [anon_sym_LT2] = ACTIONS(2214), + [anon_sym_LT_EQ2] = ACTIONS(2214), + [anon_sym_GT_EQ2] = ACTIONS(2214), + [anon_sym_EQ_TILDE2] = ACTIONS(2214), + [anon_sym_BANG_TILDE2] = ACTIONS(2214), + [anon_sym_STAR_STAR2] = ACTIONS(2214), + [anon_sym_PLUS_PLUS2] = ACTIONS(2214), + [anon_sym_SLASH2] = ACTIONS(2214), + [anon_sym_mod2] = ACTIONS(2214), + [anon_sym_SLASH_SLASH2] = ACTIONS(2214), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_bit_DASHshl2] = ACTIONS(2214), + [anon_sym_bit_DASHshr2] = ACTIONS(2214), + [anon_sym_bit_DASHand2] = ACTIONS(2214), + [anon_sym_bit_DASHxor2] = ACTIONS(2214), + [anon_sym_bit_DASHor2] = ACTIONS(2214), + [anon_sym_err_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(3), }, - [683] = { - [sym_comment] = STATE(683), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_alias] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_let_DASHenv] = ACTIONS(2470), - [anon_sym_mut] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [aux_sym_cmd_identifier_token1] = ACTIONS(2470), - [aux_sym_cmd_identifier_token2] = ACTIONS(2470), - [aux_sym_cmd_identifier_token3] = ACTIONS(2470), - [aux_sym_cmd_identifier_token4] = ACTIONS(2470), - [aux_sym_cmd_identifier_token5] = ACTIONS(2470), - [aux_sym_cmd_identifier_token6] = ACTIONS(2470), - [aux_sym_cmd_identifier_token7] = ACTIONS(2470), - [aux_sym_cmd_identifier_token8] = ACTIONS(2470), - [aux_sym_cmd_identifier_token9] = ACTIONS(2470), - [aux_sym_cmd_identifier_token10] = ACTIONS(2470), - [aux_sym_cmd_identifier_token11] = ACTIONS(2470), - [aux_sym_cmd_identifier_token12] = ACTIONS(2470), - [aux_sym_cmd_identifier_token13] = ACTIONS(2470), - [aux_sym_cmd_identifier_token14] = ACTIONS(2470), - [aux_sym_cmd_identifier_token15] = ACTIONS(2470), - [aux_sym_cmd_identifier_token16] = ACTIONS(2470), - [aux_sym_cmd_identifier_token17] = ACTIONS(2470), - [aux_sym_cmd_identifier_token18] = ACTIONS(2470), - [aux_sym_cmd_identifier_token19] = ACTIONS(2470), - [aux_sym_cmd_identifier_token20] = ACTIONS(2470), - [aux_sym_cmd_identifier_token21] = ACTIONS(2470), - [aux_sym_cmd_identifier_token22] = ACTIONS(2470), - [aux_sym_cmd_identifier_token23] = ACTIONS(2470), - [aux_sym_cmd_identifier_token24] = ACTIONS(2470), - [aux_sym_cmd_identifier_token25] = ACTIONS(2470), - [aux_sym_cmd_identifier_token26] = ACTIONS(2470), - [aux_sym_cmd_identifier_token27] = ACTIONS(2470), - [aux_sym_cmd_identifier_token28] = ACTIONS(2470), - [aux_sym_cmd_identifier_token29] = ACTIONS(2470), - [aux_sym_cmd_identifier_token30] = ACTIONS(2470), - [aux_sym_cmd_identifier_token31] = ACTIONS(2470), - [aux_sym_cmd_identifier_token32] = ACTIONS(2470), - [aux_sym_cmd_identifier_token33] = ACTIONS(2470), - [aux_sym_cmd_identifier_token34] = ACTIONS(2470), - [aux_sym_cmd_identifier_token35] = ACTIONS(2470), - [aux_sym_cmd_identifier_token36] = ACTIONS(2470), - [anon_sym_true] = ACTIONS(2472), - [anon_sym_false] = ACTIONS(2472), - [anon_sym_null] = ACTIONS(2472), - [aux_sym_cmd_identifier_token38] = ACTIONS(2470), - [aux_sym_cmd_identifier_token39] = ACTIONS(2472), - [aux_sym_cmd_identifier_token40] = ACTIONS(2472), - [anon_sym_def] = ACTIONS(2470), - [anon_sym_export_DASHenv] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_use] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_DOLLAR] = ACTIONS(2472), - [anon_sym_error] = ACTIONS(2470), - [anon_sym_list] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_in] = ACTIONS(2470), - [anon_sym_loop] = ACTIONS(2470), - [anon_sym_make] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_catch] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_source] = ACTIONS(2470), - [anon_sym_source_DASHenv] = ACTIONS(2470), - [anon_sym_register] = ACTIONS(2470), - [anon_sym_hide] = ACTIONS(2470), - [anon_sym_hide_DASHenv] = ACTIONS(2470), - [anon_sym_overlay] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_as] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2472), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2472), - [aux_sym__val_number_decimal_token1] = ACTIONS(2470), - [aux_sym__val_number_decimal_token2] = ACTIONS(2472), - [aux_sym__val_number_decimal_token3] = ACTIONS(2472), - [aux_sym__val_number_decimal_token4] = ACTIONS(2472), - [aux_sym__val_number_token1] = ACTIONS(2472), - [aux_sym__val_number_token2] = ACTIONS(2472), - [aux_sym__val_number_token3] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [sym__str_single_quotes] = ACTIONS(2472), - [sym__str_back_ticks] = ACTIONS(2472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2472), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2472), + [875] = { + [sym_comment] = STATE(875), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [sym__newline] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2222), + [anon_sym_err_GT_PIPE] = ACTIONS(2222), + [anon_sym_out_GT_PIPE] = ACTIONS(2222), + [anon_sym_e_GT_PIPE] = ACTIONS(2222), + [anon_sym_o_GT_PIPE] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2222), + [anon_sym_GT2] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), + [anon_sym_STAR2] = ACTIONS(2222), + [anon_sym_and2] = ACTIONS(2222), + [anon_sym_xor2] = ACTIONS(2222), + [anon_sym_or2] = ACTIONS(2222), + [anon_sym_not_DASHin2] = ACTIONS(2222), + [anon_sym_starts_DASHwith2] = ACTIONS(2222), + [anon_sym_ends_DASHwith2] = ACTIONS(2222), + [anon_sym_EQ_EQ2] = ACTIONS(2222), + [anon_sym_BANG_EQ2] = ACTIONS(2222), + [anon_sym_LT2] = ACTIONS(2222), + [anon_sym_LT_EQ2] = ACTIONS(2222), + [anon_sym_GT_EQ2] = ACTIONS(2222), + [anon_sym_EQ_TILDE2] = ACTIONS(2222), + [anon_sym_BANG_TILDE2] = ACTIONS(2222), + [anon_sym_STAR_STAR2] = ACTIONS(2222), + [anon_sym_PLUS_PLUS2] = ACTIONS(2222), + [anon_sym_SLASH2] = ACTIONS(2222), + [anon_sym_mod2] = ACTIONS(2222), + [anon_sym_SLASH_SLASH2] = ACTIONS(2222), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_bit_DASHshl2] = ACTIONS(2222), + [anon_sym_bit_DASHshr2] = ACTIONS(2222), + [anon_sym_bit_DASHand2] = ACTIONS(2222), + [anon_sym_bit_DASHxor2] = ACTIONS(2222), + [anon_sym_bit_DASHor2] = ACTIONS(2222), + [anon_sym_err_GT] = ACTIONS(2222), + [anon_sym_out_GT] = ACTIONS(2222), + [anon_sym_e_GT] = ACTIONS(2222), + [anon_sym_o_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT] = ACTIONS(2222), + [anon_sym_err_GT_GT] = ACTIONS(2222), + [anon_sym_out_GT_GT] = ACTIONS(2222), + [anon_sym_e_GT_GT] = ACTIONS(2222), + [anon_sym_o_GT_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), }, - [684] = { - [sym_comment] = STATE(684), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_alias] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_let_DASHenv] = ACTIONS(2474), - [anon_sym_mut] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [aux_sym_cmd_identifier_token1] = ACTIONS(2474), - [aux_sym_cmd_identifier_token2] = ACTIONS(2474), - [aux_sym_cmd_identifier_token3] = ACTIONS(2474), - [aux_sym_cmd_identifier_token4] = ACTIONS(2474), - [aux_sym_cmd_identifier_token5] = ACTIONS(2474), - [aux_sym_cmd_identifier_token6] = ACTIONS(2474), - [aux_sym_cmd_identifier_token7] = ACTIONS(2474), - [aux_sym_cmd_identifier_token8] = ACTIONS(2474), - [aux_sym_cmd_identifier_token9] = ACTIONS(2474), - [aux_sym_cmd_identifier_token10] = ACTIONS(2474), - [aux_sym_cmd_identifier_token11] = ACTIONS(2474), - [aux_sym_cmd_identifier_token12] = ACTIONS(2474), - [aux_sym_cmd_identifier_token13] = ACTIONS(2474), - [aux_sym_cmd_identifier_token14] = ACTIONS(2474), - [aux_sym_cmd_identifier_token15] = ACTIONS(2474), - [aux_sym_cmd_identifier_token16] = ACTIONS(2474), - [aux_sym_cmd_identifier_token17] = ACTIONS(2474), - [aux_sym_cmd_identifier_token18] = ACTIONS(2474), - [aux_sym_cmd_identifier_token19] = ACTIONS(2474), - [aux_sym_cmd_identifier_token20] = ACTIONS(2474), - [aux_sym_cmd_identifier_token21] = ACTIONS(2474), - [aux_sym_cmd_identifier_token22] = ACTIONS(2474), - [aux_sym_cmd_identifier_token23] = ACTIONS(2474), - [aux_sym_cmd_identifier_token24] = ACTIONS(2474), - [aux_sym_cmd_identifier_token25] = ACTIONS(2474), - [aux_sym_cmd_identifier_token26] = ACTIONS(2474), - [aux_sym_cmd_identifier_token27] = ACTIONS(2474), - [aux_sym_cmd_identifier_token28] = ACTIONS(2474), - [aux_sym_cmd_identifier_token29] = ACTIONS(2474), - [aux_sym_cmd_identifier_token30] = ACTIONS(2474), - [aux_sym_cmd_identifier_token31] = ACTIONS(2474), - [aux_sym_cmd_identifier_token32] = ACTIONS(2474), - [aux_sym_cmd_identifier_token33] = ACTIONS(2474), - [aux_sym_cmd_identifier_token34] = ACTIONS(2474), - [aux_sym_cmd_identifier_token35] = ACTIONS(2474), - [aux_sym_cmd_identifier_token36] = ACTIONS(2474), - [anon_sym_true] = ACTIONS(2476), - [anon_sym_false] = ACTIONS(2476), - [anon_sym_null] = ACTIONS(2476), - [aux_sym_cmd_identifier_token38] = ACTIONS(2474), - [aux_sym_cmd_identifier_token39] = ACTIONS(2476), - [aux_sym_cmd_identifier_token40] = ACTIONS(2476), - [anon_sym_def] = ACTIONS(2474), - [anon_sym_export_DASHenv] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_use] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_DOLLAR] = ACTIONS(2476), - [anon_sym_error] = ACTIONS(2474), - [anon_sym_list] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_in] = ACTIONS(2474), - [anon_sym_loop] = ACTIONS(2474), - [anon_sym_make] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_match] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_catch] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_source] = ACTIONS(2474), - [anon_sym_source_DASHenv] = ACTIONS(2474), - [anon_sym_register] = ACTIONS(2474), - [anon_sym_hide] = ACTIONS(2474), - [anon_sym_hide_DASHenv] = ACTIONS(2474), - [anon_sym_overlay] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_as] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2476), - [aux_sym__val_number_decimal_token1] = ACTIONS(2474), - [aux_sym__val_number_decimal_token2] = ACTIONS(2476), - [aux_sym__val_number_decimal_token3] = ACTIONS(2476), - [aux_sym__val_number_decimal_token4] = ACTIONS(2476), - [aux_sym__val_number_token1] = ACTIONS(2476), - [aux_sym__val_number_token2] = ACTIONS(2476), - [aux_sym__val_number_token3] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2476), - [sym__str_single_quotes] = ACTIONS(2476), - [sym__str_back_ticks] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2474), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2476), - }, - [685] = { - [sym_comment] = STATE(685), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_alias] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_let_DASHenv] = ACTIONS(2095), - [anon_sym_mut] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [aux_sym_cmd_identifier_token1] = ACTIONS(2095), - [aux_sym_cmd_identifier_token2] = ACTIONS(2095), - [aux_sym_cmd_identifier_token3] = ACTIONS(2095), - [aux_sym_cmd_identifier_token4] = ACTIONS(2095), - [aux_sym_cmd_identifier_token5] = ACTIONS(2095), - [aux_sym_cmd_identifier_token6] = ACTIONS(2095), - [aux_sym_cmd_identifier_token7] = ACTIONS(2095), - [aux_sym_cmd_identifier_token8] = ACTIONS(2095), - [aux_sym_cmd_identifier_token9] = ACTIONS(2095), - [aux_sym_cmd_identifier_token10] = ACTIONS(2095), - [aux_sym_cmd_identifier_token11] = ACTIONS(2095), - [aux_sym_cmd_identifier_token12] = ACTIONS(2095), - [aux_sym_cmd_identifier_token13] = ACTIONS(2095), - [aux_sym_cmd_identifier_token14] = ACTIONS(2095), - [aux_sym_cmd_identifier_token15] = ACTIONS(2095), - [aux_sym_cmd_identifier_token16] = ACTIONS(2095), - [aux_sym_cmd_identifier_token17] = ACTIONS(2095), - [aux_sym_cmd_identifier_token18] = ACTIONS(2095), - [aux_sym_cmd_identifier_token19] = ACTIONS(2095), - [aux_sym_cmd_identifier_token20] = ACTIONS(2095), - [aux_sym_cmd_identifier_token21] = ACTIONS(2095), - [aux_sym_cmd_identifier_token22] = ACTIONS(2095), - [aux_sym_cmd_identifier_token23] = ACTIONS(2095), - [aux_sym_cmd_identifier_token24] = ACTIONS(2095), - [aux_sym_cmd_identifier_token25] = ACTIONS(2095), - [aux_sym_cmd_identifier_token26] = ACTIONS(2095), - [aux_sym_cmd_identifier_token27] = ACTIONS(2095), - [aux_sym_cmd_identifier_token28] = ACTIONS(2095), - [aux_sym_cmd_identifier_token29] = ACTIONS(2095), - [aux_sym_cmd_identifier_token30] = ACTIONS(2095), - [aux_sym_cmd_identifier_token31] = ACTIONS(2095), - [aux_sym_cmd_identifier_token32] = ACTIONS(2095), - [aux_sym_cmd_identifier_token33] = ACTIONS(2095), - [aux_sym_cmd_identifier_token34] = ACTIONS(2095), - [aux_sym_cmd_identifier_token35] = ACTIONS(2095), - [aux_sym_cmd_identifier_token36] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_null] = ACTIONS(2097), - [aux_sym_cmd_identifier_token38] = ACTIONS(2095), - [aux_sym_cmd_identifier_token39] = ACTIONS(2097), - [aux_sym_cmd_identifier_token40] = ACTIONS(2097), - [anon_sym_def] = ACTIONS(2095), - [anon_sym_export_DASHenv] = ACTIONS(2095), - [anon_sym_extern] = ACTIONS(2095), - [anon_sym_module] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(2097), - [anon_sym_error] = ACTIONS(2095), - [anon_sym_list] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_in] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_make] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_do] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2095), - [anon_sym_catch] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_source] = ACTIONS(2095), - [anon_sym_source_DASHenv] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2095), - [anon_sym_hide] = ACTIONS(2095), - [anon_sym_hide_DASHenv] = ACTIONS(2095), - [anon_sym_overlay] = ACTIONS(2095), - [anon_sym_new] = ACTIONS(2095), - [anon_sym_as] = ACTIONS(2095), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2097), - [aux_sym__val_number_decimal_token1] = ACTIONS(2095), - [aux_sym__val_number_decimal_token2] = ACTIONS(2097), - [aux_sym__val_number_decimal_token3] = ACTIONS(2097), - [aux_sym__val_number_decimal_token4] = ACTIONS(2097), - [aux_sym__val_number_token1] = ACTIONS(2097), - [aux_sym__val_number_token2] = ACTIONS(2097), - [aux_sym__val_number_token3] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [sym__str_single_quotes] = ACTIONS(2097), - [sym__str_back_ticks] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2097), - }, - [686] = { - [sym_comment] = STATE(686), - [anon_sym_export] = ACTIONS(2502), - [anon_sym_alias] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_let_DASHenv] = ACTIONS(2502), - [anon_sym_mut] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [aux_sym_cmd_identifier_token1] = ACTIONS(2502), - [aux_sym_cmd_identifier_token2] = ACTIONS(2502), - [aux_sym_cmd_identifier_token3] = ACTIONS(2502), - [aux_sym_cmd_identifier_token4] = ACTIONS(2502), - [aux_sym_cmd_identifier_token5] = ACTIONS(2502), - [aux_sym_cmd_identifier_token6] = ACTIONS(2502), - [aux_sym_cmd_identifier_token7] = ACTIONS(2502), - [aux_sym_cmd_identifier_token8] = ACTIONS(2502), - [aux_sym_cmd_identifier_token9] = ACTIONS(2502), - [aux_sym_cmd_identifier_token10] = ACTIONS(2502), - [aux_sym_cmd_identifier_token11] = ACTIONS(2502), - [aux_sym_cmd_identifier_token12] = ACTIONS(2502), - [aux_sym_cmd_identifier_token13] = ACTIONS(2502), - [aux_sym_cmd_identifier_token14] = ACTIONS(2502), - [aux_sym_cmd_identifier_token15] = ACTIONS(2502), - [aux_sym_cmd_identifier_token16] = ACTIONS(2502), - [aux_sym_cmd_identifier_token17] = ACTIONS(2502), - [aux_sym_cmd_identifier_token18] = ACTIONS(2502), - [aux_sym_cmd_identifier_token19] = ACTIONS(2502), - [aux_sym_cmd_identifier_token20] = ACTIONS(2502), - [aux_sym_cmd_identifier_token21] = ACTIONS(2502), - [aux_sym_cmd_identifier_token22] = ACTIONS(2502), - [aux_sym_cmd_identifier_token23] = ACTIONS(2502), - [aux_sym_cmd_identifier_token24] = ACTIONS(2502), - [aux_sym_cmd_identifier_token25] = ACTIONS(2502), - [aux_sym_cmd_identifier_token26] = ACTIONS(2502), - [aux_sym_cmd_identifier_token27] = ACTIONS(2502), - [aux_sym_cmd_identifier_token28] = ACTIONS(2502), - [aux_sym_cmd_identifier_token29] = ACTIONS(2502), - [aux_sym_cmd_identifier_token30] = ACTIONS(2502), - [aux_sym_cmd_identifier_token31] = ACTIONS(2502), - [aux_sym_cmd_identifier_token32] = ACTIONS(2502), - [aux_sym_cmd_identifier_token33] = ACTIONS(2502), - [aux_sym_cmd_identifier_token34] = ACTIONS(2502), - [aux_sym_cmd_identifier_token35] = ACTIONS(2502), - [aux_sym_cmd_identifier_token36] = ACTIONS(2502), - [anon_sym_true] = ACTIONS(2504), - [anon_sym_false] = ACTIONS(2504), - [anon_sym_null] = ACTIONS(2504), - [aux_sym_cmd_identifier_token38] = ACTIONS(2502), - [aux_sym_cmd_identifier_token39] = ACTIONS(2504), - [aux_sym_cmd_identifier_token40] = ACTIONS(2504), - [anon_sym_def] = ACTIONS(2502), - [anon_sym_export_DASHenv] = ACTIONS(2502), - [anon_sym_extern] = ACTIONS(2502), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_use] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_DOLLAR] = ACTIONS(2504), - [anon_sym_error] = ACTIONS(2502), - [anon_sym_list] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_in] = ACTIONS(2502), - [anon_sym_loop] = ACTIONS(2502), - [anon_sym_make] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_do] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_else] = ACTIONS(2502), - [anon_sym_match] = ACTIONS(2502), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_catch] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_source] = ACTIONS(2502), - [anon_sym_source_DASHenv] = ACTIONS(2502), - [anon_sym_register] = ACTIONS(2502), - [anon_sym_hide] = ACTIONS(2502), - [anon_sym_hide_DASHenv] = ACTIONS(2502), - [anon_sym_overlay] = ACTIONS(2502), - [anon_sym_new] = ACTIONS(2502), - [anon_sym_as] = ACTIONS(2502), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2504), - [aux_sym__val_number_decimal_token1] = ACTIONS(2502), - [aux_sym__val_number_decimal_token2] = ACTIONS(2504), - [aux_sym__val_number_decimal_token3] = ACTIONS(2504), - [aux_sym__val_number_decimal_token4] = ACTIONS(2504), - [aux_sym__val_number_token1] = ACTIONS(2504), - [aux_sym__val_number_token2] = ACTIONS(2504), - [aux_sym__val_number_token3] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2504), - [sym__str_single_quotes] = ACTIONS(2504), - [sym__str_back_ticks] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2504), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2504), - }, - [687] = { - [sym_comment] = STATE(687), - [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(249), - [sym_raw_string_begin] = ACTIONS(2533), - }, - [688] = { - [sym_comment] = STATE(688), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_alias] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_let_DASHenv] = ACTIONS(2349), - [anon_sym_mut] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [aux_sym_cmd_identifier_token1] = ACTIONS(2349), - [aux_sym_cmd_identifier_token2] = ACTIONS(2349), - [aux_sym_cmd_identifier_token3] = ACTIONS(2349), - [aux_sym_cmd_identifier_token4] = ACTIONS(2349), - [aux_sym_cmd_identifier_token5] = ACTIONS(2349), - [aux_sym_cmd_identifier_token6] = ACTIONS(2349), - [aux_sym_cmd_identifier_token7] = ACTIONS(2349), - [aux_sym_cmd_identifier_token8] = ACTIONS(2349), - [aux_sym_cmd_identifier_token9] = ACTIONS(2349), - [aux_sym_cmd_identifier_token10] = ACTIONS(2349), - [aux_sym_cmd_identifier_token11] = ACTIONS(2349), - [aux_sym_cmd_identifier_token12] = ACTIONS(2349), - [aux_sym_cmd_identifier_token13] = ACTIONS(2349), - [aux_sym_cmd_identifier_token14] = ACTIONS(2349), - [aux_sym_cmd_identifier_token15] = ACTIONS(2349), - [aux_sym_cmd_identifier_token16] = ACTIONS(2349), - [aux_sym_cmd_identifier_token17] = ACTIONS(2349), - [aux_sym_cmd_identifier_token18] = ACTIONS(2349), - [aux_sym_cmd_identifier_token19] = ACTIONS(2349), - [aux_sym_cmd_identifier_token20] = ACTIONS(2349), - [aux_sym_cmd_identifier_token21] = ACTIONS(2349), - [aux_sym_cmd_identifier_token22] = ACTIONS(2349), - [aux_sym_cmd_identifier_token23] = ACTIONS(2349), - [aux_sym_cmd_identifier_token24] = ACTIONS(2349), - [aux_sym_cmd_identifier_token25] = ACTIONS(2349), - [aux_sym_cmd_identifier_token26] = ACTIONS(2349), - [aux_sym_cmd_identifier_token27] = ACTIONS(2349), - [aux_sym_cmd_identifier_token28] = ACTIONS(2349), - [aux_sym_cmd_identifier_token29] = ACTIONS(2349), - [aux_sym_cmd_identifier_token30] = ACTIONS(2349), - [aux_sym_cmd_identifier_token31] = ACTIONS(2349), - [aux_sym_cmd_identifier_token32] = ACTIONS(2349), - [aux_sym_cmd_identifier_token33] = ACTIONS(2349), - [aux_sym_cmd_identifier_token34] = ACTIONS(2349), - [aux_sym_cmd_identifier_token35] = ACTIONS(2349), - [aux_sym_cmd_identifier_token36] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), - [anon_sym_null] = ACTIONS(2353), - [aux_sym_cmd_identifier_token38] = ACTIONS(2349), - [aux_sym_cmd_identifier_token39] = ACTIONS(2353), - [aux_sym_cmd_identifier_token40] = ACTIONS(2353), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_export_DASHenv] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_error] = ACTIONS(2349), - [anon_sym_list] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_in] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_make] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_catch] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_source] = ACTIONS(2349), - [anon_sym_source_DASHenv] = ACTIONS(2349), - [anon_sym_register] = ACTIONS(2349), - [anon_sym_hide] = ACTIONS(2349), - [anon_sym_hide_DASHenv] = ACTIONS(2349), - [anon_sym_overlay] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_as] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2353), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2353), - [aux_sym__val_number_decimal_token4] = ACTIONS(2353), - [aux_sym__val_number_token1] = ACTIONS(2353), - [aux_sym__val_number_token2] = ACTIONS(2353), - [aux_sym__val_number_token3] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym__str_single_quotes] = ACTIONS(2353), - [sym__str_back_ticks] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2353), - }, - [689] = { - [sym_comment] = STATE(689), - [anon_sym_export] = ACTIONS(2218), - [anon_sym_alias] = ACTIONS(2218), - [anon_sym_let] = ACTIONS(2218), - [anon_sym_let_DASHenv] = ACTIONS(2218), - [anon_sym_mut] = ACTIONS(2218), - [anon_sym_const] = ACTIONS(2218), - [aux_sym_cmd_identifier_token1] = ACTIONS(2218), - [aux_sym_cmd_identifier_token2] = ACTIONS(2218), - [aux_sym_cmd_identifier_token3] = ACTIONS(2218), - [aux_sym_cmd_identifier_token4] = ACTIONS(2218), - [aux_sym_cmd_identifier_token5] = ACTIONS(2218), - [aux_sym_cmd_identifier_token6] = ACTIONS(2218), - [aux_sym_cmd_identifier_token7] = ACTIONS(2218), - [aux_sym_cmd_identifier_token8] = ACTIONS(2218), - [aux_sym_cmd_identifier_token9] = ACTIONS(2218), - [aux_sym_cmd_identifier_token10] = ACTIONS(2218), - [aux_sym_cmd_identifier_token11] = ACTIONS(2218), - [aux_sym_cmd_identifier_token12] = ACTIONS(2218), - [aux_sym_cmd_identifier_token13] = ACTIONS(2218), - [aux_sym_cmd_identifier_token14] = ACTIONS(2218), - [aux_sym_cmd_identifier_token15] = ACTIONS(2218), - [aux_sym_cmd_identifier_token16] = ACTIONS(2218), - [aux_sym_cmd_identifier_token17] = ACTIONS(2218), - [aux_sym_cmd_identifier_token18] = ACTIONS(2218), - [aux_sym_cmd_identifier_token19] = ACTIONS(2218), - [aux_sym_cmd_identifier_token20] = ACTIONS(2218), - [aux_sym_cmd_identifier_token21] = ACTIONS(2218), - [aux_sym_cmd_identifier_token22] = ACTIONS(2218), - [aux_sym_cmd_identifier_token23] = ACTIONS(2218), - [aux_sym_cmd_identifier_token24] = ACTIONS(2218), - [aux_sym_cmd_identifier_token25] = ACTIONS(2218), - [aux_sym_cmd_identifier_token26] = ACTIONS(2218), - [aux_sym_cmd_identifier_token27] = ACTIONS(2218), - [aux_sym_cmd_identifier_token28] = ACTIONS(2218), - [aux_sym_cmd_identifier_token29] = ACTIONS(2218), - [aux_sym_cmd_identifier_token30] = ACTIONS(2218), - [aux_sym_cmd_identifier_token31] = ACTIONS(2218), - [aux_sym_cmd_identifier_token32] = ACTIONS(2218), - [aux_sym_cmd_identifier_token33] = ACTIONS(2218), - [aux_sym_cmd_identifier_token34] = ACTIONS(2218), - [aux_sym_cmd_identifier_token35] = ACTIONS(2218), - [aux_sym_cmd_identifier_token36] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_null] = ACTIONS(2220), - [aux_sym_cmd_identifier_token38] = ACTIONS(2218), - [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(2220), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_error] = ACTIONS(2218), - [anon_sym_list] = ACTIONS(2218), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_break] = ACTIONS(2218), - [anon_sym_continue] = ACTIONS(2218), - [anon_sym_for] = ACTIONS(2218), - [anon_sym_in] = ACTIONS(2218), - [anon_sym_loop] = ACTIONS(2218), - [anon_sym_make] = ACTIONS(2218), - [anon_sym_while] = ACTIONS(2218), - [anon_sym_do] = ACTIONS(2218), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_else] = ACTIONS(2218), - [anon_sym_match] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2220), - [anon_sym_try] = ACTIONS(2218), - [anon_sym_catch] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2218), - [anon_sym_source] = ACTIONS(2218), - [anon_sym_source_DASHenv] = ACTIONS(2218), - [anon_sym_register] = ACTIONS(2218), - [anon_sym_hide] = ACTIONS(2218), - [anon_sym_hide_DASHenv] = ACTIONS(2218), - [anon_sym_overlay] = ACTIONS(2218), - [anon_sym_new] = ACTIONS(2218), - [anon_sym_as] = ACTIONS(2218), - [anon_sym_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(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), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2220), - }, - [690] = { - [sym_comment] = STATE(690), - [anon_sym_export] = ACTIONS(2230), - [anon_sym_alias] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_let_DASHenv] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [aux_sym_cmd_identifier_token1] = ACTIONS(2230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2230), - [aux_sym_cmd_identifier_token3] = ACTIONS(2230), - [aux_sym_cmd_identifier_token4] = ACTIONS(2230), - [aux_sym_cmd_identifier_token5] = ACTIONS(2230), - [aux_sym_cmd_identifier_token6] = ACTIONS(2230), - [aux_sym_cmd_identifier_token7] = ACTIONS(2230), - [aux_sym_cmd_identifier_token8] = ACTIONS(2230), - [aux_sym_cmd_identifier_token9] = ACTIONS(2230), - [aux_sym_cmd_identifier_token10] = ACTIONS(2230), - [aux_sym_cmd_identifier_token11] = ACTIONS(2230), - [aux_sym_cmd_identifier_token12] = ACTIONS(2230), - [aux_sym_cmd_identifier_token13] = ACTIONS(2230), - [aux_sym_cmd_identifier_token14] = ACTIONS(2230), - [aux_sym_cmd_identifier_token15] = ACTIONS(2230), - [aux_sym_cmd_identifier_token16] = ACTIONS(2230), - [aux_sym_cmd_identifier_token17] = ACTIONS(2230), - [aux_sym_cmd_identifier_token18] = ACTIONS(2230), - [aux_sym_cmd_identifier_token19] = ACTIONS(2230), - [aux_sym_cmd_identifier_token20] = ACTIONS(2230), - [aux_sym_cmd_identifier_token21] = ACTIONS(2230), - [aux_sym_cmd_identifier_token22] = ACTIONS(2230), - [aux_sym_cmd_identifier_token23] = ACTIONS(2230), - [aux_sym_cmd_identifier_token24] = ACTIONS(2230), - [aux_sym_cmd_identifier_token25] = ACTIONS(2230), - [aux_sym_cmd_identifier_token26] = ACTIONS(2230), - [aux_sym_cmd_identifier_token27] = ACTIONS(2230), - [aux_sym_cmd_identifier_token28] = ACTIONS(2230), - [aux_sym_cmd_identifier_token29] = ACTIONS(2230), - [aux_sym_cmd_identifier_token30] = ACTIONS(2230), - [aux_sym_cmd_identifier_token31] = ACTIONS(2230), - [aux_sym_cmd_identifier_token32] = ACTIONS(2230), - [aux_sym_cmd_identifier_token33] = ACTIONS(2230), - [aux_sym_cmd_identifier_token34] = ACTIONS(2230), - [aux_sym_cmd_identifier_token35] = ACTIONS(2230), - [aux_sym_cmd_identifier_token36] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [anon_sym_null] = ACTIONS(2232), - [aux_sym_cmd_identifier_token38] = ACTIONS(2230), - [aux_sym_cmd_identifier_token39] = ACTIONS(2232), - [aux_sym_cmd_identifier_token40] = ACTIONS(2232), - [anon_sym_def] = ACTIONS(2230), - [anon_sym_export_DASHenv] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym_module] = ACTIONS(2230), - [anon_sym_use] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2232), - [anon_sym_error] = ACTIONS(2230), - [anon_sym_list] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_loop] = ACTIONS(2230), - [anon_sym_make] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_do] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_else] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_try] = ACTIONS(2230), - [anon_sym_catch] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_source] = ACTIONS(2230), - [anon_sym_source_DASHenv] = ACTIONS(2230), - [anon_sym_register] = ACTIONS(2230), - [anon_sym_hide] = ACTIONS(2230), - [anon_sym_hide_DASHenv] = ACTIONS(2230), - [anon_sym_overlay] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2230), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2232), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2232), - [aux_sym__val_number_decimal_token3] = ACTIONS(2232), - [aux_sym__val_number_decimal_token4] = ACTIONS(2232), - [aux_sym__val_number_token1] = ACTIONS(2232), - [aux_sym__val_number_token2] = ACTIONS(2232), - [aux_sym__val_number_token3] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym__str_single_quotes] = ACTIONS(2232), - [sym__str_back_ticks] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2232), - }, - [691] = { - [sym_comment] = STATE(691), - [anon_sym_export] = ACTIONS(1078), - [anon_sym_alias] = ACTIONS(1078), - [anon_sym_let] = ACTIONS(1078), - [anon_sym_let_DASHenv] = ACTIONS(1078), - [anon_sym_mut] = ACTIONS(1078), - [anon_sym_const] = ACTIONS(1078), - [aux_sym_cmd_identifier_token1] = ACTIONS(1078), - [aux_sym_cmd_identifier_token2] = ACTIONS(1078), - [aux_sym_cmd_identifier_token3] = ACTIONS(1078), - [aux_sym_cmd_identifier_token4] = ACTIONS(1078), - [aux_sym_cmd_identifier_token5] = ACTIONS(1078), - [aux_sym_cmd_identifier_token6] = ACTIONS(1078), - [aux_sym_cmd_identifier_token7] = ACTIONS(1078), - [aux_sym_cmd_identifier_token8] = ACTIONS(1078), - [aux_sym_cmd_identifier_token9] = ACTIONS(1078), - [aux_sym_cmd_identifier_token10] = ACTIONS(1078), - [aux_sym_cmd_identifier_token11] = ACTIONS(1078), - [aux_sym_cmd_identifier_token12] = ACTIONS(1078), - [aux_sym_cmd_identifier_token13] = ACTIONS(1078), - [aux_sym_cmd_identifier_token14] = ACTIONS(1078), - [aux_sym_cmd_identifier_token15] = ACTIONS(1078), - [aux_sym_cmd_identifier_token16] = ACTIONS(1078), - [aux_sym_cmd_identifier_token17] = ACTIONS(1078), - [aux_sym_cmd_identifier_token18] = ACTIONS(1078), - [aux_sym_cmd_identifier_token19] = ACTIONS(1078), - [aux_sym_cmd_identifier_token20] = ACTIONS(1078), - [aux_sym_cmd_identifier_token21] = ACTIONS(1078), - [aux_sym_cmd_identifier_token22] = ACTIONS(1078), - [aux_sym_cmd_identifier_token23] = ACTIONS(1078), - [aux_sym_cmd_identifier_token24] = ACTIONS(1078), - [aux_sym_cmd_identifier_token25] = ACTIONS(1078), - [aux_sym_cmd_identifier_token26] = ACTIONS(1078), - [aux_sym_cmd_identifier_token27] = ACTIONS(1078), - [aux_sym_cmd_identifier_token28] = ACTIONS(1078), - [aux_sym_cmd_identifier_token29] = ACTIONS(1078), - [aux_sym_cmd_identifier_token30] = ACTIONS(1078), - [aux_sym_cmd_identifier_token31] = ACTIONS(1078), - [aux_sym_cmd_identifier_token32] = ACTIONS(1078), - [aux_sym_cmd_identifier_token33] = ACTIONS(1078), - [aux_sym_cmd_identifier_token34] = ACTIONS(1078), - [aux_sym_cmd_identifier_token35] = ACTIONS(1078), - [aux_sym_cmd_identifier_token36] = ACTIONS(1078), - [anon_sym_true] = ACTIONS(1080), - [anon_sym_false] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(1080), - [aux_sym_cmd_identifier_token38] = ACTIONS(1078), - [aux_sym_cmd_identifier_token39] = ACTIONS(1080), - [aux_sym_cmd_identifier_token40] = ACTIONS(1080), - [anon_sym_def] = ACTIONS(1078), - [anon_sym_export_DASHenv] = ACTIONS(1078), - [anon_sym_extern] = ACTIONS(1078), - [anon_sym_module] = ACTIONS(1078), - [anon_sym_use] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_error] = ACTIONS(1078), - [anon_sym_list] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_in] = ACTIONS(1078), - [anon_sym_loop] = ACTIONS(1078), - [anon_sym_make] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_else] = ACTIONS(1078), - [anon_sym_match] = ACTIONS(1078), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_try] = ACTIONS(1078), - [anon_sym_catch] = ACTIONS(1078), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_source] = ACTIONS(1078), - [anon_sym_source_DASHenv] = ACTIONS(1078), - [anon_sym_register] = ACTIONS(1078), - [anon_sym_hide] = ACTIONS(1078), - [anon_sym_hide_DASHenv] = ACTIONS(1078), - [anon_sym_overlay] = ACTIONS(1078), - [anon_sym_new] = ACTIONS(1078), - [anon_sym_as] = ACTIONS(1078), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1080), - [aux_sym__val_number_decimal_token1] = ACTIONS(1078), - [aux_sym__val_number_decimal_token2] = ACTIONS(1080), - [aux_sym__val_number_decimal_token3] = ACTIONS(1080), - [aux_sym__val_number_decimal_token4] = ACTIONS(1080), - [aux_sym__val_number_token1] = ACTIONS(1080), - [aux_sym__val_number_token2] = ACTIONS(1080), - [aux_sym__val_number_token3] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym__str_single_quotes] = ACTIONS(1080), - [sym__str_back_ticks] = ACTIONS(1080), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1080), - }, - [692] = { - [sym_comment] = STATE(692), - [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(249), - [sym_raw_string_begin] = ACTIONS(1060), - }, - [693] = { - [sym_comment] = STATE(693), - [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(1064), - [anon_sym_false] = ACTIONS(1064), - [anon_sym_null] = ACTIONS(1064), - [aux_sym_cmd_identifier_token38] = ACTIONS(1062), - [aux_sym_cmd_identifier_token39] = ACTIONS(1064), - [aux_sym_cmd_identifier_token40] = ACTIONS(1064), - [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(1064), - [anon_sym_DOLLAR] = ACTIONS(1064), - [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(1064), - [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(1064), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [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), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1064), - }, - [694] = { - [sym_comment] = STATE(694), - [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(249), - [sym_raw_string_begin] = ACTIONS(1040), - }, - [695] = { - [sym_comment] = STATE(695), - [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_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(249), - [sym_raw_string_begin] = ACTIONS(1056), - }, - [696] = { - [sym_comment] = STATE(696), - [anon_sym_export] = ACTIONS(2573), - [anon_sym_alias] = ACTIONS(2573), - [anon_sym_let] = ACTIONS(2573), - [anon_sym_let_DASHenv] = ACTIONS(2573), - [anon_sym_mut] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [aux_sym_cmd_identifier_token1] = ACTIONS(2573), - [aux_sym_cmd_identifier_token2] = ACTIONS(2573), - [aux_sym_cmd_identifier_token3] = ACTIONS(2573), - [aux_sym_cmd_identifier_token4] = ACTIONS(2573), - [aux_sym_cmd_identifier_token5] = ACTIONS(2573), - [aux_sym_cmd_identifier_token6] = ACTIONS(2573), - [aux_sym_cmd_identifier_token7] = ACTIONS(2573), - [aux_sym_cmd_identifier_token8] = ACTIONS(2573), - [aux_sym_cmd_identifier_token9] = ACTIONS(2573), - [aux_sym_cmd_identifier_token10] = ACTIONS(2573), - [aux_sym_cmd_identifier_token11] = ACTIONS(2573), - [aux_sym_cmd_identifier_token12] = ACTIONS(2573), - [aux_sym_cmd_identifier_token13] = ACTIONS(2573), - [aux_sym_cmd_identifier_token14] = ACTIONS(2573), - [aux_sym_cmd_identifier_token15] = ACTIONS(2573), - [aux_sym_cmd_identifier_token16] = ACTIONS(2573), - [aux_sym_cmd_identifier_token17] = ACTIONS(2573), - [aux_sym_cmd_identifier_token18] = ACTIONS(2573), - [aux_sym_cmd_identifier_token19] = ACTIONS(2573), - [aux_sym_cmd_identifier_token20] = ACTIONS(2573), - [aux_sym_cmd_identifier_token21] = ACTIONS(2573), - [aux_sym_cmd_identifier_token22] = ACTIONS(2573), - [aux_sym_cmd_identifier_token23] = ACTIONS(2573), - [aux_sym_cmd_identifier_token24] = ACTIONS(2573), - [aux_sym_cmd_identifier_token25] = ACTIONS(2573), - [aux_sym_cmd_identifier_token26] = ACTIONS(2573), - [aux_sym_cmd_identifier_token27] = ACTIONS(2573), - [aux_sym_cmd_identifier_token28] = ACTIONS(2573), - [aux_sym_cmd_identifier_token29] = ACTIONS(2573), - [aux_sym_cmd_identifier_token30] = ACTIONS(2573), - [aux_sym_cmd_identifier_token31] = ACTIONS(2573), - [aux_sym_cmd_identifier_token32] = ACTIONS(2573), - [aux_sym_cmd_identifier_token33] = ACTIONS(2573), - [aux_sym_cmd_identifier_token34] = ACTIONS(2573), - [aux_sym_cmd_identifier_token35] = ACTIONS(2573), - [aux_sym_cmd_identifier_token36] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(2575), - [anon_sym_false] = ACTIONS(2575), - [anon_sym_null] = ACTIONS(2575), - [aux_sym_cmd_identifier_token38] = ACTIONS(2573), - [aux_sym_cmd_identifier_token39] = ACTIONS(2575), - [aux_sym_cmd_identifier_token40] = ACTIONS(2575), - [anon_sym_def] = ACTIONS(2573), - [anon_sym_export_DASHenv] = ACTIONS(2573), - [anon_sym_extern] = ACTIONS(2573), - [anon_sym_module] = ACTIONS(2573), - [anon_sym_use] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_DOLLAR] = ACTIONS(2575), - [anon_sym_error] = ACTIONS(2573), - [anon_sym_list] = ACTIONS(2573), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_in] = ACTIONS(2573), - [anon_sym_loop] = ACTIONS(2573), - [anon_sym_make] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_else] = ACTIONS(2573), - [anon_sym_match] = ACTIONS(2573), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_catch] = ACTIONS(2573), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_source] = ACTIONS(2573), - [anon_sym_source_DASHenv] = ACTIONS(2573), - [anon_sym_register] = ACTIONS(2573), - [anon_sym_hide] = ACTIONS(2573), - [anon_sym_hide_DASHenv] = ACTIONS(2573), - [anon_sym_overlay] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_as] = ACTIONS(2573), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2575), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2575), - [aux_sym__val_number_decimal_token1] = ACTIONS(2573), - [aux_sym__val_number_decimal_token2] = ACTIONS(2575), - [aux_sym__val_number_decimal_token3] = ACTIONS(2575), - [aux_sym__val_number_decimal_token4] = ACTIONS(2575), - [aux_sym__val_number_token1] = ACTIONS(2575), - [aux_sym__val_number_token2] = ACTIONS(2575), - [aux_sym__val_number_token3] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [sym__str_single_quotes] = ACTIONS(2575), - [sym__str_back_ticks] = ACTIONS(2575), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2575), - }, - [697] = { - [sym_comment] = STATE(697), - [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(249), - [sym_raw_string_begin] = ACTIONS(2460), - }, - [698] = { - [sym_comment] = STATE(698), - [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(249), - [sym_raw_string_begin] = ACTIONS(2464), - }, - [699] = { - [sym_comment] = STATE(699), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_list] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_register] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), - }, - [700] = { - [sym_comment] = STATE(700), - [anon_sym_export] = ACTIONS(1703), - [anon_sym_alias] = ACTIONS(1703), - [anon_sym_let] = ACTIONS(1703), - [anon_sym_let_DASHenv] = ACTIONS(1703), - [anon_sym_mut] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [aux_sym_cmd_identifier_token1] = ACTIONS(1703), - [aux_sym_cmd_identifier_token2] = ACTIONS(1703), - [aux_sym_cmd_identifier_token3] = ACTIONS(1703), - [aux_sym_cmd_identifier_token4] = ACTIONS(1703), - [aux_sym_cmd_identifier_token5] = ACTIONS(1703), - [aux_sym_cmd_identifier_token6] = ACTIONS(1703), - [aux_sym_cmd_identifier_token7] = ACTIONS(1703), - [aux_sym_cmd_identifier_token8] = ACTIONS(1703), - [aux_sym_cmd_identifier_token9] = ACTIONS(1703), - [aux_sym_cmd_identifier_token10] = ACTIONS(1703), - [aux_sym_cmd_identifier_token11] = ACTIONS(1703), - [aux_sym_cmd_identifier_token12] = ACTIONS(1703), - [aux_sym_cmd_identifier_token13] = ACTIONS(1703), - [aux_sym_cmd_identifier_token14] = ACTIONS(1703), - [aux_sym_cmd_identifier_token15] = ACTIONS(1703), - [aux_sym_cmd_identifier_token16] = ACTIONS(1703), - [aux_sym_cmd_identifier_token17] = ACTIONS(1703), - [aux_sym_cmd_identifier_token18] = ACTIONS(1703), - [aux_sym_cmd_identifier_token19] = ACTIONS(1703), - [aux_sym_cmd_identifier_token20] = ACTIONS(1703), - [aux_sym_cmd_identifier_token21] = ACTIONS(1703), - [aux_sym_cmd_identifier_token22] = ACTIONS(1703), - [aux_sym_cmd_identifier_token23] = ACTIONS(1703), - [aux_sym_cmd_identifier_token24] = ACTIONS(1703), - [aux_sym_cmd_identifier_token25] = ACTIONS(1703), - [aux_sym_cmd_identifier_token26] = ACTIONS(1703), - [aux_sym_cmd_identifier_token27] = ACTIONS(1703), - [aux_sym_cmd_identifier_token28] = ACTIONS(1703), - [aux_sym_cmd_identifier_token29] = ACTIONS(1703), - [aux_sym_cmd_identifier_token30] = ACTIONS(1703), - [aux_sym_cmd_identifier_token31] = ACTIONS(1703), - [aux_sym_cmd_identifier_token32] = ACTIONS(1703), - [aux_sym_cmd_identifier_token33] = ACTIONS(1703), - [aux_sym_cmd_identifier_token34] = ACTIONS(1703), - [aux_sym_cmd_identifier_token35] = ACTIONS(1703), - [aux_sym_cmd_identifier_token36] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_null] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1703), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_export_DASHenv] = ACTIONS(1703), - [anon_sym_extern] = ACTIONS(1703), - [anon_sym_module] = ACTIONS(1703), - [anon_sym_use] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1705), - [anon_sym_error] = ACTIONS(1703), - [anon_sym_list] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_in] = ACTIONS(1703), - [anon_sym_loop] = ACTIONS(1703), - [anon_sym_make] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_catch] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_source] = ACTIONS(1703), - [anon_sym_source_DASHenv] = ACTIONS(1703), - [anon_sym_register] = ACTIONS(1703), - [anon_sym_hide] = ACTIONS(1703), - [anon_sym_hide_DASHenv] = ACTIONS(1703), - [anon_sym_overlay] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), - }, - [701] = { - [sym_comment] = STATE(701), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_list] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), - }, - [702] = { - [sym_comment] = STATE(702), - [anon_sym_export] = ACTIONS(1826), - [anon_sym_alias] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_let_DASHenv] = ACTIONS(1826), - [anon_sym_mut] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [aux_sym_cmd_identifier_token1] = ACTIONS(1826), - [aux_sym_cmd_identifier_token2] = ACTIONS(1826), - [aux_sym_cmd_identifier_token3] = ACTIONS(1826), - [aux_sym_cmd_identifier_token4] = ACTIONS(1826), - [aux_sym_cmd_identifier_token5] = ACTIONS(1826), - [aux_sym_cmd_identifier_token6] = ACTIONS(1826), - [aux_sym_cmd_identifier_token7] = ACTIONS(1826), - [aux_sym_cmd_identifier_token8] = ACTIONS(1826), - [aux_sym_cmd_identifier_token9] = ACTIONS(1826), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1826), - [aux_sym_cmd_identifier_token13] = ACTIONS(1826), - [aux_sym_cmd_identifier_token14] = ACTIONS(1826), - [aux_sym_cmd_identifier_token15] = ACTIONS(1826), - [aux_sym_cmd_identifier_token16] = ACTIONS(1826), - [aux_sym_cmd_identifier_token17] = ACTIONS(1826), - [aux_sym_cmd_identifier_token18] = ACTIONS(1826), - [aux_sym_cmd_identifier_token19] = ACTIONS(1826), - [aux_sym_cmd_identifier_token20] = ACTIONS(1826), - [aux_sym_cmd_identifier_token21] = ACTIONS(1826), - [aux_sym_cmd_identifier_token22] = ACTIONS(1826), - [aux_sym_cmd_identifier_token23] = ACTIONS(1826), - [aux_sym_cmd_identifier_token24] = ACTIONS(1826), - [aux_sym_cmd_identifier_token25] = ACTIONS(1826), - [aux_sym_cmd_identifier_token26] = ACTIONS(1826), - [aux_sym_cmd_identifier_token27] = ACTIONS(1826), - [aux_sym_cmd_identifier_token28] = ACTIONS(1826), - [aux_sym_cmd_identifier_token29] = ACTIONS(1826), - [aux_sym_cmd_identifier_token30] = ACTIONS(1826), - [aux_sym_cmd_identifier_token31] = ACTIONS(1826), - [aux_sym_cmd_identifier_token32] = ACTIONS(1826), - [aux_sym_cmd_identifier_token33] = ACTIONS(1826), - [aux_sym_cmd_identifier_token34] = ACTIONS(1826), - [aux_sym_cmd_identifier_token35] = ACTIONS(1826), - [aux_sym_cmd_identifier_token36] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1828), - [aux_sym_cmd_identifier_token38] = ACTIONS(1826), - [aux_sym_cmd_identifier_token39] = ACTIONS(1828), - [aux_sym_cmd_identifier_token40] = ACTIONS(1828), - [anon_sym_def] = ACTIONS(1826), - [anon_sym_export_DASHenv] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_module] = ACTIONS(1826), - [anon_sym_use] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_error] = ACTIONS(1826), - [anon_sym_list] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_loop] = ACTIONS(1826), - [anon_sym_make] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_else] = ACTIONS(1826), - [anon_sym_match] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1826), - [anon_sym_catch] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_source] = ACTIONS(1826), - [anon_sym_source_DASHenv] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_hide] = ACTIONS(1826), - [anon_sym_hide_DASHenv] = ACTIONS(1826), - [anon_sym_overlay] = ACTIONS(1826), - [anon_sym_new] = ACTIONS(1826), - [anon_sym_as] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1828), + [876] = { + [sym_comment] = STATE(876), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [sym__newline] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_err_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_GT_PIPE] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), + [anon_sym_GT2] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_STAR2] = ACTIONS(2214), + [anon_sym_and2] = ACTIONS(2214), + [anon_sym_xor2] = ACTIONS(2214), + [anon_sym_or2] = ACTIONS(2214), + [anon_sym_not_DASHin2] = ACTIONS(2214), + [anon_sym_starts_DASHwith2] = ACTIONS(2214), + [anon_sym_ends_DASHwith2] = ACTIONS(2214), + [anon_sym_EQ_EQ2] = ACTIONS(2214), + [anon_sym_BANG_EQ2] = ACTIONS(2214), + [anon_sym_LT2] = ACTIONS(2214), + [anon_sym_LT_EQ2] = ACTIONS(2214), + [anon_sym_GT_EQ2] = ACTIONS(2214), + [anon_sym_EQ_TILDE2] = ACTIONS(2214), + [anon_sym_BANG_TILDE2] = ACTIONS(2214), + [anon_sym_STAR_STAR2] = ACTIONS(2214), + [anon_sym_PLUS_PLUS2] = ACTIONS(2214), + [anon_sym_SLASH2] = ACTIONS(2214), + [anon_sym_mod2] = ACTIONS(2214), + [anon_sym_SLASH_SLASH2] = ACTIONS(2214), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_bit_DASHshl2] = ACTIONS(2214), + [anon_sym_bit_DASHshr2] = ACTIONS(2214), + [anon_sym_bit_DASHand2] = ACTIONS(2214), + [anon_sym_bit_DASHxor2] = ACTIONS(2214), + [anon_sym_bit_DASHor2] = ACTIONS(2214), + [anon_sym_err_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(3), }, - [703] = { - [sym_comment] = STATE(703), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_alias] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_let_DASHenv] = ACTIONS(2196), - [anon_sym_mut] = ACTIONS(2196), - [anon_sym_const] = ACTIONS(2196), - [aux_sym_cmd_identifier_token1] = ACTIONS(2196), - [aux_sym_cmd_identifier_token2] = ACTIONS(2196), - [aux_sym_cmd_identifier_token3] = ACTIONS(2196), - [aux_sym_cmd_identifier_token4] = ACTIONS(2196), - [aux_sym_cmd_identifier_token5] = ACTIONS(2196), - [aux_sym_cmd_identifier_token6] = ACTIONS(2196), - [aux_sym_cmd_identifier_token7] = ACTIONS(2196), - [aux_sym_cmd_identifier_token8] = ACTIONS(2196), - [aux_sym_cmd_identifier_token9] = ACTIONS(2196), - [aux_sym_cmd_identifier_token10] = ACTIONS(2196), - [aux_sym_cmd_identifier_token11] = ACTIONS(2196), - [aux_sym_cmd_identifier_token12] = ACTIONS(2196), - [aux_sym_cmd_identifier_token13] = ACTIONS(2196), - [aux_sym_cmd_identifier_token14] = ACTIONS(2196), - [aux_sym_cmd_identifier_token15] = ACTIONS(2196), - [aux_sym_cmd_identifier_token16] = ACTIONS(2196), - [aux_sym_cmd_identifier_token17] = ACTIONS(2196), - [aux_sym_cmd_identifier_token18] = ACTIONS(2196), - [aux_sym_cmd_identifier_token19] = ACTIONS(2196), - [aux_sym_cmd_identifier_token20] = ACTIONS(2196), - [aux_sym_cmd_identifier_token21] = ACTIONS(2196), - [aux_sym_cmd_identifier_token22] = ACTIONS(2196), - [aux_sym_cmd_identifier_token23] = ACTIONS(2196), - [aux_sym_cmd_identifier_token24] = ACTIONS(2196), - [aux_sym_cmd_identifier_token25] = ACTIONS(2196), - [aux_sym_cmd_identifier_token26] = ACTIONS(2196), - [aux_sym_cmd_identifier_token27] = ACTIONS(2196), - [aux_sym_cmd_identifier_token28] = ACTIONS(2196), - [aux_sym_cmd_identifier_token29] = ACTIONS(2196), - [aux_sym_cmd_identifier_token30] = ACTIONS(2196), - [aux_sym_cmd_identifier_token31] = ACTIONS(2196), - [aux_sym_cmd_identifier_token32] = ACTIONS(2196), - [aux_sym_cmd_identifier_token33] = ACTIONS(2196), - [aux_sym_cmd_identifier_token34] = ACTIONS(2196), - [aux_sym_cmd_identifier_token35] = ACTIONS(2196), - [aux_sym_cmd_identifier_token36] = ACTIONS(2196), - [anon_sym_true] = ACTIONS(2198), - [anon_sym_false] = ACTIONS(2198), - [anon_sym_null] = ACTIONS(2198), - [aux_sym_cmd_identifier_token38] = ACTIONS(2196), - [aux_sym_cmd_identifier_token39] = ACTIONS(2198), - [aux_sym_cmd_identifier_token40] = ACTIONS(2198), - [anon_sym_def] = ACTIONS(2196), - [anon_sym_export_DASHenv] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_module] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2198), - [anon_sym_error] = ACTIONS(2196), - [anon_sym_list] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_for] = ACTIONS(2196), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_make] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_do] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_else] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2196), - [anon_sym_catch] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_source] = ACTIONS(2196), - [anon_sym_source_DASHenv] = ACTIONS(2196), - [anon_sym_register] = ACTIONS(2196), - [anon_sym_hide] = ACTIONS(2196), - [anon_sym_hide_DASHenv] = ACTIONS(2196), - [anon_sym_overlay] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2198), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2198), - [aux_sym__val_number_decimal_token4] = ACTIONS(2198), - [aux_sym__val_number_token1] = ACTIONS(2198), - [aux_sym__val_number_token2] = ACTIONS(2198), - [aux_sym__val_number_token3] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym__str_single_quotes] = ACTIONS(2198), - [sym__str_back_ticks] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2198), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2198), + [877] = { + [sym_comment] = STATE(877), + [anon_sym_STAR_STAR] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_mod] = ACTIONS(3189), + [anon_sym_SLASH_SLASH] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_bit_DASHshl] = ACTIONS(3189), + [anon_sym_bit_DASHshr] = ACTIONS(3189), + [anon_sym_EQ_TILDE] = ACTIONS(3189), + [anon_sym_BANG_TILDE] = ACTIONS(3189), + [anon_sym_bit_DASHand] = ACTIONS(3189), + [anon_sym_bit_DASHxor] = ACTIONS(3189), + [anon_sym_bit_DASHor] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_xor] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [anon_sym_in] = ACTIONS(3189), + [anon_sym_not_DASHin] = ACTIONS(3189), + [anon_sym_starts_DASHwith] = ACTIONS(3189), + [anon_sym_ends_DASHwith] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_GT_EQ] = ACTIONS(3189), + [aux_sym_cmd_identifier_token41] = ACTIONS(3193), + [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_GT2] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_STAR2] = ACTIONS(2222), + [anon_sym_and2] = ACTIONS(2222), + [anon_sym_xor2] = ACTIONS(2222), + [anon_sym_or2] = ACTIONS(2222), + [anon_sym_not_DASHin2] = ACTIONS(2222), + [anon_sym_starts_DASHwith2] = ACTIONS(2222), + [anon_sym_ends_DASHwith2] = ACTIONS(2222), + [anon_sym_EQ_EQ2] = ACTIONS(2222), + [anon_sym_BANG_EQ2] = ACTIONS(2222), + [anon_sym_LT2] = ACTIONS(2222), + [anon_sym_LT_EQ2] = ACTIONS(2222), + [anon_sym_GT_EQ2] = ACTIONS(2222), + [anon_sym_EQ_TILDE2] = ACTIONS(2222), + [anon_sym_BANG_TILDE2] = ACTIONS(2222), + [anon_sym_STAR_STAR2] = ACTIONS(2222), + [anon_sym_PLUS_PLUS2] = ACTIONS(2222), + [anon_sym_SLASH2] = ACTIONS(2222), + [anon_sym_mod2] = ACTIONS(2222), + [anon_sym_SLASH_SLASH2] = ACTIONS(2222), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_bit_DASHshl2] = ACTIONS(2222), + [anon_sym_bit_DASHshr2] = ACTIONS(2222), + [anon_sym_bit_DASHand2] = ACTIONS(2222), + [anon_sym_bit_DASHxor2] = ACTIONS(2222), + [anon_sym_bit_DASHor2] = ACTIONS(2222), + [anon_sym_err_GT] = ACTIONS(2222), + [anon_sym_out_GT] = ACTIONS(2222), + [anon_sym_e_GT] = ACTIONS(2222), + [anon_sym_o_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT] = ACTIONS(2222), + [anon_sym_err_GT_GT] = ACTIONS(2222), + [anon_sym_out_GT_GT] = ACTIONS(2222), + [anon_sym_e_GT_GT] = ACTIONS(2222), + [anon_sym_o_GT_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), }, - [704] = { - [sym_comment] = STATE(704), - [anon_sym_export] = ACTIONS(2063), - [anon_sym_alias] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_let_DASHenv] = ACTIONS(2063), - [anon_sym_mut] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2063), - [aux_sym_cmd_identifier_token1] = ACTIONS(2063), - [aux_sym_cmd_identifier_token2] = ACTIONS(2063), - [aux_sym_cmd_identifier_token3] = ACTIONS(2063), - [aux_sym_cmd_identifier_token4] = ACTIONS(2063), - [aux_sym_cmd_identifier_token5] = ACTIONS(2063), - [aux_sym_cmd_identifier_token6] = ACTIONS(2063), - [aux_sym_cmd_identifier_token7] = ACTIONS(2063), - [aux_sym_cmd_identifier_token8] = ACTIONS(2063), - [aux_sym_cmd_identifier_token9] = ACTIONS(2063), - [aux_sym_cmd_identifier_token10] = ACTIONS(2063), - [aux_sym_cmd_identifier_token11] = ACTIONS(2063), - [aux_sym_cmd_identifier_token12] = ACTIONS(2063), - [aux_sym_cmd_identifier_token13] = ACTIONS(2063), - [aux_sym_cmd_identifier_token14] = ACTIONS(2063), - [aux_sym_cmd_identifier_token15] = ACTIONS(2063), - [aux_sym_cmd_identifier_token16] = ACTIONS(2063), - [aux_sym_cmd_identifier_token17] = ACTIONS(2063), - [aux_sym_cmd_identifier_token18] = ACTIONS(2063), - [aux_sym_cmd_identifier_token19] = ACTIONS(2063), - [aux_sym_cmd_identifier_token20] = ACTIONS(2063), - [aux_sym_cmd_identifier_token21] = ACTIONS(2063), - [aux_sym_cmd_identifier_token22] = ACTIONS(2063), - [aux_sym_cmd_identifier_token23] = ACTIONS(2063), - [aux_sym_cmd_identifier_token24] = ACTIONS(2063), - [aux_sym_cmd_identifier_token25] = ACTIONS(2063), - [aux_sym_cmd_identifier_token26] = ACTIONS(2063), - [aux_sym_cmd_identifier_token27] = ACTIONS(2063), - [aux_sym_cmd_identifier_token28] = ACTIONS(2063), - [aux_sym_cmd_identifier_token29] = ACTIONS(2063), - [aux_sym_cmd_identifier_token30] = ACTIONS(2063), - [aux_sym_cmd_identifier_token31] = ACTIONS(2063), - [aux_sym_cmd_identifier_token32] = ACTIONS(2063), - [aux_sym_cmd_identifier_token33] = ACTIONS(2063), - [aux_sym_cmd_identifier_token34] = ACTIONS(2063), - [aux_sym_cmd_identifier_token35] = ACTIONS(2063), - [aux_sym_cmd_identifier_token36] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_null] = ACTIONS(2065), - [aux_sym_cmd_identifier_token38] = ACTIONS(2063), - [aux_sym_cmd_identifier_token39] = ACTIONS(2065), - [aux_sym_cmd_identifier_token40] = ACTIONS(2065), - [anon_sym_def] = ACTIONS(2063), - [anon_sym_export_DASHenv] = ACTIONS(2063), - [anon_sym_extern] = ACTIONS(2063), - [anon_sym_module] = ACTIONS(2063), - [anon_sym_use] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_DOLLAR] = ACTIONS(2065), - [anon_sym_error] = ACTIONS(2063), - [anon_sym_list] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_break] = ACTIONS(2063), - [anon_sym_continue] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2063), - [anon_sym_in] = ACTIONS(2063), - [anon_sym_loop] = ACTIONS(2063), - [anon_sym_make] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [anon_sym_do] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(2063), - [anon_sym_else] = ACTIONS(2063), - [anon_sym_match] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_try] = ACTIONS(2063), - [anon_sym_catch] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2063), - [anon_sym_source] = ACTIONS(2063), - [anon_sym_source_DASHenv] = ACTIONS(2063), - [anon_sym_register] = ACTIONS(2063), - [anon_sym_hide] = ACTIONS(2063), - [anon_sym_hide_DASHenv] = ACTIONS(2063), - [anon_sym_overlay] = ACTIONS(2063), - [anon_sym_new] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2065), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2065), - [aux_sym__val_number_decimal_token1] = ACTIONS(2063), - [aux_sym__val_number_decimal_token2] = ACTIONS(2065), - [aux_sym__val_number_decimal_token3] = ACTIONS(2065), - [aux_sym__val_number_decimal_token4] = ACTIONS(2065), - [aux_sym__val_number_token1] = ACTIONS(2065), - [aux_sym__val_number_token2] = ACTIONS(2065), - [aux_sym__val_number_token3] = ACTIONS(2065), - [anon_sym_DQUOTE] = ACTIONS(2065), - [sym__str_single_quotes] = ACTIONS(2065), - [sym__str_back_ticks] = ACTIONS(2065), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2065), + [878] = { + [sym_comment] = STATE(878), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [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_GT2] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_STAR2] = ACTIONS(2222), + [anon_sym_and2] = ACTIONS(2222), + [anon_sym_xor2] = ACTIONS(2222), + [anon_sym_or2] = ACTIONS(2222), + [anon_sym_not_DASHin2] = ACTIONS(2222), + [anon_sym_starts_DASHwith2] = ACTIONS(2222), + [anon_sym_ends_DASHwith2] = ACTIONS(2222), + [anon_sym_EQ_EQ2] = ACTIONS(2222), + [anon_sym_BANG_EQ2] = ACTIONS(2222), + [anon_sym_LT2] = ACTIONS(2222), + [anon_sym_LT_EQ2] = ACTIONS(2222), + [anon_sym_GT_EQ2] = ACTIONS(2222), + [anon_sym_EQ_TILDE2] = ACTIONS(2222), + [anon_sym_BANG_TILDE2] = ACTIONS(2222), + [anon_sym_STAR_STAR2] = ACTIONS(2222), + [anon_sym_PLUS_PLUS2] = ACTIONS(2222), + [anon_sym_SLASH2] = ACTIONS(2222), + [anon_sym_mod2] = ACTIONS(2222), + [anon_sym_SLASH_SLASH2] = ACTIONS(2222), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_bit_DASHshl2] = ACTIONS(2222), + [anon_sym_bit_DASHshr2] = ACTIONS(2222), + [anon_sym_bit_DASHand2] = ACTIONS(2222), + [anon_sym_bit_DASHxor2] = ACTIONS(2222), + [anon_sym_bit_DASHor2] = ACTIONS(2222), + [anon_sym_err_GT] = ACTIONS(2222), + [anon_sym_out_GT] = ACTIONS(2222), + [anon_sym_e_GT] = ACTIONS(2222), + [anon_sym_o_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT] = ACTIONS(2222), + [anon_sym_err_GT_GT] = ACTIONS(2222), + [anon_sym_out_GT_GT] = ACTIONS(2222), + [anon_sym_e_GT_GT] = ACTIONS(2222), + [anon_sym_o_GT_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), }, - [705] = { - [sym_comment] = STATE(705), - [anon_sym_export] = ACTIONS(2200), - [anon_sym_alias] = ACTIONS(2200), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_let_DASHenv] = ACTIONS(2200), - [anon_sym_mut] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2200), - [aux_sym_cmd_identifier_token1] = ACTIONS(2200), - [aux_sym_cmd_identifier_token2] = ACTIONS(2200), - [aux_sym_cmd_identifier_token3] = ACTIONS(2200), - [aux_sym_cmd_identifier_token4] = ACTIONS(2200), - [aux_sym_cmd_identifier_token5] = ACTIONS(2200), - [aux_sym_cmd_identifier_token6] = ACTIONS(2200), - [aux_sym_cmd_identifier_token7] = ACTIONS(2200), - [aux_sym_cmd_identifier_token8] = ACTIONS(2200), - [aux_sym_cmd_identifier_token9] = ACTIONS(2200), - [aux_sym_cmd_identifier_token10] = ACTIONS(2200), - [aux_sym_cmd_identifier_token11] = ACTIONS(2200), - [aux_sym_cmd_identifier_token12] = ACTIONS(2200), - [aux_sym_cmd_identifier_token13] = ACTIONS(2200), - [aux_sym_cmd_identifier_token14] = ACTIONS(2200), - [aux_sym_cmd_identifier_token15] = ACTIONS(2200), - [aux_sym_cmd_identifier_token16] = ACTIONS(2200), - [aux_sym_cmd_identifier_token17] = ACTIONS(2200), - [aux_sym_cmd_identifier_token18] = ACTIONS(2200), - [aux_sym_cmd_identifier_token19] = ACTIONS(2200), - [aux_sym_cmd_identifier_token20] = ACTIONS(2200), - [aux_sym_cmd_identifier_token21] = ACTIONS(2200), - [aux_sym_cmd_identifier_token22] = ACTIONS(2200), - [aux_sym_cmd_identifier_token23] = ACTIONS(2200), - [aux_sym_cmd_identifier_token24] = ACTIONS(2200), - [aux_sym_cmd_identifier_token25] = ACTIONS(2200), - [aux_sym_cmd_identifier_token26] = ACTIONS(2200), - [aux_sym_cmd_identifier_token27] = ACTIONS(2200), - [aux_sym_cmd_identifier_token28] = ACTIONS(2200), - [aux_sym_cmd_identifier_token29] = ACTIONS(2200), - [aux_sym_cmd_identifier_token30] = ACTIONS(2200), - [aux_sym_cmd_identifier_token31] = ACTIONS(2200), - [aux_sym_cmd_identifier_token32] = ACTIONS(2200), - [aux_sym_cmd_identifier_token33] = ACTIONS(2200), - [aux_sym_cmd_identifier_token34] = ACTIONS(2200), - [aux_sym_cmd_identifier_token35] = ACTIONS(2200), - [aux_sym_cmd_identifier_token36] = ACTIONS(2200), - [anon_sym_true] = ACTIONS(2202), - [anon_sym_false] = ACTIONS(2202), - [anon_sym_null] = ACTIONS(2202), - [aux_sym_cmd_identifier_token38] = ACTIONS(2200), - [aux_sym_cmd_identifier_token39] = ACTIONS(2202), - [aux_sym_cmd_identifier_token40] = ACTIONS(2202), - [anon_sym_def] = ACTIONS(2200), - [anon_sym_export_DASHenv] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_module] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_error] = ACTIONS(2200), - [anon_sym_list] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_in] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_make] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_do] = ACTIONS(2200), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_else] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_try] = ACTIONS(2200), - [anon_sym_catch] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_source] = ACTIONS(2200), - [anon_sym_source_DASHenv] = ACTIONS(2200), - [anon_sym_register] = ACTIONS(2200), - [anon_sym_hide] = ACTIONS(2200), - [anon_sym_hide_DASHenv] = ACTIONS(2200), - [anon_sym_overlay] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_as] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2202), - [aux_sym__val_number_decimal_token1] = ACTIONS(2200), - [aux_sym__val_number_decimal_token2] = ACTIONS(2202), - [aux_sym__val_number_decimal_token3] = ACTIONS(2202), - [aux_sym__val_number_decimal_token4] = ACTIONS(2202), - [aux_sym__val_number_token1] = ACTIONS(2202), - [aux_sym__val_number_token2] = ACTIONS(2202), - [aux_sym__val_number_token3] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(2202), - [sym__str_single_quotes] = ACTIONS(2202), - [sym__str_back_ticks] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2202), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2202), + [879] = { + [sym_comment] = STATE(879), + [ts_builtin_sym_end] = ACTIONS(2218), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_err_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_GT_PIPE] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), + [anon_sym_GT2] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_STAR2] = ACTIONS(2214), + [anon_sym_and2] = ACTIONS(2214), + [anon_sym_xor2] = ACTIONS(2214), + [anon_sym_or2] = ACTIONS(2214), + [anon_sym_not_DASHin2] = ACTIONS(2214), + [anon_sym_starts_DASHwith2] = ACTIONS(2214), + [anon_sym_ends_DASHwith2] = ACTIONS(2214), + [anon_sym_EQ_EQ2] = ACTIONS(2214), + [anon_sym_BANG_EQ2] = ACTIONS(2214), + [anon_sym_LT2] = ACTIONS(2214), + [anon_sym_LT_EQ2] = ACTIONS(2214), + [anon_sym_GT_EQ2] = ACTIONS(2214), + [anon_sym_EQ_TILDE2] = ACTIONS(2214), + [anon_sym_BANG_TILDE2] = ACTIONS(2214), + [anon_sym_STAR_STAR2] = ACTIONS(2214), + [anon_sym_PLUS_PLUS2] = ACTIONS(2214), + [anon_sym_SLASH2] = ACTIONS(2214), + [anon_sym_mod2] = ACTIONS(2214), + [anon_sym_SLASH_SLASH2] = ACTIONS(2214), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_bit_DASHshl2] = ACTIONS(2214), + [anon_sym_bit_DASHshr2] = ACTIONS(2214), + [anon_sym_bit_DASHand2] = ACTIONS(2214), + [anon_sym_bit_DASHxor2] = ACTIONS(2214), + [anon_sym_bit_DASHor2] = ACTIONS(2214), + [anon_sym_err_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(3), }, - [706] = { - [sym_comment] = STATE(706), - [anon_sym_export] = ACTIONS(2490), - [anon_sym_alias] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_let_DASHenv] = ACTIONS(2490), - [anon_sym_mut] = ACTIONS(2490), - [anon_sym_const] = ACTIONS(2490), - [aux_sym_cmd_identifier_token1] = ACTIONS(2490), - [aux_sym_cmd_identifier_token2] = ACTIONS(2490), - [aux_sym_cmd_identifier_token3] = ACTIONS(2490), - [aux_sym_cmd_identifier_token4] = ACTIONS(2490), - [aux_sym_cmd_identifier_token5] = ACTIONS(2490), - [aux_sym_cmd_identifier_token6] = ACTIONS(2490), - [aux_sym_cmd_identifier_token7] = ACTIONS(2490), - [aux_sym_cmd_identifier_token8] = ACTIONS(2490), - [aux_sym_cmd_identifier_token9] = ACTIONS(2490), - [aux_sym_cmd_identifier_token10] = ACTIONS(2490), - [aux_sym_cmd_identifier_token11] = ACTIONS(2490), - [aux_sym_cmd_identifier_token12] = ACTIONS(2490), - [aux_sym_cmd_identifier_token13] = ACTIONS(2490), - [aux_sym_cmd_identifier_token14] = ACTIONS(2490), - [aux_sym_cmd_identifier_token15] = ACTIONS(2490), - [aux_sym_cmd_identifier_token16] = ACTIONS(2490), - [aux_sym_cmd_identifier_token17] = ACTIONS(2490), - [aux_sym_cmd_identifier_token18] = ACTIONS(2490), - [aux_sym_cmd_identifier_token19] = ACTIONS(2490), - [aux_sym_cmd_identifier_token20] = ACTIONS(2490), - [aux_sym_cmd_identifier_token21] = ACTIONS(2490), - [aux_sym_cmd_identifier_token22] = ACTIONS(2490), - [aux_sym_cmd_identifier_token23] = ACTIONS(2490), - [aux_sym_cmd_identifier_token24] = ACTIONS(2490), - [aux_sym_cmd_identifier_token25] = ACTIONS(2490), - [aux_sym_cmd_identifier_token26] = ACTIONS(2490), - [aux_sym_cmd_identifier_token27] = ACTIONS(2490), - [aux_sym_cmd_identifier_token28] = ACTIONS(2490), - [aux_sym_cmd_identifier_token29] = ACTIONS(2490), - [aux_sym_cmd_identifier_token30] = ACTIONS(2490), - [aux_sym_cmd_identifier_token31] = ACTIONS(2490), - [aux_sym_cmd_identifier_token32] = ACTIONS(2490), - [aux_sym_cmd_identifier_token33] = ACTIONS(2490), - [aux_sym_cmd_identifier_token34] = ACTIONS(2490), - [aux_sym_cmd_identifier_token35] = ACTIONS(2490), - [aux_sym_cmd_identifier_token36] = ACTIONS(2490), - [anon_sym_true] = ACTIONS(2492), - [anon_sym_false] = ACTIONS(2492), - [anon_sym_null] = ACTIONS(2492), - [aux_sym_cmd_identifier_token38] = ACTIONS(2490), - [aux_sym_cmd_identifier_token39] = ACTIONS(2492), - [aux_sym_cmd_identifier_token40] = ACTIONS(2492), - [anon_sym_def] = ACTIONS(2490), - [anon_sym_export_DASHenv] = ACTIONS(2490), - [anon_sym_extern] = ACTIONS(2490), - [anon_sym_module] = ACTIONS(2490), - [anon_sym_use] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_error] = ACTIONS(2490), - [anon_sym_list] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_break] = ACTIONS(2490), - [anon_sym_continue] = ACTIONS(2490), - [anon_sym_for] = ACTIONS(2490), - [anon_sym_in] = ACTIONS(2490), - [anon_sym_loop] = ACTIONS(2490), - [anon_sym_make] = ACTIONS(2490), - [anon_sym_while] = ACTIONS(2490), - [anon_sym_do] = ACTIONS(2490), - [anon_sym_if] = ACTIONS(2490), - [anon_sym_else] = ACTIONS(2490), - [anon_sym_match] = ACTIONS(2490), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2490), - [anon_sym_catch] = ACTIONS(2490), - [anon_sym_return] = ACTIONS(2490), - [anon_sym_source] = ACTIONS(2490), - [anon_sym_source_DASHenv] = ACTIONS(2490), - [anon_sym_register] = ACTIONS(2490), - [anon_sym_hide] = ACTIONS(2490), - [anon_sym_hide_DASHenv] = ACTIONS(2490), - [anon_sym_overlay] = ACTIONS(2490), - [anon_sym_new] = ACTIONS(2490), - [anon_sym_as] = ACTIONS(2490), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2492), - [aux_sym__val_number_decimal_token1] = ACTIONS(2490), - [aux_sym__val_number_decimal_token2] = ACTIONS(2492), - [aux_sym__val_number_decimal_token3] = ACTIONS(2492), - [aux_sym__val_number_decimal_token4] = ACTIONS(2492), - [aux_sym__val_number_token1] = ACTIONS(2492), - [aux_sym__val_number_token2] = ACTIONS(2492), - [aux_sym__val_number_token3] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym__str_single_quotes] = ACTIONS(2492), - [sym__str_back_ticks] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2492), + [880] = { + [sym_comment] = STATE(880), + [ts_builtin_sym_end] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [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_GT2] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), + [anon_sym_STAR2] = ACTIONS(2222), + [anon_sym_and2] = ACTIONS(2222), + [anon_sym_xor2] = ACTIONS(2222), + [anon_sym_or2] = ACTIONS(2222), + [anon_sym_not_DASHin2] = ACTIONS(2222), + [anon_sym_starts_DASHwith2] = ACTIONS(2222), + [anon_sym_ends_DASHwith2] = ACTIONS(2222), + [anon_sym_EQ_EQ2] = ACTIONS(2222), + [anon_sym_BANG_EQ2] = ACTIONS(2222), + [anon_sym_LT2] = ACTIONS(2222), + [anon_sym_LT_EQ2] = ACTIONS(2222), + [anon_sym_GT_EQ2] = ACTIONS(2222), + [anon_sym_EQ_TILDE2] = ACTIONS(2222), + [anon_sym_BANG_TILDE2] = ACTIONS(2222), + [anon_sym_STAR_STAR2] = ACTIONS(2222), + [anon_sym_PLUS_PLUS2] = ACTIONS(2222), + [anon_sym_SLASH2] = ACTIONS(2222), + [anon_sym_mod2] = ACTIONS(2222), + [anon_sym_SLASH_SLASH2] = ACTIONS(2222), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_bit_DASHshl2] = ACTIONS(2222), + [anon_sym_bit_DASHshr2] = ACTIONS(2222), + [anon_sym_bit_DASHand2] = ACTIONS(2222), + [anon_sym_bit_DASHxor2] = ACTIONS(2222), + [anon_sym_bit_DASHor2] = ACTIONS(2222), + [anon_sym_err_GT] = ACTIONS(2222), + [anon_sym_out_GT] = ACTIONS(2222), + [anon_sym_e_GT] = ACTIONS(2222), + [anon_sym_o_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT] = ACTIONS(2222), + [anon_sym_err_GT_GT] = ACTIONS(2222), + [anon_sym_out_GT_GT] = ACTIONS(2222), + [anon_sym_e_GT_GT] = ACTIONS(2222), + [anon_sym_o_GT_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), }, - [707] = { - [sym_comment] = STATE(707), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_alias] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_let_DASHenv] = ACTIONS(2234), - [anon_sym_mut] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [aux_sym_cmd_identifier_token1] = ACTIONS(2234), - [aux_sym_cmd_identifier_token2] = ACTIONS(2234), - [aux_sym_cmd_identifier_token3] = ACTIONS(2234), - [aux_sym_cmd_identifier_token4] = ACTIONS(2234), - [aux_sym_cmd_identifier_token5] = ACTIONS(2234), - [aux_sym_cmd_identifier_token6] = ACTIONS(2234), - [aux_sym_cmd_identifier_token7] = ACTIONS(2234), - [aux_sym_cmd_identifier_token8] = ACTIONS(2234), - [aux_sym_cmd_identifier_token9] = ACTIONS(2234), - [aux_sym_cmd_identifier_token10] = ACTIONS(2234), - [aux_sym_cmd_identifier_token11] = ACTIONS(2234), - [aux_sym_cmd_identifier_token12] = ACTIONS(2234), - [aux_sym_cmd_identifier_token13] = ACTIONS(2234), - [aux_sym_cmd_identifier_token14] = ACTIONS(2234), - [aux_sym_cmd_identifier_token15] = ACTIONS(2234), - [aux_sym_cmd_identifier_token16] = ACTIONS(2234), - [aux_sym_cmd_identifier_token17] = ACTIONS(2234), - [aux_sym_cmd_identifier_token18] = ACTIONS(2234), - [aux_sym_cmd_identifier_token19] = ACTIONS(2234), - [aux_sym_cmd_identifier_token20] = ACTIONS(2234), - [aux_sym_cmd_identifier_token21] = ACTIONS(2234), - [aux_sym_cmd_identifier_token22] = ACTIONS(2234), - [aux_sym_cmd_identifier_token23] = ACTIONS(2234), - [aux_sym_cmd_identifier_token24] = ACTIONS(2234), - [aux_sym_cmd_identifier_token25] = ACTIONS(2234), - [aux_sym_cmd_identifier_token26] = ACTIONS(2234), - [aux_sym_cmd_identifier_token27] = ACTIONS(2234), - [aux_sym_cmd_identifier_token28] = ACTIONS(2234), - [aux_sym_cmd_identifier_token29] = ACTIONS(2234), - [aux_sym_cmd_identifier_token30] = ACTIONS(2234), - [aux_sym_cmd_identifier_token31] = ACTIONS(2234), - [aux_sym_cmd_identifier_token32] = ACTIONS(2234), - [aux_sym_cmd_identifier_token33] = ACTIONS(2234), - [aux_sym_cmd_identifier_token34] = ACTIONS(2234), - [aux_sym_cmd_identifier_token35] = ACTIONS(2234), - [aux_sym_cmd_identifier_token36] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token38] = ACTIONS(2234), - [aux_sym_cmd_identifier_token39] = ACTIONS(2240), - [aux_sym_cmd_identifier_token40] = ACTIONS(2240), - [anon_sym_def] = ACTIONS(2234), - [anon_sym_export_DASHenv] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_use] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_DOLLAR] = ACTIONS(2240), - [anon_sym_error] = ACTIONS(2234), - [anon_sym_list] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_in] = ACTIONS(2234), - [anon_sym_loop] = ACTIONS(2234), - [anon_sym_make] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2234), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_catch] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_source] = ACTIONS(2234), - [anon_sym_source_DASHenv] = ACTIONS(2234), - [anon_sym_register] = ACTIONS(2234), - [anon_sym_hide] = ACTIONS(2234), - [anon_sym_hide_DASHenv] = ACTIONS(2234), - [anon_sym_overlay] = ACTIONS(2234), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_as] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2240), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2240), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2240), - [aux_sym__val_number_decimal_token3] = ACTIONS(2240), - [aux_sym__val_number_decimal_token4] = ACTIONS(2240), - [aux_sym__val_number_token1] = ACTIONS(2240), - [aux_sym__val_number_token2] = ACTIONS(2240), - [aux_sym__val_number_token3] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2240), - [sym__str_single_quotes] = ACTIONS(2240), - [sym__str_back_ticks] = ACTIONS(2240), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2240), + [881] = { + [sym_comment] = STATE(881), + [anon_sym_STAR_STAR] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_mod] = ACTIONS(3189), + [anon_sym_SLASH_SLASH] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_bit_DASHshl] = ACTIONS(3189), + [anon_sym_bit_DASHshr] = ACTIONS(3189), + [anon_sym_EQ_TILDE] = ACTIONS(3189), + [anon_sym_BANG_TILDE] = ACTIONS(3189), + [anon_sym_bit_DASHand] = ACTIONS(3189), + [anon_sym_bit_DASHxor] = ACTIONS(3189), + [anon_sym_bit_DASHor] = ACTIONS(3189), + [anon_sym_and] = ACTIONS(3189), + [anon_sym_xor] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [anon_sym_in] = ACTIONS(3189), + [anon_sym_not_DASHin] = ACTIONS(3189), + [anon_sym_starts_DASHwith] = ACTIONS(3189), + [anon_sym_ends_DASHwith] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_GT_EQ] = ACTIONS(3189), + [aux_sym_cmd_identifier_token41] = ACTIONS(3193), + [sym__newline] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_err_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_GT_PIPE] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), + [anon_sym_GT2] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_STAR2] = ACTIONS(2214), + [anon_sym_and2] = ACTIONS(2214), + [anon_sym_xor2] = ACTIONS(2214), + [anon_sym_or2] = ACTIONS(2214), + [anon_sym_not_DASHin2] = ACTIONS(2214), + [anon_sym_starts_DASHwith2] = ACTIONS(2214), + [anon_sym_ends_DASHwith2] = ACTIONS(2214), + [anon_sym_EQ_EQ2] = ACTIONS(2214), + [anon_sym_BANG_EQ2] = ACTIONS(2214), + [anon_sym_LT2] = ACTIONS(2214), + [anon_sym_LT_EQ2] = ACTIONS(2214), + [anon_sym_GT_EQ2] = ACTIONS(2214), + [anon_sym_EQ_TILDE2] = ACTIONS(2214), + [anon_sym_BANG_TILDE2] = ACTIONS(2214), + [anon_sym_STAR_STAR2] = ACTIONS(2214), + [anon_sym_PLUS_PLUS2] = ACTIONS(2214), + [anon_sym_SLASH2] = ACTIONS(2214), + [anon_sym_mod2] = ACTIONS(2214), + [anon_sym_SLASH_SLASH2] = ACTIONS(2214), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_bit_DASHshl2] = ACTIONS(2214), + [anon_sym_bit_DASHshr2] = ACTIONS(2214), + [anon_sym_bit_DASHand2] = ACTIONS(2214), + [anon_sym_bit_DASHxor2] = ACTIONS(2214), + [anon_sym_bit_DASHor2] = ACTIONS(2214), + [anon_sym_err_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(3), }, - [708] = { - [sym__match_pattern_expression] = STATE(3083), - [sym__match_pattern_value] = STATE(3079), - [sym__match_pattern_list] = STATE(3092), - [sym__match_pattern_rest] = STATE(7898), - [sym__match_pattern_record] = STATE(3125), - [sym_expr_parenthesized] = STATE(2777), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(2958), - [sym__val_range] = STATE(7864), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(2959), - [sym_val_bool] = STATE(2860), + [882] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(2779), - [sym_val_number] = STATE(2959), - [sym__val_number_decimal] = STATE(2456), - [sym__val_number] = STATE(3029), - [sym_val_duration] = STATE(2959), - [sym_val_filesize] = STATE(2959), - [sym_val_binary] = STATE(2959), - [sym_val_string] = STATE(2959), - [sym__raw_str] = STATE(2953), - [sym__str_double_quotes] = STATE(2953), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7328), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7736), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(2959), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(2882), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(7095), - [sym_comment] = STATE(708), - [aux_sym_shebang_repeat1] = STATE(777), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym__match_pattern_list_repeat1] = STATE(1148), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(2577), - [anon_sym_false] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2579), - [aux_sym_cmd_identifier_token38] = ACTIONS(2581), - [aux_sym_cmd_identifier_token39] = ACTIONS(2581), - [aux_sym_cmd_identifier_token40] = ACTIONS(2581), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_RBRACK] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2589), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_DOT_DOT] = ACTIONS(2597), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2599), - [anon_sym_DOT_DOT_LT] = ACTIONS(2599), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2601), - [aux_sym__val_number_decimal_token2] = ACTIONS(2603), - [aux_sym__val_number_decimal_token3] = ACTIONS(2605), - [aux_sym__val_number_decimal_token4] = ACTIONS(2607), - [aux_sym__val_number_token1] = ACTIONS(2609), - [aux_sym__val_number_token2] = ACTIONS(2609), - [aux_sym__val_number_token3] = ACTIONS(2609), - [anon_sym_0b] = ACTIONS(2611), - [anon_sym_0o] = ACTIONS(2613), - [anon_sym_0x] = ACTIONS(2613), - [sym_val_date] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym__str_single_quotes] = ACTIONS(2619), - [sym__str_back_ticks] = ACTIONS(2619), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2631), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2633), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7185), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(882), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [709] = { - [sym__match_pattern_expression] = STATE(3083), - [sym__match_pattern_value] = STATE(3079), - [sym__match_pattern_list] = STATE(3092), - [sym__match_pattern_rest] = STATE(7898), - [sym__match_pattern_record] = STATE(3125), - [sym_expr_parenthesized] = STATE(2777), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(2958), - [sym__val_range] = STATE(7864), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(2959), - [sym_val_bool] = STATE(2860), + [883] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(2779), - [sym_val_number] = STATE(2959), - [sym__val_number_decimal] = STATE(2456), - [sym__val_number] = STATE(3029), - [sym_val_duration] = STATE(2959), - [sym_val_filesize] = STATE(2959), - [sym_val_binary] = STATE(2959), - [sym_val_string] = STATE(2959), - [sym__raw_str] = STATE(2953), - [sym__str_double_quotes] = STATE(2953), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7352), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7942), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(2959), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(2882), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(7095), - [sym_comment] = STATE(709), - [aux_sym_shebang_repeat1] = STATE(780), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym__match_pattern_list_repeat1] = STATE(1148), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(2577), - [anon_sym_false] = ACTIONS(2577), - [anon_sym_null] = ACTIONS(2579), - [aux_sym_cmd_identifier_token38] = ACTIONS(2581), - [aux_sym_cmd_identifier_token39] = ACTIONS(2581), - [aux_sym_cmd_identifier_token40] = ACTIONS(2581), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_RBRACK] = ACTIONS(2635), - [anon_sym_LPAREN] = ACTIONS(2589), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_DOT_DOT] = ACTIONS(2597), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2599), - [anon_sym_DOT_DOT_LT] = ACTIONS(2599), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2601), - [aux_sym__val_number_decimal_token2] = ACTIONS(2603), - [aux_sym__val_number_decimal_token3] = ACTIONS(2605), - [aux_sym__val_number_decimal_token4] = ACTIONS(2607), - [aux_sym__val_number_token1] = ACTIONS(2609), - [aux_sym__val_number_token2] = ACTIONS(2609), - [aux_sym__val_number_token3] = ACTIONS(2609), - [anon_sym_0b] = ACTIONS(2611), - [anon_sym_0o] = ACTIONS(2613), - [anon_sym_0x] = ACTIONS(2613), - [sym_val_date] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym__str_single_quotes] = ACTIONS(2619), - [sym__str_back_ticks] = ACTIONS(2619), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2631), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2633), - }, - [710] = { - [sym_expr_parenthesized] = STATE(1352), - [sym_val_range] = STATE(1628), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7549), - [sym__value] = STATE(1628), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1412), - [sym_val_variable] = STATE(1346), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1165), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym__flag] = STATE(1628), - [sym_short_flag] = STATE(1673), - [sym_long_flag] = STATE(1673), - [sym_unquoted] = STATE(1408), - [sym__unquoted_with_expr] = STATE(1634), - [sym__unquoted_anonymous_prefix] = STATE(6757), - [sym_comment] = STATE(710), - [aux_sym_ctrl_do_repeat2] = STATE(711), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2639), - [aux_sym_cmd_identifier_token38] = ACTIONS(2641), - [aux_sym_cmd_identifier_token39] = ACTIONS(2641), - [aux_sym_cmd_identifier_token40] = ACTIONS(2641), - [sym__newline] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_err_GT_PIPE] = ACTIONS(2643), - [anon_sym_out_GT_PIPE] = ACTIONS(2643), - [anon_sym_e_GT_PIPE] = ACTIONS(2643), - [anon_sym_o_GT_PIPE] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2643), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [aux_sym__val_number_decimal_token1] = ACTIONS(2661), - [aux_sym__val_number_decimal_token2] = ACTIONS(2663), - [aux_sym__val_number_decimal_token3] = ACTIONS(2665), - [aux_sym__val_number_decimal_token4] = ACTIONS(2667), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), - }, - [711] = { - [sym_expr_parenthesized] = STATE(1352), - [sym_val_range] = STATE(1628), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7549), - [sym__value] = STATE(1628), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1412), - [sym_val_variable] = STATE(1346), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1165), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym__flag] = STATE(1628), - [sym_short_flag] = STATE(1673), - [sym_long_flag] = STATE(1673), - [sym_unquoted] = STATE(1408), - [sym__unquoted_with_expr] = STATE(1634), - [sym__unquoted_anonymous_prefix] = STATE(6757), - [sym_comment] = STATE(711), - [aux_sym_ctrl_do_repeat2] = STATE(716), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2639), - [aux_sym_cmd_identifier_token38] = ACTIONS(2641), - [aux_sym_cmd_identifier_token39] = ACTIONS(2641), - [aux_sym_cmd_identifier_token40] = ACTIONS(2641), - [sym__newline] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_err_GT_PIPE] = ACTIONS(2693), - [anon_sym_out_GT_PIPE] = ACTIONS(2693), - [anon_sym_e_GT_PIPE] = ACTIONS(2693), - [anon_sym_o_GT_PIPE] = ACTIONS(2693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2693), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [aux_sym__val_number_decimal_token1] = ACTIONS(2661), - [aux_sym__val_number_decimal_token2] = ACTIONS(2663), - [aux_sym__val_number_decimal_token3] = ACTIONS(2665), - [aux_sym__val_number_decimal_token4] = ACTIONS(2667), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), - }, - [712] = { - [sym_expr_parenthesized] = STATE(1464), - [sym_val_range] = STATE(1815), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7549), - [sym__value] = STATE(1815), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1412), - [sym_val_variable] = STATE(1346), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1165), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym__flag] = STATE(1815), - [sym_short_flag] = STATE(1673), - [sym_long_flag] = STATE(1673), - [sym_unquoted] = STATE(1555), - [sym__unquoted_with_expr] = STATE(1821), - [sym__unquoted_anonymous_prefix] = STATE(6757), - [sym_comment] = STATE(712), - [aux_sym_shebang_repeat1] = STATE(785), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(719), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2639), - [aux_sym_cmd_identifier_token38] = ACTIONS(2641), - [aux_sym_cmd_identifier_token39] = ACTIONS(2641), - [aux_sym_cmd_identifier_token40] = ACTIONS(2641), - [sym__newline] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym_PIPE] = ACTIONS(2697), - [anon_sym_err_GT_PIPE] = ACTIONS(2697), - [anon_sym_out_GT_PIPE] = ACTIONS(2697), - [anon_sym_e_GT_PIPE] = ACTIONS(2697), - [anon_sym_o_GT_PIPE] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2697), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [aux_sym__val_number_decimal_token1] = ACTIONS(2661), - [aux_sym__val_number_decimal_token2] = ACTIONS(2663), - [aux_sym__val_number_decimal_token3] = ACTIONS(2665), - [aux_sym__val_number_decimal_token4] = ACTIONS(2667), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), - }, - [713] = { - [sym_expr_parenthesized] = STATE(1352), - [sym_val_range] = STATE(1628), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7549), - [sym__value] = STATE(1628), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1412), - [sym_val_variable] = STATE(1346), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1165), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym__flag] = STATE(1628), - [sym_short_flag] = STATE(1673), - [sym_long_flag] = STATE(1673), - [sym_unquoted] = STATE(1408), - [sym__unquoted_with_expr] = STATE(1634), - [sym__unquoted_anonymous_prefix] = STATE(6757), - [sym_comment] = STATE(713), - [aux_sym_ctrl_do_repeat2] = STATE(715), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2639), - [aux_sym_cmd_identifier_token38] = ACTIONS(2641), - [aux_sym_cmd_identifier_token39] = ACTIONS(2641), - [aux_sym_cmd_identifier_token40] = ACTIONS(2641), - [sym__newline] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_err_GT_PIPE] = ACTIONS(2693), - [anon_sym_out_GT_PIPE] = ACTIONS(2693), - [anon_sym_e_GT_PIPE] = ACTIONS(2693), - [anon_sym_o_GT_PIPE] = ACTIONS(2693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2693), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [aux_sym__val_number_decimal_token1] = ACTIONS(2661), - [aux_sym__val_number_decimal_token2] = ACTIONS(2663), - [aux_sym__val_number_decimal_token3] = ACTIONS(2665), - [aux_sym__val_number_decimal_token4] = ACTIONS(2667), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), - }, - [714] = { - [sym_expr_parenthesized] = STATE(1464), - [sym_val_range] = STATE(1815), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7549), - [sym__value] = STATE(1815), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1412), - [sym_val_variable] = STATE(1346), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1165), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym__flag] = STATE(1815), - [sym_short_flag] = STATE(1673), - [sym_long_flag] = STATE(1673), - [sym_unquoted] = STATE(1555), - [sym__unquoted_with_expr] = STATE(1821), - [sym__unquoted_anonymous_prefix] = STATE(6757), - [sym_comment] = STATE(714), - [aux_sym_shebang_repeat1] = STATE(785), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(718), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2639), - [aux_sym_cmd_identifier_token38] = ACTIONS(2641), - [aux_sym_cmd_identifier_token39] = ACTIONS(2641), - [aux_sym_cmd_identifier_token40] = ACTIONS(2641), - [sym__newline] = ACTIONS(2697), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym_PIPE] = ACTIONS(2697), - [anon_sym_err_GT_PIPE] = ACTIONS(2697), - [anon_sym_out_GT_PIPE] = ACTIONS(2697), - [anon_sym_e_GT_PIPE] = ACTIONS(2697), - [anon_sym_o_GT_PIPE] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2697), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [aux_sym__val_number_decimal_token1] = ACTIONS(2661), - [aux_sym__val_number_decimal_token2] = ACTIONS(2663), - [aux_sym__val_number_decimal_token3] = ACTIONS(2665), - [aux_sym__val_number_decimal_token4] = ACTIONS(2667), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), - }, - [715] = { - [sym_expr_parenthesized] = STATE(1352), - [sym_val_range] = STATE(1628), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7549), - [sym__value] = STATE(1628), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1412), - [sym_val_variable] = STATE(1346), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1165), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym__flag] = STATE(1628), - [sym_short_flag] = STATE(1673), - [sym_long_flag] = STATE(1673), - [sym_unquoted] = STATE(1408), - [sym__unquoted_with_expr] = STATE(1634), - [sym__unquoted_anonymous_prefix] = STATE(6757), - [sym_comment] = STATE(715), - [aux_sym_ctrl_do_repeat2] = STATE(716), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2639), - [aux_sym_cmd_identifier_token38] = ACTIONS(2641), - [aux_sym_cmd_identifier_token39] = ACTIONS(2641), - [aux_sym_cmd_identifier_token40] = ACTIONS(2641), - [sym__newline] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_PIPE] = ACTIONS(2699), - [anon_sym_err_GT_PIPE] = ACTIONS(2699), - [anon_sym_out_GT_PIPE] = ACTIONS(2699), - [anon_sym_e_GT_PIPE] = ACTIONS(2699), - [anon_sym_o_GT_PIPE] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [aux_sym__val_number_decimal_token1] = ACTIONS(2661), - [aux_sym__val_number_decimal_token2] = ACTIONS(2663), - [aux_sym__val_number_decimal_token3] = ACTIONS(2665), - [aux_sym__val_number_decimal_token4] = ACTIONS(2667), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), - }, - [716] = { - [sym_expr_parenthesized] = STATE(1352), - [sym_val_range] = STATE(1628), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7549), - [sym__value] = STATE(1628), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1412), - [sym_val_variable] = STATE(1346), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1165), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym__flag] = STATE(1628), - [sym_short_flag] = STATE(1673), - [sym_long_flag] = STATE(1673), - [sym_unquoted] = STATE(1408), - [sym__unquoted_with_expr] = STATE(1634), - [sym__unquoted_anonymous_prefix] = STATE(6757), - [sym_comment] = STATE(716), - [aux_sym_ctrl_do_repeat2] = STATE(716), - [anon_sym_true] = ACTIONS(2701), - [anon_sym_false] = ACTIONS(2701), - [anon_sym_null] = ACTIONS(2704), - [aux_sym_cmd_identifier_token38] = ACTIONS(2707), - [aux_sym_cmd_identifier_token39] = ACTIONS(2707), - [aux_sym_cmd_identifier_token40] = ACTIONS(2707), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_DOLLAR] = ACTIONS(2718), - [anon_sym_DASH_DASH] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_DOT_DOT] = ACTIONS(2730), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2733), - [anon_sym_DOT_DOT_LT] = ACTIONS(2733), - [aux_sym__val_number_decimal_token1] = ACTIONS(2736), - [aux_sym__val_number_decimal_token2] = ACTIONS(2739), - [aux_sym__val_number_decimal_token3] = ACTIONS(2742), - [aux_sym__val_number_decimal_token4] = ACTIONS(2745), - [aux_sym__val_number_token1] = ACTIONS(2748), - [aux_sym__val_number_token2] = ACTIONS(2748), - [aux_sym__val_number_token3] = ACTIONS(2748), - [anon_sym_0b] = ACTIONS(2751), - [anon_sym_0o] = ACTIONS(2754), - [anon_sym_0x] = ACTIONS(2754), - [sym_val_date] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(2760), - [sym__str_single_quotes] = ACTIONS(2763), - [sym__str_back_ticks] = ACTIONS(2763), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2766), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2769), - [anon_sym_err_GT] = ACTIONS(2772), - [anon_sym_out_GT] = ACTIONS(2772), - [anon_sym_e_GT] = ACTIONS(2772), - [anon_sym_o_GT] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT] = ACTIONS(2772), - [anon_sym_err_GT_GT] = ACTIONS(2775), - [anon_sym_out_GT_GT] = ACTIONS(2775), - [anon_sym_e_GT_GT] = ACTIONS(2775), - [anon_sym_o_GT_GT] = ACTIONS(2775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2775), - [aux_sym_unquoted_token1] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2781), - }, - [717] = { - [sym_expr_parenthesized] = STATE(1464), - [sym_val_range] = STATE(1815), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7549), - [sym__value] = STATE(1815), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1412), - [sym_val_variable] = STATE(1346), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1165), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym__flag] = STATE(1815), - [sym_short_flag] = STATE(1673), - [sym_long_flag] = STATE(1673), - [sym_unquoted] = STATE(1555), - [sym__unquoted_with_expr] = STATE(1821), - [sym__unquoted_anonymous_prefix] = STATE(6757), - [sym_comment] = STATE(717), - [aux_sym_shebang_repeat1] = STATE(785), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(712), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2639), - [aux_sym_cmd_identifier_token38] = ACTIONS(2641), - [aux_sym_cmd_identifier_token39] = ACTIONS(2641), - [aux_sym_cmd_identifier_token40] = ACTIONS(2641), - [sym__newline] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_err_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_GT_PIPE] = ACTIONS(2784), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [aux_sym__val_number_decimal_token1] = ACTIONS(2661), - [aux_sym__val_number_decimal_token2] = ACTIONS(2663), - [aux_sym__val_number_decimal_token3] = ACTIONS(2665), - [aux_sym__val_number_decimal_token4] = ACTIONS(2667), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), - }, - [718] = { - [sym_expr_parenthesized] = STATE(1464), - [sym_val_range] = STATE(1815), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7549), - [sym__value] = STATE(1815), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1412), - [sym_val_variable] = STATE(1346), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1165), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym__flag] = STATE(1815), - [sym_short_flag] = STATE(1673), - [sym_long_flag] = STATE(1673), - [sym_unquoted] = STATE(1555), - [sym__unquoted_with_expr] = STATE(1821), - [sym__unquoted_anonymous_prefix] = STATE(6757), - [sym_comment] = STATE(718), - [aux_sym_shebang_repeat1] = STATE(785), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(719), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2639), - [aux_sym_cmd_identifier_token38] = ACTIONS(2641), - [aux_sym_cmd_identifier_token39] = ACTIONS(2641), - [aux_sym_cmd_identifier_token40] = ACTIONS(2641), - [sym__newline] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_err_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_GT_PIPE] = ACTIONS(2786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2786), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [aux_sym__val_number_decimal_token1] = ACTIONS(2661), - [aux_sym__val_number_decimal_token2] = ACTIONS(2663), - [aux_sym__val_number_decimal_token3] = ACTIONS(2665), - [aux_sym__val_number_decimal_token4] = ACTIONS(2667), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), - }, - [719] = { - [sym_expr_parenthesized] = STATE(1464), - [sym_val_range] = STATE(1815), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7549), - [sym__value] = STATE(1815), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1412), - [sym_val_variable] = STATE(1346), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1165), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym__flag] = STATE(1815), - [sym_short_flag] = STATE(1673), - [sym_long_flag] = STATE(1673), - [sym_unquoted] = STATE(1555), - [sym__unquoted_with_expr] = STATE(1821), - [sym__unquoted_anonymous_prefix] = STATE(6757), - [sym_comment] = STATE(719), - [aux_sym_shebang_repeat1] = STATE(785), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(719), - [anon_sym_true] = ACTIONS(2788), - [anon_sym_false] = ACTIONS(2788), - [anon_sym_null] = ACTIONS(2791), - [aux_sym_cmd_identifier_token38] = ACTIONS(2794), - [aux_sym_cmd_identifier_token39] = ACTIONS(2794), - [aux_sym_cmd_identifier_token40] = ACTIONS(2794), - [sym__newline] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_err_GT_PIPE] = ACTIONS(2800), - [anon_sym_out_GT_PIPE] = ACTIONS(2800), - [anon_sym_e_GT_PIPE] = ACTIONS(2800), - [anon_sym_o_GT_PIPE] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_RPAREN] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(2808), - [anon_sym_DASH_DASH] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2817), - [anon_sym_DOT_DOT] = ACTIONS(2820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2823), - [anon_sym_DOT_DOT_LT] = ACTIONS(2823), - [aux_sym__val_number_decimal_token1] = ACTIONS(2826), - [aux_sym__val_number_decimal_token2] = ACTIONS(2829), - [aux_sym__val_number_decimal_token3] = ACTIONS(2832), - [aux_sym__val_number_decimal_token4] = ACTIONS(2835), - [aux_sym__val_number_token1] = ACTIONS(2838), - [aux_sym__val_number_token2] = ACTIONS(2838), - [aux_sym__val_number_token3] = ACTIONS(2838), - [anon_sym_0b] = ACTIONS(2841), - [anon_sym_0o] = ACTIONS(2844), - [anon_sym_0x] = ACTIONS(2844), - [sym_val_date] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2850), - [sym__str_single_quotes] = ACTIONS(2853), - [sym__str_back_ticks] = ACTIONS(2853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2856), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2859), - [anon_sym_err_GT] = ACTIONS(2862), - [anon_sym_out_GT] = ACTIONS(2862), - [anon_sym_e_GT] = ACTIONS(2862), - [anon_sym_o_GT] = ACTIONS(2862), - [anon_sym_err_PLUSout_GT] = ACTIONS(2862), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2862), - [anon_sym_o_PLUSe_GT] = ACTIONS(2862), - [anon_sym_e_PLUSo_GT] = ACTIONS(2862), - [anon_sym_err_GT_GT] = ACTIONS(2865), - [anon_sym_out_GT_GT] = ACTIONS(2865), - [anon_sym_e_GT_GT] = ACTIONS(2865), - [anon_sym_o_GT_GT] = ACTIONS(2865), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2865), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2865), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2865), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2865), - [aux_sym_unquoted_token1] = ACTIONS(2868), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2871), - }, - [720] = { - [sym_expr_parenthesized] = STATE(1425), - [sym_val_range] = STATE(1755), - [sym__val_range] = STATE(7659), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(1755), - [sym_val_nothing] = STATE(1819), - [sym_val_bool] = STATE(1537), - [sym_val_variable] = STATE(1451), - [sym_val_number] = STATE(1819), - [sym__val_number_decimal] = STATE(1185), - [sym__val_number] = STATE(1792), - [sym_val_duration] = STATE(1819), - [sym_val_filesize] = STATE(1819), - [sym_val_binary] = STATE(1819), - [sym_val_string] = STATE(1819), - [sym__raw_str] = STATE(1795), - [sym__str_double_quotes] = STATE(1795), - [sym_val_interpolated] = STATE(1819), - [sym__inter_single_quotes] = STATE(1749), - [sym__inter_double_quotes] = STATE(1750), - [sym_val_list] = STATE(1819), - [sym_val_record] = STATE(1819), - [sym_val_table] = STATE(1819), - [sym_val_closure] = STATE(1819), - [sym__flag] = STATE(1755), - [sym_short_flag] = STATE(1789), - [sym_long_flag] = STATE(1789), - [sym_unquoted] = STATE(1539), - [sym__unquoted_with_expr] = STATE(1793), - [sym__unquoted_anonymous_prefix] = STATE(6858), - [sym_comment] = STATE(720), - [aux_sym_ctrl_do_repeat2] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2699), - [anon_sym_true] = ACTIONS(2874), - [anon_sym_false] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2876), - [aux_sym_cmd_identifier_token38] = ACTIONS(2878), - [aux_sym_cmd_identifier_token39] = ACTIONS(2878), - [aux_sym_cmd_identifier_token40] = ACTIONS(2878), - [sym__newline] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_PIPE] = ACTIONS(2699), - [anon_sym_err_GT_PIPE] = ACTIONS(2699), - [anon_sym_out_GT_PIPE] = ACTIONS(2699), - [anon_sym_e_GT_PIPE] = ACTIONS(2699), - [anon_sym_o_GT_PIPE] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_DOLLAR] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_DOT_DOT] = ACTIONS(2892), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2894), - [anon_sym_DOT_DOT_LT] = ACTIONS(2894), - [aux_sym__val_number_decimal_token1] = ACTIONS(2896), - [aux_sym__val_number_decimal_token2] = ACTIONS(2898), - [aux_sym__val_number_decimal_token3] = ACTIONS(2900), - [aux_sym__val_number_decimal_token4] = ACTIONS(2902), - [aux_sym__val_number_token1] = ACTIONS(2904), - [aux_sym__val_number_token2] = ACTIONS(2904), - [aux_sym__val_number_token3] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2906), - [anon_sym_0o] = ACTIONS(2908), - [anon_sym_0x] = ACTIONS(2908), - [sym_val_date] = ACTIONS(2910), - [anon_sym_DQUOTE] = ACTIONS(2912), - [sym__str_single_quotes] = ACTIONS(2914), - [sym__str_back_ticks] = ACTIONS(2914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2920), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2922), - }, - [721] = { - [sym_expr_parenthesized] = STATE(1425), - [sym_val_range] = STATE(1755), - [sym__val_range] = STATE(7659), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(1755), - [sym_val_nothing] = STATE(1819), - [sym_val_bool] = STATE(1537), - [sym_val_variable] = STATE(1451), - [sym_val_number] = STATE(1819), - [sym__val_number_decimal] = STATE(1185), - [sym__val_number] = STATE(1792), - [sym_val_duration] = STATE(1819), - [sym_val_filesize] = STATE(1819), - [sym_val_binary] = STATE(1819), - [sym_val_string] = STATE(1819), - [sym__raw_str] = STATE(1795), - [sym__str_double_quotes] = STATE(1795), - [sym_val_interpolated] = STATE(1819), - [sym__inter_single_quotes] = STATE(1749), - [sym__inter_double_quotes] = STATE(1750), - [sym_val_list] = STATE(1819), - [sym_val_record] = STATE(1819), - [sym_val_table] = STATE(1819), - [sym_val_closure] = STATE(1819), - [sym__flag] = STATE(1755), - [sym_short_flag] = STATE(1789), - [sym_long_flag] = STATE(1789), - [sym_unquoted] = STATE(1539), - [sym__unquoted_with_expr] = STATE(1793), - [sym__unquoted_anonymous_prefix] = STATE(6858), - [sym_comment] = STATE(721), - [aux_sym_ctrl_do_repeat2] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2693), - [anon_sym_true] = ACTIONS(2874), - [anon_sym_false] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2876), - [aux_sym_cmd_identifier_token38] = ACTIONS(2878), - [aux_sym_cmd_identifier_token39] = ACTIONS(2878), - [aux_sym_cmd_identifier_token40] = ACTIONS(2878), - [sym__newline] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_err_GT_PIPE] = ACTIONS(2693), - [anon_sym_out_GT_PIPE] = ACTIONS(2693), - [anon_sym_e_GT_PIPE] = ACTIONS(2693), - [anon_sym_o_GT_PIPE] = ACTIONS(2693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_DOLLAR] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_DOT_DOT] = ACTIONS(2892), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2894), - [anon_sym_DOT_DOT_LT] = ACTIONS(2894), - [aux_sym__val_number_decimal_token1] = ACTIONS(2896), - [aux_sym__val_number_decimal_token2] = ACTIONS(2898), - [aux_sym__val_number_decimal_token3] = ACTIONS(2900), - [aux_sym__val_number_decimal_token4] = ACTIONS(2902), - [aux_sym__val_number_token1] = ACTIONS(2904), - [aux_sym__val_number_token2] = ACTIONS(2904), - [aux_sym__val_number_token3] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2906), - [anon_sym_0o] = ACTIONS(2908), - [anon_sym_0x] = ACTIONS(2908), - [sym_val_date] = ACTIONS(2910), - [anon_sym_DQUOTE] = ACTIONS(2912), - [sym__str_single_quotes] = ACTIONS(2914), - [sym__str_back_ticks] = ACTIONS(2914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2920), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2922), - }, - [722] = { - [sym_expr_parenthesized] = STATE(1425), - [sym_val_range] = STATE(1755), - [sym__val_range] = STATE(7659), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(1755), - [sym_val_nothing] = STATE(1819), - [sym_val_bool] = STATE(1537), - [sym_val_variable] = STATE(1451), - [sym_val_number] = STATE(1819), - [sym__val_number_decimal] = STATE(1185), - [sym__val_number] = STATE(1792), - [sym_val_duration] = STATE(1819), - [sym_val_filesize] = STATE(1819), - [sym_val_binary] = STATE(1819), - [sym_val_string] = STATE(1819), - [sym__raw_str] = STATE(1795), - [sym__str_double_quotes] = STATE(1795), - [sym_val_interpolated] = STATE(1819), - [sym__inter_single_quotes] = STATE(1749), - [sym__inter_double_quotes] = STATE(1750), - [sym_val_list] = STATE(1819), - [sym_val_record] = STATE(1819), - [sym_val_table] = STATE(1819), - [sym_val_closure] = STATE(1819), - [sym__flag] = STATE(1755), - [sym_short_flag] = STATE(1789), - [sym_long_flag] = STATE(1789), - [sym_unquoted] = STATE(1539), - [sym__unquoted_with_expr] = STATE(1793), - [sym__unquoted_anonymous_prefix] = STATE(6858), - [sym_comment] = STATE(722), - [aux_sym_ctrl_do_repeat2] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2710), - [anon_sym_true] = ACTIONS(2924), - [anon_sym_false] = ACTIONS(2924), - [anon_sym_null] = ACTIONS(2927), - [aux_sym_cmd_identifier_token38] = ACTIONS(2930), - [aux_sym_cmd_identifier_token39] = ACTIONS(2930), - [aux_sym_cmd_identifier_token40] = ACTIONS(2930), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2948), - [anon_sym_DOT_DOT] = ACTIONS(2951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2954), - [anon_sym_DOT_DOT_LT] = ACTIONS(2954), - [aux_sym__val_number_decimal_token1] = ACTIONS(2957), - [aux_sym__val_number_decimal_token2] = ACTIONS(2960), - [aux_sym__val_number_decimal_token3] = ACTIONS(2963), - [aux_sym__val_number_decimal_token4] = ACTIONS(2966), - [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(2972), - [anon_sym_0o] = ACTIONS(2975), - [anon_sym_0x] = ACTIONS(2975), - [sym_val_date] = ACTIONS(2978), - [anon_sym_DQUOTE] = ACTIONS(2981), - [sym__str_single_quotes] = ACTIONS(2984), - [sym__str_back_ticks] = ACTIONS(2984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), - [anon_sym_err_GT] = ACTIONS(2772), - [anon_sym_out_GT] = ACTIONS(2772), - [anon_sym_e_GT] = ACTIONS(2772), - [anon_sym_o_GT] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT] = ACTIONS(2772), - [anon_sym_err_GT_GT] = ACTIONS(2775), - [anon_sym_out_GT_GT] = ACTIONS(2775), - [anon_sym_e_GT_GT] = ACTIONS(2775), - [anon_sym_o_GT_GT] = ACTIONS(2775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2775), - [aux_sym_unquoted_token1] = ACTIONS(2993), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2996), - }, - [723] = { - [sym_expr_parenthesized] = STATE(1425), - [sym_val_range] = STATE(1755), - [sym__val_range] = STATE(7659), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(1755), - [sym_val_nothing] = STATE(1819), - [sym_val_bool] = STATE(1537), - [sym_val_variable] = STATE(1451), - [sym_val_number] = STATE(1819), - [sym__val_number_decimal] = STATE(1185), - [sym__val_number] = STATE(1792), - [sym_val_duration] = STATE(1819), - [sym_val_filesize] = STATE(1819), - [sym_val_binary] = STATE(1819), - [sym_val_string] = STATE(1819), - [sym__raw_str] = STATE(1795), - [sym__str_double_quotes] = STATE(1795), - [sym_val_interpolated] = STATE(1819), - [sym__inter_single_quotes] = STATE(1749), - [sym__inter_double_quotes] = STATE(1750), - [sym_val_list] = STATE(1819), - [sym_val_record] = STATE(1819), - [sym_val_table] = STATE(1819), - [sym_val_closure] = STATE(1819), - [sym__flag] = STATE(1755), - [sym_short_flag] = STATE(1789), - [sym_long_flag] = STATE(1789), - [sym_unquoted] = STATE(1539), - [sym__unquoted_with_expr] = STATE(1793), - [sym__unquoted_anonymous_prefix] = STATE(6858), - [sym_comment] = STATE(723), - [aux_sym_ctrl_do_repeat2] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(2693), - [anon_sym_true] = ACTIONS(2874), - [anon_sym_false] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2876), - [aux_sym_cmd_identifier_token38] = ACTIONS(2878), - [aux_sym_cmd_identifier_token39] = ACTIONS(2878), - [aux_sym_cmd_identifier_token40] = ACTIONS(2878), - [sym__newline] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_err_GT_PIPE] = ACTIONS(2693), - [anon_sym_out_GT_PIPE] = ACTIONS(2693), - [anon_sym_e_GT_PIPE] = ACTIONS(2693), - [anon_sym_o_GT_PIPE] = ACTIONS(2693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_DOLLAR] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_DOT_DOT] = ACTIONS(2892), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2894), - [anon_sym_DOT_DOT_LT] = ACTIONS(2894), - [aux_sym__val_number_decimal_token1] = ACTIONS(2896), - [aux_sym__val_number_decimal_token2] = ACTIONS(2898), - [aux_sym__val_number_decimal_token3] = ACTIONS(2900), - [aux_sym__val_number_decimal_token4] = ACTIONS(2902), - [aux_sym__val_number_token1] = ACTIONS(2904), - [aux_sym__val_number_token2] = ACTIONS(2904), - [aux_sym__val_number_token3] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2906), - [anon_sym_0o] = ACTIONS(2908), - [anon_sym_0x] = ACTIONS(2908), - [sym_val_date] = ACTIONS(2910), - [anon_sym_DQUOTE] = ACTIONS(2912), - [sym__str_single_quotes] = ACTIONS(2914), - [sym__str_back_ticks] = ACTIONS(2914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2920), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2922), - }, - [724] = { - [sym_expr_parenthesized] = STATE(1425), - [sym_val_range] = STATE(1755), - [sym__val_range] = STATE(7659), - [sym__val_range_with_end] = STATE(7482), - [sym__value] = STATE(1755), - [sym_val_nothing] = STATE(1819), - [sym_val_bool] = STATE(1537), - [sym_val_variable] = STATE(1451), - [sym_val_number] = STATE(1819), - [sym__val_number_decimal] = STATE(1185), - [sym__val_number] = STATE(1792), - [sym_val_duration] = STATE(1819), - [sym_val_filesize] = STATE(1819), - [sym_val_binary] = STATE(1819), - [sym_val_string] = STATE(1819), - [sym__raw_str] = STATE(1795), - [sym__str_double_quotes] = STATE(1795), - [sym_val_interpolated] = STATE(1819), - [sym__inter_single_quotes] = STATE(1749), - [sym__inter_double_quotes] = STATE(1750), - [sym_val_list] = STATE(1819), - [sym_val_record] = STATE(1819), - [sym_val_table] = STATE(1819), - [sym_val_closure] = STATE(1819), - [sym__flag] = STATE(1755), - [sym_short_flag] = STATE(1789), - [sym_long_flag] = STATE(1789), - [sym_unquoted] = STATE(1539), - [sym__unquoted_with_expr] = STATE(1793), - [sym__unquoted_anonymous_prefix] = STATE(6858), - [sym_comment] = STATE(724), - [aux_sym_ctrl_do_repeat2] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(2643), - [anon_sym_true] = ACTIONS(2874), - [anon_sym_false] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2876), - [aux_sym_cmd_identifier_token38] = ACTIONS(2878), - [aux_sym_cmd_identifier_token39] = ACTIONS(2878), - [aux_sym_cmd_identifier_token40] = ACTIONS(2878), - [sym__newline] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_err_GT_PIPE] = ACTIONS(2643), - [anon_sym_out_GT_PIPE] = ACTIONS(2643), - [anon_sym_e_GT_PIPE] = ACTIONS(2643), - [anon_sym_o_GT_PIPE] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_DOLLAR] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_DOT_DOT] = ACTIONS(2892), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2894), - [anon_sym_DOT_DOT_LT] = ACTIONS(2894), - [aux_sym__val_number_decimal_token1] = ACTIONS(2896), - [aux_sym__val_number_decimal_token2] = ACTIONS(2898), - [aux_sym__val_number_decimal_token3] = ACTIONS(2900), - [aux_sym__val_number_decimal_token4] = ACTIONS(2902), - [aux_sym__val_number_token1] = ACTIONS(2904), - [aux_sym__val_number_token2] = ACTIONS(2904), - [aux_sym__val_number_token3] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2906), - [anon_sym_0o] = ACTIONS(2908), - [anon_sym_0x] = ACTIONS(2908), - [sym_val_date] = ACTIONS(2910), - [anon_sym_DQUOTE] = ACTIONS(2912), - [sym__str_single_quotes] = ACTIONS(2914), - [sym__str_back_ticks] = ACTIONS(2914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2920), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2922), - }, - [725] = { - [aux_sym__pipe_separator] = STATE(725), - [sym_comment] = STATE(725), - [aux_sym_shebang_repeat1] = STATE(5265), - [aux_sym_cmd_identifier_token1] = ACTIONS(2999), - [aux_sym_cmd_identifier_token2] = ACTIONS(3001), - [aux_sym_cmd_identifier_token3] = ACTIONS(3001), - [aux_sym_cmd_identifier_token4] = ACTIONS(3001), - [aux_sym_cmd_identifier_token5] = ACTIONS(3001), - [aux_sym_cmd_identifier_token6] = ACTIONS(3001), - [aux_sym_cmd_identifier_token7] = ACTIONS(3001), - [aux_sym_cmd_identifier_token8] = ACTIONS(3001), - [aux_sym_cmd_identifier_token9] = ACTIONS(2999), - [aux_sym_cmd_identifier_token10] = ACTIONS(3001), - [aux_sym_cmd_identifier_token11] = ACTIONS(3001), - [aux_sym_cmd_identifier_token12] = ACTIONS(3001), - [aux_sym_cmd_identifier_token13] = ACTIONS(2999), - [aux_sym_cmd_identifier_token14] = ACTIONS(3001), - [aux_sym_cmd_identifier_token15] = ACTIONS(2999), - [aux_sym_cmd_identifier_token16] = ACTIONS(3001), - [aux_sym_cmd_identifier_token17] = ACTIONS(3001), - [aux_sym_cmd_identifier_token18] = ACTIONS(3001), - [aux_sym_cmd_identifier_token19] = ACTIONS(3001), - [aux_sym_cmd_identifier_token20] = ACTIONS(3001), - [aux_sym_cmd_identifier_token21] = ACTIONS(3001), - [aux_sym_cmd_identifier_token22] = ACTIONS(2999), - [aux_sym_cmd_identifier_token23] = ACTIONS(2999), - [aux_sym_cmd_identifier_token24] = ACTIONS(3001), - [aux_sym_cmd_identifier_token25] = ACTIONS(2999), - [aux_sym_cmd_identifier_token26] = ACTIONS(3001), - [aux_sym_cmd_identifier_token27] = ACTIONS(2999), - [aux_sym_cmd_identifier_token28] = ACTIONS(2999), - [aux_sym_cmd_identifier_token29] = ACTIONS(2999), - [aux_sym_cmd_identifier_token30] = ACTIONS(2999), - [aux_sym_cmd_identifier_token31] = ACTIONS(3001), - [aux_sym_cmd_identifier_token32] = ACTIONS(3001), - [aux_sym_cmd_identifier_token33] = ACTIONS(3001), - [aux_sym_cmd_identifier_token34] = ACTIONS(3001), - [aux_sym_cmd_identifier_token35] = ACTIONS(3001), - [aux_sym_cmd_identifier_token36] = ACTIONS(2999), - [anon_sym_true] = ACTIONS(3001), - [anon_sym_false] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3001), - [aux_sym_cmd_identifier_token38] = ACTIONS(2999), - [aux_sym_cmd_identifier_token39] = ACTIONS(3001), - [aux_sym_cmd_identifier_token40] = ACTIONS(3001), - [sym__newline] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_err_GT_PIPE] = ACTIONS(3006), - [anon_sym_out_GT_PIPE] = ACTIONS(3006), - [anon_sym_e_GT_PIPE] = ACTIONS(3006), - [anon_sym_o_GT_PIPE] = ACTIONS(3006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(2999), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_do] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_match] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_DOT_DOT] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_where] = ACTIONS(3001), - [aux_sym_expr_unary_token1] = ACTIONS(3001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3001), - [anon_sym_DOT_DOT_LT] = ACTIONS(3001), - [aux_sym__val_number_decimal_token1] = ACTIONS(2999), - [aux_sym__val_number_decimal_token2] = ACTIONS(3001), - [aux_sym__val_number_decimal_token3] = ACTIONS(3001), - [aux_sym__val_number_decimal_token4] = ACTIONS(3001), - [aux_sym__val_number_token1] = ACTIONS(3001), - [aux_sym__val_number_token2] = ACTIONS(3001), - [aux_sym__val_number_token3] = ACTIONS(3001), - [anon_sym_0b] = ACTIONS(2999), - [anon_sym_0o] = ACTIONS(2999), - [anon_sym_0x] = ACTIONS(2999), - [sym_val_date] = ACTIONS(3001), - [anon_sym_DQUOTE] = ACTIONS(3001), - [sym__str_single_quotes] = ACTIONS(3001), - [sym__str_back_ticks] = ACTIONS(3001), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), - [aux_sym_env_var_token1] = ACTIONS(2999), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3001), - }, - [726] = { - [aux_sym__pipe_separator] = STATE(725), - [sym_comment] = STATE(726), - [aux_sym_shebang_repeat1] = STATE(728), - [aux_sym_cmd_identifier_token1] = ACTIONS(3009), - [aux_sym_cmd_identifier_token2] = ACTIONS(3011), - [aux_sym_cmd_identifier_token3] = ACTIONS(3011), - [aux_sym_cmd_identifier_token4] = ACTIONS(3011), - [aux_sym_cmd_identifier_token5] = ACTIONS(3011), - [aux_sym_cmd_identifier_token6] = ACTIONS(3011), - [aux_sym_cmd_identifier_token7] = ACTIONS(3011), - [aux_sym_cmd_identifier_token8] = ACTIONS(3011), - [aux_sym_cmd_identifier_token9] = ACTIONS(3009), - [aux_sym_cmd_identifier_token10] = ACTIONS(3011), - [aux_sym_cmd_identifier_token11] = ACTIONS(3011), - [aux_sym_cmd_identifier_token12] = ACTIONS(3011), - [aux_sym_cmd_identifier_token13] = ACTIONS(3009), - [aux_sym_cmd_identifier_token14] = ACTIONS(3011), - [aux_sym_cmd_identifier_token15] = ACTIONS(3009), - [aux_sym_cmd_identifier_token16] = ACTIONS(3011), - [aux_sym_cmd_identifier_token17] = ACTIONS(3011), - [aux_sym_cmd_identifier_token18] = ACTIONS(3011), - [aux_sym_cmd_identifier_token19] = ACTIONS(3011), - [aux_sym_cmd_identifier_token20] = ACTIONS(3011), - [aux_sym_cmd_identifier_token21] = ACTIONS(3011), - [aux_sym_cmd_identifier_token22] = ACTIONS(3009), - [aux_sym_cmd_identifier_token23] = ACTIONS(3009), - [aux_sym_cmd_identifier_token24] = ACTIONS(3011), - [aux_sym_cmd_identifier_token25] = ACTIONS(3009), - [aux_sym_cmd_identifier_token26] = ACTIONS(3011), - [aux_sym_cmd_identifier_token27] = ACTIONS(3009), - [aux_sym_cmd_identifier_token28] = ACTIONS(3009), - [aux_sym_cmd_identifier_token29] = ACTIONS(3009), - [aux_sym_cmd_identifier_token30] = ACTIONS(3009), - [aux_sym_cmd_identifier_token31] = ACTIONS(3011), - [aux_sym_cmd_identifier_token32] = ACTIONS(3011), - [aux_sym_cmd_identifier_token33] = ACTIONS(3011), - [aux_sym_cmd_identifier_token34] = ACTIONS(3011), - [aux_sym_cmd_identifier_token35] = ACTIONS(3011), - [aux_sym_cmd_identifier_token36] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [anon_sym_null] = ACTIONS(3011), - [aux_sym_cmd_identifier_token38] = ACTIONS(3009), - [aux_sym_cmd_identifier_token39] = ACTIONS(3011), - [aux_sym_cmd_identifier_token40] = ACTIONS(3011), - [sym__newline] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_err_GT_PIPE] = ACTIONS(3015), - [anon_sym_out_GT_PIPE] = ACTIONS(3015), - [anon_sym_e_GT_PIPE] = ACTIONS(3015), - [anon_sym_o_GT_PIPE] = ACTIONS(3015), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3015), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3015), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3015), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym_DOLLAR] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_break] = ACTIONS(3009), - [anon_sym_continue] = ACTIONS(3009), - [anon_sym_do] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3009), - [anon_sym_try] = ACTIONS(3009), - [anon_sym_return] = ACTIONS(3009), - [anon_sym_where] = ACTIONS(3011), - [aux_sym_expr_unary_token1] = ACTIONS(3011), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3011), - [anon_sym_DOT_DOT_LT] = ACTIONS(3011), - [aux_sym__val_number_decimal_token1] = ACTIONS(3009), - [aux_sym__val_number_decimal_token2] = ACTIONS(3011), - [aux_sym__val_number_decimal_token3] = ACTIONS(3011), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(3011), - [aux_sym__val_number_token2] = ACTIONS(3011), - [aux_sym__val_number_token3] = ACTIONS(3011), - [anon_sym_0b] = ACTIONS(3009), - [anon_sym_0o] = ACTIONS(3009), - [anon_sym_0x] = ACTIONS(3009), - [sym_val_date] = ACTIONS(3011), - [anon_sym_DQUOTE] = ACTIONS(3011), - [sym__str_single_quotes] = ACTIONS(3011), - [sym__str_back_ticks] = ACTIONS(3011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3011), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3011), - [aux_sym_env_var_token1] = ACTIONS(3009), - [anon_sym_CARET] = ACTIONS(3011), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3011), - }, - [727] = { - [aux_sym__pipe_separator] = STATE(725), - [sym_comment] = STATE(727), - [aux_sym_shebang_repeat1] = STATE(5265), - [aux_sym_cmd_identifier_token1] = ACTIONS(3017), - [aux_sym_cmd_identifier_token2] = ACTIONS(3019), - [aux_sym_cmd_identifier_token3] = ACTIONS(3019), - [aux_sym_cmd_identifier_token4] = ACTIONS(3019), - [aux_sym_cmd_identifier_token5] = ACTIONS(3019), - [aux_sym_cmd_identifier_token6] = ACTIONS(3019), - [aux_sym_cmd_identifier_token7] = ACTIONS(3019), - [aux_sym_cmd_identifier_token8] = ACTIONS(3019), - [aux_sym_cmd_identifier_token9] = ACTIONS(3017), - [aux_sym_cmd_identifier_token10] = ACTIONS(3019), - [aux_sym_cmd_identifier_token11] = ACTIONS(3019), - [aux_sym_cmd_identifier_token12] = ACTIONS(3019), - [aux_sym_cmd_identifier_token13] = ACTIONS(3017), - [aux_sym_cmd_identifier_token14] = ACTIONS(3019), - [aux_sym_cmd_identifier_token15] = ACTIONS(3017), - [aux_sym_cmd_identifier_token16] = ACTIONS(3019), - [aux_sym_cmd_identifier_token17] = ACTIONS(3019), - [aux_sym_cmd_identifier_token18] = ACTIONS(3019), - [aux_sym_cmd_identifier_token19] = ACTIONS(3019), - [aux_sym_cmd_identifier_token20] = ACTIONS(3019), - [aux_sym_cmd_identifier_token21] = ACTIONS(3019), - [aux_sym_cmd_identifier_token22] = ACTIONS(3017), - [aux_sym_cmd_identifier_token23] = ACTIONS(3017), - [aux_sym_cmd_identifier_token24] = ACTIONS(3019), - [aux_sym_cmd_identifier_token25] = ACTIONS(3017), - [aux_sym_cmd_identifier_token26] = ACTIONS(3019), - [aux_sym_cmd_identifier_token27] = ACTIONS(3017), - [aux_sym_cmd_identifier_token28] = ACTIONS(3017), - [aux_sym_cmd_identifier_token29] = ACTIONS(3017), - [aux_sym_cmd_identifier_token30] = ACTIONS(3017), - [aux_sym_cmd_identifier_token31] = ACTIONS(3019), - [aux_sym_cmd_identifier_token32] = ACTIONS(3019), - [aux_sym_cmd_identifier_token33] = ACTIONS(3019), - [aux_sym_cmd_identifier_token34] = ACTIONS(3019), - [aux_sym_cmd_identifier_token35] = ACTIONS(3019), - [aux_sym_cmd_identifier_token36] = ACTIONS(3017), - [anon_sym_true] = ACTIONS(3019), - [anon_sym_false] = ACTIONS(3019), - [anon_sym_null] = ACTIONS(3019), - [aux_sym_cmd_identifier_token38] = ACTIONS(3017), - [aux_sym_cmd_identifier_token39] = ACTIONS(3019), - [aux_sym_cmd_identifier_token40] = ACTIONS(3019), - [sym__newline] = ACTIONS(3021), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_err_GT_PIPE] = ACTIONS(3015), - [anon_sym_out_GT_PIPE] = ACTIONS(3015), - [anon_sym_e_GT_PIPE] = ACTIONS(3015), - [anon_sym_o_GT_PIPE] = ACTIONS(3015), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3015), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3015), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3015), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_break] = ACTIONS(3017), - [anon_sym_continue] = ACTIONS(3017), - [anon_sym_do] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_DOT_DOT] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_where] = ACTIONS(3019), - [aux_sym_expr_unary_token1] = ACTIONS(3019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3019), - [anon_sym_DOT_DOT_LT] = ACTIONS(3019), - [aux_sym__val_number_decimal_token1] = ACTIONS(3017), - [aux_sym__val_number_decimal_token2] = ACTIONS(3019), - [aux_sym__val_number_decimal_token3] = ACTIONS(3019), - [aux_sym__val_number_decimal_token4] = ACTIONS(3019), - [aux_sym__val_number_token1] = ACTIONS(3019), - [aux_sym__val_number_token2] = ACTIONS(3019), - [aux_sym__val_number_token3] = ACTIONS(3019), - [anon_sym_0b] = ACTIONS(3017), - [anon_sym_0o] = ACTIONS(3017), - [anon_sym_0x] = ACTIONS(3017), - [sym_val_date] = ACTIONS(3019), - [anon_sym_DQUOTE] = ACTIONS(3019), - [sym__str_single_quotes] = ACTIONS(3019), - [sym__str_back_ticks] = ACTIONS(3019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), - [aux_sym_env_var_token1] = ACTIONS(3017), - [anon_sym_CARET] = ACTIONS(3019), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3019), - }, - [728] = { - [sym_comment] = STATE(728), - [aux_sym_shebang_repeat1] = STATE(729), - [aux_sym_cmd_identifier_token1] = ACTIONS(3023), - [aux_sym_cmd_identifier_token2] = ACTIONS(3025), - [aux_sym_cmd_identifier_token3] = ACTIONS(3025), - [aux_sym_cmd_identifier_token4] = ACTIONS(3025), - [aux_sym_cmd_identifier_token5] = ACTIONS(3025), - [aux_sym_cmd_identifier_token6] = ACTIONS(3025), - [aux_sym_cmd_identifier_token7] = ACTIONS(3025), - [aux_sym_cmd_identifier_token8] = ACTIONS(3025), - [aux_sym_cmd_identifier_token9] = ACTIONS(3023), - [aux_sym_cmd_identifier_token10] = ACTIONS(3025), - [aux_sym_cmd_identifier_token11] = ACTIONS(3025), - [aux_sym_cmd_identifier_token12] = ACTIONS(3025), - [aux_sym_cmd_identifier_token13] = ACTIONS(3023), - [aux_sym_cmd_identifier_token14] = ACTIONS(3025), - [aux_sym_cmd_identifier_token15] = ACTIONS(3023), - [aux_sym_cmd_identifier_token16] = ACTIONS(3025), - [aux_sym_cmd_identifier_token17] = ACTIONS(3025), - [aux_sym_cmd_identifier_token18] = ACTIONS(3025), - [aux_sym_cmd_identifier_token19] = ACTIONS(3025), - [aux_sym_cmd_identifier_token20] = ACTIONS(3025), - [aux_sym_cmd_identifier_token21] = ACTIONS(3025), - [aux_sym_cmd_identifier_token22] = ACTIONS(3023), - [aux_sym_cmd_identifier_token23] = ACTIONS(3023), - [aux_sym_cmd_identifier_token24] = ACTIONS(3025), - [aux_sym_cmd_identifier_token25] = ACTIONS(3023), - [aux_sym_cmd_identifier_token26] = ACTIONS(3025), - [aux_sym_cmd_identifier_token27] = ACTIONS(3023), - [aux_sym_cmd_identifier_token28] = ACTIONS(3023), - [aux_sym_cmd_identifier_token29] = ACTIONS(3023), - [aux_sym_cmd_identifier_token30] = ACTIONS(3023), - [aux_sym_cmd_identifier_token31] = ACTIONS(3025), - [aux_sym_cmd_identifier_token32] = ACTIONS(3025), - [aux_sym_cmd_identifier_token33] = ACTIONS(3025), - [aux_sym_cmd_identifier_token34] = ACTIONS(3025), - [aux_sym_cmd_identifier_token35] = ACTIONS(3025), - [aux_sym_cmd_identifier_token36] = ACTIONS(3023), - [anon_sym_true] = ACTIONS(3025), - [anon_sym_false] = ACTIONS(3025), - [anon_sym_null] = ACTIONS(3025), - [aux_sym_cmd_identifier_token38] = ACTIONS(3023), - [aux_sym_cmd_identifier_token39] = ACTIONS(3025), - [aux_sym_cmd_identifier_token40] = ACTIONS(3025), - [sym__newline] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3027), - [anon_sym_err_GT_PIPE] = ACTIONS(3027), - [anon_sym_out_GT_PIPE] = ACTIONS(3027), - [anon_sym_e_GT_PIPE] = ACTIONS(3027), - [anon_sym_o_GT_PIPE] = ACTIONS(3027), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3027), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3027), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3027), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_do] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_match] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_DOT_DOT] = ACTIONS(3023), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_where] = ACTIONS(3025), - [aux_sym_expr_unary_token1] = ACTIONS(3025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3025), - [anon_sym_DOT_DOT_LT] = ACTIONS(3025), - [aux_sym__val_number_decimal_token1] = ACTIONS(3023), - [aux_sym__val_number_decimal_token2] = ACTIONS(3025), - [aux_sym__val_number_decimal_token3] = ACTIONS(3025), - [aux_sym__val_number_decimal_token4] = ACTIONS(3025), - [aux_sym__val_number_token1] = ACTIONS(3025), - [aux_sym__val_number_token2] = ACTIONS(3025), - [aux_sym__val_number_token3] = ACTIONS(3025), - [anon_sym_0b] = ACTIONS(3023), - [anon_sym_0o] = ACTIONS(3023), - [anon_sym_0x] = ACTIONS(3023), - [sym_val_date] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym__str_single_quotes] = ACTIONS(3025), - [sym__str_back_ticks] = ACTIONS(3025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), - [aux_sym_env_var_token1] = ACTIONS(3023), - [anon_sym_CARET] = ACTIONS(3025), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3025), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7154), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(883), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [729] = { - [sym_comment] = STATE(729), - [aux_sym_shebang_repeat1] = STATE(729), - [aux_sym_cmd_identifier_token1] = ACTIONS(1349), - [aux_sym_cmd_identifier_token2] = ACTIONS(1351), - [aux_sym_cmd_identifier_token3] = ACTIONS(1351), - [aux_sym_cmd_identifier_token4] = ACTIONS(1351), - [aux_sym_cmd_identifier_token5] = ACTIONS(1351), - [aux_sym_cmd_identifier_token6] = ACTIONS(1351), - [aux_sym_cmd_identifier_token7] = ACTIONS(1351), - [aux_sym_cmd_identifier_token8] = ACTIONS(1351), - [aux_sym_cmd_identifier_token9] = ACTIONS(1349), - [aux_sym_cmd_identifier_token10] = ACTIONS(1351), - [aux_sym_cmd_identifier_token11] = ACTIONS(1351), - [aux_sym_cmd_identifier_token12] = ACTIONS(1351), - [aux_sym_cmd_identifier_token13] = ACTIONS(1349), - [aux_sym_cmd_identifier_token14] = ACTIONS(1351), - [aux_sym_cmd_identifier_token15] = ACTIONS(1349), - [aux_sym_cmd_identifier_token16] = ACTIONS(1351), - [aux_sym_cmd_identifier_token17] = ACTIONS(1351), - [aux_sym_cmd_identifier_token18] = ACTIONS(1351), - [aux_sym_cmd_identifier_token19] = ACTIONS(1351), - [aux_sym_cmd_identifier_token20] = ACTIONS(1351), - [aux_sym_cmd_identifier_token21] = ACTIONS(1351), - [aux_sym_cmd_identifier_token22] = ACTIONS(1349), - [aux_sym_cmd_identifier_token23] = ACTIONS(1349), - [aux_sym_cmd_identifier_token24] = ACTIONS(1351), - [aux_sym_cmd_identifier_token25] = ACTIONS(1349), - [aux_sym_cmd_identifier_token26] = ACTIONS(1351), - [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(1351), - [aux_sym_cmd_identifier_token32] = ACTIONS(1351), - [aux_sym_cmd_identifier_token33] = ACTIONS(1351), - [aux_sym_cmd_identifier_token34] = ACTIONS(1351), - [aux_sym_cmd_identifier_token35] = ACTIONS(1351), - [aux_sym_cmd_identifier_token36] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(1351), - [anon_sym_false] = ACTIONS(1351), - [anon_sym_null] = ACTIONS(1351), - [aux_sym_cmd_identifier_token38] = ACTIONS(1349), - [aux_sym_cmd_identifier_token39] = ACTIONS(1351), - [aux_sym_cmd_identifier_token40] = ACTIONS(1351), - [sym__newline] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_err_GT_PIPE] = ACTIONS(1351), - [anon_sym_out_GT_PIPE] = ACTIONS(1351), - [anon_sym_e_GT_PIPE] = ACTIONS(1351), - [anon_sym_o_GT_PIPE] = ACTIONS(1351), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1351), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1351), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1351), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_DOLLAR] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_do] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_match] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_try] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_where] = ACTIONS(1351), - [aux_sym_expr_unary_token1] = ACTIONS(1351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), - [anon_sym_DOT_DOT_LT] = ACTIONS(1351), - [aux_sym__val_number_decimal_token1] = ACTIONS(1349), - [aux_sym__val_number_decimal_token2] = ACTIONS(1351), - [aux_sym__val_number_decimal_token3] = ACTIONS(1351), - [aux_sym__val_number_decimal_token4] = ACTIONS(1351), - [aux_sym__val_number_token1] = ACTIONS(1351), - [aux_sym__val_number_token2] = ACTIONS(1351), - [aux_sym__val_number_token3] = ACTIONS(1351), - [anon_sym_0b] = ACTIONS(1349), - [anon_sym_0o] = ACTIONS(1349), - [anon_sym_0x] = ACTIONS(1349), - [sym_val_date] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [sym__str_single_quotes] = ACTIONS(1351), - [sym__str_back_ticks] = ACTIONS(1351), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1351), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1351), - [aux_sym_env_var_token1] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1351), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1351), + [884] = { + [sym_comment] = STATE(884), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [sym__newline] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_err_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_GT_PIPE] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), + [anon_sym_GT2] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_STAR2] = ACTIONS(2214), + [anon_sym_and2] = ACTIONS(2214), + [anon_sym_xor2] = ACTIONS(2214), + [anon_sym_or2] = ACTIONS(2214), + [anon_sym_not_DASHin2] = ACTIONS(2214), + [anon_sym_starts_DASHwith2] = ACTIONS(2214), + [anon_sym_ends_DASHwith2] = ACTIONS(2214), + [anon_sym_EQ_EQ2] = ACTIONS(2214), + [anon_sym_BANG_EQ2] = ACTIONS(2214), + [anon_sym_LT2] = ACTIONS(2214), + [anon_sym_LT_EQ2] = ACTIONS(2214), + [anon_sym_GT_EQ2] = ACTIONS(2214), + [anon_sym_EQ_TILDE2] = ACTIONS(2214), + [anon_sym_BANG_TILDE2] = ACTIONS(2214), + [anon_sym_STAR_STAR2] = ACTIONS(2214), + [anon_sym_PLUS_PLUS2] = ACTIONS(2214), + [anon_sym_SLASH2] = ACTIONS(2214), + [anon_sym_mod2] = ACTIONS(2214), + [anon_sym_SLASH_SLASH2] = ACTIONS(2214), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_bit_DASHshl2] = ACTIONS(2214), + [anon_sym_bit_DASHshr2] = ACTIONS(2214), + [anon_sym_bit_DASHand2] = ACTIONS(2214), + [anon_sym_bit_DASHxor2] = ACTIONS(2214), + [anon_sym_bit_DASHor2] = ACTIONS(2214), + [anon_sym_err_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(3), }, - [730] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [885] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7267), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7884), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(730), - [aux_sym_shebang_repeat1] = STATE(770), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7295), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(885), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [731] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [886] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7129), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7942), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(731), - [aux_sym_shebang_repeat1] = STATE(760), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7097), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(886), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [732] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [887] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(6921), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7716), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(732), - [aux_sym_shebang_repeat1] = STATE(761), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_RBRACK] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7303), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(887), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [733] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [888] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(6921), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7719), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(733), - [aux_sym_shebang_repeat1] = STATE(761), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_RBRACK] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), - }, - [734] = { - [sym_comment] = STATE(734), - [aux_sym_cmd_identifier_token1] = ACTIONS(3084), - [aux_sym_cmd_identifier_token2] = ACTIONS(3086), - [aux_sym_cmd_identifier_token3] = ACTIONS(3086), - [aux_sym_cmd_identifier_token4] = ACTIONS(3086), - [aux_sym_cmd_identifier_token5] = ACTIONS(3086), - [aux_sym_cmd_identifier_token6] = ACTIONS(3086), - [aux_sym_cmd_identifier_token7] = ACTIONS(3086), - [aux_sym_cmd_identifier_token8] = ACTIONS(3086), - [aux_sym_cmd_identifier_token9] = ACTIONS(3084), - [aux_sym_cmd_identifier_token10] = ACTIONS(3086), - [aux_sym_cmd_identifier_token11] = ACTIONS(3086), - [aux_sym_cmd_identifier_token12] = ACTIONS(3086), - [aux_sym_cmd_identifier_token13] = ACTIONS(3084), - [aux_sym_cmd_identifier_token14] = ACTIONS(3086), - [aux_sym_cmd_identifier_token15] = ACTIONS(3084), - [aux_sym_cmd_identifier_token16] = ACTIONS(3086), - [aux_sym_cmd_identifier_token17] = ACTIONS(3086), - [aux_sym_cmd_identifier_token18] = ACTIONS(3086), - [aux_sym_cmd_identifier_token19] = ACTIONS(3086), - [aux_sym_cmd_identifier_token20] = ACTIONS(3086), - [aux_sym_cmd_identifier_token21] = ACTIONS(3086), - [aux_sym_cmd_identifier_token22] = ACTIONS(3084), - [aux_sym_cmd_identifier_token23] = ACTIONS(3084), - [aux_sym_cmd_identifier_token24] = ACTIONS(3086), - [aux_sym_cmd_identifier_token25] = ACTIONS(3084), - [aux_sym_cmd_identifier_token26] = ACTIONS(3086), - [aux_sym_cmd_identifier_token27] = ACTIONS(3084), - [aux_sym_cmd_identifier_token28] = ACTIONS(3084), - [aux_sym_cmd_identifier_token29] = ACTIONS(3084), - [aux_sym_cmd_identifier_token30] = ACTIONS(3084), - [aux_sym_cmd_identifier_token31] = ACTIONS(3086), - [aux_sym_cmd_identifier_token32] = ACTIONS(3086), - [aux_sym_cmd_identifier_token33] = ACTIONS(3086), - [aux_sym_cmd_identifier_token34] = ACTIONS(3086), - [aux_sym_cmd_identifier_token35] = ACTIONS(3086), - [aux_sym_cmd_identifier_token36] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3086), - [anon_sym_false] = ACTIONS(3086), - [anon_sym_null] = ACTIONS(3086), - [aux_sym_cmd_identifier_token38] = ACTIONS(3084), - [aux_sym_cmd_identifier_token39] = ACTIONS(3086), - [aux_sym_cmd_identifier_token40] = ACTIONS(3086), - [sym__newline] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_err_GT_PIPE] = ACTIONS(3086), - [anon_sym_out_GT_PIPE] = ACTIONS(3086), - [anon_sym_e_GT_PIPE] = ACTIONS(3086), - [anon_sym_o_GT_PIPE] = ACTIONS(3086), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3086), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3086), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3086), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_DOLLAR] = ACTIONS(3084), - [anon_sym_DASH] = ACTIONS(3084), - [anon_sym_break] = ACTIONS(3084), - [anon_sym_continue] = ACTIONS(3084), - [anon_sym_do] = ACTIONS(3084), - [anon_sym_if] = ACTIONS(3084), - [anon_sym_match] = ACTIONS(3084), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_DOT_DOT] = ACTIONS(3084), - [anon_sym_try] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3084), - [anon_sym_where] = ACTIONS(3086), - [aux_sym_expr_unary_token1] = ACTIONS(3086), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3086), - [anon_sym_DOT_DOT_LT] = ACTIONS(3086), - [aux_sym__val_number_decimal_token1] = ACTIONS(3084), - [aux_sym__val_number_decimal_token2] = ACTIONS(3086), - [aux_sym__val_number_decimal_token3] = ACTIONS(3086), - [aux_sym__val_number_decimal_token4] = ACTIONS(3086), - [aux_sym__val_number_token1] = ACTIONS(3086), - [aux_sym__val_number_token2] = ACTIONS(3086), - [aux_sym__val_number_token3] = ACTIONS(3086), - [anon_sym_0b] = ACTIONS(3084), - [anon_sym_0o] = ACTIONS(3084), - [anon_sym_0x] = ACTIONS(3084), - [sym_val_date] = ACTIONS(3086), - [anon_sym_DQUOTE] = ACTIONS(3086), - [sym__str_single_quotes] = ACTIONS(3086), - [sym__str_back_ticks] = ACTIONS(3086), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3086), - [aux_sym_env_var_token1] = ACTIONS(3084), - [anon_sym_CARET] = ACTIONS(3086), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3086), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7114), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(888), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [735] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(6921), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7736), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(735), - [aux_sym_shebang_repeat1] = STATE(761), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_RBRACK] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [889] = { + [sym_comment] = STATE(889), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [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_GT2] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), + [anon_sym_STAR2] = ACTIONS(2222), + [anon_sym_and2] = ACTIONS(2222), + [anon_sym_xor2] = ACTIONS(2222), + [anon_sym_or2] = ACTIONS(2222), + [anon_sym_not_DASHin2] = ACTIONS(2222), + [anon_sym_starts_DASHwith2] = ACTIONS(2222), + [anon_sym_ends_DASHwith2] = ACTIONS(2222), + [anon_sym_EQ_EQ2] = ACTIONS(2222), + [anon_sym_BANG_EQ2] = ACTIONS(2222), + [anon_sym_LT2] = ACTIONS(2222), + [anon_sym_LT_EQ2] = ACTIONS(2222), + [anon_sym_GT_EQ2] = ACTIONS(2222), + [anon_sym_EQ_TILDE2] = ACTIONS(2222), + [anon_sym_BANG_TILDE2] = ACTIONS(2222), + [anon_sym_STAR_STAR2] = ACTIONS(2222), + [anon_sym_PLUS_PLUS2] = ACTIONS(2222), + [anon_sym_SLASH2] = ACTIONS(2222), + [anon_sym_mod2] = ACTIONS(2222), + [anon_sym_SLASH_SLASH2] = ACTIONS(2222), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_bit_DASHshl2] = ACTIONS(2222), + [anon_sym_bit_DASHshr2] = ACTIONS(2222), + [anon_sym_bit_DASHand2] = ACTIONS(2222), + [anon_sym_bit_DASHxor2] = ACTIONS(2222), + [anon_sym_bit_DASHor2] = ACTIONS(2222), + [anon_sym_err_GT] = ACTIONS(2222), + [anon_sym_out_GT] = ACTIONS(2222), + [anon_sym_e_GT] = ACTIONS(2222), + [anon_sym_o_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT] = ACTIONS(2222), + [anon_sym_err_GT_GT] = ACTIONS(2222), + [anon_sym_out_GT_GT] = ACTIONS(2222), + [anon_sym_e_GT_GT] = ACTIONS(2222), + [anon_sym_o_GT_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), }, - [736] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [890] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7213), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(8066), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(736), - [aux_sym_shebang_repeat1] = STATE(763), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(6958), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(890), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [737] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [891] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(6921), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7714), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(737), - [aux_sym_shebang_repeat1] = STATE(761), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_RBRACK] = ACTIONS(3092), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7287), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(891), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [738] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [892] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7228), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7868), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(738), - [aux_sym_shebang_repeat1] = STATE(765), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7195), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(892), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [739] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [893] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7238), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7679), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(739), - [aux_sym_shebang_repeat1] = STATE(766), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7205), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(893), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [740] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [894] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7129), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7686), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(740), - [aux_sym_shebang_repeat1] = STATE(760), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7214), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(894), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [741] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [895] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7254), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(8072), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(741), - [aux_sym_shebang_repeat1] = STATE(768), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3100), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7223), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(895), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [742] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [896] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7261), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(8025), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(742), - [aux_sym_shebang_repeat1] = STATE(769), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7230), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(896), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [743] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [897] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7275), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7816), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(743), - [aux_sym_shebang_repeat1] = STATE(771), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7237), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(897), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [744] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [898] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7284), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7775), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(744), - [aux_sym_shebang_repeat1] = STATE(772), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7245), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(898), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [745] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [899] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7292), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7938), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(745), - [aux_sym_shebang_repeat1] = STATE(773), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), - }, - [746] = { - [sym_comment] = STATE(746), - [aux_sym_cmd_identifier_token1] = ACTIONS(1364), - [aux_sym_cmd_identifier_token2] = ACTIONS(1362), - [aux_sym_cmd_identifier_token3] = ACTIONS(1362), - [aux_sym_cmd_identifier_token4] = ACTIONS(1362), - [aux_sym_cmd_identifier_token5] = ACTIONS(1362), - [aux_sym_cmd_identifier_token6] = ACTIONS(1362), - [aux_sym_cmd_identifier_token7] = ACTIONS(1362), - [aux_sym_cmd_identifier_token8] = ACTIONS(1362), - [aux_sym_cmd_identifier_token9] = ACTIONS(1364), - [aux_sym_cmd_identifier_token10] = ACTIONS(1362), - [aux_sym_cmd_identifier_token11] = ACTIONS(1362), - [aux_sym_cmd_identifier_token12] = ACTIONS(1362), - [aux_sym_cmd_identifier_token13] = ACTIONS(1364), - [aux_sym_cmd_identifier_token14] = ACTIONS(1362), - [aux_sym_cmd_identifier_token15] = ACTIONS(1364), - [aux_sym_cmd_identifier_token16] = ACTIONS(1362), - [aux_sym_cmd_identifier_token17] = ACTIONS(1362), - [aux_sym_cmd_identifier_token18] = ACTIONS(1362), - [aux_sym_cmd_identifier_token19] = ACTIONS(1362), - [aux_sym_cmd_identifier_token20] = ACTIONS(1362), - [aux_sym_cmd_identifier_token21] = ACTIONS(1362), - [aux_sym_cmd_identifier_token22] = ACTIONS(1364), - [aux_sym_cmd_identifier_token23] = ACTIONS(1364), - [aux_sym_cmd_identifier_token24] = ACTIONS(1362), - [aux_sym_cmd_identifier_token25] = ACTIONS(1364), - [aux_sym_cmd_identifier_token26] = ACTIONS(1362), - [aux_sym_cmd_identifier_token27] = ACTIONS(1364), - [aux_sym_cmd_identifier_token28] = ACTIONS(1364), - [aux_sym_cmd_identifier_token29] = ACTIONS(1364), - [aux_sym_cmd_identifier_token30] = ACTIONS(1364), - [aux_sym_cmd_identifier_token31] = ACTIONS(1362), - [aux_sym_cmd_identifier_token32] = ACTIONS(1362), - [aux_sym_cmd_identifier_token33] = ACTIONS(1362), - [aux_sym_cmd_identifier_token34] = ACTIONS(1362), - [aux_sym_cmd_identifier_token35] = ACTIONS(1362), - [aux_sym_cmd_identifier_token36] = ACTIONS(1364), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [aux_sym_cmd_identifier_token38] = ACTIONS(1364), - [aux_sym_cmd_identifier_token39] = ACTIONS(1362), - [aux_sym_cmd_identifier_token40] = ACTIONS(1362), - [sym__newline] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_err_GT_PIPE] = ACTIONS(1362), - [anon_sym_out_GT_PIPE] = ACTIONS(1362), - [anon_sym_e_GT_PIPE] = ACTIONS(1362), - [anon_sym_o_GT_PIPE] = ACTIONS(1362), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1362), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1362), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1362), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_match] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_try] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_where] = ACTIONS(1362), - [aux_sym_expr_unary_token1] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1364), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_decimal_token4] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1364), - [anon_sym_0o] = ACTIONS(1364), - [anon_sym_0x] = ACTIONS(1364), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), - [aux_sym_env_var_token1] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1362), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7251), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(899), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [747] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [900] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7300), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7650), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(747), - [aux_sym_shebang_repeat1] = STATE(774), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7259), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(900), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [748] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [901] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7309), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7857), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(748), - [aux_sym_shebang_repeat1] = STATE(775), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7266), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(901), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [749] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [902] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7319), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7646), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(749), - [aux_sym_shebang_repeat1] = STATE(776), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3114), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7274), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(902), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [750] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [903] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7336), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7808), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(750), - [aux_sym_shebang_repeat1] = STATE(778), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7280), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(6965), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(903), + [aux_sym_shebang_repeat1] = STATE(2763), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [751] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7344), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7871), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(751), - [aux_sym_shebang_repeat1] = STATE(779), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [904] = { + [sym_comment] = STATE(904), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [sym__newline] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_err_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_GT_PIPE] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), + [anon_sym_GT2] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_STAR2] = ACTIONS(2214), + [anon_sym_and2] = ACTIONS(2214), + [anon_sym_xor2] = ACTIONS(2214), + [anon_sym_or2] = ACTIONS(2214), + [anon_sym_not_DASHin2] = ACTIONS(2214), + [anon_sym_starts_DASHwith2] = ACTIONS(2214), + [anon_sym_ends_DASHwith2] = ACTIONS(2214), + [anon_sym_EQ_EQ2] = ACTIONS(2214), + [anon_sym_BANG_EQ2] = ACTIONS(2214), + [anon_sym_LT2] = ACTIONS(2214), + [anon_sym_LT_EQ2] = ACTIONS(2214), + [anon_sym_GT_EQ2] = ACTIONS(2214), + [anon_sym_EQ_TILDE2] = ACTIONS(2214), + [anon_sym_BANG_TILDE2] = ACTIONS(2214), + [anon_sym_STAR_STAR2] = ACTIONS(2214), + [anon_sym_PLUS_PLUS2] = ACTIONS(2214), + [anon_sym_SLASH2] = ACTIONS(2214), + [anon_sym_mod2] = ACTIONS(2214), + [anon_sym_SLASH_SLASH2] = ACTIONS(2214), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_bit_DASHshl2] = ACTIONS(2214), + [anon_sym_bit_DASHshr2] = ACTIONS(2214), + [anon_sym_bit_DASHand2] = ACTIONS(2214), + [anon_sym_bit_DASHxor2] = ACTIONS(2214), + [anon_sym_bit_DASHor2] = ACTIONS(2214), + [anon_sym_err_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(3), }, - [752] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7359), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7915), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(752), - [aux_sym_shebang_repeat1] = STATE(762), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [905] = { + [sym_comment] = STATE(905), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [sym__newline] = 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_GT2] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), + [anon_sym_STAR2] = ACTIONS(2222), + [anon_sym_and2] = ACTIONS(2222), + [anon_sym_xor2] = ACTIONS(2222), + [anon_sym_or2] = ACTIONS(2222), + [anon_sym_not_DASHin2] = ACTIONS(2222), + [anon_sym_starts_DASHwith2] = ACTIONS(2222), + [anon_sym_ends_DASHwith2] = ACTIONS(2222), + [anon_sym_EQ_EQ2] = ACTIONS(2222), + [anon_sym_BANG_EQ2] = ACTIONS(2222), + [anon_sym_LT2] = ACTIONS(2222), + [anon_sym_LT_EQ2] = ACTIONS(2222), + [anon_sym_GT_EQ2] = ACTIONS(2222), + [anon_sym_EQ_TILDE2] = ACTIONS(2222), + [anon_sym_BANG_TILDE2] = ACTIONS(2222), + [anon_sym_STAR_STAR2] = ACTIONS(2222), + [anon_sym_PLUS_PLUS2] = ACTIONS(2222), + [anon_sym_SLASH2] = ACTIONS(2222), + [anon_sym_mod2] = ACTIONS(2222), + [anon_sym_SLASH_SLASH2] = ACTIONS(2222), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_bit_DASHshl2] = ACTIONS(2222), + [anon_sym_bit_DASHshr2] = ACTIONS(2222), + [anon_sym_bit_DASHand2] = ACTIONS(2222), + [anon_sym_bit_DASHxor2] = ACTIONS(2222), + [anon_sym_bit_DASHor2] = ACTIONS(2222), + [anon_sym_err_GT] = ACTIONS(2222), + [anon_sym_out_GT] = ACTIONS(2222), + [anon_sym_e_GT] = ACTIONS(2222), + [anon_sym_o_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT] = ACTIONS(2222), + [anon_sym_err_GT_GT] = ACTIONS(2222), + [anon_sym_out_GT_GT] = ACTIONS(2222), + [anon_sym_e_GT_GT] = ACTIONS(2222), + [anon_sym_o_GT_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), }, - [753] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [906] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7366), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7953), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(753), - [aux_sym_shebang_repeat1] = STATE(764), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3122), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7097), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(7499), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(906), + [aux_sym_list_body_repeat1] = STATE(906), + [anon_sym_LBRACK] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_DOLLAR] = ACTIONS(3209), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_DOT_DOT] = ACTIONS(3215), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3218), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3224), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3230), + [aux_sym__val_number_decimal_token1] = ACTIONS(3233), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3239), + [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [aux_sym__val_number_token1] = ACTIONS(3245), + [aux_sym__val_number_token2] = ACTIONS(3245), + [aux_sym__val_number_token3] = ACTIONS(3245), + [aux_sym__val_number_token4] = ACTIONS(3248), + [aux_sym__val_number_token5] = ACTIONS(3248), + [aux_sym__val_number_token6] = ACTIONS(3248), + [anon_sym_0b] = ACTIONS(3251), + [anon_sym_0o] = ACTIONS(3254), + [anon_sym_0x] = ACTIONS(3254), + [sym_val_date] = ACTIONS(3257), + [anon_sym_DQUOTE] = ACTIONS(3260), + [sym__str_single_quotes] = ACTIONS(3263), + [sym__str_back_ticks] = ACTIONS(3263), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3272), + [anon_sym_err_GT] = ACTIONS(3275), + [anon_sym_out_GT] = ACTIONS(3275), + [anon_sym_e_GT] = ACTIONS(3275), + [anon_sym_o_GT] = ACTIONS(3275), + [anon_sym_err_PLUSout_GT] = ACTIONS(3275), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3275), + [anon_sym_o_PLUSe_GT] = ACTIONS(3275), + [anon_sym_e_PLUSo_GT] = ACTIONS(3275), + [anon_sym_err_GT_GT] = ACTIONS(3278), + [anon_sym_out_GT_GT] = ACTIONS(3278), + [anon_sym_e_GT_GT] = ACTIONS(3278), + [anon_sym_o_GT_GT] = ACTIONS(3278), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3278), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3278), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3278), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3278), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3281), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3284), }, - [754] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [907] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7244), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7706), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(754), - [aux_sym_shebang_repeat1] = STATE(767), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), - }, - [755] = { - [sym_comment] = STATE(755), - [aux_sym_cmd_identifier_token1] = ACTIONS(3126), - [aux_sym_cmd_identifier_token2] = ACTIONS(3128), - [aux_sym_cmd_identifier_token3] = ACTIONS(3128), - [aux_sym_cmd_identifier_token4] = ACTIONS(3128), - [aux_sym_cmd_identifier_token5] = ACTIONS(3128), - [aux_sym_cmd_identifier_token6] = ACTIONS(3128), - [aux_sym_cmd_identifier_token7] = ACTIONS(3128), - [aux_sym_cmd_identifier_token8] = ACTIONS(3128), - [aux_sym_cmd_identifier_token9] = ACTIONS(3126), - [aux_sym_cmd_identifier_token10] = ACTIONS(3128), - [aux_sym_cmd_identifier_token11] = ACTIONS(3128), - [aux_sym_cmd_identifier_token12] = ACTIONS(3128), - [aux_sym_cmd_identifier_token13] = ACTIONS(3126), - [aux_sym_cmd_identifier_token14] = ACTIONS(3128), - [aux_sym_cmd_identifier_token15] = ACTIONS(3126), - [aux_sym_cmd_identifier_token16] = ACTIONS(3128), - [aux_sym_cmd_identifier_token17] = ACTIONS(3128), - [aux_sym_cmd_identifier_token18] = ACTIONS(3128), - [aux_sym_cmd_identifier_token19] = ACTIONS(3128), - [aux_sym_cmd_identifier_token20] = ACTIONS(3128), - [aux_sym_cmd_identifier_token21] = ACTIONS(3128), - [aux_sym_cmd_identifier_token22] = ACTIONS(3126), - [aux_sym_cmd_identifier_token23] = ACTIONS(3126), - [aux_sym_cmd_identifier_token24] = ACTIONS(3128), - [aux_sym_cmd_identifier_token25] = ACTIONS(3126), - [aux_sym_cmd_identifier_token26] = ACTIONS(3128), - [aux_sym_cmd_identifier_token27] = ACTIONS(3126), - [aux_sym_cmd_identifier_token28] = ACTIONS(3126), - [aux_sym_cmd_identifier_token29] = ACTIONS(3126), - [aux_sym_cmd_identifier_token30] = ACTIONS(3126), - [aux_sym_cmd_identifier_token31] = ACTIONS(3128), - [aux_sym_cmd_identifier_token32] = ACTIONS(3128), - [aux_sym_cmd_identifier_token33] = ACTIONS(3128), - [aux_sym_cmd_identifier_token34] = ACTIONS(3128), - [aux_sym_cmd_identifier_token35] = ACTIONS(3128), - [aux_sym_cmd_identifier_token36] = ACTIONS(3126), - [anon_sym_true] = ACTIONS(3128), - [anon_sym_false] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3128), - [aux_sym_cmd_identifier_token38] = ACTIONS(3126), - [aux_sym_cmd_identifier_token39] = ACTIONS(3128), - [aux_sym_cmd_identifier_token40] = ACTIONS(3128), - [sym__newline] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_err_GT_PIPE] = ACTIONS(1362), - [anon_sym_out_GT_PIPE] = ACTIONS(1362), - [anon_sym_e_GT_PIPE] = ACTIONS(1362), - [anon_sym_o_GT_PIPE] = ACTIONS(1362), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1362), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1362), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1362), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_DOLLAR] = ACTIONS(3126), - [anon_sym_DASH] = ACTIONS(3126), - [anon_sym_break] = ACTIONS(3126), - [anon_sym_continue] = ACTIONS(3126), - [anon_sym_do] = ACTIONS(3126), - [anon_sym_if] = ACTIONS(3126), - [anon_sym_match] = ACTIONS(3126), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_try] = ACTIONS(3126), - [anon_sym_return] = ACTIONS(3126), - [anon_sym_where] = ACTIONS(3128), - [aux_sym_expr_unary_token1] = ACTIONS(3128), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [aux_sym__val_number_decimal_token1] = ACTIONS(3126), - [aux_sym__val_number_decimal_token2] = ACTIONS(3128), - [aux_sym__val_number_decimal_token3] = ACTIONS(3128), - [aux_sym__val_number_decimal_token4] = ACTIONS(3128), - [aux_sym__val_number_token1] = ACTIONS(3128), - [aux_sym__val_number_token2] = ACTIONS(3128), - [aux_sym__val_number_token3] = ACTIONS(3128), - [anon_sym_0b] = ACTIONS(3126), - [anon_sym_0o] = ACTIONS(3126), - [anon_sym_0x] = ACTIONS(3126), - [sym_val_date] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [sym__str_single_quotes] = ACTIONS(3128), - [sym__str_back_ticks] = ACTIONS(3128), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3128), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3128), - [aux_sym_env_var_token1] = ACTIONS(3126), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3128), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7097), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(7026), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(907), + [aux_sym_list_body_repeat1] = STATE(906), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [756] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), + [908] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7416), + [sym_val_range] = STATE(7419), + [sym__val_range] = STATE(7622), + [sym__val_range_with_end] = STATE(7487), + [sym__value] = STATE(7419), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6711), [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(6776), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7752), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(756), - [aux_sym_shebang_repeat1] = STATE(759), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_RBRACK] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5300), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7097), + [sym__spread_list] = STATE(7416), + [sym_val_entry] = STATE(7149), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_list] = STATE(6366), + [sym__unquoted_in_list_with_expr] = STATE(7419), + [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_comment] = STATE(908), + [aux_sym_list_body_repeat1] = STATE(906), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, - [757] = { - [sym_comment] = STATE(757), - [aux_sym_cmd_identifier_token1] = ACTIONS(2999), - [aux_sym_cmd_identifier_token2] = ACTIONS(3001), - [aux_sym_cmd_identifier_token3] = ACTIONS(3001), - [aux_sym_cmd_identifier_token4] = ACTIONS(3001), - [aux_sym_cmd_identifier_token5] = ACTIONS(3001), - [aux_sym_cmd_identifier_token6] = ACTIONS(3001), - [aux_sym_cmd_identifier_token7] = ACTIONS(3001), - [aux_sym_cmd_identifier_token8] = ACTIONS(3001), - [aux_sym_cmd_identifier_token9] = ACTIONS(2999), - [aux_sym_cmd_identifier_token10] = ACTIONS(3001), - [aux_sym_cmd_identifier_token11] = ACTIONS(3001), - [aux_sym_cmd_identifier_token12] = ACTIONS(3001), - [aux_sym_cmd_identifier_token13] = ACTIONS(2999), - [aux_sym_cmd_identifier_token14] = ACTIONS(3001), - [aux_sym_cmd_identifier_token15] = ACTIONS(2999), - [aux_sym_cmd_identifier_token16] = ACTIONS(3001), - [aux_sym_cmd_identifier_token17] = ACTIONS(3001), - [aux_sym_cmd_identifier_token18] = ACTIONS(3001), - [aux_sym_cmd_identifier_token19] = ACTIONS(3001), - [aux_sym_cmd_identifier_token20] = ACTIONS(3001), - [aux_sym_cmd_identifier_token21] = ACTIONS(3001), - [aux_sym_cmd_identifier_token22] = ACTIONS(2999), - [aux_sym_cmd_identifier_token23] = ACTIONS(2999), - [aux_sym_cmd_identifier_token24] = ACTIONS(3001), - [aux_sym_cmd_identifier_token25] = ACTIONS(2999), - [aux_sym_cmd_identifier_token26] = ACTIONS(3001), - [aux_sym_cmd_identifier_token27] = ACTIONS(2999), - [aux_sym_cmd_identifier_token28] = ACTIONS(2999), - [aux_sym_cmd_identifier_token29] = ACTIONS(2999), - [aux_sym_cmd_identifier_token30] = ACTIONS(2999), - [aux_sym_cmd_identifier_token31] = ACTIONS(3001), - [aux_sym_cmd_identifier_token32] = ACTIONS(3001), - [aux_sym_cmd_identifier_token33] = ACTIONS(3001), - [aux_sym_cmd_identifier_token34] = ACTIONS(3001), - [aux_sym_cmd_identifier_token35] = ACTIONS(3001), - [aux_sym_cmd_identifier_token36] = ACTIONS(2999), - [anon_sym_true] = ACTIONS(3001), - [anon_sym_false] = ACTIONS(3001), - [anon_sym_null] = ACTIONS(3001), - [aux_sym_cmd_identifier_token38] = ACTIONS(2999), - [aux_sym_cmd_identifier_token39] = ACTIONS(3001), - [aux_sym_cmd_identifier_token40] = ACTIONS(3001), - [sym__newline] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_err_GT_PIPE] = ACTIONS(3001), - [anon_sym_out_GT_PIPE] = ACTIONS(3001), - [anon_sym_e_GT_PIPE] = ACTIONS(3001), - [anon_sym_o_GT_PIPE] = ACTIONS(3001), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3001), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3001), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3001), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(2999), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_do] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_match] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_DOT_DOT] = ACTIONS(2999), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_where] = ACTIONS(3001), - [aux_sym_expr_unary_token1] = ACTIONS(3001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3001), - [anon_sym_DOT_DOT_LT] = ACTIONS(3001), - [aux_sym__val_number_decimal_token1] = ACTIONS(2999), - [aux_sym__val_number_decimal_token2] = ACTIONS(3001), - [aux_sym__val_number_decimal_token3] = ACTIONS(3001), - [aux_sym__val_number_decimal_token4] = ACTIONS(3001), - [aux_sym__val_number_token1] = ACTIONS(3001), - [aux_sym__val_number_token2] = ACTIONS(3001), - [aux_sym__val_number_token3] = ACTIONS(3001), - [anon_sym_0b] = ACTIONS(2999), - [anon_sym_0o] = ACTIONS(2999), - [anon_sym_0x] = ACTIONS(2999), - [sym_val_date] = ACTIONS(3001), - [anon_sym_DQUOTE] = ACTIONS(3001), - [sym__str_single_quotes] = ACTIONS(3001), - [sym__str_back_ticks] = ACTIONS(3001), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), - [aux_sym_env_var_token1] = ACTIONS(2999), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3001), + [909] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3230), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2047), + [sym__unquoted_with_expr] = STATE(2274), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(909), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [758] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(6921), - [sym__spread_list] = STATE(7414), - [sym_list_body] = STATE(7686), - [sym_val_entry] = STATE(6779), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(758), - [aux_sym_shebang_repeat1] = STATE(761), - [aux_sym_parameter_repeat2] = STATE(6382), - [aux_sym_list_body_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(2583), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_RBRACK] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [910] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2386), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2048), + [sym__unquoted_with_expr] = STATE(2173), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(910), + [aux_sym_shebang_repeat1] = STATE(1037), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [759] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7395), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(759), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [911] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2389), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2050), + [sym__unquoted_with_expr] = STATE(2174), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(911), + [aux_sym_shebang_repeat1] = STATE(1039), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [760] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7148), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(760), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [912] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3747), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2005), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(912), + [aux_sym_shebang_repeat1] = STATE(926), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [761] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(6921), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(761), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [913] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3796), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2025), + [sym__unquoted_with_expr] = STATE(2164), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(913), + [aux_sym_shebang_repeat1] = STATE(927), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [762] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7360), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(762), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [914] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3744), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2027), + [sym__unquoted_with_expr] = STATE(2166), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(914), + [aux_sym_shebang_repeat1] = STATE(928), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [763] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7215), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(763), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [915] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3844), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2169), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(915), + [aux_sym_shebang_repeat1] = STATE(929), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [764] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7367), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(764), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [916] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3743), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2045), + [sym__unquoted_with_expr] = STATE(2171), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(916), + [aux_sym_shebang_repeat1] = STATE(930), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [765] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7232), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(765), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [917] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2048), + [sym__unquoted_with_expr] = STATE(2173), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(917), + [aux_sym_shebang_repeat1] = STATE(931), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [766] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7239), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(766), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [918] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3813), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2050), + [sym__unquoted_with_expr] = STATE(2174), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(918), + [aux_sym_shebang_repeat1] = STATE(932), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [767] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7247), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(767), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [919] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3821), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2058), + [sym__unquoted_with_expr] = STATE(2175), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(919), + [aux_sym_shebang_repeat1] = STATE(933), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [768] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7256), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(768), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [920] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2176), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2071), + [sym__unquoted_with_expr] = STATE(2178), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(920), + [aux_sym_shebang_repeat1] = STATE(934), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [769] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7262), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(769), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [921] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3841), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2076), + [sym__unquoted_with_expr] = STATE(2182), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(921), + [aux_sym_shebang_repeat1] = STATE(935), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [770] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7268), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(770), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [922] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3742), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2080), + [sym__unquoted_with_expr] = STATE(2187), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(922), + [aux_sym_shebang_repeat1] = STATE(936), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [771] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7276), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(771), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [923] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3745), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2036), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(923), + [aux_sym_shebang_repeat1] = STATE(937), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [772] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7286), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(772), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [924] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3716), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2192), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(924), + [aux_sym_shebang_repeat1] = STATE(938), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [773] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7294), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(773), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [925] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2397), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2058), + [sym__unquoted_with_expr] = STATE(2175), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(925), + [aux_sym_shebang_repeat1] = STATE(1042), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [774] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7302), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(774), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [926] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3750), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2032), + [sym__unquoted_with_expr] = STATE(2250), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(926), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [775] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7311), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(775), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [927] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3713), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2033), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(927), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [776] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7321), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(776), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [928] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3764), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1976), + [sym__unquoted_with_expr] = STATE(2255), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(928), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [777] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7329), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(777), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [929] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3767), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2088), + [sym__unquoted_with_expr] = STATE(2257), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(929), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [778] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7337), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(778), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [930] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3769), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2037), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(930), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, - [779] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7345), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(779), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), - }, - [780] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(7353), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6855), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(780), - [aux_sym_shebang_repeat1] = STATE(2709), - [aux_sym_list_body_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [sym__newline] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), - }, - [781] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(6921), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(7229), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(781), - [aux_sym_list_body_repeat1] = STATE(783), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), - }, - [782] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(6921), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(6755), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(782), - [aux_sym_list_body_repeat1] = STATE(783), - [anon_sym_true] = ACTIONS(3032), - [anon_sym_false] = ACTIONS(3032), - [anon_sym_null] = ACTIONS(3034), - [aux_sym_cmd_identifier_token38] = ACTIONS(3036), - [aux_sym_cmd_identifier_token39] = ACTIONS(3036), - [aux_sym_cmd_identifier_token40] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_LT] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), - [aux_sym__val_number_decimal_token1] = ACTIONS(3052), - [aux_sym__val_number_decimal_token2] = ACTIONS(3054), - [aux_sym__val_number_decimal_token3] = ACTIONS(3056), - [aux_sym__val_number_decimal_token4] = ACTIONS(3058), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), - }, - [783] = { - [sym_expr_parenthesized] = STATE(6164), - [sym__spread_parenthesized] = STATE(7414), - [sym_val_range] = STATE(7423), - [sym__val_range] = STATE(7652), - [sym__val_range_with_end] = STATE(7490), - [sym__value] = STATE(7423), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5339), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(6921), - [sym__spread_list] = STATE(7414), - [sym_val_entry] = STATE(7431), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_list] = STATE(6357), - [sym__unquoted_in_list_with_expr] = STATE(7423), - [sym__unquoted_anonymous_prefix] = STATE(6796), - [sym_comment] = STATE(783), - [aux_sym_list_body_repeat1] = STATE(783), - [anon_sym_true] = ACTIONS(3134), - [anon_sym_false] = ACTIONS(3134), - [anon_sym_null] = ACTIONS(3137), - [aux_sym_cmd_identifier_token38] = ACTIONS(3140), - [aux_sym_cmd_identifier_token39] = ACTIONS(3140), - [aux_sym_cmd_identifier_token40] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_DOLLAR] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3158), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3161), - [anon_sym_DOT_DOT_LT] = ACTIONS(3161), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3164), - [aux_sym__val_number_decimal_token1] = ACTIONS(3167), - [aux_sym__val_number_decimal_token2] = ACTIONS(3170), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3176), - [aux_sym__val_number_token1] = ACTIONS(3179), - [aux_sym__val_number_token2] = ACTIONS(3179), - [aux_sym__val_number_token3] = ACTIONS(3179), - [anon_sym_0b] = ACTIONS(3182), - [anon_sym_0o] = ACTIONS(3185), - [anon_sym_0x] = ACTIONS(3185), - [sym_val_date] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym__str_single_quotes] = ACTIONS(3194), - [sym__str_back_ticks] = ACTIONS(3194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3197), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3200), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3203), - [anon_sym_err_GT] = ACTIONS(3206), - [anon_sym_out_GT] = ACTIONS(3206), - [anon_sym_e_GT] = ACTIONS(3206), - [anon_sym_o_GT] = ACTIONS(3206), - [anon_sym_err_PLUSout_GT] = ACTIONS(3206), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3206), - [anon_sym_o_PLUSe_GT] = ACTIONS(3206), - [anon_sym_e_PLUSo_GT] = ACTIONS(3206), - [anon_sym_err_GT_GT] = ACTIONS(3209), - [anon_sym_out_GT_GT] = ACTIONS(3209), - [anon_sym_e_GT_GT] = ACTIONS(3209), - [anon_sym_o_GT_GT] = ACTIONS(3209), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3209), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3209), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3209), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3209), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3212), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3215), - }, - [784] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3675), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2149), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(784), - [aux_sym_shebang_repeat1] = STATE(852), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [785] = { - [sym_expr_parenthesized] = STATE(1455), - [sym_val_range] = STATE(1797), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7549), - [sym__value] = STATE(1797), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1412), - [sym_val_variable] = STATE(1346), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1165), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym__flag] = STATE(1797), - [sym_short_flag] = STATE(1673), - [sym_long_flag] = STATE(1673), - [sym_unquoted] = STATE(1494), - [sym__unquoted_with_expr] = STATE(1895), - [sym__unquoted_anonymous_prefix] = STATE(6757), - [sym_comment] = STATE(785), - [aux_sym_shebang_repeat1] = STATE(2755), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_null] = ACTIONS(2639), - [aux_sym_cmd_identifier_token38] = ACTIONS(2641), - [aux_sym_cmd_identifier_token39] = ACTIONS(2641), - [aux_sym_cmd_identifier_token40] = ACTIONS(2641), - [sym__newline] = ACTIONS(2695), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), - [anon_sym_DOT_DOT_LT] = ACTIONS(2659), - [aux_sym__val_number_decimal_token1] = ACTIONS(2661), - [aux_sym__val_number_decimal_token2] = ACTIONS(2663), - [aux_sym__val_number_decimal_token3] = ACTIONS(2665), - [aux_sym__val_number_decimal_token4] = ACTIONS(2667), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), - }, - [786] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2185), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1942), - [sym__unquoted_with_expr] = STATE(2186), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(786), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [787] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2309), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1968), - [sym__unquoted_with_expr] = STATE(2188), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(787), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [788] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2313), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1905), - [sym__unquoted_with_expr] = STATE(2191), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(788), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [789] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2319), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1959), - [sym__unquoted_with_expr] = STATE(2194), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(789), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [790] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2324), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1969), - [sym__unquoted_with_expr] = STATE(2197), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(790), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [791] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2334), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1972), - [sym__unquoted_with_expr] = STATE(2199), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(791), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [792] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2338), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1899), - [sym__unquoted_with_expr] = STATE(2202), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(792), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [793] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2345), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1951), - [sym__unquoted_with_expr] = STATE(2204), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(793), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [794] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2349), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1952), - [sym__unquoted_with_expr] = STATE(2206), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(794), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [795] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2353), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1991), - [sym__unquoted_with_expr] = STATE(2208), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(795), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [796] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2357), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2210), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(796), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [797] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2361), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1947), - [sym__unquoted_with_expr] = STATE(2212), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(797), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [798] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2365), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1934), - [sym__unquoted_with_expr] = STATE(2214), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(798), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [799] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2089), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1915), - [sym__unquoted_with_expr] = STATE(2090), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(799), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [800] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2305), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2097), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(800), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [801] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2386), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2100), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(801), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [802] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2262), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(802), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [803] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2278), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1920), - [sym__unquoted_with_expr] = STATE(2105), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(803), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [804] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2301), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1921), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(804), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [805] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2315), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2109), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(805), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [806] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2333), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1924), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(806), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [807] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2354), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1927), - [sym__unquoted_with_expr] = STATE(2113), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(807), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [808] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2380), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1928), - [sym__unquoted_with_expr] = STATE(2115), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(808), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [809] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2391), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1931), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(809), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [810] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2254), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1933), - [sym__unquoted_with_expr] = STATE(2121), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(810), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [811] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2122), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1935), - [sym__unquoted_with_expr] = STATE(2123), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(811), - [aux_sym_shebang_repeat1] = STATE(786), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [812] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2266), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1941), - [sym__unquoted_with_expr] = STATE(2124), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(812), - [aux_sym_shebang_repeat1] = STATE(787), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [813] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2135), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1981), - [sym__unquoted_with_expr] = STATE(2140), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(813), - [aux_sym_shebang_repeat1] = STATE(799), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [814] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2245), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1997), - [sym__unquoted_with_expr] = STATE(2145), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(814), - [aux_sym_shebang_repeat1] = STATE(940), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [815] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2367), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1977), - [sym__unquoted_with_expr] = STATE(2148), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(815), - [aux_sym_shebang_repeat1] = STATE(800), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [816] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2381), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2149), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(816), - [aux_sym_shebang_repeat1] = STATE(801), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [817] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2384), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1954), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(817), - [aux_sym_shebang_repeat1] = STATE(802), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [818] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2390), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1960), - [sym__unquoted_with_expr] = STATE(2152), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(818), - [aux_sym_shebang_repeat1] = STATE(803), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [819] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2392), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1970), - [sym__unquoted_with_expr] = STATE(2153), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(819), - [aux_sym_shebang_repeat1] = STATE(804), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [820] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2403), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1976), - [sym__unquoted_with_expr] = STATE(2155), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(820), - [aux_sym_shebang_repeat1] = STATE(805), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [821] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2274), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1945), - [sym__unquoted_with_expr] = STATE(2127), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(821), - [aux_sym_shebang_repeat1] = STATE(788), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [822] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2282), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1949), - [sym__unquoted_with_expr] = STATE(2128), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(822), - [aux_sym_shebang_repeat1] = STATE(789), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [823] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2288), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1950), - [sym__unquoted_with_expr] = STATE(2129), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(823), - [aux_sym_shebang_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [824] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2251), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1908), - [sym__unquoted_with_expr] = STATE(2156), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(824), - [aux_sym_shebang_repeat1] = STATE(806), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [825] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2294), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1953), - [sym__unquoted_with_expr] = STATE(2130), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(825), - [aux_sym_shebang_repeat1] = STATE(791), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [826] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2298), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1974), - [sym__unquoted_with_expr] = STATE(2131), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(826), - [aux_sym_shebang_repeat1] = STATE(792), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [827] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2303), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1979), - [sym__unquoted_with_expr] = STATE(2133), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(827), - [aux_sym_shebang_repeat1] = STATE(793), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [828] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2253), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1936), - [sym__unquoted_with_expr] = STATE(2157), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(828), - [aux_sym_shebang_repeat1] = STATE(807), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [829] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2258), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1955), - [sym__unquoted_with_expr] = STATE(2159), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(829), - [aux_sym_shebang_repeat1] = STATE(808), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [830] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2304), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1958), - [sym__unquoted_with_expr] = STATE(2190), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(830), - [aux_sym_shebang_repeat1] = STATE(809), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [831] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2327), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1961), - [sym__unquoted_with_expr] = STATE(2201), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(831), - [aux_sym_shebang_repeat1] = STATE(810), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [832] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2310), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1984), - [sym__unquoted_with_expr] = STATE(2134), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(832), - [aux_sym_shebang_repeat1] = STATE(794), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [833] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2317), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2138), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(833), - [aux_sym_shebang_repeat1] = STATE(795), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [834] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2335), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1986), - [sym__unquoted_with_expr] = STATE(2141), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(834), - [aux_sym_shebang_repeat1] = STATE(796), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [835] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2346), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1988), - [sym__unquoted_with_expr] = STATE(2144), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(835), - [aux_sym_shebang_repeat1] = STATE(797), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [836] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2362), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1989), - [sym__unquoted_with_expr] = STATE(2146), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(836), - [aux_sym_shebang_repeat1] = STATE(798), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [837] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2135), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1981), - [sym__unquoted_with_expr] = STATE(2140), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(837), - [aux_sym_shebang_repeat1] = STATE(849), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [838] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3691), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1997), - [sym__unquoted_with_expr] = STATE(2145), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(838), - [aux_sym_shebang_repeat1] = STATE(850), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [839] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3669), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1977), - [sym__unquoted_with_expr] = STATE(2148), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(839), - [aux_sym_shebang_repeat1] = STATE(851), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [840] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3676), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1954), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(840), - [aux_sym_shebang_repeat1] = STATE(853), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [841] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3677), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1960), - [sym__unquoted_with_expr] = STATE(2152), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(841), - [aux_sym_shebang_repeat1] = STATE(854), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [842] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3679), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1970), - [sym__unquoted_with_expr] = STATE(2153), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(842), - [aux_sym_shebang_repeat1] = STATE(855), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [843] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3680), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1976), - [sym__unquoted_with_expr] = STATE(2155), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(843), - [aux_sym_shebang_repeat1] = STATE(856), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [844] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1908), - [sym__unquoted_with_expr] = STATE(2156), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(844), - [aux_sym_shebang_repeat1] = STATE(857), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [845] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3684), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1936), - [sym__unquoted_with_expr] = STATE(2157), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(845), - [aux_sym_shebang_repeat1] = STATE(858), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [846] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3686), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1955), - [sym__unquoted_with_expr] = STATE(2159), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(846), - [aux_sym_shebang_repeat1] = STATE(859), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [847] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3687), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1958), - [sym__unquoted_with_expr] = STATE(2190), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(847), - [aux_sym_shebang_repeat1] = STATE(860), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [848] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3689), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1961), - [sym__unquoted_with_expr] = STATE(2201), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(848), - [aux_sym_shebang_repeat1] = STATE(861), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [849] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2089), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1915), - [sym__unquoted_with_expr] = STATE(2090), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(849), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [850] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3693), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2093), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(850), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [851] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3698), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2097), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(851), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [852] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3700), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2100), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(852), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [853] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3702), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(853), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [854] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3705), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1920), - [sym__unquoted_with_expr] = STATE(2105), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(854), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [855] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3710), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1921), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(855), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [856] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3712), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2109), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(856), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [857] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3714), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1924), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(857), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [858] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3716), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1927), - [sym__unquoted_with_expr] = STATE(2113), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(858), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [859] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3729), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1928), - [sym__unquoted_with_expr] = STATE(2115), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(859), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [860] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3731), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1931), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(860), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [861] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3733), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1933), - [sym__unquoted_with_expr] = STATE(2121), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(861), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [862] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2122), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1935), - [sym__unquoted_with_expr] = STATE(2123), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(862), - [aux_sym_shebang_repeat1] = STATE(875), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [863] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1941), - [sym__unquoted_with_expr] = STATE(2124), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(863), - [aux_sym_shebang_repeat1] = STATE(876), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [864] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3735), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1945), - [sym__unquoted_with_expr] = STATE(2127), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(864), - [aux_sym_shebang_repeat1] = STATE(877), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [865] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1949), - [sym__unquoted_with_expr] = STATE(2128), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(865), - [aux_sym_shebang_repeat1] = STATE(878), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [866] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3737), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1950), - [sym__unquoted_with_expr] = STATE(2129), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(866), - [aux_sym_shebang_repeat1] = STATE(879), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [867] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3804), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1953), - [sym__unquoted_with_expr] = STATE(2130), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(867), - [aux_sym_shebang_repeat1] = STATE(880), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [868] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3739), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1974), - [sym__unquoted_with_expr] = STATE(2131), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(868), - [aux_sym_shebang_repeat1] = STATE(881), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [869] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3741), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1979), - [sym__unquoted_with_expr] = STATE(2133), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(869), - [aux_sym_shebang_repeat1] = STATE(882), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [870] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3742), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1984), - [sym__unquoted_with_expr] = STATE(2134), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(870), - [aux_sym_shebang_repeat1] = STATE(883), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [871] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3743), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2138), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(871), - [aux_sym_shebang_repeat1] = STATE(884), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [872] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3745), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1986), - [sym__unquoted_with_expr] = STATE(2141), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(872), - [aux_sym_shebang_repeat1] = STATE(885), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [873] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3746), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1988), - [sym__unquoted_with_expr] = STATE(2144), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(873), - [aux_sym_shebang_repeat1] = STATE(886), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [874] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3747), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1989), - [sym__unquoted_with_expr] = STATE(2146), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(874), - [aux_sym_shebang_repeat1] = STATE(887), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [875] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2185), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1942), - [sym__unquoted_with_expr] = STATE(2186), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(875), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [876] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3764), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1968), - [sym__unquoted_with_expr] = STATE(2188), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(876), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [877] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3766), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1905), - [sym__unquoted_with_expr] = STATE(2191), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(877), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [878] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3768), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1959), - [sym__unquoted_with_expr] = STATE(2194), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(878), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [879] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3770), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1969), - [sym__unquoted_with_expr] = STATE(2197), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(879), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [880] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3772), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1972), - [sym__unquoted_with_expr] = STATE(2199), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(880), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [881] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3775), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1899), - [sym__unquoted_with_expr] = STATE(2202), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(881), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [882] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3777), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1951), - [sym__unquoted_with_expr] = STATE(2204), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(882), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [883] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3779), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1952), - [sym__unquoted_with_expr] = STATE(2206), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(883), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [884] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1991), - [sym__unquoted_with_expr] = STATE(2208), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(884), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [885] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3785), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2210), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(885), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [886] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3787), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1947), - [sym__unquoted_with_expr] = STATE(2212), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(886), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [887] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3791), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3660), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3409), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1934), - [sym__unquoted_with_expr] = STATE(2214), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(887), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3218), - [anon_sym_false] = ACTIONS(3218), - [anon_sym_null] = ACTIONS(3220), - [aux_sym_cmd_identifier_token38] = ACTIONS(3222), - [aux_sym_cmd_identifier_token39] = ACTIONS(3222), - [aux_sym_cmd_identifier_token40] = ACTIONS(3222), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3234), - [aux_sym__val_number_decimal_token2] = ACTIONS(3236), - [aux_sym__val_number_decimal_token3] = ACTIONS(3238), - [aux_sym__val_number_decimal_token4] = ACTIONS(3240), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [888] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2135), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1981), - [sym__unquoted_with_expr] = STATE(2140), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(888), - [aux_sym_shebang_repeat1] = STATE(901), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [889] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3236), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1997), - [sym__unquoted_with_expr] = STATE(2145), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(889), - [aux_sym_shebang_repeat1] = STATE(902), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [890] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3237), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1977), - [sym__unquoted_with_expr] = STATE(2148), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(890), - [aux_sym_shebang_repeat1] = STATE(903), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [891] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3238), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2149), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(891), - [aux_sym_shebang_repeat1] = STATE(904), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [892] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3239), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1954), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(892), - [aux_sym_shebang_repeat1] = STATE(905), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [893] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3240), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1960), - [sym__unquoted_with_expr] = STATE(2152), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(893), - [aux_sym_shebang_repeat1] = STATE(906), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [894] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3241), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1970), - [sym__unquoted_with_expr] = STATE(2153), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(894), - [aux_sym_shebang_repeat1] = STATE(907), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [895] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3242), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1976), - [sym__unquoted_with_expr] = STATE(2155), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(895), - [aux_sym_shebang_repeat1] = STATE(908), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [896] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3243), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1908), - [sym__unquoted_with_expr] = STATE(2156), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(896), - [aux_sym_shebang_repeat1] = STATE(909), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [897] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3244), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1936), - [sym__unquoted_with_expr] = STATE(2157), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(897), - [aux_sym_shebang_repeat1] = STATE(910), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [898] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3245), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1955), - [sym__unquoted_with_expr] = STATE(2159), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(898), - [aux_sym_shebang_repeat1] = STATE(911), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [899] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3246), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1958), - [sym__unquoted_with_expr] = STATE(2190), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(899), - [aux_sym_shebang_repeat1] = STATE(912), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [900] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3247), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1961), - [sym__unquoted_with_expr] = STATE(2201), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(900), - [aux_sym_shebang_repeat1] = STATE(913), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [901] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2089), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1915), - [sym__unquoted_with_expr] = STATE(2090), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(901), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [902] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3250), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2093), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(902), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [903] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3252), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2097), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(903), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [904] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3254), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2100), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(904), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [905] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3256), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(905), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [906] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3258), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1920), - [sym__unquoted_with_expr] = STATE(2105), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(906), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [907] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3260), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1921), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(907), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [908] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3262), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2109), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(908), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [909] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3264), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1924), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(909), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [910] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3266), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1927), - [sym__unquoted_with_expr] = STATE(2113), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(910), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [911] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3268), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1928), - [sym__unquoted_with_expr] = STATE(2115), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(911), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [912] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3270), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1931), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(912), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [913] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3272), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1933), - [sym__unquoted_with_expr] = STATE(2121), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(913), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [914] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2122), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1935), - [sym__unquoted_with_expr] = STATE(2123), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(914), - [aux_sym_shebang_repeat1] = STATE(927), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [915] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3273), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1941), - [sym__unquoted_with_expr] = STATE(2124), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(915), - [aux_sym_shebang_repeat1] = STATE(928), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [916] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3274), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1945), - [sym__unquoted_with_expr] = STATE(2127), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(916), - [aux_sym_shebang_repeat1] = STATE(929), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [917] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3275), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1949), - [sym__unquoted_with_expr] = STATE(2128), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(917), - [aux_sym_shebang_repeat1] = STATE(930), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [918] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3276), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1950), - [sym__unquoted_with_expr] = STATE(2129), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(918), - [aux_sym_shebang_repeat1] = STATE(931), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [919] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3277), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1953), - [sym__unquoted_with_expr] = STATE(2130), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(919), - [aux_sym_shebang_repeat1] = STATE(932), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [920] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3278), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1974), - [sym__unquoted_with_expr] = STATE(2131), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(920), - [aux_sym_shebang_repeat1] = STATE(933), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [921] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3279), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1979), - [sym__unquoted_with_expr] = STATE(2133), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(921), - [aux_sym_shebang_repeat1] = STATE(934), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [922] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3280), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1984), - [sym__unquoted_with_expr] = STATE(2134), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(922), - [aux_sym_shebang_repeat1] = STATE(935), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [923] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3281), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2138), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(923), - [aux_sym_shebang_repeat1] = STATE(936), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [924] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3282), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1986), - [sym__unquoted_with_expr] = STATE(2141), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(924), - [aux_sym_shebang_repeat1] = STATE(937), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [925] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3283), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1988), - [sym__unquoted_with_expr] = STATE(2144), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(925), - [aux_sym_shebang_repeat1] = STATE(938), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [926] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3284), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1989), - [sym__unquoted_with_expr] = STATE(2146), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(926), - [aux_sym_shebang_repeat1] = STATE(939), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [927] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2185), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1942), - [sym__unquoted_with_expr] = STATE(2186), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(927), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [928] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3298), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1968), - [sym__unquoted_with_expr] = STATE(2188), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(928), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [929] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3300), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1905), - [sym__unquoted_with_expr] = STATE(2191), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(929), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [930] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3302), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1959), - [sym__unquoted_with_expr] = STATE(2194), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(930), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), - }, - [931] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3304), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1969), - [sym__unquoted_with_expr] = STATE(2197), - [sym__unquoted_anonymous_prefix] = STATE(7116), - [sym_comment] = STATE(931), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [931] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3774), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2040), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_comment] = STATE(931), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [932] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3306), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1972), - [sym__unquoted_with_expr] = STATE(2199), - [sym__unquoted_anonymous_prefix] = STATE(7116), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3777), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2042), + [sym__unquoted_with_expr] = STATE(2264), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(932), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [933] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3308), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1899), - [sym__unquoted_with_expr] = STATE(2202), - [sym__unquoted_anonymous_prefix] = STATE(7116), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3781), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2043), + [sym__unquoted_with_expr] = STATE(2267), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(933), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [934] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3310), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1951), - [sym__unquoted_with_expr] = STATE(2204), - [sym__unquoted_anonymous_prefix] = STATE(7116), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2270), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2044), + [sym__unquoted_with_expr] = STATE(2272), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(934), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [935] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3312), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1952), - [sym__unquoted_with_expr] = STATE(2206), - [sym__unquoted_anonymous_prefix] = STATE(7116), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2047), + [sym__unquoted_with_expr] = STATE(2274), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(935), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [936] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3314), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1991), - [sym__unquoted_with_expr] = STATE(2208), - [sym__unquoted_anonymous_prefix] = STATE(7116), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3786), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2049), + [sym__unquoted_with_expr] = STATE(2277), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(936), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [937] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3316), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2210), - [sym__unquoted_anonymous_prefix] = STATE(7116), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3789), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2051), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(937), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [938] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3318), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1947), - [sym__unquoted_with_expr] = STATE(2212), - [sym__unquoted_anonymous_prefix] = STATE(7116), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3791), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2060), + [sym__unquoted_with_expr] = STATE(2289), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(938), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [939] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(3320), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3174), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(3025), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1934), - [sym__unquoted_with_expr] = STATE(2214), - [sym__unquoted_anonymous_prefix] = STATE(7116), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3792), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2073), + [sym__unquoted_with_expr] = STATE(2294), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(939), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_null] = ACTIONS(3264), - [aux_sym_cmd_identifier_token38] = ACTIONS(3266), - [aux_sym_cmd_identifier_token39] = ACTIONS(3266), - [aux_sym_cmd_identifier_token40] = ACTIONS(3266), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3268), - [aux_sym__val_number_decimal_token2] = ACTIONS(3270), - [aux_sym__val_number_decimal_token3] = ACTIONS(3272), - [aux_sym__val_number_decimal_token4] = ACTIONS(3274), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(952), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [940] = { - [sym_expr_unary] = STATE(2312), - [sym__expr_unary_minus] = STATE(2328), - [sym_expr_binary_parenthesized] = STATE(2312), - [sym__expr_binary_expression_parenthesized] = STATE(2259), - [sym_expr_parenthesized] = STATE(2312), - [sym__val_range] = STATE(7854), - [sym__val_range_with_end] = STATE(7540), - [sym__value] = STATE(2312), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(2120), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(1417), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2093), - [sym__unquoted_anonymous_prefix] = STATE(7116), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3793), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2077), + [sym__unquoted_with_expr] = STATE(2298), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(940), - [aux_sym_shebang_repeat1] = STATE(2823), - [anon_sym_true] = ACTIONS(3246), - [anon_sym_false] = ACTIONS(3246), - [anon_sym_null] = ACTIONS(3248), - [aux_sym_cmd_identifier_token38] = ACTIONS(3250), - [aux_sym_cmd_identifier_token39] = ACTIONS(3250), - [aux_sym_cmd_identifier_token40] = ACTIONS(3250), - [sym__newline] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_DOLLAR] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [aux_sym_expr_unary_token1] = ACTIONS(499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), - [anon_sym_DOT_DOT_LT] = ACTIONS(3232), - [aux_sym__val_number_decimal_token1] = ACTIONS(3252), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3256), - [aux_sym__val_number_decimal_token4] = ACTIONS(3258), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3260), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(953), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [941] = { - [sym_ctrl_do] = STATE(5022), - [sym_ctrl_if] = STATE(5022), - [sym_ctrl_match] = STATE(5022), - [sym_ctrl_try] = STATE(5022), - [sym__expression] = STATE(5022), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3881), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1929), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3136), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3794), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2078), + [sym__unquoted_with_expr] = STATE(2300), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(941), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3280), - [aux_sym_cmd_identifier_token38] = ACTIONS(443), - [aux_sym_cmd_identifier_token39] = ACTIONS(443), - [aux_sym_cmd_identifier_token40] = ACTIONS(443), - [sym__newline] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_PIPE] = ACTIONS(3284), - [anon_sym_err_GT_PIPE] = ACTIONS(3284), - [anon_sym_out_GT_PIPE] = ACTIONS(3284), - [anon_sym_e_GT_PIPE] = ACTIONS(3284), - [anon_sym_o_GT_PIPE] = ACTIONS(3284), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3284), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3284), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3284), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(3292), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(954), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_record_entry_token1] = ACTIONS(3294), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [942] = { - [sym_ctrl_do] = STATE(5022), - [sym_ctrl_if] = STATE(5022), - [sym_ctrl_match] = STATE(5022), - [sym_ctrl_try] = STATE(5022), - [sym__expression] = STATE(5022), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3881), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1929), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3136), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3797), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2081), + [sym__unquoted_with_expr] = STATE(2301), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(942), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3280), - [aux_sym_cmd_identifier_token38] = ACTIONS(443), - [aux_sym_cmd_identifier_token39] = ACTIONS(443), - [aux_sym_cmd_identifier_token40] = ACTIONS(443), - [sym__newline] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_PIPE] = ACTIONS(3284), - [anon_sym_err_GT_PIPE] = ACTIONS(3284), - [anon_sym_out_GT_PIPE] = ACTIONS(3284), - [anon_sym_e_GT_PIPE] = ACTIONS(3284), - [anon_sym_o_GT_PIPE] = ACTIONS(3284), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3284), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3284), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3284), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(3292), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(955), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_record_entry_token1] = ACTIONS(3296), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [943] = { - [sym_ctrl_do] = STATE(5022), - [sym_ctrl_if] = STATE(5022), - [sym_ctrl_match] = STATE(5022), - [sym_ctrl_try] = STATE(5022), - [sym__expression] = STATE(5022), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3881), - [sym_expr_parenthesized] = STATE(1922), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(1929), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3136), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3799), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2082), + [sym__unquoted_with_expr] = STATE(2304), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(943), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3280), - [aux_sym_cmd_identifier_token38] = ACTIONS(443), - [aux_sym_cmd_identifier_token39] = ACTIONS(443), - [aux_sym_cmd_identifier_token40] = ACTIONS(443), - [sym__newline] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_PIPE] = ACTIONS(3284), - [anon_sym_err_GT_PIPE] = ACTIONS(3284), - [anon_sym_out_GT_PIPE] = ACTIONS(3284), - [anon_sym_e_GT_PIPE] = ACTIONS(3284), - [anon_sym_o_GT_PIPE] = ACTIONS(3284), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3284), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3284), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3284), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_RPAREN] = ACTIONS(3284), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_match] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_DOT_DOT] = ACTIONS(193), - [anon_sym_try] = ACTIONS(3292), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(215), - [anon_sym_DOT_DOT_LT] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(435), - [aux_sym__val_number_decimal_token2] = ACTIONS(437), - [aux_sym__val_number_decimal_token3] = ACTIONS(439), - [aux_sym__val_number_decimal_token4] = ACTIONS(441), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(956), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [944] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(3338), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2083), - [sym__unquoted_with_expr] = STATE(2482), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3802), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2216), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(944), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(957), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [945] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(3355), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2242), - [sym__unquoted_with_expr] = STATE(2548), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3804), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2183), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(945), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [946] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(3356), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2243), - [sym__unquoted_with_expr] = STATE(2554), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3805), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2072), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(946), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(959), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [947] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(3357), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2561), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2177), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2035), + [sym__unquoted_with_expr] = STATE(2196), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(947), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(960), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [948] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(3351), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2216), - [sym__unquoted_with_expr] = STATE(2523), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3807), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2041), + [sym__unquoted_with_expr] = STATE(2223), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(948), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(961), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [949] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(3358), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2084), - [sym__unquoted_with_expr] = STATE(2489), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3810), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1986), + [sym__unquoted_with_expr] = STATE(2220), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(949), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(962), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [950] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(1702), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1548), - [sym__unquoted_with_expr] = STATE(1707), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3812), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2026), + [sym__unquoted_with_expr] = STATE(2163), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(950), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(963), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [951] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3223), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1554), - [sym__unquoted_with_expr] = STATE(1709), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3817), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2011), + [sym__unquoted_with_expr] = STATE(2180), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(951), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(964), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [952] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(3352), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2217), - [sym__unquoted_with_expr] = STATE(2529), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3763), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2029), + [sym__unquoted_with_expr] = STATE(2284), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(952), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [953] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3225), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1565), - [sym__unquoted_with_expr] = STATE(1714), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3829), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2084), + [sym__unquoted_with_expr] = STATE(2296), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(953), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [954] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3226), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1567), - [sym__unquoted_with_expr] = STATE(1718), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3832), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1982), + [sym__unquoted_with_expr] = STATE(2160), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(954), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [955] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3227), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1568), - [sym__unquoted_with_expr] = STATE(1719), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3720), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1985), + [sym__unquoted_with_expr] = STATE(2165), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(955), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [956] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3228), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1570), - [sym__unquoted_with_expr] = STATE(1721), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3724), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1995), + [sym__unquoted_with_expr] = STATE(2170), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(956), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [957] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3229), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1572), - [sym__unquoted_with_expr] = STATE(1731), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3735), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2028), + [sym__unquoted_with_expr] = STATE(2181), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(957), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [958] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3230), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1574), - [sym__unquoted_with_expr] = STATE(1732), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3738), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2030), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(958), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [959] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3231), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1575), - [sym__unquoted_with_expr] = STATE(1735), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3751), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2075), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(959), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [960] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3232), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1576), - [sym__unquoted_with_expr] = STATE(1738), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2079), + [sym__unquoted_with_expr] = STATE(2198), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(960), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [961] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3233), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1577), - [sym__unquoted_with_expr] = STATE(1740), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3754), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2015), + [sym__unquoted_with_expr] = STATE(2207), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(961), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [962] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3234), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1578), - [sym__unquoted_with_expr] = STATE(1743), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3795), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2069), + [sym__unquoted_with_expr] = STATE(2211), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(962), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [963] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(3359), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2085), - [sym__unquoted_with_expr] = STATE(2491), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3803), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2070), + [sym__unquoted_with_expr] = STATE(2214), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(963), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [964] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(3360), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2086), - [sym__unquoted_with_expr] = STATE(2502), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3811), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2219), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(964), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [965] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(1702), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1548), - [sym__unquoted_with_expr] = STATE(1707), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2176), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2071), + [sym__unquoted_with_expr] = STATE(2178), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(965), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1043), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [966] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1554), - [sym__unquoted_with_expr] = STATE(1709), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2442), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2076), + [sym__unquoted_with_expr] = STATE(2182), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(966), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1045), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [967] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3853), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1556), - [sym__unquoted_with_expr] = STATE(1710), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_parenthesized] = STATE(1580), + [sym_val_range] = STATE(1953), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7371), + [sym__value] = STATE(1953), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1587), + [sym_val_variable] = STATE(1536), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1289), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym__flag] = STATE(1953), + [sym_short_flag] = STATE(1831), + [sym_long_flag] = STATE(1831), + [sym_unquoted] = STATE(1669), + [sym__unquoted_with_expr] = STATE(1958), + [sym__unquoted_anonymous_prefix] = STATE(7309), [sym_comment] = STATE(967), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_shebang_repeat1] = STATE(2821), + [sym__newline] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_DASH2] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), + [anon_sym_DOT_DOT_LT] = ACTIONS(2631), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [aux_sym__val_number_decimal_token1] = ACTIONS(2637), + [aux_sym__val_number_decimal_token2] = ACTIONS(2639), + [aux_sym__val_number_decimal_token3] = ACTIONS(2641), + [aux_sym__val_number_decimal_token4] = ACTIONS(2643), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(2647), + [aux_sym__val_number_token5] = ACTIONS(2647), + [aux_sym__val_number_token6] = ACTIONS(2647), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), }, [968] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3868), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1565), - [sym__unquoted_with_expr] = STATE(1714), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2322), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2080), + [sym__unquoted_with_expr] = STATE(2187), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(968), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1049), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [969] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3846), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1567), - [sym__unquoted_with_expr] = STATE(1718), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2345), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2036), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(969), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1050), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [970] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3858), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1568), - [sym__unquoted_with_expr] = STATE(1719), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2311), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2029), + [sym__unquoted_with_expr] = STATE(2284), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(970), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [971] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1570), - [sym__unquoted_with_expr] = STATE(1721), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2419), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2084), + [sym__unquoted_with_expr] = STATE(2296), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(971), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [972] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3848), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1572), - [sym__unquoted_with_expr] = STATE(1731), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2351), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1982), + [sym__unquoted_with_expr] = STATE(2160), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(972), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [973] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3854), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1574), - [sym__unquoted_with_expr] = STATE(1732), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3200), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2005), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(973), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(986), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [974] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3859), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1575), - [sym__unquoted_with_expr] = STATE(1735), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3201), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2025), + [sym__unquoted_with_expr] = STATE(2164), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(974), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(987), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [975] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3861), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1576), - [sym__unquoted_with_expr] = STATE(1738), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3202), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2027), + [sym__unquoted_with_expr] = STATE(2166), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(975), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(988), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [976] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3849), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1577), - [sym__unquoted_with_expr] = STATE(1740), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3203), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2169), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(976), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(989), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [977] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(3353), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2222), - [sym__unquoted_with_expr] = STATE(2531), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3204), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2045), + [sym__unquoted_with_expr] = STATE(2171), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(977), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(990), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [978] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3851), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3459), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1578), - [sym__unquoted_with_expr] = STATE(1743), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3205), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2048), + [sym__unquoted_with_expr] = STATE(2173), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(978), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3354), - [aux_sym_cmd_identifier_token39] = ACTIONS(3354), - [aux_sym_cmd_identifier_token40] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3364), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(991), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [979] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2540), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2242), - [sym__unquoted_with_expr] = STATE(2548), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3206), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2050), + [sym__unquoted_with_expr] = STATE(2174), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(979), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(992), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [980] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2515), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2216), - [sym__unquoted_with_expr] = STATE(2523), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3207), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2058), + [sym__unquoted_with_expr] = STATE(2175), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(980), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(1065), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [981] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2549), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2243), - [sym__unquoted_with_expr] = STATE(2554), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2176), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2071), + [sym__unquoted_with_expr] = STATE(2178), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(981), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(994), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [982] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2556), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2561), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3208), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2076), + [sym__unquoted_with_expr] = STATE(2182), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(982), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(909), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [983] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2462), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2083), - [sym__unquoted_with_expr] = STATE(2482), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3209), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2080), + [sym__unquoted_with_expr] = STATE(2187), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(983), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(995), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [984] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2483), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2084), - [sym__unquoted_with_expr] = STATE(2489), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3210), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2036), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(984), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(996), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [985] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2490), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2085), - [sym__unquoted_with_expr] = STATE(2491), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3211), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2192), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(985), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(997), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [986] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2497), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2086), - [sym__unquoted_with_expr] = STATE(2502), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3214), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2032), + [sym__unquoted_with_expr] = STATE(2250), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(986), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [987] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2527), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2217), - [sym__unquoted_with_expr] = STATE(2529), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3216), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2033), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(987), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [988] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2530), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2222), - [sym__unquoted_with_expr] = STATE(2531), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3218), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1976), + [sym__unquoted_with_expr] = STATE(2255), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(988), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [989] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(3376), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2223), - [sym__unquoted_with_expr] = STATE(2533), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3220), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2088), + [sym__unquoted_with_expr] = STATE(2257), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(989), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [990] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2532), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2223), - [sym__unquoted_with_expr] = STATE(2533), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3222), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2037), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(990), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [991] = { - [sym_ctrl_do] = STATE(5074), - [sym_ctrl_if] = STATE(5074), - [sym_ctrl_match] = STATE(5074), - [sym_ctrl_try] = STATE(5074), - [sym__expression] = STATE(5074), - [sym_expr_unary] = STATE(2509), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2509), - [sym__expr_binary_expression] = STATE(3877), - [sym_expr_parenthesized] = STATE(2042), - [sym_val_range] = STATE(3900), - [sym__value] = STATE(2509), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2441), - [sym_val_variable] = STATE(2055), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3144), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3224), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2040), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(991), - [ts_builtin_sym_end] = ACTIONS(3284), - [anon_sym_true] = ACTIONS(3392), - [anon_sym_false] = ACTIONS(3392), - [anon_sym_null] = ACTIONS(3394), - [aux_sym_cmd_identifier_token38] = ACTIONS(103), - [aux_sym_cmd_identifier_token39] = ACTIONS(103), - [aux_sym_cmd_identifier_token40] = ACTIONS(103), - [sym__newline] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_PIPE] = ACTIONS(3284), - [anon_sym_err_GT_PIPE] = ACTIONS(3284), - [anon_sym_out_GT_PIPE] = ACTIONS(3284), - [anon_sym_e_GT_PIPE] = ACTIONS(3284), - [anon_sym_o_GT_PIPE] = ACTIONS(3284), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3284), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3284), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3284), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_do] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3398), - [anon_sym_match] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(3402), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [992] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2513), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2215), - [sym__unquoted_with_expr] = STATE(2514), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3226), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2042), + [sym__unquoted_with_expr] = STATE(2264), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(992), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [993] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2534), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(1430), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2079), - [sym__unquoted_with_expr] = STATE(2539), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2388), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2005), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(993), - [anon_sym_true] = ACTIONS(3376), - [anon_sym_false] = ACTIONS(3376), - [anon_sym_null] = ACTIONS(3378), - [aux_sym_cmd_identifier_token38] = ACTIONS(3380), - [aux_sym_cmd_identifier_token39] = ACTIONS(3380), - [aux_sym_cmd_identifier_token40] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3382), - [aux_sym__val_number_decimal_token2] = ACTIONS(3384), - [aux_sym__val_number_decimal_token3] = ACTIONS(3386), - [aux_sym__val_number_decimal_token4] = ACTIONS(3388), - [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(3390), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(1030), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [994] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(2513), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2215), - [sym__unquoted_with_expr] = STATE(2514), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2270), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2044), + [sym__unquoted_with_expr] = STATE(2272), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(994), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [995] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(1702), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1548), - [sym__unquoted_with_expr] = STATE(1707), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3232), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2049), + [sym__unquoted_with_expr] = STATE(2277), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(995), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [996] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3662), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1554), - [sym__unquoted_with_expr] = STATE(1709), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3234), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2051), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(996), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [997] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3718), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1556), - [sym__unquoted_with_expr] = STATE(1710), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3236), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2060), + [sym__unquoted_with_expr] = STATE(2289), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(997), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [998] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3719), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1565), - [sym__unquoted_with_expr] = STATE(1714), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3237), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2073), + [sym__unquoted_with_expr] = STATE(2294), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(998), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1012), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [999] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3720), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1567), - [sym__unquoted_with_expr] = STATE(1718), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3238), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2077), + [sym__unquoted_with_expr] = STATE(2298), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(999), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1013), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1000] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3721), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1568), - [sym__unquoted_with_expr] = STATE(1719), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3239), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2078), + [sym__unquoted_with_expr] = STATE(2300), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1000), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1014), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1001] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3722), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1570), - [sym__unquoted_with_expr] = STATE(1721), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3240), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2081), + [sym__unquoted_with_expr] = STATE(2301), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1001), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1015), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1002] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3723), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1572), - [sym__unquoted_with_expr] = STATE(1731), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3241), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2082), + [sym__unquoted_with_expr] = STATE(2304), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1002), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1016), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1003] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3724), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1574), - [sym__unquoted_with_expr] = STATE(1732), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3242), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2216), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1003), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1017), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1004] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3725), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1575), - [sym__unquoted_with_expr] = STATE(1735), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3243), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2183), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1004), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1018), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1005] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3726), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1576), - [sym__unquoted_with_expr] = STATE(1738), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3244), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2072), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1005), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1019), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1006] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3727), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1577), - [sym__unquoted_with_expr] = STATE(1740), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2177), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2035), + [sym__unquoted_with_expr] = STATE(2196), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1006), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1020), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1007] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3728), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3561), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3384), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1578), - [sym__unquoted_with_expr] = STATE(1743), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3245), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2041), + [sym__unquoted_with_expr] = STATE(2223), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1007), - [anon_sym_true] = ACTIONS(3404), - [anon_sym_false] = ACTIONS(3404), - [anon_sym_null] = ACTIONS(3406), - [aux_sym_cmd_identifier_token38] = ACTIONS(3408), - [aux_sym_cmd_identifier_token39] = ACTIONS(3408), - [aux_sym_cmd_identifier_token40] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1021), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1008] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(1702), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1548), - [sym__unquoted_with_expr] = STATE(1707), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3246), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1986), + [sym__unquoted_with_expr] = STATE(2220), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1008), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1022), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1009] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3857), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1554), - [sym__unquoted_with_expr] = STATE(1709), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3247), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2026), + [sym__unquoted_with_expr] = STATE(2163), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1009), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1023), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1010] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3860), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1556), - [sym__unquoted_with_expr] = STATE(1710), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3248), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2011), + [sym__unquoted_with_expr] = STATE(2180), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1010), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1024), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1011] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3862), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1565), - [sym__unquoted_with_expr] = STATE(1714), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2382), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2025), + [sym__unquoted_with_expr] = STATE(2164), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1011), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(1031), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1012] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3863), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1567), - [sym__unquoted_with_expr] = STATE(1718), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3262), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2029), + [sym__unquoted_with_expr] = STATE(2284), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1012), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1013] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3864), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1568), - [sym__unquoted_with_expr] = STATE(1719), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3264), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2084), + [sym__unquoted_with_expr] = STATE(2296), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1013), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1014] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3865), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1570), - [sym__unquoted_with_expr] = STATE(1721), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3266), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1982), + [sym__unquoted_with_expr] = STATE(2160), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1014), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1015] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3866), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1572), - [sym__unquoted_with_expr] = STATE(1731), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3268), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1985), + [sym__unquoted_with_expr] = STATE(2165), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1015), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1016] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3867), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1574), - [sym__unquoted_with_expr] = STATE(1732), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3270), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1995), + [sym__unquoted_with_expr] = STATE(2170), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1016), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1017] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3869), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1575), - [sym__unquoted_with_expr] = STATE(1735), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3272), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2028), + [sym__unquoted_with_expr] = STATE(2181), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1017), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1018] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3870), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1576), - [sym__unquoted_with_expr] = STATE(1738), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3274), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2030), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1018), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1019] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3871), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1577), - [sym__unquoted_with_expr] = STATE(1740), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3276), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2075), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1019), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1020] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3872), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3789), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3445), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1578), - [sym__unquoted_with_expr] = STATE(1743), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2079), + [sym__unquoted_with_expr] = STATE(2198), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1020), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(3428), - [aux_sym_cmd_identifier_token39] = ACTIONS(3428), - [aux_sym_cmd_identifier_token40] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1021] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(1702), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1548), - [sym__unquoted_with_expr] = STATE(1707), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3278), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2015), + [sym__unquoted_with_expr] = STATE(2207), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1021), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1022] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(2413), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1554), - [sym__unquoted_with_expr] = STATE(1709), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3280), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2069), + [sym__unquoted_with_expr] = STATE(2211), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1022), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1023] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(2415), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1556), - [sym__unquoted_with_expr] = STATE(1710), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3282), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2070), + [sym__unquoted_with_expr] = STATE(2214), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1023), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1024] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(2418), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1565), - [sym__unquoted_with_expr] = STATE(1714), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3284), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2219), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1024), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1025] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(2420), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1567), - [sym__unquoted_with_expr] = STATE(1718), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2371), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1985), + [sym__unquoted_with_expr] = STATE(2165), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1025), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1026] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(2422), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1568), - [sym__unquoted_with_expr] = STATE(1719), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1995), + [sym__unquoted_with_expr] = STATE(2170), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1026), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1027] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(2423), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1570), - [sym__unquoted_with_expr] = STATE(1721), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2390), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2028), + [sym__unquoted_with_expr] = STATE(2181), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1027), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1028] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(2424), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1572), - [sym__unquoted_with_expr] = STATE(1731), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2327), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2030), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1028), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1029] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(2426), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1574), - [sym__unquoted_with_expr] = STATE(1732), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2347), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2075), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1029), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1030] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(2341), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1575), - [sym__unquoted_with_expr] = STATE(1735), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2363), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2032), + [sym__unquoted_with_expr] = STATE(2250), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1030), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1031] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(2246), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1576), - [sym__unquoted_with_expr] = STATE(1738), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2365), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2033), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1031), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1032] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(2247), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1577), - [sym__unquoted_with_expr] = STATE(1740), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2368), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1976), + [sym__unquoted_with_expr] = STATE(2255), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1032), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1033] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(2248), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(2075), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(1363), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1578), - [sym__unquoted_with_expr] = STATE(1743), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2194), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2079), + [sym__unquoted_with_expr] = STATE(2198), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1033), - [anon_sym_true] = ACTIONS(3440), - [anon_sym_false] = ACTIONS(3440), - [anon_sym_null] = ACTIONS(3442), - [aux_sym_cmd_identifier_token38] = ACTIONS(3444), - [aux_sym_cmd_identifier_token39] = ACTIONS(3444), - [aux_sym_cmd_identifier_token40] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3446), - [aux_sym__val_number_decimal_token2] = ACTIONS(3448), - [aux_sym__val_number_decimal_token3] = ACTIONS(3450), - [aux_sym__val_number_decimal_token4] = ACTIONS(3452), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1034] = { - [sym_expr_unary] = STATE(2512), - [sym__expr_unary_minus] = STATE(2510), - [sym_expr_binary] = STATE(2512), - [sym__expr_binary_expression] = STATE(3354), - [sym_expr_parenthesized] = STATE(2512), - [sym__val_range] = STATE(7869), - [sym__val_range_with_end] = STATE(7524), - [sym__value] = STATE(2512), - [sym_val_nothing] = STATE(2441), - [sym_val_bool] = STATE(3183), - [sym_val_variable] = STATE(2441), - [sym_val_number] = STATE(2441), - [sym__val_number_decimal] = STATE(3024), - [sym__val_number] = STATE(2488), - [sym_val_duration] = STATE(2441), - [sym_val_filesize] = STATE(2441), - [sym_val_binary] = STATE(2441), - [sym_val_string] = STATE(2441), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), - [sym_val_interpolated] = STATE(2441), - [sym__inter_single_quotes] = STATE(2563), - [sym__inter_double_quotes] = STATE(2436), - [sym_val_list] = STATE(2441), - [sym_val_record] = STATE(2441), - [sym_val_table] = STATE(2441), - [sym_val_closure] = STATE(2441), - [sym_unquoted] = STATE(2079), - [sym__unquoted_with_expr] = STATE(2539), - [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2372), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2088), + [sym__unquoted_with_expr] = STATE(2257), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1034), - [anon_sym_true] = ACTIONS(3298), - [anon_sym_false] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3300), - [aux_sym_cmd_identifier_token38] = ACTIONS(3302), - [aux_sym_cmd_identifier_token39] = ACTIONS(3302), - [aux_sym_cmd_identifier_token40] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_DOLLAR] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3308), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), - [anon_sym_DOT_DOT_LT] = ACTIONS(3310), - [aux_sym__val_number_decimal_token1] = ACTIONS(3312), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3316), - [aux_sym__val_number_decimal_token4] = ACTIONS(3318), - [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(3320), - [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(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3322), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1035] = { - [sym_expr_unary] = STATE(1701), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1701), - [sym__expr_binary_expression] = STATE(3224), - [sym_expr_parenthesized] = STATE(1701), - [sym__val_range] = STATE(7780), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(1701), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(3169), - [sym_val_variable] = STATE(1881), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(2926), - [sym__val_number] = STATE(2271), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(2074), - [sym__str_double_quotes] = STATE(2074), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym_unquoted] = STATE(1556), - [sym__unquoted_with_expr] = STATE(1710), - [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2384), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2015), + [sym__unquoted_with_expr] = STATE(2207), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1035), - [anon_sym_true] = ACTIONS(3324), - [anon_sym_false] = ACTIONS(3324), - [anon_sym_null] = ACTIONS(3326), - [aux_sym_cmd_identifier_token38] = ACTIONS(3328), - [aux_sym_cmd_identifier_token39] = ACTIONS(3328), - [aux_sym_cmd_identifier_token40] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(3334), - [aux_sym_expr_unary_token1] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), - [anon_sym_DOT_DOT_LT] = ACTIONS(3336), - [aux_sym__val_number_decimal_token1] = ACTIONS(3338), - [aux_sym__val_number_decimal_token2] = ACTIONS(3340), - [aux_sym__val_number_decimal_token3] = ACTIONS(3342), - [aux_sym__val_number_decimal_token4] = ACTIONS(3344), - [aux_sym__val_number_token1] = ACTIONS(443), - [aux_sym__val_number_token2] = ACTIONS(443), - [aux_sym__val_number_token3] = ACTIONS(443), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(445), - [sym__str_single_quotes] = ACTIONS(447), - [sym__str_back_ticks] = ACTIONS(447), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3348), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(449), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1036] = { - [sym_expr_unary] = STATE(4553), - [sym__expr_unary_minus] = STATE(4482), - [sym_expr_parenthesized] = STATE(4149), - [sym_val_range] = STATE(4553), - [sym__val_range] = STATE(7632), - [sym__val_range_with_end] = STATE(7557), - [sym__value] = STATE(4553), - [sym_val_nothing] = STATE(4047), - [sym_val_bool] = STATE(4169), - [sym_val_variable] = STATE(4155), - [sym_val_number] = STATE(4047), - [sym__val_number_decimal] = STATE(3921), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4047), - [sym_val_filesize] = STATE(4047), - [sym_val_binary] = STATE(4047), - [sym_val_string] = STATE(4047), - [sym__raw_str] = STATE(2932), - [sym__str_double_quotes] = STATE(2932), - [sym_val_interpolated] = STATE(4047), - [sym__inter_single_quotes] = STATE(4101), - [sym__inter_double_quotes] = STATE(4102), - [sym_val_list] = STATE(4047), - [sym_val_record] = STATE(4047), - [sym_val_table] = STATE(4047), - [sym_val_closure] = STATE(4047), - [sym_unquoted] = STATE(4258), - [sym__unquoted_with_expr] = STATE(4560), - [sym__unquoted_anonymous_prefix] = STATE(6805), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2377), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2037), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1036), - [anon_sym_true] = ACTIONS(3456), - [anon_sym_false] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [aux_sym_cmd_identifier_token38] = ACTIONS(3460), - [aux_sym_cmd_identifier_token39] = ACTIONS(3460), - [aux_sym_cmd_identifier_token40] = ACTIONS(3460), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_DOLLAR] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(3472), - [aux_sym_expr_unary_token1] = ACTIONS(3474), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3476), - [anon_sym_DOT_DOT_LT] = ACTIONS(3476), - [aux_sym__val_number_decimal_token1] = ACTIONS(3478), - [aux_sym__val_number_decimal_token2] = ACTIONS(3480), - [aux_sym__val_number_decimal_token3] = ACTIONS(3482), - [aux_sym__val_number_decimal_token4] = ACTIONS(3484), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3488), - [anon_sym_0o] = ACTIONS(3490), - [anon_sym_0x] = ACTIONS(3490), - [sym_val_date] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym__str_single_quotes] = ACTIONS(3496), - [sym__str_back_ticks] = ACTIONS(3496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3502), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3504), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1037] = { - [sym_expr_unary] = STATE(4561), - [sym__expr_unary_minus] = STATE(4482), - [sym_expr_parenthesized] = STATE(4151), - [sym_val_range] = STATE(4561), - [sym__val_range] = STATE(7632), - [sym__val_range_with_end] = STATE(7557), - [sym__value] = STATE(4561), - [sym_val_nothing] = STATE(4047), - [sym_val_bool] = STATE(4169), - [sym_val_variable] = STATE(4155), - [sym_val_number] = STATE(4047), - [sym__val_number_decimal] = STATE(3921), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4047), - [sym_val_filesize] = STATE(4047), - [sym_val_binary] = STATE(4047), - [sym_val_string] = STATE(4047), - [sym__raw_str] = STATE(2932), - [sym__str_double_quotes] = STATE(2932), - [sym_val_interpolated] = STATE(4047), - [sym__inter_single_quotes] = STATE(4101), - [sym__inter_double_quotes] = STATE(4102), - [sym_val_list] = STATE(4047), - [sym_val_record] = STATE(4047), - [sym_val_table] = STATE(4047), - [sym_val_closure] = STATE(4047), - [sym_unquoted] = STATE(4267), - [sym__unquoted_with_expr] = STATE(4564), - [sym__unquoted_anonymous_prefix] = STATE(6805), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2444), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2040), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1037), - [anon_sym_true] = ACTIONS(3456), - [anon_sym_false] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [aux_sym_cmd_identifier_token38] = ACTIONS(3460), - [aux_sym_cmd_identifier_token39] = ACTIONS(3460), - [aux_sym_cmd_identifier_token40] = ACTIONS(3460), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_DOLLAR] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(3472), - [aux_sym_expr_unary_token1] = ACTIONS(3474), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3476), - [anon_sym_DOT_DOT_LT] = ACTIONS(3476), - [aux_sym__val_number_decimal_token1] = ACTIONS(3478), - [aux_sym__val_number_decimal_token2] = ACTIONS(3480), - [aux_sym__val_number_decimal_token3] = ACTIONS(3482), - [aux_sym__val_number_decimal_token4] = ACTIONS(3484), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3488), - [anon_sym_0o] = ACTIONS(3490), - [anon_sym_0x] = ACTIONS(3490), - [sym_val_date] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym__str_single_quotes] = ACTIONS(3496), - [sym__str_back_ticks] = ACTIONS(3496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3502), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3504), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1038] = { - [sym_expr_unary] = STATE(4545), - [sym__expr_unary_minus] = STATE(4482), - [sym_expr_parenthesized] = STATE(4148), - [sym_val_range] = STATE(4545), - [sym__val_range] = STATE(7632), - [sym__val_range_with_end] = STATE(7557), - [sym__value] = STATE(4545), - [sym_val_nothing] = STATE(4047), - [sym_val_bool] = STATE(4169), - [sym_val_variable] = STATE(4155), - [sym_val_number] = STATE(4047), - [sym__val_number_decimal] = STATE(3921), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4047), - [sym_val_filesize] = STATE(4047), - [sym_val_binary] = STATE(4047), - [sym_val_string] = STATE(4047), - [sym__raw_str] = STATE(2932), - [sym__str_double_quotes] = STATE(2932), - [sym_val_interpolated] = STATE(4047), - [sym__inter_single_quotes] = STATE(4101), - [sym__inter_double_quotes] = STATE(4102), - [sym_val_list] = STATE(4047), - [sym_val_record] = STATE(4047), - [sym_val_table] = STATE(4047), - [sym_val_closure] = STATE(4047), - [sym_unquoted] = STATE(4246), - [sym__unquoted_with_expr] = STATE(4551), - [sym__unquoted_anonymous_prefix] = STATE(6805), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2402), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2069), + [sym__unquoted_with_expr] = STATE(2211), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1038), - [anon_sym_true] = ACTIONS(3456), - [anon_sym_false] = ACTIONS(3456), - [anon_sym_null] = ACTIONS(3458), - [aux_sym_cmd_identifier_token38] = ACTIONS(3460), - [aux_sym_cmd_identifier_token39] = ACTIONS(3460), - [aux_sym_cmd_identifier_token40] = ACTIONS(3460), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_DOLLAR] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(3472), - [aux_sym_expr_unary_token1] = ACTIONS(3474), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3476), - [anon_sym_DOT_DOT_LT] = ACTIONS(3476), - [aux_sym__val_number_decimal_token1] = ACTIONS(3478), - [aux_sym__val_number_decimal_token2] = ACTIONS(3480), - [aux_sym__val_number_decimal_token3] = ACTIONS(3482), - [aux_sym__val_number_decimal_token4] = ACTIONS(3484), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3488), - [anon_sym_0o] = ACTIONS(3490), - [anon_sym_0x] = ACTIONS(3490), - [sym_val_date] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym__str_single_quotes] = ACTIONS(3496), - [sym__str_back_ticks] = ACTIONS(3496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3502), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3504), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1039] = { - [sym_expr_unary] = STATE(4665), - [sym__expr_unary_minus] = STATE(4619), - [sym_expr_parenthesized] = STATE(4247), - [sym_val_range] = STATE(4665), - [sym__val_range] = STATE(7929), - [sym__val_range_with_end] = STATE(7552), - [sym__value] = STATE(4665), - [sym_val_nothing] = STATE(4196), - [sym_val_bool] = STATE(4348), - [sym_val_variable] = STATE(4261), - [sym_val_number] = STATE(4196), - [sym__val_number_decimal] = STATE(3961), - [sym__val_number] = STATE(4279), - [sym_val_duration] = STATE(4196), - [sym_val_filesize] = STATE(4196), - [sym_val_binary] = STATE(4196), - [sym_val_string] = STATE(4196), - [sym__raw_str] = STATE(3606), - [sym__str_double_quotes] = STATE(3606), - [sym_val_interpolated] = STATE(4196), - [sym__inter_single_quotes] = STATE(4216), - [sym__inter_double_quotes] = STATE(4218), - [sym_val_list] = STATE(4196), - [sym_val_record] = STATE(4196), - [sym_val_table] = STATE(4196), - [sym_val_closure] = STATE(4196), - [sym_unquoted] = STATE(4304), - [sym__unquoted_with_expr] = STATE(4631), - [sym__unquoted_anonymous_prefix] = STATE(6781), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2383), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2042), + [sym__unquoted_with_expr] = STATE(2264), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1039), - [anon_sym_true] = ACTIONS(3506), - [anon_sym_false] = ACTIONS(3506), - [anon_sym_null] = ACTIONS(3508), - [aux_sym_cmd_identifier_token38] = ACTIONS(3510), - [aux_sym_cmd_identifier_token39] = ACTIONS(3510), - [aux_sym_cmd_identifier_token40] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LPAREN] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_DOT_DOT] = ACTIONS(3522), - [aux_sym_expr_unary_token1] = ACTIONS(3524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3526), - [anon_sym_DOT_DOT_LT] = ACTIONS(3526), - [aux_sym__val_number_decimal_token1] = ACTIONS(3528), - [aux_sym__val_number_decimal_token2] = ACTIONS(3530), - [aux_sym__val_number_decimal_token3] = ACTIONS(3532), - [aux_sym__val_number_decimal_token4] = ACTIONS(3534), - [aux_sym__val_number_token1] = ACTIONS(3536), - [aux_sym__val_number_token2] = ACTIONS(3536), - [aux_sym__val_number_token3] = ACTIONS(3536), - [anon_sym_0b] = ACTIONS(3538), - [anon_sym_0o] = ACTIONS(3540), - [anon_sym_0x] = ACTIONS(3540), - [sym_val_date] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3544), - [sym__str_single_quotes] = ACTIONS(3546), - [sym__str_back_ticks] = ACTIONS(3546), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3552), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3554), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1040] = { - [sym_expr_unary] = STATE(4623), - [sym__expr_unary_minus] = STATE(4619), - [sym_expr_parenthesized] = STATE(4209), - [sym_val_range] = STATE(4623), - [sym__val_range] = STATE(7929), - [sym__val_range_with_end] = STATE(7552), - [sym__value] = STATE(4623), - [sym_val_nothing] = STATE(4196), - [sym_val_bool] = STATE(4348), - [sym_val_variable] = STATE(4261), - [sym_val_number] = STATE(4196), - [sym__val_number_decimal] = STATE(3961), - [sym__val_number] = STATE(4279), - [sym_val_duration] = STATE(4196), - [sym_val_filesize] = STATE(4196), - [sym_val_binary] = STATE(4196), - [sym_val_string] = STATE(4196), - [sym__raw_str] = STATE(3606), - [sym__str_double_quotes] = STATE(3606), - [sym_val_interpolated] = STATE(4196), - [sym__inter_single_quotes] = STATE(4216), - [sym__inter_double_quotes] = STATE(4218), - [sym_val_list] = STATE(4196), - [sym_val_record] = STATE(4196), - [sym_val_table] = STATE(4196), - [sym_val_closure] = STATE(4196), - [sym_unquoted] = STATE(4284), - [sym__unquoted_with_expr] = STATE(4675), - [sym__unquoted_anonymous_prefix] = STATE(6781), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2409), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2070), + [sym__unquoted_with_expr] = STATE(2214), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1040), - [anon_sym_true] = ACTIONS(3506), - [anon_sym_false] = ACTIONS(3506), - [anon_sym_null] = ACTIONS(3508), - [aux_sym_cmd_identifier_token38] = ACTIONS(3510), - [aux_sym_cmd_identifier_token39] = ACTIONS(3510), - [aux_sym_cmd_identifier_token40] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LPAREN] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_DOT_DOT] = ACTIONS(3522), - [aux_sym_expr_unary_token1] = ACTIONS(3524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3526), - [anon_sym_DOT_DOT_LT] = ACTIONS(3526), - [aux_sym__val_number_decimal_token1] = ACTIONS(3528), - [aux_sym__val_number_decimal_token2] = ACTIONS(3530), - [aux_sym__val_number_decimal_token3] = ACTIONS(3532), - [aux_sym__val_number_decimal_token4] = ACTIONS(3534), - [aux_sym__val_number_token1] = ACTIONS(3536), - [aux_sym__val_number_token2] = ACTIONS(3536), - [aux_sym__val_number_token3] = ACTIONS(3536), - [anon_sym_0b] = ACTIONS(3538), - [anon_sym_0o] = ACTIONS(3540), - [anon_sym_0x] = ACTIONS(3540), - [sym_val_date] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3544), - [sym__str_single_quotes] = ACTIONS(3546), - [sym__str_back_ticks] = ACTIONS(3546), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3552), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3554), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1041] = { - [sym_expr_unary] = STATE(4601), - [sym__expr_unary_minus] = STATE(4619), - [sym_expr_parenthesized] = STATE(4220), - [sym_val_range] = STATE(4601), - [sym__val_range] = STATE(7929), - [sym__val_range_with_end] = STATE(7552), - [sym__value] = STATE(4601), - [sym_val_nothing] = STATE(4196), - [sym_val_bool] = STATE(4348), - [sym_val_variable] = STATE(4261), - [sym_val_number] = STATE(4196), - [sym__val_number_decimal] = STATE(3961), - [sym__val_number] = STATE(4279), - [sym_val_duration] = STATE(4196), - [sym_val_filesize] = STATE(4196), - [sym_val_binary] = STATE(4196), - [sym_val_string] = STATE(4196), - [sym__raw_str] = STATE(3606), - [sym__str_double_quotes] = STATE(3606), - [sym_val_interpolated] = STATE(4196), - [sym__inter_single_quotes] = STATE(4216), - [sym__inter_double_quotes] = STATE(4218), - [sym_val_list] = STATE(4196), - [sym_val_record] = STATE(4196), - [sym_val_table] = STATE(4196), - [sym_val_closure] = STATE(4196), - [sym_unquoted] = STATE(4292), - [sym__unquoted_with_expr] = STATE(4607), - [sym__unquoted_anonymous_prefix] = STATE(6781), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2408), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2027), + [sym__unquoted_with_expr] = STATE(2166), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1041), - [anon_sym_true] = ACTIONS(3506), - [anon_sym_false] = ACTIONS(3506), - [anon_sym_null] = ACTIONS(3508), - [aux_sym_cmd_identifier_token38] = ACTIONS(3510), - [aux_sym_cmd_identifier_token39] = ACTIONS(3510), - [aux_sym_cmd_identifier_token40] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LPAREN] = ACTIONS(3514), - [anon_sym_DOLLAR] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_DOT_DOT] = ACTIONS(3522), - [aux_sym_expr_unary_token1] = ACTIONS(3524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3526), - [anon_sym_DOT_DOT_LT] = ACTIONS(3526), - [aux_sym__val_number_decimal_token1] = ACTIONS(3528), - [aux_sym__val_number_decimal_token2] = ACTIONS(3530), - [aux_sym__val_number_decimal_token3] = ACTIONS(3532), - [aux_sym__val_number_decimal_token4] = ACTIONS(3534), - [aux_sym__val_number_token1] = ACTIONS(3536), - [aux_sym__val_number_token2] = ACTIONS(3536), - [aux_sym__val_number_token3] = ACTIONS(3536), - [anon_sym_0b] = ACTIONS(3538), - [anon_sym_0o] = ACTIONS(3540), - [anon_sym_0x] = ACTIONS(3540), - [sym_val_date] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3544), - [sym__str_single_quotes] = ACTIONS(3546), - [sym__str_back_ticks] = ACTIONS(3546), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3552), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3554), + [aux_sym_shebang_repeat1] = STATE(1032), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1042] = { - [sym_expr_parenthesized] = STATE(4638), - [sym_val_range] = STATE(5197), - [sym__val_range] = STATE(7970), - [sym__val_range_with_end] = STATE(7443), - [sym__value] = STATE(5197), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(4764), - [sym_val_variable] = STATE(4686), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(4098), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4768), - [sym__str_double_quotes] = STATE(4768), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym__unquoted_in_list] = STATE(4859), - [sym__unquoted_in_list_with_expr] = STATE(5197), - [sym__unquoted_anonymous_prefix] = STATE(7037), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2387), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2043), + [sym__unquoted_with_expr] = STATE(2267), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1042), - [aux_sym_shebang_repeat1] = STATE(1044), - [anon_sym_true] = ACTIONS(3556), - [anon_sym_false] = ACTIONS(3556), - [anon_sym_null] = ACTIONS(3558), - [aux_sym_cmd_identifier_token38] = ACTIONS(3560), - [aux_sym_cmd_identifier_token39] = ACTIONS(3560), - [aux_sym_cmd_identifier_token40] = ACTIONS(3560), - [sym__newline] = ACTIONS(3562), - [anon_sym_LBRACK] = ACTIONS(3564), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_DOLLAR] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_DOT_DOT] = ACTIONS(3572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3574), - [anon_sym_DOT_DOT_LT] = ACTIONS(3574), - [aux_sym__val_number_decimal_token1] = ACTIONS(3576), - [aux_sym__val_number_decimal_token2] = ACTIONS(3578), - [aux_sym__val_number_decimal_token3] = ACTIONS(3580), - [aux_sym__val_number_decimal_token4] = ACTIONS(3582), - [aux_sym__val_number_token1] = ACTIONS(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3592), - [sym__str_single_quotes] = ACTIONS(3594), - [sym__str_back_ticks] = ACTIONS(3594), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3600), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3602), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1043] = { - [sym_expr_parenthesized] = STATE(4638), - [sym_val_range] = STATE(5197), - [sym__val_range] = STATE(7970), - [sym__val_range_with_end] = STATE(7443), - [sym__value] = STATE(5197), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(4764), - [sym_val_variable] = STATE(4686), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(4098), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4768), - [sym__str_double_quotes] = STATE(4768), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym__unquoted_in_list] = STATE(4859), - [sym__unquoted_in_list_with_expr] = STATE(5197), - [sym__unquoted_anonymous_prefix] = STATE(7037), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2270), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2044), + [sym__unquoted_with_expr] = STATE(2272), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1043), - [aux_sym_shebang_repeat1] = STATE(2918), - [anon_sym_true] = ACTIONS(3556), - [anon_sym_false] = ACTIONS(3556), - [anon_sym_null] = ACTIONS(3558), - [aux_sym_cmd_identifier_token38] = ACTIONS(3560), - [aux_sym_cmd_identifier_token39] = ACTIONS(3560), - [aux_sym_cmd_identifier_token40] = ACTIONS(3560), - [sym__newline] = ACTIONS(3562), - [anon_sym_LBRACK] = ACTIONS(3564), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_DOLLAR] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_DOT_DOT] = ACTIONS(3572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3574), - [anon_sym_DOT_DOT_LT] = ACTIONS(3574), - [aux_sym__val_number_decimal_token1] = ACTIONS(3576), - [aux_sym__val_number_decimal_token2] = ACTIONS(3578), - [aux_sym__val_number_decimal_token3] = ACTIONS(3580), - [aux_sym__val_number_decimal_token4] = ACTIONS(3582), - [aux_sym__val_number_token1] = ACTIONS(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3592), - [sym__str_single_quotes] = ACTIONS(3594), - [sym__str_back_ticks] = ACTIONS(3594), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3600), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3602), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1044] = { - [sym_expr_parenthesized] = STATE(4640), - [sym_val_range] = STATE(5095), - [sym__val_range] = STATE(7970), - [sym__val_range_with_end] = STATE(7443), - [sym__value] = STATE(5095), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(4764), - [sym_val_variable] = STATE(4686), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(4098), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4768), - [sym__str_double_quotes] = STATE(4768), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym__unquoted_in_list] = STATE(4809), - [sym__unquoted_in_list_with_expr] = STATE(5095), - [sym__unquoted_anonymous_prefix] = STATE(7037), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2425), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2219), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1044), - [aux_sym_shebang_repeat1] = STATE(2918), - [anon_sym_true] = ACTIONS(3556), - [anon_sym_false] = ACTIONS(3556), - [anon_sym_null] = ACTIONS(3558), - [aux_sym_cmd_identifier_token38] = ACTIONS(3560), - [aux_sym_cmd_identifier_token39] = ACTIONS(3560), - [aux_sym_cmd_identifier_token40] = ACTIONS(3560), - [sym__newline] = ACTIONS(3562), - [anon_sym_LBRACK] = ACTIONS(3564), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_DOLLAR] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_DOT_DOT] = ACTIONS(3572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3574), - [anon_sym_DOT_DOT_LT] = ACTIONS(3574), - [aux_sym__val_number_decimal_token1] = ACTIONS(3576), - [aux_sym__val_number_decimal_token2] = ACTIONS(3578), - [aux_sym__val_number_decimal_token3] = ACTIONS(3580), - [aux_sym__val_number_decimal_token4] = ACTIONS(3582), - [aux_sym__val_number_token1] = ACTIONS(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3592), - [sym__str_single_quotes] = ACTIONS(3594), - [sym__str_back_ticks] = ACTIONS(3594), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3600), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3602), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1045] = { - [sym_match_arm] = STATE(6927), - [sym_default_arm] = STATE(6927), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2394), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2047), + [sym__unquoted_with_expr] = STATE(2274), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1045), - [aux_sym_shebang_repeat1] = STATE(1053), - [aux_sym_ctrl_match_repeat1] = STATE(1069), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [sym__newline] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1046] = { - [sym_match_arm] = STATE(6928), - [sym_default_arm] = STATE(6928), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2343), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2169), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1046), - [aux_sym_shebang_repeat1] = STATE(1050), - [aux_sym_ctrl_match_repeat1] = STATE(1071), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [sym__newline] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(1034), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1047] = { - [sym_expr_parenthesized] = STATE(4605), - [sym_val_range] = STATE(5164), - [sym__val_range] = STATE(7970), - [sym__val_range_with_end] = STATE(7443), - [sym__value] = STATE(5164), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(4764), - [sym_val_variable] = STATE(4686), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(4098), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4768), - [sym__str_double_quotes] = STATE(4768), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym__unquoted_in_list] = STATE(4699), - [sym__unquoted_in_list_with_expr] = STATE(5164), - [sym__unquoted_anonymous_prefix] = STATE(7037), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2374), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2045), + [sym__unquoted_with_expr] = STATE(2171), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1047), - [aux_sym_shebang_repeat1] = STATE(1043), - [anon_sym_true] = ACTIONS(3556), - [anon_sym_false] = ACTIONS(3556), - [anon_sym_null] = ACTIONS(3558), - [aux_sym_cmd_identifier_token38] = ACTIONS(3560), - [aux_sym_cmd_identifier_token39] = ACTIONS(3560), - [aux_sym_cmd_identifier_token40] = ACTIONS(3560), - [sym__newline] = ACTIONS(3562), - [anon_sym_LBRACK] = ACTIONS(3564), - [anon_sym_LPAREN] = ACTIONS(3566), - [anon_sym_DOLLAR] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_DOT_DOT] = ACTIONS(3572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3574), - [anon_sym_DOT_DOT_LT] = ACTIONS(3574), - [aux_sym__val_number_decimal_token1] = ACTIONS(3576), - [aux_sym__val_number_decimal_token2] = ACTIONS(3578), - [aux_sym__val_number_decimal_token3] = ACTIONS(3580), - [aux_sym__val_number_decimal_token4] = ACTIONS(3582), - [aux_sym__val_number_token1] = ACTIONS(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3592), - [sym__str_single_quotes] = ACTIONS(3594), - [sym__str_back_ticks] = ACTIONS(3594), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3600), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3602), + [aux_sym_shebang_repeat1] = STATE(1036), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1048] = { - [sym_match_arm] = STATE(6854), - [sym_default_arm] = STATE(6854), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2353), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2192), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1048), - [aux_sym_shebang_repeat1] = STATE(1052), - [aux_sym_ctrl_match_repeat1] = STATE(1067), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [sym__newline] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_RBRACE] = ACTIONS(3640), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(1051), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1049] = { - [sym_match_arm] = STATE(7096), - [sym_default_arm] = STATE(7096), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2398), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2049), + [sym__unquoted_with_expr] = STATE(2277), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1049), - [aux_sym_shebang_repeat1] = STATE(1051), - [aux_sym_ctrl_match_repeat1] = STATE(1070), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [sym__newline] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1050] = { - [sym_match_arm] = STATE(7134), - [sym_default_arm] = STATE(7134), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2403), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2051), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1050), - [aux_sym_shebang_repeat1] = STATE(3007), - [aux_sym_ctrl_match_repeat1] = STATE(1073), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [sym__newline] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1051] = { - [sym_match_arm] = STATE(6907), - [sym_default_arm] = STATE(6907), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2407), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2060), + [sym__unquoted_with_expr] = STATE(2289), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1051), - [aux_sym_shebang_repeat1] = STATE(3007), - [aux_sym_ctrl_match_repeat1] = STATE(1068), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [sym__newline] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1052] = { - [sym_match_arm] = STATE(6793), - [sym_default_arm] = STATE(6793), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2424), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2073), + [sym__unquoted_with_expr] = STATE(2294), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1052), - [aux_sym_shebang_repeat1] = STATE(3007), - [aux_sym_ctrl_match_repeat1] = STATE(1065), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [sym__newline] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(970), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1053] = { - [sym_match_arm] = STATE(7133), - [sym_default_arm] = STATE(7133), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2430), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2077), + [sym__unquoted_with_expr] = STATE(2298), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1053), - [aux_sym_shebang_repeat1] = STATE(3007), - [aux_sym_ctrl_match_repeat1] = STATE(1072), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [sym__newline] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(971), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1054] = { - [sym_expr_parenthesized] = STATE(433), - [sym_val_range] = STATE(585), - [sym__val_range] = STATE(7689), - [sym__val_range_with_end] = STATE(7526), - [sym__value] = STATE(585), - [sym_val_nothing] = STATE(611), - [sym_val_bool] = STATE(469), - [sym_val_variable] = STATE(389), - [sym_val_number] = STATE(611), - [sym__val_number_decimal] = STATE(230), - [sym__val_number] = STATE(555), - [sym_val_duration] = STATE(611), - [sym_val_filesize] = STATE(611), - [sym_val_binary] = STATE(611), - [sym_val_string] = STATE(611), - [sym__raw_str] = STATE(623), - [sym__str_double_quotes] = STATE(623), - [sym_val_interpolated] = STATE(611), - [sym__inter_single_quotes] = STATE(593), - [sym__inter_double_quotes] = STATE(596), - [sym_val_list] = STATE(611), - [sym_val_record] = STATE(611), - [sym_val_table] = STATE(611), - [sym_val_closure] = STATE(611), - [sym__unquoted_in_record] = STATE(483), - [sym__unquoted_in_record_with_expr] = STATE(585), - [sym__unquoted_anonymous_prefix] = STATE(7112), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2432), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2078), + [sym__unquoted_with_expr] = STATE(2300), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1054), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [anon_sym_null] = ACTIONS(3646), - [aux_sym_cmd_identifier_token38] = ACTIONS(3648), - [aux_sym_cmd_identifier_token39] = ACTIONS(3648), - [aux_sym_cmd_identifier_token40] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3650), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_DOLLAR] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3658), - [anon_sym_DOT_DOT_LT] = ACTIONS(3658), - [aux_sym__val_number_decimal_token1] = ACTIONS(3660), - [aux_sym__val_number_decimal_token2] = ACTIONS(3662), - [aux_sym__val_number_decimal_token3] = ACTIONS(3664), - [aux_sym__val_number_decimal_token4] = ACTIONS(3666), - [aux_sym__val_number_token1] = ACTIONS(3668), - [aux_sym__val_number_token2] = ACTIONS(3668), - [aux_sym__val_number_token3] = ACTIONS(3668), - [anon_sym_0b] = ACTIONS(3670), - [anon_sym_0o] = ACTIONS(3672), - [anon_sym_0x] = ACTIONS(3672), - [sym_val_date] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(3676), - [sym__str_single_quotes] = ACTIONS(3678), - [sym__str_back_ticks] = ACTIONS(3678), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3680), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), - [anon_sym_err_GT] = ACTIONS(3684), - [anon_sym_out_GT] = ACTIONS(3684), - [anon_sym_e_GT] = ACTIONS(3684), - [anon_sym_o_GT] = ACTIONS(3684), - [anon_sym_err_PLUSout_GT] = ACTIONS(3684), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3684), - [anon_sym_o_PLUSe_GT] = ACTIONS(3684), - [anon_sym_e_PLUSo_GT] = ACTIONS(3684), - [anon_sym_err_GT_GT] = ACTIONS(3686), - [anon_sym_out_GT_GT] = ACTIONS(3686), - [anon_sym_e_GT_GT] = ACTIONS(3686), - [anon_sym_o_GT_GT] = ACTIONS(3686), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3686), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3686), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3686), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3686), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3688), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3690), + [aux_sym_shebang_repeat1] = STATE(972), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1055] = { - [sym_expr_parenthesized] = STATE(478), - [sym_val_range] = STATE(705), - [sym__val_range] = STATE(7913), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(705), - [sym_val_nothing] = STATE(651), - [sym_val_bool] = STATE(522), - [sym_val_variable] = STATE(454), - [sym_val_number] = STATE(651), - [sym__val_number_decimal] = STATE(244), - [sym__val_number] = STATE(660), - [sym_val_duration] = STATE(651), - [sym_val_filesize] = STATE(651), - [sym_val_binary] = STATE(651), - [sym_val_string] = STATE(651), - [sym__raw_str] = STATE(692), - [sym__str_double_quotes] = STATE(692), - [sym_val_interpolated] = STATE(651), - [sym__inter_single_quotes] = STATE(661), - [sym__inter_double_quotes] = STATE(662), - [sym_val_list] = STATE(651), - [sym_val_record] = STATE(651), - [sym_val_table] = STATE(651), - [sym_val_closure] = STATE(651), - [sym__unquoted_in_record] = STATE(521), - [sym__unquoted_in_record_with_expr] = STATE(705), - [sym__unquoted_anonymous_prefix] = STATE(6932), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2436), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2081), + [sym__unquoted_with_expr] = STATE(2301), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1055), - [anon_sym_true] = ACTIONS(3692), - [anon_sym_false] = ACTIONS(3692), - [anon_sym_null] = ACTIONS(3694), - [aux_sym_cmd_identifier_token38] = ACTIONS(3696), - [aux_sym_cmd_identifier_token39] = ACTIONS(3696), - [aux_sym_cmd_identifier_token40] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_DOLLAR] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3708), - [anon_sym_DOT_DOT_LT] = ACTIONS(3708), - [aux_sym__val_number_decimal_token1] = ACTIONS(3710), - [aux_sym__val_number_decimal_token2] = ACTIONS(3712), - [aux_sym__val_number_decimal_token3] = ACTIONS(3714), - [aux_sym__val_number_decimal_token4] = ACTIONS(3716), - [aux_sym__val_number_token1] = ACTIONS(3718), - [aux_sym__val_number_token2] = ACTIONS(3718), - [aux_sym__val_number_token3] = ACTIONS(3718), - [anon_sym_0b] = ACTIONS(3720), - [anon_sym_0o] = ACTIONS(3722), - [anon_sym_0x] = ACTIONS(3722), - [sym_val_date] = ACTIONS(3724), - [anon_sym_DQUOTE] = ACTIONS(3726), - [sym__str_single_quotes] = ACTIONS(3728), - [sym__str_back_ticks] = ACTIONS(3728), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3730), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3732), - [anon_sym_err_GT] = ACTIONS(3684), - [anon_sym_out_GT] = ACTIONS(3684), - [anon_sym_e_GT] = ACTIONS(3684), - [anon_sym_o_GT] = ACTIONS(3684), - [anon_sym_err_PLUSout_GT] = ACTIONS(3684), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3684), - [anon_sym_o_PLUSe_GT] = ACTIONS(3684), - [anon_sym_e_PLUSo_GT] = ACTIONS(3684), - [anon_sym_err_GT_GT] = ACTIONS(3686), - [anon_sym_out_GT_GT] = ACTIONS(3686), - [anon_sym_e_GT_GT] = ACTIONS(3686), - [anon_sym_o_GT_GT] = ACTIONS(3686), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3686), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3686), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3686), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3686), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3734), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3736), + [aux_sym_shebang_repeat1] = STATE(1025), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1056] = { - [sym_expr_parenthesized] = STATE(430), - [sym_val_range] = STATE(579), - [sym__val_range] = STATE(7689), - [sym__val_range_with_end] = STATE(7526), - [sym__value] = STATE(579), - [sym_val_nothing] = STATE(611), - [sym_val_bool] = STATE(469), - [sym_val_variable] = STATE(389), - [sym_val_number] = STATE(611), - [sym__val_number_decimal] = STATE(230), - [sym__val_number] = STATE(555), - [sym_val_duration] = STATE(611), - [sym_val_filesize] = STATE(611), - [sym_val_binary] = STATE(611), - [sym_val_string] = STATE(611), - [sym__raw_str] = STATE(623), - [sym__str_double_quotes] = STATE(623), - [sym_val_interpolated] = STATE(611), - [sym__inter_single_quotes] = STATE(593), - [sym__inter_double_quotes] = STATE(596), - [sym_val_list] = STATE(611), - [sym_val_record] = STATE(611), - [sym_val_table] = STATE(611), - [sym_val_closure] = STATE(611), - [sym__unquoted_in_record] = STATE(481), - [sym__unquoted_in_record_with_expr] = STATE(579), - [sym__unquoted_anonymous_prefix] = STATE(7112), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2443), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2082), + [sym__unquoted_with_expr] = STATE(2304), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1056), - [anon_sym_true] = ACTIONS(3644), - [anon_sym_false] = ACTIONS(3644), - [anon_sym_null] = ACTIONS(3646), - [aux_sym_cmd_identifier_token38] = ACTIONS(3648), - [aux_sym_cmd_identifier_token39] = ACTIONS(3648), - [aux_sym_cmd_identifier_token40] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3650), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_DOLLAR] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_DOT_DOT] = ACTIONS(3656), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3658), - [anon_sym_DOT_DOT_LT] = ACTIONS(3658), - [aux_sym__val_number_decimal_token1] = ACTIONS(3660), - [aux_sym__val_number_decimal_token2] = ACTIONS(3662), - [aux_sym__val_number_decimal_token3] = ACTIONS(3664), - [aux_sym__val_number_decimal_token4] = ACTIONS(3666), - [aux_sym__val_number_token1] = ACTIONS(3668), - [aux_sym__val_number_token2] = ACTIONS(3668), - [aux_sym__val_number_token3] = ACTIONS(3668), - [anon_sym_0b] = ACTIONS(3670), - [anon_sym_0o] = ACTIONS(3672), - [anon_sym_0x] = ACTIONS(3672), - [sym_val_date] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(3676), - [sym__str_single_quotes] = ACTIONS(3678), - [sym__str_back_ticks] = ACTIONS(3678), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3680), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), - [anon_sym_err_GT] = ACTIONS(3684), - [anon_sym_out_GT] = ACTIONS(3684), - [anon_sym_e_GT] = ACTIONS(3684), - [anon_sym_o_GT] = ACTIONS(3684), - [anon_sym_err_PLUSout_GT] = ACTIONS(3684), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3684), - [anon_sym_o_PLUSe_GT] = ACTIONS(3684), - [anon_sym_e_PLUSo_GT] = ACTIONS(3684), - [anon_sym_err_GT_GT] = ACTIONS(3686), - [anon_sym_out_GT_GT] = ACTIONS(3686), - [anon_sym_e_GT_GT] = ACTIONS(3686), - [anon_sym_o_GT_GT] = ACTIONS(3686), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3686), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3686), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3686), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3686), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3688), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3690), + [aux_sym_shebang_repeat1] = STATE(1026), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1057] = { - [sym_expr_parenthesized] = STATE(6097), - [sym_val_range] = STATE(7542), - [sym__val_range] = STATE(7803), - [sym__val_range_with_end] = STATE(7568), - [sym__value] = STATE(7542), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6747), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5355), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(6921), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_record] = STATE(6233), - [sym__unquoted_in_record_with_expr] = STATE(7542), - [sym__unquoted_anonymous_prefix] = STATE(7349), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2350), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2216), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1057), - [anon_sym_true] = ACTIONS(3738), - [anon_sym_false] = ACTIONS(3738), - [anon_sym_null] = ACTIONS(3740), - [aux_sym_cmd_identifier_token38] = ACTIONS(3742), - [aux_sym_cmd_identifier_token39] = ACTIONS(3742), - [aux_sym_cmd_identifier_token40] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3744), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3746), - [anon_sym_DOT_DOT_LT] = ACTIONS(3746), - [aux_sym__val_number_decimal_token1] = ACTIONS(3748), - [aux_sym__val_number_decimal_token2] = ACTIONS(3750), - [aux_sym__val_number_decimal_token3] = ACTIONS(3752), - [aux_sym__val_number_decimal_token4] = ACTIONS(3754), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3756), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_err_GT] = ACTIONS(3684), - [anon_sym_out_GT] = ACTIONS(3684), - [anon_sym_e_GT] = ACTIONS(3684), - [anon_sym_o_GT] = ACTIONS(3684), - [anon_sym_err_PLUSout_GT] = ACTIONS(3684), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3684), - [anon_sym_o_PLUSe_GT] = ACTIONS(3684), - [anon_sym_e_PLUSo_GT] = ACTIONS(3684), - [anon_sym_err_GT_GT] = ACTIONS(3686), - [anon_sym_out_GT_GT] = ACTIONS(3686), - [anon_sym_e_GT_GT] = ACTIONS(3686), - [anon_sym_o_GT_GT] = ACTIONS(3686), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3686), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3686), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3686), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3686), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3758), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [aux_sym_shebang_repeat1] = STATE(1027), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1058] = { - [sym_expr_parenthesized] = STATE(6046), - [sym_val_range] = STATE(7519), - [sym__val_range] = STATE(7803), - [sym__val_range_with_end] = STATE(7568), - [sym__value] = STATE(7519), - [sym_val_nothing] = STATE(6921), - [sym_val_bool] = STATE(6747), - [sym_val_variable] = STATE(5774), - [sym_val_number] = STATE(6921), - [sym__val_number_decimal] = STATE(5355), - [sym__val_number] = STATE(7088), - [sym_val_duration] = STATE(6921), - [sym_val_filesize] = STATE(6921), - [sym_val_binary] = STATE(6921), - [sym_val_string] = STATE(6921), - [sym__raw_str] = STATE(5521), - [sym__str_double_quotes] = STATE(5521), - [sym_val_interpolated] = STATE(6921), - [sym__inter_single_quotes] = STATE(7044), - [sym__inter_double_quotes] = STATE(7055), - [sym_val_list] = STATE(6921), - [sym_val_record] = STATE(6921), - [sym_val_table] = STATE(6921), - [sym_val_closure] = STATE(6921), - [sym__unquoted_in_record] = STATE(6224), - [sym__unquoted_in_record_with_expr] = STATE(7519), - [sym__unquoted_anonymous_prefix] = STATE(7349), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2309), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2183), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1058), - [anon_sym_true] = ACTIONS(3738), - [anon_sym_false] = ACTIONS(3738), - [anon_sym_null] = ACTIONS(3740), - [aux_sym_cmd_identifier_token38] = ACTIONS(3742), - [aux_sym_cmd_identifier_token39] = ACTIONS(3742), - [aux_sym_cmd_identifier_token40] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_DOLLAR] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_DOT_DOT] = ACTIONS(3744), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3746), - [anon_sym_DOT_DOT_LT] = ACTIONS(3746), - [aux_sym__val_number_decimal_token1] = ACTIONS(3748), - [aux_sym__val_number_decimal_token2] = ACTIONS(3750), - [aux_sym__val_number_decimal_token3] = ACTIONS(3752), - [aux_sym__val_number_decimal_token4] = ACTIONS(3754), - [aux_sym__val_number_token1] = ACTIONS(3060), - [aux_sym__val_number_token2] = ACTIONS(3060), - [aux_sym__val_number_token3] = ACTIONS(3060), - [anon_sym_0b] = ACTIONS(3062), - [anon_sym_0o] = ACTIONS(3064), - [anon_sym_0x] = ACTIONS(3064), - [sym_val_date] = ACTIONS(3756), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym__str_single_quotes] = ACTIONS(3070), - [sym__str_back_ticks] = ACTIONS(3070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [anon_sym_err_GT] = ACTIONS(3684), - [anon_sym_out_GT] = ACTIONS(3684), - [anon_sym_e_GT] = ACTIONS(3684), - [anon_sym_o_GT] = ACTIONS(3684), - [anon_sym_err_PLUSout_GT] = ACTIONS(3684), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3684), - [anon_sym_o_PLUSe_GT] = ACTIONS(3684), - [anon_sym_e_PLUSo_GT] = ACTIONS(3684), - [anon_sym_err_GT_GT] = ACTIONS(3686), - [anon_sym_out_GT_GT] = ACTIONS(3686), - [anon_sym_e_GT_GT] = ACTIONS(3686), - [anon_sym_o_GT_GT] = ACTIONS(3686), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3686), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3686), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3686), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3686), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3758), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3074), + [aux_sym_shebang_repeat1] = STATE(1028), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1059] = { - [sym_expr_parenthesized] = STATE(501), - [sym_val_range] = STATE(703), - [sym__val_range] = STATE(7913), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(703), - [sym_val_nothing] = STATE(651), - [sym_val_bool] = STATE(522), - [sym_val_variable] = STATE(454), - [sym_val_number] = STATE(651), - [sym__val_number_decimal] = STATE(244), - [sym__val_number] = STATE(660), - [sym_val_duration] = STATE(651), - [sym_val_filesize] = STATE(651), - [sym_val_binary] = STATE(651), - [sym_val_string] = STATE(651), - [sym__raw_str] = STATE(692), - [sym__str_double_quotes] = STATE(692), - [sym_val_interpolated] = STATE(651), - [sym__inter_single_quotes] = STATE(661), - [sym__inter_double_quotes] = STATE(662), - [sym_val_list] = STATE(651), - [sym_val_record] = STATE(651), - [sym_val_table] = STATE(651), - [sym_val_closure] = STATE(651), - [sym__unquoted_in_record] = STATE(519), - [sym__unquoted_in_record_with_expr] = STATE(703), - [sym__unquoted_anonymous_prefix] = STATE(6932), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2355), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2072), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1059), - [anon_sym_true] = ACTIONS(3692), - [anon_sym_false] = ACTIONS(3692), - [anon_sym_null] = ACTIONS(3694), - [aux_sym_cmd_identifier_token38] = ACTIONS(3696), - [aux_sym_cmd_identifier_token39] = ACTIONS(3696), - [aux_sym_cmd_identifier_token40] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_DOLLAR] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3704), - [anon_sym_DOT_DOT] = ACTIONS(3706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3708), - [anon_sym_DOT_DOT_LT] = ACTIONS(3708), - [aux_sym__val_number_decimal_token1] = ACTIONS(3710), - [aux_sym__val_number_decimal_token2] = ACTIONS(3712), - [aux_sym__val_number_decimal_token3] = ACTIONS(3714), - [aux_sym__val_number_decimal_token4] = ACTIONS(3716), - [aux_sym__val_number_token1] = ACTIONS(3718), - [aux_sym__val_number_token2] = ACTIONS(3718), - [aux_sym__val_number_token3] = ACTIONS(3718), - [anon_sym_0b] = ACTIONS(3720), - [anon_sym_0o] = ACTIONS(3722), - [anon_sym_0x] = ACTIONS(3722), - [sym_val_date] = ACTIONS(3724), - [anon_sym_DQUOTE] = ACTIONS(3726), - [sym__str_single_quotes] = ACTIONS(3728), - [sym__str_back_ticks] = ACTIONS(3728), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3730), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3732), - [anon_sym_err_GT] = ACTIONS(3684), - [anon_sym_out_GT] = ACTIONS(3684), - [anon_sym_e_GT] = ACTIONS(3684), - [anon_sym_o_GT] = ACTIONS(3684), - [anon_sym_err_PLUSout_GT] = ACTIONS(3684), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3684), - [anon_sym_o_PLUSe_GT] = ACTIONS(3684), - [anon_sym_e_PLUSo_GT] = ACTIONS(3684), - [anon_sym_err_GT_GT] = ACTIONS(3686), - [anon_sym_out_GT_GT] = ACTIONS(3686), - [anon_sym_e_GT_GT] = ACTIONS(3686), - [anon_sym_o_GT_GT] = ACTIONS(3686), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3686), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3686), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3686), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3686), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3734), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3736), + [aux_sym_shebang_repeat1] = STATE(1029), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1060] = { - [sym__match_pattern_expression] = STATE(3083), - [sym__match_pattern_value] = STATE(3079), - [sym__match_pattern_list] = STATE(3092), - [sym__match_pattern_rest] = STATE(7898), - [sym__match_pattern_record] = STATE(3125), - [sym_expr_parenthesized] = STATE(2897), - [sym_val_range] = STATE(3079), - [sym__val_range] = STATE(7928), - [sym_val_nothing] = STATE(3054), - [sym_val_bool] = STATE(3042), - [sym_val_variable] = STATE(2873), - [sym_val_number] = STATE(3054), - [sym__val_number_decimal] = STATE(2687), - [sym__val_number] = STATE(3094), - [sym_val_duration] = STATE(3054), - [sym_val_filesize] = STATE(3054), - [sym_val_binary] = STATE(3054), - [sym_val_string] = STATE(3054), - [sym__raw_str] = STATE(3122), - [sym__str_double_quotes] = STATE(3122), - [sym_val_list] = STATE(7637), - [sym_val_table] = STATE(3054), - [sym__unquoted_in_list] = STATE(3083), - [sym__unquoted_anonymous_prefix] = STATE(7845), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2177), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2035), + [sym__unquoted_with_expr] = STATE(2196), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1060), - [aux_sym_shebang_repeat1] = STATE(6733), - [aux_sym__match_pattern_list_repeat1] = STATE(1148), - [anon_sym_true] = ACTIONS(3760), - [anon_sym_false] = ACTIONS(3760), - [anon_sym_null] = ACTIONS(3762), - [aux_sym_cmd_identifier_token38] = ACTIONS(3764), - [aux_sym_cmd_identifier_token39] = ACTIONS(3764), - [aux_sym_cmd_identifier_token40] = ACTIONS(3764), - [sym__newline] = ACTIONS(3766), - [anon_sym_LBRACK] = ACTIONS(3768), - [anon_sym_RBRACK] = ACTIONS(3770), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_DOLLAR] = ACTIONS(3774), - [anon_sym_LBRACE] = ACTIONS(3776), - [anon_sym_DOT_DOT] = ACTIONS(3778), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3780), - [anon_sym_DOT_DOT_LT] = ACTIONS(3780), - [aux_sym__val_number_decimal_token1] = ACTIONS(3782), - [aux_sym__val_number_decimal_token2] = ACTIONS(3784), - [aux_sym__val_number_decimal_token3] = ACTIONS(3786), - [aux_sym__val_number_decimal_token4] = ACTIONS(3788), - [aux_sym__val_number_token1] = ACTIONS(3790), - [aux_sym__val_number_token2] = ACTIONS(3790), - [aux_sym__val_number_token3] = ACTIONS(3790), - [anon_sym_0b] = ACTIONS(3792), - [anon_sym_0o] = ACTIONS(3794), - [anon_sym_0x] = ACTIONS(3794), - [sym_val_date] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3798), - [sym__str_single_quotes] = ACTIONS(3800), - [sym__str_back_ticks] = ACTIONS(3800), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3802), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3804), + [aux_sym_shebang_repeat1] = STATE(1033), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1061] = { - [sym__match_pattern_expression] = STATE(3083), - [sym__match_pattern_value] = STATE(3079), - [sym__match_pattern_list] = STATE(3092), - [sym__match_pattern_rest] = STATE(7626), - [sym__match_pattern_record] = STATE(3125), - [sym_expr_parenthesized] = STATE(2897), - [sym_val_range] = STATE(3079), - [sym__val_range] = STATE(7928), - [sym_val_nothing] = STATE(3054), - [sym_val_bool] = STATE(3042), - [sym_val_variable] = STATE(2873), - [sym_val_number] = STATE(3054), - [sym__val_number_decimal] = STATE(2687), - [sym__val_number] = STATE(3094), - [sym_val_duration] = STATE(3054), - [sym_val_filesize] = STATE(3054), - [sym_val_binary] = STATE(3054), - [sym_val_string] = STATE(3054), - [sym__raw_str] = STATE(3122), - [sym__str_double_quotes] = STATE(3122), - [sym_val_list] = STATE(7611), - [sym_val_table] = STATE(3054), - [sym__unquoted_in_list] = STATE(3083), - [sym__unquoted_anonymous_prefix] = STATE(7845), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2404), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2041), + [sym__unquoted_with_expr] = STATE(2223), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1061), - [aux_sym_shebang_repeat1] = STATE(6469), - [aux_sym__match_pattern_list_repeat1] = STATE(1102), - [anon_sym_true] = ACTIONS(3760), - [anon_sym_false] = ACTIONS(3760), - [anon_sym_null] = ACTIONS(3762), - [aux_sym_cmd_identifier_token38] = ACTIONS(3764), - [aux_sym_cmd_identifier_token39] = ACTIONS(3764), - [aux_sym_cmd_identifier_token40] = ACTIONS(3764), - [sym__newline] = ACTIONS(3766), - [anon_sym_LBRACK] = ACTIONS(3768), - [anon_sym_RBRACK] = ACTIONS(3806), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_DOLLAR] = ACTIONS(3774), - [anon_sym_LBRACE] = ACTIONS(3776), - [anon_sym_DOT_DOT] = ACTIONS(3808), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3780), - [anon_sym_DOT_DOT_LT] = ACTIONS(3780), - [aux_sym__val_number_decimal_token1] = ACTIONS(3782), - [aux_sym__val_number_decimal_token2] = ACTIONS(3784), - [aux_sym__val_number_decimal_token3] = ACTIONS(3786), - [aux_sym__val_number_decimal_token4] = ACTIONS(3788), - [aux_sym__val_number_token1] = ACTIONS(3790), - [aux_sym__val_number_token2] = ACTIONS(3790), - [aux_sym__val_number_token3] = ACTIONS(3790), - [anon_sym_0b] = ACTIONS(3792), - [anon_sym_0o] = ACTIONS(3794), - [anon_sym_0x] = ACTIONS(3794), - [sym_val_date] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3798), - [sym__str_single_quotes] = ACTIONS(3800), - [sym__str_back_ticks] = ACTIONS(3800), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3802), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3804), + [aux_sym_shebang_repeat1] = STATE(1035), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1062] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2314), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1986), + [sym__unquoted_with_expr] = STATE(2220), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1062), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1062), - [aux_sym_cmd_identifier_token1] = ACTIONS(3810), - [aux_sym_cmd_identifier_token2] = ACTIONS(3810), - [aux_sym_cmd_identifier_token3] = ACTIONS(3810), - [aux_sym_cmd_identifier_token4] = ACTIONS(3810), - [aux_sym_cmd_identifier_token5] = ACTIONS(3810), - [aux_sym_cmd_identifier_token6] = ACTIONS(3810), - [aux_sym_cmd_identifier_token7] = ACTIONS(3810), - [aux_sym_cmd_identifier_token8] = ACTIONS(3810), - [aux_sym_cmd_identifier_token9] = ACTIONS(3810), - [aux_sym_cmd_identifier_token10] = ACTIONS(3810), - [aux_sym_cmd_identifier_token11] = ACTIONS(3810), - [aux_sym_cmd_identifier_token12] = ACTIONS(3810), - [aux_sym_cmd_identifier_token13] = ACTIONS(3810), - [aux_sym_cmd_identifier_token14] = ACTIONS(3810), - [aux_sym_cmd_identifier_token15] = ACTIONS(3810), - [aux_sym_cmd_identifier_token16] = ACTIONS(3810), - [aux_sym_cmd_identifier_token17] = ACTIONS(3810), - [aux_sym_cmd_identifier_token18] = ACTIONS(3810), - [aux_sym_cmd_identifier_token19] = ACTIONS(3810), - [aux_sym_cmd_identifier_token20] = ACTIONS(3810), - [aux_sym_cmd_identifier_token21] = ACTIONS(3810), - [aux_sym_cmd_identifier_token22] = ACTIONS(3810), - [aux_sym_cmd_identifier_token23] = ACTIONS(3810), - [aux_sym_cmd_identifier_token24] = ACTIONS(3810), - [aux_sym_cmd_identifier_token25] = ACTIONS(3810), - [aux_sym_cmd_identifier_token26] = ACTIONS(3810), - [aux_sym_cmd_identifier_token27] = ACTIONS(3810), - [aux_sym_cmd_identifier_token28] = ACTIONS(3810), - [aux_sym_cmd_identifier_token29] = ACTIONS(3810), - [aux_sym_cmd_identifier_token30] = ACTIONS(3810), - [aux_sym_cmd_identifier_token31] = ACTIONS(3810), - [aux_sym_cmd_identifier_token32] = ACTIONS(3810), - [aux_sym_cmd_identifier_token33] = ACTIONS(3810), - [aux_sym_cmd_identifier_token34] = ACTIONS(3810), - [aux_sym_cmd_identifier_token35] = ACTIONS(3810), - [aux_sym_cmd_identifier_token36] = ACTIONS(3810), - [anon_sym_true] = ACTIONS(3810), - [anon_sym_false] = ACTIONS(3810), - [anon_sym_null] = ACTIONS(3810), - [aux_sym_cmd_identifier_token38] = ACTIONS(3810), - [aux_sym_cmd_identifier_token39] = ACTIONS(3810), - [aux_sym_cmd_identifier_token40] = ACTIONS(3810), - [sym__newline] = ACTIONS(3812), - [sym__space] = ACTIONS(3815), - [anon_sym_LBRACK] = ACTIONS(3810), - [anon_sym_LPAREN] = ACTIONS(3810), - [anon_sym_DOLLAR] = ACTIONS(3810), - [anon_sym_DASH] = ACTIONS(3810), - [anon_sym_LBRACE] = ACTIONS(3810), - [anon_sym_DOT_DOT] = ACTIONS(3810), - [aux_sym_expr_unary_token1] = ACTIONS(3810), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3810), - [anon_sym_DOT_DOT_LT] = ACTIONS(3810), - [aux_sym__val_number_decimal_token1] = ACTIONS(3810), - [aux_sym__val_number_decimal_token2] = ACTIONS(3810), - [aux_sym__val_number_decimal_token3] = ACTIONS(3810), - [aux_sym__val_number_decimal_token4] = ACTIONS(3810), - [aux_sym__val_number_token1] = ACTIONS(3810), - [aux_sym__val_number_token2] = ACTIONS(3810), - [aux_sym__val_number_token3] = ACTIONS(3810), - [anon_sym_0b] = ACTIONS(3810), - [anon_sym_0o] = ACTIONS(3810), - [anon_sym_0x] = ACTIONS(3810), - [sym_val_date] = ACTIONS(3810), - [anon_sym_DQUOTE] = ACTIONS(3810), - [sym__str_single_quotes] = ACTIONS(3810), - [sym__str_back_ticks] = ACTIONS(3810), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3810), - [aux_sym_env_var_token1] = ACTIONS(3810), - [anon_sym_CARET] = ACTIONS(3810), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3818), + [aux_sym_shebang_repeat1] = STATE(1038), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1063] = { + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2420), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2026), + [sym__unquoted_with_expr] = STATE(2163), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1063), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1062), - [aux_sym_cmd_identifier_token1] = ACTIONS(3820), - [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(3820), - [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(3820), - [aux_sym_cmd_identifier_token14] = ACTIONS(3820), - [aux_sym_cmd_identifier_token15] = ACTIONS(3820), - [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(3820), - [anon_sym_true] = ACTIONS(3820), - [anon_sym_false] = ACTIONS(3820), - [anon_sym_null] = ACTIONS(3820), - [aux_sym_cmd_identifier_token38] = ACTIONS(3820), - [aux_sym_cmd_identifier_token39] = ACTIONS(3820), - [aux_sym_cmd_identifier_token40] = ACTIONS(3820), - [sym__newline] = ACTIONS(3822), - [sym__space] = ACTIONS(3824), - [anon_sym_LBRACK] = ACTIONS(3820), - [anon_sym_LPAREN] = ACTIONS(3820), - [anon_sym_DOLLAR] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3820), - [anon_sym_LBRACE] = ACTIONS(3820), - [anon_sym_DOT_DOT] = ACTIONS(3820), - [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(3820), - [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(3820), - [anon_sym_0o] = ACTIONS(3820), - [anon_sym_0x] = ACTIONS(3820), - [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(3820), - [anon_sym_CARET] = ACTIONS(3820), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3826), + [aux_sym_shebang_repeat1] = STATE(1040), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1064] = { - [sym_expr_parenthesized] = STATE(6655), - [sym_val_range] = STATE(7881), - [sym__val_range] = STATE(7794), - [sym__value] = STATE(7881), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(3649), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(5638), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(7885), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(2367), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2011), + [sym__unquoted_with_expr] = STATE(2180), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1064), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3828), - [aux_sym_cmd_identifier_token39] = ACTIONS(3828), - [aux_sym_cmd_identifier_token40] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(3832), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_DOT_DOT] = ACTIONS(3838), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3840), - [anon_sym_DOT_DOT_LT] = ACTIONS(3840), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_record_entry_token1] = ACTIONS(3294), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [aux_sym_shebang_repeat1] = STATE(1044), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1065] = { - [sym_match_arm] = STATE(7083), - [sym_default_arm] = STATE(7083), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2362), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary_parenthesized] = STATE(2362), + [sym__expr_binary_expression_parenthesized] = STATE(3228), + [sym_expr_parenthesized] = STATE(2362), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2362), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(2043), + [sym__unquoted_with_expr] = STATE(2267), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1065), - [aux_sym_ctrl_match_repeat1] = STATE(1066), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [aux_sym_shebang_repeat1] = STATE(2785), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1066] = { - [sym_match_arm] = STATE(7407), - [sym_default_arm] = STATE(7407), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_ctrl_do] = STATE(4987), + [sym_ctrl_if] = STATE(4987), + [sym_ctrl_match] = STATE(4987), + [sym_ctrl_try] = STATE(4987), + [sym__expression] = STATE(4987), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3969), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3152), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), [sym_comment] = STATE(1066), - [aux_sym_ctrl_match_repeat1] = STATE(1066), - [anon_sym_true] = ACTIONS(3850), - [anon_sym_false] = ACTIONS(3850), - [anon_sym_null] = ACTIONS(3853), - [aux_sym_cmd_identifier_token38] = ACTIONS(3856), - [aux_sym_cmd_identifier_token39] = ACTIONS(3856), - [aux_sym_cmd_identifier_token40] = ACTIONS(3856), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_LPAREN] = ACTIONS(3862), - [anon_sym_DOLLAR] = ACTIONS(3865), - [anon_sym_LBRACE] = ACTIONS(3868), - [anon_sym__] = ACTIONS(3871), - [anon_sym_DOT_DOT] = ACTIONS(3874), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3877), - [anon_sym_DOT_DOT_LT] = ACTIONS(3877), - [aux_sym__val_number_decimal_token1] = ACTIONS(3880), - [aux_sym__val_number_decimal_token2] = ACTIONS(3883), - [aux_sym__val_number_decimal_token3] = ACTIONS(3886), - [aux_sym__val_number_decimal_token4] = ACTIONS(3889), - [aux_sym__val_number_token1] = ACTIONS(3892), - [aux_sym__val_number_token2] = ACTIONS(3892), - [aux_sym__val_number_token3] = ACTIONS(3892), - [anon_sym_0b] = ACTIONS(3895), - [anon_sym_0o] = ACTIONS(3898), - [anon_sym_0x] = ACTIONS(3898), - [sym_val_date] = ACTIONS(3901), - [anon_sym_DQUOTE] = ACTIONS(3904), - [sym__str_single_quotes] = ACTIONS(3907), - [sym__str_back_ticks] = ACTIONS(3907), - [anon_sym_err_GT] = ACTIONS(3910), - [anon_sym_out_GT] = ACTIONS(3910), - [anon_sym_e_GT] = ACTIONS(3910), - [anon_sym_o_GT] = ACTIONS(3910), - [anon_sym_err_PLUSout_GT] = ACTIONS(3910), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), - [anon_sym_o_PLUSe_GT] = ACTIONS(3910), - [anon_sym_e_PLUSo_GT] = ACTIONS(3910), - [anon_sym_err_GT_GT] = ACTIONS(3913), - [anon_sym_out_GT_GT] = ACTIONS(3913), - [anon_sym_e_GT_GT] = ACTIONS(3913), - [anon_sym_o_GT_GT] = ACTIONS(3913), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3913), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3913), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3913), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3913), - [aux_sym_unquoted_token1] = ACTIONS(3916), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3919), + [sym__newline] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_err_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_GT_PIPE] = ACTIONS(3349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3357), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(427), + [aux_sym__val_number_token5] = ACTIONS(427), + [aux_sym__val_number_token6] = ACTIONS(427), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_record_entry_token1] = ACTIONS(3363), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1067] = { - [sym_match_arm] = STATE(6793), - [sym_default_arm] = STATE(6793), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_ctrl_do] = STATE(4987), + [sym_ctrl_if] = STATE(4987), + [sym_ctrl_match] = STATE(4987), + [sym_ctrl_try] = STATE(4987), + [sym__expression] = STATE(4987), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3969), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3152), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), [sym_comment] = STATE(1067), - [aux_sym_ctrl_match_repeat1] = STATE(1066), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [sym__newline] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_err_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_GT_PIPE] = ACTIONS(3349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3357), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(427), + [aux_sym__val_number_token5] = ACTIONS(427), + [aux_sym__val_number_token6] = ACTIONS(427), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_record_entry_token1] = ACTIONS(3365), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1068] = { - [sym_match_arm] = STATE(7105), - [sym_default_arm] = STATE(7105), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3937), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1861), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1068), - [aux_sym_ctrl_match_repeat1] = STATE(1066), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1069] = { - [sym_match_arm] = STATE(7133), - [sym_default_arm] = STATE(7133), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3940), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1860), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1069), - [aux_sym_ctrl_match_repeat1] = STATE(1066), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1070] = { - [sym_match_arm] = STATE(6907), - [sym_default_arm] = STATE(6907), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2448), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2261), + [sym__unquoted_with_expr] = STATE(2459), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1070), - [aux_sym_ctrl_match_repeat1] = STATE(1066), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1071] = { - [sym_match_arm] = STATE(7134), - [sym_default_arm] = STATE(7134), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3929), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1862), + [sym__unquoted_with_expr] = STATE(2099), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1071), - [aux_sym_ctrl_match_repeat1] = STATE(1066), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1072] = { - [sym_match_arm] = STATE(7187), - [sym_default_arm] = STATE(7187), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3934), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1072), - [aux_sym_ctrl_match_repeat1] = STATE(1066), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1073] = { - [sym_match_arm] = STATE(7189), - [sym_default_arm] = STATE(7189), - [sym_match_pattern] = STATE(7768), - [sym__match_pattern] = STATE(5996), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7854), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6204), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5395), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3938), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1864), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1073), - [aux_sym_ctrl_match_repeat1] = STATE(1066), - [anon_sym_true] = ACTIONS(3604), - [anon_sym_false] = ACTIONS(3604), - [anon_sym_null] = ACTIONS(3606), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym__] = ACTIONS(3622), - [anon_sym_DOT_DOT] = ACTIONS(3624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), - [anon_sym_DOT_DOT_LT] = ACTIONS(3626), - [aux_sym__val_number_decimal_token1] = ACTIONS(3628), - [aux_sym__val_number_decimal_token2] = ACTIONS(3630), - [aux_sym__val_number_decimal_token3] = ACTIONS(3632), - [aux_sym__val_number_decimal_token4] = ACTIONS(3634), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1074] = { - [sym_expr_parenthesized] = STATE(6655), - [sym_val_range] = STATE(7881), - [sym__val_range] = STATE(7794), - [sym__value] = STATE(7881), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(3649), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(5638), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(7885), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3920), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1865), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1074), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3828), - [aux_sym_cmd_identifier_token39] = ACTIONS(3828), - [aux_sym_cmd_identifier_token40] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(3832), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_DOT_DOT] = ACTIONS(3838), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3840), - [anon_sym_DOT_DOT_LT] = ACTIONS(3840), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [aux_sym_record_entry_token1] = ACTIONS(3296), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1075] = { - [sym_env_var] = STATE(7513), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2103), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1866), + [sym__unquoted_with_expr] = STATE(2104), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1075), - [aux_sym_pipe_element_repeat2] = STATE(1075), - [aux_sym_cmd_identifier_token1] = ACTIONS(3922), - [aux_sym_cmd_identifier_token2] = ACTIONS(3924), - [aux_sym_cmd_identifier_token3] = ACTIONS(3924), - [aux_sym_cmd_identifier_token4] = ACTIONS(3924), - [aux_sym_cmd_identifier_token5] = ACTIONS(3924), - [aux_sym_cmd_identifier_token6] = ACTIONS(3924), - [aux_sym_cmd_identifier_token7] = ACTIONS(3924), - [aux_sym_cmd_identifier_token8] = ACTIONS(3924), - [aux_sym_cmd_identifier_token9] = ACTIONS(3922), - [aux_sym_cmd_identifier_token10] = ACTIONS(3924), - [aux_sym_cmd_identifier_token11] = ACTIONS(3924), - [aux_sym_cmd_identifier_token12] = ACTIONS(3924), - [aux_sym_cmd_identifier_token13] = ACTIONS(3922), - [aux_sym_cmd_identifier_token14] = ACTIONS(3924), - [aux_sym_cmd_identifier_token15] = ACTIONS(3922), - [aux_sym_cmd_identifier_token16] = ACTIONS(3924), - [aux_sym_cmd_identifier_token17] = ACTIONS(3924), - [aux_sym_cmd_identifier_token18] = ACTIONS(3924), - [aux_sym_cmd_identifier_token19] = ACTIONS(3924), - [aux_sym_cmd_identifier_token20] = ACTIONS(3924), - [aux_sym_cmd_identifier_token21] = ACTIONS(3924), - [aux_sym_cmd_identifier_token22] = ACTIONS(3924), - [aux_sym_cmd_identifier_token23] = ACTIONS(3924), - [aux_sym_cmd_identifier_token24] = ACTIONS(3924), - [aux_sym_cmd_identifier_token25] = ACTIONS(3924), - [aux_sym_cmd_identifier_token26] = ACTIONS(3924), - [aux_sym_cmd_identifier_token27] = ACTIONS(3924), - [aux_sym_cmd_identifier_token28] = ACTIONS(3924), - [aux_sym_cmd_identifier_token29] = ACTIONS(3924), - [aux_sym_cmd_identifier_token30] = ACTIONS(3924), - [aux_sym_cmd_identifier_token31] = ACTIONS(3924), - [aux_sym_cmd_identifier_token32] = ACTIONS(3924), - [aux_sym_cmd_identifier_token33] = ACTIONS(3924), - [aux_sym_cmd_identifier_token34] = ACTIONS(3924), - [aux_sym_cmd_identifier_token35] = ACTIONS(3924), - [aux_sym_cmd_identifier_token36] = ACTIONS(3922), - [anon_sym_true] = ACTIONS(3924), - [anon_sym_false] = ACTIONS(3924), - [anon_sym_null] = ACTIONS(3924), - [aux_sym_cmd_identifier_token38] = ACTIONS(3922), - [aux_sym_cmd_identifier_token39] = ACTIONS(3924), - [aux_sym_cmd_identifier_token40] = ACTIONS(3924), - [anon_sym_LBRACK] = ACTIONS(3924), - [anon_sym_LPAREN] = ACTIONS(3924), - [anon_sym_DOLLAR] = ACTIONS(3922), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_DOT_DOT] = ACTIONS(3922), - [aux_sym_expr_unary_token1] = ACTIONS(3924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3924), - [anon_sym_DOT_DOT_LT] = ACTIONS(3924), - [aux_sym__val_number_decimal_token1] = ACTIONS(3922), - [aux_sym__val_number_decimal_token2] = ACTIONS(3924), - [aux_sym__val_number_decimal_token3] = ACTIONS(3924), - [aux_sym__val_number_decimal_token4] = ACTIONS(3924), - [aux_sym__val_number_token1] = ACTIONS(3924), - [aux_sym__val_number_token2] = ACTIONS(3924), - [aux_sym__val_number_token3] = ACTIONS(3924), - [anon_sym_0b] = ACTIONS(3922), - [anon_sym_0o] = ACTIONS(3922), - [anon_sym_0x] = ACTIONS(3922), - [sym_val_date] = ACTIONS(3924), - [anon_sym_DQUOTE] = ACTIONS(3924), - [sym__str_single_quotes] = ACTIONS(3924), - [sym__str_back_ticks] = ACTIONS(3924), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3924), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3924), - [aux_sym_env_var_token1] = ACTIONS(3926), - [anon_sym_CARET] = ACTIONS(3924), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3924), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1076] = { + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3935), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2105), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1076), - [aux_sym_cmd_identifier_token1] = ACTIONS(3929), - [aux_sym_cmd_identifier_token2] = ACTIONS(3929), - [aux_sym_cmd_identifier_token3] = ACTIONS(3929), - [aux_sym_cmd_identifier_token4] = ACTIONS(3929), - [aux_sym_cmd_identifier_token5] = ACTIONS(3929), - [aux_sym_cmd_identifier_token6] = ACTIONS(3929), - [aux_sym_cmd_identifier_token7] = ACTIONS(3929), - [aux_sym_cmd_identifier_token8] = ACTIONS(3929), - [aux_sym_cmd_identifier_token9] = ACTIONS(3929), - [aux_sym_cmd_identifier_token10] = ACTIONS(3929), - [aux_sym_cmd_identifier_token11] = ACTIONS(3929), - [aux_sym_cmd_identifier_token12] = ACTIONS(3929), - [aux_sym_cmd_identifier_token13] = ACTIONS(3929), - [aux_sym_cmd_identifier_token14] = ACTIONS(3929), - [aux_sym_cmd_identifier_token15] = ACTIONS(3929), - [aux_sym_cmd_identifier_token16] = ACTIONS(3929), - [aux_sym_cmd_identifier_token17] = ACTIONS(3929), - [aux_sym_cmd_identifier_token18] = ACTIONS(3929), - [aux_sym_cmd_identifier_token19] = ACTIONS(3929), - [aux_sym_cmd_identifier_token20] = ACTIONS(3929), - [aux_sym_cmd_identifier_token21] = ACTIONS(3929), - [aux_sym_cmd_identifier_token22] = ACTIONS(3929), - [aux_sym_cmd_identifier_token23] = ACTIONS(3929), - [aux_sym_cmd_identifier_token24] = ACTIONS(3929), - [aux_sym_cmd_identifier_token25] = ACTIONS(3929), - [aux_sym_cmd_identifier_token26] = ACTIONS(3929), - [aux_sym_cmd_identifier_token27] = ACTIONS(3929), - [aux_sym_cmd_identifier_token28] = ACTIONS(3929), - [aux_sym_cmd_identifier_token29] = ACTIONS(3929), - [aux_sym_cmd_identifier_token30] = ACTIONS(3929), - [aux_sym_cmd_identifier_token31] = ACTIONS(3929), - [aux_sym_cmd_identifier_token32] = ACTIONS(3929), - [aux_sym_cmd_identifier_token33] = ACTIONS(3929), - [aux_sym_cmd_identifier_token34] = ACTIONS(3929), - [aux_sym_cmd_identifier_token35] = ACTIONS(3929), - [aux_sym_cmd_identifier_token36] = ACTIONS(3929), - [anon_sym_true] = ACTIONS(3929), - [anon_sym_false] = ACTIONS(3929), - [anon_sym_null] = ACTIONS(3929), - [aux_sym_cmd_identifier_token38] = ACTIONS(3929), - [aux_sym_cmd_identifier_token39] = ACTIONS(3929), - [aux_sym_cmd_identifier_token40] = ACTIONS(3929), - [sym__newline] = ACTIONS(3929), - [sym__space] = ACTIONS(3931), - [anon_sym_LBRACK] = ACTIONS(3929), - [anon_sym_LPAREN] = ACTIONS(3929), - [anon_sym_DOLLAR] = ACTIONS(3929), - [anon_sym_DASH] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3929), - [anon_sym_DOT_DOT] = ACTIONS(3929), - [aux_sym_expr_unary_token1] = ACTIONS(3929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3929), - [anon_sym_DOT_DOT_LT] = ACTIONS(3929), - [aux_sym__val_number_decimal_token1] = ACTIONS(3929), - [aux_sym__val_number_decimal_token2] = ACTIONS(3929), - [aux_sym__val_number_decimal_token3] = ACTIONS(3929), - [aux_sym__val_number_decimal_token4] = ACTIONS(3929), - [aux_sym__val_number_token1] = ACTIONS(3929), - [aux_sym__val_number_token2] = ACTIONS(3929), - [aux_sym__val_number_token3] = ACTIONS(3929), - [anon_sym_0b] = ACTIONS(3929), - [anon_sym_0o] = ACTIONS(3929), - [anon_sym_0x] = ACTIONS(3929), - [sym_val_date] = ACTIONS(3929), - [anon_sym_DQUOTE] = ACTIONS(3929), - [sym__str_single_quotes] = ACTIONS(3929), - [sym__str_back_ticks] = ACTIONS(3929), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3929), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), - [aux_sym_env_var_token1] = ACTIONS(3929), - [anon_sym_CARET] = ACTIONS(3929), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3931), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1077] = { + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3918), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1868), + [sym__unquoted_with_expr] = STATE(2106), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1077), - [aux_sym_pipe_element_repeat1] = STATE(1081), - [aux_sym_cmd_identifier_token1] = ACTIONS(3922), - [aux_sym_cmd_identifier_token2] = ACTIONS(3922), - [aux_sym_cmd_identifier_token3] = ACTIONS(3922), - [aux_sym_cmd_identifier_token4] = ACTIONS(3922), - [aux_sym_cmd_identifier_token5] = ACTIONS(3922), - [aux_sym_cmd_identifier_token6] = ACTIONS(3922), - [aux_sym_cmd_identifier_token7] = ACTIONS(3922), - [aux_sym_cmd_identifier_token8] = ACTIONS(3922), - [aux_sym_cmd_identifier_token9] = ACTIONS(3922), - [aux_sym_cmd_identifier_token10] = ACTIONS(3922), - [aux_sym_cmd_identifier_token11] = ACTIONS(3922), - [aux_sym_cmd_identifier_token12] = ACTIONS(3922), - [aux_sym_cmd_identifier_token13] = ACTIONS(3922), - [aux_sym_cmd_identifier_token14] = ACTIONS(3922), - [aux_sym_cmd_identifier_token15] = ACTIONS(3922), - [aux_sym_cmd_identifier_token16] = ACTIONS(3922), - [aux_sym_cmd_identifier_token17] = ACTIONS(3922), - [aux_sym_cmd_identifier_token18] = ACTIONS(3922), - [aux_sym_cmd_identifier_token19] = ACTIONS(3922), - [aux_sym_cmd_identifier_token20] = ACTIONS(3922), - [aux_sym_cmd_identifier_token21] = ACTIONS(3922), - [aux_sym_cmd_identifier_token22] = ACTIONS(3922), - [aux_sym_cmd_identifier_token23] = ACTIONS(3922), - [aux_sym_cmd_identifier_token24] = ACTIONS(3922), - [aux_sym_cmd_identifier_token25] = ACTIONS(3922), - [aux_sym_cmd_identifier_token26] = ACTIONS(3922), - [aux_sym_cmd_identifier_token27] = ACTIONS(3922), - [aux_sym_cmd_identifier_token28] = ACTIONS(3922), - [aux_sym_cmd_identifier_token29] = ACTIONS(3922), - [aux_sym_cmd_identifier_token30] = ACTIONS(3922), - [aux_sym_cmd_identifier_token31] = ACTIONS(3922), - [aux_sym_cmd_identifier_token32] = ACTIONS(3922), - [aux_sym_cmd_identifier_token33] = ACTIONS(3922), - [aux_sym_cmd_identifier_token34] = ACTIONS(3922), - [aux_sym_cmd_identifier_token35] = ACTIONS(3922), - [aux_sym_cmd_identifier_token36] = ACTIONS(3922), - [anon_sym_true] = ACTIONS(3922), - [anon_sym_false] = ACTIONS(3922), - [anon_sym_null] = ACTIONS(3922), - [aux_sym_cmd_identifier_token38] = ACTIONS(3922), - [aux_sym_cmd_identifier_token39] = ACTIONS(3922), - [aux_sym_cmd_identifier_token40] = ACTIONS(3922), - [sym__space] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_LPAREN] = ACTIONS(3922), - [anon_sym_DOLLAR] = ACTIONS(3922), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_LBRACE] = ACTIONS(3922), - [anon_sym_DOT_DOT] = ACTIONS(3922), - [aux_sym_expr_unary_token1] = ACTIONS(3922), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3922), - [anon_sym_DOT_DOT_LT] = ACTIONS(3922), - [aux_sym__val_number_decimal_token1] = ACTIONS(3922), - [aux_sym__val_number_decimal_token2] = ACTIONS(3922), - [aux_sym__val_number_decimal_token3] = ACTIONS(3922), - [aux_sym__val_number_decimal_token4] = ACTIONS(3922), - [aux_sym__val_number_token1] = ACTIONS(3922), - [aux_sym__val_number_token2] = ACTIONS(3922), - [aux_sym__val_number_token3] = ACTIONS(3922), - [anon_sym_0b] = ACTIONS(3922), - [anon_sym_0o] = ACTIONS(3922), - [anon_sym_0x] = ACTIONS(3922), - [sym_val_date] = ACTIONS(3922), - [anon_sym_DQUOTE] = ACTIONS(3922), - [sym__str_single_quotes] = ACTIONS(3922), - [sym__str_back_ticks] = ACTIONS(3922), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3922), - [aux_sym_env_var_token1] = ACTIONS(3922), - [anon_sym_CARET] = ACTIONS(3922), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3924), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1078] = { - [sym_env_var] = STATE(7384), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3915), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1078), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1078), - [aux_sym_cmd_identifier_token1] = ACTIONS(3820), - [aux_sym_cmd_identifier_token2] = ACTIONS(3826), - [aux_sym_cmd_identifier_token3] = ACTIONS(3826), - [aux_sym_cmd_identifier_token4] = ACTIONS(3826), - [aux_sym_cmd_identifier_token5] = ACTIONS(3826), - [aux_sym_cmd_identifier_token6] = ACTIONS(3826), - [aux_sym_cmd_identifier_token7] = ACTIONS(3826), - [aux_sym_cmd_identifier_token8] = ACTIONS(3826), - [aux_sym_cmd_identifier_token9] = ACTIONS(3820), - [aux_sym_cmd_identifier_token10] = ACTIONS(3826), - [aux_sym_cmd_identifier_token11] = ACTIONS(3826), - [aux_sym_cmd_identifier_token12] = ACTIONS(3826), - [aux_sym_cmd_identifier_token13] = ACTIONS(3820), - [aux_sym_cmd_identifier_token14] = ACTIONS(3826), - [aux_sym_cmd_identifier_token15] = ACTIONS(3820), - [aux_sym_cmd_identifier_token16] = ACTIONS(3826), - [aux_sym_cmd_identifier_token17] = ACTIONS(3826), - [aux_sym_cmd_identifier_token18] = ACTIONS(3826), - [aux_sym_cmd_identifier_token19] = ACTIONS(3826), - [aux_sym_cmd_identifier_token20] = ACTIONS(3826), - [aux_sym_cmd_identifier_token21] = ACTIONS(3826), - [aux_sym_cmd_identifier_token22] = ACTIONS(3826), - [aux_sym_cmd_identifier_token23] = ACTIONS(3826), - [aux_sym_cmd_identifier_token24] = ACTIONS(3826), - [aux_sym_cmd_identifier_token25] = ACTIONS(3826), - [aux_sym_cmd_identifier_token26] = ACTIONS(3826), - [aux_sym_cmd_identifier_token27] = ACTIONS(3826), - [aux_sym_cmd_identifier_token28] = ACTIONS(3826), - [aux_sym_cmd_identifier_token29] = ACTIONS(3826), - [aux_sym_cmd_identifier_token30] = ACTIONS(3826), - [aux_sym_cmd_identifier_token31] = ACTIONS(3826), - [aux_sym_cmd_identifier_token32] = ACTIONS(3826), - [aux_sym_cmd_identifier_token33] = ACTIONS(3826), - [aux_sym_cmd_identifier_token34] = ACTIONS(3826), - [aux_sym_cmd_identifier_token35] = ACTIONS(3826), - [aux_sym_cmd_identifier_token36] = ACTIONS(3820), - [anon_sym_true] = ACTIONS(3826), - [anon_sym_false] = ACTIONS(3826), - [anon_sym_null] = ACTIONS(3826), - [aux_sym_cmd_identifier_token38] = ACTIONS(3820), - [aux_sym_cmd_identifier_token39] = ACTIONS(3826), - [aux_sym_cmd_identifier_token40] = ACTIONS(3826), - [anon_sym_LBRACK] = ACTIONS(3826), - [anon_sym_LPAREN] = ACTIONS(3826), - [anon_sym_DOLLAR] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3820), - [anon_sym_LBRACE] = ACTIONS(3826), - [anon_sym_DOT_DOT] = ACTIONS(3820), - [aux_sym_expr_unary_token1] = ACTIONS(3826), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3826), - [anon_sym_DOT_DOT_LT] = ACTIONS(3826), - [aux_sym__val_number_decimal_token1] = ACTIONS(3820), - [aux_sym__val_number_decimal_token2] = ACTIONS(3826), - [aux_sym__val_number_decimal_token3] = ACTIONS(3826), - [aux_sym__val_number_decimal_token4] = ACTIONS(3826), - [aux_sym__val_number_token1] = ACTIONS(3826), - [aux_sym__val_number_token2] = ACTIONS(3826), - [aux_sym__val_number_token3] = ACTIONS(3826), - [anon_sym_0b] = ACTIONS(3820), - [anon_sym_0o] = ACTIONS(3820), - [anon_sym_0x] = ACTIONS(3820), - [sym_val_date] = ACTIONS(3826), - [anon_sym_DQUOTE] = ACTIONS(3826), - [sym__str_single_quotes] = ACTIONS(3826), - [sym__str_back_ticks] = ACTIONS(3826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3826), - [aux_sym_env_var_token1] = ACTIONS(3935), - [anon_sym_CARET] = ACTIONS(3826), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1079] = { + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3933), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1870), + [sym__unquoted_with_expr] = STATE(2108), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1079), - [aux_sym_shebang_repeat1] = STATE(1079), - [aux_sym_cmd_identifier_token1] = ACTIONS(1349), - [aux_sym_cmd_identifier_token2] = ACTIONS(1351), - [aux_sym_cmd_identifier_token3] = ACTIONS(1351), - [aux_sym_cmd_identifier_token4] = ACTIONS(1351), - [aux_sym_cmd_identifier_token5] = ACTIONS(1351), - [aux_sym_cmd_identifier_token6] = ACTIONS(1351), - [aux_sym_cmd_identifier_token7] = ACTIONS(1351), - [aux_sym_cmd_identifier_token8] = ACTIONS(1351), - [aux_sym_cmd_identifier_token9] = ACTIONS(1349), - [aux_sym_cmd_identifier_token10] = ACTIONS(1351), - [aux_sym_cmd_identifier_token11] = ACTIONS(1351), - [aux_sym_cmd_identifier_token12] = ACTIONS(1351), - [aux_sym_cmd_identifier_token13] = ACTIONS(1349), - [aux_sym_cmd_identifier_token14] = ACTIONS(1351), - [aux_sym_cmd_identifier_token15] = ACTIONS(1349), - [aux_sym_cmd_identifier_token16] = ACTIONS(1351), - [aux_sym_cmd_identifier_token17] = ACTIONS(1351), - [aux_sym_cmd_identifier_token18] = ACTIONS(1351), - [aux_sym_cmd_identifier_token19] = ACTIONS(1351), - [aux_sym_cmd_identifier_token20] = ACTIONS(1351), - [aux_sym_cmd_identifier_token21] = ACTIONS(1351), - [aux_sym_cmd_identifier_token22] = ACTIONS(1351), - [aux_sym_cmd_identifier_token23] = ACTIONS(1349), - [aux_sym_cmd_identifier_token24] = ACTIONS(1351), - [aux_sym_cmd_identifier_token25] = ACTIONS(1351), - [aux_sym_cmd_identifier_token26] = ACTIONS(1351), - [aux_sym_cmd_identifier_token27] = ACTIONS(1351), - [aux_sym_cmd_identifier_token28] = ACTIONS(1351), - [aux_sym_cmd_identifier_token29] = ACTIONS(1351), - [aux_sym_cmd_identifier_token30] = ACTIONS(1351), - [aux_sym_cmd_identifier_token31] = ACTIONS(1351), - [aux_sym_cmd_identifier_token32] = ACTIONS(1351), - [aux_sym_cmd_identifier_token33] = ACTIONS(1351), - [aux_sym_cmd_identifier_token34] = ACTIONS(1351), - [aux_sym_cmd_identifier_token35] = ACTIONS(1351), - [aux_sym_cmd_identifier_token36] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(1351), - [anon_sym_false] = ACTIONS(1351), - [anon_sym_null] = ACTIONS(1351), - [aux_sym_cmd_identifier_token38] = ACTIONS(1349), - [aux_sym_cmd_identifier_token39] = ACTIONS(1351), - [aux_sym_cmd_identifier_token40] = ACTIONS(1351), - [sym__newline] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_DOLLAR] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [aux_sym_expr_unary_token1] = ACTIONS(1351), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), - [anon_sym_DOT_DOT_LT] = ACTIONS(1351), - [aux_sym__val_number_decimal_token1] = ACTIONS(1349), - [aux_sym__val_number_decimal_token2] = ACTIONS(1351), - [aux_sym__val_number_decimal_token3] = ACTIONS(1351), - [aux_sym__val_number_decimal_token4] = ACTIONS(1351), - [aux_sym__val_number_token1] = ACTIONS(1351), - [aux_sym__val_number_token2] = ACTIONS(1351), - [aux_sym__val_number_token3] = ACTIONS(1351), - [anon_sym_0b] = ACTIONS(1349), - [anon_sym_0o] = ACTIONS(1349), - [anon_sym_0x] = ACTIONS(1349), - [sym_val_date] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [sym__str_single_quotes] = ACTIONS(1351), - [sym__str_back_ticks] = ACTIONS(1351), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1351), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1351), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1080] = { - [sym_expr_parenthesized] = STATE(6655), - [sym_val_range] = STATE(7881), - [sym__val_range] = STATE(7794), - [sym__value] = STATE(7881), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(3649), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(5638), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(7885), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2515), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2299), + [sym__unquoted_with_expr] = STATE(2518), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1080), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3828), - [aux_sym_cmd_identifier_token39] = ACTIONS(3828), - [aux_sym_cmd_identifier_token40] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(3832), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_DOT_DOT] = ACTIONS(3838), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3840), - [anon_sym_DOT_DOT_LT] = ACTIONS(3840), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1081] = { + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2522), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2303), + [sym__unquoted_with_expr] = STATE(2530), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1081), - [aux_sym_pipe_element_repeat1] = STATE(1081), - [aux_sym_cmd_identifier_token1] = ACTIONS(3941), - [aux_sym_cmd_identifier_token2] = ACTIONS(3941), - [aux_sym_cmd_identifier_token3] = ACTIONS(3941), - [aux_sym_cmd_identifier_token4] = ACTIONS(3941), - [aux_sym_cmd_identifier_token5] = ACTIONS(3941), - [aux_sym_cmd_identifier_token6] = ACTIONS(3941), - [aux_sym_cmd_identifier_token7] = ACTIONS(3941), - [aux_sym_cmd_identifier_token8] = ACTIONS(3941), - [aux_sym_cmd_identifier_token9] = ACTIONS(3941), - [aux_sym_cmd_identifier_token10] = ACTIONS(3941), - [aux_sym_cmd_identifier_token11] = ACTIONS(3941), - [aux_sym_cmd_identifier_token12] = ACTIONS(3941), - [aux_sym_cmd_identifier_token13] = ACTIONS(3941), - [aux_sym_cmd_identifier_token14] = ACTIONS(3941), - [aux_sym_cmd_identifier_token15] = ACTIONS(3941), - [aux_sym_cmd_identifier_token16] = ACTIONS(3941), - [aux_sym_cmd_identifier_token17] = ACTIONS(3941), - [aux_sym_cmd_identifier_token18] = ACTIONS(3941), - [aux_sym_cmd_identifier_token19] = ACTIONS(3941), - [aux_sym_cmd_identifier_token20] = ACTIONS(3941), - [aux_sym_cmd_identifier_token21] = ACTIONS(3941), - [aux_sym_cmd_identifier_token22] = ACTIONS(3941), - [aux_sym_cmd_identifier_token23] = ACTIONS(3941), - [aux_sym_cmd_identifier_token24] = ACTIONS(3941), - [aux_sym_cmd_identifier_token25] = ACTIONS(3941), - [aux_sym_cmd_identifier_token26] = ACTIONS(3941), - [aux_sym_cmd_identifier_token27] = ACTIONS(3941), - [aux_sym_cmd_identifier_token28] = ACTIONS(3941), - [aux_sym_cmd_identifier_token29] = ACTIONS(3941), - [aux_sym_cmd_identifier_token30] = ACTIONS(3941), - [aux_sym_cmd_identifier_token31] = ACTIONS(3941), - [aux_sym_cmd_identifier_token32] = ACTIONS(3941), - [aux_sym_cmd_identifier_token33] = ACTIONS(3941), - [aux_sym_cmd_identifier_token34] = ACTIONS(3941), - [aux_sym_cmd_identifier_token35] = ACTIONS(3941), - [aux_sym_cmd_identifier_token36] = ACTIONS(3941), - [anon_sym_true] = ACTIONS(3941), - [anon_sym_false] = ACTIONS(3941), - [anon_sym_null] = ACTIONS(3941), - [aux_sym_cmd_identifier_token38] = ACTIONS(3941), - [aux_sym_cmd_identifier_token39] = ACTIONS(3941), - [aux_sym_cmd_identifier_token40] = ACTIONS(3941), - [sym__space] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3941), - [anon_sym_LPAREN] = ACTIONS(3941), - [anon_sym_DOLLAR] = ACTIONS(3941), - [anon_sym_DASH] = ACTIONS(3941), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_DOT_DOT] = ACTIONS(3941), - [aux_sym_expr_unary_token1] = ACTIONS(3941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3941), - [anon_sym_DOT_DOT_LT] = ACTIONS(3941), - [aux_sym__val_number_decimal_token1] = ACTIONS(3941), - [aux_sym__val_number_decimal_token2] = ACTIONS(3941), - [aux_sym__val_number_decimal_token3] = ACTIONS(3941), - [aux_sym__val_number_decimal_token4] = ACTIONS(3941), - [aux_sym__val_number_token1] = ACTIONS(3941), - [aux_sym__val_number_token2] = ACTIONS(3941), - [aux_sym__val_number_token3] = ACTIONS(3941), - [anon_sym_0b] = ACTIONS(3941), - [anon_sym_0o] = ACTIONS(3941), - [anon_sym_0x] = ACTIONS(3941), - [sym_val_date] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [sym__str_single_quotes] = ACTIONS(3941), - [sym__str_back_ticks] = ACTIONS(3941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3941), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), - [aux_sym_env_var_token1] = ACTIONS(3941), - [anon_sym_CARET] = ACTIONS(3941), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3946), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1082] = { - [sym_expr_parenthesized] = STATE(6692), - [sym_val_range] = STATE(7704), - [sym__val_range] = STATE(7794), - [sym__value] = STATE(7704), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(3649), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(5638), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(7754), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2531), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2238), + [sym__unquoted_with_expr] = STATE(2533), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1082), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3828), - [aux_sym_cmd_identifier_token39] = ACTIONS(3828), - [aux_sym_cmd_identifier_token40] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(3832), - [anon_sym_DOLLAR] = ACTIONS(3834), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_DOT_DOT] = ACTIONS(3838), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3840), - [anon_sym_DOT_DOT_LT] = ACTIONS(3840), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1083] = { - [sym__expr_parenthesized_immediate] = STATE(1351), - [sym__immediate_decimal] = STATE(1255), - [sym_val_variable] = STATE(1351), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2534), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2158), + [sym__unquoted_with_expr] = STATE(2517), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1083), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [aux_sym_cmd_identifier_token38] = ACTIONS(1524), - [aux_sym_cmd_identifier_token39] = ACTIONS(1524), - [aux_sym_cmd_identifier_token40] = ACTIONS(1524), - [sym__newline] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_err_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_GT_PIPE] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1524), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(3948), - [anon_sym_DOT] = ACTIONS(3950), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), - [anon_sym_DOT_DOT_LT] = ACTIONS(1524), - [aux_sym__immediate_decimal_token1] = ACTIONS(3952), - [aux_sym__immediate_decimal_token3] = ACTIONS(3954), - [aux_sym__immediate_decimal_token4] = ACTIONS(3956), - [aux_sym__immediate_decimal_token5] = ACTIONS(3958), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1510), - [aux_sym__val_number_decimal_token3] = ACTIONS(1510), - [aux_sym__val_number_decimal_token4] = ACTIONS(1510), - [aux_sym__val_number_token1] = ACTIONS(1524), - [aux_sym__val_number_token2] = ACTIONS(1524), - [aux_sym__val_number_token3] = ACTIONS(1524), - [anon_sym_0b] = ACTIONS(1510), - [anon_sym_0o] = ACTIONS(1510), - [anon_sym_0x] = ACTIONS(1510), - [sym_val_date] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym__str_single_quotes] = ACTIONS(1524), - [sym__str_back_ticks] = ACTIONS(1524), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), - [anon_sym_err_GT] = ACTIONS(1510), - [anon_sym_out_GT] = ACTIONS(1510), - [anon_sym_e_GT] = ACTIONS(1510), - [anon_sym_o_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT] = ACTIONS(1510), - [anon_sym_err_GT_GT] = ACTIONS(1524), - [anon_sym_out_GT_GT] = ACTIONS(1524), - [anon_sym_e_GT_GT] = ACTIONS(1524), - [anon_sym_o_GT_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), - [aux_sym_unquoted_token1] = ACTIONS(1510), - [aux_sym_unquoted_token2] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1084] = { - [sym__expr_parenthesized_immediate] = STATE(1349), - [sym__immediate_decimal] = STATE(1350), - [sym_val_variable] = STATE(1349), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3298), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1858), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1084), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [anon_sym_null] = ACTIONS(1570), - [aux_sym_cmd_identifier_token38] = ACTIONS(1570), - [aux_sym_cmd_identifier_token39] = ACTIONS(1570), - [aux_sym_cmd_identifier_token40] = ACTIONS(1570), - [sym__newline] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_err_GT_PIPE] = ACTIONS(1570), - [anon_sym_out_GT_PIPE] = ACTIONS(1570), - [anon_sym_e_GT_PIPE] = ACTIONS(1570), - [anon_sym_o_GT_PIPE] = ACTIONS(1570), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1570), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1570), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1570), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(1570), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_LPAREN2] = ACTIONS(3948), - [anon_sym_DOT] = ACTIONS(3960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1570), - [anon_sym_DOT_DOT_LT] = ACTIONS(1570), - [aux_sym__immediate_decimal_token1] = ACTIONS(3962), - [aux_sym__immediate_decimal_token3] = ACTIONS(3964), - [aux_sym__immediate_decimal_token4] = ACTIONS(3966), - [aux_sym__immediate_decimal_token5] = ACTIONS(3968), - [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(1570), - [aux_sym__val_number_token2] = ACTIONS(1570), - [aux_sym__val_number_token3] = ACTIONS(1570), - [anon_sym_0b] = ACTIONS(1560), - [anon_sym_0o] = ACTIONS(1560), - [anon_sym_0x] = ACTIONS(1560), - [sym_val_date] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [sym__str_single_quotes] = ACTIONS(1570), - [sym__str_back_ticks] = ACTIONS(1570), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1570), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1570), - [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(1570), - [anon_sym_out_GT_GT] = ACTIONS(1570), - [anon_sym_e_GT_GT] = ACTIONS(1570), - [anon_sym_o_GT_GT] = ACTIONS(1570), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1570), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1570), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1570), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1570), - [aux_sym_unquoted_token1] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1085] = { - [sym__expr_parenthesized_immediate] = STATE(1691), - [sym__immediate_decimal] = STATE(1462), - [sym_val_variable] = STATE(1691), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3299), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1859), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1085), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [aux_sym_cmd_identifier_token38] = ACTIONS(1524), - [aux_sym_cmd_identifier_token39] = ACTIONS(1524), - [aux_sym_cmd_identifier_token40] = ACTIONS(1524), - [sym__newline] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_err_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_GT_PIPE] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1524), - [anon_sym_DOLLAR] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), - [anon_sym_DOT_DOT_LT] = ACTIONS(1524), - [aux_sym__immediate_decimal_token1] = ACTIONS(3974), - [aux_sym__immediate_decimal_token3] = ACTIONS(3976), - [aux_sym__immediate_decimal_token4] = ACTIONS(3978), - [aux_sym__immediate_decimal_token5] = ACTIONS(3980), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1510), - [aux_sym__val_number_decimal_token3] = ACTIONS(1510), - [aux_sym__val_number_decimal_token4] = ACTIONS(1510), - [aux_sym__val_number_token1] = ACTIONS(1524), - [aux_sym__val_number_token2] = ACTIONS(1524), - [aux_sym__val_number_token3] = ACTIONS(1524), - [anon_sym_0b] = ACTIONS(1510), - [anon_sym_0o] = ACTIONS(1510), - [anon_sym_0x] = ACTIONS(1510), - [sym_val_date] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym__str_single_quotes] = ACTIONS(1524), - [sym__str_back_ticks] = ACTIONS(1524), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), - [anon_sym_err_GT] = ACTIONS(1510), - [anon_sym_out_GT] = ACTIONS(1510), - [anon_sym_e_GT] = ACTIONS(1510), - [anon_sym_o_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT] = ACTIONS(1510), - [anon_sym_err_GT_GT] = ACTIONS(1524), - [anon_sym_out_GT_GT] = ACTIONS(1524), - [anon_sym_e_GT_GT] = ACTIONS(1524), - [anon_sym_o_GT_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), - [aux_sym_unquoted_token1] = ACTIONS(1510), - [aux_sym_unquoted_token2] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1086] = { + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3300), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1860), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1086), - [aux_sym_cmd_identifier_token1] = ACTIONS(3982), - [aux_sym_cmd_identifier_token2] = ACTIONS(3982), - [aux_sym_cmd_identifier_token3] = ACTIONS(3982), - [aux_sym_cmd_identifier_token4] = ACTIONS(3982), - [aux_sym_cmd_identifier_token5] = ACTIONS(3982), - [aux_sym_cmd_identifier_token6] = ACTIONS(3982), - [aux_sym_cmd_identifier_token7] = ACTIONS(3982), - [aux_sym_cmd_identifier_token8] = ACTIONS(3982), - [aux_sym_cmd_identifier_token9] = ACTIONS(3982), - [aux_sym_cmd_identifier_token10] = ACTIONS(3982), - [aux_sym_cmd_identifier_token11] = ACTIONS(3982), - [aux_sym_cmd_identifier_token12] = ACTIONS(3982), - [aux_sym_cmd_identifier_token13] = ACTIONS(3982), - [aux_sym_cmd_identifier_token14] = ACTIONS(3982), - [aux_sym_cmd_identifier_token15] = ACTIONS(3982), - [aux_sym_cmd_identifier_token16] = ACTIONS(3982), - [aux_sym_cmd_identifier_token17] = ACTIONS(3982), - [aux_sym_cmd_identifier_token18] = ACTIONS(3982), - [aux_sym_cmd_identifier_token19] = ACTIONS(3982), - [aux_sym_cmd_identifier_token20] = ACTIONS(3982), - [aux_sym_cmd_identifier_token21] = ACTIONS(3982), - [aux_sym_cmd_identifier_token22] = ACTIONS(3982), - [aux_sym_cmd_identifier_token23] = ACTIONS(3982), - [aux_sym_cmd_identifier_token24] = ACTIONS(3982), - [aux_sym_cmd_identifier_token25] = ACTIONS(3982), - [aux_sym_cmd_identifier_token26] = ACTIONS(3982), - [aux_sym_cmd_identifier_token27] = ACTIONS(3982), - [aux_sym_cmd_identifier_token28] = ACTIONS(3982), - [aux_sym_cmd_identifier_token29] = ACTIONS(3982), - [aux_sym_cmd_identifier_token30] = ACTIONS(3982), - [aux_sym_cmd_identifier_token31] = ACTIONS(3982), - [aux_sym_cmd_identifier_token32] = ACTIONS(3982), - [aux_sym_cmd_identifier_token33] = ACTIONS(3982), - [aux_sym_cmd_identifier_token34] = ACTIONS(3982), - [aux_sym_cmd_identifier_token35] = ACTIONS(3982), - [aux_sym_cmd_identifier_token36] = ACTIONS(3982), - [anon_sym_true] = ACTIONS(3982), - [anon_sym_false] = ACTIONS(3982), - [anon_sym_null] = ACTIONS(3982), - [aux_sym_cmd_identifier_token38] = ACTIONS(3982), - [aux_sym_cmd_identifier_token39] = ACTIONS(3982), - [aux_sym_cmd_identifier_token40] = ACTIONS(3982), - [sym__space] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3982), - [anon_sym_LPAREN] = ACTIONS(3982), - [anon_sym_DOLLAR] = ACTIONS(3982), - [anon_sym_DASH] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3982), - [anon_sym_DOT_DOT] = ACTIONS(3982), - [aux_sym_expr_unary_token1] = ACTIONS(3982), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3982), - [anon_sym_DOT_DOT_LT] = ACTIONS(3982), - [aux_sym__val_number_decimal_token1] = ACTIONS(3982), - [aux_sym__val_number_decimal_token2] = ACTIONS(3982), - [aux_sym__val_number_decimal_token3] = ACTIONS(3982), - [aux_sym__val_number_decimal_token4] = ACTIONS(3982), - [aux_sym__val_number_token1] = ACTIONS(3982), - [aux_sym__val_number_token2] = ACTIONS(3982), - [aux_sym__val_number_token3] = ACTIONS(3982), - [anon_sym_0b] = ACTIONS(3982), - [anon_sym_0o] = ACTIONS(3982), - [anon_sym_0x] = ACTIONS(3982), - [sym_val_date] = ACTIONS(3982), - [anon_sym_DQUOTE] = ACTIONS(3982), - [sym__str_single_quotes] = ACTIONS(3982), - [sym__str_back_ticks] = ACTIONS(3982), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3982), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3982), - [aux_sym_env_var_token1] = ACTIONS(3982), - [anon_sym_CARET] = ACTIONS(3982), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1087] = { + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3301), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1861), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1087), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), - [anon_sym_DOT_DOT_LT] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(3988), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1088] = { + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3302), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1862), + [sym__unquoted_with_expr] = STATE(2099), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1088), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [anon_sym_null] = ACTIONS(1530), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1530), - [aux_sym_cmd_identifier_token40] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_LPAREN2] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(3990), - [aux_sym__immediate_decimal_token2] = ACTIONS(3992), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [anon_sym_0b] = ACTIONS(1528), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1089] = { - [sym__expr_parenthesized_immediate] = STATE(1414), - [sym__immediate_decimal] = STATE(1315), - [sym_val_variable] = STATE(1414), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3303), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [aux_sym_cmd_identifier_token38] = ACTIONS(1524), - [aux_sym_cmd_identifier_token39] = ACTIONS(1524), - [aux_sym_cmd_identifier_token40] = ACTIONS(1524), - [sym__newline] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_err_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_GT_PIPE] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(3994), - [anon_sym_DOT] = ACTIONS(3996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), - [anon_sym_DOT_DOT_LT] = ACTIONS(1524), - [aux_sym__immediate_decimal_token1] = ACTIONS(3998), - [aux_sym__immediate_decimal_token3] = ACTIONS(4000), - [aux_sym__immediate_decimal_token4] = ACTIONS(4002), - [aux_sym__immediate_decimal_token5] = ACTIONS(4004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1510), - [aux_sym__val_number_decimal_token3] = ACTIONS(1510), - [aux_sym__val_number_decimal_token4] = ACTIONS(1510), - [aux_sym__val_number_token1] = ACTIONS(1524), - [aux_sym__val_number_token2] = ACTIONS(1524), - [aux_sym__val_number_token3] = ACTIONS(1524), - [anon_sym_0b] = ACTIONS(1510), - [anon_sym_0o] = ACTIONS(1510), - [anon_sym_0x] = ACTIONS(1510), - [sym_val_date] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym__str_single_quotes] = ACTIONS(1524), - [sym__str_back_ticks] = ACTIONS(1524), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), - [anon_sym_err_GT] = ACTIONS(1510), - [anon_sym_out_GT] = ACTIONS(1510), - [anon_sym_e_GT] = ACTIONS(1510), - [anon_sym_o_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT] = ACTIONS(1510), - [anon_sym_err_GT_GT] = ACTIONS(1524), - [anon_sym_out_GT_GT] = ACTIONS(1524), - [anon_sym_e_GT_GT] = ACTIONS(1524), - [anon_sym_o_GT_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), - [aux_sym_unquoted_token1] = ACTIONS(1510), - [aux_sym_unquoted_token2] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1090] = { + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3304), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1864), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1090), - [aux_sym_cmd_identifier_token1] = ACTIONS(1364), - [aux_sym_cmd_identifier_token2] = ACTIONS(1362), - [aux_sym_cmd_identifier_token3] = ACTIONS(1362), - [aux_sym_cmd_identifier_token4] = ACTIONS(1362), - [aux_sym_cmd_identifier_token5] = ACTIONS(1362), - [aux_sym_cmd_identifier_token6] = ACTIONS(1362), - [aux_sym_cmd_identifier_token7] = ACTIONS(1362), - [aux_sym_cmd_identifier_token8] = ACTIONS(1362), - [aux_sym_cmd_identifier_token9] = ACTIONS(1364), - [aux_sym_cmd_identifier_token10] = ACTIONS(1362), - [aux_sym_cmd_identifier_token11] = ACTIONS(1362), - [aux_sym_cmd_identifier_token12] = ACTIONS(1362), - [aux_sym_cmd_identifier_token13] = ACTIONS(1364), - [aux_sym_cmd_identifier_token14] = ACTIONS(1362), - [aux_sym_cmd_identifier_token15] = ACTIONS(1364), - [aux_sym_cmd_identifier_token16] = ACTIONS(1362), - [aux_sym_cmd_identifier_token17] = ACTIONS(1362), - [aux_sym_cmd_identifier_token18] = ACTIONS(1362), - [aux_sym_cmd_identifier_token19] = ACTIONS(1362), - [aux_sym_cmd_identifier_token20] = ACTIONS(1362), - [aux_sym_cmd_identifier_token21] = ACTIONS(1362), - [aux_sym_cmd_identifier_token22] = ACTIONS(1362), - [aux_sym_cmd_identifier_token23] = ACTIONS(1364), - [aux_sym_cmd_identifier_token24] = ACTIONS(1362), - [aux_sym_cmd_identifier_token25] = ACTIONS(1362), - [aux_sym_cmd_identifier_token26] = ACTIONS(1362), - [aux_sym_cmd_identifier_token27] = ACTIONS(1362), - [aux_sym_cmd_identifier_token28] = ACTIONS(1362), - [aux_sym_cmd_identifier_token29] = ACTIONS(1362), - [aux_sym_cmd_identifier_token30] = ACTIONS(1362), - [aux_sym_cmd_identifier_token31] = ACTIONS(1362), - [aux_sym_cmd_identifier_token32] = ACTIONS(1362), - [aux_sym_cmd_identifier_token33] = ACTIONS(1362), - [aux_sym_cmd_identifier_token34] = ACTIONS(1362), - [aux_sym_cmd_identifier_token35] = ACTIONS(1362), - [aux_sym_cmd_identifier_token36] = ACTIONS(1364), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [aux_sym_cmd_identifier_token38] = ACTIONS(1364), - [aux_sym_cmd_identifier_token39] = ACTIONS(1362), - [aux_sym_cmd_identifier_token40] = ACTIONS(1362), - [sym__newline] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [aux_sym_expr_unary_token1] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), - [anon_sym_DOT_DOT_LT] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1364), - [aux_sym__val_number_decimal_token2] = ACTIONS(1362), - [aux_sym__val_number_decimal_token3] = ACTIONS(1362), - [aux_sym__val_number_decimal_token4] = ACTIONS(1362), - [aux_sym__val_number_token1] = ACTIONS(1362), - [aux_sym__val_number_token2] = ACTIONS(1362), - [aux_sym__val_number_token3] = ACTIONS(1362), - [anon_sym_0b] = ACTIONS(1364), - [anon_sym_0o] = ACTIONS(1364), - [anon_sym_0x] = ACTIONS(1364), - [sym_val_date] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym__str_single_quotes] = ACTIONS(1362), - [sym__str_back_ticks] = ACTIONS(1362), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1091] = { - [sym__expr_parenthesized_immediate] = STATE(1624), - [sym__immediate_decimal] = STATE(1473), - [sym_val_variable] = STATE(1624), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3305), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1865), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1091), - [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(1544), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT] = ACTIONS(1556), - [aux_sym__immediate_decimal_token1] = ACTIONS(3974), - [aux_sym__immediate_decimal_token3] = ACTIONS(3976), - [aux_sym__immediate_decimal_token4] = ACTIONS(3978), - [aux_sym__immediate_decimal_token5] = ACTIONS(3980), - [aux_sym__val_number_decimal_token1] = ACTIONS(1544), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [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(1544), - [anon_sym_0o] = ACTIONS(1544), - [anon_sym_0x] = ACTIONS(1544), - [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(1544), - [anon_sym_out_GT] = ACTIONS(1544), - [anon_sym_e_GT] = ACTIONS(1544), - [anon_sym_o_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT] = ACTIONS(1544), - [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(1544), - [aux_sym_unquoted_token2] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1092] = { - [sym_cell_path] = STATE(1275), - [sym_path] = STATE(1233), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2103), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1866), + [sym__unquoted_with_expr] = STATE(2104), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1092), - [aux_sym_cell_path_repeat1] = STATE(1096), - [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_LBRACE] = 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(4006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), - [aux_sym_record_entry_token1] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1093] = { - [sym_cell_path] = STATE(1326), - [sym_path] = STATE(1268), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3306), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2105), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1093), - [aux_sym_cell_path_repeat1] = STATE(1192), - [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), - [anon_sym_LBRACE] = 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(4008), - [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(249), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1094] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6044), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(5849), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5354), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6070), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3307), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1868), + [sym__unquoted_with_expr] = STATE(2106), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1094), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4012), - [aux_sym_cmd_identifier_token38] = ACTIONS(4014), - [aux_sym_cmd_identifier_token39] = ACTIONS(4014), - [aux_sym_cmd_identifier_token40] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(4028), - [aux_sym__val_number_decimal_token2] = ACTIONS(4030), - [aux_sym__val_number_decimal_token3] = ACTIONS(4032), - [aux_sym__val_number_decimal_token4] = ACTIONS(4034), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1095] = { - [sym_path] = STATE(1233), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3308), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1095), - [aux_sym_cell_path_repeat1] = STATE(1095), - [anon_sym_EQ] = ACTIONS(1031), - [anon_sym_PLUS_EQ] = ACTIONS(1033), - [anon_sym_DASH_EQ] = ACTIONS(1033), - [anon_sym_STAR_EQ] = ACTIONS(1033), - [anon_sym_SLASH_EQ] = ACTIONS(1033), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1033), - [sym__newline] = ACTIONS(1031), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_err_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_GT_PIPE] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [aux_sym_expr_binary_token1] = ACTIONS(1033), - [aux_sym_expr_binary_token2] = ACTIONS(1033), - [aux_sym_expr_binary_token3] = ACTIONS(1033), - [aux_sym_expr_binary_token4] = ACTIONS(1033), - [aux_sym_expr_binary_token5] = ACTIONS(1033), - [aux_sym_expr_binary_token6] = ACTIONS(1033), - [aux_sym_expr_binary_token7] = ACTIONS(1033), - [aux_sym_expr_binary_token8] = ACTIONS(1033), - [aux_sym_expr_binary_token9] = ACTIONS(1033), - [aux_sym_expr_binary_token10] = ACTIONS(1033), - [aux_sym_expr_binary_token11] = ACTIONS(1033), - [aux_sym_expr_binary_token12] = ACTIONS(1033), - [aux_sym_expr_binary_token13] = ACTIONS(1033), - [aux_sym_expr_binary_token14] = ACTIONS(1033), - [aux_sym_expr_binary_token15] = ACTIONS(1033), - [aux_sym_expr_binary_token16] = ACTIONS(1033), - [aux_sym_expr_binary_token17] = ACTIONS(1033), - [aux_sym_expr_binary_token18] = ACTIONS(1033), - [aux_sym_expr_binary_token19] = ACTIONS(1033), - [aux_sym_expr_binary_token20] = ACTIONS(1033), - [aux_sym_expr_binary_token21] = ACTIONS(1033), - [aux_sym_expr_binary_token22] = ACTIONS(1033), - [aux_sym_expr_binary_token23] = ACTIONS(1033), - [aux_sym_expr_binary_token24] = ACTIONS(1033), - [aux_sym_expr_binary_token25] = ACTIONS(1033), - [aux_sym_expr_binary_token26] = ACTIONS(1033), - [aux_sym_expr_binary_token27] = ACTIONS(1033), - [aux_sym_expr_binary_token28] = ACTIONS(1033), - [anon_sym_DOT_DOT2] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(4038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), - [aux_sym_record_entry_token1] = ACTIONS(1033), - [anon_sym_err_GT] = ACTIONS(1031), - [anon_sym_out_GT] = ACTIONS(1031), - [anon_sym_e_GT] = ACTIONS(1031), - [anon_sym_o_GT] = ACTIONS(1031), - [anon_sym_err_PLUSout_GT] = ACTIONS(1031), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), - [anon_sym_o_PLUSe_GT] = ACTIONS(1031), - [anon_sym_e_PLUSo_GT] = ACTIONS(1031), - [anon_sym_err_GT_GT] = ACTIONS(1033), - [anon_sym_out_GT_GT] = ACTIONS(1033), - [anon_sym_e_GT_GT] = ACTIONS(1033), - [anon_sym_o_GT_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1096] = { - [sym_path] = STATE(1233), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3309), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3178), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(2995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1870), + [sym__unquoted_with_expr] = STATE(2108), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1096), - [aux_sym_cell_path_repeat1] = STATE(1095), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_PLUS_EQ] = ACTIONS(1029), - [anon_sym_DASH_EQ] = ACTIONS(1029), - [anon_sym_STAR_EQ] = ACTIONS(1029), - [anon_sym_SLASH_EQ] = ACTIONS(1029), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1029), - [sym__newline] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_err_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_GT_PIPE] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [aux_sym_expr_binary_token1] = ACTIONS(1029), - [aux_sym_expr_binary_token2] = ACTIONS(1029), - [aux_sym_expr_binary_token3] = ACTIONS(1029), - [aux_sym_expr_binary_token4] = ACTIONS(1029), - [aux_sym_expr_binary_token5] = ACTIONS(1029), - [aux_sym_expr_binary_token6] = ACTIONS(1029), - [aux_sym_expr_binary_token7] = ACTIONS(1029), - [aux_sym_expr_binary_token8] = ACTIONS(1029), - [aux_sym_expr_binary_token9] = ACTIONS(1029), - [aux_sym_expr_binary_token10] = ACTIONS(1029), - [aux_sym_expr_binary_token11] = ACTIONS(1029), - [aux_sym_expr_binary_token12] = ACTIONS(1029), - [aux_sym_expr_binary_token13] = ACTIONS(1029), - [aux_sym_expr_binary_token14] = ACTIONS(1029), - [aux_sym_expr_binary_token15] = ACTIONS(1029), - [aux_sym_expr_binary_token16] = ACTIONS(1029), - [aux_sym_expr_binary_token17] = ACTIONS(1029), - [aux_sym_expr_binary_token18] = ACTIONS(1029), - [aux_sym_expr_binary_token19] = ACTIONS(1029), - [aux_sym_expr_binary_token20] = ACTIONS(1029), - [aux_sym_expr_binary_token21] = ACTIONS(1029), - [aux_sym_expr_binary_token22] = ACTIONS(1029), - [aux_sym_expr_binary_token23] = ACTIONS(1029), - [aux_sym_expr_binary_token24] = ACTIONS(1029), - [aux_sym_expr_binary_token25] = ACTIONS(1029), - [aux_sym_expr_binary_token26] = ACTIONS(1029), - [aux_sym_expr_binary_token27] = ACTIONS(1029), - [aux_sym_expr_binary_token28] = ACTIONS(1029), - [anon_sym_DOT_DOT2] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(4006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), - [aux_sym_record_entry_token1] = ACTIONS(1029), - [anon_sym_err_GT] = ACTIONS(1027), - [anon_sym_out_GT] = ACTIONS(1027), - [anon_sym_e_GT] = ACTIONS(1027), - [anon_sym_o_GT] = ACTIONS(1027), - [anon_sym_err_PLUSout_GT] = ACTIONS(1027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), - [anon_sym_o_PLUSe_GT] = ACTIONS(1027), - [anon_sym_e_PLUSo_GT] = ACTIONS(1027), - [anon_sym_err_GT_GT] = ACTIONS(1029), - [anon_sym_out_GT_GT] = ACTIONS(1029), - [anon_sym_e_GT_GT] = ACTIONS(1029), - [anon_sym_o_GT_GT] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1097] = { - [sym__val_range] = STATE(8067), - [sym__value] = STATE(2853), - [sym_val_nothing] = STATE(2761), - [sym_val_bool] = STATE(2743), - [sym_val_variable] = STATE(2761), - [sym_val_number] = STATE(2761), - [sym__val_number_decimal] = STATE(2320), - [sym__val_number] = STATE(2818), - [sym_val_duration] = STATE(2761), - [sym_val_filesize] = STATE(2761), - [sym_val_binary] = STATE(2761), - [sym_val_string] = STATE(2761), - [sym__raw_str] = STATE(2850), - [sym__str_double_quotes] = STATE(2850), - [sym_val_interpolated] = STATE(2761), - [sym__inter_single_quotes] = STATE(2763), - [sym__inter_double_quotes] = STATE(2767), - [sym_val_list] = STATE(2761), - [sym_val_record] = STATE(2761), - [sym_val_table] = STATE(2761), - [sym_val_closure] = STATE(2761), - [sym_unquoted] = STATE(2764), - [sym__unquoted_anonymous_prefix] = STATE(7670), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2482), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2283), + [sym__unquoted_with_expr] = STATE(2486), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1097), - [anon_sym_true] = ACTIONS(4041), - [anon_sym_false] = ACTIONS(4041), - [anon_sym_null] = ACTIONS(4043), - [aux_sym_cmd_identifier_token38] = ACTIONS(4045), - [aux_sym_cmd_identifier_token39] = ACTIONS(4045), - [aux_sym_cmd_identifier_token40] = ACTIONS(4045), - [anon_sym_LBRACK] = ACTIONS(4047), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_DOLLAR] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(4053), - [anon_sym_DOT_DOT] = ACTIONS(4055), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4057), - [anon_sym_DOT_DOT_LT] = ACTIONS(4057), - [aux_sym__val_number_decimal_token1] = ACTIONS(4059), - [aux_sym__val_number_decimal_token2] = ACTIONS(4061), - [aux_sym__val_number_decimal_token3] = ACTIONS(4063), - [aux_sym__val_number_decimal_token4] = ACTIONS(4065), - [aux_sym__val_number_token1] = ACTIONS(4067), - [aux_sym__val_number_token2] = ACTIONS(4067), - [aux_sym__val_number_token3] = ACTIONS(4067), - [anon_sym_0b] = ACTIONS(4069), - [anon_sym_0o] = ACTIONS(4071), - [anon_sym_0x] = ACTIONS(4071), - [sym_val_date] = ACTIONS(4073), - [anon_sym_DQUOTE] = ACTIONS(4075), - [sym__str_single_quotes] = ACTIONS(4077), - [sym__str_back_ticks] = ACTIONS(4077), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4079), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4081), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4083), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1098] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(5997), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(7202), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5569), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6052), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2477), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2280), + [sym__unquoted_with_expr] = STATE(2481), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1098), - [anon_sym_true] = ACTIONS(4087), - [anon_sym_false] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4089), - [aux_sym_cmd_identifier_token38] = ACTIONS(4091), - [aux_sym_cmd_identifier_token39] = ACTIONS(4091), - [aux_sym_cmd_identifier_token40] = ACTIONS(4091), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4097), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(4099), - [aux_sym__val_number_decimal_token2] = ACTIONS(4101), - [aux_sym__val_number_decimal_token3] = ACTIONS(4103), - [aux_sym__val_number_decimal_token4] = ACTIONS(4105), - [aux_sym__val_number_token1] = ACTIONS(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1099] = { + [sym_ctrl_do] = STATE(4987), + [sym_ctrl_if] = STATE(4987), + [sym_ctrl_match] = STATE(4987), + [sym_ctrl_try] = STATE(4987), + [sym__expression] = STATE(4987), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3969), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3152), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), [sym_comment] = STATE(1099), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), - [anon_sym_DOT_DOT_LT] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(3988), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [sym__newline] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_err_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_GT_PIPE] = ACTIONS(3349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3357), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(427), + [aux_sym__val_number_token5] = ACTIONS(427), + [aux_sym__val_number_token6] = ACTIONS(427), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1100] = { + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3944), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1858), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1100), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), - [anon_sym_DOT_DOT_LT] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1101] = { - [sym__expr_parenthesized_immediate] = STATE(1627), - [sym__immediate_decimal] = STATE(1596), - [sym_val_variable] = STATE(1627), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3923), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1859), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1101), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [anon_sym_null] = ACTIONS(1570), - [aux_sym_cmd_identifier_token38] = ACTIONS(1570), - [aux_sym_cmd_identifier_token39] = ACTIONS(1570), - [aux_sym_cmd_identifier_token40] = ACTIONS(1570), - [sym__newline] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_err_GT_PIPE] = ACTIONS(1570), - [anon_sym_out_GT_PIPE] = ACTIONS(1570), - [anon_sym_e_GT_PIPE] = ACTIONS(1570), - [anon_sym_o_GT_PIPE] = ACTIONS(1570), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1570), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1570), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1570), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(1570), - [anon_sym_DOLLAR] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1570), - [anon_sym_DOT_DOT_LT] = ACTIONS(1570), - [aux_sym__immediate_decimal_token1] = ACTIONS(4113), - [aux_sym__immediate_decimal_token3] = ACTIONS(4115), - [aux_sym__immediate_decimal_token4] = ACTIONS(4117), - [aux_sym__immediate_decimal_token5] = ACTIONS(4119), - [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(1570), - [aux_sym__val_number_token2] = ACTIONS(1570), - [aux_sym__val_number_token3] = ACTIONS(1570), - [anon_sym_0b] = ACTIONS(1560), - [anon_sym_0o] = ACTIONS(1560), - [anon_sym_0x] = ACTIONS(1560), - [sym_val_date] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [sym__str_single_quotes] = ACTIONS(1570), - [sym__str_back_ticks] = ACTIONS(1570), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1570), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1570), - [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(1570), - [anon_sym_out_GT_GT] = ACTIONS(1570), - [anon_sym_e_GT_GT] = ACTIONS(1570), - [anon_sym_o_GT_GT] = ACTIONS(1570), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1570), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1570), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1570), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1570), - [aux_sym_unquoted_token1] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1102] = { - [sym__match_pattern_expression] = STATE(3083), - [sym__match_pattern_value] = STATE(3079), - [sym__match_pattern_list] = STATE(3092), - [sym__match_pattern_rest] = STATE(7786), - [sym__match_pattern_record] = STATE(3125), - [sym_expr_parenthesized] = STATE(2897), - [sym_val_range] = STATE(3079), - [sym__val_range] = STATE(7928), - [sym_val_nothing] = STATE(3054), - [sym_val_bool] = STATE(3042), - [sym_val_variable] = STATE(2873), - [sym_val_number] = STATE(3054), - [sym__val_number_decimal] = STATE(2687), - [sym__val_number] = STATE(3094), - [sym_val_duration] = STATE(3054), - [sym_val_filesize] = STATE(3054), - [sym_val_binary] = STATE(3054), - [sym_val_string] = STATE(3054), - [sym__raw_str] = STATE(3122), - [sym__str_double_quotes] = STATE(3122), - [sym_val_table] = STATE(3054), - [sym__unquoted_in_list] = STATE(3083), - [sym__unquoted_anonymous_prefix] = STATE(7845), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3946), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1860), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1102), - [aux_sym__match_pattern_list_repeat1] = STATE(1198), - [anon_sym_true] = ACTIONS(3760), - [anon_sym_false] = ACTIONS(3760), - [anon_sym_null] = ACTIONS(3762), - [aux_sym_cmd_identifier_token38] = ACTIONS(3764), - [aux_sym_cmd_identifier_token39] = ACTIONS(3764), - [aux_sym_cmd_identifier_token40] = ACTIONS(3764), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_RBRACK] = ACTIONS(4123), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_DOLLAR] = ACTIONS(3774), - [anon_sym_LBRACE] = ACTIONS(3776), - [anon_sym_DOT_DOT] = ACTIONS(4125), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3780), - [anon_sym_DOT_DOT_LT] = ACTIONS(3780), - [aux_sym__val_number_decimal_token1] = ACTIONS(3782), - [aux_sym__val_number_decimal_token2] = ACTIONS(3784), - [aux_sym__val_number_decimal_token3] = ACTIONS(3786), - [aux_sym__val_number_decimal_token4] = ACTIONS(3788), - [aux_sym__val_number_token1] = ACTIONS(3790), - [aux_sym__val_number_token2] = ACTIONS(3790), - [aux_sym__val_number_token3] = ACTIONS(3790), - [anon_sym_0b] = ACTIONS(3792), - [anon_sym_0o] = ACTIONS(3794), - [anon_sym_0x] = ACTIONS(3794), - [sym_val_date] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3798), - [sym__str_single_quotes] = ACTIONS(3800), - [sym__str_back_ticks] = ACTIONS(3800), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3802), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1103] = { + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3931), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1861), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1103), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [anon_sym_null] = ACTIONS(1530), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1530), - [aux_sym_cmd_identifier_token40] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(4127), - [aux_sym__immediate_decimal_token2] = ACTIONS(4129), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [anon_sym_0b] = ACTIONS(1528), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1104] = { + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3924), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1862), + [sym__unquoted_with_expr] = STATE(2099), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1104), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1598), - [aux_sym_cmd_identifier_token38] = ACTIONS(1598), - [aux_sym_cmd_identifier_token39] = ACTIONS(1598), - [aux_sym_cmd_identifier_token40] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), - [anon_sym_DOT_DOT_LT] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(4131), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token3] = ACTIONS(1598), - [aux_sym__val_number_decimal_token4] = ACTIONS(1598), - [aux_sym__val_number_token1] = ACTIONS(1598), - [aux_sym__val_number_token2] = ACTIONS(1598), - [aux_sym__val_number_token3] = ACTIONS(1598), - [anon_sym_0b] = ACTIONS(1596), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [sym__str_single_quotes] = ACTIONS(1598), - [sym__str_back_ticks] = ACTIONS(1598), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token1] = ACTIONS(1596), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1105] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6013), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(5849), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5299), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6128), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3939), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1105), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4012), - [aux_sym_cmd_identifier_token38] = ACTIONS(4133), - [aux_sym_cmd_identifier_token39] = ACTIONS(4133), - [aux_sym_cmd_identifier_token40] = ACTIONS(4133), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4097), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [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(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1106] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6062), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(5849), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5354), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6089), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3943), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1864), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1106), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4012), - [aux_sym_cmd_identifier_token38] = ACTIONS(4014), - [aux_sym_cmd_identifier_token39] = ACTIONS(4014), - [aux_sym_cmd_identifier_token40] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(4028), - [aux_sym__val_number_decimal_token2] = ACTIONS(4030), - [aux_sym__val_number_decimal_token3] = ACTIONS(4032), - [aux_sym__val_number_decimal_token4] = ACTIONS(4034), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1107] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6044), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(7202), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5569), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6070), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3948), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1865), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1107), - [anon_sym_true] = ACTIONS(4087), - [anon_sym_false] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4089), - [aux_sym_cmd_identifier_token38] = ACTIONS(4091), - [aux_sym_cmd_identifier_token39] = ACTIONS(4091), - [aux_sym_cmd_identifier_token40] = ACTIONS(4091), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4097), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(4099), - [aux_sym__val_number_decimal_token2] = ACTIONS(4101), - [aux_sym__val_number_decimal_token3] = ACTIONS(4103), - [aux_sym__val_number_decimal_token4] = ACTIONS(4105), - [aux_sym__val_number_token1] = ACTIONS(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1108] = { - [sym_cell_path] = STATE(1294), - [sym_path] = STATE(1247), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2103), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1866), + [sym__unquoted_with_expr] = STATE(2104), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1108), - [aux_sym_cell_path_repeat1] = STATE(1202), - [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(4143), - [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(249), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1109] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(5997), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(5849), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5299), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6052), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3917), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2105), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1109), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4012), - [aux_sym_cmd_identifier_token38] = ACTIONS(4133), - [aux_sym_cmd_identifier_token39] = ACTIONS(4133), - [aux_sym_cmd_identifier_token40] = ACTIONS(4133), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4097), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [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(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1110] = { - [sym__val_range] = STATE(7632), - [sym__value] = STATE(5510), - [sym_val_nothing] = STATE(4047), - [sym_val_bool] = STATE(7459), - [sym_val_variable] = STATE(4047), - [sym_val_number] = STATE(4047), - [sym__val_number_decimal] = STATE(5689), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4047), - [sym_val_filesize] = STATE(4047), - [sym_val_binary] = STATE(4047), - [sym_val_string] = STATE(4047), - [sym__raw_str] = STATE(2932), - [sym__str_double_quotes] = STATE(2932), - [sym_val_interpolated] = STATE(4047), - [sym__inter_single_quotes] = STATE(4101), - [sym__inter_double_quotes] = STATE(4102), - [sym_val_list] = STATE(4047), - [sym_val_record] = STATE(4047), - [sym_val_table] = STATE(4047), - [sym_val_closure] = STATE(4047), - [sym_unquoted] = STATE(5532), - [sym__unquoted_anonymous_prefix] = STATE(8071), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3922), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1868), + [sym__unquoted_with_expr] = STATE(2106), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1110), - [anon_sym_true] = ACTIONS(4145), - [anon_sym_false] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(4147), - [aux_sym_cmd_identifier_token38] = ACTIONS(4149), - [aux_sym_cmd_identifier_token39] = ACTIONS(4149), - [aux_sym_cmd_identifier_token40] = ACTIONS(4149), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(4151), - [anon_sym_DOLLAR] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(4155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), - [anon_sym_DOT_DOT_LT] = ACTIONS(4157), - [aux_sym__val_number_decimal_token1] = ACTIONS(4159), - [aux_sym__val_number_decimal_token2] = ACTIONS(4161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4163), - [aux_sym__val_number_decimal_token4] = ACTIONS(4165), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3488), - [anon_sym_0o] = ACTIONS(3490), - [anon_sym_0x] = ACTIONS(3490), - [sym_val_date] = ACTIONS(4167), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym__str_single_quotes] = ACTIONS(3496), - [sym__str_back_ticks] = ACTIONS(3496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3502), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1111] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6044), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(5849), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5299), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6070), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3926), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1111), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4012), - [aux_sym_cmd_identifier_token38] = ACTIONS(4133), - [aux_sym_cmd_identifier_token39] = ACTIONS(4133), - [aux_sym_cmd_identifier_token40] = ACTIONS(4133), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4097), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [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(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1112] = { - [sym__val_range] = STATE(7632), - [sym__value] = STATE(5502), - [sym_val_nothing] = STATE(4047), - [sym_val_bool] = STATE(7459), - [sym_val_variable] = STATE(4047), - [sym_val_number] = STATE(4047), - [sym__val_number_decimal] = STATE(5689), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4047), - [sym_val_filesize] = STATE(4047), - [sym_val_binary] = STATE(4047), - [sym_val_string] = STATE(4047), - [sym__raw_str] = STATE(2932), - [sym__str_double_quotes] = STATE(2932), - [sym_val_interpolated] = STATE(4047), - [sym__inter_single_quotes] = STATE(4101), - [sym__inter_double_quotes] = STATE(4102), - [sym_val_list] = STATE(4047), - [sym_val_record] = STATE(4047), - [sym_val_table] = STATE(4047), - [sym_val_closure] = STATE(4047), - [sym_unquoted] = STATE(5504), - [sym__unquoted_anonymous_prefix] = STATE(8071), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3928), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3753), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3417), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1870), + [sym__unquoted_with_expr] = STATE(2108), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1112), - [anon_sym_true] = ACTIONS(4145), - [anon_sym_false] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(4147), - [aux_sym_cmd_identifier_token38] = ACTIONS(4149), - [aux_sym_cmd_identifier_token39] = ACTIONS(4149), - [aux_sym_cmd_identifier_token40] = ACTIONS(4149), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(4151), - [anon_sym_DOLLAR] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(4155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), - [anon_sym_DOT_DOT_LT] = ACTIONS(4157), - [aux_sym__val_number_decimal_token1] = ACTIONS(4159), - [aux_sym__val_number_decimal_token2] = ACTIONS(4161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4163), - [aux_sym__val_number_decimal_token4] = ACTIONS(4165), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3488), - [anon_sym_0o] = ACTIONS(3490), - [anon_sym_0x] = ACTIONS(3490), - [sym_val_date] = ACTIONS(4167), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym__str_single_quotes] = ACTIONS(3496), - [sym__str_back_ticks] = ACTIONS(3496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3502), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym__val_number_decimal_token1] = ACTIONS(3399), + [aux_sym__val_number_decimal_token2] = ACTIONS(3401), + [aux_sym__val_number_decimal_token3] = ACTIONS(3403), + [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3407), + [aux_sym__val_number_token5] = ACTIONS(3407), + [aux_sym__val_number_token6] = ACTIONS(3407), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1113] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(5997), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(5733), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(6052), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3936), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1858), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1113), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3828), - [aux_sym_cmd_identifier_token39] = ACTIONS(3828), - [aux_sym_cmd_identifier_token40] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4169), - [anon_sym_DOLLAR] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1114] = { - [sym__expr_parenthesized_immediate] = STATE(1699), - [sym__immediate_decimal] = STATE(1485), - [sym_val_variable] = STATE(1699), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2330), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1858), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1114), - [ts_builtin_sym_end] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [aux_sym_cmd_identifier_token38] = ACTIONS(1524), - [aux_sym_cmd_identifier_token39] = ACTIONS(1524), - [aux_sym_cmd_identifier_token40] = ACTIONS(1524), - [sym__newline] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_err_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_GT_PIPE] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(4171), - [anon_sym_DASH_DASH] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_LPAREN2] = ACTIONS(4173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), - [anon_sym_DOT_DOT_LT] = ACTIONS(1524), - [aux_sym__immediate_decimal_token1] = ACTIONS(4175), - [aux_sym__immediate_decimal_token3] = ACTIONS(4177), - [aux_sym__immediate_decimal_token4] = ACTIONS(4179), - [aux_sym__immediate_decimal_token5] = ACTIONS(4181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1510), - [aux_sym__val_number_decimal_token3] = ACTIONS(1510), - [aux_sym__val_number_decimal_token4] = ACTIONS(1510), - [aux_sym__val_number_token1] = ACTIONS(1524), - [aux_sym__val_number_token2] = ACTIONS(1524), - [aux_sym__val_number_token3] = ACTIONS(1524), - [anon_sym_0b] = ACTIONS(1510), - [anon_sym_0o] = ACTIONS(1510), - [anon_sym_0x] = ACTIONS(1510), - [sym_val_date] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [sym__str_single_quotes] = ACTIONS(1524), - [sym__str_back_ticks] = ACTIONS(1524), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), - [anon_sym_err_GT] = ACTIONS(1510), - [anon_sym_out_GT] = ACTIONS(1510), - [anon_sym_e_GT] = ACTIONS(1510), - [anon_sym_o_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT] = ACTIONS(1510), - [anon_sym_err_GT_GT] = ACTIONS(1524), - [anon_sym_out_GT_GT] = ACTIONS(1524), - [anon_sym_e_GT_GT] = ACTIONS(1524), - [anon_sym_o_GT_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), - [aux_sym_unquoted_token1] = ACTIONS(1510), - [aux_sym_unquoted_token2] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1115] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6013), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(5849), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5354), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6128), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2306), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1859), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1115), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4012), - [aux_sym_cmd_identifier_token38] = ACTIONS(4014), - [aux_sym_cmd_identifier_token39] = ACTIONS(4014), - [aux_sym_cmd_identifier_token40] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(4028), - [aux_sym__val_number_decimal_token2] = ACTIONS(4030), - [aux_sym__val_number_decimal_token3] = ACTIONS(4032), - [aux_sym__val_number_decimal_token4] = ACTIONS(4034), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1116] = { - [sym__val_range] = STATE(7632), - [sym__value] = STATE(5581), - [sym_val_nothing] = STATE(4047), - [sym_val_bool] = STATE(7459), - [sym_val_variable] = STATE(4047), - [sym_val_number] = STATE(4047), - [sym__val_number_decimal] = STATE(5689), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4047), - [sym_val_filesize] = STATE(4047), - [sym_val_binary] = STATE(4047), - [sym_val_string] = STATE(4047), - [sym__raw_str] = STATE(2932), - [sym__str_double_quotes] = STATE(2932), - [sym_val_interpolated] = STATE(4047), - [sym__inter_single_quotes] = STATE(4101), - [sym__inter_double_quotes] = STATE(4102), - [sym_val_list] = STATE(4047), - [sym_val_record] = STATE(4047), - [sym_val_table] = STATE(4047), - [sym_val_closure] = STATE(4047), - [sym_unquoted] = STATE(5583), - [sym__unquoted_anonymous_prefix] = STATE(8071), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2331), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1860), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1116), - [anon_sym_true] = ACTIONS(4145), - [anon_sym_false] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(4147), - [aux_sym_cmd_identifier_token38] = ACTIONS(4149), - [aux_sym_cmd_identifier_token39] = ACTIONS(4149), - [aux_sym_cmd_identifier_token40] = ACTIONS(4149), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(4151), - [anon_sym_DOLLAR] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(4155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), - [anon_sym_DOT_DOT_LT] = ACTIONS(4157), - [aux_sym__val_number_decimal_token1] = ACTIONS(4159), - [aux_sym__val_number_decimal_token2] = ACTIONS(4161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4163), - [aux_sym__val_number_decimal_token4] = ACTIONS(4165), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3488), - [anon_sym_0o] = ACTIONS(3490), - [anon_sym_0x] = ACTIONS(3490), - [sym_val_date] = ACTIONS(4167), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym__str_single_quotes] = ACTIONS(3496), - [sym__str_back_ticks] = ACTIONS(3496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3502), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1117] = { - [sym__val_range] = STATE(7843), - [sym__value] = STATE(1824), - [sym_val_nothing] = STATE(1819), - [sym_val_bool] = STATE(1620), - [sym_val_variable] = STATE(1819), - [sym_val_number] = STATE(1819), - [sym__val_number_decimal] = STATE(1269), - [sym__val_number] = STATE(1792), - [sym_val_duration] = STATE(1819), - [sym_val_filesize] = STATE(1819), - [sym_val_binary] = STATE(1819), - [sym_val_string] = STATE(1819), - [sym__raw_str] = STATE(1795), - [sym__str_double_quotes] = STATE(1795), - [sym_val_interpolated] = STATE(1819), - [sym__inter_single_quotes] = STATE(1749), - [sym__inter_double_quotes] = STATE(1750), - [sym_val_list] = STATE(1819), - [sym_val_record] = STATE(1819), - [sym_val_table] = STATE(1819), - [sym_val_closure] = STATE(1819), - [sym_unquoted] = STATE(1825), - [sym__unquoted_anonymous_prefix] = STATE(7992), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2332), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1861), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1117), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4185), - [aux_sym_cmd_identifier_token38] = ACTIONS(4187), - [aux_sym_cmd_identifier_token39] = ACTIONS(4187), - [aux_sym_cmd_identifier_token40] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_DOLLAR] = ACTIONS(4171), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4193), - [anon_sym_DOT_DOT_LT] = ACTIONS(4193), - [aux_sym__val_number_decimal_token1] = ACTIONS(4195), - [aux_sym__val_number_decimal_token2] = ACTIONS(4197), - [aux_sym__val_number_decimal_token3] = ACTIONS(4199), - [aux_sym__val_number_decimal_token4] = ACTIONS(4201), - [aux_sym__val_number_token1] = ACTIONS(2904), - [aux_sym__val_number_token2] = ACTIONS(2904), - [aux_sym__val_number_token3] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2906), - [anon_sym_0o] = ACTIONS(2908), - [anon_sym_0x] = ACTIONS(2908), - [sym_val_date] = ACTIONS(4203), - [anon_sym_DQUOTE] = ACTIONS(2912), - [sym__str_single_quotes] = ACTIONS(2914), - [sym__str_back_ticks] = ACTIONS(2914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1118] = { - [sym__val_range] = STATE(7632), - [sym__value] = STATE(5611), - [sym_val_nothing] = STATE(4047), - [sym_val_bool] = STATE(7459), - [sym_val_variable] = STATE(4047), - [sym_val_number] = STATE(4047), - [sym__val_number_decimal] = STATE(5689), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4047), - [sym_val_filesize] = STATE(4047), - [sym_val_binary] = STATE(4047), - [sym_val_string] = STATE(4047), - [sym__raw_str] = STATE(2932), - [sym__str_double_quotes] = STATE(2932), - [sym_val_interpolated] = STATE(4047), - [sym__inter_single_quotes] = STATE(4101), - [sym__inter_double_quotes] = STATE(4102), - [sym_val_list] = STATE(4047), - [sym_val_record] = STATE(4047), - [sym_val_table] = STATE(4047), - [sym_val_closure] = STATE(4047), - [sym_unquoted] = STATE(5613), - [sym__unquoted_anonymous_prefix] = STATE(8071), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2333), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1862), + [sym__unquoted_with_expr] = STATE(2099), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1118), - [anon_sym_true] = ACTIONS(4145), - [anon_sym_false] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(4147), - [aux_sym_cmd_identifier_token38] = ACTIONS(4149), - [aux_sym_cmd_identifier_token39] = ACTIONS(4149), - [aux_sym_cmd_identifier_token40] = ACTIONS(4149), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(4151), - [anon_sym_DOLLAR] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(4155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), - [anon_sym_DOT_DOT_LT] = ACTIONS(4157), - [aux_sym__val_number_decimal_token1] = ACTIONS(4159), - [aux_sym__val_number_decimal_token2] = ACTIONS(4161), - [aux_sym__val_number_decimal_token3] = ACTIONS(4163), - [aux_sym__val_number_decimal_token4] = ACTIONS(4165), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3488), - [anon_sym_0o] = ACTIONS(3490), - [anon_sym_0x] = ACTIONS(3490), - [sym_val_date] = ACTIONS(4167), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym__str_single_quotes] = ACTIONS(3496), - [sym__str_back_ticks] = ACTIONS(3496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3502), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1119] = { - [sym__val_range] = STATE(7843), - [sym__value] = STATE(1833), - [sym_val_nothing] = STATE(1819), - [sym_val_bool] = STATE(1620), - [sym_val_variable] = STATE(1819), - [sym_val_number] = STATE(1819), - [sym__val_number_decimal] = STATE(1269), - [sym__val_number] = STATE(1792), - [sym_val_duration] = STATE(1819), - [sym_val_filesize] = STATE(1819), - [sym_val_binary] = STATE(1819), - [sym_val_string] = STATE(1819), - [sym__raw_str] = STATE(1795), - [sym__str_double_quotes] = STATE(1795), - [sym_val_interpolated] = STATE(1819), - [sym__inter_single_quotes] = STATE(1749), - [sym__inter_double_quotes] = STATE(1750), - [sym_val_list] = STATE(1819), - [sym_val_record] = STATE(1819), - [sym_val_table] = STATE(1819), - [sym_val_closure] = STATE(1819), - [sym_unquoted] = STATE(1834), - [sym__unquoted_anonymous_prefix] = STATE(7992), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2334), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1119), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4185), - [aux_sym_cmd_identifier_token38] = ACTIONS(4187), - [aux_sym_cmd_identifier_token39] = ACTIONS(4187), - [aux_sym_cmd_identifier_token40] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_DOLLAR] = ACTIONS(4171), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4193), - [anon_sym_DOT_DOT_LT] = ACTIONS(4193), - [aux_sym__val_number_decimal_token1] = ACTIONS(4195), - [aux_sym__val_number_decimal_token2] = ACTIONS(4197), - [aux_sym__val_number_decimal_token3] = ACTIONS(4199), - [aux_sym__val_number_decimal_token4] = ACTIONS(4201), - [aux_sym__val_number_token1] = ACTIONS(2904), - [aux_sym__val_number_token2] = ACTIONS(2904), - [aux_sym__val_number_token3] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2906), - [anon_sym_0o] = ACTIONS(2908), - [anon_sym_0x] = ACTIONS(2908), - [sym_val_date] = ACTIONS(4203), - [anon_sym_DQUOTE] = ACTIONS(2912), - [sym__str_single_quotes] = ACTIONS(2914), - [sym__str_back_ticks] = ACTIONS(2914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1120] = { - [sym__val_range] = STATE(7843), - [sym__value] = STATE(1704), - [sym_val_nothing] = STATE(1819), - [sym_val_bool] = STATE(1620), - [sym_val_variable] = STATE(1819), - [sym_val_number] = STATE(1819), - [sym__val_number_decimal] = STATE(1269), - [sym__val_number] = STATE(1792), - [sym_val_duration] = STATE(1819), - [sym_val_filesize] = STATE(1819), - [sym_val_binary] = STATE(1819), - [sym_val_string] = STATE(1819), - [sym__raw_str] = STATE(1795), - [sym__str_double_quotes] = STATE(1795), - [sym_val_interpolated] = STATE(1819), - [sym__inter_single_quotes] = STATE(1749), - [sym__inter_double_quotes] = STATE(1750), - [sym_val_list] = STATE(1819), - [sym_val_record] = STATE(1819), - [sym_val_table] = STATE(1819), - [sym_val_closure] = STATE(1819), - [sym_unquoted] = STATE(1725), - [sym__unquoted_anonymous_prefix] = STATE(7992), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2335), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1864), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1120), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4185), - [aux_sym_cmd_identifier_token38] = ACTIONS(4187), - [aux_sym_cmd_identifier_token39] = ACTIONS(4187), - [aux_sym_cmd_identifier_token40] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_DOLLAR] = ACTIONS(4171), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4193), - [anon_sym_DOT_DOT_LT] = ACTIONS(4193), - [aux_sym__val_number_decimal_token1] = ACTIONS(4195), - [aux_sym__val_number_decimal_token2] = ACTIONS(4197), - [aux_sym__val_number_decimal_token3] = ACTIONS(4199), - [aux_sym__val_number_decimal_token4] = ACTIONS(4201), - [aux_sym__val_number_token1] = ACTIONS(2904), - [aux_sym__val_number_token2] = ACTIONS(2904), - [aux_sym__val_number_token3] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2906), - [anon_sym_0o] = ACTIONS(2908), - [anon_sym_0x] = ACTIONS(2908), - [sym_val_date] = ACTIONS(4203), - [anon_sym_DQUOTE] = ACTIONS(2912), - [sym__str_single_quotes] = ACTIONS(2914), - [sym__str_back_ticks] = ACTIONS(2914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1121] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6062), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(6707), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5378), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6089), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2336), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1865), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1121), - [anon_sym_true] = ACTIONS(4207), - [anon_sym_false] = ACTIONS(4207), - [anon_sym_null] = ACTIONS(4209), - [aux_sym_cmd_identifier_token38] = ACTIONS(4211), - [aux_sym_cmd_identifier_token39] = ACTIONS(4211), - [aux_sym_cmd_identifier_token40] = ACTIONS(4211), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4097), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [aux_sym__val_number_decimal_token3] = ACTIONS(4217), - [aux_sym__val_number_decimal_token4] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4221), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1122] = { - [sym__val_range] = STATE(7843), - [sym__value] = STATE(1744), - [sym_val_nothing] = STATE(1819), - [sym_val_bool] = STATE(1620), - [sym_val_variable] = STATE(1819), - [sym_val_number] = STATE(1819), - [sym__val_number_decimal] = STATE(1269), - [sym__val_number] = STATE(1792), - [sym_val_duration] = STATE(1819), - [sym_val_filesize] = STATE(1819), - [sym_val_binary] = STATE(1819), - [sym_val_string] = STATE(1819), - [sym__raw_str] = STATE(1795), - [sym__str_double_quotes] = STATE(1795), - [sym_val_interpolated] = STATE(1819), - [sym__inter_single_quotes] = STATE(1749), - [sym__inter_double_quotes] = STATE(1750), - [sym_val_list] = STATE(1819), - [sym_val_record] = STATE(1819), - [sym_val_table] = STATE(1819), - [sym_val_closure] = STATE(1819), - [sym_unquoted] = STATE(1752), - [sym__unquoted_anonymous_prefix] = STATE(7992), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2103), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1866), + [sym__unquoted_with_expr] = STATE(2104), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1122), - [anon_sym_true] = ACTIONS(4183), - [anon_sym_false] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4185), - [aux_sym_cmd_identifier_token38] = ACTIONS(4187), - [aux_sym_cmd_identifier_token39] = ACTIONS(4187), - [aux_sym_cmd_identifier_token40] = ACTIONS(4187), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_DOLLAR] = ACTIONS(4171), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_DOT_DOT] = ACTIONS(4191), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4193), - [anon_sym_DOT_DOT_LT] = ACTIONS(4193), - [aux_sym__val_number_decimal_token1] = ACTIONS(4195), - [aux_sym__val_number_decimal_token2] = ACTIONS(4197), - [aux_sym__val_number_decimal_token3] = ACTIONS(4199), - [aux_sym__val_number_decimal_token4] = ACTIONS(4201), - [aux_sym__val_number_token1] = ACTIONS(2904), - [aux_sym__val_number_token2] = ACTIONS(2904), - [aux_sym__val_number_token3] = ACTIONS(2904), - [anon_sym_0b] = ACTIONS(2906), - [anon_sym_0o] = ACTIONS(2908), - [anon_sym_0x] = ACTIONS(2908), - [sym_val_date] = ACTIONS(4203), - [anon_sym_DQUOTE] = ACTIONS(2912), - [sym__str_single_quotes] = ACTIONS(2914), - [sym__str_back_ticks] = ACTIONS(2914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1123] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6013), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(6707), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5378), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6128), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2337), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2105), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1123), - [anon_sym_true] = ACTIONS(4207), - [anon_sym_false] = ACTIONS(4207), - [anon_sym_null] = ACTIONS(4209), - [aux_sym_cmd_identifier_token38] = ACTIONS(4211), - [aux_sym_cmd_identifier_token39] = ACTIONS(4211), - [aux_sym_cmd_identifier_token40] = ACTIONS(4211), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4097), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [aux_sym__val_number_decimal_token3] = ACTIONS(4217), - [aux_sym__val_number_decimal_token4] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4221), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1124] = { + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2338), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1868), + [sym__unquoted_with_expr] = STATE(2106), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [anon_sym_null] = ACTIONS(1530), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1530), - [aux_sym_cmd_identifier_token40] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_LPAREN2] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(4223), - [aux_sym__immediate_decimal_token2] = ACTIONS(4225), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [anon_sym_0b] = ACTIONS(1528), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1125] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6062), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(7202), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5569), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6089), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2339), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1125), - [anon_sym_true] = ACTIONS(4087), - [anon_sym_false] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4089), - [aux_sym_cmd_identifier_token38] = ACTIONS(4091), - [aux_sym_cmd_identifier_token39] = ACTIONS(4091), - [aux_sym_cmd_identifier_token40] = ACTIONS(4091), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4097), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(4099), - [aux_sym__val_number_decimal_token2] = ACTIONS(4101), - [aux_sym__val_number_decimal_token3] = ACTIONS(4103), - [aux_sym__val_number_decimal_token4] = ACTIONS(4105), - [aux_sym__val_number_token1] = ACTIONS(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1126] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(5997), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(6707), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5378), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6052), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(2340), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2154), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(1533), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1870), + [sym__unquoted_with_expr] = STATE(2108), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1126), - [anon_sym_true] = ACTIONS(4207), - [anon_sym_false] = ACTIONS(4207), - [anon_sym_null] = ACTIONS(4209), - [aux_sym_cmd_identifier_token38] = ACTIONS(4211), - [aux_sym_cmd_identifier_token39] = ACTIONS(4211), - [aux_sym_cmd_identifier_token40] = ACTIONS(4211), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4097), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [aux_sym__val_number_decimal_token3] = ACTIONS(4217), - [aux_sym__val_number_decimal_token4] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4221), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1127] = { - [sym__val_range] = STATE(7676), - [sym__value] = STATE(4964), - [sym_val_nothing] = STATE(5010), - [sym_val_bool] = STATE(4627), - [sym_val_variable] = STATE(5010), - [sym_val_number] = STATE(5010), - [sym__val_number_decimal] = STATE(4122), - [sym__val_number] = STATE(5054), - [sym_val_duration] = STATE(5010), - [sym_val_filesize] = STATE(5010), - [sym_val_binary] = STATE(5010), - [sym_val_string] = STATE(5010), - [sym__raw_str] = STATE(4660), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(5010), - [sym__inter_single_quotes] = STATE(5011), - [sym__inter_double_quotes] = STATE(5012), - [sym_val_list] = STATE(5010), - [sym_val_record] = STATE(5010), - [sym_val_table] = STATE(5010), - [sym_val_closure] = STATE(5010), - [sym_unquoted] = STATE(4965), - [sym__unquoted_anonymous_prefix] = STATE(7883), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2508), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2252), + [sym__unquoted_with_expr] = STATE(2447), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1127), - [anon_sym_true] = ACTIONS(4227), - [anon_sym_false] = ACTIONS(4227), - [anon_sym_null] = ACTIONS(4229), - [aux_sym_cmd_identifier_token38] = ACTIONS(4231), - [aux_sym_cmd_identifier_token39] = ACTIONS(4231), - [aux_sym_cmd_identifier_token40] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4233), - [anon_sym_LPAREN] = ACTIONS(4235), - [anon_sym_DOLLAR] = ACTIONS(4237), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_DOT_DOT] = ACTIONS(4241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4243), - [anon_sym_DOT_DOT_LT] = ACTIONS(4243), - [aux_sym__val_number_decimal_token1] = ACTIONS(2147), - [aux_sym__val_number_decimal_token2] = ACTIONS(4245), - [aux_sym__val_number_decimal_token3] = ACTIONS(4247), - [aux_sym__val_number_decimal_token4] = ACTIONS(4249), - [aux_sym__val_number_token1] = ACTIONS(4251), - [aux_sym__val_number_token2] = ACTIONS(4251), - [aux_sym__val_number_token3] = ACTIONS(4251), - [anon_sym_0b] = ACTIONS(2155), - [anon_sym_0o] = ACTIONS(2157), - [anon_sym_0x] = ACTIONS(2157), - [sym_val_date] = ACTIONS(4253), - [anon_sym_DQUOTE] = ACTIONS(4255), - [sym__str_single_quotes] = ACTIONS(4257), - [sym__str_back_ticks] = ACTIONS(4257), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4261), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1128] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6044), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(6707), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5378), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6070), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(3352), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2252), + [sym__unquoted_with_expr] = STATE(2447), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1128), - [anon_sym_true] = ACTIONS(4207), - [anon_sym_false] = ACTIONS(4207), - [anon_sym_null] = ACTIONS(4209), - [aux_sym_cmd_identifier_token38] = ACTIONS(4211), - [aux_sym_cmd_identifier_token39] = ACTIONS(4211), - [aux_sym_cmd_identifier_token40] = ACTIONS(4211), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4097), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(4213), - [aux_sym__val_number_decimal_token2] = ACTIONS(4215), - [aux_sym__val_number_decimal_token3] = ACTIONS(4217), - [aux_sym__val_number_decimal_token4] = ACTIONS(4219), - [aux_sym__val_number_token1] = ACTIONS(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4221), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1129] = { - [sym__val_range] = STATE(7676), - [sym__value] = STATE(4968), - [sym_val_nothing] = STATE(5010), - [sym_val_bool] = STATE(4627), - [sym_val_variable] = STATE(5010), - [sym_val_number] = STATE(5010), - [sym__val_number_decimal] = STATE(4122), - [sym__val_number] = STATE(5054), - [sym_val_duration] = STATE(5010), - [sym_val_filesize] = STATE(5010), - [sym_val_binary] = STATE(5010), - [sym_val_string] = STATE(5010), - [sym__raw_str] = STATE(4660), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(5010), - [sym__inter_single_quotes] = STATE(5011), - [sym__inter_double_quotes] = STATE(5012), - [sym_val_list] = STATE(5010), - [sym_val_record] = STATE(5010), - [sym_val_table] = STATE(5010), - [sym_val_closure] = STATE(5010), - [sym_unquoted] = STATE(4969), - [sym__unquoted_anonymous_prefix] = STATE(7883), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(3353), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2261), + [sym__unquoted_with_expr] = STATE(2459), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1129), - [anon_sym_true] = ACTIONS(4227), - [anon_sym_false] = ACTIONS(4227), - [anon_sym_null] = ACTIONS(4229), - [aux_sym_cmd_identifier_token38] = ACTIONS(4231), - [aux_sym_cmd_identifier_token39] = ACTIONS(4231), - [aux_sym_cmd_identifier_token40] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4233), - [anon_sym_LPAREN] = ACTIONS(4235), - [anon_sym_DOLLAR] = ACTIONS(4237), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_DOT_DOT] = ACTIONS(4241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4243), - [anon_sym_DOT_DOT_LT] = ACTIONS(4243), - [aux_sym__val_number_decimal_token1] = ACTIONS(2147), - [aux_sym__val_number_decimal_token2] = ACTIONS(4245), - [aux_sym__val_number_decimal_token3] = ACTIONS(4247), - [aux_sym__val_number_decimal_token4] = ACTIONS(4249), - [aux_sym__val_number_token1] = ACTIONS(4251), - [aux_sym__val_number_token2] = ACTIONS(4251), - [aux_sym__val_number_token3] = ACTIONS(4251), - [anon_sym_0b] = ACTIONS(2155), - [anon_sym_0o] = ACTIONS(2157), - [anon_sym_0x] = ACTIONS(2157), - [sym_val_date] = ACTIONS(4253), - [anon_sym_DQUOTE] = ACTIONS(4255), - [sym__str_single_quotes] = ACTIONS(4257), - [sym__str_back_ticks] = ACTIONS(4257), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4261), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1130] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6062), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(5733), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(6089), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(3354), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2279), + [sym__unquoted_with_expr] = STATE(2476), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1130), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3828), - [aux_sym_cmd_identifier_token39] = ACTIONS(3828), - [aux_sym_cmd_identifier_token40] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4169), - [anon_sym_DOLLAR] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1131] = { - [sym__val_range] = STATE(7676), - [sym__value] = STATE(4983), - [sym_val_nothing] = STATE(5010), - [sym_val_bool] = STATE(4627), - [sym_val_variable] = STATE(5010), - [sym_val_number] = STATE(5010), - [sym__val_number_decimal] = STATE(4122), - [sym__val_number] = STATE(5054), - [sym_val_duration] = STATE(5010), - [sym_val_filesize] = STATE(5010), - [sym_val_binary] = STATE(5010), - [sym_val_string] = STATE(5010), - [sym__raw_str] = STATE(4660), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(5010), - [sym__inter_single_quotes] = STATE(5011), - [sym__inter_double_quotes] = STATE(5012), - [sym_val_list] = STATE(5010), - [sym_val_record] = STATE(5010), - [sym_val_table] = STATE(5010), - [sym_val_closure] = STATE(5010), - [sym_unquoted] = STATE(4984), - [sym__unquoted_anonymous_prefix] = STATE(7883), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(3355), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2280), + [sym__unquoted_with_expr] = STATE(2481), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1131), - [anon_sym_true] = ACTIONS(4227), - [anon_sym_false] = ACTIONS(4227), - [anon_sym_null] = ACTIONS(4229), - [aux_sym_cmd_identifier_token38] = ACTIONS(4231), - [aux_sym_cmd_identifier_token39] = ACTIONS(4231), - [aux_sym_cmd_identifier_token40] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4233), - [anon_sym_LPAREN] = ACTIONS(4235), - [anon_sym_DOLLAR] = ACTIONS(4237), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_DOT_DOT] = ACTIONS(4241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4243), - [anon_sym_DOT_DOT_LT] = ACTIONS(4243), - [aux_sym__val_number_decimal_token1] = ACTIONS(2147), - [aux_sym__val_number_decimal_token2] = ACTIONS(4245), - [aux_sym__val_number_decimal_token3] = ACTIONS(4247), - [aux_sym__val_number_decimal_token4] = ACTIONS(4249), - [aux_sym__val_number_token1] = ACTIONS(4251), - [aux_sym__val_number_token2] = ACTIONS(4251), - [aux_sym__val_number_token3] = ACTIONS(4251), - [anon_sym_0b] = ACTIONS(2155), - [anon_sym_0o] = ACTIONS(2157), - [anon_sym_0x] = ACTIONS(2157), - [sym_val_date] = ACTIONS(4253), - [anon_sym_DQUOTE] = ACTIONS(4255), - [sym__str_single_quotes] = ACTIONS(4257), - [sym__str_back_ticks] = ACTIONS(4257), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4261), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1132] = { - [sym__val_range] = STATE(7973), - [sym__value] = STATE(4822), - [sym_val_nothing] = STATE(4718), - [sym_val_bool] = STATE(6790), - [sym_val_variable] = STATE(4718), - [sym_val_number] = STATE(4718), - [sym__val_number_decimal] = STATE(5577), - [sym__val_number] = STATE(4796), - [sym_val_duration] = STATE(4718), - [sym_val_filesize] = STATE(4718), - [sym_val_binary] = STATE(4718), - [sym_val_string] = STATE(4718), - [sym__raw_str] = STATE(4414), - [sym__str_double_quotes] = STATE(4414), - [sym_val_interpolated] = STATE(4718), - [sym__inter_single_quotes] = STATE(4787), - [sym__inter_double_quotes] = STATE(4810), - [sym_val_list] = STATE(4718), - [sym_val_record] = STATE(4718), - [sym_val_table] = STATE(4718), - [sym_val_closure] = STATE(4718), - [sym_unquoted] = STATE(4848), - [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_ctrl_do] = STATE(5156), + [sym_ctrl_if] = STATE(5156), + [sym_ctrl_match] = STATE(5156), + [sym_ctrl_try] = STATE(5156), + [sym__expression] = STATE(5156), + [sym_expr_unary] = STATE(2469), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2469), + [sym__expr_binary_expression] = STATE(3976), + [sym_expr_parenthesized] = STATE(2122), + [sym_val_range] = STATE(3962), + [sym__value] = STATE(2469), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2487), + [sym_val_variable] = STATE(2113), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3163), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), [sym_comment] = STATE(1132), - [anon_sym_true] = ACTIONS(4263), - [anon_sym_false] = ACTIONS(4263), - [anon_sym_null] = ACTIONS(4265), - [aux_sym_cmd_identifier_token38] = ACTIONS(4267), - [aux_sym_cmd_identifier_token39] = ACTIONS(4267), - [aux_sym_cmd_identifier_token40] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4273), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), - [anon_sym_DOT_DOT_LT] = ACTIONS(4279), - [aux_sym__val_number_decimal_token1] = ACTIONS(4281), - [aux_sym__val_number_decimal_token2] = ACTIONS(4283), - [aux_sym__val_number_decimal_token3] = ACTIONS(4285), - [aux_sym__val_number_decimal_token4] = ACTIONS(4287), - [aux_sym__val_number_token1] = ACTIONS(4289), - [aux_sym__val_number_token2] = ACTIONS(4289), - [aux_sym__val_number_token3] = ACTIONS(4289), - [anon_sym_0b] = ACTIONS(1971), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1991), + [ts_builtin_sym_end] = ACTIONS(3349), + [sym__newline] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_err_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_GT_PIPE] = ACTIONS(3349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_match] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(3433), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(3435), + [anon_sym_true] = ACTIONS(3437), + [anon_sym_false] = ACTIONS(3437), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1133] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6013), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(7202), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5569), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6128), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(3356), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2283), + [sym__unquoted_with_expr] = STATE(2486), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1133), - [anon_sym_true] = ACTIONS(4087), - [anon_sym_false] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(4089), - [aux_sym_cmd_identifier_token38] = ACTIONS(4091), - [aux_sym_cmd_identifier_token39] = ACTIONS(4091), - [aux_sym_cmd_identifier_token40] = ACTIONS(4091), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4097), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(4099), - [aux_sym__val_number_decimal_token2] = ACTIONS(4101), - [aux_sym__val_number_decimal_token3] = ACTIONS(4103), - [aux_sym__val_number_decimal_token4] = ACTIONS(4105), - [aux_sym__val_number_token1] = ACTIONS(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4107), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1134] = { - [sym__val_range] = STATE(7973), - [sym__value] = STATE(4706), - [sym_val_nothing] = STATE(4718), - [sym_val_bool] = STATE(6790), - [sym_val_variable] = STATE(4718), - [sym_val_number] = STATE(4718), - [sym__val_number_decimal] = STATE(5577), - [sym__val_number] = STATE(4796), - [sym_val_duration] = STATE(4718), - [sym_val_filesize] = STATE(4718), - [sym_val_binary] = STATE(4718), - [sym_val_string] = STATE(4718), - [sym__raw_str] = STATE(4414), - [sym__str_double_quotes] = STATE(4414), - [sym_val_interpolated] = STATE(4718), - [sym__inter_single_quotes] = STATE(4787), - [sym__inter_double_quotes] = STATE(4810), - [sym_val_list] = STATE(4718), - [sym_val_record] = STATE(4718), - [sym_val_table] = STATE(4718), - [sym_val_closure] = STATE(4718), - [sym_unquoted] = STATE(4707), - [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(3357), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2288), + [sym__unquoted_with_expr] = STATE(2493), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1134), - [anon_sym_true] = ACTIONS(4263), - [anon_sym_false] = ACTIONS(4263), - [anon_sym_null] = ACTIONS(4265), - [aux_sym_cmd_identifier_token38] = ACTIONS(4267), - [aux_sym_cmd_identifier_token39] = ACTIONS(4267), - [aux_sym_cmd_identifier_token40] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4273), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), - [anon_sym_DOT_DOT_LT] = ACTIONS(4279), - [aux_sym__val_number_decimal_token1] = ACTIONS(4281), - [aux_sym__val_number_decimal_token2] = ACTIONS(4283), - [aux_sym__val_number_decimal_token3] = ACTIONS(4285), - [aux_sym__val_number_decimal_token4] = ACTIONS(4287), - [aux_sym__val_number_token1] = ACTIONS(4289), - [aux_sym__val_number_token2] = ACTIONS(4289), - [aux_sym__val_number_token3] = ACTIONS(4289), - [anon_sym_0b] = ACTIONS(1971), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1135] = { - [sym__val_range] = STATE(7973), - [sym__value] = STATE(4757), - [sym_val_nothing] = STATE(4718), - [sym_val_bool] = STATE(6790), - [sym_val_variable] = STATE(4718), - [sym_val_number] = STATE(4718), - [sym__val_number_decimal] = STATE(5577), - [sym__val_number] = STATE(4796), - [sym_val_duration] = STATE(4718), - [sym_val_filesize] = STATE(4718), - [sym_val_binary] = STATE(4718), - [sym_val_string] = STATE(4718), - [sym__raw_str] = STATE(4414), - [sym__str_double_quotes] = STATE(4414), - [sym_val_interpolated] = STATE(4718), - [sym__inter_single_quotes] = STATE(4787), - [sym__inter_double_quotes] = STATE(4810), - [sym_val_list] = STATE(4718), - [sym_val_record] = STATE(4718), - [sym_val_table] = STATE(4718), - [sym_val_closure] = STATE(4718), - [sym_unquoted] = STATE(4759), - [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(3358), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2290), + [sym__unquoted_with_expr] = STATE(2498), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1135), - [anon_sym_true] = ACTIONS(4263), - [anon_sym_false] = ACTIONS(4263), - [anon_sym_null] = ACTIONS(4265), - [aux_sym_cmd_identifier_token38] = ACTIONS(4267), - [aux_sym_cmd_identifier_token39] = ACTIONS(4267), - [aux_sym_cmd_identifier_token40] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4273), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), - [anon_sym_DOT_DOT_LT] = ACTIONS(4279), - [aux_sym__val_number_decimal_token1] = ACTIONS(4281), - [aux_sym__val_number_decimal_token2] = ACTIONS(4283), - [aux_sym__val_number_decimal_token3] = ACTIONS(4285), - [aux_sym__val_number_decimal_token4] = ACTIONS(4287), - [aux_sym__val_number_token1] = ACTIONS(4289), - [aux_sym__val_number_token2] = ACTIONS(4289), - [aux_sym__val_number_token3] = ACTIONS(4289), - [anon_sym_0b] = ACTIONS(1971), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1136] = { - [sym__val_range] = STATE(7973), - [sym__value] = STATE(4822), - [sym_val_nothing] = STATE(4718), - [sym_val_bool] = STATE(4461), - [sym_val_variable] = STATE(4718), - [sym_val_number] = STATE(4718), - [sym__val_number_decimal] = STATE(4108), - [sym__val_number] = STATE(4796), - [sym_val_duration] = STATE(4718), - [sym_val_filesize] = STATE(4718), - [sym_val_binary] = STATE(4718), - [sym_val_string] = STATE(4718), - [sym__raw_str] = STATE(4414), - [sym__str_double_quotes] = STATE(4414), - [sym_val_interpolated] = STATE(4718), - [sym__inter_single_quotes] = STATE(4787), - [sym__inter_double_quotes] = STATE(4810), - [sym_val_list] = STATE(4718), - [sym_val_record] = STATE(4718), - [sym_val_table] = STATE(4718), - [sym_val_closure] = STATE(4718), - [sym_unquoted] = STATE(4848), - [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2501), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2293), + [sym__unquoted_with_expr] = STATE(2510), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1136), - [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(4269), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4273), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), - [anon_sym_DOT_DOT_LT] = ACTIONS(4279), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [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(4289), - [aux_sym__val_number_token2] = ACTIONS(4289), - [aux_sym__val_number_token3] = ACTIONS(4289), - [anon_sym_0b] = ACTIONS(1971), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1137] = { - [sym__val_range] = STATE(7973), - [sym__value] = STATE(4812), - [sym_val_nothing] = STATE(4718), - [sym_val_bool] = STATE(6790), - [sym_val_variable] = STATE(4718), - [sym_val_number] = STATE(4718), - [sym__val_number_decimal] = STATE(5577), - [sym__val_number] = STATE(4796), - [sym_val_duration] = STATE(4718), - [sym_val_filesize] = STATE(4718), - [sym_val_binary] = STATE(4718), - [sym_val_string] = STATE(4718), - [sym__raw_str] = STATE(4414), - [sym__str_double_quotes] = STATE(4414), - [sym_val_interpolated] = STATE(4718), - [sym__inter_single_quotes] = STATE(4787), - [sym__inter_double_quotes] = STATE(4810), - [sym_val_list] = STATE(4718), - [sym_val_record] = STATE(4718), - [sym_val_table] = STATE(4718), - [sym_val_closure] = STATE(4718), - [sym_unquoted] = STATE(4813), - [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(3359), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2299), + [sym__unquoted_with_expr] = STATE(2518), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1137), - [anon_sym_true] = ACTIONS(4263), - [anon_sym_false] = ACTIONS(4263), - [anon_sym_null] = ACTIONS(4265), - [aux_sym_cmd_identifier_token38] = ACTIONS(4267), - [aux_sym_cmd_identifier_token39] = ACTIONS(4267), - [aux_sym_cmd_identifier_token40] = ACTIONS(4267), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4273), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), - [anon_sym_DOT_DOT_LT] = ACTIONS(4279), - [aux_sym__val_number_decimal_token1] = ACTIONS(4281), - [aux_sym__val_number_decimal_token2] = ACTIONS(4283), - [aux_sym__val_number_decimal_token3] = ACTIONS(4285), - [aux_sym__val_number_decimal_token4] = ACTIONS(4287), - [aux_sym__val_number_token1] = ACTIONS(4289), - [aux_sym__val_number_token2] = ACTIONS(4289), - [aux_sym__val_number_token3] = ACTIONS(4289), - [anon_sym_0b] = ACTIONS(1971), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(4291), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1138] = { - [sym__val_range] = STATE(7973), - [sym__value] = STATE(4706), - [sym_val_nothing] = STATE(4718), - [sym_val_bool] = STATE(4461), - [sym_val_variable] = STATE(4718), - [sym_val_number] = STATE(4718), - [sym__val_number_decimal] = STATE(4108), - [sym__val_number] = STATE(4796), - [sym_val_duration] = STATE(4718), - [sym_val_filesize] = STATE(4718), - [sym_val_binary] = STATE(4718), - [sym_val_string] = STATE(4718), - [sym__raw_str] = STATE(4414), - [sym__str_double_quotes] = STATE(4414), - [sym_val_interpolated] = STATE(4718), - [sym__inter_single_quotes] = STATE(4787), - [sym__inter_double_quotes] = STATE(4810), - [sym_val_list] = STATE(4718), - [sym_val_record] = STATE(4718), - [sym_val_table] = STATE(4718), - [sym_val_closure] = STATE(4718), - [sym_unquoted] = STATE(4707), - [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_expr_unary] = STATE(2093), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2093), + [sym__expr_binary_expression] = STATE(3921), + [sym_expr_parenthesized] = STATE(2093), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(2093), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(3639), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3385), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(1859), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1138), - [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(4269), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4273), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), - [anon_sym_DOT_DOT_LT] = ACTIONS(4279), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [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(4289), - [aux_sym__val_number_token2] = ACTIONS(4289), - [aux_sym__val_number_token3] = ACTIONS(4289), - [anon_sym_0b] = ACTIONS(1971), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1139] = { - [sym__val_range] = STATE(7973), - [sym__value] = STATE(4757), - [sym_val_nothing] = STATE(4718), - [sym_val_bool] = STATE(4461), - [sym_val_variable] = STATE(4718), - [sym_val_number] = STATE(4718), - [sym__val_number_decimal] = STATE(4108), - [sym__val_number] = STATE(4796), - [sym_val_duration] = STATE(4718), - [sym_val_filesize] = STATE(4718), - [sym_val_binary] = STATE(4718), - [sym_val_string] = STATE(4718), - [sym__raw_str] = STATE(4414), - [sym__str_double_quotes] = STATE(4414), - [sym_val_interpolated] = STATE(4718), - [sym__inter_single_quotes] = STATE(4787), - [sym__inter_double_quotes] = STATE(4810), - [sym_val_list] = STATE(4718), - [sym_val_record] = STATE(4718), - [sym_val_table] = STATE(4718), - [sym_val_closure] = STATE(4718), - [sym_unquoted] = STATE(4759), - [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2492), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2288), + [sym__unquoted_with_expr] = STATE(2493), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1139), - [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(4269), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4273), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), - [anon_sym_DOT_DOT_LT] = ACTIONS(4279), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [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(4289), - [aux_sym__val_number_token2] = ACTIONS(4289), - [aux_sym__val_number_token3] = ACTIONS(4289), - [anon_sym_0b] = ACTIONS(1971), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1140] = { - [sym__val_range] = STATE(7645), - [sym__value] = STATE(3652), - [sym_val_nothing] = STATE(3605), - [sym_val_bool] = STATE(3560), - [sym_val_variable] = STATE(3605), - [sym_val_number] = STATE(3605), - [sym__val_number_decimal] = STATE(3407), - [sym__val_number] = STATE(3607), - [sym_val_duration] = STATE(3605), - [sym_val_filesize] = STATE(3605), - [sym_val_binary] = STATE(3605), - [sym_val_string] = STATE(3605), - [sym__raw_str] = STATE(3545), - [sym__str_double_quotes] = STATE(3545), - [sym_val_interpolated] = STATE(3605), - [sym__inter_single_quotes] = STATE(3639), - [sym__inter_double_quotes] = STATE(3640), - [sym_val_list] = STATE(3605), - [sym_val_record] = STATE(3605), - [sym_val_table] = STATE(3605), - [sym_val_closure] = STATE(3605), - [sym_unquoted] = STATE(3653), - [sym__unquoted_anonymous_prefix] = STATE(7770), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(3360), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2303), + [sym__unquoted_with_expr] = STATE(2530), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1140), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4317), - [aux_sym_cmd_identifier_token38] = ACTIONS(4319), - [aux_sym_cmd_identifier_token39] = ACTIONS(4319), - [aux_sym_cmd_identifier_token40] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_DOLLAR] = ACTIONS(4325), - [anon_sym_LBRACE] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4331), - [anon_sym_DOT_DOT_LT] = ACTIONS(4331), - [aux_sym__val_number_decimal_token1] = ACTIONS(4333), - [aux_sym__val_number_decimal_token2] = ACTIONS(4335), - [aux_sym__val_number_decimal_token3] = ACTIONS(4337), - [aux_sym__val_number_decimal_token4] = ACTIONS(4339), - [aux_sym__val_number_token1] = ACTIONS(4341), - [aux_sym__val_number_token2] = ACTIONS(4341), - [aux_sym__val_number_token3] = ACTIONS(4341), - [anon_sym_0b] = ACTIONS(4343), - [anon_sym_0o] = ACTIONS(4345), - [anon_sym_0x] = ACTIONS(4345), - [sym_val_date] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [sym__str_single_quotes] = ACTIONS(4351), - [sym__str_back_ticks] = ACTIONS(4351), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4353), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4355), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4357), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4359), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1141] = { - [sym__val_range] = STATE(7973), - [sym__value] = STATE(4812), - [sym_val_nothing] = STATE(4718), - [sym_val_bool] = STATE(4461), - [sym_val_variable] = STATE(4718), - [sym_val_number] = STATE(4718), - [sym__val_number_decimal] = STATE(4108), - [sym__val_number] = STATE(4796), - [sym_val_duration] = STATE(4718), - [sym_val_filesize] = STATE(4718), - [sym_val_binary] = STATE(4718), - [sym_val_string] = STATE(4718), - [sym__raw_str] = STATE(4414), - [sym__str_double_quotes] = STATE(4414), - [sym_val_interpolated] = STATE(4718), - [sym__inter_single_quotes] = STATE(4787), - [sym__inter_double_quotes] = STATE(4810), - [sym_val_list] = STATE(4718), - [sym_val_record] = STATE(4718), - [sym_val_table] = STATE(4718), - [sym_val_closure] = STATE(4718), - [sym_unquoted] = STATE(4813), - [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2496), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2290), + [sym__unquoted_with_expr] = STATE(2498), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1141), - [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(4269), - [anon_sym_LPAREN] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4273), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_DOT_DOT] = ACTIONS(4277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), - [anon_sym_DOT_DOT_LT] = ACTIONS(4279), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [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(4289), - [aux_sym__val_number_token2] = ACTIONS(4289), - [aux_sym__val_number_token3] = ACTIONS(4289), - [anon_sym_0b] = ACTIONS(1971), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(4313), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1142] = { - [sym__val_range] = STATE(7645), - [sym__value] = STATE(3657), - [sym_val_nothing] = STATE(3605), - [sym_val_bool] = STATE(3560), - [sym_val_variable] = STATE(3605), - [sym_val_number] = STATE(3605), - [sym__val_number_decimal] = STATE(3407), - [sym__val_number] = STATE(3607), - [sym_val_duration] = STATE(3605), - [sym_val_filesize] = STATE(3605), - [sym_val_binary] = STATE(3605), - [sym_val_string] = STATE(3605), - [sym__raw_str] = STATE(3545), - [sym__str_double_quotes] = STATE(3545), - [sym_val_interpolated] = STATE(3605), - [sym__inter_single_quotes] = STATE(3639), - [sym__inter_double_quotes] = STATE(3640), - [sym_val_list] = STATE(3605), - [sym_val_record] = STATE(3605), - [sym_val_table] = STATE(3605), - [sym_val_closure] = STATE(3605), - [sym_unquoted] = STATE(3658), - [sym__unquoted_anonymous_prefix] = STATE(7770), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(3346), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2238), + [sym__unquoted_with_expr] = STATE(2533), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1142), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4317), - [aux_sym_cmd_identifier_token38] = ACTIONS(4319), - [aux_sym_cmd_identifier_token39] = ACTIONS(4319), - [aux_sym_cmd_identifier_token40] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_DOLLAR] = ACTIONS(4325), - [anon_sym_LBRACE] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4331), - [anon_sym_DOT_DOT_LT] = ACTIONS(4331), - [aux_sym__val_number_decimal_token1] = ACTIONS(4333), - [aux_sym__val_number_decimal_token2] = ACTIONS(4335), - [aux_sym__val_number_decimal_token3] = ACTIONS(4337), - [aux_sym__val_number_decimal_token4] = ACTIONS(4339), - [aux_sym__val_number_token1] = ACTIONS(4341), - [aux_sym__val_number_token2] = ACTIONS(4341), - [aux_sym__val_number_token3] = ACTIONS(4341), - [anon_sym_0b] = ACTIONS(4343), - [anon_sym_0o] = ACTIONS(4345), - [anon_sym_0x] = ACTIONS(4345), - [sym_val_date] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [sym__str_single_quotes] = ACTIONS(4351), - [sym__str_back_ticks] = ACTIONS(4351), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4353), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4355), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4357), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4359), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1143] = { - [sym__expr_parenthesized_immediate] = STATE(1694), - [sym__immediate_decimal] = STATE(1590), - [sym_val_variable] = STATE(1694), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(3340), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2158), + [sym__unquoted_with_expr] = STATE(2517), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1143), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1610), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [sym__newline] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_err_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_GT_PIPE] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_RPAREN] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1610), - [anon_sym_DOT_DOT_LT] = ACTIONS(1610), - [aux_sym__immediate_decimal_token1] = ACTIONS(4113), - [aux_sym__immediate_decimal_token3] = ACTIONS(4115), - [aux_sym__immediate_decimal_token4] = ACTIONS(4117), - [aux_sym__immediate_decimal_token5] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1608), - [aux_sym__val_number_decimal_token4] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_0b] = ACTIONS(1608), - [anon_sym_0o] = ACTIONS(1608), - [anon_sym_0x] = ACTIONS(1608), - [sym_val_date] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1610), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1608), - [anon_sym_out_GT] = ACTIONS(1608), - [anon_sym_e_GT] = ACTIONS(1608), - [anon_sym_o_GT] = ACTIONS(1608), - [anon_sym_err_PLUSout_GT] = ACTIONS(1608), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), - [anon_sym_o_PLUSe_GT] = ACTIONS(1608), - [anon_sym_e_PLUSo_GT] = ACTIONS(1608), - [anon_sym_err_GT_GT] = ACTIONS(1610), - [anon_sym_out_GT_GT] = ACTIONS(1610), - [anon_sym_e_GT_GT] = ACTIONS(1610), - [anon_sym_o_GT_GT] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), - [aux_sym_unquoted_token1] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1144] = { - [sym__val_range] = STATE(7645), - [sym__value] = STATE(3603), - [sym_val_nothing] = STATE(3605), - [sym_val_bool] = STATE(3560), - [sym_val_variable] = STATE(3605), - [sym_val_number] = STATE(3605), - [sym__val_number_decimal] = STATE(3407), - [sym__val_number] = STATE(3607), - [sym_val_duration] = STATE(3605), - [sym_val_filesize] = STATE(3605), - [sym_val_binary] = STATE(3605), - [sym_val_string] = STATE(3605), - [sym__raw_str] = STATE(3545), - [sym__str_double_quotes] = STATE(3545), - [sym_val_interpolated] = STATE(3605), - [sym__inter_single_quotes] = STATE(3639), - [sym__inter_double_quotes] = STATE(3640), - [sym_val_list] = STATE(3605), - [sym_val_record] = STATE(3605), - [sym_val_table] = STATE(3605), - [sym_val_closure] = STATE(3605), - [sym_unquoted] = STATE(3609), - [sym__unquoted_anonymous_prefix] = STATE(7770), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2463), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2279), + [sym__unquoted_with_expr] = STATE(2476), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1144), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4317), - [aux_sym_cmd_identifier_token38] = ACTIONS(4319), - [aux_sym_cmd_identifier_token39] = ACTIONS(4319), - [aux_sym_cmd_identifier_token40] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_DOLLAR] = ACTIONS(4325), - [anon_sym_LBRACE] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4331), - [anon_sym_DOT_DOT_LT] = ACTIONS(4331), - [aux_sym__val_number_decimal_token1] = ACTIONS(4333), - [aux_sym__val_number_decimal_token2] = ACTIONS(4335), - [aux_sym__val_number_decimal_token3] = ACTIONS(4337), - [aux_sym__val_number_decimal_token4] = ACTIONS(4339), - [aux_sym__val_number_token1] = ACTIONS(4341), - [aux_sym__val_number_token2] = ACTIONS(4341), - [aux_sym__val_number_token3] = ACTIONS(4341), - [anon_sym_0b] = ACTIONS(4343), - [anon_sym_0o] = ACTIONS(4345), - [anon_sym_0x] = ACTIONS(4345), - [sym_val_date] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [sym__str_single_quotes] = ACTIONS(4351), - [sym__str_back_ticks] = ACTIONS(4351), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4353), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4355), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4357), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4359), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1145] = { - [sym__val_range] = STATE(7734), - [sym__value] = STATE(1639), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(1587), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1238), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym_unquoted] = STATE(1647), - [sym__unquoted_anonymous_prefix] = STATE(7936), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2501), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2293), + [sym__unquoted_with_expr] = STATE(2510), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1145), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4363), - [aux_sym_cmd_identifier_token38] = ACTIONS(4365), - [aux_sym_cmd_identifier_token39] = ACTIONS(4365), - [aux_sym_cmd_identifier_token40] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_DOLLAR] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_DOT_DOT] = ACTIONS(4369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4371), - [anon_sym_DOT_DOT_LT] = ACTIONS(4371), - [aux_sym__val_number_decimal_token1] = ACTIONS(4373), - [aux_sym__val_number_decimal_token2] = ACTIONS(4375), - [aux_sym__val_number_decimal_token3] = ACTIONS(4377), - [aux_sym__val_number_decimal_token4] = ACTIONS(4379), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(4381), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4383), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1146] = { - [sym__val_range] = STATE(7645), - [sym__value] = STATE(3600), - [sym_val_nothing] = STATE(3605), - [sym_val_bool] = STATE(3560), - [sym_val_variable] = STATE(3605), - [sym_val_number] = STATE(3605), - [sym__val_number_decimal] = STATE(3407), - [sym__val_number] = STATE(3607), - [sym_val_duration] = STATE(3605), - [sym_val_filesize] = STATE(3605), - [sym_val_binary] = STATE(3605), - [sym_val_string] = STATE(3605), - [sym__raw_str] = STATE(3545), - [sym__str_double_quotes] = STATE(3545), - [sym_val_interpolated] = STATE(3605), - [sym__inter_single_quotes] = STATE(3639), - [sym__inter_double_quotes] = STATE(3640), - [sym_val_list] = STATE(3605), - [sym_val_record] = STATE(3605), - [sym_val_table] = STATE(3605), - [sym_val_closure] = STATE(3605), - [sym_unquoted] = STATE(3589), - [sym__unquoted_anonymous_prefix] = STATE(7770), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3881), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3645), + [sym__unquoted_with_expr] = STATE(3854), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1146), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4317), - [aux_sym_cmd_identifier_token38] = ACTIONS(4319), - [aux_sym_cmd_identifier_token39] = ACTIONS(4319), - [aux_sym_cmd_identifier_token40] = ACTIONS(4319), - [anon_sym_LBRACK] = ACTIONS(4321), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_DOLLAR] = ACTIONS(4325), - [anon_sym_LBRACE] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4331), - [anon_sym_DOT_DOT_LT] = ACTIONS(4331), - [aux_sym__val_number_decimal_token1] = ACTIONS(4333), - [aux_sym__val_number_decimal_token2] = ACTIONS(4335), - [aux_sym__val_number_decimal_token3] = ACTIONS(4337), - [aux_sym__val_number_decimal_token4] = ACTIONS(4339), - [aux_sym__val_number_token1] = ACTIONS(4341), - [aux_sym__val_number_token2] = ACTIONS(4341), - [aux_sym__val_number_token3] = ACTIONS(4341), - [anon_sym_0b] = ACTIONS(4343), - [anon_sym_0o] = ACTIONS(4345), - [anon_sym_0x] = ACTIONS(4345), - [sym_val_date] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(4349), - [sym__str_single_quotes] = ACTIONS(4351), - [sym__str_back_ticks] = ACTIONS(4351), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4353), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4355), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4357), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4359), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1147] = { - [sym__val_range] = STATE(7734), - [sym__value] = STATE(1606), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(1587), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1238), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym_unquoted] = STATE(1645), - [sym__unquoted_anonymous_prefix] = STATE(7936), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3899), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3674), + [sym__unquoted_with_expr] = STATE(3857), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1147), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4363), - [aux_sym_cmd_identifier_token38] = ACTIONS(4365), - [aux_sym_cmd_identifier_token39] = ACTIONS(4365), - [aux_sym_cmd_identifier_token40] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_DOLLAR] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_DOT_DOT] = ACTIONS(4369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4371), - [anon_sym_DOT_DOT_LT] = ACTIONS(4371), - [aux_sym__val_number_decimal_token1] = ACTIONS(4373), - [aux_sym__val_number_decimal_token2] = ACTIONS(4375), - [aux_sym__val_number_decimal_token3] = ACTIONS(4377), - [aux_sym__val_number_decimal_token4] = ACTIONS(4379), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(4381), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4383), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1148] = { - [sym__match_pattern_expression] = STATE(3083), - [sym__match_pattern_value] = STATE(3079), - [sym__match_pattern_list] = STATE(3092), - [sym__match_pattern_rest] = STATE(7667), - [sym__match_pattern_record] = STATE(3125), - [sym_expr_parenthesized] = STATE(2897), - [sym_val_range] = STATE(3079), - [sym__val_range] = STATE(7928), - [sym_val_nothing] = STATE(3054), - [sym_val_bool] = STATE(3042), - [sym_val_variable] = STATE(2873), - [sym_val_number] = STATE(3054), - [sym__val_number_decimal] = STATE(2687), - [sym__val_number] = STATE(3094), - [sym_val_duration] = STATE(3054), - [sym_val_filesize] = STATE(3054), - [sym_val_binary] = STATE(3054), - [sym_val_string] = STATE(3054), - [sym__raw_str] = STATE(3122), - [sym__str_double_quotes] = STATE(3122), - [sym_val_table] = STATE(3054), - [sym__unquoted_in_list] = STATE(3083), - [sym__unquoted_anonymous_prefix] = STATE(7845), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3882), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3694), + [sym__unquoted_with_expr] = STATE(3878), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1148), - [aux_sym__match_pattern_list_repeat1] = STATE(1198), - [anon_sym_true] = ACTIONS(3760), - [anon_sym_false] = ACTIONS(3760), - [anon_sym_null] = ACTIONS(3762), - [aux_sym_cmd_identifier_token38] = ACTIONS(3764), - [aux_sym_cmd_identifier_token39] = ACTIONS(3764), - [aux_sym_cmd_identifier_token40] = ACTIONS(3764), - [anon_sym_LBRACK] = ACTIONS(4121), - [anon_sym_RBRACK] = ACTIONS(4385), - [anon_sym_LPAREN] = ACTIONS(3772), - [anon_sym_DOLLAR] = ACTIONS(3774), - [anon_sym_LBRACE] = ACTIONS(3776), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3780), - [anon_sym_DOT_DOT_LT] = ACTIONS(3780), - [aux_sym__val_number_decimal_token1] = ACTIONS(3782), - [aux_sym__val_number_decimal_token2] = ACTIONS(3784), - [aux_sym__val_number_decimal_token3] = ACTIONS(3786), - [aux_sym__val_number_decimal_token4] = ACTIONS(3788), - [aux_sym__val_number_token1] = ACTIONS(3790), - [aux_sym__val_number_token2] = ACTIONS(3790), - [aux_sym__val_number_token3] = ACTIONS(3790), - [anon_sym_0b] = ACTIONS(3792), - [anon_sym_0o] = ACTIONS(3794), - [anon_sym_0x] = ACTIONS(3794), - [sym_val_date] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3798), - [sym__str_single_quotes] = ACTIONS(3800), - [sym__str_back_ticks] = ACTIONS(3800), - [anon_sym_err_GT] = ACTIONS(2627), - [anon_sym_out_GT] = ACTIONS(2627), - [anon_sym_e_GT] = ACTIONS(2627), - [anon_sym_o_GT] = ACTIONS(2627), - [anon_sym_err_PLUSout_GT] = ACTIONS(2627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), - [anon_sym_o_PLUSe_GT] = ACTIONS(2627), - [anon_sym_e_PLUSo_GT] = ACTIONS(2627), - [anon_sym_err_GT_GT] = ACTIONS(2629), - [anon_sym_out_GT_GT] = ACTIONS(2629), - [anon_sym_e_GT_GT] = ACTIONS(2629), - [anon_sym_o_GT_GT] = ACTIONS(2629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3802), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1149] = { - [sym__val_range] = STATE(7734), - [sym__value] = STATE(1607), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(1587), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1238), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym_unquoted] = STATE(1619), - [sym__unquoted_anonymous_prefix] = STATE(7936), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3879), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3697), + [sym__unquoted_with_expr] = STATE(3897), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1149), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4363), - [aux_sym_cmd_identifier_token38] = ACTIONS(4365), - [aux_sym_cmd_identifier_token39] = ACTIONS(4365), - [aux_sym_cmd_identifier_token40] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_DOLLAR] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_DOT_DOT] = ACTIONS(4369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4371), - [anon_sym_DOT_DOT_LT] = ACTIONS(4371), - [aux_sym__val_number_decimal_token1] = ACTIONS(4373), - [aux_sym__val_number_decimal_token2] = ACTIONS(4375), - [aux_sym__val_number_decimal_token3] = ACTIONS(4377), - [aux_sym__val_number_decimal_token4] = ACTIONS(4379), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(4381), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4383), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1150] = { - [sym__val_range] = STATE(7929), - [sym__value] = STATE(5903), - [sym_val_nothing] = STATE(4196), - [sym_val_bool] = STATE(5734), - [sym_val_variable] = STATE(4196), - [sym_val_number] = STATE(4196), - [sym__val_number_decimal] = STATE(5099), - [sym__val_number] = STATE(4279), - [sym_val_duration] = STATE(4196), - [sym_val_filesize] = STATE(4196), - [sym_val_binary] = STATE(4196), - [sym_val_string] = STATE(4196), - [sym__raw_str] = STATE(3606), - [sym__str_double_quotes] = STATE(3606), - [sym_val_interpolated] = STATE(4196), - [sym__inter_single_quotes] = STATE(4216), - [sym__inter_double_quotes] = STATE(4218), - [sym_val_list] = STATE(4196), - [sym_val_record] = STATE(4196), - [sym_val_table] = STATE(4196), - [sym_val_closure] = STATE(4196), - [sym_unquoted] = STATE(5949), - [sym__unquoted_anonymous_prefix] = STATE(7636), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3900), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3709), + [sym__unquoted_with_expr] = STATE(3902), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1150), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [anon_sym_null] = ACTIONS(4391), - [aux_sym_cmd_identifier_token38] = ACTIONS(4393), - [aux_sym_cmd_identifier_token39] = ACTIONS(4393), - [aux_sym_cmd_identifier_token40] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_DOLLAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_DOT_DOT] = ACTIONS(4399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), - [anon_sym_DOT_DOT_LT] = ACTIONS(4401), - [aux_sym__val_number_decimal_token1] = ACTIONS(4403), - [aux_sym__val_number_decimal_token2] = ACTIONS(4405), - [aux_sym__val_number_decimal_token3] = ACTIONS(4407), - [aux_sym__val_number_decimal_token4] = ACTIONS(4409), - [aux_sym__val_number_token1] = ACTIONS(3536), - [aux_sym__val_number_token2] = ACTIONS(3536), - [aux_sym__val_number_token3] = ACTIONS(3536), - [anon_sym_0b] = ACTIONS(3538), - [anon_sym_0o] = ACTIONS(3540), - [anon_sym_0x] = ACTIONS(3540), - [sym_val_date] = ACTIONS(4411), - [anon_sym_DQUOTE] = ACTIONS(3544), - [sym__str_single_quotes] = ACTIONS(3546), - [sym__str_back_ticks] = ACTIONS(3546), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3552), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1151] = { - [sym__val_range] = STATE(7734), - [sym__value] = STATE(1650), - [sym_val_nothing] = STATE(1587), - [sym_val_bool] = STATE(1514), - [sym_val_variable] = STATE(1587), - [sym_val_number] = STATE(1587), - [sym__val_number_decimal] = STATE(1238), - [sym__val_number] = STATE(1646), - [sym_val_duration] = STATE(1587), - [sym_val_filesize] = STATE(1587), - [sym_val_binary] = STATE(1587), - [sym_val_string] = STATE(1587), - [sym__raw_str] = STATE(1640), - [sym__str_double_quotes] = STATE(1640), - [sym_val_interpolated] = STATE(1587), - [sym__inter_single_quotes] = STATE(1696), - [sym__inter_double_quotes] = STATE(1642), - [sym_val_list] = STATE(1587), - [sym_val_record] = STATE(1587), - [sym_val_table] = STATE(1587), - [sym_val_closure] = STATE(1587), - [sym_unquoted] = STATE(1661), - [sym__unquoted_anonymous_prefix] = STATE(7936), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3904), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3711), + [sym__unquoted_with_expr] = STATE(3910), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1151), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [anon_sym_null] = ACTIONS(4363), - [aux_sym_cmd_identifier_token38] = ACTIONS(4365), - [aux_sym_cmd_identifier_token39] = ACTIONS(4365), - [aux_sym_cmd_identifier_token40] = ACTIONS(4365), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_DOLLAR] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(2655), - [anon_sym_DOT_DOT] = ACTIONS(4369), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4371), - [anon_sym_DOT_DOT_LT] = ACTIONS(4371), - [aux_sym__val_number_decimal_token1] = ACTIONS(4373), - [aux_sym__val_number_decimal_token2] = ACTIONS(4375), - [aux_sym__val_number_decimal_token3] = ACTIONS(4377), - [aux_sym__val_number_decimal_token4] = ACTIONS(4379), - [aux_sym__val_number_token1] = ACTIONS(2669), - [aux_sym__val_number_token2] = ACTIONS(2669), - [aux_sym__val_number_token3] = ACTIONS(2669), - [anon_sym_0b] = ACTIONS(2671), - [anon_sym_0o] = ACTIONS(2673), - [anon_sym_0x] = ACTIONS(2673), - [sym_val_date] = ACTIONS(4381), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym__str_single_quotes] = ACTIONS(2679), - [sym__str_back_ticks] = ACTIONS(2679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4383), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1152] = { - [sym__val_range] = STATE(7929), - [sym__value] = STATE(5956), - [sym_val_nothing] = STATE(4196), - [sym_val_bool] = STATE(5734), - [sym_val_variable] = STATE(4196), - [sym_val_number] = STATE(4196), - [sym__val_number_decimal] = STATE(5099), - [sym__val_number] = STATE(4279), - [sym_val_duration] = STATE(4196), - [sym_val_filesize] = STATE(4196), - [sym_val_binary] = STATE(4196), - [sym_val_string] = STATE(4196), - [sym__raw_str] = STATE(3606), - [sym__str_double_quotes] = STATE(3606), - [sym_val_interpolated] = STATE(4196), - [sym__inter_single_quotes] = STATE(4216), - [sym__inter_double_quotes] = STATE(4218), - [sym_val_list] = STATE(4196), - [sym_val_record] = STATE(4196), - [sym_val_table] = STATE(4196), - [sym_val_closure] = STATE(4196), - [sym_unquoted] = STATE(5960), - [sym__unquoted_anonymous_prefix] = STATE(7636), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3911), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3669), + [sym__unquoted_with_expr] = STATE(3847), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1152), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [anon_sym_null] = ACTIONS(4391), - [aux_sym_cmd_identifier_token38] = ACTIONS(4393), - [aux_sym_cmd_identifier_token39] = ACTIONS(4393), - [aux_sym_cmd_identifier_token40] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_DOLLAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_DOT_DOT] = ACTIONS(4399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), - [anon_sym_DOT_DOT_LT] = ACTIONS(4401), - [aux_sym__val_number_decimal_token1] = ACTIONS(4403), - [aux_sym__val_number_decimal_token2] = ACTIONS(4405), - [aux_sym__val_number_decimal_token3] = ACTIONS(4407), - [aux_sym__val_number_decimal_token4] = ACTIONS(4409), - [aux_sym__val_number_token1] = ACTIONS(3536), - [aux_sym__val_number_token2] = ACTIONS(3536), - [aux_sym__val_number_token3] = ACTIONS(3536), - [anon_sym_0b] = ACTIONS(3538), - [anon_sym_0o] = ACTIONS(3540), - [anon_sym_0x] = ACTIONS(3540), - [sym_val_date] = ACTIONS(4411), - [anon_sym_DQUOTE] = ACTIONS(3544), - [sym__str_single_quotes] = ACTIONS(3546), - [sym__str_back_ticks] = ACTIONS(3546), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3552), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1153] = { - [sym__val_range] = STATE(7929), - [sym__value] = STATE(5781), - [sym_val_nothing] = STATE(4196), - [sym_val_bool] = STATE(5734), - [sym_val_variable] = STATE(4196), - [sym_val_number] = STATE(4196), - [sym__val_number_decimal] = STATE(5099), - [sym__val_number] = STATE(4279), - [sym_val_duration] = STATE(4196), - [sym_val_filesize] = STATE(4196), - [sym_val_binary] = STATE(4196), - [sym_val_string] = STATE(4196), - [sym__raw_str] = STATE(3606), - [sym__str_double_quotes] = STATE(3606), - [sym_val_interpolated] = STATE(4196), - [sym__inter_single_quotes] = STATE(4216), - [sym__inter_double_quotes] = STATE(4218), - [sym_val_list] = STATE(4196), - [sym_val_record] = STATE(4196), - [sym_val_table] = STATE(4196), - [sym_val_closure] = STATE(4196), - [sym_unquoted] = STATE(5842), - [sym__unquoted_anonymous_prefix] = STATE(7636), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3913), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3623), + [sym__unquoted_with_expr] = STATE(3891), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1153), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [anon_sym_null] = ACTIONS(4391), - [aux_sym_cmd_identifier_token38] = ACTIONS(4393), - [aux_sym_cmd_identifier_token39] = ACTIONS(4393), - [aux_sym_cmd_identifier_token40] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_DOLLAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_DOT_DOT] = ACTIONS(4399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), - [anon_sym_DOT_DOT_LT] = ACTIONS(4401), - [aux_sym__val_number_decimal_token1] = ACTIONS(4403), - [aux_sym__val_number_decimal_token2] = ACTIONS(4405), - [aux_sym__val_number_decimal_token3] = ACTIONS(4407), - [aux_sym__val_number_decimal_token4] = ACTIONS(4409), - [aux_sym__val_number_token1] = ACTIONS(3536), - [aux_sym__val_number_token2] = ACTIONS(3536), - [aux_sym__val_number_token3] = ACTIONS(3536), - [anon_sym_0b] = ACTIONS(3538), - [anon_sym_0o] = ACTIONS(3540), - [anon_sym_0x] = ACTIONS(3540), - [sym_val_date] = ACTIONS(4411), - [anon_sym_DQUOTE] = ACTIONS(3544), - [sym__str_single_quotes] = ACTIONS(3546), - [sym__str_back_ticks] = ACTIONS(3546), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3552), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1154] = { - [sym__val_range] = STATE(7632), - [sym__value] = STATE(5510), - [sym_val_nothing] = STATE(4047), - [sym_val_bool] = STATE(5570), - [sym_val_variable] = STATE(4047), - [sym_val_number] = STATE(4047), - [sym__val_number_decimal] = STATE(4990), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4047), - [sym_val_filesize] = STATE(4047), - [sym_val_binary] = STATE(4047), - [sym_val_string] = STATE(4047), - [sym__raw_str] = STATE(2932), - [sym__str_double_quotes] = STATE(2932), - [sym_val_interpolated] = STATE(4047), - [sym__inter_single_quotes] = STATE(4101), - [sym__inter_double_quotes] = STATE(4102), - [sym_val_list] = STATE(4047), - [sym_val_record] = STATE(4047), - [sym_val_table] = STATE(4047), - [sym_val_closure] = STATE(4047), - [sym_unquoted] = STATE(5532), - [sym__unquoted_anonymous_prefix] = STATE(8071), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3846), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3625), + [sym__unquoted_with_expr] = STATE(3880), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1154), - [anon_sym_true] = ACTIONS(4413), - [anon_sym_false] = ACTIONS(4413), - [anon_sym_null] = ACTIONS(4415), - [aux_sym_cmd_identifier_token38] = ACTIONS(4417), - [aux_sym_cmd_identifier_token39] = ACTIONS(4417), - [aux_sym_cmd_identifier_token40] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(4151), - [anon_sym_DOLLAR] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(4155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), - [anon_sym_DOT_DOT_LT] = ACTIONS(4157), - [aux_sym__val_number_decimal_token1] = ACTIONS(4419), - [aux_sym__val_number_decimal_token2] = ACTIONS(4421), - [aux_sym__val_number_decimal_token3] = ACTIONS(4423), - [aux_sym__val_number_decimal_token4] = ACTIONS(4425), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3488), - [anon_sym_0o] = ACTIONS(3490), - [anon_sym_0x] = ACTIONS(3490), - [sym_val_date] = ACTIONS(4427), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym__str_single_quotes] = ACTIONS(3496), - [sym__str_back_ticks] = ACTIONS(3496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3502), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1155] = { - [sym__val_range] = STATE(7929), - [sym__value] = STATE(5979), - [sym_val_nothing] = STATE(4196), - [sym_val_bool] = STATE(5734), - [sym_val_variable] = STATE(4196), - [sym_val_number] = STATE(4196), - [sym__val_number_decimal] = STATE(5099), - [sym__val_number] = STATE(4279), - [sym_val_duration] = STATE(4196), - [sym_val_filesize] = STATE(4196), - [sym_val_binary] = STATE(4196), - [sym_val_string] = STATE(4196), - [sym__raw_str] = STATE(3606), - [sym__str_double_quotes] = STATE(3606), - [sym_val_interpolated] = STATE(4196), - [sym__inter_single_quotes] = STATE(4216), - [sym__inter_double_quotes] = STATE(4218), - [sym_val_list] = STATE(4196), - [sym_val_record] = STATE(4196), - [sym_val_table] = STATE(4196), - [sym_val_closure] = STATE(4196), - [sym_unquoted] = STATE(5824), - [sym__unquoted_anonymous_prefix] = STATE(7636), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3853), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3626), + [sym__unquoted_with_expr] = STATE(3868), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1155), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [anon_sym_null] = ACTIONS(4391), - [aux_sym_cmd_identifier_token38] = ACTIONS(4393), - [aux_sym_cmd_identifier_token39] = ACTIONS(4393), - [aux_sym_cmd_identifier_token40] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(3512), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_DOLLAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_DOT_DOT] = ACTIONS(4399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), - [anon_sym_DOT_DOT_LT] = ACTIONS(4401), - [aux_sym__val_number_decimal_token1] = ACTIONS(4403), - [aux_sym__val_number_decimal_token2] = ACTIONS(4405), - [aux_sym__val_number_decimal_token3] = ACTIONS(4407), - [aux_sym__val_number_decimal_token4] = ACTIONS(4409), - [aux_sym__val_number_token1] = ACTIONS(3536), - [aux_sym__val_number_token2] = ACTIONS(3536), - [aux_sym__val_number_token3] = ACTIONS(3536), - [anon_sym_0b] = ACTIONS(3538), - [anon_sym_0o] = ACTIONS(3540), - [anon_sym_0x] = ACTIONS(3540), - [sym_val_date] = ACTIONS(4411), - [anon_sym_DQUOTE] = ACTIONS(3544), - [sym__str_single_quotes] = ACTIONS(3546), - [sym__str_back_ticks] = ACTIONS(3546), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3552), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1156] = { - [sym__val_range] = STATE(7632), - [sym__value] = STATE(5502), - [sym_val_nothing] = STATE(4047), - [sym_val_bool] = STATE(5570), - [sym_val_variable] = STATE(4047), - [sym_val_number] = STATE(4047), - [sym__val_number_decimal] = STATE(4990), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4047), - [sym_val_filesize] = STATE(4047), - [sym_val_binary] = STATE(4047), - [sym_val_string] = STATE(4047), - [sym__raw_str] = STATE(2932), - [sym__str_double_quotes] = STATE(2932), - [sym_val_interpolated] = STATE(4047), - [sym__inter_single_quotes] = STATE(4101), - [sym__inter_double_quotes] = STATE(4102), - [sym_val_list] = STATE(4047), - [sym_val_record] = STATE(4047), - [sym_val_table] = STATE(4047), - [sym_val_closure] = STATE(4047), - [sym_unquoted] = STATE(5504), - [sym__unquoted_anonymous_prefix] = STATE(8071), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3627), + [sym__unquoted_with_expr] = STATE(3906), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1156), - [anon_sym_true] = ACTIONS(4413), - [anon_sym_false] = ACTIONS(4413), - [anon_sym_null] = ACTIONS(4415), - [aux_sym_cmd_identifier_token38] = ACTIONS(4417), - [aux_sym_cmd_identifier_token39] = ACTIONS(4417), - [aux_sym_cmd_identifier_token40] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(4151), - [anon_sym_DOLLAR] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(4155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), - [anon_sym_DOT_DOT_LT] = ACTIONS(4157), - [aux_sym__val_number_decimal_token1] = ACTIONS(4419), - [aux_sym__val_number_decimal_token2] = ACTIONS(4421), - [aux_sym__val_number_decimal_token3] = ACTIONS(4423), - [aux_sym__val_number_decimal_token4] = ACTIONS(4425), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3488), - [anon_sym_0o] = ACTIONS(3490), - [anon_sym_0x] = ACTIONS(3490), - [sym_val_date] = ACTIONS(4427), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym__str_single_quotes] = ACTIONS(3496), - [sym__str_back_ticks] = ACTIONS(3496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3502), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1157] = { - [sym__val_range] = STATE(7632), - [sym__value] = STATE(5581), - [sym_val_nothing] = STATE(4047), - [sym_val_bool] = STATE(5570), - [sym_val_variable] = STATE(4047), - [sym_val_number] = STATE(4047), - [sym__val_number_decimal] = STATE(4990), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4047), - [sym_val_filesize] = STATE(4047), - [sym_val_binary] = STATE(4047), - [sym_val_string] = STATE(4047), - [sym__raw_str] = STATE(2932), - [sym__str_double_quotes] = STATE(2932), - [sym_val_interpolated] = STATE(4047), - [sym__inter_single_quotes] = STATE(4101), - [sym__inter_double_quotes] = STATE(4102), - [sym_val_list] = STATE(4047), - [sym_val_record] = STATE(4047), - [sym_val_table] = STATE(4047), - [sym_val_closure] = STATE(4047), - [sym_unquoted] = STATE(5583), - [sym__unquoted_anonymous_prefix] = STATE(8071), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3895), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3628), + [sym__unquoted_with_expr] = STATE(3866), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1157), - [anon_sym_true] = ACTIONS(4413), - [anon_sym_false] = ACTIONS(4413), - [anon_sym_null] = ACTIONS(4415), - [aux_sym_cmd_identifier_token38] = ACTIONS(4417), - [aux_sym_cmd_identifier_token39] = ACTIONS(4417), - [aux_sym_cmd_identifier_token40] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(4151), - [anon_sym_DOLLAR] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(4155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), - [anon_sym_DOT_DOT_LT] = ACTIONS(4157), - [aux_sym__val_number_decimal_token1] = ACTIONS(4419), - [aux_sym__val_number_decimal_token2] = ACTIONS(4421), - [aux_sym__val_number_decimal_token3] = ACTIONS(4423), - [aux_sym__val_number_decimal_token4] = ACTIONS(4425), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3488), - [anon_sym_0o] = ACTIONS(3490), - [anon_sym_0x] = ACTIONS(3490), - [sym_val_date] = ACTIONS(4427), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym__str_single_quotes] = ACTIONS(3496), - [sym__str_back_ticks] = ACTIONS(3496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3502), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1158] = { - [sym__val_range] = STATE(7632), - [sym__value] = STATE(5611), - [sym_val_nothing] = STATE(4047), - [sym_val_bool] = STATE(5570), - [sym_val_variable] = STATE(4047), - [sym_val_number] = STATE(4047), - [sym__val_number_decimal] = STATE(4990), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4047), - [sym_val_filesize] = STATE(4047), - [sym_val_binary] = STATE(4047), - [sym_val_string] = STATE(4047), - [sym__raw_str] = STATE(2932), - [sym__str_double_quotes] = STATE(2932), - [sym_val_interpolated] = STATE(4047), - [sym__inter_single_quotes] = STATE(4101), - [sym__inter_double_quotes] = STATE(4102), - [sym_val_list] = STATE(4047), - [sym_val_record] = STATE(4047), - [sym_val_table] = STATE(4047), - [sym_val_closure] = STATE(4047), - [sym_unquoted] = STATE(5613), - [sym__unquoted_anonymous_prefix] = STATE(8071), + [sym_expr_unary] = STATE(3845), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3845), + [sym__expr_binary_expression] = STATE(3893), + [sym_expr_parenthesized] = STATE(3845), + [sym__val_range] = STATE(7627), + [sym__val_range_with_end] = STATE(7381), + [sym__value] = STATE(3845), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3664), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3387), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(3629), + [sym__unquoted_with_expr] = STATE(3907), + [sym__unquoted_anonymous_prefix] = STATE(6756), [sym_comment] = STATE(1158), - [anon_sym_true] = ACTIONS(4413), - [anon_sym_false] = ACTIONS(4413), - [anon_sym_null] = ACTIONS(4415), - [aux_sym_cmd_identifier_token38] = ACTIONS(4417), - [aux_sym_cmd_identifier_token39] = ACTIONS(4417), - [aux_sym_cmd_identifier_token40] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(4151), - [anon_sym_DOLLAR] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(4155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), - [anon_sym_DOT_DOT_LT] = ACTIONS(4157), - [aux_sym__val_number_decimal_token1] = ACTIONS(4419), - [aux_sym__val_number_decimal_token2] = ACTIONS(4421), - [aux_sym__val_number_decimal_token3] = ACTIONS(4423), - [aux_sym__val_number_decimal_token4] = ACTIONS(4425), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3488), - [anon_sym_0o] = ACTIONS(3490), - [anon_sym_0x] = ACTIONS(3490), - [sym_val_date] = ACTIONS(4427), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym__str_single_quotes] = ACTIONS(3496), - [sym__str_back_ticks] = ACTIONS(3496), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3502), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3443), + [anon_sym_DASH2] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(3449), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), + [anon_sym_DOT_DOT_LT] = ACTIONS(3453), + [anon_sym_null] = ACTIONS(3455), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3469), + [aux_sym__val_number_token5] = ACTIONS(3469), + [aux_sym__val_number_token6] = 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(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), }, [1159] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6044), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(5733), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(6070), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_ctrl_do] = STATE(4987), + [sym_ctrl_if] = STATE(4987), + [sym_ctrl_match] = STATE(4987), + [sym_ctrl_try] = STATE(4987), + [sym__expression] = STATE(4987), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3969), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3152), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), [sym_comment] = STATE(1159), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3828), - [aux_sym_cmd_identifier_token39] = ACTIONS(3828), - [aux_sym_cmd_identifier_token40] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4169), - [anon_sym_DOLLAR] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [sym__newline] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_err_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_GT_PIPE] = ACTIONS(3349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3357), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(427), + [aux_sym__val_number_token5] = ACTIONS(427), + [aux_sym__val_number_token6] = ACTIONS(427), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1160] = { - [sym__expr_parenthesized_immediate] = STATE(1591), - [sym__immediate_decimal] = STATE(1598), - [sym_val_variable] = STATE(1591), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(2458), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(2241), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(1573), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2242), + [sym__unquoted_with_expr] = STATE(2471), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1160), - [anon_sym_true] = ACTIONS(1614), - [anon_sym_false] = ACTIONS(1614), - [anon_sym_null] = ACTIONS(1614), - [aux_sym_cmd_identifier_token38] = ACTIONS(1614), - [aux_sym_cmd_identifier_token39] = ACTIONS(1614), - [aux_sym_cmd_identifier_token40] = ACTIONS(1614), - [sym__newline] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_err_GT_PIPE] = ACTIONS(1614), - [anon_sym_out_GT_PIPE] = ACTIONS(1614), - [anon_sym_e_GT_PIPE] = ACTIONS(1614), - [anon_sym_o_GT_PIPE] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_RPAREN] = ACTIONS(1614), - [anon_sym_DOLLAR] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1614), - [anon_sym_DOT_DOT] = ACTIONS(1612), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1614), - [anon_sym_DOT_DOT_LT] = ACTIONS(1614), - [aux_sym__immediate_decimal_token1] = ACTIONS(4113), - [aux_sym__immediate_decimal_token3] = ACTIONS(4115), - [aux_sym__immediate_decimal_token4] = ACTIONS(4117), - [aux_sym__immediate_decimal_token5] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(1612), - [aux_sym__val_number_decimal_token2] = ACTIONS(1612), - [aux_sym__val_number_decimal_token3] = ACTIONS(1612), - [aux_sym__val_number_decimal_token4] = ACTIONS(1612), - [aux_sym__val_number_token1] = ACTIONS(1614), - [aux_sym__val_number_token2] = ACTIONS(1614), - [aux_sym__val_number_token3] = ACTIONS(1614), - [anon_sym_0b] = ACTIONS(1612), - [anon_sym_0o] = ACTIONS(1612), - [anon_sym_0x] = ACTIONS(1612), - [sym_val_date] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [sym__str_single_quotes] = ACTIONS(1614), - [sym__str_back_ticks] = ACTIONS(1614), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1614), - [anon_sym_err_GT] = ACTIONS(1612), - [anon_sym_out_GT] = ACTIONS(1612), - [anon_sym_e_GT] = ACTIONS(1612), - [anon_sym_o_GT] = ACTIONS(1612), - [anon_sym_err_PLUSout_GT] = ACTIONS(1612), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1612), - [anon_sym_o_PLUSe_GT] = ACTIONS(1612), - [anon_sym_e_PLUSo_GT] = ACTIONS(1612), - [anon_sym_err_GT_GT] = ACTIONS(1614), - [anon_sym_out_GT_GT] = ACTIONS(1614), - [anon_sym_e_GT_GT] = ACTIONS(1614), - [anon_sym_o_GT_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1614), - [aux_sym_unquoted_token1] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1161] = { - [sym__expr_parenthesized_immediate] = STATE(1734), - [sym__immediate_decimal] = STATE(1518), - [sym_val_variable] = STATE(1734), + [sym_expr_unary] = STATE(2456), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_binary] = STATE(2456), + [sym__expr_binary_expression] = STATE(3351), + [sym_expr_parenthesized] = STATE(2456), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(2456), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(3187), + [sym_val_variable] = STATE(2487), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(3000), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(2242), + [sym__unquoted_with_expr] = STATE(2471), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1161), - [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(1544), - [anon_sym_DOLLAR] = ACTIONS(4171), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(4173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT] = ACTIONS(1556), - [aux_sym__immediate_decimal_token1] = ACTIONS(4175), - [aux_sym__immediate_decimal_token3] = ACTIONS(4177), - [aux_sym__immediate_decimal_token4] = ACTIONS(4179), - [aux_sym__immediate_decimal_token5] = ACTIONS(4181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1544), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [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(1544), - [anon_sym_0o] = ACTIONS(1544), - [anon_sym_0x] = ACTIONS(1544), - [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(1544), - [anon_sym_out_GT] = ACTIONS(1544), - [anon_sym_e_GT] = ACTIONS(1544), - [anon_sym_o_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT] = ACTIONS(1544), - [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(1544), - [aux_sym_unquoted_token2] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym__val_number_decimal_token1] = ACTIONS(3415), + [aux_sym__val_number_decimal_token2] = ACTIONS(3417), + [aux_sym__val_number_decimal_token3] = ACTIONS(3419), + [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1162] = { - [sym__expr_parenthesized_immediate] = STATE(1599), - [sym__immediate_decimal] = STATE(1604), - [sym_val_variable] = STATE(1599), + [sym_expr_unary] = STATE(4399), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_parenthesized] = STATE(4105), + [sym_val_range] = STATE(4399), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(4399), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(4207), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(4206), + [sym__unquoted_with_expr] = STATE(4403), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1162), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1622), - [aux_sym_cmd_identifier_token38] = ACTIONS(1622), - [aux_sym_cmd_identifier_token39] = ACTIONS(1622), - [aux_sym_cmd_identifier_token40] = ACTIONS(1622), - [sym__newline] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_err_GT_PIPE] = ACTIONS(1622), - [anon_sym_out_GT_PIPE] = ACTIONS(1622), - [anon_sym_e_GT_PIPE] = ACTIONS(1622), - [anon_sym_o_GT_PIPE] = ACTIONS(1622), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1622), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1622), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1622), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_RPAREN] = ACTIONS(1622), - [anon_sym_DOLLAR] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT] = ACTIONS(1622), - [aux_sym__immediate_decimal_token1] = ACTIONS(4113), - [aux_sym__immediate_decimal_token3] = ACTIONS(4115), - [aux_sym__immediate_decimal_token4] = ACTIONS(4117), - [aux_sym__immediate_decimal_token5] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(1620), - [aux_sym__val_number_decimal_token2] = ACTIONS(1620), - [aux_sym__val_number_decimal_token3] = ACTIONS(1620), - [aux_sym__val_number_decimal_token4] = ACTIONS(1620), - [aux_sym__val_number_token1] = ACTIONS(1622), - [aux_sym__val_number_token2] = ACTIONS(1622), - [aux_sym__val_number_token3] = ACTIONS(1622), - [anon_sym_0b] = ACTIONS(1620), - [anon_sym_0o] = ACTIONS(1620), - [anon_sym_0x] = ACTIONS(1620), - [sym_val_date] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1622), - [sym__str_single_quotes] = ACTIONS(1622), - [sym__str_back_ticks] = ACTIONS(1622), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1622), - [anon_sym_err_GT] = ACTIONS(1620), - [anon_sym_out_GT] = ACTIONS(1620), - [anon_sym_e_GT] = ACTIONS(1620), - [anon_sym_o_GT] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT] = ACTIONS(1620), - [anon_sym_err_GT_GT] = ACTIONS(1622), - [anon_sym_out_GT_GT] = ACTIONS(1622), - [anon_sym_e_GT_GT] = ACTIONS(1622), - [anon_sym_o_GT_GT] = ACTIONS(1622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1622), - [aux_sym_unquoted_token1] = ACTIONS(1620), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3491), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3493), + [aux_sym_expr_unary_token1] = ACTIONS(3495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3497), + [anon_sym_DOT_DOT_LT] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_true] = ACTIONS(3501), + [anon_sym_false] = ACTIONS(3501), + [aux_sym__val_number_decimal_token1] = ACTIONS(3503), + [aux_sym__val_number_decimal_token2] = ACTIONS(3505), + [aux_sym__val_number_decimal_token3] = ACTIONS(3507), + [aux_sym__val_number_decimal_token4] = ACTIONS(3509), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3511), + [aux_sym__val_number_token5] = ACTIONS(3511), + [aux_sym__val_number_token6] = ACTIONS(3511), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3513), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1163] = { + [sym_expr_unary] = STATE(4524), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_parenthesized] = STATE(4134), + [sym_val_range] = STATE(4524), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(4524), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(4258), + [sym_val_variable] = STATE(2113), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(4010), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(4227), + [sym__unquoted_with_expr] = STATE(4509), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), - [anon_sym_DOT_DOT_LT] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4431), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3519), + [aux_sym_expr_unary_token1] = ACTIONS(3521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3523), + [anon_sym_DOT_DOT_LT] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_true] = ACTIONS(3527), + [anon_sym_false] = ACTIONS(3527), + [aux_sym__val_number_decimal_token1] = ACTIONS(3529), + [aux_sym__val_number_decimal_token2] = ACTIONS(3531), + [aux_sym__val_number_decimal_token3] = ACTIONS(3533), + [aux_sym__val_number_decimal_token4] = ACTIONS(3535), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3537), + [aux_sym__val_number_token5] = ACTIONS(3537), + [aux_sym__val_number_token6] = ACTIONS(3537), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1164] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(5997), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(5849), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5354), - [sym__val_number] = STATE(3529), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6052), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(4404), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_parenthesized] = STATE(4103), + [sym_val_range] = STATE(4404), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(4404), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(4207), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(4194), + [sym__unquoted_with_expr] = STATE(4412), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1164), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4012), - [aux_sym_cmd_identifier_token38] = ACTIONS(4014), - [aux_sym_cmd_identifier_token39] = ACTIONS(4014), - [aux_sym_cmd_identifier_token40] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(4028), - [aux_sym__val_number_decimal_token2] = ACTIONS(4030), - [aux_sym__val_number_decimal_token3] = ACTIONS(4032), - [aux_sym__val_number_decimal_token4] = ACTIONS(4034), - [aux_sym__val_number_token1] = ACTIONS(3486), - [aux_sym__val_number_token2] = ACTIONS(3486), - [aux_sym__val_number_token3] = ACTIONS(3486), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3491), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3493), + [aux_sym_expr_unary_token1] = ACTIONS(3495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3497), + [anon_sym_DOT_DOT_LT] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_true] = ACTIONS(3501), + [anon_sym_false] = ACTIONS(3501), + [aux_sym__val_number_decimal_token1] = ACTIONS(3503), + [aux_sym__val_number_decimal_token2] = ACTIONS(3505), + [aux_sym__val_number_decimal_token3] = ACTIONS(3507), + [aux_sym__val_number_decimal_token4] = ACTIONS(3509), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3511), + [aux_sym__val_number_token5] = ACTIONS(3511), + [aux_sym__val_number_token6] = ACTIONS(3511), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3513), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1165] = { - [sym__expr_parenthesized_immediate] = STATE(7567), + [sym_expr_unary] = STATE(4511), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_parenthesized] = STATE(4136), + [sym_val_range] = STATE(4511), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(4511), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(4258), + [sym_val_variable] = STATE(2113), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(4010), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(4215), + [sym__unquoted_with_expr] = STATE(4549), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1165), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [aux_sym_cmd_identifier_token38] = ACTIONS(1640), - [aux_sym_cmd_identifier_token39] = ACTIONS(1640), - [aux_sym_cmd_identifier_token40] = ACTIONS(1640), - [sym__newline] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_err_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_GT_PIPE] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_DOT_DOT] = ACTIONS(1628), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT2] = ACTIONS(4435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), - [anon_sym_DOT_DOT_LT] = ACTIONS(1628), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4437), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4437), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_decimal_token2] = ACTIONS(1640), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_decimal_token4] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [anon_sym_0b] = ACTIONS(1628), - [sym_filesize_unit] = ACTIONS(4439), - [sym_duration_unit] = ACTIONS(4441), - [anon_sym_0o] = ACTIONS(1628), - [anon_sym_0x] = ACTIONS(1628), - [sym_val_date] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [anon_sym_err_GT_GT] = ACTIONS(1640), - [anon_sym_out_GT_GT] = ACTIONS(1640), - [anon_sym_e_GT_GT] = ACTIONS(1640), - [anon_sym_o_GT_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), - [aux_sym_unquoted_token1] = ACTIONS(1628), - [aux_sym_unquoted_token2] = ACTIONS(4443), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3519), + [aux_sym_expr_unary_token1] = ACTIONS(3521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3523), + [anon_sym_DOT_DOT_LT] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_true] = ACTIONS(3527), + [anon_sym_false] = ACTIONS(3527), + [aux_sym__val_number_decimal_token1] = ACTIONS(3529), + [aux_sym__val_number_decimal_token2] = ACTIONS(3531), + [aux_sym__val_number_decimal_token3] = ACTIONS(3533), + [aux_sym__val_number_decimal_token4] = ACTIONS(3535), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3537), + [aux_sym__val_number_token5] = ACTIONS(3537), + [aux_sym__val_number_token6] = ACTIONS(3537), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1166] = { - [sym__expr_parenthesized_immediate] = STATE(1428), - [sym__immediate_decimal] = STATE(1433), - [sym_val_variable] = STATE(1428), + [sym_expr_unary] = STATE(4508), + [sym__expr_unary_minus] = STATE(2478), + [sym_expr_parenthesized] = STATE(4161), + [sym_val_range] = STATE(4508), + [sym__val_range] = STATE(7706), + [sym__val_range_with_end] = STATE(7480), + [sym__value] = STATE(4508), + [sym_val_nothing] = STATE(2487), + [sym_val_bool] = STATE(4258), + [sym_val_variable] = STATE(2113), + [sym_val_number] = STATE(2487), + [sym__val_number_decimal] = STATE(4010), + [sym__val_number] = STATE(2490), + [sym_val_duration] = STATE(2487), + [sym_val_filesize] = STATE(2487), + [sym_val_binary] = STATE(2487), + [sym_val_string] = STATE(2487), + [sym__raw_str] = STATE(2091), + [sym__str_double_quotes] = STATE(2091), + [sym_val_interpolated] = STATE(2487), + [sym__inter_single_quotes] = STATE(2457), + [sym__inter_double_quotes] = STATE(2488), + [sym_val_list] = STATE(2487), + [sym_val_record] = STATE(2487), + [sym_val_table] = STATE(2487), + [sym_val_closure] = STATE(2487), + [sym_unquoted] = STATE(4223), + [sym__unquoted_with_expr] = STATE(4512), + [sym__unquoted_anonymous_prefix] = STATE(7122), [sym_comment] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(1570), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [anon_sym_null] = ACTIONS(1570), - [aux_sym_cmd_identifier_token38] = ACTIONS(1570), - [aux_sym_cmd_identifier_token39] = ACTIONS(1570), - [aux_sym_cmd_identifier_token40] = ACTIONS(1570), - [sym__newline] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_err_GT_PIPE] = ACTIONS(1570), - [anon_sym_out_GT_PIPE] = ACTIONS(1570), - [anon_sym_e_GT_PIPE] = ACTIONS(1570), - [anon_sym_o_GT_PIPE] = ACTIONS(1570), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1570), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1570), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1570), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_LPAREN2] = ACTIONS(3994), - [anon_sym_DOT] = ACTIONS(4445), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1570), - [anon_sym_DOT_DOT_LT] = ACTIONS(1570), - [aux_sym__immediate_decimal_token1] = ACTIONS(4447), - [aux_sym__immediate_decimal_token3] = ACTIONS(4449), - [aux_sym__immediate_decimal_token4] = ACTIONS(4451), - [aux_sym__immediate_decimal_token5] = ACTIONS(4453), - [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(1570), - [aux_sym__val_number_token2] = ACTIONS(1570), - [aux_sym__val_number_token3] = ACTIONS(1570), - [anon_sym_0b] = ACTIONS(1560), - [anon_sym_0o] = ACTIONS(1560), - [anon_sym_0x] = ACTIONS(1560), - [sym_val_date] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [sym__str_single_quotes] = ACTIONS(1570), - [sym__str_back_ticks] = ACTIONS(1570), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1570), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1570), - [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(1570), - [anon_sym_out_GT_GT] = ACTIONS(1570), - [anon_sym_e_GT_GT] = ACTIONS(1570), - [anon_sym_o_GT_GT] = ACTIONS(1570), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1570), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1570), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1570), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1570), - [aux_sym_unquoted_token1] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3519), + [aux_sym_expr_unary_token1] = ACTIONS(3521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3523), + [anon_sym_DOT_DOT_LT] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_true] = ACTIONS(3527), + [anon_sym_false] = ACTIONS(3527), + [aux_sym__val_number_decimal_token1] = ACTIONS(3529), + [aux_sym__val_number_decimal_token2] = ACTIONS(3531), + [aux_sym__val_number_decimal_token3] = ACTIONS(3533), + [aux_sym__val_number_decimal_token4] = ACTIONS(3535), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3537), + [aux_sym__val_number_token5] = ACTIONS(3537), + [aux_sym__val_number_token6] = ACTIONS(3537), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, [1167] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6013), - [sym_val_nothing] = STATE(2358), - [sym_val_bool] = STATE(3688), - [sym_val_variable] = STATE(2358), - [sym_val_number] = STATE(2358), - [sym__val_number_decimal] = STATE(5733), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(2358), - [sym_val_filesize] = STATE(2358), - [sym_val_binary] = STATE(2358), - [sym_val_string] = STATE(2358), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(2358), - [sym__inter_single_quotes] = STATE(2325), - [sym__inter_double_quotes] = STATE(2326), - [sym_val_list] = STATE(2358), - [sym_val_record] = STATE(2358), - [sym_val_table] = STATE(2358), - [sym_val_closure] = STATE(2358), - [sym_unquoted] = STATE(6128), - [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_expr_unary] = STATE(4397), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_parenthesized] = STATE(4102), + [sym_val_range] = STATE(4397), + [sym__val_range] = STATE(7572), + [sym__val_range_with_end] = STATE(7359), + [sym__value] = STATE(4397), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(4207), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3995), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(4156), + [sym__unquoted_with_expr] = STATE(4398), + [sym__unquoted_anonymous_prefix] = STATE(7150), [sym_comment] = STATE(1167), - [anon_sym_true] = ACTIONS(3350), - [anon_sym_false] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3352), - [aux_sym_cmd_identifier_token38] = ACTIONS(3828), - [aux_sym_cmd_identifier_token39] = ACTIONS(3828), - [aux_sym_cmd_identifier_token40] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3830), - [anon_sym_LPAREN] = ACTIONS(4169), - [anon_sym_DOLLAR] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [aux_sym__val_number_decimal_token1] = ACTIONS(3366), - [aux_sym__val_number_decimal_token2] = ACTIONS(3368), - [aux_sym__val_number_decimal_token3] = ACTIONS(3370), - [aux_sym__val_number_decimal_token4] = ACTIONS(3372), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3491), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3493), + [aux_sym_expr_unary_token1] = ACTIONS(3495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3497), + [anon_sym_DOT_DOT_LT] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_true] = ACTIONS(3501), + [anon_sym_false] = ACTIONS(3501), + [aux_sym__val_number_decimal_token1] = ACTIONS(3503), + [aux_sym__val_number_decimal_token2] = ACTIONS(3505), + [aux_sym__val_number_decimal_token3] = ACTIONS(3507), + [aux_sym__val_number_decimal_token4] = ACTIONS(3509), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3511), + [aux_sym__val_number_token5] = ACTIONS(3511), + [aux_sym__val_number_token6] = ACTIONS(3511), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3513), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1168] = { - [sym__val_range] = STATE(8067), - [sym__value] = STATE(2754), - [sym_val_nothing] = STATE(2761), - [sym_val_bool] = STATE(2743), - [sym_val_variable] = STATE(2761), - [sym_val_number] = STATE(2761), - [sym__val_number_decimal] = STATE(2320), - [sym__val_number] = STATE(2818), - [sym_val_duration] = STATE(2761), - [sym_val_filesize] = STATE(2761), - [sym_val_binary] = STATE(2761), - [sym_val_string] = STATE(2761), - [sym__raw_str] = STATE(2850), - [sym__str_double_quotes] = STATE(2850), - [sym_val_interpolated] = STATE(2761), - [sym__inter_single_quotes] = STATE(2763), - [sym__inter_double_quotes] = STATE(2767), - [sym_val_list] = STATE(2761), - [sym_val_record] = STATE(2761), - [sym_val_table] = STATE(2761), - [sym_val_closure] = STATE(2761), - [sym_unquoted] = STATE(2851), - [sym__unquoted_anonymous_prefix] = STATE(7670), + [sym_ctrl_do] = STATE(4987), + [sym_ctrl_if] = STATE(4987), + [sym_ctrl_match] = STATE(4987), + [sym_ctrl_try] = STATE(4987), + [sym__expression] = STATE(4987), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3969), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3152), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), [sym_comment] = STATE(1168), - [anon_sym_true] = ACTIONS(4041), - [anon_sym_false] = ACTIONS(4041), - [anon_sym_null] = ACTIONS(4043), - [aux_sym_cmd_identifier_token38] = ACTIONS(4045), - [aux_sym_cmd_identifier_token39] = ACTIONS(4045), - [aux_sym_cmd_identifier_token40] = ACTIONS(4045), - [anon_sym_LBRACK] = ACTIONS(4047), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_DOLLAR] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(4053), - [anon_sym_DOT_DOT] = ACTIONS(4055), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4057), - [anon_sym_DOT_DOT_LT] = ACTIONS(4057), - [aux_sym__val_number_decimal_token1] = ACTIONS(4059), - [aux_sym__val_number_decimal_token2] = ACTIONS(4061), - [aux_sym__val_number_decimal_token3] = ACTIONS(4063), - [aux_sym__val_number_decimal_token4] = ACTIONS(4065), - [aux_sym__val_number_token1] = ACTIONS(4067), - [aux_sym__val_number_token2] = ACTIONS(4067), - [aux_sym__val_number_token3] = ACTIONS(4067), - [anon_sym_0b] = ACTIONS(4069), - [anon_sym_0o] = ACTIONS(4071), - [anon_sym_0x] = ACTIONS(4071), - [sym_val_date] = ACTIONS(4073), - [anon_sym_DQUOTE] = ACTIONS(4075), - [sym__str_single_quotes] = ACTIONS(4077), - [sym__str_back_ticks] = ACTIONS(4077), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4079), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4081), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(4083), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4085), + [sym__newline] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_err_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_GT_PIPE] = ACTIONS(3349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3541), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3357), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(427), + [aux_sym__val_number_token5] = ACTIONS(427), + [aux_sym__val_number_token6] = ACTIONS(427), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1169] = { - [sym__val_range] = STATE(7794), - [sym__value] = STATE(6062), - [sym_val_nothing] = STATE(4884), - [sym_val_bool] = STATE(5849), - [sym_val_variable] = STATE(4884), - [sym_val_number] = STATE(4884), - [sym__val_number_decimal] = STATE(5299), - [sym__val_number] = STATE(5078), - [sym_val_duration] = STATE(4884), - [sym_val_filesize] = STATE(4884), - [sym_val_binary] = STATE(4884), - [sym_val_string] = STATE(4884), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), - [sym_val_interpolated] = STATE(4884), - [sym__inter_single_quotes] = STATE(4936), - [sym__inter_double_quotes] = STATE(4937), - [sym_val_list] = STATE(4884), - [sym_val_record] = STATE(4884), - [sym_val_table] = STATE(4884), - [sym_val_closure] = STATE(4884), - [sym_unquoted] = STATE(6089), - [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1169), - [anon_sym_true] = ACTIONS(4010), - [anon_sym_false] = ACTIONS(4010), - [anon_sym_null] = ACTIONS(4012), - [aux_sym_cmd_identifier_token38] = ACTIONS(4133), - [aux_sym_cmd_identifier_token39] = ACTIONS(4133), - [aux_sym_cmd_identifier_token40] = ACTIONS(4133), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4018), - [anon_sym_DOLLAR] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4097), - [anon_sym_DOT_DOT] = ACTIONS(4024), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), - [anon_sym_DOT_DOT_LT] = ACTIONS(4026), - [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(3584), - [aux_sym__val_number_token2] = ACTIONS(3584), - [aux_sym__val_number_token3] = ACTIONS(3584), - [anon_sym_0b] = ACTIONS(3586), - [anon_sym_0o] = ACTIONS(3588), - [anon_sym_0x] = ACTIONS(3588), - [sym_val_date] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1171), + [aux_sym_cmd_identifier_token1] = ACTIONS(3543), + [aux_sym_cmd_identifier_token2] = ACTIONS(3543), + [aux_sym_cmd_identifier_token3] = ACTIONS(3543), + [aux_sym_cmd_identifier_token4] = ACTIONS(3543), + [aux_sym_cmd_identifier_token5] = ACTIONS(3543), + [aux_sym_cmd_identifier_token6] = ACTIONS(3543), + [aux_sym_cmd_identifier_token7] = ACTIONS(3543), + [aux_sym_cmd_identifier_token8] = ACTIONS(3543), + [aux_sym_cmd_identifier_token9] = ACTIONS(3543), + [aux_sym_cmd_identifier_token10] = ACTIONS(3543), + [aux_sym_cmd_identifier_token11] = ACTIONS(3543), + [aux_sym_cmd_identifier_token12] = ACTIONS(3543), + [aux_sym_cmd_identifier_token13] = ACTIONS(3543), + [aux_sym_cmd_identifier_token14] = ACTIONS(3543), + [aux_sym_cmd_identifier_token15] = ACTIONS(3543), + [aux_sym_cmd_identifier_token16] = ACTIONS(3543), + [aux_sym_cmd_identifier_token17] = ACTIONS(3543), + [aux_sym_cmd_identifier_token18] = ACTIONS(3543), + [aux_sym_cmd_identifier_token19] = ACTIONS(3543), + [aux_sym_cmd_identifier_token20] = ACTIONS(3543), + [aux_sym_cmd_identifier_token21] = ACTIONS(3543), + [aux_sym_cmd_identifier_token22] = ACTIONS(3543), + [aux_sym_cmd_identifier_token23] = ACTIONS(3543), + [aux_sym_cmd_identifier_token24] = ACTIONS(3543), + [aux_sym_cmd_identifier_token25] = ACTIONS(3543), + [aux_sym_cmd_identifier_token26] = ACTIONS(3543), + [aux_sym_cmd_identifier_token27] = ACTIONS(3543), + [aux_sym_cmd_identifier_token28] = ACTIONS(3543), + [aux_sym_cmd_identifier_token29] = ACTIONS(3543), + [aux_sym_cmd_identifier_token30] = ACTIONS(3543), + [aux_sym_cmd_identifier_token31] = ACTIONS(3543), + [aux_sym_cmd_identifier_token32] = ACTIONS(3543), + [aux_sym_cmd_identifier_token33] = ACTIONS(3543), + [aux_sym_cmd_identifier_token34] = ACTIONS(3543), + [aux_sym_cmd_identifier_token35] = ACTIONS(3543), + [aux_sym_cmd_identifier_token36] = ACTIONS(3543), + [aux_sym_cmd_identifier_token37] = ACTIONS(3543), + [aux_sym_cmd_identifier_token38] = ACTIONS(3543), + [aux_sym_cmd_identifier_token39] = ACTIONS(3543), + [aux_sym_cmd_identifier_token40] = ACTIONS(3543), + [sym__newline] = ACTIONS(3545), + [sym__space] = ACTIONS(3547), + [anon_sym_LBRACK] = ACTIONS(3543), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3543), + [anon_sym_DASH2] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3543), + [anon_sym_DOT_DOT] = ACTIONS(3543), + [aux_sym_expr_unary_token1] = ACTIONS(3543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3543), + [anon_sym_DOT_DOT_LT] = ACTIONS(3543), + [anon_sym_null] = ACTIONS(3543), + [anon_sym_true] = ACTIONS(3543), + [anon_sym_false] = ACTIONS(3543), + [aux_sym__val_number_decimal_token1] = ACTIONS(3543), + [aux_sym__val_number_decimal_token2] = ACTIONS(3543), + [aux_sym__val_number_decimal_token3] = ACTIONS(3543), + [aux_sym__val_number_decimal_token4] = ACTIONS(3543), + [aux_sym__val_number_token1] = ACTIONS(3543), + [aux_sym__val_number_token2] = ACTIONS(3543), + [aux_sym__val_number_token3] = ACTIONS(3543), + [aux_sym__val_number_token4] = ACTIONS(3543), + [aux_sym__val_number_token5] = ACTIONS(3543), + [aux_sym__val_number_token6] = ACTIONS(3543), + [anon_sym_0b] = ACTIONS(3543), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(3543), + [anon_sym_DQUOTE] = ACTIONS(3543), + [sym__str_single_quotes] = ACTIONS(3543), + [sym__str_back_ticks] = ACTIONS(3543), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3543), + [aux_sym_env_var_token1] = ACTIONS(3543), + [anon_sym_CARET] = ACTIONS(3543), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3549), }, [1170] = { - [sym__val_range] = STATE(7676), - [sym__value] = STATE(4993), - [sym_val_nothing] = STATE(5010), - [sym_val_bool] = STATE(4627), - [sym_val_variable] = STATE(5010), - [sym_val_number] = STATE(5010), - [sym__val_number_decimal] = STATE(4122), - [sym__val_number] = STATE(5054), - [sym_val_duration] = STATE(5010), - [sym_val_filesize] = STATE(5010), - [sym_val_binary] = STATE(5010), - [sym_val_string] = STATE(5010), - [sym__raw_str] = STATE(4660), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(5010), - [sym__inter_single_quotes] = STATE(5011), - [sym__inter_double_quotes] = STATE(5012), - [sym_val_list] = STATE(5010), - [sym_val_record] = STATE(5010), - [sym_val_table] = STATE(5010), - [sym_val_closure] = STATE(5010), - [sym_unquoted] = STATE(4994), - [sym__unquoted_anonymous_prefix] = STATE(7883), + [sym_ctrl_do] = STATE(4987), + [sym_ctrl_if] = STATE(4987), + [sym_ctrl_match] = STATE(4987), + [sym_ctrl_try] = STATE(4987), + [sym__expression] = STATE(4987), + [sym_expr_unary] = STATE(2144), + [sym__expr_unary_minus] = STATE(2145), + [sym_expr_binary] = STATE(2144), + [sym__expr_binary_expression] = STATE(3969), + [sym_expr_parenthesized] = STATE(2087), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(2144), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(2112), + [sym_val_variable] = STATE(1979), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(3152), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), [sym_comment] = STATE(1170), - [anon_sym_true] = ACTIONS(4227), - [anon_sym_false] = ACTIONS(4227), - [anon_sym_null] = ACTIONS(4229), - [aux_sym_cmd_identifier_token38] = ACTIONS(4231), - [aux_sym_cmd_identifier_token39] = ACTIONS(4231), - [aux_sym_cmd_identifier_token40] = ACTIONS(4231), - [anon_sym_LBRACK] = ACTIONS(4233), - [anon_sym_LPAREN] = ACTIONS(4235), - [anon_sym_DOLLAR] = ACTIONS(4237), - [anon_sym_LBRACE] = ACTIONS(4239), - [anon_sym_DOT_DOT] = ACTIONS(4241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4243), - [anon_sym_DOT_DOT_LT] = ACTIONS(4243), - [aux_sym__val_number_decimal_token1] = ACTIONS(2147), - [aux_sym__val_number_decimal_token2] = ACTIONS(4245), - [aux_sym__val_number_decimal_token3] = ACTIONS(4247), - [aux_sym__val_number_decimal_token4] = ACTIONS(4249), - [aux_sym__val_number_token1] = ACTIONS(4251), - [aux_sym__val_number_token2] = ACTIONS(4251), - [aux_sym__val_number_token3] = ACTIONS(4251), - [anon_sym_0b] = ACTIONS(2155), - [anon_sym_0o] = ACTIONS(2157), - [anon_sym_0x] = ACTIONS(2157), - [sym_val_date] = ACTIONS(4253), - [anon_sym_DQUOTE] = ACTIONS(4255), - [sym__str_single_quotes] = ACTIONS(4257), - [sym__str_back_ticks] = ACTIONS(4257), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4261), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2175), + [sym__newline] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_err_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_GT_PIPE] = ACTIONS(3349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3551), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3357), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(427), + [aux_sym__val_number_token5] = ACTIONS(427), + [aux_sym__val_number_token6] = ACTIONS(427), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1171] = { [sym_comment] = STATE(1171), - [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_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_QMARK2] = ACTIONS(4455), - [aux_sym_expr_binary_token1] = ACTIONS(1050), - [aux_sym_expr_binary_token2] = ACTIONS(1050), - [aux_sym_expr_binary_token3] = ACTIONS(1050), - [aux_sym_expr_binary_token4] = ACTIONS(1050), - [aux_sym_expr_binary_token5] = ACTIONS(1050), - [aux_sym_expr_binary_token6] = ACTIONS(1050), - [aux_sym_expr_binary_token7] = ACTIONS(1050), - [aux_sym_expr_binary_token8] = ACTIONS(1050), - [aux_sym_expr_binary_token9] = ACTIONS(1050), - [aux_sym_expr_binary_token10] = ACTIONS(1050), - [aux_sym_expr_binary_token11] = ACTIONS(1050), - [aux_sym_expr_binary_token12] = ACTIONS(1050), - [aux_sym_expr_binary_token13] = ACTIONS(1050), - [aux_sym_expr_binary_token14] = ACTIONS(1050), - [aux_sym_expr_binary_token15] = ACTIONS(1050), - [aux_sym_expr_binary_token16] = ACTIONS(1050), - [aux_sym_expr_binary_token17] = ACTIONS(1050), - [aux_sym_expr_binary_token18] = ACTIONS(1050), - [aux_sym_expr_binary_token19] = ACTIONS(1050), - [aux_sym_expr_binary_token20] = ACTIONS(1050), - [aux_sym_expr_binary_token21] = ACTIONS(1050), - [aux_sym_expr_binary_token22] = ACTIONS(1050), - [aux_sym_expr_binary_token23] = ACTIONS(1050), - [aux_sym_expr_binary_token24] = ACTIONS(1050), - [aux_sym_expr_binary_token25] = ACTIONS(1050), - [aux_sym_expr_binary_token26] = ACTIONS(1050), - [aux_sym_expr_binary_token27] = ACTIONS(1050), - [aux_sym_expr_binary_token28] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), - [aux_sym_record_entry_token1] = ACTIONS(1050), - [anon_sym_err_GT] = ACTIONS(1048), - [anon_sym_out_GT] = ACTIONS(1048), - [anon_sym_e_GT] = ACTIONS(1048), - [anon_sym_o_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT] = ACTIONS(1048), - [anon_sym_err_GT_GT] = ACTIONS(1050), - [anon_sym_out_GT_GT] = ACTIONS(1050), - [anon_sym_e_GT_GT] = ACTIONS(1050), - [anon_sym_o_GT_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1171), + [aux_sym_cmd_identifier_token1] = ACTIONS(3553), + [aux_sym_cmd_identifier_token2] = ACTIONS(3553), + [aux_sym_cmd_identifier_token3] = ACTIONS(3553), + [aux_sym_cmd_identifier_token4] = ACTIONS(3553), + [aux_sym_cmd_identifier_token5] = ACTIONS(3553), + [aux_sym_cmd_identifier_token6] = ACTIONS(3553), + [aux_sym_cmd_identifier_token7] = ACTIONS(3553), + [aux_sym_cmd_identifier_token8] = ACTIONS(3553), + [aux_sym_cmd_identifier_token9] = ACTIONS(3553), + [aux_sym_cmd_identifier_token10] = ACTIONS(3553), + [aux_sym_cmd_identifier_token11] = ACTIONS(3553), + [aux_sym_cmd_identifier_token12] = ACTIONS(3553), + [aux_sym_cmd_identifier_token13] = ACTIONS(3553), + [aux_sym_cmd_identifier_token14] = ACTIONS(3553), + [aux_sym_cmd_identifier_token15] = ACTIONS(3553), + [aux_sym_cmd_identifier_token16] = ACTIONS(3553), + [aux_sym_cmd_identifier_token17] = ACTIONS(3553), + [aux_sym_cmd_identifier_token18] = ACTIONS(3553), + [aux_sym_cmd_identifier_token19] = ACTIONS(3553), + [aux_sym_cmd_identifier_token20] = ACTIONS(3553), + [aux_sym_cmd_identifier_token21] = ACTIONS(3553), + [aux_sym_cmd_identifier_token22] = ACTIONS(3553), + [aux_sym_cmd_identifier_token23] = ACTIONS(3553), + [aux_sym_cmd_identifier_token24] = ACTIONS(3553), + [aux_sym_cmd_identifier_token25] = ACTIONS(3553), + [aux_sym_cmd_identifier_token26] = ACTIONS(3553), + [aux_sym_cmd_identifier_token27] = ACTIONS(3553), + [aux_sym_cmd_identifier_token28] = ACTIONS(3553), + [aux_sym_cmd_identifier_token29] = ACTIONS(3553), + [aux_sym_cmd_identifier_token30] = ACTIONS(3553), + [aux_sym_cmd_identifier_token31] = ACTIONS(3553), + [aux_sym_cmd_identifier_token32] = ACTIONS(3553), + [aux_sym_cmd_identifier_token33] = ACTIONS(3553), + [aux_sym_cmd_identifier_token34] = ACTIONS(3553), + [aux_sym_cmd_identifier_token35] = ACTIONS(3553), + [aux_sym_cmd_identifier_token36] = ACTIONS(3553), + [aux_sym_cmd_identifier_token37] = ACTIONS(3553), + [aux_sym_cmd_identifier_token38] = ACTIONS(3553), + [aux_sym_cmd_identifier_token39] = ACTIONS(3553), + [aux_sym_cmd_identifier_token40] = ACTIONS(3553), + [sym__newline] = ACTIONS(3555), + [sym__space] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3553), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_DOLLAR] = ACTIONS(3553), + [anon_sym_DASH2] = ACTIONS(3553), + [anon_sym_LBRACE] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3553), + [aux_sym_expr_unary_token1] = ACTIONS(3553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3553), + [anon_sym_DOT_DOT_LT] = ACTIONS(3553), + [anon_sym_null] = ACTIONS(3553), + [anon_sym_true] = ACTIONS(3553), + [anon_sym_false] = ACTIONS(3553), + [aux_sym__val_number_decimal_token1] = ACTIONS(3553), + [aux_sym__val_number_decimal_token2] = ACTIONS(3553), + [aux_sym__val_number_decimal_token3] = ACTIONS(3553), + [aux_sym__val_number_decimal_token4] = ACTIONS(3553), + [aux_sym__val_number_token1] = ACTIONS(3553), + [aux_sym__val_number_token2] = ACTIONS(3553), + [aux_sym__val_number_token3] = ACTIONS(3553), + [aux_sym__val_number_token4] = ACTIONS(3553), + [aux_sym__val_number_token5] = ACTIONS(3553), + [aux_sym__val_number_token6] = ACTIONS(3553), + [anon_sym_0b] = ACTIONS(3553), + [anon_sym_0o] = ACTIONS(3553), + [anon_sym_0x] = ACTIONS(3553), + [sym_val_date] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(3553), + [sym__str_single_quotes] = ACTIONS(3553), + [sym__str_back_ticks] = ACTIONS(3553), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3553), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), + [aux_sym_env_var_token1] = ACTIONS(3553), + [anon_sym_CARET] = ACTIONS(3553), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3561), }, [1172] = { [sym_comment] = STATE(1172), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [anon_sym_null] = ACTIONS(1530), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1530), - [aux_sym_cmd_identifier_token40] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_LPAREN2] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [anon_sym_0b] = ACTIONS(1528), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1530), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(3563), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3565), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1173] = { + [sym_expr_parenthesized] = STATE(4552), + [sym_val_range] = STATE(5015), + [sym__val_range] = STATE(7741), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(5015), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(4740), + [sym_val_variable] = STATE(4565), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(4091), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4722), + [sym__str_double_quotes] = STATE(4722), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym__unquoted_in_list] = STATE(4649), + [sym__unquoted_in_list_with_expr] = STATE(5015), + [sym__unquoted_anonymous_prefix] = STATE(6780), [sym_comment] = STATE(1173), - [ts_builtin_sym_end] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), - [anon_sym_DOT_DOT_LT] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4431), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [aux_sym_shebang_repeat1] = STATE(2963), + [sym__newline] = ACTIONS(3567), + [anon_sym_LBRACK] = ACTIONS(3569), + [anon_sym_LPAREN] = ACTIONS(3571), + [anon_sym_DOLLAR] = ACTIONS(3573), + [anon_sym_LBRACE] = ACTIONS(3575), + [anon_sym_DOT_DOT] = ACTIONS(3577), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3579), + [anon_sym_DOT_DOT_LT] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_true] = ACTIONS(3583), + [anon_sym_false] = ACTIONS(3583), + [aux_sym__val_number_decimal_token1] = ACTIONS(3585), + [aux_sym__val_number_decimal_token2] = ACTIONS(3587), + [aux_sym__val_number_decimal_token3] = ACTIONS(3589), + [aux_sym__val_number_decimal_token4] = ACTIONS(3591), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(3595), + [aux_sym__val_number_token5] = ACTIONS(3595), + [aux_sym__val_number_token6] = ACTIONS(3595), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3603), + [sym__str_single_quotes] = ACTIONS(3605), + [sym__str_back_ticks] = ACTIONS(3605), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3611), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3613), }, [1174] = { + [sym_match_arm] = STATE(6885), + [sym_default_arm] = STATE(6885), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1174), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1598), - [aux_sym_cmd_identifier_token38] = ACTIONS(1598), - [aux_sym_cmd_identifier_token39] = ACTIONS(1598), - [aux_sym_cmd_identifier_token40] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), - [anon_sym_DOT_DOT_LT] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token3] = ACTIONS(1598), - [aux_sym__val_number_decimal_token4] = ACTIONS(1598), - [aux_sym__val_number_token1] = ACTIONS(1598), - [aux_sym__val_number_token2] = ACTIONS(1598), - [aux_sym__val_number_token3] = ACTIONS(1598), - [anon_sym_0b] = ACTIONS(1596), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [sym__str_single_quotes] = ACTIONS(1598), - [sym__str_back_ticks] = ACTIONS(1598), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token1] = ACTIONS(1596), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1598), + [aux_sym_shebang_repeat1] = STATE(1197), + [aux_sym_ctrl_match_repeat1] = STATE(1246), + [sym__newline] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(3625), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1175] = { + [sym_match_arm] = STATE(7123), + [sym_default_arm] = STATE(7123), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1175), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1713), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1713), + [aux_sym_shebang_repeat1] = STATE(1194), + [aux_sym_ctrl_match_repeat1] = STATE(1243), + [sym__newline] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(3649), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1176] = { [sym_comment] = STATE(1176), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1598), - [aux_sym_cmd_identifier_token38] = ACTIONS(1598), - [aux_sym_cmd_identifier_token39] = ACTIONS(1598), - [aux_sym_cmd_identifier_token40] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), - [anon_sym_DOT_DOT_LT] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(4457), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token3] = ACTIONS(1598), - [aux_sym__val_number_decimal_token4] = ACTIONS(1598), - [aux_sym__val_number_token1] = ACTIONS(1598), - [aux_sym__val_number_token2] = ACTIONS(1598), - [aux_sym__val_number_token3] = ACTIONS(1598), - [anon_sym_0b] = ACTIONS(1596), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [sym__str_single_quotes] = ACTIONS(1598), - [sym__str_back_ticks] = ACTIONS(1598), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token1] = ACTIONS(1596), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1598), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(3651), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3653), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1177] = { [sym_comment] = STATE(1177), - [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(4459), - [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(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(3655), + [aux_sym_cmd_identifier_token2] = ACTIONS(3655), + [aux_sym_cmd_identifier_token3] = ACTIONS(3655), + [aux_sym_cmd_identifier_token4] = ACTIONS(3655), + [aux_sym_cmd_identifier_token5] = ACTIONS(3655), + [aux_sym_cmd_identifier_token6] = ACTIONS(3655), + [aux_sym_cmd_identifier_token7] = ACTIONS(3655), + [aux_sym_cmd_identifier_token8] = ACTIONS(3655), + [aux_sym_cmd_identifier_token9] = ACTIONS(3655), + [aux_sym_cmd_identifier_token10] = ACTIONS(3655), + [aux_sym_cmd_identifier_token11] = ACTIONS(3655), + [aux_sym_cmd_identifier_token12] = ACTIONS(3655), + [aux_sym_cmd_identifier_token13] = ACTIONS(3655), + [aux_sym_cmd_identifier_token14] = ACTIONS(3655), + [aux_sym_cmd_identifier_token15] = ACTIONS(3655), + [aux_sym_cmd_identifier_token16] = ACTIONS(3655), + [aux_sym_cmd_identifier_token17] = ACTIONS(3655), + [aux_sym_cmd_identifier_token18] = ACTIONS(3655), + [aux_sym_cmd_identifier_token19] = ACTIONS(3655), + [aux_sym_cmd_identifier_token20] = ACTIONS(3655), + [aux_sym_cmd_identifier_token21] = ACTIONS(3655), + [aux_sym_cmd_identifier_token22] = ACTIONS(3655), + [aux_sym_cmd_identifier_token23] = ACTIONS(3655), + [aux_sym_cmd_identifier_token24] = ACTIONS(3655), + [aux_sym_cmd_identifier_token25] = ACTIONS(3655), + [aux_sym_cmd_identifier_token26] = ACTIONS(3655), + [aux_sym_cmd_identifier_token27] = ACTIONS(3655), + [aux_sym_cmd_identifier_token28] = ACTIONS(3655), + [aux_sym_cmd_identifier_token29] = ACTIONS(3655), + [aux_sym_cmd_identifier_token30] = ACTIONS(3655), + [aux_sym_cmd_identifier_token31] = ACTIONS(3655), + [aux_sym_cmd_identifier_token32] = ACTIONS(3655), + [aux_sym_cmd_identifier_token33] = ACTIONS(3655), + [aux_sym_cmd_identifier_token34] = ACTIONS(3655), + [aux_sym_cmd_identifier_token35] = ACTIONS(3655), + [aux_sym_cmd_identifier_token36] = ACTIONS(3655), + [aux_sym_cmd_identifier_token37] = ACTIONS(3655), + [aux_sym_cmd_identifier_token38] = ACTIONS(3655), + [aux_sym_cmd_identifier_token39] = ACTIONS(3655), + [aux_sym_cmd_identifier_token40] = ACTIONS(3655), + [sym__newline] = ACTIONS(3655), + [sym__space] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_LPAREN] = ACTIONS(3655), + [anon_sym_DOLLAR] = ACTIONS(3655), + [anon_sym_DASH2] = ACTIONS(3655), + [anon_sym_LBRACE] = ACTIONS(3655), + [anon_sym_DOT_DOT] = ACTIONS(3655), + [aux_sym_expr_unary_token1] = ACTIONS(3655), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), + [anon_sym_DOT_DOT_LT] = ACTIONS(3655), + [anon_sym_null] = ACTIONS(3655), + [anon_sym_true] = ACTIONS(3655), + [anon_sym_false] = ACTIONS(3655), + [aux_sym__val_number_decimal_token1] = ACTIONS(3655), + [aux_sym__val_number_decimal_token2] = ACTIONS(3655), + [aux_sym__val_number_decimal_token3] = ACTIONS(3655), + [aux_sym__val_number_decimal_token4] = ACTIONS(3655), + [aux_sym__val_number_token1] = ACTIONS(3655), + [aux_sym__val_number_token2] = ACTIONS(3655), + [aux_sym__val_number_token3] = ACTIONS(3655), + [aux_sym__val_number_token4] = ACTIONS(3655), + [aux_sym__val_number_token5] = ACTIONS(3655), + [aux_sym__val_number_token6] = ACTIONS(3655), + [anon_sym_0b] = ACTIONS(3655), + [anon_sym_0o] = ACTIONS(3655), + [anon_sym_0x] = ACTIONS(3655), + [sym_val_date] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3655), + [sym__str_single_quotes] = ACTIONS(3655), + [sym__str_back_ticks] = ACTIONS(3655), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3655), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), + [aux_sym_env_var_token1] = ACTIONS(3655), + [anon_sym_CARET] = ACTIONS(3655), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3657), }, [1178] = { - [sym_cell_path] = STATE(1386), - [sym_path] = STATE(1288), + [sym_match_arm] = STATE(7124), + [sym_default_arm] = STATE(7124), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1178), - [aux_sym_cell_path_repeat1] = STATE(1208), - [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), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(4461), - [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(249), - [sym_raw_string_begin] = ACTIONS(1023), + [aux_sym_shebang_repeat1] = STATE(1199), + [aux_sym_ctrl_match_repeat1] = STATE(1238), + [sym__newline] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(3659), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1179] = { + [sym_match_arm] = STATE(7128), + [sym_default_arm] = STATE(7128), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1179), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(4463), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4465), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [aux_sym_shebang_repeat1] = STATE(1193), + [aux_sym_ctrl_match_repeat1] = STATE(1250), + [sym__newline] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_RBRACE] = ACTIONS(3661), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1180] = { + [sym_env_var] = STATE(7496), [sym_comment] = STATE(1180), - [ts_builtin_sym_end] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(4467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), - [anon_sym_DOT_DOT_LT] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4469), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [aux_sym_pipe_element_repeat2] = STATE(1180), + [aux_sym_cmd_identifier_token1] = ACTIONS(3663), + [aux_sym_cmd_identifier_token2] = ACTIONS(3665), + [aux_sym_cmd_identifier_token3] = ACTIONS(3665), + [aux_sym_cmd_identifier_token4] = ACTIONS(3665), + [aux_sym_cmd_identifier_token5] = ACTIONS(3665), + [aux_sym_cmd_identifier_token6] = ACTIONS(3665), + [aux_sym_cmd_identifier_token7] = ACTIONS(3665), + [aux_sym_cmd_identifier_token8] = ACTIONS(3665), + [aux_sym_cmd_identifier_token9] = ACTIONS(3663), + [aux_sym_cmd_identifier_token10] = ACTIONS(3665), + [aux_sym_cmd_identifier_token11] = ACTIONS(3665), + [aux_sym_cmd_identifier_token12] = ACTIONS(3665), + [aux_sym_cmd_identifier_token13] = ACTIONS(3663), + [aux_sym_cmd_identifier_token14] = ACTIONS(3665), + [aux_sym_cmd_identifier_token15] = ACTIONS(3663), + [aux_sym_cmd_identifier_token16] = ACTIONS(3665), + [aux_sym_cmd_identifier_token17] = ACTIONS(3665), + [aux_sym_cmd_identifier_token18] = ACTIONS(3665), + [aux_sym_cmd_identifier_token19] = ACTIONS(3665), + [aux_sym_cmd_identifier_token20] = ACTIONS(3665), + [aux_sym_cmd_identifier_token21] = ACTIONS(3665), + [aux_sym_cmd_identifier_token22] = ACTIONS(3665), + [aux_sym_cmd_identifier_token23] = ACTIONS(3665), + [aux_sym_cmd_identifier_token24] = ACTIONS(3665), + [aux_sym_cmd_identifier_token25] = ACTIONS(3665), + [aux_sym_cmd_identifier_token26] = ACTIONS(3665), + [aux_sym_cmd_identifier_token27] = ACTIONS(3665), + [aux_sym_cmd_identifier_token28] = ACTIONS(3665), + [aux_sym_cmd_identifier_token29] = ACTIONS(3665), + [aux_sym_cmd_identifier_token30] = ACTIONS(3665), + [aux_sym_cmd_identifier_token31] = ACTIONS(3665), + [aux_sym_cmd_identifier_token32] = ACTIONS(3665), + [aux_sym_cmd_identifier_token33] = ACTIONS(3665), + [aux_sym_cmd_identifier_token34] = ACTIONS(3663), + [aux_sym_cmd_identifier_token35] = ACTIONS(3665), + [aux_sym_cmd_identifier_token36] = ACTIONS(3665), + [aux_sym_cmd_identifier_token37] = ACTIONS(3665), + [aux_sym_cmd_identifier_token38] = ACTIONS(3663), + [aux_sym_cmd_identifier_token39] = ACTIONS(3665), + [aux_sym_cmd_identifier_token40] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3663), + [anon_sym_DASH2] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_DOT_DOT] = ACTIONS(3663), + [aux_sym_expr_unary_token1] = ACTIONS(3665), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3665), + [anon_sym_DOT_DOT_LT] = ACTIONS(3665), + [anon_sym_null] = ACTIONS(3663), + [anon_sym_true] = ACTIONS(3663), + [anon_sym_false] = ACTIONS(3663), + [aux_sym__val_number_decimal_token1] = ACTIONS(3663), + [aux_sym__val_number_decimal_token2] = ACTIONS(3665), + [aux_sym__val_number_decimal_token3] = ACTIONS(3665), + [aux_sym__val_number_decimal_token4] = ACTIONS(3665), + [aux_sym__val_number_token1] = ACTIONS(3665), + [aux_sym__val_number_token2] = ACTIONS(3665), + [aux_sym__val_number_token3] = ACTIONS(3665), + [aux_sym__val_number_token4] = ACTIONS(3663), + [aux_sym__val_number_token5] = ACTIONS(3663), + [aux_sym__val_number_token6] = ACTIONS(3663), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3663), + [anon_sym_0x] = ACTIONS(3663), + [sym_val_date] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(3665), + [sym__str_single_quotes] = ACTIONS(3665), + [sym__str_back_ticks] = ACTIONS(3665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), + [aux_sym_env_var_token1] = ACTIONS(3667), + [anon_sym_CARET] = ACTIONS(3665), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3665), }, [1181] = { [sym_comment] = STATE(1181), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [anon_sym_null] = ACTIONS(1530), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1530), - [aux_sym_cmd_identifier_token40] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(4471), - [aux_sym__immediate_decimal_token2] = ACTIONS(4473), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [anon_sym_0b] = ACTIONS(1528), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1530), + [aux_sym_pipe_element_repeat1] = STATE(1183), + [aux_sym_cmd_identifier_token1] = ACTIONS(3663), + [aux_sym_cmd_identifier_token2] = ACTIONS(3663), + [aux_sym_cmd_identifier_token3] = ACTIONS(3663), + [aux_sym_cmd_identifier_token4] = ACTIONS(3663), + [aux_sym_cmd_identifier_token5] = ACTIONS(3663), + [aux_sym_cmd_identifier_token6] = ACTIONS(3663), + [aux_sym_cmd_identifier_token7] = ACTIONS(3663), + [aux_sym_cmd_identifier_token8] = ACTIONS(3663), + [aux_sym_cmd_identifier_token9] = ACTIONS(3663), + [aux_sym_cmd_identifier_token10] = ACTIONS(3663), + [aux_sym_cmd_identifier_token11] = ACTIONS(3663), + [aux_sym_cmd_identifier_token12] = ACTIONS(3663), + [aux_sym_cmd_identifier_token13] = ACTIONS(3663), + [aux_sym_cmd_identifier_token14] = ACTIONS(3663), + [aux_sym_cmd_identifier_token15] = ACTIONS(3663), + [aux_sym_cmd_identifier_token16] = ACTIONS(3663), + [aux_sym_cmd_identifier_token17] = ACTIONS(3663), + [aux_sym_cmd_identifier_token18] = ACTIONS(3663), + [aux_sym_cmd_identifier_token19] = ACTIONS(3663), + [aux_sym_cmd_identifier_token20] = ACTIONS(3663), + [aux_sym_cmd_identifier_token21] = ACTIONS(3663), + [aux_sym_cmd_identifier_token22] = ACTIONS(3663), + [aux_sym_cmd_identifier_token23] = ACTIONS(3663), + [aux_sym_cmd_identifier_token24] = ACTIONS(3663), + [aux_sym_cmd_identifier_token25] = ACTIONS(3663), + [aux_sym_cmd_identifier_token26] = ACTIONS(3663), + [aux_sym_cmd_identifier_token27] = ACTIONS(3663), + [aux_sym_cmd_identifier_token28] = ACTIONS(3663), + [aux_sym_cmd_identifier_token29] = ACTIONS(3663), + [aux_sym_cmd_identifier_token30] = ACTIONS(3663), + [aux_sym_cmd_identifier_token31] = ACTIONS(3663), + [aux_sym_cmd_identifier_token32] = ACTIONS(3663), + [aux_sym_cmd_identifier_token33] = ACTIONS(3663), + [aux_sym_cmd_identifier_token34] = ACTIONS(3663), + [aux_sym_cmd_identifier_token35] = ACTIONS(3663), + [aux_sym_cmd_identifier_token36] = ACTIONS(3663), + [aux_sym_cmd_identifier_token37] = ACTIONS(3663), + [aux_sym_cmd_identifier_token38] = ACTIONS(3663), + [aux_sym_cmd_identifier_token39] = ACTIONS(3663), + [aux_sym_cmd_identifier_token40] = ACTIONS(3663), + [sym__space] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3663), + [anon_sym_DOLLAR] = ACTIONS(3663), + [anon_sym_DASH2] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3663), + [anon_sym_DOT_DOT] = ACTIONS(3663), + [aux_sym_expr_unary_token1] = ACTIONS(3663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3663), + [anon_sym_DOT_DOT_LT] = ACTIONS(3663), + [anon_sym_null] = ACTIONS(3663), + [anon_sym_true] = ACTIONS(3663), + [anon_sym_false] = ACTIONS(3663), + [aux_sym__val_number_decimal_token1] = ACTIONS(3663), + [aux_sym__val_number_decimal_token2] = ACTIONS(3663), + [aux_sym__val_number_decimal_token3] = ACTIONS(3663), + [aux_sym__val_number_decimal_token4] = ACTIONS(3663), + [aux_sym__val_number_token1] = ACTIONS(3663), + [aux_sym__val_number_token2] = ACTIONS(3663), + [aux_sym__val_number_token3] = ACTIONS(3663), + [aux_sym__val_number_token4] = ACTIONS(3663), + [aux_sym__val_number_token5] = ACTIONS(3663), + [aux_sym__val_number_token6] = ACTIONS(3663), + [anon_sym_0b] = ACTIONS(3663), + [anon_sym_0o] = ACTIONS(3663), + [anon_sym_0x] = ACTIONS(3663), + [sym_val_date] = ACTIONS(3663), + [anon_sym_DQUOTE] = ACTIONS(3663), + [sym__str_single_quotes] = ACTIONS(3663), + [sym__str_back_ticks] = ACTIONS(3663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [aux_sym_env_var_token1] = ACTIONS(3663), + [anon_sym_CARET] = ACTIONS(3663), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3665), }, [1182] = { [sym_comment] = STATE(1182), - [ts_builtin_sym_end] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1598), - [aux_sym_cmd_identifier_token38] = ACTIONS(1598), - [aux_sym_cmd_identifier_token39] = ACTIONS(1598), - [aux_sym_cmd_identifier_token40] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), - [anon_sym_DOT_DOT_LT] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(4475), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token3] = ACTIONS(1598), - [aux_sym__val_number_decimal_token4] = ACTIONS(1598), - [aux_sym__val_number_token1] = ACTIONS(1598), - [aux_sym__val_number_token2] = ACTIONS(1598), - [aux_sym__val_number_token3] = ACTIONS(1598), - [anon_sym_0b] = ACTIONS(1596), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [sym__str_single_quotes] = ACTIONS(1598), - [sym__str_back_ticks] = ACTIONS(1598), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token1] = ACTIONS(1596), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1598), + [ts_builtin_sym_end] = ACTIONS(1609), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(3672), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3674), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1183] = { - [sym_cell_path] = STATE(1375), - [sym_path] = STATE(1288), [sym_comment] = STATE(1183), - [aux_sym_cell_path_repeat1] = STATE(1208), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1668), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1664), - [anon_sym_DOT_DOT2] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1664), - [anon_sym_DOT_DOT_LT] = ACTIONS(1664), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1664), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1664), - [anon_sym_0o] = ACTIONS(1664), - [anon_sym_0x] = ACTIONS(1664), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1664), - [anon_sym_out_GT] = ACTIONS(1664), - [anon_sym_e_GT] = ACTIONS(1664), - [anon_sym_o_GT] = ACTIONS(1664), - [anon_sym_err_PLUSout_GT] = ACTIONS(1664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), - [anon_sym_o_PLUSe_GT] = ACTIONS(1664), - [anon_sym_e_PLUSo_GT] = ACTIONS(1664), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1668), + [aux_sym_pipe_element_repeat1] = STATE(1183), + [aux_sym_cmd_identifier_token1] = ACTIONS(3676), + [aux_sym_cmd_identifier_token2] = ACTIONS(3676), + [aux_sym_cmd_identifier_token3] = ACTIONS(3676), + [aux_sym_cmd_identifier_token4] = ACTIONS(3676), + [aux_sym_cmd_identifier_token5] = ACTIONS(3676), + [aux_sym_cmd_identifier_token6] = ACTIONS(3676), + [aux_sym_cmd_identifier_token7] = ACTIONS(3676), + [aux_sym_cmd_identifier_token8] = ACTIONS(3676), + [aux_sym_cmd_identifier_token9] = ACTIONS(3676), + [aux_sym_cmd_identifier_token10] = ACTIONS(3676), + [aux_sym_cmd_identifier_token11] = ACTIONS(3676), + [aux_sym_cmd_identifier_token12] = ACTIONS(3676), + [aux_sym_cmd_identifier_token13] = ACTIONS(3676), + [aux_sym_cmd_identifier_token14] = ACTIONS(3676), + [aux_sym_cmd_identifier_token15] = ACTIONS(3676), + [aux_sym_cmd_identifier_token16] = ACTIONS(3676), + [aux_sym_cmd_identifier_token17] = ACTIONS(3676), + [aux_sym_cmd_identifier_token18] = ACTIONS(3676), + [aux_sym_cmd_identifier_token19] = ACTIONS(3676), + [aux_sym_cmd_identifier_token20] = ACTIONS(3676), + [aux_sym_cmd_identifier_token21] = ACTIONS(3676), + [aux_sym_cmd_identifier_token22] = ACTIONS(3676), + [aux_sym_cmd_identifier_token23] = ACTIONS(3676), + [aux_sym_cmd_identifier_token24] = ACTIONS(3676), + [aux_sym_cmd_identifier_token25] = ACTIONS(3676), + [aux_sym_cmd_identifier_token26] = ACTIONS(3676), + [aux_sym_cmd_identifier_token27] = ACTIONS(3676), + [aux_sym_cmd_identifier_token28] = ACTIONS(3676), + [aux_sym_cmd_identifier_token29] = ACTIONS(3676), + [aux_sym_cmd_identifier_token30] = ACTIONS(3676), + [aux_sym_cmd_identifier_token31] = ACTIONS(3676), + [aux_sym_cmd_identifier_token32] = ACTIONS(3676), + [aux_sym_cmd_identifier_token33] = ACTIONS(3676), + [aux_sym_cmd_identifier_token34] = ACTIONS(3676), + [aux_sym_cmd_identifier_token35] = ACTIONS(3676), + [aux_sym_cmd_identifier_token36] = ACTIONS(3676), + [aux_sym_cmd_identifier_token37] = ACTIONS(3676), + [aux_sym_cmd_identifier_token38] = ACTIONS(3676), + [aux_sym_cmd_identifier_token39] = ACTIONS(3676), + [aux_sym_cmd_identifier_token40] = ACTIONS(3676), + [sym__space] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_DOLLAR] = ACTIONS(3676), + [anon_sym_DASH2] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_DOT_DOT] = ACTIONS(3676), + [aux_sym_expr_unary_token1] = ACTIONS(3676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3676), + [anon_sym_DOT_DOT_LT] = ACTIONS(3676), + [anon_sym_null] = ACTIONS(3676), + [anon_sym_true] = ACTIONS(3676), + [anon_sym_false] = ACTIONS(3676), + [aux_sym__val_number_decimal_token1] = ACTIONS(3676), + [aux_sym__val_number_decimal_token2] = ACTIONS(3676), + [aux_sym__val_number_decimal_token3] = ACTIONS(3676), + [aux_sym__val_number_decimal_token4] = ACTIONS(3676), + [aux_sym__val_number_token1] = ACTIONS(3676), + [aux_sym__val_number_token2] = ACTIONS(3676), + [aux_sym__val_number_token3] = ACTIONS(3676), + [aux_sym__val_number_token4] = ACTIONS(3676), + [aux_sym__val_number_token5] = ACTIONS(3676), + [aux_sym__val_number_token6] = ACTIONS(3676), + [anon_sym_0b] = ACTIONS(3676), + [anon_sym_0o] = ACTIONS(3676), + [anon_sym_0x] = ACTIONS(3676), + [sym_val_date] = ACTIONS(3676), + [anon_sym_DQUOTE] = ACTIONS(3676), + [sym__str_single_quotes] = ACTIONS(3676), + [sym__str_back_ticks] = ACTIONS(3676), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3676), + [aux_sym_env_var_token1] = ACTIONS(3676), + [anon_sym_CARET] = ACTIONS(3676), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3681), }, [1184] = { - [sym_cell_path] = STATE(1379), - [sym_path] = STATE(1288), [sym_comment] = STATE(1184), - [aux_sym_cell_path_repeat1] = STATE(1208), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [aux_sym_cmd_identifier_token38] = ACTIONS(1672), - [aux_sym_cmd_identifier_token39] = ACTIONS(1672), - [aux_sym_cmd_identifier_token40] = ACTIONS(1672), - [sym__newline] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_err_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_GT_PIPE] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_DOT_DOT] = ACTIONS(1670), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), - [anon_sym_DOT_DOT_LT] = ACTIONS(1670), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [aux_sym__val_number_decimal_token1] = ACTIONS(1670), - [aux_sym__val_number_decimal_token2] = ACTIONS(1672), - [aux_sym__val_number_decimal_token3] = ACTIONS(1672), - [aux_sym__val_number_decimal_token4] = ACTIONS(1672), - [aux_sym__val_number_token1] = ACTIONS(1672), - [aux_sym__val_number_token2] = ACTIONS(1672), - [aux_sym__val_number_token3] = ACTIONS(1672), - [anon_sym_0b] = ACTIONS(1670), - [anon_sym_0o] = ACTIONS(1670), - [anon_sym_0x] = ACTIONS(1670), - [sym_val_date] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [sym__str_single_quotes] = ACTIONS(1672), - [sym__str_back_ticks] = ACTIONS(1672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1672), - [anon_sym_err_GT] = ACTIONS(1670), - [anon_sym_out_GT] = ACTIONS(1670), - [anon_sym_e_GT] = ACTIONS(1670), - [anon_sym_o_GT] = ACTIONS(1670), - [anon_sym_err_PLUSout_GT] = ACTIONS(1670), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), - [anon_sym_o_PLUSe_GT] = ACTIONS(1670), - [anon_sym_e_PLUSo_GT] = ACTIONS(1670), - [anon_sym_err_GT_GT] = ACTIONS(1672), - [anon_sym_out_GT_GT] = ACTIONS(1672), - [anon_sym_e_GT_GT] = ACTIONS(1672), - [anon_sym_o_GT_GT] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), - [aux_sym_unquoted_token1] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1672), + [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_cmd_identifier_token1] = ACTIONS(1294), + [aux_sym_cmd_identifier_token2] = ACTIONS(1296), + [aux_sym_cmd_identifier_token3] = ACTIONS(1296), + [aux_sym_cmd_identifier_token4] = ACTIONS(1296), + [aux_sym_cmd_identifier_token5] = ACTIONS(1296), + [aux_sym_cmd_identifier_token6] = ACTIONS(1296), + [aux_sym_cmd_identifier_token7] = ACTIONS(1296), + [aux_sym_cmd_identifier_token8] = ACTIONS(1296), + [aux_sym_cmd_identifier_token9] = ACTIONS(1294), + [aux_sym_cmd_identifier_token10] = ACTIONS(1296), + [aux_sym_cmd_identifier_token11] = ACTIONS(1296), + [aux_sym_cmd_identifier_token12] = ACTIONS(1296), + [aux_sym_cmd_identifier_token13] = ACTIONS(1294), + [aux_sym_cmd_identifier_token14] = ACTIONS(1296), + [aux_sym_cmd_identifier_token15] = ACTIONS(1294), + [aux_sym_cmd_identifier_token16] = ACTIONS(1296), + [aux_sym_cmd_identifier_token17] = ACTIONS(1296), + [aux_sym_cmd_identifier_token18] = ACTIONS(1296), + [aux_sym_cmd_identifier_token19] = ACTIONS(1296), + [aux_sym_cmd_identifier_token20] = ACTIONS(1296), + [aux_sym_cmd_identifier_token21] = ACTIONS(1296), + [aux_sym_cmd_identifier_token22] = ACTIONS(1296), + [aux_sym_cmd_identifier_token23] = ACTIONS(1296), + [aux_sym_cmd_identifier_token24] = ACTIONS(1296), + [aux_sym_cmd_identifier_token25] = ACTIONS(1296), + [aux_sym_cmd_identifier_token26] = ACTIONS(1296), + [aux_sym_cmd_identifier_token27] = ACTIONS(1296), + [aux_sym_cmd_identifier_token28] = ACTIONS(1296), + [aux_sym_cmd_identifier_token29] = ACTIONS(1296), + [aux_sym_cmd_identifier_token30] = ACTIONS(1296), + [aux_sym_cmd_identifier_token31] = ACTIONS(1296), + [aux_sym_cmd_identifier_token32] = ACTIONS(1296), + [aux_sym_cmd_identifier_token33] = ACTIONS(1296), + [aux_sym_cmd_identifier_token34] = ACTIONS(1294), + [aux_sym_cmd_identifier_token35] = ACTIONS(1296), + [aux_sym_cmd_identifier_token36] = ACTIONS(1296), + [aux_sym_cmd_identifier_token37] = ACTIONS(1296), + [aux_sym_cmd_identifier_token38] = ACTIONS(1294), + [aux_sym_cmd_identifier_token39] = ACTIONS(1296), + [aux_sym_cmd_identifier_token40] = ACTIONS(1296), + [sym__newline] = ACTIONS(3683), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [aux_sym_expr_unary_token1] = ACTIONS(1296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), + [anon_sym_DOT_DOT_LT] = ACTIONS(1296), + [anon_sym_null] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [aux_sym__val_number_decimal_token1] = ACTIONS(1294), + [aux_sym__val_number_decimal_token2] = ACTIONS(1296), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(1296), + [aux_sym__val_number_token2] = ACTIONS(1296), + [aux_sym__val_number_token3] = ACTIONS(1296), + [aux_sym__val_number_token4] = ACTIONS(1294), + [aux_sym__val_number_token5] = ACTIONS(1294), + [aux_sym__val_number_token6] = ACTIONS(1294), + [anon_sym_0b] = ACTIONS(1294), + [anon_sym_0o] = ACTIONS(1294), + [anon_sym_0x] = ACTIONS(1294), + [sym_val_date] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__str_single_quotes] = ACTIONS(1296), + [sym__str_back_ticks] = ACTIONS(1296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1296), }, [1185] = { - [sym__expr_parenthesized_immediate] = STATE(7603), [sym_comment] = STATE(1185), - [ts_builtin_sym_end] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [aux_sym_cmd_identifier_token38] = ACTIONS(1640), - [aux_sym_cmd_identifier_token39] = ACTIONS(1640), - [aux_sym_cmd_identifier_token40] = ACTIONS(1640), - [sym__newline] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_err_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_GT_PIPE] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_DOT_DOT] = ACTIONS(1628), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT2] = ACTIONS(4477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), - [anon_sym_DOT_DOT_LT] = ACTIONS(1628), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4479), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4479), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_decimal_token2] = ACTIONS(1640), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_decimal_token4] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [anon_sym_0b] = ACTIONS(1628), - [sym_filesize_unit] = ACTIONS(4481), - [sym_duration_unit] = ACTIONS(4483), - [anon_sym_0o] = ACTIONS(1628), - [anon_sym_0x] = ACTIONS(1628), - [sym_val_date] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [anon_sym_err_GT_GT] = ACTIONS(1640), - [anon_sym_out_GT_GT] = ACTIONS(1640), - [anon_sym_e_GT_GT] = ACTIONS(1640), - [anon_sym_o_GT_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), - [aux_sym_unquoted_token1] = ACTIONS(1628), - [aux_sym_unquoted_token2] = ACTIONS(4485), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1640), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_RPAREN] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(3686), + [aux_sym__immediate_decimal_token2] = ACTIONS(3688), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [1186] = { [sym_comment] = STATE(1186), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), - [anon_sym_DOT_DOT_LT] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [ts_builtin_sym_end] = ACTIONS(1623), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(3690), + [aux_sym__immediate_decimal_token2] = ACTIONS(3692), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [1187] = { + [sym_expr_parenthesized] = STATE(4507), + [sym_val_range] = STATE(5098), + [sym__val_range] = STATE(7741), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(5098), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(4740), + [sym_val_variable] = STATE(4565), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(4091), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4722), + [sym__str_double_quotes] = STATE(4722), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym__unquoted_in_list] = STATE(4671), + [sym__unquoted_in_list_with_expr] = STATE(5098), + [sym__unquoted_anonymous_prefix] = STATE(6780), [sym_comment] = STATE(1187), - [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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), - [anon_sym_DOT_DOT_LT] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(4487), - [aux_sym__immediate_decimal_token2] = ACTIONS(4489), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [aux_sym_unquoted_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [aux_sym_shebang_repeat1] = STATE(2963), + [sym__newline] = ACTIONS(3567), + [anon_sym_LBRACK] = ACTIONS(3569), + [anon_sym_LPAREN] = ACTIONS(3571), + [anon_sym_DOLLAR] = ACTIONS(3573), + [anon_sym_LBRACE] = ACTIONS(3575), + [anon_sym_DOT_DOT] = ACTIONS(3577), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3579), + [anon_sym_DOT_DOT_LT] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_true] = ACTIONS(3583), + [anon_sym_false] = ACTIONS(3583), + [aux_sym__val_number_decimal_token1] = ACTIONS(3585), + [aux_sym__val_number_decimal_token2] = ACTIONS(3587), + [aux_sym__val_number_decimal_token3] = ACTIONS(3589), + [aux_sym__val_number_decimal_token4] = ACTIONS(3591), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(3595), + [aux_sym__val_number_token5] = ACTIONS(3595), + [aux_sym__val_number_token6] = ACTIONS(3595), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3603), + [sym__str_single_quotes] = ACTIONS(3605), + [sym__str_back_ticks] = ACTIONS(3605), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3611), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3613), }, [1188] = { + [sym_expr_parenthesized] = STATE(4507), + [sym_val_range] = STATE(5098), + [sym__val_range] = STATE(7741), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(5098), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(4740), + [sym_val_variable] = STATE(4565), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(4091), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4722), + [sym__str_double_quotes] = STATE(4722), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym__unquoted_in_list] = STATE(4671), + [sym__unquoted_in_list_with_expr] = STATE(5098), + [sym__unquoted_anonymous_prefix] = STATE(6780), [sym_comment] = STATE(1188), - [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), - [anon_sym_QMARK2] = 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] = 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(249), + [aux_sym_shebang_repeat1] = STATE(1173), + [sym__newline] = ACTIONS(3567), + [anon_sym_LBRACK] = ACTIONS(3569), + [anon_sym_LPAREN] = ACTIONS(3571), + [anon_sym_DOLLAR] = ACTIONS(3573), + [anon_sym_LBRACE] = ACTIONS(3575), + [anon_sym_DOT_DOT] = ACTIONS(3577), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3579), + [anon_sym_DOT_DOT_LT] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_true] = ACTIONS(3583), + [anon_sym_false] = ACTIONS(3583), + [aux_sym__val_number_decimal_token1] = ACTIONS(3585), + [aux_sym__val_number_decimal_token2] = ACTIONS(3587), + [aux_sym__val_number_decimal_token3] = ACTIONS(3589), + [aux_sym__val_number_decimal_token4] = ACTIONS(3591), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(3595), + [aux_sym__val_number_token5] = ACTIONS(3595), + [aux_sym__val_number_token6] = ACTIONS(3595), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3603), + [sym__str_single_quotes] = ACTIONS(3605), + [sym__str_back_ticks] = ACTIONS(3605), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3611), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3613), }, [1189] = { + [sym_env_var] = STATE(6848), [sym_comment] = STATE(1189), - [anon_sym_EQ] = ACTIONS(1062), - [anon_sym_PLUS_EQ] = ACTIONS(1064), - [anon_sym_DASH_EQ] = ACTIONS(1064), - [anon_sym_STAR_EQ] = ACTIONS(1064), - [anon_sym_SLASH_EQ] = ACTIONS(1064), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1064), - [sym__newline] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_err_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_GT_PIPE] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), - [anon_sym_QMARK2] = ACTIONS(1064), - [aux_sym_expr_binary_token1] = ACTIONS(1064), - [aux_sym_expr_binary_token2] = ACTIONS(1064), - [aux_sym_expr_binary_token3] = ACTIONS(1064), - [aux_sym_expr_binary_token4] = ACTIONS(1064), - [aux_sym_expr_binary_token5] = ACTIONS(1064), - [aux_sym_expr_binary_token6] = ACTIONS(1064), - [aux_sym_expr_binary_token7] = ACTIONS(1064), - [aux_sym_expr_binary_token8] = ACTIONS(1064), - [aux_sym_expr_binary_token9] = ACTIONS(1064), - [aux_sym_expr_binary_token10] = ACTIONS(1064), - [aux_sym_expr_binary_token11] = ACTIONS(1064), - [aux_sym_expr_binary_token12] = ACTIONS(1064), - [aux_sym_expr_binary_token13] = ACTIONS(1064), - [aux_sym_expr_binary_token14] = ACTIONS(1064), - [aux_sym_expr_binary_token15] = ACTIONS(1064), - [aux_sym_expr_binary_token16] = ACTIONS(1064), - [aux_sym_expr_binary_token17] = ACTIONS(1064), - [aux_sym_expr_binary_token18] = ACTIONS(1064), - [aux_sym_expr_binary_token19] = ACTIONS(1064), - [aux_sym_expr_binary_token20] = ACTIONS(1064), - [aux_sym_expr_binary_token21] = ACTIONS(1064), - [aux_sym_expr_binary_token22] = ACTIONS(1064), - [aux_sym_expr_binary_token23] = ACTIONS(1064), - [aux_sym_expr_binary_token24] = ACTIONS(1064), - [aux_sym_expr_binary_token25] = ACTIONS(1064), - [aux_sym_expr_binary_token26] = ACTIONS(1064), - [aux_sym_expr_binary_token27] = ACTIONS(1064), - [aux_sym_expr_binary_token28] = ACTIONS(1064), - [anon_sym_DOT_DOT2] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), - [aux_sym_record_entry_token1] = ACTIONS(1064), - [anon_sym_err_GT] = ACTIONS(1062), - [anon_sym_out_GT] = ACTIONS(1062), - [anon_sym_e_GT] = ACTIONS(1062), - [anon_sym_o_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT] = ACTIONS(1062), - [anon_sym_err_GT_GT] = ACTIONS(1064), - [anon_sym_out_GT_GT] = ACTIONS(1064), - [anon_sym_e_GT_GT] = ACTIONS(1064), - [anon_sym_o_GT_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1189), + [aux_sym_cmd_identifier_token1] = ACTIONS(3543), + [aux_sym_cmd_identifier_token2] = ACTIONS(3549), + [aux_sym_cmd_identifier_token3] = ACTIONS(3549), + [aux_sym_cmd_identifier_token4] = ACTIONS(3549), + [aux_sym_cmd_identifier_token5] = ACTIONS(3549), + [aux_sym_cmd_identifier_token6] = ACTIONS(3549), + [aux_sym_cmd_identifier_token7] = ACTIONS(3549), + [aux_sym_cmd_identifier_token8] = ACTIONS(3549), + [aux_sym_cmd_identifier_token9] = ACTIONS(3543), + [aux_sym_cmd_identifier_token10] = ACTIONS(3549), + [aux_sym_cmd_identifier_token11] = ACTIONS(3549), + [aux_sym_cmd_identifier_token12] = ACTIONS(3549), + [aux_sym_cmd_identifier_token13] = ACTIONS(3543), + [aux_sym_cmd_identifier_token14] = ACTIONS(3549), + [aux_sym_cmd_identifier_token15] = ACTIONS(3543), + [aux_sym_cmd_identifier_token16] = ACTIONS(3549), + [aux_sym_cmd_identifier_token17] = ACTIONS(3549), + [aux_sym_cmd_identifier_token18] = ACTIONS(3549), + [aux_sym_cmd_identifier_token19] = ACTIONS(3549), + [aux_sym_cmd_identifier_token20] = ACTIONS(3549), + [aux_sym_cmd_identifier_token21] = ACTIONS(3549), + [aux_sym_cmd_identifier_token22] = ACTIONS(3549), + [aux_sym_cmd_identifier_token23] = ACTIONS(3549), + [aux_sym_cmd_identifier_token24] = ACTIONS(3549), + [aux_sym_cmd_identifier_token25] = ACTIONS(3549), + [aux_sym_cmd_identifier_token26] = ACTIONS(3549), + [aux_sym_cmd_identifier_token27] = ACTIONS(3549), + [aux_sym_cmd_identifier_token28] = ACTIONS(3549), + [aux_sym_cmd_identifier_token29] = ACTIONS(3549), + [aux_sym_cmd_identifier_token30] = ACTIONS(3549), + [aux_sym_cmd_identifier_token31] = ACTIONS(3549), + [aux_sym_cmd_identifier_token32] = ACTIONS(3549), + [aux_sym_cmd_identifier_token33] = ACTIONS(3549), + [aux_sym_cmd_identifier_token34] = ACTIONS(3543), + [aux_sym_cmd_identifier_token35] = ACTIONS(3549), + [aux_sym_cmd_identifier_token36] = ACTIONS(3549), + [aux_sym_cmd_identifier_token37] = ACTIONS(3549), + [aux_sym_cmd_identifier_token38] = ACTIONS(3543), + [aux_sym_cmd_identifier_token39] = ACTIONS(3549), + [aux_sym_cmd_identifier_token40] = ACTIONS(3549), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_DOLLAR] = ACTIONS(3543), + [anon_sym_DASH2] = ACTIONS(3543), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_DOT_DOT] = ACTIONS(3543), + [aux_sym_expr_unary_token1] = ACTIONS(3549), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3549), + [anon_sym_DOT_DOT_LT] = ACTIONS(3549), + [anon_sym_null] = ACTIONS(3543), + [anon_sym_true] = ACTIONS(3543), + [anon_sym_false] = ACTIONS(3543), + [aux_sym__val_number_decimal_token1] = ACTIONS(3543), + [aux_sym__val_number_decimal_token2] = ACTIONS(3549), + [aux_sym__val_number_decimal_token3] = ACTIONS(3549), + [aux_sym__val_number_decimal_token4] = ACTIONS(3549), + [aux_sym__val_number_token1] = ACTIONS(3549), + [aux_sym__val_number_token2] = ACTIONS(3549), + [aux_sym__val_number_token3] = ACTIONS(3549), + [aux_sym__val_number_token4] = ACTIONS(3543), + [aux_sym__val_number_token5] = ACTIONS(3543), + [aux_sym__val_number_token6] = ACTIONS(3543), + [anon_sym_0b] = ACTIONS(3543), + [anon_sym_0o] = ACTIONS(3543), + [anon_sym_0x] = ACTIONS(3543), + [sym_val_date] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [sym__str_single_quotes] = ACTIONS(3549), + [sym__str_back_ticks] = ACTIONS(3549), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3549), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), + [aux_sym_env_var_token1] = ACTIONS(3694), + [anon_sym_CARET] = ACTIONS(3549), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3549), }, [1190] = { + [sym_expr_parenthesized] = STATE(4593), + [sym_val_range] = STATE(5028), + [sym__val_range] = STATE(7741), + [sym__val_range_with_end] = STATE(7363), + [sym__value] = STATE(5028), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(4740), + [sym_val_variable] = STATE(4565), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(4091), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4722), + [sym__str_double_quotes] = STATE(4722), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym__unquoted_in_list] = STATE(4759), + [sym__unquoted_in_list_with_expr] = STATE(5028), + [sym__unquoted_anonymous_prefix] = STATE(6780), [sym_comment] = STATE(1190), - [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(249), + [aux_sym_shebang_repeat1] = STATE(1187), + [sym__newline] = ACTIONS(3567), + [anon_sym_LBRACK] = ACTIONS(3569), + [anon_sym_LPAREN] = ACTIONS(3571), + [anon_sym_DOLLAR] = ACTIONS(3573), + [anon_sym_LBRACE] = ACTIONS(3575), + [anon_sym_DOT_DOT] = ACTIONS(3577), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3579), + [anon_sym_DOT_DOT_LT] = ACTIONS(3579), + [anon_sym_null] = ACTIONS(3581), + [anon_sym_true] = ACTIONS(3583), + [anon_sym_false] = ACTIONS(3583), + [aux_sym__val_number_decimal_token1] = ACTIONS(3585), + [aux_sym__val_number_decimal_token2] = ACTIONS(3587), + [aux_sym__val_number_decimal_token3] = ACTIONS(3589), + [aux_sym__val_number_decimal_token4] = ACTIONS(3591), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(3595), + [aux_sym__val_number_token5] = ACTIONS(3595), + [aux_sym__val_number_token6] = ACTIONS(3595), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3603), + [sym__str_single_quotes] = ACTIONS(3605), + [sym__str_back_ticks] = ACTIONS(3605), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3611), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3613), }, [1191] = { [sym_comment] = STATE(1191), - [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), - [anon_sym_QMARK2] = 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(249), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(3697), + [aux_sym__immediate_decimal_token2] = ACTIONS(3699), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [1192] = { - [sym_path] = STATE(1268), [sym_comment] = STATE(1192), - [aux_sym_cell_path_repeat1] = STATE(1195), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_PLUS_EQ] = ACTIONS(1029), - [anon_sym_DASH_EQ] = ACTIONS(1029), - [anon_sym_STAR_EQ] = ACTIONS(1029), - [anon_sym_SLASH_EQ] = ACTIONS(1029), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1029), - [sym__newline] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_err_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_GT_PIPE] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1029), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1029), - [anon_sym_DOT_DOT2] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), - [anon_sym_err_GT] = ACTIONS(1027), - [anon_sym_out_GT] = ACTIONS(1027), - [anon_sym_e_GT] = ACTIONS(1027), - [anon_sym_o_GT] = ACTIONS(1027), - [anon_sym_err_PLUSout_GT] = ACTIONS(1027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), - [anon_sym_o_PLUSe_GT] = ACTIONS(1027), - [anon_sym_e_PLUSo_GT] = ACTIONS(1027), - [anon_sym_err_GT_GT] = ACTIONS(1029), - [anon_sym_out_GT_GT] = ACTIONS(1029), - [anon_sym_e_GT_GT] = ACTIONS(1029), - [anon_sym_o_GT_GT] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(3701), + [aux_sym__immediate_decimal_token2] = ACTIONS(3703), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [1193] = { - [sym_path] = STATE(1247), + [sym_match_arm] = STATE(7265), + [sym_default_arm] = STATE(7265), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1193), - [aux_sym_cell_path_repeat1] = STATE(1193), - [anon_sym_EQ] = ACTIONS(1031), - [anon_sym_PLUS_EQ] = ACTIONS(1033), - [anon_sym_DASH_EQ] = ACTIONS(1033), - [anon_sym_STAR_EQ] = ACTIONS(1033), - [anon_sym_SLASH_EQ] = ACTIONS(1033), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1033), - [sym__newline] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_err_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_GT_PIPE] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [aux_sym_expr_binary_token1] = ACTIONS(1033), - [aux_sym_expr_binary_token2] = ACTIONS(1033), - [aux_sym_expr_binary_token3] = ACTIONS(1033), - [aux_sym_expr_binary_token4] = ACTIONS(1033), - [aux_sym_expr_binary_token5] = ACTIONS(1033), - [aux_sym_expr_binary_token6] = ACTIONS(1033), - [aux_sym_expr_binary_token7] = ACTIONS(1033), - [aux_sym_expr_binary_token8] = ACTIONS(1033), - [aux_sym_expr_binary_token9] = ACTIONS(1033), - [aux_sym_expr_binary_token10] = ACTIONS(1033), - [aux_sym_expr_binary_token11] = ACTIONS(1033), - [aux_sym_expr_binary_token12] = ACTIONS(1033), - [aux_sym_expr_binary_token13] = ACTIONS(1033), - [aux_sym_expr_binary_token14] = ACTIONS(1033), - [aux_sym_expr_binary_token15] = ACTIONS(1033), - [aux_sym_expr_binary_token16] = ACTIONS(1033), - [aux_sym_expr_binary_token17] = ACTIONS(1033), - [aux_sym_expr_binary_token18] = ACTIONS(1033), - [aux_sym_expr_binary_token19] = ACTIONS(1033), - [aux_sym_expr_binary_token20] = ACTIONS(1033), - [aux_sym_expr_binary_token21] = ACTIONS(1033), - [aux_sym_expr_binary_token22] = ACTIONS(1033), - [aux_sym_expr_binary_token23] = ACTIONS(1033), - [aux_sym_expr_binary_token24] = ACTIONS(1033), - [aux_sym_expr_binary_token25] = ACTIONS(1033), - [aux_sym_expr_binary_token26] = ACTIONS(1033), - [aux_sym_expr_binary_token27] = ACTIONS(1033), - [aux_sym_expr_binary_token28] = ACTIONS(1033), - [anon_sym_DOT_DOT2] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(4491), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), - [anon_sym_err_GT] = ACTIONS(1031), - [anon_sym_out_GT] = ACTIONS(1031), - [anon_sym_e_GT] = ACTIONS(1031), - [anon_sym_o_GT] = ACTIONS(1031), - [anon_sym_err_PLUSout_GT] = ACTIONS(1031), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), - [anon_sym_o_PLUSe_GT] = ACTIONS(1031), - [anon_sym_e_PLUSo_GT] = ACTIONS(1031), - [anon_sym_err_GT_GT] = ACTIONS(1033), - [anon_sym_out_GT_GT] = ACTIONS(1033), - [anon_sym_e_GT_GT] = ACTIONS(1033), - [anon_sym_o_GT_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_shebang_repeat1] = STATE(3007), + [aux_sym_ctrl_match_repeat1] = STATE(1241), + [sym__newline] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1194] = { - [sym_cell_path] = STATE(1320), - [sym_path] = STATE(1299), + [sym_match_arm] = STATE(7145), + [sym_default_arm] = STATE(7145), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1194), - [aux_sym_cell_path_repeat1] = STATE(1225), - [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(4494), - [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(249), + [aux_sym_shebang_repeat1] = STATE(3007), + [aux_sym_ctrl_match_repeat1] = STATE(1236), + [sym__newline] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1195] = { - [sym_path] = STATE(1268), [sym_comment] = STATE(1195), - [aux_sym_cell_path_repeat1] = STATE(1195), - [anon_sym_EQ] = ACTIONS(1031), - [anon_sym_PLUS_EQ] = ACTIONS(1033), - [anon_sym_DASH_EQ] = ACTIONS(1033), - [anon_sym_STAR_EQ] = ACTIONS(1033), - [anon_sym_SLASH_EQ] = ACTIONS(1033), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1033), - [sym__newline] = ACTIONS(1031), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_err_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_GT_PIPE] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1033), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1033), - [anon_sym_DOT_DOT2] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(4496), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), - [anon_sym_err_GT] = ACTIONS(1031), - [anon_sym_out_GT] = ACTIONS(1031), - [anon_sym_e_GT] = ACTIONS(1031), - [anon_sym_o_GT] = ACTIONS(1031), - [anon_sym_err_PLUSout_GT] = ACTIONS(1031), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), - [anon_sym_o_PLUSe_GT] = ACTIONS(1031), - [anon_sym_e_PLUSo_GT] = ACTIONS(1031), - [anon_sym_err_GT_GT] = ACTIONS(1033), - [anon_sym_out_GT_GT] = ACTIONS(1033), - [anon_sym_e_GT_GT] = ACTIONS(1033), - [anon_sym_o_GT_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1609), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3674), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1196] = { [sym_comment] = STATE(1196), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), - [anon_sym_DOT_DOT_LT] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4111), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(3705), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), }, [1197] = { - [sym__expr_parenthesized_immediate] = STATE(1747), - [sym__immediate_decimal] = STATE(1880), - [sym_val_variable] = STATE(1747), + [sym_match_arm] = STATE(7104), + [sym_default_arm] = STATE(7104), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1197), - [ts_builtin_sym_end] = ACTIONS(1570), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [anon_sym_null] = ACTIONS(1570), - [aux_sym_cmd_identifier_token38] = ACTIONS(1570), - [aux_sym_cmd_identifier_token39] = ACTIONS(1570), - [aux_sym_cmd_identifier_token40] = ACTIONS(1570), - [sym__newline] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_err_GT_PIPE] = ACTIONS(1570), - [anon_sym_out_GT_PIPE] = ACTIONS(1570), - [anon_sym_e_GT_PIPE] = ACTIONS(1570), - [anon_sym_o_GT_PIPE] = ACTIONS(1570), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1570), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1570), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1570), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(4171), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_LPAREN2] = ACTIONS(4173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1570), - [anon_sym_DOT_DOT_LT] = ACTIONS(1570), - [aux_sym__immediate_decimal_token1] = ACTIONS(4499), - [aux_sym__immediate_decimal_token3] = ACTIONS(4501), - [aux_sym__immediate_decimal_token4] = ACTIONS(4503), - [aux_sym__immediate_decimal_token5] = ACTIONS(4505), - [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(1570), - [aux_sym__val_number_token2] = ACTIONS(1570), - [aux_sym__val_number_token3] = ACTIONS(1570), - [anon_sym_0b] = ACTIONS(1560), - [anon_sym_0o] = ACTIONS(1560), - [anon_sym_0x] = ACTIONS(1560), - [sym_val_date] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [sym__str_single_quotes] = ACTIONS(1570), - [sym__str_back_ticks] = ACTIONS(1570), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1570), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1570), - [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(1570), - [anon_sym_out_GT_GT] = ACTIONS(1570), - [anon_sym_e_GT_GT] = ACTIONS(1570), - [anon_sym_o_GT_GT] = ACTIONS(1570), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1570), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1570), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1570), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1570), - [aux_sym_unquoted_token1] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1570), + [aux_sym_shebang_repeat1] = STATE(3007), + [aux_sym_ctrl_match_repeat1] = STATE(1234), + [sym__newline] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1198] = { - [sym__match_pattern_expression] = STATE(3083), - [sym__match_pattern_value] = STATE(3079), - [sym__match_pattern_list] = STATE(3092), - [sym__match_pattern_record] = STATE(3125), - [sym_expr_parenthesized] = STATE(2897), - [sym_val_range] = STATE(3079), - [sym__val_range] = STATE(7928), - [sym_val_nothing] = STATE(3054), - [sym_val_bool] = STATE(3042), - [sym_val_variable] = STATE(2873), - [sym_val_number] = STATE(3054), - [sym__val_number_decimal] = STATE(2687), - [sym__val_number] = STATE(3094), - [sym_val_duration] = STATE(3054), - [sym_val_filesize] = STATE(3054), - [sym_val_binary] = STATE(3054), - [sym_val_string] = STATE(3054), - [sym__raw_str] = STATE(3122), - [sym__str_double_quotes] = STATE(3122), - [sym_val_table] = STATE(3054), - [sym__unquoted_in_list] = STATE(3083), - [sym__unquoted_anonymous_prefix] = STATE(7845), [sym_comment] = STATE(1198), - [aux_sym__match_pattern_list_repeat1] = STATE(1198), - [anon_sym_true] = ACTIONS(4507), - [anon_sym_false] = ACTIONS(4507), - [anon_sym_null] = ACTIONS(4510), - [aux_sym_cmd_identifier_token38] = ACTIONS(4513), - [aux_sym_cmd_identifier_token39] = ACTIONS(4513), - [aux_sym_cmd_identifier_token40] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4516), - [anon_sym_RBRACK] = ACTIONS(4519), - [anon_sym_LPAREN] = ACTIONS(4521), - [anon_sym_DOLLAR] = ACTIONS(4524), - [anon_sym_LBRACE] = ACTIONS(4527), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4533), - [anon_sym_DOT_DOT_LT] = ACTIONS(4533), - [aux_sym__val_number_decimal_token1] = ACTIONS(4536), - [aux_sym__val_number_decimal_token2] = ACTIONS(4539), - [aux_sym__val_number_decimal_token3] = ACTIONS(4542), - [aux_sym__val_number_decimal_token4] = ACTIONS(4545), - [aux_sym__val_number_token1] = ACTIONS(4548), - [aux_sym__val_number_token2] = ACTIONS(4548), - [aux_sym__val_number_token3] = ACTIONS(4548), - [anon_sym_0b] = ACTIONS(4551), - [anon_sym_0o] = ACTIONS(4554), - [anon_sym_0x] = ACTIONS(4554), - [sym_val_date] = ACTIONS(4557), - [anon_sym_DQUOTE] = ACTIONS(4560), - [sym__str_single_quotes] = ACTIONS(4563), - [sym__str_back_ticks] = ACTIONS(4563), - [anon_sym_err_GT] = ACTIONS(4566), - [anon_sym_out_GT] = ACTIONS(4566), - [anon_sym_e_GT] = ACTIONS(4566), - [anon_sym_o_GT] = ACTIONS(4566), - [anon_sym_err_PLUSout_GT] = ACTIONS(4566), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4566), - [anon_sym_o_PLUSe_GT] = ACTIONS(4566), - [anon_sym_e_PLUSo_GT] = ACTIONS(4566), - [anon_sym_err_GT_GT] = ACTIONS(4569), - [anon_sym_out_GT_GT] = ACTIONS(4569), - [anon_sym_e_GT_GT] = ACTIONS(4569), - [anon_sym_o_GT_GT] = ACTIONS(4569), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4569), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4569), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4569), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4569), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4572), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4575), + [aux_sym_cmd_identifier_token1] = ACTIONS(1290), + [aux_sym_cmd_identifier_token2] = ACTIONS(1288), + [aux_sym_cmd_identifier_token3] = ACTIONS(1288), + [aux_sym_cmd_identifier_token4] = ACTIONS(1288), + [aux_sym_cmd_identifier_token5] = ACTIONS(1288), + [aux_sym_cmd_identifier_token6] = ACTIONS(1288), + [aux_sym_cmd_identifier_token7] = ACTIONS(1288), + [aux_sym_cmd_identifier_token8] = ACTIONS(1288), + [aux_sym_cmd_identifier_token9] = ACTIONS(1290), + [aux_sym_cmd_identifier_token10] = ACTIONS(1288), + [aux_sym_cmd_identifier_token11] = ACTIONS(1288), + [aux_sym_cmd_identifier_token12] = ACTIONS(1288), + [aux_sym_cmd_identifier_token13] = ACTIONS(1290), + [aux_sym_cmd_identifier_token14] = ACTIONS(1288), + [aux_sym_cmd_identifier_token15] = ACTIONS(1290), + [aux_sym_cmd_identifier_token16] = ACTIONS(1288), + [aux_sym_cmd_identifier_token17] = ACTIONS(1288), + [aux_sym_cmd_identifier_token18] = ACTIONS(1288), + [aux_sym_cmd_identifier_token19] = ACTIONS(1288), + [aux_sym_cmd_identifier_token20] = ACTIONS(1288), + [aux_sym_cmd_identifier_token21] = ACTIONS(1288), + [aux_sym_cmd_identifier_token22] = ACTIONS(1288), + [aux_sym_cmd_identifier_token23] = ACTIONS(1288), + [aux_sym_cmd_identifier_token24] = ACTIONS(1288), + [aux_sym_cmd_identifier_token25] = ACTIONS(1288), + [aux_sym_cmd_identifier_token26] = ACTIONS(1288), + [aux_sym_cmd_identifier_token27] = ACTIONS(1288), + [aux_sym_cmd_identifier_token28] = ACTIONS(1288), + [aux_sym_cmd_identifier_token29] = ACTIONS(1288), + [aux_sym_cmd_identifier_token30] = ACTIONS(1288), + [aux_sym_cmd_identifier_token31] = ACTIONS(1288), + [aux_sym_cmd_identifier_token32] = ACTIONS(1288), + [aux_sym_cmd_identifier_token33] = ACTIONS(1288), + [aux_sym_cmd_identifier_token34] = ACTIONS(1290), + [aux_sym_cmd_identifier_token35] = ACTIONS(1288), + [aux_sym_cmd_identifier_token36] = ACTIONS(1288), + [aux_sym_cmd_identifier_token37] = ACTIONS(1288), + [aux_sym_cmd_identifier_token38] = ACTIONS(1290), + [aux_sym_cmd_identifier_token39] = ACTIONS(1288), + [aux_sym_cmd_identifier_token40] = ACTIONS(1288), + [sym__newline] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_DOLLAR] = ACTIONS(1290), + [anon_sym_DASH2] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [aux_sym_expr_unary_token1] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), + [anon_sym_DOT_DOT_LT] = ACTIONS(1288), + [anon_sym_null] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [aux_sym__val_number_decimal_token1] = ACTIONS(1290), + [aux_sym__val_number_decimal_token2] = ACTIONS(1288), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1288), + [aux_sym__val_number_token1] = ACTIONS(1288), + [aux_sym__val_number_token2] = ACTIONS(1288), + [aux_sym__val_number_token3] = ACTIONS(1288), + [aux_sym__val_number_token4] = ACTIONS(1290), + [aux_sym__val_number_token5] = ACTIONS(1290), + [aux_sym__val_number_token6] = ACTIONS(1290), + [anon_sym_0b] = ACTIONS(1290), + [anon_sym_0o] = ACTIONS(1290), + [anon_sym_0x] = ACTIONS(1290), + [sym_val_date] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym__str_single_quotes] = ACTIONS(1288), + [sym__str_back_ticks] = ACTIONS(1288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1288), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1288), }, [1199] = { - [sym__expr_parenthesized_immediate] = STATE(1748), - [sym__immediate_decimal] = STATE(1754), - [sym_val_variable] = STATE(1748), + [sym_match_arm] = STATE(7258), + [sym_default_arm] = STATE(7258), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1199), - [ts_builtin_sym_end] = ACTIONS(1610), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [anon_sym_null] = ACTIONS(1610), - [aux_sym_cmd_identifier_token38] = ACTIONS(1610), - [aux_sym_cmd_identifier_token39] = ACTIONS(1610), - [aux_sym_cmd_identifier_token40] = ACTIONS(1610), - [sym__newline] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_err_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_GT_PIPE] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(4171), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_LPAREN2] = ACTIONS(4173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1610), - [anon_sym_DOT_DOT_LT] = ACTIONS(1610), - [aux_sym__immediate_decimal_token1] = ACTIONS(4499), - [aux_sym__immediate_decimal_token3] = ACTIONS(4501), - [aux_sym__immediate_decimal_token4] = ACTIONS(4503), - [aux_sym__immediate_decimal_token5] = ACTIONS(4505), - [aux_sym__val_number_decimal_token1] = ACTIONS(1608), - [aux_sym__val_number_decimal_token2] = ACTIONS(1608), - [aux_sym__val_number_decimal_token3] = ACTIONS(1608), - [aux_sym__val_number_decimal_token4] = ACTIONS(1608), - [aux_sym__val_number_token1] = ACTIONS(1610), - [aux_sym__val_number_token2] = ACTIONS(1610), - [aux_sym__val_number_token3] = ACTIONS(1610), - [anon_sym_0b] = ACTIONS(1608), - [anon_sym_0o] = ACTIONS(1608), - [anon_sym_0x] = ACTIONS(1608), - [sym_val_date] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym__str_single_quotes] = ACTIONS(1610), - [sym__str_back_ticks] = ACTIONS(1610), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1610), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1610), - [anon_sym_err_GT] = ACTIONS(1608), - [anon_sym_out_GT] = ACTIONS(1608), - [anon_sym_e_GT] = ACTIONS(1608), - [anon_sym_o_GT] = ACTIONS(1608), - [anon_sym_err_PLUSout_GT] = ACTIONS(1608), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), - [anon_sym_o_PLUSe_GT] = ACTIONS(1608), - [anon_sym_e_PLUSo_GT] = ACTIONS(1608), - [anon_sym_err_GT_GT] = ACTIONS(1610), - [anon_sym_out_GT_GT] = ACTIONS(1610), - [anon_sym_e_GT_GT] = ACTIONS(1610), - [anon_sym_o_GT_GT] = ACTIONS(1610), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), - [aux_sym_unquoted_token1] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1610), + [aux_sym_shebang_repeat1] = STATE(3007), + [aux_sym_ctrl_match_repeat1] = STATE(1240), + [sym__newline] = ACTIONS(3615), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1200] = { - [sym__expr_parenthesized_immediate] = STATE(1698), - [sym__immediate_decimal] = STATE(1703), - [sym_val_variable] = STATE(1698), [sym_comment] = STATE(1200), - [ts_builtin_sym_end] = ACTIONS(1614), - [anon_sym_true] = ACTIONS(1614), - [anon_sym_false] = ACTIONS(1614), - [anon_sym_null] = ACTIONS(1614), - [aux_sym_cmd_identifier_token38] = ACTIONS(1614), - [aux_sym_cmd_identifier_token39] = ACTIONS(1614), - [aux_sym_cmd_identifier_token40] = ACTIONS(1614), - [sym__newline] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_err_GT_PIPE] = ACTIONS(1614), - [anon_sym_out_GT_PIPE] = ACTIONS(1614), - [anon_sym_e_GT_PIPE] = ACTIONS(1614), - [anon_sym_o_GT_PIPE] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(4171), - [anon_sym_DASH_DASH] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_DOT_DOT] = ACTIONS(1612), - [anon_sym_LPAREN2] = ACTIONS(4173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1614), - [anon_sym_DOT_DOT_LT] = ACTIONS(1614), - [aux_sym__immediate_decimal_token1] = ACTIONS(4499), - [aux_sym__immediate_decimal_token3] = ACTIONS(4501), - [aux_sym__immediate_decimal_token4] = ACTIONS(4503), - [aux_sym__immediate_decimal_token5] = ACTIONS(4505), - [aux_sym__val_number_decimal_token1] = ACTIONS(1612), - [aux_sym__val_number_decimal_token2] = ACTIONS(1612), - [aux_sym__val_number_decimal_token3] = ACTIONS(1612), - [aux_sym__val_number_decimal_token4] = ACTIONS(1612), - [aux_sym__val_number_token1] = ACTIONS(1614), - [aux_sym__val_number_token2] = ACTIONS(1614), - [aux_sym__val_number_token3] = ACTIONS(1614), - [anon_sym_0b] = ACTIONS(1612), - [anon_sym_0o] = ACTIONS(1612), - [anon_sym_0x] = ACTIONS(1612), - [sym_val_date] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [sym__str_single_quotes] = ACTIONS(1614), - [sym__str_back_ticks] = ACTIONS(1614), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1614), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1614), - [anon_sym_err_GT] = ACTIONS(1612), - [anon_sym_out_GT] = ACTIONS(1612), - [anon_sym_e_GT] = ACTIONS(1612), - [anon_sym_o_GT] = ACTIONS(1612), - [anon_sym_err_PLUSout_GT] = ACTIONS(1612), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1612), - [anon_sym_o_PLUSe_GT] = ACTIONS(1612), - [anon_sym_e_PLUSo_GT] = ACTIONS(1612), - [anon_sym_err_GT_GT] = ACTIONS(1614), - [anon_sym_out_GT_GT] = ACTIONS(1614), - [anon_sym_e_GT_GT] = ACTIONS(1614), - [anon_sym_o_GT_GT] = ACTIONS(1614), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1614), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1614), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1614), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1614), - [aux_sym_unquoted_token1] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1614), + [aux_sym_cmd_identifier_token1] = ACTIONS(3707), + [aux_sym_cmd_identifier_token2] = ACTIONS(3707), + [aux_sym_cmd_identifier_token3] = ACTIONS(3707), + [aux_sym_cmd_identifier_token4] = ACTIONS(3707), + [aux_sym_cmd_identifier_token5] = ACTIONS(3707), + [aux_sym_cmd_identifier_token6] = ACTIONS(3707), + [aux_sym_cmd_identifier_token7] = ACTIONS(3707), + [aux_sym_cmd_identifier_token8] = ACTIONS(3707), + [aux_sym_cmd_identifier_token9] = ACTIONS(3707), + [aux_sym_cmd_identifier_token10] = ACTIONS(3707), + [aux_sym_cmd_identifier_token11] = ACTIONS(3707), + [aux_sym_cmd_identifier_token12] = ACTIONS(3707), + [aux_sym_cmd_identifier_token13] = ACTIONS(3707), + [aux_sym_cmd_identifier_token14] = ACTIONS(3707), + [aux_sym_cmd_identifier_token15] = ACTIONS(3707), + [aux_sym_cmd_identifier_token16] = ACTIONS(3707), + [aux_sym_cmd_identifier_token17] = ACTIONS(3707), + [aux_sym_cmd_identifier_token18] = ACTIONS(3707), + [aux_sym_cmd_identifier_token19] = ACTIONS(3707), + [aux_sym_cmd_identifier_token20] = ACTIONS(3707), + [aux_sym_cmd_identifier_token21] = ACTIONS(3707), + [aux_sym_cmd_identifier_token22] = ACTIONS(3707), + [aux_sym_cmd_identifier_token23] = ACTIONS(3707), + [aux_sym_cmd_identifier_token24] = ACTIONS(3707), + [aux_sym_cmd_identifier_token25] = ACTIONS(3707), + [aux_sym_cmd_identifier_token26] = ACTIONS(3707), + [aux_sym_cmd_identifier_token27] = ACTIONS(3707), + [aux_sym_cmd_identifier_token28] = ACTIONS(3707), + [aux_sym_cmd_identifier_token29] = ACTIONS(3707), + [aux_sym_cmd_identifier_token30] = ACTIONS(3707), + [aux_sym_cmd_identifier_token31] = ACTIONS(3707), + [aux_sym_cmd_identifier_token32] = ACTIONS(3707), + [aux_sym_cmd_identifier_token33] = ACTIONS(3707), + [aux_sym_cmd_identifier_token34] = ACTIONS(3707), + [aux_sym_cmd_identifier_token35] = ACTIONS(3707), + [aux_sym_cmd_identifier_token36] = ACTIONS(3707), + [aux_sym_cmd_identifier_token37] = ACTIONS(3707), + [aux_sym_cmd_identifier_token38] = ACTIONS(3707), + [aux_sym_cmd_identifier_token39] = ACTIONS(3707), + [aux_sym_cmd_identifier_token40] = ACTIONS(3707), + [sym__space] = ACTIONS(3709), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3707), + [anon_sym_DOLLAR] = ACTIONS(3707), + [anon_sym_DASH2] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3707), + [anon_sym_DOT_DOT] = ACTIONS(3707), + [aux_sym_expr_unary_token1] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3707), + [anon_sym_true] = ACTIONS(3707), + [anon_sym_false] = ACTIONS(3707), + [aux_sym__val_number_decimal_token1] = ACTIONS(3707), + [aux_sym__val_number_decimal_token2] = ACTIONS(3707), + [aux_sym__val_number_decimal_token3] = ACTIONS(3707), + [aux_sym__val_number_decimal_token4] = ACTIONS(3707), + [aux_sym__val_number_token1] = ACTIONS(3707), + [aux_sym__val_number_token2] = ACTIONS(3707), + [aux_sym__val_number_token3] = ACTIONS(3707), + [aux_sym__val_number_token4] = ACTIONS(3707), + [aux_sym__val_number_token5] = ACTIONS(3707), + [aux_sym__val_number_token6] = ACTIONS(3707), + [anon_sym_0b] = ACTIONS(3707), + [anon_sym_0o] = ACTIONS(3707), + [anon_sym_0x] = ACTIONS(3707), + [sym_val_date] = ACTIONS(3707), + [anon_sym_DQUOTE] = ACTIONS(3707), + [sym__str_single_quotes] = ACTIONS(3707), + [sym__str_back_ticks] = ACTIONS(3707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3707), + [aux_sym_env_var_token1] = ACTIONS(3707), + [anon_sym_CARET] = ACTIONS(3707), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3709), }, [1201] = { - [sym__expr_parenthesized_immediate] = STATE(1706), - [sym__immediate_decimal] = STATE(1726), - [sym_val_variable] = STATE(1706), [sym_comment] = STATE(1201), - [ts_builtin_sym_end] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [anon_sym_null] = ACTIONS(1622), - [aux_sym_cmd_identifier_token38] = ACTIONS(1622), - [aux_sym_cmd_identifier_token39] = ACTIONS(1622), - [aux_sym_cmd_identifier_token40] = ACTIONS(1622), - [sym__newline] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_err_GT_PIPE] = ACTIONS(1622), - [anon_sym_out_GT_PIPE] = ACTIONS(1622), - [anon_sym_e_GT_PIPE] = ACTIONS(1622), - [anon_sym_o_GT_PIPE] = ACTIONS(1622), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1622), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1622), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1622), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(4171), - [anon_sym_DASH_DASH] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_LPAREN2] = ACTIONS(4173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1622), - [anon_sym_DOT_DOT_LT] = ACTIONS(1622), - [aux_sym__immediate_decimal_token1] = ACTIONS(4499), - [aux_sym__immediate_decimal_token3] = ACTIONS(4501), - [aux_sym__immediate_decimal_token4] = ACTIONS(4503), - [aux_sym__immediate_decimal_token5] = ACTIONS(4505), - [aux_sym__val_number_decimal_token1] = ACTIONS(1620), - [aux_sym__val_number_decimal_token2] = ACTIONS(1620), - [aux_sym__val_number_decimal_token3] = ACTIONS(1620), - [aux_sym__val_number_decimal_token4] = ACTIONS(1620), - [aux_sym__val_number_token1] = ACTIONS(1622), - [aux_sym__val_number_token2] = ACTIONS(1622), - [aux_sym__val_number_token3] = ACTIONS(1622), - [anon_sym_0b] = ACTIONS(1620), - [anon_sym_0o] = ACTIONS(1620), - [anon_sym_0x] = ACTIONS(1620), - [sym_val_date] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1622), - [sym__str_single_quotes] = ACTIONS(1622), - [sym__str_back_ticks] = ACTIONS(1622), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1622), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1622), - [anon_sym_err_GT] = ACTIONS(1620), - [anon_sym_out_GT] = ACTIONS(1620), - [anon_sym_e_GT] = ACTIONS(1620), - [anon_sym_o_GT] = ACTIONS(1620), - [anon_sym_err_PLUSout_GT] = ACTIONS(1620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1620), - [anon_sym_o_PLUSe_GT] = ACTIONS(1620), - [anon_sym_e_PLUSo_GT] = ACTIONS(1620), - [anon_sym_err_GT_GT] = ACTIONS(1622), - [anon_sym_out_GT_GT] = ACTIONS(1622), - [anon_sym_e_GT_GT] = ACTIONS(1622), - [anon_sym_o_GT_GT] = ACTIONS(1622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1622), - [aux_sym_unquoted_token1] = ACTIONS(1620), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(3711), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), }, [1202] = { - [sym_path] = STATE(1247), [sym_comment] = STATE(1202), - [aux_sym_cell_path_repeat1] = STATE(1193), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_PLUS_EQ] = ACTIONS(1029), - [anon_sym_DASH_EQ] = ACTIONS(1029), - [anon_sym_STAR_EQ] = ACTIONS(1029), - [anon_sym_SLASH_EQ] = ACTIONS(1029), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1029), - [sym__newline] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_err_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_GT_PIPE] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [aux_sym_expr_binary_token1] = ACTIONS(1029), - [aux_sym_expr_binary_token2] = ACTIONS(1029), - [aux_sym_expr_binary_token3] = ACTIONS(1029), - [aux_sym_expr_binary_token4] = ACTIONS(1029), - [aux_sym_expr_binary_token5] = ACTIONS(1029), - [aux_sym_expr_binary_token6] = ACTIONS(1029), - [aux_sym_expr_binary_token7] = ACTIONS(1029), - [aux_sym_expr_binary_token8] = ACTIONS(1029), - [aux_sym_expr_binary_token9] = ACTIONS(1029), - [aux_sym_expr_binary_token10] = ACTIONS(1029), - [aux_sym_expr_binary_token11] = ACTIONS(1029), - [aux_sym_expr_binary_token12] = ACTIONS(1029), - [aux_sym_expr_binary_token13] = ACTIONS(1029), - [aux_sym_expr_binary_token14] = ACTIONS(1029), - [aux_sym_expr_binary_token15] = ACTIONS(1029), - [aux_sym_expr_binary_token16] = ACTIONS(1029), - [aux_sym_expr_binary_token17] = ACTIONS(1029), - [aux_sym_expr_binary_token18] = ACTIONS(1029), - [aux_sym_expr_binary_token19] = ACTIONS(1029), - [aux_sym_expr_binary_token20] = ACTIONS(1029), - [aux_sym_expr_binary_token21] = ACTIONS(1029), - [aux_sym_expr_binary_token22] = ACTIONS(1029), - [aux_sym_expr_binary_token23] = ACTIONS(1029), - [aux_sym_expr_binary_token24] = ACTIONS(1029), - [aux_sym_expr_binary_token25] = ACTIONS(1029), - [aux_sym_expr_binary_token26] = ACTIONS(1029), - [aux_sym_expr_binary_token27] = ACTIONS(1029), - [aux_sym_expr_binary_token28] = ACTIONS(1029), - [anon_sym_DOT_DOT2] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(4143), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), - [anon_sym_err_GT] = ACTIONS(1027), - [anon_sym_out_GT] = ACTIONS(1027), - [anon_sym_e_GT] = ACTIONS(1027), - [anon_sym_o_GT] = ACTIONS(1027), - [anon_sym_err_PLUSout_GT] = ACTIONS(1027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), - [anon_sym_o_PLUSe_GT] = ACTIONS(1027), - [anon_sym_e_PLUSo_GT] = ACTIONS(1027), - [anon_sym_err_GT_GT] = ACTIONS(1029), - [anon_sym_out_GT_GT] = ACTIONS(1029), - [anon_sym_e_GT_GT] = ACTIONS(1029), - [anon_sym_o_GT_GT] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(3713), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3715), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1203] = { - [sym_path] = STATE(1288), [sym_comment] = STATE(1203), - [aux_sym_cell_path_repeat1] = STATE(1203), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [aux_sym_cmd_identifier_token38] = ACTIONS(1033), - [aux_sym_cmd_identifier_token39] = ACTIONS(1033), - [aux_sym_cmd_identifier_token40] = ACTIONS(1033), - [sym__newline] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_err_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_GT_PIPE] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT_DOT] = ACTIONS(1031), - [anon_sym_DOT_DOT2] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(4578), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), - [anon_sym_DOT_DOT_LT] = ACTIONS(1031), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1031), - [aux_sym__val_number_decimal_token2] = ACTIONS(1033), - [aux_sym__val_number_decimal_token3] = ACTIONS(1033), - [aux_sym__val_number_decimal_token4] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1031), - [anon_sym_0o] = ACTIONS(1031), - [anon_sym_0x] = ACTIONS(1031), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_err_GT] = ACTIONS(1031), - [anon_sym_out_GT] = ACTIONS(1031), - [anon_sym_e_GT] = ACTIONS(1031), - [anon_sym_o_GT] = ACTIONS(1031), - [anon_sym_err_PLUSout_GT] = ACTIONS(1031), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), - [anon_sym_o_PLUSe_GT] = ACTIONS(1031), - [anon_sym_e_PLUSo_GT] = ACTIONS(1031), - [anon_sym_err_GT_GT] = ACTIONS(1033), - [anon_sym_out_GT_GT] = ACTIONS(1033), - [anon_sym_e_GT_GT] = ACTIONS(1033), - [anon_sym_o_GT_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), - [aux_sym_unquoted_token1] = ACTIONS(1031), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1033), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3565), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1204] = { [sym_comment] = STATE(1204), - [anon_sym_EQ] = ACTIONS(1062), - [anon_sym_PLUS_EQ] = ACTIONS(1064), - [anon_sym_DASH_EQ] = ACTIONS(1064), - [anon_sym_STAR_EQ] = ACTIONS(1064), - [anon_sym_SLASH_EQ] = ACTIONS(1064), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1064), - [sym__newline] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_err_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_GT_PIPE] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), - [anon_sym_RPAREN] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_QMARK2] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1064), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1064), - [anon_sym_DOT_DOT2] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), - [anon_sym_err_GT] = ACTIONS(1062), - [anon_sym_out_GT] = ACTIONS(1062), - [anon_sym_e_GT] = ACTIONS(1062), - [anon_sym_o_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT] = ACTIONS(1062), - [anon_sym_err_GT_GT] = ACTIONS(1064), - [anon_sym_out_GT_GT] = ACTIONS(1064), - [anon_sym_e_GT_GT] = ACTIONS(1064), - [anon_sym_o_GT_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3653), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1205] = { [sym_comment] = STATE(1205), - [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(249), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(3717), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), }, [1206] = { - [sym__match_pattern] = STATE(7565), - [sym__match_pattern_expression] = STATE(6925), - [sym__match_pattern_value] = STATE(6926), - [sym__match_pattern_list] = STATE(6929), - [sym__match_pattern_record] = STATE(6939), - [sym_expr_parenthesized] = STATE(5899), - [sym_val_range] = STATE(6926), - [sym__val_range] = STATE(7794), - [sym_val_nothing] = STATE(6967), - [sym_val_bool] = STATE(6772), - [sym_val_variable] = STATE(5900), - [sym_val_number] = STATE(6967), - [sym__val_number_decimal] = STATE(5594), - [sym__val_number] = STATE(2078), - [sym_val_duration] = STATE(6967), - [sym_val_filesize] = STATE(6967), - [sym_val_binary] = STATE(6967), - [sym_val_string] = STATE(6967), - [sym__raw_str] = STATE(1820), - [sym__str_double_quotes] = STATE(1820), - [sym_val_table] = STATE(6967), - [sym_unquoted] = STATE(7021), - [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1206), - [anon_sym_true] = ACTIONS(3424), - [anon_sym_false] = ACTIONS(3424), - [anon_sym_null] = ACTIONS(3426), - [aux_sym_cmd_identifier_token38] = ACTIONS(4581), - [aux_sym_cmd_identifier_token39] = ACTIONS(4581), - [aux_sym_cmd_identifier_token40] = ACTIONS(4581), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_DOT_DOT] = ACTIONS(4583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4585), - [anon_sym_DOT_DOT_LT] = ACTIONS(4585), - [aux_sym__val_number_decimal_token1] = ACTIONS(3430), - [aux_sym__val_number_decimal_token2] = ACTIONS(3432), - [aux_sym__val_number_decimal_token3] = ACTIONS(3434), - [aux_sym__val_number_decimal_token4] = ACTIONS(3436), - [aux_sym__val_number_token1] = ACTIONS(511), - [aux_sym__val_number_token2] = ACTIONS(511), - [aux_sym__val_number_token3] = ACTIONS(511), - [anon_sym_0b] = ACTIONS(513), - [anon_sym_0o] = ACTIONS(515), - [anon_sym_0x] = ACTIONS(515), - [sym_val_date] = ACTIONS(4587), - [anon_sym_DQUOTE] = ACTIONS(519), - [sym__str_single_quotes] = ACTIONS(521), - [sym__str_back_ticks] = ACTIONS(521), - [anon_sym_err_GT] = ACTIONS(2685), - [anon_sym_out_GT] = ACTIONS(2685), - [anon_sym_e_GT] = ACTIONS(2685), - [anon_sym_o_GT] = ACTIONS(2685), - [anon_sym_err_PLUSout_GT] = ACTIONS(2685), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), - [anon_sym_o_PLUSe_GT] = ACTIONS(2685), - [anon_sym_e_PLUSo_GT] = ACTIONS(2685), - [anon_sym_err_GT_GT] = ACTIONS(2687), - [anon_sym_out_GT_GT] = ACTIONS(2687), - [anon_sym_e_GT_GT] = ACTIONS(2687), - [anon_sym_o_GT_GT] = ACTIONS(2687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), - [aux_sym_unquoted_token1] = ACTIONS(3846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(529), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3715), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1207] = { [sym_comment] = STATE(1207), - [anon_sym_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1068), - [anon_sym_DASH_EQ] = ACTIONS(1068), - [anon_sym_STAR_EQ] = ACTIONS(1068), - [anon_sym_SLASH_EQ] = ACTIONS(1068), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1068), - [sym__newline] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_err_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_GT_PIPE] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [aux_sym_expr_binary_token1] = ACTIONS(1068), - [aux_sym_expr_binary_token2] = ACTIONS(1068), - [aux_sym_expr_binary_token3] = ACTIONS(1068), - [aux_sym_expr_binary_token4] = ACTIONS(1068), - [aux_sym_expr_binary_token5] = ACTIONS(1068), - [aux_sym_expr_binary_token6] = ACTIONS(1068), - [aux_sym_expr_binary_token7] = ACTIONS(1068), - [aux_sym_expr_binary_token8] = ACTIONS(1068), - [aux_sym_expr_binary_token9] = ACTIONS(1068), - [aux_sym_expr_binary_token10] = ACTIONS(1068), - [aux_sym_expr_binary_token11] = ACTIONS(1068), - [aux_sym_expr_binary_token12] = ACTIONS(1068), - [aux_sym_expr_binary_token13] = ACTIONS(1068), - [aux_sym_expr_binary_token14] = ACTIONS(1068), - [aux_sym_expr_binary_token15] = ACTIONS(1068), - [aux_sym_expr_binary_token16] = ACTIONS(1068), - [aux_sym_expr_binary_token17] = ACTIONS(1068), - [aux_sym_expr_binary_token18] = ACTIONS(1068), - [aux_sym_expr_binary_token19] = ACTIONS(1068), - [aux_sym_expr_binary_token20] = ACTIONS(1068), - [aux_sym_expr_binary_token21] = ACTIONS(1068), - [aux_sym_expr_binary_token22] = ACTIONS(1068), - [aux_sym_expr_binary_token23] = ACTIONS(1068), - [aux_sym_expr_binary_token24] = ACTIONS(1068), - [aux_sym_expr_binary_token25] = ACTIONS(1068), - [aux_sym_expr_binary_token26] = ACTIONS(1068), - [aux_sym_expr_binary_token27] = ACTIONS(1068), - [aux_sym_expr_binary_token28] = ACTIONS(1068), - [anon_sym_DOT_DOT2] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), - [aux_sym_record_entry_token1] = ACTIONS(1068), - [anon_sym_err_GT] = ACTIONS(1066), - [anon_sym_out_GT] = ACTIONS(1066), - [anon_sym_e_GT] = ACTIONS(1066), - [anon_sym_o_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT] = ACTIONS(1066), - [anon_sym_err_GT_GT] = ACTIONS(1068), - [anon_sym_out_GT_GT] = ACTIONS(1068), - [anon_sym_e_GT_GT] = ACTIONS(1068), - [anon_sym_o_GT_GT] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(3063), + [anon_sym_PLUS_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_mod] = ACTIONS(3063), + [anon_sym_SLASH_SLASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_bit_DASHshl] = ACTIONS(3063), + [anon_sym_bit_DASHshr] = ACTIONS(3063), + [anon_sym_EQ_TILDE] = ACTIONS(3063), + [anon_sym_BANG_TILDE] = ACTIONS(3063), + [anon_sym_bit_DASHand] = ACTIONS(3063), + [anon_sym_bit_DASHxor] = ACTIONS(3063), + [anon_sym_bit_DASHor] = ACTIONS(3063), + [anon_sym_and] = ACTIONS(3063), + [anon_sym_xor] = ACTIONS(3063), + [anon_sym_or] = ACTIONS(3063), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_not_DASHin] = ACTIONS(3063), + [anon_sym_starts_DASHwith] = ACTIONS(3063), + [anon_sym_ends_DASHwith] = ACTIONS(3063), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3063), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3063), + [aux_sym_cmd_identifier_token41] = ACTIONS(3067), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), + [sym_filesize_unit] = ACTIONS(3719), + [sym_duration_unit] = ACTIONS(3721), + [anon_sym_POUND] = ACTIONS(3), }, [1208] = { - [sym_path] = STATE(1288), + [sym_expr_parenthesized] = STATE(6210), + [sym_val_range] = STATE(7537), + [sym__val_range] = STATE(7626), + [sym__val_range_with_end] = STATE(7469), + [sym__value] = STATE(7537), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6741), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5343), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7097), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_record] = STATE(6745), + [sym__unquoted_in_record_with_expr] = STATE(7537), + [sym__unquoted_anonymous_prefix] = STATE(7182), [sym_comment] = STATE(1208), - [aux_sym_cell_path_repeat1] = STATE(1203), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1029), - [aux_sym_cmd_identifier_token38] = ACTIONS(1029), - [aux_sym_cmd_identifier_token39] = ACTIONS(1029), - [aux_sym_cmd_identifier_token40] = ACTIONS(1029), - [sym__newline] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_err_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_GT_PIPE] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT2] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(4461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), - [anon_sym_DOT_DOT_LT] = ACTIONS(1027), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), - [aux_sym__val_number_decimal_token1] = ACTIONS(1027), - [aux_sym__val_number_decimal_token2] = ACTIONS(1029), - [aux_sym__val_number_decimal_token3] = ACTIONS(1029), - [aux_sym__val_number_decimal_token4] = ACTIONS(1029), - [aux_sym__val_number_token1] = ACTIONS(1029), - [aux_sym__val_number_token2] = ACTIONS(1029), - [aux_sym__val_number_token3] = ACTIONS(1029), - [anon_sym_0b] = ACTIONS(1027), - [anon_sym_0o] = ACTIONS(1027), - [anon_sym_0x] = ACTIONS(1027), - [sym_val_date] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), - [anon_sym_err_GT] = ACTIONS(1027), - [anon_sym_out_GT] = ACTIONS(1027), - [anon_sym_e_GT] = ACTIONS(1027), - [anon_sym_o_GT] = ACTIONS(1027), - [anon_sym_err_PLUSout_GT] = ACTIONS(1027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), - [anon_sym_o_PLUSe_GT] = ACTIONS(1027), - [anon_sym_e_PLUSo_GT] = ACTIONS(1027), - [anon_sym_err_GT_GT] = ACTIONS(1029), - [anon_sym_out_GT_GT] = ACTIONS(1029), - [anon_sym_e_GT_GT] = ACTIONS(1029), - [anon_sym_o_GT_GT] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), - [aux_sym_unquoted_token1] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3725), + [anon_sym_DOT_DOT_LT] = ACTIONS(3725), + [anon_sym_null] = ACTIONS(3727), + [anon_sym_true] = ACTIONS(3729), + [anon_sym_false] = ACTIONS(3729), + [aux_sym__val_number_decimal_token1] = ACTIONS(3731), + [aux_sym__val_number_decimal_token2] = ACTIONS(3733), + [aux_sym__val_number_decimal_token3] = ACTIONS(3735), + [aux_sym__val_number_decimal_token4] = ACTIONS(3737), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3739), + [aux_sym__val_number_token5] = ACTIONS(3739), + [aux_sym__val_number_token6] = ACTIONS(3739), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_err_GT] = ACTIONS(3743), + [anon_sym_out_GT] = ACTIONS(3743), + [anon_sym_e_GT] = ACTIONS(3743), + [anon_sym_o_GT] = ACTIONS(3743), + [anon_sym_err_PLUSout_GT] = ACTIONS(3743), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3743), + [anon_sym_o_PLUSe_GT] = ACTIONS(3743), + [anon_sym_e_PLUSo_GT] = ACTIONS(3743), + [anon_sym_err_GT_GT] = ACTIONS(3745), + [anon_sym_out_GT_GT] = ACTIONS(3745), + [anon_sym_e_GT_GT] = ACTIONS(3745), + [anon_sym_o_GT_GT] = ACTIONS(3745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3745), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3747), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, [1209] = { [sym_comment] = STATE(1209), - [ts_builtin_sym_end] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_LPAREN2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), - [anon_sym_DOT_DOT_LT] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1210] = { [sym_comment] = STATE(1210), - [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), - [anon_sym_QMARK2] = 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(249), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_bit_DASHshl] = ACTIONS(1765), + [anon_sym_bit_DASHshr] = ACTIONS(1765), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_BANG_TILDE] = ACTIONS(1765), + [anon_sym_bit_DASHand] = ACTIONS(1765), + [anon_sym_bit_DASHxor] = ACTIONS(1765), + [anon_sym_bit_DASHor] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_xor] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not_DASHin] = ACTIONS(1765), + [anon_sym_starts_DASHwith] = ACTIONS(1765), + [anon_sym_ends_DASHwith] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1765), + [aux_sym_cmd_identifier_token41] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(3), }, [1211] = { - [sym_cell_path] = STATE(1407), - [sym_path] = STATE(1369), [sym_comment] = STATE(1211), - [aux_sym_cell_path_repeat1] = STATE(1274), - [ts_builtin_sym_end] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [aux_sym_cmd_identifier_token38] = ACTIONS(1672), - [aux_sym_cmd_identifier_token39] = ACTIONS(1672), - [aux_sym_cmd_identifier_token40] = ACTIONS(1672), - [sym__newline] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_err_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_GT_PIPE] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_DOT_DOT] = ACTIONS(1670), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), - [anon_sym_DOT_DOT_LT] = ACTIONS(1670), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [aux_sym__val_number_decimal_token1] = ACTIONS(1670), - [aux_sym__val_number_decimal_token2] = ACTIONS(1672), - [aux_sym__val_number_decimal_token3] = ACTIONS(1672), - [aux_sym__val_number_decimal_token4] = ACTIONS(1672), - [aux_sym__val_number_token1] = ACTIONS(1672), - [aux_sym__val_number_token2] = ACTIONS(1672), - [aux_sym__val_number_token3] = ACTIONS(1672), - [anon_sym_0b] = ACTIONS(1670), - [anon_sym_0o] = ACTIONS(1670), - [anon_sym_0x] = ACTIONS(1670), - [sym_val_date] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [sym__str_single_quotes] = ACTIONS(1672), - [sym__str_back_ticks] = ACTIONS(1672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1672), - [anon_sym_err_GT] = ACTIONS(1670), - [anon_sym_out_GT] = ACTIONS(1670), - [anon_sym_e_GT] = ACTIONS(1670), - [anon_sym_o_GT] = ACTIONS(1670), - [anon_sym_err_PLUSout_GT] = ACTIONS(1670), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), - [anon_sym_o_PLUSe_GT] = ACTIONS(1670), - [anon_sym_e_PLUSo_GT] = ACTIONS(1670), - [anon_sym_err_GT_GT] = ACTIONS(1672), - [anon_sym_out_GT_GT] = ACTIONS(1672), - [anon_sym_e_GT_GT] = ACTIONS(1672), - [anon_sym_o_GT_GT] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), - [aux_sym_unquoted_token1] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1672), + [anon_sym_STAR_STAR] = ACTIONS(3063), + [anon_sym_PLUS_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_mod] = ACTIONS(3063), + [anon_sym_SLASH_SLASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_bit_DASHshl] = ACTIONS(3063), + [anon_sym_bit_DASHshr] = ACTIONS(3063), + [anon_sym_EQ_TILDE] = ACTIONS(3063), + [anon_sym_BANG_TILDE] = ACTIONS(3063), + [anon_sym_bit_DASHand] = ACTIONS(3063), + [anon_sym_bit_DASHxor] = ACTIONS(3063), + [anon_sym_bit_DASHor] = ACTIONS(3063), + [anon_sym_and] = ACTIONS(3063), + [anon_sym_xor] = ACTIONS(3063), + [anon_sym_or] = ACTIONS(3063), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_not_DASHin] = ACTIONS(3063), + [anon_sym_starts_DASHwith] = ACTIONS(3063), + [anon_sym_ends_DASHwith] = ACTIONS(3063), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3063), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3063), + [aux_sym_cmd_identifier_token41] = ACTIONS(3067), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), + [sym_filesize_unit] = ACTIONS(3749), + [sym_duration_unit] = ACTIONS(3751), + [anon_sym_POUND] = ACTIONS(3), }, [1212] = { [sym_comment] = STATE(1212), - [ts_builtin_sym_end] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1598), - [aux_sym_cmd_identifier_token38] = ACTIONS(1598), - [aux_sym_cmd_identifier_token39] = ACTIONS(1598), - [aux_sym_cmd_identifier_token40] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), - [anon_sym_DOT_DOT_LT] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token3] = ACTIONS(1598), - [aux_sym__val_number_decimal_token4] = ACTIONS(1598), - [aux_sym__val_number_token1] = ACTIONS(1598), - [aux_sym__val_number_token2] = ACTIONS(1598), - [aux_sym__val_number_token3] = ACTIONS(1598), - [anon_sym_0b] = ACTIONS(1596), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [sym__str_single_quotes] = ACTIONS(1598), - [sym__str_back_ticks] = ACTIONS(1598), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token1] = ACTIONS(1596), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1598), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_RPAREN] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [1213] = { [sym_comment] = STATE(1213), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [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_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(4591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [aux_sym_unquoted_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(3753), + [aux_sym__immediate_decimal_token2] = ACTIONS(3755), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [1214] = { [sym_comment] = STATE(1214), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), - [anon_sym_DOT_DOT_LT] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(3757), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3759), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1215] = { [sym_comment] = STATE(1215), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [anon_sym_null] = ACTIONS(1530), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1530), - [aux_sym_cmd_identifier_token40] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [anon_sym_0b] = ACTIONS(1528), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1530), + [ts_builtin_sym_end] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), }, [1216] = { [sym_comment] = STATE(1216), - [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(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_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(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), - [aux_sym_record_entry_token1] = 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), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), }, [1217] = { [sym_comment] = STATE(1217), - [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(4593), - [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(249), + [ts_builtin_sym_end] = ACTIONS(1623), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [1218] = { [sym_comment] = STATE(1218), - [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(4595), - [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(249), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_bit_DASHshl] = ACTIONS(1765), + [anon_sym_bit_DASHshr] = ACTIONS(1765), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_BANG_TILDE] = ACTIONS(1765), + [anon_sym_bit_DASHand] = ACTIONS(1765), + [anon_sym_bit_DASHxor] = ACTIONS(1765), + [anon_sym_bit_DASHor] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_xor] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not_DASHin] = ACTIONS(1765), + [anon_sym_starts_DASHwith] = ACTIONS(1765), + [anon_sym_ends_DASHwith] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1765), + [aux_sym_cmd_identifier_token41] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(3), }, [1219] = { + [sym_expr_parenthesized] = STATE(550), + [sym_val_range] = STATE(740), + [sym__val_range] = STATE(7578), + [sym__val_range_with_end] = STATE(7427), + [sym__value] = STATE(740), + [sym_val_nothing] = STATE(758), + [sym_val_bool] = STATE(565), + [sym_val_variable] = STATE(531), + [sym_val_number] = STATE(758), + [sym__val_number_decimal] = STATE(363), + [sym__val_number] = STATE(753), + [sym_val_duration] = STATE(758), + [sym_val_filesize] = STATE(758), + [sym_val_binary] = STATE(758), + [sym_val_string] = STATE(758), + [sym__raw_str] = STATE(765), + [sym__str_double_quotes] = STATE(765), + [sym_val_interpolated] = STATE(758), + [sym__inter_single_quotes] = STATE(709), + [sym__inter_double_quotes] = STATE(710), + [sym_val_list] = STATE(758), + [sym_val_record] = STATE(758), + [sym_val_table] = STATE(758), + [sym_val_closure] = STATE(758), + [sym__unquoted_in_record] = STATE(593), + [sym__unquoted_in_record_with_expr] = STATE(740), + [sym__unquoted_anonymous_prefix] = STATE(7131), [sym_comment] = STATE(1219), - [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), - [anon_sym_QMARK2] = 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] = 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(249), + [anon_sym_LBRACK] = ACTIONS(3761), + [anon_sym_LPAREN] = ACTIONS(3763), + [anon_sym_DOLLAR] = ACTIONS(3765), + [anon_sym_LBRACE] = ACTIONS(3767), + [anon_sym_DOT_DOT] = ACTIONS(3769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3771), + [anon_sym_DOT_DOT_LT] = ACTIONS(3771), + [anon_sym_null] = ACTIONS(3773), + [anon_sym_true] = ACTIONS(3775), + [anon_sym_false] = ACTIONS(3775), + [aux_sym__val_number_decimal_token1] = ACTIONS(3777), + [aux_sym__val_number_decimal_token2] = ACTIONS(3779), + [aux_sym__val_number_decimal_token3] = ACTIONS(3781), + [aux_sym__val_number_decimal_token4] = ACTIONS(3783), + [aux_sym__val_number_token1] = ACTIONS(3785), + [aux_sym__val_number_token2] = ACTIONS(3785), + [aux_sym__val_number_token3] = ACTIONS(3785), + [aux_sym__val_number_token4] = ACTIONS(3787), + [aux_sym__val_number_token5] = ACTIONS(3787), + [aux_sym__val_number_token6] = ACTIONS(3787), + [anon_sym_0b] = ACTIONS(3789), + [anon_sym_0o] = ACTIONS(3791), + [anon_sym_0x] = ACTIONS(3791), + [sym_val_date] = ACTIONS(3793), + [anon_sym_DQUOTE] = ACTIONS(3795), + [sym__str_single_quotes] = ACTIONS(3797), + [sym__str_back_ticks] = ACTIONS(3797), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3801), + [anon_sym_err_GT] = ACTIONS(3743), + [anon_sym_out_GT] = ACTIONS(3743), + [anon_sym_e_GT] = ACTIONS(3743), + [anon_sym_o_GT] = ACTIONS(3743), + [anon_sym_err_PLUSout_GT] = ACTIONS(3743), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3743), + [anon_sym_o_PLUSe_GT] = ACTIONS(3743), + [anon_sym_e_PLUSo_GT] = ACTIONS(3743), + [anon_sym_err_GT_GT] = ACTIONS(3745), + [anon_sym_out_GT_GT] = ACTIONS(3745), + [anon_sym_e_GT_GT] = ACTIONS(3745), + [anon_sym_o_GT_GT] = ACTIONS(3745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3745), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3803), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3805), }, [1220] = { [sym_comment] = STATE(1220), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1713), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1713), + [ts_builtin_sym_end] = ACTIONS(1721), + [anon_sym_STAR_STAR] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_SLASH] = ACTIONS(3051), + [anon_sym_mod] = ACTIONS(3049), + [anon_sym_SLASH_SLASH] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3051), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_bit_DASHshl] = ACTIONS(3049), + [anon_sym_bit_DASHshr] = ACTIONS(3049), + [anon_sym_EQ_TILDE] = ACTIONS(3049), + [anon_sym_BANG_TILDE] = ACTIONS(3049), + [anon_sym_bit_DASHand] = ACTIONS(3049), + [anon_sym_bit_DASHxor] = ACTIONS(3049), + [anon_sym_bit_DASHor] = ACTIONS(3049), + [anon_sym_and] = ACTIONS(3049), + [anon_sym_xor] = ACTIONS(3049), + [anon_sym_or] = ACTIONS(3049), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_not_DASHin] = ACTIONS(3049), + [anon_sym_starts_DASHwith] = ACTIONS(3049), + [anon_sym_ends_DASHwith] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_LT_EQ] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_EQ] = ACTIONS(3049), + [aux_sym_cmd_identifier_token41] = ACTIONS(3053), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(3055), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3057), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3057), + [sym_filesize_unit] = ACTIONS(3807), + [sym_duration_unit] = ACTIONS(3809), + [anon_sym_POUND] = ACTIONS(3), }, [1221] = { + [sym_expr_parenthesized] = STATE(551), + [sym_val_range] = STATE(743), + [sym__val_range] = STATE(7578), + [sym__val_range_with_end] = STATE(7427), + [sym__value] = STATE(743), + [sym_val_nothing] = STATE(758), + [sym_val_bool] = STATE(565), + [sym_val_variable] = STATE(531), + [sym_val_number] = STATE(758), + [sym__val_number_decimal] = STATE(363), + [sym__val_number] = STATE(753), + [sym_val_duration] = STATE(758), + [sym_val_filesize] = STATE(758), + [sym_val_binary] = STATE(758), + [sym_val_string] = STATE(758), + [sym__raw_str] = STATE(765), + [sym__str_double_quotes] = STATE(765), + [sym_val_interpolated] = STATE(758), + [sym__inter_single_quotes] = STATE(709), + [sym__inter_double_quotes] = STATE(710), + [sym_val_list] = STATE(758), + [sym_val_record] = STATE(758), + [sym_val_table] = STATE(758), + [sym_val_closure] = STATE(758), + [sym__unquoted_in_record] = STATE(595), + [sym__unquoted_in_record_with_expr] = STATE(743), + [sym__unquoted_anonymous_prefix] = STATE(7131), [sym_comment] = STATE(1221), - [ts_builtin_sym_end] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1598), - [aux_sym_cmd_identifier_token38] = ACTIONS(1598), - [aux_sym_cmd_identifier_token39] = ACTIONS(1598), - [aux_sym_cmd_identifier_token40] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), - [anon_sym_DOT_DOT_LT] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(4597), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token3] = ACTIONS(1598), - [aux_sym__val_number_decimal_token4] = ACTIONS(1598), - [aux_sym__val_number_token1] = ACTIONS(1598), - [aux_sym__val_number_token2] = ACTIONS(1598), - [aux_sym__val_number_token3] = ACTIONS(1598), - [anon_sym_0b] = ACTIONS(1596), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [sym__str_single_quotes] = ACTIONS(1598), - [sym__str_back_ticks] = ACTIONS(1598), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token1] = ACTIONS(1596), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(3761), + [anon_sym_LPAREN] = ACTIONS(3763), + [anon_sym_DOLLAR] = ACTIONS(3765), + [anon_sym_LBRACE] = ACTIONS(3767), + [anon_sym_DOT_DOT] = ACTIONS(3769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3771), + [anon_sym_DOT_DOT_LT] = ACTIONS(3771), + [anon_sym_null] = ACTIONS(3773), + [anon_sym_true] = ACTIONS(3775), + [anon_sym_false] = ACTIONS(3775), + [aux_sym__val_number_decimal_token1] = ACTIONS(3777), + [aux_sym__val_number_decimal_token2] = ACTIONS(3779), + [aux_sym__val_number_decimal_token3] = ACTIONS(3781), + [aux_sym__val_number_decimal_token4] = ACTIONS(3783), + [aux_sym__val_number_token1] = ACTIONS(3785), + [aux_sym__val_number_token2] = ACTIONS(3785), + [aux_sym__val_number_token3] = ACTIONS(3785), + [aux_sym__val_number_token4] = ACTIONS(3787), + [aux_sym__val_number_token5] = ACTIONS(3787), + [aux_sym__val_number_token6] = ACTIONS(3787), + [anon_sym_0b] = ACTIONS(3789), + [anon_sym_0o] = ACTIONS(3791), + [anon_sym_0x] = ACTIONS(3791), + [sym_val_date] = ACTIONS(3793), + [anon_sym_DQUOTE] = ACTIONS(3795), + [sym__str_single_quotes] = ACTIONS(3797), + [sym__str_back_ticks] = ACTIONS(3797), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3801), + [anon_sym_err_GT] = ACTIONS(3743), + [anon_sym_out_GT] = ACTIONS(3743), + [anon_sym_e_GT] = ACTIONS(3743), + [anon_sym_o_GT] = ACTIONS(3743), + [anon_sym_err_PLUSout_GT] = ACTIONS(3743), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3743), + [anon_sym_o_PLUSe_GT] = ACTIONS(3743), + [anon_sym_e_PLUSo_GT] = ACTIONS(3743), + [anon_sym_err_GT_GT] = ACTIONS(3745), + [anon_sym_out_GT_GT] = ACTIONS(3745), + [anon_sym_e_GT_GT] = ACTIONS(3745), + [anon_sym_o_GT_GT] = ACTIONS(3745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3745), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3803), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3805), }, [1222] = { [sym_comment] = STATE(1222), - [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(4599), - [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(249), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), }, [1223] = { - [sym_cell_path] = STATE(1416), - [sym_path] = STATE(1369), + [sym_expr_parenthesized] = STATE(6150), + [sym_val_range] = STATE(7461), + [sym__val_range] = STATE(7626), + [sym__val_range_with_end] = STATE(7469), + [sym__value] = STATE(7461), + [sym_val_nothing] = STATE(7097), + [sym_val_bool] = STATE(6741), + [sym_val_variable] = STATE(5989), + [sym_val_number] = STATE(7097), + [sym__val_number_decimal] = STATE(5343), + [sym__val_number] = STATE(7130), + [sym_val_duration] = STATE(7097), + [sym_val_filesize] = STATE(7097), + [sym_val_binary] = STATE(7097), + [sym_val_string] = STATE(7097), + [sym__raw_str] = STATE(5497), + [sym__str_double_quotes] = STATE(5497), + [sym_val_interpolated] = STATE(7097), + [sym__inter_single_quotes] = STATE(7020), + [sym__inter_double_quotes] = STATE(7027), + [sym_val_list] = STATE(7097), + [sym_val_record] = STATE(7097), + [sym_val_table] = STATE(7097), + [sym_val_closure] = STATE(7097), + [sym__unquoted_in_record] = STATE(6667), + [sym__unquoted_in_record_with_expr] = STATE(7461), + [sym__unquoted_anonymous_prefix] = STATE(7182), [sym_comment] = STATE(1223), - [aux_sym_cell_path_repeat1] = STATE(1274), - [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), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT2] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(4589), - [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(249), - [sym_raw_string_begin] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3725), + [anon_sym_DOT_DOT_LT] = ACTIONS(3725), + [anon_sym_null] = ACTIONS(3727), + [anon_sym_true] = ACTIONS(3729), + [anon_sym_false] = ACTIONS(3729), + [aux_sym__val_number_decimal_token1] = ACTIONS(3731), + [aux_sym__val_number_decimal_token2] = ACTIONS(3733), + [aux_sym__val_number_decimal_token3] = ACTIONS(3735), + [aux_sym__val_number_decimal_token4] = ACTIONS(3737), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3739), + [aux_sym__val_number_token5] = ACTIONS(3739), + [aux_sym__val_number_token6] = ACTIONS(3739), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), + [anon_sym_err_GT] = ACTIONS(3743), + [anon_sym_out_GT] = ACTIONS(3743), + [anon_sym_e_GT] = ACTIONS(3743), + [anon_sym_o_GT] = ACTIONS(3743), + [anon_sym_err_PLUSout_GT] = ACTIONS(3743), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3743), + [anon_sym_o_PLUSe_GT] = ACTIONS(3743), + [anon_sym_e_PLUSo_GT] = ACTIONS(3743), + [anon_sym_err_GT_GT] = ACTIONS(3745), + [anon_sym_out_GT_GT] = ACTIONS(3745), + [anon_sym_e_GT_GT] = ACTIONS(3745), + [anon_sym_o_GT_GT] = ACTIONS(3745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3745), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3747), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, [1224] = { - [sym_path] = STATE(1299), + [sym_expr_parenthesized] = STATE(501), + [sym_val_range] = STATE(670), + [sym__val_range] = STATE(7571), + [sym__val_range_with_end] = STATE(7484), + [sym__value] = STATE(670), + [sym_val_nothing] = STATE(631), + [sym_val_bool] = STATE(526), + [sym_val_variable] = STATE(455), + [sym_val_number] = STATE(631), + [sym__val_number_decimal] = STATE(347), + [sym__val_number] = STATE(621), + [sym_val_duration] = STATE(631), + [sym_val_filesize] = STATE(631), + [sym_val_binary] = STATE(631), + [sym_val_string] = STATE(631), + [sym__raw_str] = STATE(678), + [sym__str_double_quotes] = STATE(678), + [sym_val_interpolated] = STATE(631), + [sym__inter_single_quotes] = STATE(625), + [sym__inter_double_quotes] = STATE(612), + [sym_val_list] = STATE(631), + [sym_val_record] = STATE(631), + [sym_val_table] = STATE(631), + [sym_val_closure] = STATE(631), + [sym__unquoted_in_record] = STATE(554), + [sym__unquoted_in_record_with_expr] = STATE(670), + [sym__unquoted_anonymous_prefix] = STATE(6771), [sym_comment] = STATE(1224), - [aux_sym_cell_path_repeat1] = STATE(1224), - [ts_builtin_sym_end] = ACTIONS(1033), - [anon_sym_EQ] = ACTIONS(1031), - [anon_sym_PLUS_EQ] = ACTIONS(1033), - [anon_sym_DASH_EQ] = ACTIONS(1033), - [anon_sym_STAR_EQ] = ACTIONS(1033), - [anon_sym_SLASH_EQ] = ACTIONS(1033), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1033), - [sym__newline] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_err_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_GT_PIPE] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), - [aux_sym_expr_binary_token1] = ACTIONS(1033), - [aux_sym_expr_binary_token2] = ACTIONS(1033), - [aux_sym_expr_binary_token3] = ACTIONS(1033), - [aux_sym_expr_binary_token4] = ACTIONS(1033), - [aux_sym_expr_binary_token5] = ACTIONS(1033), - [aux_sym_expr_binary_token6] = ACTIONS(1033), - [aux_sym_expr_binary_token7] = ACTIONS(1033), - [aux_sym_expr_binary_token8] = ACTIONS(1033), - [aux_sym_expr_binary_token9] = ACTIONS(1033), - [aux_sym_expr_binary_token10] = ACTIONS(1033), - [aux_sym_expr_binary_token11] = ACTIONS(1033), - [aux_sym_expr_binary_token12] = ACTIONS(1033), - [aux_sym_expr_binary_token13] = ACTIONS(1033), - [aux_sym_expr_binary_token14] = ACTIONS(1033), - [aux_sym_expr_binary_token15] = ACTIONS(1033), - [aux_sym_expr_binary_token16] = ACTIONS(1033), - [aux_sym_expr_binary_token17] = ACTIONS(1033), - [aux_sym_expr_binary_token18] = ACTIONS(1033), - [aux_sym_expr_binary_token19] = ACTIONS(1033), - [aux_sym_expr_binary_token20] = ACTIONS(1033), - [aux_sym_expr_binary_token21] = ACTIONS(1033), - [aux_sym_expr_binary_token22] = ACTIONS(1033), - [aux_sym_expr_binary_token23] = ACTIONS(1033), - [aux_sym_expr_binary_token24] = ACTIONS(1033), - [aux_sym_expr_binary_token25] = ACTIONS(1033), - [aux_sym_expr_binary_token26] = ACTIONS(1033), - [aux_sym_expr_binary_token27] = ACTIONS(1033), - [aux_sym_expr_binary_token28] = ACTIONS(1033), - [anon_sym_DOT_DOT2] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(4601), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), - [anon_sym_err_GT] = ACTIONS(1031), - [anon_sym_out_GT] = ACTIONS(1031), - [anon_sym_e_GT] = ACTIONS(1031), - [anon_sym_o_GT] = ACTIONS(1031), - [anon_sym_err_PLUSout_GT] = ACTIONS(1031), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), - [anon_sym_o_PLUSe_GT] = ACTIONS(1031), - [anon_sym_e_PLUSo_GT] = ACTIONS(1031), - [anon_sym_err_GT_GT] = ACTIONS(1033), - [anon_sym_out_GT_GT] = ACTIONS(1033), - [anon_sym_e_GT_GT] = ACTIONS(1033), - [anon_sym_o_GT_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(3811), + [anon_sym_LPAREN] = ACTIONS(3813), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(3815), + [anon_sym_DOT_DOT] = ACTIONS(3817), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3819), + [anon_sym_DOT_DOT_LT] = ACTIONS(3819), + [anon_sym_null] = ACTIONS(3821), + [anon_sym_true] = ACTIONS(3823), + [anon_sym_false] = ACTIONS(3823), + [aux_sym__val_number_decimal_token1] = ACTIONS(3825), + [aux_sym__val_number_decimal_token2] = ACTIONS(3827), + [aux_sym__val_number_decimal_token3] = ACTIONS(3829), + [aux_sym__val_number_decimal_token4] = ACTIONS(3831), + [aux_sym__val_number_token1] = ACTIONS(3833), + [aux_sym__val_number_token2] = ACTIONS(3833), + [aux_sym__val_number_token3] = ACTIONS(3833), + [aux_sym__val_number_token4] = ACTIONS(3835), + [aux_sym__val_number_token5] = ACTIONS(3835), + [aux_sym__val_number_token6] = ACTIONS(3835), + [anon_sym_0b] = ACTIONS(3837), + [anon_sym_0o] = ACTIONS(3839), + [anon_sym_0x] = ACTIONS(3839), + [sym_val_date] = ACTIONS(3841), + [anon_sym_DQUOTE] = ACTIONS(3843), + [sym__str_single_quotes] = ACTIONS(3845), + [sym__str_back_ticks] = ACTIONS(3845), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3847), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3849), + [anon_sym_err_GT] = ACTIONS(3743), + [anon_sym_out_GT] = ACTIONS(3743), + [anon_sym_e_GT] = ACTIONS(3743), + [anon_sym_o_GT] = ACTIONS(3743), + [anon_sym_err_PLUSout_GT] = ACTIONS(3743), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3743), + [anon_sym_o_PLUSe_GT] = ACTIONS(3743), + [anon_sym_e_PLUSo_GT] = ACTIONS(3743), + [anon_sym_err_GT_GT] = ACTIONS(3745), + [anon_sym_out_GT_GT] = ACTIONS(3745), + [anon_sym_e_GT_GT] = ACTIONS(3745), + [anon_sym_o_GT_GT] = ACTIONS(3745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3745), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3851), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3853), }, [1225] = { - [sym_path] = STATE(1299), [sym_comment] = STATE(1225), - [aux_sym_cell_path_repeat1] = STATE(1224), - [ts_builtin_sym_end] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_PLUS_EQ] = ACTIONS(1029), - [anon_sym_DASH_EQ] = ACTIONS(1029), - [anon_sym_STAR_EQ] = ACTIONS(1029), - [anon_sym_SLASH_EQ] = ACTIONS(1029), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1029), - [sym__newline] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_err_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_GT_PIPE] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), - [aux_sym_expr_binary_token1] = ACTIONS(1029), - [aux_sym_expr_binary_token2] = ACTIONS(1029), - [aux_sym_expr_binary_token3] = ACTIONS(1029), - [aux_sym_expr_binary_token4] = ACTIONS(1029), - [aux_sym_expr_binary_token5] = ACTIONS(1029), - [aux_sym_expr_binary_token6] = ACTIONS(1029), - [aux_sym_expr_binary_token7] = ACTIONS(1029), - [aux_sym_expr_binary_token8] = ACTIONS(1029), - [aux_sym_expr_binary_token9] = ACTIONS(1029), - [aux_sym_expr_binary_token10] = ACTIONS(1029), - [aux_sym_expr_binary_token11] = ACTIONS(1029), - [aux_sym_expr_binary_token12] = ACTIONS(1029), - [aux_sym_expr_binary_token13] = ACTIONS(1029), - [aux_sym_expr_binary_token14] = ACTIONS(1029), - [aux_sym_expr_binary_token15] = ACTIONS(1029), - [aux_sym_expr_binary_token16] = ACTIONS(1029), - [aux_sym_expr_binary_token17] = ACTIONS(1029), - [aux_sym_expr_binary_token18] = ACTIONS(1029), - [aux_sym_expr_binary_token19] = ACTIONS(1029), - [aux_sym_expr_binary_token20] = ACTIONS(1029), - [aux_sym_expr_binary_token21] = ACTIONS(1029), - [aux_sym_expr_binary_token22] = ACTIONS(1029), - [aux_sym_expr_binary_token23] = ACTIONS(1029), - [aux_sym_expr_binary_token24] = ACTIONS(1029), - [aux_sym_expr_binary_token25] = ACTIONS(1029), - [aux_sym_expr_binary_token26] = ACTIONS(1029), - [aux_sym_expr_binary_token27] = ACTIONS(1029), - [aux_sym_expr_binary_token28] = ACTIONS(1029), - [anon_sym_DOT_DOT2] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(4494), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), - [anon_sym_err_GT] = ACTIONS(1027), - [anon_sym_out_GT] = ACTIONS(1027), - [anon_sym_e_GT] = ACTIONS(1027), - [anon_sym_o_GT] = ACTIONS(1027), - [anon_sym_err_PLUSout_GT] = ACTIONS(1027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), - [anon_sym_o_PLUSe_GT] = ACTIONS(1027), - [anon_sym_e_PLUSo_GT] = ACTIONS(1027), - [anon_sym_err_GT_GT] = ACTIONS(1029), - [anon_sym_out_GT_GT] = ACTIONS(1029), - [anon_sym_e_GT_GT] = ACTIONS(1029), - [anon_sym_o_GT_GT] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1765), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_bit_DASHshl] = ACTIONS(1765), + [anon_sym_bit_DASHshr] = ACTIONS(1765), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_BANG_TILDE] = ACTIONS(1765), + [anon_sym_bit_DASHand] = ACTIONS(1765), + [anon_sym_bit_DASHxor] = ACTIONS(1765), + [anon_sym_bit_DASHor] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_xor] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not_DASHin] = ACTIONS(1765), + [anon_sym_starts_DASHwith] = ACTIONS(1765), + [anon_sym_ends_DASHwith] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1765), + [aux_sym_cmd_identifier_token41] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(3), }, [1226] = { [sym_comment] = STATE(1226), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [anon_sym_null] = ACTIONS(1530), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1530), - [aux_sym_cmd_identifier_token40] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_LPAREN2] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [anon_sym_0b] = ACTIONS(1528), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1530), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1227] = { [sym_comment] = STATE(1227), - [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), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_QMARK2] = ACTIONS(4604), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1050), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), - [anon_sym_err_GT] = ACTIONS(1048), - [anon_sym_out_GT] = ACTIONS(1048), - [anon_sym_e_GT] = ACTIONS(1048), - [anon_sym_o_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT] = ACTIONS(1048), - [anon_sym_err_GT_GT] = ACTIONS(1050), - [anon_sym_out_GT_GT] = ACTIONS(1050), - [anon_sym_e_GT_GT] = ACTIONS(1050), - [anon_sym_o_GT_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(3855), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), }, [1228] = { + [sym_expr_parenthesized] = STATE(504), + [sym_val_range] = STATE(676), + [sym__val_range] = STATE(7571), + [sym__val_range_with_end] = STATE(7484), + [sym__value] = STATE(676), + [sym_val_nothing] = STATE(631), + [sym_val_bool] = STATE(526), + [sym_val_variable] = STATE(455), + [sym_val_number] = STATE(631), + [sym__val_number_decimal] = STATE(347), + [sym__val_number] = STATE(621), + [sym_val_duration] = STATE(631), + [sym_val_filesize] = STATE(631), + [sym_val_binary] = STATE(631), + [sym_val_string] = STATE(631), + [sym__raw_str] = STATE(678), + [sym__str_double_quotes] = STATE(678), + [sym_val_interpolated] = STATE(631), + [sym__inter_single_quotes] = STATE(625), + [sym__inter_double_quotes] = STATE(612), + [sym_val_list] = STATE(631), + [sym_val_record] = STATE(631), + [sym_val_table] = STATE(631), + [sym_val_closure] = STATE(631), + [sym__unquoted_in_record] = STATE(556), + [sym__unquoted_in_record_with_expr] = STATE(676), + [sym__unquoted_anonymous_prefix] = STATE(6771), [sym_comment] = STATE(1228), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4465), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(3811), + [anon_sym_LPAREN] = ACTIONS(3813), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(3815), + [anon_sym_DOT_DOT] = ACTIONS(3817), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3819), + [anon_sym_DOT_DOT_LT] = ACTIONS(3819), + [anon_sym_null] = ACTIONS(3821), + [anon_sym_true] = ACTIONS(3823), + [anon_sym_false] = ACTIONS(3823), + [aux_sym__val_number_decimal_token1] = ACTIONS(3825), + [aux_sym__val_number_decimal_token2] = ACTIONS(3827), + [aux_sym__val_number_decimal_token3] = ACTIONS(3829), + [aux_sym__val_number_decimal_token4] = ACTIONS(3831), + [aux_sym__val_number_token1] = ACTIONS(3833), + [aux_sym__val_number_token2] = ACTIONS(3833), + [aux_sym__val_number_token3] = ACTIONS(3833), + [aux_sym__val_number_token4] = ACTIONS(3835), + [aux_sym__val_number_token5] = ACTIONS(3835), + [aux_sym__val_number_token6] = ACTIONS(3835), + [anon_sym_0b] = ACTIONS(3837), + [anon_sym_0o] = ACTIONS(3839), + [anon_sym_0x] = ACTIONS(3839), + [sym_val_date] = ACTIONS(3841), + [anon_sym_DQUOTE] = ACTIONS(3843), + [sym__str_single_quotes] = ACTIONS(3845), + [sym__str_back_ticks] = ACTIONS(3845), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3847), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3849), + [anon_sym_err_GT] = ACTIONS(3743), + [anon_sym_out_GT] = ACTIONS(3743), + [anon_sym_e_GT] = ACTIONS(3743), + [anon_sym_o_GT] = ACTIONS(3743), + [anon_sym_err_PLUSout_GT] = ACTIONS(3743), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3743), + [anon_sym_o_PLUSe_GT] = ACTIONS(3743), + [anon_sym_e_PLUSo_GT] = ACTIONS(3743), + [anon_sym_err_GT_GT] = ACTIONS(3745), + [anon_sym_out_GT_GT] = ACTIONS(3745), + [anon_sym_e_GT_GT] = ACTIONS(3745), + [anon_sym_o_GT_GT] = ACTIONS(3745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3745), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3851), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3853), }, [1229] = { [sym_comment] = STATE(1229), - [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(249), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [1230] = { [sym_comment] = STATE(1230), - [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), - [anon_sym_QMARK2] = 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(249), + [ts_builtin_sym_end] = ACTIONS(1609), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1231] = { + [sym__match_pattern_expression] = STATE(3107), + [sym__match_pattern_value] = STATE(3147), + [sym__match_pattern_list] = STATE(3109), + [sym__match_pattern_rest] = STATE(7612), + [sym__match_pattern_record] = STATE(3111), + [sym_expr_parenthesized] = STATE(2878), + [sym_val_range] = STATE(3147), + [sym__val_range] = STATE(7888), + [sym_val_nothing] = STATE(3095), + [sym_val_bool] = STATE(3079), + [sym_val_variable] = STATE(2883), + [sym_val_number] = STATE(3095), + [sym__val_number_decimal] = STATE(2727), + [sym__val_number] = STATE(3096), + [sym_val_duration] = STATE(3095), + [sym_val_filesize] = STATE(3095), + [sym_val_binary] = STATE(3095), + [sym_val_string] = STATE(3095), + [sym__raw_str] = STATE(3110), + [sym__str_double_quotes] = STATE(3110), + [sym_val_list] = STATE(7615), + [sym_val_table] = STATE(3095), + [sym__unquoted_in_list] = STATE(3107), + [sym__unquoted_anonymous_prefix] = STATE(7642), [sym_comment] = STATE(1231), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(4606), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [aux_sym_shebang_repeat1] = STATE(6699), + [aux_sym__match_pattern_list_repeat1] = STATE(1273), + [sym__newline] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_RBRACK] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_DOLLAR] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3867), + [anon_sym_DOT_DOT] = ACTIONS(3869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3871), + [anon_sym_DOT_DOT_LT] = ACTIONS(3871), + [anon_sym_null] = ACTIONS(3873), + [anon_sym_true] = ACTIONS(3875), + [anon_sym_false] = ACTIONS(3875), + [aux_sym__val_number_decimal_token1] = ACTIONS(3877), + [aux_sym__val_number_decimal_token2] = ACTIONS(3879), + [aux_sym__val_number_decimal_token3] = ACTIONS(3881), + [aux_sym__val_number_decimal_token4] = ACTIONS(3883), + [aux_sym__val_number_token1] = ACTIONS(3885), + [aux_sym__val_number_token2] = ACTIONS(3885), + [aux_sym__val_number_token3] = ACTIONS(3885), + [aux_sym__val_number_token4] = ACTIONS(3887), + [aux_sym__val_number_token5] = ACTIONS(3887), + [aux_sym__val_number_token6] = ACTIONS(3887), + [anon_sym_0b] = ACTIONS(3889), + [anon_sym_0o] = ACTIONS(3891), + [anon_sym_0x] = ACTIONS(3891), + [sym_val_date] = ACTIONS(3893), + [anon_sym_DQUOTE] = ACTIONS(3895), + [sym__str_single_quotes] = ACTIONS(3897), + [sym__str_back_ticks] = ACTIONS(3897), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3899), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3901), }, [1232] = { - [sym_cell_path] = STATE(1401), - [sym_path] = STATE(1369), [sym_comment] = STATE(1232), - [aux_sym_cell_path_repeat1] = STATE(1274), - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1668), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1664), - [anon_sym_DOT_DOT2] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1664), - [anon_sym_DOT_DOT_LT] = ACTIONS(1664), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1664), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1664), - [anon_sym_0o] = ACTIONS(1664), - [anon_sym_0x] = ACTIONS(1664), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1664), - [anon_sym_out_GT] = ACTIONS(1664), - [anon_sym_e_GT] = ACTIONS(1664), - [anon_sym_o_GT] = ACTIONS(1664), - [anon_sym_err_PLUSout_GT] = ACTIONS(1664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), - [anon_sym_o_PLUSe_GT] = ACTIONS(1664), - [anon_sym_e_PLUSo_GT] = ACTIONS(1664), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1668), + [anon_sym_STAR_STAR] = ACTIONS(3063), + [anon_sym_PLUS_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_mod] = ACTIONS(3063), + [anon_sym_SLASH_SLASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_bit_DASHshl] = ACTIONS(3063), + [anon_sym_bit_DASHshr] = ACTIONS(3063), + [anon_sym_EQ_TILDE] = ACTIONS(3063), + [anon_sym_BANG_TILDE] = ACTIONS(3063), + [anon_sym_bit_DASHand] = ACTIONS(3063), + [anon_sym_bit_DASHxor] = ACTIONS(3063), + [anon_sym_bit_DASHor] = ACTIONS(3063), + [anon_sym_and] = ACTIONS(3063), + [anon_sym_xor] = ACTIONS(3063), + [anon_sym_or] = ACTIONS(3063), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_not_DASHin] = ACTIONS(3063), + [anon_sym_starts_DASHwith] = ACTIONS(3063), + [anon_sym_ends_DASHwith] = ACTIONS(3063), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3063), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3063), + [aux_sym_cmd_identifier_token41] = ACTIONS(3067), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), + [sym_filesize_unit] = ACTIONS(3903), + [sym_duration_unit] = ACTIONS(3905), + [anon_sym_POUND] = ACTIONS(3), }, [1233] = { + [sym__match_pattern_expression] = STATE(3107), + [sym__match_pattern_value] = STATE(3147), + [sym__match_pattern_list] = STATE(3109), + [sym__match_pattern_rest] = STATE(7807), + [sym__match_pattern_record] = STATE(3111), + [sym_expr_parenthesized] = STATE(2878), + [sym_val_range] = STATE(3147), + [sym__val_range] = STATE(7888), + [sym_val_nothing] = STATE(3095), + [sym_val_bool] = STATE(3079), + [sym_val_variable] = STATE(2883), + [sym_val_number] = STATE(3095), + [sym__val_number_decimal] = STATE(2727), + [sym__val_number] = STATE(3096), + [sym_val_duration] = STATE(3095), + [sym_val_filesize] = STATE(3095), + [sym_val_binary] = STATE(3095), + [sym_val_string] = STATE(3095), + [sym__raw_str] = STATE(3110), + [sym__str_double_quotes] = STATE(3110), + [sym_val_list] = STATE(7581), + [sym_val_table] = STATE(3095), + [sym__unquoted_in_list] = STATE(3107), + [sym__unquoted_anonymous_prefix] = STATE(7642), [sym_comment] = STATE(1233), - [anon_sym_EQ] = ACTIONS(1074), - [anon_sym_PLUS_EQ] = ACTIONS(1076), - [anon_sym_DASH_EQ] = ACTIONS(1076), - [anon_sym_STAR_EQ] = ACTIONS(1076), - [anon_sym_SLASH_EQ] = ACTIONS(1076), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1076), - [sym__newline] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_err_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_GT_PIPE] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1076), - [aux_sym_expr_binary_token1] = ACTIONS(1076), - [aux_sym_expr_binary_token2] = ACTIONS(1076), - [aux_sym_expr_binary_token3] = ACTIONS(1076), - [aux_sym_expr_binary_token4] = ACTIONS(1076), - [aux_sym_expr_binary_token5] = ACTIONS(1076), - [aux_sym_expr_binary_token6] = ACTIONS(1076), - [aux_sym_expr_binary_token7] = ACTIONS(1076), - [aux_sym_expr_binary_token8] = ACTIONS(1076), - [aux_sym_expr_binary_token9] = ACTIONS(1076), - [aux_sym_expr_binary_token10] = ACTIONS(1076), - [aux_sym_expr_binary_token11] = ACTIONS(1076), - [aux_sym_expr_binary_token12] = ACTIONS(1076), - [aux_sym_expr_binary_token13] = ACTIONS(1076), - [aux_sym_expr_binary_token14] = ACTIONS(1076), - [aux_sym_expr_binary_token15] = ACTIONS(1076), - [aux_sym_expr_binary_token16] = ACTIONS(1076), - [aux_sym_expr_binary_token17] = ACTIONS(1076), - [aux_sym_expr_binary_token18] = ACTIONS(1076), - [aux_sym_expr_binary_token19] = ACTIONS(1076), - [aux_sym_expr_binary_token20] = ACTIONS(1076), - [aux_sym_expr_binary_token21] = ACTIONS(1076), - [aux_sym_expr_binary_token22] = ACTIONS(1076), - [aux_sym_expr_binary_token23] = ACTIONS(1076), - [aux_sym_expr_binary_token24] = ACTIONS(1076), - [aux_sym_expr_binary_token25] = ACTIONS(1076), - [aux_sym_expr_binary_token26] = ACTIONS(1076), - [aux_sym_expr_binary_token27] = ACTIONS(1076), - [aux_sym_expr_binary_token28] = ACTIONS(1076), - [anon_sym_DOT_DOT2] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), - [aux_sym_record_entry_token1] = ACTIONS(1076), - [anon_sym_err_GT] = ACTIONS(1074), - [anon_sym_out_GT] = ACTIONS(1074), - [anon_sym_e_GT] = ACTIONS(1074), - [anon_sym_o_GT] = ACTIONS(1074), - [anon_sym_err_PLUSout_GT] = ACTIONS(1074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), - [anon_sym_o_PLUSe_GT] = ACTIONS(1074), - [anon_sym_e_PLUSo_GT] = ACTIONS(1074), - [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), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_shebang_repeat1] = STATE(6727), + [aux_sym__match_pattern_list_repeat1] = STATE(1272), + [sym__newline] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_RBRACK] = ACTIONS(3907), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_DOLLAR] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3867), + [anon_sym_DOT_DOT] = ACTIONS(3909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3871), + [anon_sym_DOT_DOT_LT] = ACTIONS(3871), + [anon_sym_null] = ACTIONS(3873), + [anon_sym_true] = ACTIONS(3875), + [anon_sym_false] = ACTIONS(3875), + [aux_sym__val_number_decimal_token1] = ACTIONS(3877), + [aux_sym__val_number_decimal_token2] = ACTIONS(3879), + [aux_sym__val_number_decimal_token3] = ACTIONS(3881), + [aux_sym__val_number_decimal_token4] = ACTIONS(3883), + [aux_sym__val_number_token1] = ACTIONS(3885), + [aux_sym__val_number_token2] = ACTIONS(3885), + [aux_sym__val_number_token3] = ACTIONS(3885), + [aux_sym__val_number_token4] = ACTIONS(3887), + [aux_sym__val_number_token5] = ACTIONS(3887), + [aux_sym__val_number_token6] = ACTIONS(3887), + [anon_sym_0b] = ACTIONS(3889), + [anon_sym_0o] = ACTIONS(3891), + [anon_sym_0x] = ACTIONS(3891), + [sym_val_date] = ACTIONS(3893), + [anon_sym_DQUOTE] = ACTIONS(3895), + [sym__str_single_quotes] = ACTIONS(3897), + [sym__str_back_ticks] = ACTIONS(3897), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3899), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3901), }, [1234] = { + [sym_match_arm] = STATE(7144), + [sym_default_arm] = STATE(7144), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1234), - [ts_builtin_sym_end] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), - [anon_sym_DOT_DOT_LT] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4469), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1235] = { + [sym_match_arm] = STATE(7466), + [sym_default_arm] = STATE(7466), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1235), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), - [anon_sym_DOT_DOT_LT] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(4610), - [aux_sym__immediate_decimal_token2] = ACTIONS(4612), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [aux_sym_unquoted_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [anon_sym_LBRACK] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3914), + [anon_sym_DOLLAR] = ACTIONS(3917), + [anon_sym_LBRACE] = ACTIONS(3920), + [anon_sym__] = ACTIONS(3923), + [anon_sym_DOT_DOT] = ACTIONS(3926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3929), + [anon_sym_DOT_DOT_LT] = ACTIONS(3929), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_true] = ACTIONS(3935), + [anon_sym_false] = ACTIONS(3935), + [aux_sym__val_number_decimal_token1] = ACTIONS(3938), + [aux_sym__val_number_decimal_token2] = ACTIONS(3941), + [aux_sym__val_number_decimal_token3] = ACTIONS(3944), + [aux_sym__val_number_decimal_token4] = ACTIONS(3947), + [aux_sym__val_number_token1] = ACTIONS(3950), + [aux_sym__val_number_token2] = ACTIONS(3950), + [aux_sym__val_number_token3] = ACTIONS(3950), + [aux_sym__val_number_token4] = ACTIONS(3953), + [aux_sym__val_number_token5] = ACTIONS(3953), + [aux_sym__val_number_token6] = ACTIONS(3953), + [anon_sym_0b] = ACTIONS(3956), + [anon_sym_0o] = ACTIONS(3959), + [anon_sym_0x] = ACTIONS(3959), + [sym_val_date] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym__str_single_quotes] = ACTIONS(3968), + [sym__str_back_ticks] = ACTIONS(3968), + [anon_sym_err_GT] = ACTIONS(3971), + [anon_sym_out_GT] = ACTIONS(3971), + [anon_sym_e_GT] = ACTIONS(3971), + [anon_sym_o_GT] = ACTIONS(3971), + [anon_sym_err_PLUSout_GT] = ACTIONS(3971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3971), + [anon_sym_o_PLUSe_GT] = ACTIONS(3971), + [anon_sym_e_PLUSo_GT] = ACTIONS(3971), + [anon_sym_err_GT_GT] = ACTIONS(3974), + [anon_sym_out_GT_GT] = ACTIONS(3974), + [anon_sym_e_GT_GT] = ACTIONS(3974), + [anon_sym_o_GT_GT] = ACTIONS(3974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3974), + [aux_sym_unquoted_token1] = ACTIONS(3977), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3980), }, [1236] = { + [sym_match_arm] = STATE(7156), + [sym_default_arm] = STATE(7156), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1236), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1598), - [aux_sym_cmd_identifier_token38] = ACTIONS(1598), - [aux_sym_cmd_identifier_token39] = ACTIONS(1598), - [aux_sym_cmd_identifier_token40] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), - [anon_sym_DOT_DOT_LT] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token3] = ACTIONS(1598), - [aux_sym__val_number_decimal_token4] = ACTIONS(1598), - [aux_sym__val_number_token1] = ACTIONS(1598), - [aux_sym__val_number_token2] = ACTIONS(1598), - [aux_sym__val_number_token3] = ACTIONS(1598), - [anon_sym_0b] = ACTIONS(1596), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [sym__str_single_quotes] = ACTIONS(1598), - [sym__str_back_ticks] = ACTIONS(1598), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token1] = ACTIONS(1596), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1598), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1237] = { + [sym_expr_parenthesized] = STATE(6596), + [sym_val_range] = STATE(7953), + [sym__val_range] = STATE(7572), + [sym__value] = STATE(7953), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(7458), + [sym_val_variable] = STATE(3658), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(5700), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(7954), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1237), - [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), - [anon_sym_QMARK2] = 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] = 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(249), + [anon_sym_LBRACK] = ACTIONS(3983), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_DOT_DOT] = ACTIONS(3989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3991), + [anon_sym_DOT_DOT_LT] = ACTIONS(3991), + [anon_sym_null] = ACTIONS(3993), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = 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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4005), + [aux_sym__val_number_token5] = ACTIONS(4005), + [aux_sym__val_number_token6] = ACTIONS(4005), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_record_entry_token1] = ACTIONS(3365), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1238] = { + [sym_match_arm] = STATE(7258), + [sym_default_arm] = STATE(7258), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1238), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [aux_sym_cmd_identifier_token38] = ACTIONS(1640), - [aux_sym_cmd_identifier_token39] = ACTIONS(1640), - [aux_sym_cmd_identifier_token40] = ACTIONS(1640), - [sym__newline] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_err_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_GT_PIPE] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_DOT_DOT] = ACTIONS(1628), - [anon_sym_DOT_DOT2] = ACTIONS(4614), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), - [anon_sym_DOT_DOT_LT] = ACTIONS(1628), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4616), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4616), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_decimal_token2] = ACTIONS(1640), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_decimal_token4] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [anon_sym_0b] = ACTIONS(1628), - [sym_filesize_unit] = ACTIONS(4618), - [sym_duration_unit] = ACTIONS(4620), - [anon_sym_0o] = ACTIONS(1628), - [anon_sym_0x] = ACTIONS(1628), - [sym_val_date] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [anon_sym_err_GT_GT] = ACTIONS(1640), - [anon_sym_out_GT_GT] = ACTIONS(1640), - [anon_sym_e_GT_GT] = ACTIONS(1640), - [anon_sym_o_GT_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), - [aux_sym_unquoted_token1] = ACTIONS(1628), - [aux_sym_unquoted_token2] = ACTIONS(4622), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1640), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1239] = { [sym_comment] = STATE(1239), - [anon_sym_EQ] = ACTIONS(1062), - [anon_sym_PLUS_EQ] = ACTIONS(1064), - [anon_sym_DASH_EQ] = ACTIONS(1064), - [anon_sym_STAR_EQ] = ACTIONS(1064), - [anon_sym_SLASH_EQ] = ACTIONS(1064), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1064), - [sym__newline] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_err_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_GT_PIPE] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), - [anon_sym_RPAREN] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), - [anon_sym_QMARK2] = ACTIONS(1064), - [aux_sym_expr_binary_token1] = ACTIONS(1064), - [aux_sym_expr_binary_token2] = ACTIONS(1064), - [aux_sym_expr_binary_token3] = ACTIONS(1064), - [aux_sym_expr_binary_token4] = ACTIONS(1064), - [aux_sym_expr_binary_token5] = ACTIONS(1064), - [aux_sym_expr_binary_token6] = ACTIONS(1064), - [aux_sym_expr_binary_token7] = ACTIONS(1064), - [aux_sym_expr_binary_token8] = ACTIONS(1064), - [aux_sym_expr_binary_token9] = ACTIONS(1064), - [aux_sym_expr_binary_token10] = ACTIONS(1064), - [aux_sym_expr_binary_token11] = ACTIONS(1064), - [aux_sym_expr_binary_token12] = ACTIONS(1064), - [aux_sym_expr_binary_token13] = ACTIONS(1064), - [aux_sym_expr_binary_token14] = ACTIONS(1064), - [aux_sym_expr_binary_token15] = ACTIONS(1064), - [aux_sym_expr_binary_token16] = ACTIONS(1064), - [aux_sym_expr_binary_token17] = ACTIONS(1064), - [aux_sym_expr_binary_token18] = ACTIONS(1064), - [aux_sym_expr_binary_token19] = ACTIONS(1064), - [aux_sym_expr_binary_token20] = ACTIONS(1064), - [aux_sym_expr_binary_token21] = ACTIONS(1064), - [aux_sym_expr_binary_token22] = ACTIONS(1064), - [aux_sym_expr_binary_token23] = ACTIONS(1064), - [aux_sym_expr_binary_token24] = ACTIONS(1064), - [aux_sym_expr_binary_token25] = ACTIONS(1064), - [aux_sym_expr_binary_token26] = ACTIONS(1064), - [aux_sym_expr_binary_token27] = ACTIONS(1064), - [aux_sym_expr_binary_token28] = ACTIONS(1064), - [anon_sym_DOT_DOT2] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), - [anon_sym_err_GT] = ACTIONS(1062), - [anon_sym_out_GT] = ACTIONS(1062), - [anon_sym_e_GT] = ACTIONS(1062), - [anon_sym_o_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT] = ACTIONS(1062), - [anon_sym_err_GT_GT] = ACTIONS(1064), - [anon_sym_out_GT_GT] = ACTIONS(1064), - [anon_sym_e_GT_GT] = ACTIONS(1064), - [anon_sym_o_GT_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_bit_DASHshl] = ACTIONS(1765), + [anon_sym_bit_DASHshr] = ACTIONS(1765), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_BANG_TILDE] = ACTIONS(1765), + [anon_sym_bit_DASHand] = ACTIONS(1765), + [anon_sym_bit_DASHxor] = ACTIONS(1765), + [anon_sym_bit_DASHor] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_xor] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not_DASHin] = ACTIONS(1765), + [anon_sym_starts_DASHwith] = ACTIONS(1765), + [anon_sym_ends_DASHwith] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1765), + [aux_sym_cmd_identifier_token41] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(3), }, [1240] = { + [sym_match_arm] = STATE(6937), + [sym_default_arm] = STATE(6937), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1240), - [ts_builtin_sym_end] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1713), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1713), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1241] = { + [sym_match_arm] = STATE(6990), + [sym_default_arm] = STATE(6990), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1241), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [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_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [aux_sym_unquoted_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1242] = { + [sym_expr_parenthesized] = STATE(6596), + [sym_val_range] = STATE(7953), + [sym__val_range] = STATE(7572), + [sym__value] = STATE(7953), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(7458), + [sym_val_variable] = STATE(3658), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(5700), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(7954), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1242), - [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), - [sym__newline] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_err_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_GT_PIPE] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_DOT_DOT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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_0b] = ACTIONS(1826), - [anon_sym_0o] = ACTIONS(1826), - [anon_sym_0x] = ACTIONS(1826), - [sym_val_date] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(1826), - [anon_sym_out_GT] = ACTIONS(1826), - [anon_sym_e_GT] = ACTIONS(1826), - [anon_sym_o_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT] = ACTIONS(1826), - [anon_sym_err_GT_GT] = ACTIONS(1828), - [anon_sym_out_GT_GT] = ACTIONS(1828), - [anon_sym_e_GT_GT] = ACTIONS(1828), - [anon_sym_o_GT_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), - [aux_sym_unquoted_token1] = ACTIONS(1826), - [aux_sym_unquoted_token2] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(3983), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_DOT_DOT] = ACTIONS(3989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3991), + [anon_sym_DOT_DOT_LT] = ACTIONS(3991), + [anon_sym_null] = ACTIONS(3993), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = 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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4005), + [aux_sym__val_number_token5] = ACTIONS(4005), + [aux_sym__val_number_token6] = ACTIONS(4005), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_record_entry_token1] = ACTIONS(3363), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1243] = { + [sym_match_arm] = STATE(7145), + [sym_default_arm] = STATE(7145), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1243), - [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(4624), - [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(249), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1244] = { [sym_comment] = STATE(1244), - [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(4626), - [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(249), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(3759), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1245] = { [sym_comment] = STATE(1245), - [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(249), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(4015), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), }, [1246] = { + [sym_match_arm] = STATE(7104), + [sym_default_arm] = STATE(7104), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1246), - [ts_builtin_sym_end] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1713), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1713), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1247] = { [sym_comment] = STATE(1247), - [anon_sym_EQ] = ACTIONS(1074), - [anon_sym_PLUS_EQ] = ACTIONS(1076), - [anon_sym_DASH_EQ] = ACTIONS(1076), - [anon_sym_STAR_EQ] = ACTIONS(1076), - [anon_sym_SLASH_EQ] = ACTIONS(1076), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1076), - [sym__newline] = ACTIONS(1076), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_err_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_GT_PIPE] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), - [anon_sym_RPAREN] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1076), - [aux_sym_expr_binary_token1] = ACTIONS(1076), - [aux_sym_expr_binary_token2] = ACTIONS(1076), - [aux_sym_expr_binary_token3] = ACTIONS(1076), - [aux_sym_expr_binary_token4] = ACTIONS(1076), - [aux_sym_expr_binary_token5] = ACTIONS(1076), - [aux_sym_expr_binary_token6] = ACTIONS(1076), - [aux_sym_expr_binary_token7] = ACTIONS(1076), - [aux_sym_expr_binary_token8] = ACTIONS(1076), - [aux_sym_expr_binary_token9] = ACTIONS(1076), - [aux_sym_expr_binary_token10] = ACTIONS(1076), - [aux_sym_expr_binary_token11] = ACTIONS(1076), - [aux_sym_expr_binary_token12] = ACTIONS(1076), - [aux_sym_expr_binary_token13] = ACTIONS(1076), - [aux_sym_expr_binary_token14] = ACTIONS(1076), - [aux_sym_expr_binary_token15] = ACTIONS(1076), - [aux_sym_expr_binary_token16] = ACTIONS(1076), - [aux_sym_expr_binary_token17] = ACTIONS(1076), - [aux_sym_expr_binary_token18] = ACTIONS(1076), - [aux_sym_expr_binary_token19] = ACTIONS(1076), - [aux_sym_expr_binary_token20] = ACTIONS(1076), - [aux_sym_expr_binary_token21] = ACTIONS(1076), - [aux_sym_expr_binary_token22] = ACTIONS(1076), - [aux_sym_expr_binary_token23] = ACTIONS(1076), - [aux_sym_expr_binary_token24] = ACTIONS(1076), - [aux_sym_expr_binary_token25] = ACTIONS(1076), - [aux_sym_expr_binary_token26] = ACTIONS(1076), - [aux_sym_expr_binary_token27] = ACTIONS(1076), - [aux_sym_expr_binary_token28] = ACTIONS(1076), - [anon_sym_DOT_DOT2] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), - [anon_sym_err_GT] = ACTIONS(1074), - [anon_sym_out_GT] = ACTIONS(1074), - [anon_sym_e_GT] = ACTIONS(1074), - [anon_sym_o_GT] = ACTIONS(1074), - [anon_sym_err_PLUSout_GT] = ACTIONS(1074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), - [anon_sym_o_PLUSe_GT] = ACTIONS(1074), - [anon_sym_e_PLUSo_GT] = ACTIONS(1074), - [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), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1248] = { [sym_comment] = STATE(1248), - [anon_sym_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1068), - [anon_sym_DASH_EQ] = ACTIONS(1068), - [anon_sym_STAR_EQ] = ACTIONS(1068), - [anon_sym_SLASH_EQ] = ACTIONS(1068), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1068), - [sym__newline] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_err_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_GT_PIPE] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [aux_sym_expr_binary_token1] = ACTIONS(1068), - [aux_sym_expr_binary_token2] = ACTIONS(1068), - [aux_sym_expr_binary_token3] = ACTIONS(1068), - [aux_sym_expr_binary_token4] = ACTIONS(1068), - [aux_sym_expr_binary_token5] = ACTIONS(1068), - [aux_sym_expr_binary_token6] = ACTIONS(1068), - [aux_sym_expr_binary_token7] = ACTIONS(1068), - [aux_sym_expr_binary_token8] = ACTIONS(1068), - [aux_sym_expr_binary_token9] = ACTIONS(1068), - [aux_sym_expr_binary_token10] = ACTIONS(1068), - [aux_sym_expr_binary_token11] = ACTIONS(1068), - [aux_sym_expr_binary_token12] = ACTIONS(1068), - [aux_sym_expr_binary_token13] = ACTIONS(1068), - [aux_sym_expr_binary_token14] = ACTIONS(1068), - [aux_sym_expr_binary_token15] = ACTIONS(1068), - [aux_sym_expr_binary_token16] = ACTIONS(1068), - [aux_sym_expr_binary_token17] = ACTIONS(1068), - [aux_sym_expr_binary_token18] = ACTIONS(1068), - [aux_sym_expr_binary_token19] = ACTIONS(1068), - [aux_sym_expr_binary_token20] = ACTIONS(1068), - [aux_sym_expr_binary_token21] = ACTIONS(1068), - [aux_sym_expr_binary_token22] = ACTIONS(1068), - [aux_sym_expr_binary_token23] = ACTIONS(1068), - [aux_sym_expr_binary_token24] = ACTIONS(1068), - [aux_sym_expr_binary_token25] = ACTIONS(1068), - [aux_sym_expr_binary_token26] = ACTIONS(1068), - [aux_sym_expr_binary_token27] = ACTIONS(1068), - [aux_sym_expr_binary_token28] = ACTIONS(1068), - [anon_sym_DOT_DOT2] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), - [anon_sym_err_GT] = ACTIONS(1066), - [anon_sym_out_GT] = ACTIONS(1066), - [anon_sym_e_GT] = ACTIONS(1066), - [anon_sym_o_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT] = ACTIONS(1066), - [anon_sym_err_GT_GT] = ACTIONS(1068), - [anon_sym_out_GT_GT] = ACTIONS(1068), - [anon_sym_e_GT_GT] = ACTIONS(1068), - [anon_sym_o_GT_GT] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [1249] = { [sym_comment] = STATE(1249), - [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(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(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = 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), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), }, [1250] = { + [sym_match_arm] = STATE(7265), + [sym_default_arm] = STATE(7265), + [sym_match_pattern] = STATE(7608), + [sym__match_pattern] = STATE(6119), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6380), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5472), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1250), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym__] = ACTIONS(3627), + [anon_sym_DOT_DOT] = ACTIONS(3629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), + [anon_sym_DOT_DOT_LT] = ACTIONS(3631), + [anon_sym_null] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [aux_sym__val_number_decimal_token1] = ACTIONS(3637), + [aux_sym__val_number_decimal_token2] = ACTIONS(3639), + [aux_sym__val_number_decimal_token3] = ACTIONS(3641), + [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3645), + [aux_sym__val_number_token5] = ACTIONS(3645), + [aux_sym__val_number_token6] = ACTIONS(3645), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3647), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1251] = { - [sym_path] = STATE(1369), + [sym_expr_parenthesized] = STATE(6298), + [sym_val_range] = STATE(7712), + [sym__val_range] = STATE(7572), + [sym__value] = STATE(7712), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(7458), + [sym_val_variable] = STATE(3658), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(5700), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(7971), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1251), - [aux_sym_cell_path_repeat1] = STATE(1251), - [ts_builtin_sym_end] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [aux_sym_cmd_identifier_token38] = ACTIONS(1033), - [aux_sym_cmd_identifier_token39] = ACTIONS(1033), - [aux_sym_cmd_identifier_token40] = ACTIONS(1033), - [sym__newline] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_err_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_GT_PIPE] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_DOT_DOT] = ACTIONS(1031), - [anon_sym_DOT_DOT2] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(4628), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), - [anon_sym_DOT_DOT_LT] = ACTIONS(1031), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1031), - [aux_sym__val_number_decimal_token2] = ACTIONS(1033), - [aux_sym__val_number_decimal_token3] = ACTIONS(1033), - [aux_sym__val_number_decimal_token4] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1031), - [anon_sym_0o] = ACTIONS(1031), - [anon_sym_0x] = ACTIONS(1031), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_err_GT] = ACTIONS(1031), - [anon_sym_out_GT] = ACTIONS(1031), - [anon_sym_e_GT] = ACTIONS(1031), - [anon_sym_o_GT] = ACTIONS(1031), - [anon_sym_err_PLUSout_GT] = ACTIONS(1031), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), - [anon_sym_o_PLUSe_GT] = ACTIONS(1031), - [anon_sym_e_PLUSo_GT] = ACTIONS(1031), - [anon_sym_err_GT_GT] = ACTIONS(1033), - [anon_sym_out_GT_GT] = ACTIONS(1033), - [anon_sym_e_GT_GT] = ACTIONS(1033), - [anon_sym_o_GT_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), - [aux_sym_unquoted_token1] = ACTIONS(1031), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(3983), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_DOT_DOT] = ACTIONS(3989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3991), + [anon_sym_DOT_DOT_LT] = ACTIONS(3991), + [anon_sym_null] = ACTIONS(3993), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = 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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4005), + [aux_sym__val_number_token5] = ACTIONS(4005), + [aux_sym__val_number_token6] = ACTIONS(4005), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1252] = { [sym_comment] = STATE(1252), - [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), - [sym__newline] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_err_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_GT_PIPE] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_RPAREN] = ACTIONS(1064), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), - [anon_sym_DOT_DOT] = ACTIONS(1062), - [anon_sym_QMARK2] = ACTIONS(1064), - [anon_sym_DOT_DOT2] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1062), - [anon_sym_DOT_DOT_LT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [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_0b] = ACTIONS(1062), - [anon_sym_0o] = ACTIONS(1062), - [anon_sym_0x] = ACTIONS(1062), - [sym_val_date] = ACTIONS(1064), - [anon_sym_DQUOTE] = ACTIONS(1064), - [sym__str_single_quotes] = ACTIONS(1064), - [sym__str_back_ticks] = ACTIONS(1064), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1064), - [anon_sym_err_GT] = ACTIONS(1062), - [anon_sym_out_GT] = ACTIONS(1062), - [anon_sym_e_GT] = ACTIONS(1062), - [anon_sym_o_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT] = ACTIONS(1062), - [anon_sym_err_GT_GT] = ACTIONS(1064), - [anon_sym_out_GT_GT] = ACTIONS(1064), - [anon_sym_e_GT_GT] = ACTIONS(1064), - [anon_sym_o_GT_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), - [aux_sym_unquoted_token1] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1064), + [anon_sym_STAR_STAR] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_mod] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_bit_DASHshl] = ACTIONS(1765), + [anon_sym_bit_DASHshr] = ACTIONS(1765), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_BANG_TILDE] = ACTIONS(1765), + [anon_sym_bit_DASHand] = ACTIONS(1765), + [anon_sym_bit_DASHxor] = ACTIONS(1765), + [anon_sym_bit_DASHor] = ACTIONS(1765), + [anon_sym_and] = ACTIONS(1765), + [anon_sym_xor] = ACTIONS(1765), + [anon_sym_or] = ACTIONS(1765), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_not_DASHin] = ACTIONS(1765), + [anon_sym_starts_DASHwith] = ACTIONS(1765), + [anon_sym_ends_DASHwith] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1765), + [aux_sym_cmd_identifier_token41] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(3), }, [1253] = { [sym_comment] = STATE(1253), - [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_QMARK2] = ACTIONS(1056), - [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(249), - [sym_raw_string_begin] = ACTIONS(1056), + [anon_sym_STAR_STAR] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_mod] = ACTIONS(1609), + [anon_sym_SLASH_SLASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_bit_DASHshl] = ACTIONS(1609), + [anon_sym_bit_DASHshr] = ACTIONS(1609), + [anon_sym_EQ_TILDE] = ACTIONS(1609), + [anon_sym_BANG_TILDE] = ACTIONS(1609), + [anon_sym_bit_DASHand] = ACTIONS(1609), + [anon_sym_bit_DASHxor] = ACTIONS(1609), + [anon_sym_bit_DASHor] = ACTIONS(1609), + [anon_sym_and] = ACTIONS(1609), + [anon_sym_xor] = ACTIONS(1609), + [anon_sym_or] = ACTIONS(1609), + [anon_sym_in] = ACTIONS(1609), + [anon_sym_not_DASHin] = ACTIONS(1609), + [anon_sym_starts_DASHwith] = ACTIONS(1609), + [anon_sym_ends_DASHwith] = ACTIONS(1609), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1609), + [aux_sym_cmd_identifier_token41] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3), }, [1254] = { [sym_comment] = STATE(1254), - [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(249), - [sym_raw_string_begin] = ACTIONS(1040), + [anon_sym_STAR_STAR] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_mod] = ACTIONS(1675), + [anon_sym_SLASH_SLASH] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_bit_DASHshl] = ACTIONS(1675), + [anon_sym_bit_DASHshr] = ACTIONS(1675), + [anon_sym_EQ_TILDE] = ACTIONS(1675), + [anon_sym_BANG_TILDE] = ACTIONS(1675), + [anon_sym_bit_DASHand] = ACTIONS(1675), + [anon_sym_bit_DASHxor] = ACTIONS(1675), + [anon_sym_bit_DASHor] = ACTIONS(1675), + [anon_sym_and] = ACTIONS(1675), + [anon_sym_xor] = ACTIONS(1675), + [anon_sym_or] = ACTIONS(1675), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_not_DASHin] = ACTIONS(1675), + [anon_sym_starts_DASHwith] = ACTIONS(1675), + [anon_sym_ends_DASHwith] = ACTIONS(1675), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_GT_EQ] = ACTIONS(1675), + [aux_sym_cmd_identifier_token41] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), }, [1255] = { [sym_comment] = STATE(1255), - [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(1842), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_DOT_DOT2] = ACTIONS(4631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1842), - [anon_sym_DOT_DOT_LT] = ACTIONS(1842), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4633), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1842), - [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(1842), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [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(1842), - [anon_sym_out_GT] = ACTIONS(1842), - [anon_sym_e_GT] = ACTIONS(1842), - [anon_sym_o_GT] = ACTIONS(1842), - [anon_sym_err_PLUSout_GT] = ACTIONS(1842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1842), - [anon_sym_o_PLUSe_GT] = ACTIONS(1842), - [anon_sym_e_PLUSo_GT] = ACTIONS(1842), - [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(1842), - [aux_sym_unquoted_token2] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1850), + [anon_sym_STAR_STAR] = ACTIONS(3063), + [anon_sym_PLUS_PLUS] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_mod] = ACTIONS(3063), + [anon_sym_SLASH_SLASH] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_bit_DASHshl] = ACTIONS(3063), + [anon_sym_bit_DASHshr] = ACTIONS(3063), + [anon_sym_EQ_TILDE] = ACTIONS(3063), + [anon_sym_BANG_TILDE] = ACTIONS(3063), + [anon_sym_bit_DASHand] = ACTIONS(3063), + [anon_sym_bit_DASHxor] = ACTIONS(3063), + [anon_sym_bit_DASHor] = ACTIONS(3063), + [anon_sym_and] = ACTIONS(3063), + [anon_sym_xor] = ACTIONS(3063), + [anon_sym_or] = ACTIONS(3063), + [anon_sym_in] = ACTIONS(3063), + [anon_sym_not_DASHin] = ACTIONS(3063), + [anon_sym_starts_DASHwith] = ACTIONS(3063), + [anon_sym_ends_DASHwith] = ACTIONS(3063), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3063), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3063), + [aux_sym_cmd_identifier_token41] = ACTIONS(3067), + [sym__newline] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), + [sym_filesize_unit] = ACTIONS(4017), + [sym_duration_unit] = ACTIONS(4019), + [anon_sym_POUND] = ACTIONS(3), }, [1256] = { [sym_comment] = STATE(1256), - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [anon_sym_null] = ACTIONS(1530), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1530), - [aux_sym_cmd_identifier_token40] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1528), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), - [anon_sym_DOT_DOT_LT] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token1] = ACTIONS(1528), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [anon_sym_0b] = ACTIONS(1528), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1528), - [anon_sym_0x] = ACTIONS(1528), - [sym_val_date] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token1] = ACTIONS(1528), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1530), + [anon_sym_STAR_STAR] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_mod] = ACTIONS(1623), + [anon_sym_SLASH_SLASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_bit_DASHshl] = ACTIONS(1623), + [anon_sym_bit_DASHshr] = ACTIONS(1623), + [anon_sym_EQ_TILDE] = ACTIONS(1623), + [anon_sym_BANG_TILDE] = ACTIONS(1623), + [anon_sym_bit_DASHand] = ACTIONS(1623), + [anon_sym_bit_DASHxor] = ACTIONS(1623), + [anon_sym_bit_DASHor] = ACTIONS(1623), + [anon_sym_and] = ACTIONS(1623), + [anon_sym_xor] = ACTIONS(1623), + [anon_sym_or] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_not_DASHin] = ACTIONS(1623), + [anon_sym_starts_DASHwith] = ACTIONS(1623), + [anon_sym_ends_DASHwith] = ACTIONS(1623), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [aux_sym_cmd_identifier_token41] = ACTIONS(1621), + [sym__newline] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_err_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_GT_PIPE] = ACTIONS(1621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_in2] = ACTIONS(1621), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1621), + [anon_sym_xor2] = ACTIONS(1621), + [anon_sym_or2] = ACTIONS(1621), + [anon_sym_not_DASHin2] = ACTIONS(1621), + [anon_sym_starts_DASHwith2] = ACTIONS(1621), + [anon_sym_ends_DASHwith2] = ACTIONS(1621), + [anon_sym_EQ_EQ2] = ACTIONS(1621), + [anon_sym_BANG_EQ2] = ACTIONS(1621), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1621), + [anon_sym_GT_EQ2] = ACTIONS(1621), + [anon_sym_EQ_TILDE2] = ACTIONS(1621), + [anon_sym_BANG_TILDE2] = ACTIONS(1621), + [anon_sym_STAR_STAR2] = ACTIONS(1621), + [anon_sym_PLUS_PLUS2] = ACTIONS(1621), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1621), + [anon_sym_SLASH_SLASH2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1621), + [anon_sym_bit_DASHshr2] = ACTIONS(1621), + [anon_sym_bit_DASHand2] = ACTIONS(1621), + [anon_sym_bit_DASHxor2] = ACTIONS(1621), + [anon_sym_bit_DASHor2] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [1257] = { + [sym_expr_parenthesized] = STATE(6596), + [sym_val_range] = STATE(7953), + [sym__val_range] = STATE(7572), + [sym__value] = STATE(7953), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(7458), + [sym_val_variable] = STATE(3658), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(5700), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(7954), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1598), - [aux_sym_cmd_identifier_token38] = ACTIONS(1598), - [aux_sym_cmd_identifier_token39] = ACTIONS(1598), - [aux_sym_cmd_identifier_token40] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_DOLLAR] = ACTIONS(1596), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), - [anon_sym_DOT_DOT_LT] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token1] = ACTIONS(1596), - [aux_sym__val_number_decimal_token2] = ACTIONS(1598), - [aux_sym__val_number_decimal_token3] = ACTIONS(1598), - [aux_sym__val_number_decimal_token4] = ACTIONS(1598), - [aux_sym__val_number_token1] = ACTIONS(1598), - [aux_sym__val_number_token2] = ACTIONS(1598), - [aux_sym__val_number_token3] = ACTIONS(1598), - [anon_sym_0b] = ACTIONS(1596), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [sym__str_single_quotes] = ACTIONS(1598), - [sym__str_back_ticks] = ACTIONS(1598), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token1] = ACTIONS(1596), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(3983), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_DOT_DOT] = ACTIONS(3989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3991), + [anon_sym_DOT_DOT_LT] = ACTIONS(3991), + [anon_sym_null] = ACTIONS(3993), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = 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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4005), + [aux_sym__val_number_token5] = ACTIONS(4005), + [aux_sym__val_number_token6] = ACTIONS(4005), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1258] = { + [sym__expr_parenthesized_immediate] = STATE(1524), + [sym__immediate_decimal] = STATE(1440), + [sym_val_variable] = STATE(1524), [sym_comment] = STATE(1258), - [anon_sym_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1068), - [anon_sym_DASH_EQ] = ACTIONS(1068), - [anon_sym_STAR_EQ] = ACTIONS(1068), - [anon_sym_SLASH_EQ] = ACTIONS(1068), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1068), - [sym__newline] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_err_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_GT_PIPE] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1068), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1068), - [anon_sym_DOT_DOT2] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), - [anon_sym_err_GT] = ACTIONS(1066), - [anon_sym_out_GT] = ACTIONS(1066), - [anon_sym_e_GT] = ACTIONS(1066), - [anon_sym_o_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT] = ACTIONS(1066), - [anon_sym_err_GT_GT] = ACTIONS(1068), - [anon_sym_out_GT_GT] = ACTIONS(1068), - [anon_sym_e_GT_GT] = ACTIONS(1068), - [anon_sym_o_GT_GT] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_err_GT_PIPE] = ACTIONS(1544), + [anon_sym_out_GT_PIPE] = ACTIONS(1544), + [anon_sym_e_GT_PIPE] = ACTIONS(1544), + [anon_sym_o_GT_PIPE] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(4021), + [anon_sym_DOT] = ACTIONS(4023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1544), + [anon_sym_DOT_DOT_LT] = ACTIONS(1544), + [aux_sym__immediate_decimal_token1] = ACTIONS(4025), + [aux_sym__immediate_decimal_token3] = ACTIONS(4027), + [aux_sym__immediate_decimal_token4] = ACTIONS(4029), + [aux_sym__immediate_decimal_token5] = ACTIONS(4031), + [anon_sym_null] = ACTIONS(1544), + [anon_sym_true] = ACTIONS(1544), + [anon_sym_false] = ACTIONS(1544), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1544), + [aux_sym__val_number_token2] = ACTIONS(1544), + [aux_sym__val_number_token3] = ACTIONS(1544), + [aux_sym__val_number_token4] = ACTIONS(1544), + [aux_sym__val_number_token5] = ACTIONS(1544), + [aux_sym__val_number_token6] = ACTIONS(1544), + [anon_sym_0b] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1530), + [anon_sym_0x] = ACTIONS(1530), + [sym_val_date] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [sym__str_single_quotes] = ACTIONS(1544), + [sym__str_back_ticks] = ACTIONS(1544), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1544), + [anon_sym_out_GT_GT] = ACTIONS(1544), + [anon_sym_e_GT_GT] = ACTIONS(1544), + [anon_sym_o_GT_GT] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), + [aux_sym_unquoted_token1] = ACTIONS(1530), + [aux_sym_unquoted_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1544), }, [1259] = { + [sym__expr_parenthesized_immediate] = STATE(1576), + [sym__immediate_decimal] = STATE(1456), + [sym_val_variable] = STATE(1576), [sym_comment] = STATE(1259), - [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(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), - [anon_sym_LBRACE] = 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(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = 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), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1544), + [sym__newline] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_err_GT_PIPE] = ACTIONS(1544), + [anon_sym_out_GT_PIPE] = ACTIONS(1544), + [anon_sym_e_GT_PIPE] = ACTIONS(1544), + [anon_sym_o_GT_PIPE] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(4033), + [anon_sym_DOT] = ACTIONS(4035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1544), + [anon_sym_DOT_DOT_LT] = ACTIONS(1544), + [aux_sym__immediate_decimal_token1] = ACTIONS(4037), + [aux_sym__immediate_decimal_token3] = ACTIONS(4039), + [aux_sym__immediate_decimal_token4] = ACTIONS(4041), + [aux_sym__immediate_decimal_token5] = ACTIONS(4043), + [anon_sym_null] = ACTIONS(1544), + [anon_sym_true] = ACTIONS(1544), + [anon_sym_false] = ACTIONS(1544), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1544), + [aux_sym__val_number_token2] = ACTIONS(1544), + [aux_sym__val_number_token3] = ACTIONS(1544), + [aux_sym__val_number_token4] = ACTIONS(1544), + [aux_sym__val_number_token5] = ACTIONS(1544), + [aux_sym__val_number_token6] = ACTIONS(1544), + [anon_sym_0b] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1530), + [anon_sym_0x] = ACTIONS(1530), + [sym_val_date] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [sym__str_single_quotes] = ACTIONS(1544), + [sym__str_back_ticks] = ACTIONS(1544), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1544), + [anon_sym_out_GT_GT] = ACTIONS(1544), + [anon_sym_e_GT_GT] = ACTIONS(1544), + [anon_sym_o_GT_GT] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), + [aux_sym_unquoted_token1] = ACTIONS(1530), + [aux_sym_unquoted_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1544), }, [1260] = { + [sym__expr_parenthesized_immediate] = STATE(1521), + [sym__immediate_decimal] = STATE(1522), + [sym_val_variable] = STATE(1521), [sym_comment] = STATE(1260), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4608), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH2] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(4021), + [anon_sym_DOT] = ACTIONS(4045), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT] = ACTIONS(1591), + [aux_sym__immediate_decimal_token1] = ACTIONS(4047), + [aux_sym__immediate_decimal_token3] = ACTIONS(4049), + [aux_sym__immediate_decimal_token4] = ACTIONS(4051), + [aux_sym__immediate_decimal_token5] = ACTIONS(4053), + [anon_sym_null] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1581), + [aux_sym__val_number_decimal_token2] = ACTIONS(1581), + [aux_sym__val_number_decimal_token3] = ACTIONS(1581), + [aux_sym__val_number_decimal_token4] = ACTIONS(1581), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [aux_sym__val_number_token4] = ACTIONS(1591), + [aux_sym__val_number_token5] = ACTIONS(1591), + [aux_sym__val_number_token6] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1581), + [anon_sym_0o] = ACTIONS(1581), + [anon_sym_0x] = ACTIONS(1581), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1581), + [anon_sym_out_GT] = ACTIONS(1581), + [anon_sym_e_GT] = ACTIONS(1581), + [anon_sym_o_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT] = ACTIONS(1581), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1591), }, [1261] = { + [sym__expr_parenthesized_immediate] = STATE(1836), + [sym__immediate_decimal] = STATE(1631), + [sym_val_variable] = STATE(1836), [sym_comment] = STATE(1261), - [ts_builtin_sym_end] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [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_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(4635), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [aux_sym_unquoted_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [sym__newline] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_err_GT_PIPE] = ACTIONS(1544), + [anon_sym_out_GT_PIPE] = ACTIONS(1544), + [anon_sym_e_GT_PIPE] = ACTIONS(1544), + [anon_sym_o_GT_PIPE] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(4055), + [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(4057), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1544), + [anon_sym_DOT_DOT_LT] = ACTIONS(1544), + [aux_sym__immediate_decimal_token1] = ACTIONS(4059), + [aux_sym__immediate_decimal_token3] = ACTIONS(4061), + [aux_sym__immediate_decimal_token4] = ACTIONS(4063), + [aux_sym__immediate_decimal_token5] = ACTIONS(4065), + [anon_sym_null] = ACTIONS(1544), + [anon_sym_true] = ACTIONS(1544), + [anon_sym_false] = ACTIONS(1544), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1544), + [aux_sym__val_number_token2] = ACTIONS(1544), + [aux_sym__val_number_token3] = ACTIONS(1544), + [aux_sym__val_number_token4] = ACTIONS(1544), + [aux_sym__val_number_token5] = ACTIONS(1544), + [aux_sym__val_number_token6] = ACTIONS(1544), + [anon_sym_0b] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1530), + [anon_sym_0x] = ACTIONS(1530), + [sym_val_date] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [sym__str_single_quotes] = ACTIONS(1544), + [sym__str_back_ticks] = ACTIONS(1544), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1544), + [anon_sym_out_GT_GT] = ACTIONS(1544), + [anon_sym_e_GT_GT] = ACTIONS(1544), + [anon_sym_o_GT_GT] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), + [aux_sym_unquoted_token1] = ACTIONS(1530), + [aux_sym_unquoted_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1544), }, [1262] = { [sym_comment] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1538), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), - [anon_sym_DOT_DOT_LT] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(1536), - [aux_sym__val_number_decimal_token2] = ACTIONS(1538), - [aux_sym__val_number_decimal_token3] = ACTIONS(1538), - [aux_sym__val_number_decimal_token4] = ACTIONS(1538), - [aux_sym__val_number_token1] = ACTIONS(1538), - [aux_sym__val_number_token2] = ACTIONS(1538), - [aux_sym__val_number_token3] = ACTIONS(1538), - [anon_sym_0b] = ACTIONS(1536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_0o] = ACTIONS(1536), - [anon_sym_0x] = ACTIONS(1536), - [sym_val_date] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym__str_single_quotes] = ACTIONS(1538), - [sym__str_back_ticks] = ACTIONS(1538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token1] = ACTIONS(1536), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1538), + [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(1621), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(4067), + [aux_sym__immediate_decimal_token2] = ACTIONS(4069), + [anon_sym_null] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1623), + [aux_sym__val_number_decimal_token3] = ACTIONS(1623), + [aux_sym__val_number_decimal_token4] = ACTIONS(1623), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1623), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1623), + [anon_sym_0b] = ACTIONS(1621), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1623), + [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_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1623), }, [1263] = { + [sym__expr_parenthesized_immediate] = STATE(1850), + [sym__immediate_decimal] = STATE(1640), + [sym_val_variable] = STATE(1850), [sym_comment] = STATE(1263), - [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), - [anon_sym_QMARK2] = 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(249), + [sym__newline] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_err_GT_PIPE] = ACTIONS(1577), + [anon_sym_out_GT_PIPE] = ACTIONS(1577), + [anon_sym_e_GT_PIPE] = ACTIONS(1577), + [anon_sym_o_GT_PIPE] = ACTIONS(1577), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1577), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1577), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1577), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1577), + [anon_sym_DOLLAR] = ACTIONS(4055), + [anon_sym_DASH_DASH] = ACTIONS(1577), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1577), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(4057), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1577), + [anon_sym_DOT_DOT_LT] = ACTIONS(1577), + [aux_sym__immediate_decimal_token1] = ACTIONS(4059), + [aux_sym__immediate_decimal_token3] = ACTIONS(4061), + [aux_sym__immediate_decimal_token4] = ACTIONS(4063), + [aux_sym__immediate_decimal_token5] = ACTIONS(4065), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [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(1577), + [aux_sym__val_number_token2] = ACTIONS(1577), + [aux_sym__val_number_token3] = ACTIONS(1577), + [aux_sym__val_number_token4] = ACTIONS(1577), + [aux_sym__val_number_token5] = ACTIONS(1577), + [aux_sym__val_number_token6] = ACTIONS(1577), + [anon_sym_0b] = ACTIONS(1565), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1577), + [sym__str_single_quotes] = ACTIONS(1577), + [sym__str_back_ticks] = ACTIONS(1577), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1577), + [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(1577), + [anon_sym_out_GT_GT] = ACTIONS(1577), + [anon_sym_e_GT_GT] = ACTIONS(1577), + [anon_sym_o_GT_GT] = ACTIONS(1577), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1577), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1577), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1577), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1577), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1577), }, [1264] = { [sym_comment] = STATE(1264), - [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_QMARK2] = ACTIONS(1060), - [anon_sym_DOT_DOT2] = ACTIONS(1058), - [anon_sym_DOT] = 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(249), - [sym_raw_string_begin] = ACTIONS(1060), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(4071), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(4073), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1609), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1609), + [anon_sym_0b] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1609), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [sym_val_date] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), }, [1265] = { [sym_comment] = STATE(1265), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [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(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(4075), + [aux_sym__immediate_decimal_token2] = ACTIONS(4077), + [anon_sym_null] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1623), + [aux_sym__val_number_decimal_token3] = ACTIONS(1623), + [aux_sym__val_number_decimal_token4] = ACTIONS(1623), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1623), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1623), + [anon_sym_0b] = ACTIONS(1621), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1623), + [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_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1623), }, [1266] = { + [sym__expr_parenthesized_immediate] = STATE(1598), + [sym__immediate_decimal] = STATE(1646), + [sym_val_variable] = STATE(1598), [sym_comment] = STATE(1266), - [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_QMARK2] = 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] = 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(249), + [ts_builtin_sym_end] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH2] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(4033), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT] = ACTIONS(1591), + [aux_sym__immediate_decimal_token1] = ACTIONS(4081), + [aux_sym__immediate_decimal_token3] = ACTIONS(4083), + [aux_sym__immediate_decimal_token4] = ACTIONS(4085), + [aux_sym__immediate_decimal_token5] = ACTIONS(4087), + [anon_sym_null] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1581), + [aux_sym__val_number_decimal_token2] = ACTIONS(1581), + [aux_sym__val_number_decimal_token3] = ACTIONS(1581), + [aux_sym__val_number_decimal_token4] = ACTIONS(1581), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [aux_sym__val_number_token4] = ACTIONS(1591), + [aux_sym__val_number_token5] = ACTIONS(1591), + [aux_sym__val_number_token6] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1581), + [anon_sym_0o] = ACTIONS(1581), + [anon_sym_0x] = ACTIONS(1581), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1581), + [anon_sym_out_GT] = ACTIONS(1581), + [anon_sym_e_GT] = ACTIONS(1581), + [anon_sym_o_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT] = ACTIONS(1581), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1591), }, [1267] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5242), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6060), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1267), - [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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), - [anon_sym_DOT_DOT_LT] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [aux_sym_unquoted_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4101), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [aux_sym__val_number_decimal_token1] = ACTIONS(4105), + [aux_sym__val_number_decimal_token2] = ACTIONS(4107), + [aux_sym__val_number_decimal_token3] = ACTIONS(4109), + [aux_sym__val_number_decimal_token4] = ACTIONS(4111), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4113), + [aux_sym__val_number_token5] = ACTIONS(4113), + [aux_sym__val_number_token6] = ACTIONS(4113), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4115), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1268] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6063), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(7042), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5550), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6064), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1268), - [anon_sym_EQ] = ACTIONS(1074), - [anon_sym_PLUS_EQ] = ACTIONS(1076), - [anon_sym_DASH_EQ] = ACTIONS(1076), - [anon_sym_STAR_EQ] = ACTIONS(1076), - [anon_sym_SLASH_EQ] = ACTIONS(1076), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1076), - [sym__newline] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_err_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_GT_PIPE] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), - [anon_sym_RPAREN] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1076), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1076), - [anon_sym_DOT_DOT2] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), - [anon_sym_err_GT] = ACTIONS(1074), - [anon_sym_out_GT] = ACTIONS(1074), - [anon_sym_e_GT] = ACTIONS(1074), - [anon_sym_o_GT] = ACTIONS(1074), - [anon_sym_err_PLUSout_GT] = ACTIONS(1074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), - [anon_sym_o_PLUSe_GT] = ACTIONS(1074), - [anon_sym_e_PLUSo_GT] = ACTIONS(1074), - [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), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4121), + [anon_sym_true] = ACTIONS(4123), + [anon_sym_false] = ACTIONS(4123), + [aux_sym__val_number_decimal_token1] = ACTIONS(4125), + [aux_sym__val_number_decimal_token2] = ACTIONS(4127), + [aux_sym__val_number_decimal_token3] = ACTIONS(4129), + [aux_sym__val_number_decimal_token4] = ACTIONS(4131), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4133), + [aux_sym__val_number_token5] = ACTIONS(4133), + [aux_sym__val_number_token6] = ACTIONS(4133), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4135), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1269] = { [sym_comment] = STATE(1269), - [ts_builtin_sym_end] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [aux_sym_cmd_identifier_token38] = ACTIONS(1640), - [aux_sym_cmd_identifier_token39] = ACTIONS(1640), - [aux_sym_cmd_identifier_token40] = ACTIONS(1640), - [sym__newline] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_err_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_GT_PIPE] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_DOT_DOT] = ACTIONS(1628), - [anon_sym_DOT_DOT2] = ACTIONS(4614), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), - [anon_sym_DOT_DOT_LT] = ACTIONS(1628), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4616), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4616), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_decimal_token2] = ACTIONS(1640), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_decimal_token4] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [anon_sym_0b] = ACTIONS(1628), - [sym_filesize_unit] = ACTIONS(4641), - [sym_duration_unit] = ACTIONS(4643), - [anon_sym_0o] = ACTIONS(1628), - [anon_sym_0x] = ACTIONS(1628), - [sym_val_date] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [anon_sym_err_GT_GT] = ACTIONS(1640), - [anon_sym_out_GT_GT] = ACTIONS(1640), - [anon_sym_e_GT_GT] = ACTIONS(1640), - [anon_sym_o_GT_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), - [aux_sym_unquoted_token1] = ACTIONS(1628), - [aux_sym_unquoted_token2] = ACTIONS(4645), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1640), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(4073), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1609), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1609), + [anon_sym_0b] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1609), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [sym_val_date] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), }, [1270] = { [sym_comment] = STATE(1270), - [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), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_DOT_DOT] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(4647), - [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(249), - [sym_raw_string_begin] = ACTIONS(1050), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), + [anon_sym_DOT_DOT_LT] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(4137), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [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), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1675), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_0o] = ACTIONS(1673), + [anon_sym_0x] = ACTIONS(1673), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token1] = ACTIONS(1673), + [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1675), }, [1271] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6049), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5242), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6050), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1271), - [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(4649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), - [anon_sym_DOT_DOT_LT] = ACTIONS(1788), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4651), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4651), - [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(1526), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4101), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [aux_sym__val_number_decimal_token1] = ACTIONS(4105), + [aux_sym__val_number_decimal_token2] = ACTIONS(4107), + [aux_sym__val_number_decimal_token3] = ACTIONS(4109), + [aux_sym__val_number_decimal_token4] = ACTIONS(4111), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4113), + [aux_sym__val_number_token5] = ACTIONS(4113), + [aux_sym__val_number_token6] = ACTIONS(4113), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4115), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1272] = { + [sym__match_pattern_expression] = STATE(3107), + [sym__match_pattern_value] = STATE(3147), + [sym__match_pattern_list] = STATE(3109), + [sym__match_pattern_rest] = STATE(7558), + [sym__match_pattern_record] = STATE(3111), + [sym_expr_parenthesized] = STATE(2878), + [sym_val_range] = STATE(3147), + [sym__val_range] = STATE(7888), + [sym_val_nothing] = STATE(3095), + [sym_val_bool] = STATE(3079), + [sym_val_variable] = STATE(2883), + [sym_val_number] = STATE(3095), + [sym__val_number_decimal] = STATE(2727), + [sym__val_number] = STATE(3096), + [sym_val_duration] = STATE(3095), + [sym_val_filesize] = STATE(3095), + [sym_val_binary] = STATE(3095), + [sym_val_string] = STATE(3095), + [sym__raw_str] = STATE(3110), + [sym__str_double_quotes] = STATE(3110), + [sym_val_table] = STATE(3095), + [sym__unquoted_in_list] = STATE(3107), + [sym__unquoted_anonymous_prefix] = STATE(7642), [sym_comment] = STATE(1272), - [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(4653), - [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(249), - [sym_raw_string_begin] = ACTIONS(1044), + [aux_sym__match_pattern_list_repeat1] = STATE(1357), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_DOLLAR] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3867), + [anon_sym_DOT_DOT] = ACTIONS(4143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3871), + [anon_sym_DOT_DOT_LT] = ACTIONS(3871), + [anon_sym_null] = ACTIONS(3873), + [anon_sym_true] = ACTIONS(3875), + [anon_sym_false] = ACTIONS(3875), + [aux_sym__val_number_decimal_token1] = ACTIONS(3877), + [aux_sym__val_number_decimal_token2] = ACTIONS(3879), + [aux_sym__val_number_decimal_token3] = ACTIONS(3881), + [aux_sym__val_number_decimal_token4] = ACTIONS(3883), + [aux_sym__val_number_token1] = ACTIONS(3885), + [aux_sym__val_number_token2] = ACTIONS(3885), + [aux_sym__val_number_token3] = ACTIONS(3885), + [aux_sym__val_number_token4] = ACTIONS(3887), + [aux_sym__val_number_token5] = ACTIONS(3887), + [aux_sym__val_number_token6] = ACTIONS(3887), + [anon_sym_0b] = ACTIONS(3889), + [anon_sym_0o] = ACTIONS(3891), + [anon_sym_0x] = ACTIONS(3891), + [sym_val_date] = ACTIONS(3893), + [anon_sym_DQUOTE] = ACTIONS(3895), + [sym__str_single_quotes] = ACTIONS(3897), + [sym__str_back_ticks] = ACTIONS(3897), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3899), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3901), }, [1273] = { + [sym__match_pattern_expression] = STATE(3107), + [sym__match_pattern_value] = STATE(3147), + [sym__match_pattern_list] = STATE(3109), + [sym__match_pattern_rest] = STATE(7960), + [sym__match_pattern_record] = STATE(3111), + [sym_expr_parenthesized] = STATE(2878), + [sym_val_range] = STATE(3147), + [sym__val_range] = STATE(7888), + [sym_val_nothing] = STATE(3095), + [sym_val_bool] = STATE(3079), + [sym_val_variable] = STATE(2883), + [sym_val_number] = STATE(3095), + [sym__val_number_decimal] = STATE(2727), + [sym__val_number] = STATE(3096), + [sym_val_duration] = STATE(3095), + [sym_val_filesize] = STATE(3095), + [sym_val_binary] = STATE(3095), + [sym_val_string] = STATE(3095), + [sym__raw_str] = STATE(3110), + [sym__str_double_quotes] = STATE(3110), + [sym_val_table] = STATE(3095), + [sym__unquoted_in_list] = STATE(3107), + [sym__unquoted_anonymous_prefix] = STATE(7642), [sym_comment] = STATE(1273), - [ts_builtin_sym_end] = ACTIONS(1064), - [anon_sym_EQ] = ACTIONS(1062), - [anon_sym_PLUS_EQ] = ACTIONS(1064), - [anon_sym_DASH_EQ] = ACTIONS(1064), - [anon_sym_STAR_EQ] = ACTIONS(1064), - [anon_sym_SLASH_EQ] = ACTIONS(1064), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1064), - [sym__newline] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_err_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_GT_PIPE] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), - [anon_sym_QMARK2] = ACTIONS(1064), - [aux_sym_expr_binary_token1] = ACTIONS(1064), - [aux_sym_expr_binary_token2] = ACTIONS(1064), - [aux_sym_expr_binary_token3] = ACTIONS(1064), - [aux_sym_expr_binary_token4] = ACTIONS(1064), - [aux_sym_expr_binary_token5] = ACTIONS(1064), - [aux_sym_expr_binary_token6] = ACTIONS(1064), - [aux_sym_expr_binary_token7] = ACTIONS(1064), - [aux_sym_expr_binary_token8] = ACTIONS(1064), - [aux_sym_expr_binary_token9] = ACTIONS(1064), - [aux_sym_expr_binary_token10] = ACTIONS(1064), - [aux_sym_expr_binary_token11] = ACTIONS(1064), - [aux_sym_expr_binary_token12] = ACTIONS(1064), - [aux_sym_expr_binary_token13] = ACTIONS(1064), - [aux_sym_expr_binary_token14] = ACTIONS(1064), - [aux_sym_expr_binary_token15] = ACTIONS(1064), - [aux_sym_expr_binary_token16] = ACTIONS(1064), - [aux_sym_expr_binary_token17] = ACTIONS(1064), - [aux_sym_expr_binary_token18] = ACTIONS(1064), - [aux_sym_expr_binary_token19] = ACTIONS(1064), - [aux_sym_expr_binary_token20] = ACTIONS(1064), - [aux_sym_expr_binary_token21] = ACTIONS(1064), - [aux_sym_expr_binary_token22] = ACTIONS(1064), - [aux_sym_expr_binary_token23] = ACTIONS(1064), - [aux_sym_expr_binary_token24] = ACTIONS(1064), - [aux_sym_expr_binary_token25] = ACTIONS(1064), - [aux_sym_expr_binary_token26] = ACTIONS(1064), - [aux_sym_expr_binary_token27] = ACTIONS(1064), - [aux_sym_expr_binary_token28] = ACTIONS(1064), - [anon_sym_DOT_DOT2] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), - [anon_sym_err_GT] = ACTIONS(1062), - [anon_sym_out_GT] = ACTIONS(1062), - [anon_sym_e_GT] = ACTIONS(1062), - [anon_sym_o_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT] = ACTIONS(1062), - [anon_sym_err_GT_GT] = ACTIONS(1064), - [anon_sym_out_GT_GT] = ACTIONS(1064), - [anon_sym_e_GT_GT] = ACTIONS(1064), - [anon_sym_o_GT_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym__match_pattern_list_repeat1] = STATE(1357), + [anon_sym_LBRACK] = ACTIONS(4139), + [anon_sym_RBRACK] = ACTIONS(4145), + [anon_sym_LPAREN] = ACTIONS(3863), + [anon_sym_DOLLAR] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3867), + [anon_sym_DOT_DOT] = ACTIONS(4147), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3871), + [anon_sym_DOT_DOT_LT] = ACTIONS(3871), + [anon_sym_null] = ACTIONS(3873), + [anon_sym_true] = ACTIONS(3875), + [anon_sym_false] = ACTIONS(3875), + [aux_sym__val_number_decimal_token1] = ACTIONS(3877), + [aux_sym__val_number_decimal_token2] = ACTIONS(3879), + [aux_sym__val_number_decimal_token3] = ACTIONS(3881), + [aux_sym__val_number_decimal_token4] = ACTIONS(3883), + [aux_sym__val_number_token1] = ACTIONS(3885), + [aux_sym__val_number_token2] = ACTIONS(3885), + [aux_sym__val_number_token3] = ACTIONS(3885), + [aux_sym__val_number_token4] = ACTIONS(3887), + [aux_sym__val_number_token5] = ACTIONS(3887), + [aux_sym__val_number_token6] = ACTIONS(3887), + [anon_sym_0b] = ACTIONS(3889), + [anon_sym_0o] = ACTIONS(3891), + [anon_sym_0x] = ACTIONS(3891), + [sym_val_date] = ACTIONS(3893), + [anon_sym_DQUOTE] = ACTIONS(3895), + [sym__str_single_quotes] = ACTIONS(3897), + [sym__str_back_ticks] = ACTIONS(3897), + [anon_sym_err_GT] = ACTIONS(2590), + [anon_sym_out_GT] = ACTIONS(2590), + [anon_sym_e_GT] = ACTIONS(2590), + [anon_sym_o_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT] = ACTIONS(2590), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3899), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3901), }, [1274] = { - [sym_path] = STATE(1369), + [sym__val_range] = STATE(7991), + [sym__value] = STATE(2976), + [sym_val_nothing] = STATE(2914), + [sym_val_bool] = STATE(2880), + [sym_val_variable] = STATE(2914), + [sym_val_number] = STATE(2914), + [sym__val_number_decimal] = STATE(2552), + [sym__val_number] = STATE(2910), + [sym_val_duration] = STATE(2914), + [sym_val_filesize] = STATE(2914), + [sym_val_binary] = STATE(2914), + [sym_val_string] = STATE(2914), + [sym__raw_str] = STATE(2922), + [sym__str_double_quotes] = STATE(2922), + [sym_val_interpolated] = STATE(2914), + [sym__inter_single_quotes] = STATE(2978), + [sym__inter_double_quotes] = STATE(2970), + [sym_val_list] = STATE(2914), + [sym_val_record] = STATE(2914), + [sym_val_table] = STATE(2914), + [sym_val_closure] = STATE(2914), + [sym_unquoted] = STATE(2980), + [sym__unquoted_anonymous_prefix] = STATE(7589), [sym_comment] = STATE(1274), - [aux_sym_cell_path_repeat1] = STATE(1251), - [ts_builtin_sym_end] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1029), - [aux_sym_cmd_identifier_token38] = ACTIONS(1029), - [aux_sym_cmd_identifier_token39] = ACTIONS(1029), - [aux_sym_cmd_identifier_token40] = ACTIONS(1029), - [sym__newline] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_err_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_GT_PIPE] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT2] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), - [anon_sym_DOT_DOT_LT] = ACTIONS(1027), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), - [aux_sym__val_number_decimal_token1] = ACTIONS(1027), - [aux_sym__val_number_decimal_token2] = ACTIONS(1029), - [aux_sym__val_number_decimal_token3] = ACTIONS(1029), - [aux_sym__val_number_decimal_token4] = ACTIONS(1029), - [aux_sym__val_number_token1] = ACTIONS(1029), - [aux_sym__val_number_token2] = ACTIONS(1029), - [aux_sym__val_number_token3] = ACTIONS(1029), - [anon_sym_0b] = ACTIONS(1027), - [anon_sym_0o] = ACTIONS(1027), - [anon_sym_0x] = ACTIONS(1027), - [sym_val_date] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), - [anon_sym_err_GT] = ACTIONS(1027), - [anon_sym_out_GT] = ACTIONS(1027), - [anon_sym_e_GT] = ACTIONS(1027), - [anon_sym_o_GT] = ACTIONS(1027), - [anon_sym_err_PLUSout_GT] = ACTIONS(1027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), - [anon_sym_o_PLUSe_GT] = ACTIONS(1027), - [anon_sym_e_PLUSo_GT] = ACTIONS(1027), - [anon_sym_err_GT_GT] = ACTIONS(1029), - [anon_sym_out_GT_GT] = ACTIONS(1029), - [anon_sym_e_GT_GT] = ACTIONS(1029), - [anon_sym_o_GT_GT] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), - [aux_sym_unquoted_token1] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4151), + [anon_sym_DOLLAR] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_DOT_DOT] = ACTIONS(4157), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4159), + [anon_sym_DOT_DOT_LT] = ACTIONS(4159), + [anon_sym_null] = ACTIONS(4161), + [anon_sym_true] = ACTIONS(4163), + [anon_sym_false] = ACTIONS(4163), + [aux_sym__val_number_decimal_token1] = ACTIONS(4165), + [aux_sym__val_number_decimal_token2] = ACTIONS(4167), + [aux_sym__val_number_decimal_token3] = ACTIONS(4169), + [aux_sym__val_number_decimal_token4] = ACTIONS(4171), + [aux_sym__val_number_token1] = ACTIONS(4173), + [aux_sym__val_number_token2] = ACTIONS(4173), + [aux_sym__val_number_token3] = ACTIONS(4173), + [aux_sym__val_number_token4] = ACTIONS(4175), + [aux_sym__val_number_token5] = ACTIONS(4175), + [aux_sym__val_number_token6] = ACTIONS(4175), + [anon_sym_0b] = ACTIONS(4177), + [anon_sym_0o] = ACTIONS(4179), + [anon_sym_0x] = ACTIONS(4179), + [sym_val_date] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(4183), + [sym__str_single_quotes] = ACTIONS(4185), + [sym__str_back_ticks] = ACTIONS(4185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4193), }, [1275] = { + [sym__val_range] = STATE(7991), + [sym__value] = STATE(2985), + [sym_val_nothing] = STATE(2914), + [sym_val_bool] = STATE(2880), + [sym_val_variable] = STATE(2914), + [sym_val_number] = STATE(2914), + [sym__val_number_decimal] = STATE(2552), + [sym__val_number] = STATE(2910), + [sym_val_duration] = STATE(2914), + [sym_val_filesize] = STATE(2914), + [sym_val_binary] = STATE(2914), + [sym_val_string] = STATE(2914), + [sym__raw_str] = STATE(2922), + [sym__str_double_quotes] = STATE(2922), + [sym_val_interpolated] = STATE(2914), + [sym__inter_single_quotes] = STATE(2978), + [sym__inter_double_quotes] = STATE(2970), + [sym_val_list] = STATE(2914), + [sym_val_record] = STATE(2914), + [sym_val_table] = STATE(2914), + [sym_val_closure] = STATE(2914), + [sym_unquoted] = STATE(2991), + [sym__unquoted_anonymous_prefix] = STATE(7589), [sym_comment] = STATE(1275), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_PLUS_EQ] = ACTIONS(1080), - [anon_sym_DASH_EQ] = ACTIONS(1080), - [anon_sym_STAR_EQ] = ACTIONS(1080), - [anon_sym_SLASH_EQ] = ACTIONS(1080), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1080), - [sym__newline] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_err_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_GT_PIPE] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1080), - [aux_sym_expr_binary_token1] = ACTIONS(1080), - [aux_sym_expr_binary_token2] = ACTIONS(1080), - [aux_sym_expr_binary_token3] = ACTIONS(1080), - [aux_sym_expr_binary_token4] = ACTIONS(1080), - [aux_sym_expr_binary_token5] = ACTIONS(1080), - [aux_sym_expr_binary_token6] = ACTIONS(1080), - [aux_sym_expr_binary_token7] = ACTIONS(1080), - [aux_sym_expr_binary_token8] = ACTIONS(1080), - [aux_sym_expr_binary_token9] = ACTIONS(1080), - [aux_sym_expr_binary_token10] = ACTIONS(1080), - [aux_sym_expr_binary_token11] = ACTIONS(1080), - [aux_sym_expr_binary_token12] = ACTIONS(1080), - [aux_sym_expr_binary_token13] = ACTIONS(1080), - [aux_sym_expr_binary_token14] = ACTIONS(1080), - [aux_sym_expr_binary_token15] = ACTIONS(1080), - [aux_sym_expr_binary_token16] = ACTIONS(1080), - [aux_sym_expr_binary_token17] = ACTIONS(1080), - [aux_sym_expr_binary_token18] = ACTIONS(1080), - [aux_sym_expr_binary_token19] = ACTIONS(1080), - [aux_sym_expr_binary_token20] = ACTIONS(1080), - [aux_sym_expr_binary_token21] = ACTIONS(1080), - [aux_sym_expr_binary_token22] = ACTIONS(1080), - [aux_sym_expr_binary_token23] = ACTIONS(1080), - [aux_sym_expr_binary_token24] = ACTIONS(1080), - [aux_sym_expr_binary_token25] = ACTIONS(1080), - [aux_sym_expr_binary_token26] = ACTIONS(1080), - [aux_sym_expr_binary_token27] = ACTIONS(1080), - [aux_sym_expr_binary_token28] = ACTIONS(1080), - [anon_sym_DOT_DOT2] = ACTIONS(1078), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), - [aux_sym_record_entry_token1] = ACTIONS(1080), - [anon_sym_err_GT] = ACTIONS(1078), - [anon_sym_out_GT] = ACTIONS(1078), - [anon_sym_e_GT] = ACTIONS(1078), - [anon_sym_o_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT] = ACTIONS(1078), - [anon_sym_err_GT_GT] = ACTIONS(1080), - [anon_sym_out_GT_GT] = ACTIONS(1080), - [anon_sym_e_GT_GT] = ACTIONS(1080), - [anon_sym_o_GT_GT] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4151), + [anon_sym_DOLLAR] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_DOT_DOT] = ACTIONS(4157), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4159), + [anon_sym_DOT_DOT_LT] = ACTIONS(4159), + [anon_sym_null] = ACTIONS(4161), + [anon_sym_true] = ACTIONS(4163), + [anon_sym_false] = ACTIONS(4163), + [aux_sym__val_number_decimal_token1] = ACTIONS(4165), + [aux_sym__val_number_decimal_token2] = ACTIONS(4167), + [aux_sym__val_number_decimal_token3] = ACTIONS(4169), + [aux_sym__val_number_decimal_token4] = ACTIONS(4171), + [aux_sym__val_number_token1] = ACTIONS(4173), + [aux_sym__val_number_token2] = ACTIONS(4173), + [aux_sym__val_number_token3] = ACTIONS(4173), + [aux_sym__val_number_token4] = ACTIONS(4175), + [aux_sym__val_number_token5] = ACTIONS(4175), + [aux_sym__val_number_token6] = ACTIONS(4175), + [anon_sym_0b] = ACTIONS(4177), + [anon_sym_0o] = ACTIONS(4179), + [anon_sym_0x] = ACTIONS(4179), + [sym_val_date] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(4183), + [sym__str_single_quotes] = ACTIONS(4185), + [sym__str_back_ticks] = ACTIONS(4185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4193), }, [1276] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6061), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5242), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6065), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1276), - [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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), - [anon_sym_DOT_DOT_LT] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(4655), - [aux_sym__immediate_decimal_token2] = ACTIONS(4657), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4101), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [aux_sym__val_number_decimal_token1] = ACTIONS(4105), + [aux_sym__val_number_decimal_token2] = ACTIONS(4107), + [aux_sym__val_number_decimal_token3] = ACTIONS(4109), + [aux_sym__val_number_decimal_token4] = ACTIONS(4111), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4113), + [aux_sym__val_number_token5] = ACTIONS(4113), + [aux_sym__val_number_token6] = ACTIONS(4113), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4115), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1277] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5262), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6060), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1277), - [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_QMARK2] = ACTIONS(1060), - [anon_sym_DOT_DOT2] = ACTIONS(1058), - [anon_sym_DOT] = 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(249), - [sym_raw_string_begin] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4101), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [aux_sym__val_number_decimal_token1] = ACTIONS(4195), + [aux_sym__val_number_decimal_token2] = ACTIONS(4197), + [aux_sym__val_number_decimal_token3] = ACTIONS(4199), + [aux_sym__val_number_decimal_token4] = ACTIONS(4201), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4203), + [aux_sym__val_number_token5] = ACTIONS(4203), + [aux_sym__val_number_token6] = ACTIONS(4203), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4115), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1278] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6063), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5242), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6064), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1278), - [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(4659), - [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(249), - [sym_raw_string_begin] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4101), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [aux_sym__val_number_decimal_token1] = ACTIONS(4105), + [aux_sym__val_number_decimal_token2] = ACTIONS(4107), + [aux_sym__val_number_decimal_token3] = ACTIONS(4109), + [aux_sym__val_number_decimal_token4] = ACTIONS(4111), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4113), + [aux_sym__val_number_token5] = ACTIONS(4113), + [aux_sym__val_number_token6] = ACTIONS(4113), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4115), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1279] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6049), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5262), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6050), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1279), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4101), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [aux_sym__val_number_decimal_token1] = ACTIONS(4195), + [aux_sym__val_number_decimal_token2] = ACTIONS(4197), + [aux_sym__val_number_decimal_token3] = ACTIONS(4199), + [aux_sym__val_number_decimal_token4] = ACTIONS(4201), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4203), + [aux_sym__val_number_token5] = ACTIONS(4203), + [aux_sym__val_number_token6] = ACTIONS(4203), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4115), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1280] = { [sym_comment] = STATE(1280), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), - [anon_sym_DOT_DOT_LT] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [aux_sym_unquoted_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(4205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(4207), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1609), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1609), + [anon_sym_0b] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1609), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [sym_val_date] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), }, [1281] = { + [sym_cell_path] = STATE(1463), + [sym_path] = STATE(1443), [sym_comment] = STATE(1281), - [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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(4661), - [aux_sym__immediate_decimal_token2] = ACTIONS(4663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [aux_sym_unquoted_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [aux_sym_cell_path_repeat1] = STATE(1374), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(963), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_STAR2] = ACTIONS(961), + [anon_sym_and2] = ACTIONS(963), + [anon_sym_xor2] = ACTIONS(963), + [anon_sym_or2] = ACTIONS(963), + [anon_sym_not_DASHin2] = ACTIONS(963), + [anon_sym_starts_DASHwith2] = ACTIONS(963), + [anon_sym_ends_DASHwith2] = ACTIONS(963), + [anon_sym_EQ_EQ2] = ACTIONS(963), + [anon_sym_BANG_EQ2] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_LT_EQ2] = ACTIONS(963), + [anon_sym_GT_EQ2] = ACTIONS(963), + [anon_sym_EQ_TILDE2] = ACTIONS(963), + [anon_sym_BANG_TILDE2] = ACTIONS(963), + [anon_sym_STAR_STAR2] = ACTIONS(963), + [anon_sym_PLUS_PLUS2] = ACTIONS(961), + [anon_sym_SLASH2] = ACTIONS(961), + [anon_sym_mod2] = ACTIONS(963), + [anon_sym_SLASH_SLASH2] = ACTIONS(963), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_bit_DASHshl2] = ACTIONS(963), + [anon_sym_bit_DASHshr2] = ACTIONS(963), + [anon_sym_bit_DASHand2] = ACTIONS(963), + [anon_sym_bit_DASHxor2] = ACTIONS(963), + [anon_sym_bit_DASHor2] = ACTIONS(963), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4209), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), }, [1282] = { + [sym__val_range] = STATE(7572), + [sym__value] = STATE(6061), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(7458), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(5622), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(6065), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1282), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(4665), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4667), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(3983), + [anon_sym_LPAREN] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(4213), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_DOT_DOT] = ACTIONS(4215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), + [anon_sym_DOT_DOT_LT] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(3993), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = 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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4005), + [aux_sym__val_number_token5] = ACTIONS(4005), + [aux_sym__val_number_token6] = ACTIONS(4005), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1283] = { + [sym__expr_parenthesized_immediate] = STATE(1901), + [sym__immediate_decimal] = STATE(1710), + [sym_val_variable] = STATE(1901), [sym_comment] = STATE(1283), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1530), - [aux_sym_expr_binary_token1] = ACTIONS(1530), - [aux_sym_expr_binary_token2] = ACTIONS(1530), - [aux_sym_expr_binary_token3] = ACTIONS(1530), - [aux_sym_expr_binary_token4] = ACTIONS(1530), - [aux_sym_expr_binary_token5] = ACTIONS(1530), - [aux_sym_expr_binary_token6] = ACTIONS(1530), - [aux_sym_expr_binary_token7] = ACTIONS(1530), - [aux_sym_expr_binary_token8] = ACTIONS(1530), - [aux_sym_expr_binary_token9] = ACTIONS(1530), - [aux_sym_expr_binary_token10] = ACTIONS(1530), - [aux_sym_expr_binary_token11] = ACTIONS(1530), - [aux_sym_expr_binary_token12] = ACTIONS(1530), - [aux_sym_expr_binary_token13] = ACTIONS(1530), - [aux_sym_expr_binary_token14] = ACTIONS(1530), - [aux_sym_expr_binary_token15] = ACTIONS(1530), - [aux_sym_expr_binary_token16] = ACTIONS(1530), - [aux_sym_expr_binary_token17] = ACTIONS(1530), - [aux_sym_expr_binary_token18] = ACTIONS(1530), - [aux_sym_expr_binary_token19] = ACTIONS(1530), - [aux_sym_expr_binary_token20] = ACTIONS(1530), - [aux_sym_expr_binary_token21] = ACTIONS(1530), - [aux_sym_expr_binary_token22] = ACTIONS(1530), - [aux_sym_expr_binary_token23] = ACTIONS(1530), - [aux_sym_expr_binary_token24] = ACTIONS(1530), - [aux_sym_expr_binary_token25] = ACTIONS(1530), - [aux_sym_expr_binary_token26] = ACTIONS(1530), - [aux_sym_expr_binary_token27] = ACTIONS(1530), - [aux_sym_expr_binary_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(4669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4671), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1544), + [sym__newline] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_err_GT_PIPE] = ACTIONS(1544), + [anon_sym_out_GT_PIPE] = ACTIONS(1544), + [anon_sym_e_GT_PIPE] = ACTIONS(1544), + [anon_sym_o_GT_PIPE] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1544), + [anon_sym_DOT_DOT_LT] = ACTIONS(1544), + [aux_sym__immediate_decimal_token1] = ACTIONS(4223), + [aux_sym__immediate_decimal_token3] = ACTIONS(4225), + [aux_sym__immediate_decimal_token4] = ACTIONS(4227), + [aux_sym__immediate_decimal_token5] = ACTIONS(4229), + [anon_sym_null] = ACTIONS(1544), + [anon_sym_true] = ACTIONS(1544), + [anon_sym_false] = ACTIONS(1544), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1544), + [aux_sym__val_number_token2] = ACTIONS(1544), + [aux_sym__val_number_token3] = ACTIONS(1544), + [aux_sym__val_number_token4] = ACTIONS(1544), + [aux_sym__val_number_token5] = ACTIONS(1544), + [aux_sym__val_number_token6] = ACTIONS(1544), + [anon_sym_0b] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1530), + [anon_sym_0x] = ACTIONS(1530), + [sym_val_date] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [sym__str_single_quotes] = ACTIONS(1544), + [sym__str_back_ticks] = ACTIONS(1544), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1544), + [anon_sym_out_GT_GT] = ACTIONS(1544), + [anon_sym_e_GT_GT] = ACTIONS(1544), + [anon_sym_o_GT_GT] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), + [aux_sym_unquoted_token1] = ACTIONS(1530), + [aux_sym_unquoted_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1544), }, [1284] = { + [sym__val_range] = STATE(7572), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(7458), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(5622), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(6060), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1284), - [ts_builtin_sym_end] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [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_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [aux_sym_unquoted_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(3983), + [anon_sym_LPAREN] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(4213), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_DOT_DOT] = ACTIONS(4215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), + [anon_sym_DOT_DOT_LT] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(3993), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = 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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4005), + [aux_sym__val_number_token5] = ACTIONS(4005), + [aux_sym__val_number_token6] = ACTIONS(4005), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1285] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6061), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5262), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6065), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1285), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_err_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_GT_PIPE] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_DOT_DOT] = ACTIONS(1062), - [anon_sym_QMARK2] = ACTIONS(1064), - [anon_sym_DOT_DOT2] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1062), - [anon_sym_DOT_DOT_LT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [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_0b] = ACTIONS(1062), - [anon_sym_0o] = ACTIONS(1062), - [anon_sym_0x] = ACTIONS(1062), - [sym_val_date] = ACTIONS(1064), - [anon_sym_DQUOTE] = ACTIONS(1064), - [sym__str_single_quotes] = ACTIONS(1064), - [sym__str_back_ticks] = ACTIONS(1064), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1064), - [anon_sym_err_GT] = ACTIONS(1062), - [anon_sym_out_GT] = ACTIONS(1062), - [anon_sym_e_GT] = ACTIONS(1062), - [anon_sym_o_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT] = ACTIONS(1062), - [anon_sym_err_GT_GT] = ACTIONS(1064), - [anon_sym_out_GT_GT] = ACTIONS(1064), - [anon_sym_e_GT_GT] = ACTIONS(1064), - [anon_sym_o_GT_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), - [aux_sym_unquoted_token1] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4101), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [aux_sym__val_number_decimal_token1] = ACTIONS(4195), + [aux_sym__val_number_decimal_token2] = ACTIONS(4197), + [aux_sym__val_number_decimal_token3] = ACTIONS(4199), + [aux_sym__val_number_decimal_token4] = ACTIONS(4201), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4203), + [aux_sym__val_number_token5] = ACTIONS(4203), + [aux_sym__val_number_token6] = ACTIONS(4203), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4115), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1286] = { + [sym__val_range] = STATE(7572), + [sym__value] = STATE(5570), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(7366), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(5735), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(5589), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1286), - [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(249), - [sym_raw_string_begin] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(4215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), + [anon_sym_DOT_DOT_LT] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4233), + [anon_sym_true] = ACTIONS(4235), + [anon_sym_false] = ACTIONS(4235), + [aux_sym__val_number_decimal_token1] = ACTIONS(4237), + [aux_sym__val_number_decimal_token2] = ACTIONS(4239), + [aux_sym__val_number_decimal_token3] = ACTIONS(4241), + [aux_sym__val_number_decimal_token4] = ACTIONS(4243), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4245), + [aux_sym__val_number_token5] = ACTIONS(4245), + [aux_sym__val_number_token6] = ACTIONS(4245), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1287] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6063), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(5835), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5262), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6064), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1287), - [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_QMARK2] = ACTIONS(1056), - [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(249), - [sym_raw_string_begin] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4101), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [aux_sym__val_number_decimal_token1] = ACTIONS(4195), + [aux_sym__val_number_decimal_token2] = ACTIONS(4197), + [aux_sym__val_number_decimal_token3] = ACTIONS(4199), + [aux_sym__val_number_decimal_token4] = ACTIONS(4201), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4203), + [aux_sym__val_number_token5] = ACTIONS(4203), + [aux_sym__val_number_token6] = ACTIONS(4203), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4115), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1288] = { + [sym__val_range] = STATE(7572), + [sym__value] = STATE(5612), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(7366), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(5735), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(5617), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1288), - [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(1076), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_err_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_GT_PIPE] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_RPAREN] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_DASH_DASH] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT2] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1074), - [anon_sym_DOT_DOT_LT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1074), - [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(1074), - [anon_sym_0o] = ACTIONS(1074), - [anon_sym_0x] = ACTIONS(1074), - [sym_val_date] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1076), - [sym__str_single_quotes] = ACTIONS(1076), - [sym__str_back_ticks] = ACTIONS(1076), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1076), - [anon_sym_err_GT] = ACTIONS(1074), - [anon_sym_out_GT] = ACTIONS(1074), - [anon_sym_e_GT] = ACTIONS(1074), - [anon_sym_o_GT] = ACTIONS(1074), - [anon_sym_err_PLUSout_GT] = ACTIONS(1074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), - [anon_sym_o_PLUSe_GT] = ACTIONS(1074), - [anon_sym_e_PLUSo_GT] = ACTIONS(1074), - [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(1074), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(4215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), + [anon_sym_DOT_DOT_LT] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4233), + [anon_sym_true] = ACTIONS(4235), + [anon_sym_false] = ACTIONS(4235), + [aux_sym__val_number_decimal_token1] = ACTIONS(4237), + [aux_sym__val_number_decimal_token2] = ACTIONS(4239), + [aux_sym__val_number_decimal_token3] = ACTIONS(4241), + [aux_sym__val_number_decimal_token4] = ACTIONS(4243), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4245), + [aux_sym__val_number_token5] = ACTIONS(4245), + [aux_sym__val_number_token6] = ACTIONS(4245), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1289] = { + [sym__expr_parenthesized_immediate] = STATE(7504), [sym_comment] = STATE(1289), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), - [anon_sym_null] = ACTIONS(1068), - [aux_sym_cmd_identifier_token38] = ACTIONS(1068), - [aux_sym_cmd_identifier_token39] = ACTIONS(1068), - [aux_sym_cmd_identifier_token40] = ACTIONS(1068), - [sym__newline] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_err_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_GT_PIPE] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1066), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT2] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1066), - [anon_sym_DOT_DOT_LT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), - [aux_sym__val_number_decimal_token1] = ACTIONS(1066), - [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_0b] = ACTIONS(1066), - [anon_sym_0o] = ACTIONS(1066), - [anon_sym_0x] = ACTIONS(1066), - [sym_val_date] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym__str_single_quotes] = ACTIONS(1068), - [sym__str_back_ticks] = ACTIONS(1068), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), - [anon_sym_err_GT] = ACTIONS(1066), - [anon_sym_out_GT] = ACTIONS(1066), - [anon_sym_e_GT] = ACTIONS(1066), - [anon_sym_o_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT] = ACTIONS(1066), - [anon_sym_err_GT_GT] = ACTIONS(1068), - [anon_sym_out_GT_GT] = ACTIONS(1068), - [anon_sym_e_GT_GT] = ACTIONS(1068), - [anon_sym_o_GT_GT] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), - [aux_sym_unquoted_token1] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1068), + [sym__newline] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_err_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_GT_PIPE] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1721), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT2] = ACTIONS(4251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4253), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [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), + [aux_sym__val_number_token4] = ACTIONS(1721), + [aux_sym__val_number_token5] = ACTIONS(1721), + [aux_sym__val_number_token6] = ACTIONS(1721), + [anon_sym_0b] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(4255), + [sym_duration_unit] = ACTIONS(4257), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1721), + [anon_sym_out_GT_GT] = ACTIONS(1721), + [anon_sym_e_GT_GT] = ACTIONS(1721), + [anon_sym_o_GT_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1721), }, [1290] = { + [sym__val_range] = STATE(7572), + [sym__value] = STATE(5616), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(7366), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(5735), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(5547), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1290), - [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(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = 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_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(249), - [sym_raw_string_begin] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(4215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), + [anon_sym_DOT_DOT_LT] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4233), + [anon_sym_true] = ACTIONS(4235), + [anon_sym_false] = ACTIONS(4235), + [aux_sym__val_number_decimal_token1] = ACTIONS(4237), + [aux_sym__val_number_decimal_token2] = ACTIONS(4239), + [aux_sym__val_number_decimal_token3] = ACTIONS(4241), + [aux_sym__val_number_decimal_token4] = ACTIONS(4243), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4245), + [aux_sym__val_number_token5] = ACTIONS(4245), + [aux_sym__val_number_token6] = ACTIONS(4245), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1291] = { + [sym__val_range] = STATE(7742), + [sym__value] = STATE(1881), + [sym_val_nothing] = STATE(1890), + [sym_val_bool] = STATE(1851), + [sym_val_variable] = STATE(1890), + [sym_val_number] = STATE(1890), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1944), + [sym_val_duration] = STATE(1890), + [sym_val_filesize] = STATE(1890), + [sym_val_binary] = STATE(1890), + [sym_val_string] = STATE(1890), + [sym__raw_str] = STATE(1873), + [sym__str_double_quotes] = STATE(1873), + [sym_val_interpolated] = STATE(1890), + [sym__inter_single_quotes] = STATE(1966), + [sym__inter_double_quotes] = STATE(1967), + [sym_val_list] = STATE(1890), + [sym_val_record] = STATE(1890), + [sym_val_table] = STATE(1890), + [sym_val_closure] = STATE(1890), + [sym_unquoted] = STATE(1882), + [sym__unquoted_anonymous_prefix] = STATE(7803), [sym_comment] = STATE(1291), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(4263), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4265), + [anon_sym_DOT_DOT_LT] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_true] = ACTIONS(4269), + [anon_sym_false] = 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(2888), + [aux_sym__val_number_token2] = ACTIONS(2888), + [aux_sym__val_number_token3] = ACTIONS(2888), + [aux_sym__val_number_token4] = ACTIONS(4279), + [aux_sym__val_number_token5] = ACTIONS(4279), + [aux_sym__val_number_token6] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(2892), + [anon_sym_0o] = ACTIONS(2894), + [anon_sym_0x] = ACTIONS(2894), + [sym_val_date] = ACTIONS(4281), + [anon_sym_DQUOTE] = ACTIONS(2898), + [sym__str_single_quotes] = ACTIONS(2900), + [sym__str_back_ticks] = ACTIONS(2900), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4283), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2908), }, [1292] = { + [sym__val_range] = STATE(7572), + [sym__value] = STATE(5533), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(7366), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(5735), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(5542), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1292), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_err_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_GT_PIPE] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_DOT_DOT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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_0b] = ACTIONS(1826), - [anon_sym_0o] = ACTIONS(1826), - [anon_sym_0x] = ACTIONS(1826), - [sym_val_date] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(1826), - [anon_sym_out_GT] = ACTIONS(1826), - [anon_sym_e_GT] = ACTIONS(1826), - [anon_sym_o_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT] = ACTIONS(1826), - [anon_sym_err_GT_GT] = ACTIONS(1828), - [anon_sym_out_GT_GT] = ACTIONS(1828), - [anon_sym_e_GT_GT] = ACTIONS(1828), - [anon_sym_o_GT_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), - [aux_sym_unquoted_token1] = ACTIONS(1826), - [aux_sym_unquoted_token2] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(4215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), + [anon_sym_DOT_DOT_LT] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4233), + [anon_sym_true] = ACTIONS(4235), + [anon_sym_false] = ACTIONS(4235), + [aux_sym__val_number_decimal_token1] = ACTIONS(4237), + [aux_sym__val_number_decimal_token2] = ACTIONS(4239), + [aux_sym__val_number_decimal_token3] = ACTIONS(4241), + [aux_sym__val_number_decimal_token4] = ACTIONS(4243), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4245), + [aux_sym__val_number_token5] = ACTIONS(4245), + [aux_sym__val_number_token6] = ACTIONS(4245), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1293] = { + [sym__val_range] = STATE(7742), + [sym__value] = STATE(1884), + [sym_val_nothing] = STATE(1890), + [sym_val_bool] = STATE(1851), + [sym_val_variable] = STATE(1890), + [sym_val_number] = STATE(1890), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1944), + [sym_val_duration] = STATE(1890), + [sym_val_filesize] = STATE(1890), + [sym_val_binary] = STATE(1890), + [sym_val_string] = STATE(1890), + [sym__raw_str] = STATE(1873), + [sym__str_double_quotes] = STATE(1873), + [sym_val_interpolated] = STATE(1890), + [sym__inter_single_quotes] = STATE(1966), + [sym__inter_double_quotes] = STATE(1967), + [sym_val_list] = STATE(1890), + [sym_val_record] = STATE(1890), + [sym_val_table] = STATE(1890), + [sym_val_closure] = STATE(1890), + [sym_unquoted] = STATE(1885), + [sym__unquoted_anonymous_prefix] = STATE(7803), [sym_comment] = STATE(1293), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(4263), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4265), + [anon_sym_DOT_DOT_LT] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_true] = ACTIONS(4269), + [anon_sym_false] = 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(2888), + [aux_sym__val_number_token2] = ACTIONS(2888), + [aux_sym__val_number_token3] = ACTIONS(2888), + [aux_sym__val_number_token4] = ACTIONS(4279), + [aux_sym__val_number_token5] = ACTIONS(4279), + [aux_sym__val_number_token6] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(2892), + [anon_sym_0o] = ACTIONS(2894), + [anon_sym_0x] = ACTIONS(2894), + [sym_val_date] = ACTIONS(4281), + [anon_sym_DQUOTE] = ACTIONS(2898), + [sym__str_single_quotes] = ACTIONS(2900), + [sym__str_back_ticks] = ACTIONS(2900), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4283), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2908), }, [1294] = { + [sym__val_range] = STATE(7742), + [sym__value] = STATE(1902), + [sym_val_nothing] = STATE(1890), + [sym_val_bool] = STATE(1851), + [sym_val_variable] = STATE(1890), + [sym_val_number] = STATE(1890), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1944), + [sym_val_duration] = STATE(1890), + [sym_val_filesize] = STATE(1890), + [sym_val_binary] = STATE(1890), + [sym_val_string] = STATE(1890), + [sym__raw_str] = STATE(1873), + [sym__str_double_quotes] = STATE(1873), + [sym_val_interpolated] = STATE(1890), + [sym__inter_single_quotes] = STATE(1966), + [sym__inter_double_quotes] = STATE(1967), + [sym_val_list] = STATE(1890), + [sym_val_record] = STATE(1890), + [sym_val_table] = STATE(1890), + [sym_val_closure] = STATE(1890), + [sym_unquoted] = STATE(1903), + [sym__unquoted_anonymous_prefix] = STATE(7803), [sym_comment] = STATE(1294), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_PLUS_EQ] = ACTIONS(1080), - [anon_sym_DASH_EQ] = ACTIONS(1080), - [anon_sym_STAR_EQ] = ACTIONS(1080), - [anon_sym_SLASH_EQ] = ACTIONS(1080), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1080), - [sym__newline] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_err_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_GT_PIPE] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1080), - [aux_sym_expr_binary_token1] = ACTIONS(1080), - [aux_sym_expr_binary_token2] = ACTIONS(1080), - [aux_sym_expr_binary_token3] = ACTIONS(1080), - [aux_sym_expr_binary_token4] = ACTIONS(1080), - [aux_sym_expr_binary_token5] = ACTIONS(1080), - [aux_sym_expr_binary_token6] = ACTIONS(1080), - [aux_sym_expr_binary_token7] = ACTIONS(1080), - [aux_sym_expr_binary_token8] = ACTIONS(1080), - [aux_sym_expr_binary_token9] = ACTIONS(1080), - [aux_sym_expr_binary_token10] = ACTIONS(1080), - [aux_sym_expr_binary_token11] = ACTIONS(1080), - [aux_sym_expr_binary_token12] = ACTIONS(1080), - [aux_sym_expr_binary_token13] = ACTIONS(1080), - [aux_sym_expr_binary_token14] = ACTIONS(1080), - [aux_sym_expr_binary_token15] = ACTIONS(1080), - [aux_sym_expr_binary_token16] = ACTIONS(1080), - [aux_sym_expr_binary_token17] = ACTIONS(1080), - [aux_sym_expr_binary_token18] = ACTIONS(1080), - [aux_sym_expr_binary_token19] = ACTIONS(1080), - [aux_sym_expr_binary_token20] = ACTIONS(1080), - [aux_sym_expr_binary_token21] = ACTIONS(1080), - [aux_sym_expr_binary_token22] = ACTIONS(1080), - [aux_sym_expr_binary_token23] = ACTIONS(1080), - [aux_sym_expr_binary_token24] = ACTIONS(1080), - [aux_sym_expr_binary_token25] = ACTIONS(1080), - [aux_sym_expr_binary_token26] = ACTIONS(1080), - [aux_sym_expr_binary_token27] = ACTIONS(1080), - [aux_sym_expr_binary_token28] = ACTIONS(1080), - [anon_sym_DOT_DOT2] = ACTIONS(1078), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), - [anon_sym_err_GT] = ACTIONS(1078), - [anon_sym_out_GT] = ACTIONS(1078), - [anon_sym_e_GT] = ACTIONS(1078), - [anon_sym_o_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT] = ACTIONS(1078), - [anon_sym_err_GT_GT] = ACTIONS(1080), - [anon_sym_out_GT_GT] = ACTIONS(1080), - [anon_sym_e_GT_GT] = ACTIONS(1080), - [anon_sym_o_GT_GT] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(4263), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4265), + [anon_sym_DOT_DOT_LT] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_true] = ACTIONS(4269), + [anon_sym_false] = 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(2888), + [aux_sym__val_number_token2] = ACTIONS(2888), + [aux_sym__val_number_token3] = ACTIONS(2888), + [aux_sym__val_number_token4] = ACTIONS(4279), + [aux_sym__val_number_token5] = ACTIONS(4279), + [aux_sym__val_number_token6] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(2892), + [anon_sym_0o] = ACTIONS(2894), + [anon_sym_0x] = ACTIONS(2894), + [sym_val_date] = ACTIONS(4281), + [anon_sym_DQUOTE] = ACTIONS(2898), + [sym__str_single_quotes] = ACTIONS(2900), + [sym__str_back_ticks] = ACTIONS(2900), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4283), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2908), }, [1295] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(6452), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6060), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1295), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [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_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(4677), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4285), + [anon_sym_true] = ACTIONS(4287), + [anon_sym_false] = ACTIONS(4287), + [aux_sym__val_number_decimal_token1] = ACTIONS(4289), + [aux_sym__val_number_decimal_token2] = ACTIONS(4291), + [aux_sym__val_number_decimal_token3] = ACTIONS(4293), + [aux_sym__val_number_decimal_token4] = ACTIONS(4295), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4297), + [aux_sym__val_number_token5] = ACTIONS(4297), + [aux_sym__val_number_token6] = ACTIONS(4297), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4299), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1296] = { + [sym__val_range] = STATE(7742), + [sym__value] = STATE(1911), + [sym_val_nothing] = STATE(1890), + [sym_val_bool] = STATE(1851), + [sym_val_variable] = STATE(1890), + [sym_val_number] = STATE(1890), + [sym__val_number_decimal] = STATE(1441), + [sym__val_number] = STATE(1944), + [sym_val_duration] = STATE(1890), + [sym_val_filesize] = STATE(1890), + [sym_val_binary] = STATE(1890), + [sym_val_string] = STATE(1890), + [sym__raw_str] = STATE(1873), + [sym__str_double_quotes] = STATE(1873), + [sym_val_interpolated] = STATE(1890), + [sym__inter_single_quotes] = STATE(1966), + [sym__inter_double_quotes] = STATE(1967), + [sym_val_list] = STATE(1890), + [sym_val_record] = STATE(1890), + [sym_val_table] = STATE(1890), + [sym_val_closure] = STATE(1890), + [sym_unquoted] = STATE(1912), + [sym__unquoted_anonymous_prefix] = STATE(7803), [sym_comment] = STATE(1296), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_PLUS_EQ] = ACTIONS(1086), - [anon_sym_DASH_EQ] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1086), - [anon_sym_SLASH_EQ] = ACTIONS(1086), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1086), - [sym__newline] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_err_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_GT_PIPE] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [aux_sym_expr_binary_token1] = ACTIONS(1092), - [aux_sym_expr_binary_token2] = ACTIONS(1092), - [aux_sym_expr_binary_token3] = ACTIONS(1092), - [aux_sym_expr_binary_token4] = ACTIONS(1092), - [aux_sym_expr_binary_token5] = ACTIONS(1092), - [aux_sym_expr_binary_token6] = ACTIONS(1092), - [aux_sym_expr_binary_token7] = ACTIONS(1092), - [aux_sym_expr_binary_token8] = ACTIONS(1092), - [aux_sym_expr_binary_token9] = ACTIONS(1092), - [aux_sym_expr_binary_token10] = ACTIONS(1092), - [aux_sym_expr_binary_token11] = ACTIONS(1092), - [aux_sym_expr_binary_token12] = ACTIONS(1092), - [aux_sym_expr_binary_token13] = ACTIONS(1092), - [aux_sym_expr_binary_token14] = ACTIONS(1092), - [aux_sym_expr_binary_token15] = ACTIONS(1092), - [aux_sym_expr_binary_token16] = ACTIONS(1092), - [aux_sym_expr_binary_token17] = ACTIONS(1092), - [aux_sym_expr_binary_token18] = ACTIONS(1092), - [aux_sym_expr_binary_token19] = ACTIONS(1092), - [aux_sym_expr_binary_token20] = ACTIONS(1092), - [aux_sym_expr_binary_token21] = ACTIONS(1092), - [aux_sym_expr_binary_token22] = ACTIONS(1092), - [aux_sym_expr_binary_token23] = ACTIONS(1092), - [aux_sym_expr_binary_token24] = ACTIONS(1092), - [aux_sym_expr_binary_token25] = ACTIONS(1092), - [aux_sym_expr_binary_token26] = ACTIONS(1092), - [aux_sym_expr_binary_token27] = ACTIONS(1092), - [aux_sym_expr_binary_token28] = ACTIONS(1092), - [anon_sym_DOT_DOT2] = ACTIONS(1099), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1101), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1101), - [anon_sym_err_GT] = ACTIONS(1090), - [anon_sym_out_GT] = ACTIONS(1090), - [anon_sym_e_GT] = ACTIONS(1090), - [anon_sym_o_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT] = ACTIONS(1090), - [anon_sym_err_GT_GT] = ACTIONS(1092), - [anon_sym_out_GT_GT] = ACTIONS(1092), - [anon_sym_e_GT_GT] = ACTIONS(1092), - [anon_sym_o_GT_GT] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_DOT_DOT] = ACTIONS(4263), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4265), + [anon_sym_DOT_DOT_LT] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_true] = ACTIONS(4269), + [anon_sym_false] = 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(2888), + [aux_sym__val_number_token2] = ACTIONS(2888), + [aux_sym__val_number_token3] = ACTIONS(2888), + [aux_sym__val_number_token4] = ACTIONS(4279), + [aux_sym__val_number_token5] = ACTIONS(4279), + [aux_sym__val_number_token6] = ACTIONS(4279), + [anon_sym_0b] = ACTIONS(2892), + [anon_sym_0o] = ACTIONS(2894), + [anon_sym_0x] = ACTIONS(2894), + [sym_val_date] = ACTIONS(4281), + [anon_sym_DQUOTE] = ACTIONS(2898), + [sym__str_single_quotes] = ACTIONS(2900), + [sym__str_back_ticks] = ACTIONS(2900), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4283), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2908), }, [1297] = { - [sym_cell_path] = STATE(1594), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6049), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(6452), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6050), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1297), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(1895), - [anon_sym_false] = ACTIONS(1895), - [anon_sym_null] = ACTIONS(1895), - [aux_sym_cmd_identifier_token38] = ACTIONS(1895), - [aux_sym_cmd_identifier_token39] = ACTIONS(1895), - [aux_sym_cmd_identifier_token40] = ACTIONS(1895), - [sym__newline] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_err_GT_PIPE] = ACTIONS(1895), - [anon_sym_out_GT_PIPE] = ACTIONS(1895), - [anon_sym_e_GT_PIPE] = ACTIONS(1895), - [anon_sym_o_GT_PIPE] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_RPAREN] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), - [anon_sym_DOT_DOT_LT] = ACTIONS(1895), - [aux_sym__val_number_decimal_token1] = ACTIONS(1893), - [aux_sym__val_number_decimal_token2] = ACTIONS(1895), - [aux_sym__val_number_decimal_token3] = ACTIONS(1895), - [aux_sym__val_number_decimal_token4] = ACTIONS(1895), - [aux_sym__val_number_token1] = ACTIONS(1895), - [aux_sym__val_number_token2] = ACTIONS(1895), - [aux_sym__val_number_token3] = ACTIONS(1895), - [anon_sym_0b] = ACTIONS(1893), - [anon_sym_0o] = ACTIONS(1893), - [anon_sym_0x] = ACTIONS(1893), - [sym_val_date] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1895), - [sym__str_single_quotes] = ACTIONS(1895), - [sym__str_back_ticks] = ACTIONS(1895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), - [anon_sym_err_GT] = ACTIONS(1893), - [anon_sym_out_GT] = ACTIONS(1893), - [anon_sym_e_GT] = ACTIONS(1893), - [anon_sym_o_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT] = ACTIONS(1893), - [anon_sym_err_GT_GT] = ACTIONS(1895), - [anon_sym_out_GT_GT] = ACTIONS(1895), - [anon_sym_e_GT_GT] = ACTIONS(1895), - [anon_sym_o_GT_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), - [aux_sym_unquoted_token1] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4285), + [anon_sym_true] = ACTIONS(4287), + [anon_sym_false] = ACTIONS(4287), + [aux_sym__val_number_decimal_token1] = ACTIONS(4289), + [aux_sym__val_number_decimal_token2] = ACTIONS(4291), + [aux_sym__val_number_decimal_token3] = ACTIONS(4293), + [aux_sym__val_number_decimal_token4] = ACTIONS(4295), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4297), + [aux_sym__val_number_token5] = ACTIONS(4297), + [aux_sym__val_number_token6] = ACTIONS(4297), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4299), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1298] = { - [sym_cell_path] = STATE(1611), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6061), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(6452), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6065), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1298), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = ACTIONS(1899), - [anon_sym_null] = ACTIONS(1899), - [aux_sym_cmd_identifier_token38] = ACTIONS(1899), - [aux_sym_cmd_identifier_token39] = ACTIONS(1899), - [aux_sym_cmd_identifier_token40] = ACTIONS(1899), - [sym__newline] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_err_GT_PIPE] = ACTIONS(1899), - [anon_sym_out_GT_PIPE] = ACTIONS(1899), - [anon_sym_e_GT_PIPE] = ACTIONS(1899), - [anon_sym_o_GT_PIPE] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_DOLLAR] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1899), - [anon_sym_DOT_DOT_LT] = ACTIONS(1899), - [aux_sym__val_number_decimal_token1] = ACTIONS(1897), - [aux_sym__val_number_decimal_token2] = ACTIONS(1899), - [aux_sym__val_number_decimal_token3] = ACTIONS(1899), - [aux_sym__val_number_decimal_token4] = ACTIONS(1899), - [aux_sym__val_number_token1] = ACTIONS(1899), - [aux_sym__val_number_token2] = ACTIONS(1899), - [aux_sym__val_number_token3] = ACTIONS(1899), - [anon_sym_0b] = ACTIONS(1897), - [anon_sym_0o] = ACTIONS(1897), - [anon_sym_0x] = ACTIONS(1897), - [sym_val_date] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [sym__str_single_quotes] = ACTIONS(1899), - [sym__str_back_ticks] = ACTIONS(1899), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1899), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1899), - [anon_sym_err_GT] = ACTIONS(1897), - [anon_sym_out_GT] = ACTIONS(1897), - [anon_sym_e_GT] = ACTIONS(1897), - [anon_sym_o_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT] = ACTIONS(1897), - [anon_sym_err_GT_GT] = ACTIONS(1899), - [anon_sym_out_GT_GT] = ACTIONS(1899), - [anon_sym_e_GT_GT] = ACTIONS(1899), - [anon_sym_o_GT_GT] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1899), - [aux_sym_unquoted_token1] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4285), + [anon_sym_true] = ACTIONS(4287), + [anon_sym_false] = ACTIONS(4287), + [aux_sym__val_number_decimal_token1] = ACTIONS(4289), + [aux_sym__val_number_decimal_token2] = ACTIONS(4291), + [aux_sym__val_number_decimal_token3] = ACTIONS(4293), + [aux_sym__val_number_decimal_token4] = ACTIONS(4295), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4297), + [aux_sym__val_number_token5] = ACTIONS(4297), + [aux_sym__val_number_token6] = ACTIONS(4297), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4299), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1299] = { + [sym__val_range] = STATE(7817), + [sym__value] = STATE(4786), + [sym_val_nothing] = STATE(4804), + [sym_val_bool] = STATE(4581), + [sym_val_variable] = STATE(4804), + [sym_val_number] = STATE(4804), + [sym__val_number_decimal] = STATE(4113), + [sym__val_number] = STATE(4871), + [sym_val_duration] = STATE(4804), + [sym_val_filesize] = STATE(4804), + [sym_val_binary] = STATE(4804), + [sym_val_string] = STATE(4804), + [sym__raw_str] = STATE(4517), + [sym__str_double_quotes] = STATE(4517), + [sym_val_interpolated] = STATE(4804), + [sym__inter_single_quotes] = STATE(4807), + [sym__inter_double_quotes] = STATE(4808), + [sym_val_list] = STATE(4804), + [sym_val_record] = STATE(4804), + [sym_val_table] = STATE(4804), + [sym_val_closure] = STATE(4804), + [sym_unquoted] = STATE(4787), + [sym__unquoted_anonymous_prefix] = STATE(7666), [sym_comment] = STATE(1299), - [ts_builtin_sym_end] = ACTIONS(1076), - [anon_sym_EQ] = ACTIONS(1074), - [anon_sym_PLUS_EQ] = ACTIONS(1076), - [anon_sym_DASH_EQ] = ACTIONS(1076), - [anon_sym_STAR_EQ] = ACTIONS(1076), - [anon_sym_SLASH_EQ] = ACTIONS(1076), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1076), - [sym__newline] = ACTIONS(1076), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_err_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_GT_PIPE] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), - [aux_sym_expr_binary_token1] = ACTIONS(1076), - [aux_sym_expr_binary_token2] = ACTIONS(1076), - [aux_sym_expr_binary_token3] = ACTIONS(1076), - [aux_sym_expr_binary_token4] = ACTIONS(1076), - [aux_sym_expr_binary_token5] = ACTIONS(1076), - [aux_sym_expr_binary_token6] = ACTIONS(1076), - [aux_sym_expr_binary_token7] = ACTIONS(1076), - [aux_sym_expr_binary_token8] = ACTIONS(1076), - [aux_sym_expr_binary_token9] = ACTIONS(1076), - [aux_sym_expr_binary_token10] = ACTIONS(1076), - [aux_sym_expr_binary_token11] = ACTIONS(1076), - [aux_sym_expr_binary_token12] = ACTIONS(1076), - [aux_sym_expr_binary_token13] = ACTIONS(1076), - [aux_sym_expr_binary_token14] = ACTIONS(1076), - [aux_sym_expr_binary_token15] = ACTIONS(1076), - [aux_sym_expr_binary_token16] = ACTIONS(1076), - [aux_sym_expr_binary_token17] = ACTIONS(1076), - [aux_sym_expr_binary_token18] = ACTIONS(1076), - [aux_sym_expr_binary_token19] = ACTIONS(1076), - [aux_sym_expr_binary_token20] = ACTIONS(1076), - [aux_sym_expr_binary_token21] = ACTIONS(1076), - [aux_sym_expr_binary_token22] = ACTIONS(1076), - [aux_sym_expr_binary_token23] = ACTIONS(1076), - [aux_sym_expr_binary_token24] = ACTIONS(1076), - [aux_sym_expr_binary_token25] = ACTIONS(1076), - [aux_sym_expr_binary_token26] = ACTIONS(1076), - [aux_sym_expr_binary_token27] = ACTIONS(1076), - [aux_sym_expr_binary_token28] = ACTIONS(1076), - [anon_sym_DOT_DOT2] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), - [anon_sym_err_GT] = ACTIONS(1074), - [anon_sym_out_GT] = ACTIONS(1074), - [anon_sym_e_GT] = ACTIONS(1074), - [anon_sym_o_GT] = ACTIONS(1074), - [anon_sym_err_PLUSout_GT] = ACTIONS(1074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), - [anon_sym_o_PLUSe_GT] = ACTIONS(1074), - [anon_sym_e_PLUSo_GT] = ACTIONS(1074), - [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), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4305), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4311), + [anon_sym_DOT_DOT_LT] = ACTIONS(4311), + [anon_sym_null] = ACTIONS(4313), + [anon_sym_true] = ACTIONS(4315), + [anon_sym_false] = ACTIONS(4315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2032), + [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(4323), + [aux_sym__val_number_token2] = ACTIONS(4323), + [aux_sym__val_number_token3] = ACTIONS(4323), + [aux_sym__val_number_token4] = ACTIONS(4325), + [aux_sym__val_number_token5] = ACTIONS(4325), + [aux_sym__val_number_token6] = ACTIONS(4325), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(4327), + [anon_sym_DQUOTE] = ACTIONS(4329), + [sym__str_single_quotes] = ACTIONS(4331), + [sym__str_back_ticks] = ACTIONS(4331), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4335), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2062), }, [1300] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6063), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(6452), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5362), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6064), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1300), - [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(4681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), - [anon_sym_DOT_DOT_LT] = ACTIONS(1788), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4683), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4683), - [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(1526), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4285), + [anon_sym_true] = ACTIONS(4287), + [anon_sym_false] = ACTIONS(4287), + [aux_sym__val_number_decimal_token1] = ACTIONS(4289), + [aux_sym__val_number_decimal_token2] = ACTIONS(4291), + [aux_sym__val_number_decimal_token3] = ACTIONS(4293), + [aux_sym__val_number_decimal_token4] = ACTIONS(4295), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4297), + [aux_sym__val_number_token5] = ACTIONS(4297), + [aux_sym__val_number_token6] = ACTIONS(4297), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4299), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1301] = { + [sym__val_range] = STATE(7817), + [sym__value] = STATE(4791), + [sym_val_nothing] = STATE(4804), + [sym_val_bool] = STATE(4581), + [sym_val_variable] = STATE(4804), + [sym_val_number] = STATE(4804), + [sym__val_number_decimal] = STATE(4113), + [sym__val_number] = STATE(4871), + [sym_val_duration] = STATE(4804), + [sym_val_filesize] = STATE(4804), + [sym_val_binary] = STATE(4804), + [sym_val_string] = STATE(4804), + [sym__raw_str] = STATE(4517), + [sym__str_double_quotes] = STATE(4517), + [sym_val_interpolated] = STATE(4804), + [sym__inter_single_quotes] = STATE(4807), + [sym__inter_double_quotes] = STATE(4808), + [sym_val_list] = STATE(4804), + [sym_val_record] = STATE(4804), + [sym_val_table] = STATE(4804), + [sym_val_closure] = STATE(4804), + [sym_unquoted] = STATE(4792), + [sym__unquoted_anonymous_prefix] = STATE(7666), [sym_comment] = STATE(1301), - [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), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_DOT_DOT] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(4685), - [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(249), - [sym_raw_string_begin] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4305), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4311), + [anon_sym_DOT_DOT_LT] = ACTIONS(4311), + [anon_sym_null] = ACTIONS(4313), + [anon_sym_true] = ACTIONS(4315), + [anon_sym_false] = ACTIONS(4315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2032), + [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(4323), + [aux_sym__val_number_token2] = ACTIONS(4323), + [aux_sym__val_number_token3] = ACTIONS(4323), + [aux_sym__val_number_token4] = ACTIONS(4325), + [aux_sym__val_number_token5] = ACTIONS(4325), + [aux_sym__val_number_token6] = ACTIONS(4325), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(4327), + [anon_sym_DQUOTE] = ACTIONS(4329), + [sym__str_single_quotes] = ACTIONS(4331), + [sym__str_back_ticks] = ACTIONS(4331), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4335), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2062), }, [1302] = { - [sym_cell_path] = STATE(1637), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7817), + [sym__value] = STATE(4834), + [sym_val_nothing] = STATE(4804), + [sym_val_bool] = STATE(4581), + [sym_val_variable] = STATE(4804), + [sym_val_number] = STATE(4804), + [sym__val_number_decimal] = STATE(4113), + [sym__val_number] = STATE(4871), + [sym_val_duration] = STATE(4804), + [sym_val_filesize] = STATE(4804), + [sym_val_binary] = STATE(4804), + [sym_val_string] = STATE(4804), + [sym__raw_str] = STATE(4517), + [sym__str_double_quotes] = STATE(4517), + [sym_val_interpolated] = STATE(4804), + [sym__inter_single_quotes] = STATE(4807), + [sym__inter_double_quotes] = STATE(4808), + [sym_val_list] = STATE(4804), + [sym_val_record] = STATE(4804), + [sym_val_table] = STATE(4804), + [sym_val_closure] = STATE(4804), + [sym_unquoted] = STATE(4835), + [sym__unquoted_anonymous_prefix] = STATE(7666), [sym_comment] = STATE(1302), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [aux_sym_cmd_identifier_token38] = ACTIONS(1995), - [aux_sym_cmd_identifier_token39] = ACTIONS(1995), - [aux_sym_cmd_identifier_token40] = ACTIONS(1995), - [sym__newline] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1995), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_err_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_GT_PIPE] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1995), - [anon_sym_DOT_DOT_LT] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1995), - [aux_sym__val_number_decimal_token3] = ACTIONS(1995), - [aux_sym__val_number_decimal_token4] = ACTIONS(1995), - [aux_sym__val_number_token1] = ACTIONS(1995), - [aux_sym__val_number_token2] = ACTIONS(1995), - [aux_sym__val_number_token3] = ACTIONS(1995), - [anon_sym_0b] = ACTIONS(1993), - [anon_sym_0o] = ACTIONS(1993), - [anon_sym_0x] = ACTIONS(1993), - [sym_val_date] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(1995), - [sym__str_single_quotes] = ACTIONS(1995), - [sym__str_back_ticks] = ACTIONS(1995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), - [anon_sym_err_GT] = ACTIONS(1993), - [anon_sym_out_GT] = ACTIONS(1993), - [anon_sym_e_GT] = ACTIONS(1993), - [anon_sym_o_GT] = ACTIONS(1993), - [anon_sym_err_PLUSout_GT] = ACTIONS(1993), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), - [anon_sym_o_PLUSe_GT] = ACTIONS(1993), - [anon_sym_e_PLUSo_GT] = ACTIONS(1993), - [anon_sym_err_GT_GT] = ACTIONS(1995), - [anon_sym_out_GT_GT] = ACTIONS(1995), - [anon_sym_e_GT_GT] = ACTIONS(1995), - [anon_sym_o_GT_GT] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), - [aux_sym_unquoted_token1] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4305), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4311), + [anon_sym_DOT_DOT_LT] = ACTIONS(4311), + [anon_sym_null] = ACTIONS(4313), + [anon_sym_true] = ACTIONS(4315), + [anon_sym_false] = ACTIONS(4315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2032), + [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(4323), + [aux_sym__val_number_token2] = ACTIONS(4323), + [aux_sym__val_number_token3] = ACTIONS(4323), + [aux_sym__val_number_token4] = ACTIONS(4325), + [aux_sym__val_number_token5] = ACTIONS(4325), + [aux_sym__val_number_token6] = ACTIONS(4325), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(4327), + [anon_sym_DQUOTE] = ACTIONS(4329), + [sym__str_single_quotes] = ACTIONS(4331), + [sym__str_back_ticks] = ACTIONS(4331), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4335), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2062), }, [1303] = { - [sym_cell_path] = STATE(1644), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7658), + [sym__value] = STATE(4750), + [sym_val_nothing] = STATE(4616), + [sym_val_bool] = STATE(7000), + [sym_val_variable] = STATE(4616), + [sym_val_number] = STATE(4616), + [sym__val_number_decimal] = STATE(5569), + [sym__val_number] = STATE(4634), + [sym_val_duration] = STATE(4616), + [sym_val_filesize] = STATE(4616), + [sym_val_binary] = STATE(4616), + [sym_val_string] = STATE(4616), + [sym__raw_str] = STATE(4465), + [sym__str_double_quotes] = STATE(4465), + [sym_val_interpolated] = STATE(4616), + [sym__inter_single_quotes] = STATE(4689), + [sym__inter_double_quotes] = STATE(4701), + [sym_val_list] = STATE(4616), + [sym_val_record] = STATE(4616), + [sym_val_table] = STATE(4616), + [sym_val_closure] = STATE(4616), + [sym_unquoted] = STATE(4751), + [sym__unquoted_anonymous_prefix] = STATE(7677), [sym_comment] = STATE(1303), - [aux_sym_cell_path_repeat1] = STATE(1342), - [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), - [sym__newline] = ACTIONS(1999), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_err_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_GT_PIPE] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), - [anon_sym_LBRACK] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_RPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1999), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), - [anon_sym_DOT_DOT_LT] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [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_0b] = ACTIONS(1997), - [anon_sym_0o] = ACTIONS(1997), - [anon_sym_0x] = ACTIONS(1997), - [sym_val_date] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), - [anon_sym_err_GT] = ACTIONS(1997), - [anon_sym_out_GT] = ACTIONS(1997), - [anon_sym_e_GT] = ACTIONS(1997), - [anon_sym_o_GT] = ACTIONS(1997), - [anon_sym_err_PLUSout_GT] = ACTIONS(1997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), - [anon_sym_o_PLUSe_GT] = ACTIONS(1997), - [anon_sym_e_PLUSo_GT] = ACTIONS(1997), - [anon_sym_err_GT_GT] = ACTIONS(1999), - [anon_sym_out_GT_GT] = ACTIONS(1999), - [anon_sym_e_GT_GT] = ACTIONS(1999), - [anon_sym_o_GT_GT] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), - [aux_sym_unquoted_token1] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4339), + [anon_sym_DOLLAR] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), + [anon_sym_DOT_DOT_LT] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4351), + [anon_sym_false] = ACTIONS(4351), + [aux_sym__val_number_decimal_token1] = ACTIONS(4353), + [aux_sym__val_number_decimal_token2] = ACTIONS(4355), + [aux_sym__val_number_decimal_token3] = ACTIONS(4357), + [aux_sym__val_number_decimal_token4] = ACTIONS(4359), + [aux_sym__val_number_token1] = ACTIONS(4361), + [aux_sym__val_number_token2] = ACTIONS(4361), + [aux_sym__val_number_token3] = ACTIONS(4361), + [aux_sym__val_number_token4] = ACTIONS(4363), + [aux_sym__val_number_token5] = ACTIONS(4363), + [aux_sym__val_number_token6] = ACTIONS(4363), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(4365), + [anon_sym_DQUOTE] = ACTIONS(4367), + [sym__str_single_quotes] = ACTIONS(4369), + [sym__str_back_ticks] = ACTIONS(4369), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1860), }, [1304] = { - [sym_cell_path] = STATE(1648), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7817), + [sym__value] = STATE(4841), + [sym_val_nothing] = STATE(4804), + [sym_val_bool] = STATE(4581), + [sym_val_variable] = STATE(4804), + [sym_val_number] = STATE(4804), + [sym__val_number_decimal] = STATE(4113), + [sym__val_number] = STATE(4871), + [sym_val_duration] = STATE(4804), + [sym_val_filesize] = STATE(4804), + [sym_val_binary] = STATE(4804), + [sym_val_string] = STATE(4804), + [sym__raw_str] = STATE(4517), + [sym__str_double_quotes] = STATE(4517), + [sym_val_interpolated] = STATE(4804), + [sym__inter_single_quotes] = STATE(4807), + [sym__inter_double_quotes] = STATE(4808), + [sym_val_list] = STATE(4804), + [sym_val_record] = STATE(4804), + [sym_val_table] = STATE(4804), + [sym_val_closure] = STATE(4804), + [sym_unquoted] = STATE(4842), + [sym__unquoted_anonymous_prefix] = STATE(7666), [sym_comment] = STATE(1304), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [aux_sym_cmd_identifier_token38] = ACTIONS(2003), - [aux_sym_cmd_identifier_token39] = ACTIONS(2003), - [aux_sym_cmd_identifier_token40] = ACTIONS(2003), - [sym__newline] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_err_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_GT_PIPE] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_RPAREN] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2003), - [anon_sym_DOT_DOT_LT] = ACTIONS(2003), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2003), - [aux_sym__val_number_decimal_token3] = ACTIONS(2003), - [aux_sym__val_number_decimal_token4] = ACTIONS(2003), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [anon_sym_0b] = ACTIONS(2001), - [anon_sym_0o] = ACTIONS(2001), - [anon_sym_0x] = ACTIONS(2001), - [sym_val_date] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [sym__str_single_quotes] = ACTIONS(2003), - [sym__str_back_ticks] = ACTIONS(2003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), - [anon_sym_err_GT] = ACTIONS(2001), - [anon_sym_out_GT] = ACTIONS(2001), - [anon_sym_e_GT] = ACTIONS(2001), - [anon_sym_o_GT] = ACTIONS(2001), - [anon_sym_err_PLUSout_GT] = ACTIONS(2001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), - [anon_sym_o_PLUSe_GT] = ACTIONS(2001), - [anon_sym_e_PLUSo_GT] = ACTIONS(2001), - [anon_sym_err_GT_GT] = ACTIONS(2003), - [anon_sym_out_GT_GT] = ACTIONS(2003), - [anon_sym_e_GT_GT] = ACTIONS(2003), - [anon_sym_o_GT_GT] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), - [aux_sym_unquoted_token1] = ACTIONS(2001), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym_DOLLAR] = ACTIONS(4305), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_DOT_DOT] = ACTIONS(4309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4311), + [anon_sym_DOT_DOT_LT] = ACTIONS(4311), + [anon_sym_null] = ACTIONS(4313), + [anon_sym_true] = ACTIONS(4315), + [anon_sym_false] = ACTIONS(4315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2032), + [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(4323), + [aux_sym__val_number_token2] = ACTIONS(4323), + [aux_sym__val_number_token3] = ACTIONS(4323), + [aux_sym__val_number_token4] = ACTIONS(4325), + [aux_sym__val_number_token5] = ACTIONS(4325), + [aux_sym__val_number_token6] = ACTIONS(4325), + [anon_sym_0b] = ACTIONS(2042), + [anon_sym_0o] = ACTIONS(2044), + [anon_sym_0x] = ACTIONS(2044), + [sym_val_date] = ACTIONS(4327), + [anon_sym_DQUOTE] = ACTIONS(4329), + [sym__str_single_quotes] = ACTIONS(4331), + [sym__str_back_ticks] = ACTIONS(4331), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4333), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4335), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2062), }, [1305] = { - [sym_cell_path] = STATE(1656), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6061), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(7042), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5550), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6065), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1305), - [aux_sym_cell_path_repeat1] = STATE(1342), - [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), - [sym__newline] = ACTIONS(2007), - [anon_sym_SEMI] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_err_GT_PIPE] = ACTIONS(2007), - [anon_sym_out_GT_PIPE] = ACTIONS(2007), - [anon_sym_e_GT_PIPE] = ACTIONS(2007), - [anon_sym_o_GT_PIPE] = ACTIONS(2007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_RPAREN] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2007), - [anon_sym_DOT_DOT_LT] = ACTIONS(2007), - [aux_sym__val_number_decimal_token1] = ACTIONS(2005), - [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_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2005), - [anon_sym_0x] = ACTIONS(2005), - [sym_val_date] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [sym__str_single_quotes] = ACTIONS(2007), - [sym__str_back_ticks] = ACTIONS(2007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), - [anon_sym_err_GT] = ACTIONS(2005), - [anon_sym_out_GT] = ACTIONS(2005), - [anon_sym_e_GT] = ACTIONS(2005), - [anon_sym_o_GT] = ACTIONS(2005), - [anon_sym_err_PLUSout_GT] = ACTIONS(2005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2005), - [anon_sym_o_PLUSe_GT] = ACTIONS(2005), - [anon_sym_e_PLUSo_GT] = ACTIONS(2005), - [anon_sym_err_GT_GT] = ACTIONS(2007), - [anon_sym_out_GT_GT] = ACTIONS(2007), - [anon_sym_e_GT_GT] = ACTIONS(2007), - [anon_sym_o_GT_GT] = ACTIONS(2007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2007), - [aux_sym_unquoted_token1] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4121), + [anon_sym_true] = ACTIONS(4123), + [anon_sym_false] = ACTIONS(4123), + [aux_sym__val_number_decimal_token1] = ACTIONS(4125), + [aux_sym__val_number_decimal_token2] = ACTIONS(4127), + [aux_sym__val_number_decimal_token3] = ACTIONS(4129), + [aux_sym__val_number_decimal_token4] = ACTIONS(4131), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4133), + [aux_sym__val_number_token5] = ACTIONS(4133), + [aux_sym__val_number_token6] = ACTIONS(4133), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4135), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1306] = { - [sym_cell_path] = STATE(1689), - [sym_path] = STATE(1538), + [sym_cell_path] = STATE(1454), + [sym_path] = STATE(1421), [sym_comment] = STATE(1306), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(2011), - [anon_sym_false] = ACTIONS(2011), - [anon_sym_null] = ACTIONS(2011), - [aux_sym_cmd_identifier_token38] = ACTIONS(2011), - [aux_sym_cmd_identifier_token39] = ACTIONS(2011), - [aux_sym_cmd_identifier_token40] = ACTIONS(2011), - [sym__newline] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_err_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_GT_PIPE] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2011), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_DOT_DOT] = ACTIONS(2009), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2011), - [anon_sym_DOT_DOT_LT] = ACTIONS(2011), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2011), - [aux_sym__val_number_decimal_token3] = ACTIONS(2011), - [aux_sym__val_number_decimal_token4] = ACTIONS(2011), - [aux_sym__val_number_token1] = ACTIONS(2011), - [aux_sym__val_number_token2] = ACTIONS(2011), - [aux_sym__val_number_token3] = ACTIONS(2011), - [anon_sym_0b] = ACTIONS(2009), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(2011), - [anon_sym_DQUOTE] = ACTIONS(2011), - [sym__str_single_quotes] = ACTIONS(2011), - [sym__str_back_ticks] = ACTIONS(2011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2011), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2011), - [anon_sym_err_GT] = ACTIONS(2009), - [anon_sym_out_GT] = ACTIONS(2009), - [anon_sym_e_GT] = ACTIONS(2009), - [anon_sym_o_GT] = ACTIONS(2009), - [anon_sym_err_PLUSout_GT] = ACTIONS(2009), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), - [anon_sym_o_PLUSe_GT] = ACTIONS(2009), - [anon_sym_e_PLUSo_GT] = ACTIONS(2009), - [anon_sym_err_GT_GT] = ACTIONS(2011), - [anon_sym_out_GT_GT] = ACTIONS(2011), - [anon_sym_e_GT_GT] = ACTIONS(2011), - [anon_sym_o_GT_GT] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), - [aux_sym_unquoted_token1] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2011), + [aux_sym_cell_path_repeat1] = STATE(1365), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(963), + [sym__newline] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_STAR2] = ACTIONS(961), + [anon_sym_and2] = ACTIONS(963), + [anon_sym_xor2] = ACTIONS(963), + [anon_sym_or2] = ACTIONS(963), + [anon_sym_not_DASHin2] = ACTIONS(963), + [anon_sym_starts_DASHwith2] = ACTIONS(963), + [anon_sym_ends_DASHwith2] = ACTIONS(963), + [anon_sym_EQ_EQ2] = ACTIONS(963), + [anon_sym_BANG_EQ2] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_LT_EQ2] = ACTIONS(963), + [anon_sym_GT_EQ2] = ACTIONS(963), + [anon_sym_EQ_TILDE2] = ACTIONS(963), + [anon_sym_BANG_TILDE2] = ACTIONS(963), + [anon_sym_STAR_STAR2] = ACTIONS(963), + [anon_sym_PLUS_PLUS2] = ACTIONS(961), + [anon_sym_SLASH2] = ACTIONS(961), + [anon_sym_mod2] = ACTIONS(963), + [anon_sym_SLASH_SLASH2] = ACTIONS(963), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_bit_DASHshl2] = ACTIONS(963), + [anon_sym_bit_DASHshr2] = ACTIONS(963), + [anon_sym_bit_DASHand2] = ACTIONS(963), + [anon_sym_bit_DASHxor2] = ACTIONS(963), + [anon_sym_bit_DASHor2] = ACTIONS(963), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [aux_sym_record_entry_token1] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), }, [1307] = { - [sym_cell_path] = STATE(1675), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7572), + [sym__value] = STATE(6063), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(7458), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(5622), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(6064), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1307), - [aux_sym_cell_path_repeat1] = STATE(1342), - [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), - [sym__newline] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_err_GT_PIPE] = ACTIONS(2015), - [anon_sym_out_GT_PIPE] = ACTIONS(2015), - [anon_sym_e_GT_PIPE] = ACTIONS(2015), - [anon_sym_o_GT_PIPE] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_RPAREN] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2013), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2013), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2015), - [anon_sym_DOT_DOT_LT] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2013), - [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_0b] = ACTIONS(2013), - [anon_sym_0o] = ACTIONS(2013), - [anon_sym_0x] = ACTIONS(2013), - [sym_val_date] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), - [anon_sym_err_GT] = ACTIONS(2013), - [anon_sym_out_GT] = ACTIONS(2013), - [anon_sym_e_GT] = ACTIONS(2013), - [anon_sym_o_GT] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT] = ACTIONS(2013), - [anon_sym_err_GT_GT] = ACTIONS(2015), - [anon_sym_out_GT_GT] = ACTIONS(2015), - [anon_sym_e_GT_GT] = ACTIONS(2015), - [anon_sym_o_GT_GT] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2015), - [aux_sym_unquoted_token1] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(3983), + [anon_sym_LPAREN] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(4213), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_DOT_DOT] = ACTIONS(4215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), + [anon_sym_DOT_DOT_LT] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(3993), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = 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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4005), + [aux_sym__val_number_token5] = ACTIONS(4005), + [aux_sym__val_number_token6] = ACTIONS(4005), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1308] = { - [sym_cell_path] = STATE(1612), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7658), + [sym__value] = STATE(4724), + [sym_val_nothing] = STATE(4616), + [sym_val_bool] = STATE(7000), + [sym_val_variable] = STATE(4616), + [sym_val_number] = STATE(4616), + [sym__val_number_decimal] = STATE(5569), + [sym__val_number] = STATE(4634), + [sym_val_duration] = STATE(4616), + [sym_val_filesize] = STATE(4616), + [sym_val_binary] = STATE(4616), + [sym_val_string] = STATE(4616), + [sym__raw_str] = STATE(4465), + [sym__str_double_quotes] = STATE(4465), + [sym_val_interpolated] = STATE(4616), + [sym__inter_single_quotes] = STATE(4689), + [sym__inter_double_quotes] = STATE(4701), + [sym_val_list] = STATE(4616), + [sym_val_record] = STATE(4616), + [sym_val_table] = STATE(4616), + [sym_val_closure] = STATE(4616), + [sym_unquoted] = STATE(4726), + [sym__unquoted_anonymous_prefix] = STATE(7677), [sym_comment] = STATE(1308), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [anon_sym_null] = ACTIONS(2019), - [aux_sym_cmd_identifier_token38] = ACTIONS(2019), - [aux_sym_cmd_identifier_token39] = ACTIONS(2019), - [aux_sym_cmd_identifier_token40] = ACTIONS(2019), - [sym__newline] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_PIPE] = ACTIONS(2019), - [anon_sym_err_GT_PIPE] = ACTIONS(2019), - [anon_sym_out_GT_PIPE] = ACTIONS(2019), - [anon_sym_e_GT_PIPE] = ACTIONS(2019), - [anon_sym_o_GT_PIPE] = ACTIONS(2019), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2019), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2019), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2019), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_RPAREN] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2017), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), - [anon_sym_DOT_DOT_LT] = ACTIONS(2019), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2019), - [aux_sym__val_number_decimal_token3] = ACTIONS(2019), - [aux_sym__val_number_decimal_token4] = ACTIONS(2019), - [aux_sym__val_number_token1] = ACTIONS(2019), - [aux_sym__val_number_token2] = ACTIONS(2019), - [aux_sym__val_number_token3] = ACTIONS(2019), - [anon_sym_0b] = ACTIONS(2017), - [anon_sym_0o] = ACTIONS(2017), - [anon_sym_0x] = ACTIONS(2017), - [sym_val_date] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2019), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), - [anon_sym_err_GT] = ACTIONS(2017), - [anon_sym_out_GT] = ACTIONS(2017), - [anon_sym_e_GT] = ACTIONS(2017), - [anon_sym_o_GT] = ACTIONS(2017), - [anon_sym_err_PLUSout_GT] = ACTIONS(2017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2017), - [anon_sym_o_PLUSe_GT] = ACTIONS(2017), - [anon_sym_e_PLUSo_GT] = ACTIONS(2017), - [anon_sym_err_GT_GT] = ACTIONS(2019), - [anon_sym_out_GT_GT] = ACTIONS(2019), - [anon_sym_e_GT_GT] = ACTIONS(2019), - [anon_sym_o_GT_GT] = ACTIONS(2019), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2019), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2019), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2019), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2019), - [aux_sym_unquoted_token1] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4339), + [anon_sym_DOLLAR] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), + [anon_sym_DOT_DOT_LT] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4351), + [anon_sym_false] = ACTIONS(4351), + [aux_sym__val_number_decimal_token1] = ACTIONS(4353), + [aux_sym__val_number_decimal_token2] = ACTIONS(4355), + [aux_sym__val_number_decimal_token3] = ACTIONS(4357), + [aux_sym__val_number_decimal_token4] = ACTIONS(4359), + [aux_sym__val_number_token1] = ACTIONS(4361), + [aux_sym__val_number_token2] = ACTIONS(4361), + [aux_sym__val_number_token3] = ACTIONS(4361), + [aux_sym__val_number_token4] = ACTIONS(4363), + [aux_sym__val_number_token5] = ACTIONS(4363), + [aux_sym__val_number_token6] = ACTIONS(4363), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(4365), + [anon_sym_DQUOTE] = ACTIONS(4367), + [sym__str_single_quotes] = ACTIONS(4369), + [sym__str_back_ticks] = ACTIONS(4369), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1860), }, [1309] = { - [sym_cell_path] = STATE(1622), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7658), + [sym__value] = STATE(4750), + [sym_val_nothing] = STATE(4616), + [sym_val_bool] = STATE(4396), + [sym_val_variable] = STATE(4616), + [sym_val_number] = STATE(4616), + [sym__val_number_decimal] = STATE(4076), + [sym__val_number] = STATE(4634), + [sym_val_duration] = STATE(4616), + [sym_val_filesize] = STATE(4616), + [sym_val_binary] = STATE(4616), + [sym_val_string] = STATE(4616), + [sym__raw_str] = STATE(4465), + [sym__str_double_quotes] = STATE(4465), + [sym_val_interpolated] = STATE(4616), + [sym__inter_single_quotes] = STATE(4689), + [sym__inter_double_quotes] = STATE(4701), + [sym_val_list] = STATE(4616), + [sym_val_record] = STATE(4616), + [sym_val_table] = STATE(4616), + [sym_val_closure] = STATE(4616), + [sym_unquoted] = STATE(4751), + [sym__unquoted_anonymous_prefix] = STATE(7677), [sym_comment] = STATE(1309), - [aux_sym_cell_path_repeat1] = STATE(1342), - [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), - [sym__newline] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2023), - [anon_sym_err_GT_PIPE] = ACTIONS(2023), - [anon_sym_out_GT_PIPE] = ACTIONS(2023), - [anon_sym_e_GT_PIPE] = ACTIONS(2023), - [anon_sym_o_GT_PIPE] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2023), - [anon_sym_DOT_DOT_LT] = ACTIONS(2023), - [aux_sym__val_number_decimal_token1] = ACTIONS(2021), - [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_0b] = ACTIONS(2021), - [anon_sym_0o] = ACTIONS(2021), - [anon_sym_0x] = ACTIONS(2021), - [sym_val_date] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2023), - [sym__str_single_quotes] = ACTIONS(2023), - [sym__str_back_ticks] = ACTIONS(2023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2023), - [anon_sym_err_GT] = ACTIONS(2021), - [anon_sym_out_GT] = ACTIONS(2021), - [anon_sym_e_GT] = ACTIONS(2021), - [anon_sym_o_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT] = ACTIONS(2021), - [anon_sym_err_GT_GT] = ACTIONS(2023), - [anon_sym_out_GT_GT] = ACTIONS(2023), - [anon_sym_e_GT_GT] = ACTIONS(2023), - [anon_sym_o_GT_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2023), - [aux_sym_unquoted_token1] = ACTIONS(2021), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4339), + [anon_sym_DOLLAR] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), + [anon_sym_DOT_DOT_LT] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4379), + [anon_sym_false] = ACTIONS(4379), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(4381), + [aux_sym__val_number_decimal_token3] = ACTIONS(4383), + [aux_sym__val_number_decimal_token4] = ACTIONS(4385), + [aux_sym__val_number_token1] = ACTIONS(4361), + [aux_sym__val_number_token2] = ACTIONS(4361), + [aux_sym__val_number_token3] = ACTIONS(4361), + [aux_sym__val_number_token4] = ACTIONS(4387), + [aux_sym__val_number_token5] = ACTIONS(4387), + [aux_sym__val_number_token6] = ACTIONS(4387), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(4367), + [sym__str_single_quotes] = ACTIONS(4369), + [sym__str_back_ticks] = ACTIONS(4369), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1860), }, [1310] = { - [sym_cell_path] = STATE(1685), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7658), + [sym__value] = STATE(4760), + [sym_val_nothing] = STATE(4616), + [sym_val_bool] = STATE(7000), + [sym_val_variable] = STATE(4616), + [sym_val_number] = STATE(4616), + [sym__val_number_decimal] = STATE(5569), + [sym__val_number] = STATE(4634), + [sym_val_duration] = STATE(4616), + [sym_val_filesize] = STATE(4616), + [sym_val_binary] = STATE(4616), + [sym_val_string] = STATE(4616), + [sym__raw_str] = STATE(4465), + [sym__str_double_quotes] = STATE(4465), + [sym_val_interpolated] = STATE(4616), + [sym__inter_single_quotes] = STATE(4689), + [sym__inter_double_quotes] = STATE(4701), + [sym_val_list] = STATE(4616), + [sym_val_record] = STATE(4616), + [sym_val_table] = STATE(4616), + [sym_val_closure] = STATE(4616), + [sym_unquoted] = STATE(4762), + [sym__unquoted_anonymous_prefix] = STATE(7677), [sym_comment] = STATE(1310), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [aux_sym_cmd_identifier_token38] = ACTIONS(2045), - [aux_sym_cmd_identifier_token39] = ACTIONS(2045), - [aux_sym_cmd_identifier_token40] = ACTIONS(2045), - [sym__newline] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2045), - [anon_sym_PIPE] = ACTIONS(2045), - [anon_sym_err_GT_PIPE] = ACTIONS(2045), - [anon_sym_out_GT_PIPE] = ACTIONS(2045), - [anon_sym_e_GT_PIPE] = ACTIONS(2045), - [anon_sym_o_GT_PIPE] = ACTIONS(2045), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2045), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2045), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2045), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2045), - [anon_sym_LBRACK] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_RPAREN] = ACTIONS(2045), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2045), - [anon_sym_DOT_DOT_LT] = ACTIONS(2045), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2045), - [aux_sym__val_number_decimal_token3] = ACTIONS(2045), - [aux_sym__val_number_decimal_token4] = ACTIONS(2045), - [aux_sym__val_number_token1] = ACTIONS(2045), - [aux_sym__val_number_token2] = ACTIONS(2045), - [aux_sym__val_number_token3] = ACTIONS(2045), - [anon_sym_0b] = ACTIONS(2043), - [anon_sym_0o] = ACTIONS(2043), - [anon_sym_0x] = ACTIONS(2043), - [sym_val_date] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [sym__str_single_quotes] = ACTIONS(2045), - [sym__str_back_ticks] = ACTIONS(2045), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2045), - [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(2045), - [anon_sym_out_GT_GT] = ACTIONS(2045), - [anon_sym_e_GT_GT] = ACTIONS(2045), - [anon_sym_o_GT_GT] = ACTIONS(2045), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2045), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2045), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2045), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2045), - [aux_sym_unquoted_token1] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4339), + [anon_sym_DOLLAR] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), + [anon_sym_DOT_DOT_LT] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4351), + [anon_sym_false] = ACTIONS(4351), + [aux_sym__val_number_decimal_token1] = ACTIONS(4353), + [aux_sym__val_number_decimal_token2] = ACTIONS(4355), + [aux_sym__val_number_decimal_token3] = ACTIONS(4357), + [aux_sym__val_number_decimal_token4] = ACTIONS(4359), + [aux_sym__val_number_token1] = ACTIONS(4361), + [aux_sym__val_number_token2] = ACTIONS(4361), + [aux_sym__val_number_token3] = ACTIONS(4361), + [aux_sym__val_number_token4] = ACTIONS(4363), + [aux_sym__val_number_token5] = ACTIONS(4363), + [aux_sym__val_number_token6] = ACTIONS(4363), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(4365), + [anon_sym_DQUOTE] = ACTIONS(4367), + [sym__str_single_quotes] = ACTIONS(4369), + [sym__str_back_ticks] = ACTIONS(4369), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1860), }, [1311] = { - [sym_cell_path] = STATE(1695), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7658), + [sym__value] = STATE(4764), + [sym_val_nothing] = STATE(4616), + [sym_val_bool] = STATE(4396), + [sym_val_variable] = STATE(4616), + [sym_val_number] = STATE(4616), + [sym__val_number_decimal] = STATE(4076), + [sym__val_number] = STATE(4634), + [sym_val_duration] = STATE(4616), + [sym_val_filesize] = STATE(4616), + [sym_val_binary] = STATE(4616), + [sym_val_string] = STATE(4616), + [sym__raw_str] = STATE(4465), + [sym__str_double_quotes] = STATE(4465), + [sym_val_interpolated] = STATE(4616), + [sym__inter_single_quotes] = STATE(4689), + [sym__inter_double_quotes] = STATE(4701), + [sym_val_list] = STATE(4616), + [sym_val_record] = STATE(4616), + [sym_val_table] = STATE(4616), + [sym_val_closure] = STATE(4616), + [sym_unquoted] = STATE(4765), + [sym__unquoted_anonymous_prefix] = STATE(7677), [sym_comment] = STATE(1311), - [aux_sym_cell_path_repeat1] = STATE(1342), - [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(2047), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2049), - [anon_sym_DOT_DOT_LT] = ACTIONS(2049), - [aux_sym__val_number_decimal_token1] = ACTIONS(2047), - [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(2047), - [anon_sym_0o] = ACTIONS(2047), - [anon_sym_0x] = ACTIONS(2047), - [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(2047), - [anon_sym_out_GT] = ACTIONS(2047), - [anon_sym_e_GT] = ACTIONS(2047), - [anon_sym_o_GT] = ACTIONS(2047), - [anon_sym_err_PLUSout_GT] = ACTIONS(2047), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2047), - [anon_sym_o_PLUSe_GT] = ACTIONS(2047), - [anon_sym_e_PLUSo_GT] = ACTIONS(2047), - [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(2047), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4339), + [anon_sym_DOLLAR] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), + [anon_sym_DOT_DOT_LT] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4379), + [anon_sym_false] = ACTIONS(4379), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(4381), + [aux_sym__val_number_decimal_token3] = ACTIONS(4383), + [aux_sym__val_number_decimal_token4] = ACTIONS(4385), + [aux_sym__val_number_token1] = ACTIONS(4361), + [aux_sym__val_number_token2] = ACTIONS(4361), + [aux_sym__val_number_token3] = ACTIONS(4361), + [aux_sym__val_number_token4] = ACTIONS(4387), + [aux_sym__val_number_token5] = ACTIONS(4387), + [aux_sym__val_number_token6] = ACTIONS(4387), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(4367), + [sym__str_single_quotes] = ACTIONS(4369), + [sym__str_back_ticks] = ACTIONS(4369), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1860), }, [1312] = { - [sym_cell_path] = STATE(1629), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7658), + [sym__value] = STATE(4724), + [sym_val_nothing] = STATE(4616), + [sym_val_bool] = STATE(4396), + [sym_val_variable] = STATE(4616), + [sym_val_number] = STATE(4616), + [sym__val_number_decimal] = STATE(4076), + [sym__val_number] = STATE(4634), + [sym_val_duration] = STATE(4616), + [sym_val_filesize] = STATE(4616), + [sym_val_binary] = STATE(4616), + [sym_val_string] = STATE(4616), + [sym__raw_str] = STATE(4465), + [sym__str_double_quotes] = STATE(4465), + [sym_val_interpolated] = STATE(4616), + [sym__inter_single_quotes] = STATE(4689), + [sym__inter_double_quotes] = STATE(4701), + [sym_val_list] = STATE(4616), + [sym_val_record] = STATE(4616), + [sym_val_table] = STATE(4616), + [sym_val_closure] = STATE(4616), + [sym_unquoted] = STATE(4726), + [sym__unquoted_anonymous_prefix] = STATE(7677), [sym_comment] = STATE(1312), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(2053), - [anon_sym_false] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2053), - [aux_sym_cmd_identifier_token38] = ACTIONS(2053), - [aux_sym_cmd_identifier_token39] = ACTIONS(2053), - [aux_sym_cmd_identifier_token40] = ACTIONS(2053), - [sym__newline] = ACTIONS(2053), - [anon_sym_SEMI] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(2053), - [anon_sym_err_GT_PIPE] = ACTIONS(2053), - [anon_sym_out_GT_PIPE] = ACTIONS(2053), - [anon_sym_e_GT_PIPE] = ACTIONS(2053), - [anon_sym_o_GT_PIPE] = ACTIONS(2053), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2053), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2053), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2053), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2053), - [anon_sym_RPAREN] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2053), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2053), - [anon_sym_DOT_DOT_LT] = ACTIONS(2053), - [aux_sym__val_number_decimal_token1] = ACTIONS(2051), - [aux_sym__val_number_decimal_token2] = ACTIONS(2053), - [aux_sym__val_number_decimal_token3] = ACTIONS(2053), - [aux_sym__val_number_decimal_token4] = ACTIONS(2053), - [aux_sym__val_number_token1] = ACTIONS(2053), - [aux_sym__val_number_token2] = ACTIONS(2053), - [aux_sym__val_number_token3] = ACTIONS(2053), - [anon_sym_0b] = ACTIONS(2051), - [anon_sym_0o] = ACTIONS(2051), - [anon_sym_0x] = ACTIONS(2051), - [sym_val_date] = ACTIONS(2053), - [anon_sym_DQUOTE] = ACTIONS(2053), - [sym__str_single_quotes] = ACTIONS(2053), - [sym__str_back_ticks] = ACTIONS(2053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2053), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2053), - [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(2053), - [anon_sym_out_GT_GT] = ACTIONS(2053), - [anon_sym_e_GT_GT] = ACTIONS(2053), - [anon_sym_o_GT_GT] = ACTIONS(2053), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2053), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2053), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2053), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2053), - [aux_sym_unquoted_token1] = ACTIONS(2051), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4339), + [anon_sym_DOLLAR] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), + [anon_sym_DOT_DOT_LT] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4379), + [anon_sym_false] = ACTIONS(4379), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(4381), + [aux_sym__val_number_decimal_token3] = ACTIONS(4383), + [aux_sym__val_number_decimal_token4] = ACTIONS(4385), + [aux_sym__val_number_token1] = ACTIONS(4361), + [aux_sym__val_number_token2] = ACTIONS(4361), + [aux_sym__val_number_token3] = ACTIONS(4361), + [aux_sym__val_number_token4] = ACTIONS(4387), + [aux_sym__val_number_token5] = ACTIONS(4387), + [aux_sym__val_number_token6] = ACTIONS(4387), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(4367), + [sym__str_single_quotes] = ACTIONS(4369), + [sym__str_back_ticks] = ACTIONS(4369), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1860), }, [1313] = { - [sym_cell_path] = STATE(1683), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7973), + [sym__value] = STATE(3642), + [sym_val_nothing] = STATE(3702), + [sym_val_bool] = STATE(3612), + [sym_val_variable] = STATE(3702), + [sym_val_number] = STATE(3702), + [sym__val_number_decimal] = STATE(3401), + [sym__val_number] = STATE(3687), + [sym_val_duration] = STATE(3702), + [sym_val_filesize] = STATE(3702), + [sym_val_binary] = STATE(3702), + [sym_val_string] = STATE(3702), + [sym__raw_str] = STATE(3586), + [sym__str_double_quotes] = STATE(3586), + [sym_val_interpolated] = STATE(3702), + [sym__inter_single_quotes] = STATE(3700), + [sym__inter_double_quotes] = STATE(3661), + [sym_val_list] = STATE(3702), + [sym_val_record] = STATE(3702), + [sym_val_table] = STATE(3702), + [sym_val_closure] = STATE(3702), + [sym_unquoted] = STATE(3643), + [sym__unquoted_anonymous_prefix] = STATE(7566), [sym_comment] = STATE(1313), - [aux_sym_cell_path_repeat1] = STATE(1342), - [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(2055), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_DOT_DOT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2057), - [anon_sym_DOT_DOT_LT] = ACTIONS(2057), - [aux_sym__val_number_decimal_token1] = ACTIONS(2055), - [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(2055), - [anon_sym_0o] = ACTIONS(2055), - [anon_sym_0x] = ACTIONS(2055), - [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(2055), - [anon_sym_out_GT] = ACTIONS(2055), - [anon_sym_e_GT] = ACTIONS(2055), - [anon_sym_o_GT] = ACTIONS(2055), - [anon_sym_err_PLUSout_GT] = ACTIONS(2055), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2055), - [anon_sym_o_PLUSe_GT] = ACTIONS(2055), - [anon_sym_e_PLUSo_GT] = ACTIONS(2055), - [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(2055), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_DOLLAR] = ACTIONS(4395), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), + [anon_sym_DOT_DOT_LT] = ACTIONS(4401), + [anon_sym_null] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4405), + [anon_sym_false] = ACTIONS(4405), + [aux_sym__val_number_decimal_token1] = ACTIONS(4407), + [aux_sym__val_number_decimal_token2] = ACTIONS(4409), + [aux_sym__val_number_decimal_token3] = ACTIONS(4411), + [aux_sym__val_number_decimal_token4] = ACTIONS(4413), + [aux_sym__val_number_token1] = ACTIONS(4415), + [aux_sym__val_number_token2] = ACTIONS(4415), + [aux_sym__val_number_token3] = ACTIONS(4415), + [aux_sym__val_number_token4] = ACTIONS(4417), + [aux_sym__val_number_token5] = ACTIONS(4417), + [aux_sym__val_number_token6] = ACTIONS(4417), + [anon_sym_0b] = ACTIONS(4419), + [anon_sym_0o] = ACTIONS(4421), + [anon_sym_0x] = ACTIONS(4421), + [sym_val_date] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(4425), + [sym__str_single_quotes] = ACTIONS(4427), + [sym__str_back_ticks] = ACTIONS(4427), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4431), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4433), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4435), }, [1314] = { - [sym_cell_path] = STATE(1688), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7658), + [sym__value] = STATE(4760), + [sym_val_nothing] = STATE(4616), + [sym_val_bool] = STATE(4396), + [sym_val_variable] = STATE(4616), + [sym_val_number] = STATE(4616), + [sym__val_number_decimal] = STATE(4076), + [sym__val_number] = STATE(4634), + [sym_val_duration] = STATE(4616), + [sym_val_filesize] = STATE(4616), + [sym_val_binary] = STATE(4616), + [sym_val_string] = STATE(4616), + [sym__raw_str] = STATE(4465), + [sym__str_double_quotes] = STATE(4465), + [sym_val_interpolated] = STATE(4616), + [sym__inter_single_quotes] = STATE(4689), + [sym__inter_double_quotes] = STATE(4701), + [sym_val_list] = STATE(4616), + [sym_val_record] = STATE(4616), + [sym_val_table] = STATE(4616), + [sym_val_closure] = STATE(4616), + [sym_unquoted] = STATE(4762), + [sym__unquoted_anonymous_prefix] = STATE(7677), [sym_comment] = STATE(1314), - [aux_sym_cell_path_repeat1] = STATE(1342), - [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), - [sym__newline] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_err_GT_PIPE] = ACTIONS(2061), - [anon_sym_out_GT_PIPE] = ACTIONS(2061), - [anon_sym_e_GT_PIPE] = ACTIONS(2061), - [anon_sym_o_GT_PIPE] = ACTIONS(2061), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2061), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2061), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2061), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2061), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_DOT_DOT] = ACTIONS(2059), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2061), - [anon_sym_DOT_DOT_LT] = ACTIONS(2061), - [aux_sym__val_number_decimal_token1] = ACTIONS(2059), - [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_0b] = ACTIONS(2059), - [anon_sym_0o] = ACTIONS(2059), - [anon_sym_0x] = ACTIONS(2059), - [sym_val_date] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [sym__str_single_quotes] = ACTIONS(2061), - [sym__str_back_ticks] = ACTIONS(2061), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2061), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2061), - [anon_sym_err_GT] = ACTIONS(2059), - [anon_sym_out_GT] = ACTIONS(2059), - [anon_sym_e_GT] = ACTIONS(2059), - [anon_sym_o_GT] = ACTIONS(2059), - [anon_sym_err_PLUSout_GT] = ACTIONS(2059), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2059), - [anon_sym_o_PLUSe_GT] = ACTIONS(2059), - [anon_sym_e_PLUSo_GT] = ACTIONS(2059), - [anon_sym_err_GT_GT] = ACTIONS(2061), - [anon_sym_out_GT_GT] = ACTIONS(2061), - [anon_sym_e_GT_GT] = ACTIONS(2061), - [anon_sym_o_GT_GT] = ACTIONS(2061), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2061), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2061), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2061), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2061), - [aux_sym_unquoted_token1] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4339), + [anon_sym_DOLLAR] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), + [anon_sym_DOT_DOT_LT] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(4379), + [anon_sym_false] = ACTIONS(4379), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(4381), + [aux_sym__val_number_decimal_token3] = ACTIONS(4383), + [aux_sym__val_number_decimal_token4] = ACTIONS(4385), + [aux_sym__val_number_token1] = ACTIONS(4361), + [aux_sym__val_number_token2] = ACTIONS(4361), + [aux_sym__val_number_token3] = ACTIONS(4361), + [aux_sym__val_number_token4] = ACTIONS(4387), + [aux_sym__val_number_token5] = ACTIONS(4387), + [aux_sym__val_number_token6] = ACTIONS(4387), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(4367), + [sym__str_single_quotes] = ACTIONS(4369), + [sym__str_back_ticks] = ACTIONS(4369), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1860), }, [1315] = { + [sym__val_range] = STATE(7973), + [sym__value] = STATE(3646), + [sym_val_nothing] = STATE(3702), + [sym_val_bool] = STATE(3612), + [sym_val_variable] = STATE(3702), + [sym_val_number] = STATE(3702), + [sym__val_number_decimal] = STATE(3401), + [sym__val_number] = STATE(3687), + [sym_val_duration] = STATE(3702), + [sym_val_filesize] = STATE(3702), + [sym_val_binary] = STATE(3702), + [sym_val_string] = STATE(3702), + [sym__raw_str] = STATE(3586), + [sym__str_double_quotes] = STATE(3586), + [sym_val_interpolated] = STATE(3702), + [sym__inter_single_quotes] = STATE(3700), + [sym__inter_double_quotes] = STATE(3661), + [sym_val_list] = STATE(3702), + [sym_val_record] = STATE(3702), + [sym_val_table] = STATE(3702), + [sym_val_closure] = STATE(3702), + [sym_unquoted] = STATE(3647), + [sym__unquoted_anonymous_prefix] = STATE(7566), [sym_comment] = STATE(1315), - [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(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_DOT_DOT2] = ACTIONS(4687), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1842), - [anon_sym_DOT_DOT_LT] = ACTIONS(1842), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4689), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4689), - [aux_sym__val_number_decimal_token1] = ACTIONS(1842), - [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(1842), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [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(1842), - [anon_sym_out_GT] = ACTIONS(1842), - [anon_sym_e_GT] = ACTIONS(1842), - [anon_sym_o_GT] = ACTIONS(1842), - [anon_sym_err_PLUSout_GT] = ACTIONS(1842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1842), - [anon_sym_o_PLUSe_GT] = ACTIONS(1842), - [anon_sym_e_PLUSo_GT] = ACTIONS(1842), - [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(1842), - [aux_sym_unquoted_token2] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_DOLLAR] = ACTIONS(4395), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), + [anon_sym_DOT_DOT_LT] = ACTIONS(4401), + [anon_sym_null] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4405), + [anon_sym_false] = ACTIONS(4405), + [aux_sym__val_number_decimal_token1] = ACTIONS(4407), + [aux_sym__val_number_decimal_token2] = ACTIONS(4409), + [aux_sym__val_number_decimal_token3] = ACTIONS(4411), + [aux_sym__val_number_decimal_token4] = ACTIONS(4413), + [aux_sym__val_number_token1] = ACTIONS(4415), + [aux_sym__val_number_token2] = ACTIONS(4415), + [aux_sym__val_number_token3] = ACTIONS(4415), + [aux_sym__val_number_token4] = ACTIONS(4417), + [aux_sym__val_number_token5] = ACTIONS(4417), + [aux_sym__val_number_token6] = ACTIONS(4417), + [anon_sym_0b] = ACTIONS(4419), + [anon_sym_0o] = ACTIONS(4421), + [anon_sym_0x] = ACTIONS(4421), + [sym_val_date] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(4425), + [sym__str_single_quotes] = ACTIONS(4427), + [sym__str_back_ticks] = ACTIONS(4427), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4431), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4433), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4435), }, [1316] = { - [sym_cell_path] = STATE(1597), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7973), + [sym__value] = STATE(3671), + [sym_val_nothing] = STATE(3702), + [sym_val_bool] = STATE(3612), + [sym_val_variable] = STATE(3702), + [sym_val_number] = STATE(3702), + [sym__val_number_decimal] = STATE(3401), + [sym__val_number] = STATE(3687), + [sym_val_duration] = STATE(3702), + [sym_val_filesize] = STATE(3702), + [sym_val_binary] = STATE(3702), + [sym_val_string] = STATE(3702), + [sym__raw_str] = STATE(3586), + [sym__str_double_quotes] = STATE(3586), + [sym_val_interpolated] = STATE(3702), + [sym__inter_single_quotes] = STATE(3700), + [sym__inter_double_quotes] = STATE(3661), + [sym_val_list] = STATE(3702), + [sym_val_record] = STATE(3702), + [sym_val_table] = STATE(3702), + [sym_val_closure] = STATE(3702), + [sym_unquoted] = STATE(3672), + [sym__unquoted_anonymous_prefix] = STATE(7566), [sym_comment] = STATE(1316), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(2069), - [anon_sym_false] = ACTIONS(2069), - [anon_sym_null] = ACTIONS(2069), - [aux_sym_cmd_identifier_token38] = ACTIONS(2069), - [aux_sym_cmd_identifier_token39] = ACTIONS(2069), - [aux_sym_cmd_identifier_token40] = ACTIONS(2069), - [sym__newline] = ACTIONS(2069), - [anon_sym_SEMI] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2069), - [anon_sym_err_GT_PIPE] = ACTIONS(2069), - [anon_sym_out_GT_PIPE] = ACTIONS(2069), - [anon_sym_e_GT_PIPE] = ACTIONS(2069), - [anon_sym_o_GT_PIPE] = ACTIONS(2069), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2069), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2069), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2069), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_DOLLAR] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_DOT_DOT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2069), - [anon_sym_DOT_DOT_LT] = ACTIONS(2069), - [aux_sym__val_number_decimal_token1] = ACTIONS(2067), - [aux_sym__val_number_decimal_token2] = ACTIONS(2069), - [aux_sym__val_number_decimal_token3] = ACTIONS(2069), - [aux_sym__val_number_decimal_token4] = ACTIONS(2069), - [aux_sym__val_number_token1] = ACTIONS(2069), - [aux_sym__val_number_token2] = ACTIONS(2069), - [aux_sym__val_number_token3] = ACTIONS(2069), - [anon_sym_0b] = ACTIONS(2067), - [anon_sym_0o] = ACTIONS(2067), - [anon_sym_0x] = ACTIONS(2067), - [sym_val_date] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2069), - [sym__str_single_quotes] = ACTIONS(2069), - [sym__str_back_ticks] = ACTIONS(2069), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2069), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2069), - [anon_sym_err_GT] = ACTIONS(2067), - [anon_sym_out_GT] = ACTIONS(2067), - [anon_sym_e_GT] = ACTIONS(2067), - [anon_sym_o_GT] = ACTIONS(2067), - [anon_sym_err_PLUSout_GT] = ACTIONS(2067), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2067), - [anon_sym_o_PLUSe_GT] = ACTIONS(2067), - [anon_sym_e_PLUSo_GT] = ACTIONS(2067), - [anon_sym_err_GT_GT] = ACTIONS(2069), - [anon_sym_out_GT_GT] = ACTIONS(2069), - [anon_sym_e_GT_GT] = ACTIONS(2069), - [anon_sym_o_GT_GT] = ACTIONS(2069), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2069), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2069), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2069), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2069), - [aux_sym_unquoted_token1] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_DOLLAR] = ACTIONS(4395), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), + [anon_sym_DOT_DOT_LT] = ACTIONS(4401), + [anon_sym_null] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4405), + [anon_sym_false] = ACTIONS(4405), + [aux_sym__val_number_decimal_token1] = ACTIONS(4407), + [aux_sym__val_number_decimal_token2] = ACTIONS(4409), + [aux_sym__val_number_decimal_token3] = ACTIONS(4411), + [aux_sym__val_number_decimal_token4] = ACTIONS(4413), + [aux_sym__val_number_token1] = ACTIONS(4415), + [aux_sym__val_number_token2] = ACTIONS(4415), + [aux_sym__val_number_token3] = ACTIONS(4415), + [aux_sym__val_number_token4] = ACTIONS(4417), + [aux_sym__val_number_token5] = ACTIONS(4417), + [aux_sym__val_number_token6] = ACTIONS(4417), + [anon_sym_0b] = ACTIONS(4419), + [anon_sym_0o] = ACTIONS(4421), + [anon_sym_0x] = ACTIONS(4421), + [sym_val_date] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(4425), + [sym__str_single_quotes] = ACTIONS(4427), + [sym__str_back_ticks] = ACTIONS(4427), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4431), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4433), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4435), }, [1317] = { - [sym_cell_path] = STATE(1601), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7727), + [sym__value] = STATE(1837), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1670), + [sym_val_variable] = STATE(1738), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1391), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym_unquoted] = STATE(1838), + [sym__unquoted_anonymous_prefix] = STATE(7745), [sym_comment] = STATE(1317), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2085), - [aux_sym_cmd_identifier_token38] = ACTIONS(2085), - [aux_sym_cmd_identifier_token39] = ACTIONS(2085), - [aux_sym_cmd_identifier_token40] = ACTIONS(2085), - [sym__newline] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_err_GT_PIPE] = ACTIONS(2085), - [anon_sym_out_GT_PIPE] = ACTIONS(2085), - [anon_sym_e_GT_PIPE] = ACTIONS(2085), - [anon_sym_o_GT_PIPE] = ACTIONS(2085), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2085), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2085), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2085), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2083), - [aux_sym__val_number_decimal_token2] = ACTIONS(2085), - [aux_sym__val_number_decimal_token3] = ACTIONS(2085), - [aux_sym__val_number_decimal_token4] = ACTIONS(2085), - [aux_sym__val_number_token1] = ACTIONS(2085), - [aux_sym__val_number_token2] = ACTIONS(2085), - [aux_sym__val_number_token3] = ACTIONS(2085), - [anon_sym_0b] = ACTIONS(2083), - [anon_sym_0o] = ACTIONS(2083), - [anon_sym_0x] = ACTIONS(2083), - [sym_val_date] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [sym__str_single_quotes] = ACTIONS(2085), - [sym__str_back_ticks] = ACTIONS(2085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2085), - [anon_sym_err_GT] = ACTIONS(2083), - [anon_sym_out_GT] = ACTIONS(2083), - [anon_sym_e_GT] = ACTIONS(2083), - [anon_sym_o_GT] = ACTIONS(2083), - [anon_sym_err_PLUSout_GT] = ACTIONS(2083), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2083), - [anon_sym_o_PLUSe_GT] = ACTIONS(2083), - [anon_sym_e_PLUSo_GT] = ACTIONS(2083), - [anon_sym_err_GT_GT] = ACTIONS(2085), - [anon_sym_out_GT_GT] = ACTIONS(2085), - [anon_sym_e_GT_GT] = ACTIONS(2085), - [anon_sym_o_GT_GT] = ACTIONS(2085), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2085), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2085), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2085), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2085), - [aux_sym_unquoted_token1] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_DOLLAR] = ACTIONS(4055), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(4439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4441), + [anon_sym_DOT_DOT_LT] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_true] = ACTIONS(4445), + [anon_sym_false] = ACTIONS(4445), + [aux_sym__val_number_decimal_token1] = ACTIONS(4447), + [aux_sym__val_number_decimal_token2] = ACTIONS(4449), + [aux_sym__val_number_decimal_token3] = ACTIONS(4451), + [aux_sym__val_number_decimal_token4] = ACTIONS(4453), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(4455), + [aux_sym__val_number_token5] = ACTIONS(4455), + [aux_sym__val_number_token6] = ACTIONS(4455), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(4457), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4459), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), }, [1318] = { - [sym_cell_path] = STATE(1614), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7973), + [sym__value] = STATE(3678), + [sym_val_nothing] = STATE(3702), + [sym_val_bool] = STATE(3612), + [sym_val_variable] = STATE(3702), + [sym_val_number] = STATE(3702), + [sym__val_number_decimal] = STATE(3401), + [sym__val_number] = STATE(3687), + [sym_val_duration] = STATE(3702), + [sym_val_filesize] = STATE(3702), + [sym_val_binary] = STATE(3702), + [sym_val_string] = STATE(3702), + [sym__raw_str] = STATE(3586), + [sym__str_double_quotes] = STATE(3586), + [sym_val_interpolated] = STATE(3702), + [sym__inter_single_quotes] = STATE(3700), + [sym__inter_double_quotes] = STATE(3661), + [sym_val_list] = STATE(3702), + [sym_val_record] = STATE(3702), + [sym_val_table] = STATE(3702), + [sym_val_closure] = STATE(3702), + [sym_unquoted] = STATE(3679), + [sym__unquoted_anonymous_prefix] = STATE(7566), [sym_comment] = STATE(1318), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [aux_sym_cmd_identifier_token38] = ACTIONS(2089), - [aux_sym_cmd_identifier_token39] = ACTIONS(2089), - [aux_sym_cmd_identifier_token40] = ACTIONS(2089), - [sym__newline] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2087), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), - [anon_sym_DOT_DOT_LT] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [anon_sym_0b] = ACTIONS(2087), - [anon_sym_0o] = ACTIONS(2087), - [anon_sym_0x] = ACTIONS(2087), - [sym_val_date] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [sym__str_single_quotes] = ACTIONS(2089), - [sym__str_back_ticks] = ACTIONS(2089), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2089), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2089), - [anon_sym_err_GT] = ACTIONS(2087), - [anon_sym_out_GT] = ACTIONS(2087), - [anon_sym_e_GT] = ACTIONS(2087), - [anon_sym_o_GT] = ACTIONS(2087), - [anon_sym_err_PLUSout_GT] = ACTIONS(2087), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2087), - [anon_sym_o_PLUSe_GT] = ACTIONS(2087), - [anon_sym_e_PLUSo_GT] = ACTIONS(2087), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), - [aux_sym_unquoted_token1] = ACTIONS(2087), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym_DOLLAR] = ACTIONS(4395), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), + [anon_sym_DOT_DOT_LT] = ACTIONS(4401), + [anon_sym_null] = ACTIONS(4403), + [anon_sym_true] = ACTIONS(4405), + [anon_sym_false] = ACTIONS(4405), + [aux_sym__val_number_decimal_token1] = ACTIONS(4407), + [aux_sym__val_number_decimal_token2] = ACTIONS(4409), + [aux_sym__val_number_decimal_token3] = ACTIONS(4411), + [aux_sym__val_number_decimal_token4] = ACTIONS(4413), + [aux_sym__val_number_token1] = ACTIONS(4415), + [aux_sym__val_number_token2] = ACTIONS(4415), + [aux_sym__val_number_token3] = ACTIONS(4415), + [aux_sym__val_number_token4] = ACTIONS(4417), + [aux_sym__val_number_token5] = ACTIONS(4417), + [aux_sym__val_number_token6] = ACTIONS(4417), + [anon_sym_0b] = ACTIONS(4419), + [anon_sym_0o] = ACTIONS(4421), + [anon_sym_0x] = ACTIONS(4421), + [sym_val_date] = ACTIONS(4423), + [anon_sym_DQUOTE] = ACTIONS(4425), + [sym__str_single_quotes] = ACTIONS(4427), + [sym__str_back_ticks] = ACTIONS(4427), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4431), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4433), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4435), }, [1319] = { - [sym_cell_path] = STATE(1616), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7727), + [sym__value] = STATE(1842), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1670), + [sym_val_variable] = STATE(1738), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1391), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym_unquoted] = STATE(1843), + [sym__unquoted_anonymous_prefix] = STATE(7745), [sym_comment] = STATE(1319), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_null] = ACTIONS(2097), - [aux_sym_cmd_identifier_token38] = ACTIONS(2097), - [aux_sym_cmd_identifier_token39] = ACTIONS(2097), - [aux_sym_cmd_identifier_token40] = ACTIONS(2097), - [sym__newline] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_err_GT_PIPE] = ACTIONS(2097), - [anon_sym_out_GT_PIPE] = ACTIONS(2097), - [anon_sym_e_GT_PIPE] = ACTIONS(2097), - [anon_sym_o_GT_PIPE] = ACTIONS(2097), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2097), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2097), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2097), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_DOT_DOT] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), - [anon_sym_DOT_DOT_LT] = ACTIONS(2097), - [aux_sym__val_number_decimal_token1] = ACTIONS(2095), - [aux_sym__val_number_decimal_token2] = ACTIONS(2097), - [aux_sym__val_number_decimal_token3] = ACTIONS(2097), - [aux_sym__val_number_decimal_token4] = ACTIONS(2097), - [aux_sym__val_number_token1] = ACTIONS(2097), - [aux_sym__val_number_token2] = ACTIONS(2097), - [aux_sym__val_number_token3] = ACTIONS(2097), - [anon_sym_0b] = ACTIONS(2095), - [anon_sym_0o] = ACTIONS(2095), - [anon_sym_0x] = ACTIONS(2095), - [sym_val_date] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [sym__str_single_quotes] = ACTIONS(2097), - [sym__str_back_ticks] = ACTIONS(2097), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2097), - [anon_sym_err_GT] = ACTIONS(2095), - [anon_sym_out_GT] = ACTIONS(2095), - [anon_sym_e_GT] = ACTIONS(2095), - [anon_sym_o_GT] = ACTIONS(2095), - [anon_sym_err_PLUSout_GT] = ACTIONS(2095), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2095), - [anon_sym_o_PLUSe_GT] = ACTIONS(2095), - [anon_sym_e_PLUSo_GT] = ACTIONS(2095), - [anon_sym_err_GT_GT] = ACTIONS(2097), - [anon_sym_out_GT_GT] = ACTIONS(2097), - [anon_sym_e_GT_GT] = ACTIONS(2097), - [anon_sym_o_GT_GT] = ACTIONS(2097), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2097), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2097), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2097), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2097), - [aux_sym_unquoted_token1] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_DOLLAR] = ACTIONS(4055), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(4439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4441), + [anon_sym_DOT_DOT_LT] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_true] = ACTIONS(4445), + [anon_sym_false] = ACTIONS(4445), + [aux_sym__val_number_decimal_token1] = ACTIONS(4447), + [aux_sym__val_number_decimal_token2] = ACTIONS(4449), + [aux_sym__val_number_decimal_token3] = ACTIONS(4451), + [aux_sym__val_number_decimal_token4] = ACTIONS(4453), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(4455), + [aux_sym__val_number_token5] = ACTIONS(4455), + [aux_sym__val_number_token6] = ACTIONS(4455), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(4457), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4459), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), }, [1320] = { + [sym__val_range] = STATE(7727), + [sym__value] = STATE(1814), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1670), + [sym_val_variable] = STATE(1738), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1391), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym_unquoted] = STATE(1795), + [sym__unquoted_anonymous_prefix] = STATE(7745), [sym_comment] = STATE(1320), - [ts_builtin_sym_end] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_PLUS_EQ] = ACTIONS(1080), - [anon_sym_DASH_EQ] = ACTIONS(1080), - [anon_sym_STAR_EQ] = ACTIONS(1080), - [anon_sym_SLASH_EQ] = ACTIONS(1080), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1080), - [sym__newline] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_err_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_GT_PIPE] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1080), - [aux_sym_expr_binary_token1] = ACTIONS(1080), - [aux_sym_expr_binary_token2] = ACTIONS(1080), - [aux_sym_expr_binary_token3] = ACTIONS(1080), - [aux_sym_expr_binary_token4] = ACTIONS(1080), - [aux_sym_expr_binary_token5] = ACTIONS(1080), - [aux_sym_expr_binary_token6] = ACTIONS(1080), - [aux_sym_expr_binary_token7] = ACTIONS(1080), - [aux_sym_expr_binary_token8] = ACTIONS(1080), - [aux_sym_expr_binary_token9] = ACTIONS(1080), - [aux_sym_expr_binary_token10] = ACTIONS(1080), - [aux_sym_expr_binary_token11] = ACTIONS(1080), - [aux_sym_expr_binary_token12] = ACTIONS(1080), - [aux_sym_expr_binary_token13] = ACTIONS(1080), - [aux_sym_expr_binary_token14] = ACTIONS(1080), - [aux_sym_expr_binary_token15] = ACTIONS(1080), - [aux_sym_expr_binary_token16] = ACTIONS(1080), - [aux_sym_expr_binary_token17] = ACTIONS(1080), - [aux_sym_expr_binary_token18] = ACTIONS(1080), - [aux_sym_expr_binary_token19] = ACTIONS(1080), - [aux_sym_expr_binary_token20] = ACTIONS(1080), - [aux_sym_expr_binary_token21] = ACTIONS(1080), - [aux_sym_expr_binary_token22] = ACTIONS(1080), - [aux_sym_expr_binary_token23] = ACTIONS(1080), - [aux_sym_expr_binary_token24] = ACTIONS(1080), - [aux_sym_expr_binary_token25] = ACTIONS(1080), - [aux_sym_expr_binary_token26] = ACTIONS(1080), - [aux_sym_expr_binary_token27] = ACTIONS(1080), - [aux_sym_expr_binary_token28] = ACTIONS(1080), - [anon_sym_DOT_DOT2] = ACTIONS(1078), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), - [anon_sym_err_GT] = ACTIONS(1078), - [anon_sym_out_GT] = ACTIONS(1078), - [anon_sym_e_GT] = ACTIONS(1078), - [anon_sym_o_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT] = ACTIONS(1078), - [anon_sym_err_GT_GT] = ACTIONS(1080), - [anon_sym_out_GT_GT] = ACTIONS(1080), - [anon_sym_e_GT_GT] = ACTIONS(1080), - [anon_sym_o_GT_GT] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_DOLLAR] = ACTIONS(4055), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(4439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4441), + [anon_sym_DOT_DOT_LT] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_true] = ACTIONS(4445), + [anon_sym_false] = ACTIONS(4445), + [aux_sym__val_number_decimal_token1] = ACTIONS(4447), + [aux_sym__val_number_decimal_token2] = ACTIONS(4449), + [aux_sym__val_number_decimal_token3] = ACTIONS(4451), + [aux_sym__val_number_decimal_token4] = ACTIONS(4453), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(4455), + [aux_sym__val_number_token5] = ACTIONS(4455), + [aux_sym__val_number_token6] = ACTIONS(4455), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(4457), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4459), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), }, [1321] = { - [sym_cell_path] = STATE(1692), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7866), + [sym__value] = STATE(5967), + [sym_val_nothing] = STATE(5929), + [sym_val_bool] = STATE(5701), + [sym_val_variable] = STATE(5929), + [sym_val_number] = STATE(5929), + [sym__val_number_decimal] = STATE(5135), + [sym__val_number] = STATE(5877), + [sym_val_duration] = STATE(5929), + [sym_val_filesize] = STATE(5929), + [sym_val_binary] = STATE(5929), + [sym_val_string] = STATE(5929), + [sym__raw_str] = STATE(5530), + [sym__str_double_quotes] = STATE(5530), + [sym_val_interpolated] = STATE(5929), + [sym__inter_single_quotes] = STATE(5843), + [sym__inter_double_quotes] = STATE(5844), + [sym_val_list] = STATE(5929), + [sym_val_record] = STATE(5929), + [sym_val_table] = STATE(5929), + [sym_val_closure] = STATE(5929), + [sym_unquoted] = STATE(5968), + [sym__unquoted_anonymous_prefix] = STATE(7974), [sym_comment] = STATE(1321), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(1903), - [anon_sym_false] = ACTIONS(1903), - [anon_sym_null] = ACTIONS(1903), - [aux_sym_cmd_identifier_token38] = ACTIONS(1903), - [aux_sym_cmd_identifier_token39] = ACTIONS(1903), - [aux_sym_cmd_identifier_token40] = ACTIONS(1903), - [sym__newline] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_err_GT_PIPE] = ACTIONS(1903), - [anon_sym_out_GT_PIPE] = ACTIONS(1903), - [anon_sym_e_GT_PIPE] = ACTIONS(1903), - [anon_sym_o_GT_PIPE] = ACTIONS(1903), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_RPAREN] = ACTIONS(1903), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1901), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1903), - [anon_sym_DOT_DOT_LT] = ACTIONS(1903), - [aux_sym__val_number_decimal_token1] = ACTIONS(1901), - [aux_sym__val_number_decimal_token2] = ACTIONS(1903), - [aux_sym__val_number_decimal_token3] = ACTIONS(1903), - [aux_sym__val_number_decimal_token4] = ACTIONS(1903), - [aux_sym__val_number_token1] = ACTIONS(1903), - [aux_sym__val_number_token2] = ACTIONS(1903), - [aux_sym__val_number_token3] = ACTIONS(1903), - [anon_sym_0b] = ACTIONS(1901), - [anon_sym_0o] = ACTIONS(1901), - [anon_sym_0x] = ACTIONS(1901), - [sym_val_date] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(1903), - [sym__str_single_quotes] = ACTIONS(1903), - [sym__str_back_ticks] = ACTIONS(1903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), - [anon_sym_err_GT] = ACTIONS(1901), - [anon_sym_out_GT] = ACTIONS(1901), - [anon_sym_e_GT] = ACTIONS(1901), - [anon_sym_o_GT] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT] = ACTIONS(1901), - [anon_sym_err_GT_GT] = ACTIONS(1903), - [anon_sym_out_GT_GT] = ACTIONS(1903), - [anon_sym_e_GT_GT] = ACTIONS(1903), - [anon_sym_o_GT_GT] = ACTIONS(1903), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), - [aux_sym_unquoted_token1] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4463), + [anon_sym_DOLLAR] = ACTIONS(4465), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4471), + [anon_sym_DOT_DOT_LT] = ACTIONS(4471), + [anon_sym_null] = ACTIONS(4473), + [anon_sym_true] = ACTIONS(4475), + [anon_sym_false] = ACTIONS(4475), + [aux_sym__val_number_decimal_token1] = ACTIONS(4477), + [aux_sym__val_number_decimal_token2] = ACTIONS(4479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4481), + [aux_sym__val_number_decimal_token4] = ACTIONS(4483), + [aux_sym__val_number_token1] = ACTIONS(4485), + [aux_sym__val_number_token2] = ACTIONS(4485), + [aux_sym__val_number_token3] = ACTIONS(4485), + [aux_sym__val_number_token4] = ACTIONS(4487), + [aux_sym__val_number_token5] = ACTIONS(4487), + [aux_sym__val_number_token6] = ACTIONS(4487), + [anon_sym_0b] = ACTIONS(4489), + [anon_sym_0o] = ACTIONS(4491), + [anon_sym_0x] = ACTIONS(4491), + [sym_val_date] = ACTIONS(4493), + [anon_sym_DQUOTE] = ACTIONS(4495), + [sym__str_single_quotes] = ACTIONS(4497), + [sym__str_back_ticks] = ACTIONS(4497), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4501), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4505), }, [1322] = { - [sym_cell_path] = STATE(1618), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7727), + [sym__value] = STATE(1736), + [sym_val_nothing] = STATE(1738), + [sym_val_bool] = STATE(1670), + [sym_val_variable] = STATE(1738), + [sym_val_number] = STATE(1738), + [sym__val_number_decimal] = STATE(1391), + [sym__val_number] = STATE(1765), + [sym_val_duration] = STATE(1738), + [sym_val_filesize] = STATE(1738), + [sym_val_binary] = STATE(1738), + [sym_val_string] = STATE(1738), + [sym__raw_str] = STATE(1783), + [sym__str_double_quotes] = STATE(1783), + [sym_val_interpolated] = STATE(1738), + [sym__inter_single_quotes] = STATE(1768), + [sym__inter_double_quotes] = STATE(1769), + [sym_val_list] = STATE(1738), + [sym_val_record] = STATE(1738), + [sym_val_table] = STATE(1738), + [sym_val_closure] = STATE(1738), + [sym_unquoted] = STATE(1737), + [sym__unquoted_anonymous_prefix] = STATE(7745), [sym_comment] = STATE(1322), - [aux_sym_cell_path_repeat1] = STATE(1342), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1911), - [aux_sym_cmd_identifier_token39] = ACTIONS(1911), - [aux_sym_cmd_identifier_token40] = ACTIONS(1911), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_err_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_GT_PIPE] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_RPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_DASH_DASH] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), - [anon_sym_DOT_DOT_LT] = 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_0b] = ACTIONS(1909), - [anon_sym_0o] = ACTIONS(1909), - [anon_sym_0x] = ACTIONS(1909), - [sym_val_date] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), - [anon_sym_err_GT] = ACTIONS(1909), - [anon_sym_out_GT] = ACTIONS(1909), - [anon_sym_e_GT] = ACTIONS(1909), - [anon_sym_o_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT] = ACTIONS(1909), - [anon_sym_err_GT_GT] = ACTIONS(1911), - [anon_sym_out_GT_GT] = ACTIONS(1911), - [anon_sym_e_GT_GT] = ACTIONS(1911), - [anon_sym_o_GT_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), - [aux_sym_unquoted_token1] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym_DOLLAR] = ACTIONS(4055), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(4439), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4441), + [anon_sym_DOT_DOT_LT] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_true] = ACTIONS(4445), + [anon_sym_false] = ACTIONS(4445), + [aux_sym__val_number_decimal_token1] = ACTIONS(4447), + [aux_sym__val_number_decimal_token2] = ACTIONS(4449), + [aux_sym__val_number_decimal_token3] = ACTIONS(4451), + [aux_sym__val_number_decimal_token4] = ACTIONS(4453), + [aux_sym__val_number_token1] = ACTIONS(2645), + [aux_sym__val_number_token2] = ACTIONS(2645), + [aux_sym__val_number_token3] = ACTIONS(2645), + [aux_sym__val_number_token4] = ACTIONS(4455), + [aux_sym__val_number_token5] = ACTIONS(4455), + [aux_sym__val_number_token6] = ACTIONS(4455), + [anon_sym_0b] = ACTIONS(2649), + [anon_sym_0o] = ACTIONS(2651), + [anon_sym_0x] = ACTIONS(2651), + [sym_val_date] = ACTIONS(4457), + [anon_sym_DQUOTE] = ACTIONS(2655), + [sym__str_single_quotes] = ACTIONS(2657), + [sym__str_back_ticks] = ACTIONS(2657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4459), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2669), }, [1323] = { + [sym__val_range] = STATE(7866), + [sym__value] = STATE(5794), + [sym_val_nothing] = STATE(5929), + [sym_val_bool] = STATE(5701), + [sym_val_variable] = STATE(5929), + [sym_val_number] = STATE(5929), + [sym__val_number_decimal] = STATE(5135), + [sym__val_number] = STATE(5877), + [sym_val_duration] = STATE(5929), + [sym_val_filesize] = STATE(5929), + [sym_val_binary] = STATE(5929), + [sym_val_string] = STATE(5929), + [sym__raw_str] = STATE(5530), + [sym__str_double_quotes] = STATE(5530), + [sym_val_interpolated] = STATE(5929), + [sym__inter_single_quotes] = STATE(5843), + [sym__inter_double_quotes] = STATE(5844), + [sym_val_list] = STATE(5929), + [sym_val_record] = STATE(5929), + [sym_val_table] = STATE(5929), + [sym_val_closure] = STATE(5929), + [sym_unquoted] = STATE(5799), + [sym__unquoted_anonymous_prefix] = STATE(7974), [sym_comment] = STATE(1323), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_PLUS_EQ] = ACTIONS(1086), - [anon_sym_DASH_EQ] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1086), - [anon_sym_SLASH_EQ] = ACTIONS(1086), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1086), - [sym__newline] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_err_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_GT_PIPE] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [aux_sym_expr_binary_token1] = ACTIONS(1092), - [aux_sym_expr_binary_token2] = ACTIONS(1092), - [aux_sym_expr_binary_token3] = ACTIONS(1092), - [aux_sym_expr_binary_token4] = ACTIONS(1092), - [aux_sym_expr_binary_token5] = ACTIONS(1092), - [aux_sym_expr_binary_token6] = ACTIONS(1092), - [aux_sym_expr_binary_token7] = ACTIONS(1092), - [aux_sym_expr_binary_token8] = ACTIONS(1092), - [aux_sym_expr_binary_token9] = ACTIONS(1092), - [aux_sym_expr_binary_token10] = ACTIONS(1092), - [aux_sym_expr_binary_token11] = ACTIONS(1092), - [aux_sym_expr_binary_token12] = ACTIONS(1092), - [aux_sym_expr_binary_token13] = ACTIONS(1092), - [aux_sym_expr_binary_token14] = ACTIONS(1092), - [aux_sym_expr_binary_token15] = ACTIONS(1092), - [aux_sym_expr_binary_token16] = ACTIONS(1092), - [aux_sym_expr_binary_token17] = ACTIONS(1092), - [aux_sym_expr_binary_token18] = ACTIONS(1092), - [aux_sym_expr_binary_token19] = ACTIONS(1092), - [aux_sym_expr_binary_token20] = ACTIONS(1092), - [aux_sym_expr_binary_token21] = ACTIONS(1092), - [aux_sym_expr_binary_token22] = ACTIONS(1092), - [aux_sym_expr_binary_token23] = ACTIONS(1092), - [aux_sym_expr_binary_token24] = ACTIONS(1092), - [aux_sym_expr_binary_token25] = ACTIONS(1092), - [aux_sym_expr_binary_token26] = ACTIONS(1092), - [aux_sym_expr_binary_token27] = ACTIONS(1092), - [aux_sym_expr_binary_token28] = ACTIONS(1092), - [anon_sym_DOT_DOT2] = ACTIONS(1099), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1101), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1101), - [aux_sym_record_entry_token1] = ACTIONS(4691), - [anon_sym_err_GT] = ACTIONS(1090), - [anon_sym_out_GT] = ACTIONS(1090), - [anon_sym_e_GT] = ACTIONS(1090), - [anon_sym_o_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT] = ACTIONS(1090), - [anon_sym_err_GT_GT] = ACTIONS(1092), - [anon_sym_out_GT_GT] = ACTIONS(1092), - [anon_sym_e_GT_GT] = ACTIONS(1092), - [anon_sym_o_GT_GT] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4463), + [anon_sym_DOLLAR] = ACTIONS(4465), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4471), + [anon_sym_DOT_DOT_LT] = ACTIONS(4471), + [anon_sym_null] = ACTIONS(4473), + [anon_sym_true] = ACTIONS(4475), + [anon_sym_false] = ACTIONS(4475), + [aux_sym__val_number_decimal_token1] = ACTIONS(4477), + [aux_sym__val_number_decimal_token2] = ACTIONS(4479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4481), + [aux_sym__val_number_decimal_token4] = ACTIONS(4483), + [aux_sym__val_number_token1] = ACTIONS(4485), + [aux_sym__val_number_token2] = ACTIONS(4485), + [aux_sym__val_number_token3] = ACTIONS(4485), + [aux_sym__val_number_token4] = ACTIONS(4487), + [aux_sym__val_number_token5] = ACTIONS(4487), + [aux_sym__val_number_token6] = ACTIONS(4487), + [anon_sym_0b] = ACTIONS(4489), + [anon_sym_0o] = ACTIONS(4491), + [anon_sym_0x] = ACTIONS(4491), + [sym_val_date] = ACTIONS(4493), + [anon_sym_DQUOTE] = ACTIONS(4495), + [sym__str_single_quotes] = ACTIONS(4497), + [sym__str_back_ticks] = ACTIONS(4497), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4501), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4505), }, [1324] = { + [sym__expr_parenthesized_immediate] = STATE(1834), + [sym__immediate_decimal] = STATE(1835), + [sym_val_variable] = STATE(1834), [sym_comment] = STATE(1324), - [ts_builtin_sym_end] = ACTIONS(1068), - [anon_sym_EQ] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1068), - [anon_sym_DASH_EQ] = ACTIONS(1068), - [anon_sym_STAR_EQ] = ACTIONS(1068), - [anon_sym_SLASH_EQ] = ACTIONS(1068), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1068), - [sym__newline] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_err_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_GT_PIPE] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), - [aux_sym_expr_binary_token1] = ACTIONS(1068), - [aux_sym_expr_binary_token2] = ACTIONS(1068), - [aux_sym_expr_binary_token3] = ACTIONS(1068), - [aux_sym_expr_binary_token4] = ACTIONS(1068), - [aux_sym_expr_binary_token5] = ACTIONS(1068), - [aux_sym_expr_binary_token6] = ACTIONS(1068), - [aux_sym_expr_binary_token7] = ACTIONS(1068), - [aux_sym_expr_binary_token8] = ACTIONS(1068), - [aux_sym_expr_binary_token9] = ACTIONS(1068), - [aux_sym_expr_binary_token10] = ACTIONS(1068), - [aux_sym_expr_binary_token11] = ACTIONS(1068), - [aux_sym_expr_binary_token12] = ACTIONS(1068), - [aux_sym_expr_binary_token13] = ACTIONS(1068), - [aux_sym_expr_binary_token14] = ACTIONS(1068), - [aux_sym_expr_binary_token15] = ACTIONS(1068), - [aux_sym_expr_binary_token16] = ACTIONS(1068), - [aux_sym_expr_binary_token17] = ACTIONS(1068), - [aux_sym_expr_binary_token18] = ACTIONS(1068), - [aux_sym_expr_binary_token19] = ACTIONS(1068), - [aux_sym_expr_binary_token20] = ACTIONS(1068), - [aux_sym_expr_binary_token21] = ACTIONS(1068), - [aux_sym_expr_binary_token22] = ACTIONS(1068), - [aux_sym_expr_binary_token23] = ACTIONS(1068), - [aux_sym_expr_binary_token24] = ACTIONS(1068), - [aux_sym_expr_binary_token25] = ACTIONS(1068), - [aux_sym_expr_binary_token26] = ACTIONS(1068), - [aux_sym_expr_binary_token27] = ACTIONS(1068), - [aux_sym_expr_binary_token28] = ACTIONS(1068), - [anon_sym_DOT_DOT2] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), - [anon_sym_err_GT] = ACTIONS(1066), - [anon_sym_out_GT] = ACTIONS(1066), - [anon_sym_e_GT] = ACTIONS(1066), - [anon_sym_o_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT] = ACTIONS(1066), - [anon_sym_err_GT_GT] = ACTIONS(1068), - [anon_sym_out_GT_GT] = ACTIONS(1068), - [anon_sym_e_GT_GT] = ACTIONS(1068), - [anon_sym_o_GT_GT] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_DOLLAR] = ACTIONS(4055), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH2] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(4057), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT] = ACTIONS(1591), + [aux_sym__immediate_decimal_token1] = ACTIONS(4507), + [aux_sym__immediate_decimal_token3] = ACTIONS(4509), + [aux_sym__immediate_decimal_token4] = ACTIONS(4511), + [aux_sym__immediate_decimal_token5] = ACTIONS(4513), + [anon_sym_null] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1581), + [aux_sym__val_number_decimal_token2] = ACTIONS(1581), + [aux_sym__val_number_decimal_token3] = ACTIONS(1581), + [aux_sym__val_number_decimal_token4] = ACTIONS(1581), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [aux_sym__val_number_token4] = ACTIONS(1591), + [aux_sym__val_number_token5] = ACTIONS(1591), + [aux_sym__val_number_token6] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1581), + [anon_sym_0o] = ACTIONS(1581), + [anon_sym_0x] = ACTIONS(1581), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1581), + [anon_sym_out_GT] = ACTIONS(1581), + [anon_sym_e_GT] = ACTIONS(1581), + [anon_sym_o_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT] = ACTIONS(1581), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1591), }, [1325] = { + [sym__val_range] = STATE(7572), + [sym__value] = STATE(6049), + [sym_val_nothing] = STATE(2112), + [sym_val_bool] = STATE(7458), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2112), + [sym__val_number_decimal] = STATE(5622), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(2112), + [sym_val_filesize] = STATE(2112), + [sym_val_binary] = STATE(2112), + [sym_val_string] = STATE(2112), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(2112), + [sym__inter_single_quotes] = STATE(2131), + [sym__inter_double_quotes] = STATE(2132), + [sym_val_list] = STATE(2112), + [sym_val_record] = STATE(2112), + [sym_val_table] = STATE(2112), + [sym_val_closure] = STATE(2112), + [sym_unquoted] = STATE(6050), + [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1325), - [ts_builtin_sym_end] = ACTIONS(1072), - [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(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(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = 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), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(3983), + [anon_sym_LPAREN] = ACTIONS(4211), + [anon_sym_DOLLAR] = ACTIONS(4213), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_DOT_DOT] = ACTIONS(4215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), + [anon_sym_DOT_DOT_LT] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(3993), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = 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(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4005), + [aux_sym__val_number_token5] = ACTIONS(4005), + [aux_sym__val_number_token6] = ACTIONS(4005), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1326] = { + [sym__val_range] = STATE(7866), + [sym__value] = STATE(5848), + [sym_val_nothing] = STATE(5929), + [sym_val_bool] = STATE(5701), + [sym_val_variable] = STATE(5929), + [sym_val_number] = STATE(5929), + [sym__val_number_decimal] = STATE(5135), + [sym__val_number] = STATE(5877), + [sym_val_duration] = STATE(5929), + [sym_val_filesize] = STATE(5929), + [sym_val_binary] = STATE(5929), + [sym_val_string] = STATE(5929), + [sym__raw_str] = STATE(5530), + [sym__str_double_quotes] = STATE(5530), + [sym_val_interpolated] = STATE(5929), + [sym__inter_single_quotes] = STATE(5843), + [sym__inter_double_quotes] = STATE(5844), + [sym_val_list] = STATE(5929), + [sym_val_record] = STATE(5929), + [sym_val_table] = STATE(5929), + [sym_val_closure] = STATE(5929), + [sym_unquoted] = STATE(5898), + [sym__unquoted_anonymous_prefix] = STATE(7974), [sym_comment] = STATE(1326), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_PLUS_EQ] = ACTIONS(1080), - [anon_sym_DASH_EQ] = ACTIONS(1080), - [anon_sym_STAR_EQ] = ACTIONS(1080), - [anon_sym_SLASH_EQ] = ACTIONS(1080), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1080), - [sym__newline] = ACTIONS(1078), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_err_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_GT_PIPE] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_LBRACE] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1080), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1080), - [anon_sym_DOT_DOT2] = ACTIONS(1078), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), - [anon_sym_err_GT] = ACTIONS(1078), - [anon_sym_out_GT] = ACTIONS(1078), - [anon_sym_e_GT] = ACTIONS(1078), - [anon_sym_o_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT] = ACTIONS(1078), - [anon_sym_err_GT_GT] = ACTIONS(1080), - [anon_sym_out_GT_GT] = ACTIONS(1080), - [anon_sym_e_GT_GT] = ACTIONS(1080), - [anon_sym_o_GT_GT] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4463), + [anon_sym_DOLLAR] = ACTIONS(4465), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4471), + [anon_sym_DOT_DOT_LT] = ACTIONS(4471), + [anon_sym_null] = ACTIONS(4473), + [anon_sym_true] = ACTIONS(4475), + [anon_sym_false] = ACTIONS(4475), + [aux_sym__val_number_decimal_token1] = ACTIONS(4477), + [aux_sym__val_number_decimal_token2] = ACTIONS(4479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4481), + [aux_sym__val_number_decimal_token4] = ACTIONS(4483), + [aux_sym__val_number_token1] = ACTIONS(4485), + [aux_sym__val_number_token2] = ACTIONS(4485), + [aux_sym__val_number_token3] = ACTIONS(4485), + [aux_sym__val_number_token4] = ACTIONS(4487), + [aux_sym__val_number_token5] = ACTIONS(4487), + [aux_sym__val_number_token6] = ACTIONS(4487), + [anon_sym_0b] = ACTIONS(4489), + [anon_sym_0o] = ACTIONS(4491), + [anon_sym_0x] = ACTIONS(4491), + [sym_val_date] = ACTIONS(4493), + [anon_sym_DQUOTE] = ACTIONS(4495), + [sym__str_single_quotes] = ACTIONS(4497), + [sym__str_back_ticks] = ACTIONS(4497), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4501), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4505), }, [1327] = { + [sym__val_range] = STATE(7627), + [sym__value] = STATE(5570), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(5531), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(4927), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3335), + [sym__str_double_quotes] = STATE(3335), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(5589), + [sym__unquoted_anonymous_prefix] = STATE(7630), [sym_comment] = STATE(1327), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), - [anon_sym_DOT_DOT_LT] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(4693), - [aux_sym__immediate_decimal_token2] = ACTIONS(4695), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4525), + [anon_sym_DOT_DOT_LT] = ACTIONS(4525), + [anon_sym_null] = ACTIONS(4527), + [anon_sym_true] = ACTIONS(4529), + [anon_sym_false] = ACTIONS(4529), + [aux_sym__val_number_decimal_token1] = ACTIONS(4531), + [aux_sym__val_number_decimal_token2] = ACTIONS(4533), + [aux_sym__val_number_decimal_token3] = ACTIONS(4535), + [aux_sym__val_number_decimal_token4] = ACTIONS(4537), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(4539), + [aux_sym__val_number_token5] = ACTIONS(4539), + [aux_sym__val_number_token6] = ACTIONS(4539), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(4541), + [anon_sym_DQUOTE] = ACTIONS(4543), + [sym__str_single_quotes] = ACTIONS(4545), + [sym__str_back_ticks] = ACTIONS(4545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4547), }, [1328] = { + [sym__val_range] = STATE(7866), + [sym__value] = STATE(5868), + [sym_val_nothing] = STATE(5929), + [sym_val_bool] = STATE(5701), + [sym_val_variable] = STATE(5929), + [sym_val_number] = STATE(5929), + [sym__val_number_decimal] = STATE(5135), + [sym__val_number] = STATE(5877), + [sym_val_duration] = STATE(5929), + [sym_val_filesize] = STATE(5929), + [sym_val_binary] = STATE(5929), + [sym_val_string] = STATE(5929), + [sym__raw_str] = STATE(5530), + [sym__str_double_quotes] = STATE(5530), + [sym_val_interpolated] = STATE(5929), + [sym__inter_single_quotes] = STATE(5843), + [sym__inter_double_quotes] = STATE(5844), + [sym_val_list] = STATE(5929), + [sym_val_record] = STATE(5929), + [sym_val_table] = STATE(5929), + [sym_val_closure] = STATE(5929), + [sym_unquoted] = STATE(5870), + [sym__unquoted_anonymous_prefix] = STATE(7974), [sym_comment] = STATE(1328), - [aux_sym_cmd_identifier_token41] = ACTIONS(1536), - [sym__newline] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_EQ_GT] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(4697), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4699), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [aux_sym_record_entry_token1] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4463), + [anon_sym_DOLLAR] = ACTIONS(4465), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4471), + [anon_sym_DOT_DOT_LT] = ACTIONS(4471), + [anon_sym_null] = ACTIONS(4473), + [anon_sym_true] = ACTIONS(4475), + [anon_sym_false] = ACTIONS(4475), + [aux_sym__val_number_decimal_token1] = ACTIONS(4477), + [aux_sym__val_number_decimal_token2] = ACTIONS(4479), + [aux_sym__val_number_decimal_token3] = ACTIONS(4481), + [aux_sym__val_number_decimal_token4] = ACTIONS(4483), + [aux_sym__val_number_token1] = ACTIONS(4485), + [aux_sym__val_number_token2] = ACTIONS(4485), + [aux_sym__val_number_token3] = ACTIONS(4485), + [aux_sym__val_number_token4] = ACTIONS(4487), + [aux_sym__val_number_token5] = ACTIONS(4487), + [aux_sym__val_number_token6] = ACTIONS(4487), + [anon_sym_0b] = ACTIONS(4489), + [anon_sym_0o] = ACTIONS(4491), + [anon_sym_0x] = ACTIONS(4491), + [sym_val_date] = ACTIONS(4493), + [anon_sym_DQUOTE] = ACTIONS(4495), + [sym__str_single_quotes] = ACTIONS(4497), + [sym__str_back_ticks] = ACTIONS(4497), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4501), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4503), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4505), }, [1329] = { + [sym__val_range] = STATE(7627), + [sym__value] = STATE(5612), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(5531), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(4927), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3335), + [sym__str_double_quotes] = STATE(3335), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(5617), + [sym__unquoted_anonymous_prefix] = STATE(7630), [sym_comment] = STATE(1329), - [aux_sym_cmd_identifier_token41] = ACTIONS(1528), - [sym__newline] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_EQ_GT] = ACTIONS(1530), - [aux_sym_expr_binary_token1] = ACTIONS(1530), - [aux_sym_expr_binary_token2] = ACTIONS(1530), - [aux_sym_expr_binary_token3] = ACTIONS(1530), - [aux_sym_expr_binary_token4] = ACTIONS(1530), - [aux_sym_expr_binary_token5] = ACTIONS(1530), - [aux_sym_expr_binary_token6] = ACTIONS(1530), - [aux_sym_expr_binary_token7] = ACTIONS(1530), - [aux_sym_expr_binary_token8] = ACTIONS(1530), - [aux_sym_expr_binary_token9] = ACTIONS(1530), - [aux_sym_expr_binary_token10] = ACTIONS(1530), - [aux_sym_expr_binary_token11] = ACTIONS(1530), - [aux_sym_expr_binary_token12] = ACTIONS(1530), - [aux_sym_expr_binary_token13] = ACTIONS(1530), - [aux_sym_expr_binary_token14] = ACTIONS(1530), - [aux_sym_expr_binary_token15] = ACTIONS(1530), - [aux_sym_expr_binary_token16] = ACTIONS(1530), - [aux_sym_expr_binary_token17] = ACTIONS(1530), - [aux_sym_expr_binary_token18] = ACTIONS(1530), - [aux_sym_expr_binary_token19] = ACTIONS(1530), - [aux_sym_expr_binary_token20] = ACTIONS(1530), - [aux_sym_expr_binary_token21] = ACTIONS(1530), - [aux_sym_expr_binary_token22] = ACTIONS(1530), - [aux_sym_expr_binary_token23] = ACTIONS(1530), - [aux_sym_expr_binary_token24] = ACTIONS(1530), - [aux_sym_expr_binary_token25] = ACTIONS(1530), - [aux_sym_expr_binary_token26] = ACTIONS(1530), - [aux_sym_expr_binary_token27] = ACTIONS(1530), - [aux_sym_expr_binary_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(4701), - [aux_sym__immediate_decimal_token2] = ACTIONS(4703), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [aux_sym_record_entry_token1] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4525), + [anon_sym_DOT_DOT_LT] = ACTIONS(4525), + [anon_sym_null] = ACTIONS(4527), + [anon_sym_true] = ACTIONS(4529), + [anon_sym_false] = ACTIONS(4529), + [aux_sym__val_number_decimal_token1] = ACTIONS(4531), + [aux_sym__val_number_decimal_token2] = ACTIONS(4533), + [aux_sym__val_number_decimal_token3] = ACTIONS(4535), + [aux_sym__val_number_decimal_token4] = ACTIONS(4537), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(4539), + [aux_sym__val_number_token5] = ACTIONS(4539), + [aux_sym__val_number_token6] = ACTIONS(4539), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(4541), + [anon_sym_DQUOTE] = ACTIONS(4543), + [sym__str_single_quotes] = ACTIONS(4545), + [sym__str_back_ticks] = ACTIONS(4545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4547), }, [1330] = { - [sym_cell_path] = STATE(1593), - [sym_path] = STATE(1538), + [sym__val_range] = STATE(7627), + [sym__value] = STATE(5616), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(5531), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(4927), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3335), + [sym__str_double_quotes] = STATE(3335), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(5547), + [sym__unquoted_anonymous_prefix] = STATE(7630), [sym_comment] = STATE(1330), - [aux_sym_cell_path_repeat1] = STATE(1342), - [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), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_0b] = ACTIONS(1021), - [anon_sym_0o] = ACTIONS(1021), - [anon_sym_0x] = ACTIONS(1021), - [sym_val_date] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [aux_sym_unquoted_token1] = ACTIONS(1021), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4525), + [anon_sym_DOT_DOT_LT] = ACTIONS(4525), + [anon_sym_null] = ACTIONS(4527), + [anon_sym_true] = ACTIONS(4529), + [anon_sym_false] = ACTIONS(4529), + [aux_sym__val_number_decimal_token1] = ACTIONS(4531), + [aux_sym__val_number_decimal_token2] = ACTIONS(4533), + [aux_sym__val_number_decimal_token3] = ACTIONS(4535), + [aux_sym__val_number_decimal_token4] = ACTIONS(4537), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(4539), + [aux_sym__val_number_token5] = ACTIONS(4539), + [aux_sym__val_number_token6] = ACTIONS(4539), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(4541), + [anon_sym_DQUOTE] = ACTIONS(4543), + [sym__str_single_quotes] = ACTIONS(4545), + [sym__str_back_ticks] = ACTIONS(4545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4547), }, [1331] = { + [sym__val_range] = STATE(7627), + [sym__value] = STATE(5533), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(5531), + [sym_val_variable] = STATE(3532), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(4927), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3335), + [sym__str_double_quotes] = STATE(3335), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym_unquoted] = STATE(5542), + [sym__unquoted_anonymous_prefix] = STATE(7630), [sym_comment] = STATE(1331), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(4705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_DOLLAR] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4521), + [anon_sym_DOT_DOT] = ACTIONS(4523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4525), + [anon_sym_DOT_DOT_LT] = ACTIONS(4525), + [anon_sym_null] = ACTIONS(4527), + [anon_sym_true] = ACTIONS(4529), + [anon_sym_false] = ACTIONS(4529), + [aux_sym__val_number_decimal_token1] = ACTIONS(4531), + [aux_sym__val_number_decimal_token2] = ACTIONS(4533), + [aux_sym__val_number_decimal_token3] = ACTIONS(4535), + [aux_sym__val_number_decimal_token4] = ACTIONS(4537), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(4539), + [aux_sym__val_number_token5] = ACTIONS(4539), + [aux_sym__val_number_token6] = ACTIONS(4539), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(4541), + [anon_sym_DQUOTE] = ACTIONS(4543), + [sym__str_single_quotes] = ACTIONS(4545), + [sym__str_back_ticks] = ACTIONS(4545), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4547), }, [1332] = { - [sym_cell_path] = STATE(1623), - [sym_path] = STATE(1538), + [sym__expr_parenthesized_immediate] = STATE(1844), + [sym__immediate_decimal] = STATE(1845), + [sym_val_variable] = STATE(1844), [sym_comment] = STATE(1332), - [aux_sym_cell_path_repeat1] = STATE(1342), - [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), - [sym__newline] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_PIPE] = ACTIONS(1931), - [anon_sym_err_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_GT_PIPE] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_RPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_DASH_DASH] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(4679), - [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), - [anon_sym_err_GT] = ACTIONS(1929), - [anon_sym_out_GT] = ACTIONS(1929), - [anon_sym_e_GT] = ACTIONS(1929), - [anon_sym_o_GT] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT] = ACTIONS(1929), - [anon_sym_err_GT_GT] = ACTIONS(1931), - [anon_sym_out_GT_GT] = ACTIONS(1931), - [anon_sym_e_GT_GT] = ACTIONS(1931), - [anon_sym_o_GT_GT] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1931), - [aux_sym_unquoted_token1] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1931), + [sym__newline] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_err_GT_PIPE] = ACTIONS(1693), + [anon_sym_out_GT_PIPE] = ACTIONS(1693), + [anon_sym_e_GT_PIPE] = ACTIONS(1693), + [anon_sym_o_GT_PIPE] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(4055), + [anon_sym_DASH_DASH] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_DOT_DOT] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(4057), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT] = ACTIONS(1693), + [aux_sym__immediate_decimal_token1] = ACTIONS(4507), + [aux_sym__immediate_decimal_token3] = ACTIONS(4509), + [aux_sym__immediate_decimal_token4] = ACTIONS(4511), + [aux_sym__immediate_decimal_token5] = ACTIONS(4513), + [anon_sym_null] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1693), + [anon_sym_false] = ACTIONS(1693), + [aux_sym__val_number_decimal_token1] = ACTIONS(1691), + [aux_sym__val_number_decimal_token2] = ACTIONS(1691), + [aux_sym__val_number_decimal_token3] = ACTIONS(1691), + [aux_sym__val_number_decimal_token4] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1693), + [aux_sym__val_number_token2] = ACTIONS(1693), + [aux_sym__val_number_token3] = ACTIONS(1693), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_0b] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1691), + [anon_sym_0x] = ACTIONS(1691), + [sym_val_date] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1691), + [anon_sym_out_GT] = ACTIONS(1691), + [anon_sym_e_GT] = ACTIONS(1691), + [anon_sym_o_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT] = ACTIONS(1691), + [anon_sym_err_GT_GT] = ACTIONS(1693), + [anon_sym_out_GT_GT] = ACTIONS(1693), + [anon_sym_e_GT_GT] = ACTIONS(1693), + [anon_sym_o_GT_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), + [aux_sym_unquoted_token1] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1693), }, [1333] = { - [sym_cell_path] = STATE(1781), - [sym_path] = STATE(1589), + [sym__expr_parenthesized_immediate] = STATE(1846), + [sym__immediate_decimal] = STATE(1847), + [sym_val_variable] = STATE(1846), [sym_comment] = STATE(1333), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [anon_sym_null] = ACTIONS(2085), - [aux_sym_cmd_identifier_token38] = ACTIONS(2085), - [aux_sym_cmd_identifier_token39] = ACTIONS(2085), - [aux_sym_cmd_identifier_token40] = ACTIONS(2085), - [sym__newline] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_err_GT_PIPE] = ACTIONS(2085), - [anon_sym_out_GT_PIPE] = ACTIONS(2085), - [anon_sym_e_GT_PIPE] = ACTIONS(2085), - [anon_sym_o_GT_PIPE] = ACTIONS(2085), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2085), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2085), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2085), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_LT] = ACTIONS(2085), - [aux_sym__val_number_decimal_token1] = ACTIONS(2083), - [aux_sym__val_number_decimal_token2] = ACTIONS(2085), - [aux_sym__val_number_decimal_token3] = ACTIONS(2085), - [aux_sym__val_number_decimal_token4] = ACTIONS(2085), - [aux_sym__val_number_token1] = ACTIONS(2085), - [aux_sym__val_number_token2] = ACTIONS(2085), - [aux_sym__val_number_token3] = ACTIONS(2085), - [anon_sym_0b] = ACTIONS(2083), - [anon_sym_0o] = ACTIONS(2083), - [anon_sym_0x] = ACTIONS(2083), - [sym_val_date] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [sym__str_single_quotes] = ACTIONS(2085), - [sym__str_back_ticks] = ACTIONS(2085), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2085), - [anon_sym_err_GT] = ACTIONS(2083), - [anon_sym_out_GT] = ACTIONS(2083), - [anon_sym_e_GT] = ACTIONS(2083), - [anon_sym_o_GT] = ACTIONS(2083), - [anon_sym_err_PLUSout_GT] = ACTIONS(2083), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2083), - [anon_sym_o_PLUSe_GT] = ACTIONS(2083), - [anon_sym_e_PLUSo_GT] = ACTIONS(2083), - [anon_sym_err_GT_GT] = ACTIONS(2085), - [anon_sym_out_GT_GT] = ACTIONS(2085), - [anon_sym_e_GT_GT] = ACTIONS(2085), - [anon_sym_o_GT_GT] = ACTIONS(2085), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2085), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2085), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2085), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2085), - [aux_sym_unquoted_token1] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2085), + [sym__newline] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_err_GT_PIPE] = ACTIONS(1671), + [anon_sym_out_GT_PIPE] = ACTIONS(1671), + [anon_sym_e_GT_PIPE] = ACTIONS(1671), + [anon_sym_o_GT_PIPE] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(4055), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(4057), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT] = ACTIONS(1671), + [aux_sym__immediate_decimal_token1] = ACTIONS(4507), + [aux_sym__immediate_decimal_token3] = ACTIONS(4509), + [aux_sym__immediate_decimal_token4] = ACTIONS(4511), + [aux_sym__immediate_decimal_token5] = ACTIONS(4513), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1663), + [aux_sym__val_number_decimal_token3] = ACTIONS(1663), + [aux_sym__val_number_decimal_token4] = ACTIONS(1663), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1663), + [anon_sym_0x] = ACTIONS(1663), + [sym_val_date] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [sym__str_single_quotes] = ACTIONS(1671), + [sym__str_back_ticks] = ACTIONS(1671), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1663), + [anon_sym_out_GT] = ACTIONS(1663), + [anon_sym_e_GT] = ACTIONS(1663), + [anon_sym_o_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT] = ACTIONS(1663), + [anon_sym_err_GT_GT] = ACTIONS(1671), + [anon_sym_out_GT_GT] = ACTIONS(1671), + [anon_sym_e_GT_GT] = ACTIONS(1671), + [anon_sym_o_GT_GT] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), + [aux_sym_unquoted_token1] = ACTIONS(1663), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1671), }, [1334] = { - [sym_cell_path] = STATE(1708), - [sym_path] = STATE(1589), + [sym__expr_parenthesized_immediate] = STATE(1848), + [sym__immediate_decimal] = STATE(1849), + [sym_val_variable] = STATE(1848), [sym_comment] = STATE(1334), - [aux_sym_cell_path_repeat1] = STATE(1434), - [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), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_DOT_DOT_LT] = ACTIONS(1023), - [aux_sym__val_number_decimal_token1] = ACTIONS(1021), - [aux_sym__val_number_decimal_token2] = ACTIONS(1023), - [aux_sym__val_number_decimal_token3] = ACTIONS(1023), - [aux_sym__val_number_decimal_token4] = ACTIONS(1023), - [aux_sym__val_number_token1] = ACTIONS(1023), - [aux_sym__val_number_token2] = ACTIONS(1023), - [aux_sym__val_number_token3] = ACTIONS(1023), - [anon_sym_0b] = ACTIONS(1021), - [anon_sym_0o] = ACTIONS(1021), - [anon_sym_0x] = ACTIONS(1021), - [sym_val_date] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1023), - [sym__str_single_quotes] = ACTIONS(1023), - [sym__str_back_ticks] = ACTIONS(1023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), - [anon_sym_err_GT] = ACTIONS(1021), - [anon_sym_out_GT] = ACTIONS(1021), - [anon_sym_e_GT] = ACTIONS(1021), - [anon_sym_o_GT] = ACTIONS(1021), - [anon_sym_err_PLUSout_GT] = ACTIONS(1021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), - [anon_sym_o_PLUSe_GT] = ACTIONS(1021), - [anon_sym_e_PLUSo_GT] = ACTIONS(1021), - [anon_sym_err_GT_GT] = ACTIONS(1023), - [anon_sym_out_GT_GT] = ACTIONS(1023), - [anon_sym_e_GT_GT] = ACTIONS(1023), - [anon_sym_o_GT_GT] = ACTIONS(1023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), - [aux_sym_unquoted_token1] = ACTIONS(1021), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1023), + [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(4055), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(4057), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT] = ACTIONS(1707), + [aux_sym__immediate_decimal_token1] = ACTIONS(4507), + [aux_sym__immediate_decimal_token3] = ACTIONS(4509), + [aux_sym__immediate_decimal_token4] = ACTIONS(4511), + [aux_sym__immediate_decimal_token5] = ACTIONS(4513), + [anon_sym_null] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [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(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [aux_sym__val_number_token4] = ACTIONS(1707), + [aux_sym__val_number_token5] = ACTIONS(1707), + [aux_sym__val_number_token6] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1707), }, [1335] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6059), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(7042), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5550), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6060), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1335), - [aux_sym_cmd_identifier_token41] = ACTIONS(1536), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(4711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4713), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4121), + [anon_sym_true] = ACTIONS(4123), + [anon_sym_false] = ACTIONS(4123), + [aux_sym__val_number_decimal_token1] = ACTIONS(4125), + [aux_sym__val_number_decimal_token2] = ACTIONS(4127), + [aux_sym__val_number_decimal_token3] = ACTIONS(4129), + [aux_sym__val_number_decimal_token4] = ACTIONS(4131), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4133), + [aux_sym__val_number_token5] = ACTIONS(4133), + [aux_sym__val_number_token6] = ACTIONS(4133), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4135), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1336] = { [sym_comment] = STATE(1336), - [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(2228), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_DOT_DOT] = ACTIONS(2222), - [anon_sym_DOT_DOT2] = ACTIONS(4715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), - [anon_sym_DOT_DOT_LT] = ACTIONS(2222), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4717), - [aux_sym__val_number_decimal_token1] = ACTIONS(2222), - [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(2222), - [anon_sym_0o] = ACTIONS(2222), - [anon_sym_0x] = ACTIONS(2222), - [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(2222), - [anon_sym_out_GT] = ACTIONS(2222), - [anon_sym_e_GT] = ACTIONS(2222), - [anon_sym_o_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT] = ACTIONS(2222), - [anon_sym_err_GT_GT] = ACTIONS(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(2222), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2228), + [ts_builtin_sym_end] = ACTIONS(1609), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(4549), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(4551), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1609), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1609), + [anon_sym_0b] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1609), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [sym_val_date] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), }, [1337] = { + [sym__expr_parenthesized_immediate] = STATE(1924), + [sym__immediate_decimal] = STATE(1675), + [sym_val_variable] = STATE(1924), [sym_comment] = STATE(1337), - [aux_sym_cmd_identifier_token41] = ACTIONS(1528), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [aux_sym_expr_binary_token1] = ACTIONS(1530), - [aux_sym_expr_binary_token2] = ACTIONS(1530), - [aux_sym_expr_binary_token3] = ACTIONS(1530), - [aux_sym_expr_binary_token4] = ACTIONS(1530), - [aux_sym_expr_binary_token5] = ACTIONS(1530), - [aux_sym_expr_binary_token6] = ACTIONS(1530), - [aux_sym_expr_binary_token7] = ACTIONS(1530), - [aux_sym_expr_binary_token8] = ACTIONS(1530), - [aux_sym_expr_binary_token9] = ACTIONS(1530), - [aux_sym_expr_binary_token10] = ACTIONS(1530), - [aux_sym_expr_binary_token11] = ACTIONS(1530), - [aux_sym_expr_binary_token12] = ACTIONS(1530), - [aux_sym_expr_binary_token13] = ACTIONS(1530), - [aux_sym_expr_binary_token14] = ACTIONS(1530), - [aux_sym_expr_binary_token15] = ACTIONS(1530), - [aux_sym_expr_binary_token16] = ACTIONS(1530), - [aux_sym_expr_binary_token17] = ACTIONS(1530), - [aux_sym_expr_binary_token18] = ACTIONS(1530), - [aux_sym_expr_binary_token19] = ACTIONS(1530), - [aux_sym_expr_binary_token20] = ACTIONS(1530), - [aux_sym_expr_binary_token21] = ACTIONS(1530), - [aux_sym_expr_binary_token22] = ACTIONS(1530), - [aux_sym_expr_binary_token23] = ACTIONS(1530), - [aux_sym_expr_binary_token24] = ACTIONS(1530), - [aux_sym_expr_binary_token25] = ACTIONS(1530), - [aux_sym_expr_binary_token26] = ACTIONS(1530), - [aux_sym_expr_binary_token27] = ACTIONS(1530), - [aux_sym_expr_binary_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(4719), - [aux_sym__immediate_decimal_token2] = ACTIONS(4721), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1577), + [sym__newline] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_err_GT_PIPE] = ACTIONS(1577), + [anon_sym_out_GT_PIPE] = ACTIONS(1577), + [anon_sym_e_GT_PIPE] = ACTIONS(1577), + [anon_sym_o_GT_PIPE] = ACTIONS(1577), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1577), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1577), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1577), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(1577), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1577), + [anon_sym_DOT_DOT_LT] = ACTIONS(1577), + [aux_sym__immediate_decimal_token1] = ACTIONS(4223), + [aux_sym__immediate_decimal_token3] = ACTIONS(4225), + [aux_sym__immediate_decimal_token4] = ACTIONS(4227), + [aux_sym__immediate_decimal_token5] = ACTIONS(4229), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [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(1577), + [aux_sym__val_number_token2] = ACTIONS(1577), + [aux_sym__val_number_token3] = ACTIONS(1577), + [aux_sym__val_number_token4] = ACTIONS(1577), + [aux_sym__val_number_token5] = ACTIONS(1577), + [aux_sym__val_number_token6] = ACTIONS(1577), + [anon_sym_0b] = ACTIONS(1565), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1577), + [sym__str_single_quotes] = ACTIONS(1577), + [sym__str_back_ticks] = ACTIONS(1577), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1577), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1577), + [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(1577), + [anon_sym_out_GT_GT] = ACTIONS(1577), + [anon_sym_e_GT_GT] = ACTIONS(1577), + [anon_sym_o_GT_GT] = ACTIONS(1577), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1577), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1577), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1577), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1577), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1577), }, [1338] = { + [sym__val_range] = STATE(7673), + [sym__value] = STATE(6049), + [sym_val_nothing] = STATE(4907), + [sym_val_bool] = STATE(7042), + [sym_val_variable] = STATE(4907), + [sym_val_number] = STATE(4907), + [sym__val_number_decimal] = STATE(5550), + [sym__val_number] = STATE(4940), + [sym_val_duration] = STATE(4907), + [sym_val_filesize] = STATE(4907), + [sym_val_binary] = STATE(4907), + [sym_val_string] = STATE(4907), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_val_interpolated] = STATE(4907), + [sym__inter_single_quotes] = STATE(4952), + [sym__inter_double_quotes] = STATE(4953), + [sym_val_list] = STATE(4907), + [sym_val_record] = STATE(4907), + [sym_val_table] = STATE(4907), + [sym_val_closure] = STATE(4907), + [sym_unquoted] = STATE(6050), + [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1338), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_DOT_DOT] = ACTIONS(4097), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), + [anon_sym_DOT_DOT_LT] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4121), + [anon_sym_true] = ACTIONS(4123), + [anon_sym_false] = ACTIONS(4123), + [aux_sym__val_number_decimal_token1] = ACTIONS(4125), + [aux_sym__val_number_decimal_token2] = ACTIONS(4127), + [aux_sym__val_number_decimal_token3] = ACTIONS(4129), + [aux_sym__val_number_decimal_token4] = ACTIONS(4131), + [aux_sym__val_number_token1] = ACTIONS(3593), + [aux_sym__val_number_token2] = ACTIONS(3593), + [aux_sym__val_number_token3] = ACTIONS(3593), + [aux_sym__val_number_token4] = ACTIONS(4133), + [aux_sym__val_number_token5] = ACTIONS(4133), + [aux_sym__val_number_token6] = ACTIONS(4133), + [anon_sym_0b] = ACTIONS(3597), + [anon_sym_0o] = ACTIONS(3599), + [anon_sym_0x] = ACTIONS(3599), + [sym_val_date] = ACTIONS(4135), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), }, [1339] = { - [sym_cell_path] = STATE(1773), - [sym_path] = STATE(1589), [sym_comment] = STATE(1339), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2023), - [anon_sym_err_GT_PIPE] = ACTIONS(2023), - [anon_sym_out_GT_PIPE] = ACTIONS(2023), - [anon_sym_e_GT_PIPE] = ACTIONS(2023), - [anon_sym_o_GT_PIPE] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2021), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2023), - [anon_sym_DOT_DOT_LT] = ACTIONS(2023), - [aux_sym__val_number_decimal_token1] = ACTIONS(2021), - [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_0b] = ACTIONS(2021), - [anon_sym_0o] = ACTIONS(2021), - [anon_sym_0x] = ACTIONS(2021), - [sym_val_date] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2023), - [sym__str_single_quotes] = ACTIONS(2023), - [sym__str_back_ticks] = ACTIONS(2023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2023), - [anon_sym_err_GT] = ACTIONS(2021), - [anon_sym_out_GT] = ACTIONS(2021), - [anon_sym_e_GT] = ACTIONS(2021), - [anon_sym_o_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT] = ACTIONS(2021), - [anon_sym_err_GT_GT] = ACTIONS(2023), - [anon_sym_out_GT_GT] = ACTIONS(2023), - [anon_sym_e_GT_GT] = ACTIONS(2023), - [anon_sym_o_GT_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2023), - [aux_sym_unquoted_token1] = ACTIONS(2021), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2023), + [ts_builtin_sym_end] = 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(1621), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(4553), + [aux_sym__immediate_decimal_token2] = ACTIONS(4555), + [anon_sym_null] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1623), + [aux_sym__val_number_decimal_token3] = ACTIONS(1623), + [aux_sym__val_number_decimal_token4] = ACTIONS(1623), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1623), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1623), + [anon_sym_0b] = ACTIONS(1621), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1623), + [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_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1623), }, [1340] = { - [sym_cell_path] = STATE(1822), - [sym_path] = STATE(1589), + [sym__val_range] = STATE(7658), + [sym__value] = STATE(4764), + [sym_val_nothing] = STATE(4616), + [sym_val_bool] = STATE(7000), + [sym_val_variable] = STATE(4616), + [sym_val_number] = STATE(4616), + [sym__val_number_decimal] = STATE(5569), + [sym__val_number] = STATE(4634), + [sym_val_duration] = STATE(4616), + [sym_val_filesize] = STATE(4616), + [sym_val_binary] = STATE(4616), + [sym_val_string] = STATE(4616), + [sym__raw_str] = STATE(4465), + [sym__str_double_quotes] = STATE(4465), + [sym_val_interpolated] = STATE(4616), + [sym__inter_single_quotes] = STATE(4689), + [sym__inter_double_quotes] = STATE(4701), + [sym_val_list] = STATE(4616), + [sym_val_record] = STATE(4616), + [sym_val_table] = STATE(4616), + [sym_val_closure] = STATE(4616), + [sym_unquoted] = STATE(4765), + [sym__unquoted_anonymous_prefix] = STATE(7677), [sym_comment] = STATE(1340), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1911), - [aux_sym_cmd_identifier_token39] = ACTIONS(1911), - [aux_sym_cmd_identifier_token40] = ACTIONS(1911), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_err_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_GT_PIPE] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_DASH_DASH] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), - [anon_sym_DOT_DOT_LT] = 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_0b] = ACTIONS(1909), - [anon_sym_0o] = ACTIONS(1909), - [anon_sym_0x] = ACTIONS(1909), - [sym_val_date] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), - [anon_sym_err_GT] = ACTIONS(1909), - [anon_sym_out_GT] = ACTIONS(1909), - [anon_sym_e_GT] = ACTIONS(1909), - [anon_sym_o_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT] = ACTIONS(1909), - [anon_sym_err_GT_GT] = ACTIONS(1911), - [anon_sym_out_GT_GT] = ACTIONS(1911), - [anon_sym_e_GT_GT] = ACTIONS(1911), - [anon_sym_o_GT_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), - [aux_sym_unquoted_token1] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4339), + [anon_sym_DOLLAR] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), + [anon_sym_DOT_DOT_LT] = ACTIONS(4347), + [anon_sym_null] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4351), + [anon_sym_false] = ACTIONS(4351), + [aux_sym__val_number_decimal_token1] = ACTIONS(4353), + [aux_sym__val_number_decimal_token2] = ACTIONS(4355), + [aux_sym__val_number_decimal_token3] = ACTIONS(4357), + [aux_sym__val_number_decimal_token4] = ACTIONS(4359), + [aux_sym__val_number_token1] = ACTIONS(4361), + [aux_sym__val_number_token2] = ACTIONS(4361), + [aux_sym__val_number_token3] = ACTIONS(4361), + [aux_sym__val_number_token4] = ACTIONS(4363), + [aux_sym__val_number_token5] = ACTIONS(4363), + [aux_sym__val_number_token6] = ACTIONS(4363), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(4365), + [anon_sym_DQUOTE] = ACTIONS(4367), + [sym__str_single_quotes] = ACTIONS(4369), + [sym__str_back_ticks] = ACTIONS(4369), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1860), }, [1341] = { [sym_comment] = STATE(1341), - [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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), - [anon_sym_DOT_DOT_LT] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [sym__newline] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_err_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_GT_PIPE] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_GT2] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_STAR2] = ACTIONS(2214), + [anon_sym_and2] = ACTIONS(2214), + [anon_sym_xor2] = ACTIONS(2214), + [anon_sym_or2] = ACTIONS(2214), + [anon_sym_not_DASHin2] = ACTIONS(2214), + [anon_sym_starts_DASHwith2] = ACTIONS(2214), + [anon_sym_ends_DASHwith2] = ACTIONS(2214), + [anon_sym_EQ_EQ2] = ACTIONS(2214), + [anon_sym_BANG_EQ2] = ACTIONS(2214), + [anon_sym_LT2] = ACTIONS(2214), + [anon_sym_LT_EQ2] = ACTIONS(2214), + [anon_sym_GT_EQ2] = ACTIONS(2214), + [anon_sym_EQ_TILDE2] = ACTIONS(2214), + [anon_sym_BANG_TILDE2] = ACTIONS(2214), + [anon_sym_STAR_STAR2] = ACTIONS(2214), + [anon_sym_PLUS_PLUS2] = ACTIONS(2214), + [anon_sym_SLASH2] = ACTIONS(2214), + [anon_sym_mod2] = ACTIONS(2214), + [anon_sym_SLASH_SLASH2] = ACTIONS(2214), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_bit_DASHshl2] = ACTIONS(2214), + [anon_sym_bit_DASHshr2] = ACTIONS(2214), + [anon_sym_bit_DASHand2] = ACTIONS(2214), + [anon_sym_bit_DASHxor2] = ACTIONS(2214), + [anon_sym_bit_DASHor2] = ACTIONS(2214), + [anon_sym_POUND] = ACTIONS(3), }, [1342] = { - [sym_path] = STATE(1538), [sym_comment] = STATE(1342), - [aux_sym_cell_path_repeat1] = STATE(1347), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1029), - [aux_sym_cmd_identifier_token38] = ACTIONS(1029), - [aux_sym_cmd_identifier_token39] = ACTIONS(1029), - [aux_sym_cmd_identifier_token40] = ACTIONS(1029), - [sym__newline] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_err_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_GT_PIPE] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT] = ACTIONS(1029), - [aux_sym__val_number_decimal_token1] = ACTIONS(1027), - [aux_sym__val_number_decimal_token2] = ACTIONS(1029), - [aux_sym__val_number_decimal_token3] = ACTIONS(1029), - [aux_sym__val_number_decimal_token4] = ACTIONS(1029), - [aux_sym__val_number_token1] = ACTIONS(1029), - [aux_sym__val_number_token2] = ACTIONS(1029), - [aux_sym__val_number_token3] = ACTIONS(1029), - [anon_sym_0b] = ACTIONS(1027), - [anon_sym_0o] = ACTIONS(1027), - [anon_sym_0x] = ACTIONS(1027), - [sym_val_date] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), - [anon_sym_err_GT] = ACTIONS(1027), - [anon_sym_out_GT] = ACTIONS(1027), - [anon_sym_e_GT] = ACTIONS(1027), - [anon_sym_o_GT] = ACTIONS(1027), - [anon_sym_err_PLUSout_GT] = ACTIONS(1027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), - [anon_sym_o_PLUSe_GT] = ACTIONS(1027), - [anon_sym_e_PLUSo_GT] = ACTIONS(1027), - [anon_sym_err_GT_GT] = ACTIONS(1029), - [anon_sym_out_GT_GT] = ACTIONS(1029), - [anon_sym_e_GT_GT] = ACTIONS(1029), - [anon_sym_o_GT_GT] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), - [aux_sym_unquoted_token1] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1029), + [ts_builtin_sym_end] = ACTIONS(2218), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_err_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_GT_PIPE] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), + [anon_sym_GT2] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_STAR2] = ACTIONS(2214), + [anon_sym_and2] = ACTIONS(2214), + [anon_sym_xor2] = ACTIONS(2214), + [anon_sym_or2] = ACTIONS(2214), + [anon_sym_not_DASHin2] = ACTIONS(2214), + [anon_sym_starts_DASHwith2] = ACTIONS(2214), + [anon_sym_ends_DASHwith2] = ACTIONS(2214), + [anon_sym_EQ_EQ2] = ACTIONS(2214), + [anon_sym_BANG_EQ2] = ACTIONS(2214), + [anon_sym_LT2] = ACTIONS(2214), + [anon_sym_LT_EQ2] = ACTIONS(2214), + [anon_sym_GT_EQ2] = ACTIONS(2214), + [anon_sym_EQ_TILDE2] = ACTIONS(2214), + [anon_sym_BANG_TILDE2] = ACTIONS(2214), + [anon_sym_STAR_STAR2] = ACTIONS(2214), + [anon_sym_PLUS_PLUS2] = ACTIONS(2214), + [anon_sym_SLASH2] = ACTIONS(2214), + [anon_sym_mod2] = ACTIONS(2214), + [anon_sym_SLASH_SLASH2] = ACTIONS(2214), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_bit_DASHshl2] = ACTIONS(2214), + [anon_sym_bit_DASHshr2] = ACTIONS(2214), + [anon_sym_bit_DASHand2] = ACTIONS(2214), + [anon_sym_bit_DASHxor2] = ACTIONS(2214), + [anon_sym_bit_DASHor2] = ACTIONS(2214), + [anon_sym_POUND] = ACTIONS(3), }, [1343] = { [sym_comment] = STATE(1343), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [ts_builtin_sym_end] = ACTIONS(2224), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [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_GT2] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), + [anon_sym_STAR2] = ACTIONS(2222), + [anon_sym_and2] = ACTIONS(2222), + [anon_sym_xor2] = ACTIONS(2222), + [anon_sym_or2] = ACTIONS(2222), + [anon_sym_not_DASHin2] = ACTIONS(2222), + [anon_sym_starts_DASHwith2] = ACTIONS(2222), + [anon_sym_ends_DASHwith2] = ACTIONS(2222), + [anon_sym_EQ_EQ2] = ACTIONS(2222), + [anon_sym_BANG_EQ2] = ACTIONS(2222), + [anon_sym_LT2] = ACTIONS(2222), + [anon_sym_LT_EQ2] = ACTIONS(2222), + [anon_sym_GT_EQ2] = ACTIONS(2222), + [anon_sym_EQ_TILDE2] = ACTIONS(2222), + [anon_sym_BANG_TILDE2] = ACTIONS(2222), + [anon_sym_STAR_STAR2] = ACTIONS(2222), + [anon_sym_PLUS_PLUS2] = ACTIONS(2222), + [anon_sym_SLASH2] = ACTIONS(2222), + [anon_sym_mod2] = ACTIONS(2222), + [anon_sym_SLASH_SLASH2] = ACTIONS(2222), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_bit_DASHshl2] = ACTIONS(2222), + [anon_sym_bit_DASHshr2] = ACTIONS(2222), + [anon_sym_bit_DASHand2] = ACTIONS(2222), + [anon_sym_bit_DASHxor2] = ACTIONS(2222), + [anon_sym_bit_DASHor2] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), + }, + [1344] = { + [sym_comment] = STATE(1344), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(996), + [anon_sym_xor2] = ACTIONS(996), + [anon_sym_or2] = ACTIONS(996), + [anon_sym_not_DASHin2] = ACTIONS(996), + [anon_sym_starts_DASHwith2] = ACTIONS(996), + [anon_sym_ends_DASHwith2] = ACTIONS(996), + [anon_sym_EQ_EQ2] = ACTIONS(996), + [anon_sym_BANG_EQ2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(996), + [anon_sym_GT_EQ2] = ACTIONS(996), + [anon_sym_EQ_TILDE2] = ACTIONS(996), + [anon_sym_BANG_TILDE2] = ACTIONS(996), + [anon_sym_STAR_STAR2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(996), + [anon_sym_SLASH_SLASH2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(996), + [anon_sym_bit_DASHshr2] = ACTIONS(996), + [anon_sym_bit_DASHand2] = ACTIONS(996), + [anon_sym_bit_DASHxor2] = ACTIONS(996), + [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), + }, + [1345] = { + [sym_cell_path] = STATE(1527), + [sym_path] = STATE(1460), + [sym_comment] = STATE(1345), + [aux_sym_cell_path_repeat1] = STATE(1397), [sym__newline] = ACTIONS(1771), [anon_sym_SEMI] = ACTIONS(1771), [anon_sym_PIPE] = ACTIONS(1771), @@ -204753,15 +205050,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(1771), [anon_sym_DOLLAR] = ACTIONS(1769), [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DASH2] = ACTIONS(1769), [anon_sym_LBRACE] = ACTIONS(1771), [anon_sym_RBRACE] = ACTIONS(1771), [anon_sym_DOT_DOT] = ACTIONS(1769), [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(4557), [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), [anon_sym_DOT_DOT_LT] = ACTIONS(1769), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), [aux_sym__val_number_decimal_token1] = ACTIONS(1769), [aux_sym__val_number_decimal_token2] = ACTIONS(1771), [aux_sym__val_number_decimal_token3] = ACTIONS(1771), @@ -204769,6 +205070,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(1771), [aux_sym__val_number_token2] = ACTIONS(1771), [aux_sym__val_number_token3] = ACTIONS(1771), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), [anon_sym_0b] = ACTIONS(1769), [anon_sym_0o] = ACTIONS(1769), [anon_sym_0x] = ACTIONS(1769), @@ -204795,2640 +205099,3646 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), [aux_sym_unquoted_token1] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1771), }, - [1344] = { - [sym_comment] = STATE(1344), - [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), - [sym__newline] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_err_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_GT_PIPE] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_DOT_DOT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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_0b] = ACTIONS(1826), - [anon_sym_0o] = ACTIONS(1826), - [anon_sym_0x] = ACTIONS(1826), - [sym_val_date] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(1826), - [anon_sym_out_GT] = ACTIONS(1826), - [anon_sym_e_GT] = ACTIONS(1826), - [anon_sym_o_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT] = ACTIONS(1826), - [anon_sym_err_GT_GT] = ACTIONS(1828), - [anon_sym_out_GT_GT] = ACTIONS(1828), - [anon_sym_e_GT_GT] = ACTIONS(1828), - [anon_sym_o_GT_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), - [aux_sym_unquoted_token1] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1828), - }, - [1345] = { - [sym_comment] = STATE(1345), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(4723), - [aux_sym__immediate_decimal_token2] = ACTIONS(4725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [aux_sym_unquoted_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), - }, [1346] = { [sym_comment] = STATE(1346), - [anon_sym_true] = ACTIONS(1092), - [anon_sym_false] = ACTIONS(1092), - [anon_sym_null] = ACTIONS(1092), - [aux_sym_cmd_identifier_token38] = ACTIONS(1092), - [aux_sym_cmd_identifier_token39] = ACTIONS(1092), - [aux_sym_cmd_identifier_token40] = ACTIONS(1092), - [sym__newline] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_err_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_GT_PIPE] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), - [anon_sym_LBRACK] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_DOLLAR] = ACTIONS(1090), - [anon_sym_DASH_DASH] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_DOT_DOT] = ACTIONS(1090), - [anon_sym_DOT_DOT2] = ACTIONS(4727), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1090), - [anon_sym_DOT_DOT_LT] = ACTIONS(1090), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4729), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4729), - [aux_sym__val_number_decimal_token1] = ACTIONS(1090), - [aux_sym__val_number_decimal_token2] = ACTIONS(1092), - [aux_sym__val_number_decimal_token3] = ACTIONS(1092), - [aux_sym__val_number_decimal_token4] = ACTIONS(1092), - [aux_sym__val_number_token1] = ACTIONS(1092), - [aux_sym__val_number_token2] = ACTIONS(1092), - [aux_sym__val_number_token3] = ACTIONS(1092), - [anon_sym_0b] = ACTIONS(1090), - [anon_sym_0o] = ACTIONS(1090), - [anon_sym_0x] = ACTIONS(1090), - [sym_val_date] = ACTIONS(1092), - [anon_sym_DQUOTE] = ACTIONS(1092), - [sym__str_single_quotes] = ACTIONS(1092), - [sym__str_back_ticks] = ACTIONS(1092), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1092), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1092), - [anon_sym_err_GT] = ACTIONS(1090), - [anon_sym_out_GT] = ACTIONS(1090), - [anon_sym_e_GT] = ACTIONS(1090), - [anon_sym_o_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT] = ACTIONS(1090), - [anon_sym_err_GT_GT] = ACTIONS(1092), - [anon_sym_out_GT_GT] = ACTIONS(1092), - [anon_sym_e_GT_GT] = ACTIONS(1092), - [anon_sym_o_GT_GT] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), - [aux_sym_unquoted_token1] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1092), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(4207), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1609), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1609), + [anon_sym_0b] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1609), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [sym_val_date] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), }, [1347] = { - [sym_path] = STATE(1538), [sym_comment] = STATE(1347), - [aux_sym_cell_path_repeat1] = STATE(1347), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [aux_sym_cmd_identifier_token38] = ACTIONS(1033), - [aux_sym_cmd_identifier_token39] = ACTIONS(1033), - [aux_sym_cmd_identifier_token40] = ACTIONS(1033), - [sym__newline] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_err_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_GT_PIPE] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_DOT_DOT] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(4731), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), - [anon_sym_DOT_DOT_LT] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1031), - [aux_sym__val_number_decimal_token2] = ACTIONS(1033), - [aux_sym__val_number_decimal_token3] = ACTIONS(1033), - [aux_sym__val_number_decimal_token4] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1031), - [anon_sym_0o] = ACTIONS(1031), - [anon_sym_0x] = ACTIONS(1031), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_err_GT] = ACTIONS(1031), - [anon_sym_out_GT] = ACTIONS(1031), - [anon_sym_e_GT] = ACTIONS(1031), - [anon_sym_o_GT] = ACTIONS(1031), - [anon_sym_err_PLUSout_GT] = ACTIONS(1031), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), - [anon_sym_o_PLUSe_GT] = ACTIONS(1031), - [anon_sym_e_PLUSo_GT] = ACTIONS(1031), - [anon_sym_err_GT_GT] = ACTIONS(1033), - [anon_sym_out_GT_GT] = ACTIONS(1033), - [anon_sym_e_GT_GT] = ACTIONS(1033), - [anon_sym_o_GT_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), - [aux_sym_unquoted_token1] = ACTIONS(1031), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1033), + [anon_sym_EQ] = ACTIONS(998), + [anon_sym_PLUS_EQ] = ACTIONS(1000), + [anon_sym_DASH_EQ] = ACTIONS(1000), + [anon_sym_STAR_EQ] = ACTIONS(1000), + [anon_sym_SLASH_EQ] = ACTIONS(1000), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1000), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(998), + [anon_sym_SLASH2] = ACTIONS(998), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), }, [1348] = { + [sym_cell_path] = STATE(1523), + [sym_path] = STATE(1460), [sym_comment] = STATE(1348), - [ts_builtin_sym_end] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), - [anon_sym_null] = ACTIONS(1068), - [aux_sym_cmd_identifier_token38] = ACTIONS(1068), - [aux_sym_cmd_identifier_token39] = ACTIONS(1068), - [aux_sym_cmd_identifier_token40] = ACTIONS(1068), - [sym__newline] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_err_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_GT_PIPE] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1066), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT2] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1066), - [anon_sym_DOT_DOT_LT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), - [aux_sym__val_number_decimal_token1] = ACTIONS(1066), - [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_0b] = ACTIONS(1066), - [anon_sym_0o] = ACTIONS(1066), - [anon_sym_0x] = ACTIONS(1066), - [sym_val_date] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym__str_single_quotes] = ACTIONS(1068), - [sym__str_back_ticks] = ACTIONS(1068), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), - [anon_sym_err_GT] = ACTIONS(1066), - [anon_sym_out_GT] = ACTIONS(1066), - [anon_sym_e_GT] = ACTIONS(1066), - [anon_sym_o_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT] = ACTIONS(1066), - [anon_sym_err_GT_GT] = ACTIONS(1068), - [anon_sym_out_GT_GT] = ACTIONS(1068), - [anon_sym_e_GT_GT] = ACTIONS(1068), - [anon_sym_o_GT_GT] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), - [aux_sym_unquoted_token1] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1068), + [aux_sym_cell_path_repeat1] = STATE(1397), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DOT_DOT_EQ] = ACTIONS(961), + [anon_sym_DOT_DOT_LT] = ACTIONS(961), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_null] = ACTIONS(963), + [anon_sym_true] = ACTIONS(963), + [anon_sym_false] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(963), + [aux_sym__val_number_token5] = ACTIONS(963), + [aux_sym__val_number_token6] = ACTIONS(963), + [anon_sym_0b] = ACTIONS(961), + [anon_sym_0o] = ACTIONS(961), + [anon_sym_0x] = ACTIONS(961), + [sym_val_date] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [aux_sym_unquoted_token1] = ACTIONS(961), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), }, [1349] = { [sym_comment] = STATE(1349), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token38] = ACTIONS(2240), - [aux_sym_cmd_identifier_token39] = ACTIONS(2240), - [aux_sym_cmd_identifier_token40] = ACTIONS(2240), - [sym__newline] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_err_GT_PIPE] = ACTIONS(2240), - [anon_sym_out_GT_PIPE] = ACTIONS(2240), - [anon_sym_e_GT_PIPE] = ACTIONS(2240), - [anon_sym_o_GT_PIPE] = ACTIONS(2240), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2240), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2240), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2240), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_RPAREN] = ACTIONS(2240), - [anon_sym_DOLLAR] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_DOT_DOT2] = ACTIONS(4734), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2234), - [anon_sym_DOT_DOT_LT] = ACTIONS(2234), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4736), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2240), - [aux_sym__val_number_decimal_token3] = ACTIONS(2240), - [aux_sym__val_number_decimal_token4] = ACTIONS(2240), - [aux_sym__val_number_token1] = ACTIONS(2240), - [aux_sym__val_number_token2] = ACTIONS(2240), - [aux_sym__val_number_token3] = ACTIONS(2240), - [anon_sym_0b] = ACTIONS(2234), - [anon_sym_0o] = ACTIONS(2234), - [anon_sym_0x] = ACTIONS(2234), - [sym_val_date] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2240), - [sym__str_single_quotes] = ACTIONS(2240), - [sym__str_back_ticks] = ACTIONS(2240), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2240), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2240), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2240), - [anon_sym_out_GT_GT] = ACTIONS(2240), - [anon_sym_e_GT_GT] = ACTIONS(2240), - [anon_sym_o_GT_GT] = ACTIONS(2240), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2240), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2240), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2240), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2240), - [aux_sym_unquoted_token1] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2240), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [sym__newline] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2222), + [anon_sym_err_GT_PIPE] = ACTIONS(2222), + [anon_sym_out_GT_PIPE] = ACTIONS(2222), + [anon_sym_e_GT_PIPE] = ACTIONS(2222), + [anon_sym_o_GT_PIPE] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2222), + [anon_sym_GT2] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), + [anon_sym_STAR2] = ACTIONS(2222), + [anon_sym_and2] = ACTIONS(2222), + [anon_sym_xor2] = ACTIONS(2222), + [anon_sym_or2] = ACTIONS(2222), + [anon_sym_not_DASHin2] = ACTIONS(2222), + [anon_sym_starts_DASHwith2] = ACTIONS(2222), + [anon_sym_ends_DASHwith2] = ACTIONS(2222), + [anon_sym_EQ_EQ2] = ACTIONS(2222), + [anon_sym_BANG_EQ2] = ACTIONS(2222), + [anon_sym_LT2] = ACTIONS(2222), + [anon_sym_LT_EQ2] = ACTIONS(2222), + [anon_sym_GT_EQ2] = ACTIONS(2222), + [anon_sym_EQ_TILDE2] = ACTIONS(2222), + [anon_sym_BANG_TILDE2] = ACTIONS(2222), + [anon_sym_STAR_STAR2] = ACTIONS(2222), + [anon_sym_PLUS_PLUS2] = ACTIONS(2222), + [anon_sym_SLASH2] = ACTIONS(2222), + [anon_sym_mod2] = ACTIONS(2222), + [anon_sym_SLASH_SLASH2] = ACTIONS(2222), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_bit_DASHshl2] = ACTIONS(2222), + [anon_sym_bit_DASHshr2] = ACTIONS(2222), + [anon_sym_bit_DASHand2] = ACTIONS(2222), + [anon_sym_bit_DASHxor2] = ACTIONS(2222), + [anon_sym_bit_DASHor2] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), }, [1350] = { [sym_comment] = STATE(1350), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_null] = ACTIONS(2119), - [aux_sym_cmd_identifier_token38] = ACTIONS(2119), - [aux_sym_cmd_identifier_token39] = ACTIONS(2119), - [aux_sym_cmd_identifier_token40] = ACTIONS(2119), - [sym__newline] = ACTIONS(2119), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_err_GT_PIPE] = ACTIONS(2119), - [anon_sym_out_GT_PIPE] = ACTIONS(2119), - [anon_sym_e_GT_PIPE] = ACTIONS(2119), - [anon_sym_o_GT_PIPE] = ACTIONS(2119), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2119), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2119), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2119), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_RPAREN] = ACTIONS(2119), - [anon_sym_DOLLAR] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2113), - [anon_sym_DOT_DOT2] = ACTIONS(4738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2113), - [anon_sym_DOT_DOT_LT] = ACTIONS(2113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4740), - [aux_sym__val_number_decimal_token1] = ACTIONS(2113), - [aux_sym__val_number_decimal_token2] = ACTIONS(2119), - [aux_sym__val_number_decimal_token3] = ACTIONS(2119), - [aux_sym__val_number_decimal_token4] = ACTIONS(2119), - [aux_sym__val_number_token1] = ACTIONS(2119), - [aux_sym__val_number_token2] = ACTIONS(2119), - [aux_sym__val_number_token3] = ACTIONS(2119), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2113), - [anon_sym_0x] = ACTIONS(2113), - [sym_val_date] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [sym__str_single_quotes] = ACTIONS(2119), - [sym__str_back_ticks] = ACTIONS(2119), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2119), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2119), - [anon_sym_err_GT] = ACTIONS(2113), - [anon_sym_out_GT] = ACTIONS(2113), - [anon_sym_e_GT] = ACTIONS(2113), - [anon_sym_o_GT] = ACTIONS(2113), - [anon_sym_err_PLUSout_GT] = ACTIONS(2113), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2113), - [anon_sym_o_PLUSe_GT] = ACTIONS(2113), - [anon_sym_e_PLUSo_GT] = ACTIONS(2113), - [anon_sym_err_GT_GT] = ACTIONS(2119), - [anon_sym_out_GT_GT] = ACTIONS(2119), - [anon_sym_e_GT_GT] = ACTIONS(2119), - [anon_sym_o_GT_GT] = ACTIONS(2119), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2119), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2119), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2119), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2119), - [aux_sym_unquoted_token1] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2119), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [anon_sym_DASH_EQ] = ACTIONS(1004), + [anon_sym_STAR_EQ] = ACTIONS(1004), + [anon_sym_SLASH_EQ] = ACTIONS(1004), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), }, [1351] = { [sym_comment] = STATE(1351), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_null] = ACTIONS(2212), - [aux_sym_cmd_identifier_token38] = ACTIONS(2212), - [aux_sym_cmd_identifier_token39] = ACTIONS(2212), - [aux_sym_cmd_identifier_token40] = ACTIONS(2212), - [sym__newline] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(2212), - [anon_sym_err_GT_PIPE] = ACTIONS(2212), - [anon_sym_out_GT_PIPE] = ACTIONS(2212), - [anon_sym_e_GT_PIPE] = ACTIONS(2212), - [anon_sym_o_GT_PIPE] = ACTIONS(2212), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2212), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2212), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2212), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_RPAREN] = ACTIONS(2212), - [anon_sym_DOLLAR] = ACTIONS(2206), - [anon_sym_DASH_DASH] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_DOT_DOT] = ACTIONS(2206), - [anon_sym_DOT_DOT2] = ACTIONS(4742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2206), - [anon_sym_DOT_DOT_LT] = ACTIONS(2206), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4744), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4744), - [aux_sym__val_number_decimal_token1] = ACTIONS(2206), - [aux_sym__val_number_decimal_token2] = ACTIONS(2212), - [aux_sym__val_number_decimal_token3] = ACTIONS(2212), - [aux_sym__val_number_decimal_token4] = ACTIONS(2212), - [aux_sym__val_number_token1] = ACTIONS(2212), - [aux_sym__val_number_token2] = ACTIONS(2212), - [aux_sym__val_number_token3] = ACTIONS(2212), - [anon_sym_0b] = ACTIONS(2206), - [anon_sym_0o] = ACTIONS(2206), - [anon_sym_0x] = ACTIONS(2206), - [sym_val_date] = ACTIONS(2212), - [anon_sym_DQUOTE] = ACTIONS(2212), - [sym__str_single_quotes] = ACTIONS(2212), - [sym__str_back_ticks] = ACTIONS(2212), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2212), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2212), - [anon_sym_err_GT] = ACTIONS(2206), - [anon_sym_out_GT] = ACTIONS(2206), - [anon_sym_e_GT] = ACTIONS(2206), - [anon_sym_o_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT] = ACTIONS(2206), - [anon_sym_err_GT_GT] = ACTIONS(2212), - [anon_sym_out_GT_GT] = ACTIONS(2212), - [anon_sym_e_GT_GT] = ACTIONS(2212), - [anon_sym_o_GT_GT] = ACTIONS(2212), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2212), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2212), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2212), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2212), - [aux_sym_unquoted_token1] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2212), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), + [anon_sym_DOT_DOT_LT] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [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), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1675), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_0o] = ACTIONS(1673), + [anon_sym_0x] = ACTIONS(1673), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token1] = ACTIONS(1673), + [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1675), }, [1352] = { [sym_comment] = STATE(1352), - [anon_sym_true] = ACTIONS(4746), - [anon_sym_false] = ACTIONS(4746), - [anon_sym_null] = ACTIONS(4746), - [aux_sym_cmd_identifier_token38] = ACTIONS(4746), - [aux_sym_cmd_identifier_token39] = ACTIONS(4746), - [aux_sym_cmd_identifier_token40] = ACTIONS(4746), - [sym__newline] = ACTIONS(4746), - [anon_sym_SEMI] = ACTIONS(4746), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_err_GT_PIPE] = ACTIONS(4746), - [anon_sym_out_GT_PIPE] = ACTIONS(4746), - [anon_sym_e_GT_PIPE] = ACTIONS(4746), - [anon_sym_o_GT_PIPE] = ACTIONS(4746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4746), - [anon_sym_LBRACK] = ACTIONS(4746), - [anon_sym_LPAREN] = ACTIONS(4746), - [anon_sym_RPAREN] = ACTIONS(4746), - [anon_sym_DOLLAR] = ACTIONS(4748), - [anon_sym_DASH_DASH] = ACTIONS(4746), - [anon_sym_DASH] = ACTIONS(4748), - [anon_sym_LBRACE] = ACTIONS(4746), - [anon_sym_RBRACE] = ACTIONS(4746), - [anon_sym_DOT_DOT] = ACTIONS(4748), - [anon_sym_DOT_DOT2] = ACTIONS(4727), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4748), - [anon_sym_DOT_DOT_LT] = ACTIONS(4748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4729), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4729), - [aux_sym__val_number_decimal_token1] = ACTIONS(4748), - [aux_sym__val_number_decimal_token2] = ACTIONS(4746), - [aux_sym__val_number_decimal_token3] = ACTIONS(4746), - [aux_sym__val_number_decimal_token4] = ACTIONS(4746), - [aux_sym__val_number_token1] = ACTIONS(4746), - [aux_sym__val_number_token2] = ACTIONS(4746), - [aux_sym__val_number_token3] = ACTIONS(4746), - [anon_sym_0b] = ACTIONS(4748), - [anon_sym_0o] = ACTIONS(4748), - [anon_sym_0x] = ACTIONS(4748), - [sym_val_date] = ACTIONS(4746), - [anon_sym_DQUOTE] = ACTIONS(4746), - [sym__str_single_quotes] = ACTIONS(4746), - [sym__str_back_ticks] = ACTIONS(4746), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4746), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4746), - [anon_sym_err_GT] = ACTIONS(4748), - [anon_sym_out_GT] = ACTIONS(4748), - [anon_sym_e_GT] = ACTIONS(4748), - [anon_sym_o_GT] = ACTIONS(4748), - [anon_sym_err_PLUSout_GT] = ACTIONS(4748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4748), - [anon_sym_o_PLUSe_GT] = ACTIONS(4748), - [anon_sym_e_PLUSo_GT] = ACTIONS(4748), - [anon_sym_err_GT_GT] = ACTIONS(4746), - [anon_sym_out_GT_GT] = ACTIONS(4746), - [anon_sym_e_GT_GT] = ACTIONS(4746), - [anon_sym_o_GT_GT] = ACTIONS(4746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4746), - [aux_sym_unquoted_token1] = ACTIONS(4748), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4746), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1609), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1609), + [anon_sym_0b] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1609), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [sym_val_date] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), }, [1353] = { + [sym__expr_parenthesized_immediate] = STATE(1899), + [sym__immediate_decimal] = STATE(1900), + [sym_val_variable] = STATE(1899), [sym_comment] = STATE(1353), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [ts_builtin_sym_end] = ACTIONS(1591), + [sym__newline] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_err_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_GT_PIPE] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH2] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_DOT_DOT] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), + [anon_sym_DOT_DOT_LT] = ACTIONS(1591), + [aux_sym__immediate_decimal_token1] = ACTIONS(4561), + [aux_sym__immediate_decimal_token3] = ACTIONS(4563), + [aux_sym__immediate_decimal_token4] = ACTIONS(4565), + [aux_sym__immediate_decimal_token5] = ACTIONS(4567), + [anon_sym_null] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1581), + [aux_sym__val_number_decimal_token2] = ACTIONS(1581), + [aux_sym__val_number_decimal_token3] = ACTIONS(1581), + [aux_sym__val_number_decimal_token4] = ACTIONS(1581), + [aux_sym__val_number_token1] = ACTIONS(1591), + [aux_sym__val_number_token2] = ACTIONS(1591), + [aux_sym__val_number_token3] = ACTIONS(1591), + [aux_sym__val_number_token4] = ACTIONS(1591), + [aux_sym__val_number_token5] = ACTIONS(1591), + [aux_sym__val_number_token6] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1581), + [anon_sym_0o] = ACTIONS(1581), + [anon_sym_0x] = ACTIONS(1581), + [sym_val_date] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym__str_single_quotes] = ACTIONS(1591), + [sym__str_back_ticks] = ACTIONS(1591), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), + [anon_sym_err_GT] = ACTIONS(1581), + [anon_sym_out_GT] = ACTIONS(1581), + [anon_sym_e_GT] = ACTIONS(1581), + [anon_sym_o_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT] = ACTIONS(1581), + [anon_sym_err_GT_GT] = ACTIONS(1591), + [anon_sym_out_GT_GT] = ACTIONS(1591), + [anon_sym_e_GT_GT] = ACTIONS(1591), + [anon_sym_o_GT_GT] = ACTIONS(1591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), + [aux_sym_unquoted_token1] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1591), }, [1354] = { [sym_comment] = STATE(1354), - [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(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT2] = 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_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(249), - [sym_raw_string_begin] = ACTIONS(1072), + [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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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] = ACTIONS(4569), + [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__immediate_decimal_token2] = ACTIONS(4571), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(1757), }, [1355] = { [sym_comment] = STATE(1355), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [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_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(4750), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [aux_sym_unquoted_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [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(1621), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [anon_sym_null] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1623), + [aux_sym__val_number_decimal_token3] = ACTIONS(1623), + [aux_sym__val_number_decimal_token4] = ACTIONS(1623), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1623), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1623), + [anon_sym_0b] = ACTIONS(1621), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1623), + [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_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1623), }, [1356] = { - [sym_cell_path] = STATE(1774), - [sym_path] = STATE(1589), + [sym_cell_path] = STATE(1567), + [sym_path] = STATE(1460), [sym_comment] = STATE(1356), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [aux_sym_cmd_identifier_token38] = ACTIONS(2045), - [aux_sym_cmd_identifier_token39] = ACTIONS(2045), - [aux_sym_cmd_identifier_token40] = ACTIONS(2045), - [sym__newline] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2045), - [anon_sym_PIPE] = ACTIONS(2045), - [anon_sym_err_GT_PIPE] = ACTIONS(2045), - [anon_sym_out_GT_PIPE] = ACTIONS(2045), - [anon_sym_e_GT_PIPE] = ACTIONS(2045), - [anon_sym_o_GT_PIPE] = ACTIONS(2045), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2045), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2045), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2045), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2045), - [anon_sym_LBRACK] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_DASH_DASH] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2045), - [anon_sym_DOT_DOT_LT] = ACTIONS(2045), - [aux_sym__val_number_decimal_token1] = ACTIONS(2043), - [aux_sym__val_number_decimal_token2] = ACTIONS(2045), - [aux_sym__val_number_decimal_token3] = ACTIONS(2045), - [aux_sym__val_number_decimal_token4] = ACTIONS(2045), - [aux_sym__val_number_token1] = ACTIONS(2045), - [aux_sym__val_number_token2] = ACTIONS(2045), - [aux_sym__val_number_token3] = ACTIONS(2045), - [anon_sym_0b] = ACTIONS(2043), - [anon_sym_0o] = ACTIONS(2043), - [anon_sym_0x] = ACTIONS(2043), - [sym_val_date] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [sym__str_single_quotes] = ACTIONS(2045), - [sym__str_back_ticks] = ACTIONS(2045), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2045), - [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(2045), - [anon_sym_out_GT_GT] = ACTIONS(2045), - [anon_sym_e_GT_GT] = ACTIONS(2045), - [anon_sym_o_GT_GT] = ACTIONS(2045), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2045), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2045), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2045), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2045), - [aux_sym_unquoted_token1] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2045), + [aux_sym_cell_path_repeat1] = STATE(1397), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1737), }, [1357] = { + [sym__match_pattern_expression] = STATE(3107), + [sym__match_pattern_value] = STATE(3147), + [sym__match_pattern_list] = STATE(3109), + [sym__match_pattern_record] = STATE(3111), + [sym_expr_parenthesized] = STATE(2878), + [sym_val_range] = STATE(3147), + [sym__val_range] = STATE(7888), + [sym_val_nothing] = STATE(3095), + [sym_val_bool] = STATE(3079), + [sym_val_variable] = STATE(2883), + [sym_val_number] = STATE(3095), + [sym__val_number_decimal] = STATE(2727), + [sym__val_number] = STATE(3096), + [sym_val_duration] = STATE(3095), + [sym_val_filesize] = STATE(3095), + [sym_val_binary] = STATE(3095), + [sym_val_string] = STATE(3095), + [sym__raw_str] = STATE(3110), + [sym__str_double_quotes] = STATE(3110), + [sym_val_table] = STATE(3095), + [sym__unquoted_in_list] = STATE(3107), + [sym__unquoted_anonymous_prefix] = STATE(7642), [sym_comment] = STATE(1357), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4667), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym__match_pattern_list_repeat1] = STATE(1357), + [anon_sym_LBRACK] = ACTIONS(4573), + [anon_sym_RBRACK] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(4578), + [anon_sym_DOLLAR] = ACTIONS(4581), + [anon_sym_LBRACE] = ACTIONS(4584), + [anon_sym_DOT_DOT] = ACTIONS(4587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4590), + [anon_sym_DOT_DOT_LT] = ACTIONS(4590), + [anon_sym_null] = ACTIONS(4593), + [anon_sym_true] = ACTIONS(4596), + [anon_sym_false] = ACTIONS(4596), + [aux_sym__val_number_decimal_token1] = ACTIONS(4599), + [aux_sym__val_number_decimal_token2] = ACTIONS(4602), + [aux_sym__val_number_decimal_token3] = ACTIONS(4605), + [aux_sym__val_number_decimal_token4] = ACTIONS(4608), + [aux_sym__val_number_token1] = ACTIONS(4611), + [aux_sym__val_number_token2] = ACTIONS(4611), + [aux_sym__val_number_token3] = ACTIONS(4611), + [aux_sym__val_number_token4] = ACTIONS(4614), + [aux_sym__val_number_token5] = ACTIONS(4614), + [aux_sym__val_number_token6] = ACTIONS(4614), + [anon_sym_0b] = ACTIONS(4617), + [anon_sym_0o] = ACTIONS(4620), + [anon_sym_0x] = ACTIONS(4620), + [sym_val_date] = ACTIONS(4623), + [anon_sym_DQUOTE] = ACTIONS(4626), + [sym__str_single_quotes] = ACTIONS(4629), + [sym__str_back_ticks] = ACTIONS(4629), + [anon_sym_err_GT] = ACTIONS(4632), + [anon_sym_out_GT] = ACTIONS(4632), + [anon_sym_e_GT] = ACTIONS(4632), + [anon_sym_o_GT] = ACTIONS(4632), + [anon_sym_err_PLUSout_GT] = ACTIONS(4632), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4632), + [anon_sym_o_PLUSe_GT] = ACTIONS(4632), + [anon_sym_e_PLUSo_GT] = ACTIONS(4632), + [anon_sym_err_GT_GT] = ACTIONS(4635), + [anon_sym_out_GT_GT] = ACTIONS(4635), + [anon_sym_e_GT_GT] = ACTIONS(4635), + [anon_sym_o_GT_GT] = ACTIONS(4635), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4635), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4635), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4635), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4635), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4638), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4641), }, [1358] = { - [sym_cell_path] = STATE(1775), - [sym_path] = STATE(1589), [sym_comment] = STATE(1358), - [aux_sym_cell_path_repeat1] = STATE(1434), - [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(2047), - [anon_sym_DASH_DASH] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2049), - [anon_sym_DOT_DOT_LT] = ACTIONS(2049), - [aux_sym__val_number_decimal_token1] = ACTIONS(2047), - [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(2047), - [anon_sym_0o] = ACTIONS(2047), - [anon_sym_0x] = ACTIONS(2047), - [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(2047), - [anon_sym_out_GT] = ACTIONS(2047), - [anon_sym_e_GT] = ACTIONS(2047), - [anon_sym_o_GT] = ACTIONS(2047), - [anon_sym_err_PLUSout_GT] = ACTIONS(2047), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2047), - [anon_sym_o_PLUSe_GT] = ACTIONS(2047), - [anon_sym_e_PLUSo_GT] = ACTIONS(2047), - [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(2047), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2049), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), + [anon_sym_DOT_DOT_LT] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [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), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1675), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_0o] = ACTIONS(1673), + [anon_sym_0x] = ACTIONS(1673), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token1] = ACTIONS(1673), + [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1675), }, [1359] = { - [sym_cell_path] = STATE(1776), - [sym_path] = STATE(1589), [sym_comment] = STATE(1359), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(2053), - [anon_sym_false] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2053), - [aux_sym_cmd_identifier_token38] = ACTIONS(2053), - [aux_sym_cmd_identifier_token39] = ACTIONS(2053), - [aux_sym_cmd_identifier_token40] = ACTIONS(2053), - [sym__newline] = ACTIONS(2053), - [anon_sym_SEMI] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(2053), - [anon_sym_err_GT_PIPE] = ACTIONS(2053), - [anon_sym_out_GT_PIPE] = ACTIONS(2053), - [anon_sym_e_GT_PIPE] = ACTIONS(2053), - [anon_sym_o_GT_PIPE] = ACTIONS(2053), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2053), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2053), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2053), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2053), - [anon_sym_DOT_DOT_LT] = ACTIONS(2053), - [aux_sym__val_number_decimal_token1] = ACTIONS(2051), - [aux_sym__val_number_decimal_token2] = ACTIONS(2053), - [aux_sym__val_number_decimal_token3] = ACTIONS(2053), - [aux_sym__val_number_decimal_token4] = ACTIONS(2053), - [aux_sym__val_number_token1] = ACTIONS(2053), - [aux_sym__val_number_token2] = ACTIONS(2053), - [aux_sym__val_number_token3] = ACTIONS(2053), - [anon_sym_0b] = ACTIONS(2051), - [anon_sym_0o] = ACTIONS(2051), - [anon_sym_0x] = ACTIONS(2051), - [sym_val_date] = ACTIONS(2053), - [anon_sym_DQUOTE] = ACTIONS(2053), - [sym__str_single_quotes] = ACTIONS(2053), - [sym__str_back_ticks] = ACTIONS(2053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2053), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2053), - [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(2053), - [anon_sym_out_GT_GT] = ACTIONS(2053), - [anon_sym_e_GT_GT] = ACTIONS(2053), - [anon_sym_o_GT_GT] = ACTIONS(2053), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2053), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2053), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2053), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2053), - [aux_sym_unquoted_token1] = ACTIONS(2051), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2053), + [sym__newline] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_err_GT_PIPE] = ACTIONS(1765), + [anon_sym_out_GT_PIPE] = ACTIONS(1765), + [anon_sym_e_GT_PIPE] = ACTIONS(1765), + [anon_sym_o_GT_PIPE] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_DOT_DOT] = ACTIONS(1763), + [anon_sym_LPAREN2] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [anon_sym_null] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(1765), + [anon_sym_false] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1763), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_0b] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1765), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1763), + [anon_sym_0x] = ACTIONS(1763), + [sym_val_date] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1765), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), + [anon_sym_err_GT] = ACTIONS(1763), + [anon_sym_out_GT] = ACTIONS(1763), + [anon_sym_e_GT] = ACTIONS(1763), + [anon_sym_o_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT] = ACTIONS(1763), + [anon_sym_err_GT_GT] = ACTIONS(1765), + [anon_sym_out_GT_GT] = ACTIONS(1765), + [anon_sym_e_GT_GT] = ACTIONS(1765), + [anon_sym_o_GT_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), + [aux_sym_unquoted_token1] = ACTIONS(1763), + [aux_sym_unquoted_token2] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1765), }, [1360] = { [sym_comment] = STATE(1360), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_LPAREN2] = ACTIONS(1598), - [aux_sym_expr_binary_token1] = ACTIONS(1598), - [aux_sym_expr_binary_token2] = ACTIONS(1598), - [aux_sym_expr_binary_token3] = ACTIONS(1598), - [aux_sym_expr_binary_token4] = ACTIONS(1598), - [aux_sym_expr_binary_token5] = ACTIONS(1598), - [aux_sym_expr_binary_token6] = ACTIONS(1598), - [aux_sym_expr_binary_token7] = ACTIONS(1598), - [aux_sym_expr_binary_token8] = ACTIONS(1598), - [aux_sym_expr_binary_token9] = ACTIONS(1598), - [aux_sym_expr_binary_token10] = ACTIONS(1598), - [aux_sym_expr_binary_token11] = ACTIONS(1598), - [aux_sym_expr_binary_token12] = ACTIONS(1598), - [aux_sym_expr_binary_token13] = ACTIONS(1598), - [aux_sym_expr_binary_token14] = ACTIONS(1598), - [aux_sym_expr_binary_token15] = ACTIONS(1598), - [aux_sym_expr_binary_token16] = ACTIONS(1598), - [aux_sym_expr_binary_token17] = ACTIONS(1598), - [aux_sym_expr_binary_token18] = ACTIONS(1598), - [aux_sym_expr_binary_token19] = ACTIONS(1598), - [aux_sym_expr_binary_token20] = ACTIONS(1598), - [aux_sym_expr_binary_token21] = ACTIONS(1598), - [aux_sym_expr_binary_token22] = ACTIONS(1598), - [aux_sym_expr_binary_token23] = ACTIONS(1598), - [aux_sym_expr_binary_token24] = ACTIONS(1598), - [aux_sym_expr_binary_token25] = ACTIONS(1598), - [aux_sym_expr_binary_token26] = ACTIONS(1598), - [aux_sym_expr_binary_token27] = ACTIONS(1598), - [aux_sym_expr_binary_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(4752), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1675), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), + [anon_sym_DOT_DOT_LT] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(4644), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [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), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1675), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_0o] = ACTIONS(1673), + [anon_sym_0x] = ACTIONS(1673), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token1] = ACTIONS(1673), + [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1675), }, [1361] = { + [sym_path] = STATE(1443), [sym_comment] = STATE(1361), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4756), - [sym__newline] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_err_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_GT_PIPE] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1092), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1092), - [anon_sym_DOT_DOT2] = ACTIONS(1099), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1101), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1101), - [anon_sym_err_GT] = ACTIONS(1090), - [anon_sym_out_GT] = ACTIONS(1090), - [anon_sym_e_GT] = ACTIONS(1090), - [anon_sym_o_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT] = ACTIONS(1090), - [anon_sym_err_GT_GT] = ACTIONS(1092), - [anon_sym_out_GT_GT] = ACTIONS(1092), - [anon_sym_e_GT_GT] = ACTIONS(1092), - [anon_sym_o_GT_GT] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1361), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_PLUS_EQ] = ACTIONS(973), + [anon_sym_DASH_EQ] = ACTIONS(973), + [anon_sym_STAR_EQ] = ACTIONS(973), + [anon_sym_SLASH_EQ] = ACTIONS(973), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_GT2] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_STAR2] = ACTIONS(971), + [anon_sym_and2] = ACTIONS(973), + [anon_sym_xor2] = ACTIONS(973), + [anon_sym_or2] = ACTIONS(973), + [anon_sym_not_DASHin2] = ACTIONS(973), + [anon_sym_starts_DASHwith2] = ACTIONS(973), + [anon_sym_ends_DASHwith2] = ACTIONS(973), + [anon_sym_EQ_EQ2] = ACTIONS(973), + [anon_sym_BANG_EQ2] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(971), + [anon_sym_LT_EQ2] = ACTIONS(973), + [anon_sym_GT_EQ2] = ACTIONS(973), + [anon_sym_EQ_TILDE2] = ACTIONS(973), + [anon_sym_BANG_TILDE2] = ACTIONS(973), + [anon_sym_STAR_STAR2] = ACTIONS(973), + [anon_sym_PLUS_PLUS2] = ACTIONS(971), + [anon_sym_SLASH2] = ACTIONS(971), + [anon_sym_mod2] = ACTIONS(973), + [anon_sym_SLASH_SLASH2] = ACTIONS(973), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_bit_DASHshl2] = ACTIONS(973), + [anon_sym_bit_DASHshr2] = ACTIONS(973), + [anon_sym_bit_DASHand2] = ACTIONS(973), + [anon_sym_bit_DASHxor2] = ACTIONS(973), + [anon_sym_bit_DASHor2] = ACTIONS(973), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4646), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(247), }, [1362] = { + [sym__expr_parenthesized_immediate] = STATE(1918), + [sym__immediate_decimal] = STATE(1919), + [sym_val_variable] = STATE(1918), [sym_comment] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(4758), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4760), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1693), + [sym__newline] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_err_GT_PIPE] = ACTIONS(1693), + [anon_sym_out_GT_PIPE] = ACTIONS(1693), + [anon_sym_e_GT_PIPE] = ACTIONS(1693), + [anon_sym_o_GT_PIPE] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_DOT_DOT] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT] = ACTIONS(1693), + [aux_sym__immediate_decimal_token1] = ACTIONS(4561), + [aux_sym__immediate_decimal_token3] = ACTIONS(4563), + [aux_sym__immediate_decimal_token4] = ACTIONS(4565), + [aux_sym__immediate_decimal_token5] = ACTIONS(4567), + [anon_sym_null] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1693), + [anon_sym_false] = ACTIONS(1693), + [aux_sym__val_number_decimal_token1] = ACTIONS(1691), + [aux_sym__val_number_decimal_token2] = ACTIONS(1691), + [aux_sym__val_number_decimal_token3] = ACTIONS(1691), + [aux_sym__val_number_decimal_token4] = ACTIONS(1691), + [aux_sym__val_number_token1] = ACTIONS(1693), + [aux_sym__val_number_token2] = ACTIONS(1693), + [aux_sym__val_number_token3] = ACTIONS(1693), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_0b] = ACTIONS(1691), + [anon_sym_0o] = ACTIONS(1691), + [anon_sym_0x] = ACTIONS(1691), + [sym_val_date] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1691), + [anon_sym_out_GT] = ACTIONS(1691), + [anon_sym_e_GT] = ACTIONS(1691), + [anon_sym_o_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT] = ACTIONS(1691), + [anon_sym_err_GT_GT] = ACTIONS(1693), + [anon_sym_out_GT_GT] = ACTIONS(1693), + [anon_sym_e_GT_GT] = ACTIONS(1693), + [anon_sym_o_GT_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), + [aux_sym_unquoted_token1] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1693), }, [1363] = { - [sym__expr_parenthesized_immediate] = STATE(7534), + [sym__expr_parenthesized_immediate] = STATE(1920), + [sym__immediate_decimal] = STATE(1921), + [sym_val_variable] = STATE(1920), [sym_comment] = STATE(1363), - [sym__newline] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_err_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_GT_PIPE] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(1640), - [aux_sym_expr_binary_token2] = ACTIONS(1640), - [aux_sym_expr_binary_token3] = ACTIONS(1640), - [aux_sym_expr_binary_token4] = ACTIONS(1640), - [aux_sym_expr_binary_token5] = ACTIONS(1640), - [aux_sym_expr_binary_token6] = ACTIONS(1640), - [aux_sym_expr_binary_token7] = ACTIONS(1640), - [aux_sym_expr_binary_token8] = ACTIONS(1640), - [aux_sym_expr_binary_token9] = ACTIONS(1640), - [aux_sym_expr_binary_token10] = ACTIONS(1640), - [aux_sym_expr_binary_token11] = ACTIONS(1640), - [aux_sym_expr_binary_token12] = ACTIONS(1640), - [aux_sym_expr_binary_token13] = ACTIONS(1640), - [aux_sym_expr_binary_token14] = ACTIONS(1640), - [aux_sym_expr_binary_token15] = ACTIONS(1640), - [aux_sym_expr_binary_token16] = ACTIONS(1640), - [aux_sym_expr_binary_token17] = ACTIONS(1640), - [aux_sym_expr_binary_token18] = ACTIONS(1640), - [aux_sym_expr_binary_token19] = ACTIONS(1640), - [aux_sym_expr_binary_token20] = ACTIONS(1640), - [aux_sym_expr_binary_token21] = ACTIONS(1640), - [aux_sym_expr_binary_token22] = ACTIONS(1640), - [aux_sym_expr_binary_token23] = ACTIONS(1640), - [aux_sym_expr_binary_token24] = ACTIONS(1640), - [aux_sym_expr_binary_token25] = ACTIONS(1640), - [aux_sym_expr_binary_token26] = ACTIONS(1640), - [aux_sym_expr_binary_token27] = ACTIONS(1640), - [aux_sym_expr_binary_token28] = ACTIONS(1640), - [anon_sym_DOT_DOT2] = ACTIONS(4762), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4764), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4764), - [sym_filesize_unit] = ACTIONS(4766), - [sym_duration_unit] = ACTIONS(4768), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [anon_sym_err_GT_GT] = ACTIONS(1640), - [anon_sym_out_GT_GT] = ACTIONS(1640), - [anon_sym_e_GT_GT] = ACTIONS(1640), - [anon_sym_o_GT_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), - [aux_sym_unquoted_token2] = ACTIONS(4770), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1671), + [sym__newline] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_err_GT_PIPE] = ACTIONS(1671), + [anon_sym_out_GT_PIPE] = ACTIONS(1671), + [anon_sym_e_GT_PIPE] = ACTIONS(1671), + [anon_sym_o_GT_PIPE] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT] = ACTIONS(1671), + [aux_sym__immediate_decimal_token1] = ACTIONS(4561), + [aux_sym__immediate_decimal_token3] = ACTIONS(4563), + [aux_sym__immediate_decimal_token4] = ACTIONS(4565), + [aux_sym__immediate_decimal_token5] = ACTIONS(4567), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1663), + [aux_sym__val_number_decimal_token3] = ACTIONS(1663), + [aux_sym__val_number_decimal_token4] = ACTIONS(1663), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1663), + [anon_sym_0x] = ACTIONS(1663), + [sym_val_date] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [sym__str_single_quotes] = ACTIONS(1671), + [sym__str_back_ticks] = ACTIONS(1671), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1663), + [anon_sym_out_GT] = ACTIONS(1663), + [anon_sym_e_GT] = ACTIONS(1663), + [anon_sym_o_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT] = ACTIONS(1663), + [anon_sym_err_GT_GT] = ACTIONS(1671), + [anon_sym_out_GT_GT] = ACTIONS(1671), + [anon_sym_e_GT_GT] = ACTIONS(1671), + [anon_sym_o_GT_GT] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), + [aux_sym_unquoted_token1] = ACTIONS(1663), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1671), }, [1364] = { + [sym__expr_parenthesized_immediate] = STATE(1922), + [sym__immediate_decimal] = STATE(1923), + [sym_val_variable] = STATE(1922), [sym_comment] = STATE(1364), - [ts_builtin_sym_end] = ACTIONS(1092), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4774), - [sym__newline] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_err_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_GT_PIPE] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), - [aux_sym_expr_binary_token1] = ACTIONS(1092), - [aux_sym_expr_binary_token2] = ACTIONS(1092), - [aux_sym_expr_binary_token3] = ACTIONS(1092), - [aux_sym_expr_binary_token4] = ACTIONS(1092), - [aux_sym_expr_binary_token5] = ACTIONS(1092), - [aux_sym_expr_binary_token6] = ACTIONS(1092), - [aux_sym_expr_binary_token7] = ACTIONS(1092), - [aux_sym_expr_binary_token8] = ACTIONS(1092), - [aux_sym_expr_binary_token9] = ACTIONS(1092), - [aux_sym_expr_binary_token10] = ACTIONS(1092), - [aux_sym_expr_binary_token11] = ACTIONS(1092), - [aux_sym_expr_binary_token12] = ACTIONS(1092), - [aux_sym_expr_binary_token13] = ACTIONS(1092), - [aux_sym_expr_binary_token14] = ACTIONS(1092), - [aux_sym_expr_binary_token15] = ACTIONS(1092), - [aux_sym_expr_binary_token16] = ACTIONS(1092), - [aux_sym_expr_binary_token17] = ACTIONS(1092), - [aux_sym_expr_binary_token18] = ACTIONS(1092), - [aux_sym_expr_binary_token19] = ACTIONS(1092), - [aux_sym_expr_binary_token20] = ACTIONS(1092), - [aux_sym_expr_binary_token21] = ACTIONS(1092), - [aux_sym_expr_binary_token22] = ACTIONS(1092), - [aux_sym_expr_binary_token23] = ACTIONS(1092), - [aux_sym_expr_binary_token24] = ACTIONS(1092), - [aux_sym_expr_binary_token25] = ACTIONS(1092), - [aux_sym_expr_binary_token26] = ACTIONS(1092), - [aux_sym_expr_binary_token27] = ACTIONS(1092), - [aux_sym_expr_binary_token28] = ACTIONS(1092), - [anon_sym_DOT_DOT2] = ACTIONS(4776), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4778), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4778), - [anon_sym_err_GT] = ACTIONS(1090), - [anon_sym_out_GT] = ACTIONS(1090), - [anon_sym_e_GT] = ACTIONS(1090), - [anon_sym_o_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT] = ACTIONS(1090), - [anon_sym_err_GT_GT] = ACTIONS(1092), - [anon_sym_out_GT_GT] = ACTIONS(1092), - [anon_sym_e_GT_GT] = ACTIONS(1092), - [anon_sym_o_GT_GT] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = 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(4219), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT] = ACTIONS(1707), + [aux_sym__immediate_decimal_token1] = ACTIONS(4561), + [aux_sym__immediate_decimal_token3] = ACTIONS(4563), + [aux_sym__immediate_decimal_token4] = ACTIONS(4565), + [aux_sym__immediate_decimal_token5] = ACTIONS(4567), + [anon_sym_null] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [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(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [aux_sym__val_number_token4] = ACTIONS(1707), + [aux_sym__val_number_token5] = ACTIONS(1707), + [aux_sym__val_number_token6] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1707), }, [1365] = { - [sym_cell_path] = STATE(1778), - [sym_path] = STATE(1589), + [sym_path] = STATE(1421), [sym_comment] = STATE(1365), - [aux_sym_cell_path_repeat1] = STATE(1434), - [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(2055), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_DOT_DOT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2057), - [anon_sym_DOT_DOT_LT] = ACTIONS(2057), - [aux_sym__val_number_decimal_token1] = ACTIONS(2055), - [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(2055), - [anon_sym_0o] = ACTIONS(2055), - [anon_sym_0x] = ACTIONS(2055), - [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(2055), - [anon_sym_out_GT] = ACTIONS(2055), - [anon_sym_e_GT] = ACTIONS(2055), - [anon_sym_o_GT] = ACTIONS(2055), - [anon_sym_err_PLUSout_GT] = ACTIONS(2055), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2055), - [anon_sym_o_PLUSe_GT] = ACTIONS(2055), - [anon_sym_e_PLUSo_GT] = ACTIONS(2055), - [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(2055), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2057), + [aux_sym_cell_path_repeat1] = STATE(1370), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(969), + [anon_sym_DASH_EQ] = ACTIONS(969), + [anon_sym_STAR_EQ] = ACTIONS(969), + [anon_sym_SLASH_EQ] = ACTIONS(969), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(969), + [sym__newline] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_GT2] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_STAR2] = ACTIONS(967), + [anon_sym_and2] = ACTIONS(969), + [anon_sym_xor2] = ACTIONS(969), + [anon_sym_or2] = ACTIONS(969), + [anon_sym_not_DASHin2] = ACTIONS(969), + [anon_sym_starts_DASHwith2] = ACTIONS(969), + [anon_sym_ends_DASHwith2] = ACTIONS(969), + [anon_sym_EQ_EQ2] = ACTIONS(969), + [anon_sym_BANG_EQ2] = ACTIONS(969), + [anon_sym_LT2] = ACTIONS(967), + [anon_sym_LT_EQ2] = ACTIONS(969), + [anon_sym_GT_EQ2] = ACTIONS(969), + [anon_sym_EQ_TILDE2] = ACTIONS(969), + [anon_sym_BANG_TILDE2] = ACTIONS(969), + [anon_sym_STAR_STAR2] = ACTIONS(969), + [anon_sym_PLUS_PLUS2] = ACTIONS(967), + [anon_sym_SLASH2] = ACTIONS(967), + [anon_sym_mod2] = ACTIONS(969), + [anon_sym_SLASH_SLASH2] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_bit_DASHshl2] = ACTIONS(969), + [anon_sym_bit_DASHshr2] = ACTIONS(969), + [anon_sym_bit_DASHand2] = ACTIONS(969), + [anon_sym_bit_DASHxor2] = ACTIONS(969), + [anon_sym_bit_DASHor2] = ACTIONS(969), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [aux_sym_record_entry_token1] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(247), }, [1366] = { [sym_comment] = STATE(1366), - [ts_builtin_sym_end] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1530), - [aux_sym_expr_binary_token1] = ACTIONS(1530), - [aux_sym_expr_binary_token2] = ACTIONS(1530), - [aux_sym_expr_binary_token3] = ACTIONS(1530), - [aux_sym_expr_binary_token4] = ACTIONS(1530), - [aux_sym_expr_binary_token5] = ACTIONS(1530), - [aux_sym_expr_binary_token6] = ACTIONS(1530), - [aux_sym_expr_binary_token7] = ACTIONS(1530), - [aux_sym_expr_binary_token8] = ACTIONS(1530), - [aux_sym_expr_binary_token9] = ACTIONS(1530), - [aux_sym_expr_binary_token10] = ACTIONS(1530), - [aux_sym_expr_binary_token11] = ACTIONS(1530), - [aux_sym_expr_binary_token12] = ACTIONS(1530), - [aux_sym_expr_binary_token13] = ACTIONS(1530), - [aux_sym_expr_binary_token14] = ACTIONS(1530), - [aux_sym_expr_binary_token15] = ACTIONS(1530), - [aux_sym_expr_binary_token16] = ACTIONS(1530), - [aux_sym_expr_binary_token17] = ACTIONS(1530), - [aux_sym_expr_binary_token18] = ACTIONS(1530), - [aux_sym_expr_binary_token19] = ACTIONS(1530), - [aux_sym_expr_binary_token20] = ACTIONS(1530), - [aux_sym_expr_binary_token21] = ACTIONS(1530), - [aux_sym_expr_binary_token22] = ACTIONS(1530), - [aux_sym_expr_binary_token23] = ACTIONS(1530), - [aux_sym_expr_binary_token24] = ACTIONS(1530), - [aux_sym_expr_binary_token25] = ACTIONS(1530), - [aux_sym_expr_binary_token26] = ACTIONS(1530), - [aux_sym_expr_binary_token27] = ACTIONS(1530), - [aux_sym_expr_binary_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(4780), - [aux_sym__immediate_decimal_token2] = ACTIONS(4782), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1609), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(4649), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(4651), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1609), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1609), + [anon_sym_0b] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1609), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [sym_val_date] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), }, [1367] = { - [sym_cell_path] = STATE(1779), - [sym_path] = STATE(1589), [sym_comment] = STATE(1367), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_err_GT_PIPE] = ACTIONS(2061), - [anon_sym_out_GT_PIPE] = ACTIONS(2061), - [anon_sym_e_GT_PIPE] = ACTIONS(2061), - [anon_sym_o_GT_PIPE] = ACTIONS(2061), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2061), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2061), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2061), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2061), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_DOT_DOT] = ACTIONS(2059), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2061), - [anon_sym_DOT_DOT_LT] = ACTIONS(2061), - [aux_sym__val_number_decimal_token1] = ACTIONS(2059), - [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_0b] = ACTIONS(2059), - [anon_sym_0o] = ACTIONS(2059), - [anon_sym_0x] = ACTIONS(2059), - [sym_val_date] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [sym__str_single_quotes] = ACTIONS(2061), - [sym__str_back_ticks] = ACTIONS(2061), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2061), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2061), - [anon_sym_err_GT] = ACTIONS(2059), - [anon_sym_out_GT] = ACTIONS(2059), - [anon_sym_e_GT] = ACTIONS(2059), - [anon_sym_o_GT] = ACTIONS(2059), - [anon_sym_err_PLUSout_GT] = ACTIONS(2059), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2059), - [anon_sym_o_PLUSe_GT] = ACTIONS(2059), - [anon_sym_e_PLUSo_GT] = ACTIONS(2059), - [anon_sym_err_GT_GT] = ACTIONS(2061), - [anon_sym_out_GT_GT] = ACTIONS(2061), - [anon_sym_e_GT_GT] = ACTIONS(2061), - [anon_sym_o_GT_GT] = ACTIONS(2061), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2061), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2061), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2061), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2061), - [aux_sym_unquoted_token1] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2061), + [ts_builtin_sym_end] = 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(1623), + [anon_sym_DOLLAR] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(4653), + [aux_sym__immediate_decimal_token2] = ACTIONS(4655), + [anon_sym_null] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1623), + [aux_sym__val_number_decimal_token3] = ACTIONS(1623), + [aux_sym__val_number_decimal_token4] = ACTIONS(1623), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1623), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1623), + [anon_sym_0b] = ACTIONS(1621), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1623), + [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_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1623), }, [1368] = { [sym_comment] = STATE(1368), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_null] = ACTIONS(2220), - [aux_sym_cmd_identifier_token38] = ACTIONS(2220), - [aux_sym_cmd_identifier_token39] = ACTIONS(2220), - [aux_sym_cmd_identifier_token40] = ACTIONS(2220), - [sym__newline] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_err_GT_PIPE] = ACTIONS(2220), - [anon_sym_out_GT_PIPE] = ACTIONS(2220), - [anon_sym_e_GT_PIPE] = ACTIONS(2220), - [anon_sym_o_GT_PIPE] = ACTIONS(2220), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2220), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2220), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2220), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_RPAREN] = ACTIONS(2220), - [anon_sym_DOLLAR] = ACTIONS(2218), - [anon_sym_DASH_DASH] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_RBRACE] = ACTIONS(2220), - [anon_sym_DOT_DOT] = ACTIONS(2218), - [anon_sym_DOT_DOT2] = ACTIONS(2218), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2218), - [anon_sym_DOT_DOT_LT] = ACTIONS(2218), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2220), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [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_0b] = ACTIONS(2218), - [anon_sym_0o] = ACTIONS(2218), - [anon_sym_0x] = ACTIONS(2218), - [sym_val_date] = ACTIONS(2220), - [anon_sym_DQUOTE] = ACTIONS(2220), - [sym__str_single_quotes] = ACTIONS(2220), - [sym__str_back_ticks] = ACTIONS(2220), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2220), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2220), - [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(2220), - [anon_sym_out_GT_GT] = ACTIONS(2220), - [anon_sym_e_GT_GT] = ACTIONS(2220), - [anon_sym_o_GT_GT] = ACTIONS(2220), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2220), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2220), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2220), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2220), - [aux_sym_unquoted_token1] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2220), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [sym__newline] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_err_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_GT_PIPE] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), + [anon_sym_GT2] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_STAR2] = ACTIONS(2214), + [anon_sym_and2] = ACTIONS(2214), + [anon_sym_xor2] = ACTIONS(2214), + [anon_sym_or2] = ACTIONS(2214), + [anon_sym_not_DASHin2] = ACTIONS(2214), + [anon_sym_starts_DASHwith2] = ACTIONS(2214), + [anon_sym_ends_DASHwith2] = ACTIONS(2214), + [anon_sym_EQ_EQ2] = ACTIONS(2214), + [anon_sym_BANG_EQ2] = ACTIONS(2214), + [anon_sym_LT2] = ACTIONS(2214), + [anon_sym_LT_EQ2] = ACTIONS(2214), + [anon_sym_GT_EQ2] = ACTIONS(2214), + [anon_sym_EQ_TILDE2] = ACTIONS(2214), + [anon_sym_BANG_TILDE2] = ACTIONS(2214), + [anon_sym_STAR_STAR2] = ACTIONS(2214), + [anon_sym_PLUS_PLUS2] = ACTIONS(2214), + [anon_sym_SLASH2] = ACTIONS(2214), + [anon_sym_mod2] = ACTIONS(2214), + [anon_sym_SLASH_SLASH2] = ACTIONS(2214), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_bit_DASHshl2] = ACTIONS(2214), + [anon_sym_bit_DASHshr2] = ACTIONS(2214), + [anon_sym_bit_DASHand2] = ACTIONS(2214), + [anon_sym_bit_DASHxor2] = ACTIONS(2214), + [anon_sym_bit_DASHor2] = ACTIONS(2214), + [anon_sym_POUND] = ACTIONS(3), }, [1369] = { [sym_comment] = STATE(1369), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1076), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_err_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_GT_PIPE] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_DASH_DASH] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT2] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1074), - [anon_sym_DOT_DOT_LT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1074), - [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(1074), - [anon_sym_0o] = ACTIONS(1074), - [anon_sym_0x] = ACTIONS(1074), - [sym_val_date] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1076), - [sym__str_single_quotes] = ACTIONS(1076), - [sym__str_back_ticks] = ACTIONS(1076), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1076), - [anon_sym_err_GT] = ACTIONS(1074), - [anon_sym_out_GT] = ACTIONS(1074), - [anon_sym_e_GT] = ACTIONS(1074), - [anon_sym_o_GT] = ACTIONS(1074), - [anon_sym_err_PLUSout_GT] = ACTIONS(1074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), - [anon_sym_o_PLUSe_GT] = ACTIONS(1074), - [anon_sym_e_PLUSo_GT] = ACTIONS(1074), - [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(1074), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1076), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [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_GT2] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_STAR2] = ACTIONS(2222), + [anon_sym_and2] = ACTIONS(2222), + [anon_sym_xor2] = ACTIONS(2222), + [anon_sym_or2] = ACTIONS(2222), + [anon_sym_not_DASHin2] = ACTIONS(2222), + [anon_sym_starts_DASHwith2] = ACTIONS(2222), + [anon_sym_ends_DASHwith2] = ACTIONS(2222), + [anon_sym_EQ_EQ2] = ACTIONS(2222), + [anon_sym_BANG_EQ2] = ACTIONS(2222), + [anon_sym_LT2] = ACTIONS(2222), + [anon_sym_LT_EQ2] = ACTIONS(2222), + [anon_sym_GT_EQ2] = ACTIONS(2222), + [anon_sym_EQ_TILDE2] = ACTIONS(2222), + [anon_sym_BANG_TILDE2] = ACTIONS(2222), + [anon_sym_STAR_STAR2] = ACTIONS(2222), + [anon_sym_PLUS_PLUS2] = ACTIONS(2222), + [anon_sym_SLASH2] = ACTIONS(2222), + [anon_sym_mod2] = ACTIONS(2222), + [anon_sym_SLASH_SLASH2] = ACTIONS(2222), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_bit_DASHshl2] = ACTIONS(2222), + [anon_sym_bit_DASHshr2] = ACTIONS(2222), + [anon_sym_bit_DASHand2] = ACTIONS(2222), + [anon_sym_bit_DASHxor2] = ACTIONS(2222), + [anon_sym_bit_DASHor2] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), }, [1370] = { - [sym_cell_path] = STATE(1780), - [sym_path] = STATE(1589), + [sym_path] = STATE(1421), [sym_comment] = STATE(1370), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(2069), - [anon_sym_false] = ACTIONS(2069), - [anon_sym_null] = ACTIONS(2069), - [aux_sym_cmd_identifier_token38] = ACTIONS(2069), - [aux_sym_cmd_identifier_token39] = ACTIONS(2069), - [aux_sym_cmd_identifier_token40] = ACTIONS(2069), - [sym__newline] = ACTIONS(2069), - [anon_sym_SEMI] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2069), - [anon_sym_err_GT_PIPE] = ACTIONS(2069), - [anon_sym_out_GT_PIPE] = ACTIONS(2069), - [anon_sym_e_GT_PIPE] = ACTIONS(2069), - [anon_sym_o_GT_PIPE] = ACTIONS(2069), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2069), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2069), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2069), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_DOLLAR] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_DOT_DOT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2069), - [anon_sym_DOT_DOT_LT] = ACTIONS(2069), - [aux_sym__val_number_decimal_token1] = ACTIONS(2067), - [aux_sym__val_number_decimal_token2] = ACTIONS(2069), - [aux_sym__val_number_decimal_token3] = ACTIONS(2069), - [aux_sym__val_number_decimal_token4] = ACTIONS(2069), - [aux_sym__val_number_token1] = ACTIONS(2069), - [aux_sym__val_number_token2] = ACTIONS(2069), - [aux_sym__val_number_token3] = ACTIONS(2069), - [anon_sym_0b] = ACTIONS(2067), - [anon_sym_0o] = ACTIONS(2067), - [anon_sym_0x] = ACTIONS(2067), - [sym_val_date] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2069), - [sym__str_single_quotes] = ACTIONS(2069), - [sym__str_back_ticks] = ACTIONS(2069), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2069), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2069), - [anon_sym_err_GT] = ACTIONS(2067), - [anon_sym_out_GT] = ACTIONS(2067), - [anon_sym_e_GT] = ACTIONS(2067), - [anon_sym_o_GT] = ACTIONS(2067), - [anon_sym_err_PLUSout_GT] = ACTIONS(2067), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2067), - [anon_sym_o_PLUSe_GT] = ACTIONS(2067), - [anon_sym_e_PLUSo_GT] = ACTIONS(2067), - [anon_sym_err_GT_GT] = ACTIONS(2069), - [anon_sym_out_GT_GT] = ACTIONS(2069), - [anon_sym_e_GT_GT] = ACTIONS(2069), - [anon_sym_o_GT_GT] = ACTIONS(2069), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2069), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2069), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2069), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2069), - [aux_sym_unquoted_token1] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2069), + [aux_sym_cell_path_repeat1] = STATE(1370), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_PLUS_EQ] = ACTIONS(973), + [anon_sym_DASH_EQ] = ACTIONS(973), + [anon_sym_STAR_EQ] = ACTIONS(973), + [anon_sym_SLASH_EQ] = ACTIONS(973), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), + [sym__newline] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_GT2] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_STAR2] = ACTIONS(971), + [anon_sym_and2] = ACTIONS(973), + [anon_sym_xor2] = ACTIONS(973), + [anon_sym_or2] = ACTIONS(973), + [anon_sym_not_DASHin2] = ACTIONS(973), + [anon_sym_starts_DASHwith2] = ACTIONS(973), + [anon_sym_ends_DASHwith2] = ACTIONS(973), + [anon_sym_EQ_EQ2] = ACTIONS(973), + [anon_sym_BANG_EQ2] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(971), + [anon_sym_LT_EQ2] = ACTIONS(973), + [anon_sym_GT_EQ2] = ACTIONS(973), + [anon_sym_EQ_TILDE2] = ACTIONS(973), + [anon_sym_BANG_TILDE2] = ACTIONS(973), + [anon_sym_STAR_STAR2] = ACTIONS(973), + [anon_sym_PLUS_PLUS2] = ACTIONS(971), + [anon_sym_SLASH2] = ACTIONS(971), + [anon_sym_mod2] = ACTIONS(973), + [anon_sym_SLASH_SLASH2] = ACTIONS(973), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_bit_DASHshl2] = ACTIONS(973), + [anon_sym_bit_DASHshr2] = ACTIONS(973), + [anon_sym_bit_DASHand2] = ACTIONS(973), + [anon_sym_bit_DASHxor2] = ACTIONS(973), + [anon_sym_bit_DASHor2] = ACTIONS(973), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4657), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [aux_sym_record_entry_token1] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(247), }, [1371] = { [sym_comment] = STATE(1371), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [anon_sym_null] = ACTIONS(2232), - [aux_sym_cmd_identifier_token38] = ACTIONS(2232), - [aux_sym_cmd_identifier_token39] = ACTIONS(2232), - [aux_sym_cmd_identifier_token40] = ACTIONS(2232), - [sym__newline] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_err_GT_PIPE] = ACTIONS(2232), - [anon_sym_out_GT_PIPE] = ACTIONS(2232), - [anon_sym_e_GT_PIPE] = ACTIONS(2232), - [anon_sym_o_GT_PIPE] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_DOT_DOT] = ACTIONS(2230), - [anon_sym_DOT_DOT2] = ACTIONS(2230), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2230), - [anon_sym_DOT_DOT_LT] = ACTIONS(2230), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2232), - [aux_sym__val_number_decimal_token3] = ACTIONS(2232), - [aux_sym__val_number_decimal_token4] = ACTIONS(2232), - [aux_sym__val_number_token1] = ACTIONS(2232), - [aux_sym__val_number_token2] = ACTIONS(2232), - [aux_sym__val_number_token3] = ACTIONS(2232), - [anon_sym_0b] = ACTIONS(2230), - [anon_sym_0o] = ACTIONS(2230), - [anon_sym_0x] = ACTIONS(2230), - [sym_val_date] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym__str_single_quotes] = ACTIONS(2232), - [sym__str_back_ticks] = ACTIONS(2232), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2232), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2232), - [anon_sym_err_GT] = ACTIONS(2230), - [anon_sym_out_GT] = ACTIONS(2230), - [anon_sym_e_GT] = ACTIONS(2230), - [anon_sym_o_GT] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT] = ACTIONS(2230), - [anon_sym_err_GT_GT] = ACTIONS(2232), - [anon_sym_out_GT_GT] = ACTIONS(2232), - [anon_sym_e_GT_GT] = ACTIONS(2232), - [anon_sym_o_GT_GT] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), - [aux_sym_unquoted_token1] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2232), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4660), + [aux_sym__immediate_decimal_token2] = ACTIONS(4662), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1372] = { - [sym_cell_path] = STATE(1399), - [sym_path] = STATE(1233), + [sym_cell_path] = STATE(1471), + [sym_path] = STATE(1488), [sym_comment] = STATE(1372), - [aux_sym_cell_path_repeat1] = STATE(1096), - [sym__newline] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [aux_sym_expr_binary_token1] = ACTIONS(1668), - [aux_sym_expr_binary_token2] = ACTIONS(1668), - [aux_sym_expr_binary_token3] = ACTIONS(1668), - [aux_sym_expr_binary_token4] = ACTIONS(1668), - [aux_sym_expr_binary_token5] = ACTIONS(1668), - [aux_sym_expr_binary_token6] = ACTIONS(1668), - [aux_sym_expr_binary_token7] = ACTIONS(1668), - [aux_sym_expr_binary_token8] = ACTIONS(1668), - [aux_sym_expr_binary_token9] = ACTIONS(1668), - [aux_sym_expr_binary_token10] = ACTIONS(1668), - [aux_sym_expr_binary_token11] = ACTIONS(1668), - [aux_sym_expr_binary_token12] = ACTIONS(1668), - [aux_sym_expr_binary_token13] = ACTIONS(1668), - [aux_sym_expr_binary_token14] = ACTIONS(1668), - [aux_sym_expr_binary_token15] = ACTIONS(1668), - [aux_sym_expr_binary_token16] = ACTIONS(1668), - [aux_sym_expr_binary_token17] = ACTIONS(1668), - [aux_sym_expr_binary_token18] = ACTIONS(1668), - [aux_sym_expr_binary_token19] = ACTIONS(1668), - [aux_sym_expr_binary_token20] = ACTIONS(1668), - [aux_sym_expr_binary_token21] = ACTIONS(1668), - [aux_sym_expr_binary_token22] = ACTIONS(1668), - [aux_sym_expr_binary_token23] = ACTIONS(1668), - [aux_sym_expr_binary_token24] = ACTIONS(1668), - [aux_sym_expr_binary_token25] = ACTIONS(1668), - [aux_sym_expr_binary_token26] = ACTIONS(1668), - [aux_sym_expr_binary_token27] = ACTIONS(1668), - [aux_sym_expr_binary_token28] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(4006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym_record_entry_token1] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1664), - [anon_sym_out_GT] = ACTIONS(1664), - [anon_sym_e_GT] = ACTIONS(1664), - [anon_sym_o_GT] = ACTIONS(1664), - [anon_sym_err_PLUSout_GT] = ACTIONS(1664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), - [anon_sym_o_PLUSe_GT] = ACTIONS(1664), - [anon_sym_e_PLUSo_GT] = ACTIONS(1664), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1405), + [ts_builtin_sym_end] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(963), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(963), + [anon_sym_STAR2] = ACTIONS(961), + [anon_sym_and2] = ACTIONS(963), + [anon_sym_xor2] = ACTIONS(963), + [anon_sym_or2] = ACTIONS(963), + [anon_sym_not_DASHin2] = ACTIONS(963), + [anon_sym_starts_DASHwith2] = ACTIONS(963), + [anon_sym_ends_DASHwith2] = ACTIONS(963), + [anon_sym_EQ_EQ2] = ACTIONS(963), + [anon_sym_BANG_EQ2] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_LT_EQ2] = ACTIONS(963), + [anon_sym_GT_EQ2] = ACTIONS(963), + [anon_sym_EQ_TILDE2] = ACTIONS(963), + [anon_sym_BANG_TILDE2] = ACTIONS(963), + [anon_sym_STAR_STAR2] = ACTIONS(963), + [anon_sym_PLUS_PLUS2] = ACTIONS(961), + [anon_sym_SLASH2] = ACTIONS(961), + [anon_sym_mod2] = ACTIONS(963), + [anon_sym_SLASH_SLASH2] = ACTIONS(963), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_bit_DASHshl2] = ACTIONS(963), + [anon_sym_bit_DASHshr2] = ACTIONS(963), + [anon_sym_bit_DASHand2] = ACTIONS(963), + [anon_sym_bit_DASHxor2] = ACTIONS(963), + [anon_sym_bit_DASHor2] = ACTIONS(963), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4664), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), }, [1373] = { [sym_comment] = STATE(1373), - [aux_sym_cmd_identifier_token41] = ACTIONS(1528), - [sym__newline] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(4784), - [aux_sym__immediate_decimal_token2] = ACTIONS(4786), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1609), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(4551), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1609), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1609), + [anon_sym_0b] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1609), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [sym_val_date] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), }, [1374] = { + [sym_path] = STATE(1443), [sym_comment] = STATE(1374), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(4788), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4790), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [aux_sym_cell_path_repeat1] = STATE(1361), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(969), + [anon_sym_DASH_EQ] = ACTIONS(969), + [anon_sym_STAR_EQ] = ACTIONS(969), + [anon_sym_SLASH_EQ] = ACTIONS(969), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(969), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(969), + [anon_sym_GT2] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_STAR2] = ACTIONS(967), + [anon_sym_and2] = ACTIONS(969), + [anon_sym_xor2] = ACTIONS(969), + [anon_sym_or2] = ACTIONS(969), + [anon_sym_not_DASHin2] = ACTIONS(969), + [anon_sym_starts_DASHwith2] = ACTIONS(969), + [anon_sym_ends_DASHwith2] = ACTIONS(969), + [anon_sym_EQ_EQ2] = ACTIONS(969), + [anon_sym_BANG_EQ2] = ACTIONS(969), + [anon_sym_LT2] = ACTIONS(967), + [anon_sym_LT_EQ2] = ACTIONS(969), + [anon_sym_GT_EQ2] = ACTIONS(969), + [anon_sym_EQ_TILDE2] = ACTIONS(969), + [anon_sym_BANG_TILDE2] = ACTIONS(969), + [anon_sym_STAR_STAR2] = ACTIONS(969), + [anon_sym_PLUS_PLUS2] = ACTIONS(967), + [anon_sym_SLASH2] = ACTIONS(967), + [anon_sym_mod2] = ACTIONS(969), + [anon_sym_SLASH_SLASH2] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_bit_DASHshl2] = ACTIONS(969), + [anon_sym_bit_DASHshr2] = ACTIONS(969), + [anon_sym_bit_DASHand2] = ACTIONS(969), + [anon_sym_bit_DASHxor2] = ACTIONS(969), + [anon_sym_bit_DASHor2] = ACTIONS(969), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4209), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(247), }, [1375] = { + [sym__expr_parenthesized_immediate] = STATE(7437), [sym_comment] = STATE(1375), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [aux_sym_cmd_identifier_token38] = ACTIONS(1672), - [aux_sym_cmd_identifier_token39] = ACTIONS(1672), - [aux_sym_cmd_identifier_token40] = ACTIONS(1672), - [sym__newline] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_err_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_GT_PIPE] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_DOT_DOT] = ACTIONS(1670), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), - [anon_sym_DOT_DOT_LT] = ACTIONS(1670), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [aux_sym__val_number_decimal_token1] = ACTIONS(1670), - [aux_sym__val_number_decimal_token2] = ACTIONS(1672), - [aux_sym__val_number_decimal_token3] = ACTIONS(1672), - [aux_sym__val_number_decimal_token4] = ACTIONS(1672), - [aux_sym__val_number_token1] = ACTIONS(1672), - [aux_sym__val_number_token2] = ACTIONS(1672), - [aux_sym__val_number_token3] = ACTIONS(1672), - [anon_sym_0b] = ACTIONS(1670), - [anon_sym_0o] = ACTIONS(1670), - [anon_sym_0x] = ACTIONS(1670), - [sym_val_date] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [sym__str_single_quotes] = ACTIONS(1672), - [sym__str_back_ticks] = ACTIONS(1672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1672), - [anon_sym_err_GT] = ACTIONS(1670), - [anon_sym_out_GT] = ACTIONS(1670), - [anon_sym_e_GT] = ACTIONS(1670), - [anon_sym_o_GT] = ACTIONS(1670), - [anon_sym_err_PLUSout_GT] = ACTIONS(1670), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), - [anon_sym_o_PLUSe_GT] = ACTIONS(1670), - [anon_sym_e_PLUSo_GT] = ACTIONS(1670), - [anon_sym_err_GT_GT] = ACTIONS(1672), - [anon_sym_out_GT_GT] = ACTIONS(1672), - [anon_sym_e_GT_GT] = ACTIONS(1672), - [anon_sym_o_GT_GT] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), - [aux_sym_unquoted_token1] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1672), + [ts_builtin_sym_end] = ACTIONS(1721), + [sym__newline] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_err_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_GT_PIPE] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1721), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT2] = ACTIONS(4666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4668), + [anon_sym_null] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [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), + [aux_sym__val_number_token4] = ACTIONS(1721), + [aux_sym__val_number_token5] = ACTIONS(1721), + [aux_sym__val_number_token6] = ACTIONS(1721), + [anon_sym_0b] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(4670), + [sym_duration_unit] = ACTIONS(4672), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1721), + [anon_sym_out_GT_GT] = ACTIONS(1721), + [anon_sym_e_GT_GT] = ACTIONS(1721), + [anon_sym_o_GT_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(4674), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1721), }, [1376] = { - [sym_cell_path] = STATE(1772), - [sym_path] = STATE(1589), [sym_comment] = STATE(1376), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [anon_sym_null] = ACTIONS(2019), - [aux_sym_cmd_identifier_token38] = ACTIONS(2019), - [aux_sym_cmd_identifier_token39] = ACTIONS(2019), - [aux_sym_cmd_identifier_token40] = ACTIONS(2019), - [sym__newline] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_PIPE] = ACTIONS(2019), - [anon_sym_err_GT_PIPE] = ACTIONS(2019), - [anon_sym_out_GT_PIPE] = ACTIONS(2019), - [anon_sym_e_GT_PIPE] = ACTIONS(2019), - [anon_sym_o_GT_PIPE] = ACTIONS(2019), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2019), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2019), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2019), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2017), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), - [anon_sym_DOT_DOT_LT] = ACTIONS(2019), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2019), - [aux_sym__val_number_decimal_token3] = ACTIONS(2019), - [aux_sym__val_number_decimal_token4] = ACTIONS(2019), - [aux_sym__val_number_token1] = ACTIONS(2019), - [aux_sym__val_number_token2] = ACTIONS(2019), - [aux_sym__val_number_token3] = ACTIONS(2019), - [anon_sym_0b] = ACTIONS(2017), - [anon_sym_0o] = ACTIONS(2017), - [anon_sym_0x] = ACTIONS(2017), - [sym_val_date] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2019), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2019), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), - [anon_sym_err_GT] = ACTIONS(2017), - [anon_sym_out_GT] = ACTIONS(2017), - [anon_sym_e_GT] = ACTIONS(2017), - [anon_sym_o_GT] = ACTIONS(2017), - [anon_sym_err_PLUSout_GT] = ACTIONS(2017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2017), - [anon_sym_o_PLUSe_GT] = ACTIONS(2017), - [anon_sym_e_PLUSo_GT] = ACTIONS(2017), - [anon_sym_err_GT_GT] = ACTIONS(2019), - [anon_sym_out_GT_GT] = ACTIONS(2019), - [anon_sym_e_GT_GT] = ACTIONS(2019), - [anon_sym_o_GT_GT] = ACTIONS(2019), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2019), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2019), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2019), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2019), - [aux_sym_unquoted_token1] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2019), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_PLUS_EQ] = ACTIONS(992), + [anon_sym_DASH_EQ] = ACTIONS(992), + [anon_sym_STAR_EQ] = ACTIONS(992), + [anon_sym_SLASH_EQ] = ACTIONS(992), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_GT2] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_STAR2] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_and2] = ACTIONS(992), + [anon_sym_xor2] = ACTIONS(992), + [anon_sym_or2] = ACTIONS(992), + [anon_sym_not_DASHin2] = ACTIONS(992), + [anon_sym_starts_DASHwith2] = ACTIONS(992), + [anon_sym_ends_DASHwith2] = ACTIONS(992), + [anon_sym_EQ_EQ2] = ACTIONS(992), + [anon_sym_BANG_EQ2] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(990), + [anon_sym_LT_EQ2] = ACTIONS(992), + [anon_sym_GT_EQ2] = ACTIONS(992), + [anon_sym_EQ_TILDE2] = ACTIONS(992), + [anon_sym_BANG_TILDE2] = ACTIONS(992), + [anon_sym_STAR_STAR2] = ACTIONS(992), + [anon_sym_PLUS_PLUS2] = ACTIONS(990), + [anon_sym_SLASH2] = ACTIONS(990), + [anon_sym_mod2] = ACTIONS(992), + [anon_sym_SLASH_SLASH2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_bit_DASHshl2] = ACTIONS(992), + [anon_sym_bit_DASHshr2] = ACTIONS(992), + [anon_sym_bit_DASHand2] = ACTIONS(992), + [anon_sym_bit_DASHxor2] = ACTIONS(992), + [anon_sym_bit_DASHor2] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), }, [1377] = { - [sym_cell_path] = STATE(1426), - [sym_path] = STATE(1233), [sym_comment] = STATE(1377), - [aux_sym_cell_path_repeat1] = STATE(1096), - [sym__newline] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_err_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_GT_PIPE] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [aux_sym_expr_binary_token1] = ACTIONS(1672), - [aux_sym_expr_binary_token2] = ACTIONS(1672), - [aux_sym_expr_binary_token3] = ACTIONS(1672), - [aux_sym_expr_binary_token4] = ACTIONS(1672), - [aux_sym_expr_binary_token5] = ACTIONS(1672), - [aux_sym_expr_binary_token6] = ACTIONS(1672), - [aux_sym_expr_binary_token7] = ACTIONS(1672), - [aux_sym_expr_binary_token8] = ACTIONS(1672), - [aux_sym_expr_binary_token9] = ACTIONS(1672), - [aux_sym_expr_binary_token10] = ACTIONS(1672), - [aux_sym_expr_binary_token11] = ACTIONS(1672), - [aux_sym_expr_binary_token12] = ACTIONS(1672), - [aux_sym_expr_binary_token13] = ACTIONS(1672), - [aux_sym_expr_binary_token14] = ACTIONS(1672), - [aux_sym_expr_binary_token15] = ACTIONS(1672), - [aux_sym_expr_binary_token16] = ACTIONS(1672), - [aux_sym_expr_binary_token17] = ACTIONS(1672), - [aux_sym_expr_binary_token18] = ACTIONS(1672), - [aux_sym_expr_binary_token19] = ACTIONS(1672), - [aux_sym_expr_binary_token20] = ACTIONS(1672), - [aux_sym_expr_binary_token21] = ACTIONS(1672), - [aux_sym_expr_binary_token22] = ACTIONS(1672), - [aux_sym_expr_binary_token23] = ACTIONS(1672), - [aux_sym_expr_binary_token24] = ACTIONS(1672), - [aux_sym_expr_binary_token25] = ACTIONS(1672), - [aux_sym_expr_binary_token26] = ACTIONS(1672), - [aux_sym_expr_binary_token27] = ACTIONS(1672), - [aux_sym_expr_binary_token28] = ACTIONS(1672), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT] = ACTIONS(4006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [aux_sym_record_entry_token1] = ACTIONS(1672), - [anon_sym_err_GT] = ACTIONS(1670), - [anon_sym_out_GT] = ACTIONS(1670), - [anon_sym_e_GT] = ACTIONS(1670), - [anon_sym_o_GT] = ACTIONS(1670), - [anon_sym_err_PLUSout_GT] = ACTIONS(1670), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), - [anon_sym_o_PLUSe_GT] = ACTIONS(1670), - [anon_sym_e_PLUSo_GT] = ACTIONS(1670), - [anon_sym_err_GT_GT] = ACTIONS(1672), - [anon_sym_out_GT_GT] = ACTIONS(1672), - [anon_sym_e_GT_GT] = ACTIONS(1672), - [anon_sym_o_GT_GT] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_GT2] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_STAR2] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(4676), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(986), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), }, [1378] = { - [sym_cell_path] = STATE(1782), - [sym_path] = STATE(1589), [sym_comment] = STATE(1378), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [aux_sym_cmd_identifier_token38] = ACTIONS(2089), - [aux_sym_cmd_identifier_token39] = ACTIONS(2089), - [aux_sym_cmd_identifier_token40] = ACTIONS(2089), - [sym__newline] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2087), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2087), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), - [anon_sym_DOT_DOT_LT] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2087), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [anon_sym_0b] = ACTIONS(2087), - [anon_sym_0o] = ACTIONS(2087), - [anon_sym_0x] = ACTIONS(2087), - [sym_val_date] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [sym__str_single_quotes] = ACTIONS(2089), - [sym__str_back_ticks] = ACTIONS(2089), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2089), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2089), - [anon_sym_err_GT] = ACTIONS(2087), - [anon_sym_out_GT] = ACTIONS(2087), - [anon_sym_e_GT] = ACTIONS(2087), - [anon_sym_o_GT] = ACTIONS(2087), - [anon_sym_err_PLUSout_GT] = ACTIONS(2087), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2087), - [anon_sym_o_PLUSe_GT] = ACTIONS(2087), - [anon_sym_e_PLUSo_GT] = ACTIONS(2087), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), - [aux_sym_unquoted_token1] = ACTIONS(2087), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2089), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [anon_sym_DASH_EQ] = ACTIONS(1004), + [anon_sym_STAR_EQ] = ACTIONS(1004), + [anon_sym_SLASH_EQ] = ACTIONS(1004), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [aux_sym_record_entry_token1] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), }, [1379] = { [sym_comment] = STATE(1379), - [anon_sym_true] = ACTIONS(2107), - [anon_sym_false] = ACTIONS(2107), - [anon_sym_null] = ACTIONS(2107), - [aux_sym_cmd_identifier_token38] = ACTIONS(2107), - [aux_sym_cmd_identifier_token39] = ACTIONS(2107), - [aux_sym_cmd_identifier_token40] = ACTIONS(2107), - [sym__newline] = ACTIONS(2107), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_err_GT_PIPE] = ACTIONS(2107), - [anon_sym_out_GT_PIPE] = ACTIONS(2107), - [anon_sym_e_GT_PIPE] = ACTIONS(2107), - [anon_sym_o_GT_PIPE] = ACTIONS(2107), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2107), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2107), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2107), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_RPAREN] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_DOT_DOT2] = ACTIONS(2105), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2105), - [anon_sym_DOT_DOT_LT] = ACTIONS(2105), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2107), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2107), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(2107), - [aux_sym__val_number_decimal_token3] = ACTIONS(2107), - [aux_sym__val_number_decimal_token4] = ACTIONS(2107), - [aux_sym__val_number_token1] = ACTIONS(2107), - [aux_sym__val_number_token2] = ACTIONS(2107), - [aux_sym__val_number_token3] = ACTIONS(2107), - [anon_sym_0b] = ACTIONS(2105), - [anon_sym_0o] = ACTIONS(2105), - [anon_sym_0x] = ACTIONS(2105), - [sym_val_date] = ACTIONS(2107), - [anon_sym_DQUOTE] = ACTIONS(2107), - [sym__str_single_quotes] = ACTIONS(2107), - [sym__str_back_ticks] = ACTIONS(2107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2107), - [anon_sym_err_GT] = ACTIONS(2105), - [anon_sym_out_GT] = ACTIONS(2105), - [anon_sym_e_GT] = ACTIONS(2105), - [anon_sym_o_GT] = ACTIONS(2105), - [anon_sym_err_PLUSout_GT] = ACTIONS(2105), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2105), - [anon_sym_o_PLUSe_GT] = ACTIONS(2105), - [anon_sym_e_PLUSo_GT] = ACTIONS(2105), - [anon_sym_err_GT_GT] = ACTIONS(2107), - [anon_sym_out_GT_GT] = ACTIONS(2107), - [anon_sym_e_GT_GT] = ACTIONS(2107), - [anon_sym_o_GT_GT] = ACTIONS(2107), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2107), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2107), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2107), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2107), - [aux_sym_unquoted_token1] = ACTIONS(2105), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2107), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4678), + [aux_sym__immediate_decimal_token2] = ACTIONS(4680), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1380] = { [sym_comment] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [sym__newline] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_err_GT_PIPE] = ACTIONS(1765), + [anon_sym_out_GT_PIPE] = ACTIONS(1765), + [anon_sym_e_GT_PIPE] = ACTIONS(1765), + [anon_sym_o_GT_PIPE] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_DOT_DOT] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [anon_sym_null] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(1765), + [anon_sym_false] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1763), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_0b] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1765), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1763), + [anon_sym_0x] = ACTIONS(1763), + [sym_val_date] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1765), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), + [anon_sym_err_GT] = ACTIONS(1763), + [anon_sym_out_GT] = ACTIONS(1763), + [anon_sym_e_GT] = ACTIONS(1763), + [anon_sym_o_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT] = ACTIONS(1763), + [anon_sym_err_GT_GT] = ACTIONS(1765), + [anon_sym_out_GT_GT] = ACTIONS(1765), + [anon_sym_e_GT_GT] = ACTIONS(1765), + [anon_sym_o_GT_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), + [aux_sym_unquoted_token1] = ACTIONS(1763), + [aux_sym_unquoted_token2] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1765), }, [1381] = { - [sym_cell_path] = STATE(1786), - [sym_path] = STATE(1589), [sym_comment] = STATE(1381), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_null] = ACTIONS(2097), - [aux_sym_cmd_identifier_token38] = ACTIONS(2097), - [aux_sym_cmd_identifier_token39] = ACTIONS(2097), - [aux_sym_cmd_identifier_token40] = ACTIONS(2097), - [sym__newline] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_err_GT_PIPE] = ACTIONS(2097), - [anon_sym_out_GT_PIPE] = ACTIONS(2097), - [anon_sym_e_GT_PIPE] = ACTIONS(2097), - [anon_sym_o_GT_PIPE] = ACTIONS(2097), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2097), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2097), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2097), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(2095), - [anon_sym_DASH_DASH] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_DOT_DOT] = ACTIONS(2095), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), - [anon_sym_DOT_DOT_LT] = ACTIONS(2097), - [aux_sym__val_number_decimal_token1] = ACTIONS(2095), - [aux_sym__val_number_decimal_token2] = ACTIONS(2097), - [aux_sym__val_number_decimal_token3] = ACTIONS(2097), - [aux_sym__val_number_decimal_token4] = ACTIONS(2097), - [aux_sym__val_number_token1] = ACTIONS(2097), - [aux_sym__val_number_token2] = ACTIONS(2097), - [aux_sym__val_number_token3] = ACTIONS(2097), - [anon_sym_0b] = ACTIONS(2095), - [anon_sym_0o] = ACTIONS(2095), - [anon_sym_0x] = ACTIONS(2095), - [sym_val_date] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(2097), - [sym__str_single_quotes] = ACTIONS(2097), - [sym__str_back_ticks] = ACTIONS(2097), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2097), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2097), - [anon_sym_err_GT] = ACTIONS(2095), - [anon_sym_out_GT] = ACTIONS(2095), - [anon_sym_e_GT] = ACTIONS(2095), - [anon_sym_o_GT] = ACTIONS(2095), - [anon_sym_err_PLUSout_GT] = ACTIONS(2095), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2095), - [anon_sym_o_PLUSe_GT] = ACTIONS(2095), - [anon_sym_e_PLUSo_GT] = ACTIONS(2095), - [anon_sym_err_GT_GT] = ACTIONS(2097), - [anon_sym_out_GT_GT] = ACTIONS(2097), - [anon_sym_e_GT_GT] = ACTIONS(2097), - [anon_sym_o_GT_GT] = ACTIONS(2097), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2097), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2097), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2097), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2097), - [aux_sym_unquoted_token1] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2097), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1609), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1609), + [anon_sym_0b] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1609), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [sym_val_date] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), }, [1382] = { + [sym_cell_path] = STATE(1621), + [sym_path] = STATE(1510), [sym_comment] = STATE(1382), + [aux_sym_cell_path_repeat1] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1383] = { + [sym_comment] = STATE(1383), + [ts_builtin_sym_end] = ACTIONS(1765), + [sym__newline] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_err_GT_PIPE] = ACTIONS(1765), + [anon_sym_out_GT_PIPE] = ACTIONS(1765), + [anon_sym_e_GT_PIPE] = ACTIONS(1765), + [anon_sym_o_GT_PIPE] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_DOT_DOT] = ACTIONS(1763), + [anon_sym_LPAREN2] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [anon_sym_null] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(1765), + [anon_sym_false] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1763), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_0b] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1765), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1763), + [anon_sym_0x] = ACTIONS(1763), + [sym_val_date] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1765), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), + [anon_sym_err_GT] = ACTIONS(1763), + [anon_sym_out_GT] = ACTIONS(1763), + [anon_sym_e_GT] = ACTIONS(1763), + [anon_sym_o_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT] = ACTIONS(1763), + [anon_sym_err_GT_GT] = ACTIONS(1765), + [anon_sym_out_GT_GT] = ACTIONS(1765), + [anon_sym_e_GT_GT] = ACTIONS(1765), + [anon_sym_o_GT_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), + [aux_sym_unquoted_token1] = ACTIONS(1763), + [aux_sym_unquoted_token2] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1765), + }, + [1384] = { + [sym_comment] = STATE(1384), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), + [anon_sym_DOT_DOT_LT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(4684), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [aux_sym_unquoted_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), + }, + [1385] = { + [sym_comment] = STATE(1385), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_PLUS_EQ] = ACTIONS(992), + [anon_sym_DASH_EQ] = ACTIONS(992), + [anon_sym_STAR_EQ] = ACTIONS(992), + [anon_sym_SLASH_EQ] = ACTIONS(992), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_GT2] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_STAR2] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_and2] = ACTIONS(992), + [anon_sym_xor2] = ACTIONS(992), + [anon_sym_or2] = ACTIONS(992), + [anon_sym_not_DASHin2] = ACTIONS(992), + [anon_sym_starts_DASHwith2] = ACTIONS(992), + [anon_sym_ends_DASHwith2] = ACTIONS(992), + [anon_sym_EQ_EQ2] = ACTIONS(992), + [anon_sym_BANG_EQ2] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(990), + [anon_sym_LT_EQ2] = ACTIONS(992), + [anon_sym_GT_EQ2] = ACTIONS(992), + [anon_sym_EQ_TILDE2] = ACTIONS(992), + [anon_sym_BANG_TILDE2] = ACTIONS(992), + [anon_sym_STAR_STAR2] = ACTIONS(992), + [anon_sym_PLUS_PLUS2] = ACTIONS(990), + [anon_sym_SLASH2] = ACTIONS(990), + [anon_sym_mod2] = ACTIONS(992), + [anon_sym_SLASH_SLASH2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_bit_DASHshl2] = ACTIONS(992), + [anon_sym_bit_DASHshr2] = ACTIONS(992), + [anon_sym_bit_DASHand2] = ACTIONS(992), + [anon_sym_bit_DASHxor2] = ACTIONS(992), + [anon_sym_bit_DASHor2] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [aux_sym_record_entry_token1] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + }, + [1386] = { + [sym_comment] = STATE(1386), + [ts_builtin_sym_end] = ACTIONS(1609), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(4651), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1609), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1609), + [anon_sym_0b] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1609), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [sym_val_date] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), + }, + [1387] = { + [sym__match_pattern] = STATE(7457), + [sym__match_pattern_expression] = STATE(6912), + [sym__match_pattern_value] = STATE(6932), + [sym__match_pattern_list] = STATE(6972), + [sym__match_pattern_record] = STATE(6995), + [sym_expr_parenthesized] = STATE(5800), + [sym_val_range] = STATE(6932), + [sym__val_range] = STATE(7572), + [sym_val_nothing] = STATE(7043), + [sym_val_bool] = STATE(6878), + [sym_val_variable] = STATE(5810), + [sym_val_number] = STATE(7043), + [sym__val_number_decimal] = STATE(5553), + [sym__val_number] = STATE(1811), + [sym_val_duration] = STATE(7043), + [sym_val_filesize] = STATE(7043), + [sym_val_binary] = STATE(7043), + [sym_val_string] = STATE(7043), + [sym__raw_str] = STATE(1821), + [sym__str_double_quotes] = STATE(1821), + [sym_val_table] = STATE(7043), + [sym_unquoted] = STATE(7086), + [sym__unquoted_anonymous_prefix] = STATE(7585), + [sym_comment] = STATE(1387), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_LPAREN] = ACTIONS(3619), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_DOT_DOT] = ACTIONS(4686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4688), + [anon_sym_DOT_DOT_LT] = ACTIONS(4688), + [anon_sym_null] = ACTIONS(4690), + [anon_sym_true] = ACTIONS(4692), + [anon_sym_false] = ACTIONS(4692), + [aux_sym__val_number_decimal_token1] = ACTIONS(4694), + [aux_sym__val_number_decimal_token2] = ACTIONS(4696), + [aux_sym__val_number_decimal_token3] = ACTIONS(4698), + [aux_sym__val_number_decimal_token4] = ACTIONS(4700), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4702), + [aux_sym__val_number_token5] = ACTIONS(4702), + [aux_sym__val_number_token6] = ACTIONS(4702), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4704), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2663), + [anon_sym_out_GT] = ACTIONS(2663), + [anon_sym_e_GT] = ACTIONS(2663), + [anon_sym_o_GT] = ACTIONS(2663), + [anon_sym_err_PLUSout_GT] = ACTIONS(2663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), + [anon_sym_o_PLUSe_GT] = ACTIONS(2663), + [anon_sym_e_PLUSo_GT] = ACTIONS(2663), + [anon_sym_err_GT_GT] = ACTIONS(2665), + [anon_sym_out_GT_GT] = ACTIONS(2665), + [anon_sym_e_GT_GT] = ACTIONS(2665), + [anon_sym_o_GT_GT] = ACTIONS(2665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [1388] = { + [sym_comment] = STATE(1388), + [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(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [anon_sym_null] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1623), + [aux_sym__val_number_decimal_token3] = ACTIONS(1623), + [aux_sym__val_number_decimal_token4] = ACTIONS(1623), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1623), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1623), + [anon_sym_0b] = ACTIONS(1621), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1623), + [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_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1623), + }, + [1389] = { + [sym_comment] = STATE(1389), + [ts_builtin_sym_end] = ACTIONS(1675), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), + [anon_sym_DOT_DOT_LT] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [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), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1675), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_0o] = ACTIONS(1673), + [anon_sym_0x] = ACTIONS(1673), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token1] = ACTIONS(1673), + [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1675), + }, + [1390] = { + [sym_cell_path] = STATE(1596), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1390), + [aux_sym_cell_path_repeat1] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(963), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(961), + [anon_sym_DOT_DOT_LT] = ACTIONS(961), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_null] = ACTIONS(963), + [anon_sym_true] = ACTIONS(963), + [anon_sym_false] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(963), + [aux_sym__val_number_token5] = ACTIONS(963), + [aux_sym__val_number_token6] = ACTIONS(963), + [anon_sym_0b] = ACTIONS(961), + [anon_sym_0o] = ACTIONS(961), + [anon_sym_0x] = ACTIONS(961), + [sym_val_date] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [aux_sym_unquoted_token1] = ACTIONS(961), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), + }, + [1391] = { + [sym_comment] = STATE(1391), + [sym__newline] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_err_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_GT_PIPE] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1721), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(4708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4710), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4710), + [anon_sym_null] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [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), + [aux_sym__val_number_token4] = ACTIONS(1721), + [aux_sym__val_number_token5] = ACTIONS(1721), + [aux_sym__val_number_token6] = ACTIONS(1721), + [anon_sym_0b] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(4712), + [sym_duration_unit] = ACTIONS(4714), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1721), + [anon_sym_out_GT_GT] = ACTIONS(1721), + [anon_sym_e_GT_GT] = ACTIONS(1721), + [anon_sym_o_GT_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(4716), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1721), + }, + [1392] = { + [sym_comment] = STATE(1392), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_GT2] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_STAR2] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(4718), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_starts_DASHwith2] = ACTIONS(980), + [anon_sym_ends_DASHwith2] = ACTIONS(980), + [anon_sym_EQ_EQ2] = ACTIONS(980), + [anon_sym_BANG_EQ2] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(978), + [anon_sym_LT_EQ2] = ACTIONS(980), + [anon_sym_GT_EQ2] = ACTIONS(980), + [anon_sym_EQ_TILDE2] = ACTIONS(980), + [anon_sym_BANG_TILDE2] = ACTIONS(980), + [anon_sym_STAR_STAR2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(978), + [anon_sym_SLASH2] = ACTIONS(978), + [anon_sym_mod2] = ACTIONS(980), + [anon_sym_SLASH_SLASH2] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_bit_DASHshl2] = ACTIONS(980), + [anon_sym_bit_DASHshr2] = ACTIONS(980), + [anon_sym_bit_DASHand2] = ACTIONS(980), + [anon_sym_bit_DASHxor2] = ACTIONS(980), + [anon_sym_bit_DASHor2] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [aux_sym_record_entry_token1] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), + }, + [1393] = { + [sym_comment] = STATE(1393), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_GT2] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_STAR2] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(4720), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(986), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [aux_sym_record_entry_token1] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), + }, + [1394] = { + [sym_comment] = STATE(1394), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), + [anon_sym_DOT_DOT_LT] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [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), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1675), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_0o] = ACTIONS(1673), + [anon_sym_0x] = ACTIONS(1673), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token1] = ACTIONS(1673), + [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1675), + }, + [1395] = { + [sym_comment] = STATE(1395), + [ts_builtin_sym_end] = ACTIONS(1675), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), + [anon_sym_DOT_DOT_LT] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [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), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1675), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_0o] = ACTIONS(1673), + [anon_sym_0x] = ACTIONS(1673), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token1] = ACTIONS(1673), + [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1675), + }, + [1396] = { + [sym_cell_path] = STATE(1617), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1396), + [aux_sym_cell_path_repeat1] = STATE(1444), [ts_builtin_sym_end] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [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_PIPE] = ACTIONS(1771), @@ -207444,15 +208754,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1771), [anon_sym_DOLLAR] = ACTIONS(1769), [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DASH2] = ACTIONS(1769), [anon_sym_LBRACE] = ACTIONS(1771), [anon_sym_DOT_DOT] = ACTIONS(1769), [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(4682), [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), [anon_sym_DOT_DOT_LT] = ACTIONS(1769), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(4792), + [anon_sym_null] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), [aux_sym__val_number_decimal_token1] = ACTIONS(1769), [aux_sym__val_number_decimal_token2] = ACTIONS(1771), [aux_sym__val_number_decimal_token3] = ACTIONS(1771), @@ -207460,6 +208773,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(1771), [aux_sym__val_number_token2] = ACTIONS(1771), [aux_sym__val_number_token3] = ACTIONS(1771), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), [anon_sym_0b] = ACTIONS(1769), [anon_sym_0o] = ACTIONS(1769), [anon_sym_0x] = ACTIONS(1769), @@ -207486,13759 +208802,23365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), [aux_sym_unquoted_token1] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1771), }, - [1383] = { - [sym_comment] = STATE(1383), - [sym__newline] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(4794), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4796), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), - }, - [1384] = { - [sym_comment] = STATE(1384), - [sym__newline] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(4798), - [aux_sym__immediate_decimal_token2] = ACTIONS(4800), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), - }, - [1385] = { - [sym_comment] = STATE(1385), - [aux_sym_cmd_identifier_token41] = ACTIONS(1536), - [sym__newline] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_EQ_GT] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4699), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [aux_sym_record_entry_token1] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(249), - }, - [1386] = { - [sym_comment] = STATE(1386), - [anon_sym_true] = ACTIONS(1080), - [anon_sym_false] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(1080), - [aux_sym_cmd_identifier_token38] = ACTIONS(1080), - [aux_sym_cmd_identifier_token39] = ACTIONS(1080), - [aux_sym_cmd_identifier_token40] = ACTIONS(1080), - [sym__newline] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_err_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_GT_PIPE] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1080), - [anon_sym_RPAREN] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1080), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_LBRACE] = ACTIONS(1080), - [anon_sym_RBRACE] = ACTIONS(1080), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_DOT_DOT2] = ACTIONS(1078), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), - [anon_sym_DOT_DOT_LT] = ACTIONS(1078), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), - [aux_sym__val_number_decimal_token1] = ACTIONS(1078), - [aux_sym__val_number_decimal_token2] = ACTIONS(1080), - [aux_sym__val_number_decimal_token3] = ACTIONS(1080), - [aux_sym__val_number_decimal_token4] = ACTIONS(1080), - [aux_sym__val_number_token1] = ACTIONS(1080), - [aux_sym__val_number_token2] = ACTIONS(1080), - [aux_sym__val_number_token3] = ACTIONS(1080), - [anon_sym_0b] = ACTIONS(1078), - [anon_sym_0o] = ACTIONS(1078), - [anon_sym_0x] = ACTIONS(1078), - [sym_val_date] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym__str_single_quotes] = ACTIONS(1080), - [sym__str_back_ticks] = ACTIONS(1080), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1080), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1080), - [anon_sym_err_GT] = ACTIONS(1078), - [anon_sym_out_GT] = ACTIONS(1078), - [anon_sym_e_GT] = ACTIONS(1078), - [anon_sym_o_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT] = ACTIONS(1078), - [anon_sym_err_GT_GT] = ACTIONS(1080), - [anon_sym_out_GT_GT] = ACTIONS(1080), - [anon_sym_e_GT_GT] = ACTIONS(1080), - [anon_sym_o_GT_GT] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), - [aux_sym_unquoted_token1] = ACTIONS(1078), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1080), - }, - [1387] = { - [sym_cell_path] = STATE(1711), - [sym_path] = STATE(1589), - [sym_comment] = STATE(1387), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(1895), - [anon_sym_false] = ACTIONS(1895), - [anon_sym_null] = ACTIONS(1895), - [aux_sym_cmd_identifier_token38] = ACTIONS(1895), - [aux_sym_cmd_identifier_token39] = ACTIONS(1895), - [aux_sym_cmd_identifier_token40] = ACTIONS(1895), - [sym__newline] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1895), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_err_GT_PIPE] = ACTIONS(1895), - [anon_sym_out_GT_PIPE] = ACTIONS(1895), - [anon_sym_e_GT_PIPE] = ACTIONS(1895), - [anon_sym_o_GT_PIPE] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_DASH_DASH] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), - [anon_sym_DOT_DOT_LT] = ACTIONS(1895), - [aux_sym__val_number_decimal_token1] = ACTIONS(1893), - [aux_sym__val_number_decimal_token2] = ACTIONS(1895), - [aux_sym__val_number_decimal_token3] = ACTIONS(1895), - [aux_sym__val_number_decimal_token4] = ACTIONS(1895), - [aux_sym__val_number_token1] = ACTIONS(1895), - [aux_sym__val_number_token2] = ACTIONS(1895), - [aux_sym__val_number_token3] = ACTIONS(1895), - [anon_sym_0b] = ACTIONS(1893), - [anon_sym_0o] = ACTIONS(1893), - [anon_sym_0x] = ACTIONS(1893), - [sym_val_date] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1895), - [sym__str_single_quotes] = ACTIONS(1895), - [sym__str_back_ticks] = ACTIONS(1895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), - [anon_sym_err_GT] = ACTIONS(1893), - [anon_sym_out_GT] = ACTIONS(1893), - [anon_sym_e_GT] = ACTIONS(1893), - [anon_sym_o_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT] = ACTIONS(1893), - [anon_sym_err_GT_GT] = ACTIONS(1895), - [anon_sym_out_GT_GT] = ACTIONS(1895), - [anon_sym_e_GT_GT] = ACTIONS(1895), - [anon_sym_o_GT_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), - [aux_sym_unquoted_token1] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1895), - }, - [1388] = { - [sym_cell_path] = STATE(1802), - [sym_path] = STATE(1589), - [sym_comment] = STATE(1388), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(1903), - [anon_sym_false] = ACTIONS(1903), - [anon_sym_null] = ACTIONS(1903), - [aux_sym_cmd_identifier_token38] = ACTIONS(1903), - [aux_sym_cmd_identifier_token39] = ACTIONS(1903), - [aux_sym_cmd_identifier_token40] = ACTIONS(1903), - [sym__newline] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_err_GT_PIPE] = ACTIONS(1903), - [anon_sym_out_GT_PIPE] = ACTIONS(1903), - [anon_sym_e_GT_PIPE] = ACTIONS(1903), - [anon_sym_o_GT_PIPE] = ACTIONS(1903), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1901), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1903), - [anon_sym_DOT_DOT_LT] = ACTIONS(1903), - [aux_sym__val_number_decimal_token1] = ACTIONS(1901), - [aux_sym__val_number_decimal_token2] = ACTIONS(1903), - [aux_sym__val_number_decimal_token3] = ACTIONS(1903), - [aux_sym__val_number_decimal_token4] = ACTIONS(1903), - [aux_sym__val_number_token1] = ACTIONS(1903), - [aux_sym__val_number_token2] = ACTIONS(1903), - [aux_sym__val_number_token3] = ACTIONS(1903), - [anon_sym_0b] = ACTIONS(1901), - [anon_sym_0o] = ACTIONS(1901), - [anon_sym_0x] = ACTIONS(1901), - [sym_val_date] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(1903), - [sym__str_single_quotes] = ACTIONS(1903), - [sym__str_back_ticks] = ACTIONS(1903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), - [anon_sym_err_GT] = ACTIONS(1901), - [anon_sym_out_GT] = ACTIONS(1901), - [anon_sym_e_GT] = ACTIONS(1901), - [anon_sym_o_GT] = ACTIONS(1901), - [anon_sym_err_PLUSout_GT] = ACTIONS(1901), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1901), - [anon_sym_o_PLUSe_GT] = ACTIONS(1901), - [anon_sym_e_PLUSo_GT] = ACTIONS(1901), - [anon_sym_err_GT_GT] = ACTIONS(1903), - [anon_sym_out_GT_GT] = ACTIONS(1903), - [anon_sym_e_GT_GT] = ACTIONS(1903), - [anon_sym_o_GT_GT] = ACTIONS(1903), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), - [aux_sym_unquoted_token1] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1903), - }, - [1389] = { - [sym_cell_path] = STATE(1728), - [sym_path] = STATE(1589), - [sym_comment] = STATE(1389), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = ACTIONS(1899), - [anon_sym_null] = ACTIONS(1899), - [aux_sym_cmd_identifier_token38] = ACTIONS(1899), - [aux_sym_cmd_identifier_token39] = ACTIONS(1899), - [aux_sym_cmd_identifier_token40] = ACTIONS(1899), - [sym__newline] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_err_GT_PIPE] = ACTIONS(1899), - [anon_sym_out_GT_PIPE] = ACTIONS(1899), - [anon_sym_e_GT_PIPE] = ACTIONS(1899), - [anon_sym_o_GT_PIPE] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_DOLLAR] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1899), - [anon_sym_DOT_DOT_LT] = ACTIONS(1899), - [aux_sym__val_number_decimal_token1] = ACTIONS(1897), - [aux_sym__val_number_decimal_token2] = ACTIONS(1899), - [aux_sym__val_number_decimal_token3] = ACTIONS(1899), - [aux_sym__val_number_decimal_token4] = ACTIONS(1899), - [aux_sym__val_number_token1] = ACTIONS(1899), - [aux_sym__val_number_token2] = ACTIONS(1899), - [aux_sym__val_number_token3] = ACTIONS(1899), - [anon_sym_0b] = ACTIONS(1897), - [anon_sym_0o] = ACTIONS(1897), - [anon_sym_0x] = ACTIONS(1897), - [sym_val_date] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1899), - [sym__str_single_quotes] = ACTIONS(1899), - [sym__str_back_ticks] = ACTIONS(1899), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1899), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1899), - [anon_sym_err_GT] = ACTIONS(1897), - [anon_sym_out_GT] = ACTIONS(1897), - [anon_sym_e_GT] = ACTIONS(1897), - [anon_sym_o_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT] = ACTIONS(1897), - [anon_sym_err_GT_GT] = ACTIONS(1899), - [anon_sym_out_GT_GT] = ACTIONS(1899), - [anon_sym_e_GT_GT] = ACTIONS(1899), - [anon_sym_o_GT_GT] = ACTIONS(1899), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1899), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1899), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1899), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1899), - [aux_sym_unquoted_token1] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1899), - }, - [1390] = { - [sym_comment] = STATE(1390), - [aux_sym_cmd_identifier_token41] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_EQ_GT] = ACTIONS(1598), - [aux_sym_expr_binary_token1] = ACTIONS(1598), - [aux_sym_expr_binary_token2] = ACTIONS(1598), - [aux_sym_expr_binary_token3] = ACTIONS(1598), - [aux_sym_expr_binary_token4] = ACTIONS(1598), - [aux_sym_expr_binary_token5] = ACTIONS(1598), - [aux_sym_expr_binary_token6] = ACTIONS(1598), - [aux_sym_expr_binary_token7] = ACTIONS(1598), - [aux_sym_expr_binary_token8] = ACTIONS(1598), - [aux_sym_expr_binary_token9] = ACTIONS(1598), - [aux_sym_expr_binary_token10] = ACTIONS(1598), - [aux_sym_expr_binary_token11] = ACTIONS(1598), - [aux_sym_expr_binary_token12] = ACTIONS(1598), - [aux_sym_expr_binary_token13] = ACTIONS(1598), - [aux_sym_expr_binary_token14] = ACTIONS(1598), - [aux_sym_expr_binary_token15] = ACTIONS(1598), - [aux_sym_expr_binary_token16] = ACTIONS(1598), - [aux_sym_expr_binary_token17] = ACTIONS(1598), - [aux_sym_expr_binary_token18] = ACTIONS(1598), - [aux_sym_expr_binary_token19] = ACTIONS(1598), - [aux_sym_expr_binary_token20] = ACTIONS(1598), - [aux_sym_expr_binary_token21] = ACTIONS(1598), - [aux_sym_expr_binary_token22] = ACTIONS(1598), - [aux_sym_expr_binary_token23] = ACTIONS(1598), - [aux_sym_expr_binary_token24] = ACTIONS(1598), - [aux_sym_expr_binary_token25] = ACTIONS(1598), - [aux_sym_expr_binary_token26] = ACTIONS(1598), - [aux_sym_expr_binary_token27] = ACTIONS(1598), - [aux_sym_expr_binary_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(4802), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [aux_sym_record_entry_token1] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(249), - }, - [1391] = { - [sym_cell_path] = STATE(1737), - [sym_path] = STATE(1589), - [sym_comment] = STATE(1391), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_PIPE] = ACTIONS(1931), - [anon_sym_err_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_GT_PIPE] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_DASH_DASH] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(4709), - [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), - [anon_sym_err_GT] = ACTIONS(1929), - [anon_sym_out_GT] = ACTIONS(1929), - [anon_sym_e_GT] = ACTIONS(1929), - [anon_sym_o_GT] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT] = ACTIONS(1929), - [anon_sym_err_GT_GT] = ACTIONS(1931), - [anon_sym_out_GT_GT] = ACTIONS(1931), - [anon_sym_e_GT_GT] = ACTIONS(1931), - [anon_sym_o_GT_GT] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1931), - [aux_sym_unquoted_token1] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1931), - }, - [1392] = { - [sym_cell_path] = STATE(1758), - [sym_path] = STATE(1589), - [sym_comment] = STATE(1392), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [aux_sym_cmd_identifier_token38] = ACTIONS(1995), - [aux_sym_cmd_identifier_token39] = ACTIONS(1995), - [aux_sym_cmd_identifier_token40] = ACTIONS(1995), - [sym__newline] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1995), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_err_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_GT_PIPE] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1995), - [anon_sym_DOT_DOT_LT] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1995), - [aux_sym__val_number_decimal_token3] = ACTIONS(1995), - [aux_sym__val_number_decimal_token4] = ACTIONS(1995), - [aux_sym__val_number_token1] = ACTIONS(1995), - [aux_sym__val_number_token2] = ACTIONS(1995), - [aux_sym__val_number_token3] = ACTIONS(1995), - [anon_sym_0b] = ACTIONS(1993), - [anon_sym_0o] = ACTIONS(1993), - [anon_sym_0x] = ACTIONS(1993), - [sym_val_date] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(1995), - [sym__str_single_quotes] = ACTIONS(1995), - [sym__str_back_ticks] = ACTIONS(1995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), - [anon_sym_err_GT] = ACTIONS(1993), - [anon_sym_out_GT] = ACTIONS(1993), - [anon_sym_e_GT] = ACTIONS(1993), - [anon_sym_o_GT] = ACTIONS(1993), - [anon_sym_err_PLUSout_GT] = ACTIONS(1993), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), - [anon_sym_o_PLUSe_GT] = ACTIONS(1993), - [anon_sym_e_PLUSo_GT] = ACTIONS(1993), - [anon_sym_err_GT_GT] = ACTIONS(1995), - [anon_sym_out_GT_GT] = ACTIONS(1995), - [anon_sym_e_GT_GT] = ACTIONS(1995), - [anon_sym_o_GT_GT] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), - [aux_sym_unquoted_token1] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1995), - }, - [1393] = { - [sym_cell_path] = STATE(1759), - [sym_path] = STATE(1589), - [sym_comment] = STATE(1393), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1999), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_err_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_GT_PIPE] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), - [anon_sym_LBRACK] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), - [anon_sym_DOT_DOT_LT] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [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_0b] = ACTIONS(1997), - [anon_sym_0o] = ACTIONS(1997), - [anon_sym_0x] = ACTIONS(1997), - [sym_val_date] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), - [anon_sym_err_GT] = ACTIONS(1997), - [anon_sym_out_GT] = ACTIONS(1997), - [anon_sym_e_GT] = ACTIONS(1997), - [anon_sym_o_GT] = ACTIONS(1997), - [anon_sym_err_PLUSout_GT] = ACTIONS(1997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), - [anon_sym_o_PLUSe_GT] = ACTIONS(1997), - [anon_sym_e_PLUSo_GT] = ACTIONS(1997), - [anon_sym_err_GT_GT] = ACTIONS(1999), - [anon_sym_out_GT_GT] = ACTIONS(1999), - [anon_sym_e_GT_GT] = ACTIONS(1999), - [anon_sym_o_GT_GT] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), - [aux_sym_unquoted_token1] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1999), - }, - [1394] = { - [sym_cell_path] = STATE(1763), - [sym_path] = STATE(1589), - [sym_comment] = STATE(1394), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [aux_sym_cmd_identifier_token38] = ACTIONS(2003), - [aux_sym_cmd_identifier_token39] = ACTIONS(2003), - [aux_sym_cmd_identifier_token40] = ACTIONS(2003), - [sym__newline] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_err_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_GT_PIPE] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2001), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2003), - [anon_sym_DOT_DOT_LT] = ACTIONS(2003), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2003), - [aux_sym__val_number_decimal_token3] = ACTIONS(2003), - [aux_sym__val_number_decimal_token4] = ACTIONS(2003), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [anon_sym_0b] = ACTIONS(2001), - [anon_sym_0o] = ACTIONS(2001), - [anon_sym_0x] = ACTIONS(2001), - [sym_val_date] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [sym__str_single_quotes] = ACTIONS(2003), - [sym__str_back_ticks] = ACTIONS(2003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), - [anon_sym_err_GT] = ACTIONS(2001), - [anon_sym_out_GT] = ACTIONS(2001), - [anon_sym_e_GT] = ACTIONS(2001), - [anon_sym_o_GT] = ACTIONS(2001), - [anon_sym_err_PLUSout_GT] = ACTIONS(2001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), - [anon_sym_o_PLUSe_GT] = ACTIONS(2001), - [anon_sym_e_PLUSo_GT] = ACTIONS(2001), - [anon_sym_err_GT_GT] = ACTIONS(2003), - [anon_sym_out_GT_GT] = ACTIONS(2003), - [anon_sym_e_GT_GT] = ACTIONS(2003), - [anon_sym_o_GT_GT] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), - [aux_sym_unquoted_token1] = ACTIONS(2001), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2003), - }, - [1395] = { - [sym_cell_path] = STATE(1766), - [sym_path] = STATE(1589), - [sym_comment] = STATE(1395), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(2007), - [anon_sym_SEMI] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_err_GT_PIPE] = ACTIONS(2007), - [anon_sym_out_GT_PIPE] = ACTIONS(2007), - [anon_sym_e_GT_PIPE] = ACTIONS(2007), - [anon_sym_o_GT_PIPE] = ACTIONS(2007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2007), - [anon_sym_DOT_DOT_LT] = ACTIONS(2007), - [aux_sym__val_number_decimal_token1] = ACTIONS(2005), - [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_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2005), - [anon_sym_0x] = ACTIONS(2005), - [sym_val_date] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [sym__str_single_quotes] = ACTIONS(2007), - [sym__str_back_ticks] = ACTIONS(2007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), - [anon_sym_err_GT] = ACTIONS(2005), - [anon_sym_out_GT] = ACTIONS(2005), - [anon_sym_e_GT] = ACTIONS(2005), - [anon_sym_o_GT] = ACTIONS(2005), - [anon_sym_err_PLUSout_GT] = ACTIONS(2005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2005), - [anon_sym_o_PLUSe_GT] = ACTIONS(2005), - [anon_sym_e_PLUSo_GT] = ACTIONS(2005), - [anon_sym_err_GT_GT] = ACTIONS(2007), - [anon_sym_out_GT_GT] = ACTIONS(2007), - [anon_sym_e_GT_GT] = ACTIONS(2007), - [anon_sym_o_GT_GT] = ACTIONS(2007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2007), - [aux_sym_unquoted_token1] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2007), - }, - [1396] = { - [sym_cell_path] = STATE(1770), - [sym_path] = STATE(1589), - [sym_comment] = STATE(1396), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(2011), - [anon_sym_false] = ACTIONS(2011), - [anon_sym_null] = ACTIONS(2011), - [aux_sym_cmd_identifier_token38] = ACTIONS(2011), - [aux_sym_cmd_identifier_token39] = ACTIONS(2011), - [aux_sym_cmd_identifier_token40] = ACTIONS(2011), - [sym__newline] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_err_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_GT_PIPE] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2011), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_DOT_DOT] = ACTIONS(2009), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2011), - [anon_sym_DOT_DOT_LT] = ACTIONS(2011), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2011), - [aux_sym__val_number_decimal_token3] = ACTIONS(2011), - [aux_sym__val_number_decimal_token4] = ACTIONS(2011), - [aux_sym__val_number_token1] = ACTIONS(2011), - [aux_sym__val_number_token2] = ACTIONS(2011), - [aux_sym__val_number_token3] = ACTIONS(2011), - [anon_sym_0b] = ACTIONS(2009), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(2011), - [anon_sym_DQUOTE] = ACTIONS(2011), - [sym__str_single_quotes] = ACTIONS(2011), - [sym__str_back_ticks] = ACTIONS(2011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2011), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2011), - [anon_sym_err_GT] = ACTIONS(2009), - [anon_sym_out_GT] = ACTIONS(2009), - [anon_sym_e_GT] = ACTIONS(2009), - [anon_sym_o_GT] = ACTIONS(2009), - [anon_sym_err_PLUSout_GT] = ACTIONS(2009), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), - [anon_sym_o_PLUSe_GT] = ACTIONS(2009), - [anon_sym_e_PLUSo_GT] = ACTIONS(2009), - [anon_sym_err_GT_GT] = ACTIONS(2011), - [anon_sym_out_GT_GT] = ACTIONS(2011), - [anon_sym_e_GT_GT] = ACTIONS(2011), - [anon_sym_o_GT_GT] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), - [aux_sym_unquoted_token1] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2011), - }, [1397] = { - [sym_cell_path] = STATE(1771), - [sym_path] = STATE(1589), + [sym_path] = STATE(1460), [sym_comment] = STATE(1397), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_err_GT_PIPE] = ACTIONS(2015), - [anon_sym_out_GT_PIPE] = ACTIONS(2015), - [anon_sym_e_GT_PIPE] = ACTIONS(2015), - [anon_sym_o_GT_PIPE] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2013), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2013), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2015), - [anon_sym_DOT_DOT_LT] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2013), - [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_0b] = ACTIONS(2013), - [anon_sym_0o] = ACTIONS(2013), - [anon_sym_0x] = ACTIONS(2013), - [sym_val_date] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), - [anon_sym_err_GT] = ACTIONS(2013), - [anon_sym_out_GT] = ACTIONS(2013), - [anon_sym_e_GT] = ACTIONS(2013), - [anon_sym_o_GT] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT] = ACTIONS(2013), - [anon_sym_err_GT_GT] = ACTIONS(2015), - [anon_sym_out_GT_GT] = ACTIONS(2015), - [anon_sym_e_GT_GT] = ACTIONS(2015), - [anon_sym_o_GT_GT] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2015), - [aux_sym_unquoted_token1] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2015), + [aux_sym_cell_path_repeat1] = STATE(1399), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_DASH_DASH] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_DOT_DOT_LT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [anon_sym_null] = ACTIONS(969), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(969), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(969), + [aux_sym__val_number_token1] = ACTIONS(969), + [aux_sym__val_number_token2] = ACTIONS(969), + [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_token4] = ACTIONS(969), + [aux_sym__val_number_token5] = ACTIONS(969), + [aux_sym__val_number_token6] = ACTIONS(969), + [anon_sym_0b] = ACTIONS(967), + [anon_sym_0o] = ACTIONS(967), + [anon_sym_0x] = ACTIONS(967), + [sym_val_date] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [aux_sym_unquoted_token1] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(969), }, [1398] = { [sym_comment] = STATE(1398), - [aux_sym_cmd_identifier_token41] = ACTIONS(1536), - [sym__newline] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(4804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4806), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1609), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1609), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1609), + [anon_sym_0b] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1609), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [sym_val_date] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), }, [1399] = { + [sym_path] = STATE(1460), [sym_comment] = STATE(1399), - [sym__newline] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_err_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_GT_PIPE] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_EQ_GT] = ACTIONS(1672), - [aux_sym_expr_binary_token1] = ACTIONS(1672), - [aux_sym_expr_binary_token2] = ACTIONS(1672), - [aux_sym_expr_binary_token3] = ACTIONS(1672), - [aux_sym_expr_binary_token4] = ACTIONS(1672), - [aux_sym_expr_binary_token5] = ACTIONS(1672), - [aux_sym_expr_binary_token6] = ACTIONS(1672), - [aux_sym_expr_binary_token7] = ACTIONS(1672), - [aux_sym_expr_binary_token8] = ACTIONS(1672), - [aux_sym_expr_binary_token9] = ACTIONS(1672), - [aux_sym_expr_binary_token10] = ACTIONS(1672), - [aux_sym_expr_binary_token11] = ACTIONS(1672), - [aux_sym_expr_binary_token12] = ACTIONS(1672), - [aux_sym_expr_binary_token13] = ACTIONS(1672), - [aux_sym_expr_binary_token14] = ACTIONS(1672), - [aux_sym_expr_binary_token15] = ACTIONS(1672), - [aux_sym_expr_binary_token16] = ACTIONS(1672), - [aux_sym_expr_binary_token17] = ACTIONS(1672), - [aux_sym_expr_binary_token18] = ACTIONS(1672), - [aux_sym_expr_binary_token19] = ACTIONS(1672), - [aux_sym_expr_binary_token20] = ACTIONS(1672), - [aux_sym_expr_binary_token21] = ACTIONS(1672), - [aux_sym_expr_binary_token22] = ACTIONS(1672), - [aux_sym_expr_binary_token23] = ACTIONS(1672), - [aux_sym_expr_binary_token24] = ACTIONS(1672), - [aux_sym_expr_binary_token25] = ACTIONS(1672), - [aux_sym_expr_binary_token26] = ACTIONS(1672), - [aux_sym_expr_binary_token27] = ACTIONS(1672), - [aux_sym_expr_binary_token28] = ACTIONS(1672), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [aux_sym_record_entry_token1] = ACTIONS(1672), - [anon_sym_err_GT] = ACTIONS(1670), - [anon_sym_out_GT] = ACTIONS(1670), - [anon_sym_e_GT] = ACTIONS(1670), - [anon_sym_o_GT] = ACTIONS(1670), - [anon_sym_err_PLUSout_GT] = ACTIONS(1670), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), - [anon_sym_o_PLUSe_GT] = ACTIONS(1670), - [anon_sym_e_PLUSo_GT] = ACTIONS(1670), - [anon_sym_err_GT_GT] = ACTIONS(1672), - [anon_sym_out_GT_GT] = ACTIONS(1672), - [anon_sym_e_GT_GT] = ACTIONS(1672), - [anon_sym_o_GT_GT] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1399), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_DOT_DOT_LT] = ACTIONS(971), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(971), + [aux_sym__val_number_decimal_token2] = ACTIONS(973), + [aux_sym__val_number_decimal_token3] = ACTIONS(973), + [aux_sym__val_number_decimal_token4] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(971), + [anon_sym_0o] = ACTIONS(971), + [anon_sym_0x] = ACTIONS(971), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [aux_sym_unquoted_token1] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(973), }, [1400] = { - [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1400), - [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(4808), - [aux_sym_cmd_identifier_token40] = ACTIONS(4808), - [sym__newline] = ACTIONS(4808), - [anon_sym_SEMI] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_err_GT_PIPE] = ACTIONS(4808), - [anon_sym_out_GT_PIPE] = ACTIONS(4808), - [anon_sym_e_GT_PIPE] = ACTIONS(4808), - [anon_sym_o_GT_PIPE] = ACTIONS(4808), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4808), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4808), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4808), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4808), - [anon_sym_LBRACK] = ACTIONS(4808), - [anon_sym_LPAREN] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4808), - [anon_sym_DOLLAR] = ACTIONS(4810), - [anon_sym_DASH_DASH] = ACTIONS(4808), - [anon_sym_DASH] = ACTIONS(4810), - [anon_sym_LBRACE] = ACTIONS(4808), - [anon_sym_RBRACE] = ACTIONS(4808), - [anon_sym_DOT_DOT] = ACTIONS(4810), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4808), - [anon_sym_DOT_DOT_LT] = ACTIONS(4808), - [aux_sym__val_number_decimal_token1] = ACTIONS(4810), - [aux_sym__val_number_decimal_token2] = ACTIONS(4808), - [aux_sym__val_number_decimal_token3] = ACTIONS(4808), - [aux_sym__val_number_decimal_token4] = ACTIONS(4808), - [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(4810), - [anon_sym_0o] = ACTIONS(4810), - [anon_sym_0x] = ACTIONS(4810), - [sym_val_date] = ACTIONS(4808), - [anon_sym_DQUOTE] = ACTIONS(4808), - [sym__str_single_quotes] = ACTIONS(4808), - [sym__str_back_ticks] = ACTIONS(4808), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4808), - [anon_sym_err_GT] = ACTIONS(4810), - [anon_sym_out_GT] = ACTIONS(4810), - [anon_sym_e_GT] = ACTIONS(4810), - [anon_sym_o_GT] = ACTIONS(4810), - [anon_sym_err_PLUSout_GT] = ACTIONS(4810), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4810), - [anon_sym_o_PLUSe_GT] = ACTIONS(4810), - [anon_sym_e_PLUSo_GT] = ACTIONS(4810), - [anon_sym_err_GT_GT] = ACTIONS(4808), - [anon_sym_out_GT_GT] = ACTIONS(4808), - [anon_sym_e_GT_GT] = ACTIONS(4808), - [anon_sym_o_GT_GT] = ACTIONS(4808), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4808), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4808), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4808), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4808), - [aux_sym_unquoted_token1] = ACTIONS(4810), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4808), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(4725), + [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__immediate_decimal_token2] = ACTIONS(4727), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(1757), }, [1401] = { [sym_comment] = STATE(1401), - [ts_builtin_sym_end] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [anon_sym_null] = ACTIONS(1672), - [aux_sym_cmd_identifier_token38] = ACTIONS(1672), - [aux_sym_cmd_identifier_token39] = ACTIONS(1672), - [aux_sym_cmd_identifier_token40] = ACTIONS(1672), - [sym__newline] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_err_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_GT_PIPE] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_DOT_DOT] = ACTIONS(1670), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), - [anon_sym_DOT_DOT_LT] = ACTIONS(1670), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [aux_sym__val_number_decimal_token1] = ACTIONS(1670), - [aux_sym__val_number_decimal_token2] = ACTIONS(1672), - [aux_sym__val_number_decimal_token3] = ACTIONS(1672), - [aux_sym__val_number_decimal_token4] = ACTIONS(1672), - [aux_sym__val_number_token1] = ACTIONS(1672), - [aux_sym__val_number_token2] = ACTIONS(1672), - [aux_sym__val_number_token3] = ACTIONS(1672), - [anon_sym_0b] = ACTIONS(1670), - [anon_sym_0o] = ACTIONS(1670), - [anon_sym_0x] = ACTIONS(1670), - [sym_val_date] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [sym__str_single_quotes] = ACTIONS(1672), - [sym__str_back_ticks] = ACTIONS(1672), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1672), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1672), - [anon_sym_err_GT] = ACTIONS(1670), - [anon_sym_out_GT] = ACTIONS(1670), - [anon_sym_e_GT] = ACTIONS(1670), - [anon_sym_o_GT] = ACTIONS(1670), - [anon_sym_err_PLUSout_GT] = ACTIONS(1670), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), - [anon_sym_o_PLUSe_GT] = ACTIONS(1670), - [anon_sym_e_PLUSo_GT] = ACTIONS(1670), - [anon_sym_err_GT_GT] = ACTIONS(1672), - [anon_sym_out_GT_GT] = ACTIONS(1672), - [anon_sym_e_GT_GT] = ACTIONS(1672), - [anon_sym_o_GT_GT] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), - [aux_sym_unquoted_token1] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(998), + [anon_sym_PLUS_EQ] = ACTIONS(1000), + [anon_sym_DASH_EQ] = ACTIONS(1000), + [anon_sym_STAR_EQ] = ACTIONS(1000), + [anon_sym_SLASH_EQ] = ACTIONS(1000), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1000), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(998), + [anon_sym_SLASH2] = ACTIONS(998), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [aux_sym_record_entry_token1] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), }, [1402] = { - [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1402), - [anon_sym_true] = ACTIONS(4812), - [anon_sym_false] = ACTIONS(4812), - [anon_sym_null] = ACTIONS(4812), - [aux_sym_cmd_identifier_token38] = ACTIONS(4812), - [aux_sym_cmd_identifier_token39] = ACTIONS(4812), - [aux_sym_cmd_identifier_token40] = ACTIONS(4812), - [sym__newline] = ACTIONS(4812), - [anon_sym_SEMI] = ACTIONS(4812), - [anon_sym_PIPE] = ACTIONS(4812), - [anon_sym_err_GT_PIPE] = ACTIONS(4812), - [anon_sym_out_GT_PIPE] = ACTIONS(4812), - [anon_sym_e_GT_PIPE] = ACTIONS(4812), - [anon_sym_o_GT_PIPE] = ACTIONS(4812), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4812), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4812), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4812), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4812), - [anon_sym_LBRACK] = ACTIONS(4812), - [anon_sym_LPAREN] = ACTIONS(4814), - [anon_sym_RPAREN] = ACTIONS(4812), - [anon_sym_DOLLAR] = ACTIONS(4814), - [anon_sym_DASH_DASH] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(4814), - [anon_sym_LBRACE] = ACTIONS(4812), - [anon_sym_RBRACE] = ACTIONS(4812), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4812), - [anon_sym_DOT_DOT_LT] = ACTIONS(4812), - [aux_sym__val_number_decimal_token1] = ACTIONS(4814), - [aux_sym__val_number_decimal_token2] = ACTIONS(4812), - [aux_sym__val_number_decimal_token3] = ACTIONS(4812), - [aux_sym__val_number_decimal_token4] = ACTIONS(4812), - [aux_sym__val_number_token1] = ACTIONS(4812), - [aux_sym__val_number_token2] = ACTIONS(4812), - [aux_sym__val_number_token3] = ACTIONS(4812), - [anon_sym_0b] = ACTIONS(4814), - [anon_sym_0o] = ACTIONS(4814), - [anon_sym_0x] = ACTIONS(4814), - [sym_val_date] = ACTIONS(4812), - [anon_sym_DQUOTE] = ACTIONS(4812), - [sym__str_single_quotes] = ACTIONS(4812), - [sym__str_back_ticks] = ACTIONS(4812), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4812), - [anon_sym_err_GT] = ACTIONS(4814), - [anon_sym_out_GT] = ACTIONS(4814), - [anon_sym_e_GT] = ACTIONS(4814), - [anon_sym_o_GT] = ACTIONS(4814), - [anon_sym_err_PLUSout_GT] = ACTIONS(4814), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4814), - [anon_sym_o_PLUSe_GT] = ACTIONS(4814), - [anon_sym_e_PLUSo_GT] = ACTIONS(4814), - [anon_sym_err_GT_GT] = ACTIONS(4812), - [anon_sym_out_GT_GT] = ACTIONS(4812), - [anon_sym_e_GT_GT] = ACTIONS(4812), - [anon_sym_o_GT_GT] = ACTIONS(4812), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4812), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4812), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4812), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4812), - [aux_sym_unquoted_token1] = ACTIONS(4814), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4812), + [ts_builtin_sym_end] = 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(1621), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [anon_sym_null] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1623), + [aux_sym__val_number_decimal_token3] = ACTIONS(1623), + [aux_sym__val_number_decimal_token4] = ACTIONS(1623), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1623), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1623), + [anon_sym_0b] = ACTIONS(1621), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1623), + [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_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1623), }, [1403] = { [sym_comment] = STATE(1403), - [ts_builtin_sym_end] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_LPAREN2] = ACTIONS(1598), - [aux_sym_expr_binary_token1] = ACTIONS(1598), - [aux_sym_expr_binary_token2] = ACTIONS(1598), - [aux_sym_expr_binary_token3] = ACTIONS(1598), - [aux_sym_expr_binary_token4] = ACTIONS(1598), - [aux_sym_expr_binary_token5] = ACTIONS(1598), - [aux_sym_expr_binary_token6] = ACTIONS(1598), - [aux_sym_expr_binary_token7] = ACTIONS(1598), - [aux_sym_expr_binary_token8] = ACTIONS(1598), - [aux_sym_expr_binary_token9] = ACTIONS(1598), - [aux_sym_expr_binary_token10] = ACTIONS(1598), - [aux_sym_expr_binary_token11] = ACTIONS(1598), - [aux_sym_expr_binary_token12] = ACTIONS(1598), - [aux_sym_expr_binary_token13] = ACTIONS(1598), - [aux_sym_expr_binary_token14] = ACTIONS(1598), - [aux_sym_expr_binary_token15] = ACTIONS(1598), - [aux_sym_expr_binary_token16] = ACTIONS(1598), - [aux_sym_expr_binary_token17] = ACTIONS(1598), - [aux_sym_expr_binary_token18] = ACTIONS(1598), - [aux_sym_expr_binary_token19] = ACTIONS(1598), - [aux_sym_expr_binary_token20] = ACTIONS(1598), - [aux_sym_expr_binary_token21] = ACTIONS(1598), - [aux_sym_expr_binary_token22] = ACTIONS(1598), - [aux_sym_expr_binary_token23] = ACTIONS(1598), - [aux_sym_expr_binary_token24] = ACTIONS(1598), - [aux_sym_expr_binary_token25] = ACTIONS(1598), - [aux_sym_expr_binary_token26] = ACTIONS(1598), - [aux_sym_expr_binary_token27] = ACTIONS(1598), - [aux_sym_expr_binary_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(4816), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(996), + [anon_sym_xor2] = ACTIONS(996), + [anon_sym_or2] = ACTIONS(996), + [anon_sym_not_DASHin2] = ACTIONS(996), + [anon_sym_starts_DASHwith2] = ACTIONS(996), + [anon_sym_ends_DASHwith2] = ACTIONS(996), + [anon_sym_EQ_EQ2] = ACTIONS(996), + [anon_sym_BANG_EQ2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(996), + [anon_sym_GT_EQ2] = ACTIONS(996), + [anon_sym_EQ_TILDE2] = ACTIONS(996), + [anon_sym_BANG_TILDE2] = ACTIONS(996), + [anon_sym_STAR_STAR2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(996), + [anon_sym_SLASH_SLASH2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(996), + [anon_sym_bit_DASHshr2] = ACTIONS(996), + [anon_sym_bit_DASHand2] = ACTIONS(996), + [anon_sym_bit_DASHxor2] = ACTIONS(996), + [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [aux_sym_record_entry_token1] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), }, [1404] = { - [sym_cell_path] = STATE(1996), - [sym_path] = STATE(1247), [sym_comment] = STATE(1404), - [aux_sym_cell_path_repeat1] = STATE(1202), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [aux_sym_expr_binary_token1] = ACTIONS(1668), - [aux_sym_expr_binary_token2] = ACTIONS(1668), - [aux_sym_expr_binary_token3] = ACTIONS(1668), - [aux_sym_expr_binary_token4] = ACTIONS(1668), - [aux_sym_expr_binary_token5] = ACTIONS(1668), - [aux_sym_expr_binary_token6] = ACTIONS(1668), - [aux_sym_expr_binary_token7] = ACTIONS(1668), - [aux_sym_expr_binary_token8] = ACTIONS(1668), - [aux_sym_expr_binary_token9] = ACTIONS(1668), - [aux_sym_expr_binary_token10] = ACTIONS(1668), - [aux_sym_expr_binary_token11] = ACTIONS(1668), - [aux_sym_expr_binary_token12] = ACTIONS(1668), - [aux_sym_expr_binary_token13] = ACTIONS(1668), - [aux_sym_expr_binary_token14] = ACTIONS(1668), - [aux_sym_expr_binary_token15] = ACTIONS(1668), - [aux_sym_expr_binary_token16] = ACTIONS(1668), - [aux_sym_expr_binary_token17] = ACTIONS(1668), - [aux_sym_expr_binary_token18] = ACTIONS(1668), - [aux_sym_expr_binary_token19] = ACTIONS(1668), - [aux_sym_expr_binary_token20] = ACTIONS(1668), - [aux_sym_expr_binary_token21] = ACTIONS(1668), - [aux_sym_expr_binary_token22] = ACTIONS(1668), - [aux_sym_expr_binary_token23] = ACTIONS(1668), - [aux_sym_expr_binary_token24] = ACTIONS(1668), - [aux_sym_expr_binary_token25] = ACTIONS(1668), - [aux_sym_expr_binary_token26] = ACTIONS(1668), - [aux_sym_expr_binary_token27] = ACTIONS(1668), - [aux_sym_expr_binary_token28] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(4143), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1664), - [anon_sym_out_GT] = ACTIONS(1664), - [anon_sym_e_GT] = ACTIONS(1664), - [anon_sym_o_GT] = ACTIONS(1664), - [anon_sym_err_PLUSout_GT] = ACTIONS(1664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), - [anon_sym_o_PLUSe_GT] = ACTIONS(1664), - [anon_sym_e_PLUSo_GT] = ACTIONS(1664), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_GT2] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_STAR2] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(4729), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_starts_DASHwith2] = ACTIONS(980), + [anon_sym_ends_DASHwith2] = ACTIONS(980), + [anon_sym_EQ_EQ2] = ACTIONS(980), + [anon_sym_BANG_EQ2] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(978), + [anon_sym_LT_EQ2] = ACTIONS(980), + [anon_sym_GT_EQ2] = ACTIONS(980), + [anon_sym_EQ_TILDE2] = ACTIONS(980), + [anon_sym_BANG_TILDE2] = ACTIONS(980), + [anon_sym_STAR_STAR2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(978), + [anon_sym_SLASH2] = ACTIONS(978), + [anon_sym_mod2] = ACTIONS(980), + [anon_sym_SLASH_SLASH2] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_bit_DASHshl2] = ACTIONS(980), + [anon_sym_bit_DASHshr2] = ACTIONS(980), + [anon_sym_bit_DASHand2] = ACTIONS(980), + [anon_sym_bit_DASHxor2] = ACTIONS(980), + [anon_sym_bit_DASHor2] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), }, [1405] = { + [sym_path] = STATE(1488), [sym_comment] = STATE(1405), - [aux_sym_cmd_identifier_token41] = ACTIONS(1536), - [sym__newline] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4806), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1408), + [ts_builtin_sym_end] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(969), + [anon_sym_DASH_EQ] = ACTIONS(969), + [anon_sym_STAR_EQ] = ACTIONS(969), + [anon_sym_SLASH_EQ] = ACTIONS(969), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(969), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_GT2] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_STAR2] = ACTIONS(967), + [anon_sym_and2] = ACTIONS(969), + [anon_sym_xor2] = ACTIONS(969), + [anon_sym_or2] = ACTIONS(969), + [anon_sym_not_DASHin2] = ACTIONS(969), + [anon_sym_starts_DASHwith2] = ACTIONS(969), + [anon_sym_ends_DASHwith2] = ACTIONS(969), + [anon_sym_EQ_EQ2] = ACTIONS(969), + [anon_sym_BANG_EQ2] = ACTIONS(969), + [anon_sym_LT2] = ACTIONS(967), + [anon_sym_LT_EQ2] = ACTIONS(969), + [anon_sym_GT_EQ2] = ACTIONS(969), + [anon_sym_EQ_TILDE2] = ACTIONS(969), + [anon_sym_BANG_TILDE2] = ACTIONS(969), + [anon_sym_STAR_STAR2] = ACTIONS(969), + [anon_sym_PLUS_PLUS2] = ACTIONS(967), + [anon_sym_SLASH2] = ACTIONS(967), + [anon_sym_mod2] = ACTIONS(969), + [anon_sym_SLASH_SLASH2] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_bit_DASHshl2] = ACTIONS(969), + [anon_sym_bit_DASHshr2] = ACTIONS(969), + [anon_sym_bit_DASHand2] = ACTIONS(969), + [anon_sym_bit_DASHxor2] = ACTIONS(969), + [anon_sym_bit_DASHor2] = ACTIONS(969), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4664), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(247), }, [1406] = { [sym_comment] = STATE(1406), - [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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(4818), - [aux_sym__immediate_decimal_token2] = ACTIONS(4820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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__immediate_decimal_token2] = ACTIONS(4571), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(1757), }, [1407] = { [sym_comment] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(2107), - [anon_sym_true] = ACTIONS(2107), - [anon_sym_false] = ACTIONS(2107), - [anon_sym_null] = ACTIONS(2107), - [aux_sym_cmd_identifier_token38] = ACTIONS(2107), - [aux_sym_cmd_identifier_token39] = ACTIONS(2107), - [aux_sym_cmd_identifier_token40] = ACTIONS(2107), - [sym__newline] = ACTIONS(2107), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_err_GT_PIPE] = ACTIONS(2107), - [anon_sym_out_GT_PIPE] = ACTIONS(2107), - [anon_sym_e_GT_PIPE] = ACTIONS(2107), - [anon_sym_o_GT_PIPE] = ACTIONS(2107), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2107), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2107), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2107), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_DOLLAR] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_DOT_DOT2] = ACTIONS(2105), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2105), - [anon_sym_DOT_DOT_LT] = ACTIONS(2105), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2107), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2107), - [aux_sym__val_number_decimal_token1] = ACTIONS(2105), - [aux_sym__val_number_decimal_token2] = ACTIONS(2107), - [aux_sym__val_number_decimal_token3] = ACTIONS(2107), - [aux_sym__val_number_decimal_token4] = ACTIONS(2107), - [aux_sym__val_number_token1] = ACTIONS(2107), - [aux_sym__val_number_token2] = ACTIONS(2107), - [aux_sym__val_number_token3] = ACTIONS(2107), - [anon_sym_0b] = ACTIONS(2105), - [anon_sym_0o] = ACTIONS(2105), - [anon_sym_0x] = ACTIONS(2105), - [sym_val_date] = ACTIONS(2107), - [anon_sym_DQUOTE] = ACTIONS(2107), - [sym__str_single_quotes] = ACTIONS(2107), - [sym__str_back_ticks] = ACTIONS(2107), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2107), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2107), - [anon_sym_err_GT] = ACTIONS(2105), - [anon_sym_out_GT] = ACTIONS(2105), - [anon_sym_e_GT] = ACTIONS(2105), - [anon_sym_o_GT] = ACTIONS(2105), - [anon_sym_err_PLUSout_GT] = ACTIONS(2105), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2105), - [anon_sym_o_PLUSe_GT] = ACTIONS(2105), - [anon_sym_e_PLUSo_GT] = ACTIONS(2105), - [anon_sym_err_GT_GT] = ACTIONS(2107), - [anon_sym_out_GT_GT] = ACTIONS(2107), - [anon_sym_e_GT_GT] = ACTIONS(2107), - [anon_sym_o_GT_GT] = ACTIONS(2107), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2107), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2107), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2107), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2107), - [aux_sym_unquoted_token1] = ACTIONS(2105), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2107), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [sym__newline] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_err_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_GT_PIPE] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), + [anon_sym_GT2] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_STAR2] = ACTIONS(2214), + [anon_sym_and2] = ACTIONS(2214), + [anon_sym_xor2] = ACTIONS(2214), + [anon_sym_or2] = ACTIONS(2214), + [anon_sym_not_DASHin2] = ACTIONS(2214), + [anon_sym_starts_DASHwith2] = ACTIONS(2214), + [anon_sym_ends_DASHwith2] = ACTIONS(2214), + [anon_sym_EQ_EQ2] = ACTIONS(2214), + [anon_sym_BANG_EQ2] = ACTIONS(2214), + [anon_sym_LT2] = ACTIONS(2214), + [anon_sym_LT_EQ2] = ACTIONS(2214), + [anon_sym_GT_EQ2] = ACTIONS(2214), + [anon_sym_EQ_TILDE2] = ACTIONS(2214), + [anon_sym_BANG_TILDE2] = ACTIONS(2214), + [anon_sym_STAR_STAR2] = ACTIONS(2214), + [anon_sym_PLUS_PLUS2] = ACTIONS(2214), + [anon_sym_SLASH2] = ACTIONS(2214), + [anon_sym_mod2] = ACTIONS(2214), + [anon_sym_SLASH_SLASH2] = ACTIONS(2214), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_bit_DASHshl2] = ACTIONS(2214), + [anon_sym_bit_DASHshr2] = ACTIONS(2214), + [anon_sym_bit_DASHand2] = ACTIONS(2214), + [anon_sym_bit_DASHxor2] = ACTIONS(2214), + [anon_sym_bit_DASHor2] = ACTIONS(2214), + [anon_sym_POUND] = ACTIONS(3), }, [1408] = { - [sym__expr_parenthesized_immediate] = STATE(7580), + [sym_path] = STATE(1488), [sym_comment] = STATE(1408), - [anon_sym_true] = ACTIONS(4822), - [anon_sym_false] = ACTIONS(4822), - [anon_sym_null] = ACTIONS(4822), - [aux_sym_cmd_identifier_token38] = ACTIONS(4822), - [aux_sym_cmd_identifier_token39] = ACTIONS(4822), - [aux_sym_cmd_identifier_token40] = ACTIONS(4822), - [sym__newline] = ACTIONS(4822), - [anon_sym_SEMI] = ACTIONS(4822), - [anon_sym_PIPE] = ACTIONS(4822), - [anon_sym_err_GT_PIPE] = ACTIONS(4822), - [anon_sym_out_GT_PIPE] = ACTIONS(4822), - [anon_sym_e_GT_PIPE] = ACTIONS(4822), - [anon_sym_o_GT_PIPE] = ACTIONS(4822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4822), - [anon_sym_LBRACK] = ACTIONS(4822), - [anon_sym_LPAREN] = ACTIONS(4824), - [anon_sym_RPAREN] = ACTIONS(4822), - [anon_sym_DOLLAR] = ACTIONS(4824), - [anon_sym_DASH_DASH] = ACTIONS(4822), - [anon_sym_DASH] = ACTIONS(4824), - [anon_sym_LBRACE] = ACTIONS(4822), - [anon_sym_RBRACE] = ACTIONS(4822), - [anon_sym_DOT_DOT] = ACTIONS(4824), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4822), - [anon_sym_DOT_DOT_LT] = ACTIONS(4822), - [aux_sym__val_number_decimal_token1] = ACTIONS(4824), - [aux_sym__val_number_decimal_token2] = ACTIONS(4822), - [aux_sym__val_number_decimal_token3] = ACTIONS(4822), - [aux_sym__val_number_decimal_token4] = ACTIONS(4822), - [aux_sym__val_number_token1] = ACTIONS(4822), - [aux_sym__val_number_token2] = ACTIONS(4822), - [aux_sym__val_number_token3] = ACTIONS(4822), - [anon_sym_0b] = ACTIONS(4824), - [anon_sym_0o] = ACTIONS(4824), - [anon_sym_0x] = ACTIONS(4824), - [sym_val_date] = ACTIONS(4822), - [anon_sym_DQUOTE] = ACTIONS(4822), - [sym__str_single_quotes] = ACTIONS(4822), - [sym__str_back_ticks] = ACTIONS(4822), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4822), - [anon_sym_err_GT] = ACTIONS(4824), - [anon_sym_out_GT] = ACTIONS(4824), - [anon_sym_e_GT] = ACTIONS(4824), - [anon_sym_o_GT] = ACTIONS(4824), - [anon_sym_err_PLUSout_GT] = ACTIONS(4824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4824), - [anon_sym_o_PLUSe_GT] = ACTIONS(4824), - [anon_sym_e_PLUSo_GT] = ACTIONS(4824), - [anon_sym_err_GT_GT] = ACTIONS(4822), - [anon_sym_out_GT_GT] = ACTIONS(4822), - [anon_sym_e_GT_GT] = ACTIONS(4822), - [anon_sym_o_GT_GT] = ACTIONS(4822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4822), - [aux_sym_unquoted_token1] = ACTIONS(4824), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4822), + [aux_sym_cell_path_repeat1] = STATE(1408), + [ts_builtin_sym_end] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_PLUS_EQ] = ACTIONS(973), + [anon_sym_DASH_EQ] = ACTIONS(973), + [anon_sym_STAR_EQ] = ACTIONS(973), + [anon_sym_SLASH_EQ] = ACTIONS(973), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_GT2] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(973), + [anon_sym_STAR2] = ACTIONS(971), + [anon_sym_and2] = ACTIONS(973), + [anon_sym_xor2] = ACTIONS(973), + [anon_sym_or2] = ACTIONS(973), + [anon_sym_not_DASHin2] = ACTIONS(973), + [anon_sym_starts_DASHwith2] = ACTIONS(973), + [anon_sym_ends_DASHwith2] = ACTIONS(973), + [anon_sym_EQ_EQ2] = ACTIONS(973), + [anon_sym_BANG_EQ2] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(971), + [anon_sym_LT_EQ2] = ACTIONS(973), + [anon_sym_GT_EQ2] = ACTIONS(973), + [anon_sym_EQ_TILDE2] = ACTIONS(973), + [anon_sym_BANG_TILDE2] = ACTIONS(973), + [anon_sym_STAR_STAR2] = ACTIONS(973), + [anon_sym_PLUS_PLUS2] = ACTIONS(971), + [anon_sym_SLASH2] = ACTIONS(971), + [anon_sym_mod2] = ACTIONS(973), + [anon_sym_SLASH_SLASH2] = ACTIONS(973), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_bit_DASHshl2] = ACTIONS(973), + [anon_sym_bit_DASHshr2] = ACTIONS(973), + [anon_sym_bit_DASHand2] = ACTIONS(973), + [anon_sym_bit_DASHxor2] = ACTIONS(973), + [anon_sym_bit_DASHor2] = ACTIONS(973), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(247), }, [1409] = { [sym_comment] = STATE(1409), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [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_GT2] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), + [anon_sym_STAR2] = ACTIONS(2222), + [anon_sym_and2] = ACTIONS(2222), + [anon_sym_xor2] = ACTIONS(2222), + [anon_sym_or2] = ACTIONS(2222), + [anon_sym_not_DASHin2] = ACTIONS(2222), + [anon_sym_starts_DASHwith2] = ACTIONS(2222), + [anon_sym_ends_DASHwith2] = ACTIONS(2222), + [anon_sym_EQ_EQ2] = ACTIONS(2222), + [anon_sym_BANG_EQ2] = ACTIONS(2222), + [anon_sym_LT2] = ACTIONS(2222), + [anon_sym_LT_EQ2] = ACTIONS(2222), + [anon_sym_GT_EQ2] = ACTIONS(2222), + [anon_sym_EQ_TILDE2] = ACTIONS(2222), + [anon_sym_BANG_TILDE2] = ACTIONS(2222), + [anon_sym_STAR_STAR2] = ACTIONS(2222), + [anon_sym_PLUS_PLUS2] = ACTIONS(2222), + [anon_sym_SLASH2] = ACTIONS(2222), + [anon_sym_mod2] = ACTIONS(2222), + [anon_sym_SLASH_SLASH2] = ACTIONS(2222), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_bit_DASHshl2] = ACTIONS(2222), + [anon_sym_bit_DASHshr2] = ACTIONS(2222), + [anon_sym_bit_DASHand2] = ACTIONS(2222), + [anon_sym_bit_DASHxor2] = ACTIONS(2222), + [anon_sym_bit_DASHor2] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), }, [1410] = { [sym_comment] = STATE(1410), - [ts_builtin_sym_end] = ACTIONS(2228), - [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(2228), - [anon_sym_DOLLAR] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_DOT_DOT] = ACTIONS(2222), - [anon_sym_DOT_DOT2] = ACTIONS(4826), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), - [anon_sym_DOT_DOT_LT] = ACTIONS(2222), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4828), - [aux_sym__val_number_decimal_token1] = ACTIONS(2222), - [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(2222), - [anon_sym_0o] = ACTIONS(2222), - [anon_sym_0x] = ACTIONS(2222), - [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(2222), - [anon_sym_out_GT] = ACTIONS(2222), - [anon_sym_e_GT] = ACTIONS(2222), - [anon_sym_o_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT] = ACTIONS(2222), - [anon_sym_err_GT_GT] = ACTIONS(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(2222), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2228), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1004), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [aux_sym_unquoted_token1] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1004), }, [1411] = { [sym_comment] = STATE(1411), - [aux_sym_cmd_identifier_token41] = ACTIONS(1596), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [aux_sym_expr_binary_token1] = ACTIONS(1598), - [aux_sym_expr_binary_token2] = ACTIONS(1598), - [aux_sym_expr_binary_token3] = ACTIONS(1598), - [aux_sym_expr_binary_token4] = ACTIONS(1598), - [aux_sym_expr_binary_token5] = ACTIONS(1598), - [aux_sym_expr_binary_token6] = ACTIONS(1598), - [aux_sym_expr_binary_token7] = ACTIONS(1598), - [aux_sym_expr_binary_token8] = ACTIONS(1598), - [aux_sym_expr_binary_token9] = ACTIONS(1598), - [aux_sym_expr_binary_token10] = ACTIONS(1598), - [aux_sym_expr_binary_token11] = ACTIONS(1598), - [aux_sym_expr_binary_token12] = ACTIONS(1598), - [aux_sym_expr_binary_token13] = ACTIONS(1598), - [aux_sym_expr_binary_token14] = ACTIONS(1598), - [aux_sym_expr_binary_token15] = ACTIONS(1598), - [aux_sym_expr_binary_token16] = ACTIONS(1598), - [aux_sym_expr_binary_token17] = ACTIONS(1598), - [aux_sym_expr_binary_token18] = ACTIONS(1598), - [aux_sym_expr_binary_token19] = ACTIONS(1598), - [aux_sym_expr_binary_token20] = ACTIONS(1598), - [aux_sym_expr_binary_token21] = ACTIONS(1598), - [aux_sym_expr_binary_token22] = ACTIONS(1598), - [aux_sym_expr_binary_token23] = ACTIONS(1598), - [aux_sym_expr_binary_token24] = ACTIONS(1598), - [aux_sym_expr_binary_token25] = ACTIONS(1598), - [aux_sym_expr_binary_token26] = ACTIONS(1598), - [aux_sym_expr_binary_token27] = ACTIONS(1598), - [aux_sym_expr_binary_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(4830), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), + [anon_sym_DOT_DOT_LT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [aux_sym_unquoted_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, [1412] = { [sym_comment] = STATE(1412), - [anon_sym_true] = ACTIONS(1090), - [anon_sym_false] = ACTIONS(1090), - [anon_sym_null] = ACTIONS(1090), - [aux_sym_cmd_identifier_token38] = ACTIONS(1090), - [aux_sym_cmd_identifier_token39] = ACTIONS(1090), - [aux_sym_cmd_identifier_token40] = ACTIONS(1090), - [sym__newline] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_err_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_GT_PIPE] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), - [anon_sym_LBRACK] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_DOLLAR] = ACTIONS(1090), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_DOT_DOT] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(2273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1090), - [anon_sym_DOT_DOT_LT] = ACTIONS(1090), - [aux_sym__val_number_decimal_token1] = ACTIONS(1090), - [aux_sym__val_number_decimal_token2] = ACTIONS(1090), - [aux_sym__val_number_decimal_token3] = ACTIONS(1090), - [aux_sym__val_number_decimal_token4] = ACTIONS(1090), - [aux_sym__val_number_token1] = ACTIONS(1090), - [aux_sym__val_number_token2] = ACTIONS(1090), - [aux_sym__val_number_token3] = ACTIONS(1090), - [anon_sym_0b] = ACTIONS(1090), - [anon_sym_0o] = ACTIONS(1090), - [anon_sym_0x] = ACTIONS(1090), - [sym_val_date] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1092), - [sym__str_single_quotes] = ACTIONS(1092), - [sym__str_back_ticks] = ACTIONS(1092), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1092), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1092), - [anon_sym_err_GT] = ACTIONS(1090), - [anon_sym_out_GT] = ACTIONS(1090), - [anon_sym_e_GT] = ACTIONS(1090), - [anon_sym_o_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT] = ACTIONS(1090), - [anon_sym_err_GT_GT] = ACTIONS(1090), - [anon_sym_out_GT_GT] = ACTIONS(1090), - [anon_sym_e_GT_GT] = ACTIONS(1090), - [anon_sym_o_GT_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1090), - [aux_sym_unquoted_token1] = ACTIONS(1090), - [aux_sym_unquoted_token4] = ACTIONS(2275), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1092), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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__immediate_decimal_token2] = ACTIONS(4727), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(1757), }, [1413] = { [sym_comment] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [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_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(4832), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [aux_sym_unquoted_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(4734), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_DOT_DOT_LT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(978), + [anon_sym_0o] = ACTIONS(978), + [anon_sym_0x] = ACTIONS(978), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), }, [1414] = { [sym_comment] = STATE(1414), - [ts_builtin_sym_end] = ACTIONS(2212), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_null] = ACTIONS(2212), - [aux_sym_cmd_identifier_token38] = ACTIONS(2212), - [aux_sym_cmd_identifier_token39] = ACTIONS(2212), - [aux_sym_cmd_identifier_token40] = ACTIONS(2212), - [sym__newline] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(2212), - [anon_sym_err_GT_PIPE] = ACTIONS(2212), - [anon_sym_out_GT_PIPE] = ACTIONS(2212), - [anon_sym_e_GT_PIPE] = ACTIONS(2212), - [anon_sym_o_GT_PIPE] = ACTIONS(2212), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2212), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2212), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2212), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_DOLLAR] = ACTIONS(2206), - [anon_sym_DASH_DASH] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_DOT_DOT] = ACTIONS(2206), - [anon_sym_DOT_DOT2] = ACTIONS(4834), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2206), - [anon_sym_DOT_DOT_LT] = ACTIONS(2206), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4836), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4836), - [aux_sym__val_number_decimal_token1] = ACTIONS(2206), - [aux_sym__val_number_decimal_token2] = ACTIONS(2212), - [aux_sym__val_number_decimal_token3] = ACTIONS(2212), - [aux_sym__val_number_decimal_token4] = ACTIONS(2212), - [aux_sym__val_number_token1] = ACTIONS(2212), - [aux_sym__val_number_token2] = ACTIONS(2212), - [aux_sym__val_number_token3] = ACTIONS(2212), - [anon_sym_0b] = ACTIONS(2206), - [anon_sym_0o] = ACTIONS(2206), - [anon_sym_0x] = ACTIONS(2206), - [sym_val_date] = ACTIONS(2212), - [anon_sym_DQUOTE] = ACTIONS(2212), - [sym__str_single_quotes] = ACTIONS(2212), - [sym__str_back_ticks] = ACTIONS(2212), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2212), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2212), - [anon_sym_err_GT] = ACTIONS(2206), - [anon_sym_out_GT] = ACTIONS(2206), - [anon_sym_e_GT] = ACTIONS(2206), - [anon_sym_o_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT] = ACTIONS(2206), - [anon_sym_err_GT_GT] = ACTIONS(2212), - [anon_sym_out_GT_GT] = ACTIONS(2212), - [anon_sym_e_GT_GT] = ACTIONS(2212), - [anon_sym_o_GT_GT] = ACTIONS(2212), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2212), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2212), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2212), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2212), - [aux_sym_unquoted_token1] = ACTIONS(2206), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2212), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(4736), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(986), }, [1415] = { [sym_comment] = STATE(1415), - [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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [aux_sym_unquoted_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4738), + [aux_sym__immediate_decimal_token2] = ACTIONS(4740), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1416] = { [sym_comment] = STATE(1416), - [ts_builtin_sym_end] = ACTIONS(1080), - [anon_sym_true] = ACTIONS(1080), - [anon_sym_false] = ACTIONS(1080), - [anon_sym_null] = ACTIONS(1080), - [aux_sym_cmd_identifier_token38] = ACTIONS(1080), - [aux_sym_cmd_identifier_token39] = ACTIONS(1080), - [aux_sym_cmd_identifier_token40] = ACTIONS(1080), - [sym__newline] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_err_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_GT_PIPE] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1080), - [anon_sym_DOLLAR] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1080), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_LBRACE] = ACTIONS(1080), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_DOT_DOT2] = ACTIONS(1078), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), - [anon_sym_DOT_DOT_LT] = ACTIONS(1078), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), - [aux_sym__val_number_decimal_token1] = ACTIONS(1078), - [aux_sym__val_number_decimal_token2] = ACTIONS(1080), - [aux_sym__val_number_decimal_token3] = ACTIONS(1080), - [aux_sym__val_number_decimal_token4] = ACTIONS(1080), - [aux_sym__val_number_token1] = ACTIONS(1080), - [aux_sym__val_number_token2] = ACTIONS(1080), - [aux_sym__val_number_token3] = ACTIONS(1080), - [anon_sym_0b] = ACTIONS(1078), - [anon_sym_0o] = ACTIONS(1078), - [anon_sym_0x] = ACTIONS(1078), - [sym_val_date] = ACTIONS(1080), - [anon_sym_DQUOTE] = ACTIONS(1080), - [sym__str_single_quotes] = ACTIONS(1080), - [sym__str_back_ticks] = ACTIONS(1080), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1080), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1080), - [anon_sym_err_GT] = ACTIONS(1078), - [anon_sym_out_GT] = ACTIONS(1078), - [anon_sym_e_GT] = ACTIONS(1078), - [anon_sym_o_GT] = ACTIONS(1078), - [anon_sym_err_PLUSout_GT] = ACTIONS(1078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), - [anon_sym_o_PLUSe_GT] = ACTIONS(1078), - [anon_sym_e_PLUSo_GT] = ACTIONS(1078), - [anon_sym_err_GT_GT] = ACTIONS(1080), - [anon_sym_out_GT_GT] = ACTIONS(1080), - [anon_sym_e_GT_GT] = ACTIONS(1080), - [anon_sym_o_GT_GT] = ACTIONS(1080), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), - [aux_sym_unquoted_token1] = ACTIONS(1078), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1080), + [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(1890), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = 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), + [aux_sym_unquoted_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1892), }, [1417] = { - [sym__expr_parenthesized_immediate] = STATE(7439), [sym_comment] = STATE(1417), - [sym__newline] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_err_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_GT_PIPE] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1640), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1640), - [anon_sym_DOT_DOT2] = ACTIONS(4762), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4764), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4764), - [sym_filesize_unit] = ACTIONS(4838), - [sym_duration_unit] = ACTIONS(4840), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [anon_sym_err_GT_GT] = ACTIONS(1640), - [anon_sym_out_GT_GT] = ACTIONS(1640), - [anon_sym_e_GT_GT] = ACTIONS(1640), - [anon_sym_o_GT_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), - [aux_sym_unquoted_token2] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(990), + [anon_sym_DOT_DOT_LT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(992), + [aux_sym__val_number_token5] = ACTIONS(992), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_0b] = ACTIONS(990), + [anon_sym_0o] = ACTIONS(990), + [anon_sym_0x] = ACTIONS(990), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_unquoted_token1] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), }, [1418] = { - [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1418), - [anon_sym_true] = ACTIONS(4844), - [anon_sym_false] = ACTIONS(4844), - [anon_sym_null] = ACTIONS(4844), - [aux_sym_cmd_identifier_token38] = ACTIONS(4844), - [aux_sym_cmd_identifier_token39] = ACTIONS(4844), - [aux_sym_cmd_identifier_token40] = ACTIONS(4844), - [sym__newline] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4844), - [anon_sym_PIPE] = ACTIONS(4844), - [anon_sym_err_GT_PIPE] = ACTIONS(4844), - [anon_sym_out_GT_PIPE] = ACTIONS(4844), - [anon_sym_e_GT_PIPE] = ACTIONS(4844), - [anon_sym_o_GT_PIPE] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4844), - [anon_sym_LBRACK] = ACTIONS(4844), - [anon_sym_LPAREN] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4844), - [anon_sym_DOLLAR] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4846), - [anon_sym_LBRACE] = ACTIONS(4844), - [anon_sym_RBRACE] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4844), - [anon_sym_DOT_DOT_LT] = ACTIONS(4844), - [aux_sym__val_number_decimal_token1] = ACTIONS(4846), - [aux_sym__val_number_decimal_token2] = ACTIONS(4844), - [aux_sym__val_number_decimal_token3] = ACTIONS(4844), - [aux_sym__val_number_decimal_token4] = ACTIONS(4844), - [aux_sym__val_number_token1] = ACTIONS(4844), - [aux_sym__val_number_token2] = ACTIONS(4844), - [aux_sym__val_number_token3] = ACTIONS(4844), - [anon_sym_0b] = ACTIONS(4846), - [anon_sym_0o] = ACTIONS(4846), - [anon_sym_0x] = ACTIONS(4846), - [sym_val_date] = ACTIONS(4844), - [anon_sym_DQUOTE] = ACTIONS(4844), - [sym__str_single_quotes] = ACTIONS(4844), - [sym__str_back_ticks] = ACTIONS(4844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4844), - [anon_sym_err_GT] = ACTIONS(4846), - [anon_sym_out_GT] = ACTIONS(4846), - [anon_sym_e_GT] = ACTIONS(4846), - [anon_sym_o_GT] = ACTIONS(4846), - [anon_sym_err_PLUSout_GT] = ACTIONS(4846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4846), - [anon_sym_o_PLUSe_GT] = ACTIONS(4846), - [anon_sym_e_PLUSo_GT] = ACTIONS(4846), - [anon_sym_err_GT_GT] = ACTIONS(4844), - [anon_sym_out_GT_GT] = ACTIONS(4844), - [anon_sym_e_GT_GT] = ACTIONS(4844), - [anon_sym_o_GT_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4844), - [aux_sym_unquoted_token1] = ACTIONS(4846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4844), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1609), + [anon_sym_in2] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1609), + [anon_sym_xor2] = ACTIONS(1609), + [anon_sym_or2] = ACTIONS(1609), + [anon_sym_not_DASHin2] = ACTIONS(1609), + [anon_sym_starts_DASHwith2] = ACTIONS(1609), + [anon_sym_ends_DASHwith2] = ACTIONS(1609), + [anon_sym_EQ_EQ2] = ACTIONS(1609), + [anon_sym_BANG_EQ2] = ACTIONS(1609), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1609), + [anon_sym_GT_EQ2] = ACTIONS(1609), + [anon_sym_EQ_TILDE2] = ACTIONS(1609), + [anon_sym_BANG_TILDE2] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_STAR_STAR2] = ACTIONS(1609), + [anon_sym_PLUS_PLUS2] = ACTIONS(1609), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1609), + [anon_sym_SLASH_SLASH2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1609), + [anon_sym_bit_DASHshr2] = ACTIONS(1609), + [anon_sym_bit_DASHand2] = ACTIONS(1609), + [anon_sym_bit_DASHxor2] = ACTIONS(1609), + [anon_sym_bit_DASHor2] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(4742), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(4744), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), }, [1419] = { - [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1419), - [anon_sym_true] = ACTIONS(4848), - [anon_sym_false] = ACTIONS(4848), - [anon_sym_null] = ACTIONS(4848), - [aux_sym_cmd_identifier_token38] = ACTIONS(4848), - [aux_sym_cmd_identifier_token39] = ACTIONS(4848), - [aux_sym_cmd_identifier_token40] = ACTIONS(4848), - [sym__newline] = ACTIONS(4848), - [anon_sym_SEMI] = ACTIONS(4848), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_err_GT_PIPE] = ACTIONS(4848), - [anon_sym_out_GT_PIPE] = ACTIONS(4848), - [anon_sym_e_GT_PIPE] = ACTIONS(4848), - [anon_sym_o_GT_PIPE] = ACTIONS(4848), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4848), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4848), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4848), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4848), - [anon_sym_LBRACK] = ACTIONS(4848), - [anon_sym_LPAREN] = ACTIONS(4850), - [anon_sym_RPAREN] = ACTIONS(4848), - [anon_sym_DOLLAR] = ACTIONS(4850), - [anon_sym_DASH_DASH] = ACTIONS(4848), - [anon_sym_DASH] = ACTIONS(4850), - [anon_sym_LBRACE] = ACTIONS(4848), - [anon_sym_RBRACE] = ACTIONS(4848), - [anon_sym_DOT_DOT] = ACTIONS(4850), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4848), - [anon_sym_DOT_DOT_LT] = ACTIONS(4848), - [aux_sym__val_number_decimal_token1] = ACTIONS(4850), - [aux_sym__val_number_decimal_token2] = ACTIONS(4848), - [aux_sym__val_number_decimal_token3] = ACTIONS(4848), - [aux_sym__val_number_decimal_token4] = ACTIONS(4848), - [aux_sym__val_number_token1] = ACTIONS(4848), - [aux_sym__val_number_token2] = ACTIONS(4848), - [aux_sym__val_number_token3] = ACTIONS(4848), - [anon_sym_0b] = ACTIONS(4850), - [anon_sym_0o] = ACTIONS(4850), - [anon_sym_0x] = ACTIONS(4850), - [sym_val_date] = ACTIONS(4848), - [anon_sym_DQUOTE] = ACTIONS(4848), - [sym__str_single_quotes] = ACTIONS(4848), - [sym__str_back_ticks] = ACTIONS(4848), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4848), - [anon_sym_err_GT] = ACTIONS(4850), - [anon_sym_out_GT] = ACTIONS(4850), - [anon_sym_e_GT] = ACTIONS(4850), - [anon_sym_o_GT] = ACTIONS(4850), - [anon_sym_err_PLUSout_GT] = ACTIONS(4850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4850), - [anon_sym_o_PLUSe_GT] = ACTIONS(4850), - [anon_sym_e_PLUSo_GT] = ACTIONS(4850), - [anon_sym_err_GT_GT] = ACTIONS(4848), - [anon_sym_out_GT_GT] = ACTIONS(4848), - [anon_sym_e_GT_GT] = ACTIONS(4848), - [anon_sym_o_GT_GT] = ACTIONS(4848), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4848), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4848), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4848), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4848), - [aux_sym_unquoted_token1] = ACTIONS(4850), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4848), + [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_RPAREN] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(4746), + [aux_sym__immediate_decimal_token2] = ACTIONS(4748), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), }, [1420] = { [sym_comment] = STATE(1420), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4854), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1012), + [anon_sym_DASH_EQ] = ACTIONS(1012), + [anon_sym_STAR_EQ] = ACTIONS(1012), + [anon_sym_SLASH_EQ] = ACTIONS(1012), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1012), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_in2] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1010), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1010), + [anon_sym_SLASH2] = ACTIONS(1010), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1010), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(247), }, [1421] = { [sym_comment] = STATE(1421), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [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_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [aux_sym_unquoted_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [anon_sym_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), + [sym__newline] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1006), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1006), + [anon_sym_SLASH2] = ACTIONS(1006), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [aux_sym_record_entry_token1] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), }, [1422] = { [sym_comment] = STATE(1422), - [ts_builtin_sym_end] = ACTIONS(2220), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_null] = ACTIONS(2220), - [aux_sym_cmd_identifier_token38] = ACTIONS(2220), - [aux_sym_cmd_identifier_token39] = ACTIONS(2220), - [aux_sym_cmd_identifier_token40] = ACTIONS(2220), - [sym__newline] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_err_GT_PIPE] = ACTIONS(2220), - [anon_sym_out_GT_PIPE] = ACTIONS(2220), - [anon_sym_e_GT_PIPE] = ACTIONS(2220), - [anon_sym_o_GT_PIPE] = ACTIONS(2220), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2220), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2220), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2220), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(2220), - [anon_sym_DOLLAR] = ACTIONS(2218), - [anon_sym_DASH_DASH] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_DOT_DOT] = ACTIONS(2218), - [anon_sym_DOT_DOT2] = ACTIONS(2218), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2218), - [anon_sym_DOT_DOT_LT] = ACTIONS(2218), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2220), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [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_0b] = ACTIONS(2218), - [anon_sym_0o] = ACTIONS(2218), - [anon_sym_0x] = ACTIONS(2218), - [sym_val_date] = ACTIONS(2220), - [anon_sym_DQUOTE] = ACTIONS(2220), - [sym__str_single_quotes] = ACTIONS(2220), - [sym__str_back_ticks] = ACTIONS(2220), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2220), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2220), - [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(2220), - [anon_sym_out_GT_GT] = ACTIONS(2220), - [anon_sym_e_GT_GT] = ACTIONS(2220), - [anon_sym_o_GT_GT] = ACTIONS(2220), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2220), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2220), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2220), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2220), - [aux_sym_unquoted_token1] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2220), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_PLUS_EQ] = ACTIONS(1016), + [anon_sym_DASH_EQ] = ACTIONS(1016), + [anon_sym_STAR_EQ] = ACTIONS(1016), + [anon_sym_SLASH_EQ] = ACTIONS(1016), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1016), + [sym__newline] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_err_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_GT_PIPE] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1016), + [anon_sym_GT2] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_STAR2] = ACTIONS(1014), + [anon_sym_and2] = ACTIONS(1016), + [anon_sym_xor2] = ACTIONS(1016), + [anon_sym_or2] = ACTIONS(1016), + [anon_sym_not_DASHin2] = ACTIONS(1016), + [anon_sym_starts_DASHwith2] = ACTIONS(1016), + [anon_sym_ends_DASHwith2] = ACTIONS(1016), + [anon_sym_EQ_EQ2] = ACTIONS(1016), + [anon_sym_BANG_EQ2] = ACTIONS(1016), + [anon_sym_LT2] = ACTIONS(1014), + [anon_sym_LT_EQ2] = ACTIONS(1016), + [anon_sym_GT_EQ2] = ACTIONS(1016), + [anon_sym_EQ_TILDE2] = ACTIONS(1016), + [anon_sym_BANG_TILDE2] = ACTIONS(1016), + [anon_sym_STAR_STAR2] = ACTIONS(1016), + [anon_sym_PLUS_PLUS2] = ACTIONS(1014), + [anon_sym_SLASH2] = ACTIONS(1014), + [anon_sym_mod2] = ACTIONS(1016), + [anon_sym_SLASH_SLASH2] = ACTIONS(1016), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_bit_DASHshl2] = ACTIONS(1016), + [anon_sym_bit_DASHshr2] = ACTIONS(1016), + [anon_sym_bit_DASHand2] = ACTIONS(1016), + [anon_sym_bit_DASHxor2] = ACTIONS(1016), + [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_DOT_DOT2] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [anon_sym_err_GT_GT] = ACTIONS(1016), + [anon_sym_out_GT_GT] = ACTIONS(1016), + [anon_sym_e_GT_GT] = ACTIONS(1016), + [anon_sym_o_GT_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(247), }, [1423] = { [sym_comment] = STATE(1423), - [aux_sym_cmd_identifier_token41] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(4856), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1609), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1609), + [aux_sym__val_number_token1] = ACTIONS(1609), + [aux_sym__val_number_token2] = ACTIONS(1609), + [aux_sym__val_number_token3] = ACTIONS(1609), + [aux_sym__val_number_token4] = ACTIONS(1609), + [aux_sym__val_number_token5] = ACTIONS(1609), + [aux_sym__val_number_token6] = ACTIONS(1609), + [anon_sym_0b] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1609), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_0o] = ACTIONS(1607), + [anon_sym_0x] = ACTIONS(1607), + [sym_val_date] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym__str_single_quotes] = ACTIONS(1609), + [sym__str_back_ticks] = ACTIONS(1609), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token1] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1609), }, [1424] = { [sym_comment] = STATE(1424), - [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), - [sym__newline] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_err_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_GT_PIPE] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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_0b] = ACTIONS(1826), - [anon_sym_0o] = ACTIONS(1826), - [anon_sym_0x] = ACTIONS(1826), - [sym_val_date] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(1826), - [anon_sym_out_GT] = ACTIONS(1826), - [anon_sym_e_GT] = ACTIONS(1826), - [anon_sym_o_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT] = ACTIONS(1826), - [anon_sym_err_GT_GT] = ACTIONS(1828), - [anon_sym_out_GT_GT] = ACTIONS(1828), - [anon_sym_e_GT_GT] = ACTIONS(1828), - [anon_sym_o_GT_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), - [aux_sym_unquoted_token1] = ACTIONS(1826), - [aux_sym_unquoted_token2] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1828), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1425] = { [sym_comment] = STATE(1425), - [ts_builtin_sym_end] = ACTIONS(4746), - [anon_sym_true] = ACTIONS(4746), - [anon_sym_false] = ACTIONS(4746), - [anon_sym_null] = ACTIONS(4746), - [aux_sym_cmd_identifier_token38] = ACTIONS(4746), - [aux_sym_cmd_identifier_token39] = ACTIONS(4746), - [aux_sym_cmd_identifier_token40] = ACTIONS(4746), - [sym__newline] = ACTIONS(4746), - [anon_sym_SEMI] = ACTIONS(4746), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_err_GT_PIPE] = ACTIONS(4746), - [anon_sym_out_GT_PIPE] = ACTIONS(4746), - [anon_sym_e_GT_PIPE] = ACTIONS(4746), - [anon_sym_o_GT_PIPE] = ACTIONS(4746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4746), - [anon_sym_LBRACK] = ACTIONS(4746), - [anon_sym_LPAREN] = ACTIONS(4746), - [anon_sym_DOLLAR] = ACTIONS(4748), - [anon_sym_DASH_DASH] = ACTIONS(4746), - [anon_sym_DASH] = ACTIONS(4748), - [anon_sym_LBRACE] = ACTIONS(4746), - [anon_sym_DOT_DOT] = ACTIONS(4748), - [anon_sym_DOT_DOT2] = ACTIONS(4858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4748), - [anon_sym_DOT_DOT_LT] = ACTIONS(4748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4860), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4860), - [aux_sym__val_number_decimal_token1] = ACTIONS(4748), - [aux_sym__val_number_decimal_token2] = ACTIONS(4746), - [aux_sym__val_number_decimal_token3] = ACTIONS(4746), - [aux_sym__val_number_decimal_token4] = ACTIONS(4746), - [aux_sym__val_number_token1] = ACTIONS(4746), - [aux_sym__val_number_token2] = ACTIONS(4746), - [aux_sym__val_number_token3] = ACTIONS(4746), - [anon_sym_0b] = ACTIONS(4748), - [anon_sym_0o] = ACTIONS(4748), - [anon_sym_0x] = ACTIONS(4748), - [sym_val_date] = ACTIONS(4746), - [anon_sym_DQUOTE] = ACTIONS(4746), - [sym__str_single_quotes] = ACTIONS(4746), - [sym__str_back_ticks] = ACTIONS(4746), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4746), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4746), - [anon_sym_err_GT] = ACTIONS(4748), - [anon_sym_out_GT] = ACTIONS(4748), - [anon_sym_e_GT] = ACTIONS(4748), - [anon_sym_o_GT] = ACTIONS(4748), - [anon_sym_err_PLUSout_GT] = ACTIONS(4748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4748), - [anon_sym_o_PLUSe_GT] = ACTIONS(4748), - [anon_sym_e_PLUSo_GT] = ACTIONS(4748), - [anon_sym_err_GT_GT] = ACTIONS(4746), - [anon_sym_out_GT_GT] = ACTIONS(4746), - [anon_sym_e_GT_GT] = ACTIONS(4746), - [anon_sym_o_GT_GT] = ACTIONS(4746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4746), - [aux_sym_unquoted_token1] = ACTIONS(4748), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4746), + [ts_builtin_sym_end] = 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(1623), + [anon_sym_DOLLAR] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [anon_sym_null] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1623), + [anon_sym_false] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1621), + [aux_sym__val_number_decimal_token2] = ACTIONS(1623), + [aux_sym__val_number_decimal_token3] = ACTIONS(1623), + [aux_sym__val_number_decimal_token4] = ACTIONS(1623), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1623), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1623), + [anon_sym_0b] = ACTIONS(1621), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1623), + [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_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1623), }, [1426] = { [sym_comment] = STATE(1426), - [sym__newline] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_err_GT_PIPE] = ACTIONS(2107), - [anon_sym_out_GT_PIPE] = ACTIONS(2107), - [anon_sym_e_GT_PIPE] = ACTIONS(2107), - [anon_sym_o_GT_PIPE] = ACTIONS(2107), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2107), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2107), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2107), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2107), - [anon_sym_DASH_DASH] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_EQ_GT] = ACTIONS(2107), - [aux_sym_expr_binary_token1] = ACTIONS(2107), - [aux_sym_expr_binary_token2] = ACTIONS(2107), - [aux_sym_expr_binary_token3] = ACTIONS(2107), - [aux_sym_expr_binary_token4] = ACTIONS(2107), - [aux_sym_expr_binary_token5] = ACTIONS(2107), - [aux_sym_expr_binary_token6] = ACTIONS(2107), - [aux_sym_expr_binary_token7] = ACTIONS(2107), - [aux_sym_expr_binary_token8] = ACTIONS(2107), - [aux_sym_expr_binary_token9] = ACTIONS(2107), - [aux_sym_expr_binary_token10] = ACTIONS(2107), - [aux_sym_expr_binary_token11] = ACTIONS(2107), - [aux_sym_expr_binary_token12] = ACTIONS(2107), - [aux_sym_expr_binary_token13] = ACTIONS(2107), - [aux_sym_expr_binary_token14] = ACTIONS(2107), - [aux_sym_expr_binary_token15] = ACTIONS(2107), - [aux_sym_expr_binary_token16] = ACTIONS(2107), - [aux_sym_expr_binary_token17] = ACTIONS(2107), - [aux_sym_expr_binary_token18] = ACTIONS(2107), - [aux_sym_expr_binary_token19] = ACTIONS(2107), - [aux_sym_expr_binary_token20] = ACTIONS(2107), - [aux_sym_expr_binary_token21] = ACTIONS(2107), - [aux_sym_expr_binary_token22] = ACTIONS(2107), - [aux_sym_expr_binary_token23] = ACTIONS(2107), - [aux_sym_expr_binary_token24] = ACTIONS(2107), - [aux_sym_expr_binary_token25] = ACTIONS(2107), - [aux_sym_expr_binary_token26] = ACTIONS(2107), - [aux_sym_expr_binary_token27] = ACTIONS(2107), - [aux_sym_expr_binary_token28] = ACTIONS(2107), - [anon_sym_DOT_DOT2] = ACTIONS(2105), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2107), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2107), - [aux_sym_record_entry_token1] = ACTIONS(2107), - [anon_sym_err_GT] = ACTIONS(2105), - [anon_sym_out_GT] = ACTIONS(2105), - [anon_sym_e_GT] = ACTIONS(2105), - [anon_sym_o_GT] = ACTIONS(2105), - [anon_sym_err_PLUSout_GT] = ACTIONS(2105), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2105), - [anon_sym_o_PLUSe_GT] = ACTIONS(2105), - [anon_sym_e_PLUSo_GT] = ACTIONS(2105), - [anon_sym_err_GT_GT] = ACTIONS(2107), - [anon_sym_out_GT_GT] = ACTIONS(2107), - [anon_sym_e_GT_GT] = ACTIONS(2107), - [anon_sym_o_GT_GT] = ACTIONS(2107), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2107), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2107), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2107), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2107), - [anon_sym_POUND] = ACTIONS(249), + [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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(1757), }, [1427] = { [sym_comment] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(2232), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [anon_sym_null] = ACTIONS(2232), - [aux_sym_cmd_identifier_token38] = ACTIONS(2232), - [aux_sym_cmd_identifier_token39] = ACTIONS(2232), - [aux_sym_cmd_identifier_token40] = ACTIONS(2232), - [sym__newline] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_err_GT_PIPE] = ACTIONS(2232), - [anon_sym_out_GT_PIPE] = ACTIONS(2232), - [anon_sym_e_GT_PIPE] = ACTIONS(2232), - [anon_sym_o_GT_PIPE] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_DOT_DOT] = ACTIONS(2230), - [anon_sym_DOT_DOT2] = ACTIONS(2230), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2230), - [anon_sym_DOT_DOT_LT] = ACTIONS(2230), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), - [aux_sym__val_number_decimal_token1] = ACTIONS(2230), - [aux_sym__val_number_decimal_token2] = ACTIONS(2232), - [aux_sym__val_number_decimal_token3] = ACTIONS(2232), - [aux_sym__val_number_decimal_token4] = ACTIONS(2232), - [aux_sym__val_number_token1] = ACTIONS(2232), - [aux_sym__val_number_token2] = ACTIONS(2232), - [aux_sym__val_number_token3] = ACTIONS(2232), - [anon_sym_0b] = ACTIONS(2230), - [anon_sym_0o] = ACTIONS(2230), - [anon_sym_0x] = ACTIONS(2230), - [sym_val_date] = ACTIONS(2232), - [anon_sym_DQUOTE] = ACTIONS(2232), - [sym__str_single_quotes] = ACTIONS(2232), - [sym__str_back_ticks] = ACTIONS(2232), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2232), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2232), - [anon_sym_err_GT] = ACTIONS(2230), - [anon_sym_out_GT] = ACTIONS(2230), - [anon_sym_e_GT] = ACTIONS(2230), - [anon_sym_o_GT] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT] = ACTIONS(2230), - [anon_sym_err_GT_GT] = ACTIONS(2232), - [anon_sym_out_GT_GT] = ACTIONS(2232), - [anon_sym_e_GT_GT] = ACTIONS(2232), - [anon_sym_o_GT_GT] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), - [aux_sym_unquoted_token1] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2232), + [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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(4750), + [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__immediate_decimal_token2] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), }, [1428] = { [sym_comment] = STATE(1428), - [ts_builtin_sym_end] = ACTIONS(2240), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token38] = ACTIONS(2240), - [aux_sym_cmd_identifier_token39] = ACTIONS(2240), - [aux_sym_cmd_identifier_token40] = ACTIONS(2240), - [sym__newline] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_err_GT_PIPE] = ACTIONS(2240), - [anon_sym_out_GT_PIPE] = ACTIONS(2240), - [anon_sym_e_GT_PIPE] = ACTIONS(2240), - [anon_sym_o_GT_PIPE] = ACTIONS(2240), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2240), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2240), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2240), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_DOLLAR] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2240), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_DOT_DOT2] = ACTIONS(4862), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2234), - [anon_sym_DOT_DOT_LT] = ACTIONS(2234), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4864), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4864), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2240), - [aux_sym__val_number_decimal_token3] = ACTIONS(2240), - [aux_sym__val_number_decimal_token4] = ACTIONS(2240), - [aux_sym__val_number_token1] = ACTIONS(2240), - [aux_sym__val_number_token2] = ACTIONS(2240), - [aux_sym__val_number_token3] = ACTIONS(2240), - [anon_sym_0b] = ACTIONS(2234), - [anon_sym_0o] = ACTIONS(2234), - [anon_sym_0x] = ACTIONS(2234), - [sym_val_date] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2240), - [sym__str_single_quotes] = ACTIONS(2240), - [sym__str_back_ticks] = ACTIONS(2240), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2240), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2240), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2240), - [anon_sym_out_GT_GT] = ACTIONS(2240), - [anon_sym_e_GT_GT] = ACTIONS(2240), - [anon_sym_o_GT_GT] = ACTIONS(2240), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2240), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2240), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2240), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2240), - [aux_sym_unquoted_token1] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2240), + [ts_builtin_sym_end] = ACTIONS(1675), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1673), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), + [anon_sym_DOT_DOT_LT] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [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), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1675), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_0o] = ACTIONS(1673), + [anon_sym_0x] = ACTIONS(1673), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token1] = ACTIONS(1673), + [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1675), }, [1429] = { [sym_comment] = STATE(1429), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_null] = ACTIONS(2281), - [aux_sym_cmd_identifier_token38] = ACTIONS(2281), - [aux_sym_cmd_identifier_token39] = ACTIONS(2281), - [aux_sym_cmd_identifier_token40] = ACTIONS(2281), - [sym__newline] = ACTIONS(2285), - [anon_sym_SEMI] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_err_GT_PIPE] = ACTIONS(2285), - [anon_sym_out_GT_PIPE] = ACTIONS(2285), - [anon_sym_e_GT_PIPE] = ACTIONS(2285), - [anon_sym_o_GT_PIPE] = ACTIONS(2285), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2285), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2285), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2285), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_DOT_DOT] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2283), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2281), - [anon_sym_DOT_DOT_LT] = ACTIONS(2281), - [aux_sym__val_number_decimal_token1] = ACTIONS(2281), - [aux_sym__val_number_decimal_token2] = ACTIONS(2281), - [aux_sym__val_number_decimal_token3] = ACTIONS(2281), - [aux_sym__val_number_decimal_token4] = ACTIONS(2281), - [aux_sym__val_number_token1] = ACTIONS(2281), - [aux_sym__val_number_token2] = ACTIONS(2281), - [aux_sym__val_number_token3] = ACTIONS(2281), - [anon_sym_0b] = ACTIONS(2281), - [anon_sym_0o] = ACTIONS(2281), - [anon_sym_0x] = ACTIONS(2281), - [sym_val_date] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2285), - [sym__str_single_quotes] = ACTIONS(2285), - [sym__str_back_ticks] = ACTIONS(2285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2285), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2281), - [anon_sym_out_GT_GT] = ACTIONS(2281), - [anon_sym_e_GT_GT] = ACTIONS(2281), - [anon_sym_o_GT_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2281), - [aux_sym_unquoted_token1] = ACTIONS(2281), - [aux_sym_unquoted_token4] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2285), + [ts_builtin_sym_end] = ACTIONS(1765), + [sym__newline] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_err_GT_PIPE] = ACTIONS(1765), + [anon_sym_out_GT_PIPE] = ACTIONS(1765), + [anon_sym_e_GT_PIPE] = ACTIONS(1765), + [anon_sym_o_GT_PIPE] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_DOT_DOT] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [anon_sym_null] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(1765), + [anon_sym_false] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1763), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_0b] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1765), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1763), + [anon_sym_0x] = ACTIONS(1763), + [sym_val_date] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1765), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), + [anon_sym_err_GT] = ACTIONS(1763), + [anon_sym_out_GT] = ACTIONS(1763), + [anon_sym_e_GT] = ACTIONS(1763), + [anon_sym_o_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT] = ACTIONS(1763), + [anon_sym_err_GT_GT] = ACTIONS(1765), + [anon_sym_out_GT_GT] = ACTIONS(1765), + [anon_sym_e_GT_GT] = ACTIONS(1765), + [anon_sym_o_GT_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), + [aux_sym_unquoted_token1] = ACTIONS(1763), + [aux_sym_unquoted_token2] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1765), }, [1430] = { - [sym__expr_parenthesized_immediate] = STATE(7420), [sym_comment] = STATE(1430), - [ts_builtin_sym_end] = ACTIONS(1640), - [sym__newline] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_err_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_GT_PIPE] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(1640), - [aux_sym_expr_binary_token2] = ACTIONS(1640), - [aux_sym_expr_binary_token3] = ACTIONS(1640), - [aux_sym_expr_binary_token4] = ACTIONS(1640), - [aux_sym_expr_binary_token5] = ACTIONS(1640), - [aux_sym_expr_binary_token6] = ACTIONS(1640), - [aux_sym_expr_binary_token7] = ACTIONS(1640), - [aux_sym_expr_binary_token8] = ACTIONS(1640), - [aux_sym_expr_binary_token9] = ACTIONS(1640), - [aux_sym_expr_binary_token10] = ACTIONS(1640), - [aux_sym_expr_binary_token11] = ACTIONS(1640), - [aux_sym_expr_binary_token12] = ACTIONS(1640), - [aux_sym_expr_binary_token13] = ACTIONS(1640), - [aux_sym_expr_binary_token14] = ACTIONS(1640), - [aux_sym_expr_binary_token15] = ACTIONS(1640), - [aux_sym_expr_binary_token16] = ACTIONS(1640), - [aux_sym_expr_binary_token17] = ACTIONS(1640), - [aux_sym_expr_binary_token18] = ACTIONS(1640), - [aux_sym_expr_binary_token19] = ACTIONS(1640), - [aux_sym_expr_binary_token20] = ACTIONS(1640), - [aux_sym_expr_binary_token21] = ACTIONS(1640), - [aux_sym_expr_binary_token22] = ACTIONS(1640), - [aux_sym_expr_binary_token23] = ACTIONS(1640), - [aux_sym_expr_binary_token24] = ACTIONS(1640), - [aux_sym_expr_binary_token25] = ACTIONS(1640), - [aux_sym_expr_binary_token26] = ACTIONS(1640), - [aux_sym_expr_binary_token27] = ACTIONS(1640), - [aux_sym_expr_binary_token28] = ACTIONS(1640), - [anon_sym_DOT_DOT2] = ACTIONS(4762), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4764), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4764), - [sym_filesize_unit] = ACTIONS(4866), - [sym_duration_unit] = ACTIONS(4868), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [anon_sym_err_GT_GT] = ACTIONS(1640), - [anon_sym_out_GT_GT] = ACTIONS(1640), - [anon_sym_e_GT_GT] = ACTIONS(1640), - [anon_sym_o_GT_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), - [aux_sym_unquoted_token2] = ACTIONS(4870), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(996), + [aux_sym__val_number_token5] = ACTIONS(996), + [aux_sym__val_number_token6] = ACTIONS(996), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [sym_val_date] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [aux_sym_unquoted_token1] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), }, [1431] = { [sym_comment] = STATE(1431), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [ts_builtin_sym_end] = ACTIONS(996), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(996), + [anon_sym_xor2] = ACTIONS(996), + [anon_sym_or2] = ACTIONS(996), + [anon_sym_not_DASHin2] = ACTIONS(996), + [anon_sym_starts_DASHwith2] = ACTIONS(996), + [anon_sym_ends_DASHwith2] = ACTIONS(996), + [anon_sym_EQ_EQ2] = ACTIONS(996), + [anon_sym_BANG_EQ2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(996), + [anon_sym_GT_EQ2] = ACTIONS(996), + [anon_sym_EQ_TILDE2] = ACTIONS(996), + [anon_sym_BANG_TILDE2] = ACTIONS(996), + [anon_sym_STAR_STAR2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(996), + [anon_sym_SLASH_SLASH2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(996), + [anon_sym_bit_DASHshr2] = ACTIONS(996), + [anon_sym_bit_DASHand2] = ACTIONS(996), + [anon_sym_bit_DASHxor2] = ACTIONS(996), + [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), }, [1432] = { - [sym_cmd_identifier] = STATE(4613), - [sym_expr_parenthesized] = STATE(4613), - [sym_val_variable] = STATE(4613), - [sym__val_number_decimal] = STATE(7191), - [sym_val_string] = STATE(4613), - [sym__raw_str] = STATE(4414), - [sym__str_double_quotes] = STATE(4414), - [sym_val_interpolated] = STATE(4613), - [sym__inter_single_quotes] = STATE(4787), - [sym__inter_double_quotes] = STATE(4810), [sym_comment] = STATE(1432), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(373), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(4872), - [anon_sym_false] = ACTIONS(4872), - [anon_sym_null] = ACTIONS(4872), - [aux_sym_cmd_identifier_token38] = ACTIONS(4874), - [aux_sym_cmd_identifier_token39] = ACTIONS(4872), - [aux_sym_cmd_identifier_token40] = ACTIONS(4872), - [anon_sym_LPAREN] = ACTIONS(4876), - [anon_sym_DOLLAR] = ACTIONS(4273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1343), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1991), + [anon_sym_EQ] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1012), + [anon_sym_DASH_EQ] = ACTIONS(1012), + [anon_sym_STAR_EQ] = ACTIONS(1012), + [anon_sym_SLASH_EQ] = ACTIONS(1012), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1012), + [sym__newline] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_in2] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1010), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1010), + [anon_sym_SLASH2] = ACTIONS(1010), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1010), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [aux_sym_record_entry_token1] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(247), }, [1433] = { [sym_comment] = STATE(1433), - [ts_builtin_sym_end] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_null] = ACTIONS(2119), - [aux_sym_cmd_identifier_token38] = ACTIONS(2119), - [aux_sym_cmd_identifier_token39] = ACTIONS(2119), - [aux_sym_cmd_identifier_token40] = ACTIONS(2119), - [sym__newline] = ACTIONS(2119), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_err_GT_PIPE] = ACTIONS(2119), - [anon_sym_out_GT_PIPE] = ACTIONS(2119), - [anon_sym_e_GT_PIPE] = ACTIONS(2119), - [anon_sym_o_GT_PIPE] = ACTIONS(2119), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2119), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2119), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2119), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_DOLLAR] = ACTIONS(2113), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2113), - [anon_sym_DOT_DOT2] = ACTIONS(4878), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2113), - [anon_sym_DOT_DOT_LT] = ACTIONS(2113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4880), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4880), - [aux_sym__val_number_decimal_token1] = ACTIONS(2113), - [aux_sym__val_number_decimal_token2] = ACTIONS(2119), - [aux_sym__val_number_decimal_token3] = ACTIONS(2119), - [aux_sym__val_number_decimal_token4] = ACTIONS(2119), - [aux_sym__val_number_token1] = ACTIONS(2119), - [aux_sym__val_number_token2] = ACTIONS(2119), - [aux_sym__val_number_token3] = ACTIONS(2119), - [anon_sym_0b] = ACTIONS(2113), - [anon_sym_0o] = ACTIONS(2113), - [anon_sym_0x] = ACTIONS(2113), - [sym_val_date] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [sym__str_single_quotes] = ACTIONS(2119), - [sym__str_back_ticks] = ACTIONS(2119), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2119), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2119), - [anon_sym_err_GT] = ACTIONS(2113), - [anon_sym_out_GT] = ACTIONS(2113), - [anon_sym_e_GT] = ACTIONS(2113), - [anon_sym_o_GT] = ACTIONS(2113), - [anon_sym_err_PLUSout_GT] = ACTIONS(2113), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2113), - [anon_sym_o_PLUSe_GT] = ACTIONS(2113), - [anon_sym_e_PLUSo_GT] = ACTIONS(2113), - [anon_sym_err_GT_GT] = ACTIONS(2119), - [anon_sym_out_GT_GT] = ACTIONS(2119), - [anon_sym_e_GT_GT] = ACTIONS(2119), - [anon_sym_o_GT_GT] = ACTIONS(2119), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2119), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2119), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2119), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2119), - [aux_sym_unquoted_token1] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2119), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_PLUS_EQ] = ACTIONS(1016), + [anon_sym_DASH_EQ] = ACTIONS(1016), + [anon_sym_STAR_EQ] = ACTIONS(1016), + [anon_sym_SLASH_EQ] = ACTIONS(1016), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1016), + [sym__newline] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_err_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_GT_PIPE] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_GT2] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_STAR2] = ACTIONS(1014), + [anon_sym_and2] = ACTIONS(1016), + [anon_sym_xor2] = ACTIONS(1016), + [anon_sym_or2] = ACTIONS(1016), + [anon_sym_not_DASHin2] = ACTIONS(1016), + [anon_sym_starts_DASHwith2] = ACTIONS(1016), + [anon_sym_ends_DASHwith2] = ACTIONS(1016), + [anon_sym_EQ_EQ2] = ACTIONS(1016), + [anon_sym_BANG_EQ2] = ACTIONS(1016), + [anon_sym_LT2] = ACTIONS(1014), + [anon_sym_LT_EQ2] = ACTIONS(1016), + [anon_sym_GT_EQ2] = ACTIONS(1016), + [anon_sym_EQ_TILDE2] = ACTIONS(1016), + [anon_sym_BANG_TILDE2] = ACTIONS(1016), + [anon_sym_STAR_STAR2] = ACTIONS(1016), + [anon_sym_PLUS_PLUS2] = ACTIONS(1014), + [anon_sym_SLASH2] = ACTIONS(1014), + [anon_sym_mod2] = ACTIONS(1016), + [anon_sym_SLASH_SLASH2] = ACTIONS(1016), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_bit_DASHshl2] = ACTIONS(1016), + [anon_sym_bit_DASHshr2] = ACTIONS(1016), + [anon_sym_bit_DASHand2] = ACTIONS(1016), + [anon_sym_bit_DASHxor2] = ACTIONS(1016), + [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_DOT_DOT2] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), + [aux_sym_record_entry_token1] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [anon_sym_err_GT_GT] = ACTIONS(1016), + [anon_sym_out_GT_GT] = ACTIONS(1016), + [anon_sym_e_GT_GT] = ACTIONS(1016), + [anon_sym_o_GT_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(247), }, [1434] = { - [sym_path] = STATE(1589), [sym_comment] = STATE(1434), - [aux_sym_cell_path_repeat1] = STATE(1439), - [ts_builtin_sym_end] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [anon_sym_null] = ACTIONS(1029), - [aux_sym_cmd_identifier_token38] = ACTIONS(1029), - [aux_sym_cmd_identifier_token39] = ACTIONS(1029), - [aux_sym_cmd_identifier_token40] = ACTIONS(1029), - [sym__newline] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_err_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_GT_PIPE] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [anon_sym_DOT_DOT_LT] = ACTIONS(1029), - [aux_sym__val_number_decimal_token1] = ACTIONS(1027), - [aux_sym__val_number_decimal_token2] = ACTIONS(1029), - [aux_sym__val_number_decimal_token3] = ACTIONS(1029), - [aux_sym__val_number_decimal_token4] = ACTIONS(1029), - [aux_sym__val_number_token1] = ACTIONS(1029), - [aux_sym__val_number_token2] = ACTIONS(1029), - [aux_sym__val_number_token3] = ACTIONS(1029), - [anon_sym_0b] = ACTIONS(1027), - [anon_sym_0o] = ACTIONS(1027), - [anon_sym_0x] = ACTIONS(1027), - [sym_val_date] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [sym__str_single_quotes] = ACTIONS(1029), - [sym__str_back_ticks] = ACTIONS(1029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), - [anon_sym_err_GT] = ACTIONS(1027), - [anon_sym_out_GT] = ACTIONS(1027), - [anon_sym_e_GT] = ACTIONS(1027), - [anon_sym_o_GT] = ACTIONS(1027), - [anon_sym_err_PLUSout_GT] = ACTIONS(1027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), - [anon_sym_o_PLUSe_GT] = ACTIONS(1027), - [anon_sym_e_PLUSo_GT] = ACTIONS(1027), - [anon_sym_err_GT_GT] = ACTIONS(1029), - [anon_sym_out_GT_GT] = ACTIONS(1029), - [anon_sym_e_GT_GT] = ACTIONS(1029), - [anon_sym_o_GT_GT] = ACTIONS(1029), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), - [aux_sym_unquoted_token1] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1029), + [anon_sym_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [sym__newline] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_err_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_GT_PIPE] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), + [anon_sym_GT2] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_STAR2] = ACTIONS(2214), + [anon_sym_and2] = ACTIONS(2214), + [anon_sym_xor2] = ACTIONS(2214), + [anon_sym_or2] = ACTIONS(2214), + [anon_sym_not_DASHin2] = ACTIONS(2214), + [anon_sym_starts_DASHwith2] = ACTIONS(2214), + [anon_sym_ends_DASHwith2] = ACTIONS(2214), + [anon_sym_EQ_EQ2] = ACTIONS(2214), + [anon_sym_BANG_EQ2] = ACTIONS(2214), + [anon_sym_LT2] = ACTIONS(2214), + [anon_sym_LT_EQ2] = ACTIONS(2214), + [anon_sym_GT_EQ2] = ACTIONS(2214), + [anon_sym_EQ_TILDE2] = ACTIONS(2214), + [anon_sym_BANG_TILDE2] = ACTIONS(2214), + [anon_sym_STAR_STAR2] = ACTIONS(2214), + [anon_sym_PLUS_PLUS2] = ACTIONS(2214), + [anon_sym_SLASH2] = ACTIONS(2214), + [anon_sym_mod2] = ACTIONS(2214), + [anon_sym_SLASH_SLASH2] = ACTIONS(2214), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_bit_DASHshl2] = ACTIONS(2214), + [anon_sym_bit_DASHshr2] = ACTIONS(2214), + [anon_sym_bit_DASHand2] = ACTIONS(2214), + [anon_sym_bit_DASHxor2] = ACTIONS(2214), + [anon_sym_bit_DASHor2] = ACTIONS(2214), + [anon_sym_POUND] = ACTIONS(3), }, [1435] = { [sym_comment] = STATE(1435), - [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), - [anon_sym_LBRACE] = 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_STAR_STAR] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_bit_DASHshl] = ACTIONS(3183), + [anon_sym_bit_DASHshr] = ACTIONS(3183), + [anon_sym_EQ_TILDE] = ACTIONS(3183), + [anon_sym_BANG_TILDE] = ACTIONS(3183), + [anon_sym_bit_DASHand] = ACTIONS(3183), + [anon_sym_bit_DASHxor] = ACTIONS(3183), + [anon_sym_bit_DASHor] = ACTIONS(3183), + [anon_sym_and] = ACTIONS(3183), + [anon_sym_xor] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_not_DASHin] = ACTIONS(3183), + [anon_sym_starts_DASHwith] = ACTIONS(3183), + [anon_sym_ends_DASHwith] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3183), + [aux_sym_cmd_identifier_token41] = ACTIONS(3187), + [sym__newline] = 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_GT2] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_in2] = ACTIONS(2222), + [anon_sym_STAR2] = ACTIONS(2222), + [anon_sym_and2] = ACTIONS(2222), + [anon_sym_xor2] = ACTIONS(2222), + [anon_sym_or2] = ACTIONS(2222), + [anon_sym_not_DASHin2] = ACTIONS(2222), + [anon_sym_starts_DASHwith2] = ACTIONS(2222), + [anon_sym_ends_DASHwith2] = ACTIONS(2222), + [anon_sym_EQ_EQ2] = ACTIONS(2222), + [anon_sym_BANG_EQ2] = ACTIONS(2222), + [anon_sym_LT2] = ACTIONS(2222), + [anon_sym_LT_EQ2] = ACTIONS(2222), + [anon_sym_GT_EQ2] = ACTIONS(2222), + [anon_sym_EQ_TILDE2] = ACTIONS(2222), + [anon_sym_BANG_TILDE2] = ACTIONS(2222), + [anon_sym_STAR_STAR2] = ACTIONS(2222), + [anon_sym_PLUS_PLUS2] = ACTIONS(2222), + [anon_sym_SLASH2] = ACTIONS(2222), + [anon_sym_mod2] = ACTIONS(2222), + [anon_sym_SLASH_SLASH2] = ACTIONS(2222), + [anon_sym_PLUS2] = ACTIONS(2222), + [anon_sym_bit_DASHshl2] = ACTIONS(2222), + [anon_sym_bit_DASHshr2] = ACTIONS(2222), + [anon_sym_bit_DASHand2] = ACTIONS(2222), + [anon_sym_bit_DASHxor2] = ACTIONS(2222), + [anon_sym_bit_DASHor2] = ACTIONS(2222), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2297), }, [1436] = { [sym_comment] = STATE(1436), - [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), - [sym__newline] = ACTIONS(2305), - [anon_sym_SEMI] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_err_GT_PIPE] = ACTIONS(2305), - [anon_sym_out_GT_PIPE] = ACTIONS(2305), - [anon_sym_e_GT_PIPE] = ACTIONS(2305), - [anon_sym_o_GT_PIPE] = ACTIONS(2305), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2305), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2305), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2305), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_RPAREN] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2303), - [anon_sym_DOT_DOT_LT] = 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_0b] = ACTIONS(2303), - [anon_sym_0o] = ACTIONS(2303), - [anon_sym_0x] = ACTIONS(2303), - [sym_val_date] = ACTIONS(2303), - [anon_sym_DQUOTE] = ACTIONS(2305), - [sym__str_single_quotes] = ACTIONS(2305), - [sym__str_back_ticks] = ACTIONS(2305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2305), - [anon_sym_err_GT] = ACTIONS(2303), - [anon_sym_out_GT] = ACTIONS(2303), - [anon_sym_e_GT] = ACTIONS(2303), - [anon_sym_o_GT] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT] = ACTIONS(2303), - [anon_sym_err_GT_GT] = ACTIONS(2303), - [anon_sym_out_GT_GT] = ACTIONS(2303), - [anon_sym_e_GT_GT] = ACTIONS(2303), - [anon_sym_o_GT_GT] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2303), - [aux_sym_unquoted_token1] = ACTIONS(2303), - [aux_sym_unquoted_token4] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2305), + [ts_builtin_sym_end] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(998), + [anon_sym_PLUS_EQ] = ACTIONS(1000), + [anon_sym_DASH_EQ] = ACTIONS(1000), + [anon_sym_STAR_EQ] = ACTIONS(1000), + [anon_sym_SLASH_EQ] = ACTIONS(1000), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1000), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(998), + [anon_sym_SLASH2] = ACTIONS(998), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), }, [1437] = { [sym_comment] = STATE(1437), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(992), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_PLUS_EQ] = ACTIONS(992), + [anon_sym_DASH_EQ] = ACTIONS(992), + [anon_sym_STAR_EQ] = ACTIONS(992), + [anon_sym_SLASH_EQ] = ACTIONS(992), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_GT2] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(992), + [anon_sym_STAR2] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_and2] = ACTIONS(992), + [anon_sym_xor2] = ACTIONS(992), + [anon_sym_or2] = ACTIONS(992), + [anon_sym_not_DASHin2] = ACTIONS(992), + [anon_sym_starts_DASHwith2] = ACTIONS(992), + [anon_sym_ends_DASHwith2] = ACTIONS(992), + [anon_sym_EQ_EQ2] = ACTIONS(992), + [anon_sym_BANG_EQ2] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(990), + [anon_sym_LT_EQ2] = ACTIONS(992), + [anon_sym_GT_EQ2] = ACTIONS(992), + [anon_sym_EQ_TILDE2] = ACTIONS(992), + [anon_sym_BANG_TILDE2] = ACTIONS(992), + [anon_sym_STAR_STAR2] = ACTIONS(992), + [anon_sym_PLUS_PLUS2] = ACTIONS(990), + [anon_sym_SLASH2] = ACTIONS(990), + [anon_sym_mod2] = ACTIONS(992), + [anon_sym_SLASH_SLASH2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_bit_DASHshl2] = ACTIONS(992), + [anon_sym_bit_DASHshr2] = ACTIONS(992), + [anon_sym_bit_DASHand2] = ACTIONS(992), + [anon_sym_bit_DASHxor2] = ACTIONS(992), + [anon_sym_bit_DASHor2] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), }, [1438] = { [sym_comment] = STATE(1438), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_DOT_DOT2] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), - [anon_sym_DOT_DOT_LT] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [anon_sym_DASH_EQ] = ACTIONS(1004), + [anon_sym_STAR_EQ] = ACTIONS(1004), + [anon_sym_SLASH_EQ] = ACTIONS(1004), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), }, [1439] = { - [sym_path] = STATE(1589), [sym_comment] = STATE(1439), - [aux_sym_cell_path_repeat1] = STATE(1439), - [ts_builtin_sym_end] = ACTIONS(1033), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_null] = ACTIONS(1033), - [aux_sym_cmd_identifier_token38] = ACTIONS(1033), - [aux_sym_cmd_identifier_token39] = ACTIONS(1033), - [aux_sym_cmd_identifier_token40] = ACTIONS(1033), - [sym__newline] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_err_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_GT_PIPE] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_DOT_DOT] = ACTIONS(1031), - [anon_sym_DOT] = ACTIONS(4882), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), - [anon_sym_DOT_DOT_LT] = ACTIONS(1033), - [aux_sym__val_number_decimal_token1] = ACTIONS(1031), - [aux_sym__val_number_decimal_token2] = ACTIONS(1033), - [aux_sym__val_number_decimal_token3] = ACTIONS(1033), - [aux_sym__val_number_decimal_token4] = ACTIONS(1033), - [aux_sym__val_number_token1] = ACTIONS(1033), - [aux_sym__val_number_token2] = ACTIONS(1033), - [aux_sym__val_number_token3] = ACTIONS(1033), - [anon_sym_0b] = ACTIONS(1031), - [anon_sym_0o] = ACTIONS(1031), - [anon_sym_0x] = ACTIONS(1031), - [sym_val_date] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [sym__str_single_quotes] = ACTIONS(1033), - [sym__str_back_ticks] = ACTIONS(1033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), - [anon_sym_err_GT] = ACTIONS(1031), - [anon_sym_out_GT] = ACTIONS(1031), - [anon_sym_e_GT] = ACTIONS(1031), - [anon_sym_o_GT] = ACTIONS(1031), - [anon_sym_err_PLUSout_GT] = ACTIONS(1031), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), - [anon_sym_o_PLUSe_GT] = ACTIONS(1031), - [anon_sym_e_PLUSo_GT] = ACTIONS(1031), - [anon_sym_err_GT_GT] = ACTIONS(1033), - [anon_sym_out_GT_GT] = ACTIONS(1033), - [anon_sym_e_GT_GT] = ACTIONS(1033), - [anon_sym_o_GT_GT] = ACTIONS(1033), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), - [aux_sym_unquoted_token1] = ACTIONS(1031), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1033), + [ts_builtin_sym_end] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_GT2] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_STAR2] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(4754), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(986), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), }, [1440] = { [sym_comment] = STATE(1440), - [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(4885), - [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(249), - [sym_raw_string_begin] = ACTIONS(1044), + [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(1878), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_DOT_DOT] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DOT_DOT2] = ACTIONS(4756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1878), + [anon_sym_DOT_DOT_LT] = ACTIONS(1878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4758), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4758), + [anon_sym_null] = ACTIONS(1886), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [aux_sym__val_number_decimal_token1] = ACTIONS(1878), + [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), + [aux_sym__val_number_token4] = ACTIONS(1886), + [aux_sym__val_number_token5] = ACTIONS(1886), + [aux_sym__val_number_token6] = ACTIONS(1886), + [anon_sym_0b] = ACTIONS(1878), + [anon_sym_0o] = ACTIONS(1878), + [anon_sym_0x] = ACTIONS(1878), + [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(1878), + [anon_sym_out_GT] = ACTIONS(1878), + [anon_sym_e_GT] = ACTIONS(1878), + [anon_sym_o_GT] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT] = ACTIONS(1878), + [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(1878), + [aux_sym_unquoted_token2] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1886), }, [1441] = { [sym_comment] = STATE(1441), - [ts_builtin_sym_end] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [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_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [ts_builtin_sym_end] = ACTIONS(1721), + [sym__newline] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_err_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_GT_PIPE] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1721), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(4708), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4710), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4710), + [anon_sym_null] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [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), + [aux_sym__val_number_token4] = ACTIONS(1721), + [aux_sym__val_number_token5] = ACTIONS(1721), + [aux_sym__val_number_token6] = ACTIONS(1721), + [anon_sym_0b] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(4760), + [sym_duration_unit] = ACTIONS(4762), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1721), + [anon_sym_out_GT_GT] = ACTIONS(1721), + [anon_sym_e_GT_GT] = ACTIONS(1721), + [anon_sym_o_GT_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(4764), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1721), }, [1442] = { [sym_comment] = STATE(1442), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_err_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_GT_PIPE] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_DOT_DOT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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_0b] = ACTIONS(1826), - [anon_sym_0o] = ACTIONS(1826), - [anon_sym_0x] = ACTIONS(1826), - [sym_val_date] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(1826), - [anon_sym_out_GT] = ACTIONS(1826), - [anon_sym_e_GT] = ACTIONS(1826), - [anon_sym_o_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT] = ACTIONS(1826), - [anon_sym_err_GT_GT] = ACTIONS(1828), - [anon_sym_out_GT_GT] = ACTIONS(1828), - [anon_sym_e_GT_GT] = ACTIONS(1828), - [anon_sym_o_GT_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), - [aux_sym_unquoted_token1] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1828), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), + [anon_sym_DOT_DOT_LT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(4766), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [aux_sym_unquoted_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, [1443] = { [sym_comment] = STATE(1443), - [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_QMARK2] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), - [anon_sym_DOT_DOT_LT] = 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(249), - [sym_raw_string_begin] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1006), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1006), + [anon_sym_SLASH2] = ACTIONS(1006), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), }, [1444] = { + [sym_path] = STATE(1510), [sym_comment] = STATE(1444), - [sym__newline] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4796), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1446), + [ts_builtin_sym_end] = ACTIONS(969), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_DASH_DASH] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_DOT_DOT_LT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [anon_sym_null] = ACTIONS(969), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(969), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(969), + [aux_sym__val_number_token1] = ACTIONS(969), + [aux_sym__val_number_token2] = ACTIONS(969), + [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_token4] = ACTIONS(969), + [aux_sym__val_number_token5] = ACTIONS(969), + [aux_sym__val_number_token6] = ACTIONS(969), + [anon_sym_0b] = ACTIONS(967), + [anon_sym_0o] = ACTIONS(967), + [anon_sym_0x] = ACTIONS(967), + [sym_val_date] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [aux_sym_unquoted_token1] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(969), }, [1445] = { [sym_comment] = STATE(1445), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1530), - [aux_sym_expr_binary_token1] = ACTIONS(1530), - [aux_sym_expr_binary_token2] = ACTIONS(1530), - [aux_sym_expr_binary_token3] = ACTIONS(1530), - [aux_sym_expr_binary_token4] = ACTIONS(1530), - [aux_sym_expr_binary_token5] = ACTIONS(1530), - [aux_sym_expr_binary_token6] = ACTIONS(1530), - [aux_sym_expr_binary_token7] = ACTIONS(1530), - [aux_sym_expr_binary_token8] = ACTIONS(1530), - [aux_sym_expr_binary_token9] = ACTIONS(1530), - [aux_sym_expr_binary_token10] = ACTIONS(1530), - [aux_sym_expr_binary_token11] = ACTIONS(1530), - [aux_sym_expr_binary_token12] = ACTIONS(1530), - [aux_sym_expr_binary_token13] = ACTIONS(1530), - [aux_sym_expr_binary_token14] = ACTIONS(1530), - [aux_sym_expr_binary_token15] = ACTIONS(1530), - [aux_sym_expr_binary_token16] = ACTIONS(1530), - [aux_sym_expr_binary_token17] = ACTIONS(1530), - [aux_sym_expr_binary_token18] = ACTIONS(1530), - [aux_sym_expr_binary_token19] = ACTIONS(1530), - [aux_sym_expr_binary_token20] = ACTIONS(1530), - [aux_sym_expr_binary_token21] = ACTIONS(1530), - [aux_sym_expr_binary_token22] = ACTIONS(1530), - [aux_sym_expr_binary_token23] = ACTIONS(1530), - [aux_sym_expr_binary_token24] = ACTIONS(1530), - [aux_sym_expr_binary_token25] = ACTIONS(1530), - [aux_sym_expr_binary_token26] = ACTIONS(1530), - [aux_sym_expr_binary_token27] = ACTIONS(1530), - [aux_sym_expr_binary_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_GT2] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_STAR2] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(4768), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_starts_DASHwith2] = ACTIONS(980), + [anon_sym_ends_DASHwith2] = ACTIONS(980), + [anon_sym_EQ_EQ2] = ACTIONS(980), + [anon_sym_BANG_EQ2] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(978), + [anon_sym_LT_EQ2] = ACTIONS(980), + [anon_sym_GT_EQ2] = ACTIONS(980), + [anon_sym_EQ_TILDE2] = ACTIONS(980), + [anon_sym_BANG_TILDE2] = ACTIONS(980), + [anon_sym_STAR_STAR2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(978), + [anon_sym_SLASH2] = ACTIONS(978), + [anon_sym_mod2] = ACTIONS(980), + [anon_sym_SLASH_SLASH2] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_bit_DASHshl2] = ACTIONS(980), + [anon_sym_bit_DASHshr2] = ACTIONS(980), + [anon_sym_bit_DASHand2] = ACTIONS(980), + [anon_sym_bit_DASHxor2] = ACTIONS(980), + [anon_sym_bit_DASHor2] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), }, [1446] = { + [sym_path] = STATE(1510), [sym_comment] = STATE(1446), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_LPAREN2] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(4887), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1446), + [ts_builtin_sym_end] = ACTIONS(973), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4770), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_DOT_DOT_LT] = ACTIONS(971), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(971), + [aux_sym__val_number_decimal_token2] = ACTIONS(973), + [aux_sym__val_number_decimal_token3] = ACTIONS(973), + [aux_sym__val_number_decimal_token4] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(971), + [anon_sym_0o] = ACTIONS(971), + [anon_sym_0x] = ACTIONS(971), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [aux_sym_unquoted_token1] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(973), }, [1447] = { [sym_comment] = STATE(1447), - [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_QMARK2] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), - [anon_sym_DOT_DOT_LT] = 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(249), - [sym_raw_string_begin] = ACTIONS(1060), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [anon_sym_null] = ACTIONS(1000), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [anon_sym_0b] = ACTIONS(998), + [anon_sym_0o] = ACTIONS(998), + [anon_sym_0x] = ACTIONS(998), + [sym_val_date] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [aux_sym_unquoted_token1] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1000), }, [1448] = { [sym_comment] = STATE(1448), - [aux_sym_cmd_identifier_token41] = ACTIONS(1536), - [sym__newline] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_EQ_GT] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [aux_sym_record_entry_token1] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(249), + [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(1866), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT_DOT2] = ACTIONS(4773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4775), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4775), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [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), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1866), + [anon_sym_0o] = ACTIONS(1866), + [anon_sym_0x] = ACTIONS(1866), + [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(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [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(1866), + [aux_sym_unquoted_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1874), }, [1449] = { - [sym_cmd_identifier] = STATE(4187), - [sym__command_name] = STATE(6687), - [sym_scope_pattern] = STATE(6688), - [sym_command_list] = STATE(6691), - [sym__val_number_decimal] = STATE(7312), - [sym_val_string] = STATE(4162), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), + [sym_cell_path] = STATE(1754), + [sym_path] = STATE(1703), [sym_comment] = STATE(1449), - [aux_sym_cmd_identifier_token1] = ACTIONS(4889), - [aux_sym_cmd_identifier_token2] = ACTIONS(4891), - [aux_sym_cmd_identifier_token3] = ACTIONS(4891), - [aux_sym_cmd_identifier_token4] = ACTIONS(4891), - [aux_sym_cmd_identifier_token5] = ACTIONS(4891), - [aux_sym_cmd_identifier_token6] = ACTIONS(4891), - [aux_sym_cmd_identifier_token7] = ACTIONS(4891), - [aux_sym_cmd_identifier_token8] = ACTIONS(4891), - [aux_sym_cmd_identifier_token9] = ACTIONS(4889), - [aux_sym_cmd_identifier_token10] = ACTIONS(4891), - [aux_sym_cmd_identifier_token11] = ACTIONS(4891), - [aux_sym_cmd_identifier_token12] = ACTIONS(4891), - [aux_sym_cmd_identifier_token13] = ACTIONS(4889), - [aux_sym_cmd_identifier_token14] = ACTIONS(4891), - [aux_sym_cmd_identifier_token15] = ACTIONS(4889), - [aux_sym_cmd_identifier_token16] = ACTIONS(4891), - [aux_sym_cmd_identifier_token17] = ACTIONS(4891), - [aux_sym_cmd_identifier_token18] = ACTIONS(4891), - [aux_sym_cmd_identifier_token19] = ACTIONS(4891), - [aux_sym_cmd_identifier_token20] = ACTIONS(4891), - [aux_sym_cmd_identifier_token21] = ACTIONS(4891), - [aux_sym_cmd_identifier_token22] = ACTIONS(4891), - [aux_sym_cmd_identifier_token23] = ACTIONS(4891), - [aux_sym_cmd_identifier_token24] = ACTIONS(4891), - [aux_sym_cmd_identifier_token25] = ACTIONS(4891), - [aux_sym_cmd_identifier_token26] = ACTIONS(4891), - [aux_sym_cmd_identifier_token27] = ACTIONS(4891), - [aux_sym_cmd_identifier_token28] = ACTIONS(4891), - [aux_sym_cmd_identifier_token29] = ACTIONS(4891), - [aux_sym_cmd_identifier_token30] = ACTIONS(4891), - [aux_sym_cmd_identifier_token31] = ACTIONS(4891), - [aux_sym_cmd_identifier_token32] = ACTIONS(4891), - [aux_sym_cmd_identifier_token33] = ACTIONS(4891), - [aux_sym_cmd_identifier_token34] = ACTIONS(4891), - [aux_sym_cmd_identifier_token35] = ACTIONS(4891), - [aux_sym_cmd_identifier_token36] = ACTIONS(4889), - [anon_sym_true] = ACTIONS(4893), - [anon_sym_false] = ACTIONS(4893), - [anon_sym_null] = ACTIONS(4893), - [aux_sym_cmd_identifier_token38] = ACTIONS(4895), - [aux_sym_cmd_identifier_token39] = ACTIONS(4893), - [aux_sym_cmd_identifier_token40] = ACTIONS(4893), - [sym__newline] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_RPAREN] = ACTIONS(4897), - [anon_sym_RBRACE] = ACTIONS(4897), - [sym_wild_card] = ACTIONS(4901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1343), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_err_GT_PIPE] = ACTIONS(1986), + [anon_sym_out_GT_PIPE] = ACTIONS(1986), + [anon_sym_e_GT_PIPE] = ACTIONS(1986), + [anon_sym_o_GT_PIPE] = ACTIONS(1986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1986), + [anon_sym_RPAREN] = ACTIONS(1986), + [anon_sym_DOLLAR] = ACTIONS(1984), + [anon_sym_DASH_DASH] = ACTIONS(1986), + [anon_sym_DASH2] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_DOT_DOT] = ACTIONS(1984), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1986), + [anon_sym_DOT_DOT_LT] = ACTIONS(1986), + [anon_sym_null] = ACTIONS(1986), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [aux_sym__val_number_decimal_token1] = ACTIONS(1984), + [aux_sym__val_number_decimal_token2] = ACTIONS(1986), + [aux_sym__val_number_decimal_token3] = ACTIONS(1986), + [aux_sym__val_number_decimal_token4] = ACTIONS(1986), + [aux_sym__val_number_token1] = ACTIONS(1986), + [aux_sym__val_number_token2] = ACTIONS(1986), + [aux_sym__val_number_token3] = ACTIONS(1986), + [aux_sym__val_number_token4] = ACTIONS(1986), + [aux_sym__val_number_token5] = ACTIONS(1986), + [aux_sym__val_number_token6] = ACTIONS(1986), + [anon_sym_0b] = ACTIONS(1984), + [anon_sym_0o] = ACTIONS(1984), + [anon_sym_0x] = ACTIONS(1984), + [sym_val_date] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym__str_single_quotes] = ACTIONS(1986), + [sym__str_back_ticks] = ACTIONS(1986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1986), + [anon_sym_err_GT] = ACTIONS(1984), + [anon_sym_out_GT] = ACTIONS(1984), + [anon_sym_e_GT] = ACTIONS(1984), + [anon_sym_o_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT] = ACTIONS(1984), + [anon_sym_err_GT_GT] = ACTIONS(1986), + [anon_sym_out_GT_GT] = ACTIONS(1986), + [anon_sym_e_GT_GT] = ACTIONS(1986), + [anon_sym_o_GT_GT] = ACTIONS(1986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1986), + [aux_sym_unquoted_token1] = ACTIONS(1984), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1986), }, [1450] = { [sym_comment] = STATE(1450), - [ts_builtin_sym_end] = ACTIONS(1538), - [aux_sym_cmd_identifier_token41] = ACTIONS(1536), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(4903), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4905), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_err_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_GT_PIPE] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT2] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), + [anon_sym_null] = ACTIONS(1016), + [anon_sym_true] = ACTIONS(1016), + [anon_sym_false] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1016), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(1016), + [aux_sym__val_number_token2] = ACTIONS(1016), + [aux_sym__val_number_token3] = ACTIONS(1016), + [aux_sym__val_number_token4] = ACTIONS(1016), + [aux_sym__val_number_token5] = ACTIONS(1016), + [aux_sym__val_number_token6] = ACTIONS(1016), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1016), + [sym__str_single_quotes] = ACTIONS(1016), + [sym__str_back_ticks] = ACTIONS(1016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [anon_sym_err_GT_GT] = ACTIONS(1016), + [anon_sym_out_GT_GT] = ACTIONS(1016), + [anon_sym_e_GT_GT] = ACTIONS(1016), + [anon_sym_o_GT_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [aux_sym_unquoted_token1] = ACTIONS(1014), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1016), }, [1451] = { [sym_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(1092), - [anon_sym_true] = ACTIONS(1092), - [anon_sym_false] = ACTIONS(1092), - [anon_sym_null] = ACTIONS(1092), - [aux_sym_cmd_identifier_token38] = ACTIONS(1092), - [aux_sym_cmd_identifier_token39] = ACTIONS(1092), - [aux_sym_cmd_identifier_token40] = ACTIONS(1092), - [sym__newline] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_err_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_GT_PIPE] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), - [anon_sym_LBRACK] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_DOLLAR] = ACTIONS(1090), - [anon_sym_DASH_DASH] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_DOT_DOT] = ACTIONS(1090), - [anon_sym_DOT_DOT2] = ACTIONS(4858), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1090), - [anon_sym_DOT_DOT_LT] = ACTIONS(1090), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4860), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4860), - [aux_sym__val_number_decimal_token1] = ACTIONS(1090), - [aux_sym__val_number_decimal_token2] = ACTIONS(1092), - [aux_sym__val_number_decimal_token3] = ACTIONS(1092), - [aux_sym__val_number_decimal_token4] = ACTIONS(1092), - [aux_sym__val_number_token1] = ACTIONS(1092), - [aux_sym__val_number_token2] = ACTIONS(1092), - [aux_sym__val_number_token3] = ACTIONS(1092), - [anon_sym_0b] = ACTIONS(1090), - [anon_sym_0o] = ACTIONS(1090), - [anon_sym_0x] = ACTIONS(1090), - [sym_val_date] = ACTIONS(1092), - [anon_sym_DQUOTE] = ACTIONS(1092), - [sym__str_single_quotes] = ACTIONS(1092), - [sym__str_back_ticks] = ACTIONS(1092), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1092), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1092), - [anon_sym_err_GT] = ACTIONS(1090), - [anon_sym_out_GT] = ACTIONS(1090), - [anon_sym_e_GT] = ACTIONS(1090), - [anon_sym_o_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT] = ACTIONS(1090), - [anon_sym_err_GT_GT] = ACTIONS(1092), - [anon_sym_out_GT_GT] = ACTIONS(1092), - [anon_sym_e_GT_GT] = ACTIONS(1092), - [anon_sym_o_GT_GT] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), - [aux_sym_unquoted_token1] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1092), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4779), + [aux_sym__immediate_decimal_token2] = ACTIONS(4781), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1452] = { [sym_comment] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(1530), - [aux_sym_cmd_identifier_token41] = ACTIONS(1528), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [aux_sym_expr_binary_token1] = ACTIONS(1530), - [aux_sym_expr_binary_token2] = ACTIONS(1530), - [aux_sym_expr_binary_token3] = ACTIONS(1530), - [aux_sym_expr_binary_token4] = ACTIONS(1530), - [aux_sym_expr_binary_token5] = ACTIONS(1530), - [aux_sym_expr_binary_token6] = ACTIONS(1530), - [aux_sym_expr_binary_token7] = ACTIONS(1530), - [aux_sym_expr_binary_token8] = ACTIONS(1530), - [aux_sym_expr_binary_token9] = ACTIONS(1530), - [aux_sym_expr_binary_token10] = ACTIONS(1530), - [aux_sym_expr_binary_token11] = ACTIONS(1530), - [aux_sym_expr_binary_token12] = ACTIONS(1530), - [aux_sym_expr_binary_token13] = ACTIONS(1530), - [aux_sym_expr_binary_token14] = ACTIONS(1530), - [aux_sym_expr_binary_token15] = ACTIONS(1530), - [aux_sym_expr_binary_token16] = ACTIONS(1530), - [aux_sym_expr_binary_token17] = ACTIONS(1530), - [aux_sym_expr_binary_token18] = ACTIONS(1530), - [aux_sym_expr_binary_token19] = ACTIONS(1530), - [aux_sym_expr_binary_token20] = ACTIONS(1530), - [aux_sym_expr_binary_token21] = ACTIONS(1530), - [aux_sym_expr_binary_token22] = ACTIONS(1530), - [aux_sym_expr_binary_token23] = ACTIONS(1530), - [aux_sym_expr_binary_token24] = ACTIONS(1530), - [aux_sym_expr_binary_token25] = ACTIONS(1530), - [aux_sym_expr_binary_token26] = ACTIONS(1530), - [aux_sym_expr_binary_token27] = ACTIONS(1530), - [aux_sym_expr_binary_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(4907), - [aux_sym__immediate_decimal_token2] = ACTIONS(4909), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1000), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [anon_sym_null] = ACTIONS(1000), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [anon_sym_0b] = ACTIONS(998), + [anon_sym_0o] = ACTIONS(998), + [anon_sym_0x] = ACTIONS(998), + [sym_val_date] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [aux_sym_unquoted_token1] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1000), }, [1453] = { - [sym_cmd_identifier] = STATE(4187), - [sym__command_name] = STATE(6687), - [sym_scope_pattern] = STATE(6745), - [sym_command_list] = STATE(6691), - [sym__val_number_decimal] = STATE(7312), - [sym_val_string] = STATE(4162), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), [sym_comment] = STATE(1453), - [aux_sym_cmd_identifier_token1] = ACTIONS(4889), - [aux_sym_cmd_identifier_token2] = ACTIONS(4891), - [aux_sym_cmd_identifier_token3] = ACTIONS(4891), - [aux_sym_cmd_identifier_token4] = ACTIONS(4891), - [aux_sym_cmd_identifier_token5] = ACTIONS(4891), - [aux_sym_cmd_identifier_token6] = ACTIONS(4891), - [aux_sym_cmd_identifier_token7] = ACTIONS(4891), - [aux_sym_cmd_identifier_token8] = ACTIONS(4891), - [aux_sym_cmd_identifier_token9] = ACTIONS(4889), - [aux_sym_cmd_identifier_token10] = ACTIONS(4891), - [aux_sym_cmd_identifier_token11] = ACTIONS(4891), - [aux_sym_cmd_identifier_token12] = ACTIONS(4891), - [aux_sym_cmd_identifier_token13] = ACTIONS(4889), - [aux_sym_cmd_identifier_token14] = ACTIONS(4891), - [aux_sym_cmd_identifier_token15] = ACTIONS(4889), - [aux_sym_cmd_identifier_token16] = ACTIONS(4891), - [aux_sym_cmd_identifier_token17] = ACTIONS(4891), - [aux_sym_cmd_identifier_token18] = ACTIONS(4891), - [aux_sym_cmd_identifier_token19] = ACTIONS(4891), - [aux_sym_cmd_identifier_token20] = ACTIONS(4891), - [aux_sym_cmd_identifier_token21] = ACTIONS(4891), - [aux_sym_cmd_identifier_token22] = ACTIONS(4891), - [aux_sym_cmd_identifier_token23] = ACTIONS(4891), - [aux_sym_cmd_identifier_token24] = ACTIONS(4891), - [aux_sym_cmd_identifier_token25] = ACTIONS(4891), - [aux_sym_cmd_identifier_token26] = ACTIONS(4891), - [aux_sym_cmd_identifier_token27] = ACTIONS(4891), - [aux_sym_cmd_identifier_token28] = ACTIONS(4891), - [aux_sym_cmd_identifier_token29] = ACTIONS(4891), - [aux_sym_cmd_identifier_token30] = ACTIONS(4891), - [aux_sym_cmd_identifier_token31] = ACTIONS(4891), - [aux_sym_cmd_identifier_token32] = ACTIONS(4891), - [aux_sym_cmd_identifier_token33] = ACTIONS(4891), - [aux_sym_cmd_identifier_token34] = ACTIONS(4891), - [aux_sym_cmd_identifier_token35] = ACTIONS(4891), - [aux_sym_cmd_identifier_token36] = ACTIONS(4889), - [anon_sym_true] = ACTIONS(4893), - [anon_sym_false] = ACTIONS(4893), - [anon_sym_null] = ACTIONS(4893), - [aux_sym_cmd_identifier_token38] = ACTIONS(4895), - [aux_sym_cmd_identifier_token39] = ACTIONS(4893), - [aux_sym_cmd_identifier_token40] = ACTIONS(4893), - [sym__newline] = ACTIONS(4911), - [anon_sym_SEMI] = ACTIONS(4911), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_RPAREN] = ACTIONS(4911), - [anon_sym_RBRACE] = ACTIONS(4911), - [sym_wild_card] = ACTIONS(4901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1343), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [ts_builtin_sym_end] = ACTIONS(1004), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1004), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [aux_sym_unquoted_token1] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1004), }, [1454] = { [sym_comment] = STATE(1454), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_LPAREN2] = ACTIONS(1598), - [aux_sym_expr_binary_token1] = ACTIONS(1598), - [aux_sym_expr_binary_token2] = ACTIONS(1598), - [aux_sym_expr_binary_token3] = ACTIONS(1598), - [aux_sym_expr_binary_token4] = ACTIONS(1598), - [aux_sym_expr_binary_token5] = ACTIONS(1598), - [aux_sym_expr_binary_token6] = ACTIONS(1598), - [aux_sym_expr_binary_token7] = ACTIONS(1598), - [aux_sym_expr_binary_token8] = ACTIONS(1598), - [aux_sym_expr_binary_token9] = ACTIONS(1598), - [aux_sym_expr_binary_token10] = ACTIONS(1598), - [aux_sym_expr_binary_token11] = ACTIONS(1598), - [aux_sym_expr_binary_token12] = ACTIONS(1598), - [aux_sym_expr_binary_token13] = ACTIONS(1598), - [aux_sym_expr_binary_token14] = ACTIONS(1598), - [aux_sym_expr_binary_token15] = ACTIONS(1598), - [aux_sym_expr_binary_token16] = ACTIONS(1598), - [aux_sym_expr_binary_token17] = ACTIONS(1598), - [aux_sym_expr_binary_token18] = ACTIONS(1598), - [aux_sym_expr_binary_token19] = ACTIONS(1598), - [aux_sym_expr_binary_token20] = ACTIONS(1598), - [aux_sym_expr_binary_token21] = ACTIONS(1598), - [aux_sym_expr_binary_token22] = ACTIONS(1598), - [aux_sym_expr_binary_token23] = ACTIONS(1598), - [aux_sym_expr_binary_token24] = ACTIONS(1598), - [aux_sym_expr_binary_token25] = ACTIONS(1598), - [aux_sym_expr_binary_token26] = ACTIONS(1598), - [aux_sym_expr_binary_token27] = ACTIONS(1598), - [aux_sym_expr_binary_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_EQ] = ACTIONS(1018), + [anon_sym_PLUS_EQ] = ACTIONS(1020), + [anon_sym_DASH_EQ] = ACTIONS(1020), + [anon_sym_STAR_EQ] = ACTIONS(1020), + [anon_sym_SLASH_EQ] = ACTIONS(1020), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), + [sym__newline] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1018), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1018), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1018), + [anon_sym_SLASH2] = ACTIONS(1018), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [aux_sym_record_entry_token1] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(247), }, [1455] = { [sym_comment] = STATE(1455), - [anon_sym_true] = ACTIONS(2800), - [anon_sym_false] = ACTIONS(2800), - [anon_sym_null] = ACTIONS(2800), - [aux_sym_cmd_identifier_token38] = ACTIONS(2800), - [aux_sym_cmd_identifier_token39] = ACTIONS(2800), - [aux_sym_cmd_identifier_token40] = ACTIONS(2800), - [sym__newline] = ACTIONS(2800), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_err_GT_PIPE] = ACTIONS(2800), - [anon_sym_out_GT_PIPE] = ACTIONS(2800), - [anon_sym_e_GT_PIPE] = ACTIONS(2800), - [anon_sym_o_GT_PIPE] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_RPAREN] = ACTIONS(2800), - [anon_sym_DOLLAR] = ACTIONS(4913), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(4913), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_DOT_DOT] = ACTIONS(4913), - [anon_sym_DOT_DOT2] = ACTIONS(4727), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4913), - [anon_sym_DOT_DOT_LT] = ACTIONS(4913), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4729), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4729), - [aux_sym__val_number_decimal_token1] = ACTIONS(4913), - [aux_sym__val_number_decimal_token2] = ACTIONS(2800), - [aux_sym__val_number_decimal_token3] = ACTIONS(2800), - [aux_sym__val_number_decimal_token4] = ACTIONS(2800), - [aux_sym__val_number_token1] = ACTIONS(2800), - [aux_sym__val_number_token2] = ACTIONS(2800), - [aux_sym__val_number_token3] = ACTIONS(2800), - [anon_sym_0b] = ACTIONS(4913), - [anon_sym_0o] = ACTIONS(4913), - [anon_sym_0x] = ACTIONS(4913), - [sym_val_date] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2800), - [sym__str_single_quotes] = ACTIONS(2800), - [sym__str_back_ticks] = ACTIONS(2800), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2800), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2800), - [anon_sym_err_GT] = ACTIONS(4913), - [anon_sym_out_GT] = ACTIONS(4913), - [anon_sym_e_GT] = ACTIONS(4913), - [anon_sym_o_GT] = ACTIONS(4913), - [anon_sym_err_PLUSout_GT] = ACTIONS(4913), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4913), - [anon_sym_o_PLUSe_GT] = ACTIONS(4913), - [anon_sym_e_PLUSo_GT] = ACTIONS(4913), - [anon_sym_err_GT_GT] = ACTIONS(2800), - [anon_sym_out_GT_GT] = ACTIONS(2800), - [anon_sym_e_GT_GT] = ACTIONS(2800), - [anon_sym_o_GT_GT] = ACTIONS(2800), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2800), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2800), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2800), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2800), - [aux_sym_unquoted_token1] = ACTIONS(4913), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2800), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1012), + [anon_sym_DASH_EQ] = ACTIONS(1012), + [anon_sym_STAR_EQ] = ACTIONS(1012), + [anon_sym_SLASH_EQ] = ACTIONS(1012), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1012), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_in2] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1010), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1010), + [anon_sym_SLASH2] = ACTIONS(1010), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1010), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(247), }, [1456] = { [sym_comment] = STATE(1456), - [aux_sym_cmd_identifier_token41] = ACTIONS(1528), - [sym__newline] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_EQ_GT] = ACTIONS(1530), - [aux_sym_expr_binary_token1] = ACTIONS(1530), - [aux_sym_expr_binary_token2] = ACTIONS(1530), - [aux_sym_expr_binary_token3] = ACTIONS(1530), - [aux_sym_expr_binary_token4] = ACTIONS(1530), - [aux_sym_expr_binary_token5] = ACTIONS(1530), - [aux_sym_expr_binary_token6] = ACTIONS(1530), - [aux_sym_expr_binary_token7] = ACTIONS(1530), - [aux_sym_expr_binary_token8] = ACTIONS(1530), - [aux_sym_expr_binary_token9] = ACTIONS(1530), - [aux_sym_expr_binary_token10] = ACTIONS(1530), - [aux_sym_expr_binary_token11] = ACTIONS(1530), - [aux_sym_expr_binary_token12] = ACTIONS(1530), - [aux_sym_expr_binary_token13] = ACTIONS(1530), - [aux_sym_expr_binary_token14] = ACTIONS(1530), - [aux_sym_expr_binary_token15] = ACTIONS(1530), - [aux_sym_expr_binary_token16] = ACTIONS(1530), - [aux_sym_expr_binary_token17] = ACTIONS(1530), - [aux_sym_expr_binary_token18] = ACTIONS(1530), - [aux_sym_expr_binary_token19] = ACTIONS(1530), - [aux_sym_expr_binary_token20] = ACTIONS(1530), - [aux_sym_expr_binary_token21] = ACTIONS(1530), - [aux_sym_expr_binary_token22] = ACTIONS(1530), - [aux_sym_expr_binary_token23] = ACTIONS(1530), - [aux_sym_expr_binary_token24] = ACTIONS(1530), - [aux_sym_expr_binary_token25] = ACTIONS(1530), - [aux_sym_expr_binary_token26] = ACTIONS(1530), - [aux_sym_expr_binary_token27] = ACTIONS(1530), - [aux_sym_expr_binary_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [aux_sym_record_entry_token1] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = 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(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_DOT_DOT] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DOT_DOT2] = ACTIONS(4783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1878), + [anon_sym_DOT_DOT_LT] = ACTIONS(1878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4785), + [anon_sym_null] = ACTIONS(1886), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [aux_sym__val_number_decimal_token1] = ACTIONS(1878), + [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), + [aux_sym__val_number_token4] = ACTIONS(1886), + [aux_sym__val_number_token5] = ACTIONS(1886), + [aux_sym__val_number_token6] = ACTIONS(1886), + [anon_sym_0b] = ACTIONS(1878), + [anon_sym_0o] = ACTIONS(1878), + [anon_sym_0x] = ACTIONS(1878), + [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(1878), + [anon_sym_out_GT] = ACTIONS(1878), + [anon_sym_e_GT] = ACTIONS(1878), + [anon_sym_o_GT] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT] = ACTIONS(1878), + [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(1878), + [aux_sym_unquoted_token2] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1886), }, [1457] = { + [sym_cell_path] = STATE(1750), + [sym_path] = STATE(1703), [sym_comment] = STATE(1457), - [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(1526), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1796), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_PIPE] = ACTIONS(1954), + [anon_sym_err_GT_PIPE] = ACTIONS(1954), + [anon_sym_out_GT_PIPE] = ACTIONS(1954), + [anon_sym_e_GT_PIPE] = ACTIONS(1954), + [anon_sym_o_GT_PIPE] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_RPAREN] = ACTIONS(1954), + [anon_sym_DOLLAR] = ACTIONS(1952), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_DASH2] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_DOT_DOT] = ACTIONS(1952), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1954), + [anon_sym_DOT_DOT_LT] = ACTIONS(1954), + [anon_sym_null] = ACTIONS(1954), + [anon_sym_true] = ACTIONS(1954), + [anon_sym_false] = ACTIONS(1954), + [aux_sym__val_number_decimal_token1] = ACTIONS(1952), + [aux_sym__val_number_decimal_token2] = ACTIONS(1954), + [aux_sym__val_number_decimal_token3] = ACTIONS(1954), + [aux_sym__val_number_decimal_token4] = ACTIONS(1954), + [aux_sym__val_number_token1] = ACTIONS(1954), + [aux_sym__val_number_token2] = ACTIONS(1954), + [aux_sym__val_number_token3] = ACTIONS(1954), + [aux_sym__val_number_token4] = ACTIONS(1954), + [aux_sym__val_number_token5] = ACTIONS(1954), + [aux_sym__val_number_token6] = ACTIONS(1954), + [anon_sym_0b] = ACTIONS(1952), + [anon_sym_0o] = ACTIONS(1952), + [anon_sym_0x] = ACTIONS(1952), + [sym_val_date] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1954), + [sym__str_single_quotes] = ACTIONS(1954), + [sym__str_back_ticks] = ACTIONS(1954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1954), + [anon_sym_err_GT] = ACTIONS(1952), + [anon_sym_out_GT] = ACTIONS(1952), + [anon_sym_e_GT] = ACTIONS(1952), + [anon_sym_o_GT] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT] = ACTIONS(1952), + [anon_sym_err_GT_GT] = ACTIONS(1954), + [anon_sym_out_GT_GT] = ACTIONS(1954), + [anon_sym_e_GT_GT] = ACTIONS(1954), + [anon_sym_o_GT_GT] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1954), + [aux_sym_unquoted_token1] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1954), }, [1458] = { [sym_comment] = STATE(1458), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(1713), - [aux_sym_expr_binary_token1] = ACTIONS(1713), - [aux_sym_expr_binary_token2] = ACTIONS(1713), - [aux_sym_expr_binary_token3] = ACTIONS(1713), - [aux_sym_expr_binary_token4] = ACTIONS(1713), - [aux_sym_expr_binary_token5] = ACTIONS(1713), - [aux_sym_expr_binary_token6] = ACTIONS(1713), - [aux_sym_expr_binary_token7] = ACTIONS(1713), - [aux_sym_expr_binary_token8] = ACTIONS(1713), - [aux_sym_expr_binary_token9] = ACTIONS(1713), - [aux_sym_expr_binary_token10] = ACTIONS(1713), - [aux_sym_expr_binary_token11] = ACTIONS(1713), - [aux_sym_expr_binary_token12] = ACTIONS(1713), - [aux_sym_expr_binary_token13] = ACTIONS(1713), - [aux_sym_expr_binary_token14] = ACTIONS(1713), - [aux_sym_expr_binary_token15] = ACTIONS(1713), - [aux_sym_expr_binary_token16] = ACTIONS(1713), - [aux_sym_expr_binary_token17] = ACTIONS(1713), - [aux_sym_expr_binary_token18] = ACTIONS(1713), - [aux_sym_expr_binary_token19] = ACTIONS(1713), - [aux_sym_expr_binary_token20] = ACTIONS(1713), - [aux_sym_expr_binary_token21] = ACTIONS(1713), - [aux_sym_expr_binary_token22] = ACTIONS(1713), - [aux_sym_expr_binary_token23] = ACTIONS(1713), - [aux_sym_expr_binary_token24] = ACTIONS(1713), - [aux_sym_expr_binary_token25] = ACTIONS(1713), - [aux_sym_expr_binary_token26] = ACTIONS(1713), - [aux_sym_expr_binary_token27] = ACTIONS(1713), - [aux_sym_expr_binary_token28] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1014), + [anon_sym_PLUS_EQ] = ACTIONS(1016), + [anon_sym_DASH_EQ] = ACTIONS(1016), + [anon_sym_STAR_EQ] = ACTIONS(1016), + [anon_sym_SLASH_EQ] = ACTIONS(1016), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1016), + [sym__newline] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_err_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_GT_PIPE] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_GT2] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1016), + [anon_sym_STAR2] = ACTIONS(1014), + [anon_sym_and2] = ACTIONS(1016), + [anon_sym_xor2] = ACTIONS(1016), + [anon_sym_or2] = ACTIONS(1016), + [anon_sym_not_DASHin2] = ACTIONS(1016), + [anon_sym_starts_DASHwith2] = ACTIONS(1016), + [anon_sym_ends_DASHwith2] = ACTIONS(1016), + [anon_sym_EQ_EQ2] = ACTIONS(1016), + [anon_sym_BANG_EQ2] = ACTIONS(1016), + [anon_sym_LT2] = ACTIONS(1014), + [anon_sym_LT_EQ2] = ACTIONS(1016), + [anon_sym_GT_EQ2] = ACTIONS(1016), + [anon_sym_EQ_TILDE2] = ACTIONS(1016), + [anon_sym_BANG_TILDE2] = ACTIONS(1016), + [anon_sym_STAR_STAR2] = ACTIONS(1016), + [anon_sym_PLUS_PLUS2] = ACTIONS(1014), + [anon_sym_SLASH2] = ACTIONS(1014), + [anon_sym_mod2] = ACTIONS(1016), + [anon_sym_SLASH_SLASH2] = ACTIONS(1016), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_bit_DASHshl2] = ACTIONS(1016), + [anon_sym_bit_DASHshr2] = ACTIONS(1016), + [anon_sym_bit_DASHand2] = ACTIONS(1016), + [anon_sym_bit_DASHxor2] = ACTIONS(1016), + [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_DOT_DOT2] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [anon_sym_err_GT_GT] = ACTIONS(1016), + [anon_sym_out_GT_GT] = ACTIONS(1016), + [anon_sym_e_GT_GT] = ACTIONS(1016), + [anon_sym_o_GT_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(247), }, [1459] = { + [sym_cell_path] = STATE(1755), + [sym_path] = STATE(1703), [sym_comment] = STATE(1459), - [aux_sym_cmd_identifier_token41] = ACTIONS(1536), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4713), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_err_GT_PIPE] = ACTIONS(1990), + [anon_sym_out_GT_PIPE] = ACTIONS(1990), + [anon_sym_e_GT_PIPE] = ACTIONS(1990), + [anon_sym_o_GT_PIPE] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(1990), + [anon_sym_DOLLAR] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1990), + [anon_sym_DASH2] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_DOT_DOT] = ACTIONS(1988), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1990), + [anon_sym_DOT_DOT_LT] = ACTIONS(1990), + [anon_sym_null] = ACTIONS(1990), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [aux_sym__val_number_decimal_token1] = ACTIONS(1988), + [aux_sym__val_number_decimal_token2] = ACTIONS(1990), + [aux_sym__val_number_decimal_token3] = ACTIONS(1990), + [aux_sym__val_number_decimal_token4] = ACTIONS(1990), + [aux_sym__val_number_token1] = ACTIONS(1990), + [aux_sym__val_number_token2] = ACTIONS(1990), + [aux_sym__val_number_token3] = ACTIONS(1990), + [aux_sym__val_number_token4] = ACTIONS(1990), + [aux_sym__val_number_token5] = ACTIONS(1990), + [aux_sym__val_number_token6] = ACTIONS(1990), + [anon_sym_0b] = ACTIONS(1988), + [anon_sym_0o] = ACTIONS(1988), + [anon_sym_0x] = ACTIONS(1988), + [sym_val_date] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym__str_single_quotes] = ACTIONS(1990), + [sym__str_back_ticks] = ACTIONS(1990), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1990), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1990), + [anon_sym_err_GT] = ACTIONS(1988), + [anon_sym_out_GT] = ACTIONS(1988), + [anon_sym_e_GT] = ACTIONS(1988), + [anon_sym_o_GT] = ACTIONS(1988), + [anon_sym_err_PLUSout_GT] = ACTIONS(1988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1988), + [anon_sym_o_PLUSe_GT] = ACTIONS(1988), + [anon_sym_e_PLUSo_GT] = ACTIONS(1988), + [anon_sym_err_GT_GT] = ACTIONS(1990), + [anon_sym_out_GT_GT] = ACTIONS(1990), + [anon_sym_e_GT_GT] = ACTIONS(1990), + [anon_sym_o_GT_GT] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1990), + [aux_sym_unquoted_token1] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1990), }, [1460] = { [sym_comment] = STATE(1460), - [aux_sym_cmd_identifier_token41] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_EQ_GT] = ACTIONS(1598), - [aux_sym_expr_binary_token1] = ACTIONS(1598), - [aux_sym_expr_binary_token2] = ACTIONS(1598), - [aux_sym_expr_binary_token3] = ACTIONS(1598), - [aux_sym_expr_binary_token4] = ACTIONS(1598), - [aux_sym_expr_binary_token5] = ACTIONS(1598), - [aux_sym_expr_binary_token6] = ACTIONS(1598), - [aux_sym_expr_binary_token7] = ACTIONS(1598), - [aux_sym_expr_binary_token8] = ACTIONS(1598), - [aux_sym_expr_binary_token9] = ACTIONS(1598), - [aux_sym_expr_binary_token10] = ACTIONS(1598), - [aux_sym_expr_binary_token11] = ACTIONS(1598), - [aux_sym_expr_binary_token12] = ACTIONS(1598), - [aux_sym_expr_binary_token13] = ACTIONS(1598), - [aux_sym_expr_binary_token14] = ACTIONS(1598), - [aux_sym_expr_binary_token15] = ACTIONS(1598), - [aux_sym_expr_binary_token16] = ACTIONS(1598), - [aux_sym_expr_binary_token17] = ACTIONS(1598), - [aux_sym_expr_binary_token18] = ACTIONS(1598), - [aux_sym_expr_binary_token19] = ACTIONS(1598), - [aux_sym_expr_binary_token20] = ACTIONS(1598), - [aux_sym_expr_binary_token21] = ACTIONS(1598), - [aux_sym_expr_binary_token22] = ACTIONS(1598), - [aux_sym_expr_binary_token23] = ACTIONS(1598), - [aux_sym_expr_binary_token24] = ACTIONS(1598), - [aux_sym_expr_binary_token25] = ACTIONS(1598), - [aux_sym_expr_binary_token26] = ACTIONS(1598), - [aux_sym_expr_binary_token27] = ACTIONS(1598), - [aux_sym_expr_binary_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [aux_sym_record_entry_token1] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1008), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [aux_sym_unquoted_token1] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1008), }, [1461] = { [sym_comment] = STATE(1461), - [anon_sym_true] = ACTIONS(2279), - [anon_sym_false] = ACTIONS(2279), - [anon_sym_null] = ACTIONS(2279), - [aux_sym_cmd_identifier_token38] = ACTIONS(2279), - [aux_sym_cmd_identifier_token39] = ACTIONS(2279), - [aux_sym_cmd_identifier_token40] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2277), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_DASH_DASH] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_DOT_DOT] = ACTIONS(2277), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2279), - [anon_sym_DOT_DOT_LT] = 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_0b] = ACTIONS(2277), - [anon_sym_0o] = ACTIONS(2277), - [anon_sym_0x] = ACTIONS(2277), - [sym_val_date] = ACTIONS(2279), - [anon_sym_DQUOTE] = ACTIONS(2279), - [sym__str_single_quotes] = ACTIONS(2279), - [sym__str_back_ticks] = ACTIONS(2279), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2279), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2277), - [anon_sym_out_GT] = ACTIONS(2277), - [anon_sym_e_GT] = ACTIONS(2277), - [anon_sym_o_GT] = ACTIONS(2277), - [anon_sym_err_PLUSout_GT] = ACTIONS(2277), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2277), - [anon_sym_o_PLUSe_GT] = ACTIONS(2277), - [anon_sym_e_PLUSo_GT] = ACTIONS(2277), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [aux_sym_unquoted_token1] = ACTIONS(2277), - [aux_sym_unquoted_token2] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2279), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1609), + [anon_sym_in2] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1609), + [anon_sym_xor2] = ACTIONS(1609), + [anon_sym_or2] = ACTIONS(1609), + [anon_sym_not_DASHin2] = ACTIONS(1609), + [anon_sym_starts_DASHwith2] = ACTIONS(1609), + [anon_sym_ends_DASHwith2] = ACTIONS(1609), + [anon_sym_EQ_EQ2] = ACTIONS(1609), + [anon_sym_BANG_EQ2] = ACTIONS(1609), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1609), + [anon_sym_GT_EQ2] = ACTIONS(1609), + [anon_sym_EQ_TILDE2] = ACTIONS(1609), + [anon_sym_BANG_TILDE2] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_STAR_STAR2] = ACTIONS(1609), + [anon_sym_PLUS_PLUS2] = ACTIONS(1609), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1609), + [anon_sym_SLASH_SLASH2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1609), + [anon_sym_bit_DASHshr2] = ACTIONS(1609), + [anon_sym_bit_DASHand2] = ACTIONS(1609), + [anon_sym_bit_DASHxor2] = ACTIONS(1609), + [anon_sym_bit_DASHor2] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(4744), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), }, [1462] = { [sym_comment] = STATE(1462), - [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(1842), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1850), - [anon_sym_DOT_DOT_LT] = ACTIONS(1850), - [aux_sym__val_number_decimal_token1] = ACTIONS(1842), - [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(1842), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [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(1842), - [anon_sym_out_GT] = ACTIONS(1842), - [anon_sym_e_GT] = ACTIONS(1842), - [anon_sym_o_GT] = ACTIONS(1842), - [anon_sym_err_PLUSout_GT] = ACTIONS(1842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1842), - [anon_sym_o_PLUSe_GT] = ACTIONS(1842), - [anon_sym_e_PLUSo_GT] = ACTIONS(1842), - [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(1842), - [aux_sym_unquoted_token2] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1850), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1463] = { - [sym_cmd_identifier] = STATE(4700), - [sym_expr_parenthesized] = STATE(4700), - [sym_val_variable] = STATE(4700), - [sym__val_number_decimal] = STATE(7002), - [sym_val_string] = STATE(4700), - [sym__raw_str] = STATE(4660), - [sym__str_double_quotes] = STATE(4660), - [sym_val_interpolated] = STATE(4700), - [sym__inter_single_quotes] = STATE(5011), - [sym__inter_double_quotes] = STATE(5012), [sym_comment] = STATE(1463), - [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(4915), - [anon_sym_false] = ACTIONS(4915), - [anon_sym_null] = ACTIONS(4915), - [aux_sym_cmd_identifier_token38] = ACTIONS(4917), - [aux_sym_cmd_identifier_token39] = ACTIONS(4915), - [aux_sym_cmd_identifier_token40] = ACTIONS(4915), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_DOLLAR] = ACTIONS(4237), - [aux_sym__val_number_decimal_token1] = ACTIONS(1343), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(4255), - [sym__str_single_quotes] = ACTIONS(4257), - [sym__str_back_ticks] = ACTIONS(4257), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4259), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4261), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(1018), + [anon_sym_PLUS_EQ] = ACTIONS(1020), + [anon_sym_DASH_EQ] = ACTIONS(1020), + [anon_sym_STAR_EQ] = ACTIONS(1020), + [anon_sym_SLASH_EQ] = ACTIONS(1020), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1018), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1018), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1018), + [anon_sym_SLASH2] = ACTIONS(1018), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(247), }, [1464] = { + [sym_cell_path] = STATE(1753), + [sym_path] = STATE(1703), [sym_comment] = STATE(1464), - [anon_sym_true] = ACTIONS(4921), - [anon_sym_false] = ACTIONS(4921), - [anon_sym_null] = ACTIONS(4921), - [aux_sym_cmd_identifier_token38] = ACTIONS(4921), - [aux_sym_cmd_identifier_token39] = ACTIONS(4921), - [aux_sym_cmd_identifier_token40] = ACTIONS(4921), - [sym__newline] = ACTIONS(4921), - [anon_sym_SEMI] = ACTIONS(4921), - [anon_sym_PIPE] = ACTIONS(4921), - [anon_sym_err_GT_PIPE] = ACTIONS(4921), - [anon_sym_out_GT_PIPE] = ACTIONS(4921), - [anon_sym_e_GT_PIPE] = ACTIONS(4921), - [anon_sym_o_GT_PIPE] = ACTIONS(4921), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4921), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4921), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4921), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_RPAREN] = ACTIONS(4921), - [anon_sym_DOLLAR] = ACTIONS(4923), - [anon_sym_DASH_DASH] = ACTIONS(4921), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_LBRACE] = ACTIONS(4921), - [anon_sym_DOT_DOT] = ACTIONS(4923), - [anon_sym_DOT_DOT2] = ACTIONS(4727), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4923), - [anon_sym_DOT_DOT_LT] = ACTIONS(4923), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4729), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4729), - [aux_sym__val_number_decimal_token1] = ACTIONS(4923), - [aux_sym__val_number_decimal_token2] = ACTIONS(4921), - [aux_sym__val_number_decimal_token3] = ACTIONS(4921), - [aux_sym__val_number_decimal_token4] = ACTIONS(4921), - [aux_sym__val_number_token1] = ACTIONS(4921), - [aux_sym__val_number_token2] = ACTIONS(4921), - [aux_sym__val_number_token3] = ACTIONS(4921), - [anon_sym_0b] = ACTIONS(4923), - [anon_sym_0o] = ACTIONS(4923), - [anon_sym_0x] = ACTIONS(4923), - [sym_val_date] = ACTIONS(4921), - [anon_sym_DQUOTE] = ACTIONS(4921), - [sym__str_single_quotes] = ACTIONS(4921), - [sym__str_back_ticks] = ACTIONS(4921), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4921), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4921), - [anon_sym_err_GT] = ACTIONS(4923), - [anon_sym_out_GT] = ACTIONS(4923), - [anon_sym_e_GT] = ACTIONS(4923), - [anon_sym_o_GT] = ACTIONS(4923), - [anon_sym_err_PLUSout_GT] = ACTIONS(4923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4923), - [anon_sym_o_PLUSe_GT] = ACTIONS(4923), - [anon_sym_e_PLUSo_GT] = ACTIONS(4923), - [anon_sym_err_GT_GT] = ACTIONS(4921), - [anon_sym_out_GT_GT] = ACTIONS(4921), - [anon_sym_e_GT_GT] = ACTIONS(4921), - [anon_sym_o_GT_GT] = ACTIONS(4921), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4921), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4921), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4921), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4921), - [aux_sym_unquoted_token1] = ACTIONS(4923), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4921), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_err_GT_PIPE] = ACTIONS(1974), + [anon_sym_out_GT_PIPE] = ACTIONS(1974), + [anon_sym_e_GT_PIPE] = ACTIONS(1974), + [anon_sym_o_GT_PIPE] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_RPAREN] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [anon_sym_null] = ACTIONS(1974), + [anon_sym_true] = ACTIONS(1974), + [anon_sym_false] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1974), + [aux_sym__val_number_decimal_token3] = ACTIONS(1974), + [aux_sym__val_number_decimal_token4] = ACTIONS(1974), + [aux_sym__val_number_token1] = ACTIONS(1974), + [aux_sym__val_number_token2] = ACTIONS(1974), + [aux_sym__val_number_token3] = ACTIONS(1974), + [aux_sym__val_number_token4] = ACTIONS(1974), + [aux_sym__val_number_token5] = ACTIONS(1974), + [aux_sym__val_number_token6] = ACTIONS(1974), + [anon_sym_0b] = ACTIONS(1972), + [anon_sym_0o] = ACTIONS(1972), + [anon_sym_0x] = ACTIONS(1972), + [sym_val_date] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym__str_single_quotes] = ACTIONS(1974), + [sym__str_back_ticks] = ACTIONS(1974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1974), + [anon_sym_err_GT] = ACTIONS(1972), + [anon_sym_out_GT] = ACTIONS(1972), + [anon_sym_e_GT] = ACTIONS(1972), + [anon_sym_o_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT] = ACTIONS(1972), + [anon_sym_err_GT_GT] = ACTIONS(1974), + [anon_sym_out_GT_GT] = ACTIONS(1974), + [anon_sym_e_GT_GT] = ACTIONS(1974), + [anon_sym_o_GT_GT] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [aux_sym_unquoted_token1] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1974), }, [1465] = { + [sym_cell_path] = STATE(1761), + [sym_path] = STATE(1703), [sym_comment] = STATE(1465), - [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), - [sym__newline] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_err_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_GT_PIPE] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_RPAREN] = ACTIONS(1064), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), - [anon_sym_DOT_DOT] = ACTIONS(1062), - [anon_sym_QMARK2] = ACTIONS(1064), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT] = ACTIONS(1064), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [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_0b] = ACTIONS(1062), - [anon_sym_0o] = ACTIONS(1062), - [anon_sym_0x] = ACTIONS(1062), - [sym_val_date] = ACTIONS(1064), - [anon_sym_DQUOTE] = ACTIONS(1064), - [sym__str_single_quotes] = ACTIONS(1064), - [sym__str_back_ticks] = ACTIONS(1064), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1064), - [anon_sym_err_GT] = ACTIONS(1062), - [anon_sym_out_GT] = ACTIONS(1062), - [anon_sym_e_GT] = ACTIONS(1062), - [anon_sym_o_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT] = ACTIONS(1062), - [anon_sym_err_GT_GT] = ACTIONS(1064), - [anon_sym_out_GT_GT] = ACTIONS(1064), - [anon_sym_e_GT_GT] = ACTIONS(1064), - [anon_sym_o_GT_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), - [aux_sym_unquoted_token1] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1064), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_LPAREN] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_DOT_DOT] = ACTIONS(2072), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2074), + [anon_sym_DOT_DOT_LT] = ACTIONS(2074), + [anon_sym_null] = ACTIONS(2074), + [anon_sym_true] = ACTIONS(2074), + [anon_sym_false] = ACTIONS(2074), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [aux_sym__val_number_decimal_token2] = ACTIONS(2074), + [aux_sym__val_number_decimal_token3] = ACTIONS(2074), + [aux_sym__val_number_decimal_token4] = ACTIONS(2074), + [aux_sym__val_number_token1] = ACTIONS(2074), + [aux_sym__val_number_token2] = ACTIONS(2074), + [aux_sym__val_number_token3] = ACTIONS(2074), + [aux_sym__val_number_token4] = ACTIONS(2074), + [aux_sym__val_number_token5] = ACTIONS(2074), + [aux_sym__val_number_token6] = ACTIONS(2074), + [anon_sym_0b] = ACTIONS(2072), + [anon_sym_0o] = ACTIONS(2072), + [anon_sym_0x] = ACTIONS(2072), + [sym_val_date] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym__str_single_quotes] = ACTIONS(2074), + [sym__str_back_ticks] = ACTIONS(2074), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2074), + [anon_sym_err_GT] = ACTIONS(2072), + [anon_sym_out_GT] = ACTIONS(2072), + [anon_sym_e_GT] = ACTIONS(2072), + [anon_sym_o_GT] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT] = ACTIONS(2072), + [anon_sym_err_GT_GT] = ACTIONS(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), + [aux_sym_unquoted_token1] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2074), }, [1466] = { + [sym_cell_path] = STATE(1747), + [sym_path] = STATE(1703), [sym_comment] = STATE(1466), - [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(249), - [sym_raw_string_begin] = ACTIONS(1040), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_err_GT_PIPE] = ACTIONS(1935), + [anon_sym_out_GT_PIPE] = ACTIONS(1935), + [anon_sym_e_GT_PIPE] = ACTIONS(1935), + [anon_sym_o_GT_PIPE] = ACTIONS(1935), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_RPAREN] = ACTIONS(1935), + [anon_sym_DOLLAR] = ACTIONS(1933), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_DASH2] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), + [anon_sym_DOT_DOT_LT] = ACTIONS(1935), + [anon_sym_null] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1935), + [anon_sym_false] = ACTIONS(1935), + [aux_sym__val_number_decimal_token1] = ACTIONS(1933), + [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), + [aux_sym__val_number_token4] = ACTIONS(1935), + [aux_sym__val_number_token5] = ACTIONS(1935), + [aux_sym__val_number_token6] = ACTIONS(1935), + [anon_sym_0b] = ACTIONS(1933), + [anon_sym_0o] = ACTIONS(1933), + [anon_sym_0x] = ACTIONS(1933), + [sym_val_date] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1935), + [sym__str_single_quotes] = ACTIONS(1935), + [sym__str_back_ticks] = ACTIONS(1935), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), + [anon_sym_err_GT] = ACTIONS(1933), + [anon_sym_out_GT] = ACTIONS(1933), + [anon_sym_e_GT] = ACTIONS(1933), + [anon_sym_o_GT] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT] = ACTIONS(1933), + [anon_sym_err_GT_GT] = ACTIONS(1935), + [anon_sym_out_GT_GT] = ACTIONS(1935), + [anon_sym_e_GT_GT] = ACTIONS(1935), + [anon_sym_o_GT_GT] = ACTIONS(1935), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), + [aux_sym_unquoted_token1] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1935), }, [1467] = { [sym_comment] = STATE(1467), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_EQ_GT] = ACTIONS(1713), - [aux_sym_expr_binary_token1] = ACTIONS(1713), - [aux_sym_expr_binary_token2] = ACTIONS(1713), - [aux_sym_expr_binary_token3] = ACTIONS(1713), - [aux_sym_expr_binary_token4] = ACTIONS(1713), - [aux_sym_expr_binary_token5] = ACTIONS(1713), - [aux_sym_expr_binary_token6] = ACTIONS(1713), - [aux_sym_expr_binary_token7] = ACTIONS(1713), - [aux_sym_expr_binary_token8] = ACTIONS(1713), - [aux_sym_expr_binary_token9] = ACTIONS(1713), - [aux_sym_expr_binary_token10] = ACTIONS(1713), - [aux_sym_expr_binary_token11] = ACTIONS(1713), - [aux_sym_expr_binary_token12] = ACTIONS(1713), - [aux_sym_expr_binary_token13] = ACTIONS(1713), - [aux_sym_expr_binary_token14] = ACTIONS(1713), - [aux_sym_expr_binary_token15] = ACTIONS(1713), - [aux_sym_expr_binary_token16] = ACTIONS(1713), - [aux_sym_expr_binary_token17] = ACTIONS(1713), - [aux_sym_expr_binary_token18] = ACTIONS(1713), - [aux_sym_expr_binary_token19] = ACTIONS(1713), - [aux_sym_expr_binary_token20] = ACTIONS(1713), - [aux_sym_expr_binary_token21] = ACTIONS(1713), - [aux_sym_expr_binary_token22] = ACTIONS(1713), - [aux_sym_expr_binary_token23] = ACTIONS(1713), - [aux_sym_expr_binary_token24] = ACTIONS(1713), - [aux_sym_expr_binary_token25] = ACTIONS(1713), - [aux_sym_expr_binary_token26] = ACTIONS(1713), - [aux_sym_expr_binary_token27] = ACTIONS(1713), - [aux_sym_expr_binary_token28] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [aux_sym_record_entry_token1] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_DOT_DOT2] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(4787), + [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__immediate_decimal_token2] = ACTIONS(4789), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), }, [1468] = { [sym_comment] = STATE(1468), - [anon_sym_true] = ACTIONS(2339), - [anon_sym_false] = ACTIONS(2339), - [anon_sym_null] = ACTIONS(2339), - [aux_sym_cmd_identifier_token38] = ACTIONS(2339), - [aux_sym_cmd_identifier_token39] = ACTIONS(2339), - [aux_sym_cmd_identifier_token40] = ACTIONS(2339), - [sym__newline] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_PIPE] = ACTIONS(2339), - [anon_sym_err_GT_PIPE] = ACTIONS(2339), - [anon_sym_out_GT_PIPE] = ACTIONS(2339), - [anon_sym_e_GT_PIPE] = ACTIONS(2339), - [anon_sym_o_GT_PIPE] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_RPAREN] = ACTIONS(2339), - [anon_sym_DOLLAR] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2339), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2339), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_DOT_DOT] = ACTIONS(2335), - [anon_sym_LPAREN2] = ACTIONS(2337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2339), - [anon_sym_DOT_DOT_LT] = ACTIONS(2339), - [aux_sym__val_number_decimal_token1] = ACTIONS(2335), - [aux_sym__val_number_decimal_token2] = ACTIONS(2339), - [aux_sym__val_number_decimal_token3] = ACTIONS(2339), - [aux_sym__val_number_decimal_token4] = ACTIONS(2339), - [aux_sym__val_number_token1] = ACTIONS(2339), - [aux_sym__val_number_token2] = ACTIONS(2339), - [aux_sym__val_number_token3] = ACTIONS(2339), - [anon_sym_0b] = ACTIONS(2335), - [anon_sym_0o] = ACTIONS(2335), - [anon_sym_0x] = ACTIONS(2335), - [sym_val_date] = ACTIONS(2339), - [anon_sym_DQUOTE] = ACTIONS(2339), - [sym__str_single_quotes] = ACTIONS(2339), - [sym__str_back_ticks] = ACTIONS(2339), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2339), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2339), - [anon_sym_err_GT] = ACTIONS(2335), - [anon_sym_out_GT] = ACTIONS(2335), - [anon_sym_e_GT] = ACTIONS(2335), - [anon_sym_o_GT] = ACTIONS(2335), - [anon_sym_err_PLUSout_GT] = ACTIONS(2335), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2335), - [anon_sym_o_PLUSe_GT] = ACTIONS(2335), - [anon_sym_e_PLUSo_GT] = ACTIONS(2335), - [anon_sym_err_GT_GT] = ACTIONS(2339), - [anon_sym_out_GT_GT] = ACTIONS(2339), - [anon_sym_e_GT_GT] = ACTIONS(2339), - [anon_sym_o_GT_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2339), - [aux_sym_unquoted_token1] = ACTIONS(2335), - [aux_sym_unquoted_token2] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2339), + [ts_builtin_sym_end] = 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(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT_DOT2] = ACTIONS(4791), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT] = ACTIONS(1866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4793), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4793), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [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), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1866), + [anon_sym_0o] = ACTIONS(1866), + [anon_sym_0x] = ACTIONS(1866), + [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(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [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(1866), + [aux_sym_unquoted_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1874), }, [1469] = { + [sym_cell_path] = STATE(1762), + [sym_path] = STATE(1703), [sym_comment] = STATE(1469), - [anon_sym_true] = ACTIONS(4925), - [anon_sym_false] = ACTIONS(4925), - [anon_sym_null] = ACTIONS(4925), - [aux_sym_cmd_identifier_token38] = ACTIONS(4925), - [aux_sym_cmd_identifier_token39] = ACTIONS(4925), - [aux_sym_cmd_identifier_token40] = ACTIONS(4925), - [sym__newline] = ACTIONS(4927), - [anon_sym_SEMI] = ACTIONS(4927), - [anon_sym_PIPE] = ACTIONS(4927), - [anon_sym_err_GT_PIPE] = ACTIONS(4927), - [anon_sym_out_GT_PIPE] = ACTIONS(4927), - [anon_sym_e_GT_PIPE] = ACTIONS(4927), - [anon_sym_o_GT_PIPE] = ACTIONS(4927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4925), - [anon_sym_DASH_DASH] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_LBRACE] = ACTIONS(4927), - [anon_sym_RBRACE] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(4925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4927), - [anon_sym_DOT_DOT_LT] = ACTIONS(4927), - [aux_sym__val_number_decimal_token1] = ACTIONS(4925), - [aux_sym__val_number_decimal_token2] = ACTIONS(4925), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_decimal_token4] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4925), - [aux_sym__val_number_token2] = ACTIONS(4925), - [aux_sym__val_number_token3] = ACTIONS(4925), - [anon_sym_0b] = ACTIONS(4925), - [anon_sym_0o] = ACTIONS(4925), - [anon_sym_0x] = ACTIONS(4925), - [sym_val_date] = ACTIONS(4925), - [anon_sym_DQUOTE] = ACTIONS(4927), - [sym__str_single_quotes] = ACTIONS(4927), - [sym__str_back_ticks] = ACTIONS(4927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4927), - [anon_sym_err_GT] = ACTIONS(4925), - [anon_sym_out_GT] = ACTIONS(4925), - [anon_sym_e_GT] = ACTIONS(4925), - [anon_sym_o_GT] = ACTIONS(4925), - [anon_sym_err_PLUSout_GT] = ACTIONS(4925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4925), - [anon_sym_o_PLUSe_GT] = ACTIONS(4925), - [anon_sym_e_PLUSo_GT] = ACTIONS(4925), - [anon_sym_err_GT_GT] = ACTIONS(4927), - [anon_sym_out_GT_GT] = ACTIONS(4927), - [anon_sym_e_GT_GT] = ACTIONS(4927), - [anon_sym_o_GT_GT] = ACTIONS(4927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4927), - [anon_sym_EQ2] = ACTIONS(4929), - [sym_short_flag_identifier] = ACTIONS(4931), - [aux_sym_unquoted_token1] = ACTIONS(4925), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4927), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_err_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_GT_PIPE] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_RPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1911), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), + [anon_sym_DOT_DOT_LT] = ACTIONS(1911), + [anon_sym_null] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1907), + [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), + [aux_sym__val_number_token4] = ACTIONS(1911), + [aux_sym__val_number_token5] = ACTIONS(1911), + [aux_sym__val_number_token6] = ACTIONS(1911), + [anon_sym_0b] = ACTIONS(1907), + [anon_sym_0o] = ACTIONS(1907), + [anon_sym_0x] = ACTIONS(1907), + [sym_val_date] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), + [anon_sym_err_GT] = ACTIONS(1907), + [anon_sym_out_GT] = ACTIONS(1907), + [anon_sym_e_GT] = ACTIONS(1907), + [anon_sym_o_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT] = ACTIONS(1907), + [anon_sym_err_GT_GT] = ACTIONS(1911), + [anon_sym_out_GT_GT] = ACTIONS(1911), + [anon_sym_e_GT_GT] = ACTIONS(1911), + [anon_sym_o_GT_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), + [aux_sym_unquoted_token1] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1911), }, [1470] = { + [sym_cell_path] = STATE(1763), + [sym_path] = STATE(1703), [sym_comment] = STATE(1470), - [ts_builtin_sym_end] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4760), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_err_GT_PIPE] = ACTIONS(1915), + [anon_sym_out_GT_PIPE] = ACTIONS(1915), + [anon_sym_e_GT_PIPE] = ACTIONS(1915), + [anon_sym_o_GT_PIPE] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_RPAREN] = ACTIONS(1915), + [anon_sym_DOLLAR] = ACTIONS(1913), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_DASH2] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1915), + [anon_sym_DOT_DOT_LT] = ACTIONS(1915), + [anon_sym_null] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(1915), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1915), + [aux_sym__val_number_token5] = ACTIONS(1915), + [aux_sym__val_number_token6] = ACTIONS(1915), + [anon_sym_0b] = ACTIONS(1913), + [anon_sym_0o] = ACTIONS(1913), + [anon_sym_0x] = ACTIONS(1913), + [sym_val_date] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1915), + [sym__str_single_quotes] = ACTIONS(1915), + [sym__str_back_ticks] = ACTIONS(1915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1915), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1915), + [anon_sym_err_GT] = ACTIONS(1913), + [anon_sym_out_GT] = ACTIONS(1913), + [anon_sym_e_GT] = ACTIONS(1913), + [anon_sym_o_GT] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT] = ACTIONS(1913), + [anon_sym_err_GT_GT] = ACTIONS(1915), + [anon_sym_out_GT_GT] = ACTIONS(1915), + [anon_sym_e_GT_GT] = ACTIONS(1915), + [anon_sym_o_GT_GT] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), + [aux_sym_unquoted_token1] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1915), }, [1471] = { - [sym_cell_path] = STATE(1681), - [sym_path] = STATE(1268), [sym_comment] = STATE(1471), - [aux_sym_cell_path_repeat1] = STATE(1192), - [sym__newline] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1668), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1664), - [anon_sym_out_GT] = ACTIONS(1664), - [anon_sym_e_GT] = ACTIONS(1664), - [anon_sym_o_GT] = ACTIONS(1664), - [anon_sym_err_PLUSout_GT] = ACTIONS(1664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), - [anon_sym_o_PLUSe_GT] = ACTIONS(1664), - [anon_sym_e_PLUSo_GT] = ACTIONS(1664), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1020), + [anon_sym_EQ] = ACTIONS(1018), + [anon_sym_PLUS_EQ] = ACTIONS(1020), + [anon_sym_DASH_EQ] = ACTIONS(1020), + [anon_sym_STAR_EQ] = ACTIONS(1020), + [anon_sym_SLASH_EQ] = ACTIONS(1020), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1018), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1018), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1018), + [anon_sym_SLASH2] = ACTIONS(1018), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(247), }, [1472] = { - [sym_cell_path] = STATE(1635), - [sym_path] = STATE(1268), [sym_comment] = STATE(1472), - [aux_sym_cell_path_repeat1] = STATE(1192), - [sym__newline] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_err_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_GT_PIPE] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1672), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1672), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [anon_sym_err_GT] = ACTIONS(1670), - [anon_sym_out_GT] = ACTIONS(1670), - [anon_sym_e_GT] = ACTIONS(1670), - [anon_sym_o_GT] = ACTIONS(1670), - [anon_sym_err_PLUSout_GT] = ACTIONS(1670), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), - [anon_sym_o_PLUSe_GT] = ACTIONS(1670), - [anon_sym_e_PLUSo_GT] = ACTIONS(1670), - [anon_sym_err_GT_GT] = ACTIONS(1672), - [anon_sym_out_GT_GT] = ACTIONS(1672), - [anon_sym_e_GT_GT] = ACTIONS(1672), - [anon_sym_o_GT_GT] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(992), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(990), + [anon_sym_DOT_DOT_LT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(992), + [aux_sym__val_number_token5] = ACTIONS(992), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_0b] = ACTIONS(990), + [anon_sym_0o] = ACTIONS(990), + [anon_sym_0x] = ACTIONS(990), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_unquoted_token1] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), }, [1473] = { [sym_comment] = STATE(1473), - [anon_sym_true] = ACTIONS(2250), - [anon_sym_false] = ACTIONS(2250), - [anon_sym_null] = ACTIONS(2250), - [aux_sym_cmd_identifier_token38] = ACTIONS(2250), - [aux_sym_cmd_identifier_token39] = ACTIONS(2250), - [aux_sym_cmd_identifier_token40] = ACTIONS(2250), - [sym__newline] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_err_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_GT_PIPE] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2250), - [anon_sym_DOLLAR] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2246), - [anon_sym_LPAREN2] = ACTIONS(2248), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2250), - [anon_sym_DOT_DOT_LT] = ACTIONS(2250), - [aux_sym__val_number_decimal_token1] = ACTIONS(2246), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2250), - [aux_sym__val_number_decimal_token4] = ACTIONS(2250), - [aux_sym__val_number_token1] = ACTIONS(2250), - [aux_sym__val_number_token2] = ACTIONS(2250), - [aux_sym__val_number_token3] = ACTIONS(2250), - [anon_sym_0b] = ACTIONS(2246), - [anon_sym_0o] = ACTIONS(2246), - [anon_sym_0x] = ACTIONS(2246), - [sym_val_date] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2246), - [anon_sym_out_GT] = ACTIONS(2246), - [anon_sym_e_GT] = ACTIONS(2246), - [anon_sym_o_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT] = ACTIONS(2246), - [anon_sym_err_GT_GT] = ACTIONS(2250), - [anon_sym_out_GT_GT] = ACTIONS(2250), - [anon_sym_e_GT_GT] = ACTIONS(2250), - [anon_sym_o_GT_GT] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2250), - [aux_sym_unquoted_token1] = ACTIONS(2246), - [aux_sym_unquoted_token2] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2250), + [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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(4795), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [aux_sym__immediate_decimal_token2] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(1757), }, [1474] = { + [sym_cell_path] = STATE(1751), + [sym_path] = STATE(1703), [sym_comment] = STATE(1474), - [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), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_DOT_DOT] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(4933), - [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(249), - [sym_raw_string_begin] = ACTIONS(1050), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_err_GT_PIPE] = ACTIONS(1962), + [anon_sym_out_GT_PIPE] = ACTIONS(1962), + [anon_sym_e_GT_PIPE] = ACTIONS(1962), + [anon_sym_o_GT_PIPE] = ACTIONS(1962), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1962), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1962), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1962), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_RPAREN] = ACTIONS(1962), + [anon_sym_DOLLAR] = ACTIONS(1960), + [anon_sym_DASH_DASH] = ACTIONS(1962), + [anon_sym_DASH2] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_RBRACE] = ACTIONS(1962), + [anon_sym_DOT_DOT] = ACTIONS(1960), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1962), + [anon_sym_DOT_DOT_LT] = ACTIONS(1962), + [anon_sym_null] = ACTIONS(1962), + [anon_sym_true] = ACTIONS(1962), + [anon_sym_false] = ACTIONS(1962), + [aux_sym__val_number_decimal_token1] = ACTIONS(1960), + [aux_sym__val_number_decimal_token2] = ACTIONS(1962), + [aux_sym__val_number_decimal_token3] = ACTIONS(1962), + [aux_sym__val_number_decimal_token4] = ACTIONS(1962), + [aux_sym__val_number_token1] = ACTIONS(1962), + [aux_sym__val_number_token2] = ACTIONS(1962), + [aux_sym__val_number_token3] = ACTIONS(1962), + [aux_sym__val_number_token4] = ACTIONS(1962), + [aux_sym__val_number_token5] = ACTIONS(1962), + [aux_sym__val_number_token6] = ACTIONS(1962), + [anon_sym_0b] = ACTIONS(1960), + [anon_sym_0o] = ACTIONS(1960), + [anon_sym_0x] = ACTIONS(1960), + [sym_val_date] = ACTIONS(1962), + [anon_sym_DQUOTE] = ACTIONS(1962), + [sym__str_single_quotes] = ACTIONS(1962), + [sym__str_back_ticks] = ACTIONS(1962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1962), + [anon_sym_err_GT] = ACTIONS(1960), + [anon_sym_out_GT] = ACTIONS(1960), + [anon_sym_e_GT] = ACTIONS(1960), + [anon_sym_o_GT] = ACTIONS(1960), + [anon_sym_err_PLUSout_GT] = ACTIONS(1960), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), + [anon_sym_o_PLUSe_GT] = ACTIONS(1960), + [anon_sym_e_PLUSo_GT] = ACTIONS(1960), + [anon_sym_err_GT_GT] = ACTIONS(1962), + [anon_sym_out_GT_GT] = ACTIONS(1962), + [anon_sym_e_GT_GT] = ACTIONS(1962), + [anon_sym_o_GT_GT] = ACTIONS(1962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1962), + [aux_sym_unquoted_token1] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1962), }, [1475] = { - [sym_cmd_identifier] = STATE(4187), - [sym__command_name] = STATE(6687), - [sym_scope_pattern] = STATE(6280), - [sym_command_list] = STATE(6691), - [sym__val_number_decimal] = STATE(7312), - [sym_val_string] = STATE(4162), - [sym__raw_str] = STATE(4434), - [sym__str_double_quotes] = STATE(4434), [sym_comment] = STATE(1475), - [aux_sym_cmd_identifier_token1] = ACTIONS(4889), - [aux_sym_cmd_identifier_token2] = ACTIONS(4891), - [aux_sym_cmd_identifier_token3] = ACTIONS(4891), - [aux_sym_cmd_identifier_token4] = ACTIONS(4891), - [aux_sym_cmd_identifier_token5] = ACTIONS(4891), - [aux_sym_cmd_identifier_token6] = ACTIONS(4891), - [aux_sym_cmd_identifier_token7] = ACTIONS(4891), - [aux_sym_cmd_identifier_token8] = ACTIONS(4891), - [aux_sym_cmd_identifier_token9] = ACTIONS(4889), - [aux_sym_cmd_identifier_token10] = ACTIONS(4891), - [aux_sym_cmd_identifier_token11] = ACTIONS(4891), - [aux_sym_cmd_identifier_token12] = ACTIONS(4891), - [aux_sym_cmd_identifier_token13] = ACTIONS(4889), - [aux_sym_cmd_identifier_token14] = ACTIONS(4891), - [aux_sym_cmd_identifier_token15] = ACTIONS(4889), - [aux_sym_cmd_identifier_token16] = ACTIONS(4891), - [aux_sym_cmd_identifier_token17] = ACTIONS(4891), - [aux_sym_cmd_identifier_token18] = ACTIONS(4891), - [aux_sym_cmd_identifier_token19] = ACTIONS(4891), - [aux_sym_cmd_identifier_token20] = ACTIONS(4891), - [aux_sym_cmd_identifier_token21] = ACTIONS(4891), - [aux_sym_cmd_identifier_token22] = ACTIONS(4891), - [aux_sym_cmd_identifier_token23] = ACTIONS(4891), - [aux_sym_cmd_identifier_token24] = ACTIONS(4891), - [aux_sym_cmd_identifier_token25] = ACTIONS(4891), - [aux_sym_cmd_identifier_token26] = ACTIONS(4891), - [aux_sym_cmd_identifier_token27] = ACTIONS(4891), - [aux_sym_cmd_identifier_token28] = ACTIONS(4891), - [aux_sym_cmd_identifier_token29] = ACTIONS(4891), - [aux_sym_cmd_identifier_token30] = ACTIONS(4891), - [aux_sym_cmd_identifier_token31] = ACTIONS(4891), - [aux_sym_cmd_identifier_token32] = ACTIONS(4891), - [aux_sym_cmd_identifier_token33] = ACTIONS(4891), - [aux_sym_cmd_identifier_token34] = ACTIONS(4891), - [aux_sym_cmd_identifier_token35] = ACTIONS(4891), - [aux_sym_cmd_identifier_token36] = ACTIONS(4889), - [anon_sym_true] = ACTIONS(4893), - [anon_sym_false] = ACTIONS(4893), - [anon_sym_null] = ACTIONS(4893), - [aux_sym_cmd_identifier_token38] = ACTIONS(4895), - [aux_sym_cmd_identifier_token39] = ACTIONS(4893), - [aux_sym_cmd_identifier_token40] = ACTIONS(4893), - [sym__newline] = ACTIONS(4935), - [anon_sym_SEMI] = ACTIONS(4935), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_RPAREN] = ACTIONS(4935), - [anon_sym_RBRACE] = ACTIONS(4935), - [sym_wild_card] = ACTIONS(4901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1343), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(3842), - [sym__str_single_quotes] = ACTIONS(3844), - [sym__str_back_ticks] = ACTIONS(3844), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(3848), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_in2] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1675), + [anon_sym_xor2] = ACTIONS(1675), + [anon_sym_or2] = ACTIONS(1675), + [anon_sym_not_DASHin2] = ACTIONS(1675), + [anon_sym_starts_DASHwith2] = ACTIONS(1675), + [anon_sym_ends_DASHwith2] = ACTIONS(1675), + [anon_sym_EQ_EQ2] = ACTIONS(1675), + [anon_sym_BANG_EQ2] = ACTIONS(1675), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1675), + [anon_sym_GT_EQ2] = ACTIONS(1675), + [anon_sym_EQ_TILDE2] = ACTIONS(1675), + [anon_sym_BANG_TILDE2] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_STAR_STAR2] = ACTIONS(1675), + [anon_sym_PLUS_PLUS2] = ACTIONS(1675), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1675), + [anon_sym_SLASH_SLASH2] = ACTIONS(1675), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1675), + [anon_sym_bit_DASHshr2] = ACTIONS(1675), + [anon_sym_bit_DASHand2] = ACTIONS(1675), + [anon_sym_bit_DASHxor2] = ACTIONS(1675), + [anon_sym_bit_DASHor2] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(4799), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), }, [1476] = { + [sym_cell_path] = STATE(1759), + [sym_path] = STATE(1703), [sym_comment] = STATE(1476), - [anon_sym_true] = ACTIONS(4937), - [anon_sym_false] = ACTIONS(4937), - [anon_sym_null] = ACTIONS(4937), - [aux_sym_cmd_identifier_token38] = ACTIONS(4937), - [aux_sym_cmd_identifier_token39] = ACTIONS(4939), - [aux_sym_cmd_identifier_token40] = ACTIONS(4937), - [sym_long_flag_identifier] = ACTIONS(4941), - [sym__newline] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_err_GT_PIPE] = ACTIONS(4939), - [anon_sym_out_GT_PIPE] = ACTIONS(4939), - [anon_sym_e_GT_PIPE] = ACTIONS(4939), - [anon_sym_o_GT_PIPE] = ACTIONS(4939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_RBRACE] = ACTIONS(4939), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4939), - [anon_sym_DOT_DOT_LT] = ACTIONS(4939), - [aux_sym__val_number_decimal_token1] = ACTIONS(4937), - [aux_sym__val_number_decimal_token2] = ACTIONS(4939), - [aux_sym__val_number_decimal_token3] = ACTIONS(4939), - [aux_sym__val_number_decimal_token4] = ACTIONS(4939), - [aux_sym__val_number_token1] = ACTIONS(4937), - [aux_sym__val_number_token2] = ACTIONS(4937), - [aux_sym__val_number_token3] = ACTIONS(4937), - [anon_sym_0b] = ACTIONS(4937), - [anon_sym_0o] = ACTIONS(4937), - [anon_sym_0x] = ACTIONS(4937), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4939), - [sym__str_back_ticks] = ACTIONS(4939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4939), - [anon_sym_err_GT] = ACTIONS(4937), - [anon_sym_out_GT] = ACTIONS(4937), - [anon_sym_e_GT] = ACTIONS(4937), - [anon_sym_o_GT] = ACTIONS(4937), - [anon_sym_err_PLUSout_GT] = ACTIONS(4937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4937), - [anon_sym_o_PLUSe_GT] = ACTIONS(4937), - [anon_sym_e_PLUSo_GT] = ACTIONS(4937), - [anon_sym_err_GT_GT] = ACTIONS(4939), - [anon_sym_out_GT_GT] = ACTIONS(4939), - [anon_sym_e_GT_GT] = ACTIONS(4939), - [anon_sym_o_GT_GT] = ACTIONS(4939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4939), - [anon_sym_EQ2] = ACTIONS(4943), - [aux_sym_unquoted_token1] = ACTIONS(4937), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4939), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2006), + [anon_sym_err_GT_PIPE] = ACTIONS(2006), + [anon_sym_out_GT_PIPE] = ACTIONS(2006), + [anon_sym_e_GT_PIPE] = ACTIONS(2006), + [anon_sym_o_GT_PIPE] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_RPAREN] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_DASH2] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_DOT_DOT] = ACTIONS(2004), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2006), + [anon_sym_DOT_DOT_LT] = ACTIONS(2006), + [anon_sym_null] = ACTIONS(2006), + [anon_sym_true] = ACTIONS(2006), + [anon_sym_false] = ACTIONS(2006), + [aux_sym__val_number_decimal_token1] = ACTIONS(2004), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2006), + [aux_sym__val_number_decimal_token4] = ACTIONS(2006), + [aux_sym__val_number_token1] = ACTIONS(2006), + [aux_sym__val_number_token2] = ACTIONS(2006), + [aux_sym__val_number_token3] = ACTIONS(2006), + [aux_sym__val_number_token4] = ACTIONS(2006), + [aux_sym__val_number_token5] = ACTIONS(2006), + [aux_sym__val_number_token6] = ACTIONS(2006), + [anon_sym_0b] = ACTIONS(2004), + [anon_sym_0o] = ACTIONS(2004), + [anon_sym_0x] = ACTIONS(2004), + [sym_val_date] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym__str_single_quotes] = ACTIONS(2006), + [sym__str_back_ticks] = ACTIONS(2006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2006), + [anon_sym_err_GT] = ACTIONS(2004), + [anon_sym_out_GT] = ACTIONS(2004), + [anon_sym_e_GT] = ACTIONS(2004), + [anon_sym_o_GT] = ACTIONS(2004), + [anon_sym_err_PLUSout_GT] = ACTIONS(2004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2004), + [anon_sym_o_PLUSe_GT] = ACTIONS(2004), + [anon_sym_e_PLUSo_GT] = ACTIONS(2004), + [anon_sym_err_GT_GT] = ACTIONS(2006), + [anon_sym_out_GT_GT] = ACTIONS(2006), + [anon_sym_e_GT_GT] = ACTIONS(2006), + [anon_sym_o_GT_GT] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2006), + [aux_sym_unquoted_token1] = ACTIONS(2004), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2006), }, [1477] = { + [sym_cell_path] = STATE(1748), + [sym_path] = STATE(1703), [sym_comment] = STATE(1477), - [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(2291), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_PIPE] = ACTIONS(2291), - [anon_sym_err_GT_PIPE] = ACTIONS(2291), - [anon_sym_out_GT_PIPE] = ACTIONS(2291), - [anon_sym_e_GT_PIPE] = ACTIONS(2291), - [anon_sym_o_GT_PIPE] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(2291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2289), - [anon_sym_DOT_DOT_LT] = ACTIONS(2289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2289), - [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(2289), - [anon_sym_0o] = ACTIONS(2289), - [anon_sym_0x] = ACTIONS(2289), - [sym_val_date] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2291), - [sym__str_single_quotes] = ACTIONS(2291), - [sym__str_back_ticks] = ACTIONS(2291), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2291), - [anon_sym_err_GT] = ACTIONS(2289), - [anon_sym_out_GT] = ACTIONS(2289), - [anon_sym_e_GT] = ACTIONS(2289), - [anon_sym_o_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT] = ACTIONS(2289), - [anon_sym_err_GT_GT] = ACTIONS(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(2289), - [aux_sym_unquoted_token4] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2291), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_err_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_GT_PIPE] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1944), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_DASH2] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1946), + [anon_sym_true] = ACTIONS(1946), + [anon_sym_false] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1944), + [aux_sym__val_number_decimal_token2] = ACTIONS(1946), + [aux_sym__val_number_decimal_token3] = ACTIONS(1946), + [aux_sym__val_number_decimal_token4] = ACTIONS(1946), + [aux_sym__val_number_token1] = ACTIONS(1946), + [aux_sym__val_number_token2] = ACTIONS(1946), + [aux_sym__val_number_token3] = ACTIONS(1946), + [aux_sym__val_number_token4] = ACTIONS(1946), + [aux_sym__val_number_token5] = ACTIONS(1946), + [aux_sym__val_number_token6] = ACTIONS(1946), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1944), + [anon_sym_0x] = ACTIONS(1944), + [sym_val_date] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym__str_single_quotes] = ACTIONS(1946), + [sym__str_back_ticks] = ACTIONS(1946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1946), + [anon_sym_err_GT] = ACTIONS(1944), + [anon_sym_out_GT] = ACTIONS(1944), + [anon_sym_e_GT] = ACTIONS(1944), + [anon_sym_o_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT] = ACTIONS(1944), + [anon_sym_err_GT_GT] = ACTIONS(1946), + [anon_sym_out_GT_GT] = ACTIONS(1946), + [anon_sym_e_GT_GT] = ACTIONS(1946), + [anon_sym_o_GT_GT] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), + [aux_sym_unquoted_token1] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1946), }, [1478] = { + [sym_cell_path] = STATE(1766), + [sym_path] = STATE(1703), [sym_comment] = STATE(1478), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4790), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_err_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_GT_PIPE] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_RPAREN] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_DASH2] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_DOT_DOT] = ACTIONS(1976), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1978), + [anon_sym_DOT_DOT_LT] = ACTIONS(1978), + [anon_sym_null] = ACTIONS(1978), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1978), + [aux_sym__val_number_decimal_token4] = ACTIONS(1978), + [aux_sym__val_number_token1] = ACTIONS(1978), + [aux_sym__val_number_token2] = ACTIONS(1978), + [aux_sym__val_number_token3] = ACTIONS(1978), + [aux_sym__val_number_token4] = ACTIONS(1978), + [aux_sym__val_number_token5] = ACTIONS(1978), + [aux_sym__val_number_token6] = ACTIONS(1978), + [anon_sym_0b] = ACTIONS(1976), + [anon_sym_0o] = ACTIONS(1976), + [anon_sym_0x] = ACTIONS(1976), + [sym_val_date] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym__str_single_quotes] = ACTIONS(1978), + [sym__str_back_ticks] = ACTIONS(1978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1978), + [anon_sym_err_GT] = ACTIONS(1976), + [anon_sym_out_GT] = ACTIONS(1976), + [anon_sym_e_GT] = ACTIONS(1976), + [anon_sym_o_GT] = ACTIONS(1976), + [anon_sym_err_PLUSout_GT] = ACTIONS(1976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), + [anon_sym_o_PLUSe_GT] = ACTIONS(1976), + [anon_sym_e_PLUSo_GT] = ACTIONS(1976), + [anon_sym_err_GT_GT] = ACTIONS(1978), + [anon_sym_out_GT_GT] = ACTIONS(1978), + [anon_sym_e_GT_GT] = ACTIONS(1978), + [anon_sym_o_GT_GT] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), + [aux_sym_unquoted_token1] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1978), }, [1479] = { - [sym_cell_path] = STATE(1901), - [sym_path] = STATE(1247), [sym_comment] = STATE(1479), - [aux_sym_cell_path_repeat1] = STATE(1202), - [sym__newline] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_err_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_GT_PIPE] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), - [anon_sym_RPAREN] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [aux_sym_expr_binary_token1] = ACTIONS(1672), - [aux_sym_expr_binary_token2] = ACTIONS(1672), - [aux_sym_expr_binary_token3] = ACTIONS(1672), - [aux_sym_expr_binary_token4] = ACTIONS(1672), - [aux_sym_expr_binary_token5] = ACTIONS(1672), - [aux_sym_expr_binary_token6] = ACTIONS(1672), - [aux_sym_expr_binary_token7] = ACTIONS(1672), - [aux_sym_expr_binary_token8] = ACTIONS(1672), - [aux_sym_expr_binary_token9] = ACTIONS(1672), - [aux_sym_expr_binary_token10] = ACTIONS(1672), - [aux_sym_expr_binary_token11] = ACTIONS(1672), - [aux_sym_expr_binary_token12] = ACTIONS(1672), - [aux_sym_expr_binary_token13] = ACTIONS(1672), - [aux_sym_expr_binary_token14] = ACTIONS(1672), - [aux_sym_expr_binary_token15] = ACTIONS(1672), - [aux_sym_expr_binary_token16] = ACTIONS(1672), - [aux_sym_expr_binary_token17] = ACTIONS(1672), - [aux_sym_expr_binary_token18] = ACTIONS(1672), - [aux_sym_expr_binary_token19] = ACTIONS(1672), - [aux_sym_expr_binary_token20] = ACTIONS(1672), - [aux_sym_expr_binary_token21] = ACTIONS(1672), - [aux_sym_expr_binary_token22] = ACTIONS(1672), - [aux_sym_expr_binary_token23] = ACTIONS(1672), - [aux_sym_expr_binary_token24] = ACTIONS(1672), - [aux_sym_expr_binary_token25] = ACTIONS(1672), - [aux_sym_expr_binary_token26] = ACTIONS(1672), - [aux_sym_expr_binary_token27] = ACTIONS(1672), - [aux_sym_expr_binary_token28] = ACTIONS(1672), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT] = ACTIONS(4143), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [anon_sym_err_GT] = ACTIONS(1670), - [anon_sym_out_GT] = ACTIONS(1670), - [anon_sym_e_GT] = ACTIONS(1670), - [anon_sym_o_GT] = ACTIONS(1670), - [anon_sym_err_PLUSout_GT] = ACTIONS(1670), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), - [anon_sym_o_PLUSe_GT] = ACTIONS(1670), - [anon_sym_e_PLUSo_GT] = ACTIONS(1670), - [anon_sym_err_GT_GT] = ACTIONS(1672), - [anon_sym_out_GT_GT] = ACTIONS(1672), - [anon_sym_e_GT_GT] = ACTIONS(1672), - [anon_sym_o_GT_GT] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = 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(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = 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), + [aux_sym_unquoted_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1892), }, [1480] = { - [sym_cmd_identifier] = STATE(4786), - [sym_expr_parenthesized] = STATE(4786), - [sym_val_variable] = STATE(4786), - [sym__val_number_decimal] = STATE(7191), - [sym_val_string] = STATE(4786), - [sym__raw_str] = STATE(4414), - [sym__str_double_quotes] = STATE(4414), - [sym_val_interpolated] = STATE(4786), - [sym__inter_single_quotes] = STATE(4787), - [sym__inter_double_quotes] = STATE(4810), + [sym_cell_path] = STATE(1749), + [sym_path] = STATE(1703), [sym_comment] = STATE(1480), - [aux_sym_cmd_identifier_token1] = ACTIONS(371), - [aux_sym_cmd_identifier_token2] = ACTIONS(373), - [aux_sym_cmd_identifier_token3] = ACTIONS(373), - [aux_sym_cmd_identifier_token4] = ACTIONS(373), - [aux_sym_cmd_identifier_token5] = ACTIONS(373), - [aux_sym_cmd_identifier_token6] = ACTIONS(373), - [aux_sym_cmd_identifier_token7] = ACTIONS(373), - [aux_sym_cmd_identifier_token8] = ACTIONS(373), - [aux_sym_cmd_identifier_token9] = ACTIONS(371), - [aux_sym_cmd_identifier_token10] = ACTIONS(373), - [aux_sym_cmd_identifier_token11] = ACTIONS(373), - [aux_sym_cmd_identifier_token12] = ACTIONS(373), - [aux_sym_cmd_identifier_token13] = ACTIONS(371), - [aux_sym_cmd_identifier_token14] = ACTIONS(373), - [aux_sym_cmd_identifier_token15] = ACTIONS(371), - [aux_sym_cmd_identifier_token16] = ACTIONS(373), - [aux_sym_cmd_identifier_token17] = ACTIONS(373), - [aux_sym_cmd_identifier_token18] = ACTIONS(373), - [aux_sym_cmd_identifier_token19] = ACTIONS(373), - [aux_sym_cmd_identifier_token20] = ACTIONS(373), - [aux_sym_cmd_identifier_token21] = ACTIONS(373), - [aux_sym_cmd_identifier_token22] = ACTIONS(373), - [aux_sym_cmd_identifier_token23] = ACTIONS(373), - [aux_sym_cmd_identifier_token24] = ACTIONS(373), - [aux_sym_cmd_identifier_token25] = ACTIONS(373), - [aux_sym_cmd_identifier_token26] = ACTIONS(373), - [aux_sym_cmd_identifier_token27] = ACTIONS(373), - [aux_sym_cmd_identifier_token28] = ACTIONS(373), - [aux_sym_cmd_identifier_token29] = ACTIONS(373), - [aux_sym_cmd_identifier_token30] = ACTIONS(373), - [aux_sym_cmd_identifier_token31] = ACTIONS(373), - [aux_sym_cmd_identifier_token32] = ACTIONS(373), - [aux_sym_cmd_identifier_token33] = ACTIONS(373), - [aux_sym_cmd_identifier_token34] = ACTIONS(373), - [aux_sym_cmd_identifier_token35] = ACTIONS(373), - [aux_sym_cmd_identifier_token36] = ACTIONS(371), - [anon_sym_true] = ACTIONS(4872), - [anon_sym_false] = ACTIONS(4872), - [anon_sym_null] = ACTIONS(4872), - [aux_sym_cmd_identifier_token38] = ACTIONS(4874), - [aux_sym_cmd_identifier_token39] = ACTIONS(4872), - [aux_sym_cmd_identifier_token40] = ACTIONS(4872), - [anon_sym_LPAREN] = ACTIONS(4876), - [anon_sym_DOLLAR] = ACTIONS(4273), - [aux_sym__val_number_decimal_token1] = ACTIONS(1343), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(4293), - [sym__str_single_quotes] = ACTIONS(4295), - [sym__str_back_ticks] = ACTIONS(4295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1991), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_err_GT_PIPE] = ACTIONS(1950), + [anon_sym_out_GT_PIPE] = ACTIONS(1950), + [anon_sym_e_GT_PIPE] = ACTIONS(1950), + [anon_sym_o_GT_PIPE] = ACTIONS(1950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_DASH2] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_DOT_DOT] = ACTIONS(1948), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1950), + [anon_sym_DOT_DOT_LT] = ACTIONS(1950), + [anon_sym_null] = ACTIONS(1950), + [anon_sym_true] = ACTIONS(1950), + [anon_sym_false] = ACTIONS(1950), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1950), + [aux_sym__val_number_decimal_token4] = ACTIONS(1950), + [aux_sym__val_number_token1] = ACTIONS(1950), + [aux_sym__val_number_token2] = ACTIONS(1950), + [aux_sym__val_number_token3] = ACTIONS(1950), + [aux_sym__val_number_token4] = ACTIONS(1950), + [aux_sym__val_number_token5] = ACTIONS(1950), + [aux_sym__val_number_token6] = ACTIONS(1950), + [anon_sym_0b] = ACTIONS(1948), + [anon_sym_0o] = ACTIONS(1948), + [anon_sym_0x] = ACTIONS(1948), + [sym_val_date] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym__str_single_quotes] = ACTIONS(1950), + [sym__str_back_ticks] = ACTIONS(1950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1950), + [anon_sym_err_GT] = ACTIONS(1948), + [anon_sym_out_GT] = ACTIONS(1948), + [anon_sym_e_GT] = ACTIONS(1948), + [anon_sym_o_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT] = ACTIONS(1948), + [anon_sym_err_GT_GT] = ACTIONS(1950), + [anon_sym_out_GT_GT] = ACTIONS(1950), + [anon_sym_e_GT_GT] = ACTIONS(1950), + [anon_sym_o_GT_GT] = ACTIONS(1950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1950), + [aux_sym_unquoted_token1] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1950), }, [1481] = { + [sym_cell_path] = STATE(1787), + [sym_path] = STATE(1703), [sym_comment] = STATE(1481), - [ts_builtin_sym_end] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_DOT_DOT_LT] = ACTIONS(963), + [anon_sym_null] = ACTIONS(963), + [anon_sym_true] = ACTIONS(963), + [anon_sym_false] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(963), + [aux_sym__val_number_token5] = ACTIONS(963), + [aux_sym__val_number_token6] = ACTIONS(963), + [anon_sym_0b] = ACTIONS(961), + [anon_sym_0o] = ACTIONS(961), + [anon_sym_0x] = ACTIONS(961), + [sym_val_date] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [aux_sym_unquoted_token1] = ACTIONS(961), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), }, [1482] = { [sym_comment] = STATE(1482), - [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(2297), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_DOT_DOT] = ACTIONS(2293), - [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), - [sym_raw_string_begin] = ACTIONS(2297), + [anon_sym_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1026), + [anon_sym_DASH_EQ] = ACTIONS(1026), + [anon_sym_STAR_EQ] = ACTIONS(1026), + [anon_sym_SLASH_EQ] = ACTIONS(1026), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1026), + [sym__newline] = ACTIONS(1030), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_GT2] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1032), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_STAR2] = ACTIONS(1030), + [anon_sym_and2] = ACTIONS(1032), + [anon_sym_xor2] = ACTIONS(1032), + [anon_sym_or2] = ACTIONS(1032), + [anon_sym_not_DASHin2] = ACTIONS(1032), + [anon_sym_starts_DASHwith2] = ACTIONS(1032), + [anon_sym_ends_DASHwith2] = ACTIONS(1032), + [anon_sym_EQ_EQ2] = ACTIONS(1032), + [anon_sym_BANG_EQ2] = ACTIONS(1032), + [anon_sym_LT2] = ACTIONS(1030), + [anon_sym_LT_EQ2] = ACTIONS(1032), + [anon_sym_GT_EQ2] = ACTIONS(1032), + [anon_sym_EQ_TILDE2] = ACTIONS(1032), + [anon_sym_BANG_TILDE2] = ACTIONS(1032), + [anon_sym_STAR_STAR2] = ACTIONS(1032), + [anon_sym_PLUS_PLUS2] = ACTIONS(1030), + [anon_sym_SLASH2] = ACTIONS(1030), + [anon_sym_mod2] = ACTIONS(1032), + [anon_sym_SLASH_SLASH2] = ACTIONS(1032), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_bit_DASHshl2] = ACTIONS(1032), + [anon_sym_bit_DASHshr2] = ACTIONS(1032), + [anon_sym_bit_DASHand2] = ACTIONS(1032), + [anon_sym_bit_DASHxor2] = ACTIONS(1032), + [anon_sym_bit_DASHor2] = ACTIONS(1032), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [aux_sym_record_entry_token1] = ACTIONS(4801), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [anon_sym_err_GT_GT] = ACTIONS(1032), + [anon_sym_out_GT_GT] = ACTIONS(1032), + [anon_sym_e_GT_GT] = ACTIONS(1032), + [anon_sym_o_GT_GT] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(247), }, [1483] = { + [sym_cell_path] = STATE(1756), + [sym_path] = STATE(1703), [sym_comment] = STATE(1483), - [ts_builtin_sym_end] = ACTIONS(2279), - [anon_sym_true] = ACTIONS(2279), - [anon_sym_false] = ACTIONS(2279), - [anon_sym_null] = ACTIONS(2279), - [aux_sym_cmd_identifier_token38] = ACTIONS(2279), - [aux_sym_cmd_identifier_token39] = ACTIONS(2279), - [aux_sym_cmd_identifier_token40] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2277), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_DASH_DASH] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_DOT_DOT] = ACTIONS(2277), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2279), - [anon_sym_DOT_DOT_LT] = 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_0b] = ACTIONS(2277), - [anon_sym_0o] = ACTIONS(2277), - [anon_sym_0x] = ACTIONS(2277), - [sym_val_date] = ACTIONS(2279), - [anon_sym_DQUOTE] = ACTIONS(2279), - [sym__str_single_quotes] = ACTIONS(2279), - [sym__str_back_ticks] = ACTIONS(2279), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2279), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2277), - [anon_sym_out_GT] = ACTIONS(2277), - [anon_sym_e_GT] = ACTIONS(2277), - [anon_sym_o_GT] = ACTIONS(2277), - [anon_sym_err_PLUSout_GT] = ACTIONS(2277), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2277), - [anon_sym_o_PLUSe_GT] = ACTIONS(2277), - [anon_sym_e_PLUSo_GT] = ACTIONS(2277), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [aux_sym_unquoted_token1] = ACTIONS(2277), - [aux_sym_unquoted_token2] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2279), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_err_GT_PIPE] = ACTIONS(1994), + [anon_sym_out_GT_PIPE] = ACTIONS(1994), + [anon_sym_e_GT_PIPE] = ACTIONS(1994), + [anon_sym_o_GT_PIPE] = ACTIONS(1994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_DASH2] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_DOT_DOT] = ACTIONS(1992), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1994), + [anon_sym_DOT_DOT_LT] = ACTIONS(1994), + [anon_sym_null] = ACTIONS(1994), + [anon_sym_true] = ACTIONS(1994), + [anon_sym_false] = ACTIONS(1994), + [aux_sym__val_number_decimal_token1] = ACTIONS(1992), + [aux_sym__val_number_decimal_token2] = ACTIONS(1994), + [aux_sym__val_number_decimal_token3] = ACTIONS(1994), + [aux_sym__val_number_decimal_token4] = ACTIONS(1994), + [aux_sym__val_number_token1] = ACTIONS(1994), + [aux_sym__val_number_token2] = ACTIONS(1994), + [aux_sym__val_number_token3] = ACTIONS(1994), + [aux_sym__val_number_token4] = ACTIONS(1994), + [aux_sym__val_number_token5] = ACTIONS(1994), + [aux_sym__val_number_token6] = ACTIONS(1994), + [anon_sym_0b] = ACTIONS(1992), + [anon_sym_0o] = ACTIONS(1992), + [anon_sym_0x] = ACTIONS(1992), + [sym_val_date] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym__str_single_quotes] = ACTIONS(1994), + [sym__str_back_ticks] = ACTIONS(1994), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1994), + [anon_sym_err_GT] = ACTIONS(1992), + [anon_sym_out_GT] = ACTIONS(1992), + [anon_sym_e_GT] = ACTIONS(1992), + [anon_sym_o_GT] = ACTIONS(1992), + [anon_sym_err_PLUSout_GT] = ACTIONS(1992), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1992), + [anon_sym_o_PLUSe_GT] = ACTIONS(1992), + [anon_sym_e_PLUSo_GT] = ACTIONS(1992), + [anon_sym_err_GT_GT] = ACTIONS(1994), + [anon_sym_out_GT_GT] = ACTIONS(1994), + [anon_sym_e_GT_GT] = ACTIONS(1994), + [anon_sym_o_GT_GT] = ACTIONS(1994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1994), + [aux_sym_unquoted_token1] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1994), }, [1484] = { + [sym_cell_path] = STATE(1740), + [sym_path] = STATE(1703), [sym_comment] = STATE(1484), - [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), - [sym__newline] = ACTIONS(2305), - [anon_sym_SEMI] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_err_GT_PIPE] = ACTIONS(2305), - [anon_sym_out_GT_PIPE] = ACTIONS(2305), - [anon_sym_e_GT_PIPE] = ACTIONS(2305), - [anon_sym_o_GT_PIPE] = ACTIONS(2305), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2305), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2305), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2305), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_RPAREN] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2303), - [anon_sym_DOT_DOT_LT] = 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_0b] = ACTIONS(2303), - [anon_sym_0o] = ACTIONS(2303), - [anon_sym_0x] = ACTIONS(2303), - [sym_val_date] = ACTIONS(2303), - [anon_sym_DQUOTE] = ACTIONS(2305), - [sym__str_single_quotes] = ACTIONS(2305), - [sym__str_back_ticks] = ACTIONS(2305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2305), - [anon_sym_err_GT] = ACTIONS(2303), - [anon_sym_out_GT] = ACTIONS(2303), - [anon_sym_e_GT] = ACTIONS(2303), - [anon_sym_o_GT] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT] = ACTIONS(2303), - [anon_sym_err_GT_GT] = ACTIONS(2303), - [anon_sym_out_GT_GT] = ACTIONS(2303), - [anon_sym_e_GT_GT] = ACTIONS(2303), - [anon_sym_o_GT_GT] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2303), - [aux_sym_unquoted_token1] = ACTIONS(2303), - [aux_sym_unquoted_token4] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2305), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(2084), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_err_GT_PIPE] = ACTIONS(2084), + [anon_sym_out_GT_PIPE] = ACTIONS(2084), + [anon_sym_e_GT_PIPE] = ACTIONS(2084), + [anon_sym_o_GT_PIPE] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(2084), + [anon_sym_DOLLAR] = ACTIONS(2082), + [anon_sym_DASH_DASH] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_DOT_DOT] = ACTIONS(2082), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [anon_sym_null] = ACTIONS(2084), + [anon_sym_true] = ACTIONS(2084), + [anon_sym_false] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2082), + [aux_sym__val_number_decimal_token2] = ACTIONS(2084), + [aux_sym__val_number_decimal_token3] = ACTIONS(2084), + [aux_sym__val_number_decimal_token4] = ACTIONS(2084), + [aux_sym__val_number_token1] = ACTIONS(2084), + [aux_sym__val_number_token2] = ACTIONS(2084), + [aux_sym__val_number_token3] = ACTIONS(2084), + [aux_sym__val_number_token4] = ACTIONS(2084), + [aux_sym__val_number_token5] = ACTIONS(2084), + [aux_sym__val_number_token6] = ACTIONS(2084), + [anon_sym_0b] = ACTIONS(2082), + [anon_sym_0o] = ACTIONS(2082), + [anon_sym_0x] = ACTIONS(2082), + [sym_val_date] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(2084), + [sym__str_single_quotes] = ACTIONS(2084), + [sym__str_back_ticks] = ACTIONS(2084), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2084), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2084), + [anon_sym_err_GT] = ACTIONS(2082), + [anon_sym_out_GT] = ACTIONS(2082), + [anon_sym_e_GT] = ACTIONS(2082), + [anon_sym_o_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT] = ACTIONS(2082), + [anon_sym_err_GT_GT] = ACTIONS(2084), + [anon_sym_out_GT_GT] = ACTIONS(2084), + [anon_sym_e_GT_GT] = ACTIONS(2084), + [anon_sym_o_GT_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [aux_sym_unquoted_token1] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2084), }, [1485] = { + [sym_cell_path] = STATE(1760), + [sym_path] = STATE(1703), [sym_comment] = STATE(1485), - [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(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1850), - [anon_sym_DOT_DOT_LT] = ACTIONS(1850), - [aux_sym__val_number_decimal_token1] = ACTIONS(1842), - [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(1842), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [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(1842), - [anon_sym_out_GT] = ACTIONS(1842), - [anon_sym_e_GT] = ACTIONS(1842), - [anon_sym_o_GT] = ACTIONS(1842), - [anon_sym_err_PLUSout_GT] = ACTIONS(1842), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1842), - [anon_sym_o_PLUSe_GT] = ACTIONS(1842), - [anon_sym_e_PLUSo_GT] = ACTIONS(1842), - [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(1842), - [aux_sym_unquoted_token2] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1850), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_PIPE] = ACTIONS(2070), + [anon_sym_err_GT_PIPE] = ACTIONS(2070), + [anon_sym_out_GT_PIPE] = ACTIONS(2070), + [anon_sym_e_GT_PIPE] = ACTIONS(2070), + [anon_sym_o_GT_PIPE] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2070), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_RPAREN] = ACTIONS(2070), + [anon_sym_DOLLAR] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_DOT_DOT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2070), + [anon_sym_DOT_DOT_LT] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2070), + [anon_sym_true] = ACTIONS(2070), + [anon_sym_false] = ACTIONS(2070), + [aux_sym__val_number_decimal_token1] = ACTIONS(2068), + [aux_sym__val_number_decimal_token2] = ACTIONS(2070), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(2070), + [aux_sym__val_number_token2] = ACTIONS(2070), + [aux_sym__val_number_token3] = ACTIONS(2070), + [aux_sym__val_number_token4] = ACTIONS(2070), + [aux_sym__val_number_token5] = ACTIONS(2070), + [aux_sym__val_number_token6] = ACTIONS(2070), + [anon_sym_0b] = ACTIONS(2068), + [anon_sym_0o] = ACTIONS(2068), + [anon_sym_0x] = ACTIONS(2068), + [sym_val_date] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [sym__str_single_quotes] = ACTIONS(2070), + [sym__str_back_ticks] = ACTIONS(2070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2070), + [anon_sym_err_GT] = ACTIONS(2068), + [anon_sym_out_GT] = ACTIONS(2068), + [anon_sym_e_GT] = ACTIONS(2068), + [anon_sym_o_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT] = ACTIONS(2068), + [anon_sym_err_GT_GT] = ACTIONS(2070), + [anon_sym_out_GT_GT] = ACTIONS(2070), + [anon_sym_e_GT_GT] = ACTIONS(2070), + [anon_sym_o_GT_GT] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2070), + [aux_sym_unquoted_token1] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2070), }, [1486] = { [sym_comment] = STATE(1486), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), - [anon_sym_null] = ACTIONS(1068), - [aux_sym_cmd_identifier_token38] = ACTIONS(1068), - [aux_sym_cmd_identifier_token39] = ACTIONS(1068), - [aux_sym_cmd_identifier_token40] = ACTIONS(1068), - [sym__newline] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_err_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_GT_PIPE] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1066), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), - [anon_sym_DOT_DOT_LT] = ACTIONS(1068), - [aux_sym__val_number_decimal_token1] = ACTIONS(1066), - [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_0b] = ACTIONS(1066), - [anon_sym_0o] = ACTIONS(1066), - [anon_sym_0x] = ACTIONS(1066), - [sym_val_date] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym__str_single_quotes] = ACTIONS(1068), - [sym__str_back_ticks] = ACTIONS(1068), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), - [anon_sym_err_GT] = ACTIONS(1066), - [anon_sym_out_GT] = ACTIONS(1066), - [anon_sym_e_GT] = ACTIONS(1066), - [anon_sym_o_GT] = ACTIONS(1066), - [anon_sym_err_PLUSout_GT] = ACTIONS(1066), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), - [anon_sym_o_PLUSe_GT] = ACTIONS(1066), - [anon_sym_e_PLUSo_GT] = ACTIONS(1066), - [anon_sym_err_GT_GT] = ACTIONS(1068), - [anon_sym_out_GT_GT] = ACTIONS(1068), - [anon_sym_e_GT_GT] = ACTIONS(1068), - [anon_sym_o_GT_GT] = ACTIONS(1068), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), - [aux_sym_unquoted_token1] = ACTIONS(1066), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1068), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4803), + [aux_sym__immediate_decimal_token2] = ACTIONS(4805), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1487] = { [sym_comment] = STATE(1487), - [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] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), - [anon_sym_DOT_DOT_LT] = 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_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(249), - [sym_raw_string_begin] = ACTIONS(1072), + [ts_builtin_sym_end] = ACTIONS(980), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(4807), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_DOT_DOT_LT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(978), + [anon_sym_0o] = ACTIONS(978), + [anon_sym_0x] = ACTIONS(978), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), }, [1488] = { - [sym_cell_path] = STATE(2006), - [sym_path] = STATE(1299), [sym_comment] = STATE(1488), - [aux_sym_cell_path_repeat1] = STATE(1225), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym__newline] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_err_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_GT_PIPE] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), - [aux_sym_expr_binary_token1] = ACTIONS(1672), - [aux_sym_expr_binary_token2] = ACTIONS(1672), - [aux_sym_expr_binary_token3] = ACTIONS(1672), - [aux_sym_expr_binary_token4] = ACTIONS(1672), - [aux_sym_expr_binary_token5] = ACTIONS(1672), - [aux_sym_expr_binary_token6] = ACTIONS(1672), - [aux_sym_expr_binary_token7] = ACTIONS(1672), - [aux_sym_expr_binary_token8] = ACTIONS(1672), - [aux_sym_expr_binary_token9] = ACTIONS(1672), - [aux_sym_expr_binary_token10] = ACTIONS(1672), - [aux_sym_expr_binary_token11] = ACTIONS(1672), - [aux_sym_expr_binary_token12] = ACTIONS(1672), - [aux_sym_expr_binary_token13] = ACTIONS(1672), - [aux_sym_expr_binary_token14] = ACTIONS(1672), - [aux_sym_expr_binary_token15] = ACTIONS(1672), - [aux_sym_expr_binary_token16] = ACTIONS(1672), - [aux_sym_expr_binary_token17] = ACTIONS(1672), - [aux_sym_expr_binary_token18] = ACTIONS(1672), - [aux_sym_expr_binary_token19] = ACTIONS(1672), - [aux_sym_expr_binary_token20] = ACTIONS(1672), - [aux_sym_expr_binary_token21] = ACTIONS(1672), - [aux_sym_expr_binary_token22] = ACTIONS(1672), - [aux_sym_expr_binary_token23] = ACTIONS(1672), - [aux_sym_expr_binary_token24] = ACTIONS(1672), - [aux_sym_expr_binary_token25] = ACTIONS(1672), - [aux_sym_expr_binary_token26] = ACTIONS(1672), - [aux_sym_expr_binary_token27] = ACTIONS(1672), - [aux_sym_expr_binary_token28] = ACTIONS(1672), - [anon_sym_DOT_DOT2] = ACTIONS(1670), - [anon_sym_DOT] = ACTIONS(4494), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), - [anon_sym_err_GT] = ACTIONS(1670), - [anon_sym_out_GT] = ACTIONS(1670), - [anon_sym_e_GT] = ACTIONS(1670), - [anon_sym_o_GT] = ACTIONS(1670), - [anon_sym_err_PLUSout_GT] = ACTIONS(1670), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), - [anon_sym_o_PLUSe_GT] = ACTIONS(1670), - [anon_sym_e_PLUSo_GT] = ACTIONS(1670), - [anon_sym_err_GT_GT] = ACTIONS(1672), - [anon_sym_out_GT_GT] = ACTIONS(1672), - [anon_sym_e_GT_GT] = ACTIONS(1672), - [anon_sym_o_GT_GT] = ACTIONS(1672), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1006), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1006), + [anon_sym_SLASH2] = ACTIONS(1006), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), }, [1489] = { + [sym_cell_path] = STATE(1757), + [sym_path] = STATE(1703), [sym_comment] = STATE(1489), - [anon_sym_true] = ACTIONS(4945), - [anon_sym_false] = ACTIONS(4945), - [anon_sym_null] = ACTIONS(4945), - [aux_sym_cmd_identifier_token38] = ACTIONS(4945), - [aux_sym_cmd_identifier_token39] = ACTIONS(4945), - [aux_sym_cmd_identifier_token40] = ACTIONS(4945), - [sym__newline] = ACTIONS(4945), - [anon_sym_SEMI] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(4945), - [anon_sym_err_GT_PIPE] = ACTIONS(4945), - [anon_sym_out_GT_PIPE] = ACTIONS(4945), - [anon_sym_e_GT_PIPE] = ACTIONS(4945), - [anon_sym_o_GT_PIPE] = ACTIONS(4945), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4945), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4945), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4945), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4945), - [anon_sym_LBRACK] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_DOLLAR] = ACTIONS(4947), - [anon_sym_DASH_DASH] = ACTIONS(4945), - [anon_sym_DASH] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4945), - [anon_sym_RBRACE] = ACTIONS(4945), - [anon_sym_DOT_DOT] = ACTIONS(4947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4945), - [anon_sym_DOT_DOT_LT] = ACTIONS(4945), - [aux_sym__val_number_decimal_token1] = ACTIONS(4947), - [aux_sym__val_number_decimal_token2] = ACTIONS(4945), - [aux_sym__val_number_decimal_token3] = ACTIONS(4945), - [aux_sym__val_number_decimal_token4] = ACTIONS(4945), - [aux_sym__val_number_token1] = ACTIONS(4945), - [aux_sym__val_number_token2] = ACTIONS(4945), - [aux_sym__val_number_token3] = ACTIONS(4945), - [anon_sym_0b] = ACTIONS(4947), - [anon_sym_0o] = ACTIONS(4947), - [anon_sym_0x] = ACTIONS(4947), - [sym_val_date] = ACTIONS(4945), - [anon_sym_DQUOTE] = ACTIONS(4945), - [sym__str_single_quotes] = ACTIONS(4945), - [sym__str_back_ticks] = ACTIONS(4945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), - [anon_sym_err_GT] = ACTIONS(4947), - [anon_sym_out_GT] = ACTIONS(4947), - [anon_sym_e_GT] = ACTIONS(4947), - [anon_sym_o_GT] = ACTIONS(4947), - [anon_sym_err_PLUSout_GT] = ACTIONS(4947), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4947), - [anon_sym_o_PLUSe_GT] = ACTIONS(4947), - [anon_sym_e_PLUSo_GT] = ACTIONS(4947), - [anon_sym_err_GT_GT] = ACTIONS(4945), - [anon_sym_out_GT_GT] = ACTIONS(4945), - [anon_sym_e_GT_GT] = ACTIONS(4945), - [anon_sym_o_GT_GT] = ACTIONS(4945), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4945), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4945), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4945), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4945), - [anon_sym_EQ2] = ACTIONS(4949), - [aux_sym_unquoted_token1] = ACTIONS(4947), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4945), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_err_GT_PIPE] = ACTIONS(1998), + [anon_sym_out_GT_PIPE] = ACTIONS(1998), + [anon_sym_e_GT_PIPE] = ACTIONS(1998), + [anon_sym_o_GT_PIPE] = ACTIONS(1998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_RPAREN] = ACTIONS(1998), + [anon_sym_DOLLAR] = ACTIONS(1996), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_DASH2] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_DOT_DOT] = ACTIONS(1996), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1998), + [anon_sym_DOT_DOT_LT] = ACTIONS(1998), + [anon_sym_null] = ACTIONS(1998), + [anon_sym_true] = ACTIONS(1998), + [anon_sym_false] = ACTIONS(1998), + [aux_sym__val_number_decimal_token1] = ACTIONS(1996), + [aux_sym__val_number_decimal_token2] = ACTIONS(1998), + [aux_sym__val_number_decimal_token3] = ACTIONS(1998), + [aux_sym__val_number_decimal_token4] = ACTIONS(1998), + [aux_sym__val_number_token1] = ACTIONS(1998), + [aux_sym__val_number_token2] = ACTIONS(1998), + [aux_sym__val_number_token3] = ACTIONS(1998), + [aux_sym__val_number_token4] = ACTIONS(1998), + [aux_sym__val_number_token5] = ACTIONS(1998), + [aux_sym__val_number_token6] = ACTIONS(1998), + [anon_sym_0b] = ACTIONS(1996), + [anon_sym_0o] = ACTIONS(1996), + [anon_sym_0x] = ACTIONS(1996), + [sym_val_date] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym__str_single_quotes] = ACTIONS(1998), + [sym__str_back_ticks] = ACTIONS(1998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1998), + [anon_sym_err_GT] = ACTIONS(1996), + [anon_sym_out_GT] = ACTIONS(1996), + [anon_sym_e_GT] = ACTIONS(1996), + [anon_sym_o_GT] = ACTIONS(1996), + [anon_sym_err_PLUSout_GT] = ACTIONS(1996), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1996), + [anon_sym_o_PLUSe_GT] = ACTIONS(1996), + [anon_sym_e_PLUSo_GT] = ACTIONS(1996), + [anon_sym_err_GT_GT] = ACTIONS(1998), + [anon_sym_out_GT_GT] = ACTIONS(1998), + [anon_sym_e_GT_GT] = ACTIONS(1998), + [anon_sym_o_GT_GT] = ACTIONS(1998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1998), + [aux_sym_unquoted_token1] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1998), }, [1490] = { - [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(4808), - [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(4808), - [aux_sym_cmd_identifier_token40] = ACTIONS(4808), - [sym__newline] = ACTIONS(4808), - [anon_sym_SEMI] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_err_GT_PIPE] = ACTIONS(4808), - [anon_sym_out_GT_PIPE] = ACTIONS(4808), - [anon_sym_e_GT_PIPE] = ACTIONS(4808), - [anon_sym_o_GT_PIPE] = ACTIONS(4808), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4808), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4808), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4808), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4808), - [anon_sym_LBRACK] = ACTIONS(4808), - [anon_sym_LPAREN] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4810), - [anon_sym_DASH_DASH] = ACTIONS(4808), - [anon_sym_DASH] = ACTIONS(4810), - [anon_sym_LBRACE] = ACTIONS(4808), - [anon_sym_DOT_DOT] = ACTIONS(4810), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4808), - [anon_sym_DOT_DOT_LT] = ACTIONS(4808), - [aux_sym__val_number_decimal_token1] = ACTIONS(4810), - [aux_sym__val_number_decimal_token2] = ACTIONS(4808), - [aux_sym__val_number_decimal_token3] = ACTIONS(4808), - [aux_sym__val_number_decimal_token4] = ACTIONS(4808), - [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(4810), - [anon_sym_0o] = ACTIONS(4810), - [anon_sym_0x] = ACTIONS(4810), - [sym_val_date] = ACTIONS(4808), - [anon_sym_DQUOTE] = ACTIONS(4808), - [sym__str_single_quotes] = ACTIONS(4808), - [sym__str_back_ticks] = ACTIONS(4808), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4808), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4808), - [anon_sym_err_GT] = ACTIONS(4810), - [anon_sym_out_GT] = ACTIONS(4810), - [anon_sym_e_GT] = ACTIONS(4810), - [anon_sym_o_GT] = ACTIONS(4810), - [anon_sym_err_PLUSout_GT] = ACTIONS(4810), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4810), - [anon_sym_o_PLUSe_GT] = ACTIONS(4810), - [anon_sym_e_PLUSo_GT] = ACTIONS(4810), - [anon_sym_err_GT_GT] = ACTIONS(4808), - [anon_sym_out_GT_GT] = ACTIONS(4808), - [anon_sym_e_GT_GT] = ACTIONS(4808), - [anon_sym_o_GT_GT] = ACTIONS(4808), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4808), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4808), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4808), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4808), - [aux_sym_unquoted_token1] = ACTIONS(4810), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4808), + [ts_builtin_sym_end] = ACTIONS(986), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(4809), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(986), }, [1491] = { - [sym__expr_parenthesized_immediate] = STATE(7791), + [sym_cell_path] = STATE(1767), + [sym_path] = STATE(1703), [sym_comment] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(4812), - [anon_sym_true] = ACTIONS(4812), - [anon_sym_false] = ACTIONS(4812), - [anon_sym_null] = ACTIONS(4812), - [aux_sym_cmd_identifier_token38] = ACTIONS(4812), - [aux_sym_cmd_identifier_token39] = ACTIONS(4812), - [aux_sym_cmd_identifier_token40] = ACTIONS(4812), - [sym__newline] = ACTIONS(4812), - [anon_sym_SEMI] = ACTIONS(4812), - [anon_sym_PIPE] = ACTIONS(4812), - [anon_sym_err_GT_PIPE] = ACTIONS(4812), - [anon_sym_out_GT_PIPE] = ACTIONS(4812), - [anon_sym_e_GT_PIPE] = ACTIONS(4812), - [anon_sym_o_GT_PIPE] = ACTIONS(4812), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4812), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4812), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4812), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4812), - [anon_sym_LBRACK] = ACTIONS(4812), - [anon_sym_LPAREN] = ACTIONS(4814), - [anon_sym_DOLLAR] = ACTIONS(4814), - [anon_sym_DASH_DASH] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(4814), - [anon_sym_LBRACE] = ACTIONS(4812), - [anon_sym_DOT_DOT] = ACTIONS(4814), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4812), - [anon_sym_DOT_DOT_LT] = ACTIONS(4812), - [aux_sym__val_number_decimal_token1] = ACTIONS(4814), - [aux_sym__val_number_decimal_token2] = ACTIONS(4812), - [aux_sym__val_number_decimal_token3] = ACTIONS(4812), - [aux_sym__val_number_decimal_token4] = ACTIONS(4812), - [aux_sym__val_number_token1] = ACTIONS(4812), - [aux_sym__val_number_token2] = ACTIONS(4812), - [aux_sym__val_number_token3] = ACTIONS(4812), - [anon_sym_0b] = ACTIONS(4814), - [anon_sym_0o] = ACTIONS(4814), - [anon_sym_0x] = ACTIONS(4814), - [sym_val_date] = ACTIONS(4812), - [anon_sym_DQUOTE] = ACTIONS(4812), - [sym__str_single_quotes] = ACTIONS(4812), - [sym__str_back_ticks] = ACTIONS(4812), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4812), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4812), - [anon_sym_err_GT] = ACTIONS(4814), - [anon_sym_out_GT] = ACTIONS(4814), - [anon_sym_e_GT] = ACTIONS(4814), - [anon_sym_o_GT] = ACTIONS(4814), - [anon_sym_err_PLUSout_GT] = ACTIONS(4814), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4814), - [anon_sym_o_PLUSe_GT] = ACTIONS(4814), - [anon_sym_e_PLUSo_GT] = ACTIONS(4814), - [anon_sym_err_GT_GT] = ACTIONS(4812), - [anon_sym_out_GT_GT] = ACTIONS(4812), - [anon_sym_e_GT_GT] = ACTIONS(4812), - [anon_sym_o_GT_GT] = ACTIONS(4812), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4812), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4812), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4812), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4812), - [aux_sym_unquoted_token1] = ACTIONS(4814), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4812), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_err_GT_PIPE] = ACTIONS(2096), + [anon_sym_out_GT_PIPE] = ACTIONS(2096), + [anon_sym_e_GT_PIPE] = ACTIONS(2096), + [anon_sym_o_GT_PIPE] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_RPAREN] = ACTIONS(2096), + [anon_sym_DOLLAR] = ACTIONS(2094), + [anon_sym_DASH_DASH] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_DOT_DOT] = ACTIONS(2094), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2096), + [anon_sym_DOT_DOT_LT] = ACTIONS(2096), + [anon_sym_null] = ACTIONS(2096), + [anon_sym_true] = ACTIONS(2096), + [anon_sym_false] = ACTIONS(2096), + [aux_sym__val_number_decimal_token1] = ACTIONS(2094), + [aux_sym__val_number_decimal_token2] = ACTIONS(2096), + [aux_sym__val_number_decimal_token3] = ACTIONS(2096), + [aux_sym__val_number_decimal_token4] = ACTIONS(2096), + [aux_sym__val_number_token1] = ACTIONS(2096), + [aux_sym__val_number_token2] = ACTIONS(2096), + [aux_sym__val_number_token3] = ACTIONS(2096), + [aux_sym__val_number_token4] = ACTIONS(2096), + [aux_sym__val_number_token5] = ACTIONS(2096), + [aux_sym__val_number_token6] = ACTIONS(2096), + [anon_sym_0b] = ACTIONS(2094), + [anon_sym_0o] = ACTIONS(2094), + [anon_sym_0x] = ACTIONS(2094), + [sym_val_date] = ACTIONS(2096), + [anon_sym_DQUOTE] = ACTIONS(2096), + [sym__str_single_quotes] = ACTIONS(2096), + [sym__str_back_ticks] = ACTIONS(2096), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2096), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2096), + [anon_sym_err_GT] = ACTIONS(2094), + [anon_sym_out_GT] = ACTIONS(2094), + [anon_sym_e_GT] = ACTIONS(2094), + [anon_sym_o_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT] = ACTIONS(2094), + [anon_sym_err_GT_GT] = ACTIONS(2096), + [anon_sym_out_GT_GT] = ACTIONS(2096), + [anon_sym_e_GT_GT] = ACTIONS(2096), + [anon_sym_o_GT_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), + [aux_sym_unquoted_token1] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2096), }, [1492] = { - [sym__expr_parenthesized_immediate] = STATE(7791), + [sym_cell_path] = STATE(1752), + [sym_path] = STATE(1703), [sym_comment] = STATE(1492), - [ts_builtin_sym_end] = ACTIONS(4844), - [anon_sym_true] = ACTIONS(4844), - [anon_sym_false] = ACTIONS(4844), - [anon_sym_null] = ACTIONS(4844), - [aux_sym_cmd_identifier_token38] = ACTIONS(4844), - [aux_sym_cmd_identifier_token39] = ACTIONS(4844), - [aux_sym_cmd_identifier_token40] = ACTIONS(4844), - [sym__newline] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4844), - [anon_sym_PIPE] = ACTIONS(4844), - [anon_sym_err_GT_PIPE] = ACTIONS(4844), - [anon_sym_out_GT_PIPE] = ACTIONS(4844), - [anon_sym_e_GT_PIPE] = ACTIONS(4844), - [anon_sym_o_GT_PIPE] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4844), - [anon_sym_LBRACK] = ACTIONS(4844), - [anon_sym_LPAREN] = ACTIONS(4846), - [anon_sym_DOLLAR] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4846), - [anon_sym_LBRACE] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4844), - [anon_sym_DOT_DOT_LT] = ACTIONS(4844), - [aux_sym__val_number_decimal_token1] = ACTIONS(4846), - [aux_sym__val_number_decimal_token2] = ACTIONS(4844), - [aux_sym__val_number_decimal_token3] = ACTIONS(4844), - [aux_sym__val_number_decimal_token4] = ACTIONS(4844), - [aux_sym__val_number_token1] = ACTIONS(4844), - [aux_sym__val_number_token2] = ACTIONS(4844), - [aux_sym__val_number_token3] = ACTIONS(4844), - [anon_sym_0b] = ACTIONS(4846), - [anon_sym_0o] = ACTIONS(4846), - [anon_sym_0x] = ACTIONS(4846), - [sym_val_date] = ACTIONS(4844), - [anon_sym_DQUOTE] = ACTIONS(4844), - [sym__str_single_quotes] = ACTIONS(4844), - [sym__str_back_ticks] = ACTIONS(4844), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4844), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4844), - [anon_sym_err_GT] = ACTIONS(4846), - [anon_sym_out_GT] = ACTIONS(4846), - [anon_sym_e_GT] = ACTIONS(4846), - [anon_sym_o_GT] = ACTIONS(4846), - [anon_sym_err_PLUSout_GT] = ACTIONS(4846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4846), - [anon_sym_o_PLUSe_GT] = ACTIONS(4846), - [anon_sym_e_PLUSo_GT] = ACTIONS(4846), - [anon_sym_err_GT_GT] = ACTIONS(4844), - [anon_sym_out_GT_GT] = ACTIONS(4844), - [anon_sym_e_GT_GT] = ACTIONS(4844), - [anon_sym_o_GT_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4844), - [aux_sym_unquoted_token1] = ACTIONS(4846), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4844), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_err_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_GT_PIPE] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT] = ACTIONS(1970), + [anon_sym_null] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1970), + [aux_sym__val_number_token5] = ACTIONS(1970), + [aux_sym__val_number_token6] = ACTIONS(1970), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1968), + [anon_sym_0x] = ACTIONS(1968), + [sym_val_date] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1970), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), + [anon_sym_err_GT_GT] = ACTIONS(1970), + [anon_sym_out_GT_GT] = ACTIONS(1970), + [anon_sym_e_GT_GT] = ACTIONS(1970), + [anon_sym_o_GT_GT] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), + [aux_sym_unquoted_token1] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1970), }, [1493] = { + [sym_cell_path] = STATE(1758), + [sym_path] = STATE(1703), [sym_comment] = STATE(1493), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4854), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_err_GT_PIPE] = ACTIONS(2002), + [anon_sym_out_GT_PIPE] = ACTIONS(2002), + [anon_sym_e_GT_PIPE] = ACTIONS(2002), + [anon_sym_o_GT_PIPE] = ACTIONS(2002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2000), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2002), + [anon_sym_DOT_DOT_LT] = ACTIONS(2002), + [anon_sym_null] = ACTIONS(2002), + [anon_sym_true] = ACTIONS(2002), + [anon_sym_false] = ACTIONS(2002), + [aux_sym__val_number_decimal_token1] = ACTIONS(2000), + [aux_sym__val_number_decimal_token2] = ACTIONS(2002), + [aux_sym__val_number_decimal_token3] = ACTIONS(2002), + [aux_sym__val_number_decimal_token4] = ACTIONS(2002), + [aux_sym__val_number_token1] = ACTIONS(2002), + [aux_sym__val_number_token2] = ACTIONS(2002), + [aux_sym__val_number_token3] = ACTIONS(2002), + [aux_sym__val_number_token4] = ACTIONS(2002), + [aux_sym__val_number_token5] = ACTIONS(2002), + [aux_sym__val_number_token6] = ACTIONS(2002), + [anon_sym_0b] = ACTIONS(2000), + [anon_sym_0o] = ACTIONS(2000), + [anon_sym_0x] = ACTIONS(2000), + [sym_val_date] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym__str_single_quotes] = ACTIONS(2002), + [sym__str_back_ticks] = ACTIONS(2002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), + [anon_sym_err_GT] = ACTIONS(2000), + [anon_sym_out_GT] = ACTIONS(2000), + [anon_sym_e_GT] = ACTIONS(2000), + [anon_sym_o_GT] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT] = ACTIONS(2000), + [anon_sym_err_GT_GT] = ACTIONS(2002), + [anon_sym_out_GT_GT] = ACTIONS(2002), + [anon_sym_e_GT_GT] = ACTIONS(2002), + [anon_sym_o_GT_GT] = ACTIONS(2002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2002), + [aux_sym_unquoted_token1] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2002), }, [1494] = { - [sym__expr_parenthesized_immediate] = STATE(7580), [sym_comment] = STATE(1494), - [anon_sym_true] = ACTIONS(4951), - [anon_sym_false] = ACTIONS(4951), - [anon_sym_null] = ACTIONS(4951), - [aux_sym_cmd_identifier_token38] = ACTIONS(4951), - [aux_sym_cmd_identifier_token39] = ACTIONS(4951), - [aux_sym_cmd_identifier_token40] = ACTIONS(4951), - [sym__newline] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_err_GT_PIPE] = ACTIONS(4951), - [anon_sym_out_GT_PIPE] = ACTIONS(4951), - [anon_sym_e_GT_PIPE] = ACTIONS(4951), - [anon_sym_o_GT_PIPE] = ACTIONS(4951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4953), - [anon_sym_DASH_DASH] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_DOT_DOT] = ACTIONS(4953), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4951), - [anon_sym_DOT_DOT_LT] = ACTIONS(4951), - [aux_sym__val_number_decimal_token1] = ACTIONS(4953), - [aux_sym__val_number_decimal_token2] = ACTIONS(4951), - [aux_sym__val_number_decimal_token3] = ACTIONS(4951), - [aux_sym__val_number_decimal_token4] = ACTIONS(4951), - [aux_sym__val_number_token1] = ACTIONS(4951), - [aux_sym__val_number_token2] = ACTIONS(4951), - [aux_sym__val_number_token3] = ACTIONS(4951), - [anon_sym_0b] = ACTIONS(4953), - [anon_sym_0o] = ACTIONS(4953), - [anon_sym_0x] = ACTIONS(4953), - [sym_val_date] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [sym__str_single_quotes] = ACTIONS(4951), - [sym__str_back_ticks] = ACTIONS(4951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4951), - [anon_sym_err_GT] = ACTIONS(4953), - [anon_sym_out_GT] = ACTIONS(4953), - [anon_sym_e_GT] = ACTIONS(4953), - [anon_sym_o_GT] = ACTIONS(4953), - [anon_sym_err_PLUSout_GT] = ACTIONS(4953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4953), - [anon_sym_o_PLUSe_GT] = ACTIONS(4953), - [anon_sym_e_PLUSo_GT] = ACTIONS(4953), - [anon_sym_err_GT_GT] = ACTIONS(4951), - [anon_sym_out_GT_GT] = ACTIONS(4951), - [anon_sym_e_GT_GT] = ACTIONS(4951), - [anon_sym_o_GT_GT] = ACTIONS(4951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4951), - [aux_sym_unquoted_token1] = ACTIONS(4953), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4951), + [ts_builtin_sym_end] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(996), + [aux_sym__val_number_token5] = ACTIONS(996), + [aux_sym__val_number_token6] = ACTIONS(996), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [sym_val_date] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [aux_sym_unquoted_token1] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), }, [1495] = { [sym_comment] = STATE(1495), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [aux_sym_cmd_identifier_token38] = ACTIONS(1640), - [aux_sym_cmd_identifier_token39] = ACTIONS(1640), - [aux_sym_cmd_identifier_token40] = ACTIONS(1640), - [sym__newline] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_err_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_GT_PIPE] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_DOT_DOT] = ACTIONS(1628), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1640), - [anon_sym_DOT_DOT_LT] = ACTIONS(1640), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_decimal_token2] = ACTIONS(1640), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_decimal_token4] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [anon_sym_0b] = ACTIONS(1628), - [anon_sym_0o] = ACTIONS(1628), - [anon_sym_0x] = ACTIONS(1628), - [sym_val_date] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [anon_sym_err_GT_GT] = ACTIONS(1640), - [anon_sym_out_GT_GT] = ACTIONS(1640), - [anon_sym_e_GT_GT] = ACTIONS(1640), - [anon_sym_o_GT_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), - [aux_sym_unquoted_token1] = ACTIONS(1628), - [aux_sym_unquoted_token2] = ACTIONS(4622), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1640), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), + [anon_sym_DOT_DOT_LT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(4811), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, [1496] = { [sym_comment] = STATE(1496), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [aux_sym_cmd_identifier_token38] = ACTIONS(1640), - [aux_sym_cmd_identifier_token39] = ACTIONS(1640), - [aux_sym_cmd_identifier_token40] = ACTIONS(1640), - [sym__newline] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_err_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_GT_PIPE] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_DOT_DOT] = ACTIONS(1628), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1640), - [anon_sym_DOT_DOT_LT] = ACTIONS(1640), - [aux_sym__val_number_decimal_token1] = ACTIONS(1628), - [aux_sym__val_number_decimal_token2] = ACTIONS(1640), - [aux_sym__val_number_decimal_token3] = ACTIONS(1640), - [aux_sym__val_number_decimal_token4] = ACTIONS(1640), - [aux_sym__val_number_token1] = ACTIONS(1640), - [aux_sym__val_number_token2] = ACTIONS(1640), - [aux_sym__val_number_token3] = ACTIONS(1640), - [anon_sym_0b] = ACTIONS(1628), - [anon_sym_0o] = ACTIONS(1628), - [anon_sym_0x] = ACTIONS(1628), - [sym_val_date] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1640), - [sym__str_single_quotes] = ACTIONS(1640), - [sym__str_back_ticks] = ACTIONS(1640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [anon_sym_err_GT_GT] = ACTIONS(1640), - [anon_sym_out_GT_GT] = ACTIONS(1640), - [anon_sym_e_GT_GT] = ACTIONS(1640), - [anon_sym_o_GT_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), - [aux_sym_unquoted_token1] = ACTIONS(1628), - [aux_sym_unquoted_token2] = ACTIONS(4443), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1640), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), + [anon_sym_DOT_DOT_LT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [aux_sym_unquoted_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, [1497] = { [sym_comment] = STATE(1497), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [aux_sym_unquoted_token2] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1012), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), + [aux_sym__val_number_token1] = ACTIONS(1012), + [aux_sym__val_number_token2] = ACTIONS(1012), + [aux_sym__val_number_token3] = ACTIONS(1012), + [aux_sym__val_number_token4] = ACTIONS(1012), + [aux_sym__val_number_token5] = ACTIONS(1012), + [aux_sym__val_number_token6] = ACTIONS(1012), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [aux_sym_unquoted_token1] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1012), }, [1498] = { [sym_comment] = STATE(1498), - [ts_builtin_sym_end] = ACTIONS(1530), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1530), - [aux_sym_expr_binary_token1] = ACTIONS(1530), - [aux_sym_expr_binary_token2] = ACTIONS(1530), - [aux_sym_expr_binary_token3] = ACTIONS(1530), - [aux_sym_expr_binary_token4] = ACTIONS(1530), - [aux_sym_expr_binary_token5] = ACTIONS(1530), - [aux_sym_expr_binary_token6] = ACTIONS(1530), - [aux_sym_expr_binary_token7] = ACTIONS(1530), - [aux_sym_expr_binary_token8] = ACTIONS(1530), - [aux_sym_expr_binary_token9] = ACTIONS(1530), - [aux_sym_expr_binary_token10] = ACTIONS(1530), - [aux_sym_expr_binary_token11] = ACTIONS(1530), - [aux_sym_expr_binary_token12] = ACTIONS(1530), - [aux_sym_expr_binary_token13] = ACTIONS(1530), - [aux_sym_expr_binary_token14] = ACTIONS(1530), - [aux_sym_expr_binary_token15] = ACTIONS(1530), - [aux_sym_expr_binary_token16] = ACTIONS(1530), - [aux_sym_expr_binary_token17] = ACTIONS(1530), - [aux_sym_expr_binary_token18] = ACTIONS(1530), - [aux_sym_expr_binary_token19] = ACTIONS(1530), - [aux_sym_expr_binary_token20] = ACTIONS(1530), - [aux_sym_expr_binary_token21] = ACTIONS(1530), - [aux_sym_expr_binary_token22] = ACTIONS(1530), - [aux_sym_expr_binary_token23] = ACTIONS(1530), - [aux_sym_expr_binary_token24] = ACTIONS(1530), - [aux_sym_expr_binary_token25] = ACTIONS(1530), - [aux_sym_expr_binary_token26] = ACTIONS(1530), - [aux_sym_expr_binary_token27] = ACTIONS(1530), - [aux_sym_expr_binary_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(1757), }, [1499] = { + [sym_cell_path] = STATE(1744), + [sym_path] = STATE(1703), [sym_comment] = STATE(1499), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [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_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT] = ACTIONS(1771), - [aux_sym__immediate_decimal_token2] = ACTIONS(4955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_err_GT_PIPE] = ACTIONS(2092), + [anon_sym_out_GT_PIPE] = ACTIONS(2092), + [anon_sym_e_GT_PIPE] = ACTIONS(2092), + [anon_sym_o_GT_PIPE] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_RPAREN] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_DOT_DOT] = ACTIONS(2090), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2092), + [anon_sym_DOT_DOT_LT] = ACTIONS(2092), + [anon_sym_null] = ACTIONS(2092), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [aux_sym__val_number_decimal_token1] = ACTIONS(2090), + [aux_sym__val_number_decimal_token2] = ACTIONS(2092), + [aux_sym__val_number_decimal_token3] = ACTIONS(2092), + [aux_sym__val_number_decimal_token4] = ACTIONS(2092), + [aux_sym__val_number_token1] = ACTIONS(2092), + [aux_sym__val_number_token2] = ACTIONS(2092), + [aux_sym__val_number_token3] = ACTIONS(2092), + [aux_sym__val_number_token4] = ACTIONS(2092), + [aux_sym__val_number_token5] = ACTIONS(2092), + [aux_sym__val_number_token6] = ACTIONS(2092), + [anon_sym_0b] = ACTIONS(2090), + [anon_sym_0o] = ACTIONS(2090), + [anon_sym_0x] = ACTIONS(2090), + [sym_val_date] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(2092), + [sym__str_single_quotes] = ACTIONS(2092), + [sym__str_back_ticks] = ACTIONS(2092), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2092), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2092), + [anon_sym_err_GT] = ACTIONS(2090), + [anon_sym_out_GT] = ACTIONS(2090), + [anon_sym_e_GT] = ACTIONS(2090), + [anon_sym_o_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT] = ACTIONS(2090), + [anon_sym_err_GT_GT] = ACTIONS(2092), + [anon_sym_out_GT_GT] = ACTIONS(2092), + [anon_sym_e_GT_GT] = ACTIONS(2092), + [anon_sym_o_GT_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), + [aux_sym_unquoted_token1] = ACTIONS(2090), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2092), }, [1500] = { + [sym_cell_path] = STATE(1746), + [sym_path] = STATE(1703), [sym_comment] = STATE(1500), - [ts_builtin_sym_end] = ACTIONS(1598), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_LPAREN2] = ACTIONS(1598), - [aux_sym_expr_binary_token1] = ACTIONS(1598), - [aux_sym_expr_binary_token2] = ACTIONS(1598), - [aux_sym_expr_binary_token3] = ACTIONS(1598), - [aux_sym_expr_binary_token4] = ACTIONS(1598), - [aux_sym_expr_binary_token5] = ACTIONS(1598), - [aux_sym_expr_binary_token6] = ACTIONS(1598), - [aux_sym_expr_binary_token7] = ACTIONS(1598), - [aux_sym_expr_binary_token8] = ACTIONS(1598), - [aux_sym_expr_binary_token9] = ACTIONS(1598), - [aux_sym_expr_binary_token10] = ACTIONS(1598), - [aux_sym_expr_binary_token11] = ACTIONS(1598), - [aux_sym_expr_binary_token12] = ACTIONS(1598), - [aux_sym_expr_binary_token13] = ACTIONS(1598), - [aux_sym_expr_binary_token14] = ACTIONS(1598), - [aux_sym_expr_binary_token15] = ACTIONS(1598), - [aux_sym_expr_binary_token16] = ACTIONS(1598), - [aux_sym_expr_binary_token17] = ACTIONS(1598), - [aux_sym_expr_binary_token18] = ACTIONS(1598), - [aux_sym_expr_binary_token19] = ACTIONS(1598), - [aux_sym_expr_binary_token20] = ACTIONS(1598), - [aux_sym_expr_binary_token21] = ACTIONS(1598), - [aux_sym_expr_binary_token22] = ACTIONS(1598), - [aux_sym_expr_binary_token23] = ACTIONS(1598), - [aux_sym_expr_binary_token24] = ACTIONS(1598), - [aux_sym_expr_binary_token25] = ACTIONS(1598), - [aux_sym_expr_binary_token26] = ACTIONS(1598), - [aux_sym_expr_binary_token27] = ACTIONS(1598), - [aux_sym_expr_binary_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1505), + [sym__newline] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1927), + [anon_sym_err_GT_PIPE] = ACTIONS(1927), + [anon_sym_out_GT_PIPE] = ACTIONS(1927), + [anon_sym_e_GT_PIPE] = ACTIONS(1927), + [anon_sym_o_GT_PIPE] = ACTIONS(1927), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1925), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_DASH2] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), + [anon_sym_DOT_DOT_LT] = ACTIONS(1927), + [anon_sym_null] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1927), + [anon_sym_false] = ACTIONS(1927), + [aux_sym__val_number_decimal_token1] = ACTIONS(1925), + [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), + [aux_sym__val_number_token4] = ACTIONS(1927), + [aux_sym__val_number_token5] = ACTIONS(1927), + [aux_sym__val_number_token6] = ACTIONS(1927), + [anon_sym_0b] = ACTIONS(1925), + [anon_sym_0o] = ACTIONS(1925), + [anon_sym_0x] = ACTIONS(1925), + [sym_val_date] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [sym__str_single_quotes] = ACTIONS(1927), + [sym__str_back_ticks] = ACTIONS(1927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), + [anon_sym_err_GT] = ACTIONS(1925), + [anon_sym_out_GT] = ACTIONS(1925), + [anon_sym_e_GT] = ACTIONS(1925), + [anon_sym_o_GT] = ACTIONS(1925), + [anon_sym_err_PLUSout_GT] = ACTIONS(1925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), + [anon_sym_o_PLUSe_GT] = ACTIONS(1925), + [anon_sym_e_PLUSo_GT] = ACTIONS(1925), + [anon_sym_err_GT_GT] = ACTIONS(1927), + [anon_sym_out_GT_GT] = ACTIONS(1927), + [anon_sym_e_GT_GT] = ACTIONS(1927), + [anon_sym_o_GT_GT] = ACTIONS(1927), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), + [aux_sym_unquoted_token1] = ACTIONS(1925), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1927), }, [1501] = { [sym_comment] = STATE(1501), - [aux_sym_cmd_identifier_token41] = ACTIONS(1596), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [aux_sym_expr_binary_token1] = ACTIONS(1598), - [aux_sym_expr_binary_token2] = ACTIONS(1598), - [aux_sym_expr_binary_token3] = ACTIONS(1598), - [aux_sym_expr_binary_token4] = ACTIONS(1598), - [aux_sym_expr_binary_token5] = ACTIONS(1598), - [aux_sym_expr_binary_token6] = ACTIONS(1598), - [aux_sym_expr_binary_token7] = ACTIONS(1598), - [aux_sym_expr_binary_token8] = ACTIONS(1598), - [aux_sym_expr_binary_token9] = ACTIONS(1598), - [aux_sym_expr_binary_token10] = ACTIONS(1598), - [aux_sym_expr_binary_token11] = ACTIONS(1598), - [aux_sym_expr_binary_token12] = ACTIONS(1598), - [aux_sym_expr_binary_token13] = ACTIONS(1598), - [aux_sym_expr_binary_token14] = ACTIONS(1598), - [aux_sym_expr_binary_token15] = ACTIONS(1598), - [aux_sym_expr_binary_token16] = ACTIONS(1598), - [aux_sym_expr_binary_token17] = ACTIONS(1598), - [aux_sym_expr_binary_token18] = ACTIONS(1598), - [aux_sym_expr_binary_token19] = ACTIONS(1598), - [aux_sym_expr_binary_token20] = ACTIONS(1598), - [aux_sym_expr_binary_token21] = ACTIONS(1598), - [aux_sym_expr_binary_token22] = ACTIONS(1598), - [aux_sym_expr_binary_token23] = ACTIONS(1598), - [aux_sym_expr_binary_token24] = ACTIONS(1598), - [aux_sym_expr_binary_token25] = ACTIONS(1598), - [aux_sym_expr_binary_token26] = ACTIONS(1598), - [aux_sym_expr_binary_token27] = ACTIONS(1598), - [aux_sym_expr_binary_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(249), + [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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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__immediate_decimal_token2] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), }, [1502] = { [sym_comment] = STATE(1502), - [aux_sym_cmd_identifier_token41] = ACTIONS(1536), - [sym__newline] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1016), + [sym__newline] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_err_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_GT_PIPE] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1016), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT2] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), + [anon_sym_null] = ACTIONS(1016), + [anon_sym_true] = ACTIONS(1016), + [anon_sym_false] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1016), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(1016), + [aux_sym__val_number_token2] = ACTIONS(1016), + [aux_sym__val_number_token3] = ACTIONS(1016), + [aux_sym__val_number_token4] = ACTIONS(1016), + [aux_sym__val_number_token5] = ACTIONS(1016), + [aux_sym__val_number_token6] = ACTIONS(1016), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1016), + [sym__str_single_quotes] = ACTIONS(1016), + [sym__str_back_ticks] = ACTIONS(1016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [anon_sym_err_GT_GT] = ACTIONS(1016), + [anon_sym_out_GT_GT] = ACTIONS(1016), + [anon_sym_e_GT_GT] = ACTIONS(1016), + [anon_sym_o_GT_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [aux_sym_unquoted_token1] = ACTIONS(1014), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1016), }, [1503] = { + [sym_cell_path] = STATE(1960), + [sym_path] = STATE(1774), [sym_comment] = STATE(1503), - [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_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(4957), - [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), - [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(249), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(963), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_DOT_DOT_LT] = ACTIONS(963), + [anon_sym_null] = ACTIONS(963), + [anon_sym_true] = ACTIONS(963), + [anon_sym_false] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(963), + [aux_sym__val_number_token5] = ACTIONS(963), + [aux_sym__val_number_token6] = ACTIONS(963), + [anon_sym_0b] = ACTIONS(961), + [anon_sym_0o] = ACTIONS(961), + [anon_sym_0x] = ACTIONS(961), + [sym_val_date] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [aux_sym_unquoted_token1] = ACTIONS(961), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), }, [1504] = { + [sym_cell_path] = STATE(1905), + [sym_path] = STATE(1774), [sym_comment] = STATE(1504), - [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_DASH_DASH] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_EQ_GT] = ACTIONS(1050), - [anon_sym_QMARK2] = ACTIONS(4959), - [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), - [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(249), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(2092), + [sym__newline] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_err_GT_PIPE] = ACTIONS(2092), + [anon_sym_out_GT_PIPE] = ACTIONS(2092), + [anon_sym_e_GT_PIPE] = ACTIONS(2092), + [anon_sym_o_GT_PIPE] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(2090), + [anon_sym_DASH_DASH] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_DOT_DOT] = ACTIONS(2090), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2092), + [anon_sym_DOT_DOT_LT] = ACTIONS(2092), + [anon_sym_null] = ACTIONS(2092), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [aux_sym__val_number_decimal_token1] = ACTIONS(2090), + [aux_sym__val_number_decimal_token2] = ACTIONS(2092), + [aux_sym__val_number_decimal_token3] = ACTIONS(2092), + [aux_sym__val_number_decimal_token4] = ACTIONS(2092), + [aux_sym__val_number_token1] = ACTIONS(2092), + [aux_sym__val_number_token2] = ACTIONS(2092), + [aux_sym__val_number_token3] = ACTIONS(2092), + [aux_sym__val_number_token4] = ACTIONS(2092), + [aux_sym__val_number_token5] = ACTIONS(2092), + [aux_sym__val_number_token6] = ACTIONS(2092), + [anon_sym_0b] = ACTIONS(2090), + [anon_sym_0o] = ACTIONS(2090), + [anon_sym_0x] = ACTIONS(2090), + [sym_val_date] = ACTIONS(2092), + [anon_sym_DQUOTE] = ACTIONS(2092), + [sym__str_single_quotes] = ACTIONS(2092), + [sym__str_back_ticks] = ACTIONS(2092), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2092), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2092), + [anon_sym_err_GT] = ACTIONS(2090), + [anon_sym_out_GT] = ACTIONS(2090), + [anon_sym_e_GT] = ACTIONS(2090), + [anon_sym_o_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT] = ACTIONS(2090), + [anon_sym_err_GT_GT] = ACTIONS(2092), + [anon_sym_out_GT_GT] = ACTIONS(2092), + [anon_sym_e_GT_GT] = ACTIONS(2092), + [anon_sym_o_GT_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), + [aux_sym_unquoted_token1] = ACTIONS(2090), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2092), }, [1505] = { - [sym_cmd_identifier] = STATE(6296), - [sym__command_name] = STATE(7162), - [sym_scope_pattern] = STATE(7227), - [sym_command_list] = STATE(6988), - [sym__val_number_decimal] = STATE(6981), - [sym_val_string] = STATE(6299), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), + [sym_path] = STATE(1703), [sym_comment] = STATE(1505), - [ts_builtin_sym_end] = ACTIONS(4897), - [aux_sym_cmd_identifier_token1] = ACTIONS(4961), - [aux_sym_cmd_identifier_token2] = ACTIONS(4963), - [aux_sym_cmd_identifier_token3] = ACTIONS(4963), - [aux_sym_cmd_identifier_token4] = ACTIONS(4963), - [aux_sym_cmd_identifier_token5] = ACTIONS(4963), - [aux_sym_cmd_identifier_token6] = ACTIONS(4963), - [aux_sym_cmd_identifier_token7] = ACTIONS(4963), - [aux_sym_cmd_identifier_token8] = ACTIONS(4963), - [aux_sym_cmd_identifier_token9] = ACTIONS(4961), - [aux_sym_cmd_identifier_token10] = ACTIONS(4963), - [aux_sym_cmd_identifier_token11] = ACTIONS(4963), - [aux_sym_cmd_identifier_token12] = ACTIONS(4963), - [aux_sym_cmd_identifier_token13] = ACTIONS(4961), - [aux_sym_cmd_identifier_token14] = ACTIONS(4963), - [aux_sym_cmd_identifier_token15] = ACTIONS(4961), - [aux_sym_cmd_identifier_token16] = ACTIONS(4963), - [aux_sym_cmd_identifier_token17] = ACTIONS(4963), - [aux_sym_cmd_identifier_token18] = ACTIONS(4963), - [aux_sym_cmd_identifier_token19] = ACTIONS(4963), - [aux_sym_cmd_identifier_token20] = ACTIONS(4963), - [aux_sym_cmd_identifier_token21] = ACTIONS(4963), - [aux_sym_cmd_identifier_token22] = ACTIONS(4963), - [aux_sym_cmd_identifier_token23] = ACTIONS(4963), - [aux_sym_cmd_identifier_token24] = ACTIONS(4963), - [aux_sym_cmd_identifier_token25] = ACTIONS(4963), - [aux_sym_cmd_identifier_token26] = ACTIONS(4963), - [aux_sym_cmd_identifier_token27] = ACTIONS(4963), - [aux_sym_cmd_identifier_token28] = ACTIONS(4963), - [aux_sym_cmd_identifier_token29] = ACTIONS(4963), - [aux_sym_cmd_identifier_token30] = ACTIONS(4963), - [aux_sym_cmd_identifier_token31] = ACTIONS(4963), - [aux_sym_cmd_identifier_token32] = ACTIONS(4963), - [aux_sym_cmd_identifier_token33] = ACTIONS(4963), - [aux_sym_cmd_identifier_token34] = ACTIONS(4963), - [aux_sym_cmd_identifier_token35] = ACTIONS(4963), - [aux_sym_cmd_identifier_token36] = ACTIONS(4961), - [anon_sym_true] = ACTIONS(4965), - [anon_sym_false] = ACTIONS(4965), - [anon_sym_null] = ACTIONS(4965), - [aux_sym_cmd_identifier_token38] = ACTIONS(4967), - [aux_sym_cmd_identifier_token39] = ACTIONS(4965), - [aux_sym_cmd_identifier_token40] = ACTIONS(4965), - [sym__newline] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4897), - [anon_sym_LBRACK] = ACTIONS(4969), - [sym_wild_card] = ACTIONS(4971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1343), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_cell_path_repeat1] = STATE(1509), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_DASH_DASH] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(969), + [anon_sym_DOT_DOT_LT] = ACTIONS(969), + [anon_sym_null] = ACTIONS(969), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(969), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(969), + [aux_sym__val_number_token1] = ACTIONS(969), + [aux_sym__val_number_token2] = ACTIONS(969), + [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_token4] = ACTIONS(969), + [aux_sym__val_number_token5] = ACTIONS(969), + [aux_sym__val_number_token6] = ACTIONS(969), + [anon_sym_0b] = ACTIONS(967), + [anon_sym_0o] = ACTIONS(967), + [anon_sym_0x] = ACTIONS(967), + [sym_val_date] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [aux_sym_unquoted_token1] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(969), }, [1506] = { + [sym_cell_path] = STATE(1895), + [sym_path] = STATE(1774), [sym_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(1713), - [aux_sym_expr_binary_token1] = ACTIONS(1713), - [aux_sym_expr_binary_token2] = ACTIONS(1713), - [aux_sym_expr_binary_token3] = ACTIONS(1713), - [aux_sym_expr_binary_token4] = ACTIONS(1713), - [aux_sym_expr_binary_token5] = ACTIONS(1713), - [aux_sym_expr_binary_token6] = ACTIONS(1713), - [aux_sym_expr_binary_token7] = ACTIONS(1713), - [aux_sym_expr_binary_token8] = ACTIONS(1713), - [aux_sym_expr_binary_token9] = ACTIONS(1713), - [aux_sym_expr_binary_token10] = ACTIONS(1713), - [aux_sym_expr_binary_token11] = ACTIONS(1713), - [aux_sym_expr_binary_token12] = ACTIONS(1713), - [aux_sym_expr_binary_token13] = ACTIONS(1713), - [aux_sym_expr_binary_token14] = ACTIONS(1713), - [aux_sym_expr_binary_token15] = ACTIONS(1713), - [aux_sym_expr_binary_token16] = ACTIONS(1713), - [aux_sym_expr_binary_token17] = ACTIONS(1713), - [aux_sym_expr_binary_token18] = ACTIONS(1713), - [aux_sym_expr_binary_token19] = ACTIONS(1713), - [aux_sym_expr_binary_token20] = ACTIONS(1713), - [aux_sym_expr_binary_token21] = ACTIONS(1713), - [aux_sym_expr_binary_token22] = ACTIONS(1713), - [aux_sym_expr_binary_token23] = ACTIONS(1713), - [aux_sym_expr_binary_token24] = ACTIONS(1713), - [aux_sym_expr_binary_token25] = ACTIONS(1713), - [aux_sym_expr_binary_token26] = ACTIONS(1713), - [aux_sym_expr_binary_token27] = ACTIONS(1713), - [aux_sym_expr_binary_token28] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(2084), + [sym__newline] = ACTIONS(2084), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_err_GT_PIPE] = ACTIONS(2084), + [anon_sym_out_GT_PIPE] = ACTIONS(2084), + [anon_sym_e_GT_PIPE] = ACTIONS(2084), + [anon_sym_o_GT_PIPE] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_DOLLAR] = ACTIONS(2082), + [anon_sym_DASH_DASH] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_DOT_DOT] = ACTIONS(2082), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT] = ACTIONS(2084), + [anon_sym_null] = ACTIONS(2084), + [anon_sym_true] = ACTIONS(2084), + [anon_sym_false] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2082), + [aux_sym__val_number_decimal_token2] = ACTIONS(2084), + [aux_sym__val_number_decimal_token3] = ACTIONS(2084), + [aux_sym__val_number_decimal_token4] = ACTIONS(2084), + [aux_sym__val_number_token1] = ACTIONS(2084), + [aux_sym__val_number_token2] = ACTIONS(2084), + [aux_sym__val_number_token3] = ACTIONS(2084), + [aux_sym__val_number_token4] = ACTIONS(2084), + [aux_sym__val_number_token5] = ACTIONS(2084), + [aux_sym__val_number_token6] = ACTIONS(2084), + [anon_sym_0b] = ACTIONS(2082), + [anon_sym_0o] = ACTIONS(2082), + [anon_sym_0x] = ACTIONS(2082), + [sym_val_date] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(2084), + [sym__str_single_quotes] = ACTIONS(2084), + [sym__str_back_ticks] = ACTIONS(2084), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2084), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2084), + [anon_sym_err_GT] = ACTIONS(2082), + [anon_sym_out_GT] = ACTIONS(2082), + [anon_sym_e_GT] = ACTIONS(2082), + [anon_sym_o_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT] = ACTIONS(2082), + [anon_sym_err_GT_GT] = ACTIONS(2084), + [anon_sym_out_GT_GT] = ACTIONS(2084), + [anon_sym_e_GT_GT] = ACTIONS(2084), + [anon_sym_o_GT_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [aux_sym_unquoted_token1] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2084), }, [1507] = { [sym_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [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_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [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(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [aux_sym_unquoted_token2] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1771), + [anon_sym_EQ] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1026), + [anon_sym_DASH_EQ] = ACTIONS(1026), + [anon_sym_STAR_EQ] = ACTIONS(1026), + [anon_sym_SLASH_EQ] = ACTIONS(1026), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1026), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_GT2] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1032), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_STAR2] = ACTIONS(1030), + [anon_sym_and2] = ACTIONS(1032), + [anon_sym_xor2] = ACTIONS(1032), + [anon_sym_or2] = ACTIONS(1032), + [anon_sym_not_DASHin2] = ACTIONS(1032), + [anon_sym_starts_DASHwith2] = ACTIONS(1032), + [anon_sym_ends_DASHwith2] = ACTIONS(1032), + [anon_sym_EQ_EQ2] = ACTIONS(1032), + [anon_sym_BANG_EQ2] = ACTIONS(1032), + [anon_sym_LT2] = ACTIONS(1030), + [anon_sym_LT_EQ2] = ACTIONS(1032), + [anon_sym_GT_EQ2] = ACTIONS(1032), + [anon_sym_EQ_TILDE2] = ACTIONS(1032), + [anon_sym_BANG_TILDE2] = ACTIONS(1032), + [anon_sym_STAR_STAR2] = ACTIONS(1032), + [anon_sym_PLUS_PLUS2] = ACTIONS(1030), + [anon_sym_SLASH2] = ACTIONS(1030), + [anon_sym_mod2] = ACTIONS(1032), + [anon_sym_SLASH_SLASH2] = ACTIONS(1032), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_bit_DASHshl2] = ACTIONS(1032), + [anon_sym_bit_DASHshr2] = ACTIONS(1032), + [anon_sym_bit_DASHand2] = ACTIONS(1032), + [anon_sym_bit_DASHxor2] = ACTIONS(1032), + [anon_sym_bit_DASHor2] = ACTIONS(1032), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [anon_sym_err_GT_GT] = ACTIONS(1032), + [anon_sym_out_GT_GT] = ACTIONS(1032), + [anon_sym_e_GT_GT] = ACTIONS(1032), + [anon_sym_o_GT_GT] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(247), }, [1508] = { [sym_comment] = STATE(1508), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [aux_sym_expr_binary_token1] = ACTIONS(1713), - [aux_sym_expr_binary_token2] = ACTIONS(1713), - [aux_sym_expr_binary_token3] = ACTIONS(1713), - [aux_sym_expr_binary_token4] = ACTIONS(1713), - [aux_sym_expr_binary_token5] = ACTIONS(1713), - [aux_sym_expr_binary_token6] = ACTIONS(1713), - [aux_sym_expr_binary_token7] = ACTIONS(1713), - [aux_sym_expr_binary_token8] = ACTIONS(1713), - [aux_sym_expr_binary_token9] = ACTIONS(1713), - [aux_sym_expr_binary_token10] = ACTIONS(1713), - [aux_sym_expr_binary_token11] = ACTIONS(1713), - [aux_sym_expr_binary_token12] = ACTIONS(1713), - [aux_sym_expr_binary_token13] = ACTIONS(1713), - [aux_sym_expr_binary_token14] = ACTIONS(1713), - [aux_sym_expr_binary_token15] = ACTIONS(1713), - [aux_sym_expr_binary_token16] = ACTIONS(1713), - [aux_sym_expr_binary_token17] = ACTIONS(1713), - [aux_sym_expr_binary_token18] = ACTIONS(1713), - [aux_sym_expr_binary_token19] = ACTIONS(1713), - [aux_sym_expr_binary_token20] = ACTIONS(1713), - [aux_sym_expr_binary_token21] = ACTIONS(1713), - [aux_sym_expr_binary_token22] = ACTIONS(1713), - [aux_sym_expr_binary_token23] = ACTIONS(1713), - [aux_sym_expr_binary_token24] = ACTIONS(1713), - [aux_sym_expr_binary_token25] = ACTIONS(1713), - [aux_sym_expr_binary_token26] = ACTIONS(1713), - [aux_sym_expr_binary_token27] = ACTIONS(1713), - [aux_sym_expr_binary_token28] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1032), + [anon_sym_EQ] = ACTIONS(4815), + [anon_sym_PLUS_EQ] = ACTIONS(4817), + [anon_sym_DASH_EQ] = ACTIONS(4817), + [anon_sym_STAR_EQ] = ACTIONS(4817), + [anon_sym_SLASH_EQ] = ACTIONS(4817), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4817), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_GT2] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1032), + [anon_sym_STAR2] = ACTIONS(1030), + [anon_sym_and2] = ACTIONS(1032), + [anon_sym_xor2] = ACTIONS(1032), + [anon_sym_or2] = ACTIONS(1032), + [anon_sym_not_DASHin2] = ACTIONS(1032), + [anon_sym_starts_DASHwith2] = ACTIONS(1032), + [anon_sym_ends_DASHwith2] = ACTIONS(1032), + [anon_sym_EQ_EQ2] = ACTIONS(1032), + [anon_sym_BANG_EQ2] = ACTIONS(1032), + [anon_sym_LT2] = ACTIONS(1030), + [anon_sym_LT_EQ2] = ACTIONS(1032), + [anon_sym_GT_EQ2] = ACTIONS(1032), + [anon_sym_EQ_TILDE2] = ACTIONS(1032), + [anon_sym_BANG_TILDE2] = ACTIONS(1032), + [anon_sym_STAR_STAR2] = ACTIONS(1032), + [anon_sym_PLUS_PLUS2] = ACTIONS(1030), + [anon_sym_SLASH2] = ACTIONS(1030), + [anon_sym_mod2] = ACTIONS(1032), + [anon_sym_SLASH_SLASH2] = ACTIONS(1032), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_bit_DASHshl2] = ACTIONS(1032), + [anon_sym_bit_DASHshr2] = ACTIONS(1032), + [anon_sym_bit_DASHand2] = ACTIONS(1032), + [anon_sym_bit_DASHxor2] = ACTIONS(1032), + [anon_sym_bit_DASHor2] = ACTIONS(1032), + [anon_sym_DOT_DOT2] = ACTIONS(4819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4821), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [anon_sym_err_GT_GT] = ACTIONS(1032), + [anon_sym_out_GT_GT] = ACTIONS(1032), + [anon_sym_e_GT_GT] = ACTIONS(1032), + [anon_sym_o_GT_GT] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(247), }, [1509] = { + [sym_path] = STATE(1703), [sym_comment] = STATE(1509), - [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(2291), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_PIPE] = ACTIONS(2291), - [anon_sym_err_GT_PIPE] = ACTIONS(2291), - [anon_sym_out_GT_PIPE] = ACTIONS(2291), - [anon_sym_e_GT_PIPE] = ACTIONS(2291), - [anon_sym_o_GT_PIPE] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_RPAREN] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2289), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2289), - [anon_sym_DOT_DOT_LT] = ACTIONS(2289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2289), - [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(2289), - [anon_sym_0o] = ACTIONS(2289), - [anon_sym_0x] = ACTIONS(2289), - [sym_val_date] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2291), - [sym__str_single_quotes] = ACTIONS(2291), - [sym__str_back_ticks] = ACTIONS(2291), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2291), - [anon_sym_err_GT] = ACTIONS(2289), - [anon_sym_out_GT] = ACTIONS(2289), - [anon_sym_e_GT] = ACTIONS(2289), - [anon_sym_o_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT] = ACTIONS(2289), - [anon_sym_err_GT_GT] = ACTIONS(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(2289), - [aux_sym_unquoted_token4] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2291), + [aux_sym_cell_path_repeat1] = STATE(1509), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4823), + [anon_sym_DOT_DOT_EQ] = ACTIONS(973), + [anon_sym_DOT_DOT_LT] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(971), + [aux_sym__val_number_decimal_token2] = ACTIONS(973), + [aux_sym__val_number_decimal_token3] = ACTIONS(973), + [aux_sym__val_number_decimal_token4] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(971), + [anon_sym_0o] = ACTIONS(971), + [anon_sym_0x] = ACTIONS(971), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [aux_sym_unquoted_token1] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(973), }, [1510] = { [sym_comment] = STATE(1510), - [aux_sym_cmd_identifier_token41] = ACTIONS(1528), - [sym__newline] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1008), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1008), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [aux_sym_unquoted_token1] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1008), }, [1511] = { - [sym_cmd_identifier] = STATE(6296), - [sym__command_name] = STATE(7162), - [sym_scope_pattern] = STATE(7147), - [sym_command_list] = STATE(6988), - [sym__val_number_decimal] = STATE(6981), - [sym_val_string] = STATE(6299), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), + [sym_cell_path] = STATE(1925), + [sym_path] = STATE(1774), [sym_comment] = STATE(1511), - [ts_builtin_sym_end] = ACTIONS(4935), - [aux_sym_cmd_identifier_token1] = ACTIONS(4961), - [aux_sym_cmd_identifier_token2] = ACTIONS(4963), - [aux_sym_cmd_identifier_token3] = ACTIONS(4963), - [aux_sym_cmd_identifier_token4] = ACTIONS(4963), - [aux_sym_cmd_identifier_token5] = ACTIONS(4963), - [aux_sym_cmd_identifier_token6] = ACTIONS(4963), - [aux_sym_cmd_identifier_token7] = ACTIONS(4963), - [aux_sym_cmd_identifier_token8] = ACTIONS(4963), - [aux_sym_cmd_identifier_token9] = ACTIONS(4961), - [aux_sym_cmd_identifier_token10] = ACTIONS(4963), - [aux_sym_cmd_identifier_token11] = ACTIONS(4963), - [aux_sym_cmd_identifier_token12] = ACTIONS(4963), - [aux_sym_cmd_identifier_token13] = ACTIONS(4961), - [aux_sym_cmd_identifier_token14] = ACTIONS(4963), - [aux_sym_cmd_identifier_token15] = ACTIONS(4961), - [aux_sym_cmd_identifier_token16] = ACTIONS(4963), - [aux_sym_cmd_identifier_token17] = ACTIONS(4963), - [aux_sym_cmd_identifier_token18] = ACTIONS(4963), - [aux_sym_cmd_identifier_token19] = ACTIONS(4963), - [aux_sym_cmd_identifier_token20] = ACTIONS(4963), - [aux_sym_cmd_identifier_token21] = ACTIONS(4963), - [aux_sym_cmd_identifier_token22] = ACTIONS(4963), - [aux_sym_cmd_identifier_token23] = ACTIONS(4963), - [aux_sym_cmd_identifier_token24] = ACTIONS(4963), - [aux_sym_cmd_identifier_token25] = ACTIONS(4963), - [aux_sym_cmd_identifier_token26] = ACTIONS(4963), - [aux_sym_cmd_identifier_token27] = ACTIONS(4963), - [aux_sym_cmd_identifier_token28] = ACTIONS(4963), - [aux_sym_cmd_identifier_token29] = ACTIONS(4963), - [aux_sym_cmd_identifier_token30] = ACTIONS(4963), - [aux_sym_cmd_identifier_token31] = ACTIONS(4963), - [aux_sym_cmd_identifier_token32] = ACTIONS(4963), - [aux_sym_cmd_identifier_token33] = ACTIONS(4963), - [aux_sym_cmd_identifier_token34] = ACTIONS(4963), - [aux_sym_cmd_identifier_token35] = ACTIONS(4963), - [aux_sym_cmd_identifier_token36] = ACTIONS(4961), - [anon_sym_true] = ACTIONS(4965), - [anon_sym_false] = ACTIONS(4965), - [anon_sym_null] = ACTIONS(4965), - [aux_sym_cmd_identifier_token38] = ACTIONS(4967), - [aux_sym_cmd_identifier_token39] = ACTIONS(4965), - [aux_sym_cmd_identifier_token40] = ACTIONS(4965), - [sym__newline] = ACTIONS(4935), - [anon_sym_SEMI] = ACTIONS(4935), - [anon_sym_LBRACK] = ACTIONS(4969), - [sym_wild_card] = ACTIONS(4971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1343), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1935), + [sym__newline] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_err_GT_PIPE] = ACTIONS(1935), + [anon_sym_out_GT_PIPE] = ACTIONS(1935), + [anon_sym_e_GT_PIPE] = ACTIONS(1935), + [anon_sym_o_GT_PIPE] = ACTIONS(1935), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_DOLLAR] = ACTIONS(1933), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_DASH2] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), + [anon_sym_DOT_DOT_LT] = ACTIONS(1935), + [anon_sym_null] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1935), + [anon_sym_false] = ACTIONS(1935), + [aux_sym__val_number_decimal_token1] = ACTIONS(1933), + [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), + [aux_sym__val_number_token4] = ACTIONS(1935), + [aux_sym__val_number_token5] = ACTIONS(1935), + [aux_sym__val_number_token6] = ACTIONS(1935), + [anon_sym_0b] = ACTIONS(1933), + [anon_sym_0o] = ACTIONS(1933), + [anon_sym_0x] = ACTIONS(1933), + [sym_val_date] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1935), + [sym__str_single_quotes] = ACTIONS(1935), + [sym__str_back_ticks] = ACTIONS(1935), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), + [anon_sym_err_GT] = ACTIONS(1933), + [anon_sym_out_GT] = ACTIONS(1933), + [anon_sym_e_GT] = ACTIONS(1933), + [anon_sym_o_GT] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT] = ACTIONS(1933), + [anon_sym_err_GT_GT] = ACTIONS(1935), + [anon_sym_out_GT_GT] = ACTIONS(1935), + [anon_sym_e_GT_GT] = ACTIONS(1935), + [anon_sym_o_GT_GT] = ACTIONS(1935), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), + [aux_sym_unquoted_token1] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1935), }, [1512] = { - [sym_cell_path] = STATE(2009), - [sym_path] = STATE(1299), + [sym_cell_path] = STATE(1926), + [sym_path] = STATE(1774), [sym_comment] = STATE(1512), - [aux_sym_cell_path_repeat1] = STATE(1225), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [aux_sym_expr_binary_token1] = ACTIONS(1668), - [aux_sym_expr_binary_token2] = ACTIONS(1668), - [aux_sym_expr_binary_token3] = ACTIONS(1668), - [aux_sym_expr_binary_token4] = ACTIONS(1668), - [aux_sym_expr_binary_token5] = ACTIONS(1668), - [aux_sym_expr_binary_token6] = ACTIONS(1668), - [aux_sym_expr_binary_token7] = ACTIONS(1668), - [aux_sym_expr_binary_token8] = ACTIONS(1668), - [aux_sym_expr_binary_token9] = ACTIONS(1668), - [aux_sym_expr_binary_token10] = ACTIONS(1668), - [aux_sym_expr_binary_token11] = ACTIONS(1668), - [aux_sym_expr_binary_token12] = ACTIONS(1668), - [aux_sym_expr_binary_token13] = ACTIONS(1668), - [aux_sym_expr_binary_token14] = ACTIONS(1668), - [aux_sym_expr_binary_token15] = ACTIONS(1668), - [aux_sym_expr_binary_token16] = ACTIONS(1668), - [aux_sym_expr_binary_token17] = ACTIONS(1668), - [aux_sym_expr_binary_token18] = ACTIONS(1668), - [aux_sym_expr_binary_token19] = ACTIONS(1668), - [aux_sym_expr_binary_token20] = ACTIONS(1668), - [aux_sym_expr_binary_token21] = ACTIONS(1668), - [aux_sym_expr_binary_token22] = ACTIONS(1668), - [aux_sym_expr_binary_token23] = ACTIONS(1668), - [aux_sym_expr_binary_token24] = ACTIONS(1668), - [aux_sym_expr_binary_token25] = ACTIONS(1668), - [aux_sym_expr_binary_token26] = ACTIONS(1668), - [aux_sym_expr_binary_token27] = ACTIONS(1668), - [aux_sym_expr_binary_token28] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(4494), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1664), - [anon_sym_out_GT] = ACTIONS(1664), - [anon_sym_e_GT] = ACTIONS(1664), - [anon_sym_o_GT] = ACTIONS(1664), - [anon_sym_err_PLUSout_GT] = ACTIONS(1664), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), - [anon_sym_o_PLUSe_GT] = ACTIONS(1664), - [anon_sym_e_PLUSo_GT] = ACTIONS(1664), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1946), + [sym__newline] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_err_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_GT_PIPE] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1944), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_DASH2] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), + [anon_sym_DOT_DOT_LT] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1946), + [anon_sym_true] = ACTIONS(1946), + [anon_sym_false] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1944), + [aux_sym__val_number_decimal_token2] = ACTIONS(1946), + [aux_sym__val_number_decimal_token3] = ACTIONS(1946), + [aux_sym__val_number_decimal_token4] = ACTIONS(1946), + [aux_sym__val_number_token1] = ACTIONS(1946), + [aux_sym__val_number_token2] = ACTIONS(1946), + [aux_sym__val_number_token3] = ACTIONS(1946), + [aux_sym__val_number_token4] = ACTIONS(1946), + [aux_sym__val_number_token5] = ACTIONS(1946), + [aux_sym__val_number_token6] = ACTIONS(1946), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1944), + [anon_sym_0x] = ACTIONS(1944), + [sym_val_date] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym__str_single_quotes] = ACTIONS(1946), + [sym__str_back_ticks] = ACTIONS(1946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1946), + [anon_sym_err_GT] = ACTIONS(1944), + [anon_sym_out_GT] = ACTIONS(1944), + [anon_sym_e_GT] = ACTIONS(1944), + [anon_sym_o_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT] = ACTIONS(1944), + [anon_sym_err_GT_GT] = ACTIONS(1946), + [anon_sym_out_GT_GT] = ACTIONS(1946), + [anon_sym_e_GT_GT] = ACTIONS(1946), + [anon_sym_o_GT_GT] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), + [aux_sym_unquoted_token1] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1946), }, [1513] = { + [sym_cell_path] = STATE(1927), + [sym_path] = STATE(1774), [sym_comment] = STATE(1513), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_err_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_GT_PIPE] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1826), - [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_0b] = ACTIONS(1826), - [anon_sym_0o] = ACTIONS(1826), - [anon_sym_0x] = ACTIONS(1826), - [sym_val_date] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(1826), - [anon_sym_out_GT] = ACTIONS(1826), - [anon_sym_e_GT] = ACTIONS(1826), - [anon_sym_o_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT] = ACTIONS(1826), - [anon_sym_err_GT_GT] = ACTIONS(1828), - [anon_sym_out_GT_GT] = ACTIONS(1828), - [anon_sym_e_GT_GT] = ACTIONS(1828), - [anon_sym_o_GT_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), - [aux_sym_unquoted_token1] = ACTIONS(1826), - [aux_sym_unquoted_token2] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1828), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1950), + [sym__newline] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_err_GT_PIPE] = ACTIONS(1950), + [anon_sym_out_GT_PIPE] = ACTIONS(1950), + [anon_sym_e_GT_PIPE] = ACTIONS(1950), + [anon_sym_o_GT_PIPE] = ACTIONS(1950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_DASH2] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_DOT_DOT] = ACTIONS(1948), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1950), + [anon_sym_DOT_DOT_LT] = ACTIONS(1950), + [anon_sym_null] = ACTIONS(1950), + [anon_sym_true] = ACTIONS(1950), + [anon_sym_false] = ACTIONS(1950), + [aux_sym__val_number_decimal_token1] = ACTIONS(1948), + [aux_sym__val_number_decimal_token2] = ACTIONS(1950), + [aux_sym__val_number_decimal_token3] = ACTIONS(1950), + [aux_sym__val_number_decimal_token4] = ACTIONS(1950), + [aux_sym__val_number_token1] = ACTIONS(1950), + [aux_sym__val_number_token2] = ACTIONS(1950), + [aux_sym__val_number_token3] = ACTIONS(1950), + [aux_sym__val_number_token4] = ACTIONS(1950), + [aux_sym__val_number_token5] = ACTIONS(1950), + [aux_sym__val_number_token6] = ACTIONS(1950), + [anon_sym_0b] = ACTIONS(1948), + [anon_sym_0o] = ACTIONS(1948), + [anon_sym_0x] = ACTIONS(1948), + [sym_val_date] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym__str_single_quotes] = ACTIONS(1950), + [sym__str_back_ticks] = ACTIONS(1950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1950), + [anon_sym_err_GT] = ACTIONS(1948), + [anon_sym_out_GT] = ACTIONS(1948), + [anon_sym_e_GT] = ACTIONS(1948), + [anon_sym_o_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT] = ACTIONS(1948), + [anon_sym_err_GT_GT] = ACTIONS(1950), + [anon_sym_out_GT_GT] = ACTIONS(1950), + [anon_sym_e_GT_GT] = ACTIONS(1950), + [anon_sym_o_GT_GT] = ACTIONS(1950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1950), + [aux_sym_unquoted_token1] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1950), }, [1514] = { [sym_comment] = STATE(1514), - [anon_sym_true] = ACTIONS(1090), - [anon_sym_false] = ACTIONS(1090), - [anon_sym_null] = ACTIONS(1090), - [aux_sym_cmd_identifier_token38] = ACTIONS(1090), - [aux_sym_cmd_identifier_token39] = ACTIONS(1090), - [aux_sym_cmd_identifier_token40] = ACTIONS(1090), - [sym__newline] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_err_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_GT_PIPE] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), - [anon_sym_LBRACK] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1092), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_DOLLAR] = ACTIONS(1090), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_RBRACE] = ACTIONS(1092), - [anon_sym_DOT_DOT] = ACTIONS(1090), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1090), - [anon_sym_DOT_DOT_LT] = ACTIONS(1090), - [aux_sym__val_number_decimal_token1] = ACTIONS(1090), - [aux_sym__val_number_decimal_token2] = ACTIONS(1090), - [aux_sym__val_number_decimal_token3] = ACTIONS(1090), - [aux_sym__val_number_decimal_token4] = ACTIONS(1090), - [aux_sym__val_number_token1] = ACTIONS(1090), - [aux_sym__val_number_token2] = ACTIONS(1090), - [aux_sym__val_number_token3] = ACTIONS(1090), - [anon_sym_0b] = ACTIONS(1090), - [anon_sym_0o] = ACTIONS(1090), - [anon_sym_0x] = ACTIONS(1090), - [sym_val_date] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1092), - [sym__str_single_quotes] = ACTIONS(1092), - [sym__str_back_ticks] = ACTIONS(1092), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1092), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1092), - [anon_sym_err_GT] = ACTIONS(1090), - [anon_sym_out_GT] = ACTIONS(1090), - [anon_sym_e_GT] = ACTIONS(1090), - [anon_sym_o_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT] = ACTIONS(1090), - [anon_sym_err_GT_GT] = ACTIONS(1090), - [anon_sym_out_GT_GT] = ACTIONS(1090), - [anon_sym_e_GT_GT] = ACTIONS(1090), - [anon_sym_o_GT_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1090), - [aux_sym_unquoted_token1] = ACTIONS(1090), - [aux_sym_unquoted_token4] = ACTIONS(2275), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1092), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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__immediate_decimal_token2] = ACTIONS(4789), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), }, [1515] = { + [sym_cell_path] = STATE(1928), + [sym_path] = STATE(1774), [sym_comment] = STATE(1515), - [aux_sym_cmd_identifier_token41] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1954), + [sym__newline] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_PIPE] = ACTIONS(1954), + [anon_sym_err_GT_PIPE] = ACTIONS(1954), + [anon_sym_out_GT_PIPE] = ACTIONS(1954), + [anon_sym_e_GT_PIPE] = ACTIONS(1954), + [anon_sym_o_GT_PIPE] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_DOLLAR] = ACTIONS(1952), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_DASH2] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_DOT_DOT] = ACTIONS(1952), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1954), + [anon_sym_DOT_DOT_LT] = ACTIONS(1954), + [anon_sym_null] = ACTIONS(1954), + [anon_sym_true] = ACTIONS(1954), + [anon_sym_false] = ACTIONS(1954), + [aux_sym__val_number_decimal_token1] = ACTIONS(1952), + [aux_sym__val_number_decimal_token2] = ACTIONS(1954), + [aux_sym__val_number_decimal_token3] = ACTIONS(1954), + [aux_sym__val_number_decimal_token4] = ACTIONS(1954), + [aux_sym__val_number_token1] = ACTIONS(1954), + [aux_sym__val_number_token2] = ACTIONS(1954), + [aux_sym__val_number_token3] = ACTIONS(1954), + [aux_sym__val_number_token4] = ACTIONS(1954), + [aux_sym__val_number_token5] = ACTIONS(1954), + [aux_sym__val_number_token6] = ACTIONS(1954), + [anon_sym_0b] = ACTIONS(1952), + [anon_sym_0o] = ACTIONS(1952), + [anon_sym_0x] = ACTIONS(1952), + [sym_val_date] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1954), + [sym__str_single_quotes] = ACTIONS(1954), + [sym__str_back_ticks] = ACTIONS(1954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1954), + [anon_sym_err_GT] = ACTIONS(1952), + [anon_sym_out_GT] = ACTIONS(1952), + [anon_sym_e_GT] = ACTIONS(1952), + [anon_sym_o_GT] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT] = ACTIONS(1952), + [anon_sym_err_GT_GT] = ACTIONS(1954), + [anon_sym_out_GT_GT] = ACTIONS(1954), + [anon_sym_e_GT_GT] = ACTIONS(1954), + [anon_sym_o_GT_GT] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1954), + [aux_sym_unquoted_token1] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1954), }, [1516] = { + [sym_cell_path] = STATE(1929), + [sym_path] = STATE(1774), [sym_comment] = STATE(1516), - [ts_builtin_sym_end] = ACTIONS(2339), - [anon_sym_true] = ACTIONS(2339), - [anon_sym_false] = ACTIONS(2339), - [anon_sym_null] = ACTIONS(2339), - [aux_sym_cmd_identifier_token38] = ACTIONS(2339), - [aux_sym_cmd_identifier_token39] = ACTIONS(2339), - [aux_sym_cmd_identifier_token40] = ACTIONS(2339), - [sym__newline] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_PIPE] = ACTIONS(2339), - [anon_sym_err_GT_PIPE] = ACTIONS(2339), - [anon_sym_out_GT_PIPE] = ACTIONS(2339), - [anon_sym_e_GT_PIPE] = ACTIONS(2339), - [anon_sym_o_GT_PIPE] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(2335), - [anon_sym_DOLLAR] = ACTIONS(2335), - [anon_sym_DASH_DASH] = ACTIONS(2339), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2339), - [anon_sym_DOT_DOT] = ACTIONS(2335), - [anon_sym_LPAREN2] = ACTIONS(2337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2339), - [anon_sym_DOT_DOT_LT] = ACTIONS(2339), - [aux_sym__val_number_decimal_token1] = ACTIONS(2335), - [aux_sym__val_number_decimal_token2] = ACTIONS(2339), - [aux_sym__val_number_decimal_token3] = ACTIONS(2339), - [aux_sym__val_number_decimal_token4] = ACTIONS(2339), - [aux_sym__val_number_token1] = ACTIONS(2339), - [aux_sym__val_number_token2] = ACTIONS(2339), - [aux_sym__val_number_token3] = ACTIONS(2339), - [anon_sym_0b] = ACTIONS(2335), - [anon_sym_0o] = ACTIONS(2335), - [anon_sym_0x] = ACTIONS(2335), - [sym_val_date] = ACTIONS(2339), - [anon_sym_DQUOTE] = ACTIONS(2339), - [sym__str_single_quotes] = ACTIONS(2339), - [sym__str_back_ticks] = ACTIONS(2339), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2339), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2339), - [anon_sym_err_GT] = ACTIONS(2335), - [anon_sym_out_GT] = ACTIONS(2335), - [anon_sym_e_GT] = ACTIONS(2335), - [anon_sym_o_GT] = ACTIONS(2335), - [anon_sym_err_PLUSout_GT] = ACTIONS(2335), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2335), - [anon_sym_o_PLUSe_GT] = ACTIONS(2335), - [anon_sym_e_PLUSo_GT] = ACTIONS(2335), - [anon_sym_err_GT_GT] = ACTIONS(2339), - [anon_sym_out_GT_GT] = ACTIONS(2339), - [anon_sym_e_GT_GT] = ACTIONS(2339), - [anon_sym_o_GT_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2339), - [aux_sym_unquoted_token1] = ACTIONS(2335), - [aux_sym_unquoted_token2] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2339), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1962), + [sym__newline] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_err_GT_PIPE] = ACTIONS(1962), + [anon_sym_out_GT_PIPE] = ACTIONS(1962), + [anon_sym_e_GT_PIPE] = ACTIONS(1962), + [anon_sym_o_GT_PIPE] = ACTIONS(1962), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1962), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1962), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1962), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_DOLLAR] = ACTIONS(1960), + [anon_sym_DASH_DASH] = ACTIONS(1962), + [anon_sym_DASH2] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_DOT_DOT] = ACTIONS(1960), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1962), + [anon_sym_DOT_DOT_LT] = ACTIONS(1962), + [anon_sym_null] = ACTIONS(1962), + [anon_sym_true] = ACTIONS(1962), + [anon_sym_false] = ACTIONS(1962), + [aux_sym__val_number_decimal_token1] = ACTIONS(1960), + [aux_sym__val_number_decimal_token2] = ACTIONS(1962), + [aux_sym__val_number_decimal_token3] = ACTIONS(1962), + [aux_sym__val_number_decimal_token4] = ACTIONS(1962), + [aux_sym__val_number_token1] = ACTIONS(1962), + [aux_sym__val_number_token2] = ACTIONS(1962), + [aux_sym__val_number_token3] = ACTIONS(1962), + [aux_sym__val_number_token4] = ACTIONS(1962), + [aux_sym__val_number_token5] = ACTIONS(1962), + [aux_sym__val_number_token6] = ACTIONS(1962), + [anon_sym_0b] = ACTIONS(1960), + [anon_sym_0o] = ACTIONS(1960), + [anon_sym_0x] = ACTIONS(1960), + [sym_val_date] = ACTIONS(1962), + [anon_sym_DQUOTE] = ACTIONS(1962), + [sym__str_single_quotes] = ACTIONS(1962), + [sym__str_back_ticks] = ACTIONS(1962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1962), + [anon_sym_err_GT] = ACTIONS(1960), + [anon_sym_out_GT] = ACTIONS(1960), + [anon_sym_e_GT] = ACTIONS(1960), + [anon_sym_o_GT] = ACTIONS(1960), + [anon_sym_err_PLUSout_GT] = ACTIONS(1960), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), + [anon_sym_o_PLUSe_GT] = ACTIONS(1960), + [anon_sym_e_PLUSo_GT] = ACTIONS(1960), + [anon_sym_err_GT_GT] = ACTIONS(1962), + [anon_sym_out_GT_GT] = ACTIONS(1962), + [anon_sym_e_GT_GT] = ACTIONS(1962), + [anon_sym_o_GT_GT] = ACTIONS(1962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1962), + [aux_sym_unquoted_token1] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1962), }, [1517] = { - [sym__expression] = STATE(5678), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3895), - [sym_expr_parenthesized] = STATE(3543), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(3542), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3503), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym__flag] = STATE(2067), - [sym_short_flag] = STATE(3610), - [sym_long_flag] = STATE(3610), + [sym_cell_path] = STATE(1930), + [sym_path] = STATE(1774), [sym_comment] = STATE(1517), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3280), - [aux_sym_cmd_identifier_token38] = ACTIONS(227), - [aux_sym_cmd_identifier_token39] = ACTIONS(227), - [aux_sym_cmd_identifier_token40] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), - [anon_sym_DOT_DOT_LT] = ACTIONS(4983), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym__newline] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_err_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_GT_PIPE] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT] = ACTIONS(1970), + [anon_sym_null] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1970), + [aux_sym__val_number_token5] = ACTIONS(1970), + [aux_sym__val_number_token6] = ACTIONS(1970), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1968), + [anon_sym_0x] = ACTIONS(1968), + [sym_val_date] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1970), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), + [anon_sym_err_GT_GT] = ACTIONS(1970), + [anon_sym_out_GT_GT] = ACTIONS(1970), + [anon_sym_e_GT_GT] = ACTIONS(1970), + [anon_sym_o_GT_GT] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), + [aux_sym_unquoted_token1] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1970), }, [1518] = { [sym_comment] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(2250), - [anon_sym_false] = ACTIONS(2250), - [anon_sym_null] = ACTIONS(2250), - [aux_sym_cmd_identifier_token38] = ACTIONS(2250), - [aux_sym_cmd_identifier_token39] = ACTIONS(2250), - [aux_sym_cmd_identifier_token40] = ACTIONS(2250), - [sym__newline] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_err_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_GT_PIPE] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_DOLLAR] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2246), - [anon_sym_LPAREN2] = ACTIONS(2248), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2250), - [anon_sym_DOT_DOT_LT] = ACTIONS(2250), - [aux_sym__val_number_decimal_token1] = ACTIONS(2246), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2250), - [aux_sym__val_number_decimal_token4] = ACTIONS(2250), - [aux_sym__val_number_token1] = ACTIONS(2250), - [aux_sym__val_number_token2] = ACTIONS(2250), - [aux_sym__val_number_token3] = ACTIONS(2250), - [anon_sym_0b] = ACTIONS(2246), - [anon_sym_0o] = ACTIONS(2246), - [anon_sym_0x] = ACTIONS(2246), - [sym_val_date] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2246), - [anon_sym_out_GT] = ACTIONS(2246), - [anon_sym_e_GT] = ACTIONS(2246), - [anon_sym_o_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT] = ACTIONS(2246), - [anon_sym_err_GT_GT] = ACTIONS(2250), - [anon_sym_out_GT_GT] = ACTIONS(2250), - [anon_sym_e_GT_GT] = ACTIONS(2250), - [anon_sym_o_GT_GT] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2250), - [aux_sym_unquoted_token1] = ACTIONS(2246), - [aux_sym_unquoted_token2] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2250), + [sym__newline] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4826), + [anon_sym_PIPE] = ACTIONS(4826), + [anon_sym_err_GT_PIPE] = ACTIONS(4826), + [anon_sym_out_GT_PIPE] = ACTIONS(4826), + [anon_sym_e_GT_PIPE] = ACTIONS(4826), + [anon_sym_o_GT_PIPE] = ACTIONS(4826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4826), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_LPAREN] = ACTIONS(4826), + [anon_sym_RPAREN] = ACTIONS(4826), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_DASH2] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4826), + [anon_sym_RBRACE] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4828), + [anon_sym_DOT_DOT2] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4828), + [anon_sym_DOT_DOT_LT] = ACTIONS(4828), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4832), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4832), + [anon_sym_null] = ACTIONS(4826), + [anon_sym_true] = ACTIONS(4826), + [anon_sym_false] = ACTIONS(4826), + [aux_sym__val_number_decimal_token1] = ACTIONS(4828), + [aux_sym__val_number_decimal_token2] = ACTIONS(4826), + [aux_sym__val_number_decimal_token3] = ACTIONS(4826), + [aux_sym__val_number_decimal_token4] = ACTIONS(4826), + [aux_sym__val_number_token1] = ACTIONS(4826), + [aux_sym__val_number_token2] = ACTIONS(4826), + [aux_sym__val_number_token3] = ACTIONS(4826), + [aux_sym__val_number_token4] = ACTIONS(4826), + [aux_sym__val_number_token5] = ACTIONS(4826), + [aux_sym__val_number_token6] = ACTIONS(4826), + [anon_sym_0b] = ACTIONS(4828), + [anon_sym_0o] = ACTIONS(4828), + [anon_sym_0x] = ACTIONS(4828), + [sym_val_date] = ACTIONS(4826), + [anon_sym_DQUOTE] = ACTIONS(4826), + [sym__str_single_quotes] = ACTIONS(4826), + [sym__str_back_ticks] = ACTIONS(4826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4826), + [anon_sym_err_GT] = ACTIONS(4828), + [anon_sym_out_GT] = ACTIONS(4828), + [anon_sym_e_GT] = ACTIONS(4828), + [anon_sym_o_GT] = ACTIONS(4828), + [anon_sym_err_PLUSout_GT] = ACTIONS(4828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4828), + [anon_sym_o_PLUSe_GT] = ACTIONS(4828), + [anon_sym_e_PLUSo_GT] = ACTIONS(4828), + [anon_sym_err_GT_GT] = ACTIONS(4826), + [anon_sym_out_GT_GT] = ACTIONS(4826), + [anon_sym_e_GT_GT] = ACTIONS(4826), + [anon_sym_o_GT_GT] = ACTIONS(4826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4826), + [aux_sym_unquoted_token1] = ACTIONS(4828), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4826), }, [1519] = { + [sym_cell_path] = STATE(1931), + [sym_path] = STATE(1774), [sym_comment] = STATE(1519), - [anon_sym_true] = ACTIONS(4985), - [anon_sym_false] = ACTIONS(4985), - [anon_sym_null] = ACTIONS(4985), - [aux_sym_cmd_identifier_token38] = ACTIONS(4985), - [aux_sym_cmd_identifier_token39] = ACTIONS(4985), - [aux_sym_cmd_identifier_token40] = ACTIONS(4985), - [sym__newline] = ACTIONS(4985), - [anon_sym_SEMI] = ACTIONS(4985), - [anon_sym_PIPE] = ACTIONS(4985), - [anon_sym_err_GT_PIPE] = ACTIONS(4985), - [anon_sym_out_GT_PIPE] = ACTIONS(4985), - [anon_sym_e_GT_PIPE] = ACTIONS(4985), - [anon_sym_o_GT_PIPE] = ACTIONS(4985), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4985), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4985), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4985), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_LPAREN] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4985), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_DOT_DOT] = ACTIONS(4987), - [anon_sym_LPAREN2] = ACTIONS(4985), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4985), - [anon_sym_DOT_DOT_LT] = ACTIONS(4985), - [aux_sym__val_number_decimal_token1] = ACTIONS(4987), - [aux_sym__val_number_decimal_token2] = ACTIONS(4985), - [aux_sym__val_number_decimal_token3] = ACTIONS(4985), - [aux_sym__val_number_decimal_token4] = ACTIONS(4985), - [aux_sym__val_number_token1] = ACTIONS(4985), - [aux_sym__val_number_token2] = ACTIONS(4985), - [aux_sym__val_number_token3] = ACTIONS(4985), - [anon_sym_0b] = ACTIONS(4987), - [anon_sym_0o] = ACTIONS(4987), - [anon_sym_0x] = ACTIONS(4987), - [sym_val_date] = ACTIONS(4985), - [anon_sym_DQUOTE] = ACTIONS(4985), - [sym__str_single_quotes] = ACTIONS(4985), - [sym__str_back_ticks] = ACTIONS(4985), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4985), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4985), - [anon_sym_err_GT] = ACTIONS(4987), - [anon_sym_out_GT] = ACTIONS(4987), - [anon_sym_e_GT] = ACTIONS(4987), - [anon_sym_o_GT] = ACTIONS(4987), - [anon_sym_err_PLUSout_GT] = ACTIONS(4987), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4987), - [anon_sym_o_PLUSe_GT] = ACTIONS(4987), - [anon_sym_e_PLUSo_GT] = ACTIONS(4987), - [anon_sym_err_GT_GT] = ACTIONS(4985), - [anon_sym_out_GT_GT] = ACTIONS(4985), - [anon_sym_e_GT_GT] = ACTIONS(4985), - [anon_sym_o_GT_GT] = ACTIONS(4985), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4985), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4985), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4985), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4985), - [aux_sym_unquoted_token1] = ACTIONS(4987), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4985), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1974), + [sym__newline] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_err_GT_PIPE] = ACTIONS(1974), + [anon_sym_out_GT_PIPE] = ACTIONS(1974), + [anon_sym_e_GT_PIPE] = ACTIONS(1974), + [anon_sym_o_GT_PIPE] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_DASH2] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [anon_sym_null] = ACTIONS(1974), + [anon_sym_true] = ACTIONS(1974), + [anon_sym_false] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1972), + [aux_sym__val_number_decimal_token2] = ACTIONS(1974), + [aux_sym__val_number_decimal_token3] = ACTIONS(1974), + [aux_sym__val_number_decimal_token4] = ACTIONS(1974), + [aux_sym__val_number_token1] = ACTIONS(1974), + [aux_sym__val_number_token2] = ACTIONS(1974), + [aux_sym__val_number_token3] = ACTIONS(1974), + [aux_sym__val_number_token4] = ACTIONS(1974), + [aux_sym__val_number_token5] = ACTIONS(1974), + [aux_sym__val_number_token6] = ACTIONS(1974), + [anon_sym_0b] = ACTIONS(1972), + [anon_sym_0o] = ACTIONS(1972), + [anon_sym_0x] = ACTIONS(1972), + [sym_val_date] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym__str_single_quotes] = ACTIONS(1974), + [sym__str_back_ticks] = ACTIONS(1974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1974), + [anon_sym_err_GT] = ACTIONS(1972), + [anon_sym_out_GT] = ACTIONS(1972), + [anon_sym_e_GT] = ACTIONS(1972), + [anon_sym_o_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT] = ACTIONS(1972), + [anon_sym_err_GT_GT] = ACTIONS(1974), + [anon_sym_out_GT_GT] = ACTIONS(1974), + [anon_sym_e_GT_GT] = ACTIONS(1974), + [anon_sym_o_GT_GT] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [aux_sym_unquoted_token1] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1974), }, [1520] = { + [sym_cell_path] = STATE(1932), + [sym_path] = STATE(1774), [sym_comment] = STATE(1520), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1986), + [sym__newline] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_err_GT_PIPE] = ACTIONS(1986), + [anon_sym_out_GT_PIPE] = ACTIONS(1986), + [anon_sym_e_GT_PIPE] = ACTIONS(1986), + [anon_sym_o_GT_PIPE] = ACTIONS(1986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1986), + [anon_sym_DOLLAR] = ACTIONS(1984), + [anon_sym_DASH_DASH] = ACTIONS(1986), + [anon_sym_DASH2] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_DOT_DOT] = ACTIONS(1984), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1986), + [anon_sym_DOT_DOT_LT] = ACTIONS(1986), + [anon_sym_null] = ACTIONS(1986), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [aux_sym__val_number_decimal_token1] = ACTIONS(1984), + [aux_sym__val_number_decimal_token2] = ACTIONS(1986), + [aux_sym__val_number_decimal_token3] = ACTIONS(1986), + [aux_sym__val_number_decimal_token4] = ACTIONS(1986), + [aux_sym__val_number_token1] = ACTIONS(1986), + [aux_sym__val_number_token2] = ACTIONS(1986), + [aux_sym__val_number_token3] = ACTIONS(1986), + [aux_sym__val_number_token4] = ACTIONS(1986), + [aux_sym__val_number_token5] = ACTIONS(1986), + [aux_sym__val_number_token6] = ACTIONS(1986), + [anon_sym_0b] = ACTIONS(1984), + [anon_sym_0o] = ACTIONS(1984), + [anon_sym_0x] = ACTIONS(1984), + [sym_val_date] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym__str_single_quotes] = ACTIONS(1986), + [sym__str_back_ticks] = ACTIONS(1986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1986), + [anon_sym_err_GT] = ACTIONS(1984), + [anon_sym_out_GT] = ACTIONS(1984), + [anon_sym_e_GT] = ACTIONS(1984), + [anon_sym_o_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT] = ACTIONS(1984), + [anon_sym_err_GT_GT] = ACTIONS(1986), + [anon_sym_out_GT_GT] = ACTIONS(1986), + [anon_sym_e_GT_GT] = ACTIONS(1986), + [anon_sym_o_GT_GT] = ACTIONS(1986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1986), + [aux_sym_unquoted_token1] = ACTIONS(1984), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1986), }, [1521] = { [sym_comment] = STATE(1521), - [anon_sym_true] = ACTIONS(4989), - [anon_sym_false] = ACTIONS(4989), - [anon_sym_null] = ACTIONS(4989), - [aux_sym_cmd_identifier_token38] = ACTIONS(4989), - [aux_sym_cmd_identifier_token39] = ACTIONS(4989), - [aux_sym_cmd_identifier_token40] = ACTIONS(4989), - [sym__newline] = ACTIONS(4989), - [anon_sym_SEMI] = ACTIONS(4989), - [anon_sym_PIPE] = ACTIONS(4989), - [anon_sym_err_GT_PIPE] = ACTIONS(4989), - [anon_sym_out_GT_PIPE] = ACTIONS(4989), - [anon_sym_e_GT_PIPE] = ACTIONS(4989), - [anon_sym_o_GT_PIPE] = ACTIONS(4989), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4989), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4989), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4989), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_DOT_DOT] = ACTIONS(4991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4989), - [anon_sym_DOT_DOT_LT] = ACTIONS(4989), - [aux_sym__val_number_decimal_token1] = ACTIONS(4991), - [aux_sym__val_number_decimal_token2] = ACTIONS(4989), - [aux_sym__val_number_decimal_token3] = ACTIONS(4989), - [aux_sym__val_number_decimal_token4] = ACTIONS(4989), - [aux_sym__val_number_token1] = ACTIONS(4989), - [aux_sym__val_number_token2] = ACTIONS(4989), - [aux_sym__val_number_token3] = ACTIONS(4989), - [anon_sym_0b] = ACTIONS(4991), - [anon_sym_0o] = ACTIONS(4991), - [anon_sym_0x] = ACTIONS(4991), - [sym_val_date] = ACTIONS(4989), - [anon_sym_DQUOTE] = ACTIONS(4989), - [sym__str_single_quotes] = ACTIONS(4989), - [sym__str_back_ticks] = ACTIONS(4989), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4989), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4989), - [anon_sym_err_GT] = ACTIONS(4991), - [anon_sym_out_GT] = ACTIONS(4991), - [anon_sym_e_GT] = ACTIONS(4991), - [anon_sym_o_GT] = ACTIONS(4991), - [anon_sym_err_PLUSout_GT] = ACTIONS(4991), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4991), - [anon_sym_o_PLUSe_GT] = ACTIONS(4991), - [anon_sym_e_PLUSo_GT] = ACTIONS(4991), - [anon_sym_err_GT_GT] = ACTIONS(4989), - [anon_sym_out_GT_GT] = ACTIONS(4989), - [anon_sym_e_GT_GT] = ACTIONS(4989), - [anon_sym_o_GT_GT] = ACTIONS(4989), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4989), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4989), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4989), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4989), - [anon_sym_EQ2] = ACTIONS(4993), - [aux_sym_unquoted_token1] = ACTIONS(4991), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4989), + [sym__newline] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_err_GT_PIPE] = ACTIONS(2173), + [anon_sym_out_GT_PIPE] = ACTIONS(2173), + [anon_sym_e_GT_PIPE] = ACTIONS(2173), + [anon_sym_o_GT_PIPE] = ACTIONS(2173), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2173), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2173), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2173), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_RPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DASH2] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2167), + [anon_sym_DOT_DOT2] = ACTIONS(4834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), + [anon_sym_DOT_DOT_LT] = ACTIONS(2167), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4836), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4836), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2167), + [aux_sym__val_number_decimal_token2] = ACTIONS(2173), + [aux_sym__val_number_decimal_token3] = ACTIONS(2173), + [aux_sym__val_number_decimal_token4] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_0b] = ACTIONS(2167), + [anon_sym_0o] = ACTIONS(2167), + [anon_sym_0x] = ACTIONS(2167), + [sym_val_date] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2173), + [anon_sym_err_GT] = ACTIONS(2167), + [anon_sym_out_GT] = ACTIONS(2167), + [anon_sym_e_GT] = ACTIONS(2167), + [anon_sym_o_GT] = ACTIONS(2167), + [anon_sym_err_PLUSout_GT] = ACTIONS(2167), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2167), + [anon_sym_o_PLUSe_GT] = ACTIONS(2167), + [anon_sym_e_PLUSo_GT] = ACTIONS(2167), + [anon_sym_err_GT_GT] = ACTIONS(2173), + [anon_sym_out_GT_GT] = ACTIONS(2173), + [anon_sym_e_GT_GT] = ACTIONS(2173), + [anon_sym_o_GT_GT] = ACTIONS(2173), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2173), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2173), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2173), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2173), + [aux_sym_unquoted_token1] = ACTIONS(2167), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2173), }, [1522] = { [sym_comment] = STATE(1522), - [anon_sym_true] = ACTIONS(4995), - [anon_sym_false] = ACTIONS(4995), - [anon_sym_null] = ACTIONS(4995), - [aux_sym_cmd_identifier_token38] = ACTIONS(4995), - [aux_sym_cmd_identifier_token39] = ACTIONS(4995), - [aux_sym_cmd_identifier_token40] = ACTIONS(4995), - [sym__newline] = ACTIONS(4995), - [anon_sym_SEMI] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_err_GT_PIPE] = ACTIONS(4995), - [anon_sym_out_GT_PIPE] = ACTIONS(4995), - [anon_sym_e_GT_PIPE] = ACTIONS(4995), - [anon_sym_o_GT_PIPE] = ACTIONS(4995), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4995), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4995), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4995), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4995), - [anon_sym_LBRACK] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4995), - [anon_sym_DOLLAR] = ACTIONS(4997), - [anon_sym_DASH_DASH] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4995), - [anon_sym_RBRACE] = ACTIONS(4995), - [anon_sym_DOT_DOT] = ACTIONS(4997), - [anon_sym_LPAREN2] = ACTIONS(4995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4995), - [anon_sym_DOT_DOT_LT] = ACTIONS(4995), - [aux_sym__val_number_decimal_token1] = ACTIONS(4997), - [aux_sym__val_number_decimal_token2] = ACTIONS(4995), - [aux_sym__val_number_decimal_token3] = ACTIONS(4995), - [aux_sym__val_number_decimal_token4] = ACTIONS(4995), - [aux_sym__val_number_token1] = ACTIONS(4995), - [aux_sym__val_number_token2] = ACTIONS(4995), - [aux_sym__val_number_token3] = ACTIONS(4995), - [anon_sym_0b] = ACTIONS(4997), - [anon_sym_0o] = ACTIONS(4997), - [anon_sym_0x] = ACTIONS(4997), - [sym_val_date] = ACTIONS(4995), - [anon_sym_DQUOTE] = ACTIONS(4995), - [sym__str_single_quotes] = ACTIONS(4995), - [sym__str_back_ticks] = ACTIONS(4995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4995), - [anon_sym_err_GT] = ACTIONS(4997), - [anon_sym_out_GT] = ACTIONS(4997), - [anon_sym_e_GT] = ACTIONS(4997), - [anon_sym_o_GT] = ACTIONS(4997), - [anon_sym_err_PLUSout_GT] = ACTIONS(4997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4997), - [anon_sym_o_PLUSe_GT] = ACTIONS(4997), - [anon_sym_e_PLUSo_GT] = ACTIONS(4997), - [anon_sym_err_GT_GT] = ACTIONS(4995), - [anon_sym_out_GT_GT] = ACTIONS(4995), - [anon_sym_e_GT_GT] = ACTIONS(4995), - [anon_sym_o_GT_GT] = ACTIONS(4995), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4995), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4995), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4995), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4995), - [aux_sym_unquoted_token1] = ACTIONS(4997), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4995), + [sym__newline] = ACTIONS(2181), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_err_GT_PIPE] = ACTIONS(2181), + [anon_sym_out_GT_PIPE] = ACTIONS(2181), + [anon_sym_e_GT_PIPE] = ACTIONS(2181), + [anon_sym_o_GT_PIPE] = ACTIONS(2181), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2181), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2181), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2181), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_RPAREN] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2181), + [anon_sym_DASH2] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2181), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT2] = ACTIONS(4838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2175), + [anon_sym_DOT_DOT_LT] = ACTIONS(2175), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4840), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4840), + [anon_sym_null] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [aux_sym__val_number_decimal_token1] = ACTIONS(2175), + [aux_sym__val_number_decimal_token2] = ACTIONS(2181), + [aux_sym__val_number_decimal_token3] = ACTIONS(2181), + [aux_sym__val_number_decimal_token4] = ACTIONS(2181), + [aux_sym__val_number_token1] = ACTIONS(2181), + [aux_sym__val_number_token2] = ACTIONS(2181), + [aux_sym__val_number_token3] = ACTIONS(2181), + [aux_sym__val_number_token4] = ACTIONS(2181), + [aux_sym__val_number_token5] = ACTIONS(2181), + [aux_sym__val_number_token6] = ACTIONS(2181), + [anon_sym_0b] = ACTIONS(2175), + [anon_sym_0o] = ACTIONS(2175), + [anon_sym_0x] = ACTIONS(2175), + [sym_val_date] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(2181), + [sym__str_single_quotes] = ACTIONS(2181), + [sym__str_back_ticks] = ACTIONS(2181), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2181), + [anon_sym_err_GT] = ACTIONS(2175), + [anon_sym_out_GT] = ACTIONS(2175), + [anon_sym_e_GT] = ACTIONS(2175), + [anon_sym_o_GT] = ACTIONS(2175), + [anon_sym_err_PLUSout_GT] = ACTIONS(2175), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2175), + [anon_sym_o_PLUSe_GT] = ACTIONS(2175), + [anon_sym_e_PLUSo_GT] = ACTIONS(2175), + [anon_sym_err_GT_GT] = ACTIONS(2181), + [anon_sym_out_GT_GT] = ACTIONS(2181), + [anon_sym_e_GT_GT] = ACTIONS(2181), + [anon_sym_o_GT_GT] = ACTIONS(2181), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2181), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2181), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2181), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2181), + [aux_sym_unquoted_token1] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2181), }, [1523] = { [sym_comment] = STATE(1523), - [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), - [sym__newline] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_err_GT_PIPE] = ACTIONS(2359), - [anon_sym_out_GT_PIPE] = ACTIONS(2359), - [anon_sym_e_GT_PIPE] = ACTIONS(2359), - [anon_sym_o_GT_PIPE] = ACTIONS(2359), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2359), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2359), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2359), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_DOT_DOT] = ACTIONS(2355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2359), - [anon_sym_DOT_DOT_LT] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2355), - [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_0b] = ACTIONS(2355), - [anon_sym_0o] = ACTIONS(2355), - [anon_sym_0x] = ACTIONS(2355), - [anon_sym_LBRACK2] = ACTIONS(4999), - [sym_val_date] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2359), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), - [anon_sym_err_GT] = ACTIONS(2355), - [anon_sym_out_GT] = ACTIONS(2355), - [anon_sym_e_GT] = ACTIONS(2355), - [anon_sym_o_GT] = ACTIONS(2355), - [anon_sym_err_PLUSout_GT] = ACTIONS(2355), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2355), - [anon_sym_o_PLUSe_GT] = ACTIONS(2355), - [anon_sym_e_PLUSo_GT] = ACTIONS(2355), - [anon_sym_err_GT_GT] = ACTIONS(2359), - [anon_sym_out_GT_GT] = ACTIONS(2359), - [anon_sym_e_GT_GT] = ACTIONS(2359), - [anon_sym_o_GT_GT] = ACTIONS(2359), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2359), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2359), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2359), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2359), - [aux_sym_unquoted_token1] = ACTIONS(2355), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(2359), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1018), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), + [anon_sym_DOT_DOT_LT] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_decimal_token4] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1018), + [anon_sym_0o] = ACTIONS(1018), + [anon_sym_0x] = ACTIONS(1018), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [aux_sym_unquoted_token1] = ACTIONS(1018), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1020), }, [1524] = { [sym_comment] = STATE(1524), - [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(5001), - [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(249), - [sym_raw_string_begin] = ACTIONS(1044), + [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(2133), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_DASH2] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_DOT_DOT] = ACTIONS(2133), + [anon_sym_DOT_DOT2] = ACTIONS(4842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2133), + [anon_sym_DOT_DOT_LT] = ACTIONS(2133), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4844), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4844), + [anon_sym_null] = ACTIONS(2139), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [aux_sym__val_number_decimal_token1] = ACTIONS(2133), + [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), + [aux_sym__val_number_token4] = ACTIONS(2139), + [aux_sym__val_number_token5] = ACTIONS(2139), + [aux_sym__val_number_token6] = ACTIONS(2139), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2133), + [anon_sym_0x] = ACTIONS(2133), + [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(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(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(2133), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2139), }, [1525] = { [sym_comment] = STATE(1525), - [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), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_DOT_DOT] = ACTIONS(1048), - [anon_sym_QMARK2] = ACTIONS(5003), - [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(249), - [sym_raw_string_begin] = ACTIONS(1050), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [aux_sym__immediate_decimal_token2] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(1757), }, [1526] = { - [sym__expression] = STATE(5657), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3895), - [sym_expr_parenthesized] = STATE(3543), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(3542), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3503), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym__flag] = STATE(2068), - [sym_short_flag] = STATE(3610), - [sym_long_flag] = STATE(3610), + [sym_cell_path] = STATE(1933), + [sym_path] = STATE(1774), [sym_comment] = STATE(1526), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3280), - [aux_sym_cmd_identifier_token38] = ACTIONS(227), - [aux_sym_cmd_identifier_token39] = ACTIONS(227), - [aux_sym_cmd_identifier_token40] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), - [anon_sym_DOT_DOT_LT] = ACTIONS(4983), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1990), + [sym__newline] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_err_GT_PIPE] = ACTIONS(1990), + [anon_sym_out_GT_PIPE] = ACTIONS(1990), + [anon_sym_e_GT_PIPE] = ACTIONS(1990), + [anon_sym_o_GT_PIPE] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_DOLLAR] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1990), + [anon_sym_DASH2] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_DOT_DOT] = ACTIONS(1988), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1990), + [anon_sym_DOT_DOT_LT] = ACTIONS(1990), + [anon_sym_null] = ACTIONS(1990), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [aux_sym__val_number_decimal_token1] = ACTIONS(1988), + [aux_sym__val_number_decimal_token2] = ACTIONS(1990), + [aux_sym__val_number_decimal_token3] = ACTIONS(1990), + [aux_sym__val_number_decimal_token4] = ACTIONS(1990), + [aux_sym__val_number_token1] = ACTIONS(1990), + [aux_sym__val_number_token2] = ACTIONS(1990), + [aux_sym__val_number_token3] = ACTIONS(1990), + [aux_sym__val_number_token4] = ACTIONS(1990), + [aux_sym__val_number_token5] = ACTIONS(1990), + [aux_sym__val_number_token6] = ACTIONS(1990), + [anon_sym_0b] = ACTIONS(1988), + [anon_sym_0o] = ACTIONS(1988), + [anon_sym_0x] = ACTIONS(1988), + [sym_val_date] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym__str_single_quotes] = ACTIONS(1990), + [sym__str_back_ticks] = ACTIONS(1990), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1990), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1990), + [anon_sym_err_GT] = ACTIONS(1988), + [anon_sym_out_GT] = ACTIONS(1988), + [anon_sym_e_GT] = ACTIONS(1988), + [anon_sym_o_GT] = ACTIONS(1988), + [anon_sym_err_PLUSout_GT] = ACTIONS(1988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1988), + [anon_sym_o_PLUSe_GT] = ACTIONS(1988), + [anon_sym_e_PLUSo_GT] = ACTIONS(1988), + [anon_sym_err_GT_GT] = ACTIONS(1990), + [anon_sym_out_GT_GT] = ACTIONS(1990), + [anon_sym_e_GT_GT] = ACTIONS(1990), + [anon_sym_o_GT_GT] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1990), + [aux_sym_unquoted_token1] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1990), }, [1527] = { [sym_comment] = STATE(1527), - [sym__newline] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1538), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1737), }, [1528] = { [sym_comment] = STATE(1528), - [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_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(1526), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1796), + [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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), }, [1529] = { - [sym__expression] = STATE(5679), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3895), - [sym_expr_parenthesized] = STATE(3543), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(3542), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3503), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym__flag] = STATE(2069), - [sym_short_flag] = STATE(3610), - [sym_long_flag] = STATE(3610), [sym_comment] = STATE(1529), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3280), - [aux_sym_cmd_identifier_token38] = ACTIONS(227), - [aux_sym_cmd_identifier_token39] = ACTIONS(227), - [aux_sym_cmd_identifier_token40] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), - [anon_sym_DOT_DOT_LT] = ACTIONS(4983), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [sym__newline] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_PIPE] = ACTIONS(2131), + [anon_sym_err_GT_PIPE] = ACTIONS(2131), + [anon_sym_out_GT_PIPE] = ACTIONS(2131), + [anon_sym_e_GT_PIPE] = ACTIONS(2131), + [anon_sym_o_GT_PIPE] = ACTIONS(2131), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2131), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2131), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2131), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_RPAREN] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym_DASH2] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_DOT_DOT] = ACTIONS(2129), + [anon_sym_DOT_DOT2] = ACTIONS(2129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2129), + [anon_sym_DOT_DOT_LT] = ACTIONS(2129), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2131), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2131), + [anon_sym_null] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2131), + [aux_sym__val_number_decimal_token4] = ACTIONS(2131), + [aux_sym__val_number_token1] = ACTIONS(2131), + [aux_sym__val_number_token2] = ACTIONS(2131), + [aux_sym__val_number_token3] = ACTIONS(2131), + [aux_sym__val_number_token4] = ACTIONS(2131), + [aux_sym__val_number_token5] = ACTIONS(2131), + [aux_sym__val_number_token6] = ACTIONS(2131), + [anon_sym_0b] = ACTIONS(2129), + [anon_sym_0o] = ACTIONS(2129), + [anon_sym_0x] = ACTIONS(2129), + [sym_val_date] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2131), + [sym__str_single_quotes] = ACTIONS(2131), + [sym__str_back_ticks] = ACTIONS(2131), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2131), + [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(2131), + [anon_sym_out_GT_GT] = ACTIONS(2131), + [anon_sym_e_GT_GT] = ACTIONS(2131), + [anon_sym_o_GT_GT] = ACTIONS(2131), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2131), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2131), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2131), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2131), + [aux_sym_unquoted_token1] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2131), }, [1530] = { [sym_comment] = STATE(1530), - [sym__newline] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1530), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [aux_sym_unquoted_token2] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1609), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1609), + [anon_sym_in2] = ACTIONS(1609), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1609), + [anon_sym_xor2] = ACTIONS(1609), + [anon_sym_or2] = ACTIONS(1609), + [anon_sym_not_DASHin2] = ACTIONS(1609), + [anon_sym_starts_DASHwith2] = ACTIONS(1609), + [anon_sym_ends_DASHwith2] = ACTIONS(1609), + [anon_sym_EQ_EQ2] = ACTIONS(1609), + [anon_sym_BANG_EQ2] = ACTIONS(1609), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1609), + [anon_sym_GT_EQ2] = ACTIONS(1609), + [anon_sym_EQ_TILDE2] = ACTIONS(1609), + [anon_sym_BANG_TILDE2] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_STAR_STAR2] = ACTIONS(1609), + [anon_sym_PLUS_PLUS2] = ACTIONS(1609), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1609), + [anon_sym_SLASH_SLASH2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1609), + [anon_sym_bit_DASHshr2] = ACTIONS(1609), + [anon_sym_bit_DASHand2] = ACTIONS(1609), + [anon_sym_bit_DASHxor2] = ACTIONS(1609), + [anon_sym_bit_DASHor2] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(4852), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), }, [1531] = { [sym_comment] = STATE(1531), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_err_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_GT_PIPE] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_LT] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(5005), - [aux_sym__immediate_decimal_token2] = ACTIONS(5007), - [aux_sym__val_number_decimal_token1] = ACTIONS(1703), - [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_0b] = ACTIONS(1703), - [anon_sym_0o] = ACTIONS(1703), - [anon_sym_0x] = ACTIONS(1703), - [sym_val_date] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), - [anon_sym_err_GT] = ACTIONS(1703), - [anon_sym_out_GT] = ACTIONS(1703), - [anon_sym_e_GT] = ACTIONS(1703), - [anon_sym_o_GT] = ACTIONS(1703), - [anon_sym_err_PLUSout_GT] = ACTIONS(1703), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), - [anon_sym_o_PLUSe_GT] = ACTIONS(1703), - [anon_sym_e_PLUSo_GT] = ACTIONS(1703), - [anon_sym_err_GT_GT] = ACTIONS(1705), - [anon_sym_out_GT_GT] = ACTIONS(1705), - [anon_sym_e_GT_GT] = ACTIONS(1705), - [anon_sym_o_GT_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), - [aux_sym_unquoted_token1] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1705), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), + [anon_sym_DOT_DOT_LT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(4854), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, [1532] = { [sym_comment] = STATE(1532), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_LPAREN2] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1598), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [aux_sym_unquoted_token2] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(249), + [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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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__immediate_decimal_token2] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(1757), }, [1533] = { + [sym__expr_parenthesized_immediate] = STATE(7503), [sym_comment] = STATE(1533), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_null] = ACTIONS(2281), - [aux_sym_cmd_identifier_token38] = ACTIONS(2281), - [aux_sym_cmd_identifier_token39] = ACTIONS(2281), - [aux_sym_cmd_identifier_token40] = ACTIONS(2281), - [sym__newline] = ACTIONS(2285), - [anon_sym_SEMI] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_err_GT_PIPE] = ACTIONS(2285), - [anon_sym_out_GT_PIPE] = ACTIONS(2285), - [anon_sym_e_GT_PIPE] = ACTIONS(2285), - [anon_sym_o_GT_PIPE] = ACTIONS(2285), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2285), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2285), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2285), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_DOT_DOT] = ACTIONS(2281), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2281), - [anon_sym_DOT_DOT_LT] = ACTIONS(2281), - [aux_sym__val_number_decimal_token1] = ACTIONS(2281), - [aux_sym__val_number_decimal_token2] = ACTIONS(2281), - [aux_sym__val_number_decimal_token3] = ACTIONS(2281), - [aux_sym__val_number_decimal_token4] = ACTIONS(2281), - [aux_sym__val_number_token1] = ACTIONS(2281), - [aux_sym__val_number_token2] = ACTIONS(2281), - [aux_sym__val_number_token3] = ACTIONS(2281), - [anon_sym_0b] = ACTIONS(2281), - [anon_sym_0o] = ACTIONS(2281), - [anon_sym_0x] = ACTIONS(2281), - [sym_val_date] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2285), - [sym__str_single_quotes] = ACTIONS(2285), - [sym__str_back_ticks] = ACTIONS(2285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2285), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2281), - [anon_sym_out_GT_GT] = ACTIONS(2281), - [anon_sym_e_GT_GT] = ACTIONS(2281), - [anon_sym_o_GT_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2281), - [aux_sym_unquoted_token1] = ACTIONS(2281), - [aux_sym_unquoted_token4] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2285), + [sym__newline] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_err_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_GT_PIPE] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1721), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1721), + [anon_sym_in2] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1721), + [anon_sym_xor2] = ACTIONS(1721), + [anon_sym_or2] = ACTIONS(1721), + [anon_sym_not_DASHin2] = ACTIONS(1721), + [anon_sym_starts_DASHwith2] = ACTIONS(1721), + [anon_sym_ends_DASHwith2] = ACTIONS(1721), + [anon_sym_EQ_EQ2] = ACTIONS(1721), + [anon_sym_BANG_EQ2] = ACTIONS(1721), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1721), + [anon_sym_GT_EQ2] = ACTIONS(1721), + [anon_sym_EQ_TILDE2] = ACTIONS(1721), + [anon_sym_BANG_TILDE2] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_STAR_STAR2] = ACTIONS(1721), + [anon_sym_PLUS_PLUS2] = ACTIONS(1721), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1721), + [anon_sym_SLASH_SLASH2] = ACTIONS(1721), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1721), + [anon_sym_bit_DASHshr2] = ACTIONS(1721), + [anon_sym_bit_DASHand2] = ACTIONS(1721), + [anon_sym_bit_DASHxor2] = ACTIONS(1721), + [anon_sym_bit_DASHor2] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(4856), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4858), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4858), + [sym_filesize_unit] = ACTIONS(4860), + [sym_duration_unit] = ACTIONS(4862), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1721), + [anon_sym_out_GT_GT] = ACTIONS(1721), + [anon_sym_e_GT_GT] = ACTIONS(1721), + [anon_sym_o_GT_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), + [aux_sym_unquoted_token2] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(247), }, [1534] = { + [sym_cell_path] = STATE(1934), + [sym_path] = STATE(1774), [sym_comment] = STATE(1534), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1713), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1994), + [sym__newline] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_err_GT_PIPE] = ACTIONS(1994), + [anon_sym_out_GT_PIPE] = ACTIONS(1994), + [anon_sym_e_GT_PIPE] = ACTIONS(1994), + [anon_sym_o_GT_PIPE] = ACTIONS(1994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_DASH2] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_DOT_DOT] = ACTIONS(1992), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1994), + [anon_sym_DOT_DOT_LT] = ACTIONS(1994), + [anon_sym_null] = ACTIONS(1994), + [anon_sym_true] = ACTIONS(1994), + [anon_sym_false] = ACTIONS(1994), + [aux_sym__val_number_decimal_token1] = ACTIONS(1992), + [aux_sym__val_number_decimal_token2] = ACTIONS(1994), + [aux_sym__val_number_decimal_token3] = ACTIONS(1994), + [aux_sym__val_number_decimal_token4] = ACTIONS(1994), + [aux_sym__val_number_token1] = ACTIONS(1994), + [aux_sym__val_number_token2] = ACTIONS(1994), + [aux_sym__val_number_token3] = ACTIONS(1994), + [aux_sym__val_number_token4] = ACTIONS(1994), + [aux_sym__val_number_token5] = ACTIONS(1994), + [aux_sym__val_number_token6] = ACTIONS(1994), + [anon_sym_0b] = ACTIONS(1992), + [anon_sym_0o] = ACTIONS(1992), + [anon_sym_0x] = ACTIONS(1992), + [sym_val_date] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym__str_single_quotes] = ACTIONS(1994), + [sym__str_back_ticks] = ACTIONS(1994), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1994), + [anon_sym_err_GT] = ACTIONS(1992), + [anon_sym_out_GT] = ACTIONS(1992), + [anon_sym_e_GT] = ACTIONS(1992), + [anon_sym_o_GT] = ACTIONS(1992), + [anon_sym_err_PLUSout_GT] = ACTIONS(1992), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1992), + [anon_sym_o_PLUSe_GT] = ACTIONS(1992), + [anon_sym_e_PLUSo_GT] = ACTIONS(1992), + [anon_sym_err_GT_GT] = ACTIONS(1994), + [anon_sym_out_GT_GT] = ACTIONS(1994), + [anon_sym_e_GT_GT] = ACTIONS(1994), + [anon_sym_o_GT_GT] = ACTIONS(1994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1994), + [aux_sym_unquoted_token1] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1994), }, [1535] = { - [sym_cmd_identifier] = STATE(6296), - [sym__command_name] = STATE(7162), - [sym_scope_pattern] = STATE(7153), - [sym_command_list] = STATE(6988), - [sym__val_number_decimal] = STATE(6981), - [sym_val_string] = STATE(6299), - [sym__raw_str] = STATE(2065), - [sym__str_double_quotes] = STATE(2065), + [sym_cell_path] = STATE(1935), + [sym_path] = STATE(1774), [sym_comment] = STATE(1535), - [ts_builtin_sym_end] = ACTIONS(4911), - [aux_sym_cmd_identifier_token1] = ACTIONS(4961), - [aux_sym_cmd_identifier_token2] = ACTIONS(4963), - [aux_sym_cmd_identifier_token3] = ACTIONS(4963), - [aux_sym_cmd_identifier_token4] = ACTIONS(4963), - [aux_sym_cmd_identifier_token5] = ACTIONS(4963), - [aux_sym_cmd_identifier_token6] = ACTIONS(4963), - [aux_sym_cmd_identifier_token7] = ACTIONS(4963), - [aux_sym_cmd_identifier_token8] = ACTIONS(4963), - [aux_sym_cmd_identifier_token9] = ACTIONS(4961), - [aux_sym_cmd_identifier_token10] = ACTIONS(4963), - [aux_sym_cmd_identifier_token11] = ACTIONS(4963), - [aux_sym_cmd_identifier_token12] = ACTIONS(4963), - [aux_sym_cmd_identifier_token13] = ACTIONS(4961), - [aux_sym_cmd_identifier_token14] = ACTIONS(4963), - [aux_sym_cmd_identifier_token15] = ACTIONS(4961), - [aux_sym_cmd_identifier_token16] = ACTIONS(4963), - [aux_sym_cmd_identifier_token17] = ACTIONS(4963), - [aux_sym_cmd_identifier_token18] = ACTIONS(4963), - [aux_sym_cmd_identifier_token19] = ACTIONS(4963), - [aux_sym_cmd_identifier_token20] = ACTIONS(4963), - [aux_sym_cmd_identifier_token21] = ACTIONS(4963), - [aux_sym_cmd_identifier_token22] = ACTIONS(4963), - [aux_sym_cmd_identifier_token23] = ACTIONS(4963), - [aux_sym_cmd_identifier_token24] = ACTIONS(4963), - [aux_sym_cmd_identifier_token25] = ACTIONS(4963), - [aux_sym_cmd_identifier_token26] = ACTIONS(4963), - [aux_sym_cmd_identifier_token27] = ACTIONS(4963), - [aux_sym_cmd_identifier_token28] = ACTIONS(4963), - [aux_sym_cmd_identifier_token29] = ACTIONS(4963), - [aux_sym_cmd_identifier_token30] = ACTIONS(4963), - [aux_sym_cmd_identifier_token31] = ACTIONS(4963), - [aux_sym_cmd_identifier_token32] = ACTIONS(4963), - [aux_sym_cmd_identifier_token33] = ACTIONS(4963), - [aux_sym_cmd_identifier_token34] = ACTIONS(4963), - [aux_sym_cmd_identifier_token35] = ACTIONS(4963), - [aux_sym_cmd_identifier_token36] = ACTIONS(4961), - [anon_sym_true] = ACTIONS(4965), - [anon_sym_false] = ACTIONS(4965), - [anon_sym_null] = ACTIONS(4965), - [aux_sym_cmd_identifier_token38] = ACTIONS(4967), - [aux_sym_cmd_identifier_token39] = ACTIONS(4965), - [aux_sym_cmd_identifier_token40] = ACTIONS(4965), - [sym__newline] = ACTIONS(4911), - [anon_sym_SEMI] = ACTIONS(4911), - [anon_sym_LBRACK] = ACTIONS(4969), - [sym_wild_card] = ACTIONS(4971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1343), - [aux_sym__val_number_decimal_token2] = ACTIONS(1343), - [aux_sym__val_number_decimal_token3] = ACTIONS(1345), - [aux_sym__val_number_decimal_token4] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(123), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1998), + [sym__newline] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_err_GT_PIPE] = ACTIONS(1998), + [anon_sym_out_GT_PIPE] = ACTIONS(1998), + [anon_sym_e_GT_PIPE] = ACTIONS(1998), + [anon_sym_o_GT_PIPE] = ACTIONS(1998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_DOLLAR] = ACTIONS(1996), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_DASH2] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_DOT_DOT] = ACTIONS(1996), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1998), + [anon_sym_DOT_DOT_LT] = ACTIONS(1998), + [anon_sym_null] = ACTIONS(1998), + [anon_sym_true] = ACTIONS(1998), + [anon_sym_false] = ACTIONS(1998), + [aux_sym__val_number_decimal_token1] = ACTIONS(1996), + [aux_sym__val_number_decimal_token2] = ACTIONS(1998), + [aux_sym__val_number_decimal_token3] = ACTIONS(1998), + [aux_sym__val_number_decimal_token4] = ACTIONS(1998), + [aux_sym__val_number_token1] = ACTIONS(1998), + [aux_sym__val_number_token2] = ACTIONS(1998), + [aux_sym__val_number_token3] = ACTIONS(1998), + [aux_sym__val_number_token4] = ACTIONS(1998), + [aux_sym__val_number_token5] = ACTIONS(1998), + [aux_sym__val_number_token6] = ACTIONS(1998), + [anon_sym_0b] = ACTIONS(1996), + [anon_sym_0o] = ACTIONS(1996), + [anon_sym_0x] = ACTIONS(1996), + [sym_val_date] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym__str_single_quotes] = ACTIONS(1998), + [sym__str_back_ticks] = ACTIONS(1998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1998), + [anon_sym_err_GT] = ACTIONS(1996), + [anon_sym_out_GT] = ACTIONS(1996), + [anon_sym_e_GT] = ACTIONS(1996), + [anon_sym_o_GT] = ACTIONS(1996), + [anon_sym_err_PLUSout_GT] = ACTIONS(1996), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1996), + [anon_sym_o_PLUSe_GT] = ACTIONS(1996), + [anon_sym_e_PLUSo_GT] = ACTIONS(1996), + [anon_sym_err_GT_GT] = ACTIONS(1998), + [anon_sym_out_GT_GT] = ACTIONS(1998), + [anon_sym_e_GT_GT] = ACTIONS(1998), + [anon_sym_o_GT_GT] = ACTIONS(1998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1998), + [aux_sym_unquoted_token1] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1998), }, [1536] = { [sym_comment] = STATE(1536), - [ts_builtin_sym_end] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_null] = ACTIONS(2281), - [aux_sym_cmd_identifier_token38] = ACTIONS(2281), - [aux_sym_cmd_identifier_token39] = ACTIONS(2281), - [aux_sym_cmd_identifier_token40] = ACTIONS(2281), - [sym__newline] = ACTIONS(2285), - [anon_sym_SEMI] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_err_GT_PIPE] = ACTIONS(2285), - [anon_sym_out_GT_PIPE] = ACTIONS(2285), - [anon_sym_e_GT_PIPE] = ACTIONS(2285), - [anon_sym_o_GT_PIPE] = ACTIONS(2285), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2285), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2285), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2285), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_DASH_DASH] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_DOT_DOT] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2283), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2281), - [anon_sym_DOT_DOT_LT] = ACTIONS(2281), - [aux_sym__val_number_decimal_token1] = ACTIONS(2281), - [aux_sym__val_number_decimal_token2] = ACTIONS(2281), - [aux_sym__val_number_decimal_token3] = ACTIONS(2281), - [aux_sym__val_number_decimal_token4] = ACTIONS(2281), - [aux_sym__val_number_token1] = ACTIONS(2281), - [aux_sym__val_number_token2] = ACTIONS(2281), - [aux_sym__val_number_token3] = ACTIONS(2281), - [anon_sym_0b] = ACTIONS(2281), - [anon_sym_0o] = ACTIONS(2281), - [anon_sym_0x] = ACTIONS(2281), - [sym_val_date] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2285), - [sym__str_single_quotes] = ACTIONS(2285), - [sym__str_back_ticks] = ACTIONS(2285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2285), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2281), - [anon_sym_out_GT_GT] = ACTIONS(2281), - [anon_sym_e_GT_GT] = ACTIONS(2281), - [anon_sym_o_GT_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2281), - [aux_sym_unquoted_token1] = ACTIONS(2281), - [aux_sym_unquoted_token4] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2285), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1032), + [anon_sym_RPAREN] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_DOT_DOT] = ACTIONS(1030), + [anon_sym_DOT_DOT2] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT] = ACTIONS(1030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4832), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4832), + [anon_sym_null] = ACTIONS(1032), + [anon_sym_true] = ACTIONS(1032), + [anon_sym_false] = ACTIONS(1032), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1032), + [aux_sym__val_number_decimal_token4] = ACTIONS(1032), + [aux_sym__val_number_token1] = ACTIONS(1032), + [aux_sym__val_number_token2] = ACTIONS(1032), + [aux_sym__val_number_token3] = ACTIONS(1032), + [aux_sym__val_number_token4] = ACTIONS(1032), + [aux_sym__val_number_token5] = ACTIONS(1032), + [aux_sym__val_number_token6] = ACTIONS(1032), + [anon_sym_0b] = ACTIONS(1030), + [anon_sym_0o] = ACTIONS(1030), + [anon_sym_0x] = ACTIONS(1030), + [sym_val_date] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__str_single_quotes] = ACTIONS(1032), + [sym__str_back_ticks] = ACTIONS(1032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1032), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [anon_sym_err_GT_GT] = ACTIONS(1032), + [anon_sym_out_GT_GT] = ACTIONS(1032), + [anon_sym_e_GT_GT] = ACTIONS(1032), + [anon_sym_o_GT_GT] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [aux_sym_unquoted_token1] = ACTIONS(1030), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1032), }, [1537] = { + [sym_cell_path] = STATE(1936), + [sym_path] = STATE(1774), [sym_comment] = STATE(1537), - [ts_builtin_sym_end] = ACTIONS(1092), - [anon_sym_true] = ACTIONS(1090), - [anon_sym_false] = ACTIONS(1090), - [anon_sym_null] = ACTIONS(1090), - [aux_sym_cmd_identifier_token38] = ACTIONS(1090), - [aux_sym_cmd_identifier_token39] = ACTIONS(1090), - [aux_sym_cmd_identifier_token40] = ACTIONS(1090), - [sym__newline] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1092), - [anon_sym_err_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_GT_PIPE] = ACTIONS(1092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), - [anon_sym_LBRACK] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_DOLLAR] = ACTIONS(1090), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_DOT_DOT] = ACTIONS(1090), - [anon_sym_LPAREN2] = ACTIONS(2273), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1090), - [anon_sym_DOT_DOT_LT] = ACTIONS(1090), - [aux_sym__val_number_decimal_token1] = ACTIONS(1090), - [aux_sym__val_number_decimal_token2] = ACTIONS(1090), - [aux_sym__val_number_decimal_token3] = ACTIONS(1090), - [aux_sym__val_number_decimal_token4] = ACTIONS(1090), - [aux_sym__val_number_token1] = ACTIONS(1090), - [aux_sym__val_number_token2] = ACTIONS(1090), - [aux_sym__val_number_token3] = ACTIONS(1090), - [anon_sym_0b] = ACTIONS(1090), - [anon_sym_0o] = ACTIONS(1090), - [anon_sym_0x] = ACTIONS(1090), - [sym_val_date] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1092), - [sym__str_single_quotes] = ACTIONS(1092), - [sym__str_back_ticks] = ACTIONS(1092), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1092), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1092), - [anon_sym_err_GT] = ACTIONS(1090), - [anon_sym_out_GT] = ACTIONS(1090), - [anon_sym_e_GT] = ACTIONS(1090), - [anon_sym_o_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT] = ACTIONS(1090), - [anon_sym_err_GT_GT] = ACTIONS(1090), - [anon_sym_out_GT_GT] = ACTIONS(1090), - [anon_sym_e_GT_GT] = ACTIONS(1090), - [anon_sym_o_GT_GT] = ACTIONS(1090), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1090), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1090), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1090), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1090), - [aux_sym_unquoted_token1] = ACTIONS(1090), - [aux_sym_unquoted_token4] = ACTIONS(2275), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1092), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(2002), + [sym__newline] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_err_GT_PIPE] = ACTIONS(2002), + [anon_sym_out_GT_PIPE] = ACTIONS(2002), + [anon_sym_e_GT_PIPE] = ACTIONS(2002), + [anon_sym_o_GT_PIPE] = ACTIONS(2002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2000), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2002), + [anon_sym_DOT_DOT_LT] = ACTIONS(2002), + [anon_sym_null] = ACTIONS(2002), + [anon_sym_true] = ACTIONS(2002), + [anon_sym_false] = ACTIONS(2002), + [aux_sym__val_number_decimal_token1] = ACTIONS(2000), + [aux_sym__val_number_decimal_token2] = ACTIONS(2002), + [aux_sym__val_number_decimal_token3] = ACTIONS(2002), + [aux_sym__val_number_decimal_token4] = ACTIONS(2002), + [aux_sym__val_number_token1] = ACTIONS(2002), + [aux_sym__val_number_token2] = ACTIONS(2002), + [aux_sym__val_number_token3] = ACTIONS(2002), + [aux_sym__val_number_token4] = ACTIONS(2002), + [aux_sym__val_number_token5] = ACTIONS(2002), + [aux_sym__val_number_token6] = ACTIONS(2002), + [anon_sym_0b] = ACTIONS(2000), + [anon_sym_0o] = ACTIONS(2000), + [anon_sym_0x] = ACTIONS(2000), + [sym_val_date] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym__str_single_quotes] = ACTIONS(2002), + [sym__str_back_ticks] = ACTIONS(2002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), + [anon_sym_err_GT] = ACTIONS(2000), + [anon_sym_out_GT] = ACTIONS(2000), + [anon_sym_e_GT] = ACTIONS(2000), + [anon_sym_o_GT] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT] = ACTIONS(2000), + [anon_sym_err_GT_GT] = ACTIONS(2002), + [anon_sym_out_GT_GT] = ACTIONS(2002), + [anon_sym_e_GT_GT] = ACTIONS(2002), + [anon_sym_o_GT_GT] = ACTIONS(2002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2002), + [aux_sym_unquoted_token1] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2002), }, [1538] = { [sym_comment] = STATE(1538), - [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(1076), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_err_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_GT_PIPE] = ACTIONS(1076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_RPAREN] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_DASH_DASH] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_DOT_DOT] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), - [anon_sym_DOT_DOT_LT] = ACTIONS(1076), - [aux_sym__val_number_decimal_token1] = ACTIONS(1074), - [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(1074), - [anon_sym_0o] = ACTIONS(1074), - [anon_sym_0x] = ACTIONS(1074), - [sym_val_date] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1076), - [sym__str_single_quotes] = ACTIONS(1076), - [sym__str_back_ticks] = ACTIONS(1076), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1076), - [anon_sym_err_GT] = ACTIONS(1074), - [anon_sym_out_GT] = ACTIONS(1074), - [anon_sym_e_GT] = ACTIONS(1074), - [anon_sym_o_GT] = ACTIONS(1074), - [anon_sym_err_PLUSout_GT] = ACTIONS(1074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), - [anon_sym_o_PLUSe_GT] = ACTIONS(1074), - [anon_sym_e_PLUSo_GT] = ACTIONS(1074), - [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(1074), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1076), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_GT2] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_EQ_GT] = ACTIONS(986), + [anon_sym_STAR2] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(4866), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(986), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(986), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), }, [1539] = { - [sym__expr_parenthesized_immediate] = STATE(7460), + [sym_cell_path] = STATE(1937), + [sym_path] = STATE(1774), [sym_comment] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(4822), - [anon_sym_true] = ACTIONS(4822), - [anon_sym_false] = ACTIONS(4822), - [anon_sym_null] = ACTIONS(4822), - [aux_sym_cmd_identifier_token38] = ACTIONS(4822), - [aux_sym_cmd_identifier_token39] = ACTIONS(4822), - [aux_sym_cmd_identifier_token40] = ACTIONS(4822), - [sym__newline] = ACTIONS(4822), - [anon_sym_SEMI] = ACTIONS(4822), - [anon_sym_PIPE] = ACTIONS(4822), - [anon_sym_err_GT_PIPE] = ACTIONS(4822), - [anon_sym_out_GT_PIPE] = ACTIONS(4822), - [anon_sym_e_GT_PIPE] = ACTIONS(4822), - [anon_sym_o_GT_PIPE] = ACTIONS(4822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4822), - [anon_sym_LBRACK] = ACTIONS(4822), - [anon_sym_LPAREN] = ACTIONS(4824), - [anon_sym_DOLLAR] = ACTIONS(4824), - [anon_sym_DASH_DASH] = ACTIONS(4822), - [anon_sym_DASH] = ACTIONS(4824), - [anon_sym_LBRACE] = ACTIONS(4822), - [anon_sym_DOT_DOT] = ACTIONS(4824), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4822), - [anon_sym_DOT_DOT_LT] = ACTIONS(4822), - [aux_sym__val_number_decimal_token1] = ACTIONS(4824), - [aux_sym__val_number_decimal_token2] = ACTIONS(4822), - [aux_sym__val_number_decimal_token3] = ACTIONS(4822), - [aux_sym__val_number_decimal_token4] = ACTIONS(4822), - [aux_sym__val_number_token1] = ACTIONS(4822), - [aux_sym__val_number_token2] = ACTIONS(4822), - [aux_sym__val_number_token3] = ACTIONS(4822), - [anon_sym_0b] = ACTIONS(4824), - [anon_sym_0o] = ACTIONS(4824), - [anon_sym_0x] = ACTIONS(4824), - [sym_val_date] = ACTIONS(4822), - [anon_sym_DQUOTE] = ACTIONS(4822), - [sym__str_single_quotes] = ACTIONS(4822), - [sym__str_back_ticks] = ACTIONS(4822), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4822), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4822), - [anon_sym_err_GT] = ACTIONS(4824), - [anon_sym_out_GT] = ACTIONS(4824), - [anon_sym_e_GT] = ACTIONS(4824), - [anon_sym_o_GT] = ACTIONS(4824), - [anon_sym_err_PLUSout_GT] = ACTIONS(4824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4824), - [anon_sym_o_PLUSe_GT] = ACTIONS(4824), - [anon_sym_e_PLUSo_GT] = ACTIONS(4824), - [anon_sym_err_GT_GT] = ACTIONS(4822), - [anon_sym_out_GT_GT] = ACTIONS(4822), - [anon_sym_e_GT_GT] = ACTIONS(4822), - [anon_sym_o_GT_GT] = ACTIONS(4822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4822), - [aux_sym_unquoted_token1] = ACTIONS(4824), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4822), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(2006), + [sym__newline] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2006), + [anon_sym_err_GT_PIPE] = ACTIONS(2006), + [anon_sym_out_GT_PIPE] = ACTIONS(2006), + [anon_sym_e_GT_PIPE] = ACTIONS(2006), + [anon_sym_o_GT_PIPE] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_DASH2] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_DOT_DOT] = ACTIONS(2004), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2006), + [anon_sym_DOT_DOT_LT] = ACTIONS(2006), + [anon_sym_null] = ACTIONS(2006), + [anon_sym_true] = ACTIONS(2006), + [anon_sym_false] = ACTIONS(2006), + [aux_sym__val_number_decimal_token1] = ACTIONS(2004), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2006), + [aux_sym__val_number_decimal_token4] = ACTIONS(2006), + [aux_sym__val_number_token1] = ACTIONS(2006), + [aux_sym__val_number_token2] = ACTIONS(2006), + [aux_sym__val_number_token3] = ACTIONS(2006), + [aux_sym__val_number_token4] = ACTIONS(2006), + [aux_sym__val_number_token5] = ACTIONS(2006), + [aux_sym__val_number_token6] = ACTIONS(2006), + [anon_sym_0b] = ACTIONS(2004), + [anon_sym_0o] = ACTIONS(2004), + [anon_sym_0x] = ACTIONS(2004), + [sym_val_date] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym__str_single_quotes] = ACTIONS(2006), + [sym__str_back_ticks] = ACTIONS(2006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2006), + [anon_sym_err_GT] = ACTIONS(2004), + [anon_sym_out_GT] = ACTIONS(2004), + [anon_sym_e_GT] = ACTIONS(2004), + [anon_sym_o_GT] = ACTIONS(2004), + [anon_sym_err_PLUSout_GT] = ACTIONS(2004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2004), + [anon_sym_o_PLUSe_GT] = ACTIONS(2004), + [anon_sym_e_PLUSo_GT] = ACTIONS(2004), + [anon_sym_err_GT_GT] = ACTIONS(2006), + [anon_sym_out_GT_GT] = ACTIONS(2006), + [anon_sym_e_GT_GT] = ACTIONS(2006), + [anon_sym_o_GT_GT] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2006), + [aux_sym_unquoted_token1] = ACTIONS(2004), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2006), }, [1540] = { [sym_comment] = STATE(1540), - [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_DASH_DASH] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1060), - [anon_sym_EQ_GT] = ACTIONS(1060), - [anon_sym_QMARK2] = 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] = 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(249), + [ts_builtin_sym_end] = ACTIONS(1012), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1012), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), + [aux_sym__val_number_token1] = ACTIONS(1012), + [aux_sym__val_number_token2] = ACTIONS(1012), + [aux_sym__val_number_token3] = ACTIONS(1012), + [aux_sym__val_number_token4] = ACTIONS(1012), + [aux_sym__val_number_token5] = ACTIONS(1012), + [aux_sym__val_number_token6] = ACTIONS(1012), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [aux_sym_unquoted_token1] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1012), }, [1541] = { [sym_comment] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(4939), - [anon_sym_true] = ACTIONS(4937), - [anon_sym_false] = ACTIONS(4937), - [anon_sym_null] = ACTIONS(4937), - [aux_sym_cmd_identifier_token38] = ACTIONS(4937), - [aux_sym_cmd_identifier_token39] = ACTIONS(4939), - [aux_sym_cmd_identifier_token40] = ACTIONS(4937), - [sym_long_flag_identifier] = ACTIONS(5009), - [sym__newline] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_err_GT_PIPE] = ACTIONS(4939), - [anon_sym_out_GT_PIPE] = ACTIONS(4939), - [anon_sym_e_GT_PIPE] = ACTIONS(4939), - [anon_sym_o_GT_PIPE] = ACTIONS(4939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4937), - [anon_sym_DASH_DASH] = ACTIONS(4939), - [anon_sym_DASH] = ACTIONS(4937), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_DOT_DOT] = ACTIONS(4937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4939), - [anon_sym_DOT_DOT_LT] = ACTIONS(4939), - [aux_sym__val_number_decimal_token1] = ACTIONS(4937), - [aux_sym__val_number_decimal_token2] = ACTIONS(4939), - [aux_sym__val_number_decimal_token3] = ACTIONS(4939), - [aux_sym__val_number_decimal_token4] = ACTIONS(4939), - [aux_sym__val_number_token1] = ACTIONS(4937), - [aux_sym__val_number_token2] = ACTIONS(4937), - [aux_sym__val_number_token3] = ACTIONS(4937), - [anon_sym_0b] = ACTIONS(4937), - [anon_sym_0o] = ACTIONS(4937), - [anon_sym_0x] = ACTIONS(4937), - [sym_val_date] = ACTIONS(4937), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4939), - [sym__str_back_ticks] = ACTIONS(4939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4939), - [anon_sym_err_GT] = ACTIONS(4937), - [anon_sym_out_GT] = ACTIONS(4937), - [anon_sym_e_GT] = ACTIONS(4937), - [anon_sym_o_GT] = ACTIONS(4937), - [anon_sym_err_PLUSout_GT] = ACTIONS(4937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4937), - [anon_sym_o_PLUSe_GT] = ACTIONS(4937), - [anon_sym_e_PLUSo_GT] = ACTIONS(4937), - [anon_sym_err_GT_GT] = ACTIONS(4939), - [anon_sym_out_GT_GT] = ACTIONS(4939), - [anon_sym_e_GT_GT] = ACTIONS(4939), - [anon_sym_o_GT_GT] = ACTIONS(4939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4939), - [anon_sym_EQ2] = ACTIONS(5011), - [aux_sym_unquoted_token1] = ACTIONS(4937), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4939), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), + [anon_sym_DOT_DOT_LT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, [1542] = { + [sym_cell_path] = STATE(1657), + [sym_path] = STATE(1642), [sym_comment] = STATE(1542), - [ts_builtin_sym_end] = ACTIONS(4927), - [anon_sym_true] = ACTIONS(4925), - [anon_sym_false] = ACTIONS(4925), - [anon_sym_null] = ACTIONS(4925), - [aux_sym_cmd_identifier_token38] = ACTIONS(4925), - [aux_sym_cmd_identifier_token39] = ACTIONS(4925), - [aux_sym_cmd_identifier_token40] = ACTIONS(4925), - [sym__newline] = ACTIONS(4927), - [anon_sym_SEMI] = ACTIONS(4927), - [anon_sym_PIPE] = ACTIONS(4927), - [anon_sym_err_GT_PIPE] = ACTIONS(4927), - [anon_sym_out_GT_PIPE] = ACTIONS(4927), - [anon_sym_e_GT_PIPE] = ACTIONS(4927), - [anon_sym_o_GT_PIPE] = ACTIONS(4927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4925), - [anon_sym_DASH_DASH] = ACTIONS(4925), - [anon_sym_DASH] = ACTIONS(4925), - [anon_sym_LBRACE] = ACTIONS(4927), - [anon_sym_DOT_DOT] = ACTIONS(4925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4927), - [anon_sym_DOT_DOT_LT] = ACTIONS(4927), - [aux_sym__val_number_decimal_token1] = ACTIONS(4925), - [aux_sym__val_number_decimal_token2] = ACTIONS(4925), - [aux_sym__val_number_decimal_token3] = ACTIONS(4927), - [aux_sym__val_number_decimal_token4] = ACTIONS(4927), - [aux_sym__val_number_token1] = ACTIONS(4925), - [aux_sym__val_number_token2] = ACTIONS(4925), - [aux_sym__val_number_token3] = ACTIONS(4925), - [anon_sym_0b] = ACTIONS(4925), - [anon_sym_0o] = ACTIONS(4925), - [anon_sym_0x] = ACTIONS(4925), - [sym_val_date] = ACTIONS(4925), - [anon_sym_DQUOTE] = ACTIONS(4927), - [sym__str_single_quotes] = ACTIONS(4927), - [sym__str_back_ticks] = ACTIONS(4927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4927), - [anon_sym_err_GT] = ACTIONS(4925), - [anon_sym_out_GT] = ACTIONS(4925), - [anon_sym_e_GT] = ACTIONS(4925), - [anon_sym_o_GT] = ACTIONS(4925), - [anon_sym_err_PLUSout_GT] = ACTIONS(4925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4925), - [anon_sym_o_PLUSe_GT] = ACTIONS(4925), - [anon_sym_e_PLUSo_GT] = ACTIONS(4925), - [anon_sym_err_GT_GT] = ACTIONS(4927), - [anon_sym_out_GT_GT] = ACTIONS(4927), - [anon_sym_e_GT_GT] = ACTIONS(4927), - [anon_sym_o_GT_GT] = ACTIONS(4927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4927), - [anon_sym_EQ2] = ACTIONS(5013), - [sym_short_flag_identifier] = ACTIONS(5015), - [aux_sym_unquoted_token1] = ACTIONS(4925), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4927), + [aux_sym_cell_path_repeat1] = STATE(1645), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_GT2] = ACTIONS(1769), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_STAR2] = ACTIONS(1769), + [anon_sym_and2] = ACTIONS(1771), + [anon_sym_xor2] = ACTIONS(1771), + [anon_sym_or2] = ACTIONS(1771), + [anon_sym_not_DASHin2] = ACTIONS(1771), + [anon_sym_starts_DASHwith2] = ACTIONS(1771), + [anon_sym_ends_DASHwith2] = ACTIONS(1771), + [anon_sym_EQ_EQ2] = ACTIONS(1771), + [anon_sym_BANG_EQ2] = ACTIONS(1771), + [anon_sym_LT2] = ACTIONS(1769), + [anon_sym_LT_EQ2] = ACTIONS(1771), + [anon_sym_GT_EQ2] = ACTIONS(1771), + [anon_sym_EQ_TILDE2] = ACTIONS(1771), + [anon_sym_BANG_TILDE2] = ACTIONS(1771), + [anon_sym_STAR_STAR2] = ACTIONS(1771), + [anon_sym_PLUS_PLUS2] = ACTIONS(1771), + [anon_sym_SLASH2] = ACTIONS(1769), + [anon_sym_mod2] = ACTIONS(1771), + [anon_sym_SLASH_SLASH2] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1769), + [anon_sym_bit_DASHshl2] = ACTIONS(1771), + [anon_sym_bit_DASHshr2] = ACTIONS(1771), + [anon_sym_bit_DASHand2] = ACTIONS(1771), + [anon_sym_bit_DASHxor2] = ACTIONS(1771), + [anon_sym_bit_DASHor2] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(4868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(247), }, [1543] = { [sym_comment] = STATE(1543), - [aux_sym_cmd_identifier_token41] = ACTIONS(1536), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(2165), + [anon_sym_SEMI] = ACTIONS(2165), + [anon_sym_PIPE] = ACTIONS(2165), + [anon_sym_err_GT_PIPE] = ACTIONS(2165), + [anon_sym_out_GT_PIPE] = ACTIONS(2165), + [anon_sym_e_GT_PIPE] = ACTIONS(2165), + [anon_sym_o_GT_PIPE] = ACTIONS(2165), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2165), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2165), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2165), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_RPAREN] = ACTIONS(2165), + [anon_sym_DOLLAR] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2165), + [anon_sym_DASH2] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_DOT_DOT2] = ACTIONS(4870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2159), + [anon_sym_DOT_DOT_LT] = ACTIONS(2159), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4872), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4872), + [anon_sym_null] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2165), + [anon_sym_false] = ACTIONS(2165), + [aux_sym__val_number_decimal_token1] = ACTIONS(2159), + [aux_sym__val_number_decimal_token2] = ACTIONS(2165), + [aux_sym__val_number_decimal_token3] = ACTIONS(2165), + [aux_sym__val_number_decimal_token4] = ACTIONS(2165), + [aux_sym__val_number_token1] = ACTIONS(2165), + [aux_sym__val_number_token2] = ACTIONS(2165), + [aux_sym__val_number_token3] = ACTIONS(2165), + [aux_sym__val_number_token4] = ACTIONS(2165), + [aux_sym__val_number_token5] = ACTIONS(2165), + [aux_sym__val_number_token6] = ACTIONS(2165), + [anon_sym_0b] = ACTIONS(2159), + [anon_sym_0o] = ACTIONS(2159), + [anon_sym_0x] = ACTIONS(2159), + [sym_val_date] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(2165), + [sym__str_single_quotes] = ACTIONS(2165), + [sym__str_back_ticks] = ACTIONS(2165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2165), + [anon_sym_err_GT] = ACTIONS(2159), + [anon_sym_out_GT] = ACTIONS(2159), + [anon_sym_e_GT] = ACTIONS(2159), + [anon_sym_o_GT] = ACTIONS(2159), + [anon_sym_err_PLUSout_GT] = ACTIONS(2159), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2159), + [anon_sym_o_PLUSe_GT] = ACTIONS(2159), + [anon_sym_e_PLUSo_GT] = ACTIONS(2159), + [anon_sym_err_GT_GT] = ACTIONS(2165), + [anon_sym_out_GT_GT] = ACTIONS(2165), + [anon_sym_e_GT_GT] = ACTIONS(2165), + [anon_sym_o_GT_GT] = ACTIONS(2165), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2165), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2165), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2165), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2165), + [aux_sym_unquoted_token1] = ACTIONS(2159), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2165), }, [1544] = { [sym_comment] = STATE(1544), - [sym__newline] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_err_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_GT_PIPE] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), - [anon_sym_EQ_GT] = ACTIONS(1064), - [anon_sym_QMARK2] = ACTIONS(1064), - [aux_sym_expr_binary_token1] = ACTIONS(1064), - [aux_sym_expr_binary_token2] = ACTIONS(1064), - [aux_sym_expr_binary_token3] = ACTIONS(1064), - [aux_sym_expr_binary_token4] = ACTIONS(1064), - [aux_sym_expr_binary_token5] = ACTIONS(1064), - [aux_sym_expr_binary_token6] = ACTIONS(1064), - [aux_sym_expr_binary_token7] = ACTIONS(1064), - [aux_sym_expr_binary_token8] = ACTIONS(1064), - [aux_sym_expr_binary_token9] = ACTIONS(1064), - [aux_sym_expr_binary_token10] = ACTIONS(1064), - [aux_sym_expr_binary_token11] = ACTIONS(1064), - [aux_sym_expr_binary_token12] = ACTIONS(1064), - [aux_sym_expr_binary_token13] = ACTIONS(1064), - [aux_sym_expr_binary_token14] = ACTIONS(1064), - [aux_sym_expr_binary_token15] = ACTIONS(1064), - [aux_sym_expr_binary_token16] = ACTIONS(1064), - [aux_sym_expr_binary_token17] = ACTIONS(1064), - [aux_sym_expr_binary_token18] = ACTIONS(1064), - [aux_sym_expr_binary_token19] = ACTIONS(1064), - [aux_sym_expr_binary_token20] = ACTIONS(1064), - [aux_sym_expr_binary_token21] = ACTIONS(1064), - [aux_sym_expr_binary_token22] = ACTIONS(1064), - [aux_sym_expr_binary_token23] = ACTIONS(1064), - [aux_sym_expr_binary_token24] = ACTIONS(1064), - [aux_sym_expr_binary_token25] = ACTIONS(1064), - [aux_sym_expr_binary_token26] = ACTIONS(1064), - [aux_sym_expr_binary_token27] = ACTIONS(1064), - [aux_sym_expr_binary_token28] = ACTIONS(1064), - [anon_sym_DOT] = ACTIONS(1064), - [aux_sym_record_entry_token1] = ACTIONS(1064), - [anon_sym_err_GT] = ACTIONS(1062), - [anon_sym_out_GT] = ACTIONS(1062), - [anon_sym_e_GT] = ACTIONS(1062), - [anon_sym_o_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT] = ACTIONS(1062), - [anon_sym_err_GT_GT] = ACTIONS(1064), - [anon_sym_out_GT_GT] = ACTIONS(1064), - [anon_sym_e_GT_GT] = ACTIONS(1064), - [anon_sym_o_GT_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = 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_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(4874), + [aux_sym__immediate_decimal_token2] = ACTIONS(4876), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), }, [1545] = { [sym_comment] = STATE(1545), - [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(249), + [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_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1892), }, [1546] = { + [sym_cell_path] = STATE(1938), + [sym_path] = STATE(1774), [sym_comment] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(2291), - [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(2291), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_PIPE] = ACTIONS(2291), - [anon_sym_err_GT_PIPE] = ACTIONS(2291), - [anon_sym_out_GT_PIPE] = ACTIONS(2291), - [anon_sym_e_GT_PIPE] = ACTIONS(2291), - [anon_sym_o_GT_PIPE] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_DOLLAR] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(2291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2289), - [anon_sym_DOT_DOT_LT] = ACTIONS(2289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2289), - [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(2289), - [anon_sym_0o] = ACTIONS(2289), - [anon_sym_0x] = ACTIONS(2289), - [sym_val_date] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2291), - [sym__str_single_quotes] = ACTIONS(2291), - [sym__str_back_ticks] = ACTIONS(2291), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2291), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2291), - [anon_sym_err_GT] = ACTIONS(2289), - [anon_sym_out_GT] = ACTIONS(2289), - [anon_sym_e_GT] = ACTIONS(2289), - [anon_sym_o_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT] = ACTIONS(2289), - [anon_sym_err_GT_GT] = ACTIONS(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(2289), - [aux_sym_unquoted_token4] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2291), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(2070), + [sym__newline] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_PIPE] = ACTIONS(2070), + [anon_sym_err_GT_PIPE] = ACTIONS(2070), + [anon_sym_out_GT_PIPE] = ACTIONS(2070), + [anon_sym_e_GT_PIPE] = ACTIONS(2070), + [anon_sym_o_GT_PIPE] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2070), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_DOLLAR] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_DOT_DOT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2070), + [anon_sym_DOT_DOT_LT] = ACTIONS(2070), + [anon_sym_null] = ACTIONS(2070), + [anon_sym_true] = ACTIONS(2070), + [anon_sym_false] = ACTIONS(2070), + [aux_sym__val_number_decimal_token1] = ACTIONS(2068), + [aux_sym__val_number_decimal_token2] = ACTIONS(2070), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(2070), + [aux_sym__val_number_token2] = ACTIONS(2070), + [aux_sym__val_number_token3] = ACTIONS(2070), + [aux_sym__val_number_token4] = ACTIONS(2070), + [aux_sym__val_number_token5] = ACTIONS(2070), + [aux_sym__val_number_token6] = ACTIONS(2070), + [anon_sym_0b] = ACTIONS(2068), + [anon_sym_0o] = ACTIONS(2068), + [anon_sym_0x] = ACTIONS(2068), + [sym_val_date] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [sym__str_single_quotes] = ACTIONS(2070), + [sym__str_back_ticks] = ACTIONS(2070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2070), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2070), + [anon_sym_err_GT] = ACTIONS(2068), + [anon_sym_out_GT] = ACTIONS(2068), + [anon_sym_e_GT] = ACTIONS(2068), + [anon_sym_o_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT] = ACTIONS(2068), + [anon_sym_err_GT_GT] = ACTIONS(2070), + [anon_sym_out_GT_GT] = ACTIONS(2070), + [anon_sym_e_GT_GT] = ACTIONS(2070), + [anon_sym_o_GT_GT] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2070), + [aux_sym_unquoted_token1] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2070), }, [1547] = { + [sym_cell_path] = STATE(1939), + [sym_path] = STATE(1774), [sym_comment] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_LPAREN] = ACTIONS(2074), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_DOT_DOT] = ACTIONS(2072), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2074), + [anon_sym_DOT_DOT_LT] = ACTIONS(2074), + [anon_sym_null] = ACTIONS(2074), + [anon_sym_true] = ACTIONS(2074), + [anon_sym_false] = ACTIONS(2074), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [aux_sym__val_number_decimal_token2] = ACTIONS(2074), + [aux_sym__val_number_decimal_token3] = ACTIONS(2074), + [aux_sym__val_number_decimal_token4] = ACTIONS(2074), + [aux_sym__val_number_token1] = ACTIONS(2074), + [aux_sym__val_number_token2] = ACTIONS(2074), + [aux_sym__val_number_token3] = ACTIONS(2074), + [aux_sym__val_number_token4] = ACTIONS(2074), + [aux_sym__val_number_token5] = ACTIONS(2074), + [aux_sym__val_number_token6] = ACTIONS(2074), + [anon_sym_0b] = ACTIONS(2072), + [anon_sym_0o] = ACTIONS(2072), + [anon_sym_0x] = ACTIONS(2072), + [sym_val_date] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym__str_single_quotes] = ACTIONS(2074), + [sym__str_back_ticks] = ACTIONS(2074), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2074), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2074), + [anon_sym_err_GT] = ACTIONS(2072), + [anon_sym_out_GT] = ACTIONS(2072), + [anon_sym_e_GT] = ACTIONS(2072), + [anon_sym_o_GT] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT] = ACTIONS(2072), + [anon_sym_err_GT_GT] = ACTIONS(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), + [aux_sym_unquoted_token1] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2074), }, [1548] = { - [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_cell_path] = STATE(1940), + [sym_path] = STATE(1774), [sym_comment] = STATE(1548), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1911), + [sym__newline] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_err_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_GT_PIPE] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1911), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), + [anon_sym_DOT_DOT_LT] = ACTIONS(1911), + [anon_sym_null] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1907), + [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), + [aux_sym__val_number_token4] = ACTIONS(1911), + [aux_sym__val_number_token5] = ACTIONS(1911), + [aux_sym__val_number_token6] = ACTIONS(1911), + [anon_sym_0b] = ACTIONS(1907), + [anon_sym_0o] = ACTIONS(1907), + [anon_sym_0x] = ACTIONS(1907), + [sym_val_date] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), + [anon_sym_err_GT] = ACTIONS(1907), + [anon_sym_out_GT] = ACTIONS(1907), + [anon_sym_e_GT] = ACTIONS(1907), + [anon_sym_o_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT] = ACTIONS(1907), + [anon_sym_err_GT_GT] = ACTIONS(1911), + [anon_sym_out_GT_GT] = ACTIONS(1911), + [anon_sym_e_GT_GT] = ACTIONS(1911), + [anon_sym_o_GT_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), + [aux_sym_unquoted_token1] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1911), }, [1549] = { + [sym_cell_path] = STATE(1941), + [sym_path] = STATE(1774), [sym_comment] = STATE(1549), - [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_DASH_DASH] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_EQ_GT] = ACTIONS(1056), - [anon_sym_QMARK2] = 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] = 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(249), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1915), + [sym__newline] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_err_GT_PIPE] = ACTIONS(1915), + [anon_sym_out_GT_PIPE] = ACTIONS(1915), + [anon_sym_e_GT_PIPE] = ACTIONS(1915), + [anon_sym_o_GT_PIPE] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_DOLLAR] = ACTIONS(1913), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_DASH2] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1915), + [anon_sym_DOT_DOT_LT] = ACTIONS(1915), + [anon_sym_null] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(1915), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1915), + [aux_sym__val_number_token5] = ACTIONS(1915), + [aux_sym__val_number_token6] = ACTIONS(1915), + [anon_sym_0b] = ACTIONS(1913), + [anon_sym_0o] = ACTIONS(1913), + [anon_sym_0x] = ACTIONS(1913), + [sym_val_date] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1915), + [sym__str_single_quotes] = ACTIONS(1915), + [sym__str_back_ticks] = ACTIONS(1915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1915), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1915), + [anon_sym_err_GT] = ACTIONS(1913), + [anon_sym_out_GT] = ACTIONS(1913), + [anon_sym_e_GT] = ACTIONS(1913), + [anon_sym_o_GT] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT] = ACTIONS(1913), + [anon_sym_err_GT_GT] = ACTIONS(1915), + [anon_sym_out_GT_GT] = ACTIONS(1915), + [anon_sym_e_GT_GT] = ACTIONS(1915), + [anon_sym_o_GT_GT] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), + [aux_sym_unquoted_token1] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1915), }, [1550] = { [sym_comment] = STATE(1550), - [ts_builtin_sym_end] = ACTIONS(2297), - [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_DOLLAR] = ACTIONS(2293), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_LBRACE] = 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), - [sym_raw_string_begin] = ACTIONS(2297), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1609), + [anon_sym_in2] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1609), + [anon_sym_xor2] = ACTIONS(1609), + [anon_sym_or2] = ACTIONS(1609), + [anon_sym_not_DASHin2] = ACTIONS(1609), + [anon_sym_starts_DASHwith2] = ACTIONS(1609), + [anon_sym_ends_DASHwith2] = ACTIONS(1609), + [anon_sym_EQ_EQ2] = ACTIONS(1609), + [anon_sym_BANG_EQ2] = ACTIONS(1609), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1609), + [anon_sym_GT_EQ2] = ACTIONS(1609), + [anon_sym_EQ_TILDE2] = ACTIONS(1609), + [anon_sym_BANG_TILDE2] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_STAR_STAR2] = ACTIONS(1609), + [anon_sym_PLUS_PLUS2] = ACTIONS(1609), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1609), + [anon_sym_SLASH_SLASH2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1609), + [anon_sym_bit_DASHshr2] = ACTIONS(1609), + [anon_sym_bit_DASHand2] = ACTIONS(1609), + [anon_sym_bit_DASHxor2] = ACTIONS(1609), + [anon_sym_bit_DASHor2] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), }, [1551] = { [sym_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(2305), - [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), - [sym__newline] = ACTIONS(2305), - [anon_sym_SEMI] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_err_GT_PIPE] = ACTIONS(2305), - [anon_sym_out_GT_PIPE] = ACTIONS(2305), - [anon_sym_e_GT_PIPE] = ACTIONS(2305), - [anon_sym_o_GT_PIPE] = ACTIONS(2305), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2305), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2305), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2305), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_DOLLAR] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2303), - [anon_sym_LPAREN2] = ACTIONS(2295), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2303), - [anon_sym_DOT_DOT_LT] = 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_0b] = ACTIONS(2303), - [anon_sym_0o] = ACTIONS(2303), - [anon_sym_0x] = ACTIONS(2303), - [sym_val_date] = ACTIONS(2303), - [anon_sym_DQUOTE] = ACTIONS(2305), - [sym__str_single_quotes] = ACTIONS(2305), - [sym__str_back_ticks] = ACTIONS(2305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2305), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2305), - [anon_sym_err_GT] = ACTIONS(2303), - [anon_sym_out_GT] = ACTIONS(2303), - [anon_sym_e_GT] = ACTIONS(2303), - [anon_sym_o_GT] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT] = ACTIONS(2303), - [anon_sym_err_GT_GT] = ACTIONS(2303), - [anon_sym_out_GT_GT] = ACTIONS(2303), - [anon_sym_e_GT_GT] = ACTIONS(2303), - [anon_sym_o_GT_GT] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2303), - [aux_sym_unquoted_token1] = ACTIONS(2303), - [aux_sym_unquoted_token4] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2305), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_EQ_GT] = ACTIONS(996), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(996), + [anon_sym_xor2] = ACTIONS(996), + [anon_sym_or2] = ACTIONS(996), + [anon_sym_not_DASHin2] = ACTIONS(996), + [anon_sym_starts_DASHwith2] = ACTIONS(996), + [anon_sym_ends_DASHwith2] = ACTIONS(996), + [anon_sym_EQ_EQ2] = ACTIONS(996), + [anon_sym_BANG_EQ2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(996), + [anon_sym_GT_EQ2] = ACTIONS(996), + [anon_sym_EQ_TILDE2] = ACTIONS(996), + [anon_sym_BANG_TILDE2] = ACTIONS(996), + [anon_sym_STAR_STAR2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(996), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(996), + [anon_sym_SLASH_SLASH2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(996), + [anon_sym_bit_DASHshr2] = ACTIONS(996), + [anon_sym_bit_DASHand2] = ACTIONS(996), + [anon_sym_bit_DASHxor2] = ACTIONS(996), + [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [aux_sym_record_entry_token1] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), }, [1552] = { [sym_comment] = STATE(1552), - [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_QMARK2] = ACTIONS(1060), - [anon_sym_DOT] = ACTIONS(1058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), - [anon_sym_DOT_DOT_LT] = 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(249), - [sym_raw_string_begin] = ACTIONS(1060), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4878), + [aux_sym__immediate_decimal_token2] = ACTIONS(4880), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1553] = { + [sym_cell_path] = STATE(1946), + [sym_path] = STATE(1774), [sym_comment] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(1538), - [aux_sym_cmd_identifier_token41] = ACTIONS(1536), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [aux_sym_expr_binary_token1] = ACTIONS(1538), - [aux_sym_expr_binary_token2] = ACTIONS(1538), - [aux_sym_expr_binary_token3] = ACTIONS(1538), - [aux_sym_expr_binary_token4] = ACTIONS(1538), - [aux_sym_expr_binary_token5] = ACTIONS(1538), - [aux_sym_expr_binary_token6] = ACTIONS(1538), - [aux_sym_expr_binary_token7] = ACTIONS(1538), - [aux_sym_expr_binary_token8] = ACTIONS(1538), - [aux_sym_expr_binary_token9] = ACTIONS(1538), - [aux_sym_expr_binary_token10] = ACTIONS(1538), - [aux_sym_expr_binary_token11] = ACTIONS(1538), - [aux_sym_expr_binary_token12] = ACTIONS(1538), - [aux_sym_expr_binary_token13] = ACTIONS(1538), - [aux_sym_expr_binary_token14] = ACTIONS(1538), - [aux_sym_expr_binary_token15] = ACTIONS(1538), - [aux_sym_expr_binary_token16] = ACTIONS(1538), - [aux_sym_expr_binary_token17] = ACTIONS(1538), - [aux_sym_expr_binary_token18] = ACTIONS(1538), - [aux_sym_expr_binary_token19] = ACTIONS(1538), - [aux_sym_expr_binary_token20] = ACTIONS(1538), - [aux_sym_expr_binary_token21] = ACTIONS(1538), - [aux_sym_expr_binary_token22] = ACTIONS(1538), - [aux_sym_expr_binary_token23] = ACTIONS(1538), - [aux_sym_expr_binary_token24] = ACTIONS(1538), - [aux_sym_expr_binary_token25] = ACTIONS(1538), - [aux_sym_expr_binary_token26] = ACTIONS(1538), - [aux_sym_expr_binary_token27] = ACTIONS(1538), - [aux_sym_expr_binary_token28] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), - [aux_sym__immediate_decimal_token2] = ACTIONS(4905), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1536), - [anon_sym_out_GT] = ACTIONS(1536), - [anon_sym_e_GT] = ACTIONS(1536), - [anon_sym_o_GT] = ACTIONS(1536), - [anon_sym_err_PLUSout_GT] = ACTIONS(1536), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), - [anon_sym_o_PLUSe_GT] = ACTIONS(1536), - [anon_sym_e_PLUSo_GT] = ACTIONS(1536), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1978), + [sym__newline] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_err_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_GT_PIPE] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_DASH2] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_DOT_DOT] = ACTIONS(1976), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1978), + [anon_sym_DOT_DOT_LT] = ACTIONS(1978), + [anon_sym_null] = ACTIONS(1978), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1978), + [aux_sym__val_number_decimal_token4] = ACTIONS(1978), + [aux_sym__val_number_token1] = ACTIONS(1978), + [aux_sym__val_number_token2] = ACTIONS(1978), + [aux_sym__val_number_token3] = ACTIONS(1978), + [aux_sym__val_number_token4] = ACTIONS(1978), + [aux_sym__val_number_token5] = ACTIONS(1978), + [aux_sym__val_number_token6] = ACTIONS(1978), + [anon_sym_0b] = ACTIONS(1976), + [anon_sym_0o] = ACTIONS(1976), + [anon_sym_0x] = ACTIONS(1976), + [sym_val_date] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym__str_single_quotes] = ACTIONS(1978), + [sym__str_back_ticks] = ACTIONS(1978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1978), + [anon_sym_err_GT] = ACTIONS(1976), + [anon_sym_out_GT] = ACTIONS(1976), + [anon_sym_e_GT] = ACTIONS(1976), + [anon_sym_o_GT] = ACTIONS(1976), + [anon_sym_err_PLUSout_GT] = ACTIONS(1976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), + [anon_sym_o_PLUSe_GT] = ACTIONS(1976), + [anon_sym_e_PLUSo_GT] = ACTIONS(1976), + [anon_sym_err_GT_GT] = ACTIONS(1978), + [anon_sym_out_GT_GT] = ACTIONS(1978), + [anon_sym_e_GT_GT] = ACTIONS(1978), + [anon_sym_o_GT_GT] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), + [aux_sym_unquoted_token1] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1978), }, [1554] = { - [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_cell_path] = STATE(1679), + [sym_path] = STATE(1642), [sym_comment] = STATE(1554), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1645), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1735), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1735), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1735), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(4868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(247), }, [1555] = { - [sym__expr_parenthesized_immediate] = STATE(7580), [sym_comment] = STATE(1555), - [anon_sym_true] = ACTIONS(5021), - [anon_sym_false] = ACTIONS(5021), - [anon_sym_null] = ACTIONS(5021), - [aux_sym_cmd_identifier_token38] = ACTIONS(5021), - [aux_sym_cmd_identifier_token39] = ACTIONS(5021), - [aux_sym_cmd_identifier_token40] = ACTIONS(5021), - [sym__newline] = ACTIONS(5021), - [anon_sym_SEMI] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_err_GT_PIPE] = ACTIONS(5021), - [anon_sym_out_GT_PIPE] = ACTIONS(5021), - [anon_sym_e_GT_PIPE] = ACTIONS(5021), - [anon_sym_o_GT_PIPE] = ACTIONS(5021), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5021), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5021), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5021), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5021), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5023), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5021), - [anon_sym_DOT_DOT] = ACTIONS(5023), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5021), - [anon_sym_DOT_DOT_LT] = ACTIONS(5021), - [aux_sym__val_number_decimal_token1] = ACTIONS(5023), - [aux_sym__val_number_decimal_token2] = ACTIONS(5021), - [aux_sym__val_number_decimal_token3] = ACTIONS(5021), - [aux_sym__val_number_decimal_token4] = ACTIONS(5021), - [aux_sym__val_number_token1] = ACTIONS(5021), - [aux_sym__val_number_token2] = ACTIONS(5021), - [aux_sym__val_number_token3] = ACTIONS(5021), - [anon_sym_0b] = ACTIONS(5023), - [anon_sym_0o] = ACTIONS(5023), - [anon_sym_0x] = ACTIONS(5023), - [sym_val_date] = ACTIONS(5021), - [anon_sym_DQUOTE] = ACTIONS(5021), - [sym__str_single_quotes] = ACTIONS(5021), - [sym__str_back_ticks] = ACTIONS(5021), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5021), - [anon_sym_err_GT] = ACTIONS(5023), - [anon_sym_out_GT] = ACTIONS(5023), - [anon_sym_e_GT] = ACTIONS(5023), - [anon_sym_o_GT] = ACTIONS(5023), - [anon_sym_err_PLUSout_GT] = ACTIONS(5023), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5023), - [anon_sym_o_PLUSe_GT] = ACTIONS(5023), - [anon_sym_e_PLUSo_GT] = ACTIONS(5023), - [anon_sym_err_GT_GT] = ACTIONS(5021), - [anon_sym_out_GT_GT] = ACTIONS(5021), - [anon_sym_e_GT_GT] = ACTIONS(5021), - [anon_sym_o_GT_GT] = ACTIONS(5021), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5021), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5021), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5021), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5021), - [aux_sym_unquoted_token1] = ACTIONS(5023), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(5021), + [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_RPAREN] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), }, [1556] = { - [sym__expr_parenthesized_immediate] = STATE(7535), [sym_comment] = STATE(1556), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(1000), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_EQ_GT] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(1000), + [anon_sym_SLASH2] = ACTIONS(998), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [aux_sym_record_entry_token1] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), }, [1557] = { [sym_comment] = STATE(1557), - [ts_builtin_sym_end] = 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), - [sym__newline] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_err_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_GT_PIPE] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_DOT_DOT] = ACTIONS(1062), - [anon_sym_QMARK2] = ACTIONS(1064), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1064), - [anon_sym_DOT_DOT_LT] = ACTIONS(1064), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [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_0b] = ACTIONS(1062), - [anon_sym_0o] = ACTIONS(1062), - [anon_sym_0x] = ACTIONS(1062), - [sym_val_date] = ACTIONS(1064), - [anon_sym_DQUOTE] = ACTIONS(1064), - [sym__str_single_quotes] = ACTIONS(1064), - [sym__str_back_ticks] = ACTIONS(1064), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1064), - [anon_sym_err_GT] = ACTIONS(1062), - [anon_sym_out_GT] = ACTIONS(1062), - [anon_sym_e_GT] = ACTIONS(1062), - [anon_sym_o_GT] = ACTIONS(1062), - [anon_sym_err_PLUSout_GT] = ACTIONS(1062), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), - [anon_sym_o_PLUSe_GT] = ACTIONS(1062), - [anon_sym_e_PLUSo_GT] = ACTIONS(1062), - [anon_sym_err_GT_GT] = ACTIONS(1064), - [anon_sym_out_GT_GT] = ACTIONS(1064), - [anon_sym_e_GT_GT] = ACTIONS(1064), - [anon_sym_o_GT_GT] = ACTIONS(1064), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), - [aux_sym_unquoted_token1] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1064), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(4882), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [aux_sym_unquoted_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, [1558] = { [sym_comment] = STATE(1558), - [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] = 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(249), - [sym_raw_string_begin] = ACTIONS(1040), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_EQ_GT] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [aux_sym_record_entry_token1] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), }, [1559] = { + [sym_cell_path] = STATE(1915), + [sym_path] = STATE(1774), [sym_comment] = STATE(1559), - [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_QMARK2] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), - [anon_sym_DOT_DOT_LT] = 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(249), - [sym_raw_string_begin] = ACTIONS(1056), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(1927), + [sym__newline] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1927), + [anon_sym_err_GT_PIPE] = ACTIONS(1927), + [anon_sym_out_GT_PIPE] = ACTIONS(1927), + [anon_sym_e_GT_PIPE] = ACTIONS(1927), + [anon_sym_o_GT_PIPE] = ACTIONS(1927), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1925), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_DASH2] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), + [anon_sym_DOT_DOT_LT] = ACTIONS(1927), + [anon_sym_null] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(1927), + [anon_sym_false] = ACTIONS(1927), + [aux_sym__val_number_decimal_token1] = ACTIONS(1925), + [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), + [aux_sym__val_number_token4] = ACTIONS(1927), + [aux_sym__val_number_token5] = ACTIONS(1927), + [aux_sym__val_number_token6] = ACTIONS(1927), + [anon_sym_0b] = ACTIONS(1925), + [anon_sym_0o] = ACTIONS(1925), + [anon_sym_0x] = ACTIONS(1925), + [sym_val_date] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [sym__str_single_quotes] = ACTIONS(1927), + [sym__str_back_ticks] = ACTIONS(1927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), + [anon_sym_err_GT] = ACTIONS(1925), + [anon_sym_out_GT] = ACTIONS(1925), + [anon_sym_e_GT] = ACTIONS(1925), + [anon_sym_o_GT] = ACTIONS(1925), + [anon_sym_err_PLUSout_GT] = ACTIONS(1925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), + [anon_sym_o_PLUSe_GT] = ACTIONS(1925), + [anon_sym_e_PLUSo_GT] = ACTIONS(1925), + [anon_sym_err_GT_GT] = ACTIONS(1927), + [anon_sym_out_GT_GT] = ACTIONS(1927), + [anon_sym_e_GT_GT] = ACTIONS(1927), + [anon_sym_o_GT_GT] = ACTIONS(1927), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), + [aux_sym_unquoted_token1] = ACTIONS(1925), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1927), }, [1560] = { - [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1560), - [ts_builtin_sym_end] = ACTIONS(4848), - [anon_sym_true] = ACTIONS(4848), - [anon_sym_false] = ACTIONS(4848), - [anon_sym_null] = ACTIONS(4848), - [aux_sym_cmd_identifier_token38] = ACTIONS(4848), - [aux_sym_cmd_identifier_token39] = ACTIONS(4848), - [aux_sym_cmd_identifier_token40] = ACTIONS(4848), - [sym__newline] = ACTIONS(4848), - [anon_sym_SEMI] = ACTIONS(4848), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_err_GT_PIPE] = ACTIONS(4848), - [anon_sym_out_GT_PIPE] = ACTIONS(4848), - [anon_sym_e_GT_PIPE] = ACTIONS(4848), - [anon_sym_o_GT_PIPE] = ACTIONS(4848), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4848), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4848), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4848), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4848), - [anon_sym_LBRACK] = ACTIONS(4848), - [anon_sym_LPAREN] = ACTIONS(4850), - [anon_sym_DOLLAR] = ACTIONS(4850), - [anon_sym_DASH_DASH] = ACTIONS(4848), - [anon_sym_DASH] = ACTIONS(4850), - [anon_sym_LBRACE] = ACTIONS(4848), - [anon_sym_DOT_DOT] = ACTIONS(4850), - [anon_sym_LPAREN2] = ACTIONS(4433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4848), - [anon_sym_DOT_DOT_LT] = ACTIONS(4848), - [aux_sym__val_number_decimal_token1] = ACTIONS(4850), - [aux_sym__val_number_decimal_token2] = ACTIONS(4848), - [aux_sym__val_number_decimal_token3] = ACTIONS(4848), - [aux_sym__val_number_decimal_token4] = ACTIONS(4848), - [aux_sym__val_number_token1] = ACTIONS(4848), - [aux_sym__val_number_token2] = ACTIONS(4848), - [aux_sym__val_number_token3] = ACTIONS(4848), - [anon_sym_0b] = ACTIONS(4850), - [anon_sym_0o] = ACTIONS(4850), - [anon_sym_0x] = ACTIONS(4850), - [sym_val_date] = ACTIONS(4848), - [anon_sym_DQUOTE] = ACTIONS(4848), - [sym__str_single_quotes] = ACTIONS(4848), - [sym__str_back_ticks] = ACTIONS(4848), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4848), - [anon_sym_err_GT] = ACTIONS(4850), - [anon_sym_out_GT] = ACTIONS(4850), - [anon_sym_e_GT] = ACTIONS(4850), - [anon_sym_o_GT] = ACTIONS(4850), - [anon_sym_err_PLUSout_GT] = ACTIONS(4850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4850), - [anon_sym_o_PLUSe_GT] = ACTIONS(4850), - [anon_sym_e_PLUSo_GT] = ACTIONS(4850), - [anon_sym_err_GT_GT] = ACTIONS(4848), - [anon_sym_out_GT_GT] = ACTIONS(4848), - [anon_sym_e_GT_GT] = ACTIONS(4848), - [anon_sym_o_GT_GT] = ACTIONS(4848), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4848), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4848), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4848), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4848), - [aux_sym_unquoted_token1] = ACTIONS(4850), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(4848), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4886), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_RPAREN] = ACTIONS(1032), + [anon_sym_GT2] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1032), + [anon_sym_STAR2] = ACTIONS(1030), + [anon_sym_and2] = ACTIONS(1032), + [anon_sym_xor2] = ACTIONS(1032), + [anon_sym_or2] = ACTIONS(1032), + [anon_sym_not_DASHin2] = ACTIONS(1032), + [anon_sym_starts_DASHwith2] = ACTIONS(1032), + [anon_sym_ends_DASHwith2] = ACTIONS(1032), + [anon_sym_EQ_EQ2] = ACTIONS(1032), + [anon_sym_BANG_EQ2] = ACTIONS(1032), + [anon_sym_LT2] = ACTIONS(1030), + [anon_sym_LT_EQ2] = ACTIONS(1032), + [anon_sym_GT_EQ2] = ACTIONS(1032), + [anon_sym_EQ_TILDE2] = ACTIONS(1032), + [anon_sym_BANG_TILDE2] = ACTIONS(1032), + [anon_sym_STAR_STAR2] = ACTIONS(1032), + [anon_sym_PLUS_PLUS2] = ACTIONS(1030), + [anon_sym_SLASH2] = ACTIONS(1030), + [anon_sym_mod2] = ACTIONS(1032), + [anon_sym_SLASH_SLASH2] = ACTIONS(1032), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_bit_DASHshl2] = ACTIONS(1032), + [anon_sym_bit_DASHshr2] = ACTIONS(1032), + [anon_sym_bit_DASHand2] = ACTIONS(1032), + [anon_sym_bit_DASHxor2] = ACTIONS(1032), + [anon_sym_bit_DASHor2] = ACTIONS(1032), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [anon_sym_err_GT_GT] = ACTIONS(1032), + [anon_sym_out_GT_GT] = ACTIONS(1032), + [anon_sym_e_GT_GT] = ACTIONS(1032), + [anon_sym_o_GT_GT] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(247), }, [1561] = { - [sym__expression] = STATE(5684), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3895), - [sym_expr_parenthesized] = STATE(3543), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(3542), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3503), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym__flag] = STATE(2017), - [sym_short_flag] = STATE(3610), - [sym_long_flag] = STATE(3610), + [sym_cell_path] = STATE(1688), + [sym_path] = STATE(1642), [sym_comment] = STATE(1561), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3280), - [aux_sym_cmd_identifier_token38] = ACTIONS(227), - [aux_sym_cmd_identifier_token39] = ACTIONS(227), - [aux_sym_cmd_identifier_token40] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), - [anon_sym_DOT_DOT_LT] = ACTIONS(4983), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1645), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(963), + [anon_sym_in2] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_STAR2] = ACTIONS(961), + [anon_sym_and2] = ACTIONS(963), + [anon_sym_xor2] = ACTIONS(963), + [anon_sym_or2] = ACTIONS(963), + [anon_sym_not_DASHin2] = ACTIONS(963), + [anon_sym_starts_DASHwith2] = ACTIONS(963), + [anon_sym_ends_DASHwith2] = ACTIONS(963), + [anon_sym_EQ_EQ2] = ACTIONS(963), + [anon_sym_BANG_EQ2] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_LT_EQ2] = ACTIONS(963), + [anon_sym_GT_EQ2] = ACTIONS(963), + [anon_sym_EQ_TILDE2] = ACTIONS(963), + [anon_sym_BANG_TILDE2] = ACTIONS(963), + [anon_sym_STAR_STAR2] = ACTIONS(963), + [anon_sym_PLUS_PLUS2] = ACTIONS(963), + [anon_sym_SLASH2] = ACTIONS(961), + [anon_sym_mod2] = ACTIONS(963), + [anon_sym_SLASH_SLASH2] = ACTIONS(963), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_bit_DASHshl2] = ACTIONS(963), + [anon_sym_bit_DASHshr2] = ACTIONS(963), + [anon_sym_bit_DASHand2] = ACTIONS(963), + [anon_sym_bit_DASHxor2] = ACTIONS(963), + [anon_sym_bit_DASHor2] = ACTIONS(963), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), }, [1562] = { + [sym_cell_path] = STATE(1947), + [sym_path] = STATE(1774), [sym_comment] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(1598), - [aux_sym_cmd_identifier_token41] = ACTIONS(1596), - [sym__newline] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_err_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_GT_PIPE] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), - [aux_sym_expr_binary_token1] = ACTIONS(1598), - [aux_sym_expr_binary_token2] = ACTIONS(1598), - [aux_sym_expr_binary_token3] = ACTIONS(1598), - [aux_sym_expr_binary_token4] = ACTIONS(1598), - [aux_sym_expr_binary_token5] = ACTIONS(1598), - [aux_sym_expr_binary_token6] = ACTIONS(1598), - [aux_sym_expr_binary_token7] = ACTIONS(1598), - [aux_sym_expr_binary_token8] = ACTIONS(1598), - [aux_sym_expr_binary_token9] = ACTIONS(1598), - [aux_sym_expr_binary_token10] = ACTIONS(1598), - [aux_sym_expr_binary_token11] = ACTIONS(1598), - [aux_sym_expr_binary_token12] = ACTIONS(1598), - [aux_sym_expr_binary_token13] = ACTIONS(1598), - [aux_sym_expr_binary_token14] = ACTIONS(1598), - [aux_sym_expr_binary_token15] = ACTIONS(1598), - [aux_sym_expr_binary_token16] = ACTIONS(1598), - [aux_sym_expr_binary_token17] = ACTIONS(1598), - [aux_sym_expr_binary_token18] = ACTIONS(1598), - [aux_sym_expr_binary_token19] = ACTIONS(1598), - [aux_sym_expr_binary_token20] = ACTIONS(1598), - [aux_sym_expr_binary_token21] = ACTIONS(1598), - [aux_sym_expr_binary_token22] = ACTIONS(1598), - [aux_sym_expr_binary_token23] = ACTIONS(1598), - [aux_sym_expr_binary_token24] = ACTIONS(1598), - [aux_sym_expr_binary_token25] = ACTIONS(1598), - [aux_sym_expr_binary_token26] = ACTIONS(1598), - [aux_sym_expr_binary_token27] = ACTIONS(1598), - [aux_sym_expr_binary_token28] = ACTIONS(1598), - [anon_sym_DOT_DOT2] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), - [aux_sym__immediate_decimal_token2] = ACTIONS(5025), - [sym_filesize_unit] = ACTIONS(1598), - [sym_duration_unit] = ACTIONS(1598), - [anon_sym_err_GT] = ACTIONS(1596), - [anon_sym_out_GT] = ACTIONS(1596), - [anon_sym_e_GT] = ACTIONS(1596), - [anon_sym_o_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT] = ACTIONS(1596), - [anon_sym_err_GT_GT] = ACTIONS(1598), - [anon_sym_out_GT_GT] = ACTIONS(1598), - [anon_sym_e_GT_GT] = ACTIONS(1598), - [anon_sym_o_GT_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(2096), + [sym__newline] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_err_GT_PIPE] = ACTIONS(2096), + [anon_sym_out_GT_PIPE] = ACTIONS(2096), + [anon_sym_e_GT_PIPE] = ACTIONS(2096), + [anon_sym_o_GT_PIPE] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_DOLLAR] = ACTIONS(2094), + [anon_sym_DASH_DASH] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_DOT_DOT] = ACTIONS(2094), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2096), + [anon_sym_DOT_DOT_LT] = ACTIONS(2096), + [anon_sym_null] = ACTIONS(2096), + [anon_sym_true] = ACTIONS(2096), + [anon_sym_false] = ACTIONS(2096), + [aux_sym__val_number_decimal_token1] = ACTIONS(2094), + [aux_sym__val_number_decimal_token2] = ACTIONS(2096), + [aux_sym__val_number_decimal_token3] = ACTIONS(2096), + [aux_sym__val_number_decimal_token4] = ACTIONS(2096), + [aux_sym__val_number_token1] = ACTIONS(2096), + [aux_sym__val_number_token2] = ACTIONS(2096), + [aux_sym__val_number_token3] = ACTIONS(2096), + [aux_sym__val_number_token4] = ACTIONS(2096), + [aux_sym__val_number_token5] = ACTIONS(2096), + [aux_sym__val_number_token6] = ACTIONS(2096), + [anon_sym_0b] = ACTIONS(2094), + [anon_sym_0o] = ACTIONS(2094), + [anon_sym_0x] = ACTIONS(2094), + [sym_val_date] = ACTIONS(2096), + [anon_sym_DQUOTE] = ACTIONS(2096), + [sym__str_single_quotes] = ACTIONS(2096), + [sym__str_back_ticks] = ACTIONS(2096), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2096), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2096), + [anon_sym_err_GT] = ACTIONS(2094), + [anon_sym_out_GT] = ACTIONS(2094), + [anon_sym_e_GT] = ACTIONS(2094), + [anon_sym_o_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT] = ACTIONS(2094), + [anon_sym_err_GT_GT] = ACTIONS(2096), + [anon_sym_out_GT_GT] = ACTIONS(2096), + [anon_sym_e_GT_GT] = ACTIONS(2096), + [anon_sym_o_GT_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), + [aux_sym_unquoted_token1] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2096), }, [1563] = { - [sym__expression] = STATE(5738), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3895), - [sym_expr_parenthesized] = STATE(3543), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(3542), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3503), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym__flag] = STATE(2041), - [sym_short_flag] = STATE(3610), - [sym_long_flag] = STATE(3610), [sym_comment] = STATE(1563), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3280), - [aux_sym_cmd_identifier_token38] = ACTIONS(227), - [aux_sym_cmd_identifier_token39] = ACTIONS(227), - [aux_sym_cmd_identifier_token40] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), - [anon_sym_DOT_DOT_LT] = ACTIONS(4983), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_in2] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1675), + [anon_sym_xor2] = ACTIONS(1675), + [anon_sym_or2] = ACTIONS(1675), + [anon_sym_not_DASHin2] = ACTIONS(1675), + [anon_sym_starts_DASHwith2] = ACTIONS(1675), + [anon_sym_ends_DASHwith2] = ACTIONS(1675), + [anon_sym_EQ_EQ2] = ACTIONS(1675), + [anon_sym_BANG_EQ2] = ACTIONS(1675), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1675), + [anon_sym_GT_EQ2] = ACTIONS(1675), + [anon_sym_EQ_TILDE2] = ACTIONS(1675), + [anon_sym_BANG_TILDE2] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_STAR_STAR2] = ACTIONS(1675), + [anon_sym_PLUS_PLUS2] = ACTIONS(1675), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1675), + [anon_sym_SLASH_SLASH2] = ACTIONS(1675), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1675), + [anon_sym_bit_DASHshr2] = ACTIONS(1675), + [anon_sym_bit_DASHand2] = ACTIONS(1675), + [anon_sym_bit_DASHxor2] = ACTIONS(1675), + [anon_sym_bit_DASHor2] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), }, [1564] = { - [sym__expression] = STATE(5740), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3895), - [sym_expr_parenthesized] = STATE(3543), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(3542), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3503), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym__flag] = STATE(2043), - [sym_short_flag] = STATE(3610), - [sym_long_flag] = STATE(3610), [sym_comment] = STATE(1564), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3280), - [aux_sym_cmd_identifier_token38] = ACTIONS(227), - [aux_sym_cmd_identifier_token39] = ACTIONS(227), - [aux_sym_cmd_identifier_token40] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), - [anon_sym_DOT_DOT_LT] = ACTIONS(4983), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_GT2] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(992), + [anon_sym_in2] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_EQ_GT] = ACTIONS(992), + [anon_sym_STAR2] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_and2] = ACTIONS(992), + [anon_sym_xor2] = ACTIONS(992), + [anon_sym_or2] = ACTIONS(992), + [anon_sym_not_DASHin2] = ACTIONS(992), + [anon_sym_starts_DASHwith2] = ACTIONS(992), + [anon_sym_ends_DASHwith2] = ACTIONS(992), + [anon_sym_EQ_EQ2] = ACTIONS(992), + [anon_sym_BANG_EQ2] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(990), + [anon_sym_LT_EQ2] = ACTIONS(992), + [anon_sym_GT_EQ2] = ACTIONS(992), + [anon_sym_EQ_TILDE2] = ACTIONS(992), + [anon_sym_BANG_TILDE2] = ACTIONS(992), + [anon_sym_STAR_STAR2] = ACTIONS(992), + [anon_sym_PLUS_PLUS2] = ACTIONS(992), + [anon_sym_SLASH2] = ACTIONS(990), + [anon_sym_mod2] = ACTIONS(992), + [anon_sym_SLASH_SLASH2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_bit_DASHshl2] = ACTIONS(992), + [anon_sym_bit_DASHshr2] = ACTIONS(992), + [anon_sym_bit_DASHand2] = ACTIONS(992), + [anon_sym_bit_DASHxor2] = ACTIONS(992), + [anon_sym_bit_DASHor2] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [aux_sym_record_entry_token1] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), }, [1565] = { - [sym__expr_parenthesized_immediate] = STATE(7535), [sym_comment] = STATE(1565), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4890), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_RPAREN] = ACTIONS(1032), + [anon_sym_GT2] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1032), + [anon_sym_STAR2] = ACTIONS(1030), + [anon_sym_and2] = ACTIONS(1032), + [anon_sym_xor2] = ACTIONS(1032), + [anon_sym_or2] = ACTIONS(1032), + [anon_sym_not_DASHin2] = ACTIONS(1032), + [anon_sym_starts_DASHwith2] = ACTIONS(1032), + [anon_sym_ends_DASHwith2] = ACTIONS(1032), + [anon_sym_EQ_EQ2] = ACTIONS(1032), + [anon_sym_BANG_EQ2] = ACTIONS(1032), + [anon_sym_LT2] = ACTIONS(1030), + [anon_sym_LT_EQ2] = ACTIONS(1032), + [anon_sym_GT_EQ2] = ACTIONS(1032), + [anon_sym_EQ_TILDE2] = ACTIONS(1032), + [anon_sym_BANG_TILDE2] = ACTIONS(1032), + [anon_sym_STAR_STAR2] = ACTIONS(1032), + [anon_sym_PLUS_PLUS2] = ACTIONS(1030), + [anon_sym_SLASH2] = ACTIONS(1030), + [anon_sym_mod2] = ACTIONS(1032), + [anon_sym_SLASH_SLASH2] = ACTIONS(1032), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_bit_DASHshl2] = ACTIONS(1032), + [anon_sym_bit_DASHshr2] = ACTIONS(1032), + [anon_sym_bit_DASHand2] = ACTIONS(1032), + [anon_sym_bit_DASHxor2] = ACTIONS(1032), + [anon_sym_bit_DASHor2] = ACTIONS(1032), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [anon_sym_err_GT_GT] = ACTIONS(1032), + [anon_sym_out_GT_GT] = ACTIONS(1032), + [anon_sym_e_GT_GT] = ACTIONS(1032), + [anon_sym_o_GT_GT] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(247), }, [1566] = { - [sym__expression] = STATE(5642), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3895), - [sym_expr_parenthesized] = STATE(3543), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(3542), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3503), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym__flag] = STATE(2052), - [sym_short_flag] = STATE(3610), - [sym_long_flag] = STATE(3610), [sym_comment] = STATE(1566), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3280), - [aux_sym_cmd_identifier_token38] = ACTIONS(227), - [aux_sym_cmd_identifier_token39] = ACTIONS(227), - [aux_sym_cmd_identifier_token40] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [aux_sym_expr_unary_token1] = ACTIONS(3412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), - [anon_sym_DOT_DOT_LT] = ACTIONS(4983), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), + [sym__newline] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_err_GT_PIPE] = ACTIONS(1765), + [anon_sym_out_GT_PIPE] = ACTIONS(1765), + [anon_sym_e_GT_PIPE] = ACTIONS(1765), + [anon_sym_o_GT_PIPE] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1765), + [anon_sym_xor2] = ACTIONS(1765), + [anon_sym_or2] = ACTIONS(1765), + [anon_sym_not_DASHin2] = ACTIONS(1765), + [anon_sym_starts_DASHwith2] = ACTIONS(1765), + [anon_sym_ends_DASHwith2] = ACTIONS(1765), + [anon_sym_EQ_EQ2] = ACTIONS(1765), + [anon_sym_BANG_EQ2] = ACTIONS(1765), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1765), + [anon_sym_GT_EQ2] = ACTIONS(1765), + [anon_sym_EQ_TILDE2] = ACTIONS(1765), + [anon_sym_BANG_TILDE2] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1765), + [anon_sym_STAR_STAR2] = ACTIONS(1765), + [anon_sym_PLUS_PLUS2] = ACTIONS(1765), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1765), + [anon_sym_SLASH_SLASH2] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1765), + [anon_sym_bit_DASHshr2] = ACTIONS(1765), + [anon_sym_bit_DASHand2] = ACTIONS(1765), + [anon_sym_bit_DASHxor2] = ACTIONS(1765), + [anon_sym_bit_DASHor2] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_err_GT] = ACTIONS(1763), + [anon_sym_out_GT] = ACTIONS(1763), + [anon_sym_e_GT] = ACTIONS(1763), + [anon_sym_o_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT] = ACTIONS(1763), + [anon_sym_err_GT_GT] = ACTIONS(1765), + [anon_sym_out_GT_GT] = ACTIONS(1765), + [anon_sym_e_GT_GT] = ACTIONS(1765), + [anon_sym_o_GT_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(247), }, [1567] = { - [sym__expr_parenthesized_immediate] = STATE(7535), [sym_comment] = STATE(1567), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_err_GT_PIPE] = ACTIONS(2127), + [anon_sym_out_GT_PIPE] = ACTIONS(2127), + [anon_sym_e_GT_PIPE] = ACTIONS(2127), + [anon_sym_o_GT_PIPE] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_DASH2] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_DOT_DOT2] = ACTIONS(2125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2125), + [anon_sym_DOT_DOT_LT] = ACTIONS(2125), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2127), + [anon_sym_null] = ACTIONS(2127), + [anon_sym_true] = ACTIONS(2127), + [anon_sym_false] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2125), + [aux_sym__val_number_decimal_token2] = ACTIONS(2127), + [aux_sym__val_number_decimal_token3] = ACTIONS(2127), + [aux_sym__val_number_decimal_token4] = ACTIONS(2127), + [aux_sym__val_number_token1] = ACTIONS(2127), + [aux_sym__val_number_token2] = ACTIONS(2127), + [aux_sym__val_number_token3] = ACTIONS(2127), + [aux_sym__val_number_token4] = ACTIONS(2127), + [aux_sym__val_number_token5] = ACTIONS(2127), + [aux_sym__val_number_token6] = ACTIONS(2127), + [anon_sym_0b] = ACTIONS(2125), + [anon_sym_0o] = ACTIONS(2125), + [anon_sym_0x] = ACTIONS(2125), + [sym_val_date] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [sym__str_single_quotes] = ACTIONS(2127), + [sym__str_back_ticks] = ACTIONS(2127), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2127), + [anon_sym_err_GT] = ACTIONS(2125), + [anon_sym_out_GT] = ACTIONS(2125), + [anon_sym_e_GT] = ACTIONS(2125), + [anon_sym_o_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT] = ACTIONS(2125), + [anon_sym_err_GT_GT] = ACTIONS(2127), + [anon_sym_out_GT_GT] = ACTIONS(2127), + [anon_sym_e_GT_GT] = ACTIONS(2127), + [anon_sym_o_GT_GT] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2127), + [aux_sym_unquoted_token1] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2127), }, [1568] = { - [sym__expr_parenthesized_immediate] = STATE(7535), [sym_comment] = STATE(1568), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_err_GT_PIPE] = ACTIONS(2185), + [anon_sym_out_GT_PIPE] = ACTIONS(2185), + [anon_sym_e_GT_PIPE] = ACTIONS(2185), + [anon_sym_o_GT_PIPE] = ACTIONS(2185), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2185), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2185), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2185), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_DASH2] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_DOT_DOT2] = ACTIONS(2183), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2183), + [anon_sym_DOT_DOT_LT] = ACTIONS(2183), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2185), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2185), + [anon_sym_null] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [aux_sym__val_number_decimal_token1] = ACTIONS(2183), + [aux_sym__val_number_decimal_token2] = ACTIONS(2185), + [aux_sym__val_number_decimal_token3] = ACTIONS(2185), + [aux_sym__val_number_decimal_token4] = ACTIONS(2185), + [aux_sym__val_number_token1] = ACTIONS(2185), + [aux_sym__val_number_token2] = ACTIONS(2185), + [aux_sym__val_number_token3] = ACTIONS(2185), + [aux_sym__val_number_token4] = ACTIONS(2185), + [aux_sym__val_number_token5] = ACTIONS(2185), + [aux_sym__val_number_token6] = ACTIONS(2185), + [anon_sym_0b] = ACTIONS(2183), + [anon_sym_0o] = ACTIONS(2183), + [anon_sym_0x] = ACTIONS(2183), + [sym_val_date] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [sym__str_single_quotes] = ACTIONS(2185), + [sym__str_back_ticks] = ACTIONS(2185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2185), + [anon_sym_err_GT] = ACTIONS(2183), + [anon_sym_out_GT] = ACTIONS(2183), + [anon_sym_e_GT] = ACTIONS(2183), + [anon_sym_o_GT] = ACTIONS(2183), + [anon_sym_err_PLUSout_GT] = ACTIONS(2183), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2183), + [anon_sym_o_PLUSe_GT] = ACTIONS(2183), + [anon_sym_e_PLUSo_GT] = ACTIONS(2183), + [anon_sym_err_GT_GT] = ACTIONS(2185), + [anon_sym_out_GT_GT] = ACTIONS(2185), + [anon_sym_e_GT_GT] = ACTIONS(2185), + [anon_sym_o_GT_GT] = ACTIONS(2185), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2185), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2185), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2185), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2185), + [aux_sym_unquoted_token1] = ACTIONS(2183), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2185), }, [1569] = { [sym_comment] = STATE(1569), - [aux_sym_cmd_identifier_token41] = ACTIONS(5027), - [sym__newline] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_err_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_GT_PIPE] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [aux_sym_expr_binary_token1] = ACTIONS(1640), - [aux_sym_expr_binary_token2] = ACTIONS(1640), - [aux_sym_expr_binary_token3] = ACTIONS(1640), - [aux_sym_expr_binary_token4] = ACTIONS(1640), - [aux_sym_expr_binary_token5] = ACTIONS(1640), - [aux_sym_expr_binary_token6] = ACTIONS(1640), - [aux_sym_expr_binary_token7] = ACTIONS(1640), - [aux_sym_expr_binary_token8] = ACTIONS(1640), - [aux_sym_expr_binary_token9] = ACTIONS(1640), - [aux_sym_expr_binary_token10] = ACTIONS(1640), - [aux_sym_expr_binary_token11] = ACTIONS(1640), - [aux_sym_expr_binary_token12] = ACTIONS(1640), - [aux_sym_expr_binary_token13] = ACTIONS(1640), - [aux_sym_expr_binary_token14] = ACTIONS(1640), - [aux_sym_expr_binary_token15] = ACTIONS(1640), - [aux_sym_expr_binary_token16] = ACTIONS(1640), - [aux_sym_expr_binary_token17] = ACTIONS(1640), - [aux_sym_expr_binary_token18] = ACTIONS(1640), - [aux_sym_expr_binary_token19] = ACTIONS(1640), - [aux_sym_expr_binary_token20] = ACTIONS(1640), - [aux_sym_expr_binary_token21] = ACTIONS(1640), - [aux_sym_expr_binary_token22] = ACTIONS(1640), - [aux_sym_expr_binary_token23] = ACTIONS(1640), - [aux_sym_expr_binary_token24] = ACTIONS(1640), - [aux_sym_expr_binary_token25] = ACTIONS(1640), - [aux_sym_expr_binary_token26] = ACTIONS(1640), - [aux_sym_expr_binary_token27] = ACTIONS(1640), - [aux_sym_expr_binary_token28] = ACTIONS(1640), - [anon_sym_DOT_DOT2] = ACTIONS(5029), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5031), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5031), - [sym_filesize_unit] = ACTIONS(5033), - [sym_duration_unit] = ACTIONS(5035), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [anon_sym_err_GT_GT] = ACTIONS(1640), - [anon_sym_out_GT_GT] = ACTIONS(1640), - [anon_sym_e_GT_GT] = ACTIONS(1640), - [anon_sym_o_GT_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_GT2] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_EQ_GT] = ACTIONS(980), + [anon_sym_STAR2] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(4892), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_starts_DASHwith2] = ACTIONS(980), + [anon_sym_ends_DASHwith2] = ACTIONS(980), + [anon_sym_EQ_EQ2] = ACTIONS(980), + [anon_sym_BANG_EQ2] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(978), + [anon_sym_LT_EQ2] = ACTIONS(980), + [anon_sym_GT_EQ2] = ACTIONS(980), + [anon_sym_EQ_TILDE2] = ACTIONS(980), + [anon_sym_BANG_TILDE2] = ACTIONS(980), + [anon_sym_STAR_STAR2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(980), + [anon_sym_SLASH2] = ACTIONS(978), + [anon_sym_mod2] = ACTIONS(980), + [anon_sym_SLASH_SLASH2] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_bit_DASHshl2] = ACTIONS(980), + [anon_sym_bit_DASHshr2] = ACTIONS(980), + [anon_sym_bit_DASHand2] = ACTIONS(980), + [anon_sym_bit_DASHxor2] = ACTIONS(980), + [anon_sym_bit_DASHor2] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), }, [1570] = { - [sym__expr_parenthesized_immediate] = STATE(7535), [sym_comment] = STATE(1570), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1571] = { - [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1571), - [sym__newline] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4844), - [anon_sym_PIPE] = ACTIONS(4844), - [anon_sym_err_GT_PIPE] = ACTIONS(4844), - [anon_sym_out_GT_PIPE] = ACTIONS(4844), - [anon_sym_e_GT_PIPE] = ACTIONS(4844), - [anon_sym_o_GT_PIPE] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4844), - [anon_sym_RPAREN] = ACTIONS(4844), - [anon_sym_DASH_DASH] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4846), - [anon_sym_LBRACE] = ACTIONS(4844), - [anon_sym_RBRACE] = ACTIONS(4844), - [anon_sym_EQ_GT] = ACTIONS(4844), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(4844), - [aux_sym_expr_binary_token2] = ACTIONS(4844), - [aux_sym_expr_binary_token3] = ACTIONS(4844), - [aux_sym_expr_binary_token4] = ACTIONS(4844), - [aux_sym_expr_binary_token5] = ACTIONS(4844), - [aux_sym_expr_binary_token6] = ACTIONS(4844), - [aux_sym_expr_binary_token7] = ACTIONS(4844), - [aux_sym_expr_binary_token8] = ACTIONS(4844), - [aux_sym_expr_binary_token9] = ACTIONS(4844), - [aux_sym_expr_binary_token10] = ACTIONS(4844), - [aux_sym_expr_binary_token11] = ACTIONS(4844), - [aux_sym_expr_binary_token12] = ACTIONS(4844), - [aux_sym_expr_binary_token13] = ACTIONS(4844), - [aux_sym_expr_binary_token14] = ACTIONS(4844), - [aux_sym_expr_binary_token15] = ACTIONS(4844), - [aux_sym_expr_binary_token16] = ACTIONS(4844), - [aux_sym_expr_binary_token17] = ACTIONS(4844), - [aux_sym_expr_binary_token18] = ACTIONS(4844), - [aux_sym_expr_binary_token19] = ACTIONS(4844), - [aux_sym_expr_binary_token20] = ACTIONS(4844), - [aux_sym_expr_binary_token21] = ACTIONS(4844), - [aux_sym_expr_binary_token22] = ACTIONS(4844), - [aux_sym_expr_binary_token23] = ACTIONS(4844), - [aux_sym_expr_binary_token24] = ACTIONS(4844), - [aux_sym_expr_binary_token25] = ACTIONS(4844), - [aux_sym_expr_binary_token26] = ACTIONS(4844), - [aux_sym_expr_binary_token27] = ACTIONS(4844), - [aux_sym_expr_binary_token28] = ACTIONS(4844), - [anon_sym_err_GT] = ACTIONS(4846), - [anon_sym_out_GT] = ACTIONS(4846), - [anon_sym_e_GT] = ACTIONS(4846), - [anon_sym_o_GT] = ACTIONS(4846), - [anon_sym_err_PLUSout_GT] = ACTIONS(4846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4846), - [anon_sym_o_PLUSe_GT] = ACTIONS(4846), - [anon_sym_e_PLUSo_GT] = ACTIONS(4846), - [anon_sym_err_GT_GT] = ACTIONS(4844), - [anon_sym_out_GT_GT] = ACTIONS(4844), - [anon_sym_e_GT_GT] = ACTIONS(4844), - [anon_sym_o_GT_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4844), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [aux_sym_unquoted_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), }, [1572] = { - [sym__expr_parenthesized_immediate] = STATE(7535), [sym_comment] = STATE(1572), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(1757), }, [1573] = { - [sym__expr_parenthesized_immediate] = STATE(7791), + [sym__expr_parenthesized_immediate] = STATE(7384), [sym_comment] = STATE(1573), - [sym__newline] = ACTIONS(4848), - [anon_sym_SEMI] = ACTIONS(4848), - [anon_sym_PIPE] = ACTIONS(4848), - [anon_sym_err_GT_PIPE] = ACTIONS(4848), - [anon_sym_out_GT_PIPE] = ACTIONS(4848), - [anon_sym_e_GT_PIPE] = ACTIONS(4848), - [anon_sym_o_GT_PIPE] = ACTIONS(4848), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4848), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4848), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4848), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4848), - [anon_sym_RPAREN] = ACTIONS(4848), - [anon_sym_DASH_DASH] = ACTIONS(4848), - [anon_sym_DASH] = ACTIONS(4850), - [anon_sym_LBRACE] = ACTIONS(4848), - [anon_sym_RBRACE] = ACTIONS(4848), - [anon_sym_EQ_GT] = ACTIONS(4848), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(4848), - [aux_sym_expr_binary_token2] = ACTIONS(4848), - [aux_sym_expr_binary_token3] = ACTIONS(4848), - [aux_sym_expr_binary_token4] = ACTIONS(4848), - [aux_sym_expr_binary_token5] = ACTIONS(4848), - [aux_sym_expr_binary_token6] = ACTIONS(4848), - [aux_sym_expr_binary_token7] = ACTIONS(4848), - [aux_sym_expr_binary_token8] = ACTIONS(4848), - [aux_sym_expr_binary_token9] = ACTIONS(4848), - [aux_sym_expr_binary_token10] = ACTIONS(4848), - [aux_sym_expr_binary_token11] = ACTIONS(4848), - [aux_sym_expr_binary_token12] = ACTIONS(4848), - [aux_sym_expr_binary_token13] = ACTIONS(4848), - [aux_sym_expr_binary_token14] = ACTIONS(4848), - [aux_sym_expr_binary_token15] = ACTIONS(4848), - [aux_sym_expr_binary_token16] = ACTIONS(4848), - [aux_sym_expr_binary_token17] = ACTIONS(4848), - [aux_sym_expr_binary_token18] = ACTIONS(4848), - [aux_sym_expr_binary_token19] = ACTIONS(4848), - [aux_sym_expr_binary_token20] = ACTIONS(4848), - [aux_sym_expr_binary_token21] = ACTIONS(4848), - [aux_sym_expr_binary_token22] = ACTIONS(4848), - [aux_sym_expr_binary_token23] = ACTIONS(4848), - [aux_sym_expr_binary_token24] = ACTIONS(4848), - [aux_sym_expr_binary_token25] = ACTIONS(4848), - [aux_sym_expr_binary_token26] = ACTIONS(4848), - [aux_sym_expr_binary_token27] = ACTIONS(4848), - [aux_sym_expr_binary_token28] = ACTIONS(4848), - [anon_sym_err_GT] = ACTIONS(4850), - [anon_sym_out_GT] = ACTIONS(4850), - [anon_sym_e_GT] = ACTIONS(4850), - [anon_sym_o_GT] = ACTIONS(4850), - [anon_sym_err_PLUSout_GT] = ACTIONS(4850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4850), - [anon_sym_o_PLUSe_GT] = ACTIONS(4850), - [anon_sym_e_PLUSo_GT] = ACTIONS(4850), - [anon_sym_err_GT_GT] = ACTIONS(4848), - [anon_sym_out_GT_GT] = ACTIONS(4848), - [anon_sym_e_GT_GT] = ACTIONS(4848), - [anon_sym_o_GT_GT] = ACTIONS(4848), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4848), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4848), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4848), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4848), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1721), + [sym__newline] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_err_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_GT_PIPE] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1721), + [anon_sym_in2] = ACTIONS(1721), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1721), + [anon_sym_xor2] = ACTIONS(1721), + [anon_sym_or2] = ACTIONS(1721), + [anon_sym_not_DASHin2] = ACTIONS(1721), + [anon_sym_starts_DASHwith2] = ACTIONS(1721), + [anon_sym_ends_DASHwith2] = ACTIONS(1721), + [anon_sym_EQ_EQ2] = ACTIONS(1721), + [anon_sym_BANG_EQ2] = ACTIONS(1721), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1721), + [anon_sym_GT_EQ2] = ACTIONS(1721), + [anon_sym_EQ_TILDE2] = ACTIONS(1721), + [anon_sym_BANG_TILDE2] = ACTIONS(1721), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_STAR_STAR2] = ACTIONS(1721), + [anon_sym_PLUS_PLUS2] = ACTIONS(1721), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1721), + [anon_sym_SLASH_SLASH2] = ACTIONS(1721), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1721), + [anon_sym_bit_DASHshr2] = ACTIONS(1721), + [anon_sym_bit_DASHand2] = ACTIONS(1721), + [anon_sym_bit_DASHxor2] = ACTIONS(1721), + [anon_sym_bit_DASHor2] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(4856), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4858), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4858), + [sym_filesize_unit] = ACTIONS(4896), + [sym_duration_unit] = ACTIONS(4898), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1721), + [anon_sym_out_GT_GT] = ACTIONS(1721), + [anon_sym_e_GT_GT] = ACTIONS(1721), + [anon_sym_o_GT_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), + [aux_sym_unquoted_token2] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(247), }, [1574] = { - [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_cell_path] = STATE(2012), + [sym_path] = STATE(1894), [sym_comment] = STATE(1574), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_err_GT_PIPE] = ACTIONS(1915), + [anon_sym_out_GT_PIPE] = ACTIONS(1915), + [anon_sym_e_GT_PIPE] = ACTIONS(1915), + [anon_sym_o_GT_PIPE] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), + [anon_sym_RPAREN] = ACTIONS(1915), + [anon_sym_GT2] = ACTIONS(1913), + [anon_sym_DASH2] = ACTIONS(1915), + [anon_sym_in2] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_EQ_GT] = ACTIONS(1915), + [anon_sym_STAR2] = ACTIONS(1913), + [anon_sym_and2] = ACTIONS(1915), + [anon_sym_xor2] = ACTIONS(1915), + [anon_sym_or2] = ACTIONS(1915), + [anon_sym_not_DASHin2] = ACTIONS(1915), + [anon_sym_starts_DASHwith2] = ACTIONS(1915), + [anon_sym_ends_DASHwith2] = ACTIONS(1915), + [anon_sym_EQ_EQ2] = ACTIONS(1915), + [anon_sym_BANG_EQ2] = ACTIONS(1915), + [anon_sym_LT2] = ACTIONS(1913), + [anon_sym_LT_EQ2] = ACTIONS(1915), + [anon_sym_GT_EQ2] = ACTIONS(1915), + [anon_sym_EQ_TILDE2] = ACTIONS(1915), + [anon_sym_BANG_TILDE2] = ACTIONS(1915), + [anon_sym_STAR_STAR2] = ACTIONS(1915), + [anon_sym_PLUS_PLUS2] = ACTIONS(1915), + [anon_sym_SLASH2] = ACTIONS(1913), + [anon_sym_mod2] = ACTIONS(1915), + [anon_sym_SLASH_SLASH2] = ACTIONS(1915), + [anon_sym_PLUS2] = ACTIONS(1913), + [anon_sym_bit_DASHshl2] = ACTIONS(1915), + [anon_sym_bit_DASHshr2] = ACTIONS(1915), + [anon_sym_bit_DASHand2] = ACTIONS(1915), + [anon_sym_bit_DASHxor2] = ACTIONS(1915), + [anon_sym_bit_DASHor2] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1913), + [anon_sym_out_GT] = ACTIONS(1913), + [anon_sym_e_GT] = ACTIONS(1913), + [anon_sym_o_GT] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT] = ACTIONS(1913), + [anon_sym_err_GT_GT] = ACTIONS(1915), + [anon_sym_out_GT_GT] = ACTIONS(1915), + [anon_sym_e_GT_GT] = ACTIONS(1915), + [anon_sym_o_GT_GT] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(247), }, [1575] = { - [sym__expr_parenthesized_immediate] = STATE(7535), [sym_comment] = STATE(1575), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_in2] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_EQ_GT] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1010), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1010), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1010), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(247), }, [1576] = { - [sym__expr_parenthesized_immediate] = STATE(7535), [sym_comment] = STATE(1576), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = 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(2133), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_DASH2] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_DOT_DOT] = ACTIONS(2133), + [anon_sym_DOT_DOT2] = ACTIONS(4904), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2133), + [anon_sym_DOT_DOT_LT] = ACTIONS(2133), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4906), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4906), + [anon_sym_null] = ACTIONS(2139), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [aux_sym__val_number_decimal_token1] = ACTIONS(2133), + [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), + [aux_sym__val_number_token4] = ACTIONS(2139), + [aux_sym__val_number_token5] = ACTIONS(2139), + [aux_sym__val_number_token6] = ACTIONS(2139), + [anon_sym_0b] = ACTIONS(2133), + [anon_sym_0o] = ACTIONS(2133), + [anon_sym_0x] = ACTIONS(2133), + [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(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(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(2133), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2139), }, [1577] = { - [sym__expr_parenthesized_immediate] = STATE(7535), [sym_comment] = STATE(1577), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(2131), + [sym__newline] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_PIPE] = ACTIONS(2131), + [anon_sym_err_GT_PIPE] = ACTIONS(2131), + [anon_sym_out_GT_PIPE] = ACTIONS(2131), + [anon_sym_e_GT_PIPE] = ACTIONS(2131), + [anon_sym_o_GT_PIPE] = ACTIONS(2131), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2131), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2131), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2131), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym_DASH2] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_DOT_DOT] = ACTIONS(2129), + [anon_sym_DOT_DOT2] = ACTIONS(2129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2129), + [anon_sym_DOT_DOT_LT] = ACTIONS(2129), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2131), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2131), + [anon_sym_null] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [aux_sym__val_number_decimal_token1] = ACTIONS(2129), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2131), + [aux_sym__val_number_decimal_token4] = ACTIONS(2131), + [aux_sym__val_number_token1] = ACTIONS(2131), + [aux_sym__val_number_token2] = ACTIONS(2131), + [aux_sym__val_number_token3] = ACTIONS(2131), + [aux_sym__val_number_token4] = ACTIONS(2131), + [aux_sym__val_number_token5] = ACTIONS(2131), + [aux_sym__val_number_token6] = ACTIONS(2131), + [anon_sym_0b] = ACTIONS(2129), + [anon_sym_0o] = ACTIONS(2129), + [anon_sym_0x] = ACTIONS(2129), + [sym_val_date] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2131), + [sym__str_single_quotes] = ACTIONS(2131), + [sym__str_back_ticks] = ACTIONS(2131), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2131), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2131), + [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(2131), + [anon_sym_out_GT_GT] = ACTIONS(2131), + [anon_sym_e_GT_GT] = ACTIONS(2131), + [anon_sym_o_GT_GT] = ACTIONS(2131), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2131), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2131), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2131), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2131), + [aux_sym_unquoted_token1] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2131), }, [1578] = { - [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_cell_path] = STATE(1992), + [sym_path] = STATE(1894), [sym_comment] = STATE(1578), - [sym__newline] = ACTIONS(5017), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_PIPE] = ACTIONS(5017), - [anon_sym_err_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_GT_PIPE] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ_GT] = ACTIONS(5017), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(5017), - [aux_sym_expr_binary_token2] = ACTIONS(5017), - [aux_sym_expr_binary_token3] = ACTIONS(5017), - [aux_sym_expr_binary_token4] = ACTIONS(5017), - [aux_sym_expr_binary_token5] = ACTIONS(5017), - [aux_sym_expr_binary_token6] = ACTIONS(5017), - [aux_sym_expr_binary_token7] = ACTIONS(5017), - [aux_sym_expr_binary_token8] = ACTIONS(5017), - [aux_sym_expr_binary_token9] = ACTIONS(5017), - [aux_sym_expr_binary_token10] = ACTIONS(5017), - [aux_sym_expr_binary_token11] = ACTIONS(5017), - [aux_sym_expr_binary_token12] = ACTIONS(5017), - [aux_sym_expr_binary_token13] = ACTIONS(5017), - [aux_sym_expr_binary_token14] = ACTIONS(5017), - [aux_sym_expr_binary_token15] = ACTIONS(5017), - [aux_sym_expr_binary_token16] = ACTIONS(5017), - [aux_sym_expr_binary_token17] = ACTIONS(5017), - [aux_sym_expr_binary_token18] = ACTIONS(5017), - [aux_sym_expr_binary_token19] = ACTIONS(5017), - [aux_sym_expr_binary_token20] = ACTIONS(5017), - [aux_sym_expr_binary_token21] = ACTIONS(5017), - [aux_sym_expr_binary_token22] = ACTIONS(5017), - [aux_sym_expr_binary_token23] = ACTIONS(5017), - [aux_sym_expr_binary_token24] = ACTIONS(5017), - [aux_sym_expr_binary_token25] = ACTIONS(5017), - [aux_sym_expr_binary_token26] = ACTIONS(5017), - [aux_sym_expr_binary_token27] = ACTIONS(5017), - [aux_sym_expr_binary_token28] = ACTIONS(5017), - [anon_sym_err_GT] = ACTIONS(5019), - [anon_sym_out_GT] = ACTIONS(5019), - [anon_sym_e_GT] = ACTIONS(5019), - [anon_sym_o_GT] = ACTIONS(5019), - [anon_sym_err_PLUSout_GT] = ACTIONS(5019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), - [anon_sym_o_PLUSe_GT] = ACTIONS(5019), - [anon_sym_e_PLUSo_GT] = ACTIONS(5019), - [anon_sym_err_GT_GT] = ACTIONS(5017), - [anon_sym_out_GT_GT] = ACTIONS(5017), - [anon_sym_e_GT_GT] = ACTIONS(5017), - [anon_sym_o_GT_GT] = ACTIONS(5017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_PIPE] = ACTIONS(1954), + [anon_sym_err_GT_PIPE] = ACTIONS(1954), + [anon_sym_out_GT_PIPE] = ACTIONS(1954), + [anon_sym_e_GT_PIPE] = ACTIONS(1954), + [anon_sym_o_GT_PIPE] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1954), + [anon_sym_RPAREN] = ACTIONS(1954), + [anon_sym_GT2] = ACTIONS(1952), + [anon_sym_DASH2] = ACTIONS(1954), + [anon_sym_in2] = ACTIONS(1954), + [anon_sym_if] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_STAR2] = ACTIONS(1952), + [anon_sym_and2] = ACTIONS(1954), + [anon_sym_xor2] = ACTIONS(1954), + [anon_sym_or2] = ACTIONS(1954), + [anon_sym_not_DASHin2] = ACTIONS(1954), + [anon_sym_starts_DASHwith2] = ACTIONS(1954), + [anon_sym_ends_DASHwith2] = ACTIONS(1954), + [anon_sym_EQ_EQ2] = ACTIONS(1954), + [anon_sym_BANG_EQ2] = ACTIONS(1954), + [anon_sym_LT2] = ACTIONS(1952), + [anon_sym_LT_EQ2] = ACTIONS(1954), + [anon_sym_GT_EQ2] = ACTIONS(1954), + [anon_sym_EQ_TILDE2] = ACTIONS(1954), + [anon_sym_BANG_TILDE2] = ACTIONS(1954), + [anon_sym_STAR_STAR2] = ACTIONS(1954), + [anon_sym_PLUS_PLUS2] = ACTIONS(1954), + [anon_sym_SLASH2] = ACTIONS(1952), + [anon_sym_mod2] = ACTIONS(1954), + [anon_sym_SLASH_SLASH2] = ACTIONS(1954), + [anon_sym_PLUS2] = ACTIONS(1952), + [anon_sym_bit_DASHshl2] = ACTIONS(1954), + [anon_sym_bit_DASHshr2] = ACTIONS(1954), + [anon_sym_bit_DASHand2] = ACTIONS(1954), + [anon_sym_bit_DASHxor2] = ACTIONS(1954), + [anon_sym_bit_DASHor2] = ACTIONS(1954), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1952), + [anon_sym_out_GT] = ACTIONS(1952), + [anon_sym_e_GT] = ACTIONS(1952), + [anon_sym_o_GT] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT] = ACTIONS(1952), + [anon_sym_err_GT_GT] = ACTIONS(1954), + [anon_sym_out_GT_GT] = ACTIONS(1954), + [anon_sym_e_GT_GT] = ACTIONS(1954), + [anon_sym_o_GT_GT] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1954), + [anon_sym_POUND] = ACTIONS(247), }, [1579] = { [sym_comment] = STATE(1579), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT] = ACTIONS(5037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [aux_sym__immediate_decimal_token2] = ACTIONS(5039), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(1717), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DOT_DOT2] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), + [anon_sym_DOT_DOT_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = ACTIONS(1892), + [anon_sym_0b] = ACTIONS(1890), + [anon_sym_0o] = ACTIONS(1890), + [anon_sym_0x] = ACTIONS(1890), + [sym_val_date] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [sym__str_single_quotes] = ACTIONS(1892), + [sym__str_back_ticks] = ACTIONS(1892), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1890), + [anon_sym_out_GT] = ACTIONS(1890), + [anon_sym_e_GT] = ACTIONS(1890), + [anon_sym_o_GT] = ACTIONS(1890), + [anon_sym_err_PLUSout_GT] = ACTIONS(1890), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), + [anon_sym_o_PLUSe_GT] = ACTIONS(1890), + [anon_sym_e_PLUSo_GT] = ACTIONS(1890), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), + [aux_sym_unquoted_token1] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1892), }, [1580] = { [sym_comment] = STATE(1580), - [aux_sym_cmd_identifier_token41] = ACTIONS(1528), - [sym__newline] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_err_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_GT_PIPE] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [aux_sym_expr_binary_token1] = ACTIONS(1530), - [aux_sym_expr_binary_token2] = ACTIONS(1530), - [aux_sym_expr_binary_token3] = ACTIONS(1530), - [aux_sym_expr_binary_token4] = ACTIONS(1530), - [aux_sym_expr_binary_token5] = ACTIONS(1530), - [aux_sym_expr_binary_token6] = ACTIONS(1530), - [aux_sym_expr_binary_token7] = ACTIONS(1530), - [aux_sym_expr_binary_token8] = ACTIONS(1530), - [aux_sym_expr_binary_token9] = ACTIONS(1530), - [aux_sym_expr_binary_token10] = ACTIONS(1530), - [aux_sym_expr_binary_token11] = ACTIONS(1530), - [aux_sym_expr_binary_token12] = ACTIONS(1530), - [aux_sym_expr_binary_token13] = ACTIONS(1530), - [aux_sym_expr_binary_token14] = ACTIONS(1530), - [aux_sym_expr_binary_token15] = ACTIONS(1530), - [aux_sym_expr_binary_token16] = ACTIONS(1530), - [aux_sym_expr_binary_token17] = ACTIONS(1530), - [aux_sym_expr_binary_token18] = ACTIONS(1530), - [aux_sym_expr_binary_token19] = ACTIONS(1530), - [aux_sym_expr_binary_token20] = ACTIONS(1530), - [aux_sym_expr_binary_token21] = ACTIONS(1530), - [aux_sym_expr_binary_token22] = ACTIONS(1530), - [aux_sym_expr_binary_token23] = ACTIONS(1530), - [aux_sym_expr_binary_token24] = ACTIONS(1530), - [aux_sym_expr_binary_token25] = ACTIONS(1530), - [aux_sym_expr_binary_token26] = ACTIONS(1530), - [aux_sym_expr_binary_token27] = ACTIONS(1530), - [aux_sym_expr_binary_token28] = ACTIONS(1530), - [anon_sym_DOT_DOT2] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), - [sym_filesize_unit] = ACTIONS(1530), - [sym_duration_unit] = ACTIONS(1530), - [anon_sym_err_GT] = ACTIONS(1528), - [anon_sym_out_GT] = ACTIONS(1528), - [anon_sym_e_GT] = ACTIONS(1528), - [anon_sym_o_GT] = ACTIONS(1528), - [anon_sym_err_PLUSout_GT] = ACTIONS(1528), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), - [anon_sym_o_PLUSe_GT] = ACTIONS(1528), - [anon_sym_e_PLUSo_GT] = ACTIONS(1528), - [anon_sym_err_GT_GT] = ACTIONS(1530), - [anon_sym_out_GT_GT] = ACTIONS(1530), - [anon_sym_e_GT_GT] = ACTIONS(1530), - [anon_sym_o_GT_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(249), + [sym__newline] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_err_GT_PIPE] = ACTIONS(2767), + [anon_sym_out_GT_PIPE] = ACTIONS(2767), + [anon_sym_e_GT_PIPE] = ACTIONS(2767), + [anon_sym_o_GT_PIPE] = ACTIONS(2767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_RPAREN] = ACTIONS(2767), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_DASH2] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_DOT_DOT2] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4908), + [anon_sym_DOT_DOT_LT] = ACTIONS(4908), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4832), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4832), + [anon_sym_null] = ACTIONS(2767), + [anon_sym_true] = ACTIONS(2767), + [anon_sym_false] = ACTIONS(2767), + [aux_sym__val_number_decimal_token1] = ACTIONS(4908), + [aux_sym__val_number_decimal_token2] = ACTIONS(2767), + [aux_sym__val_number_decimal_token3] = ACTIONS(2767), + [aux_sym__val_number_decimal_token4] = ACTIONS(2767), + [aux_sym__val_number_token1] = ACTIONS(2767), + [aux_sym__val_number_token2] = ACTIONS(2767), + [aux_sym__val_number_token3] = ACTIONS(2767), + [aux_sym__val_number_token4] = ACTIONS(2767), + [aux_sym__val_number_token5] = ACTIONS(2767), + [aux_sym__val_number_token6] = ACTIONS(2767), + [anon_sym_0b] = ACTIONS(4908), + [anon_sym_0o] = ACTIONS(4908), + [anon_sym_0x] = ACTIONS(4908), + [sym_val_date] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [sym__str_single_quotes] = ACTIONS(2767), + [sym__str_back_ticks] = ACTIONS(2767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2767), + [anon_sym_err_GT] = ACTIONS(4908), + [anon_sym_out_GT] = ACTIONS(4908), + [anon_sym_e_GT] = ACTIONS(4908), + [anon_sym_o_GT] = ACTIONS(4908), + [anon_sym_err_PLUSout_GT] = ACTIONS(4908), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4908), + [anon_sym_o_PLUSe_GT] = ACTIONS(4908), + [anon_sym_e_PLUSo_GT] = ACTIONS(4908), + [anon_sym_err_GT_GT] = ACTIONS(2767), + [anon_sym_out_GT_GT] = ACTIONS(2767), + [anon_sym_e_GT_GT] = ACTIONS(2767), + [anon_sym_o_GT_GT] = ACTIONS(2767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2767), + [aux_sym_unquoted_token1] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2767), }, [1581] = { - [sym__expr_parenthesized_immediate] = STATE(7791), + [sym_cell_path] = STATE(2000), + [sym_path] = STATE(1894), [sym_comment] = STATE(1581), - [sym__newline] = ACTIONS(4808), - [anon_sym_SEMI] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_err_GT_PIPE] = ACTIONS(4808), - [anon_sym_out_GT_PIPE] = ACTIONS(4808), - [anon_sym_e_GT_PIPE] = ACTIONS(4808), - [anon_sym_o_GT_PIPE] = ACTIONS(4808), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4808), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4808), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4808), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4808), - [anon_sym_RPAREN] = ACTIONS(4808), - [anon_sym_DASH_DASH] = ACTIONS(4808), - [anon_sym_DASH] = ACTIONS(4810), - [anon_sym_LBRACE] = ACTIONS(4808), - [anon_sym_RBRACE] = ACTIONS(4808), - [anon_sym_EQ_GT] = ACTIONS(4808), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(4808), - [aux_sym_expr_binary_token2] = ACTIONS(4808), - [aux_sym_expr_binary_token3] = ACTIONS(4808), - [aux_sym_expr_binary_token4] = ACTIONS(4808), - [aux_sym_expr_binary_token5] = ACTIONS(4808), - [aux_sym_expr_binary_token6] = ACTIONS(4808), - [aux_sym_expr_binary_token7] = ACTIONS(4808), - [aux_sym_expr_binary_token8] = ACTIONS(4808), - [aux_sym_expr_binary_token9] = ACTIONS(4808), - [aux_sym_expr_binary_token10] = ACTIONS(4808), - [aux_sym_expr_binary_token11] = ACTIONS(4808), - [aux_sym_expr_binary_token12] = ACTIONS(4808), - [aux_sym_expr_binary_token13] = ACTIONS(4808), - [aux_sym_expr_binary_token14] = ACTIONS(4808), - [aux_sym_expr_binary_token15] = ACTIONS(4808), - [aux_sym_expr_binary_token16] = ACTIONS(4808), - [aux_sym_expr_binary_token17] = ACTIONS(4808), - [aux_sym_expr_binary_token18] = ACTIONS(4808), - [aux_sym_expr_binary_token19] = ACTIONS(4808), - [aux_sym_expr_binary_token20] = ACTIONS(4808), - [aux_sym_expr_binary_token21] = ACTIONS(4808), - [aux_sym_expr_binary_token22] = ACTIONS(4808), - [aux_sym_expr_binary_token23] = ACTIONS(4808), - [aux_sym_expr_binary_token24] = ACTIONS(4808), - [aux_sym_expr_binary_token25] = ACTIONS(4808), - [aux_sym_expr_binary_token26] = ACTIONS(4808), - [aux_sym_expr_binary_token27] = ACTIONS(4808), - [aux_sym_expr_binary_token28] = ACTIONS(4808), - [anon_sym_err_GT] = ACTIONS(4810), - [anon_sym_out_GT] = ACTIONS(4810), - [anon_sym_e_GT] = ACTIONS(4810), - [anon_sym_o_GT] = ACTIONS(4810), - [anon_sym_err_PLUSout_GT] = ACTIONS(4810), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4810), - [anon_sym_o_PLUSe_GT] = ACTIONS(4810), - [anon_sym_e_PLUSo_GT] = ACTIONS(4810), - [anon_sym_err_GT_GT] = ACTIONS(4808), - [anon_sym_out_GT_GT] = ACTIONS(4808), - [anon_sym_e_GT_GT] = ACTIONS(4808), - [anon_sym_o_GT_GT] = ACTIONS(4808), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4808), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4808), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4808), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4808), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_err_GT_PIPE] = ACTIONS(1994), + [anon_sym_out_GT_PIPE] = ACTIONS(1994), + [anon_sym_e_GT_PIPE] = ACTIONS(1994), + [anon_sym_o_GT_PIPE] = ACTIONS(1994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_GT2] = ACTIONS(1992), + [anon_sym_DASH2] = ACTIONS(1994), + [anon_sym_in2] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_EQ_GT] = ACTIONS(1994), + [anon_sym_STAR2] = ACTIONS(1992), + [anon_sym_and2] = ACTIONS(1994), + [anon_sym_xor2] = ACTIONS(1994), + [anon_sym_or2] = ACTIONS(1994), + [anon_sym_not_DASHin2] = ACTIONS(1994), + [anon_sym_starts_DASHwith2] = ACTIONS(1994), + [anon_sym_ends_DASHwith2] = ACTIONS(1994), + [anon_sym_EQ_EQ2] = ACTIONS(1994), + [anon_sym_BANG_EQ2] = ACTIONS(1994), + [anon_sym_LT2] = ACTIONS(1992), + [anon_sym_LT_EQ2] = ACTIONS(1994), + [anon_sym_GT_EQ2] = ACTIONS(1994), + [anon_sym_EQ_TILDE2] = ACTIONS(1994), + [anon_sym_BANG_TILDE2] = ACTIONS(1994), + [anon_sym_STAR_STAR2] = ACTIONS(1994), + [anon_sym_PLUS_PLUS2] = ACTIONS(1994), + [anon_sym_SLASH2] = ACTIONS(1992), + [anon_sym_mod2] = ACTIONS(1994), + [anon_sym_SLASH_SLASH2] = ACTIONS(1994), + [anon_sym_PLUS2] = ACTIONS(1992), + [anon_sym_bit_DASHshl2] = ACTIONS(1994), + [anon_sym_bit_DASHshr2] = ACTIONS(1994), + [anon_sym_bit_DASHand2] = ACTIONS(1994), + [anon_sym_bit_DASHxor2] = ACTIONS(1994), + [anon_sym_bit_DASHor2] = ACTIONS(1994), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1992), + [anon_sym_out_GT] = ACTIONS(1992), + [anon_sym_e_GT] = ACTIONS(1992), + [anon_sym_o_GT] = ACTIONS(1992), + [anon_sym_err_PLUSout_GT] = ACTIONS(1992), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1992), + [anon_sym_o_PLUSe_GT] = ACTIONS(1992), + [anon_sym_e_PLUSo_GT] = ACTIONS(1992), + [anon_sym_err_GT_GT] = ACTIONS(1994), + [anon_sym_out_GT_GT] = ACTIONS(1994), + [anon_sym_e_GT_GT] = ACTIONS(1994), + [anon_sym_o_GT_GT] = ACTIONS(1994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1994), + [anon_sym_POUND] = ACTIONS(247), }, [1582] = { - [sym__expr_parenthesized_immediate] = STATE(7791), + [sym_cell_path] = STATE(1988), + [sym_path] = STATE(1894), [sym_comment] = STATE(1582), - [sym__newline] = ACTIONS(4812), - [anon_sym_SEMI] = ACTIONS(4812), - [anon_sym_PIPE] = ACTIONS(4812), - [anon_sym_err_GT_PIPE] = ACTIONS(4812), - [anon_sym_out_GT_PIPE] = ACTIONS(4812), - [anon_sym_e_GT_PIPE] = ACTIONS(4812), - [anon_sym_o_GT_PIPE] = ACTIONS(4812), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4812), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4812), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4812), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4812), - [anon_sym_RPAREN] = ACTIONS(4812), - [anon_sym_DASH_DASH] = ACTIONS(4812), - [anon_sym_DASH] = ACTIONS(4814), - [anon_sym_LBRACE] = ACTIONS(4812), - [anon_sym_RBRACE] = ACTIONS(4812), - [anon_sym_EQ_GT] = ACTIONS(4812), - [anon_sym_LPAREN2] = ACTIONS(4433), - [aux_sym_expr_binary_token1] = ACTIONS(4812), - [aux_sym_expr_binary_token2] = ACTIONS(4812), - [aux_sym_expr_binary_token3] = ACTIONS(4812), - [aux_sym_expr_binary_token4] = ACTIONS(4812), - [aux_sym_expr_binary_token5] = ACTIONS(4812), - [aux_sym_expr_binary_token6] = ACTIONS(4812), - [aux_sym_expr_binary_token7] = ACTIONS(4812), - [aux_sym_expr_binary_token8] = ACTIONS(4812), - [aux_sym_expr_binary_token9] = ACTIONS(4812), - [aux_sym_expr_binary_token10] = ACTIONS(4812), - [aux_sym_expr_binary_token11] = ACTIONS(4812), - [aux_sym_expr_binary_token12] = ACTIONS(4812), - [aux_sym_expr_binary_token13] = ACTIONS(4812), - [aux_sym_expr_binary_token14] = ACTIONS(4812), - [aux_sym_expr_binary_token15] = ACTIONS(4812), - [aux_sym_expr_binary_token16] = ACTIONS(4812), - [aux_sym_expr_binary_token17] = ACTIONS(4812), - [aux_sym_expr_binary_token18] = ACTIONS(4812), - [aux_sym_expr_binary_token19] = ACTIONS(4812), - [aux_sym_expr_binary_token20] = ACTIONS(4812), - [aux_sym_expr_binary_token21] = ACTIONS(4812), - [aux_sym_expr_binary_token22] = ACTIONS(4812), - [aux_sym_expr_binary_token23] = ACTIONS(4812), - [aux_sym_expr_binary_token24] = ACTIONS(4812), - [aux_sym_expr_binary_token25] = ACTIONS(4812), - [aux_sym_expr_binary_token26] = ACTIONS(4812), - [aux_sym_expr_binary_token27] = ACTIONS(4812), - [aux_sym_expr_binary_token28] = ACTIONS(4812), - [anon_sym_err_GT] = ACTIONS(4814), - [anon_sym_out_GT] = ACTIONS(4814), - [anon_sym_e_GT] = ACTIONS(4814), - [anon_sym_o_GT] = ACTIONS(4814), - [anon_sym_err_PLUSout_GT] = ACTIONS(4814), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4814), - [anon_sym_o_PLUSe_GT] = ACTIONS(4814), - [anon_sym_e_PLUSo_GT] = ACTIONS(4814), - [anon_sym_err_GT_GT] = ACTIONS(4812), - [anon_sym_out_GT_GT] = ACTIONS(4812), - [anon_sym_e_GT_GT] = ACTIONS(4812), - [anon_sym_o_GT_GT] = ACTIONS(4812), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4812), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4812), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4812), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4812), - [anon_sym_POUND] = ACTIONS(249), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_err_GT_PIPE] = ACTIONS(1935), + [anon_sym_out_GT_PIPE] = ACTIONS(1935), + [anon_sym_e_GT_PIPE] = ACTIONS(1935), + [anon_sym_o_GT_PIPE] = ACTIONS(1935), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), + [anon_sym_RPAREN] = ACTIONS(1935), + [anon_sym_GT2] = ACTIONS(1933), + [anon_sym_DASH2] = ACTIONS(1935), + [anon_sym_in2] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_EQ_GT] = ACTIONS(1935), + [anon_sym_STAR2] = ACTIONS(1933), + [anon_sym_and2] = ACTIONS(1935), + [anon_sym_xor2] = ACTIONS(1935), + [anon_sym_or2] = ACTIONS(1935), + [anon_sym_not_DASHin2] = ACTIONS(1935), + [anon_sym_starts_DASHwith2] = ACTIONS(1935), + [anon_sym_ends_DASHwith2] = ACTIONS(1935), + [anon_sym_EQ_EQ2] = ACTIONS(1935), + [anon_sym_BANG_EQ2] = ACTIONS(1935), + [anon_sym_LT2] = ACTIONS(1933), + [anon_sym_LT_EQ2] = ACTIONS(1935), + [anon_sym_GT_EQ2] = ACTIONS(1935), + [anon_sym_EQ_TILDE2] = ACTIONS(1935), + [anon_sym_BANG_TILDE2] = ACTIONS(1935), + [anon_sym_STAR_STAR2] = ACTIONS(1935), + [anon_sym_PLUS_PLUS2] = ACTIONS(1935), + [anon_sym_SLASH2] = ACTIONS(1933), + [anon_sym_mod2] = ACTIONS(1935), + [anon_sym_SLASH_SLASH2] = ACTIONS(1935), + [anon_sym_PLUS2] = ACTIONS(1933), + [anon_sym_bit_DASHshl2] = ACTIONS(1935), + [anon_sym_bit_DASHshr2] = ACTIONS(1935), + [anon_sym_bit_DASHand2] = ACTIONS(1935), + [anon_sym_bit_DASHxor2] = ACTIONS(1935), + [anon_sym_bit_DASHor2] = ACTIONS(1935), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1933), + [anon_sym_out_GT] = ACTIONS(1933), + [anon_sym_e_GT] = ACTIONS(1933), + [anon_sym_o_GT] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT] = ACTIONS(1933), + [anon_sym_err_GT_GT] = ACTIONS(1935), + [anon_sym_out_GT_GT] = ACTIONS(1935), + [anon_sym_e_GT_GT] = ACTIONS(1935), + [anon_sym_o_GT_GT] = ACTIONS(1935), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(247), }, [1583] = { - [sym__expression] = STATE(5741), - [sym_expr_unary] = STATE(1739), - [sym__expr_unary_minus] = STATE(1765), - [sym_expr_binary] = STATE(1739), - [sym__expr_binary_expression] = STATE(3895), - [sym_expr_parenthesized] = STATE(3543), - [sym_val_range] = STATE(3562), - [sym__value] = STATE(1739), - [sym_val_nothing] = STATE(1881), - [sym_val_bool] = STATE(1881), - [sym_val_variable] = STATE(3542), - [sym_val_number] = STATE(1881), - [sym__val_number_decimal] = STATE(3503), - [sym__val_number] = STATE(1883), - [sym_val_duration] = STATE(1881), - [sym_val_filesize] = STATE(1881), - [sym_val_binary] = STATE(1881), - [sym_val_string] = STATE(1881), - [sym__raw_str] = STATE(1540), - [sym__str_double_quotes] = STATE(1540), - [sym_val_interpolated] = STATE(1881), - [sym__inter_single_quotes] = STATE(1827), - [sym__inter_double_quotes] = STATE(1841), - [sym_val_list] = STATE(1881), - [sym_val_record] = STATE(1881), - [sym_val_table] = STATE(1881), - [sym_val_closure] = STATE(1881), - [sym__flag] = STATE(2050), - [sym_short_flag] = STATE(3610), - [sym_long_flag] = STATE(3610), [sym_comment] = STATE(1583), - [anon_sym_true] = ACTIONS(3278), - [anon_sym_false] = ACTIONS(3278), - [anon_sym_null] = ACTIONS(3280), - [aux_sym_cmd_identifier_token38] = ACTIONS(227), - [aux_sym_cmd_identifier_token39] = ACTIONS(227), - [aux_sym_cmd_identifier_token40] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(3356), + [ts_builtin_sym_end] = ACTIONS(1032), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_DOT_DOT] = ACTIONS(1030), + [anon_sym_DOT_DOT2] = ACTIONS(4910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT] = ACTIONS(1030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4912), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4912), + [anon_sym_null] = ACTIONS(1032), + [anon_sym_true] = ACTIONS(1032), + [anon_sym_false] = ACTIONS(1032), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1032), + [aux_sym__val_number_decimal_token4] = ACTIONS(1032), + [aux_sym__val_number_token1] = ACTIONS(1032), + [aux_sym__val_number_token2] = ACTIONS(1032), + [aux_sym__val_number_token3] = ACTIONS(1032), + [aux_sym__val_number_token4] = ACTIONS(1032), + [aux_sym__val_number_token5] = ACTIONS(1032), + [aux_sym__val_number_token6] = ACTIONS(1032), + [anon_sym_0b] = ACTIONS(1030), + [anon_sym_0o] = ACTIONS(1030), + [anon_sym_0x] = ACTIONS(1030), + [sym_val_date] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__str_single_quotes] = ACTIONS(1032), + [sym__str_back_ticks] = ACTIONS(1032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1032), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [anon_sym_err_GT_GT] = ACTIONS(1032), + [anon_sym_out_GT_GT] = ACTIONS(1032), + [anon_sym_e_GT_GT] = ACTIONS(1032), + [anon_sym_o_GT_GT] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [aux_sym_unquoted_token1] = ACTIONS(1030), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1032), + }, + [1584] = { + [sym_comment] = STATE(1584), + [sym__newline] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2210), + [anon_sym_PIPE] = ACTIONS(2210), + [anon_sym_err_GT_PIPE] = ACTIONS(2210), + [anon_sym_out_GT_PIPE] = ACTIONS(2210), + [anon_sym_e_GT_PIPE] = ACTIONS(2210), + [anon_sym_o_GT_PIPE] = ACTIONS(2210), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2210), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2210), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2210), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2210), + [anon_sym_DOLLAR] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2206), + [anon_sym_DASH2] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2210), + [anon_sym_RBRACE] = ACTIONS(2210), + [anon_sym_DOT_DOT] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2206), + [anon_sym_DOT_DOT_LT] = ACTIONS(2206), + [anon_sym_null] = ACTIONS(2206), + [anon_sym_true] = ACTIONS(2206), + [anon_sym_false] = ACTIONS(2206), + [aux_sym__val_number_decimal_token1] = ACTIONS(2206), + [aux_sym__val_number_decimal_token2] = ACTIONS(2206), + [aux_sym__val_number_decimal_token3] = ACTIONS(2206), + [aux_sym__val_number_decimal_token4] = ACTIONS(2206), + [aux_sym__val_number_token1] = ACTIONS(2206), + [aux_sym__val_number_token2] = ACTIONS(2206), + [aux_sym__val_number_token3] = ACTIONS(2206), + [aux_sym__val_number_token4] = ACTIONS(2206), + [aux_sym__val_number_token5] = ACTIONS(2206), + [aux_sym__val_number_token6] = ACTIONS(2206), + [anon_sym_0b] = ACTIONS(2206), + [anon_sym_0o] = ACTIONS(2206), + [anon_sym_0x] = ACTIONS(2206), + [sym_val_date] = ACTIONS(2206), + [anon_sym_DQUOTE] = ACTIONS(2210), + [sym__str_single_quotes] = ACTIONS(2210), + [sym__str_back_ticks] = ACTIONS(2210), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2210), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2210), + [anon_sym_err_GT] = ACTIONS(2206), + [anon_sym_out_GT] = ACTIONS(2206), + [anon_sym_e_GT] = ACTIONS(2206), + [anon_sym_o_GT] = ACTIONS(2206), + [anon_sym_err_PLUSout_GT] = ACTIONS(2206), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2206), + [anon_sym_o_PLUSe_GT] = ACTIONS(2206), + [anon_sym_e_PLUSo_GT] = ACTIONS(2206), + [anon_sym_err_GT_GT] = ACTIONS(2206), + [anon_sym_out_GT_GT] = ACTIONS(2206), + [anon_sym_e_GT_GT] = ACTIONS(2206), + [anon_sym_o_GT_GT] = ACTIONS(2206), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2206), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2206), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2206), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2206), + [aux_sym_unquoted_token1] = ACTIONS(2206), + [aux_sym_unquoted_token4] = ACTIONS(2212), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2210), + }, + [1585] = { + [sym_cell_path] = STATE(2001), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1585), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_err_GT_PIPE] = ACTIONS(1998), + [anon_sym_out_GT_PIPE] = ACTIONS(1998), + [anon_sym_e_GT_PIPE] = ACTIONS(1998), + [anon_sym_o_GT_PIPE] = ACTIONS(1998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1998), + [anon_sym_RPAREN] = ACTIONS(1998), + [anon_sym_GT2] = ACTIONS(1996), + [anon_sym_DASH2] = ACTIONS(1998), + [anon_sym_in2] = ACTIONS(1998), + [anon_sym_if] = ACTIONS(1998), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_EQ_GT] = ACTIONS(1998), + [anon_sym_STAR2] = ACTIONS(1996), + [anon_sym_and2] = ACTIONS(1998), + [anon_sym_xor2] = ACTIONS(1998), + [anon_sym_or2] = ACTIONS(1998), + [anon_sym_not_DASHin2] = ACTIONS(1998), + [anon_sym_starts_DASHwith2] = ACTIONS(1998), + [anon_sym_ends_DASHwith2] = ACTIONS(1998), + [anon_sym_EQ_EQ2] = ACTIONS(1998), + [anon_sym_BANG_EQ2] = ACTIONS(1998), + [anon_sym_LT2] = ACTIONS(1996), + [anon_sym_LT_EQ2] = ACTIONS(1998), + [anon_sym_GT_EQ2] = ACTIONS(1998), + [anon_sym_EQ_TILDE2] = ACTIONS(1998), + [anon_sym_BANG_TILDE2] = ACTIONS(1998), + [anon_sym_STAR_STAR2] = ACTIONS(1998), + [anon_sym_PLUS_PLUS2] = ACTIONS(1998), + [anon_sym_SLASH2] = ACTIONS(1996), + [anon_sym_mod2] = ACTIONS(1998), + [anon_sym_SLASH_SLASH2] = ACTIONS(1998), + [anon_sym_PLUS2] = ACTIONS(1996), + [anon_sym_bit_DASHshl2] = ACTIONS(1998), + [anon_sym_bit_DASHshr2] = ACTIONS(1998), + [anon_sym_bit_DASHand2] = ACTIONS(1998), + [anon_sym_bit_DASHxor2] = ACTIONS(1998), + [anon_sym_bit_DASHor2] = ACTIONS(1998), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1996), + [anon_sym_out_GT] = ACTIONS(1996), + [anon_sym_e_GT] = ACTIONS(1996), + [anon_sym_o_GT] = ACTIONS(1996), + [anon_sym_err_PLUSout_GT] = ACTIONS(1996), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1996), + [anon_sym_o_PLUSe_GT] = ACTIONS(1996), + [anon_sym_e_PLUSo_GT] = ACTIONS(1996), + [anon_sym_err_GT_GT] = ACTIONS(1998), + [anon_sym_out_GT_GT] = ACTIONS(1998), + [anon_sym_e_GT_GT] = ACTIONS(1998), + [anon_sym_o_GT_GT] = ACTIONS(1998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1998), + [anon_sym_POUND] = ACTIONS(247), + }, + [1586] = { + [sym_comment] = STATE(1586), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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__immediate_decimal_token2] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [1587] = { + [sym_comment] = STATE(1587), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_DOT_DOT] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [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), + [aux_sym__val_number_token4] = ACTIONS(1030), + [aux_sym__val_number_token5] = ACTIONS(1030), + [aux_sym__val_number_token6] = ACTIONS(1030), + [anon_sym_0b] = ACTIONS(1030), + [anon_sym_0o] = ACTIONS(1030), + [anon_sym_0x] = ACTIONS(1030), + [sym_val_date] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__str_single_quotes] = ACTIONS(1032), + [sym__str_back_ticks] = ACTIONS(1032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1032), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [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(1030), + [aux_sym_unquoted_token4] = ACTIONS(2204), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1032), + }, + [1588] = { + [sym_comment] = STATE(1588), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [1589] = { + [sym__expr_parenthesized_immediate] = STATE(7505), + [sym_comment] = STATE(1589), + [sym__newline] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4914), + [anon_sym_PIPE] = ACTIONS(4914), + [anon_sym_err_GT_PIPE] = ACTIONS(4914), + [anon_sym_out_GT_PIPE] = ACTIONS(4914), + [anon_sym_e_GT_PIPE] = ACTIONS(4914), + [anon_sym_o_GT_PIPE] = ACTIONS(4914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH2] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4914), + [anon_sym_DOT_DOT_LT] = ACTIONS(4914), + [anon_sym_null] = ACTIONS(4914), + [anon_sym_true] = ACTIONS(4914), + [anon_sym_false] = ACTIONS(4914), + [aux_sym__val_number_decimal_token1] = ACTIONS(4916), + [aux_sym__val_number_decimal_token2] = ACTIONS(4914), + [aux_sym__val_number_decimal_token3] = ACTIONS(4914), + [aux_sym__val_number_decimal_token4] = ACTIONS(4914), + [aux_sym__val_number_token1] = ACTIONS(4914), + [aux_sym__val_number_token2] = ACTIONS(4914), + [aux_sym__val_number_token3] = ACTIONS(4914), + [aux_sym__val_number_token4] = ACTIONS(4914), + [aux_sym__val_number_token5] = ACTIONS(4914), + [aux_sym__val_number_token6] = ACTIONS(4914), + [anon_sym_0b] = ACTIONS(4916), + [anon_sym_0o] = ACTIONS(4916), + [anon_sym_0x] = ACTIONS(4916), + [sym_val_date] = ACTIONS(4914), + [anon_sym_DQUOTE] = ACTIONS(4914), + [sym__str_single_quotes] = ACTIONS(4914), + [sym__str_back_ticks] = ACTIONS(4914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4914), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4914), + [anon_sym_err_GT] = ACTIONS(4916), + [anon_sym_out_GT] = ACTIONS(4916), + [anon_sym_e_GT] = ACTIONS(4916), + [anon_sym_o_GT] = ACTIONS(4916), + [anon_sym_err_PLUSout_GT] = ACTIONS(4916), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4916), + [anon_sym_o_PLUSe_GT] = ACTIONS(4916), + [anon_sym_e_PLUSo_GT] = ACTIONS(4916), + [anon_sym_err_GT_GT] = ACTIONS(4914), + [anon_sym_out_GT_GT] = ACTIONS(4914), + [anon_sym_e_GT_GT] = ACTIONS(4914), + [anon_sym_o_GT_GT] = ACTIONS(4914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4914), + [aux_sym_unquoted_token1] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4914), + }, + [1590] = { + [sym_comment] = STATE(1590), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [1591] = { + [sym_comment] = STATE(1591), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_DOT_DOT] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2214), + [anon_sym_DOT_DOT_LT] = ACTIONS(2214), + [anon_sym_null] = ACTIONS(2214), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(2214), + [aux_sym__val_number_token5] = ACTIONS(2214), + [aux_sym__val_number_token6] = ACTIONS(2214), + [anon_sym_0b] = ACTIONS(2214), + [anon_sym_0o] = ACTIONS(2214), + [anon_sym_0x] = ACTIONS(2214), + [sym_val_date] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2218), + [sym__str_single_quotes] = ACTIONS(2218), + [sym__str_back_ticks] = ACTIONS(2218), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2218), + [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(2214), + [aux_sym_unquoted_token4] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2218), + }, + [1592] = { + [sym_comment] = STATE(1592), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4918), + [aux_sym__immediate_decimal_token2] = ACTIONS(4920), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [1593] = { + [sym_comment] = STATE(1593), + [sym__newline] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_err_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_GT_PIPE] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1016), + [anon_sym_GT2] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1016), + [anon_sym_in2] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_EQ_GT] = ACTIONS(1016), + [anon_sym_STAR2] = ACTIONS(1014), + [anon_sym_and2] = ACTIONS(1016), + [anon_sym_xor2] = ACTIONS(1016), + [anon_sym_or2] = ACTIONS(1016), + [anon_sym_not_DASHin2] = ACTIONS(1016), + [anon_sym_starts_DASHwith2] = ACTIONS(1016), + [anon_sym_ends_DASHwith2] = ACTIONS(1016), + [anon_sym_EQ_EQ2] = ACTIONS(1016), + [anon_sym_BANG_EQ2] = ACTIONS(1016), + [anon_sym_LT2] = ACTIONS(1014), + [anon_sym_LT_EQ2] = ACTIONS(1016), + [anon_sym_GT_EQ2] = ACTIONS(1016), + [anon_sym_EQ_TILDE2] = ACTIONS(1016), + [anon_sym_BANG_TILDE2] = ACTIONS(1016), + [anon_sym_STAR_STAR2] = ACTIONS(1016), + [anon_sym_PLUS_PLUS2] = ACTIONS(1016), + [anon_sym_SLASH2] = ACTIONS(1014), + [anon_sym_mod2] = ACTIONS(1016), + [anon_sym_SLASH_SLASH2] = ACTIONS(1016), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_bit_DASHshl2] = ACTIONS(1016), + [anon_sym_bit_DASHshr2] = ACTIONS(1016), + [anon_sym_bit_DASHand2] = ACTIONS(1016), + [anon_sym_bit_DASHxor2] = ACTIONS(1016), + [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_DOT_DOT2] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [anon_sym_err_GT_GT] = ACTIONS(1016), + [anon_sym_out_GT_GT] = ACTIONS(1016), + [anon_sym_e_GT_GT] = ACTIONS(1016), + [anon_sym_o_GT_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(247), + }, + [1594] = { + [sym_cell_path] = STATE(2007), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1594), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_PIPE] = ACTIONS(2070), + [anon_sym_err_GT_PIPE] = ACTIONS(2070), + [anon_sym_out_GT_PIPE] = ACTIONS(2070), + [anon_sym_e_GT_PIPE] = ACTIONS(2070), + [anon_sym_o_GT_PIPE] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2070), + [anon_sym_RPAREN] = ACTIONS(2070), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2070), + [anon_sym_in2] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_EQ_GT] = ACTIONS(2070), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2070), + [anon_sym_xor2] = ACTIONS(2070), + [anon_sym_or2] = ACTIONS(2070), + [anon_sym_not_DASHin2] = ACTIONS(2070), + [anon_sym_starts_DASHwith2] = ACTIONS(2070), + [anon_sym_ends_DASHwith2] = ACTIONS(2070), + [anon_sym_EQ_EQ2] = ACTIONS(2070), + [anon_sym_BANG_EQ2] = ACTIONS(2070), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2070), + [anon_sym_GT_EQ2] = ACTIONS(2070), + [anon_sym_EQ_TILDE2] = ACTIONS(2070), + [anon_sym_BANG_TILDE2] = ACTIONS(2070), + [anon_sym_STAR_STAR2] = ACTIONS(2070), + [anon_sym_PLUS_PLUS2] = ACTIONS(2070), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2070), + [anon_sym_SLASH_SLASH2] = ACTIONS(2070), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2070), + [anon_sym_bit_DASHshr2] = ACTIONS(2070), + [anon_sym_bit_DASHand2] = ACTIONS(2070), + [anon_sym_bit_DASHxor2] = ACTIONS(2070), + [anon_sym_bit_DASHor2] = ACTIONS(2070), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(2068), + [anon_sym_out_GT] = ACTIONS(2068), + [anon_sym_e_GT] = ACTIONS(2068), + [anon_sym_o_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT] = ACTIONS(2068), + [anon_sym_err_GT_GT] = ACTIONS(2070), + [anon_sym_out_GT_GT] = ACTIONS(2070), + [anon_sym_e_GT_GT] = ACTIONS(2070), + [anon_sym_o_GT_GT] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2070), + [anon_sym_POUND] = ACTIONS(247), + }, + [1595] = { + [sym_comment] = STATE(1595), + [sym__newline] = ACTIONS(2224), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_err_GT_PIPE] = ACTIONS(2224), + [anon_sym_out_GT_PIPE] = ACTIONS(2224), + [anon_sym_e_GT_PIPE] = ACTIONS(2224), + [anon_sym_o_GT_PIPE] = ACTIONS(2224), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2224), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2224), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2224), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), + [anon_sym_DOT_DOT_LT] = ACTIONS(2222), + [anon_sym_null] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [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), + [aux_sym__val_number_token4] = ACTIONS(2222), + [aux_sym__val_number_token5] = ACTIONS(2222), + [aux_sym__val_number_token6] = ACTIONS(2222), + [anon_sym_0b] = ACTIONS(2222), + [anon_sym_0o] = ACTIONS(2222), + [anon_sym_0x] = ACTIONS(2222), + [sym_val_date] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2224), + [sym__str_single_quotes] = ACTIONS(2224), + [sym__str_back_ticks] = ACTIONS(2224), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2224), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2224), + [anon_sym_err_GT] = ACTIONS(2222), + [anon_sym_out_GT] = ACTIONS(2222), + [anon_sym_e_GT] = ACTIONS(2222), + [anon_sym_o_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT] = ACTIONS(2222), + [anon_sym_err_GT_GT] = ACTIONS(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(2222), + [aux_sym_unquoted_token4] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2224), + }, + [1596] = { + [sym_comment] = STATE(1596), + [ts_builtin_sym_end] = ACTIONS(1020), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1018), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), + [anon_sym_DOT_DOT_LT] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_decimal_token4] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1018), + [anon_sym_0o] = ACTIONS(1018), + [anon_sym_0x] = ACTIONS(1018), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [aux_sym_unquoted_token1] = ACTIONS(1018), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1020), + }, + [1597] = { + [sym_comment] = STATE(1597), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(996), + [anon_sym_DOT_DOT_LT] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(996), + [aux_sym__val_number_token5] = ACTIONS(996), + [aux_sym__val_number_token6] = ACTIONS(996), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [sym_val_date] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [aux_sym_unquoted_token1] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), + }, + [1598] = { + [sym_comment] = STATE(1598), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym__newline] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_err_GT_PIPE] = ACTIONS(2173), + [anon_sym_out_GT_PIPE] = ACTIONS(2173), + [anon_sym_e_GT_PIPE] = ACTIONS(2173), + [anon_sym_o_GT_PIPE] = ACTIONS(2173), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2173), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2173), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2173), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_DASH2] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2167), + [anon_sym_DOT_DOT2] = ACTIONS(4922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), + [anon_sym_DOT_DOT_LT] = ACTIONS(2167), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4924), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4924), + [anon_sym_null] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2167), + [aux_sym__val_number_decimal_token2] = ACTIONS(2173), + [aux_sym__val_number_decimal_token3] = ACTIONS(2173), + [aux_sym__val_number_decimal_token4] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_0b] = ACTIONS(2167), + [anon_sym_0o] = ACTIONS(2167), + [anon_sym_0x] = ACTIONS(2167), + [sym_val_date] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2173), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2173), + [anon_sym_err_GT] = ACTIONS(2167), + [anon_sym_out_GT] = ACTIONS(2167), + [anon_sym_e_GT] = ACTIONS(2167), + [anon_sym_o_GT] = ACTIONS(2167), + [anon_sym_err_PLUSout_GT] = ACTIONS(2167), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2167), + [anon_sym_o_PLUSe_GT] = ACTIONS(2167), + [anon_sym_e_PLUSo_GT] = ACTIONS(2167), + [anon_sym_err_GT_GT] = ACTIONS(2173), + [anon_sym_out_GT_GT] = ACTIONS(2173), + [anon_sym_e_GT_GT] = ACTIONS(2173), + [anon_sym_o_GT_GT] = ACTIONS(2173), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2173), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2173), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2173), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2173), + [aux_sym_unquoted_token1] = ACTIONS(2167), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2173), + }, + [1599] = { + [sym_comment] = STATE(1599), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT] = ACTIONS(1000), + [anon_sym_null] = ACTIONS(1000), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [anon_sym_0b] = ACTIONS(998), + [anon_sym_0o] = ACTIONS(998), + [anon_sym_0x] = ACTIONS(998), + [sym_val_date] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [aux_sym_unquoted_token1] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [1600] = { + [sym_cell_path] = STATE(1990), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1600), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_err_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_GT_PIPE] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_GT2] = ACTIONS(1944), + [anon_sym_DASH2] = ACTIONS(1946), + [anon_sym_in2] = ACTIONS(1946), + [anon_sym_if] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_EQ_GT] = ACTIONS(1946), + [anon_sym_STAR2] = ACTIONS(1944), + [anon_sym_and2] = ACTIONS(1946), + [anon_sym_xor2] = ACTIONS(1946), + [anon_sym_or2] = ACTIONS(1946), + [anon_sym_not_DASHin2] = ACTIONS(1946), + [anon_sym_starts_DASHwith2] = ACTIONS(1946), + [anon_sym_ends_DASHwith2] = ACTIONS(1946), + [anon_sym_EQ_EQ2] = ACTIONS(1946), + [anon_sym_BANG_EQ2] = ACTIONS(1946), + [anon_sym_LT2] = ACTIONS(1944), + [anon_sym_LT_EQ2] = ACTIONS(1946), + [anon_sym_GT_EQ2] = ACTIONS(1946), + [anon_sym_EQ_TILDE2] = ACTIONS(1946), + [anon_sym_BANG_TILDE2] = ACTIONS(1946), + [anon_sym_STAR_STAR2] = ACTIONS(1946), + [anon_sym_PLUS_PLUS2] = ACTIONS(1946), + [anon_sym_SLASH2] = ACTIONS(1944), + [anon_sym_mod2] = ACTIONS(1946), + [anon_sym_SLASH_SLASH2] = ACTIONS(1946), + [anon_sym_PLUS2] = ACTIONS(1944), + [anon_sym_bit_DASHshl2] = ACTIONS(1946), + [anon_sym_bit_DASHshr2] = ACTIONS(1946), + [anon_sym_bit_DASHand2] = ACTIONS(1946), + [anon_sym_bit_DASHxor2] = ACTIONS(1946), + [anon_sym_bit_DASHor2] = ACTIONS(1946), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1944), + [anon_sym_out_GT] = ACTIONS(1944), + [anon_sym_e_GT] = ACTIONS(1944), + [anon_sym_o_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT] = ACTIONS(1944), + [anon_sym_err_GT_GT] = ACTIONS(1946), + [anon_sym_out_GT_GT] = ACTIONS(1946), + [anon_sym_e_GT_GT] = ACTIONS(1946), + [anon_sym_o_GT_GT] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(247), + }, + [1601] = { + [sym_comment] = STATE(1601), + [sym__newline] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4926), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_err_GT_PIPE] = ACTIONS(4926), + [anon_sym_out_GT_PIPE] = ACTIONS(4926), + [anon_sym_e_GT_PIPE] = ACTIONS(4926), + [anon_sym_o_GT_PIPE] = ACTIONS(4926), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4926), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4926), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4926), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_RPAREN] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH2] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4928), + [anon_sym_DOT_DOT2] = ACTIONS(4830), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4928), + [anon_sym_DOT_DOT_LT] = ACTIONS(4928), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4832), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4832), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [aux_sym__val_number_decimal_token1] = ACTIONS(4928), + [aux_sym__val_number_decimal_token2] = ACTIONS(4926), + [aux_sym__val_number_decimal_token3] = ACTIONS(4926), + [aux_sym__val_number_decimal_token4] = ACTIONS(4926), + [aux_sym__val_number_token1] = ACTIONS(4926), + [aux_sym__val_number_token2] = ACTIONS(4926), + [aux_sym__val_number_token3] = ACTIONS(4926), + [aux_sym__val_number_token4] = ACTIONS(4926), + [aux_sym__val_number_token5] = ACTIONS(4926), + [aux_sym__val_number_token6] = ACTIONS(4926), + [anon_sym_0b] = ACTIONS(4928), + [anon_sym_0o] = ACTIONS(4928), + [anon_sym_0x] = ACTIONS(4928), + [sym_val_date] = ACTIONS(4926), + [anon_sym_DQUOTE] = ACTIONS(4926), + [sym__str_single_quotes] = ACTIONS(4926), + [sym__str_back_ticks] = ACTIONS(4926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4926), + [anon_sym_err_GT] = ACTIONS(4928), + [anon_sym_out_GT] = ACTIONS(4928), + [anon_sym_e_GT] = ACTIONS(4928), + [anon_sym_o_GT] = ACTIONS(4928), + [anon_sym_err_PLUSout_GT] = ACTIONS(4928), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4928), + [anon_sym_o_PLUSe_GT] = ACTIONS(4928), + [anon_sym_e_PLUSo_GT] = ACTIONS(4928), + [anon_sym_err_GT_GT] = ACTIONS(4926), + [anon_sym_out_GT_GT] = ACTIONS(4926), + [anon_sym_e_GT_GT] = ACTIONS(4926), + [anon_sym_o_GT_GT] = ACTIONS(4926), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4926), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4926), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4926), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4926), + [aux_sym_unquoted_token1] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4926), + }, + [1602] = { + [sym_cell_path] = STATE(2008), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1602), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2072), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_in2] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_EQ_GT] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2072), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2072), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2072), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2072), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(2072), + [anon_sym_out_GT] = ACTIONS(2072), + [anon_sym_e_GT] = ACTIONS(2072), + [anon_sym_o_GT] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT] = ACTIONS(2072), + [anon_sym_err_GT_GT] = ACTIONS(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(247), + }, + [1603] = { + [sym_cell_path] = STATE(2009), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1603), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_err_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_GT_PIPE] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), + [anon_sym_RPAREN] = ACTIONS(1911), + [anon_sym_GT2] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1911), + [anon_sym_in2] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_EQ_GT] = ACTIONS(1911), + [anon_sym_STAR2] = ACTIONS(1907), + [anon_sym_and2] = ACTIONS(1911), + [anon_sym_xor2] = ACTIONS(1911), + [anon_sym_or2] = ACTIONS(1911), + [anon_sym_not_DASHin2] = ACTIONS(1911), + [anon_sym_starts_DASHwith2] = ACTIONS(1911), + [anon_sym_ends_DASHwith2] = ACTIONS(1911), + [anon_sym_EQ_EQ2] = ACTIONS(1911), + [anon_sym_BANG_EQ2] = ACTIONS(1911), + [anon_sym_LT2] = ACTIONS(1907), + [anon_sym_LT_EQ2] = ACTIONS(1911), + [anon_sym_GT_EQ2] = ACTIONS(1911), + [anon_sym_EQ_TILDE2] = ACTIONS(1911), + [anon_sym_BANG_TILDE2] = ACTIONS(1911), + [anon_sym_STAR_STAR2] = ACTIONS(1911), + [anon_sym_PLUS_PLUS2] = ACTIONS(1911), + [anon_sym_SLASH2] = ACTIONS(1907), + [anon_sym_mod2] = ACTIONS(1911), + [anon_sym_SLASH_SLASH2] = ACTIONS(1911), + [anon_sym_PLUS2] = ACTIONS(1907), + [anon_sym_bit_DASHshl2] = ACTIONS(1911), + [anon_sym_bit_DASHshr2] = ACTIONS(1911), + [anon_sym_bit_DASHand2] = ACTIONS(1911), + [anon_sym_bit_DASHxor2] = ACTIONS(1911), + [anon_sym_bit_DASHor2] = ACTIONS(1911), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1907), + [anon_sym_out_GT] = ACTIONS(1907), + [anon_sym_e_GT] = ACTIONS(1907), + [anon_sym_o_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT] = ACTIONS(1907), + [anon_sym_err_GT_GT] = ACTIONS(1911), + [anon_sym_out_GT_GT] = ACTIONS(1911), + [anon_sym_e_GT_GT] = ACTIONS(1911), + [anon_sym_o_GT_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), + [anon_sym_POUND] = ACTIONS(247), + }, + [1604] = { + [sym_comment] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1675), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_in2] = ACTIONS(1675), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1675), + [anon_sym_xor2] = ACTIONS(1675), + [anon_sym_or2] = ACTIONS(1675), + [anon_sym_not_DASHin2] = ACTIONS(1675), + [anon_sym_starts_DASHwith2] = ACTIONS(1675), + [anon_sym_ends_DASHwith2] = ACTIONS(1675), + [anon_sym_EQ_EQ2] = ACTIONS(1675), + [anon_sym_BANG_EQ2] = ACTIONS(1675), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1675), + [anon_sym_GT_EQ2] = ACTIONS(1675), + [anon_sym_EQ_TILDE2] = ACTIONS(1675), + [anon_sym_BANG_TILDE2] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_STAR_STAR2] = ACTIONS(1675), + [anon_sym_PLUS_PLUS2] = ACTIONS(1675), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1675), + [anon_sym_SLASH_SLASH2] = ACTIONS(1675), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1675), + [anon_sym_bit_DASHshr2] = ACTIONS(1675), + [anon_sym_bit_DASHand2] = ACTIONS(1675), + [anon_sym_bit_DASHxor2] = ACTIONS(1675), + [anon_sym_bit_DASHor2] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(4930), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), + }, + [1605] = { + [sym_comment] = STATE(1605), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1004), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [aux_sym_unquoted_token1] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1004), + }, + [1606] = { + [sym_cell_path] = STATE(1688), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1606), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(963), + [anon_sym_in2] = ACTIONS(963), + [anon_sym_if] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_EQ_GT] = ACTIONS(963), + [anon_sym_STAR2] = ACTIONS(961), + [anon_sym_and2] = ACTIONS(963), + [anon_sym_xor2] = ACTIONS(963), + [anon_sym_or2] = ACTIONS(963), + [anon_sym_not_DASHin2] = ACTIONS(963), + [anon_sym_starts_DASHwith2] = ACTIONS(963), + [anon_sym_ends_DASHwith2] = ACTIONS(963), + [anon_sym_EQ_EQ2] = ACTIONS(963), + [anon_sym_BANG_EQ2] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_LT_EQ2] = ACTIONS(963), + [anon_sym_GT_EQ2] = ACTIONS(963), + [anon_sym_EQ_TILDE2] = ACTIONS(963), + [anon_sym_BANG_TILDE2] = ACTIONS(963), + [anon_sym_STAR_STAR2] = ACTIONS(963), + [anon_sym_PLUS_PLUS2] = ACTIONS(963), + [anon_sym_SLASH2] = ACTIONS(961), + [anon_sym_mod2] = ACTIONS(963), + [anon_sym_SLASH_SLASH2] = ACTIONS(963), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_bit_DASHshl2] = ACTIONS(963), + [anon_sym_bit_DASHshr2] = ACTIONS(963), + [anon_sym_bit_DASHand2] = ACTIONS(963), + [anon_sym_bit_DASHxor2] = ACTIONS(963), + [anon_sym_bit_DASHor2] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), + }, + [1607] = { + [sym_cell_path] = STATE(2004), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1607), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_err_GT_PIPE] = ACTIONS(2002), + [anon_sym_out_GT_PIPE] = ACTIONS(2002), + [anon_sym_e_GT_PIPE] = ACTIONS(2002), + [anon_sym_o_GT_PIPE] = ACTIONS(2002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2002), + [anon_sym_GT2] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(2002), + [anon_sym_in2] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2002), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_EQ_GT] = ACTIONS(2002), + [anon_sym_STAR2] = ACTIONS(2000), + [anon_sym_and2] = ACTIONS(2002), + [anon_sym_xor2] = ACTIONS(2002), + [anon_sym_or2] = ACTIONS(2002), + [anon_sym_not_DASHin2] = ACTIONS(2002), + [anon_sym_starts_DASHwith2] = ACTIONS(2002), + [anon_sym_ends_DASHwith2] = ACTIONS(2002), + [anon_sym_EQ_EQ2] = ACTIONS(2002), + [anon_sym_BANG_EQ2] = ACTIONS(2002), + [anon_sym_LT2] = ACTIONS(2000), + [anon_sym_LT_EQ2] = ACTIONS(2002), + [anon_sym_GT_EQ2] = ACTIONS(2002), + [anon_sym_EQ_TILDE2] = ACTIONS(2002), + [anon_sym_BANG_TILDE2] = ACTIONS(2002), + [anon_sym_STAR_STAR2] = ACTIONS(2002), + [anon_sym_PLUS_PLUS2] = ACTIONS(2002), + [anon_sym_SLASH2] = ACTIONS(2000), + [anon_sym_mod2] = ACTIONS(2002), + [anon_sym_SLASH_SLASH2] = ACTIONS(2002), + [anon_sym_PLUS2] = ACTIONS(2000), + [anon_sym_bit_DASHshl2] = ACTIONS(2002), + [anon_sym_bit_DASHshr2] = ACTIONS(2002), + [anon_sym_bit_DASHand2] = ACTIONS(2002), + [anon_sym_bit_DASHxor2] = ACTIONS(2002), + [anon_sym_bit_DASHor2] = ACTIONS(2002), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(2000), + [anon_sym_out_GT] = ACTIONS(2000), + [anon_sym_e_GT] = ACTIONS(2000), + [anon_sym_o_GT] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT] = ACTIONS(2000), + [anon_sym_err_GT_GT] = ACTIONS(2002), + [anon_sym_out_GT_GT] = ACTIONS(2002), + [anon_sym_e_GT_GT] = ACTIONS(2002), + [anon_sym_o_GT_GT] = ACTIONS(2002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2002), + [anon_sym_POUND] = ACTIONS(247), + }, + [1608] = { + [sym_cell_path] = STATE(1991), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1608), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_err_GT_PIPE] = ACTIONS(1950), + [anon_sym_out_GT_PIPE] = ACTIONS(1950), + [anon_sym_e_GT_PIPE] = ACTIONS(1950), + [anon_sym_o_GT_PIPE] = ACTIONS(1950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1950), + [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_GT2] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1950), + [anon_sym_in2] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_EQ_GT] = ACTIONS(1950), + [anon_sym_STAR2] = ACTIONS(1948), + [anon_sym_and2] = ACTIONS(1950), + [anon_sym_xor2] = ACTIONS(1950), + [anon_sym_or2] = ACTIONS(1950), + [anon_sym_not_DASHin2] = ACTIONS(1950), + [anon_sym_starts_DASHwith2] = ACTIONS(1950), + [anon_sym_ends_DASHwith2] = ACTIONS(1950), + [anon_sym_EQ_EQ2] = ACTIONS(1950), + [anon_sym_BANG_EQ2] = ACTIONS(1950), + [anon_sym_LT2] = ACTIONS(1948), + [anon_sym_LT_EQ2] = ACTIONS(1950), + [anon_sym_GT_EQ2] = ACTIONS(1950), + [anon_sym_EQ_TILDE2] = ACTIONS(1950), + [anon_sym_BANG_TILDE2] = ACTIONS(1950), + [anon_sym_STAR_STAR2] = ACTIONS(1950), + [anon_sym_PLUS_PLUS2] = ACTIONS(1950), + [anon_sym_SLASH2] = ACTIONS(1948), + [anon_sym_mod2] = ACTIONS(1950), + [anon_sym_SLASH_SLASH2] = ACTIONS(1950), + [anon_sym_PLUS2] = ACTIONS(1948), + [anon_sym_bit_DASHshl2] = ACTIONS(1950), + [anon_sym_bit_DASHshr2] = ACTIONS(1950), + [anon_sym_bit_DASHand2] = ACTIONS(1950), + [anon_sym_bit_DASHxor2] = ACTIONS(1950), + [anon_sym_bit_DASHor2] = ACTIONS(1950), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1948), + [anon_sym_out_GT] = ACTIONS(1948), + [anon_sym_e_GT] = ACTIONS(1948), + [anon_sym_o_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT] = ACTIONS(1948), + [anon_sym_err_GT_GT] = ACTIONS(1950), + [anon_sym_out_GT_GT] = ACTIONS(1950), + [anon_sym_e_GT_GT] = ACTIONS(1950), + [anon_sym_o_GT_GT] = ACTIONS(1950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(247), + }, + [1609] = { + [sym_comment] = STATE(1609), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(4932), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(978), + [anon_sym_0o] = ACTIONS(978), + [anon_sym_0x] = ACTIONS(978), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), + }, + [1610] = { + [sym_comment] = STATE(1610), + [sym_long_flag_identifier] = ACTIONS(4934), + [sym__newline] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_err_GT_PIPE] = ACTIONS(4936), + [anon_sym_out_GT_PIPE] = ACTIONS(4936), + [anon_sym_e_GT_PIPE] = ACTIONS(4936), + [anon_sym_o_GT_PIPE] = ACTIONS(4936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_DASH2] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_RBRACE] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4936), + [anon_sym_DOT_DOT_LT] = ACTIONS(4936), + [anon_sym_null] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4938), + [anon_sym_false] = ACTIONS(4938), + [aux_sym__val_number_decimal_token1] = ACTIONS(4938), + [aux_sym__val_number_decimal_token2] = ACTIONS(4936), + [aux_sym__val_number_decimal_token3] = ACTIONS(4936), + [aux_sym__val_number_decimal_token4] = ACTIONS(4936), + [aux_sym__val_number_token1] = ACTIONS(4938), + [aux_sym__val_number_token2] = ACTIONS(4938), + [aux_sym__val_number_token3] = ACTIONS(4938), + [aux_sym__val_number_token4] = ACTIONS(4938), + [aux_sym__val_number_token5] = ACTIONS(4936), + [aux_sym__val_number_token6] = ACTIONS(4938), + [anon_sym_0b] = ACTIONS(4938), + [anon_sym_0o] = ACTIONS(4938), + [anon_sym_0x] = ACTIONS(4938), + [sym_val_date] = ACTIONS(4938), + [anon_sym_DQUOTE] = ACTIONS(4936), + [sym__str_single_quotes] = ACTIONS(4936), + [sym__str_back_ticks] = ACTIONS(4936), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4936), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4936), + [anon_sym_err_GT] = ACTIONS(4938), + [anon_sym_out_GT] = ACTIONS(4938), + [anon_sym_e_GT] = ACTIONS(4938), + [anon_sym_o_GT] = ACTIONS(4938), + [anon_sym_err_PLUSout_GT] = ACTIONS(4938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4938), + [anon_sym_o_PLUSe_GT] = ACTIONS(4938), + [anon_sym_e_PLUSo_GT] = ACTIONS(4938), + [anon_sym_err_GT_GT] = ACTIONS(4936), + [anon_sym_out_GT_GT] = ACTIONS(4936), + [anon_sym_e_GT_GT] = ACTIONS(4936), + [anon_sym_o_GT_GT] = ACTIONS(4936), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4936), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4936), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4936), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4936), + [anon_sym_EQ2] = ACTIONS(4940), + [aux_sym_unquoted_token1] = ACTIONS(4938), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4936), + }, + [1611] = { + [sym_cell_path] = STATE(1993), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1611), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_err_GT_PIPE] = ACTIONS(1962), + [anon_sym_out_GT_PIPE] = ACTIONS(1962), + [anon_sym_e_GT_PIPE] = ACTIONS(1962), + [anon_sym_o_GT_PIPE] = ACTIONS(1962), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1962), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1962), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1962), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1962), + [anon_sym_RPAREN] = ACTIONS(1962), + [anon_sym_GT2] = ACTIONS(1960), + [anon_sym_DASH2] = ACTIONS(1962), + [anon_sym_in2] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_RBRACE] = ACTIONS(1962), + [anon_sym_EQ_GT] = ACTIONS(1962), + [anon_sym_STAR2] = ACTIONS(1960), + [anon_sym_and2] = ACTIONS(1962), + [anon_sym_xor2] = ACTIONS(1962), + [anon_sym_or2] = ACTIONS(1962), + [anon_sym_not_DASHin2] = ACTIONS(1962), + [anon_sym_starts_DASHwith2] = ACTIONS(1962), + [anon_sym_ends_DASHwith2] = ACTIONS(1962), + [anon_sym_EQ_EQ2] = ACTIONS(1962), + [anon_sym_BANG_EQ2] = ACTIONS(1962), + [anon_sym_LT2] = ACTIONS(1960), + [anon_sym_LT_EQ2] = ACTIONS(1962), + [anon_sym_GT_EQ2] = ACTIONS(1962), + [anon_sym_EQ_TILDE2] = ACTIONS(1962), + [anon_sym_BANG_TILDE2] = ACTIONS(1962), + [anon_sym_STAR_STAR2] = ACTIONS(1962), + [anon_sym_PLUS_PLUS2] = ACTIONS(1962), + [anon_sym_SLASH2] = ACTIONS(1960), + [anon_sym_mod2] = ACTIONS(1962), + [anon_sym_SLASH_SLASH2] = ACTIONS(1962), + [anon_sym_PLUS2] = ACTIONS(1960), + [anon_sym_bit_DASHshl2] = ACTIONS(1962), + [anon_sym_bit_DASHshr2] = ACTIONS(1962), + [anon_sym_bit_DASHand2] = ACTIONS(1962), + [anon_sym_bit_DASHxor2] = ACTIONS(1962), + [anon_sym_bit_DASHor2] = ACTIONS(1962), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1960), + [anon_sym_out_GT] = ACTIONS(1960), + [anon_sym_e_GT] = ACTIONS(1960), + [anon_sym_o_GT] = ACTIONS(1960), + [anon_sym_err_PLUSout_GT] = ACTIONS(1960), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), + [anon_sym_o_PLUSe_GT] = ACTIONS(1960), + [anon_sym_e_PLUSo_GT] = ACTIONS(1960), + [anon_sym_err_GT_GT] = ACTIONS(1962), + [anon_sym_out_GT_GT] = ACTIONS(1962), + [anon_sym_e_GT_GT] = ACTIONS(1962), + [anon_sym_o_GT_GT] = ACTIONS(1962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(247), + }, + [1612] = { + [sym_comment] = STATE(1612), + [anon_sym_EQ] = ACTIONS(4942), + [anon_sym_PLUS_EQ] = ACTIONS(4944), + [anon_sym_DASH_EQ] = ACTIONS(4944), + [anon_sym_STAR_EQ] = ACTIONS(4944), + [anon_sym_SLASH_EQ] = ACTIONS(4944), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4944), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_GT2] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1032), + [anon_sym_STAR2] = ACTIONS(1030), + [anon_sym_and2] = ACTIONS(1032), + [anon_sym_xor2] = ACTIONS(1032), + [anon_sym_or2] = ACTIONS(1032), + [anon_sym_not_DASHin2] = ACTIONS(1032), + [anon_sym_starts_DASHwith2] = ACTIONS(1032), + [anon_sym_ends_DASHwith2] = ACTIONS(1032), + [anon_sym_EQ_EQ2] = ACTIONS(1032), + [anon_sym_BANG_EQ2] = ACTIONS(1032), + [anon_sym_LT2] = ACTIONS(1030), + [anon_sym_LT_EQ2] = ACTIONS(1032), + [anon_sym_GT_EQ2] = ACTIONS(1032), + [anon_sym_EQ_TILDE2] = ACTIONS(1032), + [anon_sym_BANG_TILDE2] = ACTIONS(1032), + [anon_sym_STAR_STAR2] = ACTIONS(1032), + [anon_sym_PLUS_PLUS2] = ACTIONS(1030), + [anon_sym_SLASH2] = ACTIONS(1030), + [anon_sym_mod2] = ACTIONS(1032), + [anon_sym_SLASH_SLASH2] = ACTIONS(1032), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_bit_DASHshl2] = ACTIONS(1032), + [anon_sym_bit_DASHshr2] = ACTIONS(1032), + [anon_sym_bit_DASHand2] = ACTIONS(1032), + [anon_sym_bit_DASHxor2] = ACTIONS(1032), + [anon_sym_bit_DASHor2] = ACTIONS(1032), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [anon_sym_err_GT_GT] = ACTIONS(1032), + [anon_sym_out_GT_GT] = ACTIONS(1032), + [anon_sym_e_GT_GT] = ACTIONS(1032), + [anon_sym_o_GT_GT] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(247), + }, + [1613] = { + [sym_cell_path] = STATE(1994), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1613), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_err_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_GT_PIPE] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_GT2] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1970), + [anon_sym_in2] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_EQ_GT] = ACTIONS(1970), + [anon_sym_STAR2] = ACTIONS(1968), + [anon_sym_and2] = ACTIONS(1970), + [anon_sym_xor2] = ACTIONS(1970), + [anon_sym_or2] = ACTIONS(1970), + [anon_sym_not_DASHin2] = ACTIONS(1970), + [anon_sym_starts_DASHwith2] = ACTIONS(1970), + [anon_sym_ends_DASHwith2] = ACTIONS(1970), + [anon_sym_EQ_EQ2] = ACTIONS(1970), + [anon_sym_BANG_EQ2] = ACTIONS(1970), + [anon_sym_LT2] = ACTIONS(1968), + [anon_sym_LT_EQ2] = ACTIONS(1970), + [anon_sym_GT_EQ2] = ACTIONS(1970), + [anon_sym_EQ_TILDE2] = ACTIONS(1970), + [anon_sym_BANG_TILDE2] = ACTIONS(1970), + [anon_sym_STAR_STAR2] = ACTIONS(1970), + [anon_sym_PLUS_PLUS2] = ACTIONS(1970), + [anon_sym_SLASH2] = ACTIONS(1968), + [anon_sym_mod2] = ACTIONS(1970), + [anon_sym_SLASH_SLASH2] = ACTIONS(1970), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_bit_DASHshl2] = ACTIONS(1970), + [anon_sym_bit_DASHshr2] = ACTIONS(1970), + [anon_sym_bit_DASHand2] = ACTIONS(1970), + [anon_sym_bit_DASHxor2] = ACTIONS(1970), + [anon_sym_bit_DASHor2] = ACTIONS(1970), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), + [anon_sym_err_GT_GT] = ACTIONS(1970), + [anon_sym_out_GT_GT] = ACTIONS(1970), + [anon_sym_e_GT_GT] = ACTIONS(1970), + [anon_sym_o_GT_GT] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), + [anon_sym_POUND] = ACTIONS(247), + }, + [1614] = { + [sym_comment] = STATE(1614), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(992), + [anon_sym_DOT_DOT_LT] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(992), + [aux_sym__val_number_token5] = ACTIONS(992), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_0b] = ACTIONS(990), + [anon_sym_0o] = ACTIONS(990), + [anon_sym_0x] = ACTIONS(990), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_unquoted_token1] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), + }, + [1615] = { + [sym_comment] = STATE(1615), + [sym__newline] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_err_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_GT_PIPE] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2248), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2248), + [anon_sym_DASH2] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_DOT_DOT] = ACTIONS(2248), + [anon_sym_LPAREN2] = ACTIONS(2250), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2248), + [anon_sym_DOT_DOT_LT] = ACTIONS(2248), + [anon_sym_null] = ACTIONS(2248), + [anon_sym_true] = ACTIONS(2248), + [anon_sym_false] = ACTIONS(2248), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2248), + [aux_sym__val_number_decimal_token3] = ACTIONS(2248), + [aux_sym__val_number_decimal_token4] = ACTIONS(2248), + [aux_sym__val_number_token1] = ACTIONS(2248), + [aux_sym__val_number_token2] = ACTIONS(2248), + [aux_sym__val_number_token3] = ACTIONS(2248), + [aux_sym__val_number_token4] = ACTIONS(2248), + [aux_sym__val_number_token5] = ACTIONS(2248), + [aux_sym__val_number_token6] = ACTIONS(2248), + [anon_sym_0b] = ACTIONS(2248), + [anon_sym_0o] = ACTIONS(2248), + [anon_sym_0x] = ACTIONS(2248), + [sym_val_date] = ACTIONS(2248), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym__str_single_quotes] = ACTIONS(2250), + [sym__str_back_ticks] = ACTIONS(2250), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), + [anon_sym_err_GT] = ACTIONS(2248), + [anon_sym_out_GT] = ACTIONS(2248), + [anon_sym_e_GT] = ACTIONS(2248), + [anon_sym_o_GT] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT] = ACTIONS(2248), + [anon_sym_err_GT_GT] = ACTIONS(2248), + [anon_sym_out_GT_GT] = ACTIONS(2248), + [anon_sym_e_GT_GT] = ACTIONS(2248), + [anon_sym_o_GT_GT] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2248), + [aux_sym_unquoted_token1] = ACTIONS(2248), + [aux_sym_unquoted_token4] = ACTIONS(2248), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2250), + }, + [1616] = { + [sym_comment] = STATE(1616), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [1617] = { + [sym_comment] = STATE(1617), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1618] = { + [sym_comment] = STATE(1618), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [aux_sym_unquoted_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), + }, + [1619] = { + [sym_cell_path] = STATE(2006), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1619), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2006), + [anon_sym_err_GT_PIPE] = ACTIONS(2006), + [anon_sym_out_GT_PIPE] = ACTIONS(2006), + [anon_sym_e_GT_PIPE] = ACTIONS(2006), + [anon_sym_o_GT_PIPE] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2006), + [anon_sym_RPAREN] = ACTIONS(2006), + [anon_sym_GT2] = ACTIONS(2004), + [anon_sym_DASH2] = ACTIONS(2006), + [anon_sym_in2] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_EQ_GT] = ACTIONS(2006), + [anon_sym_STAR2] = ACTIONS(2004), + [anon_sym_and2] = ACTIONS(2006), + [anon_sym_xor2] = ACTIONS(2006), + [anon_sym_or2] = ACTIONS(2006), + [anon_sym_not_DASHin2] = ACTIONS(2006), + [anon_sym_starts_DASHwith2] = ACTIONS(2006), + [anon_sym_ends_DASHwith2] = ACTIONS(2006), + [anon_sym_EQ_EQ2] = ACTIONS(2006), + [anon_sym_BANG_EQ2] = ACTIONS(2006), + [anon_sym_LT2] = ACTIONS(2004), + [anon_sym_LT_EQ2] = ACTIONS(2006), + [anon_sym_GT_EQ2] = ACTIONS(2006), + [anon_sym_EQ_TILDE2] = ACTIONS(2006), + [anon_sym_BANG_TILDE2] = ACTIONS(2006), + [anon_sym_STAR_STAR2] = ACTIONS(2006), + [anon_sym_PLUS_PLUS2] = ACTIONS(2006), + [anon_sym_SLASH2] = ACTIONS(2004), + [anon_sym_mod2] = ACTIONS(2006), + [anon_sym_SLASH_SLASH2] = ACTIONS(2006), + [anon_sym_PLUS2] = ACTIONS(2004), + [anon_sym_bit_DASHshl2] = ACTIONS(2006), + [anon_sym_bit_DASHshr2] = ACTIONS(2006), + [anon_sym_bit_DASHand2] = ACTIONS(2006), + [anon_sym_bit_DASHxor2] = ACTIONS(2006), + [anon_sym_bit_DASHor2] = ACTIONS(2006), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(2004), + [anon_sym_out_GT] = ACTIONS(2004), + [anon_sym_e_GT] = ACTIONS(2004), + [anon_sym_o_GT] = ACTIONS(2004), + [anon_sym_err_PLUSout_GT] = ACTIONS(2004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2004), + [anon_sym_o_PLUSe_GT] = ACTIONS(2004), + [anon_sym_e_PLUSo_GT] = ACTIONS(2004), + [anon_sym_err_GT_GT] = ACTIONS(2006), + [anon_sym_out_GT_GT] = ACTIONS(2006), + [anon_sym_e_GT_GT] = ACTIONS(2006), + [anon_sym_o_GT_GT] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(247), + }, + [1620] = { + [sym_comment] = STATE(1620), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym__newline] = ACTIONS(2165), + [anon_sym_SEMI] = ACTIONS(2165), + [anon_sym_PIPE] = ACTIONS(2165), + [anon_sym_err_GT_PIPE] = ACTIONS(2165), + [anon_sym_out_GT_PIPE] = ACTIONS(2165), + [anon_sym_e_GT_PIPE] = ACTIONS(2165), + [anon_sym_o_GT_PIPE] = ACTIONS(2165), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2165), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2165), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2165), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_DOLLAR] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2165), + [anon_sym_DASH2] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_DOT_DOT2] = ACTIONS(4946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2159), + [anon_sym_DOT_DOT_LT] = ACTIONS(2159), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4948), + [anon_sym_null] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2165), + [anon_sym_false] = ACTIONS(2165), + [aux_sym__val_number_decimal_token1] = ACTIONS(2159), + [aux_sym__val_number_decimal_token2] = ACTIONS(2165), + [aux_sym__val_number_decimal_token3] = ACTIONS(2165), + [aux_sym__val_number_decimal_token4] = ACTIONS(2165), + [aux_sym__val_number_token1] = ACTIONS(2165), + [aux_sym__val_number_token2] = ACTIONS(2165), + [aux_sym__val_number_token3] = ACTIONS(2165), + [aux_sym__val_number_token4] = ACTIONS(2165), + [aux_sym__val_number_token5] = ACTIONS(2165), + [aux_sym__val_number_token6] = ACTIONS(2165), + [anon_sym_0b] = ACTIONS(2159), + [anon_sym_0o] = ACTIONS(2159), + [anon_sym_0x] = ACTIONS(2159), + [sym_val_date] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(2165), + [sym__str_single_quotes] = ACTIONS(2165), + [sym__str_back_ticks] = ACTIONS(2165), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2165), + [anon_sym_err_GT] = ACTIONS(2159), + [anon_sym_out_GT] = ACTIONS(2159), + [anon_sym_e_GT] = ACTIONS(2159), + [anon_sym_o_GT] = ACTIONS(2159), + [anon_sym_err_PLUSout_GT] = ACTIONS(2159), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2159), + [anon_sym_o_PLUSe_GT] = ACTIONS(2159), + [anon_sym_e_PLUSo_GT] = ACTIONS(2159), + [anon_sym_err_GT_GT] = ACTIONS(2165), + [anon_sym_out_GT_GT] = ACTIONS(2165), + [anon_sym_e_GT_GT] = ACTIONS(2165), + [anon_sym_o_GT_GT] = ACTIONS(2165), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2165), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2165), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2165), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2165), + [aux_sym_unquoted_token1] = ACTIONS(2159), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2165), + }, + [1621] = { + [sym_comment] = STATE(1621), + [ts_builtin_sym_end] = ACTIONS(2127), + [sym__newline] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_err_GT_PIPE] = ACTIONS(2127), + [anon_sym_out_GT_PIPE] = ACTIONS(2127), + [anon_sym_e_GT_PIPE] = ACTIONS(2127), + [anon_sym_o_GT_PIPE] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_DASH2] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_DOT_DOT2] = ACTIONS(2125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2125), + [anon_sym_DOT_DOT_LT] = ACTIONS(2125), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2127), + [anon_sym_null] = ACTIONS(2127), + [anon_sym_true] = ACTIONS(2127), + [anon_sym_false] = ACTIONS(2127), + [aux_sym__val_number_decimal_token1] = ACTIONS(2125), + [aux_sym__val_number_decimal_token2] = ACTIONS(2127), + [aux_sym__val_number_decimal_token3] = ACTIONS(2127), + [aux_sym__val_number_decimal_token4] = ACTIONS(2127), + [aux_sym__val_number_token1] = ACTIONS(2127), + [aux_sym__val_number_token2] = ACTIONS(2127), + [aux_sym__val_number_token3] = ACTIONS(2127), + [aux_sym__val_number_token4] = ACTIONS(2127), + [aux_sym__val_number_token5] = ACTIONS(2127), + [aux_sym__val_number_token6] = ACTIONS(2127), + [anon_sym_0b] = ACTIONS(2125), + [anon_sym_0o] = ACTIONS(2125), + [anon_sym_0x] = ACTIONS(2125), + [sym_val_date] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [sym__str_single_quotes] = ACTIONS(2127), + [sym__str_back_ticks] = ACTIONS(2127), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2127), + [anon_sym_err_GT] = ACTIONS(2125), + [anon_sym_out_GT] = ACTIONS(2125), + [anon_sym_e_GT] = ACTIONS(2125), + [anon_sym_o_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT] = ACTIONS(2125), + [anon_sym_err_GT_GT] = ACTIONS(2127), + [anon_sym_out_GT_GT] = ACTIONS(2127), + [anon_sym_e_GT_GT] = ACTIONS(2127), + [anon_sym_o_GT_GT] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2127), + [aux_sym_unquoted_token1] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2127), + }, + [1622] = { + [sym_comment] = STATE(1622), + [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(1866), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [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), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1866), + [anon_sym_0o] = ACTIONS(1866), + [anon_sym_0x] = ACTIONS(1866), + [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(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [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(1866), + [aux_sym_unquoted_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [1623] = { + [sym_comment] = STATE(1623), + [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(1890), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = 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), + [aux_sym_unquoted_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [1624] = { + [sym_comment] = STATE(1624), + [anon_sym_EQ] = ACTIONS(4950), + [anon_sym_PLUS_EQ] = ACTIONS(4952), + [anon_sym_DASH_EQ] = ACTIONS(4952), + [anon_sym_STAR_EQ] = ACTIONS(4952), + [anon_sym_SLASH_EQ] = ACTIONS(4952), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4952), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_GT2] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_in2] = ACTIONS(1032), + [anon_sym_STAR2] = ACTIONS(1030), + [anon_sym_and2] = ACTIONS(1032), + [anon_sym_xor2] = ACTIONS(1032), + [anon_sym_or2] = ACTIONS(1032), + [anon_sym_not_DASHin2] = ACTIONS(1032), + [anon_sym_starts_DASHwith2] = ACTIONS(1032), + [anon_sym_ends_DASHwith2] = ACTIONS(1032), + [anon_sym_EQ_EQ2] = ACTIONS(1032), + [anon_sym_BANG_EQ2] = ACTIONS(1032), + [anon_sym_LT2] = ACTIONS(1030), + [anon_sym_LT_EQ2] = ACTIONS(1032), + [anon_sym_GT_EQ2] = ACTIONS(1032), + [anon_sym_EQ_TILDE2] = ACTIONS(1032), + [anon_sym_BANG_TILDE2] = ACTIONS(1032), + [anon_sym_STAR_STAR2] = ACTIONS(1032), + [anon_sym_PLUS_PLUS2] = ACTIONS(1030), + [anon_sym_SLASH2] = ACTIONS(1030), + [anon_sym_mod2] = ACTIONS(1032), + [anon_sym_SLASH_SLASH2] = ACTIONS(1032), + [anon_sym_PLUS2] = ACTIONS(1030), + [anon_sym_bit_DASHshl2] = ACTIONS(1032), + [anon_sym_bit_DASHshr2] = ACTIONS(1032), + [anon_sym_bit_DASHand2] = ACTIONS(1032), + [anon_sym_bit_DASHxor2] = ACTIONS(1032), + [anon_sym_bit_DASHor2] = ACTIONS(1032), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [anon_sym_err_GT_GT] = ACTIONS(1032), + [anon_sym_out_GT_GT] = ACTIONS(1032), + [anon_sym_e_GT_GT] = ACTIONS(1032), + [anon_sym_o_GT_GT] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(247), + }, + [1625] = { + [sym_comment] = STATE(1625), + [ts_builtin_sym_end] = ACTIONS(4826), + [sym__newline] = ACTIONS(4826), + [anon_sym_SEMI] = ACTIONS(4826), + [anon_sym_PIPE] = ACTIONS(4826), + [anon_sym_err_GT_PIPE] = ACTIONS(4826), + [anon_sym_out_GT_PIPE] = ACTIONS(4826), + [anon_sym_e_GT_PIPE] = ACTIONS(4826), + [anon_sym_o_GT_PIPE] = ACTIONS(4826), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4826), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4826), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4826), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4826), + [anon_sym_LBRACK] = ACTIONS(4826), + [anon_sym_LPAREN] = ACTIONS(4826), + [anon_sym_DOLLAR] = ACTIONS(4828), + [anon_sym_DASH_DASH] = ACTIONS(4826), + [anon_sym_DASH2] = ACTIONS(4828), + [anon_sym_LBRACE] = ACTIONS(4826), + [anon_sym_DOT_DOT] = ACTIONS(4828), + [anon_sym_DOT_DOT2] = ACTIONS(4910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4828), + [anon_sym_DOT_DOT_LT] = ACTIONS(4828), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4912), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4912), + [anon_sym_null] = ACTIONS(4826), + [anon_sym_true] = ACTIONS(4826), + [anon_sym_false] = ACTIONS(4826), + [aux_sym__val_number_decimal_token1] = ACTIONS(4828), + [aux_sym__val_number_decimal_token2] = ACTIONS(4826), + [aux_sym__val_number_decimal_token3] = ACTIONS(4826), + [aux_sym__val_number_decimal_token4] = ACTIONS(4826), + [aux_sym__val_number_token1] = ACTIONS(4826), + [aux_sym__val_number_token2] = ACTIONS(4826), + [aux_sym__val_number_token3] = ACTIONS(4826), + [aux_sym__val_number_token4] = ACTIONS(4826), + [aux_sym__val_number_token5] = ACTIONS(4826), + [aux_sym__val_number_token6] = ACTIONS(4826), + [anon_sym_0b] = ACTIONS(4828), + [anon_sym_0o] = ACTIONS(4828), + [anon_sym_0x] = ACTIONS(4828), + [sym_val_date] = ACTIONS(4826), + [anon_sym_DQUOTE] = ACTIONS(4826), + [sym__str_single_quotes] = ACTIONS(4826), + [sym__str_back_ticks] = ACTIONS(4826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4826), + [anon_sym_err_GT] = ACTIONS(4828), + [anon_sym_out_GT] = ACTIONS(4828), + [anon_sym_e_GT] = ACTIONS(4828), + [anon_sym_o_GT] = ACTIONS(4828), + [anon_sym_err_PLUSout_GT] = ACTIONS(4828), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4828), + [anon_sym_o_PLUSe_GT] = ACTIONS(4828), + [anon_sym_e_PLUSo_GT] = ACTIONS(4828), + [anon_sym_err_GT_GT] = ACTIONS(4826), + [anon_sym_out_GT_GT] = ACTIONS(4826), + [anon_sym_e_GT_GT] = ACTIONS(4826), + [anon_sym_o_GT_GT] = ACTIONS(4826), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4826), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4826), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4826), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4826), + [aux_sym_unquoted_token1] = ACTIONS(4828), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4826), + }, + [1626] = { + [sym_comment] = STATE(1626), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_DOT_DOT_LT] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(986), + }, + [1627] = { + [sym_comment] = STATE(1627), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym__newline] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_err_GT_PIPE] = ACTIONS(2185), + [anon_sym_out_GT_PIPE] = ACTIONS(2185), + [anon_sym_e_GT_PIPE] = ACTIONS(2185), + [anon_sym_o_GT_PIPE] = ACTIONS(2185), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2185), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2185), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2185), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_DASH2] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_DOT_DOT2] = ACTIONS(2183), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2183), + [anon_sym_DOT_DOT_LT] = ACTIONS(2183), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2185), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2185), + [anon_sym_null] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [aux_sym__val_number_decimal_token1] = ACTIONS(2183), + [aux_sym__val_number_decimal_token2] = ACTIONS(2185), + [aux_sym__val_number_decimal_token3] = ACTIONS(2185), + [aux_sym__val_number_decimal_token4] = ACTIONS(2185), + [aux_sym__val_number_token1] = ACTIONS(2185), + [aux_sym__val_number_token2] = ACTIONS(2185), + [aux_sym__val_number_token3] = ACTIONS(2185), + [aux_sym__val_number_token4] = ACTIONS(2185), + [aux_sym__val_number_token5] = ACTIONS(2185), + [aux_sym__val_number_token6] = ACTIONS(2185), + [anon_sym_0b] = ACTIONS(2183), + [anon_sym_0o] = ACTIONS(2183), + [anon_sym_0x] = ACTIONS(2183), + [sym_val_date] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [sym__str_single_quotes] = ACTIONS(2185), + [sym__str_back_ticks] = ACTIONS(2185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2185), + [anon_sym_err_GT] = ACTIONS(2183), + [anon_sym_out_GT] = ACTIONS(2183), + [anon_sym_e_GT] = ACTIONS(2183), + [anon_sym_o_GT] = ACTIONS(2183), + [anon_sym_err_PLUSout_GT] = ACTIONS(2183), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2183), + [anon_sym_o_PLUSe_GT] = ACTIONS(2183), + [anon_sym_e_PLUSo_GT] = ACTIONS(2183), + [anon_sym_err_GT_GT] = ACTIONS(2185), + [anon_sym_out_GT_GT] = ACTIONS(2185), + [anon_sym_e_GT_GT] = ACTIONS(2185), + [anon_sym_o_GT_GT] = ACTIONS(2185), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2185), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2185), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2185), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2185), + [aux_sym_unquoted_token1] = ACTIONS(2183), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2185), + }, + [1628] = { + [sym_comment] = STATE(1628), + [sym__newline] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_err_GT_PIPE] = ACTIONS(4956), + [anon_sym_out_GT_PIPE] = ACTIONS(4956), + [anon_sym_e_GT_PIPE] = ACTIONS(4956), + [anon_sym_o_GT_PIPE] = ACTIONS(4956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_RPAREN] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4956), + [anon_sym_DOT_DOT_LT] = ACTIONS(4956), + [anon_sym_null] = ACTIONS(4958), + [anon_sym_true] = ACTIONS(4958), + [anon_sym_false] = ACTIONS(4958), + [aux_sym__val_number_decimal_token1] = ACTIONS(4958), + [aux_sym__val_number_decimal_token2] = ACTIONS(4958), + [aux_sym__val_number_decimal_token3] = ACTIONS(4956), + [aux_sym__val_number_decimal_token4] = ACTIONS(4956), + [aux_sym__val_number_token1] = ACTIONS(4958), + [aux_sym__val_number_token2] = ACTIONS(4958), + [aux_sym__val_number_token3] = ACTIONS(4958), + [aux_sym__val_number_token4] = ACTIONS(4958), + [aux_sym__val_number_token5] = ACTIONS(4958), + [aux_sym__val_number_token6] = ACTIONS(4958), + [anon_sym_0b] = ACTIONS(4958), + [anon_sym_0o] = ACTIONS(4958), + [anon_sym_0x] = ACTIONS(4958), + [sym_val_date] = ACTIONS(4958), + [anon_sym_DQUOTE] = ACTIONS(4956), + [sym__str_single_quotes] = ACTIONS(4956), + [sym__str_back_ticks] = ACTIONS(4956), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4956), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4956), + [anon_sym_err_GT] = ACTIONS(4958), + [anon_sym_out_GT] = ACTIONS(4958), + [anon_sym_e_GT] = ACTIONS(4958), + [anon_sym_o_GT] = ACTIONS(4958), + [anon_sym_err_PLUSout_GT] = ACTIONS(4958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4958), + [anon_sym_o_PLUSe_GT] = ACTIONS(4958), + [anon_sym_e_PLUSo_GT] = ACTIONS(4958), + [anon_sym_err_GT_GT] = ACTIONS(4956), + [anon_sym_out_GT_GT] = ACTIONS(4956), + [anon_sym_e_GT_GT] = ACTIONS(4956), + [anon_sym_o_GT_GT] = ACTIONS(4956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4956), + [anon_sym_EQ2] = ACTIONS(4960), + [sym_short_flag_identifier] = ACTIONS(4962), + [aux_sym_unquoted_token1] = ACTIONS(4958), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4956), + }, + [1629] = { + [sym_comment] = STATE(1629), + [sym__newline] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_err_GT_PIPE] = ACTIONS(2189), + [anon_sym_out_GT_PIPE] = ACTIONS(2189), + [anon_sym_e_GT_PIPE] = ACTIONS(2189), + [anon_sym_o_GT_PIPE] = ACTIONS(2189), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2189), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2189), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2189), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_RPAREN] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_DASH2] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_DOT_DOT] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2189), + [anon_sym_DOT_DOT_LT] = ACTIONS(2189), + [anon_sym_null] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [aux_sym__val_number_decimal_token1] = ACTIONS(2187), + [aux_sym__val_number_decimal_token2] = ACTIONS(2189), + [aux_sym__val_number_decimal_token3] = ACTIONS(2189), + [aux_sym__val_number_decimal_token4] = ACTIONS(2189), + [aux_sym__val_number_token1] = ACTIONS(2189), + [aux_sym__val_number_token2] = ACTIONS(2189), + [aux_sym__val_number_token3] = ACTIONS(2189), + [aux_sym__val_number_token4] = ACTIONS(2189), + [aux_sym__val_number_token5] = ACTIONS(2189), + [aux_sym__val_number_token6] = ACTIONS(2189), + [anon_sym_0b] = ACTIONS(2187), + [anon_sym_0o] = ACTIONS(2187), + [anon_sym_0x] = ACTIONS(2187), + [sym_val_date] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [sym__str_single_quotes] = ACTIONS(2189), + [sym__str_back_ticks] = ACTIONS(2189), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2189), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2189), + [anon_sym_err_GT] = ACTIONS(2187), + [anon_sym_out_GT] = ACTIONS(2187), + [anon_sym_e_GT] = ACTIONS(2187), + [anon_sym_o_GT] = ACTIONS(2187), + [anon_sym_err_PLUSout_GT] = ACTIONS(2187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2187), + [anon_sym_o_PLUSe_GT] = ACTIONS(2187), + [anon_sym_e_PLUSo_GT] = ACTIONS(2187), + [anon_sym_err_GT_GT] = ACTIONS(2189), + [anon_sym_out_GT_GT] = ACTIONS(2189), + [anon_sym_e_GT_GT] = ACTIONS(2189), + [anon_sym_o_GT_GT] = ACTIONS(2189), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2189), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2189), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2189), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2189), + [aux_sym_unquoted_token1] = ACTIONS(2187), + [aux_sym_unquoted_token2] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2189), + }, + [1630] = { + [sym_comment] = STATE(1630), + [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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [aux_sym__immediate_decimal_token2] = ACTIONS(4966), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [1631] = { + [sym_comment] = STATE(1631), + [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(1878), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_DOT_DOT] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1886), + [anon_sym_DOT_DOT_LT] = ACTIONS(1886), + [anon_sym_null] = ACTIONS(1886), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [aux_sym__val_number_decimal_token1] = ACTIONS(1878), + [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), + [aux_sym__val_number_token4] = ACTIONS(1886), + [aux_sym__val_number_token5] = ACTIONS(1886), + [aux_sym__val_number_token6] = ACTIONS(1886), + [anon_sym_0b] = ACTIONS(1878), + [anon_sym_0o] = ACTIONS(1878), + [anon_sym_0x] = ACTIONS(1878), + [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(1878), + [anon_sym_out_GT] = ACTIONS(1878), + [anon_sym_e_GT] = ACTIONS(1878), + [anon_sym_o_GT] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT] = ACTIONS(1878), + [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(1878), + [aux_sym_unquoted_token2] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1886), + }, + [1632] = { + [sym_cell_path] = STATE(1984), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1632), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1927), + [anon_sym_err_GT_PIPE] = ACTIONS(1927), + [anon_sym_out_GT_PIPE] = ACTIONS(1927), + [anon_sym_e_GT_PIPE] = ACTIONS(1927), + [anon_sym_o_GT_PIPE] = ACTIONS(1927), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_GT2] = ACTIONS(1925), + [anon_sym_DASH2] = ACTIONS(1927), + [anon_sym_in2] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_EQ_GT] = ACTIONS(1927), + [anon_sym_STAR2] = ACTIONS(1925), + [anon_sym_and2] = ACTIONS(1927), + [anon_sym_xor2] = ACTIONS(1927), + [anon_sym_or2] = ACTIONS(1927), + [anon_sym_not_DASHin2] = ACTIONS(1927), + [anon_sym_starts_DASHwith2] = ACTIONS(1927), + [anon_sym_ends_DASHwith2] = ACTIONS(1927), + [anon_sym_EQ_EQ2] = ACTIONS(1927), + [anon_sym_BANG_EQ2] = ACTIONS(1927), + [anon_sym_LT2] = ACTIONS(1925), + [anon_sym_LT_EQ2] = ACTIONS(1927), + [anon_sym_GT_EQ2] = ACTIONS(1927), + [anon_sym_EQ_TILDE2] = ACTIONS(1927), + [anon_sym_BANG_TILDE2] = ACTIONS(1927), + [anon_sym_STAR_STAR2] = ACTIONS(1927), + [anon_sym_PLUS_PLUS2] = ACTIONS(1927), + [anon_sym_SLASH2] = ACTIONS(1925), + [anon_sym_mod2] = ACTIONS(1927), + [anon_sym_SLASH_SLASH2] = ACTIONS(1927), + [anon_sym_PLUS2] = ACTIONS(1925), + [anon_sym_bit_DASHshl2] = ACTIONS(1927), + [anon_sym_bit_DASHshr2] = ACTIONS(1927), + [anon_sym_bit_DASHand2] = ACTIONS(1927), + [anon_sym_bit_DASHxor2] = ACTIONS(1927), + [anon_sym_bit_DASHor2] = ACTIONS(1927), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1925), + [anon_sym_out_GT] = ACTIONS(1925), + [anon_sym_e_GT] = ACTIONS(1925), + [anon_sym_o_GT] = ACTIONS(1925), + [anon_sym_err_PLUSout_GT] = ACTIONS(1925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), + [anon_sym_o_PLUSe_GT] = ACTIONS(1925), + [anon_sym_e_PLUSo_GT] = ACTIONS(1925), + [anon_sym_err_GT_GT] = ACTIONS(1927), + [anon_sym_out_GT_GT] = ACTIONS(1927), + [anon_sym_e_GT_GT] = ACTIONS(1927), + [anon_sym_o_GT_GT] = ACTIONS(1927), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), + [anon_sym_POUND] = ACTIONS(247), + }, + [1633] = { + [sym_path] = STATE(1774), + [sym_comment] = STATE(1633), + [aux_sym_cell_path_repeat1] = STATE(1633), + [ts_builtin_sym_end] = ACTIONS(973), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(973), + [anon_sym_DOT_DOT_LT] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(971), + [aux_sym__val_number_decimal_token2] = ACTIONS(973), + [aux_sym__val_number_decimal_token3] = ACTIONS(973), + [aux_sym__val_number_decimal_token4] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(971), + [anon_sym_0o] = ACTIONS(971), + [anon_sym_0x] = ACTIONS(971), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [aux_sym_unquoted_token1] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(973), + }, + [1634] = { + [sym_path] = STATE(1774), + [sym_comment] = STATE(1634), + [aux_sym_cell_path_repeat1] = STATE(1633), + [ts_builtin_sym_end] = ACTIONS(969), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_DASH_DASH] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(969), + [anon_sym_DOT_DOT_LT] = ACTIONS(969), + [anon_sym_null] = ACTIONS(969), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(969), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(969), + [aux_sym__val_number_token1] = ACTIONS(969), + [aux_sym__val_number_token2] = ACTIONS(969), + [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_token4] = ACTIONS(969), + [aux_sym__val_number_token5] = ACTIONS(969), + [aux_sym__val_number_token6] = ACTIONS(969), + [anon_sym_0b] = ACTIONS(967), + [anon_sym_0o] = ACTIONS(967), + [anon_sym_0x] = ACTIONS(967), + [sym_val_date] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [aux_sym_unquoted_token1] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(969), + }, + [1635] = { + [sym_comment] = STATE(1635), + [sym__newline] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_err_GT_PIPE] = ACTIONS(2238), + [anon_sym_out_GT_PIPE] = ACTIONS(2238), + [anon_sym_e_GT_PIPE] = ACTIONS(2238), + [anon_sym_o_GT_PIPE] = ACTIONS(2238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_RPAREN] = ACTIONS(2238), + [anon_sym_DOLLAR] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_DOT_DOT] = ACTIONS(2234), + [anon_sym_LPAREN2] = ACTIONS(2236), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2238), + [anon_sym_DOT_DOT_LT] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2238), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [aux_sym__val_number_decimal_token1] = ACTIONS(2234), + [aux_sym__val_number_decimal_token2] = ACTIONS(2238), + [aux_sym__val_number_decimal_token3] = ACTIONS(2238), + [aux_sym__val_number_decimal_token4] = ACTIONS(2238), + [aux_sym__val_number_token1] = ACTIONS(2238), + [aux_sym__val_number_token2] = ACTIONS(2238), + [aux_sym__val_number_token3] = ACTIONS(2238), + [aux_sym__val_number_token4] = ACTIONS(2238), + [aux_sym__val_number_token5] = ACTIONS(2238), + [aux_sym__val_number_token6] = ACTIONS(2238), + [anon_sym_0b] = ACTIONS(2234), + [anon_sym_0o] = ACTIONS(2234), + [anon_sym_0x] = ACTIONS(2234), + [sym_val_date] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [sym__str_single_quotes] = ACTIONS(2238), + [sym__str_back_ticks] = ACTIONS(2238), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2238), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2234), + [anon_sym_out_GT] = ACTIONS(2234), + [anon_sym_e_GT] = ACTIONS(2234), + [anon_sym_o_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT] = ACTIONS(2234), + [anon_sym_err_GT_GT] = ACTIONS(2238), + [anon_sym_out_GT_GT] = ACTIONS(2238), + [anon_sym_e_GT_GT] = ACTIONS(2238), + [anon_sym_o_GT_GT] = ACTIONS(2238), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), + [aux_sym_unquoted_token1] = ACTIONS(2234), + [aux_sym_unquoted_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2238), + }, + [1636] = { + [sym_cell_path] = STATE(1997), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1636), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_err_GT_PIPE] = ACTIONS(1974), + [anon_sym_out_GT_PIPE] = ACTIONS(1974), + [anon_sym_e_GT_PIPE] = ACTIONS(1974), + [anon_sym_o_GT_PIPE] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), + [anon_sym_RPAREN] = ACTIONS(1974), + [anon_sym_GT2] = ACTIONS(1972), + [anon_sym_DASH2] = ACTIONS(1974), + [anon_sym_in2] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_EQ_GT] = ACTIONS(1974), + [anon_sym_STAR2] = ACTIONS(1972), + [anon_sym_and2] = ACTIONS(1974), + [anon_sym_xor2] = ACTIONS(1974), + [anon_sym_or2] = ACTIONS(1974), + [anon_sym_not_DASHin2] = ACTIONS(1974), + [anon_sym_starts_DASHwith2] = ACTIONS(1974), + [anon_sym_ends_DASHwith2] = ACTIONS(1974), + [anon_sym_EQ_EQ2] = ACTIONS(1974), + [anon_sym_BANG_EQ2] = ACTIONS(1974), + [anon_sym_LT2] = ACTIONS(1972), + [anon_sym_LT_EQ2] = ACTIONS(1974), + [anon_sym_GT_EQ2] = ACTIONS(1974), + [anon_sym_EQ_TILDE2] = ACTIONS(1974), + [anon_sym_BANG_TILDE2] = ACTIONS(1974), + [anon_sym_STAR_STAR2] = ACTIONS(1974), + [anon_sym_PLUS_PLUS2] = ACTIONS(1974), + [anon_sym_SLASH2] = ACTIONS(1972), + [anon_sym_mod2] = ACTIONS(1974), + [anon_sym_SLASH_SLASH2] = ACTIONS(1974), + [anon_sym_PLUS2] = ACTIONS(1972), + [anon_sym_bit_DASHshl2] = ACTIONS(1974), + [anon_sym_bit_DASHshr2] = ACTIONS(1974), + [anon_sym_bit_DASHand2] = ACTIONS(1974), + [anon_sym_bit_DASHxor2] = ACTIONS(1974), + [anon_sym_bit_DASHor2] = ACTIONS(1974), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1972), + [anon_sym_out_GT] = ACTIONS(1972), + [anon_sym_e_GT] = ACTIONS(1972), + [anon_sym_o_GT] = ACTIONS(1972), + [anon_sym_err_PLUSout_GT] = ACTIONS(1972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), + [anon_sym_o_PLUSe_GT] = ACTIONS(1972), + [anon_sym_e_PLUSo_GT] = ACTIONS(1972), + [anon_sym_err_GT_GT] = ACTIONS(1974), + [anon_sym_out_GT_GT] = ACTIONS(1974), + [anon_sym_e_GT_GT] = ACTIONS(1974), + [anon_sym_o_GT_GT] = ACTIONS(1974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [anon_sym_POUND] = ACTIONS(247), + }, + [1637] = { + [sym__expr_parenthesized_immediate] = STATE(7999), + [sym_comment] = STATE(1637), + [sym__newline] = ACTIONS(4971), + [anon_sym_SEMI] = ACTIONS(4971), + [anon_sym_PIPE] = ACTIONS(4971), + [anon_sym_err_GT_PIPE] = ACTIONS(4971), + [anon_sym_out_GT_PIPE] = ACTIONS(4971), + [anon_sym_e_GT_PIPE] = ACTIONS(4971), + [anon_sym_o_GT_PIPE] = ACTIONS(4971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_DOLLAR] = ACTIONS(4973), + [anon_sym_DASH_DASH] = ACTIONS(4971), + [anon_sym_DASH2] = ACTIONS(4973), + [anon_sym_LBRACE] = ACTIONS(4971), + [anon_sym_RBRACE] = ACTIONS(4971), + [anon_sym_DOT_DOT] = ACTIONS(4973), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4971), + [anon_sym_DOT_DOT_LT] = ACTIONS(4971), + [anon_sym_null] = ACTIONS(4971), + [anon_sym_true] = ACTIONS(4971), + [anon_sym_false] = ACTIONS(4971), + [aux_sym__val_number_decimal_token1] = ACTIONS(4973), + [aux_sym__val_number_decimal_token2] = ACTIONS(4971), + [aux_sym__val_number_decimal_token3] = ACTIONS(4971), + [aux_sym__val_number_decimal_token4] = ACTIONS(4971), + [aux_sym__val_number_token1] = ACTIONS(4971), + [aux_sym__val_number_token2] = ACTIONS(4971), + [aux_sym__val_number_token3] = ACTIONS(4971), + [aux_sym__val_number_token4] = ACTIONS(4971), + [aux_sym__val_number_token5] = ACTIONS(4971), + [aux_sym__val_number_token6] = ACTIONS(4971), + [anon_sym_0b] = ACTIONS(4973), + [anon_sym_0o] = ACTIONS(4973), + [anon_sym_0x] = ACTIONS(4973), + [sym_val_date] = ACTIONS(4971), + [anon_sym_DQUOTE] = ACTIONS(4971), + [sym__str_single_quotes] = ACTIONS(4971), + [sym__str_back_ticks] = ACTIONS(4971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4971), + [anon_sym_err_GT] = ACTIONS(4973), + [anon_sym_out_GT] = ACTIONS(4973), + [anon_sym_e_GT] = ACTIONS(4973), + [anon_sym_o_GT] = ACTIONS(4973), + [anon_sym_err_PLUSout_GT] = ACTIONS(4973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4973), + [anon_sym_o_PLUSe_GT] = ACTIONS(4973), + [anon_sym_e_PLUSo_GT] = ACTIONS(4973), + [anon_sym_err_GT_GT] = ACTIONS(4971), + [anon_sym_out_GT_GT] = ACTIONS(4971), + [anon_sym_e_GT_GT] = ACTIONS(4971), + [anon_sym_o_GT_GT] = ACTIONS(4971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4971), + [aux_sym_unquoted_token1] = ACTIONS(4973), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4971), + }, + [1638] = { + [sym__expr_parenthesized_immediate] = STATE(7999), + [sym_comment] = STATE(1638), + [sym__newline] = ACTIONS(4975), + [anon_sym_SEMI] = ACTIONS(4975), + [anon_sym_PIPE] = ACTIONS(4975), + [anon_sym_err_GT_PIPE] = ACTIONS(4975), + [anon_sym_out_GT_PIPE] = ACTIONS(4975), + [anon_sym_e_GT_PIPE] = ACTIONS(4975), + [anon_sym_o_GT_PIPE] = ACTIONS(4975), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4975), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4975), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4975), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4977), + [anon_sym_RPAREN] = ACTIONS(4975), + [anon_sym_DOLLAR] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(4975), + [anon_sym_DASH2] = ACTIONS(4977), + [anon_sym_LBRACE] = ACTIONS(4975), + [anon_sym_RBRACE] = ACTIONS(4975), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4975), + [anon_sym_DOT_DOT_LT] = ACTIONS(4975), + [anon_sym_null] = ACTIONS(4975), + [anon_sym_true] = ACTIONS(4975), + [anon_sym_false] = ACTIONS(4975), + [aux_sym__val_number_decimal_token1] = ACTIONS(4977), + [aux_sym__val_number_decimal_token2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4975), + [aux_sym__val_number_decimal_token4] = ACTIONS(4975), + [aux_sym__val_number_token1] = ACTIONS(4975), + [aux_sym__val_number_token2] = ACTIONS(4975), + [aux_sym__val_number_token3] = ACTIONS(4975), + [aux_sym__val_number_token4] = ACTIONS(4975), + [aux_sym__val_number_token5] = ACTIONS(4975), + [aux_sym__val_number_token6] = ACTIONS(4975), + [anon_sym_0b] = ACTIONS(4977), + [anon_sym_0o] = ACTIONS(4977), + [anon_sym_0x] = ACTIONS(4977), + [sym_val_date] = ACTIONS(4975), + [anon_sym_DQUOTE] = ACTIONS(4975), + [sym__str_single_quotes] = ACTIONS(4975), + [sym__str_back_ticks] = ACTIONS(4975), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4975), + [anon_sym_err_GT] = ACTIONS(4977), + [anon_sym_out_GT] = ACTIONS(4977), + [anon_sym_e_GT] = ACTIONS(4977), + [anon_sym_o_GT] = ACTIONS(4977), + [anon_sym_err_PLUSout_GT] = ACTIONS(4977), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4977), + [anon_sym_o_PLUSe_GT] = ACTIONS(4977), + [anon_sym_e_PLUSo_GT] = ACTIONS(4977), + [anon_sym_err_GT_GT] = ACTIONS(4975), + [anon_sym_out_GT_GT] = ACTIONS(4975), + [anon_sym_e_GT_GT] = ACTIONS(4975), + [anon_sym_o_GT_GT] = ACTIONS(4975), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4975), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4975), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4975), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4975), + [aux_sym_unquoted_token1] = ACTIONS(4977), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4975), + }, + [1639] = { + [sym_cell_path] = STATE(1998), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1639), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_err_GT_PIPE] = ACTIONS(1986), + [anon_sym_out_GT_PIPE] = ACTIONS(1986), + [anon_sym_e_GT_PIPE] = ACTIONS(1986), + [anon_sym_o_GT_PIPE] = ACTIONS(1986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1986), + [anon_sym_RPAREN] = ACTIONS(1986), + [anon_sym_GT2] = ACTIONS(1984), + [anon_sym_DASH2] = ACTIONS(1986), + [anon_sym_in2] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_EQ_GT] = ACTIONS(1986), + [anon_sym_STAR2] = ACTIONS(1984), + [anon_sym_and2] = ACTIONS(1986), + [anon_sym_xor2] = ACTIONS(1986), + [anon_sym_or2] = ACTIONS(1986), + [anon_sym_not_DASHin2] = ACTIONS(1986), + [anon_sym_starts_DASHwith2] = ACTIONS(1986), + [anon_sym_ends_DASHwith2] = ACTIONS(1986), + [anon_sym_EQ_EQ2] = ACTIONS(1986), + [anon_sym_BANG_EQ2] = ACTIONS(1986), + [anon_sym_LT2] = ACTIONS(1984), + [anon_sym_LT_EQ2] = ACTIONS(1986), + [anon_sym_GT_EQ2] = ACTIONS(1986), + [anon_sym_EQ_TILDE2] = ACTIONS(1986), + [anon_sym_BANG_TILDE2] = ACTIONS(1986), + [anon_sym_STAR_STAR2] = ACTIONS(1986), + [anon_sym_PLUS_PLUS2] = ACTIONS(1986), + [anon_sym_SLASH2] = ACTIONS(1984), + [anon_sym_mod2] = ACTIONS(1986), + [anon_sym_SLASH_SLASH2] = ACTIONS(1986), + [anon_sym_PLUS2] = ACTIONS(1984), + [anon_sym_bit_DASHshl2] = ACTIONS(1986), + [anon_sym_bit_DASHshr2] = ACTIONS(1986), + [anon_sym_bit_DASHand2] = ACTIONS(1986), + [anon_sym_bit_DASHxor2] = ACTIONS(1986), + [anon_sym_bit_DASHor2] = ACTIONS(1986), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1984), + [anon_sym_out_GT] = ACTIONS(1984), + [anon_sym_e_GT] = ACTIONS(1984), + [anon_sym_o_GT] = ACTIONS(1984), + [anon_sym_err_PLUSout_GT] = ACTIONS(1984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), + [anon_sym_o_PLUSe_GT] = ACTIONS(1984), + [anon_sym_e_PLUSo_GT] = ACTIONS(1984), + [anon_sym_err_GT_GT] = ACTIONS(1986), + [anon_sym_out_GT_GT] = ACTIONS(1986), + [anon_sym_e_GT_GT] = ACTIONS(1986), + [anon_sym_o_GT_GT] = ACTIONS(1986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(247), + }, + [1640] = { + [sym_comment] = STATE(1640), + [sym__newline] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_err_GT_PIPE] = ACTIONS(2256), + [anon_sym_out_GT_PIPE] = ACTIONS(2256), + [anon_sym_e_GT_PIPE] = ACTIONS(2256), + [anon_sym_o_GT_PIPE] = ACTIONS(2256), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2256), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2256), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2256), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2256), + [anon_sym_DOLLAR] = ACTIONS(2252), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_DASH2] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2256), + [anon_sym_DOT_DOT] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2256), + [anon_sym_DOT_DOT_LT] = ACTIONS(2256), + [anon_sym_null] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2256), + [anon_sym_false] = ACTIONS(2256), + [aux_sym__val_number_decimal_token1] = ACTIONS(2252), + [aux_sym__val_number_decimal_token2] = ACTIONS(2256), + [aux_sym__val_number_decimal_token3] = ACTIONS(2256), + [aux_sym__val_number_decimal_token4] = ACTIONS(2256), + [aux_sym__val_number_token1] = ACTIONS(2256), + [aux_sym__val_number_token2] = ACTIONS(2256), + [aux_sym__val_number_token3] = ACTIONS(2256), + [aux_sym__val_number_token4] = ACTIONS(2256), + [aux_sym__val_number_token5] = ACTIONS(2256), + [aux_sym__val_number_token6] = ACTIONS(2256), + [anon_sym_0b] = ACTIONS(2252), + [anon_sym_0o] = ACTIONS(2252), + [anon_sym_0x] = ACTIONS(2252), + [sym_val_date] = ACTIONS(2256), + [anon_sym_DQUOTE] = ACTIONS(2256), + [sym__str_single_quotes] = ACTIONS(2256), + [sym__str_back_ticks] = ACTIONS(2256), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2256), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2256), + [anon_sym_err_GT] = ACTIONS(2252), + [anon_sym_out_GT] = ACTIONS(2252), + [anon_sym_e_GT] = ACTIONS(2252), + [anon_sym_o_GT] = ACTIONS(2252), + [anon_sym_err_PLUSout_GT] = ACTIONS(2252), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2252), + [anon_sym_o_PLUSe_GT] = ACTIONS(2252), + [anon_sym_e_PLUSo_GT] = ACTIONS(2252), + [anon_sym_err_GT_GT] = ACTIONS(2256), + [anon_sym_out_GT_GT] = ACTIONS(2256), + [anon_sym_e_GT_GT] = ACTIONS(2256), + [anon_sym_o_GT_GT] = ACTIONS(2256), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2256), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2256), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2256), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2256), + [aux_sym_unquoted_token1] = ACTIONS(2252), + [aux_sym_unquoted_token2] = ACTIONS(2258), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2256), + }, + [1641] = { + [sym__expr_parenthesized_immediate] = STATE(7999), + [sym_comment] = STATE(1641), + [sym__newline] = ACTIONS(4979), + [anon_sym_SEMI] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4979), + [anon_sym_err_GT_PIPE] = ACTIONS(4979), + [anon_sym_out_GT_PIPE] = ACTIONS(4979), + [anon_sym_e_GT_PIPE] = ACTIONS(4979), + [anon_sym_o_GT_PIPE] = ACTIONS(4979), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4979), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4979), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4979), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4979), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4979), + [anon_sym_DOLLAR] = ACTIONS(4981), + [anon_sym_DASH_DASH] = ACTIONS(4979), + [anon_sym_DASH2] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4979), + [anon_sym_RBRACE] = ACTIONS(4979), [anon_sym_DOT_DOT] = ACTIONS(4981), - [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4979), + [anon_sym_true] = ACTIONS(4979), + [anon_sym_false] = ACTIONS(4979), + [aux_sym__val_number_decimal_token1] = ACTIONS(4981), + [aux_sym__val_number_decimal_token2] = ACTIONS(4979), + [aux_sym__val_number_decimal_token3] = ACTIONS(4979), + [aux_sym__val_number_decimal_token4] = ACTIONS(4979), + [aux_sym__val_number_token1] = ACTIONS(4979), + [aux_sym__val_number_token2] = ACTIONS(4979), + [aux_sym__val_number_token3] = ACTIONS(4979), + [aux_sym__val_number_token4] = ACTIONS(4979), + [aux_sym__val_number_token5] = ACTIONS(4979), + [aux_sym__val_number_token6] = ACTIONS(4979), + [anon_sym_0b] = ACTIONS(4981), + [anon_sym_0o] = ACTIONS(4981), + [anon_sym_0x] = ACTIONS(4981), + [sym_val_date] = ACTIONS(4979), + [anon_sym_DQUOTE] = ACTIONS(4979), + [sym__str_single_quotes] = ACTIONS(4979), + [sym__str_back_ticks] = ACTIONS(4979), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4979), + [anon_sym_err_GT] = ACTIONS(4981), + [anon_sym_out_GT] = ACTIONS(4981), + [anon_sym_e_GT] = ACTIONS(4981), + [anon_sym_o_GT] = ACTIONS(4981), + [anon_sym_err_PLUSout_GT] = ACTIONS(4981), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4981), + [anon_sym_o_PLUSe_GT] = ACTIONS(4981), + [anon_sym_e_PLUSo_GT] = ACTIONS(4981), + [anon_sym_err_GT_GT] = ACTIONS(4979), + [anon_sym_out_GT_GT] = ACTIONS(4979), + [anon_sym_e_GT_GT] = ACTIONS(4979), + [anon_sym_o_GT_GT] = ACTIONS(4979), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4979), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4979), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4979), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4979), + [aux_sym_unquoted_token1] = ACTIONS(4981), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4979), + }, + [1642] = { + [sym_comment] = STATE(1642), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_in2] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_EQ_GT] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1006), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1006), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), + }, + [1643] = { + [sym_cell_path] = STATE(1999), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1643), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_err_GT_PIPE] = ACTIONS(1990), + [anon_sym_out_GT_PIPE] = ACTIONS(1990), + [anon_sym_e_GT_PIPE] = ACTIONS(1990), + [anon_sym_o_GT_PIPE] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(1990), + [anon_sym_GT2] = ACTIONS(1988), + [anon_sym_DASH2] = ACTIONS(1990), + [anon_sym_in2] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_EQ_GT] = ACTIONS(1990), + [anon_sym_STAR2] = ACTIONS(1988), + [anon_sym_and2] = ACTIONS(1990), + [anon_sym_xor2] = ACTIONS(1990), + [anon_sym_or2] = ACTIONS(1990), + [anon_sym_not_DASHin2] = ACTIONS(1990), + [anon_sym_starts_DASHwith2] = ACTIONS(1990), + [anon_sym_ends_DASHwith2] = ACTIONS(1990), + [anon_sym_EQ_EQ2] = ACTIONS(1990), + [anon_sym_BANG_EQ2] = ACTIONS(1990), + [anon_sym_LT2] = ACTIONS(1988), + [anon_sym_LT_EQ2] = ACTIONS(1990), + [anon_sym_GT_EQ2] = ACTIONS(1990), + [anon_sym_EQ_TILDE2] = ACTIONS(1990), + [anon_sym_BANG_TILDE2] = ACTIONS(1990), + [anon_sym_STAR_STAR2] = ACTIONS(1990), + [anon_sym_PLUS_PLUS2] = ACTIONS(1990), + [anon_sym_SLASH2] = ACTIONS(1988), + [anon_sym_mod2] = ACTIONS(1990), + [anon_sym_SLASH_SLASH2] = ACTIONS(1990), + [anon_sym_PLUS2] = ACTIONS(1988), + [anon_sym_bit_DASHshl2] = ACTIONS(1990), + [anon_sym_bit_DASHshr2] = ACTIONS(1990), + [anon_sym_bit_DASHand2] = ACTIONS(1990), + [anon_sym_bit_DASHxor2] = ACTIONS(1990), + [anon_sym_bit_DASHor2] = ACTIONS(1990), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1988), + [anon_sym_out_GT] = ACTIONS(1988), + [anon_sym_e_GT] = ACTIONS(1988), + [anon_sym_o_GT] = ACTIONS(1988), + [anon_sym_err_PLUSout_GT] = ACTIONS(1988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1988), + [anon_sym_o_PLUSe_GT] = ACTIONS(1988), + [anon_sym_e_PLUSo_GT] = ACTIONS(1988), + [anon_sym_err_GT_GT] = ACTIONS(1990), + [anon_sym_out_GT_GT] = ACTIONS(1990), + [anon_sym_e_GT_GT] = ACTIONS(1990), + [anon_sym_o_GT_GT] = ACTIONS(1990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(247), + }, + [1644] = { + [sym__expr_parenthesized_immediate] = STATE(7999), + [sym_comment] = STATE(1644), + [sym__newline] = ACTIONS(4983), + [anon_sym_SEMI] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_err_GT_PIPE] = ACTIONS(4983), + [anon_sym_out_GT_PIPE] = ACTIONS(4983), + [anon_sym_e_GT_PIPE] = ACTIONS(4983), + [anon_sym_o_GT_PIPE] = ACTIONS(4983), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4983), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4983), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4983), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4985), + [anon_sym_RPAREN] = ACTIONS(4983), + [anon_sym_DOLLAR] = ACTIONS(4985), + [anon_sym_DASH_DASH] = ACTIONS(4983), + [anon_sym_DASH2] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(4983), + [anon_sym_DOT_DOT] = ACTIONS(4985), + [anon_sym_LPAREN2] = ACTIONS(4249), [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), [anon_sym_DOT_DOT_LT] = ACTIONS(4983), - [aux_sym__val_number_decimal_token1] = ACTIONS(3414), - [aux_sym__val_number_decimal_token2] = ACTIONS(3416), - [aux_sym__val_number_decimal_token3] = ACTIONS(3418), - [aux_sym__val_number_decimal_token4] = ACTIONS(3420), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(235), - [sym__str_single_quotes] = ACTIONS(237), - [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_POUND] = ACTIONS(249), - [sym_raw_string_begin] = ACTIONS(251), - }, - [1584] = { - [sym_comment] = STATE(1584), - [aux_sym_cmd_identifier_token41] = ACTIONS(5041), - [sym__newline] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_err_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_GT_PIPE] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [aux_sym_expr_binary_token1] = ACTIONS(1640), - [aux_sym_expr_binary_token2] = ACTIONS(1640), - [aux_sym_expr_binary_token3] = ACTIONS(1640), - [aux_sym_expr_binary_token4] = ACTIONS(1640), - [aux_sym_expr_binary_token5] = ACTIONS(1640), - [aux_sym_expr_binary_token6] = ACTIONS(1640), - [aux_sym_expr_binary_token7] = ACTIONS(1640), - [aux_sym_expr_binary_token8] = ACTIONS(1640), - [aux_sym_expr_binary_token9] = ACTIONS(1640), - [aux_sym_expr_binary_token10] = ACTIONS(1640), - [aux_sym_expr_binary_token11] = ACTIONS(1640), - [aux_sym_expr_binary_token12] = ACTIONS(1640), - [aux_sym_expr_binary_token13] = ACTIONS(1640), - [aux_sym_expr_binary_token14] = ACTIONS(1640), - [aux_sym_expr_binary_token15] = ACTIONS(1640), - [aux_sym_expr_binary_token16] = ACTIONS(1640), - [aux_sym_expr_binary_token17] = ACTIONS(1640), - [aux_sym_expr_binary_token18] = ACTIONS(1640), - [aux_sym_expr_binary_token19] = ACTIONS(1640), - [aux_sym_expr_binary_token20] = ACTIONS(1640), - [aux_sym_expr_binary_token21] = ACTIONS(1640), - [aux_sym_expr_binary_token22] = ACTIONS(1640), - [aux_sym_expr_binary_token23] = ACTIONS(1640), - [aux_sym_expr_binary_token24] = ACTIONS(1640), - [aux_sym_expr_binary_token25] = ACTIONS(1640), - [aux_sym_expr_binary_token26] = ACTIONS(1640), - [aux_sym_expr_binary_token27] = ACTIONS(1640), - [aux_sym_expr_binary_token28] = ACTIONS(1640), - [anon_sym_DOT_DOT2] = ACTIONS(5029), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5031), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5031), - [sym_filesize_unit] = ACTIONS(5043), - [sym_duration_unit] = ACTIONS(5045), - [aux_sym_record_entry_token1] = ACTIONS(1640), - [anon_sym_err_GT] = ACTIONS(1628), - [anon_sym_out_GT] = ACTIONS(1628), - [anon_sym_e_GT] = ACTIONS(1628), - [anon_sym_o_GT] = ACTIONS(1628), - [anon_sym_err_PLUSout_GT] = ACTIONS(1628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), - [anon_sym_o_PLUSe_GT] = ACTIONS(1628), - [anon_sym_e_PLUSo_GT] = ACTIONS(1628), - [anon_sym_err_GT_GT] = ACTIONS(1640), - [anon_sym_out_GT_GT] = ACTIONS(1640), - [anon_sym_e_GT_GT] = ACTIONS(1640), - [anon_sym_o_GT_GT] = ACTIONS(1640), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), - [anon_sym_POUND] = ACTIONS(249), + [anon_sym_null] = ACTIONS(4983), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4983), + [aux_sym__val_number_decimal_token3] = ACTIONS(4983), + [aux_sym__val_number_decimal_token4] = ACTIONS(4983), + [aux_sym__val_number_token1] = ACTIONS(4983), + [aux_sym__val_number_token2] = ACTIONS(4983), + [aux_sym__val_number_token3] = ACTIONS(4983), + [aux_sym__val_number_token4] = ACTIONS(4983), + [aux_sym__val_number_token5] = ACTIONS(4983), + [aux_sym__val_number_token6] = ACTIONS(4983), + [anon_sym_0b] = ACTIONS(4985), + [anon_sym_0o] = ACTIONS(4985), + [anon_sym_0x] = ACTIONS(4985), + [sym_val_date] = ACTIONS(4983), + [anon_sym_DQUOTE] = ACTIONS(4983), + [sym__str_single_quotes] = ACTIONS(4983), + [sym__str_back_ticks] = ACTIONS(4983), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4983), + [anon_sym_err_GT] = ACTIONS(4985), + [anon_sym_out_GT] = ACTIONS(4985), + [anon_sym_e_GT] = ACTIONS(4985), + [anon_sym_o_GT] = ACTIONS(4985), + [anon_sym_err_PLUSout_GT] = ACTIONS(4985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4985), + [anon_sym_o_PLUSe_GT] = ACTIONS(4985), + [anon_sym_e_PLUSo_GT] = ACTIONS(4985), + [anon_sym_err_GT_GT] = ACTIONS(4983), + [anon_sym_out_GT_GT] = ACTIONS(4983), + [anon_sym_e_GT_GT] = ACTIONS(4983), + [anon_sym_o_GT_GT] = ACTIONS(4983), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4983), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4983), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4983), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4983), + [aux_sym_unquoted_token1] = ACTIONS(4985), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4983), + }, + [1645] = { + [sym_path] = STATE(1642), + [sym_comment] = STATE(1645), + [aux_sym_cell_path_repeat1] = STATE(1649), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(969), + [anon_sym_GT2] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_STAR2] = ACTIONS(967), + [anon_sym_and2] = ACTIONS(969), + [anon_sym_xor2] = ACTIONS(969), + [anon_sym_or2] = ACTIONS(969), + [anon_sym_not_DASHin2] = ACTIONS(969), + [anon_sym_starts_DASHwith2] = ACTIONS(969), + [anon_sym_ends_DASHwith2] = ACTIONS(969), + [anon_sym_EQ_EQ2] = ACTIONS(969), + [anon_sym_BANG_EQ2] = ACTIONS(969), + [anon_sym_LT2] = ACTIONS(967), + [anon_sym_LT_EQ2] = ACTIONS(969), + [anon_sym_GT_EQ2] = ACTIONS(969), + [anon_sym_EQ_TILDE2] = ACTIONS(969), + [anon_sym_BANG_TILDE2] = ACTIONS(969), + [anon_sym_STAR_STAR2] = ACTIONS(969), + [anon_sym_PLUS_PLUS2] = ACTIONS(969), + [anon_sym_SLASH2] = ACTIONS(967), + [anon_sym_mod2] = ACTIONS(969), + [anon_sym_SLASH_SLASH2] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_bit_DASHshl2] = ACTIONS(969), + [anon_sym_bit_DASHshr2] = ACTIONS(969), + [anon_sym_bit_DASHand2] = ACTIONS(969), + [anon_sym_bit_DASHxor2] = ACTIONS(969), + [anon_sym_bit_DASHor2] = ACTIONS(969), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(247), + }, + [1646] = { + [sym_comment] = STATE(1646), + [ts_builtin_sym_end] = ACTIONS(2181), + [sym__newline] = ACTIONS(2181), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_err_GT_PIPE] = ACTIONS(2181), + [anon_sym_out_GT_PIPE] = ACTIONS(2181), + [anon_sym_e_GT_PIPE] = ACTIONS(2181), + [anon_sym_o_GT_PIPE] = ACTIONS(2181), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2181), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2181), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2181), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2181), + [anon_sym_DASH2] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_DOT_DOT2] = ACTIONS(4987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2175), + [anon_sym_DOT_DOT_LT] = ACTIONS(2175), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4989), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4989), + [anon_sym_null] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [aux_sym__val_number_decimal_token1] = ACTIONS(2175), + [aux_sym__val_number_decimal_token2] = ACTIONS(2181), + [aux_sym__val_number_decimal_token3] = ACTIONS(2181), + [aux_sym__val_number_decimal_token4] = ACTIONS(2181), + [aux_sym__val_number_token1] = ACTIONS(2181), + [aux_sym__val_number_token2] = ACTIONS(2181), + [aux_sym__val_number_token3] = ACTIONS(2181), + [aux_sym__val_number_token4] = ACTIONS(2181), + [aux_sym__val_number_token5] = ACTIONS(2181), + [aux_sym__val_number_token6] = ACTIONS(2181), + [anon_sym_0b] = ACTIONS(2175), + [anon_sym_0o] = ACTIONS(2175), + [anon_sym_0x] = ACTIONS(2175), + [sym_val_date] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(2181), + [sym__str_single_quotes] = ACTIONS(2181), + [sym__str_back_ticks] = ACTIONS(2181), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2181), + [anon_sym_err_GT] = ACTIONS(2175), + [anon_sym_out_GT] = ACTIONS(2175), + [anon_sym_e_GT] = ACTIONS(2175), + [anon_sym_o_GT] = ACTIONS(2175), + [anon_sym_err_PLUSout_GT] = ACTIONS(2175), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2175), + [anon_sym_o_PLUSe_GT] = ACTIONS(2175), + [anon_sym_e_PLUSo_GT] = ACTIONS(2175), + [anon_sym_err_GT_GT] = ACTIONS(2181), + [anon_sym_out_GT_GT] = ACTIONS(2181), + [anon_sym_e_GT_GT] = ACTIONS(2181), + [anon_sym_o_GT_GT] = ACTIONS(2181), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2181), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2181), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2181), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2181), + [aux_sym_unquoted_token1] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2181), + }, + [1647] = { + [sym_cell_path] = STATE(2016), + [sym_path] = STATE(1886), + [sym_comment] = STATE(1647), + [aux_sym_cell_path_repeat1] = STATE(1664), + [sym__newline] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_GT2] = ACTIONS(1769), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_STAR2] = ACTIONS(1769), + [anon_sym_and2] = ACTIONS(1771), + [anon_sym_xor2] = ACTIONS(1771), + [anon_sym_or2] = ACTIONS(1771), + [anon_sym_not_DASHin2] = ACTIONS(1771), + [anon_sym_starts_DASHwith2] = ACTIONS(1771), + [anon_sym_ends_DASHwith2] = ACTIONS(1771), + [anon_sym_EQ_EQ2] = ACTIONS(1771), + [anon_sym_BANG_EQ2] = ACTIONS(1771), + [anon_sym_LT2] = ACTIONS(1769), + [anon_sym_LT_EQ2] = ACTIONS(1771), + [anon_sym_GT_EQ2] = ACTIONS(1771), + [anon_sym_EQ_TILDE2] = ACTIONS(1771), + [anon_sym_BANG_TILDE2] = ACTIONS(1771), + [anon_sym_STAR_STAR2] = ACTIONS(1771), + [anon_sym_PLUS_PLUS2] = ACTIONS(1771), + [anon_sym_SLASH2] = ACTIONS(1769), + [anon_sym_mod2] = ACTIONS(1771), + [anon_sym_SLASH_SLASH2] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1769), + [anon_sym_bit_DASHshl2] = ACTIONS(1771), + [anon_sym_bit_DASHshr2] = ACTIONS(1771), + [anon_sym_bit_DASHand2] = ACTIONS(1771), + [anon_sym_bit_DASHxor2] = ACTIONS(1771), + [anon_sym_bit_DASHor2] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(4991), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym_record_entry_token1] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(247), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1585), 1, - sym_comment, - ACTIONS(1596), 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(1598), 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, - [73] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1586), 1, - sym_comment, - ACTIONS(1826), 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(1828), 46, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + [1648] = { + [sym_comment] = STATE(1648), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_DOT_DOT2] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), + [anon_sym_DOT_DOT_LT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), + }, + [1649] = { + [sym_path] = STATE(1642), + [sym_comment] = STATE(1649), + [aux_sym_cell_path_repeat1] = STATE(1649), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_GT2] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(973), + [anon_sym_in2] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_STAR2] = ACTIONS(971), + [anon_sym_and2] = ACTIONS(973), + [anon_sym_xor2] = ACTIONS(973), + [anon_sym_or2] = ACTIONS(973), + [anon_sym_not_DASHin2] = ACTIONS(973), + [anon_sym_starts_DASHwith2] = ACTIONS(973), + [anon_sym_ends_DASHwith2] = ACTIONS(973), + [anon_sym_EQ_EQ2] = ACTIONS(973), + [anon_sym_BANG_EQ2] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(971), + [anon_sym_LT_EQ2] = ACTIONS(973), + [anon_sym_GT_EQ2] = ACTIONS(973), + [anon_sym_EQ_TILDE2] = ACTIONS(973), + [anon_sym_BANG_TILDE2] = ACTIONS(973), + [anon_sym_STAR_STAR2] = ACTIONS(973), + [anon_sym_PLUS_PLUS2] = ACTIONS(973), + [anon_sym_SLASH2] = ACTIONS(971), + [anon_sym_mod2] = ACTIONS(973), + [anon_sym_SLASH_SLASH2] = ACTIONS(973), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_bit_DASHshl2] = ACTIONS(973), + [anon_sym_bit_DASHshr2] = ACTIONS(973), + [anon_sym_bit_DASHand2] = ACTIONS(973), + [anon_sym_bit_DASHxor2] = ACTIONS(973), + [anon_sym_bit_DASHor2] = ACTIONS(973), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(247), + }, + [1650] = { + [sym_cell_path] = STATE(2022), + [sym_path] = STATE(1886), + [sym_comment] = STATE(1650), + [aux_sym_cell_path_repeat1] = STATE(1664), + [sym__newline] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1735), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1735), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1735), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(4991), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym_record_entry_token1] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(247), + }, + [1651] = { + [sym_comment] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1609), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1609), + [anon_sym_in2] = ACTIONS(1609), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1609), + [anon_sym_xor2] = ACTIONS(1609), + [anon_sym_or2] = ACTIONS(1609), + [anon_sym_not_DASHin2] = ACTIONS(1609), + [anon_sym_starts_DASHwith2] = ACTIONS(1609), + [anon_sym_ends_DASHwith2] = ACTIONS(1609), + [anon_sym_EQ_EQ2] = ACTIONS(1609), + [anon_sym_BANG_EQ2] = ACTIONS(1609), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1609), + [anon_sym_GT_EQ2] = ACTIONS(1609), + [anon_sym_EQ_TILDE2] = ACTIONS(1609), + [anon_sym_BANG_TILDE2] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_STAR_STAR2] = ACTIONS(1609), + [anon_sym_PLUS_PLUS2] = ACTIONS(1609), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1609), + [anon_sym_SLASH_SLASH2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1609), + [anon_sym_bit_DASHshr2] = ACTIONS(1609), + [anon_sym_bit_DASHand2] = ACTIONS(1609), + [anon_sym_bit_DASHxor2] = ACTIONS(1609), + [anon_sym_bit_DASHor2] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(4852), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + }, + [1652] = { + [sym_cell_path] = STATE(1657), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1652), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_GT2] = ACTIONS(1769), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_EQ_GT] = ACTIONS(1771), + [anon_sym_STAR2] = ACTIONS(1769), + [anon_sym_and2] = ACTIONS(1771), + [anon_sym_xor2] = ACTIONS(1771), + [anon_sym_or2] = ACTIONS(1771), + [anon_sym_not_DASHin2] = ACTIONS(1771), + [anon_sym_starts_DASHwith2] = ACTIONS(1771), + [anon_sym_ends_DASHwith2] = ACTIONS(1771), + [anon_sym_EQ_EQ2] = ACTIONS(1771), + [anon_sym_BANG_EQ2] = ACTIONS(1771), + [anon_sym_LT2] = ACTIONS(1769), + [anon_sym_LT_EQ2] = ACTIONS(1771), + [anon_sym_GT_EQ2] = ACTIONS(1771), + [anon_sym_EQ_TILDE2] = ACTIONS(1771), + [anon_sym_BANG_TILDE2] = ACTIONS(1771), + [anon_sym_STAR_STAR2] = ACTIONS(1771), + [anon_sym_PLUS_PLUS2] = ACTIONS(1771), + [anon_sym_SLASH2] = ACTIONS(1769), + [anon_sym_mod2] = ACTIONS(1771), + [anon_sym_SLASH_SLASH2] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1769), + [anon_sym_bit_DASHshl2] = ACTIONS(1771), + [anon_sym_bit_DASHshr2] = ACTIONS(1771), + [anon_sym_bit_DASHand2] = ACTIONS(1771), + [anon_sym_bit_DASHxor2] = ACTIONS(1771), + [anon_sym_bit_DASHor2] = ACTIONS(1771), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(247), + }, + [1653] = { + [sym_comment] = STATE(1653), + [ts_builtin_sym_end] = ACTIONS(1609), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_err_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_GT_PIPE] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), + [anon_sym_GT2] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1609), + [anon_sym_in2] = ACTIONS(1609), + [anon_sym_STAR2] = ACTIONS(1607), + [anon_sym_and2] = ACTIONS(1609), + [anon_sym_xor2] = ACTIONS(1609), + [anon_sym_or2] = ACTIONS(1609), + [anon_sym_not_DASHin2] = ACTIONS(1609), + [anon_sym_starts_DASHwith2] = ACTIONS(1609), + [anon_sym_ends_DASHwith2] = ACTIONS(1609), + [anon_sym_EQ_EQ2] = ACTIONS(1609), + [anon_sym_BANG_EQ2] = ACTIONS(1609), + [anon_sym_LT2] = ACTIONS(1607), + [anon_sym_LT_EQ2] = ACTIONS(1609), + [anon_sym_GT_EQ2] = ACTIONS(1609), + [anon_sym_EQ_TILDE2] = ACTIONS(1609), + [anon_sym_BANG_TILDE2] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_STAR_STAR2] = ACTIONS(1609), + [anon_sym_PLUS_PLUS2] = ACTIONS(1609), + [anon_sym_SLASH2] = ACTIONS(1607), + [anon_sym_mod2] = ACTIONS(1609), + [anon_sym_SLASH_SLASH2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1607), + [anon_sym_bit_DASHshl2] = ACTIONS(1609), + [anon_sym_bit_DASHshr2] = ACTIONS(1609), + [anon_sym_bit_DASHand2] = ACTIONS(1609), + [anon_sym_bit_DASHxor2] = ACTIONS(1609), + [anon_sym_bit_DASHor2] = ACTIONS(1609), + [anon_sym_DOT_DOT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1609), + [anon_sym_err_GT] = ACTIONS(1607), + [anon_sym_out_GT] = ACTIONS(1607), + [anon_sym_e_GT] = ACTIONS(1607), + [anon_sym_o_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT] = ACTIONS(1607), + [anon_sym_err_GT_GT] = ACTIONS(1609), + [anon_sym_out_GT_GT] = ACTIONS(1609), + [anon_sym_e_GT_GT] = ACTIONS(1609), + [anon_sym_o_GT_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), + [aux_sym_unquoted_token2] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(247), + }, + [1654] = { + [sym_comment] = STATE(1654), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_DOT_DOT] = ACTIONS(2214), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2214), + [anon_sym_DOT_DOT_LT] = ACTIONS(2214), + [anon_sym_null] = ACTIONS(2214), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(2214), + [aux_sym__val_number_token5] = ACTIONS(2214), + [aux_sym__val_number_token6] = ACTIONS(2214), + [anon_sym_0b] = ACTIONS(2214), + [anon_sym_0o] = ACTIONS(2214), + [anon_sym_0x] = ACTIONS(2214), + [sym_val_date] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2218), + [sym__str_single_quotes] = ACTIONS(2218), + [sym__str_back_ticks] = ACTIONS(2218), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2218), + [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(2214), + [aux_sym_unquoted_token4] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2218), + }, + [1655] = { + [sym_comment] = STATE(1655), + [ts_builtin_sym_end] = ACTIONS(1004), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1004), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [aux_sym_unquoted_token1] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1004), + }, + [1656] = { + [sym__expression] = STATE(5687), + [sym_expr_unary] = STATE(3905), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3905), + [sym__expr_binary_expression] = STATE(3977), + [sym_expr_parenthesized] = STATE(3599), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(3905), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3532), + [sym_val_variable] = STATE(3594), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3514), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym__flag] = STATE(2146), + [sym_short_flag] = STATE(3624), + [sym_long_flag] = STATE(3624), + [sym_comment] = STATE(1656), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_DASH2] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_DOT_DOT_LT] = ACTIONS(5006), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_true] = ACTIONS(5010), + [anon_sym_false] = ACTIONS(5010), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3467), + [aux_sym__val_number_token5] = ACTIONS(3467), + [aux_sym__val_number_token6] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(5012), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), + }, + [1657] = { + [sym_comment] = STATE(1657), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_EQ_GT] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1735), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1735), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1735), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(247), + }, + [1658] = { + [sym_comment] = STATE(1658), + [sym__newline] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_err_GT_PIPE] = ACTIONS(5014), + [anon_sym_out_GT_PIPE] = ACTIONS(5014), + [anon_sym_e_GT_PIPE] = ACTIONS(5014), + [anon_sym_o_GT_PIPE] = ACTIONS(5014), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5014), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5014), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5014), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_LPAREN] = ACTIONS(5014), + [anon_sym_RPAREN] = ACTIONS(5014), + [anon_sym_DOLLAR] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5014), + [anon_sym_DASH2] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_DOT_DOT] = ACTIONS(5016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5014), + [anon_sym_DOT_DOT_LT] = ACTIONS(5014), + [anon_sym_null] = ACTIONS(5014), + [anon_sym_true] = ACTIONS(5014), + [anon_sym_false] = ACTIONS(5014), + [aux_sym__val_number_decimal_token1] = ACTIONS(5016), + [aux_sym__val_number_decimal_token2] = ACTIONS(5014), + [aux_sym__val_number_decimal_token3] = ACTIONS(5014), + [aux_sym__val_number_decimal_token4] = ACTIONS(5014), + [aux_sym__val_number_token1] = ACTIONS(5014), + [aux_sym__val_number_token2] = ACTIONS(5014), + [aux_sym__val_number_token3] = ACTIONS(5014), + [aux_sym__val_number_token4] = ACTIONS(5014), + [aux_sym__val_number_token5] = ACTIONS(5014), + [aux_sym__val_number_token6] = ACTIONS(5014), + [anon_sym_0b] = ACTIONS(5016), + [anon_sym_0o] = ACTIONS(5016), + [anon_sym_0x] = ACTIONS(5016), + [sym_val_date] = ACTIONS(5014), + [anon_sym_DQUOTE] = ACTIONS(5014), + [sym__str_single_quotes] = ACTIONS(5014), + [sym__str_back_ticks] = ACTIONS(5014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5014), + [anon_sym_err_GT] = ACTIONS(5016), + [anon_sym_out_GT] = ACTIONS(5016), + [anon_sym_e_GT] = ACTIONS(5016), + [anon_sym_o_GT] = ACTIONS(5016), + [anon_sym_err_PLUSout_GT] = ACTIONS(5016), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5016), + [anon_sym_o_PLUSe_GT] = ACTIONS(5016), + [anon_sym_e_PLUSo_GT] = ACTIONS(5016), + [anon_sym_err_GT_GT] = ACTIONS(5014), + [anon_sym_out_GT_GT] = ACTIONS(5014), + [anon_sym_e_GT_GT] = ACTIONS(5014), + [anon_sym_o_GT_GT] = ACTIONS(5014), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5014), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5014), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5014), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5014), + [anon_sym_EQ2] = ACTIONS(5018), + [aux_sym_unquoted_token1] = ACTIONS(5016), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5014), + }, + [1659] = { + [sym__expression] = STATE(5717), + [sym_expr_unary] = STATE(3905), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3905), + [sym__expr_binary_expression] = STATE(3977), + [sym_expr_parenthesized] = STATE(3599), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(3905), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3532), + [sym_val_variable] = STATE(3594), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3514), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym__flag] = STATE(2147), + [sym_short_flag] = STATE(3624), + [sym_long_flag] = STATE(3624), + [sym_comment] = STATE(1659), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_DASH2] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_DOT_DOT_LT] = ACTIONS(5006), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_true] = ACTIONS(5010), + [anon_sym_false] = ACTIONS(5010), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3467), + [aux_sym__val_number_token5] = ACTIONS(3467), + [aux_sym__val_number_token6] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(5012), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), + }, + [1660] = { + [sym__expression] = STATE(5718), + [sym_expr_unary] = STATE(3905), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3905), + [sym__expr_binary_expression] = STATE(3977), + [sym_expr_parenthesized] = STATE(3599), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(3905), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3532), + [sym_val_variable] = STATE(3594), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3514), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym__flag] = STATE(2148), + [sym_short_flag] = STATE(3624), + [sym_long_flag] = STATE(3624), + [sym_comment] = STATE(1660), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_DASH2] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_DOT_DOT_LT] = ACTIONS(5006), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_true] = ACTIONS(5010), + [anon_sym_false] = ACTIONS(5010), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3467), + [aux_sym__val_number_token5] = ACTIONS(3467), + [aux_sym__val_number_token6] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(5012), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), + }, + [1661] = { + [sym_comment] = STATE(1661), + [sym__newline] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5020), + [anon_sym_err_GT_PIPE] = ACTIONS(5020), + [anon_sym_out_GT_PIPE] = ACTIONS(5020), + [anon_sym_e_GT_PIPE] = ACTIONS(5020), + [anon_sym_o_GT_PIPE] = ACTIONS(5020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5022), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_DOLLAR] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_DASH2] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_DOT_DOT] = ACTIONS(5022), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5020), + [anon_sym_DOT_DOT_LT] = ACTIONS(5020), + [anon_sym_null] = ACTIONS(5020), + [anon_sym_true] = ACTIONS(5020), + [anon_sym_false] = ACTIONS(5020), + [aux_sym__val_number_decimal_token1] = ACTIONS(5022), + [aux_sym__val_number_decimal_token2] = ACTIONS(5020), + [aux_sym__val_number_decimal_token3] = ACTIONS(5020), + [aux_sym__val_number_decimal_token4] = ACTIONS(5020), + [aux_sym__val_number_token1] = ACTIONS(5020), + [aux_sym__val_number_token2] = ACTIONS(5020), + [aux_sym__val_number_token3] = ACTIONS(5020), + [aux_sym__val_number_token4] = ACTIONS(5020), + [aux_sym__val_number_token5] = ACTIONS(5020), + [aux_sym__val_number_token6] = ACTIONS(5020), + [anon_sym_0b] = ACTIONS(5022), + [anon_sym_0o] = ACTIONS(5022), + [anon_sym_0x] = ACTIONS(5022), + [sym_val_date] = ACTIONS(5020), + [anon_sym_DQUOTE] = ACTIONS(5020), + [sym__str_single_quotes] = ACTIONS(5020), + [sym__str_back_ticks] = ACTIONS(5020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5020), + [anon_sym_err_GT] = ACTIONS(5022), + [anon_sym_out_GT] = ACTIONS(5022), + [anon_sym_e_GT] = ACTIONS(5022), + [anon_sym_o_GT] = ACTIONS(5022), + [anon_sym_err_PLUSout_GT] = ACTIONS(5022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5022), + [anon_sym_o_PLUSe_GT] = ACTIONS(5022), + [anon_sym_e_PLUSo_GT] = ACTIONS(5022), + [anon_sym_err_GT_GT] = ACTIONS(5020), + [anon_sym_out_GT_GT] = ACTIONS(5020), + [anon_sym_e_GT_GT] = ACTIONS(5020), + [anon_sym_o_GT_GT] = ACTIONS(5020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5020), + [aux_sym_unquoted_token1] = ACTIONS(5022), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5020), + }, + [1662] = { + [sym_comment] = STATE(1662), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(5024), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), + }, + [1663] = { + [sym_comment] = STATE(1663), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = 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), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = 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), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [1664] = { + [sym_path] = STATE(1886), + [sym_comment] = STATE(1664), + [aux_sym_cell_path_repeat1] = STATE(1668), + [sym__newline] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_GT2] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_STAR2] = ACTIONS(967), + [anon_sym_and2] = ACTIONS(969), + [anon_sym_xor2] = ACTIONS(969), + [anon_sym_or2] = ACTIONS(969), + [anon_sym_not_DASHin2] = ACTIONS(969), + [anon_sym_starts_DASHwith2] = ACTIONS(969), + [anon_sym_ends_DASHwith2] = ACTIONS(969), + [anon_sym_EQ_EQ2] = ACTIONS(969), + [anon_sym_BANG_EQ2] = ACTIONS(969), + [anon_sym_LT2] = ACTIONS(967), + [anon_sym_LT_EQ2] = ACTIONS(969), + [anon_sym_GT_EQ2] = ACTIONS(969), + [anon_sym_EQ_TILDE2] = ACTIONS(969), + [anon_sym_BANG_TILDE2] = ACTIONS(969), + [anon_sym_STAR_STAR2] = ACTIONS(969), + [anon_sym_PLUS_PLUS2] = ACTIONS(969), + [anon_sym_SLASH2] = ACTIONS(967), + [anon_sym_mod2] = ACTIONS(969), + [anon_sym_SLASH_SLASH2] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_bit_DASHshl2] = ACTIONS(969), + [anon_sym_bit_DASHshr2] = ACTIONS(969), + [anon_sym_bit_DASHand2] = ACTIONS(969), + [anon_sym_bit_DASHxor2] = ACTIONS(969), + [anon_sym_bit_DASHor2] = ACTIONS(969), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4991), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [aux_sym_record_entry_token1] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(247), + }, + [1665] = { + [sym__expression] = STATE(5734), + [sym_expr_unary] = STATE(3905), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3905), + [sym__expr_binary_expression] = STATE(3977), + [sym_expr_parenthesized] = STATE(3599), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(3905), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3532), + [sym_val_variable] = STATE(3594), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3514), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym__flag] = STATE(2149), + [sym_short_flag] = STATE(3624), + [sym_long_flag] = STATE(3624), + [sym_comment] = STATE(1665), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_DASH2] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_DOT_DOT_LT] = ACTIONS(5006), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_true] = ACTIONS(5010), + [anon_sym_false] = ACTIONS(5010), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3467), + [aux_sym__val_number_token5] = ACTIONS(3467), + [aux_sym__val_number_token6] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(5012), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), + }, + [1666] = { + [sym_comment] = STATE(1666), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym__newline] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_err_GT_PIPE] = ACTIONS(2189), + [anon_sym_out_GT_PIPE] = ACTIONS(2189), + [anon_sym_e_GT_PIPE] = ACTIONS(2189), + [anon_sym_o_GT_PIPE] = ACTIONS(2189), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2189), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2189), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2189), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_DASH2] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_DOT_DOT] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2189), + [anon_sym_DOT_DOT_LT] = ACTIONS(2189), + [anon_sym_null] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [aux_sym__val_number_decimal_token1] = ACTIONS(2187), + [aux_sym__val_number_decimal_token2] = ACTIONS(2189), + [aux_sym__val_number_decimal_token3] = ACTIONS(2189), + [aux_sym__val_number_decimal_token4] = ACTIONS(2189), + [aux_sym__val_number_token1] = ACTIONS(2189), + [aux_sym__val_number_token2] = ACTIONS(2189), + [aux_sym__val_number_token3] = ACTIONS(2189), + [aux_sym__val_number_token4] = ACTIONS(2189), + [aux_sym__val_number_token5] = ACTIONS(2189), + [aux_sym__val_number_token6] = ACTIONS(2189), + [anon_sym_0b] = ACTIONS(2187), + [anon_sym_0o] = ACTIONS(2187), + [anon_sym_0x] = ACTIONS(2187), + [sym_val_date] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [sym__str_single_quotes] = ACTIONS(2189), + [sym__str_back_ticks] = ACTIONS(2189), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2189), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2189), + [anon_sym_err_GT] = ACTIONS(2187), + [anon_sym_out_GT] = ACTIONS(2187), + [anon_sym_e_GT] = ACTIONS(2187), + [anon_sym_o_GT] = ACTIONS(2187), + [anon_sym_err_PLUSout_GT] = ACTIONS(2187), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2187), + [anon_sym_o_PLUSe_GT] = ACTIONS(2187), + [anon_sym_e_PLUSo_GT] = ACTIONS(2187), + [anon_sym_err_GT_GT] = ACTIONS(2189), + [anon_sym_out_GT_GT] = ACTIONS(2189), + [anon_sym_e_GT_GT] = ACTIONS(2189), + [anon_sym_o_GT_GT] = ACTIONS(2189), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2189), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2189), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2189), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2189), + [aux_sym_unquoted_token1] = ACTIONS(2187), + [aux_sym_unquoted_token2] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2189), + }, + [1667] = { + [sym_comment] = STATE(1667), + [sym__newline] = ACTIONS(2224), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_err_GT_PIPE] = ACTIONS(2224), + [anon_sym_out_GT_PIPE] = ACTIONS(2224), + [anon_sym_e_GT_PIPE] = ACTIONS(2224), + [anon_sym_o_GT_PIPE] = ACTIONS(2224), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2224), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2224), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2224), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_DOT_DOT] = ACTIONS(2222), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), + [anon_sym_DOT_DOT_LT] = ACTIONS(2222), + [anon_sym_null] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [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), + [aux_sym__val_number_token4] = ACTIONS(2222), + [aux_sym__val_number_token5] = ACTIONS(2222), + [aux_sym__val_number_token6] = ACTIONS(2222), + [anon_sym_0b] = ACTIONS(2222), + [anon_sym_0o] = ACTIONS(2222), + [anon_sym_0x] = ACTIONS(2222), + [sym_val_date] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2224), + [sym__str_single_quotes] = ACTIONS(2224), + [sym__str_back_ticks] = ACTIONS(2224), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2224), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2224), + [anon_sym_err_GT] = ACTIONS(2222), + [anon_sym_out_GT] = ACTIONS(2222), + [anon_sym_e_GT] = ACTIONS(2222), + [anon_sym_o_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT] = ACTIONS(2222), + [anon_sym_err_GT_GT] = ACTIONS(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(2222), + [aux_sym_unquoted_token4] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2224), + }, + [1668] = { + [sym_path] = STATE(1886), + [sym_comment] = STATE(1668), + [aux_sym_cell_path_repeat1] = STATE(1668), + [sym__newline] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_GT2] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(973), + [anon_sym_in2] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_STAR2] = ACTIONS(971), + [anon_sym_and2] = ACTIONS(973), + [anon_sym_xor2] = ACTIONS(973), + [anon_sym_or2] = ACTIONS(973), + [anon_sym_not_DASHin2] = ACTIONS(973), + [anon_sym_starts_DASHwith2] = ACTIONS(973), + [anon_sym_ends_DASHwith2] = ACTIONS(973), + [anon_sym_EQ_EQ2] = ACTIONS(973), + [anon_sym_BANG_EQ2] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(971), + [anon_sym_LT_EQ2] = ACTIONS(973), + [anon_sym_GT_EQ2] = ACTIONS(973), + [anon_sym_EQ_TILDE2] = ACTIONS(973), + [anon_sym_BANG_TILDE2] = ACTIONS(973), + [anon_sym_STAR_STAR2] = ACTIONS(973), + [anon_sym_PLUS_PLUS2] = ACTIONS(973), + [anon_sym_SLASH2] = ACTIONS(971), + [anon_sym_mod2] = ACTIONS(973), + [anon_sym_SLASH_SLASH2] = ACTIONS(973), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_bit_DASHshl2] = ACTIONS(973), + [anon_sym_bit_DASHshr2] = ACTIONS(973), + [anon_sym_bit_DASHand2] = ACTIONS(973), + [anon_sym_bit_DASHxor2] = ACTIONS(973), + [anon_sym_bit_DASHor2] = ACTIONS(973), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [aux_sym_record_entry_token1] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(247), + }, + [1669] = { + [sym__expr_parenthesized_immediate] = STATE(7505), + [sym_comment] = STATE(1669), + [sym__newline] = ACTIONS(5029), + [anon_sym_SEMI] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_err_GT_PIPE] = ACTIONS(5029), + [anon_sym_out_GT_PIPE] = ACTIONS(5029), + [anon_sym_e_GT_PIPE] = ACTIONS(5029), + [anon_sym_o_GT_PIPE] = ACTIONS(5029), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5029), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5029), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5029), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5029), + [anon_sym_LBRACK] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5029), + [anon_sym_DOLLAR] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_DASH2] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5029), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5029), + [anon_sym_DOT_DOT_LT] = ACTIONS(5029), + [anon_sym_null] = ACTIONS(5029), + [anon_sym_true] = ACTIONS(5029), + [anon_sym_false] = ACTIONS(5029), + [aux_sym__val_number_decimal_token1] = ACTIONS(5031), + [aux_sym__val_number_decimal_token2] = ACTIONS(5029), + [aux_sym__val_number_decimal_token3] = ACTIONS(5029), + [aux_sym__val_number_decimal_token4] = ACTIONS(5029), + [aux_sym__val_number_token1] = ACTIONS(5029), + [aux_sym__val_number_token2] = ACTIONS(5029), + [aux_sym__val_number_token3] = ACTIONS(5029), + [aux_sym__val_number_token4] = ACTIONS(5029), + [aux_sym__val_number_token5] = ACTIONS(5029), + [aux_sym__val_number_token6] = ACTIONS(5029), + [anon_sym_0b] = ACTIONS(5031), + [anon_sym_0o] = ACTIONS(5031), + [anon_sym_0x] = ACTIONS(5031), + [sym_val_date] = ACTIONS(5029), + [anon_sym_DQUOTE] = ACTIONS(5029), + [sym__str_single_quotes] = ACTIONS(5029), + [sym__str_back_ticks] = ACTIONS(5029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5029), + [anon_sym_err_GT] = ACTIONS(5031), + [anon_sym_out_GT] = ACTIONS(5031), + [anon_sym_e_GT] = ACTIONS(5031), + [anon_sym_o_GT] = ACTIONS(5031), + [anon_sym_err_PLUSout_GT] = ACTIONS(5031), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5031), + [anon_sym_o_PLUSe_GT] = ACTIONS(5031), + [anon_sym_e_PLUSo_GT] = ACTIONS(5031), + [anon_sym_err_GT_GT] = ACTIONS(5029), + [anon_sym_out_GT_GT] = ACTIONS(5029), + [anon_sym_e_GT_GT] = ACTIONS(5029), + [anon_sym_o_GT_GT] = ACTIONS(5029), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5029), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5029), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5029), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5029), + [aux_sym_unquoted_token1] = ACTIONS(5031), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5029), + }, + [1670] = { + [sym_comment] = STATE(1670), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1032), + [anon_sym_RPAREN] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_DOT_DOT] = ACTIONS(1030), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [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), + [aux_sym__val_number_token4] = ACTIONS(1030), + [aux_sym__val_number_token5] = ACTIONS(1030), + [aux_sym__val_number_token6] = ACTIONS(1030), + [anon_sym_0b] = ACTIONS(1030), + [anon_sym_0o] = ACTIONS(1030), + [anon_sym_0x] = ACTIONS(1030), + [sym_val_date] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__str_single_quotes] = ACTIONS(1032), + [sym__str_back_ticks] = ACTIONS(1032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1032), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [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(1030), + [aux_sym_unquoted_token4] = ACTIONS(2204), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1032), + }, + [1671] = { + [sym_comment] = STATE(1671), + [ts_builtin_sym_end] = ACTIONS(2238), + [sym__newline] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_err_GT_PIPE] = ACTIONS(2238), + [anon_sym_out_GT_PIPE] = ACTIONS(2238), + [anon_sym_e_GT_PIPE] = ACTIONS(2238), + [anon_sym_o_GT_PIPE] = ACTIONS(2238), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_DOT_DOT] = ACTIONS(2234), + [anon_sym_LPAREN2] = ACTIONS(2236), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2238), + [anon_sym_DOT_DOT_LT] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2238), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [aux_sym__val_number_decimal_token1] = ACTIONS(2234), + [aux_sym__val_number_decimal_token2] = ACTIONS(2238), + [aux_sym__val_number_decimal_token3] = ACTIONS(2238), + [aux_sym__val_number_decimal_token4] = ACTIONS(2238), + [aux_sym__val_number_token1] = ACTIONS(2238), + [aux_sym__val_number_token2] = ACTIONS(2238), + [aux_sym__val_number_token3] = ACTIONS(2238), + [aux_sym__val_number_token4] = ACTIONS(2238), + [aux_sym__val_number_token5] = ACTIONS(2238), + [aux_sym__val_number_token6] = ACTIONS(2238), + [anon_sym_0b] = ACTIONS(2234), + [anon_sym_0o] = ACTIONS(2234), + [anon_sym_0x] = ACTIONS(2234), + [sym_val_date] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [sym__str_single_quotes] = ACTIONS(2238), + [sym__str_back_ticks] = ACTIONS(2238), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2238), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_err_GT] = ACTIONS(2234), + [anon_sym_out_GT] = ACTIONS(2234), + [anon_sym_e_GT] = ACTIONS(2234), + [anon_sym_o_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT] = ACTIONS(2234), + [anon_sym_err_GT_GT] = ACTIONS(2238), + [anon_sym_out_GT_GT] = ACTIONS(2238), + [anon_sym_e_GT_GT] = ACTIONS(2238), + [anon_sym_o_GT_GT] = ACTIONS(2238), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), + [aux_sym_unquoted_token1] = ACTIONS(2234), + [aux_sym_unquoted_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2238), + }, + [1672] = { + [sym_comment] = STATE(1672), + [sym__newline] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_err_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_GT_PIPE] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2248), + [anon_sym_DASH2] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_DOT_DOT] = ACTIONS(2248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2248), + [anon_sym_DOT_DOT_LT] = ACTIONS(2248), + [anon_sym_null] = ACTIONS(2248), + [anon_sym_true] = ACTIONS(2248), + [anon_sym_false] = ACTIONS(2248), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2248), + [aux_sym__val_number_decimal_token3] = ACTIONS(2248), + [aux_sym__val_number_decimal_token4] = ACTIONS(2248), + [aux_sym__val_number_token1] = ACTIONS(2248), + [aux_sym__val_number_token2] = ACTIONS(2248), + [aux_sym__val_number_token3] = ACTIONS(2248), + [aux_sym__val_number_token4] = ACTIONS(2248), + [aux_sym__val_number_token5] = ACTIONS(2248), + [aux_sym__val_number_token6] = ACTIONS(2248), + [anon_sym_0b] = ACTIONS(2248), + [anon_sym_0o] = ACTIONS(2248), + [anon_sym_0x] = ACTIONS(2248), + [sym_val_date] = ACTIONS(2248), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym__str_single_quotes] = ACTIONS(2250), + [sym__str_back_ticks] = ACTIONS(2250), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), + [anon_sym_err_GT] = ACTIONS(2248), + [anon_sym_out_GT] = ACTIONS(2248), + [anon_sym_e_GT] = ACTIONS(2248), + [anon_sym_o_GT] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT] = ACTIONS(2248), + [anon_sym_err_GT_GT] = ACTIONS(2248), + [anon_sym_out_GT_GT] = ACTIONS(2248), + [anon_sym_e_GT_GT] = ACTIONS(2248), + [anon_sym_o_GT_GT] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2248), + [aux_sym_unquoted_token1] = ACTIONS(2248), + [aux_sym_unquoted_token4] = ACTIONS(2248), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2250), + }, + [1673] = { + [sym_cmd_identifier] = STATE(4195), + [sym__command_name] = STATE(6642), + [sym_scope_pattern] = STATE(6690), + [sym_wild_card] = STATE(6698), + [sym_command_list] = STATE(6703), + [sym__val_number_decimal] = STATE(3762), + [sym_val_string] = STATE(4159), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_comment] = STATE(1673), + [aux_sym_cmd_identifier_token1] = ACTIONS(5033), + [aux_sym_cmd_identifier_token2] = ACTIONS(5035), + [aux_sym_cmd_identifier_token3] = ACTIONS(5035), + [aux_sym_cmd_identifier_token4] = ACTIONS(5035), + [aux_sym_cmd_identifier_token5] = ACTIONS(5035), + [aux_sym_cmd_identifier_token6] = ACTIONS(5035), + [aux_sym_cmd_identifier_token7] = ACTIONS(5035), + [aux_sym_cmd_identifier_token8] = ACTIONS(5035), + [aux_sym_cmd_identifier_token9] = ACTIONS(5033), + [aux_sym_cmd_identifier_token10] = ACTIONS(5035), + [aux_sym_cmd_identifier_token11] = ACTIONS(5035), + [aux_sym_cmd_identifier_token12] = ACTIONS(5035), + [aux_sym_cmd_identifier_token13] = ACTIONS(5033), + [aux_sym_cmd_identifier_token14] = ACTIONS(5035), + [aux_sym_cmd_identifier_token15] = ACTIONS(5033), + [aux_sym_cmd_identifier_token16] = ACTIONS(5035), + [aux_sym_cmd_identifier_token17] = ACTIONS(5035), + [aux_sym_cmd_identifier_token18] = ACTIONS(5035), + [aux_sym_cmd_identifier_token19] = ACTIONS(5035), + [aux_sym_cmd_identifier_token20] = ACTIONS(5035), + [aux_sym_cmd_identifier_token21] = ACTIONS(5035), + [aux_sym_cmd_identifier_token22] = ACTIONS(5035), + [aux_sym_cmd_identifier_token23] = ACTIONS(5035), + [aux_sym_cmd_identifier_token24] = ACTIONS(5035), + [aux_sym_cmd_identifier_token25] = ACTIONS(5035), + [aux_sym_cmd_identifier_token26] = ACTIONS(5035), + [aux_sym_cmd_identifier_token27] = ACTIONS(5035), + [aux_sym_cmd_identifier_token28] = ACTIONS(5035), + [aux_sym_cmd_identifier_token29] = ACTIONS(5035), + [aux_sym_cmd_identifier_token30] = ACTIONS(5035), + [aux_sym_cmd_identifier_token31] = ACTIONS(5035), + [aux_sym_cmd_identifier_token32] = ACTIONS(5035), + [aux_sym_cmd_identifier_token33] = ACTIONS(5035), + [aux_sym_cmd_identifier_token34] = ACTIONS(5033), + [aux_sym_cmd_identifier_token35] = ACTIONS(5035), + [aux_sym_cmd_identifier_token36] = ACTIONS(5035), + [aux_sym_cmd_identifier_token37] = ACTIONS(5035), + [aux_sym_cmd_identifier_token38] = ACTIONS(5033), + [aux_sym_cmd_identifier_token39] = ACTIONS(5035), + [aux_sym_cmd_identifier_token40] = ACTIONS(5035), + [sym__newline] = ACTIONS(5037), + [anon_sym_SEMI] = ACTIONS(5037), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5037), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_STAR2] = ACTIONS(5041), + [aux_sym__val_number_decimal_token1] = ACTIONS(5043), + [aux_sym__val_number_decimal_token2] = ACTIONS(5043), + [aux_sym__val_number_decimal_token3] = ACTIONS(5045), + [aux_sym__val_number_decimal_token4] = ACTIONS(5047), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), + }, + [1674] = { + [sym__expression] = STATE(5647), + [sym_expr_unary] = STATE(3905), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3905), + [sym__expr_binary_expression] = STATE(3977), + [sym_expr_parenthesized] = STATE(3599), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(3905), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3532), + [sym_val_variable] = STATE(3594), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3514), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym__flag] = STATE(2121), + [sym_short_flag] = STATE(3624), + [sym_long_flag] = STATE(3624), + [sym_comment] = STATE(1674), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_DASH2] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_DOT_DOT_LT] = ACTIONS(5006), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_true] = ACTIONS(5010), + [anon_sym_false] = ACTIONS(5010), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3467), + [aux_sym__val_number_token5] = ACTIONS(3467), + [aux_sym__val_number_token6] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(5012), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), + }, + [1675] = { + [sym_comment] = STATE(1675), + [ts_builtin_sym_end] = ACTIONS(2256), + [sym__newline] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_err_GT_PIPE] = ACTIONS(2256), + [anon_sym_out_GT_PIPE] = ACTIONS(2256), + [anon_sym_e_GT_PIPE] = ACTIONS(2256), + [anon_sym_o_GT_PIPE] = ACTIONS(2256), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2256), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2256), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2256), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(2252), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_DASH2] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2256), + [anon_sym_DOT_DOT] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2256), + [anon_sym_DOT_DOT_LT] = ACTIONS(2256), + [anon_sym_null] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2256), + [anon_sym_false] = ACTIONS(2256), + [aux_sym__val_number_decimal_token1] = ACTIONS(2252), + [aux_sym__val_number_decimal_token2] = ACTIONS(2256), + [aux_sym__val_number_decimal_token3] = ACTIONS(2256), + [aux_sym__val_number_decimal_token4] = ACTIONS(2256), + [aux_sym__val_number_token1] = ACTIONS(2256), + [aux_sym__val_number_token2] = ACTIONS(2256), + [aux_sym__val_number_token3] = ACTIONS(2256), + [aux_sym__val_number_token4] = ACTIONS(2256), + [aux_sym__val_number_token5] = ACTIONS(2256), + [aux_sym__val_number_token6] = ACTIONS(2256), + [anon_sym_0b] = ACTIONS(2252), + [anon_sym_0o] = ACTIONS(2252), + [anon_sym_0x] = ACTIONS(2252), + [sym_val_date] = ACTIONS(2256), + [anon_sym_DQUOTE] = ACTIONS(2256), + [sym__str_single_quotes] = ACTIONS(2256), + [sym__str_back_ticks] = ACTIONS(2256), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2256), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2256), + [anon_sym_err_GT] = ACTIONS(2252), + [anon_sym_out_GT] = ACTIONS(2252), + [anon_sym_e_GT] = ACTIONS(2252), + [anon_sym_o_GT] = ACTIONS(2252), + [anon_sym_err_PLUSout_GT] = ACTIONS(2252), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2252), + [anon_sym_o_PLUSe_GT] = ACTIONS(2252), + [anon_sym_e_PLUSo_GT] = ACTIONS(2252), + [anon_sym_err_GT_GT] = ACTIONS(2256), + [anon_sym_out_GT_GT] = ACTIONS(2256), + [anon_sym_e_GT_GT] = ACTIONS(2256), + [anon_sym_o_GT_GT] = ACTIONS(2256), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2256), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2256), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2256), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2256), + [aux_sym_unquoted_token1] = ACTIONS(2252), + [aux_sym_unquoted_token2] = ACTIONS(2258), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2256), + }, + [1676] = { + [sym_cell_path] = STATE(2124), + [sym_path] = STATE(1978), + [sym_comment] = STATE(1676), + [aux_sym_cell_path_repeat1] = STATE(1796), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1735), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1735), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1735), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(5049), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(247), + }, + [1677] = { + [sym__expression] = STATE(5665), + [sym_expr_unary] = STATE(3905), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3905), + [sym__expr_binary_expression] = STATE(3977), + [sym_expr_parenthesized] = STATE(3599), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(3905), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3532), + [sym_val_variable] = STATE(3594), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3514), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym__flag] = STATE(2126), + [sym_short_flag] = STATE(3624), + [sym_long_flag] = STATE(3624), + [sym_comment] = STATE(1677), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_DASH2] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_DOT_DOT_LT] = ACTIONS(5006), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_true] = ACTIONS(5010), + [anon_sym_false] = ACTIONS(5010), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3467), + [aux_sym__val_number_token5] = ACTIONS(3467), + [aux_sym__val_number_token6] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(5012), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), + }, + [1678] = { + [sym__expression] = STATE(5649), + [sym_expr_unary] = STATE(3905), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3905), + [sym__expr_binary_expression] = STATE(3977), + [sym_expr_parenthesized] = STATE(3599), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(3905), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3532), + [sym_val_variable] = STATE(3594), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3514), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym__flag] = STATE(2157), + [sym_short_flag] = STATE(3624), + [sym_long_flag] = STATE(3624), + [sym_comment] = STATE(1678), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_DASH2] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_DOT_DOT_LT] = ACTIONS(5006), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_true] = ACTIONS(5010), + [anon_sym_false] = ACTIONS(5010), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3467), + [aux_sym__val_number_token5] = ACTIONS(3467), + [aux_sym__val_number_token6] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(5012), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), + }, + [1679] = { + [sym_comment] = STATE(1679), + [sym__newline] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_err_GT_PIPE] = ACTIONS(2127), + [anon_sym_out_GT_PIPE] = ACTIONS(2127), + [anon_sym_e_GT_PIPE] = ACTIONS(2127), + [anon_sym_o_GT_PIPE] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2127), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_GT2] = ACTIONS(2125), + [anon_sym_DASH2] = ACTIONS(2127), + [anon_sym_in2] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_EQ_GT] = ACTIONS(2127), + [anon_sym_STAR2] = ACTIONS(2125), + [anon_sym_and2] = ACTIONS(2127), + [anon_sym_xor2] = ACTIONS(2127), + [anon_sym_or2] = ACTIONS(2127), + [anon_sym_not_DASHin2] = ACTIONS(2127), + [anon_sym_starts_DASHwith2] = ACTIONS(2127), + [anon_sym_ends_DASHwith2] = ACTIONS(2127), + [anon_sym_EQ_EQ2] = ACTIONS(2127), + [anon_sym_BANG_EQ2] = ACTIONS(2127), + [anon_sym_LT2] = ACTIONS(2125), + [anon_sym_LT_EQ2] = ACTIONS(2127), + [anon_sym_GT_EQ2] = ACTIONS(2127), + [anon_sym_EQ_TILDE2] = ACTIONS(2127), + [anon_sym_BANG_TILDE2] = ACTIONS(2127), + [anon_sym_STAR_STAR2] = ACTIONS(2127), + [anon_sym_PLUS_PLUS2] = ACTIONS(2127), + [anon_sym_SLASH2] = ACTIONS(2125), + [anon_sym_mod2] = ACTIONS(2127), + [anon_sym_SLASH_SLASH2] = ACTIONS(2127), + [anon_sym_PLUS2] = ACTIONS(2125), + [anon_sym_bit_DASHshl2] = ACTIONS(2127), + [anon_sym_bit_DASHshr2] = ACTIONS(2127), + [anon_sym_bit_DASHand2] = ACTIONS(2127), + [anon_sym_bit_DASHxor2] = ACTIONS(2127), + [anon_sym_bit_DASHor2] = ACTIONS(2127), + [anon_sym_DOT_DOT2] = ACTIONS(2125), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2127), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2127), + [anon_sym_err_GT] = ACTIONS(2125), + [anon_sym_out_GT] = ACTIONS(2125), + [anon_sym_e_GT] = ACTIONS(2125), + [anon_sym_o_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT] = ACTIONS(2125), + [anon_sym_err_GT_GT] = ACTIONS(2127), + [anon_sym_out_GT_GT] = ACTIONS(2127), + [anon_sym_e_GT_GT] = ACTIONS(2127), + [anon_sym_o_GT_GT] = ACTIONS(2127), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2127), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2127), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2127), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2127), + [anon_sym_POUND] = ACTIONS(247), + }, + [1680] = { + [sym_comment] = STATE(1680), + [sym__newline] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5051), + [anon_sym_err_GT_PIPE] = ACTIONS(5051), + [anon_sym_out_GT_PIPE] = ACTIONS(5051), + [anon_sym_e_GT_PIPE] = ACTIONS(5051), + [anon_sym_o_GT_PIPE] = ACTIONS(5051), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5051), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5051), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5051), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_DOLLAR] = ACTIONS(5053), + [anon_sym_DASH_DASH] = ACTIONS(5051), + [anon_sym_DASH2] = ACTIONS(5053), + [anon_sym_LBRACE] = ACTIONS(5051), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_DOT_DOT] = ACTIONS(5053), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5051), + [anon_sym_DOT_DOT_LT] = ACTIONS(5051), + [anon_sym_null] = ACTIONS(5051), + [anon_sym_true] = ACTIONS(5051), + [anon_sym_false] = ACTIONS(5051), + [aux_sym__val_number_decimal_token1] = ACTIONS(5053), + [aux_sym__val_number_decimal_token2] = ACTIONS(5051), + [aux_sym__val_number_decimal_token3] = ACTIONS(5051), + [aux_sym__val_number_decimal_token4] = ACTIONS(5051), + [aux_sym__val_number_token1] = ACTIONS(5051), + [aux_sym__val_number_token2] = ACTIONS(5051), + [aux_sym__val_number_token3] = ACTIONS(5051), + [aux_sym__val_number_token4] = ACTIONS(5051), + [aux_sym__val_number_token5] = ACTIONS(5051), + [aux_sym__val_number_token6] = ACTIONS(5051), + [anon_sym_0b] = ACTIONS(5053), + [anon_sym_0o] = ACTIONS(5053), + [anon_sym_0x] = ACTIONS(5053), + [sym_val_date] = ACTIONS(5051), + [anon_sym_DQUOTE] = ACTIONS(5051), + [sym__str_single_quotes] = ACTIONS(5051), + [sym__str_back_ticks] = ACTIONS(5051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5051), + [anon_sym_err_GT] = ACTIONS(5053), + [anon_sym_out_GT] = ACTIONS(5053), + [anon_sym_e_GT] = ACTIONS(5053), + [anon_sym_o_GT] = ACTIONS(5053), + [anon_sym_err_PLUSout_GT] = ACTIONS(5053), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5053), + [anon_sym_o_PLUSe_GT] = ACTIONS(5053), + [anon_sym_e_PLUSo_GT] = ACTIONS(5053), + [anon_sym_err_GT_GT] = ACTIONS(5051), + [anon_sym_out_GT_GT] = ACTIONS(5051), + [anon_sym_e_GT_GT] = ACTIONS(5051), + [anon_sym_o_GT_GT] = ACTIONS(5051), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5051), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5051), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5051), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5051), + [anon_sym_EQ2] = ACTIONS(5055), + [aux_sym_unquoted_token1] = ACTIONS(5053), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5051), + }, + [1681] = { + [sym__expr_parenthesized_immediate] = STATE(7999), + [sym_comment] = STATE(1681), + [ts_builtin_sym_end] = ACTIONS(4971), + [sym__newline] = ACTIONS(4971), + [anon_sym_SEMI] = ACTIONS(4971), + [anon_sym_PIPE] = ACTIONS(4971), + [anon_sym_err_GT_PIPE] = ACTIONS(4971), + [anon_sym_out_GT_PIPE] = ACTIONS(4971), + [anon_sym_e_GT_PIPE] = ACTIONS(4971), + [anon_sym_o_GT_PIPE] = ACTIONS(4971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_DOLLAR] = ACTIONS(4973), + [anon_sym_DASH_DASH] = ACTIONS(4971), + [anon_sym_DASH2] = ACTIONS(4973), + [anon_sym_LBRACE] = ACTIONS(4971), + [anon_sym_DOT_DOT] = ACTIONS(4973), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4971), + [anon_sym_DOT_DOT_LT] = ACTIONS(4971), + [anon_sym_null] = ACTIONS(4971), + [anon_sym_true] = ACTIONS(4971), + [anon_sym_false] = ACTIONS(4971), + [aux_sym__val_number_decimal_token1] = ACTIONS(4973), + [aux_sym__val_number_decimal_token2] = ACTIONS(4971), + [aux_sym__val_number_decimal_token3] = ACTIONS(4971), + [aux_sym__val_number_decimal_token4] = ACTIONS(4971), + [aux_sym__val_number_token1] = ACTIONS(4971), + [aux_sym__val_number_token2] = ACTIONS(4971), + [aux_sym__val_number_token3] = ACTIONS(4971), + [aux_sym__val_number_token4] = ACTIONS(4971), + [aux_sym__val_number_token5] = ACTIONS(4971), + [aux_sym__val_number_token6] = ACTIONS(4971), + [anon_sym_0b] = ACTIONS(4973), + [anon_sym_0o] = ACTIONS(4973), + [anon_sym_0x] = ACTIONS(4973), + [sym_val_date] = ACTIONS(4971), + [anon_sym_DQUOTE] = ACTIONS(4971), + [sym__str_single_quotes] = ACTIONS(4971), + [sym__str_back_ticks] = ACTIONS(4971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4971), + [anon_sym_err_GT] = ACTIONS(4973), + [anon_sym_out_GT] = ACTIONS(4973), + [anon_sym_e_GT] = ACTIONS(4973), + [anon_sym_o_GT] = ACTIONS(4973), + [anon_sym_err_PLUSout_GT] = ACTIONS(4973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4973), + [anon_sym_o_PLUSe_GT] = ACTIONS(4973), + [anon_sym_e_PLUSo_GT] = ACTIONS(4973), + [anon_sym_err_GT_GT] = ACTIONS(4971), + [anon_sym_out_GT_GT] = ACTIONS(4971), + [anon_sym_e_GT_GT] = ACTIONS(4971), + [anon_sym_o_GT_GT] = ACTIONS(4971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4971), + [aux_sym_unquoted_token1] = ACTIONS(4973), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4971), + }, + [1682] = { + [sym_comment] = STATE(1682), + [ts_builtin_sym_end] = ACTIONS(992), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(992), + [anon_sym_DOT_DOT_LT] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(992), + [aux_sym__val_number_token5] = ACTIONS(992), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_0b] = ACTIONS(990), + [anon_sym_0o] = ACTIONS(990), + [anon_sym_0x] = ACTIONS(990), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_unquoted_token1] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), + }, + [1683] = { + [sym_cell_path] = STATE(2115), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1683), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_err_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_GT_PIPE] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), + [anon_sym_RPAREN] = ACTIONS(1978), + [anon_sym_GT2] = ACTIONS(1976), + [anon_sym_DASH2] = ACTIONS(1978), + [anon_sym_in2] = ACTIONS(1978), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_EQ_GT] = ACTIONS(1978), + [anon_sym_STAR2] = ACTIONS(1976), + [anon_sym_and2] = ACTIONS(1978), + [anon_sym_xor2] = ACTIONS(1978), + [anon_sym_or2] = ACTIONS(1978), + [anon_sym_not_DASHin2] = ACTIONS(1978), + [anon_sym_starts_DASHwith2] = ACTIONS(1978), + [anon_sym_ends_DASHwith2] = ACTIONS(1978), + [anon_sym_EQ_EQ2] = ACTIONS(1978), + [anon_sym_BANG_EQ2] = ACTIONS(1978), + [anon_sym_LT2] = ACTIONS(1976), + [anon_sym_LT_EQ2] = ACTIONS(1978), + [anon_sym_GT_EQ2] = ACTIONS(1978), + [anon_sym_EQ_TILDE2] = ACTIONS(1978), + [anon_sym_BANG_TILDE2] = ACTIONS(1978), + [anon_sym_STAR_STAR2] = ACTIONS(1978), + [anon_sym_PLUS_PLUS2] = ACTIONS(1978), + [anon_sym_SLASH2] = ACTIONS(1976), + [anon_sym_mod2] = ACTIONS(1978), + [anon_sym_SLASH_SLASH2] = ACTIONS(1978), + [anon_sym_PLUS2] = ACTIONS(1976), + [anon_sym_bit_DASHshl2] = ACTIONS(1978), + [anon_sym_bit_DASHshr2] = ACTIONS(1978), + [anon_sym_bit_DASHand2] = ACTIONS(1978), + [anon_sym_bit_DASHxor2] = ACTIONS(1978), + [anon_sym_bit_DASHor2] = ACTIONS(1978), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1976), + [anon_sym_out_GT] = ACTIONS(1976), + [anon_sym_e_GT] = ACTIONS(1976), + [anon_sym_o_GT] = ACTIONS(1976), + [anon_sym_err_PLUSout_GT] = ACTIONS(1976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), + [anon_sym_o_PLUSe_GT] = ACTIONS(1976), + [anon_sym_e_PLUSo_GT] = ACTIONS(1976), + [anon_sym_err_GT_GT] = ACTIONS(1978), + [anon_sym_out_GT_GT] = ACTIONS(1978), + [anon_sym_e_GT_GT] = ACTIONS(1978), + [anon_sym_o_GT_GT] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), + [anon_sym_POUND] = ACTIONS(247), + }, + [1684] = { + [sym_comment] = STATE(1684), + [ts_builtin_sym_end] = ACTIONS(2210), + [sym__newline] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2210), + [anon_sym_PIPE] = ACTIONS(2210), + [anon_sym_err_GT_PIPE] = ACTIONS(2210), + [anon_sym_out_GT_PIPE] = ACTIONS(2210), + [anon_sym_e_GT_PIPE] = ACTIONS(2210), + [anon_sym_o_GT_PIPE] = ACTIONS(2210), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2210), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2210), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2210), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_DOLLAR] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2206), + [anon_sym_DASH2] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2210), + [anon_sym_DOT_DOT] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2206), + [anon_sym_DOT_DOT_LT] = ACTIONS(2206), + [anon_sym_null] = ACTIONS(2206), + [anon_sym_true] = ACTIONS(2206), + [anon_sym_false] = ACTIONS(2206), + [aux_sym__val_number_decimal_token1] = ACTIONS(2206), + [aux_sym__val_number_decimal_token2] = ACTIONS(2206), + [aux_sym__val_number_decimal_token3] = ACTIONS(2206), + [aux_sym__val_number_decimal_token4] = ACTIONS(2206), + [aux_sym__val_number_token1] = ACTIONS(2206), + [aux_sym__val_number_token2] = ACTIONS(2206), + [aux_sym__val_number_token3] = ACTIONS(2206), + [aux_sym__val_number_token4] = ACTIONS(2206), + [aux_sym__val_number_token5] = ACTIONS(2206), + [aux_sym__val_number_token6] = ACTIONS(2206), + [anon_sym_0b] = ACTIONS(2206), + [anon_sym_0o] = ACTIONS(2206), + [anon_sym_0x] = ACTIONS(2206), + [sym_val_date] = ACTIONS(2206), + [anon_sym_DQUOTE] = ACTIONS(2210), + [sym__str_single_quotes] = ACTIONS(2210), + [sym__str_back_ticks] = ACTIONS(2210), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2210), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2210), + [anon_sym_err_GT] = ACTIONS(2206), + [anon_sym_out_GT] = ACTIONS(2206), + [anon_sym_e_GT] = ACTIONS(2206), + [anon_sym_o_GT] = ACTIONS(2206), + [anon_sym_err_PLUSout_GT] = ACTIONS(2206), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2206), + [anon_sym_o_PLUSe_GT] = ACTIONS(2206), + [anon_sym_e_PLUSo_GT] = ACTIONS(2206), + [anon_sym_err_GT_GT] = ACTIONS(2206), + [anon_sym_out_GT_GT] = ACTIONS(2206), + [anon_sym_e_GT_GT] = ACTIONS(2206), + [anon_sym_o_GT_GT] = ACTIONS(2206), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2206), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2206), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2206), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2206), + [aux_sym_unquoted_token1] = ACTIONS(2206), + [aux_sym_unquoted_token4] = ACTIONS(2212), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2210), + }, + [1685] = { + [sym_comment] = STATE(1685), + [ts_builtin_sym_end] = ACTIONS(1032), + [sym__newline] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_err_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_GT_PIPE] = ACTIONS(1032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1032), + [anon_sym_DOT_DOT] = ACTIONS(1030), + [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), + [anon_sym_DOT_DOT_LT] = ACTIONS(1030), + [anon_sym_null] = ACTIONS(1030), + [anon_sym_true] = ACTIONS(1030), + [anon_sym_false] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [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), + [aux_sym__val_number_token4] = ACTIONS(1030), + [aux_sym__val_number_token5] = ACTIONS(1030), + [aux_sym__val_number_token6] = ACTIONS(1030), + [anon_sym_0b] = ACTIONS(1030), + [anon_sym_0o] = ACTIONS(1030), + [anon_sym_0x] = ACTIONS(1030), + [sym_val_date] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym__str_single_quotes] = ACTIONS(1032), + [sym__str_back_ticks] = ACTIONS(1032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1032), + [anon_sym_err_GT] = ACTIONS(1030), + [anon_sym_out_GT] = ACTIONS(1030), + [anon_sym_e_GT] = ACTIONS(1030), + [anon_sym_o_GT] = ACTIONS(1030), + [anon_sym_err_PLUSout_GT] = ACTIONS(1030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), + [anon_sym_o_PLUSe_GT] = ACTIONS(1030), + [anon_sym_e_PLUSo_GT] = ACTIONS(1030), + [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(1030), + [aux_sym_unquoted_token4] = ACTIONS(2204), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1032), + }, + [1686] = { + [sym_cell_path] = STATE(2116), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1686), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(2084), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_err_GT_PIPE] = ACTIONS(2084), + [anon_sym_out_GT_PIPE] = ACTIONS(2084), + [anon_sym_e_GT_PIPE] = ACTIONS(2084), + [anon_sym_o_GT_PIPE] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(2084), + [anon_sym_GT2] = ACTIONS(2082), + [anon_sym_DASH2] = ACTIONS(2084), + [anon_sym_in2] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_EQ_GT] = ACTIONS(2084), + [anon_sym_STAR2] = ACTIONS(2082), + [anon_sym_and2] = ACTIONS(2084), + [anon_sym_xor2] = ACTIONS(2084), + [anon_sym_or2] = ACTIONS(2084), + [anon_sym_not_DASHin2] = ACTIONS(2084), + [anon_sym_starts_DASHwith2] = ACTIONS(2084), + [anon_sym_ends_DASHwith2] = ACTIONS(2084), + [anon_sym_EQ_EQ2] = ACTIONS(2084), + [anon_sym_BANG_EQ2] = ACTIONS(2084), + [anon_sym_LT2] = ACTIONS(2082), + [anon_sym_LT_EQ2] = ACTIONS(2084), + [anon_sym_GT_EQ2] = ACTIONS(2084), + [anon_sym_EQ_TILDE2] = ACTIONS(2084), + [anon_sym_BANG_TILDE2] = ACTIONS(2084), + [anon_sym_STAR_STAR2] = ACTIONS(2084), + [anon_sym_PLUS_PLUS2] = ACTIONS(2084), + [anon_sym_SLASH2] = ACTIONS(2082), + [anon_sym_mod2] = ACTIONS(2084), + [anon_sym_SLASH_SLASH2] = ACTIONS(2084), + [anon_sym_PLUS2] = ACTIONS(2082), + [anon_sym_bit_DASHshl2] = ACTIONS(2084), + [anon_sym_bit_DASHshr2] = ACTIONS(2084), + [anon_sym_bit_DASHand2] = ACTIONS(2084), + [anon_sym_bit_DASHxor2] = ACTIONS(2084), + [anon_sym_bit_DASHor2] = ACTIONS(2084), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(2082), + [anon_sym_out_GT] = ACTIONS(2082), + [anon_sym_e_GT] = ACTIONS(2082), + [anon_sym_o_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT] = ACTIONS(2082), + [anon_sym_err_GT_GT] = ACTIONS(2084), + [anon_sym_out_GT_GT] = ACTIONS(2084), + [anon_sym_e_GT_GT] = ACTIONS(2084), + [anon_sym_o_GT_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(247), + }, + [1687] = { + [sym_comment] = STATE(1687), + [sym__newline] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_err_GT_PIPE] = ACTIONS(2341), + [anon_sym_out_GT_PIPE] = ACTIONS(2341), + [anon_sym_e_GT_PIPE] = ACTIONS(2341), + [anon_sym_o_GT_PIPE] = ACTIONS(2341), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2341), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2341), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2341), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2337), + [anon_sym_DASH_DASH] = ACTIONS(2341), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_DOT_DOT] = ACTIONS(2337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2341), + [anon_sym_DOT_DOT_LT] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [aux_sym__val_number_decimal_token1] = ACTIONS(2337), + [aux_sym__val_number_decimal_token2] = ACTIONS(2341), + [aux_sym__val_number_decimal_token3] = ACTIONS(2341), + [aux_sym__val_number_decimal_token4] = ACTIONS(2341), + [aux_sym__val_number_token1] = ACTIONS(2341), + [aux_sym__val_number_token2] = ACTIONS(2341), + [aux_sym__val_number_token3] = ACTIONS(2341), + [aux_sym__val_number_token4] = ACTIONS(2341), + [aux_sym__val_number_token5] = ACTIONS(2341), + [aux_sym__val_number_token6] = ACTIONS(2341), + [anon_sym_0b] = ACTIONS(2337), + [anon_sym_0o] = ACTIONS(2337), + [anon_sym_0x] = ACTIONS(2337), + [anon_sym_LBRACK2] = ACTIONS(5057), + [sym_val_date] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym__str_single_quotes] = ACTIONS(2341), + [sym__str_back_ticks] = ACTIONS(2341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2341), + [anon_sym_err_GT] = ACTIONS(2337), + [anon_sym_out_GT] = ACTIONS(2337), + [anon_sym_e_GT] = ACTIONS(2337), + [anon_sym_o_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT] = ACTIONS(2337), + [anon_sym_err_GT_GT] = ACTIONS(2341), + [anon_sym_out_GT_GT] = ACTIONS(2341), + [anon_sym_e_GT_GT] = ACTIONS(2341), + [anon_sym_o_GT_GT] = ACTIONS(2341), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2341), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2341), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2341), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2341), + [aux_sym_unquoted_token1] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2341), + }, + [1688] = { + [sym_comment] = STATE(1688), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_in2] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_EQ_GT] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1018), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1018), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1018), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(247), + }, + [1689] = { + [sym__expr_parenthesized_immediate] = STATE(7999), + [sym_comment] = STATE(1689), + [ts_builtin_sym_end] = ACTIONS(4975), + [sym__newline] = ACTIONS(4975), + [anon_sym_SEMI] = ACTIONS(4975), + [anon_sym_PIPE] = ACTIONS(4975), + [anon_sym_err_GT_PIPE] = ACTIONS(4975), + [anon_sym_out_GT_PIPE] = ACTIONS(4975), + [anon_sym_e_GT_PIPE] = ACTIONS(4975), + [anon_sym_o_GT_PIPE] = ACTIONS(4975), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4975), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4975), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4975), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4977), + [anon_sym_DOLLAR] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(4975), + [anon_sym_DASH2] = ACTIONS(4977), + [anon_sym_LBRACE] = ACTIONS(4975), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4975), + [anon_sym_DOT_DOT_LT] = ACTIONS(4975), + [anon_sym_null] = ACTIONS(4975), + [anon_sym_true] = ACTIONS(4975), + [anon_sym_false] = ACTIONS(4975), + [aux_sym__val_number_decimal_token1] = ACTIONS(4977), + [aux_sym__val_number_decimal_token2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4975), + [aux_sym__val_number_decimal_token4] = ACTIONS(4975), + [aux_sym__val_number_token1] = ACTIONS(4975), + [aux_sym__val_number_token2] = ACTIONS(4975), + [aux_sym__val_number_token3] = ACTIONS(4975), + [aux_sym__val_number_token4] = ACTIONS(4975), + [aux_sym__val_number_token5] = ACTIONS(4975), + [aux_sym__val_number_token6] = ACTIONS(4975), + [anon_sym_0b] = ACTIONS(4977), + [anon_sym_0o] = ACTIONS(4977), + [anon_sym_0x] = ACTIONS(4977), + [sym_val_date] = ACTIONS(4975), + [anon_sym_DQUOTE] = ACTIONS(4975), + [sym__str_single_quotes] = ACTIONS(4975), + [sym__str_back_ticks] = ACTIONS(4975), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4975), + [anon_sym_err_GT] = ACTIONS(4977), + [anon_sym_out_GT] = ACTIONS(4977), + [anon_sym_e_GT] = ACTIONS(4977), + [anon_sym_o_GT] = ACTIONS(4977), + [anon_sym_err_PLUSout_GT] = ACTIONS(4977), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4977), + [anon_sym_o_PLUSe_GT] = ACTIONS(4977), + [anon_sym_e_PLUSo_GT] = ACTIONS(4977), + [anon_sym_err_GT_GT] = ACTIONS(4975), + [anon_sym_out_GT_GT] = ACTIONS(4975), + [anon_sym_e_GT_GT] = ACTIONS(4975), + [anon_sym_o_GT_GT] = ACTIONS(4975), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4975), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4975), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4975), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4975), + [aux_sym_unquoted_token1] = ACTIONS(4977), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4975), + }, + [1690] = { + [sym_comment] = STATE(1690), + [ts_builtin_sym_end] = ACTIONS(4936), + [sym_long_flag_identifier] = ACTIONS(5059), + [sym__newline] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_err_GT_PIPE] = ACTIONS(4936), + [anon_sym_out_GT_PIPE] = ACTIONS(4936), + [anon_sym_e_GT_PIPE] = ACTIONS(4936), + [anon_sym_o_GT_PIPE] = ACTIONS(4936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_DASH2] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4936), + [anon_sym_DOT_DOT_LT] = ACTIONS(4936), + [anon_sym_null] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4938), + [anon_sym_false] = ACTIONS(4938), + [aux_sym__val_number_decimal_token1] = ACTIONS(4938), + [aux_sym__val_number_decimal_token2] = ACTIONS(4936), + [aux_sym__val_number_decimal_token3] = ACTIONS(4936), + [aux_sym__val_number_decimal_token4] = ACTIONS(4936), + [aux_sym__val_number_token1] = ACTIONS(4938), + [aux_sym__val_number_token2] = ACTIONS(4938), + [aux_sym__val_number_token3] = ACTIONS(4938), + [aux_sym__val_number_token4] = ACTIONS(4938), + [aux_sym__val_number_token5] = ACTIONS(4936), + [aux_sym__val_number_token6] = ACTIONS(4938), + [anon_sym_0b] = ACTIONS(4938), + [anon_sym_0o] = ACTIONS(4938), + [anon_sym_0x] = ACTIONS(4938), + [sym_val_date] = ACTIONS(4938), + [anon_sym_DQUOTE] = ACTIONS(4936), + [sym__str_single_quotes] = ACTIONS(4936), + [sym__str_back_ticks] = ACTIONS(4936), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4936), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4936), + [anon_sym_err_GT] = ACTIONS(4938), + [anon_sym_out_GT] = ACTIONS(4938), + [anon_sym_e_GT] = ACTIONS(4938), + [anon_sym_o_GT] = ACTIONS(4938), + [anon_sym_err_PLUSout_GT] = ACTIONS(4938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4938), + [anon_sym_o_PLUSe_GT] = ACTIONS(4938), + [anon_sym_e_PLUSo_GT] = ACTIONS(4938), + [anon_sym_err_GT_GT] = ACTIONS(4936), + [anon_sym_out_GT_GT] = ACTIONS(4936), + [anon_sym_e_GT_GT] = ACTIONS(4936), + [anon_sym_o_GT_GT] = ACTIONS(4936), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4936), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4936), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4936), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4936), + [anon_sym_EQ2] = ACTIONS(5061), + [aux_sym_unquoted_token1] = ACTIONS(4938), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4936), + }, + [1691] = { + [sym_cell_path] = STATE(2127), + [sym_path] = STATE(1978), + [sym_comment] = STATE(1691), + [aux_sym_cell_path_repeat1] = STATE(1796), + [ts_builtin_sym_end] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_GT2] = ACTIONS(1769), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_STAR2] = ACTIONS(1769), + [anon_sym_and2] = ACTIONS(1771), + [anon_sym_xor2] = ACTIONS(1771), + [anon_sym_or2] = ACTIONS(1771), + [anon_sym_not_DASHin2] = ACTIONS(1771), + [anon_sym_starts_DASHwith2] = ACTIONS(1771), + [anon_sym_ends_DASHwith2] = ACTIONS(1771), + [anon_sym_EQ_EQ2] = ACTIONS(1771), + [anon_sym_BANG_EQ2] = ACTIONS(1771), + [anon_sym_LT2] = ACTIONS(1769), + [anon_sym_LT_EQ2] = ACTIONS(1771), + [anon_sym_GT_EQ2] = ACTIONS(1771), + [anon_sym_EQ_TILDE2] = ACTIONS(1771), + [anon_sym_BANG_TILDE2] = ACTIONS(1771), + [anon_sym_STAR_STAR2] = ACTIONS(1771), + [anon_sym_PLUS_PLUS2] = ACTIONS(1771), + [anon_sym_SLASH2] = ACTIONS(1769), + [anon_sym_mod2] = ACTIONS(1771), + [anon_sym_SLASH_SLASH2] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1769), + [anon_sym_bit_DASHshl2] = ACTIONS(1771), + [anon_sym_bit_DASHshr2] = ACTIONS(1771), + [anon_sym_bit_DASHand2] = ACTIONS(1771), + [anon_sym_bit_DASHxor2] = ACTIONS(1771), + [anon_sym_bit_DASHor2] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(5049), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(247), + }, + [1692] = { + [sym__expr_parenthesized_immediate] = STATE(7999), + [sym_comment] = STATE(1692), + [ts_builtin_sym_end] = ACTIONS(4979), + [sym__newline] = ACTIONS(4979), + [anon_sym_SEMI] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(4979), + [anon_sym_err_GT_PIPE] = ACTIONS(4979), + [anon_sym_out_GT_PIPE] = ACTIONS(4979), + [anon_sym_e_GT_PIPE] = ACTIONS(4979), + [anon_sym_o_GT_PIPE] = ACTIONS(4979), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4979), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4979), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4979), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4979), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_DOLLAR] = ACTIONS(4981), + [anon_sym_DASH_DASH] = ACTIONS(4979), + [anon_sym_DASH2] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4979), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), + [anon_sym_DOT_DOT_LT] = ACTIONS(4979), + [anon_sym_null] = ACTIONS(4979), + [anon_sym_true] = ACTIONS(4979), + [anon_sym_false] = ACTIONS(4979), + [aux_sym__val_number_decimal_token1] = ACTIONS(4981), + [aux_sym__val_number_decimal_token2] = ACTIONS(4979), + [aux_sym__val_number_decimal_token3] = ACTIONS(4979), + [aux_sym__val_number_decimal_token4] = ACTIONS(4979), + [aux_sym__val_number_token1] = ACTIONS(4979), + [aux_sym__val_number_token2] = ACTIONS(4979), + [aux_sym__val_number_token3] = ACTIONS(4979), + [aux_sym__val_number_token4] = ACTIONS(4979), + [aux_sym__val_number_token5] = ACTIONS(4979), + [aux_sym__val_number_token6] = ACTIONS(4979), + [anon_sym_0b] = ACTIONS(4981), + [anon_sym_0o] = ACTIONS(4981), + [anon_sym_0x] = ACTIONS(4981), + [sym_val_date] = ACTIONS(4979), + [anon_sym_DQUOTE] = ACTIONS(4979), + [sym__str_single_quotes] = ACTIONS(4979), + [sym__str_back_ticks] = ACTIONS(4979), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4979), + [anon_sym_err_GT] = ACTIONS(4981), + [anon_sym_out_GT] = ACTIONS(4981), + [anon_sym_e_GT] = ACTIONS(4981), + [anon_sym_o_GT] = ACTIONS(4981), + [anon_sym_err_PLUSout_GT] = ACTIONS(4981), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4981), + [anon_sym_o_PLUSe_GT] = ACTIONS(4981), + [anon_sym_e_PLUSo_GT] = ACTIONS(4981), + [anon_sym_err_GT_GT] = ACTIONS(4979), + [anon_sym_out_GT_GT] = ACTIONS(4979), + [anon_sym_e_GT_GT] = ACTIONS(4979), + [anon_sym_o_GT_GT] = ACTIONS(4979), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4979), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4979), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4979), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4979), + [aux_sym_unquoted_token1] = ACTIONS(4981), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4979), + }, + [1693] = { + [sym_comment] = STATE(1693), + [ts_builtin_sym_end] = ACTIONS(2250), + [sym__newline] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_err_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_GT_PIPE] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2248), + [anon_sym_DOLLAR] = ACTIONS(2248), + [anon_sym_DASH_DASH] = ACTIONS(2248), + [anon_sym_DASH2] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_DOT_DOT] = ACTIONS(2248), + [anon_sym_LPAREN2] = ACTIONS(2250), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2248), + [anon_sym_DOT_DOT_LT] = ACTIONS(2248), + [anon_sym_null] = ACTIONS(2248), + [anon_sym_true] = ACTIONS(2248), + [anon_sym_false] = ACTIONS(2248), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2248), + [aux_sym__val_number_decimal_token3] = ACTIONS(2248), + [aux_sym__val_number_decimal_token4] = ACTIONS(2248), + [aux_sym__val_number_token1] = ACTIONS(2248), + [aux_sym__val_number_token2] = ACTIONS(2248), + [aux_sym__val_number_token3] = ACTIONS(2248), + [aux_sym__val_number_token4] = ACTIONS(2248), + [aux_sym__val_number_token5] = ACTIONS(2248), + [aux_sym__val_number_token6] = ACTIONS(2248), + [anon_sym_0b] = ACTIONS(2248), + [anon_sym_0o] = ACTIONS(2248), + [anon_sym_0x] = ACTIONS(2248), + [sym_val_date] = ACTIONS(2248), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym__str_single_quotes] = ACTIONS(2250), + [sym__str_back_ticks] = ACTIONS(2250), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), + [anon_sym_err_GT] = ACTIONS(2248), + [anon_sym_out_GT] = ACTIONS(2248), + [anon_sym_e_GT] = ACTIONS(2248), + [anon_sym_o_GT] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT] = ACTIONS(2248), + [anon_sym_err_GT_GT] = ACTIONS(2248), + [anon_sym_out_GT_GT] = ACTIONS(2248), + [anon_sym_e_GT_GT] = ACTIONS(2248), + [anon_sym_o_GT_GT] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2248), + [aux_sym_unquoted_token1] = ACTIONS(2248), + [aux_sym_unquoted_token4] = ACTIONS(2248), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2250), + }, + [1694] = { + [sym_comment] = STATE(1694), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_GT2] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(992), + [anon_sym_in2] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_STAR2] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_and2] = ACTIONS(992), + [anon_sym_xor2] = ACTIONS(992), + [anon_sym_or2] = ACTIONS(992), + [anon_sym_not_DASHin2] = ACTIONS(992), + [anon_sym_starts_DASHwith2] = ACTIONS(992), + [anon_sym_ends_DASHwith2] = ACTIONS(992), + [anon_sym_EQ_EQ2] = ACTIONS(992), + [anon_sym_BANG_EQ2] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(990), + [anon_sym_LT_EQ2] = ACTIONS(992), + [anon_sym_GT_EQ2] = ACTIONS(992), + [anon_sym_EQ_TILDE2] = ACTIONS(992), + [anon_sym_BANG_TILDE2] = ACTIONS(992), + [anon_sym_STAR_STAR2] = ACTIONS(992), + [anon_sym_PLUS_PLUS2] = ACTIONS(992), + [anon_sym_SLASH2] = ACTIONS(990), + [anon_sym_mod2] = ACTIONS(992), + [anon_sym_SLASH_SLASH2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_bit_DASHshl2] = ACTIONS(992), + [anon_sym_bit_DASHshr2] = ACTIONS(992), + [anon_sym_bit_DASHand2] = ACTIONS(992), + [anon_sym_bit_DASHxor2] = ACTIONS(992), + [anon_sym_bit_DASHor2] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + }, + [1695] = { + [sym_comment] = STATE(1695), + [sym__newline] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2210), + [anon_sym_PIPE] = ACTIONS(2210), + [anon_sym_err_GT_PIPE] = ACTIONS(2210), + [anon_sym_out_GT_PIPE] = ACTIONS(2210), + [anon_sym_e_GT_PIPE] = ACTIONS(2210), + [anon_sym_o_GT_PIPE] = ACTIONS(2210), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2210), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2210), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2210), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_LPAREN] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(2210), + [anon_sym_DOLLAR] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2206), + [anon_sym_DASH2] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2210), + [anon_sym_RBRACE] = ACTIONS(2210), + [anon_sym_DOT_DOT] = ACTIONS(2206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2206), + [anon_sym_DOT_DOT_LT] = ACTIONS(2206), + [anon_sym_null] = ACTIONS(2206), + [anon_sym_true] = ACTIONS(2206), + [anon_sym_false] = ACTIONS(2206), + [aux_sym__val_number_decimal_token1] = ACTIONS(2206), + [aux_sym__val_number_decimal_token2] = ACTIONS(2206), + [aux_sym__val_number_decimal_token3] = ACTIONS(2206), + [aux_sym__val_number_decimal_token4] = ACTIONS(2206), + [aux_sym__val_number_token1] = ACTIONS(2206), + [aux_sym__val_number_token2] = ACTIONS(2206), + [aux_sym__val_number_token3] = ACTIONS(2206), + [aux_sym__val_number_token4] = ACTIONS(2206), + [aux_sym__val_number_token5] = ACTIONS(2206), + [aux_sym__val_number_token6] = ACTIONS(2206), + [anon_sym_0b] = ACTIONS(2206), + [anon_sym_0o] = ACTIONS(2206), + [anon_sym_0x] = ACTIONS(2206), + [sym_val_date] = ACTIONS(2206), + [anon_sym_DQUOTE] = ACTIONS(2210), + [sym__str_single_quotes] = ACTIONS(2210), + [sym__str_back_ticks] = ACTIONS(2210), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2210), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2210), + [anon_sym_err_GT] = ACTIONS(2206), + [anon_sym_out_GT] = ACTIONS(2206), + [anon_sym_e_GT] = ACTIONS(2206), + [anon_sym_o_GT] = ACTIONS(2206), + [anon_sym_err_PLUSout_GT] = ACTIONS(2206), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2206), + [anon_sym_o_PLUSe_GT] = ACTIONS(2206), + [anon_sym_e_PLUSo_GT] = ACTIONS(2206), + [anon_sym_err_GT_GT] = ACTIONS(2206), + [anon_sym_out_GT_GT] = ACTIONS(2206), + [anon_sym_e_GT_GT] = ACTIONS(2206), + [anon_sym_o_GT_GT] = ACTIONS(2206), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2206), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2206), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2206), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2206), + [aux_sym_unquoted_token1] = ACTIONS(2206), + [aux_sym_unquoted_token4] = ACTIONS(2212), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2210), + }, + [1696] = { + [sym_cell_path] = STATE(2128), + [sym_path] = STATE(1978), + [sym_comment] = STATE(1696), + [aux_sym_cell_path_repeat1] = STATE(1796), + [ts_builtin_sym_end] = ACTIONS(963), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(963), + [anon_sym_in2] = ACTIONS(963), + [anon_sym_STAR2] = ACTIONS(961), + [anon_sym_and2] = ACTIONS(963), + [anon_sym_xor2] = ACTIONS(963), + [anon_sym_or2] = ACTIONS(963), + [anon_sym_not_DASHin2] = ACTIONS(963), + [anon_sym_starts_DASHwith2] = ACTIONS(963), + [anon_sym_ends_DASHwith2] = ACTIONS(963), + [anon_sym_EQ_EQ2] = ACTIONS(963), + [anon_sym_BANG_EQ2] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_LT_EQ2] = ACTIONS(963), + [anon_sym_GT_EQ2] = ACTIONS(963), + [anon_sym_EQ_TILDE2] = ACTIONS(963), + [anon_sym_BANG_TILDE2] = ACTIONS(963), + [anon_sym_STAR_STAR2] = ACTIONS(963), + [anon_sym_PLUS_PLUS2] = ACTIONS(963), + [anon_sym_SLASH2] = ACTIONS(961), + [anon_sym_mod2] = ACTIONS(963), + [anon_sym_SLASH_SLASH2] = ACTIONS(963), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_bit_DASHshl2] = ACTIONS(963), + [anon_sym_bit_DASHshr2] = ACTIONS(963), + [anon_sym_bit_DASHand2] = ACTIONS(963), + [anon_sym_bit_DASHxor2] = ACTIONS(963), + [anon_sym_bit_DASHor2] = ACTIONS(963), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(5049), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), + }, + [1697] = { + [sym_cmd_identifier] = STATE(4195), + [sym__command_name] = STATE(6642), + [sym_scope_pattern] = STATE(6240), + [sym_wild_card] = STATE(6698), + [sym_command_list] = STATE(6703), + [sym__val_number_decimal] = STATE(3762), + [sym_val_string] = STATE(4159), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_comment] = STATE(1697), + [aux_sym_cmd_identifier_token1] = ACTIONS(5033), + [aux_sym_cmd_identifier_token2] = ACTIONS(5035), + [aux_sym_cmd_identifier_token3] = ACTIONS(5035), + [aux_sym_cmd_identifier_token4] = ACTIONS(5035), + [aux_sym_cmd_identifier_token5] = ACTIONS(5035), + [aux_sym_cmd_identifier_token6] = ACTIONS(5035), + [aux_sym_cmd_identifier_token7] = ACTIONS(5035), + [aux_sym_cmd_identifier_token8] = ACTIONS(5035), + [aux_sym_cmd_identifier_token9] = ACTIONS(5033), + [aux_sym_cmd_identifier_token10] = ACTIONS(5035), + [aux_sym_cmd_identifier_token11] = ACTIONS(5035), + [aux_sym_cmd_identifier_token12] = ACTIONS(5035), + [aux_sym_cmd_identifier_token13] = ACTIONS(5033), + [aux_sym_cmd_identifier_token14] = ACTIONS(5035), + [aux_sym_cmd_identifier_token15] = ACTIONS(5033), + [aux_sym_cmd_identifier_token16] = ACTIONS(5035), + [aux_sym_cmd_identifier_token17] = ACTIONS(5035), + [aux_sym_cmd_identifier_token18] = ACTIONS(5035), + [aux_sym_cmd_identifier_token19] = ACTIONS(5035), + [aux_sym_cmd_identifier_token20] = ACTIONS(5035), + [aux_sym_cmd_identifier_token21] = ACTIONS(5035), + [aux_sym_cmd_identifier_token22] = ACTIONS(5035), + [aux_sym_cmd_identifier_token23] = ACTIONS(5035), + [aux_sym_cmd_identifier_token24] = ACTIONS(5035), + [aux_sym_cmd_identifier_token25] = ACTIONS(5035), + [aux_sym_cmd_identifier_token26] = ACTIONS(5035), + [aux_sym_cmd_identifier_token27] = ACTIONS(5035), + [aux_sym_cmd_identifier_token28] = ACTIONS(5035), + [aux_sym_cmd_identifier_token29] = ACTIONS(5035), + [aux_sym_cmd_identifier_token30] = ACTIONS(5035), + [aux_sym_cmd_identifier_token31] = ACTIONS(5035), + [aux_sym_cmd_identifier_token32] = ACTIONS(5035), + [aux_sym_cmd_identifier_token33] = ACTIONS(5035), + [aux_sym_cmd_identifier_token34] = ACTIONS(5033), + [aux_sym_cmd_identifier_token35] = ACTIONS(5035), + [aux_sym_cmd_identifier_token36] = ACTIONS(5035), + [aux_sym_cmd_identifier_token37] = ACTIONS(5035), + [aux_sym_cmd_identifier_token38] = ACTIONS(5033), + [aux_sym_cmd_identifier_token39] = ACTIONS(5035), + [aux_sym_cmd_identifier_token40] = ACTIONS(5035), + [sym__newline] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_RBRACE] = ACTIONS(5063), + [anon_sym_STAR2] = ACTIONS(5041), + [aux_sym__val_number_decimal_token1] = ACTIONS(5043), + [aux_sym__val_number_decimal_token2] = ACTIONS(5043), + [aux_sym__val_number_decimal_token3] = ACTIONS(5045), + [aux_sym__val_number_decimal_token4] = ACTIONS(5047), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), + }, + [1698] = { + [sym_comment] = STATE(1698), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(1000), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(1000), + [anon_sym_SLASH2] = ACTIONS(998), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), + }, + [1699] = { + [sym_comment] = STATE(1699), + [ts_builtin_sym_end] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(996), + [anon_sym_DOT_DOT_LT] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(996), + [aux_sym__val_number_token5] = ACTIONS(996), + [aux_sym__val_number_token6] = ACTIONS(996), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [sym_val_date] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [aux_sym_unquoted_token1] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), + }, + [1700] = { + [sym__expr_parenthesized_immediate] = STATE(7999), + [sym_comment] = STATE(1700), + [ts_builtin_sym_end] = ACTIONS(4983), + [sym__newline] = ACTIONS(4983), + [anon_sym_SEMI] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_err_GT_PIPE] = ACTIONS(4983), + [anon_sym_out_GT_PIPE] = ACTIONS(4983), + [anon_sym_e_GT_PIPE] = ACTIONS(4983), + [anon_sym_o_GT_PIPE] = ACTIONS(4983), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4983), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4983), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4983), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(4985), + [anon_sym_DASH_DASH] = ACTIONS(4983), + [anon_sym_DASH2] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4983), + [anon_sym_DOT_DOT] = ACTIONS(4985), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), + [anon_sym_DOT_DOT_LT] = ACTIONS(4983), + [anon_sym_null] = ACTIONS(4983), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4983), + [aux_sym__val_number_decimal_token3] = ACTIONS(4983), + [aux_sym__val_number_decimal_token4] = ACTIONS(4983), + [aux_sym__val_number_token1] = ACTIONS(4983), + [aux_sym__val_number_token2] = ACTIONS(4983), + [aux_sym__val_number_token3] = ACTIONS(4983), + [aux_sym__val_number_token4] = ACTIONS(4983), + [aux_sym__val_number_token5] = ACTIONS(4983), + [aux_sym__val_number_token6] = ACTIONS(4983), + [anon_sym_0b] = ACTIONS(4985), + [anon_sym_0o] = ACTIONS(4985), + [anon_sym_0x] = ACTIONS(4985), + [sym_val_date] = ACTIONS(4983), + [anon_sym_DQUOTE] = ACTIONS(4983), + [sym__str_single_quotes] = ACTIONS(4983), + [sym__str_back_ticks] = ACTIONS(4983), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4983), + [anon_sym_err_GT] = ACTIONS(4985), + [anon_sym_out_GT] = ACTIONS(4985), + [anon_sym_e_GT] = ACTIONS(4985), + [anon_sym_o_GT] = ACTIONS(4985), + [anon_sym_err_PLUSout_GT] = ACTIONS(4985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4985), + [anon_sym_o_PLUSe_GT] = ACTIONS(4985), + [anon_sym_e_PLUSo_GT] = ACTIONS(4985), + [anon_sym_err_GT_GT] = ACTIONS(4983), + [anon_sym_out_GT_GT] = ACTIONS(4983), + [anon_sym_e_GT_GT] = ACTIONS(4983), + [anon_sym_o_GT_GT] = ACTIONS(4983), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4983), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4983), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4983), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4983), + [aux_sym_unquoted_token1] = ACTIONS(4985), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4983), + }, + [1701] = { + [sym_comment] = STATE(1701), + [sym__newline] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_err_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_GT_PIPE] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1721), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [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), + [aux_sym__val_number_token4] = ACTIONS(1721), + [aux_sym__val_number_token5] = ACTIONS(1721), + [aux_sym__val_number_token6] = ACTIONS(1721), + [anon_sym_0b] = ACTIONS(1709), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1721), + [anon_sym_out_GT_GT] = ACTIONS(1721), + [anon_sym_e_GT_GT] = ACTIONS(1721), + [anon_sym_o_GT_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(4716), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1721), + }, + [1702] = { + [sym_path] = STATE(1894), + [sym_comment] = STATE(1702), + [aux_sym_cell_path_repeat1] = STATE(1717), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(969), + [anon_sym_GT2] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_EQ_GT] = ACTIONS(969), + [anon_sym_STAR2] = ACTIONS(967), + [anon_sym_and2] = ACTIONS(969), + [anon_sym_xor2] = ACTIONS(969), + [anon_sym_or2] = ACTIONS(969), + [anon_sym_not_DASHin2] = ACTIONS(969), + [anon_sym_starts_DASHwith2] = ACTIONS(969), + [anon_sym_ends_DASHwith2] = ACTIONS(969), + [anon_sym_EQ_EQ2] = ACTIONS(969), + [anon_sym_BANG_EQ2] = ACTIONS(969), + [anon_sym_LT2] = ACTIONS(967), + [anon_sym_LT_EQ2] = ACTIONS(969), + [anon_sym_GT_EQ2] = ACTIONS(969), + [anon_sym_EQ_TILDE2] = ACTIONS(969), + [anon_sym_BANG_TILDE2] = ACTIONS(969), + [anon_sym_STAR_STAR2] = ACTIONS(969), + [anon_sym_PLUS_PLUS2] = ACTIONS(969), + [anon_sym_SLASH2] = ACTIONS(967), + [anon_sym_mod2] = ACTIONS(969), + [anon_sym_SLASH_SLASH2] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_bit_DASHshl2] = ACTIONS(969), + [anon_sym_bit_DASHshr2] = ACTIONS(969), + [anon_sym_bit_DASHand2] = ACTIONS(969), + [anon_sym_bit_DASHxor2] = ACTIONS(969), + [anon_sym_bit_DASHor2] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(247), + }, + [1703] = { + [sym_comment] = STATE(1703), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1008), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [aux_sym_unquoted_token1] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1008), + }, + [1704] = { + [sym_comment] = STATE(1704), + [ts_builtin_sym_end] = ACTIONS(980), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(5065), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(978), + [anon_sym_0o] = ACTIONS(978), + [anon_sym_0x] = ACTIONS(978), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), + }, + [1705] = { + [sym_comment] = STATE(1705), + [ts_builtin_sym_end] = ACTIONS(986), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(5067), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_DOT_DOT_LT] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(986), + }, + [1706] = { + [sym_comment] = STATE(1706), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [1707] = { + [sym_comment] = STATE(1707), + [ts_builtin_sym_end] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_DOT_DOT] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2214), + [anon_sym_DOT_DOT_LT] = ACTIONS(2214), + [anon_sym_null] = ACTIONS(2214), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(2214), + [aux_sym__val_number_token5] = ACTIONS(2214), + [aux_sym__val_number_token6] = ACTIONS(2214), + [anon_sym_0b] = ACTIONS(2214), + [anon_sym_0o] = ACTIONS(2214), + [anon_sym_0x] = ACTIONS(2214), + [sym_val_date] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2218), + [sym__str_single_quotes] = ACTIONS(2218), + [sym__str_back_ticks] = ACTIONS(2218), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2218), + [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(2214), + [aux_sym_unquoted_token4] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2218), + }, + [1708] = { + [sym_comment] = STATE(1708), + [ts_builtin_sym_end] = ACTIONS(2224), + [sym__newline] = ACTIONS(2224), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_err_GT_PIPE] = ACTIONS(2224), + [anon_sym_out_GT_PIPE] = ACTIONS(2224), + [anon_sym_e_GT_PIPE] = ACTIONS(2224), + [anon_sym_o_GT_PIPE] = ACTIONS(2224), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2224), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2224), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2224), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2216), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), + [anon_sym_DOT_DOT_LT] = ACTIONS(2222), + [anon_sym_null] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [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), + [aux_sym__val_number_token4] = ACTIONS(2222), + [aux_sym__val_number_token5] = ACTIONS(2222), + [aux_sym__val_number_token6] = ACTIONS(2222), + [anon_sym_0b] = ACTIONS(2222), + [anon_sym_0o] = ACTIONS(2222), + [anon_sym_0x] = ACTIONS(2222), + [sym_val_date] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2224), + [sym__str_single_quotes] = ACTIONS(2224), + [sym__str_back_ticks] = ACTIONS(2224), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2224), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2224), + [anon_sym_err_GT] = ACTIONS(2222), + [anon_sym_out_GT] = ACTIONS(2222), + [anon_sym_e_GT] = ACTIONS(2222), + [anon_sym_o_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT] = ACTIONS(2222), + [anon_sym_err_GT_GT] = ACTIONS(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(2222), + [aux_sym_unquoted_token4] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2224), + }, + [1709] = { + [sym_cell_path] = STATE(2118), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1709), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_err_GT_PIPE] = ACTIONS(2096), + [anon_sym_out_GT_PIPE] = ACTIONS(2096), + [anon_sym_e_GT_PIPE] = ACTIONS(2096), + [anon_sym_o_GT_PIPE] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), + [anon_sym_RPAREN] = ACTIONS(2096), + [anon_sym_GT2] = ACTIONS(2094), + [anon_sym_DASH2] = ACTIONS(2096), + [anon_sym_in2] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_EQ_GT] = ACTIONS(2096), + [anon_sym_STAR2] = ACTIONS(2094), + [anon_sym_and2] = ACTIONS(2096), + [anon_sym_xor2] = ACTIONS(2096), + [anon_sym_or2] = ACTIONS(2096), + [anon_sym_not_DASHin2] = ACTIONS(2096), + [anon_sym_starts_DASHwith2] = ACTIONS(2096), + [anon_sym_ends_DASHwith2] = ACTIONS(2096), + [anon_sym_EQ_EQ2] = ACTIONS(2096), + [anon_sym_BANG_EQ2] = ACTIONS(2096), + [anon_sym_LT2] = ACTIONS(2094), + [anon_sym_LT_EQ2] = ACTIONS(2096), + [anon_sym_GT_EQ2] = ACTIONS(2096), + [anon_sym_EQ_TILDE2] = ACTIONS(2096), + [anon_sym_BANG_TILDE2] = ACTIONS(2096), + [anon_sym_STAR_STAR2] = ACTIONS(2096), + [anon_sym_PLUS_PLUS2] = ACTIONS(2096), + [anon_sym_SLASH2] = ACTIONS(2094), + [anon_sym_mod2] = ACTIONS(2096), + [anon_sym_SLASH_SLASH2] = ACTIONS(2096), + [anon_sym_PLUS2] = ACTIONS(2094), + [anon_sym_bit_DASHshl2] = ACTIONS(2096), + [anon_sym_bit_DASHshr2] = ACTIONS(2096), + [anon_sym_bit_DASHand2] = ACTIONS(2096), + [anon_sym_bit_DASHxor2] = ACTIONS(2096), + [anon_sym_bit_DASHor2] = ACTIONS(2096), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(2094), + [anon_sym_out_GT] = ACTIONS(2094), + [anon_sym_e_GT] = ACTIONS(2094), + [anon_sym_o_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT] = ACTIONS(2094), + [anon_sym_err_GT_GT] = ACTIONS(2096), + [anon_sym_out_GT_GT] = ACTIONS(2096), + [anon_sym_e_GT_GT] = ACTIONS(2096), + [anon_sym_o_GT_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), + [anon_sym_POUND] = ACTIONS(247), + }, + [1710] = { + [sym_comment] = STATE(1710), + [ts_builtin_sym_end] = 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(1878), + [anon_sym_DOLLAR] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_DASH2] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_DOT_DOT] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1886), + [anon_sym_DOT_DOT_LT] = ACTIONS(1886), + [anon_sym_null] = ACTIONS(1886), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [aux_sym__val_number_decimal_token1] = ACTIONS(1878), + [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), + [aux_sym__val_number_token4] = ACTIONS(1886), + [aux_sym__val_number_token5] = ACTIONS(1886), + [aux_sym__val_number_token6] = ACTIONS(1886), + [anon_sym_0b] = ACTIONS(1878), + [anon_sym_0o] = ACTIONS(1878), + [anon_sym_0x] = ACTIONS(1878), + [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(1878), + [anon_sym_out_GT] = ACTIONS(1878), + [anon_sym_e_GT] = ACTIONS(1878), + [anon_sym_o_GT] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT] = ACTIONS(1878), + [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(1878), + [aux_sym_unquoted_token2] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1886), + }, + [1711] = { + [sym_cell_path] = STATE(2120), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1711), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_err_GT_PIPE] = ACTIONS(2092), + [anon_sym_out_GT_PIPE] = ACTIONS(2092), + [anon_sym_e_GT_PIPE] = ACTIONS(2092), + [anon_sym_o_GT_PIPE] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), + [anon_sym_RPAREN] = ACTIONS(2092), + [anon_sym_GT2] = ACTIONS(2090), + [anon_sym_DASH2] = ACTIONS(2092), + [anon_sym_in2] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_EQ_GT] = ACTIONS(2092), + [anon_sym_STAR2] = ACTIONS(2090), + [anon_sym_and2] = ACTIONS(2092), + [anon_sym_xor2] = ACTIONS(2092), + [anon_sym_or2] = ACTIONS(2092), + [anon_sym_not_DASHin2] = ACTIONS(2092), + [anon_sym_starts_DASHwith2] = ACTIONS(2092), + [anon_sym_ends_DASHwith2] = ACTIONS(2092), + [anon_sym_EQ_EQ2] = ACTIONS(2092), + [anon_sym_BANG_EQ2] = ACTIONS(2092), + [anon_sym_LT2] = ACTIONS(2090), + [anon_sym_LT_EQ2] = ACTIONS(2092), + [anon_sym_GT_EQ2] = ACTIONS(2092), + [anon_sym_EQ_TILDE2] = ACTIONS(2092), + [anon_sym_BANG_TILDE2] = ACTIONS(2092), + [anon_sym_STAR_STAR2] = ACTIONS(2092), + [anon_sym_PLUS_PLUS2] = ACTIONS(2092), + [anon_sym_SLASH2] = ACTIONS(2090), + [anon_sym_mod2] = ACTIONS(2092), + [anon_sym_SLASH_SLASH2] = ACTIONS(2092), + [anon_sym_PLUS2] = ACTIONS(2090), + [anon_sym_bit_DASHshl2] = ACTIONS(2092), + [anon_sym_bit_DASHshr2] = ACTIONS(2092), + [anon_sym_bit_DASHand2] = ACTIONS(2092), + [anon_sym_bit_DASHxor2] = ACTIONS(2092), + [anon_sym_bit_DASHor2] = ACTIONS(2092), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(2090), + [anon_sym_out_GT] = ACTIONS(2090), + [anon_sym_e_GT] = ACTIONS(2090), + [anon_sym_o_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT] = ACTIONS(2090), + [anon_sym_err_GT_GT] = ACTIONS(2092), + [anon_sym_out_GT_GT] = ACTIONS(2092), + [anon_sym_e_GT_GT] = ACTIONS(2092), + [anon_sym_o_GT_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), + [anon_sym_POUND] = ACTIONS(247), + }, + [1712] = { + [sym_comment] = STATE(1712), + [ts_builtin_sym_end] = ACTIONS(4956), + [sym__newline] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_err_GT_PIPE] = ACTIONS(4956), + [anon_sym_out_GT_PIPE] = ACTIONS(4956), + [anon_sym_e_GT_PIPE] = ACTIONS(4956), + [anon_sym_o_GT_PIPE] = ACTIONS(4956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [anon_sym_DOLLAR] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4958), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4956), + [anon_sym_DOT_DOT_LT] = ACTIONS(4956), + [anon_sym_null] = ACTIONS(4958), + [anon_sym_true] = ACTIONS(4958), + [anon_sym_false] = ACTIONS(4958), + [aux_sym__val_number_decimal_token1] = ACTIONS(4958), + [aux_sym__val_number_decimal_token2] = ACTIONS(4958), + [aux_sym__val_number_decimal_token3] = ACTIONS(4956), + [aux_sym__val_number_decimal_token4] = ACTIONS(4956), + [aux_sym__val_number_token1] = ACTIONS(4958), + [aux_sym__val_number_token2] = ACTIONS(4958), + [aux_sym__val_number_token3] = ACTIONS(4958), + [aux_sym__val_number_token4] = ACTIONS(4958), + [aux_sym__val_number_token5] = ACTIONS(4958), + [aux_sym__val_number_token6] = ACTIONS(4958), + [anon_sym_0b] = ACTIONS(4958), + [anon_sym_0o] = ACTIONS(4958), + [anon_sym_0x] = ACTIONS(4958), + [sym_val_date] = ACTIONS(4958), + [anon_sym_DQUOTE] = ACTIONS(4956), + [sym__str_single_quotes] = ACTIONS(4956), + [sym__str_back_ticks] = ACTIONS(4956), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4956), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4956), + [anon_sym_err_GT] = ACTIONS(4958), + [anon_sym_out_GT] = ACTIONS(4958), + [anon_sym_e_GT] = ACTIONS(4958), + [anon_sym_o_GT] = ACTIONS(4958), + [anon_sym_err_PLUSout_GT] = ACTIONS(4958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4958), + [anon_sym_o_PLUSe_GT] = ACTIONS(4958), + [anon_sym_e_PLUSo_GT] = ACTIONS(4958), + [anon_sym_err_GT_GT] = ACTIONS(4956), + [anon_sym_out_GT_GT] = ACTIONS(4956), + [anon_sym_e_GT_GT] = ACTIONS(4956), + [anon_sym_o_GT_GT] = ACTIONS(4956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4956), + [anon_sym_EQ2] = ACTIONS(5069), + [sym_short_flag_identifier] = ACTIONS(5071), + [aux_sym_unquoted_token1] = ACTIONS(4958), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4956), + }, + [1713] = { + [sym__expression] = STATE(5658), + [sym_expr_unary] = STATE(3905), + [sym__expr_unary_minus] = STATE(3850), + [sym_expr_binary] = STATE(3905), + [sym__expr_binary_expression] = STATE(3977), + [sym_expr_parenthesized] = STATE(3599), + [sym_val_range] = STATE(3597), + [sym__value] = STATE(3905), + [sym_val_nothing] = STATE(3532), + [sym_val_bool] = STATE(3532), + [sym_val_variable] = STATE(3594), + [sym_val_number] = STATE(3532), + [sym__val_number_decimal] = STATE(3514), + [sym__val_number] = STATE(3492), + [sym_val_duration] = STATE(3532), + [sym_val_filesize] = STATE(3532), + [sym_val_binary] = STATE(3532), + [sym_val_string] = STATE(3532), + [sym__raw_str] = STATE(3584), + [sym__str_double_quotes] = STATE(3584), + [sym_val_interpolated] = STATE(3532), + [sym__inter_single_quotes] = STATE(3486), + [sym__inter_double_quotes] = STATE(3489), + [sym_val_list] = STATE(3532), + [sym_val_record] = STATE(3532), + [sym_val_table] = STATE(3532), + [sym_val_closure] = STATE(3532), + [sym__flag] = STATE(2130), + [sym_short_flag] = STATE(3624), + [sym_long_flag] = STATE(3624), + [sym_comment] = STATE(1713), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(5000), + [anon_sym_DASH2] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_DOT_DOT] = ACTIONS(5004), + [aux_sym_expr_unary_token1] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), + [anon_sym_DOT_DOT_LT] = ACTIONS(5006), + [anon_sym_null] = ACTIONS(5008), + [anon_sym_true] = ACTIONS(5010), + [anon_sym_false] = ACTIONS(5010), + [aux_sym__val_number_decimal_token1] = ACTIONS(3459), + [aux_sym__val_number_decimal_token2] = ACTIONS(3461), + [aux_sym__val_number_decimal_token3] = ACTIONS(3463), + [aux_sym__val_number_decimal_token4] = ACTIONS(3465), + [aux_sym__val_number_token1] = ACTIONS(3467), + [aux_sym__val_number_token2] = ACTIONS(3467), + [aux_sym__val_number_token3] = ACTIONS(3467), + [aux_sym__val_number_token4] = ACTIONS(3467), + [aux_sym__val_number_token5] = ACTIONS(3467), + [aux_sym__val_number_token6] = ACTIONS(3467), + [anon_sym_0b] = ACTIONS(3471), + [anon_sym_0o] = ACTIONS(3473), + [anon_sym_0x] = ACTIONS(3473), + [sym_val_date] = ACTIONS(5012), + [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_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3487), + }, + [1714] = { + [sym_comment] = STATE(1714), + [sym__newline] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_err_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_GT_PIPE] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1721), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(1721), + [anon_sym_false] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [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), + [aux_sym__val_number_token4] = ACTIONS(1721), + [aux_sym__val_number_token5] = ACTIONS(1721), + [aux_sym__val_number_token6] = ACTIONS(1721), + [anon_sym_0b] = ACTIONS(1709), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1721), + [anon_sym_out_GT_GT] = ACTIONS(1721), + [anon_sym_e_GT_GT] = ACTIONS(1721), + [anon_sym_o_GT_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1721), + }, + [1715] = { + [sym_comment] = STATE(1715), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1012), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), + [aux_sym__val_number_token1] = ACTIONS(1012), + [aux_sym__val_number_token2] = ACTIONS(1012), + [aux_sym__val_number_token3] = ACTIONS(1012), + [aux_sym__val_number_token4] = ACTIONS(1012), + [aux_sym__val_number_token5] = ACTIONS(1012), + [aux_sym__val_number_token6] = ACTIONS(1012), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [aux_sym_unquoted_token1] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1012), + }, + [1716] = { + [sym_comment] = STATE(1716), + [ts_builtin_sym_end] = ACTIONS(1675), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_GT2] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_in2] = ACTIONS(1675), + [anon_sym_STAR2] = ACTIONS(1673), + [anon_sym_and2] = ACTIONS(1675), + [anon_sym_xor2] = ACTIONS(1675), + [anon_sym_or2] = ACTIONS(1675), + [anon_sym_not_DASHin2] = ACTIONS(1675), + [anon_sym_starts_DASHwith2] = ACTIONS(1675), + [anon_sym_ends_DASHwith2] = ACTIONS(1675), + [anon_sym_EQ_EQ2] = ACTIONS(1675), + [anon_sym_BANG_EQ2] = ACTIONS(1675), + [anon_sym_LT2] = ACTIONS(1673), + [anon_sym_LT_EQ2] = ACTIONS(1675), + [anon_sym_GT_EQ2] = ACTIONS(1675), + [anon_sym_EQ_TILDE2] = ACTIONS(1675), + [anon_sym_BANG_TILDE2] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_STAR_STAR2] = ACTIONS(1675), + [anon_sym_PLUS_PLUS2] = ACTIONS(1675), + [anon_sym_SLASH2] = ACTIONS(1673), + [anon_sym_mod2] = ACTIONS(1675), + [anon_sym_SLASH_SLASH2] = ACTIONS(1675), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_bit_DASHshl2] = ACTIONS(1675), + [anon_sym_bit_DASHshr2] = ACTIONS(1675), + [anon_sym_bit_DASHand2] = ACTIONS(1675), + [anon_sym_bit_DASHxor2] = ACTIONS(1675), + [anon_sym_bit_DASHor2] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1673), + [sym_duration_unit] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(247), + }, + [1717] = { + [sym_path] = STATE(1894), + [sym_comment] = STATE(1717), + [aux_sym_cell_path_repeat1] = STATE(1717), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_GT2] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(973), + [anon_sym_in2] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_EQ_GT] = ACTIONS(973), + [anon_sym_STAR2] = ACTIONS(971), + [anon_sym_and2] = ACTIONS(973), + [anon_sym_xor2] = ACTIONS(973), + [anon_sym_or2] = ACTIONS(973), + [anon_sym_not_DASHin2] = ACTIONS(973), + [anon_sym_starts_DASHwith2] = ACTIONS(973), + [anon_sym_ends_DASHwith2] = ACTIONS(973), + [anon_sym_EQ_EQ2] = ACTIONS(973), + [anon_sym_BANG_EQ2] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(971), + [anon_sym_LT_EQ2] = ACTIONS(973), + [anon_sym_GT_EQ2] = ACTIONS(973), + [anon_sym_EQ_TILDE2] = ACTIONS(973), + [anon_sym_BANG_TILDE2] = ACTIONS(973), + [anon_sym_STAR_STAR2] = ACTIONS(973), + [anon_sym_PLUS_PLUS2] = ACTIONS(973), + [anon_sym_SLASH2] = ACTIONS(971), + [anon_sym_mod2] = ACTIONS(973), + [anon_sym_SLASH_SLASH2] = ACTIONS(973), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_bit_DASHshl2] = ACTIONS(973), + [anon_sym_bit_DASHshr2] = ACTIONS(973), + [anon_sym_bit_DASHand2] = ACTIONS(973), + [anon_sym_bit_DASHxor2] = ACTIONS(973), + [anon_sym_bit_DASHor2] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(247), + }, + [1718] = { + [sym_comment] = STATE(1718), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym__newline] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_err_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_GT_PIPE] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_DOLLAR] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_DOT_DOT] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1785), + [anon_sym_false] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_0b] = ACTIONS(1783), + [anon_sym_0o] = ACTIONS(1783), + [anon_sym_0x] = ACTIONS(1783), + [sym_val_date] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), + [anon_sym_err_GT] = ACTIONS(1783), + [anon_sym_out_GT] = ACTIONS(1783), + [anon_sym_e_GT] = ACTIONS(1783), + [anon_sym_o_GT] = ACTIONS(1783), + [anon_sym_err_PLUSout_GT] = ACTIONS(1783), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), + [anon_sym_o_PLUSe_GT] = ACTIONS(1783), + [anon_sym_e_PLUSo_GT] = ACTIONS(1783), + [anon_sym_err_GT_GT] = ACTIONS(1785), + [anon_sym_out_GT_GT] = ACTIONS(1785), + [anon_sym_e_GT_GT] = ACTIONS(1785), + [anon_sym_o_GT_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), + [aux_sym_unquoted_token1] = ACTIONS(1783), + [aux_sym_unquoted_token2] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1785), + }, + [1719] = { + [sym_comment] = STATE(1719), + [ts_builtin_sym_end] = ACTIONS(1765), + [sym__newline] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_err_GT_PIPE] = ACTIONS(1765), + [anon_sym_out_GT_PIPE] = ACTIONS(1765), + [anon_sym_e_GT_PIPE] = ACTIONS(1765), + [anon_sym_o_GT_PIPE] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), + [anon_sym_GT2] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_STAR2] = ACTIONS(1763), + [anon_sym_and2] = ACTIONS(1765), + [anon_sym_xor2] = ACTIONS(1765), + [anon_sym_or2] = ACTIONS(1765), + [anon_sym_not_DASHin2] = ACTIONS(1765), + [anon_sym_starts_DASHwith2] = ACTIONS(1765), + [anon_sym_ends_DASHwith2] = ACTIONS(1765), + [anon_sym_EQ_EQ2] = ACTIONS(1765), + [anon_sym_BANG_EQ2] = ACTIONS(1765), + [anon_sym_LT2] = ACTIONS(1763), + [anon_sym_LT_EQ2] = ACTIONS(1765), + [anon_sym_GT_EQ2] = ACTIONS(1765), + [anon_sym_EQ_TILDE2] = ACTIONS(1765), + [anon_sym_BANG_TILDE2] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1765), + [anon_sym_STAR_STAR2] = ACTIONS(1765), + [anon_sym_PLUS_PLUS2] = ACTIONS(1765), + [anon_sym_SLASH2] = ACTIONS(1763), + [anon_sym_mod2] = ACTIONS(1765), + [anon_sym_SLASH_SLASH2] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_bit_DASHshl2] = ACTIONS(1765), + [anon_sym_bit_DASHshr2] = ACTIONS(1765), + [anon_sym_bit_DASHand2] = ACTIONS(1765), + [anon_sym_bit_DASHxor2] = ACTIONS(1765), + [anon_sym_bit_DASHor2] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1765), + [anon_sym_err_GT] = ACTIONS(1763), + [anon_sym_out_GT] = ACTIONS(1763), + [anon_sym_e_GT] = ACTIONS(1763), + [anon_sym_o_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT] = ACTIONS(1763), + [anon_sym_err_GT_GT] = ACTIONS(1765), + [anon_sym_out_GT_GT] = ACTIONS(1765), + [anon_sym_e_GT_GT] = ACTIONS(1765), + [anon_sym_o_GT_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(247), + }, + [1720] = { + [sym__expr_parenthesized_immediate] = STATE(7505), + [sym_comment] = STATE(1720), + [sym__newline] = ACTIONS(5076), + [anon_sym_SEMI] = ACTIONS(5076), + [anon_sym_PIPE] = ACTIONS(5076), + [anon_sym_err_GT_PIPE] = ACTIONS(5076), + [anon_sym_out_GT_PIPE] = ACTIONS(5076), + [anon_sym_e_GT_PIPE] = ACTIONS(5076), + [anon_sym_o_GT_PIPE] = ACTIONS(5076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(5076), + [anon_sym_LPAREN] = ACTIONS(5078), + [anon_sym_RPAREN] = ACTIONS(5076), + [anon_sym_DOLLAR] = ACTIONS(5078), + [anon_sym_DASH_DASH] = ACTIONS(5076), + [anon_sym_DASH2] = ACTIONS(5078), + [anon_sym_LBRACE] = ACTIONS(5076), + [anon_sym_DOT_DOT] = ACTIONS(5078), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5076), + [anon_sym_DOT_DOT_LT] = ACTIONS(5076), + [anon_sym_null] = ACTIONS(5076), + [anon_sym_true] = ACTIONS(5076), + [anon_sym_false] = ACTIONS(5076), + [aux_sym__val_number_decimal_token1] = ACTIONS(5078), + [aux_sym__val_number_decimal_token2] = ACTIONS(5076), + [aux_sym__val_number_decimal_token3] = ACTIONS(5076), + [aux_sym__val_number_decimal_token4] = ACTIONS(5076), + [aux_sym__val_number_token1] = ACTIONS(5076), + [aux_sym__val_number_token2] = ACTIONS(5076), + [aux_sym__val_number_token3] = ACTIONS(5076), + [aux_sym__val_number_token4] = ACTIONS(5076), + [aux_sym__val_number_token5] = ACTIONS(5076), + [aux_sym__val_number_token6] = ACTIONS(5076), + [anon_sym_0b] = ACTIONS(5078), + [anon_sym_0o] = ACTIONS(5078), + [anon_sym_0x] = ACTIONS(5078), + [sym_val_date] = ACTIONS(5076), + [anon_sym_DQUOTE] = ACTIONS(5076), + [sym__str_single_quotes] = ACTIONS(5076), + [sym__str_back_ticks] = ACTIONS(5076), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5076), + [anon_sym_err_GT] = ACTIONS(5078), + [anon_sym_out_GT] = ACTIONS(5078), + [anon_sym_e_GT] = ACTIONS(5078), + [anon_sym_o_GT] = ACTIONS(5078), + [anon_sym_err_PLUSout_GT] = ACTIONS(5078), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5078), + [anon_sym_o_PLUSe_GT] = ACTIONS(5078), + [anon_sym_e_PLUSo_GT] = ACTIONS(5078), + [anon_sym_err_GT_GT] = ACTIONS(5076), + [anon_sym_out_GT_GT] = ACTIONS(5076), + [anon_sym_e_GT_GT] = ACTIONS(5076), + [anon_sym_o_GT_GT] = ACTIONS(5076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5076), + [aux_sym_unquoted_token1] = ACTIONS(5078), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5076), + }, + [1721] = { + [sym_comment] = STATE(1721), + [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(5080), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [aux_sym__immediate_decimal_token2] = ACTIONS(5082), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [1722] = { + [sym_comment] = STATE(1722), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), + }, + [1723] = { + [sym_comment] = STATE(1723), + [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_DASH2] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_DOT_DOT] = ACTIONS(1755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [aux_sym__immediate_decimal_token2] = ACTIONS(4966), + [anon_sym_null] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1757), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = ACTIONS(1757), + [anon_sym_0b] = ACTIONS(1755), + [anon_sym_0o] = ACTIONS(1755), + [anon_sym_0x] = ACTIONS(1755), + [sym_val_date] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), + [anon_sym_err_GT] = ACTIONS(1755), + [anon_sym_out_GT] = ACTIONS(1755), + [anon_sym_e_GT] = ACTIONS(1755), + [anon_sym_o_GT] = ACTIONS(1755), + [anon_sym_err_PLUSout_GT] = ACTIONS(1755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), + [anon_sym_o_PLUSe_GT] = ACTIONS(1755), + [anon_sym_e_PLUSo_GT] = ACTIONS(1755), + [anon_sym_err_GT_GT] = ACTIONS(1757), + [anon_sym_out_GT_GT] = ACTIONS(1757), + [anon_sym_e_GT_GT] = ACTIONS(1757), + [anon_sym_o_GT_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1757), + }, + [1724] = { + [sym_cell_path] = STATE(1679), + [sym_path] = STATE(1894), + [sym_comment] = STATE(1724), + [aux_sym_cell_path_repeat1] = STATE(1702), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_EQ_GT] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1735), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1735), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1735), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(247), + }, + [1725] = { + [sym_comment] = STATE(1725), + [ts_builtin_sym_end] = 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_GT2] = ACTIONS(1621), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1621), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1621), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1621), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1621), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1621), + [sym_duration_unit] = 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_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(247), + }, + [1726] = { + [sym_cmd_identifier] = STATE(4195), + [sym__command_name] = STATE(6642), + [sym_scope_pattern] = STATE(6275), + [sym_wild_card] = STATE(6698), + [sym_command_list] = STATE(6703), + [sym__val_number_decimal] = STATE(3762), + [sym_val_string] = STATE(4159), + [sym__raw_str] = STATE(4492), + [sym__str_double_quotes] = STATE(4492), + [sym_comment] = STATE(1726), + [aux_sym_cmd_identifier_token1] = ACTIONS(5033), + [aux_sym_cmd_identifier_token2] = ACTIONS(5035), + [aux_sym_cmd_identifier_token3] = ACTIONS(5035), + [aux_sym_cmd_identifier_token4] = ACTIONS(5035), + [aux_sym_cmd_identifier_token5] = ACTIONS(5035), + [aux_sym_cmd_identifier_token6] = ACTIONS(5035), + [aux_sym_cmd_identifier_token7] = ACTIONS(5035), + [aux_sym_cmd_identifier_token8] = ACTIONS(5035), + [aux_sym_cmd_identifier_token9] = ACTIONS(5033), + [aux_sym_cmd_identifier_token10] = ACTIONS(5035), + [aux_sym_cmd_identifier_token11] = ACTIONS(5035), + [aux_sym_cmd_identifier_token12] = ACTIONS(5035), + [aux_sym_cmd_identifier_token13] = ACTIONS(5033), + [aux_sym_cmd_identifier_token14] = ACTIONS(5035), + [aux_sym_cmd_identifier_token15] = ACTIONS(5033), + [aux_sym_cmd_identifier_token16] = ACTIONS(5035), + [aux_sym_cmd_identifier_token17] = ACTIONS(5035), + [aux_sym_cmd_identifier_token18] = ACTIONS(5035), + [aux_sym_cmd_identifier_token19] = ACTIONS(5035), + [aux_sym_cmd_identifier_token20] = ACTIONS(5035), + [aux_sym_cmd_identifier_token21] = ACTIONS(5035), + [aux_sym_cmd_identifier_token22] = ACTIONS(5035), + [aux_sym_cmd_identifier_token23] = ACTIONS(5035), + [aux_sym_cmd_identifier_token24] = ACTIONS(5035), + [aux_sym_cmd_identifier_token25] = ACTIONS(5035), + [aux_sym_cmd_identifier_token26] = ACTIONS(5035), + [aux_sym_cmd_identifier_token27] = ACTIONS(5035), + [aux_sym_cmd_identifier_token28] = ACTIONS(5035), + [aux_sym_cmd_identifier_token29] = ACTIONS(5035), + [aux_sym_cmd_identifier_token30] = ACTIONS(5035), + [aux_sym_cmd_identifier_token31] = ACTIONS(5035), + [aux_sym_cmd_identifier_token32] = ACTIONS(5035), + [aux_sym_cmd_identifier_token33] = ACTIONS(5035), + [aux_sym_cmd_identifier_token34] = ACTIONS(5033), + [aux_sym_cmd_identifier_token35] = ACTIONS(5035), + [aux_sym_cmd_identifier_token36] = ACTIONS(5035), + [aux_sym_cmd_identifier_token37] = ACTIONS(5035), + [aux_sym_cmd_identifier_token38] = ACTIONS(5033), + [aux_sym_cmd_identifier_token39] = ACTIONS(5035), + [aux_sym_cmd_identifier_token40] = ACTIONS(5035), + [sym__newline] = ACTIONS(5084), + [anon_sym_SEMI] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_STAR2] = ACTIONS(5041), + [aux_sym__val_number_decimal_token1] = ACTIONS(5043), + [aux_sym__val_number_decimal_token2] = ACTIONS(5043), + [aux_sym__val_number_decimal_token3] = ACTIONS(5045), + [aux_sym__val_number_decimal_token4] = ACTIONS(5047), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym__str_single_quotes] = ACTIONS(4011), + [sym__str_back_ticks] = ACTIONS(4011), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4013), + }, + [1727] = { + [sym__expr_parenthesized_immediate] = STATE(7489), + [sym_comment] = STATE(1727), + [ts_builtin_sym_end] = ACTIONS(4914), + [sym__newline] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4914), + [anon_sym_PIPE] = ACTIONS(4914), + [anon_sym_err_GT_PIPE] = ACTIONS(4914), + [anon_sym_out_GT_PIPE] = ACTIONS(4914), + [anon_sym_e_GT_PIPE] = ACTIONS(4914), + [anon_sym_o_GT_PIPE] = ACTIONS(4914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH2] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4914), + [anon_sym_DOT_DOT_LT] = ACTIONS(4914), + [anon_sym_null] = ACTIONS(4914), + [anon_sym_true] = ACTIONS(4914), + [anon_sym_false] = ACTIONS(4914), + [aux_sym__val_number_decimal_token1] = ACTIONS(4916), + [aux_sym__val_number_decimal_token2] = ACTIONS(4914), + [aux_sym__val_number_decimal_token3] = ACTIONS(4914), + [aux_sym__val_number_decimal_token4] = ACTIONS(4914), + [aux_sym__val_number_token1] = ACTIONS(4914), + [aux_sym__val_number_token2] = ACTIONS(4914), + [aux_sym__val_number_token3] = ACTIONS(4914), + [aux_sym__val_number_token4] = ACTIONS(4914), + [aux_sym__val_number_token5] = ACTIONS(4914), + [aux_sym__val_number_token6] = ACTIONS(4914), + [anon_sym_0b] = ACTIONS(4916), + [anon_sym_0o] = ACTIONS(4916), + [anon_sym_0x] = ACTIONS(4916), + [sym_val_date] = ACTIONS(4914), + [anon_sym_DQUOTE] = ACTIONS(4914), + [sym__str_single_quotes] = ACTIONS(4914), + [sym__str_back_ticks] = ACTIONS(4914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4914), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4914), + [anon_sym_err_GT] = ACTIONS(4916), + [anon_sym_out_GT] = ACTIONS(4916), + [anon_sym_e_GT] = ACTIONS(4916), + [anon_sym_o_GT] = ACTIONS(4916), + [anon_sym_err_PLUSout_GT] = ACTIONS(4916), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4916), + [anon_sym_o_PLUSe_GT] = ACTIONS(4916), + [anon_sym_e_PLUSo_GT] = ACTIONS(4916), + [anon_sym_err_GT_GT] = ACTIONS(4914), + [anon_sym_out_GT_GT] = ACTIONS(4914), + [anon_sym_e_GT_GT] = ACTIONS(4914), + [anon_sym_o_GT_GT] = ACTIONS(4914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4914), + [aux_sym_unquoted_token1] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4914), + }, + [1728] = { + [sym_comment] = STATE(1728), + [ts_builtin_sym_end] = 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(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DASH2] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_LPAREN2] = ACTIONS(1892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1892), + [aux_sym__val_number_token5] = ACTIONS(1892), + [aux_sym__val_number_token6] = 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), + [aux_sym_unquoted_token2] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1892), + }, + [1729] = { + [sym_comment] = STATE(1729), + [ts_builtin_sym_end] = 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(1866), + [anon_sym_DOLLAR] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), + [anon_sym_DOT_DOT_LT] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [aux_sym__val_number_decimal_token1] = ACTIONS(1866), + [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), + [aux_sym__val_number_token4] = ACTIONS(1874), + [aux_sym__val_number_token5] = ACTIONS(1874), + [aux_sym__val_number_token6] = ACTIONS(1874), + [anon_sym_0b] = ACTIONS(1866), + [anon_sym_0o] = ACTIONS(1866), + [anon_sym_0x] = ACTIONS(1866), + [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(1866), + [anon_sym_out_GT] = ACTIONS(1866), + [anon_sym_e_GT] = ACTIONS(1866), + [anon_sym_o_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT] = ACTIONS(1866), + [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(1866), + [aux_sym_unquoted_token2] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1874), + }, + [1730] = { + [sym_comment] = STATE(1730), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(996), + [anon_sym_xor2] = ACTIONS(996), + [anon_sym_or2] = ACTIONS(996), + [anon_sym_not_DASHin2] = ACTIONS(996), + [anon_sym_starts_DASHwith2] = ACTIONS(996), + [anon_sym_ends_DASHwith2] = ACTIONS(996), + [anon_sym_EQ_EQ2] = ACTIONS(996), + [anon_sym_BANG_EQ2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(996), + [anon_sym_GT_EQ2] = ACTIONS(996), + [anon_sym_EQ_TILDE2] = ACTIONS(996), + [anon_sym_BANG_TILDE2] = ACTIONS(996), + [anon_sym_STAR_STAR2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(996), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(996), + [anon_sym_SLASH_SLASH2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(996), + [anon_sym_bit_DASHshr2] = ACTIONS(996), + [anon_sym_bit_DASHand2] = ACTIONS(996), + [anon_sym_bit_DASHxor2] = ACTIONS(996), + [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), + }, + [1731] = { + [sym_comment] = STATE(1731), + [ts_builtin_sym_end] = ACTIONS(1000), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT] = ACTIONS(1000), + [anon_sym_null] = ACTIONS(1000), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [anon_sym_0b] = ACTIONS(998), + [anon_sym_0o] = ACTIONS(998), + [anon_sym_0x] = ACTIONS(998), + [sym_val_date] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [aux_sym_unquoted_token1] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [1732] = { + [sym_comment] = STATE(1732), + [sym__newline] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_err_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_GT_PIPE] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT] = ACTIONS(1016), + [anon_sym_null] = ACTIONS(1016), + [anon_sym_true] = ACTIONS(1016), + [anon_sym_false] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1016), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(1016), + [aux_sym__val_number_token2] = ACTIONS(1016), + [aux_sym__val_number_token3] = ACTIONS(1016), + [aux_sym__val_number_token4] = ACTIONS(1016), + [aux_sym__val_number_token5] = ACTIONS(1016), + [aux_sym__val_number_token6] = ACTIONS(1016), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1016), + [sym__str_single_quotes] = ACTIONS(1016), + [sym__str_back_ticks] = ACTIONS(1016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [anon_sym_err_GT_GT] = ACTIONS(1016), + [anon_sym_out_GT_GT] = ACTIONS(1016), + [anon_sym_e_GT_GT] = ACTIONS(1016), + [anon_sym_o_GT_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [aux_sym_unquoted_token1] = ACTIONS(1014), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1016), + }, + [1733] = { + [sym_comment] = STATE(1733), + [sym__newline] = ACTIONS(5086), + [anon_sym_SEMI] = ACTIONS(5086), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_err_GT_PIPE] = ACTIONS(5086), + [anon_sym_out_GT_PIPE] = ACTIONS(5086), + [anon_sym_e_GT_PIPE] = ACTIONS(5086), + [anon_sym_o_GT_PIPE] = ACTIONS(5086), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5086), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5086), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5086), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5086), + [anon_sym_LBRACK] = ACTIONS(5086), + [anon_sym_LPAREN] = ACTIONS(5088), + [anon_sym_RPAREN] = ACTIONS(5086), + [anon_sym_DOLLAR] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5086), + [anon_sym_DASH2] = ACTIONS(5088), + [anon_sym_LBRACE] = ACTIONS(5086), + [anon_sym_RBRACE] = ACTIONS(5086), + [anon_sym_DOT_DOT] = ACTIONS(5088), + [anon_sym_LPAREN2] = ACTIONS(5086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5086), + [anon_sym_DOT_DOT_LT] = ACTIONS(5086), + [anon_sym_null] = ACTIONS(5086), + [anon_sym_true] = ACTIONS(5086), + [anon_sym_false] = ACTIONS(5086), + [aux_sym__val_number_decimal_token1] = ACTIONS(5088), + [aux_sym__val_number_decimal_token2] = ACTIONS(5086), + [aux_sym__val_number_decimal_token3] = ACTIONS(5086), + [aux_sym__val_number_decimal_token4] = ACTIONS(5086), + [aux_sym__val_number_token1] = ACTIONS(5086), + [aux_sym__val_number_token2] = ACTIONS(5086), + [aux_sym__val_number_token3] = ACTIONS(5086), + [aux_sym__val_number_token4] = ACTIONS(5086), + [aux_sym__val_number_token5] = ACTIONS(5086), + [aux_sym__val_number_token6] = ACTIONS(5086), + [anon_sym_0b] = ACTIONS(5088), + [anon_sym_0o] = ACTIONS(5088), + [anon_sym_0x] = ACTIONS(5088), + [sym_val_date] = ACTIONS(5086), + [anon_sym_DQUOTE] = ACTIONS(5086), + [sym__str_single_quotes] = ACTIONS(5086), + [sym__str_back_ticks] = ACTIONS(5086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5086), + [anon_sym_err_GT] = ACTIONS(5088), + [anon_sym_out_GT] = ACTIONS(5088), + [anon_sym_e_GT] = ACTIONS(5088), + [anon_sym_o_GT] = ACTIONS(5088), + [anon_sym_err_PLUSout_GT] = ACTIONS(5088), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5088), + [anon_sym_o_PLUSe_GT] = ACTIONS(5088), + [anon_sym_e_PLUSo_GT] = ACTIONS(5088), + [anon_sym_err_GT_GT] = ACTIONS(5086), + [anon_sym_out_GT_GT] = ACTIONS(5086), + [anon_sym_e_GT_GT] = ACTIONS(5086), + [anon_sym_o_GT_GT] = ACTIONS(5086), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5086), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5086), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5086), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5086), + [aux_sym_unquoted_token1] = ACTIONS(5088), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5086), + }, + [1734] = { + [sym_comment] = STATE(1734), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(5090), + [aux_sym__immediate_decimal_token2] = ACTIONS(5092), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2062), 1, + sym_raw_string_begin, + ACTIONS(4305), 1, + anon_sym_DOLLAR, + ACTIONS(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4333), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4335), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5094), 1, + anon_sym_LPAREN, + STATE(1735), 1, + sym_comment, + STATE(3740), 1, + sym__val_number_decimal, + STATE(4807), 1, + sym__inter_single_quotes, + STATE(4808), 1, + sym__inter_double_quotes, + ACTIONS(4331), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4517), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4677), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(19), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(21), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + [103] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1736), 1, + sym_comment, + ACTIONS(5098), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5096), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221258,12 +232180,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -221278,14 +232206,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, - [146] = 4, - ACTIONS(249), 1, + [176] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1587), 1, + STATE(1737), 1, sym_comment, - ACTIONS(1090), 16, + ACTIONS(5102), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -221300,14 +232228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1092), 46, + ACTIONS(5100), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -221327,12 +232249,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -221347,14 +232275,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, - [219] = 4, - ACTIONS(249), 1, + [249] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1588), 1, + STATE(1738), 1, sym_comment, - ACTIONS(2454), 16, + ACTIONS(1030), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -221369,14 +232297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2456), 46, + ACTIONS(1032), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -221396,12 +232318,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -221416,16 +232344,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, - [292] = 4, - ACTIONS(249), 1, + [322] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1589), 1, + STATE(1739), 1, sym_comment, - ACTIONS(1074), 17, + ACTIONS(2504), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -221439,15 +232366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1076), 45, + ACTIONS(2506), 46, sym_raw_string_begin, - 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, @@ -221461,16 +232381,24 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -221485,14 +232413,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, - [365] = 4, - ACTIONS(249), 1, + [395] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1590), 1, + STATE(1740), 1, sym_comment, - ACTIONS(2426), 16, + ACTIONS(2090), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -221507,14 +232435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2428), 46, + ACTIONS(2092), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -221534,12 +232456,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -221554,14 +232482,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, - [438] = 4, - ACTIONS(249), 1, + [468] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1591), 1, + STATE(1741), 1, sym_comment, - ACTIONS(2446), 16, + ACTIONS(2383), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -221576,14 +232504,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2448), 46, + ACTIONS(2385), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -221603,12 +232525,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -221623,18 +232551,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [511] = 5, - ACTIONS(3), 1, + [541] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(1592), 1, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_STAR2, + STATE(1742), 1, sym_comment, - ACTIONS(2297), 21, - sym_raw_string_begin, + STATE(3778), 1, + sym__val_number_decimal, + STATE(6644), 1, + sym_cmd_identifier, + STATE(6645), 1, + sym_val_string, + STATE(7050), 1, + sym__command_name, + STATE(7117), 1, + sym_wild_card, + STATE(7165), 1, + sym_scope_pattern, + STATE(7217), 1, + sym_command_list, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2091), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5063), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, + ACTIONS(5104), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5106), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [648] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1743), 1, + sym_comment, + ACTIONS(2480), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2482), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221646,44 +232674,30 @@ 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(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_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, 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, @@ -221692,15 +232706,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, - [586] = 4, - ACTIONS(249), 1, + [721] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1593), 1, + STATE(1744), 1, sym_comment, - ACTIONS(1078), 16, + ACTIONS(2399), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -221715,14 +232728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1080), 46, + ACTIONS(2401), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -221742,12 +232749,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -221762,14 +232775,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, - [659] = 4, - ACTIONS(249), 1, + [794] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1594), 1, + STATE(1745), 1, sym_comment, - ACTIONS(1897), 16, + ACTIONS(2488), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -221784,14 +232797,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1899), 46, + ACTIONS(2490), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -221811,12 +232818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -221831,14 +232844,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, - [732] = 4, - ACTIONS(249), 1, + [867] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1595), 1, + STATE(1746), 1, sym_comment, - ACTIONS(2547), 16, + ACTIONS(2496), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -221853,14 +232866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2549), 46, + ACTIONS(2498), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -221880,12 +232887,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -221900,14 +232913,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, - [805] = 4, - ACTIONS(249), 1, + [940] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1596), 1, + STATE(1747), 1, sym_comment, - ACTIONS(2113), 16, + ACTIONS(1948), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -221922,14 +232935,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2119), 46, + ACTIONS(1950), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -221949,12 +232956,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -221969,14 +232982,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, - [878] = 4, - ACTIONS(249), 1, + [1013] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1597), 1, + STATE(1748), 1, sym_comment, - ACTIONS(2474), 16, + ACTIONS(2387), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -221991,14 +233004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2476), 46, + ACTIONS(2389), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -222018,12 +233025,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -222038,14 +233051,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, - [951] = 4, - ACTIONS(249), 1, + [1086] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1598), 1, + STATE(1749), 1, sym_comment, - ACTIONS(2486), 16, + ACTIONS(2367), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -222060,14 +233073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2488), 46, + ACTIONS(2369), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -222087,12 +233094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -222107,14 +233120,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, - [1024] = 4, - ACTIONS(249), 1, + [1159] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1599), 1, + STATE(1750), 1, sym_comment, - ACTIONS(2414), 16, + ACTIONS(1972), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -222129,14 +233142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2416), 46, + ACTIONS(1974), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -222156,12 +233163,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -222176,14 +233189,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, - [1097] = 4, - ACTIONS(249), 1, + [1232] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1600), 1, + STATE(1751), 1, sym_comment, - ACTIONS(2539), 16, + ACTIONS(1988), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -222198,14 +233211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2541), 46, + ACTIONS(1990), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -222225,12 +233232,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -222245,14 +233258,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, - [1170] = 4, - ACTIONS(249), 1, + [1305] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1601), 1, + STATE(1752), 1, sym_comment, - ACTIONS(2095), 16, + ACTIONS(1992), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -222267,14 +233280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2097), 46, + ACTIONS(1994), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -222294,12 +233301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -222314,16 +233327,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, - [1243] = 4, - ACTIONS(249), 1, + [1378] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1602), 1, + STATE(1753), 1, sym_comment, - ACTIONS(1066), 17, + ACTIONS(2437), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -222337,15 +233349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1068), 45, + ACTIONS(2439), 46, sym_raw_string_begin, - 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, @@ -222359,16 +233364,24 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -222383,16 +233396,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, - [1316] = 4, - ACTIONS(249), 1, + [1451] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1603), 1, + STATE(1754), 1, sym_comment, - ACTIONS(1070), 17, + ACTIONS(2004), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -222406,15 +233418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1072), 45, + ACTIONS(2006), 46, sym_raw_string_begin, - 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, @@ -222428,16 +233433,24 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -222452,14 +233465,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, - [1389] = 4, - ACTIONS(249), 1, + [1524] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1604), 1, + STATE(1755), 1, sym_comment, - ACTIONS(2482), 16, + ACTIONS(2456), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -222474,14 +233487,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2484), 46, + ACTIONS(2458), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -222501,12 +233508,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -222521,16 +233534,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, - [1462] = 5, - ACTIONS(3), 1, + [1597] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(1605), 1, + STATE(1756), 1, sym_comment, - ACTIONS(2305), 21, + ACTIONS(2460), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2462), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222544,44 +233571,30 @@ 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(2303), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, 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, @@ -222590,15 +233603,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, - [1537] = 4, - ACTIONS(249), 1, + [1670] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1606), 1, + STATE(1757), 1, sym_comment, - ACTIONS(5049), 16, + ACTIONS(2068), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -222613,14 +233625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5047), 46, + ACTIONS(2070), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -222640,12 +233646,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -222660,14 +233672,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, - [1610] = 4, - ACTIONS(249), 1, + [1743] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1607), 1, + STATE(1758), 1, sym_comment, - ACTIONS(5053), 16, + ACTIONS(1907), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -222682,14 +233694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5051), 46, + ACTIONS(1911), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -222709,12 +233715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -222729,13 +233741,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, - [1683] = 4, - ACTIONS(249), 1, + [1816] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1608), 1, + STATE(1759), 1, sym_comment, - ACTIONS(4987), 9, - anon_sym_DASH, + ACTIONS(2343), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222744,7 +233762,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(4985), 53, + aux_sym_unquoted_token1, + ACTIONS(2345), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222756,59 +233776,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_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, - [1756] = 5, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1889] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5055), 1, - anon_sym_LBRACK2, - STATE(1609), 1, + STATE(1760), 1, sym_comment, - ACTIONS(2355), 17, - anon_sym_LBRACK, + ACTIONS(2351), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -222823,15 +233832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2359), 44, + ACTIONS(2353), 46, sym_raw_string_begin, - 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, @@ -222843,17 +233845,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, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -222868,16 +233879,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, - [1831] = 5, - ACTIONS(249), 1, + [1962] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5039), 1, - aux_sym__immediate_decimal_token2, - STATE(1610), 1, + STATE(1761), 1, sym_comment, - ACTIONS(1715), 16, + ACTIONS(1913), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -222892,15 +233901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1717), 45, + ACTIONS(1915), 46, sym_raw_string_begin, - 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, @@ -222914,16 +233916,24 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -222938,14 +233948,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, - [1906] = 4, - ACTIONS(249), 1, + [2035] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1611), 1, + STATE(1762), 1, sym_comment, - ACTIONS(2406), 16, + ACTIONS(2355), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -222960,14 +233970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2408), 46, + ACTIONS(2357), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -222987,12 +233991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -223007,14 +234017,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, - [1979] = 4, - ACTIONS(249), 1, + [2108] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1612), 1, + STATE(1763), 1, sym_comment, - ACTIONS(2434), 16, + ACTIONS(2359), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -223029,14 +234039,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2436), 46, + ACTIONS(2361), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -223056,12 +234060,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -223076,13 +234086,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, - [2052] = 4, - ACTIONS(249), 1, + [2181] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1613), 1, + STATE(1764), 1, sym_comment, - ACTIONS(4997), 9, - anon_sym_DASH, + ACTIONS(1709), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223091,7 +234107,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(4995), 53, + aux_sym_unquoted_token1, + ACTIONS(1721), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223103,56 +234121,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_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, - [2125] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [2254] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1614), 1, + STATE(1765), 1, sym_comment, - ACTIONS(2502), 16, + ACTIONS(2363), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -223167,14 +234177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2504), 46, + ACTIONS(2365), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -223194,12 +234198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -223214,14 +234224,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, - [2198] = 4, - ACTIONS(249), 1, + [2327] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1615), 1, + STATE(1766), 1, sym_comment, - ACTIONS(2543), 16, + ACTIONS(2094), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -223236,14 +234246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2545), 46, + ACTIONS(2096), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -223263,12 +234267,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -223283,14 +234293,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, - [2271] = 4, - ACTIONS(249), 1, + [2400] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1616), 1, + STATE(1767), 1, sym_comment, - ACTIONS(2531), 16, + ACTIONS(2500), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -223305,14 +234315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2533), 46, + ACTIONS(2502), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -223332,12 +234336,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -223352,16 +234362,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, - [2344] = 5, - ACTIONS(249), 1, + [2473] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5057), 1, - aux_sym__immediate_decimal_token2, - STATE(1617), 1, + STATE(1768), 1, sym_comment, - ACTIONS(1769), 16, + ACTIONS(2347), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -223376,15 +234384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1771), 45, + ACTIONS(2349), 46, sym_raw_string_begin, - 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, @@ -223398,16 +234399,24 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -223422,14 +234431,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, - [2419] = 4, - ACTIONS(249), 1, + [2546] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1618), 1, + STATE(1769), 1, sym_comment, - ACTIONS(2569), 16, + ACTIONS(2347), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -223444,14 +234453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2571), 46, + ACTIONS(2349), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -223471,12 +234474,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -223491,14 +234500,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, - [2492] = 4, - ACTIONS(249), 1, + [2619] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1619), 1, + STATE(1770), 1, sym_comment, - ACTIONS(5061), 16, + ACTIONS(5088), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -223513,14 +234522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5059), 46, + ACTIONS(5086), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -223540,12 +234543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -223560,85 +234569,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, - [2565] = 5, - ACTIONS(3), 1, + [2692] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(1620), 1, + STATE(1771), 1, sym_comment, - ACTIONS(1092), 21, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1090), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [2640] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1621), 1, - sym_comment, - ACTIONS(4987), 17, - anon_sym_LPAREN, + ACTIONS(2492), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -223653,15 +234591,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4985), 45, + ACTIONS(2494), 46, sym_raw_string_begin, - 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, @@ -223674,17 +234605,25 @@ 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, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -223699,14 +234638,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, - [2713] = 4, - ACTIONS(249), 1, + [2765] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1622), 1, + STATE(1772), 1, sym_comment, - ACTIONS(2059), 16, + ACTIONS(2508), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -223721,14 +234660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2061), 46, + ACTIONS(2510), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -223748,12 +234681,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -223768,14 +234707,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, - [2786] = 4, - ACTIONS(249), 1, + [2838] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1623), 1, + STATE(1773), 1, sym_comment, - ACTIONS(2561), 16, + ACTIONS(5022), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -223790,14 +234729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2563), 46, + ACTIONS(5020), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -223817,12 +234750,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -223837,15 +234776,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, - [2859] = 4, - ACTIONS(249), 1, + [2911] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1624), 1, + STATE(1774), 1, sym_comment, - ACTIONS(2524), 16, + ACTIONS(1006), 17, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -223859,14 +234799,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2526), 46, + ACTIONS(1008), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223880,18 +234815,22 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -223906,152 +234845,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, - [2932] = 4, - ACTIONS(249), 1, + [2984] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1625), 1, - sym_comment, - ACTIONS(1066), 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(1068), 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3005] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1626), 1, - sym_comment, - ACTIONS(1070), 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(1072), 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3078] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1627), 1, + STATE(1775), 1, sym_comment, - ACTIONS(2234), 16, + ACTIONS(2129), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -224066,14 +234867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2240), 46, + ACTIONS(2131), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -224093,12 +234888,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -224113,14 +234914,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, - [3151] = 4, - ACTIONS(249), 1, + [3057] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1628), 1, + STATE(1776), 1, sym_comment, - ACTIONS(4748), 16, + ACTIONS(2464), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -224135,14 +234936,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4746), 46, + ACTIONS(2466), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -224162,12 +234957,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -224182,14 +234983,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, - [3224] = 4, - ACTIONS(249), 1, + [3130] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1629), 1, + STATE(1777), 1, sym_comment, - ACTIONS(2067), 16, + ACTIONS(2468), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -224204,14 +235005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2069), 46, + ACTIONS(2470), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -224231,12 +235026,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -224251,14 +235052,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, - [3297] = 4, - ACTIONS(249), 1, + [3203] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1630), 1, + STATE(1778), 1, sym_comment, - ACTIONS(2551), 16, + ACTIONS(2183), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -224273,14 +235074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2553), 46, + ACTIONS(2185), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -224300,12 +235095,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -224320,15 +235121,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, - [3370] = 4, - ACTIONS(249), 1, + [3276] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1631), 1, + STATE(1779), 1, sym_comment, - ACTIONS(2565), 16, + ACTIONS(1010), 17, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -224342,14 +235144,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2567), 46, + ACTIONS(1012), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224363,18 +235160,22 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -224389,153 +235190,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, - [3443] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1632), 1, - sym_comment, - ACTIONS(1528), 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(1530), 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, - [3516] = 4, - ACTIONS(249), 1, + [3349] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1633), 1, - sym_comment, - ACTIONS(1711), 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(1713), 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, - [3589] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1634), 1, + STATE(1780), 1, sym_comment, - ACTIONS(4824), 16, + ACTIONS(1014), 17, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -224549,14 +235213,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4822), 46, + ACTIONS(1016), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224570,18 +235229,22 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -224596,14 +235259,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, - [3662] = 4, - ACTIONS(249), 1, + [3422] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1635), 1, + ACTIONS(5112), 1, + anon_sym_QMARK2, + STATE(1781), 1, sym_comment, - ACTIONS(2105), 10, + ACTIONS(978), 16, sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224612,7 +235283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2107), 52, + ACTIONS(980), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224623,40 +235294,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_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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224665,19 +235329,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, - [3735] = 4, - ACTIONS(249), 1, + [3497] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1636), 1, + ACTIONS(5114), 1, + anon_sym_QMARK2, + STATE(1782), 1, sym_comment, - ACTIONS(1715), 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(984), 16, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224686,16 +235353,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(1717), 46, - sym_raw_string_begin, - anon_sym_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(986), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224706,26 +235364,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_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224734,14 +235399,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, - [3808] = 4, - ACTIONS(249), 1, + [3572] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1637), 1, + STATE(1783), 1, sym_comment, - ACTIONS(2001), 16, + ACTIONS(994), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -224756,14 +235421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2003), 46, + ACTIONS(996), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -224783,12 +235442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -224803,14 +235468,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, - [3881] = 4, - ACTIONS(249), 1, + [3645] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1638), 1, + ACTIONS(5082), 1, + aux_sym__immediate_decimal_token2, + STATE(1784), 1, sym_comment, - ACTIONS(1628), 16, + ACTIONS(1755), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -224825,14 +235492,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1640), 46, + ACTIONS(1757), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224846,18 +235508,22 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -224872,14 +235538,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, - [3954] = 4, - ACTIONS(249), 1, + [3720] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1639), 1, + STATE(1785), 1, sym_comment, - ACTIONS(5065), 16, + ACTIONS(998), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -224894,14 +235560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5063), 46, + ACTIONS(1000), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -224921,12 +235581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -224941,14 +235607,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, - [4027] = 4, - ACTIONS(249), 1, + [3793] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1640), 1, + STATE(1786), 1, sym_comment, - ACTIONS(1058), 16, + ACTIONS(1002), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -224963,14 +235629,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1060), 46, + ACTIONS(1004), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -224990,12 +235650,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -225010,14 +235676,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, - [4100] = 4, - ACTIONS(249), 1, + [3866] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1641), 1, + STATE(1787), 1, sym_comment, - ACTIONS(1769), 16, + ACTIONS(1018), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -225032,14 +235698,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1771), 46, + ACTIONS(1020), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -225059,12 +235719,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -225079,14 +235745,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, - [4173] = 4, - ACTIONS(249), 1, + [3939] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1642), 1, + STATE(1788), 1, sym_comment, - ACTIONS(2494), 16, + ACTIONS(990), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -225101,14 +235767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2496), 46, + ACTIONS(992), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -225128,12 +235788,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -225148,14 +235814,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, - [4246] = 4, - ACTIONS(249), 1, + [4012] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1643), 1, + ACTIONS(5116), 1, + aux_sym__immediate_decimal_token2, + STATE(1789), 1, sym_comment, - ACTIONS(4987), 16, + ACTIONS(1783), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -225170,14 +235838,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4985), 46, + ACTIONS(1785), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225191,18 +235854,22 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -225217,83 +235884,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4319] = 4, - ACTIONS(249), 1, + [4087] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1644), 1, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_STAR2, + STATE(1790), 1, sym_comment, - ACTIONS(2535), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + STATE(3778), 1, + sym__val_number_decimal, + STATE(6644), 1, + sym_cmd_identifier, + STATE(6645), 1, + sym_val_string, + STATE(7050), 1, + sym__command_name, + STATE(7083), 1, + sym_scope_pattern, + STATE(7117), 1, + sym_wild_card, + STATE(7217), 1, + sym_command_list, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2537), 46, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + aux_sym__val_number_decimal_token2, + STATE(2091), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5037), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5104), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(5106), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + [4194] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1860), 1, + sym_raw_string_begin, + ACTIONS(4341), 1, + anon_sym_DOLLAR, + ACTIONS(4367), 1, + anon_sym_DQUOTE, + ACTIONS(4371), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4373), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(5118), 1, + anon_sym_LPAREN, + STATE(1791), 1, + sym_comment, + STATE(3775), 1, + sym__val_number_decimal, + STATE(4689), 1, + sym__inter_single_quotes, + STATE(4701), 1, + sym__inter_double_quotes, + ACTIONS(4369), 2, 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, - [4392] = 4, - ACTIONS(249), 1, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4465), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4605), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(363), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(365), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [4297] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1645), 1, + STATE(1792), 1, sym_comment, - ACTIONS(5069), 16, + ACTIONS(5122), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -225308,14 +236076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5067), 46, + ACTIONS(5120), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -225335,12 +236097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -225355,14 +236123,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, - [4465] = 4, - ACTIONS(249), 1, + [4370] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1646), 1, + STATE(1793), 1, sym_comment, - ACTIONS(2418), 16, + ACTIONS(5126), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -225377,14 +236145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2420), 46, + ACTIONS(5124), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -225404,12 +236166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -225424,14 +236192,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, - [4538] = 4, - ACTIONS(249), 1, + [4443] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1647), 1, + ACTIONS(4674), 1, + aux_sym_unquoted_token2, + STATE(1794), 1, sym_comment, - ACTIONS(5073), 16, + ACTIONS(1709), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -225446,14 +236216,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5071), 46, + ACTIONS(1721), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225467,18 +236232,22 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -225493,14 +236262,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, - [4611] = 4, - ACTIONS(249), 1, + [4518] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1648), 1, + STATE(1795), 1, sym_comment, - ACTIONS(2466), 16, + ACTIONS(5130), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -225515,14 +236284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2468), 46, + ACTIONS(5128), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -225542,12 +236305,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -225562,13 +236331,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, - [4684] = 4, - ACTIONS(249), 1, + [4591] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1649), 1, + ACTIONS(5049), 1, + anon_sym_DOT, + STATE(1796), 1, sym_comment, - ACTIONS(1536), 10, - aux_sym_cmd_identifier_token41, + STATE(1803), 1, + aux_sym_cell_path_repeat1, + STATE(1978), 1, + sym_path, + ACTIONS(967), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -225578,7 +236357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1538), 52, + ACTIONS(969), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -225591,38 +236370,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225631,19 +236403,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, - [4757] = 4, - ACTIONS(249), 1, + [4670] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1650), 1, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(1797), 1, sym_comment, - ACTIONS(5077), 16, + ACTIONS(2210), 21, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2206), 40, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225652,15 +236464,25 @@ 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(5075), 46, + [4745] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(1798), 1, + sym_comment, + ACTIONS(2218), 21, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225674,24 +236496,114 @@ 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, 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(2214), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [4820] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(1799), 1, + sym_comment, + ACTIONS(2224), 21, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, + ACTIONS(2222), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -225700,14 +236612,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, - [4830] = 4, - ACTIONS(249), 1, + aux_sym_unquoted_token1, + [4895] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1651), 1, + STATE(1800), 1, sym_comment, - ACTIONS(1062), 16, + ACTIONS(4828), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -225722,14 +236635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1064), 46, + ACTIONS(4826), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -225749,12 +236656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -225769,16 +236682,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, - [4903] = 5, - ACTIONS(249), 1, + [4968] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5079), 1, - anon_sym_EQ2, - STATE(1652), 1, + STATE(1801), 1, sym_comment, - ACTIONS(4947), 16, + ACTIONS(4916), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -225793,15 +236704,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4945), 45, + ACTIONS(4914), 46, sym_raw_string_begin, - 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, @@ -225815,16 +236719,24 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -225839,19 +236751,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, - [4978] = 4, - ACTIONS(249), 1, + [5041] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1802), 1, sym_comment, - ACTIONS(2430), 16, + ACTIONS(2250), 21, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2248), 41, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225860,15 +236810,43 @@ 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(2432), 46, - sym_raw_string_begin, - 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_unquoted_token4, + [5114] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5132), 1, + anon_sym_DOT, + STATE(1978), 1, + sym_path, + STATE(1803), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(971), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + 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(973), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225880,26 +236858,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225908,14 +236891,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, - [5051] = 4, - ACTIONS(249), 1, + [5191] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1654), 1, + STATE(1804), 1, sym_comment, - ACTIONS(2478), 16, + ACTIONS(5138), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -225930,14 +236913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2480), 46, + ACTIONS(5135), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -225957,12 +236934,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -225977,14 +236960,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, - [5124] = 4, - ACTIONS(249), 1, + [5264] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1655), 1, + STATE(1805), 1, sym_comment, - ACTIONS(1038), 16, + ACTIONS(1755), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -225999,14 +236982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1040), 46, + ACTIONS(1757), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -226026,12 +237003,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226046,14 +237029,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5197] = 4, - ACTIONS(249), 1, + [5337] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1860), 1, + sym_raw_string_begin, + ACTIONS(4341), 1, + anon_sym_DOLLAR, + ACTIONS(4367), 1, + anon_sym_DQUOTE, + ACTIONS(4371), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4373), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5118), 1, + anon_sym_LPAREN, + STATE(1806), 1, + sym_comment, + STATE(3775), 1, + sym__val_number_decimal, + STATE(4689), 1, + sym__inter_single_quotes, + STATE(4701), 1, + sym__inter_double_quotes, + ACTIONS(4369), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4465), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4761), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(363), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(365), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [5440] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1656), 1, + STATE(1807), 1, sym_comment, - ACTIONS(2017), 16, + ACTIONS(1739), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -226068,14 +237135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2019), 46, + ACTIONS(1741), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -226095,12 +237156,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226115,14 +237182,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, - [5270] = 4, - ACTIONS(249), 1, + [5513] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1657), 1, + STATE(1808), 1, sym_comment, - ACTIONS(4997), 16, + ACTIONS(1783), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -226137,14 +237204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4995), 46, + ACTIONS(1785), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -226164,12 +237225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226184,14 +237251,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, - [5343] = 4, - ACTIONS(249), 1, + [5586] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1658), 1, + STATE(1809), 1, sym_comment, - ACTIONS(2422), 16, + ACTIONS(1890), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -226206,14 +237273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2424), 46, + ACTIONS(1892), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -226233,12 +237294,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226253,16 +237320,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5416] = 5, - ACTIONS(249), 1, + [5659] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1810), 1, + sym_comment, + ACTIONS(1709), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1721), 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_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5732] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1811), 1, + sym_comment, + ACTIONS(2363), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2365), 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_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5805] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5108), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_STAR2, + STATE(1812), 1, + sym_comment, + STATE(3778), 1, + sym__val_number_decimal, + STATE(6644), 1, + sym_cmd_identifier, + STATE(6645), 1, + sym_val_string, + STATE(7050), 1, + sym__command_name, + STATE(7112), 1, + sym_scope_pattern, + STATE(7117), 1, + sym_wild_card, + STATE(7217), 1, + sym_command_list, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2091), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5084), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5104), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5106), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [5912] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5081), 1, + ACTIONS(5141), 1, anon_sym_EQ2, - STATE(1659), 1, + STATE(1813), 1, sym_comment, - ACTIONS(4991), 16, + ACTIONS(5053), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -226277,15 +237568,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4989), 45, + ACTIONS(5051), 45, sym_raw_string_begin, 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, @@ -226303,12 +237588,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226323,15 +237614,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, - [5491] = 4, - ACTIONS(249), 1, + [5987] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1660), 1, + STATE(1814), 1, sym_comment, - ACTIONS(4997), 17, - anon_sym_LPAREN, + ACTIONS(5145), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -226346,15 +237636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4995), 45, + ACTIONS(5143), 46, sym_raw_string_begin, - 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, @@ -226367,17 +237650,25 @@ 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, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226392,14 +237683,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, - [5564] = 4, - ACTIONS(249), 1, + [6060] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1661), 1, + ACTIONS(5147), 1, + anon_sym_LBRACK2, + STATE(1815), 1, sym_comment, - ACTIONS(5085), 16, + ACTIONS(2337), 17, + anon_sym_LBRACK, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -226414,14 +237708,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5083), 46, + ACTIONS(2341), 44, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226433,20 +237722,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_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226461,14 +237753,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, - [5637] = 4, - ACTIONS(249), 1, + [6135] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5149), 1, + sym__newline, + STATE(1816), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1294), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1296), 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_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_else, + anon_sym_LBRACE, + anon_sym_catch, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6210] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1662), 1, + STATE(1817), 1, sym_comment, - ACTIONS(2398), 16, + ACTIONS(5154), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -226483,14 +237845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2400), 46, + ACTIONS(5152), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -226510,12 +237866,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226530,14 +237892,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5710] = 4, - ACTIONS(249), 1, + [6283] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5156), 1, + anon_sym_QMARK2, + STATE(1818), 1, + sym_comment, + ACTIONS(978), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(980), 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_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6358] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5158), 1, + anon_sym_QMARK2, + STATE(1819), 1, + sym_comment, + ACTIONS(984), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(986), 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_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6433] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1663), 1, + ACTIONS(4764), 1, + aux_sym_unquoted_token2, + STATE(1820), 1, sym_comment, - ACTIONS(2506), 16, + ACTIONS(1709), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -226552,14 +238056,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2508), 46, + ACTIONS(1721), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226573,18 +238072,22 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226599,14 +238102,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, - [5783] = 5, - ACTIONS(3), 1, + [6508] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(1664), 1, + STATE(1821), 1, + sym_comment, + ACTIONS(994), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(996), 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_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6581] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1822), 1, sym_comment, - ACTIONS(2285), 21, + ACTIONS(5088), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5086), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -226621,37 +238209,48 @@ 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_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2281), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6654] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1823), 1, + sym_comment, + ACTIONS(998), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226660,6 +238259,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(1000), 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_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226668,24 +238309,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, - [5858] = 9, - ACTIONS(249), 1, + [6727] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5087), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(5089), 1, - anon_sym_DOT_DOT2, - ACTIONS(5093), 1, - sym_filesize_unit, - ACTIONS(5095), 1, - sym_duration_unit, - STATE(1665), 1, + STATE(1824), 1, sym_comment, - ACTIONS(5091), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1628), 8, + ACTIONS(1002), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226694,8 +238328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1640), 48, - ts_builtin_sym_end, + ACTIONS(1004), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226707,34 +238340,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_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226743,14 +238378,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, - [5941] = 4, - ACTIONS(249), 1, + [6800] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1666), 1, + ACTIONS(5160), 1, + anon_sym_EQ2, + STATE(1825), 1, sym_comment, - ACTIONS(2557), 16, + ACTIONS(5016), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -226765,14 +238402,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2559), 46, + ACTIONS(5014), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226786,18 +238418,22 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226812,14 +238448,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, - [6014] = 4, - ACTIONS(249), 1, + [6875] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1667), 1, + STATE(1826), 1, sym_comment, - ACTIONS(2218), 16, + ACTIONS(5022), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -226834,14 +238471,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2220), 46, + ACTIONS(5020), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226854,19 +238486,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, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226881,14 +238517,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, - [6087] = 4, - ACTIONS(249), 1, + [6948] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1827), 1, + sym_comment, + ACTIONS(990), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(992), 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_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7021] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1668), 1, + STATE(1828), 1, sym_comment, - ACTIONS(1054), 16, + ACTIONS(2395), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -226903,14 +238608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1056), 46, + ACTIONS(2397), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -226930,12 +238629,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -226950,14 +238655,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, - [6160] = 4, - ACTIONS(249), 1, + [7094] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1669), 1, + STATE(1829), 1, sym_comment, - ACTIONS(2222), 16, + ACTIONS(2403), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -226972,14 +238677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2228), 46, + ACTIONS(2405), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -226999,12 +238698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -227019,16 +238724,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, - [6233] = 5, - ACTIONS(249), 1, + [7167] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4645), 1, - aux_sym_unquoted_token2, - STATE(1670), 1, + STATE(1830), 1, sym_comment, - ACTIONS(1628), 16, + ACTIONS(2407), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -227043,15 +238746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1640), 45, + ACTIONS(2409), 46, sym_raw_string_begin, - 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, @@ -227065,16 +238761,24 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -227089,14 +238793,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, - [6308] = 4, - ACTIONS(249), 1, + [7240] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1671), 1, + STATE(1831), 1, sym_comment, - ACTIONS(2410), 16, + ACTIONS(5164), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -227111,14 +238815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2412), 46, + ACTIONS(5162), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -227138,12 +238836,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -227158,14 +238862,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, - [6381] = 4, - ACTIONS(249), 1, + [7313] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1672), 1, + STATE(1832), 1, sym_comment, - ACTIONS(2438), 16, + ACTIONS(2159), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -227180,14 +238884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2440), 46, + ACTIONS(2165), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -227207,12 +238905,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -227227,14 +238931,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, - [6454] = 4, - ACTIONS(249), 1, + [7386] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1673), 1, + STATE(1833), 1, sym_comment, - ACTIONS(5099), 16, + ACTIONS(2375), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -227249,14 +238953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5097), 46, + ACTIONS(2377), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -227276,12 +238974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -227296,88 +239000,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, - [6527] = 9, - ACTIONS(249), 1, + [7459] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(5029), 1, - anon_sym_DOT_DOT2, - ACTIONS(5101), 1, - sym_filesize_unit, - ACTIONS(5103), 1, - sym_duration_unit, - STATE(1674), 1, - sym_comment, - ACTIONS(5031), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1628), 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(1640), 47, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6610] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1675), 1, + STATE(1834), 1, sym_comment, - ACTIONS(2047), 16, + ACTIONS(2167), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -227392,14 +239022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2049), 46, + ACTIONS(2173), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -227419,12 +239043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -227439,15 +239069,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, - [6683] = 5, - ACTIONS(249), 1, + [7532] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5105), 1, - anon_sym_LBRACK2, - STATE(1676), 1, + STATE(1835), 1, sym_comment, - ACTIONS(2355), 9, - anon_sym_DASH, + ACTIONS(2175), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227456,67 +239090,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(2359), 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, - [6758] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1677), 1, - sym_comment, - ACTIONS(2291), 21, + aux_sym_unquoted_token1, + ACTIONS(2181), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227530,44 +239106,30 @@ 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(2289), 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_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, 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, @@ -227576,16 +239138,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, - aux_sym_unquoted_token4, - [6831] = 4, - ACTIONS(249), 1, + [7605] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1678), 1, + STATE(1836), 1, sym_comment, - ACTIONS(5110), 16, + ACTIONS(2133), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -227600,14 +239160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5107), 46, + ACTIONS(2139), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -227627,12 +239181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -227647,14 +239207,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, - [6904] = 4, - ACTIONS(249), 1, + [7678] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1679), 1, + STATE(1837), 1, sym_comment, - ACTIONS(5115), 16, + ACTIONS(5168), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -227669,14 +239229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5113), 46, + ACTIONS(5166), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -227696,12 +239250,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -227716,14 +239276,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, - [6977] = 4, - ACTIONS(249), 1, + [7751] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1680), 1, + STATE(1838), 1, sym_comment, - ACTIONS(5119), 16, + ACTIONS(5172), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -227738,14 +239298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5117), 46, + ACTIONS(5170), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -227765,12 +239319,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -227785,14 +239345,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, - [7050] = 4, - ACTIONS(249), 1, + [7824] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1681), 1, + STATE(1839), 1, sym_comment, - ACTIONS(1670), 10, - sym__newline, - anon_sym_DOT_DOT2, + ACTIONS(2472), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227801,7 +239366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1672), 52, + aux_sym_unquoted_token1, + ACTIONS(2474), 46, + sym_raw_string_begin, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227812,40 +239380,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH_DASH, 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227854,14 +239414,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, - [7123] = 4, - ACTIONS(249), 1, + [7897] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1682), 1, + STATE(1840), 1, sym_comment, - ACTIONS(1703), 16, + ACTIONS(2476), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -227876,14 +239436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1705), 46, + ACTIONS(2478), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -227903,12 +239457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -227923,14 +239483,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, - [7196] = 4, - ACTIONS(249), 1, + [7970] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1683), 1, + STATE(1841), 1, sym_comment, - ACTIONS(2087), 16, + ACTIONS(2371), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -227945,14 +239505,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2089), 46, + ACTIONS(2373), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -227972,12 +239526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -227992,14 +239552,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, - [7269] = 4, - ACTIONS(249), 1, + [8043] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1684), 1, + STATE(1842), 1, sym_comment, - ACTIONS(2510), 16, + ACTIONS(5176), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228014,14 +239574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2512), 46, + ACTIONS(5174), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -228041,12 +239595,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -228061,14 +239621,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, - [7342] = 4, - ACTIONS(249), 1, + [8116] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1685), 1, + STATE(1843), 1, sym_comment, - ACTIONS(2442), 16, + ACTIONS(5180), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228083,14 +239643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2444), 46, + ACTIONS(5178), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -228110,12 +239664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -228130,14 +239690,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, - [7415] = 4, - ACTIONS(249), 1, + [8189] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1686), 1, + STATE(1844), 1, sym_comment, - ACTIONS(5123), 16, + ACTIONS(2391), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228152,14 +239712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5121), 46, + ACTIONS(2393), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -228179,12 +239733,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -228199,14 +239759,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, - [7488] = 4, - ACTIONS(249), 1, + [8262] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1687), 1, + STATE(1845), 1, sym_comment, - ACTIONS(2230), 16, + ACTIONS(2413), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228221,14 +239781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2232), 46, + ACTIONS(2415), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -228248,12 +239802,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -228268,14 +239828,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, - [7561] = 4, - ACTIONS(249), 1, + [8335] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1688), 1, + STATE(1846), 1, sym_comment, - ACTIONS(2470), 16, + ACTIONS(2421), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228290,14 +239850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2472), 46, + ACTIONS(2423), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -228317,12 +239871,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -228337,14 +239897,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, - [7634] = 4, - ACTIONS(249), 1, + [8408] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1689), 1, + STATE(1847), 1, sym_comment, - ACTIONS(2043), 16, + ACTIONS(2425), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228359,14 +239919,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2045), 46, + ACTIONS(2427), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -228386,12 +239940,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -228406,16 +239966,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, - [7707] = 5, - ACTIONS(249), 1, + [8481] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4485), 1, - aux_sym_unquoted_token2, - STATE(1690), 1, + STATE(1848), 1, sym_comment, - ACTIONS(1628), 16, + ACTIONS(2429), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228430,15 +239988,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1640), 45, + ACTIONS(2431), 46, sym_raw_string_begin, - 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, @@ -228452,16 +240003,24 @@ 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, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -228476,14 +240035,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, - [7782] = 4, - ACTIONS(249), 1, + [8554] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1691), 1, + STATE(1849), 1, sym_comment, - ACTIONS(2206), 16, + ACTIONS(2433), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228498,14 +240057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2212), 46, + ACTIONS(2435), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -228525,12 +240078,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -228545,14 +240104,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, - [7855] = 4, - ACTIONS(249), 1, + [8627] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1692), 1, + STATE(1850), 1, sym_comment, - ACTIONS(1909), 16, + ACTIONS(2441), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228567,14 +240126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1911), 46, + ACTIONS(2443), 46, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -228594,12 +240147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -228614,22 +240173,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, - [7928] = 4, - ACTIONS(249), 1, + [8700] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1693), 1, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(1851), 1, sym_comment, - ACTIONS(1074), 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(1076), 53, + ACTIONS(1032), 21, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228641,40 +240194,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, 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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1030), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -228683,14 +240242,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, - [8001] = 4, - ACTIONS(249), 1, + aux_sym_unquoted_token1, + [8775] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1694), 1, + STATE(1852), 1, sym_comment, - ACTIONS(2498), 16, + ACTIONS(5138), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228705,14 +240265,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2500), 46, + ACTIONS(5135), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228726,18 +240281,22 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -228752,14 +240311,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, - [8074] = 4, - ACTIONS(249), 1, + [8847] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1695), 1, + STATE(1853), 1, sym_comment, - ACTIONS(2450), 16, + ACTIONS(4828), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228774,14 +240333,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2452), 46, + ACTIONS(4826), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228795,18 +240349,22 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -228821,14 +240379,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, - [8147] = 4, - ACTIONS(249), 1, + [8919] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1696), 1, + STATE(1854), 1, sym_comment, - ACTIONS(2494), 16, + ACTIONS(5154), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228843,14 +240401,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2496), 46, + ACTIONS(5152), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228864,18 +240417,22 @@ 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, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -228890,21 +240447,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, - [8220] = 8, - ACTIONS(249), 1, + [8991] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1697), 1, + STATE(1855), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2030), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(2067), 9, - sym__newline, + ACTIONS(5022), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228913,7 +240466,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(2069), 48, + ACTIONS(5020), 48, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228925,35 +240479,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228962,14 +240515,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8300] = 4, - ACTIONS(249), 1, + [9063] = 40, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(1048), 1, + anon_sym_DOLLAR, + ACTIONS(3287), 1, + sym__newline, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(1856), 1, + sym_comment, + STATE(1887), 1, + aux_sym_shebang_repeat1, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3531), 1, + sym__val_number_decimal, + STATE(3608), 1, + sym_expr_parenthesized, + STATE(3613), 1, + sym_val_variable, + STATE(3876), 1, + sym__expr_binary_expression_parenthesized, + STATE(3925), 1, + sym_val_range, + STATE(6740), 1, + sym__expression_parenthesized, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2413), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [9207] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1698), 1, + STATE(1857), 1, sym_comment, - ACTIONS(2446), 16, + ACTIONS(990), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -228984,15 +240641,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2448), 45, + ACTIONS(992), 45, sym_raw_string_begin, 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, @@ -229010,12 +240661,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -229030,19 +240687,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, - [8372] = 4, - ACTIONS(249), 1, + [9279] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1699), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1858), 1, sym_comment, - ACTIONS(2206), 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(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229051,16 +240710,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(2212), 45, - sym_raw_string_begin, - 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(5186), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229072,24 +240722,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229098,13 +240757,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, - [8444] = 4, - ACTIONS(249), 1, + [9355] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1700), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1859), 1, sym_comment, - ACTIONS(1038), 9, - sym__newline, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229113,7 +240780,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(1040), 52, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229125,39 +240793,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_if, + anon_sym_DASH2, + anon_sym_in2, 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229166,13 +240827,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, - [8516] = 4, - ACTIONS(249), 1, + [9431] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1701), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1860), 1, sym_comment, - ACTIONS(5129), 9, - anon_sym_DASH, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229181,7 +240850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 52, + ACTIONS(5186), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229194,53 +240863,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [8588] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9507] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1702), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1861), 1, sym_comment, - ACTIONS(5133), 9, - anon_sym_DASH, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229249,7 +240920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5131), 52, + ACTIONS(5186), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229262,59 +240933,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [8660] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9583] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1703), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1862), 1, sym_comment, - ACTIONS(2486), 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(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229323,16 +240990,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(2488), 45, - sym_raw_string_begin, - 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(5186), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229344,24 +241002,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229370,19 +241037,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, - [8732] = 4, - ACTIONS(249), 1, + [9659] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1704), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1863), 1, sym_comment, - ACTIONS(5053), 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(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229391,16 +241060,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(5051), 45, - sym_raw_string_begin, - 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(5186), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229412,24 +241072,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229438,21 +241107,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, - [8804] = 8, - ACTIONS(249), 1, + [9735] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1635), 1, - sym_cell_path, - STATE(1705), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1864), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2132), 1, - sym_path, - ACTIONS(1670), 9, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5186), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9811] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1865), 1, + sym_comment, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229461,7 +241200,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(1672), 48, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -229473,35 +241213,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229510,19 +241247,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, - [8884] = 4, - ACTIONS(249), 1, + [9887] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1706), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1866), 1, sym_comment, - ACTIONS(2414), 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(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229531,16 +241270,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(2416), 45, - sym_raw_string_begin, - 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(5186), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229552,24 +241282,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229578,13 +241317,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, - [8956] = 4, - ACTIONS(249), 1, + [9963] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1707), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1867), 1, sym_comment, - ACTIONS(5019), 9, - anon_sym_DASH, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229593,7 +241340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 52, + ACTIONS(5186), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229606,59 +241353,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [9028] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10039] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1708), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1868), 1, sym_comment, - ACTIONS(1078), 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(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229667,16 +241410,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(1080), 45, - sym_raw_string_begin, - 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(5186), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229688,24 +241422,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229714,13 +241457,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, - [9100] = 4, - ACTIONS(249), 1, + [10115] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1709), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1869), 1, sym_comment, - ACTIONS(5019), 9, - anon_sym_DASH, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229729,7 +241480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 52, + ACTIONS(5186), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229742,53 +241493,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [9172] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10191] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1710), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1870), 1, sym_comment, - ACTIONS(5019), 9, - anon_sym_DASH, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229797,7 +241550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 52, + ACTIONS(5186), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229810,54 +241563,186 @@ static 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_DASH2, + anon_sym_in2, 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, - [9244] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10267] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5190), 1, + anon_sym_QMARK2, + STATE(1871), 1, + sym_comment, + ACTIONS(978), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + 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(980), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10341] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5192), 1, + anon_sym_QMARK2, + STATE(1872), 1, + sym_comment, + ACTIONS(984), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + 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(986), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10415] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1711), 1, + STATE(1873), 1, sym_comment, - ACTIONS(1897), 16, + ACTIONS(994), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -229872,15 +241757,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1899), 45, + ACTIONS(996), 45, sym_raw_string_begin, 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, @@ -229898,12 +241777,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -229918,14 +241803,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, - [9316] = 4, - ACTIONS(249), 1, + [10487] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1712), 1, + STATE(1874), 1, sym_comment, - ACTIONS(2547), 16, + ACTIONS(5088), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -229940,15 +241825,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2549), 45, + ACTIONS(5086), 45, sym_raw_string_begin, 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, @@ -229966,12 +241845,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -229986,13 +241871,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, - [9388] = 4, - ACTIONS(249), 1, + [10559] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1713), 1, + ACTIONS(5194), 1, + anon_sym_LBRACK2, + STATE(1875), 1, sym_comment, - ACTIONS(2510), 9, - anon_sym_DASH, + ACTIONS(2337), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230001,7 +241892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2512), 52, + ACTIONS(2341), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230014,62 +241905,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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, - [9460] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10633] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1714), 1, + STATE(1876), 1, sym_comment, - ACTIONS(5019), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, + ACTIONS(5164), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, anon_sym_e_GT, anon_sym_o_GT, anon_sym_err_PLUSout_GT, anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 52, + aux_sym_unquoted_token1, + ACTIONS(5162), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230081,61 +241976,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [9532] = 8, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10705] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1715), 1, + STATE(1877), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - STATE(1996), 1, - sym_cell_path, - ACTIONS(1664), 8, + ACTIONS(994), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230144,7 +242029,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(1668), 49, + ACTIONS(996), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230156,36 +242042,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230194,20 +242076,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, - [9612] = 8, - ACTIONS(249), 1, + [10777] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1716), 1, + STATE(1878), 1, sym_comment, - STATE(1901), 1, - sym_cell_path, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1670), 8, + ACTIONS(998), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230216,7 +242097,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(1672), 49, + ACTIONS(1000), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230228,36 +242110,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230266,20 +242144,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, - [9692] = 8, - ACTIONS(249), 1, + [10849] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1294), 1, - sym_cell_path, - STATE(1693), 1, - sym_path, - STATE(1717), 1, + STATE(1879), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1021), 8, + ACTIONS(1002), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230288,7 +242165,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(1023), 49, + ACTIONS(1004), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230300,36 +242178,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230338,13 +242212,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, - [9772] = 4, - ACTIONS(249), 1, + [10921] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1718), 1, + STATE(1880), 1, sym_comment, - ACTIONS(5019), 9, - anon_sym_DASH, + ACTIONS(990), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230353,7 +242233,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(5017), 52, + ACTIONS(992), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230365,54 +242246,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_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, - [9844] = 4, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10993] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1719), 1, + STATE(1881), 1, sym_comment, - ACTIONS(5019), 9, - anon_sym_DASH, + ACTIONS(5168), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230421,7 +242301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 52, + aux_sym_unquoted_token1, + ACTIONS(5166), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230433,55 +242316,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [9916] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [11065] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1720), 1, + STATE(1882), 1, sym_comment, - ACTIONS(2539), 16, + ACTIONS(5172), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -230496,15 +242370,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2541), 45, + ACTIONS(5170), 45, sym_raw_string_begin, 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, @@ -230522,12 +242390,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -230542,81 +242416,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, - [9988] = 4, - ACTIONS(249), 1, + [11137] = 40, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1721), 1, - sym_comment, - ACTIONS(5019), 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(5017), 52, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(1048), 1, + anon_sym_DOLLAR, + ACTIONS(3287), 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_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, - [10060] = 4, - ACTIONS(249), 1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(1883), 1, + sym_comment, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(2785), 1, + aux_sym_shebang_repeat1, + STATE(3531), 1, + sym__val_number_decimal, + STATE(3608), 1, + sym_expr_parenthesized, + STATE(3613), 1, + sym_val_variable, + STATE(3876), 1, + sym__expr_binary_expression_parenthesized, + STATE(3925), 1, + sym_val_range, + STATE(6735), 1, + sym__expression_parenthesized, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2413), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [11281] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1722), 1, + STATE(1884), 1, sym_comment, - ACTIONS(1054), 9, - sym__newline, + ACTIONS(5176), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230625,7 +242541,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1056), 52, + aux_sym_unquoted_token1, + ACTIONS(5174), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -230636,40 +242556,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_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, 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_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230678,13 +242588,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, - [10132] = 4, - ACTIONS(249), 1, + [11353] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1723), 1, + STATE(1885), 1, sym_comment, - ACTIONS(2410), 9, - anon_sym_DASH, + ACTIONS(5180), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230693,7 +242609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2412), 52, + aux_sym_unquoted_token1, + ACTIONS(5178), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230705,54 +242624,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [10204] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [11425] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1724), 1, + STATE(1886), 1, sym_comment, - ACTIONS(2438), 9, - anon_sym_DASH, + ACTIONS(1006), 16, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230761,8 +242678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2440), 52, - sym__newline, + ACTIONS(1008), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -230773,55 +242689,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_in2, 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, - [10276] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + 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, + [11497] = 40, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(1048), 1, + anon_sym_DOLLAR, + ACTIONS(3287), 1, + sym__newline, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(1887), 1, + sym_comment, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(2785), 1, + aux_sym_shebang_repeat1, + STATE(3531), 1, + sym__val_number_decimal, + STATE(3608), 1, + sym_expr_parenthesized, + STATE(3613), 1, + sym_val_variable, + STATE(3876), 1, + sym__expr_binary_expression_parenthesized, + STATE(3925), 1, + sym_val_range, + STATE(6337), 1, + sym__expression_parenthesized, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2413), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [11641] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1725), 1, + STATE(1888), 1, sym_comment, - ACTIONS(5061), 16, + ACTIONS(5122), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -230836,15 +242850,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5059), 45, + ACTIONS(5120), 45, sym_raw_string_begin, 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, @@ -230862,12 +242870,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -230882,14 +242896,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, - [10348] = 4, - ACTIONS(249), 1, + [11713] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1726), 1, + STATE(1889), 1, sym_comment, - ACTIONS(2482), 16, + ACTIONS(5126), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -230904,15 +242918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2484), 45, + ACTIONS(5124), 45, sym_raw_string_begin, 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, @@ -230930,12 +242938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -230950,14 +242964,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, - [10420] = 4, - ACTIONS(249), 1, + [11785] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1727), 1, + STATE(1890), 1, sym_comment, - ACTIONS(2398), 16, + ACTIONS(1030), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -230972,15 +242986,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2400), 45, + ACTIONS(1032), 45, sym_raw_string_begin, 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, @@ -230998,12 +243006,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -231018,14 +243032,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, - [10492] = 4, - ACTIONS(249), 1, + [11857] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1728), 1, + STATE(1891), 1, sym_comment, - ACTIONS(2406), 16, + ACTIONS(2504), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -231040,15 +243054,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2408), 45, + ACTIONS(2506), 45, sym_raw_string_begin, 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, @@ -231066,12 +243074,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -231086,14 +243100,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, - [10564] = 4, - ACTIONS(249), 1, + [11929] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1729), 1, + STATE(1892), 1, sym_comment, - ACTIONS(2506), 16, + ACTIONS(2159), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -231108,15 +243122,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2508), 45, + ACTIONS(2165), 45, sym_raw_string_begin, 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, @@ -231134,12 +243142,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -231154,14 +243168,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, - [10636] = 4, - ACTIONS(249), 1, + [12001] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1730), 1, + STATE(1893), 1, sym_comment, - ACTIONS(2543), 16, + ACTIONS(998), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -231176,15 +243190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2545), 45, + ACTIONS(1000), 45, sym_raw_string_begin, 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, @@ -231202,12 +243210,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -231222,81 +243236,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, - [10708] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1731), 1, - sym_comment, - ACTIONS(5019), 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(5017), 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, - [10780] = 4, - ACTIONS(249), 1, + [12073] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1732), 1, + STATE(1894), 1, sym_comment, - ACTIONS(5019), 9, - anon_sym_DASH, + ACTIONS(1006), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231305,7 +243255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 52, + ACTIONS(1008), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231318,110 +243268,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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, - [10852] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5125), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT, - STATE(1326), 1, - sym_cell_path, - STATE(1733), 1, - sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2132), 1, - sym_path, - ACTIONS(1021), 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(1023), 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, @@ -231430,14 +243304,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, - [10932] = 4, - ACTIONS(249), 1, + [12145] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1734), 1, + STATE(1895), 1, sym_comment, - ACTIONS(2524), 16, + ACTIONS(2090), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -231452,15 +243326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2526), 45, + ACTIONS(2092), 45, sym_raw_string_begin, 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, @@ -231478,12 +243346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -231498,13 +243372,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, - [11004] = 4, - ACTIONS(249), 1, + [12217] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1735), 1, + STATE(1896), 1, sym_comment, - ACTIONS(5019), 9, - anon_sym_DASH, + ACTIONS(2383), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231513,7 +243393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 52, + aux_sym_unquoted_token1, + ACTIONS(2385), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231525,54 +243408,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [11076] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12289] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1736), 1, + STATE(1897), 1, sym_comment, - ACTIONS(2569), 9, - anon_sym_DASH, + ACTIONS(2480), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231581,7 +243461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2571), 52, + aux_sym_unquoted_token1, + ACTIONS(2482), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231593,55 +243476,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [11148] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12361] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1737), 1, + STATE(1898), 1, sym_comment, - ACTIONS(2561), 16, + ACTIONS(2375), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -231656,15 +243530,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2563), 45, + ACTIONS(2377), 45, sym_raw_string_begin, 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, @@ -231682,12 +243550,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -231702,13 +243576,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, - [11220] = 4, - ACTIONS(249), 1, + [12433] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1738), 1, + STATE(1899), 1, sym_comment, - ACTIONS(5019), 9, - anon_sym_DASH, + ACTIONS(2167), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231717,7 +243597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 52, + aux_sym_unquoted_token1, + ACTIONS(2173), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231729,54 +243612,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [11292] = 5, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12505] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1739), 1, + STATE(1900), 1, sym_comment, - ACTIONS(5139), 9, - anon_sym_DASH, + ACTIONS(2175), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231785,7 +243665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5137), 24, + aux_sym_unquoted_token1, + ACTIONS(2181), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231797,11 +243680,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_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231810,42 +243712,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(5127), 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, - [11366] = 4, - ACTIONS(249), 1, + [12577] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1740), 1, + STATE(1901), 1, sym_comment, - ACTIONS(5019), 9, - anon_sym_DASH, + ACTIONS(2133), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231854,7 +243733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 52, + aux_sym_unquoted_token1, + ACTIONS(2139), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231866,262 +243748,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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, - [11438] = 40, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(475), 1, anon_sym_LBRACK, - ACTIONS(477), 1, anon_sym_LPAREN, - ACTIONS(481), 1, - anon_sym_DOLLAR, - ACTIONS(483), 1, - anon_sym_DASH, - ACTIONS(493), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(499), 1, - aux_sym_expr_unary_token1, - ACTIONS(503), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(505), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(507), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(509), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(513), 1, - anon_sym_0b, - ACTIONS(517), 1, - sym_val_date, - ACTIONS(519), 1, - anon_sym_DQUOTE, - ACTIONS(523), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(525), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(529), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - sym__newline, - ACTIONS(5143), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, - ACTIONS(5145), 1, - anon_sym_DOT_DOT, - STATE(1741), 1, - sym_comment, - STATE(2078), 1, - sym__val_number, - STATE(2325), 1, - sym__inter_single_quotes, - STATE(2326), 1, - sym__inter_double_quotes, - STATE(2328), 1, - sym__expr_unary_minus, - STATE(2823), 1, - aux_sym_shebang_repeat1, - STATE(3526), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_variable, - STATE(3580), 1, - sym_expr_parenthesized, - STATE(3829), 1, - sym__expr_binary_expression_parenthesized, - STATE(3856), 1, - sym_val_range, - STATE(6191), 1, - sym__expression_parenthesized, - ACTIONS(515), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(521), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5141), 2, anon_sym_true, anon_sym_false, - ACTIONS(5147), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1820), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2318), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(511), 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(2358), 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, - [11582] = 40, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(475), 1, - anon_sym_LBRACK, - ACTIONS(477), 1, - anon_sym_LPAREN, - ACTIONS(481), 1, - anon_sym_DOLLAR, - ACTIONS(483), 1, - anon_sym_DASH, - ACTIONS(493), 1, - anon_sym_LBRACE, - ACTIONS(499), 1, - aux_sym_expr_unary_token1, - ACTIONS(503), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(505), 1, aux_sym__val_number_decimal_token2, - ACTIONS(507), 1, aux_sym__val_number_decimal_token3, - ACTIONS(509), 1, aux_sym__val_number_decimal_token4, - ACTIONS(513), 1, - anon_sym_0b, - ACTIONS(517), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(519), 1, anon_sym_DQUOTE, - ACTIONS(523), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(525), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(529), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - sym__newline, - ACTIONS(5143), 1, - anon_sym_null, - ACTIONS(5145), 1, - anon_sym_DOT_DOT, - STATE(1741), 1, - aux_sym_shebang_repeat1, - STATE(1742), 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, + [12649] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1902), 1, sym_comment, - STATE(2078), 1, - sym__val_number, - STATE(2325), 1, - sym__inter_single_quotes, - STATE(2326), 1, - sym__inter_double_quotes, - STATE(2328), 1, - sym__expr_unary_minus, - STATE(3526), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_variable, - STATE(3580), 1, - sym_expr_parenthesized, - STATE(3829), 1, - sym__expr_binary_expression_parenthesized, - STATE(3856), 1, - sym_val_range, - STATE(6610), 1, - sym__expression_parenthesized, - ACTIONS(515), 2, + ACTIONS(5145), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(521), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5147), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1820), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2318), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(511), 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(2358), 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, - [11726] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1743), 1, - sym_comment, - ACTIONS(5019), 9, - anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232130,7 +243801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 52, + aux_sym_unquoted_token1, + ACTIONS(5143), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232142,55 +243816,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [11798] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12721] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1744), 1, + STATE(1903), 1, sym_comment, - ACTIONS(5077), 16, + ACTIONS(5130), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -232205,15 +243870,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5075), 45, + ACTIONS(5128), 45, sym_raw_string_begin, 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, @@ -232231,12 +243890,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -232251,154 +243916,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, - [11870] = 8, - ACTIONS(249), 1, + [12793] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1320), 1, - sym_cell_path, - STATE(1745), 1, + STATE(1904), 1, sym_comment, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(2151), 1, - sym_path, - ACTIONS(1021), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1023), 49, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - 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, - [11950] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1746), 1, - sym_comment, - ACTIONS(2001), 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(2003), 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, - [12022] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1747), 1, - sym_comment, - ACTIONS(2234), 16, + ACTIONS(2395), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -232413,15 +243938,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2240), 45, + ACTIONS(2397), 45, sym_raw_string_begin, 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, @@ -232439,12 +243958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -232459,14 +243984,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, - [12094] = 4, - ACTIONS(249), 1, + [12865] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1748), 1, + STATE(1905), 1, sym_comment, - ACTIONS(2498), 16, + ACTIONS(2399), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -232481,15 +244006,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2500), 45, + ACTIONS(2401), 45, sym_raw_string_begin, 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, @@ -232507,12 +244026,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -232527,14 +244052,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, - [12166] = 4, - ACTIONS(249), 1, + [12937] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1749), 1, + STATE(1906), 1, sym_comment, - ACTIONS(2494), 16, + ACTIONS(2403), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -232549,15 +244074,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2496), 45, + ACTIONS(2405), 45, sym_raw_string_begin, 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, @@ -232575,12 +244094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -232595,14 +244120,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, - [12238] = 4, - ACTIONS(249), 1, + [13009] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1750), 1, + STATE(1907), 1, sym_comment, - ACTIONS(2494), 16, + ACTIONS(2472), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -232617,15 +244142,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2496), 45, + ACTIONS(2474), 45, sym_raw_string_begin, 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, @@ -232643,12 +244162,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -232663,14 +244188,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, - [12310] = 4, - ACTIONS(249), 1, + [13081] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1751), 1, + STATE(1908), 1, sym_comment, - ACTIONS(2510), 16, + ACTIONS(2476), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -232685,15 +244210,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2512), 45, + ACTIONS(2478), 45, sym_raw_string_begin, 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, @@ -232711,12 +244230,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -232731,14 +244256,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, - [12382] = 4, - ACTIONS(249), 1, + [13153] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1752), 1, + STATE(1909), 1, sym_comment, - ACTIONS(5085), 16, + ACTIONS(2371), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -232753,15 +244278,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5083), 45, + ACTIONS(2373), 45, sym_raw_string_begin, 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, @@ -232779,12 +244298,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -232799,14 +244324,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, - [12454] = 4, - ACTIONS(249), 1, + [13225] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1753), 1, + STATE(1910), 1, sym_comment, - ACTIONS(1715), 16, + ACTIONS(2488), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -232821,15 +244346,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1717), 45, + ACTIONS(2490), 45, sym_raw_string_begin, 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, @@ -232847,12 +244366,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -232867,14 +244392,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, - [12526] = 4, - ACTIONS(249), 1, + [13297] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1754), 1, + STATE(1911), 1, sym_comment, - ACTIONS(2426), 16, + ACTIONS(5098), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -232889,15 +244414,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2428), 45, + ACTIONS(5096), 45, sym_raw_string_begin, 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, @@ -232915,12 +244434,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -232935,14 +244460,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, - [12598] = 4, - ACTIONS(249), 1, + [13369] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1755), 1, + STATE(1912), 1, sym_comment, - ACTIONS(4748), 16, + ACTIONS(5102), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -232957,15 +244482,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4746), 45, + ACTIONS(5100), 45, sym_raw_string_begin, 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, @@ -232983,12 +244502,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -233003,13 +244528,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, - [12670] = 4, - ACTIONS(249), 1, + [13441] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1756), 1, + STATE(1913), 1, sym_comment, - ACTIONS(2535), 9, - anon_sym_DASH, + ACTIONS(1010), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233018,7 +244547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2537), 52, + ACTIONS(1012), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233031,53 +244560,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_DASH2, + anon_sym_in2, + anon_sym_if, 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, - [12742] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13513] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1757), 1, + STATE(1914), 1, sym_comment, - ACTIONS(2466), 9, - anon_sym_DASH, + ACTIONS(1014), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233086,7 +244615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2468), 52, + ACTIONS(1016), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233099,54 +244628,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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, - [12814] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13585] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1758), 1, + STATE(1915), 1, sym_comment, - ACTIONS(2001), 16, + ACTIONS(2496), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -233161,15 +244686,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2003), 45, + ACTIONS(2498), 45, sym_raw_string_begin, 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, @@ -233187,12 +244706,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -233207,19 +244732,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, - [12886] = 4, - ACTIONS(249), 1, + [13657] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1759), 1, + STATE(1916), 1, sym_comment, - ACTIONS(2535), 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(1010), 16, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233228,17 +244754,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(2537), 45, - sym_raw_string_begin, - 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(1012), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233249,24 +244765,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_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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233275,14 +244800,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, - [12958] = 4, - ACTIONS(249), 1, + [13729] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1760), 1, + STATE(1917), 1, sym_comment, - ACTIONS(2430), 16, + ACTIONS(2407), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -233297,15 +244822,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2432), 45, + ACTIONS(2409), 45, sym_raw_string_begin, 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, @@ -233323,12 +244842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -233343,14 +244868,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, - [13030] = 4, - ACTIONS(249), 1, + [13801] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1918), 1, sym_comment, - ACTIONS(1703), 16, + ACTIONS(2391), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -233365,15 +244890,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1705), 45, + ACTIONS(2393), 45, sym_raw_string_begin, 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, @@ -233391,12 +244910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -233411,14 +244936,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, - [13102] = 4, - ACTIONS(249), 1, + [13873] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1762), 1, + STATE(1919), 1, sym_comment, - ACTIONS(2478), 16, + ACTIONS(2413), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -233433,15 +244958,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2480), 45, + ACTIONS(2415), 45, sym_raw_string_begin, 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, @@ -233459,12 +244978,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -233479,14 +245004,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, - [13174] = 4, - ACTIONS(249), 1, + [13945] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1763), 1, + STATE(1920), 1, sym_comment, - ACTIONS(2466), 16, + ACTIONS(2421), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -233501,15 +245026,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2468), 45, + ACTIONS(2423), 45, sym_raw_string_begin, 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, @@ -233527,12 +245046,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -233547,14 +245072,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, - [13246] = 4, - ACTIONS(249), 1, + [14017] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1764), 1, + STATE(1921), 1, sym_comment, - ACTIONS(1769), 16, + ACTIONS(2425), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -233569,15 +245094,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1771), 45, + ACTIONS(2427), 45, sym_raw_string_begin, 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, @@ -233595,12 +245114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -233615,82 +245140,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, - [13318] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1765), 1, - sym_comment, - ACTIONS(5153), 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(5151), 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, - [13390] = 4, - ACTIONS(249), 1, + [14089] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1766), 1, + STATE(1922), 1, sym_comment, - ACTIONS(2017), 16, + ACTIONS(2429), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -233705,15 +245162,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2019), 45, + ACTIONS(2431), 45, sym_raw_string_begin, 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, @@ -233731,12 +245182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -233751,14 +245208,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, - [13462] = 4, - ACTIONS(249), 1, + [14161] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1767), 1, + STATE(1923), 1, sym_comment, - ACTIONS(1826), 16, + ACTIONS(2433), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -233773,15 +245230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1828), 45, + ACTIONS(2435), 45, sym_raw_string_begin, 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, @@ -233799,12 +245250,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -233819,14 +245276,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, - [13534] = 4, - ACTIONS(249), 1, + [14233] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1768), 1, + STATE(1924), 1, sym_comment, - ACTIONS(5110), 16, + ACTIONS(2441), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -233841,15 +245298,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5107), 45, + ACTIONS(2443), 45, sym_raw_string_begin, 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, @@ -233867,12 +245318,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -233887,82 +245344,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, - [13606] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1769), 1, - sym_comment, - ACTIONS(2289), 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(2291), 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, - [13678] = 4, - ACTIONS(249), 1, + [14305] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1770), 1, + STATE(1925), 1, sym_comment, - ACTIONS(2043), 16, + ACTIONS(1948), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -233977,15 +245366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2045), 45, + ACTIONS(1950), 45, sym_raw_string_begin, 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, @@ -234003,12 +245386,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -234023,14 +245412,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, - [13750] = 4, - ACTIONS(249), 1, + [14377] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1771), 1, + STATE(1926), 1, sym_comment, - ACTIONS(2047), 16, + ACTIONS(2387), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -234045,15 +245434,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2049), 45, + ACTIONS(2389), 45, sym_raw_string_begin, 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, @@ -234071,12 +245454,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -234091,14 +245480,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, - [13822] = 4, - ACTIONS(249), 1, + [14449] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1772), 1, + STATE(1927), 1, sym_comment, - ACTIONS(2434), 16, + ACTIONS(2367), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -234113,15 +245502,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2436), 45, + ACTIONS(2369), 45, sym_raw_string_begin, 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, @@ -234139,12 +245522,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -234159,14 +245548,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, - [13894] = 4, - ACTIONS(249), 1, + [14521] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1773), 1, + STATE(1928), 1, sym_comment, - ACTIONS(2059), 16, + ACTIONS(1972), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -234181,15 +245570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2061), 45, + ACTIONS(1974), 45, sym_raw_string_begin, 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, @@ -234207,12 +245590,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -234227,14 +245616,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, - [13966] = 4, - ACTIONS(249), 1, + [14593] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1774), 1, + STATE(1929), 1, sym_comment, - ACTIONS(2442), 16, + ACTIONS(1988), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -234249,15 +245638,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2444), 45, + ACTIONS(1990), 45, sym_raw_string_begin, 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, @@ -234275,12 +245658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -234295,14 +245684,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, - [14038] = 4, - ACTIONS(249), 1, + [14665] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1775), 1, + STATE(1930), 1, sym_comment, - ACTIONS(2450), 16, + ACTIONS(1992), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -234317,15 +245706,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2452), 45, + ACTIONS(1994), 45, sym_raw_string_begin, 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, @@ -234343,12 +245726,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -234363,14 +245752,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, - [14110] = 4, - ACTIONS(249), 1, + [14737] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1776), 1, + STATE(1931), 1, sym_comment, - ACTIONS(2067), 16, + ACTIONS(2437), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -234385,15 +245774,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2069), 45, + ACTIONS(2439), 45, sym_raw_string_begin, 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, @@ -234411,12 +245794,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -234431,82 +245820,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, - [14182] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1777), 1, - sym_comment, - ACTIONS(2017), 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(2019), 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, - [14254] = 4, - ACTIONS(249), 1, + [14809] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1778), 1, + STATE(1932), 1, sym_comment, - ACTIONS(2087), 16, + ACTIONS(2004), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -234521,15 +245842,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2089), 45, + ACTIONS(2006), 45, sym_raw_string_begin, 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, @@ -234547,12 +245862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -234567,14 +245888,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, - [14326] = 4, - ACTIONS(249), 1, + [14881] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1779), 1, + STATE(1933), 1, sym_comment, - ACTIONS(2470), 16, + ACTIONS(2456), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -234589,15 +245910,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2472), 45, + ACTIONS(2458), 45, sym_raw_string_begin, 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, @@ -234615,12 +245930,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -234635,14 +245956,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, - [14398] = 4, - ACTIONS(249), 1, + [14953] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1780), 1, + STATE(1934), 1, sym_comment, - ACTIONS(2474), 16, + ACTIONS(2460), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -234657,15 +245978,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2476), 45, + ACTIONS(2462), 45, sym_raw_string_begin, 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, @@ -234683,12 +245998,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -234703,14 +246024,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, - [14470] = 4, - ACTIONS(249), 1, + [15025] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1781), 1, + STATE(1935), 1, sym_comment, - ACTIONS(2095), 16, + ACTIONS(2068), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -234725,15 +246046,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2097), 45, + ACTIONS(2070), 45, sym_raw_string_begin, 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, @@ -234751,12 +246066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -234771,14 +246092,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, - [14542] = 4, - ACTIONS(249), 1, + [15097] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1782), 1, + STATE(1936), 1, sym_comment, - ACTIONS(2502), 16, + ACTIONS(1907), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -234793,15 +246114,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2504), 45, + ACTIONS(1911), 45, sym_raw_string_begin, 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, @@ -234819,12 +246134,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -234839,13 +246160,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, - [14614] = 4, - ACTIONS(249), 1, + [15169] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1783), 1, + STATE(1937), 1, sym_comment, - ACTIONS(2043), 9, - anon_sym_DASH, + ACTIONS(2343), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234854,7 +246181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2045), 52, + aux_sym_unquoted_token1, + ACTIONS(2345), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234866,111 +246196,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_LBRACK, + anon_sym_LPAREN, 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, - [14686] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1784), 1, - sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2132), 1, - sym_path, - STATE(2402), 1, - sym_cell_path, - ACTIONS(1901), 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(1903), 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_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234979,14 +246228,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, - [14766] = 4, - ACTIONS(249), 1, + [15241] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1785), 1, + STATE(1938), 1, sym_comment, - ACTIONS(2410), 16, + ACTIONS(2351), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -235001,15 +246250,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2412), 45, + ACTIONS(2353), 45, sym_raw_string_begin, 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, @@ -235027,12 +246270,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -235047,14 +246296,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, - [14838] = 4, - ACTIONS(249), 1, + [15313] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1939), 1, sym_comment, - ACTIONS(2531), 16, + ACTIONS(1913), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -235069,15 +246318,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2533), 45, + ACTIONS(1915), 45, sym_raw_string_begin, 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, @@ -235095,12 +246338,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -235115,14 +246364,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, - [14910] = 4, - ACTIONS(249), 1, + [15385] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1787), 1, + STATE(1940), 1, sym_comment, - ACTIONS(2438), 16, + ACTIONS(2355), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -235137,15 +246386,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2440), 45, + ACTIONS(2357), 45, sym_raw_string_begin, 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, @@ -235163,12 +246406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -235183,14 +246432,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, - [14982] = 4, - ACTIONS(249), 1, + [15457] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1788), 1, + STATE(1941), 1, sym_comment, - ACTIONS(1628), 16, + ACTIONS(2359), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -235205,15 +246454,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1640), 45, + ACTIONS(2361), 45, sym_raw_string_begin, 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, @@ -235231,12 +246474,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -235251,14 +246500,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, - [15054] = 4, - ACTIONS(249), 1, + [15529] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1789), 1, + STATE(1942), 1, sym_comment, - ACTIONS(5099), 16, + ACTIONS(1709), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -235273,15 +246522,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5097), 45, + ACTIONS(1721), 45, sym_raw_string_begin, 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, @@ -235299,12 +246542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -235319,21 +246568,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, - [15126] = 8, - ACTIONS(249), 1, + [15601] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1790), 1, + STATE(1943), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2132), 1, - sym_path, - STATE(2409), 1, - sym_cell_path, - ACTIONS(1893), 9, + ACTIONS(1014), 16, sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235342,7 +246590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1895), 48, + ACTIONS(1016), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235353,36 +246601,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_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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235391,13 +246636,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, - [15206] = 4, - ACTIONS(249), 1, + [15673] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1791), 1, + STATE(1944), 1, sym_comment, - ACTIONS(2047), 9, - anon_sym_DASH, + ACTIONS(2363), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235406,7 +246657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2049), 52, + aux_sym_unquoted_token1, + ACTIONS(2365), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235418,55 +246672,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [15278] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15745] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1945), 1, sym_comment, - ACTIONS(2418), 16, + ACTIONS(1755), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -235481,15 +246726,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2420), 45, + ACTIONS(1757), 45, sym_raw_string_begin, 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, @@ -235507,12 +246746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -235527,14 +246772,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, - [15350] = 4, - ACTIONS(249), 1, + [15817] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1793), 1, + STATE(1946), 1, sym_comment, - ACTIONS(4824), 16, + ACTIONS(2094), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -235549,15 +246794,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4822), 45, + ACTIONS(2096), 45, sym_raw_string_begin, 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, @@ -235575,12 +246814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -235595,13 +246840,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, - [15422] = 4, - ACTIONS(249), 1, + [15889] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1794), 1, + STATE(1947), 1, sym_comment, - ACTIONS(5157), 9, - anon_sym_DASH, + ACTIONS(2500), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235610,7 +246861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5155), 52, + aux_sym_unquoted_token1, + ACTIONS(2502), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235622,55 +246876,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [15494] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15961] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1795), 1, + STATE(1948), 1, sym_comment, - ACTIONS(1058), 16, + ACTIONS(1739), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -235685,15 +246930,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1060), 45, + ACTIONS(1741), 45, sym_raw_string_begin, 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, @@ -235711,12 +246950,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -235731,14 +246976,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, - [15566] = 4, - ACTIONS(249), 1, + [16033] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1796), 1, + STATE(1949), 1, sym_comment, - ACTIONS(4987), 16, + ACTIONS(4928), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -235753,15 +246998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4985), 45, + ACTIONS(4926), 45, sym_raw_string_begin, - 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, @@ -235775,16 +247013,23 @@ 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, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -235799,14 +247044,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, - [15638] = 4, - ACTIONS(249), 1, + [16105] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1797), 1, + STATE(1950), 1, sym_comment, - ACTIONS(4913), 16, + ACTIONS(5078), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -235821,14 +247066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2800), 45, + ACTIONS(5076), 45, sym_raw_string_begin, - anon_sym_true, - anon_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, @@ -235847,12 +247086,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -235867,13 +247112,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, - [15710] = 4, - ACTIONS(249), 1, + [16177] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1798), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1951), 1, sym_comment, - ACTIONS(2474), 9, - anon_sym_DASH, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4973), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235882,7 +247135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2476), 52, + ACTIONS(4971), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235895,53 +247148,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [15782] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16253] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1799), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1952), 1, sym_comment, - ACTIONS(2095), 9, - anon_sym_DASH, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4977), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235950,7 +247205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2097), 52, + ACTIONS(4975), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235963,54 +247218,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [15854] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16329] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1953), 1, sym_comment, - ACTIONS(1062), 16, + ACTIONS(4908), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -236025,15 +247274,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1064), 45, + ACTIONS(2767), 45, sym_raw_string_begin, - 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, @@ -236047,16 +247289,23 @@ 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, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -236071,13 +247320,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, - [15926] = 4, - ACTIONS(249), 1, + [16401] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1801), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1954), 1, sym_comment, - ACTIONS(2502), 9, - anon_sym_DASH, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4981), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236086,7 +247343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2504), 52, + ACTIONS(4979), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236099,59 +247356,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [15998] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16477] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1802), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1955), 1, sym_comment, - ACTIONS(1909), 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(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4985), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236160,16 +247413,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(1911), 45, - sym_raw_string_begin, - 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(4983), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236181,24 +247425,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_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236207,81 +247460,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, - [16070] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1803), 1, - sym_comment, - ACTIONS(2398), 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(2400), 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, - [16142] = 4, - ACTIONS(249), 1, + [16553] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1804), 1, + STATE(1956), 1, sym_comment, - ACTIONS(2406), 9, - anon_sym_DASH, + ACTIONS(2129), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236290,7 +247481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2408), 52, + aux_sym_unquoted_token1, + ACTIONS(2131), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236302,111 +247496,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_LBRACK, + anon_sym_LPAREN, 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, - [16214] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1681), 1, - sym_cell_path, - STATE(1805), 1, - sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2132), 1, - sym_path, - ACTIONS(1664), 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(1668), 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_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236415,14 +247528,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, - [16294] = 4, - ACTIONS(249), 1, + [16625] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1806), 1, + STATE(1957), 1, sym_comment, - ACTIONS(2551), 16, + ACTIONS(2183), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -236437,15 +247550,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2553), 45, + ACTIONS(2185), 45, sym_raw_string_begin, 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, @@ -236463,12 +247570,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -236483,14 +247596,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, - [16366] = 4, - ACTIONS(249), 1, + [16697] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1807), 1, + STATE(1958), 1, sym_comment, - ACTIONS(2218), 16, + ACTIONS(5031), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -236505,15 +247618,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2220), 45, + ACTIONS(5029), 45, sym_raw_string_begin, - 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, @@ -236527,16 +247633,23 @@ 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, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -236551,82 +247664,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, - [16438] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1808), 1, - sym_comment, - ACTIONS(2531), 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(2533), 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, - [16510] = 4, - ACTIONS(249), 1, + [16769] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1809), 1, + STATE(1959), 1, sym_comment, - ACTIONS(2422), 16, + ACTIONS(1783), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -236641,15 +247686,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2424), 45, + ACTIONS(1785), 45, sym_raw_string_begin, 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, @@ -236667,12 +247706,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -236687,14 +247732,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, - [16582] = 4, - ACTIONS(249), 1, + [16841] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1810), 1, + STATE(1960), 1, sym_comment, - ACTIONS(1038), 16, + ACTIONS(1018), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -236709,15 +247754,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1040), 45, + ACTIONS(1020), 45, sym_raw_string_begin, 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, @@ -236735,12 +247774,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -236755,14 +247800,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, - [16654] = 4, - ACTIONS(249), 1, + [16913] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1811), 1, + STATE(1961), 1, sym_comment, - ACTIONS(4997), 16, + ACTIONS(1890), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -236777,15 +247822,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4995), 45, + ACTIONS(1892), 45, sym_raw_string_begin, 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, @@ -236803,12 +247842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -236823,13 +247868,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, - [16726] = 4, - ACTIONS(249), 1, + [16985] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1812), 1, + STATE(1962), 1, sym_comment, - ACTIONS(2434), 9, - anon_sym_DASH, + ACTIONS(1290), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236838,7 +247887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2436), 52, + ACTIONS(1288), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236850,62 +247899,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_COLON, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_else, 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, - [16798] = 8, - ACTIONS(249), 1, + anon_sym_catch, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17057] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1813), 1, + STATE(1963), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2132), 1, - sym_path, - STATE(2249), 1, - sym_cell_path, - ACTIONS(1909), 9, - sym__newline, + ACTIONS(1002), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236914,7 +247957,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1911), 48, + aux_sym_unquoted_token1, + ACTIONS(1004), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236925,36 +247972,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_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, 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_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236963,13 +248004,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, - [16878] = 4, - ACTIONS(249), 1, + [17129] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1814), 1, + STATE(1964), 1, sym_comment, - ACTIONS(2059), 9, - anon_sym_DASH, + ACTIONS(5088), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236978,7 +248023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2061), 52, + ACTIONS(5086), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236991,54 +248036,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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, - [16950] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17201] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1815), 1, + STATE(1965), 1, sym_comment, - ACTIONS(4923), 16, + ACTIONS(5022), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -237053,14 +248094,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4921), 45, + ACTIONS(5020), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237074,17 +248110,22 @@ 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, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -237099,14 +248140,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, - [17022] = 4, - ACTIONS(249), 1, + [17273] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1966), 1, sym_comment, - ACTIONS(5115), 16, + ACTIONS(2347), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -237121,15 +248162,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5113), 45, + ACTIONS(2349), 45, sym_raw_string_begin, 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, @@ -237147,12 +248182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -237167,158 +248208,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, - [17094] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1817), 1, - sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2132), 1, - sym_path, - STATE(2260), 1, - sym_cell_path, - ACTIONS(1897), 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(1899), 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, - [17174] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1818), 1, - sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2005), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(1929), 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(1931), 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, - [17254] = 4, - ACTIONS(249), 1, + [17345] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1819), 1, + STATE(1967), 1, sym_comment, - ACTIONS(1090), 16, + ACTIONS(2347), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -237333,15 +248230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1092), 45, + ACTIONS(2349), 45, sym_raw_string_begin, 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, @@ -237359,12 +248250,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -237379,82 +248276,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, - [17326] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1820), 1, - sym_comment, - ACTIONS(1058), 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(1060), 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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [17398] = 4, - ACTIONS(249), 1, + [17417] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1821), 1, + STATE(1968), 1, sym_comment, - ACTIONS(5023), 16, + ACTIONS(2492), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -237469,14 +248298,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5021), 45, + ACTIONS(2494), 45, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237490,17 +248314,22 @@ 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, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -237515,14 +248344,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, - [17470] = 4, - ACTIONS(249), 1, + [17489] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1822), 1, + STATE(1969), 1, sym_comment, - ACTIONS(2569), 16, + ACTIONS(2508), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -237537,15 +248366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2571), 45, + ACTIONS(2510), 45, sym_raw_string_begin, 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, @@ -237563,12 +248386,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -237583,82 +248412,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, - [17542] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(1823), 1, - sym_comment, - ACTIONS(5161), 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(5159), 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, - [17614] = 4, - ACTIONS(249), 1, + [17561] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1824), 1, + STATE(1970), 1, sym_comment, - ACTIONS(5065), 16, + ACTIONS(2464), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -237673,15 +248434,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5063), 45, + ACTIONS(2466), 45, sym_raw_string_begin, 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, @@ -237699,12 +248454,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -237719,14 +248480,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, - [17686] = 4, - ACTIONS(249), 1, + [17633] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1825), 1, + STATE(1971), 1, sym_comment, - ACTIONS(5073), 16, + ACTIONS(2468), 16, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -237741,15 +248502,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5071), 45, + ACTIONS(2470), 45, sym_raw_string_begin, 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, @@ -237767,12 +248522,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -237787,14 +248548,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, - [17758] = 4, - ACTIONS(249), 1, + [17705] = 40, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1826), 1, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(1048), 1, + anon_sym_DOLLAR, + ACTIONS(3287), 1, + sym__newline, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(1972), 1, sym_comment, - ACTIONS(1054), 16, + STATE(1973), 1, + aux_sym_shebang_repeat1, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3531), 1, + sym__val_number_decimal, + STATE(3608), 1, + sym_expr_parenthesized, + STATE(3613), 1, + sym_val_variable, + STATE(3876), 1, + sym__expr_binary_expression_parenthesized, + STATE(3925), 1, + sym_val_range, + STATE(6723), 1, + sym__expression_parenthesized, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2413), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [17849] = 40, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(1048), 1, anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(3287), 1, + sym__newline, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(1973), 1, + sym_comment, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(2785), 1, + aux_sym_shebang_repeat1, + STATE(3531), 1, + sym__val_number_decimal, + STATE(3608), 1, + sym_expr_parenthesized, + STATE(3613), 1, + sym_val_variable, + STATE(3876), 1, + sym__expr_binary_expression_parenthesized, + STATE(3925), 1, + sym_val_range, + STATE(6725), 1, + sym__expression_parenthesized, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2413), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [17993] = 40, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(1048), 1, + anon_sym_DOLLAR, + ACTIONS(3287), 1, + sym__newline, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(1883), 1, + aux_sym_shebang_repeat1, + STATE(1974), 1, + sym_comment, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3531), 1, + sym__val_number_decimal, + STATE(3608), 1, + sym_expr_parenthesized, + STATE(3613), 1, + sym_val_variable, + STATE(3876), 1, + sym__expr_binary_expression_parenthesized, + STATE(3925), 1, + sym_val_range, + STATE(6733), 1, + sym__expression_parenthesized, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2413), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [18137] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1975), 1, + sym_comment, + ACTIONS(4916), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -237809,15 +248882,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1056), 45, + ACTIONS(4914), 45, sym_raw_string_begin, 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, @@ -237835,12 +248902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -237855,13 +248928,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, - [17830] = 4, - ACTIONS(249), 1, + [18209] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1827), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1976), 1, sym_comment, - ACTIONS(2494), 9, - anon_sym_DASH, + STATE(2247), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237870,7 +248953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2496), 52, + ACTIONS(5196), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237883,53 +248966,153 @@ static 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_DASH2, + anon_sym_in2, 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, - [17902] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18286] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1828), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(3619), 1, + anon_sym_LPAREN, + ACTIONS(5200), 1, + anon_sym_DOLLAR, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(1977), 1, sym_comment, - ACTIONS(2442), 9, - anon_sym_DASH, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3569), 1, + sym__val_number_decimal, + STATE(3597), 1, + sym_val_range, + STATE(3641), 1, + sym_expr_parenthesized, + STATE(3658), 1, + sym_val_variable, + STATE(3974), 1, + sym__expr_binary_expression, + STATE(7526), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2144), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [18427] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1978), 1, + sym_comment, + ACTIONS(1006), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237938,7 +249121,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(2444), 52, + ACTIONS(1008), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237950,60 +249134,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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, - [17974] = 4, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18498] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1829), 1, + ACTIONS(1042), 1, + anon_sym_DOT_DOT2, + STATE(1979), 1, sym_comment, - ACTIONS(5119), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1044), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1030), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238012,16 +249191,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(5117), 45, - sym_raw_string_begin, - 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(1032), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238033,24 +249203,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238059,19 +249236,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, - [18046] = 4, - ACTIONS(249), 1, + [18573] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1830), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1980), 1, sym_comment, - ACTIONS(5123), 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(2172), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238080,16 +249261,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(5121), 45, - sym_raw_string_begin, - 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(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238101,24 +249273,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238127,21 +249306,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, - [18118] = 8, - ACTIONS(249), 1, + [18650] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1831), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1981), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2047), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(1993), 9, - sym__newline, + STATE(2282), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238150,7 +249331,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(1995), 48, + ACTIONS(5208), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238162,35 +249344,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238199,21 +249376,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, - [18198] = 8, - ACTIONS(249), 1, + [18727] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1832), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1982), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2002), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(1997), 9, - sym__newline, + STATE(2228), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238222,7 +249401,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(1999), 48, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238234,35 +249414,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238271,19 +249446,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, - [18278] = 4, - ACTIONS(249), 1, + [18804] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(1983), 1, sym_comment, - ACTIONS(5049), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2488), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238292,16 +249465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5047), 45, - sym_raw_string_begin, - 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(2490), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238313,24 +249477,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, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238339,19 +249513,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, - [18350] = 4, - ACTIONS(249), 1, + [18875] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1834), 1, + STATE(1984), 1, sym_comment, - ACTIONS(5069), 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(2496), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238360,16 +249532,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(5067), 45, - sym_raw_string_begin, - 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(2498), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238381,24 +249544,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, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238407,19 +249580,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, - [18422] = 4, - ACTIONS(249), 1, + [18946] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1835), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1985), 1, sym_comment, - ACTIONS(2230), 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(2229), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238428,16 +249605,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(2232), 45, - sym_raw_string_begin, - 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(5212), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238449,24 +249617,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238475,21 +249650,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, - [18494] = 8, - ACTIONS(249), 1, + [19023] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1836), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1986), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2012), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(2001), 9, - sym__newline, + STATE(2209), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238498,7 +249675,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(2003), 48, + ACTIONS(5204), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238510,35 +249688,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238547,21 +249720,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, - [18574] = 8, - ACTIONS(249), 1, + [19100] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1837), 1, + STATE(1987), 1, sym_comment, - STATE(1909), 1, + STATE(2085), 1, aux_sym_cell_path_repeat1, - STATE(2007), 1, - sym_cell_path, - STATE(2132), 1, + STATE(2197), 1, sym_path, - ACTIONS(2005), 9, - sym__newline, + ACTIONS(967), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238570,7 +249745,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(2007), 48, + ACTIONS(969), 44, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238581,36 +249758,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_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238619,21 +249790,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, - [18654] = 8, - ACTIONS(249), 1, + [19177] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1838), 1, + STATE(1988), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2011), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(2009), 9, - sym__newline, + ACTIONS(1948), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238642,7 +249809,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(2011), 48, + ACTIONS(1950), 47, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238654,35 +249822,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238691,13 +249857,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, - [18734] = 4, - ACTIONS(249), 1, + [19248] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1839), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(1989), 1, sym_comment, - ACTIONS(2450), 9, - anon_sym_DASH, + STATE(2197), 1, + sym_path, + STATE(2503), 1, + sym_cell_path, + ACTIONS(2094), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238706,7 +249884,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(2452), 52, + ACTIONS(2096), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238718,62 +249897,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_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, - [18806] = 8, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19327] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1840), 1, + STATE(1990), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2013), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(2013), 9, - sym__newline, + ACTIONS(2387), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238782,7 +249947,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(2015), 48, + ACTIONS(2389), 47, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238794,35 +249960,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238831,13 +249995,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, - [18886] = 4, - ACTIONS(249), 1, + [19398] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1841), 1, + STATE(1991), 1, sym_comment, - ACTIONS(2494), 9, - anon_sym_DASH, + ACTIONS(2367), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238846,7 +250014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2496), 52, + ACTIONS(2369), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238859,53 +250027,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_DASH2, + anon_sym_in2, + anon_sym_if, 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, - [18958] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19469] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1842), 1, + STATE(1992), 1, sym_comment, - ACTIONS(2067), 9, - anon_sym_DASH, + ACTIONS(1972), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238914,7 +250081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2069), 52, + ACTIONS(1974), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238927,53 +250094,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_DASH2, + anon_sym_in2, + anon_sym_if, 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, - [19030] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19540] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1843), 1, + STATE(1993), 1, sym_comment, - ACTIONS(2561), 9, - anon_sym_DASH, + ACTIONS(1988), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238982,7 +250148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2563), 52, + ACTIONS(1990), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238995,59 +250161,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_DASH2, + anon_sym_in2, + anon_sym_if, 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, - [19102] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19611] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1844), 1, + STATE(1994), 1, sym_comment, - ACTIONS(2557), 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(1992), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239056,16 +250215,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(2559), 45, - sym_raw_string_begin, - 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(1994), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239077,24 +250227,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, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239103,20 +250263,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, - [19174] = 8, - ACTIONS(249), 1, + [19682] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1845), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(1995), 1, sym_comment, - STATE(1887), 1, - sym_cell_path, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1901), 8, + STATE(2230), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239125,7 +250288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1903), 49, + ACTIONS(5212), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239138,35 +250301,30 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239175,20 +250333,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, - [19254] = 8, - ACTIONS(249), 1, + [19759] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1846), 1, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(1996), 1, sym_comment, - STATE(1891), 1, + STATE(2197), 1, + sym_path, + STATE(2532), 1, sym_cell_path, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1893), 8, + ACTIONS(2090), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239197,7 +250360,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(1895), 49, + ACTIONS(2092), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239209,36 +250373,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239247,20 +250404,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, - [19334] = 8, - ACTIONS(249), 1, + [19838] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1736), 1, - sym_cell_path, - STATE(1847), 1, + STATE(1997), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1909), 8, + ACTIONS(2437), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239269,7 +250423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1911), 49, + ACTIONS(2439), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239282,35 +250436,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + 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, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239319,20 +250471,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, - [19414] = 8, - ACTIONS(249), 1, + [19909] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1804), 1, - sym_cell_path, - STATE(1848), 1, + STATE(1998), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1897), 8, + ACTIONS(2004), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239341,7 +250490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1899), 49, + ACTIONS(2006), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239354,35 +250503,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + 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, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239391,20 +250538,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, - [19494] = 8, - ACTIONS(249), 1, + [19980] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1843), 1, - sym_cell_path, - STATE(1849), 1, + STATE(1999), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1929), 8, + ACTIONS(2456), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239413,7 +250557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1931), 49, + ACTIONS(2458), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239426,35 +250570,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + 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, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239463,20 +250605,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, - [19574] = 8, - ACTIONS(249), 1, + [20051] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1746), 1, - sym_cell_path, - STATE(1850), 1, + STATE(2000), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1993), 8, + ACTIONS(2460), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239485,7 +250624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1995), 49, + ACTIONS(2462), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239498,35 +250637,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + 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, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239535,20 +250672,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, - [19654] = 8, - ACTIONS(249), 1, + [20122] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1756), 1, - sym_cell_path, - STATE(1851), 1, + STATE(2001), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1997), 8, + ACTIONS(2068), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239557,7 +250691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1999), 49, + ACTIONS(2070), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239570,35 +250704,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + 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, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239607,20 +250739,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, - [19734] = 8, - ACTIONS(249), 1, + [20193] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1757), 1, - sym_cell_path, - STATE(1852), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2002), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2001), 8, + STATE(2184), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239629,7 +250764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2003), 49, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239642,35 +250777,30 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239679,20 +250809,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, - [19814] = 8, - ACTIONS(249), 1, + [20270] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1777), 1, - sym_cell_path, - STATE(1853), 1, - sym_comment, - STATE(1963), 1, + STATE(1987), 1, aux_sym_cell_path_repeat1, - ACTIONS(2005), 8, + STATE(2003), 1, + sym_comment, + STATE(2128), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(961), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239701,7 +250836,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(2007), 49, + ACTIONS(963), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239713,36 +250849,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239751,20 +250880,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, - [19894] = 8, - ACTIONS(249), 1, + [20349] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1783), 1, - sym_cell_path, - STATE(1854), 1, + STATE(2004), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2009), 8, + ACTIONS(1907), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239773,7 +250899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2011), 49, + ACTIONS(1911), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239786,35 +250912,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + 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, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239823,20 +250947,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, - [19974] = 8, - ACTIONS(249), 1, + [20420] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1791), 1, - sym_cell_path, - STATE(1855), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2005), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2013), 8, + STATE(2249), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239845,7 +250972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2015), 49, + ACTIONS(5208), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239858,35 +250985,30 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239895,20 +251017,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, - [20054] = 8, - ACTIONS(249), 1, + [20497] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1812), 1, - sym_cell_path, - STATE(1856), 1, + STATE(2006), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2017), 8, + ACTIONS(2343), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239917,7 +251036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2019), 49, + ACTIONS(2345), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239930,35 +251049,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + 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, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239967,20 +251084,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, - [20134] = 8, - ACTIONS(249), 1, + [20568] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1814), 1, - sym_cell_path, - STATE(1857), 1, + STATE(2007), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2021), 8, + ACTIONS(2351), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239989,7 +251103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2023), 49, + ACTIONS(2353), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240002,35 +251116,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + 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, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240039,20 +251151,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, - [20214] = 8, - ACTIONS(249), 1, + [20639] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1828), 1, - sym_cell_path, - STATE(1858), 1, + STATE(2008), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2043), 8, + ACTIONS(1913), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240061,7 +251170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2045), 49, + ACTIONS(1915), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240074,35 +251183,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + 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, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240111,20 +251218,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, - [20294] = 8, - ACTIONS(249), 1, + [20710] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1839), 1, - sym_cell_path, - STATE(1859), 1, + STATE(2009), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2047), 8, + ACTIONS(2355), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240133,7 +251237,7 @@ 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), 49, + ACTIONS(2357), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240146,35 +251250,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + 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, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240183,20 +251285,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, - [20374] = 8, - ACTIONS(249), 1, + [20781] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1842), 1, - sym_cell_path, - STATE(1860), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2010), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2051), 8, + STATE(2239), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240205,7 +251310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2053), 49, + ACTIONS(5212), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240218,35 +251323,30 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240255,20 +251355,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, - [20454] = 8, - ACTIONS(249), 1, + [20858] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1861), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2011), 1, sym_comment, - STATE(1882), 1, - sym_cell_path, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2055), 8, + STATE(2215), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240277,7 +251380,7 @@ 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), 49, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240290,35 +251393,30 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240327,20 +251425,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, - [20534] = 8, - ACTIONS(249), 1, + [20935] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1862), 1, + STATE(2012), 1, sym_comment, - STATE(1884), 1, - sym_cell_path, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2059), 8, + ACTIONS(2359), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240349,7 +251444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2061), 49, + ACTIONS(2361), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240362,35 +251457,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + 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, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240399,20 +251492,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, - [20614] = 8, - ACTIONS(249), 1, + [21006] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1693), 1, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2013), 1, + sym_comment, + STATE(2197), 1, sym_path, - STATE(1798), 1, + STATE(2513), 1, sym_cell_path, - STATE(1863), 1, - sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2067), 8, + ACTIONS(1948), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240421,7 +251519,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(2069), 49, + ACTIONS(1950), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240433,36 +251532,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240471,20 +251563,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, - [20694] = 8, - ACTIONS(249), 1, + [21085] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1693), 1, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2014), 1, + sym_comment, + STATE(2197), 1, sym_path, - STATE(1799), 1, + STATE(2521), 1, sym_cell_path, - STATE(1864), 1, - sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2083), 8, + ACTIONS(1952), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240493,7 +251590,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(2085), 49, + ACTIONS(1954), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240505,36 +251603,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240543,20 +251634,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, - [20774] = 8, - ACTIONS(249), 1, + [21164] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1801), 1, - sym_cell_path, - STATE(1865), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2015), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2087), 8, + STATE(2236), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240565,7 +251659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2089), 49, + ACTIONS(5212), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240578,35 +251672,30 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240615,20 +251704,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, - [20854] = 8, - ACTIONS(249), 1, + [21241] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1808), 1, - sym_cell_path, - STATE(1866), 1, + STATE(2016), 1, sym_comment, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2095), 8, + ACTIONS(1735), 15, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240637,8 +251725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2097), 49, - sym__newline, + ACTIONS(1737), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240649,36 +251736,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_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240687,21 +251771,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, - [20934] = 8, - ACTIONS(249), 1, + [21312] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1867), 1, - sym_comment, - STATE(1909), 1, + STATE(1987), 1, aux_sym_cell_path_repeat1, - STATE(2019), 1, - sym_cell_path, - STATE(2132), 1, + STATE(2017), 1, + sym_comment, + STATE(2197), 1, sym_path, - ACTIONS(2017), 9, - sym__newline, + STATE(2467), 1, + sym_cell_path, + ACTIONS(1933), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240710,7 +251798,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(2019), 48, + ACTIONS(1935), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240721,36 +251811,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240759,21 +251842,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, - [21014] = 8, - ACTIONS(249), 1, + [21391] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1868), 1, - sym_comment, - STATE(1909), 1, + STATE(1987), 1, aux_sym_cell_path_repeat1, - STATE(2020), 1, - sym_cell_path, - STATE(2132), 1, + STATE(2018), 1, + sym_comment, + STATE(2197), 1, sym_path, - ACTIONS(2021), 9, - sym__newline, + STATE(2462), 1, + sym_cell_path, + ACTIONS(1944), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240782,7 +251869,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(2023), 48, + ACTIONS(1946), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240793,36 +251882,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240831,21 +251913,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, - [21094] = 8, - ACTIONS(249), 1, + [21470] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1869), 1, - sym_comment, - STATE(1909), 1, + STATE(1987), 1, aux_sym_cell_path_repeat1, - STATE(2022), 1, - sym_cell_path, - STATE(2132), 1, + STATE(2019), 1, + sym_comment, + STATE(2197), 1, sym_path, - ACTIONS(2043), 9, - sym__newline, + STATE(2525), 1, + sym_cell_path, + ACTIONS(1960), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240854,7 +251940,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(2045), 48, + ACTIONS(1962), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240865,36 +251953,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240903,21 +251984,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, - [21174] = 8, - ACTIONS(249), 1, + [21549] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1870), 1, - sym_comment, - STATE(1909), 1, + STATE(1987), 1, aux_sym_cell_path_repeat1, - STATE(2023), 1, - sym_cell_path, - STATE(2132), 1, + STATE(2020), 1, + sym_comment, + STATE(2197), 1, sym_path, - ACTIONS(2047), 9, - sym__newline, + STATE(2495), 1, + sym_cell_path, + ACTIONS(2082), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240926,7 +252011,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(2049), 48, + ACTIONS(2084), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240937,36 +252024,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240975,21 +252055,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, - [21254] = 8, - ACTIONS(249), 1, + [21628] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1871), 1, + STATE(2021), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2024), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(2051), 9, - sym__newline, + ACTIONS(1010), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240998,7 +252076,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(2053), 48, + ACTIONS(1012), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241009,36 +252089,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241047,21 +252122,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, - [21334] = 8, - ACTIONS(249), 1, + [21699] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1872), 1, + STATE(2022), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2027), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(2055), 9, + ACTIONS(2125), 15, sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241070,7 +252143,7 @@ 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), 48, + ACTIONS(2127), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241081,36 +252154,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_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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241119,19 +252189,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, - [21414] = 4, - ACTIONS(249), 1, + [21770] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1873), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2023), 1, sym_comment, - 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, + STATE(2197), 1, + sym_path, + STATE(2450), 1, + sym_cell_path, + ACTIONS(1968), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241140,16 +252216,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(2456), 45, - sym_raw_string_begin, + ACTIONS(1970), 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, @@ -241161,24 +252229,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_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241187,21 +252260,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, - [21486] = 8, - ACTIONS(249), 1, + [21849] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1874), 1, + STATE(2024), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2029), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(2059), 9, - sym__newline, + ACTIONS(1014), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241210,7 +252281,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(2061), 48, + ACTIONS(1016), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241221,36 +252294,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241259,19 +252327,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, - [21566] = 4, - ACTIONS(249), 1, + [21920] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1875), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2025), 1, sym_comment, - ACTIONS(2565), 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(2251), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241280,16 +252352,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(2567), 45, - sym_raw_string_begin, - 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(5208), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241301,24 +252364,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241327,21 +252397,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, - [21638] = 8, - ACTIONS(249), 1, + [21997] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1876), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2026), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2031), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(2083), 9, - sym__newline, + STATE(2212), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241350,7 +252422,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(2085), 48, + ACTIONS(5204), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241362,35 +252435,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241399,21 +252467,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, - [21718] = 8, - ACTIONS(249), 1, + [22074] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1877), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2027), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2033), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(2087), 9, - sym__newline, + STATE(2254), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241422,7 +252492,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(2089), 48, + ACTIONS(5208), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241434,35 +252505,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241471,21 +252537,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, - [21798] = 8, - ACTIONS(249), 1, + [22151] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1878), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2028), 1, sym_comment, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2034), 1, - sym_cell_path, - STATE(2132), 1, - sym_path, - ACTIONS(2095), 9, - sym__newline, + STATE(2231), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241494,7 +252562,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(2097), 48, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241506,35 +252575,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241543,14 +252607,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, - [21878] = 4, - ACTIONS(249), 1, + [22228] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1879), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2029), 1, sym_comment, - ACTIONS(1628), 10, - sym__newline, - anon_sym_DASH, + STATE(2226), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241559,7 +252632,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(1640), 51, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241570,39 +252644,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241611,19 +252677,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, - [21950] = 4, - ACTIONS(249), 1, + [22305] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1880), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2030), 1, sym_comment, - ACTIONS(2113), 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(2232), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241632,16 +252702,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(2119), 45, - sym_raw_string_begin, - 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(5212), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241653,24 +252714,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241679,13 +252747,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, - [22022] = 4, - ACTIONS(249), 1, + [22382] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1881), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2031), 1, sym_comment, - ACTIONS(1090), 9, - anon_sym_DASH, + STATE(2256), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241694,7 +252772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1092), 52, + ACTIONS(5208), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241707,53 +252785,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [22094] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22459] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1882), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2032), 1, sym_comment, - ACTIONS(2087), 9, - anon_sym_DASH, + STATE(2224), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241762,7 +252842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2089), 52, + ACTIONS(5196), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241775,54 +252855,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [22166] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22536] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1883), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2033), 1, sym_comment, - ACTIONS(2418), 10, - sym__newline, - anon_sym_DASH, + STATE(2225), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241831,7 +252912,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(2420), 51, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241842,39 +252924,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241883,13 +252957,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, - [22238] = 4, - ACTIONS(249), 1, + [22613] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1884), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2034), 1, sym_comment, - ACTIONS(2470), 9, - anon_sym_DASH, + STATE(2127), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1769), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241898,7 +252984,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(2472), 52, + ACTIONS(1771), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241910,54 +252997,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_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, - [22310] = 4, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22692] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1885), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2035), 1, sym_comment, - ACTIONS(2454), 9, - anon_sym_DASH, + STATE(2193), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241966,7 +253053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 52, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241979,59 +253066,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [22382] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22769] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1886), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2036), 1, sym_comment, - ACTIONS(2222), 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(2278), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242040,16 +253123,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(2228), 45, - sym_raw_string_begin, - 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(5208), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242061,24 +253135,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242087,13 +253168,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, - [22454] = 4, - ACTIONS(249), 1, + [22846] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1887), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2037), 1, sym_comment, - ACTIONS(1909), 9, - anon_sym_DASH, + STATE(2276), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242102,7 +253193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1911), 52, + ACTIONS(5196), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242115,53 +253206,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [22526] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22923] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1888), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2038), 1, sym_comment, - ACTIONS(1062), 9, - sym__newline, + STATE(2124), 1, + sym_cell_path, + STATE(2197), 1, + sym_path, + ACTIONS(1735), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242170,7 +253265,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(1064), 52, + ACTIONS(1737), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242181,40 +253278,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_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242223,13 +253309,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, - [22598] = 4, - ACTIONS(249), 1, + [23002] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1889), 1, + STATE(2039), 1, sym_comment, - ACTIONS(2430), 9, - anon_sym_DASH, + ACTIONS(2504), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242238,7 +253328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2432), 52, + ACTIONS(2506), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242251,53 +253341,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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, - [22670] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23073] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1890), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2040), 1, sym_comment, - ACTIONS(2478), 9, - anon_sym_DASH, + STATE(2291), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242306,7 +253401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2480), 52, + ACTIONS(5196), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242319,53 +253414,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [22742] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23150] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1891), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2041), 1, sym_comment, - ACTIONS(1897), 9, - anon_sym_DASH, + STATE(2202), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242374,7 +253471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1899), 52, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242387,53 +253484,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [22814] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23227] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1892), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2042), 1, sym_comment, - ACTIONS(2547), 9, - anon_sym_DASH, + STATE(2295), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242442,7 +253541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2549), 52, + ACTIONS(5196), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242455,53 +253554,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [22886] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23304] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1893), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2043), 1, sym_comment, - ACTIONS(2539), 9, - anon_sym_DASH, + STATE(2203), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242510,7 +253611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2541), 52, + ACTIONS(5196), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242523,53 +253624,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [22958] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23381] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1894), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2044), 1, sym_comment, - ACTIONS(2543), 9, - anon_sym_DASH, + STATE(2213), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242578,7 +253681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2545), 52, + ACTIONS(5196), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242591,59 +253694,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [23030] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23458] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1895), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2045), 1, sym_comment, - ACTIONS(4953), 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(2258), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242652,15 +253751,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(4951), 45, - sym_raw_string_begin, - 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(5208), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242672,25 +253763,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242699,13 +253796,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23102] = 4, - ACTIONS(249), 1, + [23535] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1896), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(3619), 1, + anon_sym_LPAREN, + ACTIONS(5200), 1, + anon_sym_DOLLAR, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(2046), 1, sym_comment, - ACTIONS(2506), 9, - anon_sym_DASH, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3569), 1, + sym__val_number_decimal, + STATE(3597), 1, + sym_val_range, + STATE(3641), 1, + sym_expr_parenthesized, + STATE(3658), 1, + sym_val_variable, + STATE(3974), 1, + sym__expr_binary_expression, + STATE(7431), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2144), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [23676] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2047), 1, + sym_comment, + STATE(2222), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242714,7 +253923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2508), 52, + ACTIONS(5196), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242727,60 +253936,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_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, 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, - [23174] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23753] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1897), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2048), 1, sym_comment, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(2151), 1, - sym_path, - STATE(2547), 1, - sym_cell_path, - ACTIONS(2051), 8, + STATE(2260), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242789,8 +253993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2053), 48, - ts_builtin_sym_end, + ACTIONS(5208), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242802,34 +254005,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242838,20 +254038,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, - [23253] = 8, - ACTIONS(249), 1, + [23830] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1898), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2049), 1, sym_comment, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(2151), 1, - sym_path, - STATE(2560), 1, - sym_cell_path, - ACTIONS(2087), 8, + STATE(2286), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242860,8 +254063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2089), 48, - ts_builtin_sym_end, + ACTIONS(5196), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242873,34 +254075,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242909,19 +254108,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, - [23332] = 7, - ACTIONS(249), 1, + [23907] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1899), 1, + STATE(2050), 1, sym_comment, - STATE(2234), 1, + STATE(2263), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242930,7 +254133,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(5165), 48, + ACTIONS(5208), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242942,35 +254146,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242979,13 +254178,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, - [23409] = 4, - ACTIONS(249), 1, + [23984] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1900), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2051), 1, sym_comment, - ACTIONS(4987), 9, - sym__newline, + STATE(2199), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242994,7 +254203,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(4985), 51, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243006,53 +254216,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_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [23480] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24061] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1901), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2052), 1, sym_comment, - ACTIONS(2105), 9, - anon_sym_DOT_DOT2, + STATE(2197), 1, + sym_path, + STATE(2475), 1, + sym_cell_path, + ACTIONS(1972), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243061,7 +254275,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(2107), 51, + ACTIONS(1974), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243073,38 +254288,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243113,20 +254319,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, - [23551] = 8, - ACTIONS(249), 1, + [24140] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1902), 1, - sym_comment, - STATE(1966), 1, + STATE(1987), 1, aux_sym_cell_path_repeat1, - STATE(2151), 1, + STATE(2053), 1, + sym_comment, + STATE(2197), 1, sym_path, - STATE(2541), 1, + STATE(2483), 1, sym_cell_path, - ACTIONS(2017), 8, + ACTIONS(1984), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243135,7 +254346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2019), 48, + ACTIONS(1986), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -243148,34 +254359,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243184,20 +254390,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, - [23630] = 8, - ACTIONS(249), 1, + [24219] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1903), 1, - sym_comment, - STATE(1966), 1, + STATE(1987), 1, aux_sym_cell_path_repeat1, - STATE(2151), 1, + STATE(2054), 1, + sym_comment, + STATE(2197), 1, sym_path, - STATE(2542), 1, + STATE(2485), 1, sym_cell_path, - ACTIONS(2021), 8, + ACTIONS(1988), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243206,7 +254417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2023), 48, + ACTIONS(1990), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -243219,34 +254430,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243255,20 +254461,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, - [23709] = 8, - ACTIONS(249), 1, + [24298] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1904), 1, - sym_comment, - STATE(1966), 1, + STATE(1987), 1, aux_sym_cell_path_repeat1, - STATE(2151), 1, + STATE(2055), 1, + sym_comment, + STATE(2197), 1, sym_path, - STATE(2545), 1, + STATE(2489), 1, sym_cell_path, - ACTIONS(2043), 8, + ACTIONS(1992), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243277,7 +254488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2045), 48, + ACTIONS(1994), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -243290,34 +254501,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243326,19 +254532,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, - [23788] = 7, - ACTIONS(249), 1, + [24377] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1905), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2056), 1, sym_comment, - STATE(2227), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, - sym__newline, + STATE(2197), 1, + sym_path, + STATE(2491), 1, + sym_cell_path, + ACTIONS(1996), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243347,7 +254559,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(5165), 48, + ACTIONS(1998), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243358,36 +254572,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243396,15 +254603,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, - [23865] = 5, - ACTIONS(249), 1, + [24456] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5167), 1, - anon_sym_LBRACK2, - STATE(1906), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2057), 1, sym_comment, - ACTIONS(2355), 9, - sym__newline, + STATE(2197), 1, + sym_path, + STATE(2499), 1, + sym_cell_path, + ACTIONS(2000), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243413,7 +254630,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(2359), 50, + ACTIONS(2002), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243424,60 +254643,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_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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [23938] = 8, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24535] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1907), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2058), 1, sym_comment, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(2151), 1, - sym_path, - STATE(2546), 1, - sym_cell_path, - ACTIONS(2047), 8, + STATE(2265), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243486,8 +254699,7 @@ 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), 48, - ts_builtin_sym_end, + ACTIONS(5208), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243499,34 +254711,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243535,19 +254744,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, - [24017] = 7, - ACTIONS(249), 1, + [24612] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1908), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2059), 1, sym_comment, - STATE(2110), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, - sym__newline, + STATE(2197), 1, + sym_path, + STATE(2516), 1, + sym_cell_path, + ACTIONS(1976), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243556,7 +254771,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(5171), 48, + ACTIONS(1978), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243567,36 +254784,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243605,19 +254815,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, - [24094] = 7, - ACTIONS(249), 1, + [24691] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - STATE(1909), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2060), 1, sym_comment, - STATE(1956), 1, - aux_sym_cell_path_repeat1, - STATE(2132), 1, - sym_path, - ACTIONS(1027), 9, - sym__newline, + STATE(2204), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243626,7 +254840,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(1029), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243638,35 +254853,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243675,89 +254885,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24171] = 8, - ACTIONS(249), 1, + [24768] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5173), 1, - anon_sym_DOT, - STATE(1910), 1, - sym_comment, - STATE(2004), 1, - aux_sym_cell_path_repeat1, - STATE(2377), 1, - sym_path, - STATE(2432), 1, - sym_cell_path, - ACTIONS(1670), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1672), 50, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(3619), 1, + anon_sym_LPAREN, + ACTIONS(5200), 1, + anon_sym_DOLLAR, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(2061), 1, + sym_comment, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3569), 1, + sym__val_number_decimal, + STATE(3597), 1, + sym_val_range, + STATE(3641), 1, + sym_expr_parenthesized, + STATE(3658), 1, + sym_val_variable, + STATE(3974), 1, + sym__expr_binary_expression, + STATE(7431), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2144), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [24909] = 39, + ACTIONS(153), 1, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3319), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(3619), 1, + anon_sym_LPAREN, + ACTIONS(5200), 1, + anon_sym_DOLLAR, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(2062), 1, + sym_comment, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3569), 1, + sym__val_number_decimal, + STATE(3597), 1, + sym_val_range, + STATE(3641), 1, + sym_expr_parenthesized, + STATE(3658), 1, + sym_val_variable, + STATE(3974), 1, + sym__expr_binary_expression, + STATE(7526), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, sym__str_single_quotes, sym__str_back_ticks, - [24250] = 7, - ACTIONS(249), 1, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2144), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [25050] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1911), 1, + ACTIONS(1042), 1, + anon_sym_DOT_DOT2, + ACTIONS(1046), 1, + aux_sym_record_entry_token1, + STATE(2063), 1, sym_comment, - STATE(2098), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, + ACTIONS(1044), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5222), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5218), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -243767,7 +255117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5171), 48, + ACTIONS(5220), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243778,36 +255128,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_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_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243816,19 +255137,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, - [24327] = 7, - ACTIONS(249), 1, + ACTIONS(5224), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25131] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1912), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2064), 1, sym_comment, - STATE(2238), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, - sym__newline, + STATE(2197), 1, + sym_path, + STATE(2464), 1, + sym_cell_path, + ACTIONS(2004), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243837,7 +255188,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(5165), 48, + ACTIONS(2006), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243848,36 +255201,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243886,20 +255232,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, - [24404] = 8, - ACTIONS(249), 1, + [25210] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1099), 1, - anon_sym_DOT_DOT2, - ACTIONS(4691), 1, - aux_sym_record_entry_token1, - STATE(1913), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2065), 1, sym_comment, - ACTIONS(1101), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5139), 9, - sym__newline, + STATE(2197), 1, + sym_path, + STATE(2468), 1, + sym_cell_path, + ACTIONS(2068), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243908,7 +255259,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(5137), 19, + ACTIONS(2070), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243919,7 +255272,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_RBRACE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243928,49 +255303,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, - ACTIONS(5127), 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, - [24483] = 8, - ACTIONS(249), 1, + [25289] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, + ACTIONS(5216), 1, anon_sym_DOT, - STATE(1914), 1, - sym_comment, - STATE(1966), 1, + STATE(1987), 1, aux_sym_cell_path_repeat1, - STATE(2151), 1, + STATE(2066), 1, + sym_comment, + STATE(2197), 1, sym_path, - STATE(2522), 1, + STATE(2470), 1, sym_cell_path, - ACTIONS(2005), 8, + ACTIONS(2072), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243979,7 +255330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2007), 48, + ACTIONS(2074), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -243992,34 +255343,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244028,19 +255374,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, - [24562] = 7, - ACTIONS(249), 1, + [25368] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1915), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2067), 1, sym_comment, - STATE(2164), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + STATE(2197), 1, + sym_path, + STATE(2474), 1, + sym_cell_path, + ACTIONS(1907), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244049,7 +255401,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(5177), 48, + ACTIONS(1911), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244060,36 +255414,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244098,19 +255445,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, - [24639] = 7, - ACTIONS(249), 1, + [25447] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1916), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2068), 1, sym_comment, - STATE(2165), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + STATE(2197), 1, + sym_path, + STATE(2479), 1, + sym_cell_path, + ACTIONS(1913), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244119,7 +255472,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(5177), 48, + ACTIONS(1915), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244130,36 +255485,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244168,19 +255516,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, - [24716] = 7, - ACTIONS(249), 1, + [25526] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1917), 1, + STATE(2069), 1, sym_comment, - STATE(2169), 1, + STATE(2237), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244189,7 +255541,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(5177), 48, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244201,35 +255554,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244238,19 +255586,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, - [24793] = 7, - ACTIONS(249), 1, + [25603] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1918), 1, + STATE(2070), 1, sym_comment, - STATE(2170), 1, + STATE(2305), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244259,7 +255611,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(5177), 48, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244271,35 +255624,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244308,19 +255656,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, - [24870] = 7, - ACTIONS(249), 1, + [25680] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1919), 1, + STATE(2071), 1, sym_comment, - STATE(2171), 1, + STATE(2269), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244329,7 +255681,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(5177), 48, + ACTIONS(5208), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244341,35 +255694,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244378,19 +255726,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, - [24947] = 7, - ACTIONS(249), 1, + [25757] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1920), 1, + STATE(2072), 1, sym_comment, - STATE(2172), 1, + STATE(2186), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244399,7 +255751,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(5177), 48, + ACTIONS(5204), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244411,35 +255764,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244448,19 +255796,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, - [25024] = 7, - ACTIONS(249), 1, + [25834] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1921), 1, + STATE(2073), 1, sym_comment, - STATE(2176), 1, + STATE(2218), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244469,7 +255821,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(5177), 48, + ACTIONS(5204), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244481,35 +255834,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244518,17 +255866,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, - [25101] = 7, - ACTIONS(249), 1, + [25911] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1099), 1, + ACTIONS(1042), 1, anon_sym_DOT_DOT2, - STATE(1922), 1, + ACTIONS(4801), 1, + aux_sym_record_entry_token1, + STATE(2074), 1, sym_comment, - ACTIONS(1101), 2, + ACTIONS(1044), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5139), 8, + ACTIONS(5222), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5218), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244537,8 +255894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5137), 21, - sym__newline, + ACTIONS(5220), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244549,7 +255905,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_err_GT_GT, anon_sym_out_GT_GT, @@ -244559,48 +255914,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, - ACTIONS(5127), 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, - [25178] = 7, - ACTIONS(249), 1, + ACTIONS(5224), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25992] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1923), 1, + STATE(2075), 1, sym_comment, - STATE(2177), 1, + STATE(2233), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244609,7 +255963,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(5177), 48, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244621,35 +255976,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244658,19 +256008,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, - [25255] = 7, - ACTIONS(249), 1, + [26069] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1924), 1, + STATE(2076), 1, sym_comment, - STATE(2178), 1, + STATE(2273), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244679,7 +256033,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(5177), 48, + ACTIONS(5208), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244691,35 +256046,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244728,20 +256078,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, - [25332] = 8, - ACTIONS(249), 1, + [26146] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1925), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2077), 1, sym_comment, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(2151), 1, - sym_path, - STATE(2552), 1, - sym_cell_path, - ACTIONS(1897), 8, + STATE(2287), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244750,8 +256103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1899), 48, - ts_builtin_sym_end, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244763,34 +256115,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244799,20 +256148,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, - [25411] = 8, - ACTIONS(249), 1, + [26223] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1926), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2078), 1, sym_comment, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(2151), 1, - sym_path, - STATE(2528), 1, - sym_cell_path, - ACTIONS(2013), 8, + STATE(2159), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244821,8 +256173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2015), 48, - ts_builtin_sym_end, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244834,34 +256185,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244870,19 +256218,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, - [25490] = 7, - ACTIONS(249), 1, + [26300] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1927), 1, + STATE(2079), 1, sym_comment, - STATE(2179), 1, + STATE(2235), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244891,7 +256243,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(5177), 48, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244903,35 +256256,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244940,19 +256288,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, - [25567] = 7, - ACTIONS(249), 1, + [26377] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1928), 1, + STATE(2080), 1, sym_comment, - STATE(2180), 1, + STATE(2275), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244961,7 +256313,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(5177), 48, + ACTIONS(5208), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244973,35 +256326,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245010,17 +256358,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, - [25644] = 6, - ACTIONS(249), 1, + [26454] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1099), 1, - anon_sym_DOT_DOT2, - STATE(1929), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2081), 1, sym_comment, - ACTIONS(1101), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1090), 8, + STATE(2162), 1, + aux_sym_shebang_repeat1, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245029,7 +256383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1092), 49, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245042,35 +256396,30 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245079,103 +256428,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, - [25719] = 21, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5179), 1, - anon_sym_DASH_DASH, - STATE(1930), 1, - sym_comment, - STATE(2057), 1, - aux_sym_decl_def_repeat1, - STATE(2813), 1, - sym_long_flag, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6654), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [25824] = 7, - ACTIONS(249), 1, + [26531] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1931), 1, + STATE(2082), 1, sym_comment, - STATE(2181), 1, + STATE(2167), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245184,7 +256453,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(5177), 48, + ACTIONS(5204), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245196,35 +256466,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245233,13 +256498,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, - [25901] = 4, - ACTIONS(249), 1, + [26608] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1932), 1, + STATE(2083), 1, sym_comment, - ACTIONS(4997), 9, - sym__newline, + ACTIONS(2480), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245248,7 +256517,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(4995), 51, + ACTIONS(2482), 47, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245260,59 +256530,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_DASH2, + anon_sym_in2, anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [25972] = 7, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [26679] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1933), 1, + STATE(2084), 1, sym_comment, - STATE(2182), 1, + STATE(2227), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245321,7 +256590,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(5177), 48, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245333,35 +256603,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245370,19 +256635,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, - [26049] = 7, - ACTIONS(249), 1, + [26756] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1934), 1, + ACTIONS(5226), 1, + anon_sym_DOT, + STATE(2197), 1, + sym_path, + STATE(2085), 2, sym_comment, - STATE(2241), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, - sym__newline, + aux_sym_cell_path_repeat1, + ACTIONS(971), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245391,7 +256659,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(5165), 48, + ACTIONS(973), 44, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245402,36 +256672,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_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245440,19 +256704,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, - [26126] = 7, - ACTIONS(249), 1, + [26831] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1935), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2086), 1, sym_comment, - STATE(2184), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, + STATE(2197), 1, + sym_path, + STATE(2480), 1, + sym_cell_path, + ACTIONS(1925), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1927), 43, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [26910] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1042), 1, + anon_sym_DOT_DOT2, + STATE(2087), 1, + sym_comment, + ACTIONS(1044), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5222), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245461,7 +256800,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(5183), 48, + ACTIONS(5220), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245473,35 +256813,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, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_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_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245510,19 +256822,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, - [26203] = 7, - ACTIONS(249), 1, + ACTIONS(5224), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [26989] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(1936), 1, + STATE(2088), 1, sym_comment, - STATE(2112), 1, + STATE(2248), 1, aux_sym_shebang_repeat1, - STATE(7440), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245531,7 +256871,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(5171), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245543,35 +256884,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245580,20 +256916,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, - [26280] = 8, - ACTIONS(249), 1, + [27066] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1937), 1, + STATE(2089), 1, sym_comment, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(2151), 1, - sym_path, - STATE(2538), 1, - sym_cell_path, - ACTIONS(1909), 8, + ACTIONS(2403), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245602,8 +256935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1911), 48, - ts_builtin_sym_end, + ACTIONS(2405), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245615,34 +256947,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245651,282 +256982,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, - [26359] = 21, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5179), 1, - anon_sym_DASH_DASH, - STATE(1938), 1, - sym_comment, - STATE(2057), 1, - aux_sym_decl_def_repeat1, - STATE(2813), 1, - sym_long_flag, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6654), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [26464] = 39, - ACTIONS(163), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(3356), 1, + [27136] = 38, + ACTIONS(153), 1, anon_sym_LBRACK, - ACTIONS(3362), 1, + ACTIONS(181), 1, anon_sym_LBRACE, - ACTIONS(3364), 1, + ACTIONS(203), 1, aux_sym_expr_unary_token1, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5185), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(1939), 1, - sym_comment, - STATE(3556), 1, - sym__val_number_decimal, - STATE(3562), 1, - sym_val_range, - STATE(3594), 1, - sym_expr_parenthesized, - STATE(3649), 1, - sym_val_variable, - STATE(3879), 1, - sym__expr_binary_expression, - STATE(7584), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5147), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [26605] = 39, - ACTIONS(163), 1, - anon_sym_LPAREN, ACTIONS(229), 1, anon_sym_0b, ACTIONS(233), 1, sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, ACTIONS(239), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(241), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(251), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, sym_raw_string_begin, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, + ACTIONS(3359), 1, anon_sym_null, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, - anon_sym_LBRACE, - ACTIONS(3364), 1, - aux_sym_expr_unary_token1, - ACTIONS(3366), 1, + ACTIONS(3399), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, + ACTIONS(3401), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, + ACTIONS(3403), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, + ACTIONS(3405), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5185), 1, + ACTIONS(3619), 1, + anon_sym_LPAREN, + ACTIONS(5200), 1, + anon_sym_DOLLAR, + ACTIONS(5229), 1, anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, + STATE(1811), 1, sym__val_number, - STATE(1940), 1, + STATE(2090), 1, sym_comment, - STATE(3556), 1, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3560), 1, sym__val_number_decimal, - STATE(3562), 1, + STATE(3597), 1, sym_val_range, - STATE(3594), 1, + STATE(3683), 1, sym_expr_parenthesized, - STATE(3649), 1, + STATE(3684), 1, sym_val_variable, - STATE(3879), 1, + STATE(3978), 1, sym__expr_binary_expression, - STATE(7594), 1, + STATE(7984), 1, sym__expression, ACTIONS(231), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 2, + ACTIONS(433), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3278), 2, + ACTIONS(3361), 2, anon_sym_true, anon_sym_false, - ACTIONS(5147), 2, + ACTIONS(5231), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1540), 2, + STATE(1821), 2, sym__raw_str, sym__str_double_quotes, - STATE(1739), 3, + STATE(2144), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(227), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(427), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1881), 12, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -245939,19 +257082,17 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26746] = 7, - ACTIONS(249), 1, + [27274] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1941), 1, + STATE(2091), 1, sym_comment, - STATE(2187), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(994), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245960,7 +257101,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(5183), 48, + ACTIONS(996), 46, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245971,36 +257114,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_DASH2, + anon_sym_in2, 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_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246009,19 +257148,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, - [26823] = 7, - ACTIONS(249), 1, + [27344] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1942), 1, + ACTIONS(5233), 1, + anon_sym_QMARK2, + STATE(2092), 1, sym_comment, - STATE(2225), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(978), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246030,7 +257169,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(5165), 48, + ACTIONS(980), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246041,36 +257182,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246079,20 +257215,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, - [26900] = 8, - ACTIONS(249), 1, + [27416] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1099), 1, - anon_sym_DOT_DOT2, - ACTIONS(1103), 1, - aux_sym_record_entry_token1, - STATE(1943), 1, + STATE(2093), 1, sym_comment, - ACTIONS(1101), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5139), 9, - sym__newline, + ACTIONS(5222), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246101,7 +257234,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(5137), 19, + ACTIONS(5224), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246112,7 +257246,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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246121,150 +257281,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(5127), 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, - [26979] = 39, - ACTIONS(163), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, - anon_sym_LBRACE, - ACTIONS(3364), 1, - aux_sym_expr_unary_token1, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5185), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(1944), 1, - sym_comment, - STATE(3556), 1, - sym__val_number_decimal, - STATE(3562), 1, - sym_val_range, - STATE(3594), 1, - sym_expr_parenthesized, - STATE(3649), 1, - sym_val_variable, - STATE(3879), 1, - sym__expr_binary_expression, - STATE(7584), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5147), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [27120] = 7, - ACTIONS(249), 1, + [27486] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1945), 1, + ACTIONS(5235), 1, + anon_sym_QMARK2, + STATE(2094), 1, sym_comment, - STATE(2189), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(984), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246273,7 +257302,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(5183), 48, + ACTIONS(986), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246284,36 +257315,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246322,20 +257348,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, - [27197] = 8, - ACTIONS(249), 1, + [27558] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1946), 1, + STATE(2095), 1, sym_comment, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(2151), 1, - sym_path, - STATE(2550), 1, - sym_cell_path, - ACTIONS(2055), 8, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246344,8 +257367,7 @@ 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), 48, - ts_builtin_sym_end, + ACTIONS(5186), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246357,34 +257379,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246393,19 +257414,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, - [27276] = 7, - ACTIONS(249), 1, + [27628] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1947), 1, + STATE(2096), 1, sym_comment, - STATE(2240), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246414,7 +257433,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(5165), 48, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246426,35 +257446,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246463,20 +257480,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, - [27353] = 8, - ACTIONS(249), 1, + [27698] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1948), 1, + STATE(2097), 1, sym_comment, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(2151), 1, - sym_path, - STATE(2486), 1, - sym_cell_path, - ACTIONS(2095), 8, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246485,8 +257499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2097), 48, - ts_builtin_sym_end, + ACTIONS(5186), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246498,34 +257511,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246534,19 +257546,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, - [27432] = 7, - ACTIONS(249), 1, + [27768] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1949), 1, + STATE(2098), 1, sym_comment, - STATE(2192), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246555,7 +257565,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(5183), 48, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246567,35 +257578,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246604,19 +257612,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, - [27509] = 7, - ACTIONS(249), 1, + [27838] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1950), 1, + STATE(2099), 1, sym_comment, - STATE(2196), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246625,7 +257631,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(5183), 48, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246637,35 +257644,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246674,19 +257678,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, - [27586] = 7, - ACTIONS(249), 1, + [27908] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1951), 1, + STATE(2100), 1, sym_comment, - STATE(2235), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246695,7 +257697,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(5165), 48, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246707,35 +257710,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246744,19 +257744,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, - [27663] = 7, - ACTIONS(249), 1, + [27978] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1952), 1, + STATE(2101), 1, sym_comment, - STATE(2236), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246765,7 +257763,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(5165), 48, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246777,35 +257776,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246814,19 +257810,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, - [27740] = 7, - ACTIONS(249), 1, + [28048] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1953), 1, + STATE(2102), 1, sym_comment, - STATE(2198), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246835,7 +257829,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(5183), 48, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246847,35 +257842,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246884,19 +257876,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, - [27817] = 7, - ACTIONS(249), 1, + [28118] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1954), 1, + STATE(2103), 1, sym_comment, - STATE(2101), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5239), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246905,7 +257895,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(5171), 48, + ACTIONS(5237), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246917,35 +257908,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246954,19 +257942,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, - [27894] = 7, - ACTIONS(249), 1, + [28188] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1955), 1, + STATE(2104), 1, sym_comment, - STATE(2114), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246975,7 +257961,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(5171), 48, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246987,35 +257974,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247024,18 +258008,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, - [27971] = 6, - ACTIONS(249), 1, + [28258] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5187), 1, - anon_sym_DOT, - STATE(2132), 1, - sym_path, - STATE(1956), 2, + STATE(2105), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247044,7 +258027,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(1033), 48, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247056,35 +258040,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247093,103 +258074,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, - [28046] = 21, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3068), 1, - anon_sym_DQUOTE, - ACTIONS(3074), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5198), 1, - sym__newline, - ACTIONS(5200), 1, - anon_sym_RBRACK, - STATE(1957), 1, - sym_comment, - STATE(2037), 1, - aux_sym_shebang_repeat1, - STATE(2396), 1, - aux_sym_command_list_repeat1, - STATE(7383), 1, - sym__command_name, - STATE(7403), 1, - sym__val_number_decimal, - STATE(7604), 1, - sym_cmd_identifier, - STATE(7605), 1, - sym_val_string, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3070), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5521), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5190), 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(5194), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5192), 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, - [28151] = 7, - ACTIONS(249), 1, + [28328] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1958), 1, + STATE(2106), 1, sym_comment, - STATE(2116), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247198,7 +258093,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(5171), 48, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247210,35 +258106,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247247,19 +258140,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, - [28228] = 7, - ACTIONS(249), 1, + [28398] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1959), 1, + STATE(2107), 1, sym_comment, - STATE(2228), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247268,7 +258159,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(5165), 48, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247280,35 +258172,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247317,19 +258206,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, - [28305] = 7, - ACTIONS(249), 1, + [28468] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1960), 1, + STATE(2108), 1, sym_comment, - STATE(2103), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247338,7 +258225,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(5171), 48, + ACTIONS(5186), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247350,35 +258238,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247387,19 +258272,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, - [28382] = 7, - ACTIONS(249), 1, + [28538] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1961), 1, + STATE(2109), 1, sym_comment, - STATE(2118), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(998), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247408,7 +258291,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(5171), 48, + ACTIONS(1000), 46, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247419,36 +258304,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_DASH2, + anon_sym_in2, 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_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247457,20 +258338,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, - [28459] = 8, - ACTIONS(249), 1, + [28608] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1962), 1, + STATE(2110), 1, sym_comment, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(2009), 1, - sym_cell_path, - STATE(2151), 1, - sym_path, - ACTIONS(1664), 8, + ACTIONS(5243), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247479,8 +258357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1668), 48, - ts_builtin_sym_end, + ACTIONS(5241), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247492,34 +258369,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247528,18 +258404,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, - [28538] = 7, - ACTIONS(249), 1, + [28678] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1963), 1, + ACTIONS(1042), 1, + anon_sym_DOT_DOT2, + ACTIONS(5245), 1, + sym__newline, + STATE(2111), 1, sym_comment, - STATE(1964), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1027), 8, + ACTIONS(1044), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5250), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5254), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247548,8 +258431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1029), 49, - sym__newline, + ACTIONS(5248), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247561,35 +258443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247598,17 +258451,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, - [28615] = 6, - ACTIONS(249), 1, + ACTIONS(5252), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28758] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5202), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1964), 2, + STATE(2112), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 8, + ACTIONS(1030), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247617,7 +258494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1033), 49, + ACTIONS(1032), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247630,35 +258507,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_DASH2, + anon_sym_in2, + 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_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247667,20 +258541,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, - [28690] = 8, - ACTIONS(249), 1, + [28828] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1965), 1, + ACTIONS(4819), 1, + anon_sym_DOT_DOT2, + STATE(2113), 1, sym_comment, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(2151), 1, - sym_path, - STATE(2526), 1, - sym_cell_path, - ACTIONS(2009), 8, + ACTIONS(4821), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1030), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247689,7 +258565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2011), 48, + ACTIONS(1032), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -247702,34 +258578,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247738,18 +258609,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, - [28769] = 7, - ACTIONS(249), 1, + [28902] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1966), 1, + STATE(2114), 1, sym_comment, - STATE(1980), 1, - aux_sym_cell_path_repeat1, - STATE(2151), 1, - sym_path, - ACTIONS(1027), 8, + ACTIONS(1002), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247758,7 +258628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1029), 49, + ACTIONS(1004), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -247771,35 +258641,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_DASH2, + anon_sym_in2, 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_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247808,121 +258675,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, - [28846] = 39, - ACTIONS(163), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, + [28972] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, + STATE(2115), 1, + sym_comment, + ACTIONS(2094), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2096), 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_DASH2, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3364), 1, - aux_sym_expr_unary_token1, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5185), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(1967), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [29042] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2116), 1, sym_comment, - STATE(3556), 1, - sym__val_number_decimal, - STATE(3562), 1, - sym_val_range, - STATE(3594), 1, - sym_expr_parenthesized, - STATE(3649), 1, - sym_val_variable, - STATE(3879), 1, - sym__expr_binary_expression, - STATE(7594), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5147), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [28987] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1968), 1, - sym_comment, - STATE(2226), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(2090), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247931,7 +258760,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(5165), 48, + ACTIONS(2092), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247943,35 +258773,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247980,19 +258807,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, - [29064] = 7, - ACTIONS(249), 1, + [29112] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1969), 1, + STATE(2117), 1, sym_comment, - STATE(2230), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(2383), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248001,7 +258826,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(5165), 48, + ACTIONS(2385), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248013,35 +258839,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248050,19 +258873,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, - [29141] = 7, - ACTIONS(249), 1, + [29182] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1970), 1, + STATE(2118), 1, sym_comment, - STATE(2106), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(2500), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248071,7 +258892,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(5171), 48, + ACTIONS(2502), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248083,35 +258905,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248120,20 +258939,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, - [29218] = 8, - ACTIONS(249), 1, + [29252] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(1971), 1, + STATE(2119), 1, sym_comment, - STATE(2151), 1, - sym_path, - STATE(2472), 1, - sym_cell_path, - ACTIONS(1993), 8, + ACTIONS(2395), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248142,77 +258958,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(1995), 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, - [29297] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1972), 1, - sym_comment, - STATE(2233), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, + ACTIONS(2397), 46, 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(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248224,35 +258971,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248261,20 +259005,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, - [29374] = 8, - ACTIONS(249), 1, + [29322] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(1973), 1, + STATE(2120), 1, sym_comment, - STATE(2151), 1, - sym_path, - STATE(2463), 1, - sym_cell_path, - ACTIONS(1893), 8, + ACTIONS(2399), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248283,77 +259024,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(1895), 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, - [29453] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1974), 1, - sym_comment, - STATE(2200), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, + ACTIONS(2401), 46, 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), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248365,35 +259037,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248402,90 +259071,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, - [29530] = 8, - ACTIONS(249), 1, + [29392] = 38, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5173), 1, - anon_sym_DOT, - STATE(1975), 1, - sym_comment, - STATE(2004), 1, - aux_sym_cell_path_repeat1, - STATE(2377), 1, - sym_path, - STATE(2536), 1, - sym_cell_path, - ACTIONS(1664), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1668), 50, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, + ACTIONS(3439), 1, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, + ACTIONS(3445), 1, + anon_sym_DASH2, + ACTIONS(3447), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + aux_sym_expr_unary_token1, + ACTIONS(3459), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3461), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3463), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3465), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3471), 1, + anon_sym_0b, + ACTIONS(3477), 1, anon_sym_DQUOTE, + ACTIONS(3481), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3483), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3487), 1, + sym_raw_string_begin, + ACTIONS(4996), 1, + anon_sym_LPAREN, + ACTIONS(4998), 1, + anon_sym_DOLLAR, + ACTIONS(5004), 1, + anon_sym_DOT_DOT, + ACTIONS(5008), 1, + anon_sym_null, + ACTIONS(5012), 1, + sym_val_date, + STATE(2121), 1, + sym_comment, + STATE(3486), 1, + sym__inter_single_quotes, + STATE(3489), 1, + sym__inter_double_quotes, + STATE(3492), 1, + sym__val_number, + STATE(3514), 1, + sym__val_number_decimal, + STATE(3594), 1, + sym_val_variable, + STATE(3597), 1, + sym_val_range, + STATE(3599), 1, + sym_expr_parenthesized, + STATE(3850), 1, + sym__expr_unary_minus, + STATE(3977), 1, + sym__expr_binary_expression, + STATE(5656), 1, + sym__expression, + ACTIONS(3473), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3479), 2, sym__str_single_quotes, sym__str_back_ticks, - [29609] = 7, - ACTIONS(249), 1, + ACTIONS(5006), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5010), 2, + anon_sym_true, + anon_sym_false, + STATE(3584), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3905), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3467), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3532), 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, + [29530] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1976), 1, + ACTIONS(4819), 1, + anon_sym_DOT_DOT2, + STATE(2122), 1, sym_comment, - STATE(2108), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(4821), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5222), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248494,7 +259196,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(5171), 48, + ACTIONS(5220), 20, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248505,36 +259209,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_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, @@ -248543,19 +259217,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, - [29686] = 7, - ACTIONS(249), 1, + ACTIONS(5224), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [29608] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1977), 1, + STATE(2123), 1, sym_comment, - STATE(2094), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(2407), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248564,7 +259260,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(5171), 48, + ACTIONS(2409), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248576,35 +259273,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248613,20 +259307,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, - [29763] = 8, - ACTIONS(249), 1, + [29678] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(1978), 1, + STATE(2124), 1, sym_comment, - STATE(2006), 1, - sym_cell_path, - STATE(2151), 1, - sym_path, - ACTIONS(1670), 8, + ACTIONS(2125), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248635,7 +259327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1672), 48, + ACTIONS(2127), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -248648,34 +259340,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248684,28 +259373,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, - [29842] = 7, - ACTIONS(249), 1, + [29748] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(2216), 1, anon_sym_LPAREN2, - STATE(1979), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(2125), 1, sym_comment, - STATE(2203), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, + ACTIONS(2224), 13, 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), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248717,35 +259395,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_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_RBRACE, + ACTIONS(2222), 44, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -248754,17 +259441,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29919] = 6, - ACTIONS(249), 1, + [29822] = 38, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5205), 1, - anon_sym_DOT, - STATE(2151), 1, - sym_path, - STATE(1980), 2, + ACTIONS(3439), 1, + anon_sym_LBRACK, + ACTIONS(3445), 1, + anon_sym_DASH2, + ACTIONS(3447), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + aux_sym_expr_unary_token1, + ACTIONS(3459), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3461), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3463), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3465), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3471), 1, + anon_sym_0b, + ACTIONS(3477), 1, + anon_sym_DQUOTE, + ACTIONS(3481), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3483), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3487), 1, + sym_raw_string_begin, + ACTIONS(4996), 1, + anon_sym_LPAREN, + ACTIONS(4998), 1, + anon_sym_DOLLAR, + ACTIONS(5004), 1, + anon_sym_DOT_DOT, + ACTIONS(5008), 1, + anon_sym_null, + ACTIONS(5012), 1, + sym_val_date, + STATE(2126), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 8, + STATE(3486), 1, + sym__inter_single_quotes, + STATE(3489), 1, + sym__inter_double_quotes, + STATE(3492), 1, + sym__val_number, + STATE(3514), 1, + sym__val_number_decimal, + STATE(3594), 1, + sym_val_variable, + STATE(3597), 1, + sym_val_range, + STATE(3599), 1, + sym_expr_parenthesized, + STATE(3850), 1, + sym__expr_unary_minus, + STATE(3977), 1, + sym__expr_binary_expression, + STATE(5646), 1, + sym__expression, + ACTIONS(3473), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3479), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5006), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5010), 2, + anon_sym_true, + anon_sym_false, + STATE(3584), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3905), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3467), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3532), 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, + [29960] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2127), 1, + sym_comment, + ACTIONS(1735), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248773,7 +259561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1033), 49, + ACTIONS(1737), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -248786,35 +259574,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248823,19 +259607,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, - [29994] = 7, - ACTIONS(249), 1, + [30030] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1981), 1, + STATE(2128), 1, sym_comment, - STATE(2088), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(1018), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248844,7 +259627,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(5171), 48, + ACTIONS(1020), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248855,36 +259640,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248893,20 +259673,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, - [30071] = 8, - ACTIONS(249), 1, + [30100] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(1982), 1, + STATE(2129), 1, sym_comment, - STATE(2151), 1, - sym_path, - STATE(2453), 1, - sym_cell_path, - ACTIONS(1929), 8, + ACTIONS(2248), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248915,8 +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(1931), 48, - ts_builtin_sym_end, + ACTIONS(2250), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248928,34 +259704,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248964,103 +259739,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, - [30150] = 21, - ACTIONS(249), 1, + [30170] = 38, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(3439), 1, + anon_sym_LBRACK, + ACTIONS(3445), 1, + anon_sym_DASH2, + ACTIONS(3447), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + aux_sym_expr_unary_token1, + ACTIONS(3459), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3461), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3463), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(3465), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3068), 1, + ACTIONS(3471), 1, + anon_sym_0b, + ACTIONS(3477), 1, anon_sym_DQUOTE, - ACTIONS(3074), 1, + ACTIONS(3481), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3483), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3487), 1, sym_raw_string_begin, - ACTIONS(5196), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5198), 1, - sym__newline, - ACTIONS(5208), 1, - anon_sym_RBRACK, - STATE(1983), 1, + ACTIONS(4996), 1, + anon_sym_LPAREN, + ACTIONS(4998), 1, + anon_sym_DOLLAR, + ACTIONS(5004), 1, + anon_sym_DOT_DOT, + ACTIONS(5008), 1, + anon_sym_null, + ACTIONS(5012), 1, + sym_val_date, + STATE(2130), 1, sym_comment, - STATE(2015), 1, - aux_sym_shebang_repeat1, - STATE(2383), 1, - aux_sym_command_list_repeat1, - STATE(6835), 1, - sym__command_name, - STATE(7403), 1, + STATE(3486), 1, + sym__inter_single_quotes, + STATE(3489), 1, + sym__inter_double_quotes, + STATE(3492), 1, + sym__val_number, + STATE(3514), 1, sym__val_number_decimal, - STATE(7604), 1, - sym_cmd_identifier, - STATE(7605), 1, - sym_val_string, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3070), 2, + STATE(3594), 1, + sym_val_variable, + STATE(3597), 1, + sym_val_range, + STATE(3599), 1, + sym_expr_parenthesized, + STATE(3850), 1, + sym__expr_unary_minus, + STATE(3977), 1, + sym__expr_binary_expression, + STATE(5626), 1, + sym__expression, + ACTIONS(3473), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3479), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5521), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5190), 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(5194), 5, + ACTIONS(5006), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5010), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5192), 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, - [30255] = 7, - ACTIONS(249), 1, + STATE(3584), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3905), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3467), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3532), 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, + [30308] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1984), 1, + STATE(2131), 1, sym_comment, - STATE(2205), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(2347), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249069,7 +259858,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(5183), 48, + ACTIONS(2349), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249081,35 +259871,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249118,19 +259905,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, - [30332] = 7, - ACTIONS(249), 1, + [30378] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1985), 1, + STATE(2132), 1, sym_comment, - STATE(2207), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(2347), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249139,7 +259924,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(5183), 48, + ACTIONS(2349), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249151,35 +259937,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249188,19 +259971,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, - [30409] = 7, - ACTIONS(249), 1, + [30448] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1986), 1, + STATE(2133), 1, sym_comment, - STATE(2209), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(2492), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249209,7 +259990,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(5183), 48, + ACTIONS(2494), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249221,35 +260003,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249258,20 +260037,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, - [30486] = 8, - ACTIONS(249), 1, + [30518] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(1987), 1, + STATE(2134), 1, sym_comment, - STATE(2151), 1, - sym_path, - STATE(2460), 1, - sym_cell_path, - ACTIONS(1901), 8, + ACTIONS(2508), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249280,8 +260056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1903), 48, - ts_builtin_sym_end, + ACTIONS(2510), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249293,34 +260068,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249329,19 +260103,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, - [30565] = 7, - ACTIONS(249), 1, + [30588] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1988), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3619), 1, + anon_sym_LPAREN, + ACTIONS(5200), 1, + anon_sym_DOLLAR, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2135), 1, sym_comment, - STATE(2211), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, - sym__newline, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3569), 1, + sym__val_number_decimal, + STATE(3597), 1, + sym_val_range, + STATE(3641), 1, + sym_expr_parenthesized, + STATE(3658), 1, + sym_val_variable, + STATE(3974), 1, + sym__expr_binary_expression, + STATE(7530), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2144), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [30726] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2136), 1, + sym_comment, + ACTIONS(2464), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249350,7 +260222,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(5183), 48, + ACTIONS(2466), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249362,35 +260235,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249399,19 +260269,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, - [30642] = 7, - ACTIONS(249), 1, + [30796] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1989), 1, + STATE(2137), 1, sym_comment, - STATE(2213), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(2468), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249420,7 +260288,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(5183), 48, + ACTIONS(2470), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249432,35 +260301,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_DASH2, + anon_sym_in2, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249469,30 +260335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30719] = 8, - ACTIONS(249), 1, + [30866] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(1990), 1, + STATE(2138), 1, sym_comment, - STATE(2151), 1, - sym_path, - STATE(2519), 1, - sym_cell_path, - ACTIONS(2001), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2003), 48, - ts_builtin_sym_end, + ACTIONS(2250), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249504,55 +260352,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_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, - [30798] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4433), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LPAREN2, - STATE(1991), 1, - sym_comment, - STATE(2237), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(2248), 45, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249561,47 +260392,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(5165), 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, @@ -249610,20 +260400,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, - [30875] = 8, - ACTIONS(249), 1, + aux_sym_unquoted_token4, + [30936] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(1992), 1, + STATE(2139), 1, sym_comment, - STATE(2151), 1, - sym_path, - STATE(2477), 1, - sym_cell_path, - ACTIONS(1997), 8, + ACTIONS(990), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249632,7 +260420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1999), 48, + ACTIONS(992), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -249645,34 +260433,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249681,226 +260467,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30954] = 8, - ACTIONS(249), 1, + [31006] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5173), 1, - anon_sym_DOT, - STATE(1993), 1, - sym_comment, - STATE(2004), 1, - aux_sym_cell_path_repeat1, - STATE(2377), 1, - sym_path, - STATE(2450), 1, - sym_cell_path, - 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), 50, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3619), 1, + anon_sym_LPAREN, + ACTIONS(5200), 1, + anon_sym_DOLLAR, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2140), 1, + sym_comment, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3569), 1, + sym__val_number_decimal, + STATE(3597), 1, + sym_val_range, + STATE(3641), 1, + sym_expr_parenthesized, + STATE(3658), 1, + sym_val_variable, + STATE(3974), 1, + sym__expr_binary_expression, + STATE(7527), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2144), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [31144] = 38, + ACTIONS(153), 1, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3319), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3619), 1, + anon_sym_LPAREN, + ACTIONS(5200), 1, + anon_sym_DOLLAR, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2141), 1, + sym_comment, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3569), 1, + sym__val_number_decimal, + STATE(3597), 1, + sym_val_range, + STATE(3641), 1, + sym_expr_parenthesized, + STATE(3658), 1, + sym_val_variable, + STATE(3974), 1, + sym__expr_binary_expression, + STATE(7431), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, sym__str_single_quotes, sym__str_back_ticks, - [31033] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(1994), 1, - sym_comment, - STATE(2151), 1, - sym_path, - STATE(2557), 1, - sym_cell_path, - ACTIONS(2059), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2061), 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, - [31112] = 8, - ACTIONS(249), 1, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2144), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [31282] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(1995), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3619), 1, + anon_sym_LPAREN, + ACTIONS(5200), 1, + anon_sym_DOLLAR, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2142), 1, sym_comment, - STATE(2151), 1, - sym_path, - STATE(2558), 1, - sym_cell_path, - ACTIONS(2067), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2069), 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, - [31191] = 4, - ACTIONS(249), 1, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3569), 1, + sym__val_number_decimal, + STATE(3597), 1, + sym_val_range, + STATE(3641), 1, + sym_expr_parenthesized, + STATE(3658), 1, + sym_val_variable, + STATE(3974), 1, + sym__expr_binary_expression, + STATE(7526), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2144), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [31420] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1996), 1, + STATE(2143), 1, sym_comment, - ACTIONS(1670), 9, - anon_sym_DOT_DOT2, + ACTIONS(2206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249909,7 +260786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1672), 51, + ACTIONS(2210), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249922,37 +260799,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_DASH2, + anon_sym_in2, + 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_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249961,19 +260833,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, - [31262] = 7, - ACTIONS(249), 1, + [31490] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(1997), 1, + STATE(2144), 1, sym_comment, - STATE(2091), 1, - aux_sym_shebang_repeat1, - STATE(7440), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5222), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249982,7 +260853,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(5171), 48, + ACTIONS(5220), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249995,34 +260867,8 @@ static const uint16_t ts_small_parse_table[] = { 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_RBRACE, + anon_sym_EQ_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250031,20 +260877,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, - [31339] = 8, - ACTIONS(249), 1, + ACTIONS(5224), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [31564] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(1998), 1, + STATE(2145), 1, sym_comment, - STATE(2151), 1, - sym_path, - STATE(2559), 1, - sym_cell_path, - ACTIONS(2083), 8, + ACTIONS(5258), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250053,8 +260920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2085), 48, - ts_builtin_sym_end, + ACTIONS(5256), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250066,34 +260932,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250102,376 +260967,494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31418] = 20, - ACTIONS(249), 1, + [31634] = 38, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(3439), 1, + anon_sym_LBRACK, + ACTIONS(3445), 1, + anon_sym_DASH2, + ACTIONS(3447), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + aux_sym_expr_unary_token1, + ACTIONS(3459), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3461), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3463), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(3465), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, + ACTIONS(3471), 1, + anon_sym_0b, + ACTIONS(3477), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, + ACTIONS(3481), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3483), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3487), 1, sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5179), 1, - anon_sym_DASH_DASH, - STATE(1999), 1, + ACTIONS(4996), 1, + anon_sym_LPAREN, + ACTIONS(4998), 1, + anon_sym_DOLLAR, + ACTIONS(5004), 1, + anon_sym_DOT_DOT, + ACTIONS(5008), 1, + anon_sym_null, + ACTIONS(5012), 1, + sym_val_date, + STATE(2146), 1, sym_comment, - STATE(2685), 1, - aux_sym_decl_def_repeat1, - STATE(2813), 1, - sym_long_flag, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6657), 1, - sym__command_name, - STATE(7312), 1, + STATE(3486), 1, + sym__inter_single_quotes, + STATE(3489), 1, + sym__inter_double_quotes, + STATE(3492), 1, + sym__val_number, + STATE(3514), 1, sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + STATE(3594), 1, + sym_val_variable, + STATE(3597), 1, + sym_val_range, + STATE(3599), 1, + sym_expr_parenthesized, + STATE(3850), 1, + sym__expr_unary_minus, + STATE(3977), 1, + sym__expr_binary_expression, + STATE(5715), 1, + sym__expression, + ACTIONS(3473), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3479), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + ACTIONS(5006), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5010), 2, + anon_sym_true, + anon_sym_false, + STATE(3584), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, + STATE(3905), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3467), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3532), 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, + [31772] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3439), 1, + anon_sym_LBRACK, + ACTIONS(3445), 1, + anon_sym_DASH2, + ACTIONS(3447), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + aux_sym_expr_unary_token1, + ACTIONS(3459), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3461), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3463), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3465), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3471), 1, + anon_sym_0b, + ACTIONS(3477), 1, + anon_sym_DQUOTE, + ACTIONS(3481), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3483), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3487), 1, + sym_raw_string_begin, + ACTIONS(4996), 1, + anon_sym_LPAREN, + ACTIONS(4998), 1, + anon_sym_DOLLAR, + ACTIONS(5004), 1, + anon_sym_DOT_DOT, + ACTIONS(5008), 1, + anon_sym_null, + ACTIONS(5012), 1, + sym_val_date, + STATE(2147), 1, + sym_comment, + STATE(3486), 1, + sym__inter_single_quotes, + STATE(3489), 1, + sym__inter_double_quotes, + STATE(3492), 1, + sym__val_number, + STATE(3514), 1, + sym__val_number_decimal, + STATE(3594), 1, + sym_val_variable, + STATE(3597), 1, + sym_val_range, + STATE(3599), 1, + sym_expr_parenthesized, + STATE(3850), 1, + sym__expr_unary_minus, + STATE(3977), 1, + sym__expr_binary_expression, + STATE(5709), 1, + sym__expression, + ACTIONS(3473), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3479), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5006), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5010), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [31520] = 4, - ACTIONS(249), 1, + STATE(3584), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3905), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3467), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3532), 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, + [31910] = 38, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2000), 1, - sym_comment, - ACTIONS(2543), 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(2545), 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, + ACTIONS(3439), 1, + anon_sym_LBRACK, + ACTIONS(3445), 1, + anon_sym_DASH2, + ACTIONS(3447), 1, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31590] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2001), 1, + ACTIONS(3451), 1, + aux_sym_expr_unary_token1, + ACTIONS(3459), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3461), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3463), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3465), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3471), 1, + anon_sym_0b, + ACTIONS(3477), 1, + anon_sym_DQUOTE, + ACTIONS(3481), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3483), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3487), 1, + sym_raw_string_begin, + ACTIONS(4996), 1, + anon_sym_LPAREN, + ACTIONS(4998), 1, + anon_sym_DOLLAR, + ACTIONS(5004), 1, + anon_sym_DOT_DOT, + ACTIONS(5008), 1, + anon_sym_null, + ACTIONS(5012), 1, + sym_val_date, + STATE(2148), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4814), 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(4812), 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, - [31664] = 4, - ACTIONS(249), 1, + STATE(3486), 1, + sym__inter_single_quotes, + STATE(3489), 1, + sym__inter_double_quotes, + STATE(3492), 1, + sym__val_number, + STATE(3514), 1, + sym__val_number_decimal, + STATE(3594), 1, + sym_val_variable, + STATE(3597), 1, + sym_val_range, + STATE(3599), 1, + sym_expr_parenthesized, + STATE(3850), 1, + sym__expr_unary_minus, + STATE(3977), 1, + sym__expr_binary_expression, + STATE(5726), 1, + sym__expression, + ACTIONS(3473), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3479), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5006), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5010), 2, + anon_sym_true, + anon_sym_false, + STATE(3584), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3905), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3467), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3532), 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, + [32048] = 38, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2002), 1, - sym_comment, - ACTIONS(2535), 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(2537), 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, + ACTIONS(3439), 1, + anon_sym_LBRACK, + ACTIONS(3445), 1, + anon_sym_DASH2, + ACTIONS(3447), 1, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31734] = 38, - ACTIONS(219), 1, + ACTIONS(3451), 1, + aux_sym_expr_unary_token1, + ACTIONS(3459), 1, aux_sym__val_number_decimal_token1, - ACTIONS(221), 1, + ACTIONS(3461), 1, aux_sym__val_number_decimal_token2, - ACTIONS(223), 1, + ACTIONS(3463), 1, aux_sym__val_number_decimal_token3, - ACTIONS(225), 1, + ACTIONS(3465), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3471), 1, + anon_sym_0b, + ACTIONS(3477), 1, + anon_sym_DQUOTE, + ACTIONS(3481), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3483), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3487), 1, + sym_raw_string_begin, + ACTIONS(4996), 1, + anon_sym_LPAREN, + ACTIONS(4998), 1, + anon_sym_DOLLAR, + ACTIONS(5004), 1, + anon_sym_DOT_DOT, + ACTIONS(5008), 1, + anon_sym_null, + ACTIONS(5012), 1, + sym_val_date, + STATE(2149), 1, + sym_comment, + STATE(3486), 1, + sym__inter_single_quotes, + STATE(3489), 1, + sym__inter_double_quotes, + STATE(3492), 1, + sym__val_number, + STATE(3514), 1, + sym__val_number_decimal, + STATE(3594), 1, + sym_val_variable, + STATE(3597), 1, + sym_val_range, + STATE(3599), 1, + sym_expr_parenthesized, + STATE(3850), 1, + sym__expr_unary_minus, + STATE(3977), 1, + sym__expr_binary_expression, + STATE(5620), 1, + sym__expression, + ACTIONS(3473), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3479), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5006), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5010), 2, + anon_sym_true, + anon_sym_false, + STATE(3584), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3905), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3467), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3532), 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, + [32186] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, ACTIONS(229), 1, anon_sym_0b, ACTIONS(233), 1, sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, ACTIONS(239), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(241), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(251), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, sym_raw_string_begin, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, + ACTIONS(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, anon_sym_null, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - aux_sym_expr_unary_token1, - ACTIONS(4973), 1, + ACTIONS(3619), 1, anon_sym_LPAREN, - ACTIONS(4975), 1, + ACTIONS(5200), 1, anon_sym_DOLLAR, - ACTIONS(5210), 1, + ACTIONS(5202), 1, anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, + STATE(1811), 1, + sym__val_number, + STATE(2131), 1, sym__inter_single_quotes, - STATE(1841), 1, + STATE(2132), 1, sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(2003), 1, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(2150), 1, sym_comment, - STATE(3547), 1, + STATE(3569), 1, sym__val_number_decimal, - STATE(3562), 1, + STATE(3597), 1, sym_val_range, - STATE(3586), 1, + STATE(3641), 1, sym_expr_parenthesized, - STATE(3656), 1, + STATE(3658), 1, sym_val_variable, - STATE(3894), 1, + STATE(3974), 1, sym__expr_binary_expression, - STATE(7620), 1, + STATE(7468), 1, sym__expression, ACTIONS(231), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 2, + ACTIONS(433), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3278), 2, + ACTIONS(3361), 2, anon_sym_true, anon_sym_false, - ACTIONS(5212), 2, + ACTIONS(5184), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1540), 2, + STATE(1821), 2, sym__raw_str, sym__str_double_quotes, - STATE(1739), 3, + STATE(2144), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(227), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(427), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1881), 12, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -250484,82 +261467,258 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31872] = 7, - ACTIONS(249), 1, + [32324] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5173), 1, - anon_sym_DOT, - STATE(2004), 1, - sym_comment, - STATE(2021), 1, - aux_sym_cell_path_repeat1, - STATE(2377), 1, - sym_path, - ACTIONS(1027), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1029), 50, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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(3319), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3619), 1, + anon_sym_LPAREN, + ACTIONS(5200), 1, + anon_sym_DOLLAR, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(2151), 1, + sym_comment, + STATE(3569), 1, + sym__val_number_decimal, + STATE(3597), 1, + sym_val_range, + STATE(3641), 1, + sym_expr_parenthesized, + STATE(3658), 1, + sym_val_variable, + STATE(3974), 1, + sym__expr_binary_expression, + STATE(7534), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2144), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [32462] = 38, + ACTIONS(153), 1, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3319), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3321), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3323), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3325), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3619), 1, + anon_sym_LPAREN, + ACTIONS(5200), 1, + anon_sym_DOLLAR, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + STATE(1811), 1, + sym__val_number, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(2152), 1, + sym_comment, + STATE(3569), 1, + sym__val_number_decimal, + STATE(3597), 1, + sym_val_range, + STATE(3641), 1, + sym_expr_parenthesized, + STATE(3658), 1, + sym_val_variable, + STATE(3974), 1, + sym__expr_binary_expression, + STATE(7353), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, sym__str_single_quotes, sym__str_back_ticks, - [31948] = 4, - ACTIONS(249), 1, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2144), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2112), 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, + [32600] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2005), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(2153), 1, sym_comment, - ACTIONS(2561), 9, + ACTIONS(2210), 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(2206), 44, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250568,7 +261727,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2563), 50, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [32674] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(2154), 1, + sym_comment, + ACTIONS(1032), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250580,52 +261757,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32018] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + ACTIONS(1030), 44, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [32748] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2006), 1, + STATE(2155), 1, sym_comment, - ACTIONS(2105), 9, - anon_sym_DOT_DOT2, + ACTIONS(5262), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250634,8 +261822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2107), 50, - ts_builtin_sym_end, + ACTIONS(5260), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250647,36 +261834,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250685,22 +261869,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, - [32088] = 4, - ACTIONS(249), 1, + [32818] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2007), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(2156), 1, sym_comment, - ACTIONS(2017), 9, + ACTIONS(2218), 13, 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(2019), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250712,133 +261891,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_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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32158] = 38, - ACTIONS(163), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, + anon_sym_RBRACE, + ACTIONS(2214), 44, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [32892] = 38, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3356), 1, + ACTIONS(3439), 1, anon_sym_LBRACK, - ACTIONS(3362), 1, + ACTIONS(3445), 1, + anon_sym_DASH2, + ACTIONS(3447), 1, anon_sym_LBRACE, - ACTIONS(3364), 1, + ACTIONS(3451), 1, aux_sym_expr_unary_token1, - ACTIONS(3366), 1, + ACTIONS(3459), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, + ACTIONS(3461), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, + ACTIONS(3463), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, + ACTIONS(3465), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5185), 1, + ACTIONS(3471), 1, + anon_sym_0b, + ACTIONS(3477), 1, + anon_sym_DQUOTE, + ACTIONS(3481), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3483), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3487), 1, + sym_raw_string_begin, + ACTIONS(4996), 1, + anon_sym_LPAREN, + ACTIONS(4998), 1, + anon_sym_DOLLAR, + ACTIONS(5004), 1, anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, + ACTIONS(5008), 1, + anon_sym_null, + ACTIONS(5012), 1, + sym_val_date, + STATE(2157), 1, + sym_comment, + STATE(3486), 1, sym__inter_single_quotes, - STATE(1841), 1, + STATE(3489), 1, sym__inter_double_quotes, - STATE(1883), 1, + STATE(3492), 1, sym__val_number, - STATE(2008), 1, - sym_comment, - STATE(3556), 1, + STATE(3514), 1, sym__val_number_decimal, - STATE(3562), 1, - sym_val_range, STATE(3594), 1, - sym_expr_parenthesized, - STATE(3649), 1, sym_val_variable, - STATE(3879), 1, + STATE(3597), 1, + sym_val_range, + STATE(3599), 1, + sym_expr_parenthesized, + STATE(3850), 1, + sym__expr_unary_minus, + STATE(3977), 1, sym__expr_binary_expression, - STATE(7418), 1, + STATE(5657), 1, sym__expression, - ACTIONS(231), 2, + ACTIONS(3473), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 2, + ACTIONS(3479), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5147), 2, + ACTIONS(5006), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1540), 2, + ACTIONS(5010), 2, + anon_sym_true, + anon_sym_false, + STATE(3584), 2, sym__raw_str, sym__str_double_quotes, - STATE(1739), 3, + STATE(3905), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(227), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3467), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1881), 12, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3532), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -250851,13 +262037,21 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32296] = 4, - ACTIONS(249), 1, + [33030] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2009), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2158), 1, sym_comment, - ACTIONS(1670), 9, - anon_sym_DOT_DOT2, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250866,7 +262060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1672), 50, + ACTIONS(5186), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -250879,36 +262073,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250917,17 +262104,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, - [32366] = 6, - ACTIONS(249), 1, + [33103] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2010), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2159), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4846), 9, - sym__newline, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250936,7 +262125,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(4844), 48, + ACTIONS(5264), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250948,35 +262138,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250985,13 +262170,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, - [32440] = 4, - ACTIONS(249), 1, + [33174] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2011), 1, + STATE(2160), 1, sym_comment, - ACTIONS(2043), 9, - sym__newline, + STATE(2228), 1, + aux_sym_shebang_repeat1, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251000,7 +262191,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(2045), 50, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251012,52 +262204,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32510] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2012), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33245] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2161), 1, sym_comment, - ACTIONS(2466), 9, - sym__newline, + STATE(2249), 1, + aux_sym_shebang_repeat1, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251066,7 +262257,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(2468), 50, + ACTIONS(5208), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251078,52 +262270,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32580] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33316] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2013), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2162), 1, sym_comment, - ACTIONS(2047), 9, - sym__newline, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251132,7 +262323,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(2049), 50, + ACTIONS(5264), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251144,51 +262336,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32650] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33387] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2014), 1, + STATE(2163), 1, sym_comment, - ACTIONS(1062), 8, + STATE(2212), 1, + aux_sym_shebang_repeat1, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251197,8 +262389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1064), 51, - ts_builtin_sym_end, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251210,37 +262401,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251249,98 +262434,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, - [32720] = 20, - ACTIONS(249), 1, + [33458] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3068), 1, - anon_sym_DQUOTE, - ACTIONS(3074), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5198), 1, - sym__newline, - STATE(2015), 1, + STATE(2164), 1, sym_comment, - STATE(2387), 1, - aux_sym_command_list_repeat1, - STATE(2744), 1, + STATE(2251), 1, aux_sym_shebang_repeat1, - STATE(6968), 1, - sym__command_name, - STATE(7403), 1, - sym__val_number_decimal, - STATE(7604), 1, - sym_cmd_identifier, - STATE(7605), 1, - sym_val_string, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3070), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5521), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5190), 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(5194), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5192), 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, - [32822] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(2016), 1, - sym_comment, - ACTIONS(2281), 16, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251349,6 +262455,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5208), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251357,7 +262500,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, - ACTIONS(2285), 41, + [33529] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2165), 1, + sym_comment, + STATE(2229), 1, + aux_sym_shebang_repeat1, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5212), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251370,141 +262534,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [32896] = 38, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3412), 1, - aux_sym_expr_unary_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4973), 1, - anon_sym_LPAREN, - ACTIONS(4975), 1, - anon_sym_DOLLAR, - ACTIONS(4981), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(2017), 1, - sym_comment, - STATE(3503), 1, - sym__val_number_decimal, - STATE(3542), 1, - sym_val_variable, - STATE(3543), 1, - sym_expr_parenthesized, - STATE(3562), 1, - sym_val_range, - STATE(3895), 1, - sym__expr_binary_expression, - STATE(5736), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4983), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [33034] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33600] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2018), 1, + STATE(2166), 1, sym_comment, - ACTIONS(1054), 8, + STATE(2254), 1, + aux_sym_shebang_repeat1, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251513,8 +262587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1056), 51, - ts_builtin_sym_end, + ACTIONS(5208), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251526,37 +262599,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251565,13 +262632,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, - [33104] = 4, - ACTIONS(249), 1, + [33671] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2019), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2167), 1, sym_comment, - ACTIONS(2434), 9, - sym__newline, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251580,7 +262653,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(2436), 50, + ACTIONS(5264), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251592,52 +262666,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_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33174] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33742] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2020), 1, + STATE(2168), 1, sym_comment, - ACTIONS(2059), 9, - sym__newline, + ACTIONS(5088), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251646,7 +262717,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(2061), 50, + ACTIONS(5086), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251657,121 +262730,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33244] = 6, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33811] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5214), 1, - anon_sym_DOT, - STATE(2377), 1, - sym_path, - STATE(2021), 2, + STATE(2169), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1033), 50, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2256), 1, + aux_sym_shebang_repeat1, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5208), 44, sym__newline, 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, - [33318] = 4, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33882] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2022), 1, + STATE(2170), 1, sym_comment, - ACTIONS(2442), 9, - sym__newline, + STATE(2230), 1, + aux_sym_shebang_repeat1, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251780,7 +262850,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(2444), 50, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251792,52 +262863,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33388] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33953] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2023), 1, + STATE(2171), 1, sym_comment, - ACTIONS(2450), 9, - sym__newline, + STATE(2258), 1, + aux_sym_shebang_repeat1, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251846,7 +262916,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(2452), 50, + ACTIONS(5208), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251858,52 +262929,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33458] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34024] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2024), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2172), 1, sym_comment, - ACTIONS(2067), 9, - sym__newline, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251912,7 +262982,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(2069), 50, + ACTIONS(5264), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251924,133 +262995,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33528] = 20, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5179), 1, - anon_sym_DASH_DASH, - STATE(2025), 1, - sym_comment, - STATE(2685), 1, - aux_sym_decl_def_repeat1, - STATE(2813), 1, - sym_long_flag, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6207), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [33630] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34095] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2026), 1, + STATE(2173), 1, sym_comment, - ACTIONS(1054), 8, + STATE(2260), 1, + aux_sym_shebang_repeat1, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252059,7 +263048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1056), 51, + ACTIONS(5208), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252072,37 +263061,30 @@ static 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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252111,13 +263093,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, - [33700] = 4, - ACTIONS(249), 1, + [34166] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2027), 1, + STATE(2174), 1, sym_comment, - ACTIONS(2087), 9, - sym__newline, + STATE(2263), 1, + aux_sym_shebang_repeat1, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252126,7 +263114,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(2089), 50, + ACTIONS(5208), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252138,57 +263127,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33770] = 6, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34237] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1099), 1, - anon_sym_DOT_DOT2, - STATE(2028), 1, + STATE(2175), 1, sym_comment, - ACTIONS(1101), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1090), 9, - sym__newline, + STATE(2265), 1, + aux_sym_shebang_repeat1, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252197,7 +263180,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(1092), 47, + ACTIONS(5208), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252209,34 +263193,30 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252245,13 +263225,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, - [33844] = 4, - ACTIONS(249), 1, + [34308] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2029), 1, + STATE(2176), 1, sym_comment, - ACTIONS(2470), 9, - sym__newline, + STATE(2268), 1, + aux_sym_shebang_repeat1, + ACTIONS(5270), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252260,7 +263246,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(2472), 50, + ACTIONS(5268), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252272,52 +263259,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33914] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34379] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2030), 1, + STATE(2177), 1, sym_comment, - ACTIONS(2474), 9, - sym__newline, + STATE(2191), 1, + aux_sym_shebang_repeat1, + ACTIONS(5274), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252326,7 +263312,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(2476), 50, + ACTIONS(5272), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252338,52 +263325,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33984] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34450] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2031), 1, + STATE(2178), 1, sym_comment, - ACTIONS(2095), 9, - sym__newline, + STATE(2269), 1, + aux_sym_shebang_repeat1, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252392,7 +263378,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(2097), 50, + ACTIONS(5208), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252404,134 +263391,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_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34054] = 20, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5179), 1, - anon_sym_DASH_DASH, - STATE(1999), 1, - aux_sym_decl_def_repeat1, - STATE(2032), 1, - sym_comment, - STATE(2813), 1, - sym_long_flag, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6680), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [34156] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34521] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2033), 1, + STATE(2179), 1, sym_comment, - ACTIONS(2502), 9, - sym__newline, + ACTIONS(5022), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252540,7 +263442,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(2504), 50, + ACTIONS(5020), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252551,53 +263455,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34226] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34590] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2034), 1, + STATE(2180), 1, sym_comment, - ACTIONS(2531), 9, - sym__newline, + STATE(2215), 1, + aux_sym_shebang_repeat1, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252606,7 +263509,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(2533), 50, + ACTIONS(5204), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252618,56 +263522,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34296] = 6, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34661] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2035), 1, + STATE(2181), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4810), 9, - sym__newline, + STATE(2231), 1, + aux_sym_shebang_repeat1, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252676,7 +263575,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(4808), 48, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252688,35 +263588,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252725,12 +263620,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, - [34370] = 4, - ACTIONS(249), 1, + [34732] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2036), 1, + STATE(2182), 1, sym_comment, - ACTIONS(1038), 8, + STATE(2273), 1, + aux_sym_shebang_repeat1, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252739,8 +263641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1040), 51, - ts_builtin_sym_end, + ACTIONS(5208), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252752,37 +263653,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252791,94 +263686,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, - [34440] = 20, - ACTIONS(249), 1, + [34803] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3068), 1, - anon_sym_DQUOTE, - ACTIONS(3074), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5198), 1, - sym__newline, - STATE(2037), 1, + STATE(2183), 1, sym_comment, - STATE(2337), 1, - aux_sym_command_list_repeat1, - STATE(2744), 1, + STATE(2184), 1, aux_sym_shebang_repeat1, - STATE(7168), 1, - sym__command_name, - STATE(7403), 1, - sym__val_number_decimal, - STATE(7604), 1, - sym_cmd_identifier, - STATE(7605), 1, - sym_val_string, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3070), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5521), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5190), 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(5194), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5192), 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, - [34542] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2038), 1, - sym_comment, - ACTIONS(2289), 17, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252887,6 +263707,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5204), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252895,8 +263752,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, - aux_sym_unquoted_token4, - ACTIONS(2291), 42, + [34874] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2184), 1, + sym_comment, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5264), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252909,144 +263786,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_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, - [34612] = 38, - ACTIONS(163), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3364), 1, - aux_sym_expr_unary_token1, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5185), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(2039), 1, - sym_comment, - STATE(3556), 1, - sym__val_number_decimal, - STATE(3562), 1, - sym_val_range, - STATE(3594), 1, - sym_expr_parenthesized, - STATE(3649), 1, - sym_val_variable, - STATE(3879), 1, - sym__expr_binary_expression, - STATE(7476), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5147), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [34750] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [34945] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5217), 1, - anon_sym_QMARK2, - STATE(2040), 1, + STATE(2185), 1, sym_comment, - ACTIONS(1042), 8, + STATE(2232), 1, + aux_sym_shebang_repeat1, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253055,8 +263839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1044), 50, - ts_builtin_sym_end, + ACTIONS(5212), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253068,36 +263851,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253106,117 +263884,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, - [34822] = 38, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - aux_sym_expr_unary_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4973), 1, - anon_sym_LPAREN, - ACTIONS(4975), 1, - anon_sym_DOLLAR, - ACTIONS(4981), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(2041), 1, - sym_comment, - STATE(3503), 1, - sym__val_number_decimal, - STATE(3542), 1, - sym_val_variable, - STATE(3543), 1, - sym_expr_parenthesized, - STATE(3562), 1, - sym_val_range, - STATE(3895), 1, - sym__expr_binary_expression, - STATE(5640), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4983), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [34960] = 7, - ACTIONS(249), 1, + [35016] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4776), 1, - anon_sym_DOT_DOT2, - STATE(2042), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2186), 1, sym_comment, - ACTIONS(4778), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5139), 8, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253225,8 +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(5137), 20, - ts_builtin_sym_end, + ACTIONS(5264), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253238,6 +263917,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253246,215 +263950,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(5127), 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, - [35036] = 38, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - aux_sym_expr_unary_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4973), 1, - anon_sym_LPAREN, - ACTIONS(4975), 1, - anon_sym_DOLLAR, - ACTIONS(4981), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(2043), 1, - sym_comment, - STATE(3503), 1, - sym__val_number_decimal, - STATE(3542), 1, - sym_val_variable, - STATE(3543), 1, - sym_expr_parenthesized, - STATE(3562), 1, - sym_val_range, - STATE(3895), 1, - sym__expr_binary_expression, - STATE(5641), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4983), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [35174] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5219), 1, - anon_sym_DOT, - STATE(2044), 1, - sym_comment, - STATE(2229), 1, - aux_sym_cell_path_repeat1, - STATE(2537), 1, - sym_path, - STATE(2611), 1, - sym_cell_path, - ACTIONS(1670), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1672), 49, - sym_raw_string_begin, - 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, - [35252] = 6, - ACTIONS(3), 1, + [35087] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(2045), 1, + STATE(2187), 1, sym_comment, - ACTIONS(2293), 16, + STATE(2275), 1, + aux_sym_shebang_repeat1, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253463,15 +263971,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), 41, + ACTIONS(5208), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253484,43 +263984,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [35326] = 5, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [35158] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_QMARK2, - STATE(2046), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2188), 1, sym_comment, - ACTIONS(1048), 8, + ACTIONS(5278), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253529,8 +264037,7 @@ 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), 50, - ts_builtin_sym_end, + ACTIONS(5276), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253542,36 +264049,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253580,13 +264082,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, - [35398] = 4, - ACTIONS(249), 1, + [35229] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2047), 1, + STATE(2189), 1, sym_comment, - ACTIONS(2001), 9, - sym__newline, + STATE(2233), 1, + aux_sym_shebang_repeat1, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253595,7 +264103,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(2003), 50, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253607,37 +264116,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253646,16 +264148,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, - [35468] = 6, - ACTIONS(3), 1, + [35300] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(2048), 1, + STATE(2190), 1, sym_comment, - ACTIONS(2303), 16, + STATE(2278), 1, + aux_sym_shebang_repeat1, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253664,6 +264169,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5208), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253672,7 +264214,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, - ACTIONS(2305), 41, + [35371] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2191), 1, + sym_comment, + ACTIONS(5282), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5280), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253685,42 +264248,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [35542] = 4, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [35442] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2049), 1, + STATE(2192), 1, sym_comment, - ACTIONS(2539), 9, - sym__newline, + STATE(2282), 1, + aux_sym_shebang_repeat1, + ACTIONS(5210), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253729,7 +264301,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(2541), 50, + ACTIONS(5208), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253741,151 +264314,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [35612] = 38, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3412), 1, - aux_sym_expr_unary_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4973), 1, - anon_sym_LPAREN, - ACTIONS(4975), 1, - anon_sym_DOLLAR, - ACTIONS(4981), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(2050), 1, - sym_comment, - STATE(3503), 1, - sym__val_number_decimal, - STATE(3542), 1, - sym_val_variable, - STATE(3543), 1, - sym_expr_parenthesized, - STATE(3562), 1, - sym_val_range, - STATE(3895), 1, - sym__expr_binary_expression, - STATE(5645), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4983), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [35750] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [35513] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2051), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2193), 1, sym_comment, - ACTIONS(1062), 8, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253894,7 +264367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1064), 51, + ACTIONS(5264), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253907,37 +264380,30 @@ static 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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253946,119 +264412,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, - [35820] = 38, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - aux_sym_expr_unary_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4973), 1, - anon_sym_LPAREN, - ACTIONS(4975), 1, - anon_sym_DOLLAR, - ACTIONS(4981), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(2052), 1, - sym_comment, - STATE(3503), 1, - sym__val_number_decimal, - STATE(3542), 1, - sym_val_variable, - STATE(3543), 1, - sym_expr_parenthesized, - STATE(3562), 1, - sym_val_range, - STATE(3895), 1, - sym__expr_binary_expression, - STATE(5646), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4983), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [35958] = 8, - ACTIONS(249), 1, + [35584] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1099), 1, - anon_sym_DOT_DOT2, - ACTIONS(5223), 1, - sym__newline, - STATE(2053), 1, + STATE(2194), 1, sym_comment, - ACTIONS(1101), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5230), 8, + STATE(2234), 1, + aux_sym_shebang_repeat1, + ACTIONS(5286), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254067,7 +264433,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(5226), 19, + ACTIONS(5284), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254079,6 +264446,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254087,86 +264478,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, - ACTIONS(5228), 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, - [36036] = 20, - ACTIONS(249), 1, + [35655] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, + ACTIONS(3127), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, + ACTIONS(3133), 1, sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5179), 1, - anon_sym_DASH_DASH, - STATE(2054), 1, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5292), 1, + sym__newline, + ACTIONS(5294), 1, + anon_sym_RBRACK, + STATE(2195), 1, sym_comment, - STATE(2057), 1, - aux_sym_decl_def_repeat1, - STATE(2813), 1, - sym_long_flag, - STATE(4162), 1, + STATE(2429), 1, + aux_sym_shebang_repeat1, + STATE(2556), 1, + aux_sym_command_list_repeat1, + STATE(3723), 1, + sym__val_number_decimal, + STATE(7011), 1, + sym__command_name, + STATE(7397), 1, sym_val_string, - STATE(4187), 1, + STATE(7535), 1, sym_cmd_identifier, - STATE(6654), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + ACTIONS(3129), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5497), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5288), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5290), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -254196,19 +264553,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [36138] = 6, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [35754] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4776), 1, - anon_sym_DOT_DOT2, - STATE(2055), 1, + STATE(2193), 1, + aux_sym_shebang_repeat1, + STATE(2196), 1, sym_comment, - ACTIONS(4778), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1090), 8, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254217,8 +264579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1092), 48, - ts_builtin_sym_end, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254230,34 +264591,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254266,327 +264624,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, - [36212] = 20, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5179), 1, - anon_sym_DASH_DASH, - STATE(2056), 1, - sym_comment, - STATE(2059), 1, - aux_sym_decl_def_repeat1, - STATE(2813), 1, - sym_long_flag, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6662), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [36314] = 20, - ACTIONS(249), 1, + [35825] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5179), 1, - anon_sym_DASH_DASH, - STATE(2057), 1, + STATE(2197), 1, sym_comment, - STATE(2685), 1, - aux_sym_decl_def_repeat1, - STATE(2813), 1, - sym_long_flag, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6663), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [36416] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5232), 1, + ACTIONS(1006), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1008), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT, - ACTIONS(5234), 1, - aux_sym__immediate_decimal_token2, - STATE(2058), 1, - sym_comment, - ACTIONS(1536), 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(1538), 47, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [36490] = 20, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5179), 1, - anon_sym_DASH_DASH, - STATE(2059), 1, - sym_comment, - STATE(2685), 1, - aux_sym_decl_def_repeat1, - STATE(2813), 1, - sym_long_flag, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6665), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [36592] = 4, - ACTIONS(249), 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, + [35894] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2060), 1, + STATE(2198), 1, sym_comment, - ACTIONS(2454), 9, - sym__newline, + STATE(2235), 1, + aux_sym_shebang_repeat1, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254595,7 +264710,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(2456), 50, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254607,51 +264723,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [36662] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [35965] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2061), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2199), 1, sym_comment, - ACTIONS(1038), 8, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254660,7 +264776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1040), 51, + ACTIONS(5296), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254673,37 +264789,30 @@ static 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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254712,117 +264821,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36732] = 38, - ACTIONS(163), 1, - anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, + [36036] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, - anon_sym_LBRACE, - ACTIONS(3364), 1, - aux_sym_expr_unary_token1, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5185), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(2062), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2200), 1, sym_comment, - STATE(3556), 1, - sym__val_number_decimal, - STATE(3562), 1, - sym_val_range, - STATE(3594), 1, - sym_expr_parenthesized, - STATE(3649), 1, - sym_val_variable, - STATE(3879), 1, - sym__expr_binary_expression, - STATE(7584), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5147), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [36870] = 6, - ACTIONS(249), 1, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4973), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4971), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36109] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(2063), 1, + STATE(2201), 1, sym_comment, - STATE(7791), 1, + STATE(7999), 1, sym__expr_parenthesized_immediate, - ACTIONS(4850), 9, + ACTIONS(4977), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4975), 43, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36182] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2202), 1, + sym_comment, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254831,7 +264976,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(4848), 48, + ACTIONS(5264), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254843,35 +264989,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254880,15 +265021,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, - [36944] = 5, - ACTIONS(249), 1, + [36253] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5236), 1, - anon_sym_QMARK2, - STATE(2064), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2203), 1, sym_comment, - ACTIONS(1042), 9, - sym__newline, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254897,7 +265042,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(1044), 49, + ACTIONS(5296), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254909,36 +265055,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_DOT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254947,12 +265087,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, - [37016] = 4, - ACTIONS(249), 1, + [36324] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2065), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2204), 1, sym_comment, - ACTIONS(1058), 8, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254961,8 +265108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1060), 51, - ts_builtin_sym_end, + ACTIONS(5296), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254974,37 +265120,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255013,411 +265153,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37086] = 20, - ACTIONS(249), 1, + [36395] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5179), 1, - anon_sym_DASH_DASH, - STATE(2025), 1, - aux_sym_decl_def_repeat1, - STATE(2066), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2205), 1, sym_comment, - STATE(2813), 1, - sym_long_flag, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6244), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [37188] = 38, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4981), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4979), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36468] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - aux_sym_expr_unary_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4973), 1, - anon_sym_LPAREN, - ACTIONS(4975), 1, - anon_sym_DOLLAR, - ACTIONS(4981), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(2067), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2206), 1, sym_comment, - STATE(3503), 1, - sym__val_number_decimal, - STATE(3542), 1, - sym_val_variable, - STATE(3543), 1, - sym_expr_parenthesized, - STATE(3562), 1, - sym_val_range, - STATE(3895), 1, - sym__expr_binary_expression, - STATE(5649), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4983), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [37326] = 38, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4985), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4983), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36541] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - aux_sym_expr_unary_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4973), 1, - anon_sym_LPAREN, - ACTIONS(4975), 1, - anon_sym_DOLLAR, - ACTIONS(4981), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(2068), 1, + STATE(2207), 1, sym_comment, - STATE(3503), 1, - sym__val_number_decimal, - STATE(3542), 1, - sym_val_variable, - STATE(3543), 1, - sym_expr_parenthesized, - STATE(3562), 1, - sym_val_range, - STATE(3895), 1, - sym__expr_binary_expression, - STATE(5737), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4983), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [37464] = 38, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, + STATE(2236), 1, + aux_sym_shebang_repeat1, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5212), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36612] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(251), 1, + ACTIONS(3127), 1, + anon_sym_DQUOTE, + ACTIONS(3133), 1, sym_raw_string_begin, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - aux_sym_expr_unary_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3416), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3418), 1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3420), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4973), 1, - anon_sym_LPAREN, - ACTIONS(4975), 1, - anon_sym_DOLLAR, - ACTIONS(4981), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(2069), 1, + ACTIONS(5292), 1, + sym__newline, + ACTIONS(5300), 1, + anon_sym_RBRACK, + STATE(2208), 1, sym_comment, - STATE(3503), 1, + STATE(2416), 1, + aux_sym_shebang_repeat1, + STATE(2561), 1, + aux_sym_command_list_repeat1, + STATE(3723), 1, sym__val_number_decimal, - STATE(3542), 1, - sym_val_variable, - STATE(3543), 1, - sym_expr_parenthesized, - STATE(3562), 1, - sym_val_range, - STATE(3895), 1, - sym__expr_binary_expression, - STATE(5739), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 2, + STATE(7047), 1, + sym__command_name, + STATE(7397), 1, + sym_val_string, + STATE(7535), 1, + sym_cmd_identifier, + ACTIONS(3129), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4983), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5497), 2, sym__raw_str, sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [37602] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5219), 1, - anon_sym_DOT, - STATE(2070), 1, - sym_comment, - STATE(2229), 1, - aux_sym_cell_path_repeat1, - STATE(2537), 1, - sym_path, - STATE(2568), 1, - sym_cell_path, - ACTIONS(1021), 6, + ACTIONS(5288), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1023), 49, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5290), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -255447,203 +265428,164 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + [36711] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2209), 1, + sym_comment, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5264), 44, 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, - [37680] = 8, - ACTIONS(249), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36782] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5219), 1, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2550), 1, + anon_sym_DOLLAR, + ACTIONS(5302), 1, + anon_sym_LPAREN2, + ACTIONS(5304), 1, anon_sym_DOT, - STATE(2071), 1, + ACTIONS(5308), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5310), 1, + aux_sym__immediate_decimal_token5, + STATE(2210), 1, sym_comment, - STATE(2229), 1, - aux_sym_cell_path_repeat1, - STATE(2537), 1, - sym_path, - STATE(2614), 1, - sym_cell_path, - ACTIONS(1664), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1668), 49, + STATE(2680), 1, + sym__immediate_decimal, + ACTIONS(1544), 2, sym_raw_string_begin, - 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, + sym__entry_separator, + ACTIONS(5306), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2828), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1530), 45, 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, - [37758] = 38, - ACTIONS(163), 1, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(401), 1, - anon_sym_DASH, - ACTIONS(3280), 1, - anon_sym_null, - ACTIONS(3356), 1, - anon_sym_LBRACK, - ACTIONS(3362), 1, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(3364), 1, - aux_sym_expr_unary_token1, - ACTIONS(3366), 1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5185), 1, - anon_sym_DOT_DOT, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(1883), 1, - sym__val_number, - STATE(2072), 1, - sym_comment, - STATE(3556), 1, - sym__val_number_decimal, - STATE(3562), 1, - sym_val_range, - STATE(3594), 1, - sym_expr_parenthesized, - STATE(3649), 1, - sym_val_variable, - STATE(3879), 1, - sym__expr_binary_expression, - STATE(7594), 1, - sym__expression, - ACTIONS(231), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 2, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5147), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(1739), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(227), 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(1881), 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, - [37896] = 5, - ACTIONS(249), 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, + [36869] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5238), 1, - anon_sym_QMARK2, - STATE(2073), 1, + STATE(2211), 1, sym_comment, - ACTIONS(1048), 9, - sym__newline, + STATE(2237), 1, + aux_sym_shebang_repeat1, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255652,7 +265594,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), 49, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255664,36 +265607,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_DOT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255702,12 +265639,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, - [37968] = 4, - ACTIONS(249), 1, + [36940] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2074), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2212), 1, sym_comment, - ACTIONS(1058), 8, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255716,7 +265660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1060), 51, + ACTIONS(5264), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255729,37 +265673,30 @@ static 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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255768,16 +265705,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, - [38038] = 6, - ACTIONS(3), 1, + [37011] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(2075), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2213), 1, sym_comment, - ACTIONS(1090), 16, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255786,6 +265726,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5296), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255794,7 +265771,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, - ACTIONS(1092), 41, + [37082] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2214), 1, + sym_comment, + STATE(2305), 1, + aux_sym_shebang_repeat1, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5212), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255807,42 +265805,117 @@ static 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, - [38112] = 4, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37153] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2076), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2215), 1, sym_comment, - ACTIONS(1628), 9, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5264), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37224] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2172), 1, + aux_sym_shebang_repeat1, + STATE(2216), 1, + sym_comment, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255851,7 +265924,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(1640), 50, + ACTIONS(5204), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255863,68 +265937,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38182] = 6, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37295] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5240), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5242), 1, - aux_sym__immediate_decimal_token2, - STATE(2077), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5312), 1, + anon_sym_DASH_DASH, + STATE(2217), 1, sym_comment, - ACTIONS(1528), 11, + STATE(2438), 1, + aux_sym_decl_def_repeat1, + STATE(2973), 1, + sym_long_flag, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6593), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, 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(1530), 46, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -255954,29 +266044,24 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, - [38256] = 4, - ACTIONS(249), 1, + [37394] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2078), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2218), 1, sym_comment, - ACTIONS(2418), 9, - sym__newline, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255985,7 +266070,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(2420), 50, + ACTIONS(5264), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255997,55 +266083,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38326] = 6, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37465] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2079), 1, + STATE(2219), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + STATE(2239), 1, + aux_sym_shebang_repeat1, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256054,8 +266136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, + ACTIONS(5212), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256067,34 +266148,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256103,16 +266181,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, - [38399] = 6, - ACTIONS(249), 1, + [37536] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2080), 1, + STATE(2209), 1, + aux_sym_shebang_repeat1, + STATE(2220), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256121,8 +266202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256134,34 +266214,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256170,12 +266247,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, - [38472] = 4, - ACTIONS(249), 1, + [37607] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2081), 1, + ACTIONS(5314), 1, + anon_sym_DOT, + STATE(2221), 1, + sym_comment, + STATE(2358), 1, + aux_sym_cell_path_repeat1, + STATE(2558), 1, + sym_path, + STATE(2608), 1, + sym_cell_path, + ACTIONS(961), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(963), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [37684] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2222), 1, sym_comment, - ACTIONS(1066), 8, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256184,8 +266337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1068), 50, - ts_builtin_sym_end, + ACTIONS(5296), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256197,36 +266349,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256235,12 +266382,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, - [38541] = 4, - ACTIONS(249), 1, + [37755] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2082), 1, + STATE(2202), 1, + aux_sym_shebang_repeat1, + STATE(2223), 1, sym_comment, - ACTIONS(1070), 8, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256249,8 +266403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1072), 50, - ts_builtin_sym_end, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256262,36 +266415,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256300,16 +266448,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, - [38610] = 6, - ACTIONS(249), 1, + [37826] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2083), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2224), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256318,8 +266469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, + ACTIONS(5296), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256331,34 +266481,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256367,16 +266514,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, - [38683] = 6, - ACTIONS(249), 1, + [37897] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2084), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2225), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256385,8 +266535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, + ACTIONS(5296), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256398,34 +266547,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256434,16 +266580,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, - [38756] = 6, - ACTIONS(249), 1, + [37968] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2085), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2226), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256452,8 +266601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, + ACTIONS(5316), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256465,34 +266613,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256501,16 +266646,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, - [38829] = 6, - ACTIONS(249), 1, + [38039] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2086), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2227), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256519,8 +266667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, + ACTIONS(5316), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256532,34 +266679,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256568,15 +266712,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, - [38902] = 5, - ACTIONS(249), 1, + [38110] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2087), 1, - sym_comment, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5244), 9, - sym__newline, + STATE(2228), 1, + sym_comment, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256585,7 +266733,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(5246), 48, + ACTIONS(5316), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256597,35 +266746,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256634,15 +266778,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, - [38973] = 5, - ACTIONS(249), 1, + [38181] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2088), 1, - sym_comment, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5248), 9, - sym__newline, + STATE(2229), 1, + sym_comment, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256651,7 +266799,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(5250), 48, + ACTIONS(5316), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256663,35 +266812,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256700,15 +266844,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, - [39044] = 5, - ACTIONS(249), 1, + [38252] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2089), 1, - sym_comment, - STATE(2163), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5252), 9, - sym__newline, + STATE(2230), 1, + sym_comment, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256717,7 +266865,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(5254), 48, + ACTIONS(5316), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256729,35 +266878,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256766,15 +266910,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, - [39115] = 5, - ACTIONS(249), 1, + [38323] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2090), 1, - sym_comment, - STATE(2164), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5175), 9, - sym__newline, + STATE(2231), 1, + sym_comment, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256783,7 +266931,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(5177), 48, + ACTIONS(5316), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256795,35 +266944,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256832,15 +266976,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, - [39186] = 5, - ACTIONS(249), 1, + [38394] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2091), 1, - sym_comment, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5248), 9, - sym__newline, + STATE(2232), 1, + sym_comment, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256849,7 +266997,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(5250), 48, + ACTIONS(5316), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256861,35 +267010,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256898,80 +267042,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, - [39257] = 4, - ACTIONS(249), 1, + [38465] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2092), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2233), 1, sym_comment, - ACTIONS(1058), 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(1060), 51, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [39326] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2093), 1, - sym_comment, - STATE(2165), 1, - aux_sym_shebang_repeat1, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256980,7 +267063,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(5177), 48, + ACTIONS(5316), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256992,35 +267076,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257029,15 +267108,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, - [39397] = 5, - ACTIONS(249), 1, + [38536] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2094), 1, - sym_comment, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5248), 9, - sym__newline, + STATE(2234), 1, + sym_comment, + ACTIONS(5322), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257046,7 +267129,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(5250), 48, + ACTIONS(5320), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257058,35 +267142,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257095,145 +267174,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, - [39468] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2095), 1, - sym_comment, - ACTIONS(1062), 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(1064), 51, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [39537] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2096), 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, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1040), 51, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [39606] = 5, - ACTIONS(249), 1, + [38607] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2097), 1, - sym_comment, - STATE(2169), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5175), 9, - sym__newline, + STATE(2235), 1, + sym_comment, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257242,7 +267195,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(5177), 48, + ACTIONS(5316), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257254,35 +267208,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257291,15 +267240,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, - [39677] = 5, - ACTIONS(249), 1, + [38678] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2098), 1, - sym_comment, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5248), 9, - sym__newline, + STATE(2236), 1, + sym_comment, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257308,7 +267261,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(5250), 48, + ACTIONS(5316), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257320,35 +267274,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257357,80 +267306,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, - [39748] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2099), 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, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1056), 51, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [39817] = 5, - ACTIONS(249), 1, + [38749] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2100), 1, - sym_comment, - STATE(2170), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5175), 9, - sym__newline, + STATE(2237), 1, + sym_comment, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257439,7 +267327,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(5177), 48, + ACTIONS(5316), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257451,35 +267340,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257488,15 +267372,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, - [39888] = 5, - ACTIONS(249), 1, + [38820] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2101), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2238), 1, sym_comment, - STATE(2104), 1, - aux_sym_shebang_repeat1, - ACTIONS(5248), 9, - sym__newline, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257505,7 +267395,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(5250), 48, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257516,36 +267408,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257554,15 +267439,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, - [39959] = 5, - ACTIONS(249), 1, + [38893] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2102), 1, - sym_comment, - STATE(2171), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5175), 9, - sym__newline, + STATE(2239), 1, + sym_comment, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257571,7 +267460,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(5177), 48, + ACTIONS(5316), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257583,35 +267473,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257620,24 +267505,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, - [40030] = 5, - ACTIONS(249), 1, + [38964] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2103), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(2240), 1, sym_comment, - STATE(2104), 1, - aux_sym_shebang_repeat1, - ACTIONS(5248), 9, + ACTIONS(2210), 12, + ts_builtin_sym_end, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257648,36 +267527,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_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, + ACTIONS(2206), 44, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -257686,24 +267572,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, - [40101] = 5, - ACTIONS(249), 1, + [39037] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5256), 1, - sym__newline, - STATE(2104), 2, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(2241), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1349), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1351), 48, + ACTIONS(1032), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257714,36 +267594,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_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, + ACTIONS(1030), 44, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -257752,15 +267639,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, - [40172] = 5, - ACTIONS(249), 1, + [39110] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2105), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2242), 1, sym_comment, - STATE(2172), 1, - aux_sym_shebang_repeat1, - ACTIONS(5175), 9, - sym__newline, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257769,7 +267662,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(5177), 48, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257780,36 +267675,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257818,15 +267706,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, - [40243] = 5, - ACTIONS(249), 1, + [39183] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2106), 1, + STATE(2243), 1, sym_comment, - ACTIONS(5248), 9, - sym__newline, + ACTIONS(1010), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257835,7 +267725,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(5250), 48, + ACTIONS(1012), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257846,36 +267738,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257884,24 +267771,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, - [40314] = 5, - ACTIONS(249), 1, + [39252] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2107), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(2244), 1, sym_comment, - STATE(2176), 1, - aux_sym_shebang_repeat1, - ACTIONS(5175), 9, + ACTIONS(2218), 12, + ts_builtin_sym_end, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257912,36 +267793,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_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, + ACTIONS(2214), 44, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -257950,24 +267838,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, - [40385] = 5, - ACTIONS(249), 1, + [39325] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2108), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(2245), 1, sym_comment, - ACTIONS(5248), 9, + ACTIONS(2224), 12, + ts_builtin_sym_end, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257978,36 +267860,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_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, + ACTIONS(2222), 44, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -258016,15 +267905,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, - [40456] = 5, - ACTIONS(249), 1, + [39398] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2109), 1, + STATE(2246), 1, sym_comment, - STATE(2177), 1, - aux_sym_shebang_repeat1, - ACTIONS(5175), 9, - sym__newline, + ACTIONS(1014), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258033,7 +267924,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(5177), 48, + ACTIONS(1016), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258044,36 +267937,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258082,15 +267970,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, - [40527] = 5, - ACTIONS(249), 1, + [39467] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2110), 1, + STATE(2247), 1, sym_comment, - ACTIONS(5248), 9, - sym__newline, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258099,7 +267991,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(5250), 48, + ACTIONS(5296), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258111,35 +268004,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258148,15 +268036,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, - [40598] = 5, - ACTIONS(249), 1, + [39538] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2111), 1, - sym_comment, - STATE(2178), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5175), 9, - sym__newline, + STATE(2248), 1, + sym_comment, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258165,7 +268057,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(5177), 48, + ACTIONS(5296), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258177,35 +268070,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258214,15 +268102,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, - [40669] = 5, - ACTIONS(249), 1, + [39609] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2112), 1, + STATE(2249), 1, sym_comment, - ACTIONS(5248), 9, - sym__newline, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258231,7 +268123,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(5250), 48, + ACTIONS(5324), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258243,35 +268136,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258280,15 +268168,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, - [40740] = 5, - ACTIONS(249), 1, + [39680] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2113), 1, - sym_comment, - STATE(2179), 1, + STATE(2224), 1, aux_sym_shebang_repeat1, - ACTIONS(5175), 9, - sym__newline, + STATE(2250), 1, + sym_comment, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258297,7 +268189,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(5177), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258309,35 +268202,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258346,15 +268234,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, - [40811] = 5, - ACTIONS(249), 1, + [39751] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2114), 1, + STATE(2251), 1, sym_comment, - ACTIONS(5248), 9, - sym__newline, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258363,7 +268255,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(5250), 48, + ACTIONS(5324), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258375,35 +268268,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258412,15 +268300,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, - [40882] = 5, - ACTIONS(249), 1, + [39822] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2115), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2252), 1, sym_comment, - STATE(2180), 1, - aux_sym_shebang_repeat1, - ACTIONS(5175), 9, - sym__newline, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258429,7 +268323,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(5177), 48, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258440,36 +268336,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258478,15 +268367,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, - [40953] = 5, - ACTIONS(249), 1, + [39895] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(2225), 1, aux_sym_shebang_repeat1, - STATE(2116), 1, + STATE(2253), 1, sym_comment, - ACTIONS(5248), 9, - sym__newline, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258495,7 +268388,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(5250), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258507,35 +268401,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258544,15 +268433,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, - [41024] = 5, - ACTIONS(249), 1, + [39966] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2117), 1, - sym_comment, - STATE(2181), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5175), 9, - sym__newline, + STATE(2254), 1, + sym_comment, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258561,7 +268454,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(5177), 48, + ACTIONS(5324), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258573,35 +268467,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258610,15 +268499,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, - [41095] = 5, - ACTIONS(249), 1, + [40037] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(2247), 1, aux_sym_shebang_repeat1, - STATE(2118), 1, + STATE(2255), 1, sym_comment, - ACTIONS(5248), 9, - sym__newline, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258627,7 +268520,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(5250), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258639,35 +268533,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258676,17 +268565,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, - [41166] = 6, - ACTIONS(3), 1, + [40108] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(2119), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2256), 1, sym_comment, - ACTIONS(2281), 17, - sym__newline, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258695,15 +268586,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(2285), 39, + ACTIONS(5324), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258715,53 +268599,30 @@ static 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, - [41239] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(2120), 1, - sym_comment, - ACTIONS(1090), 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258770,55 +268631,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(1092), 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, - [41312] = 5, - ACTIONS(249), 1, + [40179] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2121), 1, - sym_comment, - STATE(2182), 1, + STATE(2248), 1, aux_sym_shebang_repeat1, - ACTIONS(5175), 9, - sym__newline, + STATE(2257), 1, + sym_comment, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258827,7 +268652,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(5177), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258839,35 +268665,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258876,15 +268697,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, - [41383] = 5, - ACTIONS(249), 1, + [40250] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2122), 1, - sym_comment, - STATE(2183), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5259), 9, - sym__newline, + STATE(2258), 1, + sym_comment, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258893,7 +268718,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(5261), 48, + ACTIONS(5324), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258905,35 +268731,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258942,15 +268763,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, - [41454] = 5, - ACTIONS(249), 1, + [40321] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2123), 1, + STATE(2259), 1, sym_comment, - STATE(2184), 1, + STATE(2276), 1, aux_sym_shebang_repeat1, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258959,7 +268784,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(5183), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258971,35 +268797,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259008,15 +268829,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, - [41525] = 5, - ACTIONS(249), 1, + [40392] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2124), 1, - sym_comment, - STATE(2187), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5181), 9, - sym__newline, + STATE(2260), 1, + sym_comment, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259025,7 +268850,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(5183), 48, + ACTIONS(5324), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259037,35 +268863,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259074,17 +268895,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, - [41596] = 6, - ACTIONS(3), 1, + [40463] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(2125), 1, + STATE(2261), 1, sym_comment, - ACTIONS(2293), 17, - sym__newline, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259093,15 +268918,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, - ACTIONS(2297), 39, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259112,54 +268931,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, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [41669] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(2126), 1, - sym_comment, - ACTIONS(2303), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259168,55 +268962,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(2305), 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, - [41742] = 5, - ACTIONS(249), 1, + [40536] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2127), 1, + STATE(2262), 1, sym_comment, - STATE(2189), 1, + STATE(2291), 1, aux_sym_shebang_repeat1, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259225,7 +268983,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(5183), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259237,35 +268996,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259274,15 +269028,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, - [41813] = 5, - ACTIONS(249), 1, + [40607] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2128), 1, - sym_comment, - STATE(2192), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5181), 9, - sym__newline, + STATE(2263), 1, + sym_comment, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259291,7 +269049,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(5183), 48, + ACTIONS(5324), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259303,35 +269062,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259340,15 +269094,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, - [41884] = 5, - ACTIONS(249), 1, + [40678] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2129), 1, + STATE(2264), 1, sym_comment, - STATE(2196), 1, + STATE(2295), 1, aux_sym_shebang_repeat1, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259357,7 +269115,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(5183), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259369,35 +269128,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259406,15 +269160,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, - [41955] = 5, - ACTIONS(249), 1, + [40749] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2130), 1, - sym_comment, - STATE(2198), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5181), 9, - sym__newline, + STATE(2265), 1, + sym_comment, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259423,7 +269181,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(5183), 48, + ACTIONS(5324), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259435,35 +269194,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259472,24 +269226,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, - [42026] = 5, - ACTIONS(249), 1, + [40820] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2131), 1, + STATE(2266), 1, sym_comment, - STATE(2200), 1, - aux_sym_shebang_repeat1, - ACTIONS(5181), 9, + ACTIONS(2250), 13, + ts_builtin_sym_end, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259500,51 +269244,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_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, - [42097] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2132), 1, - sym_comment, - ACTIONS(1074), 9, - sym__newline, + anon_sym_LPAREN2, + ACTIONS(2248), 45, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259553,48 +269282,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(1076), 49, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - 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_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259603,15 +269290,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, - [42166] = 5, - ACTIONS(249), 1, + aux_sym_unquoted_token4, + [40889] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2133), 1, - sym_comment, STATE(2203), 1, aux_sym_shebang_repeat1, - ACTIONS(5181), 9, - sym__newline, + STATE(2267), 1, + sym_comment, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259620,7 +269312,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(5183), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259632,35 +269325,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259669,15 +269357,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, - [42237] = 5, - ACTIONS(249), 1, + [40960] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2134), 1, - sym_comment, - STATE(2205), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5181), 9, - sym__newline, + STATE(2268), 1, + sym_comment, + ACTIONS(5330), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259686,7 +269378,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(5183), 48, + ACTIONS(5328), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259698,35 +269391,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259735,15 +269423,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, - [42308] = 5, - ACTIONS(249), 1, + [41031] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2087), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2135), 1, + STATE(2269), 1, sym_comment, - ACTIONS(5263), 9, - sym__newline, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259752,7 +269444,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(5265), 48, + ACTIONS(5324), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259764,35 +269457,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259801,13 +269489,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, - [42379] = 4, - ACTIONS(249), 1, + [41102] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2136), 1, + STATE(2188), 1, + aux_sym_shebang_repeat1, + STATE(2270), 1, sym_comment, - ACTIONS(1066), 9, - sym__newline, + ACTIONS(5334), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259816,7 +269510,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(1068), 49, + ACTIONS(5332), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259828,36 +269523,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_DOT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259866,13 +269555,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, - [42448] = 4, - ACTIONS(249), 1, + [41173] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2137), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + STATE(2271), 1, sym_comment, - ACTIONS(1070), 9, - sym__newline, + ACTIONS(1709), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259881,7 +269576,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(1072), 49, + ACTIONS(1721), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259893,36 +269589,30 @@ static 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_DOT, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259931,15 +269621,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, - [42517] = 5, - ACTIONS(249), 1, + [41244] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2138), 1, - sym_comment, - STATE(2207), 1, + STATE(2213), 1, aux_sym_shebang_repeat1, - ACTIONS(5181), 9, - sym__newline, + STATE(2272), 1, + sym_comment, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259948,7 +269642,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(5183), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259960,35 +269655,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259997,12 +269687,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, - [42588] = 4, - ACTIONS(3), 1, + [41315] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2139), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2273), 1, sym_comment, - ACTIONS(2289), 17, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260011,17 +269708,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(2291), 41, - ts_builtin_sym_end, + ACTIONS(5324), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260033,44 +269720,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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, - [42657] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [41386] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2088), 1, + STATE(2222), 1, aux_sym_shebang_repeat1, - STATE(2140), 1, + STATE(2274), 1, sym_comment, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260079,7 +269774,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(5171), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260091,35 +269787,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260128,15 +269819,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, - [42728] = 5, - ACTIONS(249), 1, + [41457] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2141), 1, - sym_comment, - STATE(2209), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5181), 9, - sym__newline, + STATE(2275), 1, + sym_comment, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260145,7 +269840,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(5183), 48, + ACTIONS(5324), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260157,35 +269853,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260194,63 +269885,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, - [42799] = 13, - ACTIONS(3), 1, + [41528] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2593), 1, - anon_sym_DOLLAR, - ACTIONS(5267), 1, - anon_sym_LPAREN2, - ACTIONS(5269), 1, - anon_sym_DOT, - ACTIONS(5273), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5275), 1, - aux_sym__immediate_decimal_token5, - STATE(2142), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2276), 1, sym_comment, - STATE(2676), 1, - sym__immediate_decimal, - ACTIONS(1524), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5271), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2808), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 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, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260259,33 +269906,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, - [42886] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5041), 1, - aux_sym_cmd_identifier_token37, - STATE(2143), 1, - sym_comment, - ACTIONS(1628), 9, + ACTIONS(5296), 44, 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(1640), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260296,36 +269918,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260334,15 +269951,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, - [42957] = 5, - ACTIONS(249), 1, + [41599] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2144), 1, + STATE(2277), 1, sym_comment, - STATE(2211), 1, + STATE(2286), 1, aux_sym_shebang_repeat1, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260351,7 +269972,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(5183), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260363,35 +269985,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260400,15 +270017,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, - [43028] = 5, - ACTIONS(249), 1, + [41670] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2091), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2145), 1, + STATE(2278), 1, sym_comment, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260417,7 +270038,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(5171), 48, + ACTIONS(5324), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260429,35 +270051,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260466,15 +270083,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, - [43099] = 5, - ACTIONS(249), 1, + [41741] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2146), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2279), 1, sym_comment, - STATE(2213), 1, - aux_sym_shebang_repeat1, - ACTIONS(5181), 9, - sym__newline, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260483,7 +270106,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(5183), 48, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260494,36 +270119,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260532,12 +270150,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, - [43170] = 4, - ACTIONS(249), 1, + [41814] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2147), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2280), 1, sym_comment, - ACTIONS(4987), 8, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260546,7 +270173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4985), 50, + ACTIONS(5186), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260559,53 +270186,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43239] = 5, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [41887] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2094), 1, + STATE(2199), 1, aux_sym_shebang_repeat1, - STATE(2148), 1, + STATE(2281), 1, sym_comment, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260614,7 +270238,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(5171), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260626,35 +270251,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260663,15 +270283,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, - [43310] = 5, - ACTIONS(249), 1, + [41958] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2098), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2149), 1, + STATE(2282), 1, sym_comment, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5326), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260680,7 +270304,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(5171), 48, + ACTIONS(5324), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260692,35 +270317,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260729,15 +270349,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, - [43381] = 5, - ACTIONS(249), 1, + [42029] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2101), 1, - aux_sym_shebang_repeat1, - STATE(2150), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2283), 1, sym_comment, - ACTIONS(5169), 9, - sym__newline, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260746,7 +270372,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(5171), 48, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260757,36 +270385,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260795,12 +270416,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, - [43452] = 4, - ACTIONS(249), 1, + [42102] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2151), 1, + STATE(2226), 1, + aux_sym_shebang_repeat1, + STATE(2284), 1, sym_comment, - ACTIONS(1074), 8, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260809,8 +270437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1076), 50, - ts_builtin_sym_end, + ACTIONS(5212), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260822,36 +270449,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260860,15 +270482,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, - [43521] = 5, - ACTIONS(249), 1, + [42173] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2103), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5312), 1, + anon_sym_DASH_DASH, + STATE(2285), 1, + sym_comment, + STATE(2438), 1, + aux_sym_decl_def_repeat1, + STATE(2973), 1, + sym_long_flag, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6593), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [42272] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2152), 1, + STATE(2286), 1, sym_comment, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260877,7 +270583,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(5171), 48, + ACTIONS(5296), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260889,35 +270596,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260926,15 +270628,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, - [43592] = 5, - ACTIONS(249), 1, + [42343] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2106), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2153), 1, + STATE(2287), 1, sym_comment, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260943,7 +270649,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(5171), 48, + ACTIONS(5264), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260955,35 +270662,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260992,12 +270694,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, - [43663] = 4, - ACTIONS(249), 1, + [42414] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2154), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2288), 1, sym_comment, - ACTIONS(4997), 8, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261006,7 +270717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4995), 50, + ACTIONS(5186), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -261019,102 +270730,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_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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43732] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2108), 1, - aux_sym_shebang_repeat1, - STATE(2155), 1, - sym_comment, - ACTIONS(5169), 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(5171), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261123,15 +270761,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, - [43803] = 5, - ACTIONS(249), 1, + [42487] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2110), 1, + STATE(2204), 1, aux_sym_shebang_repeat1, - STATE(2156), 1, + STATE(2289), 1, sym_comment, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5198), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261140,7 +270782,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(5171), 48, + ACTIONS(5196), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261152,35 +270795,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261189,15 +270827,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, - [43874] = 5, - ACTIONS(249), 1, + [42558] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2112), 1, - aux_sym_shebang_repeat1, - STATE(2157), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2290), 1, sym_comment, - ACTIONS(5169), 9, - sym__newline, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261206,7 +270850,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(5171), 48, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261217,36 +270863,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261255,81 +270894,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, - [43945] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5234), 1, - aux_sym__immediate_decimal_token2, - STATE(2158), 1, - sym_comment, - ACTIONS(1536), 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(1538), 47, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [44016] = 5, - ACTIONS(249), 1, + [42631] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2114), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2159), 1, + STATE(2291), 1, sym_comment, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261338,7 +270915,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(5171), 48, + ACTIONS(5296), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261350,35 +270928,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261387,14 +270960,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, - [44087] = 5, - ACTIONS(249), 1, + [42702] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4770), 1, - aux_sym_unquoted_token2, - STATE(2160), 1, + STATE(2186), 1, + aux_sym_shebang_repeat1, + STATE(2292), 1, sym_comment, - ACTIONS(1628), 8, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261403,7 +270981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1640), 49, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261416,35 +270994,30 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261453,14 +271026,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, - [44158] = 5, - ACTIONS(3), 1, + [42773] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token37, - STATE(2161), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2293), 1, sym_comment, - ACTIONS(2289), 8, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261469,7 +271049,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(2291), 49, + ACTIONS(5186), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261481,36 +271062,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261519,14 +271093,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, - [44229] = 5, - ACTIONS(3), 1, + [42846] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token37, - STATE(2162), 1, + STATE(2218), 1, + aux_sym_shebang_repeat1, + STATE(2294), 1, sym_comment, - ACTIONS(2281), 8, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261535,7 +271114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2285), 49, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261548,35 +271127,30 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261585,15 +271159,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, - [44300] = 5, - ACTIONS(249), 1, + [42917] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2163), 1, + STATE(2295), 1, sym_comment, - ACTIONS(5277), 9, - sym__newline, + ACTIONS(5298), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261602,7 +271180,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(5279), 48, + ACTIONS(5296), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261614,35 +271193,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261651,15 +271225,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, - [44371] = 5, - ACTIONS(249), 1, + [42988] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(2227), 1, aux_sym_shebang_repeat1, - STATE(2164), 1, + STATE(2296), 1, sym_comment, - ACTIONS(5281), 9, - sym__newline, + ACTIONS(5214), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261668,7 +271246,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(5283), 48, + ACTIONS(5212), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261680,35 +271259,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261717,15 +271291,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, - [44442] = 5, - ACTIONS(249), 1, + [43059] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2165), 1, + ACTIONS(5314), 1, + anon_sym_DOT, + STATE(2297), 1, sym_comment, - ACTIONS(5281), 9, + STATE(2358), 1, + aux_sym_cell_path_repeat1, + STATE(2558), 1, + sym_path, + STATE(2624), 1, + sym_cell_path, + ACTIONS(1769), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1771), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [43136] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2287), 1, + aux_sym_shebang_repeat1, + STATE(2298), 1, + sym_comment, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261734,7 +271381,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(5283), 48, + ACTIONS(5204), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261746,35 +271394,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261783,16 +271426,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, - [44513] = 6, - ACTIONS(249), 1, + [43207] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(2166), 1, + STATE(2299), 1, sym_comment, - STATE(7791), 1, + STATE(7396), 1, sym__expr_parenthesized_immediate, - ACTIONS(4850), 8, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261801,7 +271449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4848), 48, + ACTIONS(5186), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -261814,34 +271462,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261850,14 +271493,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, - [44586] = 5, - ACTIONS(249), 1, + [43280] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5285), 1, - aux_sym_cmd_identifier_token41, - STATE(2167), 1, + STATE(2159), 1, + aux_sym_shebang_repeat1, + STATE(2300), 1, sym_comment, - ACTIONS(2293), 8, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261866,7 +271514,7 @@ 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), 49, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261879,35 +271527,30 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261916,14 +271559,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, - [44657] = 5, - ACTIONS(249), 1, + [43351] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5285), 1, - aux_sym_cmd_identifier_token41, - STATE(2168), 1, + STATE(2162), 1, + aux_sym_shebang_repeat1, + STATE(2301), 1, sym_comment, - ACTIONS(2303), 8, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261932,7 +271580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2305), 49, + ACTIONS(5204), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261945,35 +271593,30 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261982,15 +271625,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44728] = 5, - ACTIONS(249), 1, + [43422] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2169), 1, + ACTIONS(5314), 1, + anon_sym_DOT, + STATE(2302), 1, sym_comment, - ACTIONS(5281), 9, + STATE(2358), 1, + aux_sym_cell_path_repeat1, + STATE(2558), 1, + sym_path, + STATE(2629), 1, + sym_cell_path, + ACTIONS(1735), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1737), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [43499] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(2303), 1, + sym_comment, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261999,7 +271717,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(5283), 48, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262010,36 +271730,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262048,15 +271761,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, - [44799] = 5, - ACTIONS(249), 1, + [43572] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(2167), 1, aux_sym_shebang_repeat1, - STATE(2170), 1, + STATE(2304), 1, sym_comment, - ACTIONS(5281), 9, - sym__newline, + ACTIONS(5206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262065,7 +271782,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(5283), 48, + ACTIONS(5204), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262077,35 +271795,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262114,15 +271827,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, - [44870] = 5, - ACTIONS(249), 1, + [43643] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2171), 1, + STATE(2305), 1, sym_comment, - ACTIONS(5281), 9, - sym__newline, + ACTIONS(5318), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262131,7 +271848,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(5283), 48, + ACTIONS(5316), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262143,35 +271861,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262180,15 +271893,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, - [44941] = 5, - ACTIONS(249), 1, + [43714] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2172), 1, + STATE(2306), 1, sym_comment, - ACTIONS(5281), 9, - sym__newline, + ACTIONS(5336), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5340), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262197,7 +271919,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(5283), 48, + ACTIONS(5237), 40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262209,35 +271932,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_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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262246,16 +271960,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45012] = 6, - ACTIONS(249), 1, + [43788] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2173), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5312), 1, + anon_sym_DASH_DASH, + STATE(2307), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4810), 8, + STATE(2805), 1, + aux_sym_decl_def_repeat1, + STATE(2973), 1, + sym_long_flag, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6246), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [43884] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4900), 1, + aux_sym_unquoted_token2, + STATE(2308), 1, + sym_comment, + ACTIONS(1709), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262264,7 +272059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4808), 48, + ACTIONS(1721), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -262277,34 +272072,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262313,16 +272103,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, - [45085] = 6, - ACTIONS(249), 1, + [43954] = 21, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2174), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5350), 1, + anon_sym_and2, + ACTIONS(5352), 1, + anon_sym_xor2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + STATE(2309), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4814), 8, + STATE(2312), 1, + aux_sym_shebang_repeat1, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262331,9 +272163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4812), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5272), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262344,34 +272174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262380,26 +272184,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, - [45158] = 5, - ACTIONS(249), 1, + [44056] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5287), 1, - aux_sym__immediate_decimal_token2, - STATE(2175), 1, + ACTIONS(5372), 1, + anon_sym_DOT, + STATE(2310), 1, sym_comment, - ACTIONS(1596), 10, + STATE(2527), 1, + aux_sym_cell_path_repeat1, + STATE(2616), 1, + sym_path, + STATE(2676), 1, + sym_cell_path, + ACTIONS(1735), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1598), 47, + ACTIONS(1737), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -262429,16 +272236,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -262446,15 +272252,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [45229] = 5, - ACTIONS(249), 1, + [44132] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2176), 1, - sym_comment, - ACTIONS(5281), 9, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5374), 1, sym__newline, + STATE(2311), 1, + sym_comment, + STATE(2320), 1, + aux_sym_shebang_repeat1, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5286), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262463,7 +272288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 48, + ACTIONS(5284), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262475,35 +272300,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_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262512,15 +272324,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, - [45300] = 5, - ACTIONS(249), 1, + [44216] = 20, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_and2, + ACTIONS(5387), 1, + anon_sym_xor2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2177), 1, + STATE(2312), 1, sym_comment, - ACTIONS(5281), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5282), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262529,7 +272382,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(5283), 48, + ACTIONS(5280), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262541,35 +272395,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, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262578,15 +272404,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, - [45371] = 5, - ACTIONS(249), 1, + [44316] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2178), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5312), 1, + anon_sym_DASH_DASH, + STATE(2313), 1, sym_comment, - ACTIONS(5281), 9, + STATE(2412), 1, + aux_sym_decl_def_repeat1, + STATE(2973), 1, + sym_long_flag, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6565), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [44412] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5407), 1, sym__newline, + STATE(2314), 1, + sym_comment, + STATE(2391), 1, + aux_sym_shebang_repeat1, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262595,7 +272532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 48, + ACTIONS(5272), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262607,35 +272544,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262644,15 +272558,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, - [45442] = 5, - ACTIONS(249), 1, + [44504] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2179), 1, + STATE(2315), 1, sym_comment, - ACTIONS(5281), 9, - sym__newline, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5278), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262661,7 +272592,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(5283), 48, + ACTIONS(5276), 36, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262673,35 +272605,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_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262710,15 +272629,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, - [45513] = 5, - ACTIONS(249), 1, + [44586] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2180), 1, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3865), 1, + anon_sym_DOLLAR, + ACTIONS(5410), 1, + anon_sym_LPAREN2, + ACTIONS(5412), 1, + anon_sym_DOT, + ACTIONS(5414), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5416), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5418), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5420), 1, + aux_sym__immediate_decimal_token5, + STATE(2316), 1, sym_comment, - ACTIONS(5281), 9, - sym__newline, + STATE(2804), 1, + sym__immediate_decimal, + STATE(2908), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1530), 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, @@ -262727,47 +272673,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5283), 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__unquoted_in_list_token1, + ACTIONS(1544), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, 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_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262776,15 +272703,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, - [45584] = 5, - ACTIONS(249), 1, + [44674] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2181), 1, + STATE(2317), 1, sym_comment, - ACTIONS(5281), 9, - sym__newline, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5278), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262793,7 +272731,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(5283), 48, + ACTIONS(5276), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262805,35 +272744,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262842,15 +272771,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, - [45655] = 5, - ACTIONS(249), 1, + [44750] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2182), 1, + STATE(2318), 1, sym_comment, - ACTIONS(5281), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5278), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262859,7 +272811,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(5283), 48, + ACTIONS(5276), 32, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262871,35 +272824,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_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262908,15 +272844,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, - [45726] = 5, - ACTIONS(249), 1, + [44836] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2183), 1, + STATE(2319), 1, sym_comment, - ACTIONS(5289), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5278), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262925,7 +272892,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(5291), 48, + ACTIONS(5276), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262937,35 +272905,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262974,15 +272919,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, - [45797] = 5, - ACTIONS(249), 1, + [44926] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2184), 1, + STATE(2320), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5322), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262991,7 +272953,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(5295), 48, + ACTIONS(5320), 36, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263003,35 +272966,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_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263040,15 +272990,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, - [45868] = 5, - ACTIONS(249), 1, + [45008] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2185), 1, - sym_comment, - STATE(2224), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5297), 9, - sym__newline, + STATE(2321), 1, + sym_comment, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5322), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263057,7 +273018,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(5299), 48, + ACTIONS(5320), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263069,35 +273031,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263106,15 +273058,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, - [45939] = 5, - ACTIONS(249), 1, + [45084] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2186), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5422), 1, + sym__newline, + STATE(2322), 1, sym_comment, - STATE(2225), 1, + STATE(2395), 1, aux_sym_shebang_repeat1, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5270), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263123,7 +273108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5165), 48, + ACTIONS(5268), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263135,35 +273120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263172,15 +273134,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, - [46010] = 5, - ACTIONS(249), 1, + [45176] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2187), 1, + STATE(2323), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5322), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263189,7 +273174,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(5295), 48, + ACTIONS(5320), 32, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263201,35 +273187,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_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263238,15 +273207,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, - [46081] = 5, - ACTIONS(249), 1, + [45262] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2188), 1, - sym_comment, - STATE(2226), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5163), 9, - sym__newline, + STATE(2324), 1, + sym_comment, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5322), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263255,7 +273231,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(5165), 48, + ACTIONS(5320), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263267,35 +273244,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263304,15 +273273,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, - [46152] = 5, - ACTIONS(249), 1, + [45334] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2189), 1, + ACTIONS(5425), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5427), 1, + aux_sym__immediate_decimal_token2, + STATE(2325), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(1623), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1621), 48, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263321,47 +273329,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(5295), 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, @@ -263370,15 +273337,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, - [46223] = 5, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [45406] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2116), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2190), 1, + STATE(2326), 1, sym_comment, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5322), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263387,7 +273393,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(5171), 48, + ACTIONS(5320), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263399,35 +273406,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, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263436,15 +273417,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, - [46294] = 5, - ACTIONS(249), 1, + [45502] = 21, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2191), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5350), 1, + anon_sym_and2, + ACTIONS(5352), 1, + anon_sym_xor2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + STATE(2327), 1, sym_comment, - STATE(2227), 1, + STATE(2329), 1, aux_sym_shebang_repeat1, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5286), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263453,7 +273477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5165), 48, + ACTIONS(5284), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263465,35 +273489,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, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263502,15 +273498,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, - [46365] = 5, - ACTIONS(249), 1, + [45604] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_and2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2192), 1, + STATE(2328), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5322), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263519,7 +273554,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(5295), 48, + ACTIONS(5320), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263531,35 +273567,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_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_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263568,14 +273577,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, - [46436] = 5, - ACTIONS(3), 1, + [45702] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token37, - STATE(2193), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_and2, + ACTIONS(5387), 1, + anon_sym_xor2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2329), 1, sym_comment, - ACTIONS(1628), 8, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5322), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263584,7 +273635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1640), 49, + ACTIONS(5320), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263597,35 +273648,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_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263634,15 +273657,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, - [46507] = 5, - ACTIONS(249), 1, + [45802] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2194), 1, + ACTIONS(5429), 1, + anon_sym_DASH2, + ACTIONS(5431), 1, + anon_sym_PLUS2, + STATE(2330), 1, sym_comment, - STATE(2228), 1, - aux_sym_shebang_repeat1, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5336), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5340), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5433), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5239), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263651,7 +273689,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(5165), 48, + ACTIONS(5237), 37, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263663,35 +273702,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_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_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263700,13 +273727,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, - [46578] = 4, - ACTIONS(3), 1, + [45882] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2195), 1, + ACTIONS(5429), 1, + anon_sym_DASH2, + ACTIONS(5431), 1, + anon_sym_PLUS2, + STATE(2331), 1, sym_comment, - ACTIONS(2289), 18, - sym__newline, + ACTIONS(5336), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5340), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5433), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5435), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5437), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263715,16 +273765,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_token4, - ACTIONS(2291), 40, + ACTIONS(5237), 33, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263736,44 +273778,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_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, - [46647] = 5, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [45966] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2196), 1, + STATE(2332), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263782,7 +273821,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(5295), 48, + ACTIONS(5237), 42, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263794,35 +273834,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263831,15 +273864,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, - [46718] = 5, - ACTIONS(249), 1, + [46036] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2197), 1, + ACTIONS(5429), 1, + anon_sym_DASH2, + ACTIONS(5431), 1, + anon_sym_PLUS2, + ACTIONS(5443), 1, + anon_sym_bit_DASHand2, + ACTIONS(5445), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5447), 1, + anon_sym_bit_DASHor2, + STATE(2333), 1, sym_comment, - STATE(2230), 1, - aux_sym_shebang_repeat1, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5336), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5340), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5433), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5435), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5441), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5437), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5439), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263848,7 +273916,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(5165), 48, + ACTIONS(5237), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263860,35 +273929,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_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_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263897,15 +273941,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, - [46789] = 5, - ACTIONS(249), 1, + [46130] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2198), 1, + ACTIONS(5429), 1, + anon_sym_DASH2, + ACTIONS(5431), 1, + anon_sym_PLUS2, + ACTIONS(5443), 1, + anon_sym_bit_DASHand2, + ACTIONS(5445), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5447), 1, + anon_sym_bit_DASHor2, + ACTIONS(5449), 1, + anon_sym_and2, + STATE(2334), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(5336), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5340), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5433), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5435), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5441), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5437), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5439), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263914,7 +273995,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(5295), 48, + ACTIONS(5237), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263926,35 +274008,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, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_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_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263963,15 +274019,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, - [46860] = 5, - ACTIONS(249), 1, + [46226] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2199), 1, + ACTIONS(5429), 1, + anon_sym_DASH2, + ACTIONS(5431), 1, + anon_sym_PLUS2, + ACTIONS(5443), 1, + anon_sym_bit_DASHand2, + ACTIONS(5445), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5447), 1, + anon_sym_bit_DASHor2, + ACTIONS(5449), 1, + anon_sym_and2, + ACTIONS(5451), 1, + anon_sym_xor2, + STATE(2335), 1, sym_comment, - STATE(2233), 1, - aux_sym_shebang_repeat1, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5336), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5340), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5433), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5435), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5441), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5437), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5439), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263980,7 +274075,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(5165), 48, + ACTIONS(5237), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263992,35 +274088,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_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_RBRACE, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264029,15 +274098,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, - [46931] = 5, - ACTIONS(249), 1, + [46324] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2200), 1, + ACTIONS(5429), 1, + anon_sym_DASH2, + ACTIONS(5431), 1, + anon_sym_PLUS2, + STATE(2336), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(5336), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5340), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5433), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5435), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5437), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5439), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264046,7 +274141,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(5295), 48, + ACTIONS(5237), 29, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264058,35 +274154,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, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264095,15 +274171,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, - [47002] = 5, - ACTIONS(249), 1, + [46410] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2118), 1, - aux_sym_shebang_repeat1, - STATE(2201), 1, + ACTIONS(5429), 1, + anon_sym_DASH2, + ACTIONS(5431), 1, + anon_sym_PLUS2, + STATE(2337), 1, sym_comment, - ACTIONS(5169), 9, - sym__newline, + ACTIONS(5336), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5340), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264112,7 +274200,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(5171), 48, + ACTIONS(5237), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264124,35 +274213,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264161,15 +274240,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, - [47073] = 5, - ACTIONS(249), 1, + [46488] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2202), 1, + ACTIONS(5429), 1, + anon_sym_DASH2, + ACTIONS(5431), 1, + anon_sym_PLUS2, + STATE(2338), 1, sym_comment, - STATE(2234), 1, - aux_sym_shebang_repeat1, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5336), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5340), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5433), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5435), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5441), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5437), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5439), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264178,7 +274286,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(5165), 48, + ACTIONS(5237), 27, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264190,35 +274299,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_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_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264227,15 +274314,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, - [47144] = 5, - ACTIONS(249), 1, + [46576] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2203), 1, + ACTIONS(5429), 1, + anon_sym_DASH2, + ACTIONS(5431), 1, + anon_sym_PLUS2, + ACTIONS(5443), 1, + anon_sym_bit_DASHand2, + STATE(2339), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(5336), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5340), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5433), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5435), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5441), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5437), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5439), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264244,7 +274362,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(5295), 48, + ACTIONS(5237), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264256,35 +274375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264293,15 +274389,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, - [47215] = 5, - ACTIONS(249), 1, + [46666] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2204), 1, + ACTIONS(5429), 1, + anon_sym_DASH2, + ACTIONS(5431), 1, + anon_sym_PLUS2, + ACTIONS(5443), 1, + anon_sym_bit_DASHand2, + ACTIONS(5445), 1, + anon_sym_bit_DASHxor2, + STATE(2340), 1, sym_comment, - STATE(2235), 1, - aux_sym_shebang_repeat1, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5336), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5340), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5433), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5435), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5441), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5437), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5439), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264310,7 +274439,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(5165), 48, + ACTIONS(5237), 25, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264322,35 +274452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264359,15 +274465,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, - [47286] = 5, - ACTIONS(249), 1, + [46758] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2205), 1, + STATE(2341), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5322), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264376,73 +274510,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(5295), 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, - [47357] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2206), 1, - sym_comment, - STATE(2236), 1, - aux_sym_shebang_repeat1, - ACTIONS(5163), 9, + ACTIONS(5320), 28, 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(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264454,35 +274523,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_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264491,15 +274539,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, - [47428] = 5, - ACTIONS(249), 1, + [46846] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2207), 1, + STATE(2342), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5282), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264508,7 +274584,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(5295), 48, + ACTIONS(5280), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264520,35 +274597,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_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264557,15 +274613,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, - [47499] = 5, - ACTIONS(249), 1, + [46934] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2208), 1, + ACTIONS(5422), 1, + sym__newline, + STATE(2343), 1, sym_comment, - STATE(2237), 1, + STATE(2370), 1, aux_sym_shebang_repeat1, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5270), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264574,7 +274639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5165), 48, + ACTIONS(5268), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264586,35 +274651,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264623,15 +274680,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, - [47570] = 5, - ACTIONS(249), 1, + [47008] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2209), 1, + STATE(2344), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5322), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264640,7 +274711,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(5295), 48, + ACTIONS(5320), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264652,35 +274724,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_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264689,15 +274750,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, - [47641] = 5, - ACTIONS(249), 1, + [47088] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2210), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5422), 1, + sym__newline, + STATE(2345), 1, sym_comment, - STATE(2238), 1, + STATE(2400), 1, aux_sym_shebang_repeat1, - ACTIONS(5163), 9, - sym__newline, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5270), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264706,7 +274802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5165), 48, + ACTIONS(5268), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264718,35 +274814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264755,15 +274827,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, - [47712] = 5, - ACTIONS(249), 1, + [47182] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2211), 1, + STATE(2346), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5322), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264772,73 +274875,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(5295), 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, - [47783] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2212), 1, - sym_comment, - STATE(2240), 1, - aux_sym_shebang_repeat1, - ACTIONS(5163), 9, + ACTIONS(5320), 26, 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(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264850,35 +274888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264887,15 +274902,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, - [47854] = 5, - ACTIONS(249), 1, + [47272] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5374), 1, + sym__newline, + STATE(2341), 1, aux_sym_shebang_repeat1, - STATE(2213), 1, + STATE(2347), 1, sym_comment, - ACTIONS(5293), 9, - sym__newline, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5286), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264904,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(5295), 48, + ACTIONS(5284), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264916,35 +274961,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_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264953,15 +274977,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, - [47925] = 5, - ACTIONS(249), 1, + [47362] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2214), 1, - sym_comment, - STATE(2241), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5163), 9, - sym__newline, + STATE(2348), 1, + sym_comment, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5322), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264970,7 +275027,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(5165), 48, + ACTIONS(5320), 25, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264982,35 +275040,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265019,16 +275053,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, - [47996] = 6, - ACTIONS(249), 1, + [47454] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2215), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2349), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5322), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265037,8 +275105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, + ACTIONS(5320), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265050,34 +275117,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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265086,16 +275130,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, - [48069] = 6, - ACTIONS(249), 1, + [47548] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2216), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5350), 1, + anon_sym_and2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + ACTIONS(5407), 1, + sym__newline, + STATE(2350), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + STATE(2376), 1, + aux_sym_shebang_repeat1, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265104,9 +275188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5272), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265117,34 +275199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265153,16 +275210,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48142] = 6, - ACTIONS(249), 1, + [47648] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2217), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5374), 1, + sym__newline, + STATE(2323), 1, + aux_sym_shebang_repeat1, + STATE(2351), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5286), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265171,9 +275252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5284), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265184,60 +275263,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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [48215] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(2218), 1, - sym_comment, - ACTIONS(2281), 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_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265246,63 +275284,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, - ACTIONS(2285), 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, - [48288] = 5, - ACTIONS(249), 1, + [47736] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5301), 1, - anon_sym_QMARK2, - STATE(2219), 1, + ACTIONS(5453), 1, + anon_sym_DOT, + ACTIONS(5455), 1, + aux_sym__immediate_decimal_token2, + STATE(2352), 1, sym_comment, - ACTIONS(1042), 7, + ACTIONS(1607), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1044), 50, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -265333,42 +275335,404 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [47808] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5422), 1, sym__newline, + STATE(2353), 1, + sym_comment, + STATE(2405), 1, + aux_sym_shebang_repeat1, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5270), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5268), 23, 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [47904] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + ACTIONS(5374), 1, + sym__newline, + STATE(2326), 1, + aux_sym_shebang_repeat1, + STATE(2354), 1, + sym_comment, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5286), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5284), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [48002] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5407), 1, + sym__newline, + STATE(2342), 1, + aux_sym_shebang_repeat1, + STATE(2355), 1, + sym_comment, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5272), 27, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [48092] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5457), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5459), 1, + aux_sym__immediate_decimal_token2, + STATE(2356), 1, + sym_comment, + ACTIONS(1621), 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_token34, + 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(1623), 44, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - [48359] = 5, - ACTIONS(249), 1, + [48164] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5303), 1, - anon_sym_QMARK2, - STATE(2220), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2357), 1, + sym_comment, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5278), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5276), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [48236] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5314), 1, + anon_sym_DOT, + STATE(2358), 1, sym_comment, - ACTIONS(1048), 7, + STATE(2373), 1, + aux_sym_cell_path_repeat1, + STATE(2558), 1, + sym_path, + ACTIONS(967), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1050), 50, + ACTIONS(969), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -265399,11 +275763,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, @@ -265411,7 +275773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -265419,16 +275781,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [48430] = 6, + [48310] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2273), 1, + ACTIONS(1579), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5461), 1, + anon_sym_DOLLAR, + ACTIONS(5463), 1, anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(2221), 1, + ACTIONS(5467), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5469), 1, + aux_sym__immediate_decimal_token5, + STATE(2359), 1, sym_comment, - ACTIONS(1090), 16, + STATE(2874), 1, + sym__immediate_decimal, + ACTIONS(1577), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5465), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3061), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 45, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265445,8 +275852,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, - ACTIONS(1092), 40, - ts_builtin_sym_end, + aux_sym__unquoted_in_list_token1, + [48394] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2360), 1, + sym_comment, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5278), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5276), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265458,44 +275919,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, - [48503] = 6, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [48490] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2222), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2361), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265504,8 +275965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, + ACTIONS(5328), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265517,34 +275977,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_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265553,16 +276002,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, - [48576] = 6, - ACTIONS(249), 1, + [48572] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2223), 1, + STATE(2362), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + ACTIONS(5250), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265571,8 +276021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, + ACTIONS(5252), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265584,34 +276033,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265620,15 +276066,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, - [48649] = 5, - ACTIONS(249), 1, + [48640] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5471), 1, + sym__newline, + STATE(2315), 1, aux_sym_shebang_repeat1, - STATE(2224), 1, + STATE(2363), 1, sym_comment, - ACTIONS(5305), 9, - sym__newline, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5334), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265637,7 +276102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5307), 48, + ACTIONS(5332), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265649,35 +276114,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_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265686,15 +276138,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, - [48720] = 5, - ACTIONS(249), 1, + [48724] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2225), 1, + STATE(2364), 1, sym_comment, - ACTIONS(5309), 9, - sym__newline, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5330), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265703,7 +276166,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(5311), 48, + ACTIONS(5328), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265715,35 +276179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265752,15 +276206,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, - [48791] = 5, - ACTIONS(249), 1, + [48800] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5471), 1, + sym__newline, + STATE(2317), 1, aux_sym_shebang_repeat1, - STATE(2226), 1, + STATE(2365), 1, sym_comment, - ACTIONS(5309), 9, - sym__newline, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5334), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265769,7 +276236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 48, + ACTIONS(5332), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265781,35 +276248,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265818,15 +276275,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48862] = 5, - ACTIONS(249), 1, + [48878] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2227), 1, + STATE(2366), 1, sym_comment, - ACTIONS(5309), 9, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5330), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5328), 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [48964] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5407), 1, sym__newline, + STATE(2367), 1, + sym_comment, + STATE(2415), 1, + aux_sym_shebang_repeat1, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265835,7 +276402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 48, + ACTIONS(5272), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265847,35 +276414,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_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265884,15 +276426,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48933] = 5, - ACTIONS(249), 1, + [49060] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5471), 1, + sym__newline, + STATE(2318), 1, aux_sym_shebang_repeat1, - STATE(2228), 1, + STATE(2368), 1, sym_comment, - ACTIONS(5309), 9, - sym__newline, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5334), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265901,7 +276468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 48, + ACTIONS(5332), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265913,35 +276480,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_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265950,25 +276500,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, - [49004] = 7, - ACTIONS(249), 1, + [49148] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5219), 1, + ACTIONS(5372), 1, anon_sym_DOT, - STATE(2229), 1, + STATE(2369), 1, sym_comment, - STATE(2239), 1, + STATE(2527), 1, aux_sym_cell_path_repeat1, - STATE(2537), 1, + STATE(2616), 1, sym_path, - ACTIONS(1027), 6, + STATE(2686), 1, + sym_cell_path, + ACTIONS(961), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1029), 49, + ACTIONS(963), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -266000,17 +276552,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -266018,15 +276568,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [49079] = 5, - ACTIONS(249), 1, + [49224] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2230), 1, + STATE(2370), 1, sym_comment, - ACTIONS(5309), 9, - sym__newline, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5330), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266035,7 +276592,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(5311), 48, + ACTIONS(5328), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266047,35 +276605,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266084,16 +276634,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, - [49150] = 6, - ACTIONS(3), 1, + [49296] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(2231), 1, + ACTIONS(5374), 1, + sym__newline, + STATE(2324), 1, + aux_sym_shebang_repeat1, + STATE(2371), 1, sym_comment, - ACTIONS(2293), 16, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5286), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266102,17 +276660,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), 40, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5284), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266123,52 +276671,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [49223] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(2232), 1, - sym_comment, - ACTIONS(2303), 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_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266177,56 +276701,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, - ACTIONS(2305), 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, - [49296] = 5, - ACTIONS(249), 1, + [49370] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5471), 1, + sym__newline, + STATE(2357), 1, aux_sym_shebang_repeat1, - STATE(2233), 1, + STATE(2372), 1, sym_comment, - ACTIONS(5309), 9, - sym__newline, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266235,7 +276727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 48, + ACTIONS(5332), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266247,35 +276739,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266284,15 +276768,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, - [49367] = 5, - ACTIONS(249), 1, + [49444] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2234), 1, + ACTIONS(5474), 1, + anon_sym_DOT, + STATE(2558), 1, + sym_path, + STATE(2373), 2, sym_comment, - ACTIONS(5309), 9, + aux_sym_cell_path_repeat1, + ACTIONS(971), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(973), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [49516] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + ACTIONS(5422), 1, sym__newline, + STATE(2374), 1, + sym_comment, + STATE(2375), 1, + aux_sym_shebang_repeat1, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5270), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266301,7 +276890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 48, + ACTIONS(5268), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266313,35 +276902,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, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266350,15 +276913,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, - [49438] = 5, - ACTIONS(249), 1, + [49614] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2235), 1, + STATE(2375), 1, sym_comment, - ACTIONS(5309), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266367,7 +276967,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(5311), 48, + ACTIONS(5328), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266379,35 +276980,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, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266416,15 +276991,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, - [49509] = 5, - ACTIONS(249), 1, + [49710] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_and2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2236), 1, + STATE(2376), 1, sym_comment, - ACTIONS(5309), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5282), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266433,7 +277047,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(5311), 48, + ACTIONS(5280), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266445,35 +277060,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_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_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266482,15 +277070,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, - [49580] = 5, - ACTIONS(249), 1, + [49808] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + ACTIONS(5471), 1, + sym__newline, + STATE(2360), 1, aux_sym_shebang_repeat1, - STATE(2237), 1, + STATE(2377), 1, sym_comment, - ACTIONS(5309), 9, - sym__newline, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5334), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266499,7 +277126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 48, + ACTIONS(5332), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266511,35 +277138,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, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266548,15 +277149,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, - [49651] = 5, - ACTIONS(249), 1, + [49906] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_and2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2238), 1, + STATE(2378), 1, sym_comment, - ACTIONS(5309), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266565,7 +277205,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(5311), 48, + ACTIONS(5328), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266577,35 +277218,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_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_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266614,82 +277228,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, - [49722] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5313), 1, - anon_sym_DOT, - STATE(2537), 1, - sym_path, - STATE(2239), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1033), 49, - sym_raw_string_begin, - 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, - [49795] = 5, - ACTIONS(249), 1, + [50004] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2240), 1, + STATE(2379), 1, sym_comment, - ACTIONS(5309), 9, - sym__newline, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5282), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266698,7 +277259,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(5311), 48, + ACTIONS(5280), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266710,35 +277272,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_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266747,15 +277298,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, - [49866] = 5, - ACTIONS(249), 1, + [50084] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2241), 1, + STATE(2380), 1, sym_comment, - ACTIONS(5309), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5278), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266764,7 +277350,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(5311), 48, + ACTIONS(5276), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266776,35 +277363,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_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266813,16 +277375,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, - [49937] = 6, - ACTIONS(249), 1, + [50178] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2242), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_and2, + ACTIONS(5387), 1, + anon_sym_xor2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2381), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266831,8 +277433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, + ACTIONS(5328), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266844,34 +277445,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266880,16 +277455,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, - [50010] = 6, - ACTIONS(249), 1, + [50278] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2243), 1, + ACTIONS(5422), 1, + sym__newline, + STATE(2364), 1, + aux_sym_shebang_repeat1, + STATE(2382), 1, sym_comment, - STATE(7421), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5019), 8, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5270), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266898,9 +277485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5268), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266911,34 +277496,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_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266947,16 +277524,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, - [50083] = 6, - ACTIONS(249), 1, + [50356] = 21, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(2244), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5350), 1, + anon_sym_and2, + ACTIONS(5352), 1, + anon_sym_xor2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + STATE(2383), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4846), 8, + STATE(2423), 1, + aux_sym_shebang_repeat1, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5334), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266965,9 +277584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4844), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5332), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266978,34 +277595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267014,19 +277605,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, - [50156] = 7, - ACTIONS(249), 1, + [50458] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5374), 1, sym__newline, - STATE(2245), 1, - sym_comment, - STATE(2401), 1, + STATE(2344), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5263), 8, + STATE(2384), 1, + sym_comment, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5286), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267035,7 +277638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 45, + ACTIONS(5284), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267047,32 +277650,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_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267081,51 +277676,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, - [50230] = 16, - ACTIONS(249), 1, + [50540] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5331), 1, - aux_sym_expr_binary_token13, - ACTIONS(5333), 1, - aux_sym_expr_binary_token14, - ACTIONS(5335), 1, - aux_sym_expr_binary_token15, - ACTIONS(5337), 1, - aux_sym_expr_binary_token16, - ACTIONS(5339), 1, - aux_sym_expr_binary_token17, - STATE(2246), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2385), 1, sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5325), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5327), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5329), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5323), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5341), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5343), 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(5133), 8, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267134,7 +277721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5131), 22, + ACTIONS(5328), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267147,8 +277734,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_token18, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267157,33 +277750,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, - [50322] = 9, - ACTIONS(249), 1, + [50628] = 20, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2247), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5350), 1, + anon_sym_and2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + ACTIONS(5422), 1, + sym__newline, + STATE(2378), 1, + aux_sym_shebang_repeat1, + STATE(2386), 1, sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5325), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5327), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5323), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5343), 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(5133), 8, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5270), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267192,8 +277808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5131), 33, - sym__newline, + ACTIONS(5268), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267205,19 +277820,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_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_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_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267226,26 +277830,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, - [50400] = 8, - ACTIONS(249), 1, + [50728] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2248), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5471), 1, + sym__newline, + STATE(2387), 1, sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5325), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5327), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5323), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5133), 8, + STATE(2428), 1, + aux_sym_shebang_repeat1, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5334), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267254,8 +277877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5131), 39, - sym__newline, + ACTIONS(5332), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267267,25 +277889,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_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267294,13 +277905,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, - [50476] = 4, - ACTIONS(249), 1, + [50818] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2249), 1, - sym_comment, - ACTIONS(2569), 9, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5422), 1, sym__newline, + STATE(2361), 1, + aux_sym_shebang_repeat1, + STATE(2388), 1, + sym_comment, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5270), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267309,7 +277941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2571), 48, + ACTIONS(5268), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267321,35 +277953,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_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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267358,29 +277977,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, - [50544] = 9, - ACTIONS(249), 1, + [50902] = 21, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5350), 1, + anon_sym_and2, + ACTIONS(5352), 1, + anon_sym_xor2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + STATE(2381), 1, aux_sym_shebang_repeat1, - STATE(2250), 1, + STATE(2389), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5244), 9, - sym__newline, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5270), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267389,7 +278037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5246), 37, + ACTIONS(5268), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267401,24 +278049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267427,51 +278058,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, - [50622] = 16, - ACTIONS(249), 1, + [51004] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5350), 1, + anon_sym_and2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + ACTIONS(5374), 1, sym__newline, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2251), 1, - sym_comment, - STATE(2323), 1, + STATE(2328), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5263), 8, + STATE(2390), 1, + sym_comment, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5286), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267480,7 +278116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 22, + ACTIONS(5284), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267492,9 +278128,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_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267503,130 +278138,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, - [50714] = 17, - ACTIONS(249), 1, + [51104] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5380), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5386), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5389), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5392), 1, - anon_sym_DQUOTE, - ACTIONS(5398), 1, - sym_raw_string_begin, - STATE(7403), 1, - sym__val_number_decimal, - STATE(7473), 1, - sym__command_name, - STATE(7604), 1, - sym_cmd_identifier, - STATE(7605), 1, - sym_val_string, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2391), 1, + sym_comment, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, ACTIONS(5383), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, ACTIONS(5395), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2252), 2, - sym_comment, - aux_sym_command_list_repeat1, - STATE(5521), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5371), 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(5377), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5374), 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, - [50808] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5401), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2253), 1, - sym_comment, - STATE(2339), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5263), 8, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5282), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267635,7 +278186,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(5265), 21, + ACTIONS(5280), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267647,8 +278199,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_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267657,30 +278213,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, - [50902] = 10, - ACTIONS(249), 1, + [51194] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(2254), 1, - sym_comment, - STATE(2299), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5252), 8, + STATE(2392), 1, + sym_comment, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5330), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267689,7 +278244,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(5254), 37, + ACTIONS(5328), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267701,24 +278257,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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267727,24 +278283,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, - [50982] = 4, - ACTIONS(249), 1, + [51274] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2255), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5312), 1, + anon_sym_DASH_DASH, + STATE(2307), 1, + aux_sym_decl_def_repeat1, + STATE(2393), 1, sym_comment, - ACTIONS(1536), 10, + STATE(2973), 1, + sym_long_flag, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6330), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1538), 47, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -267774,58 +278356,36 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, - [51050] = 11, - ACTIONS(249), 1, + [51370] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2256), 1, - sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5244), 9, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5471), 1, sym__newline, + STATE(2394), 1, + sym_comment, + STATE(2433), 1, + aux_sym_shebang_repeat1, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5334), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267834,7 +278394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5246), 27, + ACTIONS(5332), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267846,14 +278406,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, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267862,13 +278432,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, - [51132] = 4, - ACTIONS(249), 1, + [51452] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2257), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2395), 1, sym_comment, - ACTIONS(2398), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267877,7 +278480,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(2400), 48, + ACTIONS(5328), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267889,35 +278493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267926,55 +278507,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, - [51200] = 18, - ACTIONS(249), 1, + [51542] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5401), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(5412), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2258), 1, + ACTIONS(5477), 1, + anon_sym_LBRACK2, + STATE(2396), 1, sym_comment, - STATE(2364), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5263), 8, + ACTIONS(2337), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267983,7 +278528,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(5265), 20, + ACTIONS(2341), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267994,8 +278541,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, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268004,19 +278572,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, - [51296] = 7, - ACTIONS(249), 1, + [51612] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5422), 1, sym__newline, - STATE(2259), 1, - sym_comment, - STATE(2268), 1, + STATE(2385), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5252), 8, + STATE(2397), 1, + sym_comment, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5270), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268025,7 +278619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5254), 45, + ACTIONS(5268), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268037,32 +278631,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, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268071,13 +278647,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, - [51370] = 4, - ACTIONS(249), 1, + [51702] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2260), 1, - sym_comment, - ACTIONS(2406), 9, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5471), 1, sym__newline, + STATE(2319), 1, + aux_sym_shebang_repeat1, + STATE(2398), 1, + sym_comment, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5334), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268086,7 +278697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2408), 48, + ACTIONS(5332), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268098,35 +278709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268135,13 +278723,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, - [51438] = 4, - ACTIONS(249), 1, + [51794] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2261), 1, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5461), 1, + anon_sym_DOLLAR, + ACTIONS(5463), 1, + anon_sym_LPAREN2, + ACTIONS(5467), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5469), 1, + aux_sym__immediate_decimal_token5, + STATE(2399), 1, sym_comment, - ACTIONS(2506), 9, - sym__newline, + STATE(2894), 1, + sym__immediate_decimal, + ACTIONS(1544), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5465), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3016), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1530), 45, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268150,47 +278786,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(2508), 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, @@ -268199,42 +278794,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, - [51506] = 12, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [51878] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(2262), 1, - sym_comment, - STATE(2279), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5252), 8, + STATE(2400), 1, + sym_comment, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268243,7 +278845,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(5254), 27, + ACTIONS(5328), 25, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268255,14 +278858,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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268271,122 +278871,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, - [51590] = 18, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2263), 1, - sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6271), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [51686] = 12, - ACTIONS(249), 1, + [51970] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2264), 1, + STATE(2401), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5244), 9, - sym__newline, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5282), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268395,7 +278905,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(5246), 25, + ACTIONS(5280), 36, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268407,12 +278918,22 @@ static 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268421,14 +278942,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, - [51770] = 5, - ACTIONS(249), 1, + [52052] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5416), 1, - aux_sym_cmd_identifier_token41, - STATE(2265), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5374), 1, + sym__newline, + STATE(2346), 1, + aux_sym_shebang_repeat1, + STATE(2402), 1, sym_comment, - ACTIONS(2293), 8, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5286), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268437,9 +278992,7 @@ 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(5284), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268450,34 +279003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268486,19 +279018,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, - [51840] = 7, - ACTIONS(249), 1, + [52144] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5471), 1, sym__newline, - STATE(2266), 1, + STATE(2403), 1, sym_comment, - STATE(2306), 1, + STATE(2417), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5259), 8, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5334), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268507,7 +279070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 45, + ACTIONS(5332), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268519,32 +279082,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268553,82 +279095,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, - [51914] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2267), 1, - sym_comment, - ACTIONS(1528), 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(1530), 47, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [51982] = 6, - ACTIONS(249), 1, + [52238] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5407), 1, + sym__newline, + STATE(2379), 1, aux_sym_shebang_repeat1, - STATE(2268), 1, + STATE(2404), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5277), 9, - sym__newline, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5274), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268637,7 +279128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5279), 45, + ACTIONS(5272), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268649,32 +279140,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_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268683,14 +279166,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, - [52054] = 5, - ACTIONS(249), 1, + [52320] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5416), 1, - aux_sym_cmd_identifier_token41, - STATE(2269), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2405), 1, sym_comment, - ACTIONS(2303), 8, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268699,8 +279218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2305), 48, - ts_builtin_sym_end, + ACTIONS(5328), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268712,34 +279230,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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268748,23 +279243,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, - [52124] = 7, - ACTIONS(249), 1, + [52414] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2270), 1, + STATE(2406), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5277), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5282), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268773,7 +279293,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(5279), 41, + ACTIONS(5280), 25, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268785,28 +279306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268815,12 +279319,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, - [52198] = 4, - ACTIONS(249), 1, + [52506] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2271), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5471), 1, + sym__newline, + STATE(2380), 1, + aux_sym_shebang_repeat1, + STATE(2407), 1, sym_comment, - ACTIONS(2418), 8, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5334), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268829,8 +279373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2420), 49, - sym__newline, + ACTIONS(5332), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268842,35 +279385,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268879,15 +279397,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52266] = 5, - ACTIONS(249), 1, + [52602] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4842), 1, - aux_sym_unquoted_token2, - STATE(2272), 1, - sym_comment, - ACTIONS(1628), 9, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5422), 1, sym__newline, + STATE(2366), 1, + aux_sym_shebang_repeat1, + STATE(2408), 1, + sym_comment, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5270), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268896,7 +279439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1640), 47, + ACTIONS(5268), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268908,34 +279451,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_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268944,102 +279471,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, - [52336] = 18, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(5427), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5429), 1, - anon_sym_DQUOTE, - ACTIONS(5433), 1, - sym_raw_string_begin, - STATE(1453), 1, - sym__command_name, - STATE(2273), 1, - sym_comment, - STATE(2493), 1, - sym_cmd_identifier, - STATE(2494), 1, - sym_val_string, - STATE(7107), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2500), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5421), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5425), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5423), 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, - [52432] = 8, - ACTIONS(249), 1, + [52690] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5374), 1, sym__newline, - STATE(2274), 1, - sym_comment, - STATE(2311), 1, + STATE(2348), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5259), 8, + STATE(2409), 1, + sym_comment, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5286), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269048,7 +279523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 41, + ACTIONS(5284), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269060,28 +279535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269090,13 +279548,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, - [52508] = 4, - ACTIONS(249), 1, + [52784] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2275), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2410), 1, sym_comment, - ACTIONS(2289), 9, - sym__newline, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5282), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269105,7 +279576,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(2291), 48, + ACTIONS(5280), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269117,35 +279589,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269154,26 +279616,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, - [52576] = 8, - ACTIONS(249), 1, + [52860] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_and2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2276), 1, + STATE(2411), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5277), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5278), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269182,7 +279672,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(5279), 39, + ACTIONS(5276), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269194,26 +279685,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, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269222,13 +279695,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52652] = 4, - ACTIONS(249), 1, + [52958] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2277), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5312), 1, + anon_sym_DASH_DASH, + STATE(2412), 1, sym_comment, - ACTIONS(2510), 9, + STATE(2805), 1, + aux_sym_decl_def_repeat1, + STATE(2973), 1, + sym_long_flag, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6273), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [53054] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5245), 1, sym__newline, + STATE(2413), 1, + sym_comment, + ACTIONS(5250), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5254), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269237,7 +279795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2512), 48, + ACTIONS(5248), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269250,34 +279808,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -269286,45 +279816,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, - [52720] = 13, - ACTIONS(249), 1, + ACTIONS(5252), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53128] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(2278), 1, + ACTIONS(1046), 1, + aux_sym_record_entry_token1, + STATE(2414), 1, sym_comment, - STATE(2281), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5252), 8, + ACTIONS(1030), 14, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269333,7 +279862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5254), 25, + ACTIONS(1032), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269344,13 +279873,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, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269359,41 +279905,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, - [52806] = 11, - ACTIONS(249), 1, + [53198] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2279), 1, + STATE(2415), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5277), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5282), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269402,7 +279957,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(5279), 27, + ACTIONS(5280), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269414,14 +279970,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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269430,15 +279982,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, - [52888] = 5, - ACTIONS(3), 1, + [53292] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(3127), 1, + anon_sym_DQUOTE, + ACTIONS(3133), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5292), 1, + sym__newline, + STATE(2416), 1, + sym_comment, + STATE(2571), 1, + aux_sym_command_list_repeat1, + STATE(2869), 1, + aux_sym_shebang_repeat1, + STATE(3723), 1, + sym__val_number_decimal, + STATE(7136), 1, + sym__command_name, + STATE(7397), 1, + sym_val_string, + STATE(7535), 1, + sym_cmd_identifier, + ACTIONS(3129), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5497), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5288), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5290), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - STATE(2280), 1, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [53388] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(2417), 1, sym_comment, - ACTIONS(2281), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5278), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269447,7 +280110,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(2285), 47, + ACTIONS(5276), 25, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269459,34 +280123,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_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269495,44 +280136,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, - [52958] = 12, - ACTIONS(249), 1, + [53480] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2281), 1, + ACTIONS(2550), 1, + anon_sym_DOLLAR, + ACTIONS(5302), 1, + anon_sym_LPAREN2, + ACTIONS(5479), 1, + anon_sym_DOT, + ACTIONS(5483), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5485), 1, + aux_sym__immediate_decimal_token5, + STATE(2418), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5277), 9, - sym__newline, + STATE(2825), 1, + sym__immediate_decimal, + ACTIONS(1591), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5481), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2801), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1581), 45, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269541,24 +280199,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(5279), 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, @@ -269567,27 +280207,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, - [53042] = 9, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [53564] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5374), 1, sym__newline, - STATE(2282), 1, - sym_comment, - STATE(2316), 1, + STATE(2321), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5259), 8, + STATE(2419), 1, + sym_comment, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5286), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269596,7 +280238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 39, + ACTIONS(5284), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269608,26 +280250,25 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269636,46 +280277,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, - [53120] = 13, - ACTIONS(249), 1, + [53642] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2104), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5407), 1, + sym__newline, + STATE(2406), 1, aux_sym_shebang_repeat1, - STATE(2283), 1, + STATE(2420), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5277), 9, - sym__newline, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269684,7 +280329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5279), 24, + ACTIONS(5272), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269696,11 +280341,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_token14, - 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269709,23 +280354,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, - [53206] = 7, - ACTIONS(249), 1, + [53736] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2284), 1, + STATE(2421), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5244), 9, - sym__newline, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5282), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269734,7 +280378,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(5246), 41, + ACTIONS(5280), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269746,28 +280391,27 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269776,156 +280420,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, - [53280] = 6, - ACTIONS(3), 1, + [53808] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5437), 1, + ACTIONS(5372), 1, anon_sym_DOT, - ACTIONS(5439), 1, - aux_sym__immediate_decimal_token2, - STATE(2285), 1, - sym_comment, - ACTIONS(1538), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1536), 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, - [53352] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5441), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5443), 1, - aux_sym__immediate_decimal_token2, - STATE(2286), 1, - sym_comment, - ACTIONS(1530), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1528), 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, - [53424] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2287), 1, + STATE(2422), 1, sym_comment, - ACTIONS(1596), 10, + STATE(2527), 1, + aux_sym_cell_path_repeat1, + STATE(2616), 1, + sym_path, + STATE(2723), 1, + sym_cell_path, + ACTIONS(1769), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1598), 47, + ACTIONS(1771), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -269955,16 +280472,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -269972,42 +280488,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [53492] = 12, - ACTIONS(249), 1, + [53884] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - STATE(2288), 1, - sym_comment, - STATE(2321), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_and2, + ACTIONS(5387), 1, + anon_sym_xor2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5259), 8, + STATE(2423), 1, + sym_comment, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5278), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270016,7 +280546,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(5261), 27, + ACTIONS(5276), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270028,14 +280559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270044,48 +280568,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, - [53576] = 14, - ACTIONS(249), 1, + [53984] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2104), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5407), 1, + sym__newline, + STATE(2401), 1, aux_sym_shebang_repeat1, - STATE(2289), 1, + STATE(2424), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5277), 9, - sym__newline, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5274), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270094,7 +280604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5279), 23, + ACTIONS(5272), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270106,10 +280616,22 @@ static 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270118,13 +280640,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, - [53664] = 4, - ACTIONS(249), 1, + [54068] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2290), 1, - sym_comment, - ACTIONS(5161), 9, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5374), 1, sym__newline, + STATE(2349), 1, + aux_sym_shebang_repeat1, + STATE(2425), 1, + sym_comment, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5286), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270133,7 +280694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5159), 48, + ACTIONS(5284), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270145,35 +280706,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_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270182,50 +280718,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, - [53732] = 15, - ACTIONS(249), 1, + [54164] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2291), 1, + STATE(2426), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5277), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5282), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270234,7 +280772,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(5279), 22, + ACTIONS(5280), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270246,9 +280785,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_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270257,46 +280796,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, - [53822] = 13, - ACTIONS(249), 1, + [54260] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2292), 1, + ACTIONS(5487), 1, + anon_sym_DOT, + ACTIONS(5489), 1, + aux_sym__immediate_decimal_token2, + STATE(2427), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5244), 9, - sym__newline, + ACTIONS(1609), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1607), 48, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270305,23 +280852,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(5246), 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, @@ -270330,52 +280860,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, - [53908] = 16, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [54332] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5449), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2293), 1, + STATE(2428), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5277), 9, - sym__newline, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5278), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270384,7 +280907,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(5279), 21, + ACTIONS(5276), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270396,8 +280920,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_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270406,165 +280936,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54000] = 13, - ACTIONS(249), 1, + [54420] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(3127), 1, + anon_sym_DQUOTE, + ACTIONS(3133), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5292), 1, sym__newline, - STATE(2294), 1, + STATE(2429), 1, sym_comment, - STATE(2330), 1, + STATE(2576), 1, + aux_sym_command_list_repeat1, + STATE(2869), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5259), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5261), 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54086] = 17, - ACTIONS(249), 1, + STATE(3723), 1, + sym__val_number_decimal, + STATE(6968), 1, + sym__command_name, + STATE(7397), 1, + sym_val_string, + STATE(7535), 1, + sym_cmd_identifier, + ACTIONS(3129), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5497), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5288), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5290), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [54516] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5449), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5451), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2295), 1, - sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5277), 9, + ACTIONS(5407), 1, 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(5279), 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, - [54180] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token37, - STATE(2296), 1, + STATE(2410), 1, + aux_sym_shebang_repeat1, + STATE(2430), 1, sym_comment, - ACTIONS(1628), 9, - sym__newline, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5274), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270573,7 +281044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1640), 47, + ACTIONS(5272), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270585,34 +281056,25 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270621,36 +281083,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, - [54250] = 10, - ACTIONS(249), 1, + [54594] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2297), 1, + STATE(2431), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5277), 9, + ACTIONS(1709), 14, sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270659,7 +281103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5279), 31, + ACTIONS(1721), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270670,19 +281114,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270691,47 +281147,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54330] = 14, - ACTIONS(249), 1, + [54662] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5418), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5407), 1, sym__newline, - STATE(2298), 1, + STATE(2432), 1, sym_comment, - STATE(2336), 1, + STATE(2441), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5259), 8, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270740,7 +281189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 24, + ACTIONS(5272), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270752,11 +281201,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_token14, - 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270765,29 +281221,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, - [54418] = 9, - ACTIONS(249), 1, + [54750] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(2299), 1, + STATE(2433), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5277), 9, - sym__newline, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5278), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270796,7 +281252,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(5279), 37, + ACTIONS(5276), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270808,24 +281265,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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270834,15 +281291,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, - [54496] = 5, - ACTIONS(249), 1, + [54830] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4691), 1, + ACTIONS(4801), 1, aux_sym_record_entry_token1, - STATE(2300), 1, + STATE(2434), 1, sym_comment, - ACTIONS(1090), 9, + ACTIONS(1030), 14, sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270851,7 +281313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1092), 47, + ACTIONS(1032), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270862,35 +281324,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_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270899,47 +281356,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, - [54566] = 14, - ACTIONS(249), 1, + [54900] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5403), 1, - sym__newline, - STATE(2283), 1, - aux_sym_shebang_repeat1, - STATE(2301), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5312), 1, + anon_sym_DASH_DASH, + STATE(2435), 1, + sym_comment, + STATE(2438), 1, + aux_sym_decl_def_repeat1, + STATE(2973), 1, + sym_long_flag, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6593), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [54996] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5407), 1, + sym__newline, + STATE(2421), 1, + aux_sym_shebang_repeat1, + STATE(2436), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5252), 8, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5274), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270948,7 +281460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5254), 24, + ACTIONS(5272), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270960,11 +281472,27 @@ static 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270973,14 +281501,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, - [54654] = 5, - ACTIONS(249), 1, + [55070] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5453), 1, - anon_sym_LBRACK2, - STATE(2302), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5312), 1, + anon_sym_DASH_DASH, + STATE(2437), 1, + sym_comment, + STATE(2440), 1, + aux_sym_decl_def_repeat1, + STATE(2973), 1, + sym_long_flag, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6610), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [55166] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5312), 1, + anon_sym_DASH_DASH, + STATE(2438), 1, + sym_comment, + STATE(2805), 1, + aux_sym_decl_def_repeat1, + STATE(2973), 1, + sym_long_flag, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6611), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [55262] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2439), 1, sym_comment, - ACTIONS(2355), 8, + ACTIONS(2363), 14, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270989,9 +281677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2359), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2365), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271002,34 +281688,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271038,49 +281721,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54724] = 15, - ACTIONS(249), 1, + [55330] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5418), 1, - sym__newline, - STATE(2303), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5312), 1, + anon_sym_DASH_DASH, + STATE(2440), 1, sym_comment, - STATE(2428), 1, + STATE(2805), 1, + aux_sym_decl_def_repeat1, + STATE(2973), 1, + sym_long_flag, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6617), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [55426] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5259), 8, + STATE(2441), 1, + sym_comment, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5282), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271089,7 +281839,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(5261), 23, + ACTIONS(5280), 32, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271101,10 +281852,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_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271113,37 +281872,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, - [54814] = 11, - ACTIONS(249), 1, + [55512] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5422), 1, sym__newline, - STATE(2304), 1, - sym_comment, - STATE(2385), 1, + STATE(2392), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5263), 8, + STATE(2442), 1, + sym_comment, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5270), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271152,7 +281905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 31, + ACTIONS(5268), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271164,18 +281917,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, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271184,24 +281943,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, - [54896] = 8, - ACTIONS(249), 1, + [55594] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + ACTIONS(5407), 1, sym__newline, - STATE(2270), 1, + STATE(2426), 1, aux_sym_shebang_repeat1, - STATE(2305), 1, + STATE(2443), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5252), 8, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271210,7 +281999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5254), 41, + ACTIONS(5272), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271222,28 +282011,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_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271252,18 +282022,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, - [54972] = 6, - ACTIONS(249), 1, + [55692] = 20, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5350), 1, + anon_sym_and2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + ACTIONS(5471), 1, + sym__newline, + STATE(2411), 1, aux_sym_shebang_repeat1, - STATE(2306), 1, + STATE(2444), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5289), 9, - sym__newline, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5334), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271272,7 +282080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5291), 45, + ACTIONS(5332), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271284,32 +282092,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_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271318,48 +282102,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, - [55044] = 14, - ACTIONS(249), 1, + [55792] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2307), 1, + ACTIONS(5461), 1, + anon_sym_DOLLAR, + ACTIONS(5463), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5495), 1, + aux_sym__immediate_decimal_token5, + STATE(2445), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5244), 9, - sym__newline, + STATE(3065), 1, + sym__immediate_decimal, + ACTIONS(1693), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5491), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3026), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1691), 45, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271368,22 +282163,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(5246), 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, @@ -271392,83 +282171,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, - [55132] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [55873] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2308), 1, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5497), 1, + anon_sym_DOLLAR, + ACTIONS(5499), 1, + anon_sym_LPAREN2, + ACTIONS(5501), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5503), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5505), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5507), 1, + aux_sym__immediate_decimal_token5, + STATE(2446), 1, sym_comment, - ACTIONS(1711), 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(1713), 47, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, + STATE(3049), 1, + sym__immediate_decimal, + STATE(3141), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1530), 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_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [55200] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(2309), 1, - sym_comment, - STATE(2393), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5297), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271477,44 +282214,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5299), 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, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - 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__unquoted_in_list_token1, + ACTIONS(1544), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271523,51 +282244,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, - [55274] = 16, - ACTIONS(249), 1, + [55958] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5418), 1, - sym__newline, - STATE(2310), 1, + STATE(2447), 1, sym_comment, - STATE(2347), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5259), 8, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271576,7 +282263,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(5261), 22, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271587,10 +282276,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, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271599,23 +282307,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, - [55366] = 7, - ACTIONS(249), 1, + [56025] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2311), 1, + ACTIONS(5511), 1, + anon_sym_DASH2, + ACTIONS(5521), 1, + anon_sym_PLUS2, + STATE(2448), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5289), 9, - sym__newline, + ACTIONS(5509), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5513), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5519), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5523), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5515), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271624,7 +282345,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(5291), 41, + ACTIONS(5237), 32, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271635,29 +282358,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, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271666,13 +282378,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55440] = 4, - ACTIONS(249), 1, + [56108] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2312), 1, + ACTIONS(1579), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5497), 1, + anon_sym_DOLLAR, + ACTIONS(5499), 1, + anon_sym_LPAREN2, + ACTIONS(5501), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5503), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5505), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5507), 1, + aux_sym__immediate_decimal_token5, + STATE(2449), 1, sym_comment, - ACTIONS(5458), 9, - sym__newline, + STATE(3055), 1, + sym__immediate_decimal, + STATE(3103), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 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, @@ -271681,47 +282420,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5228), 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__unquoted_in_list_token1, + ACTIONS(1577), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, 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_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271730,24 +282450,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, - [55508] = 8, - ACTIONS(249), 1, + [56193] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(2313), 1, + STATE(2450), 1, sym_comment, - STATE(2395), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5297), 8, + ACTIONS(1992), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271756,7 +282469,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(5299), 41, + ACTIONS(1994), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271767,29 +282482,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, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271798,53 +282513,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, - [55584] = 18, - ACTIONS(249), 1, + [56260] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2314), 1, + ACTIONS(5525), 1, + anon_sym_DOT, + STATE(2616), 1, + sym_path, + STATE(2451), 2, sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(5764), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 5, + aux_sym_cell_path_repeat1, + ACTIONS(971), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(973), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -271874,51 +282562,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [55680] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5403), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, - STATE(2289), 1, - aux_sym_shebang_repeat1, - STATE(2315), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [56331] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2452), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5252), 8, + ACTIONS(2248), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271927,7 +282597,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(5254), 23, + ACTIONS(2250), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271938,11 +282610,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, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271951,26 +282641,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, - [55770] = 8, - ACTIONS(249), 1, + [56398] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2316), 1, + STATE(2453), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5289), 9, - sym__newline, + ACTIONS(2468), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271979,7 +282660,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(5291), 39, + ACTIONS(2470), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271990,27 +282673,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, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272019,53 +282704,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, - [55846] = 17, - ACTIONS(249), 1, + [56465] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5401), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5418), 1, - sym__newline, - STATE(2317), 1, + ACTIONS(5528), 1, + aux_sym__immediate_decimal_token2, + STATE(2454), 1, sym_comment, - STATE(2351), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5259), 8, + ACTIONS(1675), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1673), 48, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272074,20 +282758,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(5261), 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, @@ -272096,14 +282766,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, - [55940] = 6, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [56534] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, - sym__newline, - STATE(2318), 1, + ACTIONS(5461), 1, + anon_sym_DOLLAR, + ACTIONS(5463), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5495), 1, + aux_sym__immediate_decimal_token5, + STATE(2455), 1, sym_comment, - ACTIONS(5230), 8, + STATE(3013), 1, + sym__immediate_decimal, + ACTIONS(1707), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5491), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3011), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1705), 45, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272112,19 +282829,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(5226), 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, - anon_sym_LBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272133,56 +282837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5228), 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, - [56012] = 9, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [56615] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(2319), 1, + STATE(2456), 1, sym_comment, - STATE(2397), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5297), 8, + ACTIONS(5222), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272191,7 +282857,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(5299), 39, + ACTIONS(5224), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272202,27 +282870,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, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272231,110 +282901,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, - [56090] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4614), 1, - anon_sym_DOT_DOT2, - ACTIONS(5460), 1, - sym_filesize_unit, - ACTIONS(5462), 1, - sym_duration_unit, - ACTIONS(5464), 1, - aux_sym_unquoted_token2, - STATE(2320), 1, - sym_comment, - ACTIONS(4616), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1628), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1640), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [56168] = 11, - ACTIONS(249), 1, + [56682] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2321), 1, + STATE(2457), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5289), 9, - sym__newline, + ACTIONS(2347), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272343,7 +282920,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(5291), 27, + ACTIONS(2349), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272354,15 +282933,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272371,13 +282964,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, - [56250] = 4, - ACTIONS(249), 1, + [56749] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2322), 1, + ACTIONS(5511), 1, + anon_sym_DASH2, + ACTIONS(5521), 1, + anon_sym_PLUS2, + STATE(2458), 1, sym_comment, - ACTIONS(5157), 9, - sym__newline, + ACTIONS(5513), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5519), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5523), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5239), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272386,7 +282996,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(5155), 48, + ACTIONS(5237), 36, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272397,36 +283009,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272435,50 +283033,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, - [56318] = 15, - ACTIONS(249), 1, + [56828] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2323), 1, + STATE(2459), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5244), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272487,7 +283052,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(5246), 22, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272498,10 +283065,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, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272510,42 +283096,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, - [56408] = 12, - ACTIONS(249), 1, + [56895] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(2324), 1, + STATE(2460), 1, sym_comment, - STATE(2400), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5297), 8, + ACTIONS(5243), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272554,7 +283115,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(5299), 27, + ACTIONS(5241), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272565,15 +283128,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272582,13 +283159,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56492] = 4, - ACTIONS(249), 1, + [56962] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2325), 1, + ACTIONS(3865), 1, + anon_sym_DOLLAR, + ACTIONS(5410), 1, + anon_sym_LPAREN2, + ACTIONS(5530), 1, + anon_sym_DOT, + ACTIONS(5532), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5534), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5536), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5538), 1, + aux_sym__immediate_decimal_token5, + STATE(2461), 1, sym_comment, - ACTIONS(2494), 9, - sym__newline, + STATE(2907), 1, + sym__immediate_decimal, + STATE(2906), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1581), 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, @@ -272597,47 +283201,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2496), 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__unquoted_in_list_token1, + ACTIONS(1591), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, 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_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272646,13 +283231,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, - [56560] = 4, - ACTIONS(249), 1, + [57047] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2326), 1, + STATE(2462), 1, sym_comment, - ACTIONS(2494), 9, - sym__newline, + ACTIONS(2387), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272661,7 +283250,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(2496), 48, + ACTIONS(2389), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272672,36 +283263,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272710,30 +283294,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, - [56628] = 10, - ACTIONS(249), 1, + [57114] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(2250), 1, - aux_sym_shebang_repeat1, - STATE(2327), 1, + STATE(2463), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5263), 8, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272742,7 +283316,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(5265), 37, + ACTIONS(5237), 41, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272753,25 +283329,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272780,13 +283358,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, - [56708] = 4, - ACTIONS(249), 1, + [57183] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2328), 1, + STATE(2464), 1, sym_comment, - ACTIONS(5153), 9, - sym__newline, + ACTIONS(2343), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272795,7 +283377,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(5151), 48, + ACTIONS(2345), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272806,36 +283390,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272844,14 +283421,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, - [56776] = 5, - ACTIONS(249), 1, + [57250] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4870), 1, - aux_sym_unquoted_token2, - STATE(2329), 1, + STATE(2465), 1, sym_comment, - ACTIONS(1628), 8, + ACTIONS(2407), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272860,7 +283440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1640), 48, + ACTIONS(2409), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272873,34 +283453,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272909,44 +283484,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, - [56846] = 12, - ACTIONS(249), 1, + [57317] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2330), 1, + STATE(2466), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5289), 9, - sym__newline, + ACTIONS(1709), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272955,7 +283503,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(5291), 25, + ACTIONS(1721), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272966,13 +283516,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, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272981,13 +283547,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, - [56930] = 4, - ACTIONS(249), 1, + [57384] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2331), 1, + STATE(2467), 1, sym_comment, - ACTIONS(2430), 9, - sym__newline, + ACTIONS(1948), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272996,7 +283566,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(2432), 48, + ACTIONS(1950), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273007,36 +283579,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273045,13 +283610,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, - [56998] = 4, - ACTIONS(249), 1, + [57451] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2332), 1, + STATE(2468), 1, sym_comment, - ACTIONS(2478), 9, - sym__newline, + ACTIONS(2351), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273060,7 +283629,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(2480), 48, + ACTIONS(2353), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273071,36 +283642,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273109,51 +283673,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, - [57066] = 16, - ACTIONS(249), 1, + [57518] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5403), 1, - sym__newline, - STATE(2291), 1, - aux_sym_shebang_repeat1, - STATE(2333), 1, + STATE(2469), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5252), 8, + ACTIONS(5222), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273162,7 +283693,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(5254), 22, + ACTIONS(5220), 20, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273173,10 +283706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_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, @@ -273185,45 +283714,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, - [57158] = 13, - ACTIONS(249), 1, + ACTIONS(5224), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57589] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(2334), 1, + STATE(2470), 1, sym_comment, - STATE(2404), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5297), 8, + ACTIONS(1913), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273232,7 +283757,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(5299), 25, + ACTIONS(1915), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273243,13 +283770,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, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273258,55 +283801,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, - [57244] = 18, - ACTIONS(249), 1, + [57656] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5401), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(5412), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2335), 1, + STATE(2471), 1, sym_comment, - STATE(2355), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5259), 8, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273315,7 +283820,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(5261), 20, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273326,8 +283833,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, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273336,126 +283864,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, - [57340] = 13, - ACTIONS(249), 1, + [57723] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2336), 1, + STATE(2472), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5289), 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(5291), 24, + ACTIONS(998), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1000), 49, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - 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, - [57426] = 18, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, + anon_sym_RBRACE, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3068), 1, anon_sym_DQUOTE, - ACTIONS(3074), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - aux_sym_cmd_identifier_token38, - STATE(2252), 1, - aux_sym_command_list_repeat1, - STATE(2337), 1, - sym_comment, - STATE(6853), 1, - sym__command_name, - STATE(7403), 1, - sym__val_number_decimal, - STATE(7604), 1, - sym_cmd_identifier, - STATE(7605), 1, - sym_val_string, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3070), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5521), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5190), 5, + [57790] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + aux_sym__immediate_decimal_token2, + STATE(2473), 1, + sym_comment, + ACTIONS(1607), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5194), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5192), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -273485,49 +283976,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [57522] = 14, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [57859] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5455), 1, - sym__newline, - STATE(2338), 1, + STATE(2474), 1, sym_comment, - STATE(2406), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5297), 8, + ACTIONS(2355), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273536,7 +284010,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(5299), 24, + ACTIONS(2357), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273547,12 +284023,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, - aux_sym_expr_binary_parenthesized_token14, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273561,52 +284054,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, - [57610] = 16, - ACTIONS(249), 1, + [57926] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5449), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2339), 1, + STATE(2475), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5244), 9, - sym__newline, + ACTIONS(2437), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273615,7 +284073,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(5246), 21, + ACTIONS(2439), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273626,9 +284086,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, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273637,61 +284117,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, - [57702] = 12, - ACTIONS(3), 1, + [57993] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5466), 1, - anon_sym_DOLLAR, - ACTIONS(5468), 1, - anon_sym_LPAREN2, - ACTIONS(5472), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5474), 1, - aux_sym__immediate_decimal_token5, - STATE(2340), 1, + STATE(2476), 1, sym_comment, - STATE(2895), 1, - sym__immediate_decimal, - ACTIONS(1524), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5470), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3001), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 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, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273700,6 +284136,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273708,50 +284180,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, - aux_sym__unquoted_in_list_token1, - [57786] = 15, - ACTIONS(249), 1, + [58060] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5331), 1, - aux_sym_expr_binary_token13, - ACTIONS(5333), 1, - aux_sym_expr_binary_token14, - ACTIONS(5335), 1, - aux_sym_expr_binary_token15, - ACTIONS(5337), 1, - aux_sym_expr_binary_token16, - STATE(2341), 1, + ACTIONS(5511), 1, + anon_sym_DASH2, + ACTIONS(5521), 1, + anon_sym_PLUS2, + ACTIONS(5544), 1, + anon_sym_bit_DASHand2, + ACTIONS(5546), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5548), 1, + anon_sym_bit_DASHor2, + STATE(2477), 1, sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5325), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5327), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5329), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5323), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5341), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5343), 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(5133), 8, + ACTIONS(5509), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5513), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5519), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5523), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5542), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5515), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5540), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273760,7 +284232,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(5131), 23, + ACTIONS(5237), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273772,10 +284245,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273784,13 +284256,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, - [57876] = 4, - ACTIONS(249), 1, + [58153] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2342), 1, + STATE(2478), 1, sym_comment, - ACTIONS(2410), 9, - sym__newline, + ACTIONS(5258), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273799,7 +284275,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(2412), 48, + ACTIONS(5256), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273810,36 +284288,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273848,13 +284319,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, - [57944] = 4, - ACTIONS(249), 1, + [58220] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2343), 1, + STATE(2479), 1, sym_comment, - ACTIONS(2438), 9, - sym__newline, + ACTIONS(2359), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273863,7 +284338,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(2440), 48, + ACTIONS(2361), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273874,36 +284351,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273912,15 +284382,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, - [58012] = 5, - ACTIONS(3), 1, + [58287] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token37, - STATE(2344), 1, + STATE(2480), 1, sym_comment, - ACTIONS(2289), 9, - sym__newline, + ACTIONS(2496), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273929,7 +284401,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(2291), 47, + ACTIONS(2498), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273940,35 +284414,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, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273977,49 +284445,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, - [58082] = 15, - ACTIONS(249), 1, + [58354] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5455), 1, - sym__newline, - STATE(2345), 1, + STATE(2481), 1, sym_comment, - STATE(2408), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5297), 8, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274028,7 +284464,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(5299), 23, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274039,11 +284477,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, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274052,37 +284508,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, - [58172] = 11, - ACTIONS(249), 1, + [58421] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - STATE(2346), 1, + ACTIONS(5511), 1, + anon_sym_DASH2, + ACTIONS(5521), 1, + anon_sym_PLUS2, + ACTIONS(5544), 1, + anon_sym_bit_DASHand2, + ACTIONS(5546), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5548), 1, + anon_sym_bit_DASHor2, + ACTIONS(5550), 1, + anon_sym_and2, + STATE(2482), 1, sym_comment, - STATE(2359), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5259), 8, + ACTIONS(5509), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5513), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5519), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5523), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5542), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5515), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5540), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274091,7 +284562,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(5261), 31, + ACTIONS(5237), 22, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274102,19 +284575,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - 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_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274123,50 +284585,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, - [58254] = 15, - ACTIONS(249), 1, + [58516] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2347), 1, + STATE(2483), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5289), 9, - sym__newline, + ACTIONS(2004), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274175,7 +284604,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(5291), 22, + ACTIONS(2006), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274186,10 +284617,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, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274198,14 +284648,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, - [58344] = 5, - ACTIONS(3), 1, + [58583] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5041), 1, - aux_sym_cmd_identifier_token37, - STATE(2348), 1, + STATE(2484), 1, sym_comment, - ACTIONS(2289), 8, + ACTIONS(2480), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274214,7 +284667,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(2291), 48, + ACTIONS(2482), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274226,35 +284680,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_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274263,51 +284711,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, - [58414] = 16, - ACTIONS(249), 1, + [58650] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5455), 1, - sym__newline, - STATE(2349), 1, + STATE(2485), 1, sym_comment, - STATE(2410), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5297), 8, + ACTIONS(2456), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274316,7 +284730,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(5299), 22, + ACTIONS(2458), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274327,10 +284743,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, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274339,14 +284774,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, - [58506] = 5, - ACTIONS(3), 1, + [58717] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5041), 1, - aux_sym_cmd_identifier_token37, - STATE(2350), 1, + STATE(2486), 1, sym_comment, - ACTIONS(2281), 8, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274355,7 +284793,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(2285), 48, + ACTIONS(5186), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274367,35 +284806,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_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274404,52 +284837,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, - [58576] = 16, - ACTIONS(249), 1, + [58784] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5449), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2351), 1, + STATE(2487), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5289), 9, - sym__newline, + ACTIONS(1030), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274458,7 +284856,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(5291), 21, + ACTIONS(1032), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274469,9 +284869,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, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274480,26 +284900,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, - [58668] = 8, - ACTIONS(249), 1, + [58851] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2352), 1, + STATE(2488), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5244), 9, - sym__newline, + ACTIONS(2347), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274508,7 +284919,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(5246), 39, + ACTIONS(2349), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274519,27 +284932,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, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274548,53 +284963,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, - [58744] = 17, - ACTIONS(249), 1, + [58918] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5401), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5455), 1, - sym__newline, - STATE(2353), 1, + STATE(2489), 1, sym_comment, - STATE(2412), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5297), 8, + ACTIONS(2460), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274603,7 +284982,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(5299), 21, + ACTIONS(2462), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274614,9 +284995,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, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274625,53 +285026,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, - [58838] = 17, - ACTIONS(249), 1, + [58985] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5401), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5403), 1, - sym__newline, - STATE(2293), 1, - aux_sym_shebang_repeat1, - STATE(2354), 1, + STATE(2490), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5252), 8, + ACTIONS(2363), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274680,7 +285045,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(5254), 21, + ACTIONS(2365), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274691,9 +285058,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, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274702,54 +285089,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, - [58932] = 17, - ACTIONS(249), 1, + [59052] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5449), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5451), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2355), 1, + STATE(2491), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5289), 9, - sym__newline, + ACTIONS(2068), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274758,7 +285108,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(5291), 20, + ACTIONS(2070), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274769,8 +285121,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, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274779,13 +285152,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, - [59026] = 4, - ACTIONS(249), 1, + [59119] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2356), 1, + ACTIONS(5511), 1, + anon_sym_DASH2, + ACTIONS(5521), 1, + anon_sym_PLUS2, + ACTIONS(5544), 1, + anon_sym_bit_DASHand2, + ACTIONS(5546), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5548), 1, + anon_sym_bit_DASHor2, + ACTIONS(5550), 1, + anon_sym_and2, + ACTIONS(5552), 1, + anon_sym_xor2, + STATE(2492), 1, sym_comment, - ACTIONS(1364), 9, - sym__newline, + ACTIONS(5509), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5513), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5519), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5523), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5542), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5515), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5540), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274794,7 +285208,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(1362), 48, + ACTIONS(5237), 21, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274805,36 +285221,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_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_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274843,55 +285230,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, - [59094] = 18, - ACTIONS(249), 1, + [59216] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5401), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(5412), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2357), 1, + STATE(2493), 1, sym_comment, - STATE(2414), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5297), 8, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274900,7 +285249,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(5299), 20, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274911,8 +285262,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, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274921,13 +285293,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, - [59190] = 4, - ACTIONS(249), 1, + [59283] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2358), 1, + STATE(2494), 1, sym_comment, - ACTIONS(1090), 9, - sym__newline, + ACTIONS(2508), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274936,7 +285312,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(1092), 48, + ACTIONS(2510), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274947,36 +285325,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274985,36 +285356,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, - [59258] = 10, - ACTIONS(249), 1, + [59350] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2359), 1, + STATE(2495), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5289), 9, + ACTIONS(2090), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2092), 43, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [59417] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5511), 1, + anon_sym_DASH2, + ACTIONS(5521), 1, + anon_sym_PLUS2, + STATE(2496), 1, + sym_comment, + ACTIONS(5509), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5513), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5519), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5523), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5515), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5540), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275023,7 +285462,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(5291), 31, + ACTIONS(5237), 28, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275034,19 +285475,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275055,39 +285491,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, - [59338] = 12, + [59502] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5466), 1, + ACTIONS(5461), 1, anon_sym_DOLLAR, - ACTIONS(5468), 1, + ACTIONS(5463), 1, anon_sym_LPAREN2, - ACTIONS(5472), 1, + ACTIONS(5493), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5474), 1, + ACTIONS(5495), 1, aux_sym__immediate_decimal_token5, - STATE(2360), 1, + STATE(2497), 1, sym_comment, - STATE(2885), 1, + STATE(3035), 1, sym__immediate_decimal, - ACTIONS(1556), 2, + ACTIONS(1591), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5470), 2, + ACTIONS(5491), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3039), 2, + STATE(3033), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1544), 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(1581), 45, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -275096,6 +285524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -275103,6 +285534,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -275127,37 +285561,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, - [59422] = 11, - ACTIONS(249), 1, + [59583] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(2361), 1, + STATE(2498), 1, sym_comment, - STATE(2419), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5297), 8, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275166,7 +285580,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(5299), 31, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275177,19 +285593,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275198,30 +285624,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, - [59504] = 10, - ACTIONS(249), 1, + [59650] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - STATE(2362), 1, + STATE(2499), 1, sym_comment, - STATE(2363), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5259), 8, + ACTIONS(1907), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275230,7 +285643,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(5261), 37, + ACTIONS(1911), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275241,25 +285656,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275268,29 +285687,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, - [59584] = 9, - ACTIONS(249), 1, + [59717] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2363), 1, + ACTIONS(5554), 1, + aux_sym__immediate_decimal_token2, + STATE(2500), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5289), 9, - sym__newline, + ACTIONS(1673), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1675), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [59786] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2501), 1, + sym_comment, + ACTIONS(5239), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275299,7 +285770,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(5291), 37, + ACTIONS(5237), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275310,25 +285783,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275337,54 +285814,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, - [59662] = 17, - ACTIONS(249), 1, + [59853] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5449), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5451), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2364), 1, + STATE(2502), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5244), 9, - sym__newline, + ACTIONS(2403), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275393,7 +285833,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(5246), 20, + ACTIONS(2405), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275404,8 +285846,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, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275414,30 +285877,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, - [59756] = 10, - ACTIONS(249), 1, + [59920] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(2365), 1, + STATE(2503), 1, sym_comment, - STATE(2421), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5297), 8, + ACTIONS(2500), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275446,7 +285896,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(5299), 37, + ACTIONS(2502), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275457,25 +285909,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275484,88 +285940,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, - [59836] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2366), 1, - sym_comment, - ACTIONS(1058), 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(1060), 50, - sym_raw_string_begin, - 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, - [59904] = 8, - ACTIONS(249), 1, + [59987] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(2284), 1, - aux_sym_shebang_repeat1, - STATE(2367), 1, + STATE(2504), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5263), 8, + ACTIONS(2464), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275574,7 +285959,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(5265), 41, + ACTIONS(2466), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275585,29 +285972,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, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275616,22 +286003,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, - [59980] = 4, - ACTIONS(249), 1, + [60054] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2368), 1, + STATE(2505), 1, sym_comment, - ACTIONS(1062), 7, + ACTIONS(994), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1064), 50, + ACTIONS(996), 49, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -275661,17 +286047,17 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -275680,221 +286066,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [60048] = 4, - ACTIONS(249), 1, + [60121] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2369), 1, + STATE(2506), 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, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1040), 50, - sym_raw_string_begin, + ACTIONS(2383), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2385), 43, 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, - [60116] = 18, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2370), 1, - sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(7312), 1, - sym__val_number_decimal, - STATE(7763), 1, - sym__command_name, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [60212] = 4, - ACTIONS(249), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [60188] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2371), 1, + STATE(2507), 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, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1056), 50, - sym_raw_string_begin, + ACTIONS(2492), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2494), 43, 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, - [60280] = 5, - ACTIONS(249), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [60255] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5285), 1, - aux_sym_cmd_identifier_token41, - STATE(2372), 1, + STATE(2508), 1, sym_comment, - ACTIONS(2293), 9, - sym__newline, + ACTIONS(5513), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5519), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275903,7 +286218,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(2297), 47, + ACTIONS(5237), 39, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275914,35 +286231,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_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275951,14 +286258,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, - [60350] = 5, + [60328] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5087), 1, - aux_sym_cmd_identifier_token37, - STATE(2373), 1, + ACTIONS(5489), 1, + aux_sym__immediate_decimal_token2, + STATE(2509), 1, + sym_comment, + ACTIONS(1609), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1607), 48, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [60397] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2510), 1, sym_comment, - ACTIONS(1628), 8, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275967,7 +286341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1640), 48, + ACTIONS(5186), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -275980,34 +286354,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276016,53 +286385,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, - [60420] = 18, - ACTIONS(249), 1, + [60464] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2374), 1, + STATE(2511), 1, sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(7312), 1, - sym__val_number_decimal, - STATE(7763), 1, - sym__command_name, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(1002), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1004), 49, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276092,178 +286429,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [60516] = 18, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2375), 1, - sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6271), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [60612] = 18, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2376), 1, - sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(5764), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [60708] = 4, - ACTIONS(249), 1, + [60531] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2377), 1, + STATE(2512), 1, sym_comment, - ACTIONS(1074), 7, + ACTIONS(990), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1076), 50, + ACTIONS(992), 49, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -276294,11 +286492,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, @@ -276306,7 +286502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - sym_wild_card, + anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -276314,93 +286511,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [60776] = 18, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(5427), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5429), 1, - anon_sym_DQUOTE, - ACTIONS(5433), 1, - sym_raw_string_begin, - STATE(1453), 1, - sym__command_name, - STATE(2378), 1, - sym_comment, - STATE(2493), 1, - sym_cmd_identifier, - STATE(2494), 1, - sym_val_string, - STATE(7107), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2500), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5421), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5425), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5423), 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, - [60872] = 5, - ACTIONS(249), 1, + [60598] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1103), 1, - aux_sym_record_entry_token1, - STATE(2379), 1, + STATE(2513), 1, sym_comment, - ACTIONS(1090), 9, - sym__newline, + ACTIONS(2367), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276409,7 +286530,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(1092), 47, + ACTIONS(2369), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276420,35 +286543,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_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276457,55 +286574,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, - [60942] = 18, - ACTIONS(249), 1, + [60665] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5401), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(5412), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2295), 1, - aux_sym_shebang_repeat1, - STATE(2380), 1, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(5558), 1, + anon_sym_DOT_DOT2, + ACTIONS(5562), 1, + sym_filesize_unit, + ACTIONS(5564), 1, + sym_duration_unit, + ACTIONS(5566), 1, + aux_sym__unquoted_in_list_token2, + STATE(2514), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5252), 8, + STATE(7456), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1721), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5560), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 46, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276514,19 +286635,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(5254), 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, @@ -276535,27 +286643,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, - [61038] = 9, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [60746] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(2352), 1, - aux_sym_shebang_repeat1, - STATE(2381), 1, + ACTIONS(5511), 1, + anon_sym_DASH2, + ACTIONS(5521), 1, + anon_sym_PLUS2, + STATE(2515), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5263), 8, + ACTIONS(5513), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5519), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276564,7 +286673,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(5265), 39, + ACTIONS(5237), 38, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276575,27 +286686,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_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276604,15 +286712,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, - [61116] = 5, - ACTIONS(249), 1, + [60823] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5285), 1, - aux_sym_cmd_identifier_token41, - STATE(2382), 1, + STATE(2516), 1, sym_comment, - ACTIONS(2303), 9, - sym__newline, + ACTIONS(2094), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276621,7 +286731,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(2305), 47, + ACTIONS(2096), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276632,35 +286744,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, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276669,120 +286775,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, - [61186] = 18, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3068), 1, - anon_sym_DQUOTE, - ACTIONS(3074), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - aux_sym_cmd_identifier_token38, - STATE(2252), 1, - aux_sym_command_list_repeat1, - STATE(2383), 1, - sym_comment, - STATE(6970), 1, - sym__command_name, - STATE(7403), 1, - sym__val_number_decimal, - STATE(7604), 1, - sym_cmd_identifier, - STATE(7605), 1, - sym_val_string, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3070), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5521), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5190), 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(5194), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5192), 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, - [61282] = 12, - ACTIONS(249), 1, + [60890] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(2256), 1, - aux_sym_shebang_repeat1, - STATE(2384), 1, + STATE(2517), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5263), 8, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276791,7 +286794,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(5265), 27, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276802,15 +286807,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276819,36 +286838,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, - [61366] = 10, - ACTIONS(249), 1, + [60957] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2385), 1, + STATE(2518), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5244), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276857,7 +286857,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(5246), 31, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276868,19 +286870,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276889,27 +286901,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, - [61446] = 9, - ACTIONS(249), 1, + [61024] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(2276), 1, - aux_sym_shebang_repeat1, - STATE(2386), 1, + STATE(2519), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5252), 8, + ACTIONS(2488), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276918,7 +286920,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(5254), 39, + ACTIONS(2490), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276929,27 +286933,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, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276958,98 +286964,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, - [61524] = 18, - ACTIONS(249), 1, + [61091] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3068), 1, - anon_sym_DQUOTE, - ACTIONS(3074), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - aux_sym_cmd_identifier_token38, - STATE(2252), 1, - aux_sym_command_list_repeat1, - STATE(2387), 1, + ACTIONS(5568), 1, + anon_sym_QMARK2, + STATE(2520), 1, sym_comment, - STATE(7141), 1, - sym__command_name, - STATE(7403), 1, - sym__val_number_decimal, - STATE(7604), 1, - sym_cmd_identifier, - STATE(7605), 1, - sym_val_string, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3070), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5521), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5190), 5, + ACTIONS(978), 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(5194), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5192), 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, - [61620] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2388), 1, - sym_comment, - ACTIONS(1066), 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(1068), 50, + ACTIONS(980), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -277080,11 +287010,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, @@ -277092,7 +287020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -277100,109 +287028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [61688] = 4, - ACTIONS(249), 1, + [61160] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2389), 1, + STATE(2521), 1, sym_comment, - ACTIONS(1070), 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(1072), 50, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [61756] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(2264), 1, - aux_sym_shebang_repeat1, - STATE(2390), 1, - sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5263), 8, + ACTIONS(1972), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277211,7 +287047,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(5265), 25, + ACTIONS(1974), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277222,13 +287060,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, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277237,37 +287091,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, - [61842] = 11, - ACTIONS(249), 1, + [61227] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(2297), 1, - aux_sym_shebang_repeat1, - STATE(2391), 1, + ACTIONS(5511), 1, + anon_sym_DASH2, + ACTIONS(5521), 1, + anon_sym_PLUS2, + STATE(2522), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5252), 8, + ACTIONS(5509), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5513), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5519), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5523), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5542), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5515), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5540), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277276,7 +287137,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(5254), 31, + ACTIONS(5237), 26, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277287,19 +287150,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277308,92 +287164,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, - [61924] = 14, - ACTIONS(249), 1, + [61314] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2292), 1, - aux_sym_shebang_repeat1, - STATE(2392), 1, + ACTIONS(5570), 1, + anon_sym_QMARK2, + STATE(2523), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5263), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5265), 24, + ACTIONS(984), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(986), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - 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, - [62012] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [61383] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2393), 1, + STATE(2524), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5305), 9, - sym__newline, + ACTIONS(5262), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277402,7 +287247,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(5307), 45, + ACTIONS(5260), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277413,33 +287260,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, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277448,14 +287291,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, - [62084] = 5, - ACTIONS(3), 1, + [61450] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5087), 1, - aux_sym_cmd_identifier_token37, - STATE(2394), 1, + STATE(2525), 1, sym_comment, - ACTIONS(2281), 8, + ACTIONS(1988), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277464,7 +287310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2285), 48, + ACTIONS(1990), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -277477,34 +287323,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277513,23 +287354,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, - [62154] = 7, - ACTIONS(249), 1, + [61517] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2395), 1, + STATE(2526), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5305), 9, - sym__newline, + ACTIONS(2504), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277538,7 +287373,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(5307), 41, + ACTIONS(2506), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277549,29 +287386,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, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277580,53 +287417,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, - [62228] = 18, - ACTIONS(249), 1, + [61584] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3068), 1, - anon_sym_DQUOTE, - ACTIONS(3074), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - aux_sym_cmd_identifier_token38, - STATE(2252), 1, - aux_sym_command_list_repeat1, - STATE(2396), 1, + ACTIONS(5372), 1, + anon_sym_DOT, + STATE(2451), 1, + aux_sym_cell_path_repeat1, + STATE(2527), 1, sym_comment, - STATE(7174), 1, - sym__command_name, - STATE(7403), 1, - sym__val_number_decimal, - STATE(7604), 1, - sym_cmd_identifier, - STATE(7605), 1, - sym_val_string, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3070), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5521), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5190), 5, + STATE(2616), 1, + sym_path, + ACTIONS(967), 6, aux_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(5194), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5192), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(969), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277656,84 +287467,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [62324] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2397), 1, - sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5305), 9, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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(5307), 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, - [62400] = 5, - ACTIONS(249), 1, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [61657] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5476), 1, - aux_sym_cmd_identifier_token41, - STATE(2398), 1, + STATE(2528), 1, sym_comment, - ACTIONS(2293), 8, + ACTIONS(2395), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277742,7 +287502,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(2297), 48, + ACTIONS(2397), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277754,35 +287515,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_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277791,14 +287546,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, - [62470] = 5, - ACTIONS(249), 1, + [61724] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5476), 1, - aux_sym_cmd_identifier_token41, - STATE(2399), 1, + STATE(2529), 1, sym_comment, - ACTIONS(2303), 8, + ACTIONS(2206), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277807,7 +287565,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(2305), 48, + ACTIONS(2210), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277819,35 +287578,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_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277856,41 +287609,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, - [62540] = 11, - ACTIONS(249), 1, + [61791] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2400), 1, + STATE(2530), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5305), 9, - sym__newline, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277899,7 +287628,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(5307), 27, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277910,15 +287641,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, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277927,18 +287672,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, - [62622] = 6, - ACTIONS(249), 1, + [61858] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2401), 1, + ACTIONS(5511), 1, + anon_sym_DASH2, + ACTIONS(5521), 1, + anon_sym_PLUS2, + ACTIONS(5544), 1, + anon_sym_bit_DASHand2, + STATE(2531), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5244), 9, - sym__newline, + ACTIONS(5509), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5513), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5519), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5523), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5542), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5515), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5540), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277947,7 +287720,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(5246), 45, + ACTIONS(5237), 25, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277958,33 +287733,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, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277993,13 +287746,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, - [62694] = 4, - ACTIONS(249), 1, + [61947] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2402), 1, + STATE(2532), 1, sym_comment, - ACTIONS(1909), 9, - sym__newline, + ACTIONS(2399), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278008,7 +287765,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(1911), 48, + ACTIONS(2401), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278019,36 +287778,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278057,49 +287809,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, - [62762] = 15, - ACTIONS(249), 1, + [62014] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2307), 1, - aux_sym_shebang_repeat1, - STATE(2403), 1, + STATE(2533), 1, sym_comment, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5263), 8, + ACTIONS(5188), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278108,7 +287828,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(5265), 23, + ACTIONS(5186), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278119,11 +287841,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, - 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278132,44 +287872,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, - [62852] = 12, - ACTIONS(249), 1, + [62081] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2404), 1, + ACTIONS(5511), 1, + anon_sym_DASH2, + ACTIONS(5521), 1, + anon_sym_PLUS2, + ACTIONS(5544), 1, + anon_sym_bit_DASHand2, + ACTIONS(5546), 1, + anon_sym_bit_DASHxor2, + STATE(2534), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5305), 9, - sym__newline, + ACTIONS(5509), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5513), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5519), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5523), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5542), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5515), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5540), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278178,7 +287922,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(5307), 25, + ACTIONS(5237), 24, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278189,13 +287935,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, - 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278204,39 +287947,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, - [62936] = 12, + [62172] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2593), 1, + ACTIONS(5461), 1, anon_sym_DOLLAR, - ACTIONS(5267), 1, + ACTIONS(5463), 1, anon_sym_LPAREN2, - ACTIONS(5478), 1, - anon_sym_DOT, - ACTIONS(5482), 1, + ACTIONS(5493), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5484), 1, + ACTIONS(5495), 1, aux_sym__immediate_decimal_token5, - STATE(2405), 1, + STATE(2535), 1, sym_comment, - STATE(2806), 1, + STATE(3008), 1, sym__immediate_decimal, - ACTIONS(1570), 2, + ACTIONS(1671), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5480), 2, + ACTIONS(5491), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2802), 2, + STATE(3075), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1560), 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(1663), 45, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -278245,6 +287980,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -278252,6 +287990,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -278276,112 +288017,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, - [63020] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2406), 1, - sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5305), 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(5307), 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, - [63106] = 14, - ACTIONS(249), 1, + [62253] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3774), 1, - anon_sym_DOLLAR, - ACTIONS(5486), 1, - anon_sym_LPAREN2, - ACTIONS(5488), 1, + ACTIONS(5572), 1, anon_sym_DOT, - ACTIONS(5490), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5492), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5494), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5496), 1, - aux_sym__immediate_decimal_token5, - STATE(2407), 1, + ACTIONS(5574), 1, + aux_sym__immediate_decimal_token2, + STATE(2536), 1, sym_comment, - STATE(2849), 1, - sym__immediate_decimal, - STATE(2904), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 18, - anon_sym_LPAREN, + ACTIONS(1607), 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, @@ -278394,23 +288044,31 @@ 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(1524), 28, + aux_sym__unquoted_in_list_token2, + ACTIONS(1609), 35, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -278423,226 +288081,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63194] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2408), 1, - sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5305), 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(5307), 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, - [63282] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2409), 1, - sym_comment, - ACTIONS(1897), 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(1899), 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, - [63350] = 15, - ACTIONS(249), 1, + [62323] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2410), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2537), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5305), 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(5307), 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, - [63440] = 4, - ACTIONS(249), 1, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7898), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [62413] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2411), 1, + ACTIONS(5576), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5578), 1, + aux_sym__immediate_decimal_token2, + STATE(2538), 1, sym_comment, - ACTIONS(2547), 9, - sym__newline, + ACTIONS(1621), 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, @@ -278651,331 +288181,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2549), 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__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1623), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, 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, - [63508] = 16, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5449), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2412), 1, - sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5305), 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(5307), 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, - [63600] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2413), 1, - sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 47, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_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, - [63670] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5449), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5451), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2414), 1, - sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5305), 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(5307), 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, - [63764] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2415), 1, - sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5323), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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_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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278984,24 +288219,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, - [63836] = 5, - ACTIONS(249), 1, + [62483] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5498), 1, - anon_sym_QMARK2, - STATE(2416), 1, + STATE(2539), 1, sym_comment, - ACTIONS(1042), 7, + ACTIONS(1010), 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_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1044), 49, + ACTIONS(1012), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279031,17 +288263,17 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -279049,24 +288281,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63906] = 5, - ACTIONS(249), 1, + [62549] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5500), 1, - anon_sym_QMARK2, - STATE(2417), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2540), 1, sym_comment, - ACTIONS(1048), 7, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(5904), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [62639] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2541), 1, + sym_comment, + ACTIONS(1607), 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_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1050), 49, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 45, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279096,17 +288402,14 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -279114,23 +288417,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63976] = 7, - ACTIONS(249), 1, + [62705] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2418), 1, + ACTIONS(5580), 1, + anon_sym_DOT, + STATE(2542), 1, sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5325), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5323), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5133), 8, + STATE(2586), 1, + aux_sym_cell_path_repeat1, + STATE(2759), 1, + sym_path, + STATE(2831), 1, + sym_cell_path, + ACTIONS(1737), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1735), 47, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279139,40 +288474,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(5131), 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_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279181,36 +288482,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, - [64050] = 10, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [62779] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2419), 1, + ACTIONS(5582), 1, + anon_sym_DOT, + ACTIONS(5584), 1, + aux_sym__immediate_decimal_token2, + STATE(2543), 1, sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5305), 9, - sym__newline, + ACTIONS(1757), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1755), 48, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279219,30 +288537,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(5307), 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_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - 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, @@ -279251,715 +288545,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, - [64130] = 10, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [62849] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2420), 1, + STATE(2544), 1, sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5325), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5327), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5323), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5341), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5343), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64210] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2421), 1, - sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5305), 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(5307), 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, - [64288] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2422), 1, - sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5325), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5327), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5329), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5323), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5341), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5343), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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, - [64370] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5331), 1, - aux_sym_expr_binary_token13, - STATE(2423), 1, - sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5325), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5327), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5329), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5323), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5341), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5343), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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_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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64454] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5331), 1, - aux_sym_expr_binary_token13, - ACTIONS(5333), 1, - aux_sym_expr_binary_token14, - STATE(2424), 1, - sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5325), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5327), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5329), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5323), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5341), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5343), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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_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, - [64540] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5087), 1, - aux_sym_cmd_identifier_token37, - STATE(2425), 1, - sym_comment, - ACTIONS(2289), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2291), 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, - [64610] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5331), 1, - aux_sym_expr_binary_token13, - ACTIONS(5333), 1, - aux_sym_expr_binary_token14, - ACTIONS(5335), 1, - aux_sym_expr_binary_token15, - STATE(2426), 1, - sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5325), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5327), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5329), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5323), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5341), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5343), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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, - [64698] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2427), 1, - sym_comment, - ACTIONS(1628), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1640), 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, - [64766] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(2428), 1, - sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5289), 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(5291), 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, - [64854] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2429), 1, - sym_comment, - ACTIONS(2543), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2545), 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, - [64921] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2430), 1, - sym_comment, - ACTIONS(1054), 6, + ACTIONS(1002), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1056), 50, + anon_sym_DOT, + ACTIONS(1004), 48, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279989,19 +288592,16 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -280009,19 +288609,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64988] = 4, - ACTIONS(249), 1, + [62915] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2431), 1, + STATE(2545), 1, sym_comment, - ACTIONS(2494), 6, + ACTIONS(1621), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2496), 50, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1623), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -280052,19 +288656,14 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -280072,20 +288671,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65055] = 4, - ACTIONS(249), 1, + [62981] = 16, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2432), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2546), 1, sym_comment, - ACTIONS(2105), 6, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7898), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2107), 50, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280115,40 +288740,29 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, - [65122] = 4, - ACTIONS(249), 1, + [63071] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2433), 1, + ACTIONS(5586), 1, + anon_sym_QMARK2, + STATE(2547), 1, sym_comment, - ACTIONS(5502), 6, + ACTIONS(978), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5504), 50, + anon_sym_DOT, + ACTIONS(980), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280178,19 +288792,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -280198,242 +288808,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65189] = 5, - ACTIONS(3), 1, + [63139] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5439), 1, - aux_sym__immediate_decimal_token2, - STATE(2434), 1, - sym_comment, - ACTIONS(1538), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1536), 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, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(4009), 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, - aux_sym__unquoted_in_list_token2, - [65258] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5506), 1, - aux_sym__immediate_decimal_token2, - STATE(2435), 1, - sym_comment, - ACTIONS(1598), 7, + ACTIONS(4013), 1, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1596), 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, - [65327] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2436), 1, - sym_comment, - ACTIONS(2494), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2496), 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, - [65394] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2437), 1, + STATE(2548), 1, sym_comment, - STATE(4162), 1, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, sym_val_string, - STATE(4187), 1, + STATE(4195), 1, sym_cmd_identifier, - STATE(7312), 1, - sym__val_number_decimal, - STATE(8028), 1, + STATE(6300), 1, sym__command_name, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5033), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280463,314 +288877,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [65487] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2438), 1, - sym_comment, - ACTIONS(1628), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1640), 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, - [65554] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3774), 1, - anon_sym_DOLLAR, - ACTIONS(5486), 1, - anon_sym_LPAREN2, - ACTIONS(5508), 1, - anon_sym_DOT, - ACTIONS(5510), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5512), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5514), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5516), 1, - aux_sym__immediate_decimal_token5, - STATE(2439), 1, - sym_comment, - STATE(2874), 1, - sym__immediate_decimal, - STATE(2888), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1560), 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(1570), 28, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, - [65639] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2440), 1, - sym_comment, - ACTIONS(2454), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2456), 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, - [65706] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2441), 1, - sym_comment, - ACTIONS(1090), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1092), 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, - [65773] = 17, - ACTIONS(249), 1, + [63229] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(4009), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, + ACTIONS(4013), 1, sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2442), 1, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2549), 1, sym_comment, - STATE(4162), 1, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, sym_val_string, - STATE(4187), 1, + STATE(4195), 1, sym_cmd_identifier, - STATE(6748), 1, + STATE(5904), 1, sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5033), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280800,53 +288951,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [65866] = 17, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [63319] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5597), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5600), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, + ACTIONS(5603), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, + ACTIONS(5609), 1, sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2443), 1, - sym_comment, - STATE(4162), 1, + STATE(3723), 1, + sym__val_number_decimal, + STATE(7397), 1, sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6721), 1, + STATE(7524), 1, sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, + STATE(7535), 1, + sym_cmd_identifier, + ACTIONS(5594), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + ACTIONS(5606), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + STATE(2550), 2, + sym_comment, + aux_sym_command_list_repeat1, + STATE(5497), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5588), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5591), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280876,53 +289024,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [65959] = 17, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [63407] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2444), 1, + STATE(2551), 1, sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6749), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, + ACTIONS(1609), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1607), 48, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3844), 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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, + [63473] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + ACTIONS(5612), 1, + sym_filesize_unit, + ACTIONS(5614), 1, + sym_duration_unit, + ACTIONS(5616), 1, + aux_sym_unquoted_token2, + STATE(2552), 1, + sym_comment, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1721), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280952,129 +289145,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [66052] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2445), 1, - sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6240), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 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, - [66145] = 17, - ACTIONS(249), 1, + [63549] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, + ACTIONS(5622), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, + ACTIONS(5626), 1, sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2446), 1, + STATE(1697), 1, + sym__command_name, + STATE(2553), 1, sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, + STATE(2601), 1, sym_cmd_identifier, - STATE(6241), 1, - sym__command_name, - STATE(7312), 1, + STATE(2602), 1, + sym_val_string, + STATE(3819), 1, sym__val_number_decimal, - ACTIONS(1343), 2, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + ACTIONS(5624), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + STATE(2643), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5618), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5620), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281104,53 +289227,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [66238] = 17, - ACTIONS(111), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [63639] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(4009), 1, anon_sym_DQUOTE, - ACTIONS(123), 1, + ACTIONS(4013), 1, sym_raw_string_begin, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4967), 1, - aux_sym_cmd_identifier_token38, - STATE(2447), 1, + STATE(2554), 1, sym_comment, - STATE(6296), 1, - sym_cmd_identifier, - STATE(6299), 1, - sym_val_string, - STATE(6981), 1, + STATE(3762), 1, sym__val_number_decimal, - STATE(7175), 1, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6300), 1, sym__command_name, - ACTIONS(113), 2, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1343), 2, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2065), 2, + STATE(4492), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4961), 5, + ACTIONS(5033), 6, aux_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(4965), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4963), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281180,22 +289301,113 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [66331] = 4, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [63729] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2448), 1, + STATE(2555), 1, + sym_comment, + ACTIONS(1675), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1673), 48, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [63795] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3127), 1, + anon_sym_DQUOTE, + ACTIONS(3133), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2550), 1, + aux_sym_command_list_repeat1, + STATE(2556), 1, sym_comment, - ACTIONS(2430), 6, + STATE(3723), 1, + sym__val_number_decimal, + STATE(7045), 1, + sym__command_name, + STATE(7397), 1, + sym_val_string, + STATE(7535), 1, + sym_cmd_identifier, + ACTIONS(3129), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5497), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5288), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2432), 50, - sym_raw_string_begin, + ACTIONS(5290), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281225,40 +289437,27 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, - [66398] = 4, - ACTIONS(249), 1, + [63885] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2449), 1, + STATE(2557), 1, sym_comment, - ACTIONS(2478), 6, + ACTIONS(990), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2480), 50, + anon_sym_DOT, + ACTIONS(992), 48, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281288,19 +289487,16 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -281308,19 +289504,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66465] = 4, - ACTIONS(249), 1, + [63951] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2450), 1, + STATE(2558), 1, sym_comment, - ACTIONS(1078), 6, + ACTIONS(1006), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1080), 50, + anon_sym_DOT, + ACTIONS(1008), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -281351,11 +289548,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, @@ -281363,7 +289558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -281371,51 +289566,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66532] = 17, - ACTIONS(249), 1, + [64017] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5628), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5630), 1, + aux_sym__immediate_decimal_token2, + STATE(2559), 1, + sym_comment, + ACTIONS(1741), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1739), 48, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [64087] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, + ACTIONS(5622), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, + ACTIONS(5626), 1, sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2451), 1, + STATE(1697), 1, + sym__command_name, + STATE(2560), 1, sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, + STATE(2601), 1, sym_cmd_identifier, - STATE(6366), 1, - sym__command_name, - STATE(7312), 1, + STATE(2602), 1, + sym_val_string, + STATE(3819), 1, sym__val_number_decimal, - ACTIONS(1343), 2, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + ACTIONS(5624), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + STATE(2643), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5618), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5620), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281445,53 +289699,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [66625] = 17, - ACTIONS(111), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [64177] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3127), 1, anon_sym_DQUOTE, - ACTIONS(123), 1, + ACTIONS(3133), 1, sym_raw_string_begin, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4967), 1, - aux_sym_cmd_identifier_token38, - STATE(2452), 1, + STATE(2550), 1, + aux_sym_command_list_repeat1, + STATE(2561), 1, sym_comment, - STATE(6296), 1, - sym_cmd_identifier, - STATE(6299), 1, - sym_val_string, - STATE(6981), 1, + STATE(3723), 1, sym__val_number_decimal, - STATE(7177), 1, + STATE(7137), 1, sym__command_name, - ACTIONS(113), 2, + STATE(7397), 1, + sym_val_string, + STATE(7535), 1, + sym_cmd_identifier, + ACTIONS(3129), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1343), 2, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2065), 2, + STATE(5497), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4961), 5, + ACTIONS(5288), 6, aux_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(4965), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4963), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5290), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281521,85 +289773,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [66718] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2453), 1, - sym_comment, - ACTIONS(2561), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2563), 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, - [66785] = 4, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [64267] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2454), 1, + STATE(2562), 1, sym_comment, - ACTIONS(2410), 6, + ACTIONS(998), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2412), 50, + anon_sym_DOT, + ACTIONS(1000), 48, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281629,19 +289823,16 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -281649,19 +289840,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66852] = 4, - ACTIONS(249), 1, + [64333] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2455), 1, + ACTIONS(5497), 1, + anon_sym_DOLLAR, + ACTIONS(5499), 1, + anon_sym_LPAREN2, + ACTIONS(5632), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5634), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5636), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5638), 1, + aux_sym__immediate_decimal_token5, + STATE(2563), 1, + sym_comment, + STATE(3142), 1, + sym__immediate_decimal, + STATE(3140), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1691), 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(1693), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [64415] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5497), 1, + anon_sym_DOLLAR, + ACTIONS(5499), 1, + anon_sym_LPAREN2, + ACTIONS(5632), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5634), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5636), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5638), 1, + aux_sym__immediate_decimal_token5, + STATE(2564), 1, + sym_comment, + STATE(3083), 1, + sym__immediate_decimal, + STATE(3149), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1663), 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(1671), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [64497] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2565), 1, sym_comment, - ACTIONS(2438), 6, + ACTIONS(1014), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2440), 50, + anon_sym_DOT, + ACTIONS(1016), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -281692,11 +290024,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, @@ -281704,7 +290034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -281712,36 +290042,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66919] = 11, - ACTIONS(3), 1, + [64563] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, + ACTIONS(5497), 1, + anon_sym_DOLLAR, + ACTIONS(5499), 1, anon_sym_LPAREN2, - ACTIONS(5520), 1, - anon_sym_DOT_DOT2, - ACTIONS(5524), 1, - sym_filesize_unit, - ACTIONS(5526), 1, - sym_duration_unit, - ACTIONS(5528), 1, - aux_sym__unquoted_in_list_token2, - STATE(2456), 1, + ACTIONS(5632), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5634), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5636), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5638), 1, + aux_sym__immediate_decimal_token5, + STATE(2566), 1, sym_comment, - STATE(7447), 1, + STATE(3098), 1, + sym__immediate_decimal, + STATE(3133), 2, sym__expr_parenthesized_immediate, - ACTIONS(1640), 2, + sym_val_variable, + ACTIONS(1705), 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(1707), 28, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5522), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1628), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [64645] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5580), 1, + anon_sym_DOT, + STATE(2567), 1, + sym_comment, + STATE(2586), 1, + aux_sym_cell_path_repeat1, + STATE(2759), 1, + sym_path, + STATE(2835), 1, + sym_cell_path, + ACTIONS(963), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(961), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -281749,8 +290138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -281758,6 +290151,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -281782,51 +290178,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [67000] = 17, - ACTIONS(249), 1, + [64719] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2457), 1, + ACTIONS(5640), 1, + anon_sym_QMARK2, + STATE(2568), 1, sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(5764), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(984), 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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(986), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281856,14 +290225,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [67093] = 4, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [64787] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2458), 1, + ACTIONS(5580), 1, + anon_sym_DOT, + STATE(2569), 1, sym_comment, - ACTIONS(5157), 8, + STATE(2586), 1, + aux_sym_cell_path_repeat1, + STATE(2759), 1, + sym_path, + STATE(2824), 1, + sym_cell_path, + ACTIONS(1771), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1769), 47, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281872,47 +290298,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(5155), 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, @@ -281921,51 +290306,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67160] = 17, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [64861] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5497), 1, + anon_sym_DOLLAR, + ACTIONS(5499), 1, + anon_sym_LPAREN2, + ACTIONS(5632), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5634), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5636), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5638), 1, + aux_sym__immediate_decimal_token5, + STATE(2570), 1, + sym_comment, + STATE(3146), 1, + sym__immediate_decimal, + STATE(3145), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1581), 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, - ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5427), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5429), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1591), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [64943] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3127), 1, anon_sym_DQUOTE, - ACTIONS(5433), 1, + ACTIONS(3133), 1, sym_raw_string_begin, - STATE(1453), 1, - sym__command_name, - STATE(2459), 1, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2550), 1, + aux_sym_command_list_repeat1, + STATE(2571), 1, sym_comment, - STATE(2493), 1, - sym_cmd_identifier, - STATE(2494), 1, - sym_val_string, - STATE(7107), 1, + STATE(3723), 1, sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5431), 2, + STATE(7317), 1, + sym__command_name, + STATE(7397), 1, + sym_val_string, + STATE(7535), 1, + sym_cmd_identifier, + ACTIONS(3129), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2500), 2, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5497), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5421), 5, + ACTIONS(5288), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5290), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, - ACTIONS(5425), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5423), 31, + [65033] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2572), 1, + sym_comment, + ACTIONS(1763), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1765), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281995,116 +290498,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [67253] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2460), 1, - sym_comment, - ACTIONS(1909), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1911), 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, - [67320] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, - ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2461), 1, - sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(7312), 1, - sym__val_number_decimal, - STATE(7908), 1, - sym__command_name, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 5, + [65099] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2573), 1, + sym_comment, + ACTIONS(994), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(996), 48, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282134,316 +290558,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [67413] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5540), 1, - aux_sym_expr_binary_token13, - ACTIONS(5542), 1, - aux_sym_expr_binary_token14, - ACTIONS(5544), 1, - aux_sym_expr_binary_token15, - ACTIONS(5546), 1, - aux_sym_expr_binary_token16, - STATE(2462), 1, - sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5534), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5536), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5538), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5532), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5548), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5550), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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, - [67502] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2463), 1, - sym_comment, - ACTIONS(1897), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1899), 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, - [67569] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2464), 1, - sym_comment, - ACTIONS(2547), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2549), 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, - [67636] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2465), 1, - sym_comment, - ACTIONS(2510), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2512), 48, - ts_builtin_sym_end, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67703] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, + anon_sym_LBRACK, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2466), 1, - sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6681), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 5, + [65165] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2574), 1, + sym_comment, + ACTIONS(1673), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1675), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282473,47 +290622,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [67796] = 11, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [65231] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5466), 1, - anon_sym_DOLLAR, - ACTIONS(5468), 1, - anon_sym_LPAREN2, - ACTIONS(5554), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5556), 1, - aux_sym__immediate_decimal_token5, - STATE(2467), 1, + STATE(2575), 1, sym_comment, - STATE(2995), 1, - sym__immediate_decimal, - ACTIONS(1570), 2, + ACTIONS(1623), 7, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(5552), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2994), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1560), 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(1621), 48, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -282521,6 +290671,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -282545,51 +290698,47 @@ 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, - [67877] = 17, - ACTIONS(111), 1, + aux_sym__unquoted_in_list_token2, + [65297] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3127), 1, anon_sym_DQUOTE, - ACTIONS(123), 1, + ACTIONS(3133), 1, sym_raw_string_begin, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4967), 1, - aux_sym_cmd_identifier_token38, - STATE(2468), 1, + STATE(2550), 1, + aux_sym_command_list_repeat1, + STATE(2576), 1, sym_comment, - STATE(6296), 1, - sym_cmd_identifier, - STATE(6299), 1, - sym_val_string, - STATE(6981), 1, + STATE(3723), 1, sym__val_number_decimal, - STATE(7185), 1, + STATE(7316), 1, sym__command_name, - ACTIONS(113), 2, + STATE(7397), 1, + sym_val_string, + STATE(7535), 1, + sym_cmd_identifier, + ACTIONS(3129), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1343), 2, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2065), 2, + STATE(5497), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4961), 5, + ACTIONS(5288), 6, aux_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(4965), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4963), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5290), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282619,42 +290768,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [67970] = 13, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [65387] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5558), 1, - anon_sym_DOLLAR, - ACTIONS(5560), 1, - anon_sym_LPAREN2, - ACTIONS(5562), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5564), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5566), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token5, - STATE(2469), 1, + STATE(2577), 1, sym_comment, - STATE(3038), 1, - sym__immediate_decimal, - STATE(3045), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 18, + ACTIONS(1765), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1763), 48, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282663,24 +290825,141 @@ 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(1524), 28, + aux_sym__unquoted_in_list_token2, + [65453] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2578), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7885), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + [65540] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5642), 1, + anon_sym_DOT, + STATE(2579), 1, + sym_comment, + STATE(2711), 1, + aux_sym_cell_path_repeat1, + STATE(2796), 1, + sym_path, + STATE(2897), 1, + sym_cell_path, + ACTIONS(961), 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(963), 33, + sym_raw_string_begin, 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -282693,51 +290972,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, - [68055] = 17, - ACTIONS(111), 1, + [65613] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(123), 1, + ACTIONS(121), 1, sym_raw_string_begin, - ACTIONS(249), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4967), 1, - aux_sym_cmd_identifier_token38, - STATE(2470), 1, + STATE(2580), 1, sym_comment, - STATE(6296), 1, + STATE(3778), 1, + sym__val_number_decimal, + STATE(6644), 1, sym_cmd_identifier, - STATE(6299), 1, + STATE(6645), 1, sym_val_string, - STATE(6981), 1, - sym__val_number_decimal, - STATE(7193), 1, + STATE(7179), 1, sym__command_name, - ACTIONS(113), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1343), 2, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2065), 2, + STATE(2091), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4961), 5, + ACTIONS(5104), 6, aux_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(4965), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4963), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5106), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282767,22 +291039,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [68148] = 4, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [65700] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2471), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2581), 1, sym_comment, - ACTIONS(5570), 6, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7785), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5572), 50, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282812,32 +291111,89 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [65787] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5574), 1, + aux_sym__immediate_decimal_token2, + STATE(2582), 1, + sym_comment, + ACTIONS(1607), 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(1609), 35, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68215] = 4, - ACTIONS(249), 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, + [65854] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2472), 1, + ACTIONS(5644), 1, + aux_sym__immediate_decimal_token2, + STATE(2583), 1, sym_comment, - ACTIONS(2001), 8, + ACTIONS(1673), 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, @@ -282846,47 +291202,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2003), 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, + aux_sym__unquoted_in_list_token2, + ACTIONS(1675), 35, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282895,45 +291240,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, - [68282] = 11, + [65921] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5466), 1, - anon_sym_DOLLAR, - ACTIONS(5468), 1, - anon_sym_LPAREN2, - ACTIONS(5554), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5556), 1, - aux_sym__immediate_decimal_token5, - STATE(2473), 1, + ACTIONS(5584), 1, + aux_sym__immediate_decimal_token2, + STATE(2584), 1, sym_comment, - STATE(3028), 1, - sym__immediate_decimal, - ACTIONS(1610), 2, + ACTIONS(1757), 5, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(5552), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3027), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1608), 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(1755), 48, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -282941,6 +291274,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -282965,45 +291301,34 @@ 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, - [68363] = 11, + aux_sym__unquoted_in_list_token2, + [65988] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5466), 1, - anon_sym_DOLLAR, - ACTIONS(5468), 1, - anon_sym_LPAREN2, - ACTIONS(5554), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5556), 1, - aux_sym__immediate_decimal_token5, - STATE(2474), 1, + ACTIONS(5646), 1, + aux_sym__immediate_decimal_token2, + STATE(2585), 1, sym_comment, - STATE(3035), 1, - sym__immediate_decimal, - ACTIONS(1614), 2, + ACTIONS(1785), 5, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(5552), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3031), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1612), 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(1783), 48, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -283011,6 +291336,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -283035,45 +291363,37 @@ 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, - [68444] = 11, + aux_sym__unquoted_in_list_token2, + [66055] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5466), 1, - anon_sym_DOLLAR, - ACTIONS(5468), 1, - anon_sym_LPAREN2, - ACTIONS(5554), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5556), 1, - aux_sym__immediate_decimal_token5, - STATE(2475), 1, + ACTIONS(5580), 1, + anon_sym_DOT, + STATE(2586), 1, sym_comment, - STATE(3037), 1, - sym__immediate_decimal, - ACTIONS(1622), 2, + STATE(2588), 1, + aux_sym_cell_path_repeat1, + STATE(2759), 1, + sym_path, + ACTIONS(969), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(5552), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3036), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1620), 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(967), 47, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -283081,6 +291401,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -283105,51 +291428,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, - [68525] = 17, - ACTIONS(249), 1, + [66126] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3592), 1, + ACTIONS(4009), 1, anon_sym_DQUOTE, - ACTIONS(3602), 1, + ACTIONS(4013), 1, sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2476), 1, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2587), 1, sym_comment, - STATE(4162), 1, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, sym_val_string, - STATE(4187), 1, + STATE(4195), 1, sym_cmd_identifier, - STATE(4877), 1, + STATE(6331), 1, sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3594), 2, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4768), 2, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5033), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283179,14 +291495,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [68618] = 4, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [66213] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2477), 1, + ACTIONS(5648), 1, + anon_sym_DOT, + STATE(2759), 1, + sym_path, + STATE(2588), 2, sym_comment, - ACTIONS(2535), 8, + aux_sym_cell_path_repeat1, + ACTIONS(973), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(971), 47, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283195,47 +291554,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(2537), 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, @@ -283244,51 +291562,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, - [68685] = 17, - ACTIONS(111), 1, + aux_sym__unquoted_in_list_token1, + [66282] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, anon_sym_DQUOTE, - ACTIONS(123), 1, + ACTIONS(4013), 1, sym_raw_string_begin, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4967), 1, - aux_sym_cmd_identifier_token38, - STATE(2478), 1, + STATE(2589), 1, sym_comment, - STATE(6086), 1, - sym__command_name, - STATE(6296), 1, - sym_cmd_identifier, - STATE(6299), 1, - sym_val_string, - STATE(6981), 1, + STATE(3762), 1, sym__val_number_decimal, - ACTIONS(113), 2, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6297), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1343), 2, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2065), 2, + STATE(4492), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4961), 5, + ACTIONS(5033), 6, aux_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(4965), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4963), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283318,116 +291630,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [68778] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2479), 1, - sym_comment, - ACTIONS(2430), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2432), 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, - [68845] = 17, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [66369] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, + ACTIONS(4009), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, + ACTIONS(4013), 1, sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2480), 1, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2590), 1, sym_comment, - STATE(4162), 1, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, sym_val_string, - STATE(4187), 1, + STATE(4195), 1, sym_cmd_identifier, - STATE(7312), 1, - sym__val_number_decimal, - STATE(7726), 1, + STATE(6299), 1, sym__command_name, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5033), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283457,254 +291702,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [68938] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2481), 1, - sym_comment, - ACTIONS(2478), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2480), 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, - [69005] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2482), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 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, - [69072] = 16, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5540), 1, - aux_sym_expr_binary_token13, - ACTIONS(5542), 1, - aux_sym_expr_binary_token14, - ACTIONS(5544), 1, - aux_sym_expr_binary_token15, - ACTIONS(5546), 1, - aux_sym_expr_binary_token16, - ACTIONS(5574), 1, - aux_sym_expr_binary_token17, - STATE(2483), 1, - sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5534), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5536), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5538), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5532), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5548), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5550), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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, - [69163] = 17, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [66456] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, + ACTIONS(4009), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, + ACTIONS(4013), 1, sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2484), 1, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2591), 1, sym_comment, - STATE(4162), 1, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, sym_val_string, - STATE(4187), 1, + STATE(4195), 1, sym_cmd_identifier, - STATE(5931), 1, + STATE(6368), 1, sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5033), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283734,188 +291774,193 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [69256] = 13, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [66543] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5558), 1, - anon_sym_DOLLAR, - ACTIONS(5560), 1, - anon_sym_LPAREN2, - ACTIONS(5562), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5564), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5566), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token5, - STATE(2485), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2592), 1, sym_comment, - STATE(2980), 1, - sym__immediate_decimal, - STATE(3109), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1544), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6599), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1556), 28, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, - [69341] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2486), 1, - sym_comment, - ACTIONS(2531), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2533), 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, - [69408] = 17, - ACTIONS(111), 1, + [66630] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(123), 1, + ACTIONS(121), 1, sym_raw_string_begin, - ACTIONS(249), 1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4967), 1, - aux_sym_cmd_identifier_token38, - STATE(2487), 1, + STATE(2593), 1, sym_comment, - STATE(6035), 1, + STATE(3778), 1, + sym__val_number_decimal, + STATE(6080), 1, sym__command_name, - STATE(6296), 1, + STATE(6644), 1, sym_cmd_identifier, - STATE(6299), 1, + STATE(6645), 1, sym_val_string, - STATE(6981), 1, - sym__val_number_decimal, - ACTIONS(113), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1343), 2, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2065), 2, + STATE(2091), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4961), 5, + ACTIONS(5104), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5106), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, - ACTIONS(4965), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4963), 31, + [66717] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2594), 1, + sym_comment, + STATE(3778), 1, + sym__val_number_decimal, + STATE(6137), 1, + sym__command_name, + STATE(6644), 1, + sym_cmd_identifier, + STATE(6645), 1, + sym_val_string, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2091), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5104), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5106), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283945,310 +291990,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [69501] = 4, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [66804] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2488), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2595), 1, sym_comment, - ACTIONS(2418), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2420), 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, - [69568] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2489), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 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, - [69635] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2490), 1, - sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5534), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5536), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5532), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5550), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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, - [69712] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2491), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 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, - [69779] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5582), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5584), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym_raw_string_begin, - STATE(2492), 1, - sym_comment, - STATE(5650), 1, - sym_cmd_identifier, - STATE(5654), 1, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, sym_val_string, - STATE(5720), 1, + STATE(4195), 1, + sym_cmd_identifier, + STATE(5904), 1, sym__command_name, - STATE(6775), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5586), 2, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5598), 2, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5576), 5, + ACTIONS(5033), 6, aux_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(5580), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5578), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284278,22 +292062,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [69872] = 4, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [66891] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2493), 1, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5622), 1, + anon_sym_DQUOTE, + ACTIONS(5626), 1, + sym_raw_string_begin, + STATE(1697), 1, + sym__command_name, + STATE(2596), 1, sym_comment, - ACTIONS(5590), 6, + STATE(2601), 1, + sym_cmd_identifier, + STATE(2602), 1, + sym_val_string, + STATE(3819), 1, + sym__val_number_decimal, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5624), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2643), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5618), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5592), 50, - sym_raw_string_begin, + ACTIONS(5620), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284323,40 +292134,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [66978] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2597), 1, + sym_comment, + STATE(3778), 1, + sym__val_number_decimal, + STATE(6644), 1, + sym_cmd_identifier, + STATE(6645), 1, + sym_val_string, + STATE(7181), 1, + sym__command_name, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - [69939] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2494), 1, - sym_comment, - ACTIONS(5594), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2091), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5104), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5596), 50, - sym_raw_string_begin, + ACTIONS(5106), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284386,103 +292206,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [67065] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2598), 1, + sym_comment, + STATE(3778), 1, + sym__val_number_decimal, + STATE(6644), 1, + sym_cmd_identifier, + STATE(6645), 1, + sym_val_string, + STATE(7187), 1, + sym__command_name, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - [70006] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2495), 1, - sym_comment, - ACTIONS(2289), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2291), 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, - [70073] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2496), 1, - sym_comment, - ACTIONS(4987), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2091), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5104), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4985), 50, - sym_raw_string_begin, + ACTIONS(5106), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284512,170 +292278,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [67152] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2599), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6221), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [70140] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2497), 1, - sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5534), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5536), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5532), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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, - [70215] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5598), 1, - sym__newline, - STATE(2498), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1351), 54, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_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_else, - anon_sym_LBRACE, - anon_sym_catch, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [70282] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2499), 1, - sym_comment, - ACTIONS(4997), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4995), 50, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284705,40 +292350,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [67239] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2600), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7773), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [70349] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2500), 1, - sym_comment, - ACTIONS(1058), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1060), 50, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284768,39 +292422,24 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, - [70416] = 4, - ACTIONS(249), 1, + [67326] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2501), 1, + STATE(2601), 1, sym_comment, - ACTIONS(2494), 6, + ACTIONS(5651), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2496), 50, + ACTIONS(5653), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -284831,11 +292470,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, @@ -284843,7 +292480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -284851,114 +292488,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70483] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2502), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 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, - [70550] = 17, - ACTIONS(249), 1, + [67391] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2503), 1, + STATE(2602), 1, sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(6421), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5655), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5657), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284988,84 +292531,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [70643] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2504), 1, - sym_comment, - ACTIONS(2539), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2541), 48, - ts_builtin_sym_end, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70710] = 4, - ACTIONS(249), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67456] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2505), 1, + STATE(2603), 1, sym_comment, - ACTIONS(5601), 6, + ACTIONS(5088), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5603), 50, + ACTIONS(5086), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -285096,11 +292592,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, @@ -285108,7 +292602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -285116,146 +292610,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70777] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2506), 1, - sym_comment, - ACTIONS(2410), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2412), 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, - [70844] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2507), 1, - sym_comment, - ACTIONS(2438), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2440), 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, - [70911] = 4, - ACTIONS(249), 1, + [67521] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2508), 1, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2604), 1, sym_comment, - ACTIONS(1062), 6, + STATE(3778), 1, + sym__val_number_decimal, + STATE(6644), 1, + sym_cmd_identifier, + STATE(6645), 1, + sym_val_string, + STATE(6909), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2091), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5104), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1064), 50, - sym_raw_string_begin, + ACTIONS(5106), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285285,198 +292677,25 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, - [70978] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2509), 1, - sym_comment, - ACTIONS(5139), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5137), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5127), 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, - [71047] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2510), 1, - sym_comment, - ACTIONS(5153), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5151), 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, - [71114] = 17, - ACTIONS(249), 1, + [67608] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5611), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5613), 1, - anon_sym_DQUOTE, - ACTIONS(5617), 1, - sym_raw_string_begin, - STATE(1535), 1, - sym__command_name, - STATE(2511), 1, + STATE(2605), 1, sym_comment, - STATE(2617), 1, - sym_cmd_identifier, - STATE(2618), 1, - sym_val_string, - STATE(6773), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5615), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2615), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5605), 5, + 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, - ACTIONS(5609), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5607), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5020), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285506,306 +292725,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [71207] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2512), 1, - sym_comment, - ACTIONS(5129), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5127), 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, - [71274] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2513), 1, - sym_comment, - ACTIONS(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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, - [71341] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2514), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 48, - ts_builtin_sym_end, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71408] = 5, - ACTIONS(249), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67673] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2515), 1, - sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 46, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71477] = 17, - ACTIONS(111), 1, + ACTIONS(3603), 1, anon_sym_DQUOTE, - ACTIONS(123), 1, + ACTIONS(3613), 1, sym_raw_string_begin, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4967), 1, - aux_sym_cmd_identifier_token38, - STATE(2516), 1, + STATE(2606), 1, sym_comment, - STATE(6296), 1, - sym_cmd_identifier, - STATE(6299), 1, - sym_val_string, - STATE(6981), 1, + STATE(3762), 1, sym__val_number_decimal, - STATE(7255), 1, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(4945), 1, sym__command_name, - ACTIONS(113), 2, + ACTIONS(3605), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1343), 2, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2065), 2, + STATE(4722), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4961), 5, + ACTIONS(5033), 6, aux_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(4965), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4963), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285835,53 +292810,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [71570] = 17, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [67760] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2517), 1, + STATE(2607), 1, sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(7312), 1, + STATE(3778), 1, sym__val_number_decimal, - STATE(7763), 1, + STATE(6644), 1, + sym_cmd_identifier, + STATE(6645), 1, + sym_val_string, + STATE(6838), 1, sym__command_name, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2091), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5104), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5106), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285911,53 +292882,110 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [71663] = 17, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [67847] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + STATE(2608), 1, + sym_comment, + ACTIONS(1018), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1020), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [67912] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2518), 1, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2609), 1, sym_comment, - STATE(4162), 1, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, sym_val_string, - STATE(4187), 1, + STATE(4195), 1, sym_cmd_identifier, - STATE(6271), 1, + STATE(4945), 1, sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5033), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285987,116 +293015,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [71756] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2519), 1, - sym_comment, - ACTIONS(2466), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_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), 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, - [71823] = 17, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [67999] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, + ACTIONS(5663), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, + ACTIONS(5667), 1, sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2520), 1, + STATE(2610), 1, sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(7312), 1, + STATE(3730), 1, sym__val_number_decimal, - STATE(7777), 1, + STATE(5633), 1, sym__command_name, - ACTIONS(1343), 2, + STATE(5719), 1, + sym_cmd_identifier, + STATE(5720), 1, + sym_val_string, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + ACTIONS(5665), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + STATE(5556), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5659), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5661), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286126,53 +293087,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [71916] = 17, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [68086] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, + ACTIONS(5673), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, + ACTIONS(5677), 1, sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2521), 1, + STATE(1742), 1, + sym__command_name, + STATE(2611), 1, sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, + STATE(2673), 1, sym_cmd_identifier, - STATE(6314), 1, - sym__command_name, - STATE(7312), 1, + STATE(2674), 1, + sym_val_string, + STATE(3761), 1, sym__val_number_decimal, - ACTIONS(1343), 2, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, + ACTIONS(5675), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + STATE(2670), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5669), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5671), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286202,210 +293159,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [72009] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2522), 1, - sym_comment, - ACTIONS(2017), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2019), 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, - [72076] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2523), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 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, - [72143] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2524), 1, - sym_comment, - ACTIONS(5161), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5159), 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, - [72210] = 4, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [68173] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2525), 1, + STATE(2612), 1, sym_comment, - ACTIONS(1038), 6, + ACTIONS(2347), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1040), 50, + ACTIONS(2349), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -286436,11 +293207,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, @@ -286448,7 +293217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -286456,636 +293225,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72277] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2526), 1, - sym_comment, - ACTIONS(2043), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2045), 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, - [72344] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2527), 1, - sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5532), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 42, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72415] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2528), 1, - sym_comment, - ACTIONS(2047), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_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), 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, - [72482] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2529), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 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, - [72549] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2530), 1, - sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5534), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5532), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72622] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2531), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 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, - [72689] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2532), 1, - sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5534), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5536), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5532), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5548), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5550), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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, - [72768] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2533), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 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, - [72835] = 11, - ACTIONS(249), 1, + [68238] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2534), 1, + STATE(2613), 1, sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5534), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5536), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5538), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5532), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5548), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5550), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 26, - ts_builtin_sym_end, + ACTIONS(2347), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2349), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token13, - aux_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, - [72916] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2535), 1, - sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(7312), 1, - sym__val_number_decimal, - STATE(7821), 1, - sym__command_name, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 5, + [68303] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2614), 1, + sym_comment, + ACTIONS(1002), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1004), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287115,21 +293329,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [73009] = 4, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68368] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2536), 1, + STATE(2615), 1, sym_comment, - ACTIONS(1670), 6, + ACTIONS(2508), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1672), 50, + ACTIONS(2510), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -287160,11 +293390,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, @@ -287172,7 +293400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287180,20 +293408,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73076] = 4, - ACTIONS(249), 1, + [68433] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2537), 1, + STATE(2616), 1, sym_comment, - ACTIONS(1074), 7, + ACTIONS(1006), 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_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1076), 49, + ACTIONS(1008), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -287225,17 +293453,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287243,343 +293469,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73143] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2538), 1, - sym_comment, - ACTIONS(2569), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2571), 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, - [73210] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2539), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 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, - [73277] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5540), 1, - aux_sym_expr_binary_token13, - STATE(2540), 1, - sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5534), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5536), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5538), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5532), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5548), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5550), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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, - [73360] = 4, - ACTIONS(249), 1, + [68498] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2541), 1, + STATE(2617), 1, sym_comment, - ACTIONS(2434), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2436), 48, - ts_builtin_sym_end, + ACTIONS(2464), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2466), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73427] = 4, - ACTIONS(249), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68563] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2542), 1, + STATE(2618), 1, sym_comment, - ACTIONS(2059), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2061), 48, - ts_builtin_sym_end, + ACTIONS(2468), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2470), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73494] = 4, - ACTIONS(249), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68628] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2543), 1, + STATE(2619), 1, sym_comment, - ACTIONS(1066), 7, + ACTIONS(1010), 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_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1068), 49, + ACTIONS(1012), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -287611,17 +293636,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287629,20 +293652,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73561] = 4, - ACTIONS(249), 1, + [68693] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2544), 1, + STATE(2620), 1, sym_comment, - ACTIONS(1070), 7, + ACTIONS(1014), 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_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1072), 49, + ACTIONS(1016), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -287674,17 +293697,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287692,690 +293713,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73628] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2545), 1, - sym_comment, - ACTIONS(2442), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2444), 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, - [73695] = 4, - ACTIONS(249), 1, + [68758] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2546), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2621), 1, sym_comment, - ACTIONS(2450), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_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), 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, - [73762] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2547), 1, - sym_comment, - ACTIONS(2067), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2069), 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, - [73829] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2548), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 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, - [73896] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5540), 1, - aux_sym_expr_binary_token13, - ACTIONS(5542), 1, - aux_sym_expr_binary_token14, - STATE(2549), 1, - sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5534), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5536), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5538), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5532), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5548), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5550), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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, - [73981] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2550), 1, - sym_comment, - ACTIONS(2087), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2089), 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, - [74048] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2551), 1, - sym_comment, - ACTIONS(2398), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2400), 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, - [74115] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2552), 1, - sym_comment, - ACTIONS(2406), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2408), 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, - [74182] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2553), 1, - sym_comment, - ACTIONS(2506), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2508), 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, - [74249] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2554), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 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, - [74316] = 17, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4967), 1, - aux_sym_cmd_identifier_token38, - STATE(2555), 1, - sym_comment, - STATE(6296), 1, - sym_cmd_identifier, - STATE(6299), 1, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, sym_val_string, - STATE(6945), 1, + STATE(4195), 1, + sym_cmd_identifier, + STATE(5997), 1, sym__command_name, - STATE(6981), 1, - sym__val_number_decimal, - ACTIONS(113), 2, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1343), 2, + ACTIONS(5043), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2065), 2, + STATE(4492), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4961), 5, + ACTIONS(5033), 6, aux_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(4965), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4963), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288405,441 +293780,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [74409] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5540), 1, - aux_sym_expr_binary_token13, - ACTIONS(5542), 1, - aux_sym_expr_binary_token14, - ACTIONS(5544), 1, - aux_sym_expr_binary_token15, - STATE(2556), 1, - sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5534), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5536), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5538), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5532), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5548), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5550), 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(5133), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5131), 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, - [74496] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2557), 1, - sym_comment, - ACTIONS(2470), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2472), 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, - [74563] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2558), 1, - sym_comment, - ACTIONS(2474), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2476), 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, - [74630] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2559), 1, - sym_comment, - ACTIONS(2095), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2097), 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, - [74697] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2560), 1, - sym_comment, - ACTIONS(2502), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2504), 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, - [74764] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2561), 1, - sym_comment, - ACTIONS(5019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5017), 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, - [74831] = 17, - ACTIONS(249), 1, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [68845] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1345), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1347), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4895), 1, - aux_sym_cmd_identifier_token38, - STATE(2562), 1, + STATE(2622), 1, sym_comment, - STATE(4162), 1, - sym_val_string, - STATE(4187), 1, - sym_cmd_identifier, - STATE(4877), 1, - sym__command_name, - STATE(7312), 1, - sym__val_number_decimal, - ACTIONS(1343), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4889), 5, + ACTIONS(5679), 6, aux_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(4893), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4891), 31, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5681), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288869,92 +293828,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [74924] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2563), 1, - sym_comment, - ACTIONS(2494), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2496), 48, - ts_builtin_sym_end, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [74991] = 8, - ACTIONS(249), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68910] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2564), 1, + STATE(2623), 1, sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2759), 1, - sym_cell_path, - ACTIONS(1993), 6, + ACTIONS(5683), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1995), 45, + ACTIONS(5685), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -288985,14 +293889,17 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -289000,21 +293907,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75065] = 4, - ACTIONS(249), 1, + [68975] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2565), 1, + STATE(2624), 1, sym_comment, - ACTIONS(1062), 6, + ACTIONS(1735), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1064), 49, + ACTIONS(1737), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289044,17 +293950,17 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -289062,21 +293968,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75131] = 4, - ACTIONS(249), 1, + [69040] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2566), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2625), 1, sym_comment, - ACTIONS(2494), 6, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6264), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2496), 49, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289106,39 +294035,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [69127] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2626), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6278), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [75197] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2567), 1, - sym_comment, - ACTIONS(1038), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1040), 49, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289168,39 +294107,25 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, - [75263] = 4, - ACTIONS(249), 1, + [69214] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2568), 1, + STATE(2627), 1, sym_comment, - ACTIONS(1078), 6, + ACTIONS(5687), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1080), 49, + ACTIONS(5689), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289230,17 +294155,17 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -289248,27 +294173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75329] = 8, - ACTIONS(249), 1, + [69279] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2569), 1, + STATE(2628), 1, sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2765), 1, - sym_cell_path, - ACTIONS(2001), 6, + ACTIONS(5691), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2003), 45, + ACTIONS(5693), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -289299,14 +294216,17 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -289314,21 +294234,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75403] = 4, - ACTIONS(249), 1, + [69344] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2570), 1, + STATE(2629), 1, sym_comment, - ACTIONS(2494), 6, + ACTIONS(2125), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2496), 49, + ACTIONS(2127), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289358,17 +294277,17 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -289376,28 +294295,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75469] = 8, - ACTIONS(249), 1, + [69409] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, + ACTIONS(5642), 1, anon_sym_DOT, - STATE(2571), 1, - sym_comment, STATE(2630), 1, + sym_comment, + STATE(2711), 1, aux_sym_cell_path_repeat1, - STATE(2751), 1, + STATE(2796), 1, sym_path, - STATE(2768), 1, + STATE(2890), 1, sym_cell_path, - ACTIONS(2005), 6, + ACTIONS(1769), 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(1771), 33, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69482] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2631), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7898), 1, + sym__command_name, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2007), 45, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289427,36 +294427,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [69569] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2632), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6300), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [75543] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2572), 1, - sym_comment, - ACTIONS(5502), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5504), 49, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289486,46 +294499,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [69656] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2633), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7705), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [75609] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2573), 1, - sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2769), 1, - sym_cell_path, - ACTIONS(2009), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2011), 45, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289555,36 +294571,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [69743] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2634), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(6365), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [75683] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2574), 1, - sym_comment, - ACTIONS(1054), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1056), 49, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289614,45 +294643,89 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + [69830] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5642), 1, + anon_sym_DOT, + STATE(2635), 1, + sym_comment, + STATE(2711), 1, + aux_sym_cell_path_repeat1, + STATE(2796), 1, + sym_path, + STATE(2855), 1, + sym_cell_path, + ACTIONS(1735), 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(1737), 33, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75749] = 8, - ACTIONS(249), 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, + [69903] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2575), 1, + STATE(2636), 1, sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2770), 1, - sym_cell_path, - ACTIONS(2013), 6, + ACTIONS(5695), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2015), 45, + ACTIONS(5697), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -289683,14 +294756,17 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -289698,94 +294774,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75823] = 8, - ACTIONS(249), 1, + [69968] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2576), 1, - sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2774), 1, - sym_cell_path, - 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), 45, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2637), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7679), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [75897] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2577), 1, - sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2771), 1, - sym_cell_path, - ACTIONS(2017), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2019), 45, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289815,43 +294841,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [70055] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2638), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7881), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [75971] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2578), 1, - sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2773), 1, - sym_cell_path, - ACTIONS(2021), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2023), 45, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289881,43 +294913,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [70142] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2639), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7861), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [76045] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2579), 1, - sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2775), 1, - sym_cell_path, - ACTIONS(2043), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2045), 45, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289947,43 +294985,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [70229] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2640), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7737), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [76119] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2580), 1, - sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2776), 1, - sym_cell_path, - ACTIONS(2047), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2049), 45, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290013,43 +295057,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [70316] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2641), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7781), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [76193] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2581), 1, - sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2784), 1, - sym_cell_path, - ACTIONS(2051), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2053), 45, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290079,36 +295129,25 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, - [76267] = 4, - ACTIONS(249), 1, + [70403] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2582), 1, + STATE(2642), 1, sym_comment, - ACTIONS(2410), 6, + ACTIONS(990), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2412), 49, + ACTIONS(992), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290138,17 +295177,17 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -290156,27 +295195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76333] = 8, - ACTIONS(249), 1, + [70468] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2583), 1, + STATE(2643), 1, sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2786), 1, - sym_cell_path, - ACTIONS(2055), 6, + ACTIONS(994), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2057), 45, + ACTIONS(996), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -290207,14 +295238,17 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -290222,27 +295256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76407] = 8, - ACTIONS(249), 1, + [70533] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2584), 1, + STATE(2644), 1, sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2789), 1, - sym_cell_path, - ACTIONS(2059), 6, + ACTIONS(998), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2061), 45, + ACTIONS(1000), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -290273,14 +295299,17 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -290288,28 +295317,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76481] = 8, - ACTIONS(249), 1, + [70598] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2585), 1, + ACTIONS(5045), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, + aux_sym__val_number_decimal_token4, + STATE(2645), 1, sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2790), 1, - sym_cell_path, - ACTIONS(2067), 6, + STATE(3778), 1, + sym__val_number_decimal, + STATE(6644), 1, + sym_cmd_identifier, + STATE(6645), 1, + sym_val_string, + STATE(7176), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2091), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5104), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2069), 45, - sym_raw_string_begin, + ACTIONS(5106), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290339,36 +295384,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [70685] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2646), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7998), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [76555] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2586), 1, - sym_comment, - ACTIONS(2438), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2440), 49, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290398,46 +295456,49 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, + [70772] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2647), 1, + sym_comment, + STATE(3762), 1, + sym__val_number_decimal, + STATE(4159), 1, + sym_val_string, + STATE(4195), 1, + sym_cmd_identifier, + STATE(7560), 1, + sym__command_name, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - [76621] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2587), 1, - sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2797), 1, - sym_cell_path, - ACTIONS(2083), 6, + ACTIONS(5043), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2085), 45, - sym_raw_string_begin, + ACTIONS(5035), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290467,42 +295528,24 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, - [76695] = 8, - ACTIONS(249), 1, + [70859] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2588), 1, + STATE(2648), 1, sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2798), 1, - sym_cell_path, - ACTIONS(2087), 6, + ACTIONS(2492), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2089), 45, + ACTIONS(2494), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -290533,14 +295576,17 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -290548,27 +295594,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76769] = 8, - ACTIONS(249), 1, + [70924] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, + ACTIONS(5699), 1, anon_sym_DOT, - STATE(2589), 1, + STATE(2649), 1, sym_comment, - STATE(2630), 1, + STATE(2736), 1, aux_sym_cell_path_repeat1, - STATE(2751), 1, + STATE(2851), 1, sym_path, - STATE(2800), 1, + STATE(2953), 1, sym_cell_path, - ACTIONS(2095), 6, + ACTIONS(1907), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2097), 45, + ACTIONS(1911), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -290599,11 +295645,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -290614,156 +295658,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76843] = 4, - ACTIONS(249), 1, + [70996] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2590), 1, + ACTIONS(5701), 1, + sym__newline, + STATE(2650), 1, sym_comment, - ACTIONS(5601), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5603), 49, + ACTIONS(5704), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1290), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1288), 35, sym_raw_string_begin, - 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_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, 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, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76909] = 8, - ACTIONS(249), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71064] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2591), 1, + ACTIONS(5706), 1, + anon_sym_QMARK2, + STATE(2651), 1, sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2804), 1, - sym_cell_path, - ACTIONS(1901), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1903), 45, + ACTIONS(980), 4, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(978), 48, + 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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76983] = 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [71130] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5621), 1, - anon_sym_DOT, - ACTIONS(5623), 1, - aux_sym__immediate_decimal_token2, - STATE(2592), 1, + ACTIONS(5708), 1, + anon_sym_QMARK2, + STATE(2652), 1, sym_comment, - ACTIONS(1717), 5, + ACTIONS(986), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1715), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(984), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -290772,8 +295802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -290781,6 +295815,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -290805,100 +295842,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, - aux_sym__unquoted_in_list_token2, - [77053] = 3, - ACTIONS(249), 1, + [71196] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2593), 1, + ACTIONS(5712), 1, + anon_sym_RBRACK, + ACTIONS(5714), 1, + sym__entry_separator, + ACTIONS(5716), 1, + sym_raw_string_begin, + STATE(2653), 1, sym_comment, - ACTIONS(1362), 55, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, + STATE(2656), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5710), 49, 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_else, - anon_sym_LBRACE, - anon_sym_catch, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [77117] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_DOLLAR, - ACTIONS(5560), 1, - anon_sym_LPAREN2, - ACTIONS(5625), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5627), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5629), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5631), 1, - aux_sym__immediate_decimal_token5, - STATE(2594), 1, - sym_comment, - STATE(3051), 1, - sym__immediate_decimal, - STATE(3097), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1560), 18, 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_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290907,28 +295896,243 @@ 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(1570), 28, + [71266] = 31, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3313), 1, + aux_sym_unquoted_token1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(3997), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3999), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4001), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4003), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, sym_raw_string_begin, + ACTIONS(4213), 1, + anon_sym_DOLLAR, + ACTIONS(4215), 1, + anon_sym_DOT_DOT, + ACTIONS(5718), 1, + anon_sym_LPAREN, + ACTIONS(5722), 1, + sym_val_date, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2654), 1, + sym_comment, + STATE(5906), 1, + sym__val_number_decimal, + STATE(6715), 1, + sym_unquoted, + STATE(7572), 1, + sym__val_range, + STATE(7585), 1, + sym__unquoted_anonymous_prefix, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, anon_sym_true, anon_sym_false, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4217), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5720), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6714), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2663), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2665), 9, anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71384] = 33, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2584), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2586), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3095), 1, + anon_sym_LPAREN, + ACTIONS(3097), 1, + anon_sym_DOLLAR, + ACTIONS(3109), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3111), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3113), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3115), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3121), 1, + anon_sym_0b, + ACTIONS(3127), 1, + anon_sym_DQUOTE, + ACTIONS(3133), 1, + sym_raw_string_begin, + ACTIONS(3141), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_LBRACE, + ACTIONS(5726), 1, + anon_sym_DOT_DOT, + ACTIONS(5730), 1, + anon_sym_null, + ACTIONS(5734), 1, + sym_val_date, + STATE(2655), 1, + sym_comment, + STATE(5676), 1, + sym__val_number_decimal, + STATE(5989), 1, + sym_val_variable, + STATE(6139), 1, + sym_expr_parenthesized, + STATE(7020), 1, + sym__inter_single_quotes, + STATE(7027), 1, + sym__inter_double_quotes, + STATE(7130), 1, + sym__val_number, + STATE(7391), 1, + sym_block, + ACTIONS(3123), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3129), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5728), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5732), 2, + anon_sym_true, + anon_sym_false, + STATE(5497), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(7398), 2, + sym_val_range, + sym__value, + ACTIONS(3117), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(7097), 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, + [71506] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2325), 1, + sym_raw_string_begin, + ACTIONS(5736), 1, + sym__entry_separator, + STATE(2656), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2320), 50, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COMMA, + 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_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_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, @@ -290937,19 +296141,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, - [77199] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [71572] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2595), 1, + STATE(2657), 1, sym_comment, - ACTIONS(5570), 6, + ACTIONS(5679), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5572), 49, + ACTIONS(5681), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -290981,17 +296186,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -290999,36 +296202,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77265] = 4, + [71636] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2596), 1, - sym_comment, - ACTIONS(1538), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(5714), 1, sym__entry_separator, - ACTIONS(1536), 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, + ACTIONS(5716), 1, + sym_raw_string_begin, + ACTIONS(5739), 1, anon_sym_RBRACK, + STATE(2656), 1, + aux_sym__multiple_types_repeat1, + STATE(2658), 1, + sym_comment, + ACTIONS(5710), 49, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, 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_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -291036,6 +296235,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -291043,6 +296245,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, @@ -291060,91 +296265,55 @@ 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, - [77331] = 8, - ACTIONS(249), 1, + [71706] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5619), 1, + ACTIONS(5743), 1, + anon_sym_RBRACK, + ACTIONS(5746), 1, anon_sym_DOT, - STATE(2597), 1, + ACTIONS(5748), 1, + sym_raw_string_begin, + STATE(2659), 1, sym_comment, - STATE(2630), 1, + STATE(5931), 1, aux_sym_cell_path_repeat1, - STATE(2751), 1, + STATE(6532), 1, sym_path, - STATE(2753), 1, + STATE(7072), 1, sym_cell_path, - ACTIONS(1909), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1911), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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(1976), 2, + sym__entry_separator, + sym__table_head_separator, + ACTIONS(5741), 45, + 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, + anon_sym_null, 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, - [77405] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5633), 1, - anon_sym_DOT, - ACTIONS(5635), 1, - aux_sym__immediate_decimal_token2, - STATE(2598), 1, - sym_comment, - ACTIONS(1536), 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291153,36 +296322,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(1538), 35, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291191,102 +296330,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, - [77475] = 6, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [71782] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5637), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5639), 1, - aux_sym__immediate_decimal_token2, - STATE(2599), 1, + STATE(2660), 1, sym_comment, - ACTIONS(1528), 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(1530), 35, + ACTIONS(996), 4, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(994), 49, 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, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [77545] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_DOLLAR, - ACTIONS(5560), 1, - anon_sym_LPAREN2, - ACTIONS(5625), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5627), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5629), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5631), 1, - aux_sym__immediate_decimal_token5, - STATE(2600), 1, - sym_comment, - STATE(3121), 1, - sym__immediate_decimal, - STATE(3052), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1608), 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, @@ -291295,28 +296382,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(1610), 28, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -291325,174 +296390,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, - [77627] = 12, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [71846] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_DOLLAR, - ACTIONS(5560), 1, - anon_sym_LPAREN2, - ACTIONS(5625), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5627), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5629), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5631), 1, - aux_sym__immediate_decimal_token5, - STATE(2601), 1, + STATE(2661), 1, sym_comment, - STATE(3065), 1, - sym__immediate_decimal, - STATE(3059), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1612), 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(1614), 28, + ACTIONS(1000), 4, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(998), 49, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, 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_token1, - aux_sym__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, - [77709] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2602), 1, - sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2841), 1, - sym_cell_path, - ACTIONS(1893), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1895), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_null, 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, - [77783] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_DOLLAR, - ACTIONS(5560), 1, - anon_sym_LPAREN2, - ACTIONS(5625), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5627), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5629), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5631), 1, - aux_sym__immediate_decimal_token5, - STATE(2603), 1, - sym_comment, - STATE(3072), 1, - sym__immediate_decimal, - STATE(3067), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1620), 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291501,28 +296442,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(1622), 28, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -291531,19 +296450,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, - [77865] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [71910] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2604), 1, + STATE(2662), 1, sym_comment, - ACTIONS(2430), 6, + ACTIONS(5683), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2432), 49, + ACTIONS(5685), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -291575,17 +296495,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -291593,28 +296511,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77931] = 6, + [71974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5641), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5643), 1, - aux_sym__immediate_decimal_token2, - STATE(2605), 1, + STATE(2663), 1, sym_comment, - ACTIONS(1705), 5, + ACTIONS(1004), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1703), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1002), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -291622,76 +296529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, 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, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_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, - [78001] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5645), 1, - anon_sym_DOT, - STATE(2606), 1, - sym_comment, - STATE(2633), 1, - aux_sym_cell_path_repeat1, - STATE(2710), 1, - sym_path, - STATE(2772), 1, - sym_cell_path, - ACTIONS(1668), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1664), 47, + anon_sym_null, anon_sym_true, anon_sym_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, @@ -291699,6 +296544,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -291723,36 +296571,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, - [78075] = 4, + [72038] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2607), 1, - sym_comment, - ACTIONS(1530), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(5714), 1, sym__entry_separator, - ACTIONS(1528), 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, + ACTIONS(5716), 1, + sym_raw_string_begin, + ACTIONS(5750), 1, anon_sym_RBRACK, + STATE(2656), 1, + aux_sym__multiple_types_repeat1, + STATE(2664), 1, + sym_comment, + ACTIONS(5710), 49, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, 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_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -291760,6 +296604,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -291767,6 +296614,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, @@ -291784,27 +296634,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, - aux_sym__unquoted_in_list_token2, - [78141] = 4, + [72108] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2608), 1, + STATE(2665), 1, sym_comment, - ACTIONS(1598), 7, + ACTIONS(992), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(1596), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(990), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -291812,9 +296652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -291822,6 +296667,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -291846,29 +296694,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, - aux_sym__unquoted_in_list_token2, - [78207] = 8, - ACTIONS(249), 1, + [72172] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2609), 1, + STATE(2666), 1, sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2814), 1, - sym_cell_path, - ACTIONS(1929), 6, + ACTIONS(5687), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1931), 45, + ACTIONS(5689), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291898,100 +296738,35 @@ static const uint16_t ts_small_parse_table[] = { aux_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, - [78281] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5645), 1, - anon_sym_DOT, - STATE(2610), 1, - sym_comment, - STATE(2633), 1, - aux_sym_cell_path_repeat1, - STATE(2710), 1, - sym_path, - STATE(2778), 1, - sym_cell_path, - ACTIONS(1672), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1670), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_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, - [78355] = 4, - ACTIONS(249), 1, + [72236] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2611), 1, + STATE(2667), 1, sym_comment, - ACTIONS(2105), 6, + ACTIONS(5691), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2107), 49, + ACTIONS(5693), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -292023,17 +296798,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292041,19 +296814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78421] = 4, - ACTIONS(249), 1, + [72300] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2612), 1, + STATE(2668), 1, sym_comment, - ACTIONS(2478), 6, + ACTIONS(2347), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2480), 49, + ACTIONS(2349), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -292085,17 +296858,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292103,28 +296874,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78487] = 8, - ACTIONS(249), 1, + [72364] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2613), 1, + STATE(2669), 1, sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - STATE(2852), 1, - sym_cell_path, - ACTIONS(1897), 6, + ACTIONS(5695), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1899), 45, + ACTIONS(5697), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292154,14 +296918,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292169,19 +296934,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78561] = 4, - ACTIONS(249), 1, + [72428] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2614), 1, + STATE(2670), 1, sym_comment, - ACTIONS(1670), 6, + ACTIONS(994), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1672), 49, + ACTIONS(996), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -292213,17 +296978,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292231,19 +296994,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78627] = 4, - ACTIONS(249), 1, + [72492] = 33, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2615), 1, + ACTIONS(2584), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2586), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3095), 1, + anon_sym_LPAREN, + ACTIONS(3097), 1, + anon_sym_DOLLAR, + ACTIONS(3109), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3111), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3113), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3115), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3121), 1, + anon_sym_0b, + ACTIONS(3127), 1, + anon_sym_DQUOTE, + ACTIONS(3133), 1, + sym_raw_string_begin, + ACTIONS(3141), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_LBRACE, + ACTIONS(5726), 1, + anon_sym_DOT_DOT, + ACTIONS(5730), 1, + anon_sym_null, + ACTIONS(5734), 1, + sym_val_date, + STATE(2671), 1, + sym_comment, + STATE(5676), 1, + sym__val_number_decimal, + STATE(5989), 1, + sym_val_variable, + STATE(6146), 1, + sym_expr_parenthesized, + STATE(7020), 1, + sym__inter_single_quotes, + STATE(7027), 1, + sym__inter_double_quotes, + STATE(7130), 1, + sym__val_number, + STATE(7425), 1, + sym_block, + ACTIONS(3123), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3129), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5728), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5732), 2, + anon_sym_true, + anon_sym_false, + STATE(5497), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(7454), 2, + sym_val_range, + sym__value, + ACTIONS(3117), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(7097), 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, + [72614] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2672), 1, sym_comment, - ACTIONS(1058), 6, + ACTIONS(2347), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1060), 49, + ACTIONS(2349), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -292275,17 +297127,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292293,19 +297143,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78693] = 4, - ACTIONS(249), 1, + [72678] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2616), 1, + STATE(2673), 1, sym_comment, - ACTIONS(4987), 6, + ACTIONS(5651), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4985), 49, + ACTIONS(5653), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -292337,17 +297187,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292355,19 +297203,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78759] = 4, - ACTIONS(249), 1, + [72742] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2617), 1, + STATE(2674), 1, sym_comment, - ACTIONS(5590), 6, + ACTIONS(5655), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5592), 49, + ACTIONS(5657), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -292399,17 +297247,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292417,21 +297263,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78825] = 4, - ACTIONS(249), 1, + [72806] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2618), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2675), 1, sym_comment, - ACTIONS(5594), 6, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2927), 1, + sym_cell_path, + ACTIONS(2082), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5596), 49, + ACTIONS(2084), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292461,99 +297314,32 @@ static const uint16_t ts_small_parse_table[] = { aux_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, - [78891] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2619), 1, - sym_comment, - ACTIONS(1713), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1711), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [78957] = 4, - ACTIONS(249), 1, + [72878] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2620), 1, + STATE(2676), 1, sym_comment, - ACTIONS(4997), 6, + ACTIONS(2125), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4995), 49, + ACTIONS(2127), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -292585,17 +297371,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292603,27 +297387,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79023] = 8, - ACTIONS(249), 1, + [72942] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2677), 1, + sym_comment, + ACTIONS(1607), 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(1609), 35, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73006] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, + ACTIONS(5699), 1, anon_sym_DOT, - STATE(2621), 1, + STATE(2678), 1, sym_comment, - STATE(2630), 1, + STATE(2736), 1, aux_sym_cell_path_repeat1, - STATE(2751), 1, + STATE(2851), 1, sym_path, - STATE(2760), 1, + STATE(2932), 1, sym_cell_path, - ACTIONS(1997), 6, + ACTIONS(2090), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1999), 45, + ACTIONS(2092), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -292654,11 +297498,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -292669,31 +297511,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79097] = 8, + [73078] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5645), 1, - anon_sym_DOT, - STATE(2622), 1, + ACTIONS(5752), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5754), 1, + aux_sym__immediate_decimal_token2, + STATE(2679), 1, sym_comment, - STATE(2633), 1, - aux_sym_cell_path_repeat1, - STATE(2710), 1, - sym_path, - STATE(2855), 1, - sym_cell_path, - ACTIONS(1023), 4, + ACTIONS(1741), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1021), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1739), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -292704,6 +297536,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292711,6 +297546,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -292735,28 +297573,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [79171] = 6, + [73146] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5647), 1, - anon_sym_DOT, - STATE(2710), 1, - sym_path, - STATE(2623), 2, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5756), 1, + anon_sym_DOT_DOT2, + STATE(2680), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1033), 4, + ACTIONS(1886), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5758), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1031), 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, + ACTIONS(1878), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -292764,9 +297598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292774,6 +297610,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -292798,280 +297637,445 @@ 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, - [79240] = 8, - ACTIONS(249), 1, + [73218] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5650), 1, - anon_sym_DOT, - STATE(2624), 1, + STATE(2681), 1, sym_comment, - STATE(2675), 1, - aux_sym_cell_path_repeat1, - STATE(2787), 1, - sym_path, - STATE(2872), 1, - sym_cell_path, - ACTIONS(1021), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1023), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2492), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2494), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__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, - [79313] = 5, - ACTIONS(249), 1, + [73282] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5635), 1, - aux_sym__immediate_decimal_token2, - STATE(2625), 1, + STATE(2682), 1, sym_comment, - ACTIONS(1536), 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(1538), 35, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2508), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2510), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [79380] = 5, - ACTIONS(249), 1, + [73346] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5652), 1, - aux_sym__immediate_decimal_token2, - STATE(2626), 1, + STATE(2683), 1, sym_comment, - ACTIONS(1596), 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(1598), 35, + ACTIONS(998), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1000), 47, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [73410] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2684), 1, + sym_comment, + ACTIONS(1002), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(1004), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [79447] = 8, - ACTIONS(249), 1, + [73474] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5650), 1, + ACTIONS(5699), 1, anon_sym_DOT, - STATE(2627), 1, + STATE(2685), 1, sym_comment, - STATE(2675), 1, + STATE(2736), 1, aux_sym_cell_path_repeat1, - STATE(2787), 1, + STATE(2851), 1, sym_path, - STATE(2901), 1, + STATE(2937), 1, sym_cell_path, - ACTIONS(1664), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(1925), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1927), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_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(1668), 33, + 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, + [73546] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2686), 1, + sym_comment, + ACTIONS(1018), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1020), 47, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [73610] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2687), 1, + sym_comment, + ACTIONS(990), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(992), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__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, - [79520] = 5, + [73674] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5623), 1, + ACTIONS(5760), 1, + anon_sym_DOT, + ACTIONS(5762), 1, aux_sym__immediate_decimal_token2, - STATE(2628), 1, + STATE(2688), 1, sym_comment, - ACTIONS(1717), 5, + ACTIONS(1757), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1715), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1755), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -293082,6 +298086,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -293089,6 +298096,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -293113,51 +298123,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, - aux_sym__unquoted_in_list_token2, - [79587] = 5, - ACTIONS(3), 1, + [73742] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5654), 1, - aux_sym__immediate_decimal_token2, - STATE(2629), 1, + STATE(2689), 1, sym_comment, - ACTIONS(1771), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1769), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, + 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_token34, aux_sym_cmd_identifier_token38, + ACTIONS(5020), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [73806] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2690), 1, + sym_comment, + ACTIONS(1621), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293166,6 +298205,36 @@ 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(1623), 35, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293174,28 +298243,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [79654] = 7, - ACTIONS(249), 1, + [73870] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2630), 1, + STATE(2691), 1, sym_comment, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2751), 1, - sym_path, - ACTIONS(1027), 6, + ACTIONS(2468), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1029), 45, + ACTIONS(2470), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293225,14 +298287,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -293240,20 +298303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79725] = 8, - ACTIONS(249), 1, + [73934] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5650), 1, - anon_sym_DOT, - STATE(2631), 1, + STATE(2692), 1, sym_comment, - STATE(2675), 1, - aux_sym_cell_path_repeat1, - STATE(2787), 1, - sym_path, - STATE(2875), 1, - sym_cell_path, - ACTIONS(1670), 17, + ACTIONS(1673), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -293271,14 +298326,9 @@ 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(1672), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1675), 35, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -293287,12 +298337,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -293305,25 +298363,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, - [79798] = 6, - ACTIONS(249), 1, + [73998] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_DOT, - STATE(2751), 1, - sym_path, - STATE(2632), 2, + STATE(2693), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 6, + ACTIONS(2464), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1033), 45, + ACTIONS(2466), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293353,14 +298407,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -293368,39 +298423,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79867] = 7, + [74062] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5645), 1, - anon_sym_DOT, - STATE(2623), 1, - aux_sym_cell_path_repeat1, - STATE(2633), 1, - sym_comment, - STATE(2710), 1, - sym_path, - ACTIONS(1029), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5714), 1, sym__entry_separator, - ACTIONS(1027), 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, + ACTIONS(5716), 1, + sym_raw_string_begin, + ACTIONS(5764), 1, anon_sym_RBRACK, + STATE(2656), 1, + aux_sym__multiple_types_repeat1, + STATE(2694), 1, + sym_comment, + ACTIONS(5710), 49, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, 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_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -293408,6 +298456,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -293415,6 +298466,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, @@ -293432,55 +298486,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [79938] = 10, - ACTIONS(3), 1, + [74132] = 31, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5661), 1, - anon_sym_RBRACK, - ACTIONS(5664), 1, - anon_sym_DOT, - ACTIONS(5666), 1, - sym_raw_string_begin, - STATE(2634), 1, - sym_comment, - STATE(5771), 1, - aux_sym_cell_path_repeat1, - STATE(6329), 1, - sym_path, - STATE(7214), 1, - sym_cell_path, - ACTIONS(1901), 2, - sym__entry_separator, - sym__table_head_separator, - ACTIONS(5659), 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, + ACTIONS(3313), 1, + aux_sym_unquoted_token1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(3997), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3999), 1, aux_sym__val_number_decimal_token2, + ACTIONS(4001), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4003), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(4009), 1, anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(4213), 1, + anon_sym_DOLLAR, + ACTIONS(4215), 1, + anon_sym_DOT_DOT, + ACTIONS(5718), 1, + anon_sym_LPAREN, + ACTIONS(5722), 1, + sym_val_date, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2695), 1, + sym_comment, + STATE(5906), 1, + sym__val_number_decimal, + STATE(6715), 1, + sym_unquoted, + STATE(7572), 1, + sym__val_range, + STATE(7585), 1, + sym__unquoted_anonymous_prefix, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(4217), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5720), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6714), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293489,6 +298563,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(2665), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293497,22 +298573,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, - aux_sym__unquoted_in_list_token1, - [80014] = 7, - ACTIONS(3), 1, + [74250] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5670), 1, - anon_sym_RBRACK, - ACTIONS(5672), 1, - sym__entry_separator, - ACTIONS(5674), 1, - sym_raw_string_begin, - STATE(2635), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2696), 1, sym_comment, - STATE(2686), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5668), 49, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2938), 1, + sym_cell_path, + ACTIONS(1933), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1935), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293520,13 +298602,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, @@ -293545,15 +298624,12 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token37, 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, @@ -293561,21 +298637,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80084] = 7, - ACTIONS(3), 1, + [74322] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5672), 1, - sym__entry_separator, - ACTIONS(5674), 1, - sym_raw_string_begin, - ACTIONS(5676), 1, - anon_sym_RBRACK, - STATE(2636), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2697), 1, sym_comment, - STATE(2686), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5668), 49, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2939), 1, + sym_cell_path, + ACTIONS(1944), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1946), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293583,13 +298666,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, @@ -293608,15 +298688,12 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token37, 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, @@ -293624,60 +298701,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80154] = 6, - ACTIONS(249), 1, + [74394] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5678), 1, - anon_sym_DOT, - STATE(2787), 1, - sym_path, - STATE(2637), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 17, - anon_sym_DOT_DOT, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + ACTIONS(5766), 1, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1033), 33, + STATE(2698), 1, + sym_comment, + ACTIONS(1874), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(5768), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1866), 46, 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, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -293686,20 +298764,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, - [80222] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [74466] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2638), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2699), 1, sym_comment, - ACTIONS(1062), 7, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2964), 1, + sym_cell_path, + ACTIONS(961), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1064), 46, + ACTIONS(963), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -293730,15 +298816,12 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, @@ -293746,106 +298829,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80286] = 30, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5429), 1, - anon_sym_DQUOTE, - ACTIONS(5433), 1, - sym_raw_string_begin, - ACTIONS(5683), 1, - anon_sym_LPAREN, - ACTIONS(5685), 1, - anon_sym_DOLLAR, - ACTIONS(5687), 1, - anon_sym_DOT_DOT, - ACTIONS(5691), 1, - sym_val_date, - ACTIONS(5693), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5695), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5697), 1, - aux_sym_unquoted_token1, - STATE(2431), 1, - sym__inter_double_quotes, - STATE(2501), 1, - sym__inter_single_quotes, - STATE(2639), 1, - sym_comment, - STATE(5868), 1, - sym__val_number_decimal, - STATE(7610), 1, - sym_val_bool, - STATE(7848), 1, - sym__val_range, - STATE(7860), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3350), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5689), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2500), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5681), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1449), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2685), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2687), 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, - [80402] = 4, - ACTIONS(249), 1, + [74538] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2640), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2700), 1, sym_comment, - ACTIONS(1038), 7, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2940), 1, + sym_cell_path, + ACTIONS(1948), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1040), 46, + ACTIONS(1950), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -293876,15 +298880,12 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, @@ -293892,27 +298893,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80466] = 6, - ACTIONS(249), 1, + [74610] = 8, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(5699), 1, - sym_long_flag_identifier, - ACTIONS(5701), 1, - anon_sym_EQ2, - STATE(2641), 1, + anon_sym_DOT, + STATE(2701), 1, sym_comment, - ACTIONS(4939), 9, - sym_raw_string_begin, - 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(4937), 42, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2941), 1, + sym_cell_path, + ACTIONS(1952), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1954), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293920,13 +298922,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, @@ -293945,21 +298944,25 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token37, + aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - [80534] = 4, - ACTIONS(249), 1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74682] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2642), 1, + STATE(2702), 1, sym_comment, - ACTIONS(1536), 18, + ACTIONS(1763), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -293978,14 +298981,8 @@ 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(1538), 35, + ACTIONS(1765), 35, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -293994,12 +298991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_filesize_unit, sym_duration_unit, sym_val_date, @@ -294014,75 +299017,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, - [80598] = 7, - ACTIONS(3), 1, + [74746] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5705), 1, - anon_sym_RBRACK, - ACTIONS(5707), 1, - sym__entry_separator, - ACTIONS(5709), 1, - sym_raw_string_begin, - STATE(2643), 1, + ACTIONS(5770), 1, + anon_sym_DOT, + ACTIONS(5772), 1, + aux_sym__immediate_decimal_token2, + STATE(2703), 1, sym_comment, - STATE(2679), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5703), 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, - [80668] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2644), 1, - sym_comment, - ACTIONS(1528), 18, + ACTIONS(1755), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -294101,14 +299045,8 @@ 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(1530), 35, + ACTIONS(1757), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -294117,14 +299055,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -294137,35 +299079,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, - [80732] = 7, + [74814] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, - sym__entry_separator, - ACTIONS(5709), 1, - sym_raw_string_begin, - ACTIONS(5711), 1, - anon_sym_RBRACK, - STATE(2645), 1, + STATE(2704), 1, sym_comment, - STATE(2679), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5703), 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, + ACTIONS(1757), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1755), 48, 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_DOT_LPAREN, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -294173,6 +299111,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -294180,9 +299121,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, @@ -294200,20 +299138,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, - [80802] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token2, + [74878] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2646), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2705), 1, sym_comment, - ACTIONS(1058), 7, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2942), 1, + sym_cell_path, + ACTIONS(1960), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1060), 46, + ACTIONS(1962), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -294244,422 +299190,105 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80866] = 33, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2621), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2623), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3042), 1, - anon_sym_LPAREN, - ACTIONS(3044), 1, - anon_sym_DOLLAR, - ACTIONS(3052), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3054), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3056), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3058), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3062), 1, - anon_sym_0b, - ACTIONS(3068), 1, anon_sym_DQUOTE, - ACTIONS(3074), 1, - sym_raw_string_begin, - ACTIONS(3078), 1, - anon_sym_LBRACK, - ACTIONS(5715), 1, - anon_sym_null, - ACTIONS(5717), 1, - anon_sym_LBRACE, - ACTIONS(5719), 1, - anon_sym_DOT_DOT, - ACTIONS(5723), 1, - sym_val_date, - STATE(2647), 1, - sym_comment, - STATE(5753), 1, - sym__val_number_decimal, - STATE(5774), 1, - sym_val_variable, - STATE(6037), 1, - sym_expr_parenthesized, - STATE(7044), 1, - sym__inter_single_quotes, - STATE(7055), 1, - sym__inter_double_quotes, - STATE(7088), 1, - sym__val_number, - STATE(7478), 1, - sym_block, - ACTIONS(3064), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3070), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5713), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5721), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5521), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(7492), 2, - sym_val_range, - sym__value, - ACTIONS(3060), 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(6921), 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, - [80988] = 4, - ACTIONS(249), 1, + [74950] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2648), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2706), 1, sym_comment, - ACTIONS(1596), 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(1598), 35, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2943), 1, + sym_cell_path, + ACTIONS(1968), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, 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_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [81052] = 33, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2621), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2623), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3042), 1, - anon_sym_LPAREN, - ACTIONS(3044), 1, - anon_sym_DOLLAR, - ACTIONS(3052), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3054), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3056), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3058), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3062), 1, - anon_sym_0b, - ACTIONS(3068), 1, - anon_sym_DQUOTE, - ACTIONS(3074), 1, + ACTIONS(1970), 43, sym_raw_string_begin, - ACTIONS(3078), 1, - anon_sym_LBRACK, - ACTIONS(5715), 1, - anon_sym_null, - ACTIONS(5717), 1, - anon_sym_LBRACE, - ACTIONS(5719), 1, - anon_sym_DOT_DOT, - ACTIONS(5723), 1, - sym_val_date, - STATE(2649), 1, - sym_comment, - STATE(5753), 1, - sym__val_number_decimal, - STATE(5774), 1, - sym_val_variable, - STATE(6117), 1, - sym_expr_parenthesized, - STATE(7044), 1, - sym__inter_single_quotes, - STATE(7055), 1, - sym__inter_double_quotes, - STATE(7088), 1, - sym__val_number, - STATE(7606), 1, - sym_block, - ACTIONS(3064), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3070), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5713), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5721), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5521), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(7539), 2, - sym_val_range, - sym__value, - ACTIONS(3060), 6, - aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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(6921), 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, - [81174] = 31, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(3366), 1, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(3846), 1, - aux_sym_unquoted_token1, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4020), 1, - anon_sym_DOLLAR, - ACTIONS(4024), 1, - anon_sym_DOT_DOT, - ACTIONS(5691), 1, - sym_val_date, - ACTIONS(5727), 1, - anon_sym_LPAREN, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(2650), 1, - sym_comment, - STATE(5928), 1, - sym__val_number_decimal, - STATE(6417), 1, - sym_unquoted, - STATE(7610), 1, - sym_val_bool, - STATE(7794), 1, - sym__val_range, - STATE(7859), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3350), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4026), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5725), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(6415), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2685), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2687), 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, - [81292] = 4, - ACTIONS(249), 1, + [75022] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2651), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2707), 1, sym_comment, - ACTIONS(1711), 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(1713), 35, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2944), 1, + sym_cell_path, + ACTIONS(1972), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, 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_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [81356] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5672), 1, - sym__entry_separator, - ACTIONS(5674), 1, + ACTIONS(1974), 43, sym_raw_string_begin, - ACTIONS(5729), 1, - anon_sym_RBRACK, - STATE(2652), 1, - sym_comment, - STATE(2686), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5668), 49, - aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294667,13 +299296,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, @@ -294692,15 +299318,12 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token37, 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, @@ -294708,205 +299331,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81426] = 6, - ACTIONS(249), 1, + [75094] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5699), 1, anon_sym_DOT, - ACTIONS(5733), 1, - aux_sym__immediate_decimal_token2, - STATE(2653), 1, + STATE(2708), 1, sym_comment, - ACTIONS(1715), 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(1717), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2945), 1, + sym_cell_path, + ACTIONS(1984), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, 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, - [81494] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2654), 1, - sym_comment, - ACTIONS(1717), 5, + ACTIONS(1986), 43, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1715), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [81558] = 6, - ACTIONS(249), 1, + [75166] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5735), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5737), 1, - aux_sym__immediate_decimal_token2, - STATE(2655), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2709), 1, sym_comment, - ACTIONS(1703), 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(1705), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2946), 1, + sym_cell_path, + ACTIONS(1988), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, 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, - [81626] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5672), 1, - sym__entry_separator, - ACTIONS(5674), 1, + ACTIONS(1990), 43, sym_raw_string_begin, - ACTIONS(5739), 1, - anon_sym_RBRACK, - STATE(2656), 1, - sym_comment, - STATE(2686), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5668), 49, - aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294914,13 +299424,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, @@ -294939,15 +299446,12 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token37, 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, @@ -294955,81 +299459,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81696] = 4, - ACTIONS(3), 1, + [75238] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2657), 1, + STATE(2710), 1, sym_comment, - ACTIONS(1705), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1703), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(5088), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, 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, - [81760] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5672), 1, - sym__entry_separator, - ACTIONS(5674), 1, + ACTIONS(5086), 47, sym_raw_string_begin, - ACTIONS(5741), 1, - anon_sym_RBRACK, - STATE(2658), 1, - sym_comment, - STATE(2686), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5668), 49, - aux_sym_cmd_identifier_token1, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295037,13 +299481,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, @@ -295062,15 +299503,15 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295078,48 +299519,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81830] = 4, - ACTIONS(3), 1, + [75302] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2659), 1, + ACTIONS(5642), 1, + anon_sym_DOT, + STATE(2711), 1, sym_comment, - ACTIONS(1771), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1769), 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, + STATE(2725), 1, + aux_sym_cell_path_repeat1, + STATE(2796), 1, + sym_path, + ACTIONS(967), 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, @@ -295128,66 +299547,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_in_list_token1, - aux_sym__unquoted_in_list_token2, - [81894] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2660), 1, - sym_comment, - ACTIONS(1828), 5, + ACTIONS(969), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1826), 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -295196,83 +299582,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [81958] = 4, - ACTIONS(3), 1, + [75372] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2661), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2712), 1, sym_comment, - ACTIONS(1060), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1058), 49, - anon_sym_true, - anon_sym_false, - anon_sym_null, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2947), 1, + sym_cell_path, + ACTIONS(1992), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(1994), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_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, - [82022] = 7, - ACTIONS(3), 1, + [75444] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5672), 1, - sym__entry_separator, - ACTIONS(5674), 1, - sym_raw_string_begin, - ACTIONS(5743), 1, - anon_sym_RBRACK, - STATE(2662), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2713), 1, sym_comment, - STATE(2686), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5668), 49, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2948), 1, + sym_cell_path, + ACTIONS(1996), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1998), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295280,13 +299675,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, @@ -295305,15 +299697,12 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token37, 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, @@ -295321,84 +299710,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82092] = 6, - ACTIONS(249), 1, + [75516] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5745), 1, - sym__newline, - STATE(2663), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2714), 1, sym_comment, - ACTIONS(5748), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1364), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1362), 35, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2949), 1, + sym_cell_path, + ACTIONS(2000), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2002), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + 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_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [82160] = 5, - ACTIONS(249), 1, + [75588] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5750), 1, - anon_sym_QMARK2, - STATE(2664), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2715), 1, sym_comment, - ACTIONS(1042), 7, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2950), 1, + sym_cell_path, + ACTIONS(2004), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1044), 45, + ACTIONS(2006), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -295429,11 +299825,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -295444,22 +299838,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82226] = 5, - ACTIONS(249), 1, + [75660] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5752), 1, - anon_sym_QMARK2, - STATE(2665), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2716), 1, sym_comment, - ACTIONS(1048), 7, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2951), 1, + sym_cell_path, + ACTIONS(2068), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1050), 45, + ACTIONS(2070), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -295490,11 +299889,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -295505,21 +299902,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82292] = 7, - ACTIONS(3), 1, + [75732] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5672), 1, - sym__entry_separator, - ACTIONS(5674), 1, - sym_raw_string_begin, - ACTIONS(5754), 1, - anon_sym_RBRACK, - STATE(2666), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2717), 1, sym_comment, - STATE(2686), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5668), 49, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2952), 1, + sym_cell_path, + ACTIONS(2072), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2074), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295527,13 +299931,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, @@ -295552,15 +299953,12 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token37, 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, @@ -295568,30 +299966,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82362] = 8, + [75804] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(5756), 1, - anon_sym_DOT_DOT2, - STATE(2667), 1, + STATE(2718), 1, sym_comment, - ACTIONS(1796), 2, + ACTIONS(1741), 5, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5758), 2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1788), 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__entry_separator, + ACTIONS(1739), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -295599,8 +299985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295608,6 +299998,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -295632,23 +300025,209 @@ 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, - [82434] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [75868] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2668), 1, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2719), 1, + sym_comment, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2954), 1, + sym_cell_path, + ACTIONS(1913), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1915), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [75940] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5774), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5776), 1, + aux_sym__immediate_decimal_token2, + STATE(2720), 1, sym_comment, - ACTIONS(1064), 4, + ACTIONS(1739), 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(1741), 33, sym_raw_string_begin, + 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, - sym__entry_separator, - ACTIONS(1062), 49, + anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_null, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [76008] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2721), 1, + sym_comment, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2962), 1, + sym_cell_path, + ACTIONS(1976), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(1978), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + [76080] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2722), 1, + sym_comment, + ACTIONS(1785), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1783), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -295656,11 +300235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295668,6 +300248,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -295692,23 +300275,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, - [82498] = 4, + aux_sym__unquoted_in_list_token2, + [76144] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2723), 1, + sym_comment, + ACTIONS(1735), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1737), 47, + sym_raw_string_begin, + 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_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76208] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2669), 1, + STATE(2724), 1, sym_comment, - ACTIONS(1040), 4, + ACTIONS(1892), 5, sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1038), 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, + ACTIONS(1890), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -295716,11 +300355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295728,6 +300368,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -295752,74 +300395,137 @@ 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, - [82562] = 30, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token2, + [76272] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5778), 1, + anon_sym_DOT, + STATE(2796), 1, + sym_path, + STATE(2725), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(971), 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(973), 33, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [76340] = 30, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3294), 1, + ACTIONS(3363), 1, aux_sym_record_entry_token1, - ACTIONS(3366), 1, + ACTIONS(3997), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, + ACTIONS(3999), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, + ACTIONS(4001), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, + ACTIONS(4003), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5429), 1, + ACTIONS(5622), 1, anon_sym_DQUOTE, - ACTIONS(5433), 1, + ACTIONS(5626), 1, sym_raw_string_begin, - ACTIONS(5683), 1, + ACTIONS(5722), 1, + sym_val_date, + ACTIONS(5781), 1, anon_sym_LPAREN, - ACTIONS(5685), 1, + ACTIONS(5783), 1, anon_sym_DOLLAR, - ACTIONS(5687), 1, + ACTIONS(5785), 1, anon_sym_DOT_DOT, - ACTIONS(5691), 1, - sym_val_date, - ACTIONS(5693), 1, + ACTIONS(5791), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5695), 1, + ACTIONS(5793), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5697), 1, + ACTIONS(5795), 1, aux_sym_unquoted_token1, - STATE(2431), 1, - sym__inter_double_quotes, - STATE(2501), 1, + STATE(2612), 1, sym__inter_single_quotes, - STATE(2670), 1, + STATE(2613), 1, + sym__inter_double_quotes, + STATE(2726), 1, sym_comment, - STATE(5868), 1, + STATE(5804), 1, sym__val_number_decimal, - STATE(7610), 1, - sym_val_bool, - STATE(7848), 1, + STATE(7747), 1, sym__val_range, - STATE(7860), 1, + STATE(7753), 1, sym__unquoted_anonymous_prefix, - ACTIONS(3350), 2, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, anon_sym_true, anon_sym_false, - ACTIONS(5431), 2, + ACTIONS(5624), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5689), 2, + ACTIONS(5787), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2500), 2, + STATE(2643), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5681), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1449), 5, + ACTIONS(5789), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1673), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - ACTIONS(2685), 8, + ACTIONS(2663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295828,7 +300534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2687), 9, + ACTIONS(2665), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -295838,20 +300544,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82678] = 4, - ACTIONS(249), 1, + [76456] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2671), 1, + ACTIONS(5797), 1, + anon_sym_DOT_DOT2, + ACTIONS(5801), 1, + sym_filesize_unit, + ACTIONS(5803), 1, + sym_duration_unit, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token2, + STATE(2727), 1, + sym_comment, + ACTIONS(5799), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1721), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [76530] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2728), 1, sym_comment, - ACTIONS(1054), 7, + STATE(2736), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + STATE(2967), 1, + sym_cell_path, + ACTIONS(2094), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1056), 46, + ACTIONS(2096), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -295882,15 +300660,12 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, @@ -295898,75 +300673,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82742] = 31, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, + [76602] = 30, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3294), 1, + ACTIONS(3365), 1, aux_sym_record_entry_token1, - ACTIONS(3366), 1, + ACTIONS(3997), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, + ACTIONS(3999), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, + ACTIONS(4001), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, + ACTIONS(4003), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, + ACTIONS(5622), 1, anon_sym_DQUOTE, - ACTIONS(3846), 1, - aux_sym_unquoted_token1, - ACTIONS(3848), 1, + ACTIONS(5626), 1, sym_raw_string_begin, - ACTIONS(4020), 1, - anon_sym_DOLLAR, - ACTIONS(4024), 1, - anon_sym_DOT_DOT, - ACTIONS(5691), 1, + ACTIONS(5722), 1, sym_val_date, - ACTIONS(5727), 1, + ACTIONS(5781), 1, anon_sym_LPAREN, - STATE(1827), 1, + ACTIONS(5783), 1, + anon_sym_DOLLAR, + ACTIONS(5785), 1, + anon_sym_DOT_DOT, + ACTIONS(5791), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5793), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5795), 1, + aux_sym_unquoted_token1, + STATE(2612), 1, sym__inter_single_quotes, - STATE(1841), 1, + STATE(2613), 1, sym__inter_double_quotes, - STATE(2672), 1, + STATE(2729), 1, sym_comment, - STATE(5928), 1, + STATE(5804), 1, sym__val_number_decimal, - STATE(6417), 1, - sym_unquoted, - STATE(7610), 1, - sym_val_bool, - STATE(7794), 1, + STATE(7747), 1, sym__val_range, - STATE(7859), 1, + STATE(7753), 1, sym__unquoted_anonymous_prefix, - ACTIONS(3350), 2, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, anon_sym_true, anon_sym_false, - ACTIONS(3844), 2, + ACTIONS(5624), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4026), 2, + ACTIONS(5787), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4434), 2, + STATE(2643), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5725), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(6415), 4, + ACTIONS(5789), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1673), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(2685), 8, + sym_unquoted, + ACTIONS(2663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295975,7 +300749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2687), 9, + ACTIONS(2665), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -295985,23 +300759,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, - [82860] = 4, + [76718] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2673), 1, + ACTIONS(5807), 1, + anon_sym_DOT, + STATE(2730), 1, sym_comment, - ACTIONS(1056), 4, + STATE(2833), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3082), 1, + sym_cell_path, + ACTIONS(2074), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1054), 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, + ACTIONS(2072), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -296009,11 +300783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296021,6 +300795,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296045,27 +300822,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, - [82924] = 6, + [76789] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5760), 1, + ACTIONS(5807), 1, anon_sym_DOT, - ACTIONS(5762), 1, - aux_sym__immediate_decimal_token2, - STATE(2674), 1, + STATE(2731), 1, sym_comment, - ACTIONS(1717), 4, + STATE(2833), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3062), 1, + sym_cell_path, + ACTIONS(1994), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1715), 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, + ACTIONS(1992), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -296073,9 +300846,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296083,6 +300858,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296107,61 +300885,60 @@ 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, - [82992] = 7, - ACTIONS(249), 1, + [76860] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5650), 1, + ACTIONS(5807), 1, anon_sym_DOT, - STATE(2637), 1, - aux_sym_cell_path_repeat1, - STATE(2675), 1, + STATE(2732), 1, sym_comment, - STATE(2787), 1, + STATE(2833), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, sym_path, - ACTIONS(1027), 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(1029), 33, + STATE(3069), 1, + sym_cell_path, + ACTIONS(1998), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(1996), 46, 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, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -296170,30 +300947,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, - [83062] = 8, + aux_sym__unquoted_in_list_token1, + [76931] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5764), 1, - anon_sym_DOT_DOT2, - STATE(2676), 1, + ACTIONS(5807), 1, + anon_sym_DOT, + STATE(2733), 1, sym_comment, - ACTIONS(1850), 2, + STATE(2833), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3072), 1, + sym_cell_path, + ACTIONS(2002), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5766), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1842), 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, + ACTIONS(2000), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -296203,6 +300974,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296210,6 +300984,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296234,25 +301011,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, - [83134] = 5, + [77002] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5768), 1, - anon_sym_QMARK2, - STATE(2677), 1, + ACTIONS(5807), 1, + anon_sym_DOT, + STATE(2734), 1, sym_comment, - ACTIONS(1044), 4, + STATE(2833), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3077), 1, + sym_cell_path, + ACTIONS(2006), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1042), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2004), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -296260,10 +301035,11 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296271,6 +301047,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296295,25 +301074,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, - [83200] = 5, + [77073] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - anon_sym_QMARK2, - STATE(2678), 1, + ACTIONS(5807), 1, + anon_sym_DOT, + STATE(2735), 1, sym_comment, - ACTIONS(1050), 4, + STATE(2833), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3078), 1, + sym_cell_path, + ACTIONS(2070), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1048), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2068), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -296321,10 +301098,11 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296332,6 +301110,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296356,33 +301137,97 @@ 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, - [83266] = 5, - ACTIONS(3), 1, + [77144] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2368), 1, - sym_raw_string_begin, - ACTIONS(5772), 1, - sym__entry_separator, - STATE(2679), 2, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2736), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2363), 50, - anon_sym_true, - anon_sym_false, - anon_sym_null, + STATE(2742), 1, + aux_sym_cell_path_repeat1, + STATE(2851), 1, + sym_path, + ACTIONS(967), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(969), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + [77213] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5807), 1, + anon_sym_DOT, + STATE(2737), 1, + sym_comment, + STATE(2833), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3039), 1, + sym_cell_path, + ACTIONS(1911), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1907), 46, 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_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296390,6 +301235,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296397,9 +301245,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, @@ -296417,35 +301262,35 @@ 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, - [83332] = 7, + [77284] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, - sym__entry_separator, - ACTIONS(5709), 1, - sym_raw_string_begin, - ACTIONS(5775), 1, - anon_sym_RBRACK, - STATE(2679), 1, - aux_sym__multiple_types_repeat1, - STATE(2680), 1, + ACTIONS(5807), 1, + anon_sym_DOT, + STATE(2738), 1, sym_comment, - ACTIONS(5703), 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, + STATE(2833), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3059), 1, + sym_cell_path, + ACTIONS(1915), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1913), 46, 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_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296453,6 +301298,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296460,9 +301308,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, @@ -296480,37 +301325,37 @@ 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, - [83402] = 6, + [77355] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5777), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5779), 1, - aux_sym__immediate_decimal_token2, - STATE(2681), 1, - sym_comment, - ACTIONS(1705), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2084), 1, sym__entry_separator, - ACTIONS(1703), 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, + ACTIONS(5807), 1, + anon_sym_DOT, + ACTIONS(5811), 1, anon_sym_RBRACK, + ACTIONS(5814), 1, + sym_raw_string_begin, + STATE(2739), 1, + sym_comment, + STATE(2833), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3003), 1, + sym_cell_path, + ACTIONS(5809), 45, + anon_sym_LBRACK, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296518,6 +301363,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296542,17 +301390,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, - [83470] = 5, - ACTIONS(249), 1, + [77430] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_QMARK2, - STATE(2682), 1, + ACTIONS(5772), 1, + aux_sym__immediate_decimal_token2, + STATE(2740), 1, sym_comment, - ACTIONS(1042), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, + ACTIONS(1755), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296561,348 +301414,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1044), 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, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, 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, - [83536] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5783), 1, - anon_sym_QMARK2, - STATE(2683), 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), 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, - [83602] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5672), 1, - sym__entry_separator, - ACTIONS(5674), 1, - sym_raw_string_begin, - ACTIONS(5785), 1, - anon_sym_RBRACK, - STATE(2684), 1, - sym_comment, - STATE(2686), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5668), 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, - [83672] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5791), 1, - anon_sym_DASH_DASH, - STATE(2813), 1, - sym_long_flag, - STATE(2685), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(5787), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5789), 44, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [83740] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2368), 1, - sym_raw_string_begin, - ACTIONS(5794), 1, - sym__entry_separator, - STATE(2686), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2363), 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, - [83806] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5797), 1, - anon_sym_DOT_DOT2, - ACTIONS(5801), 1, - sym_filesize_unit, - ACTIONS(5803), 1, - sym_duration_unit, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token2, - STATE(2687), 1, - sym_comment, - ACTIONS(5799), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1628), 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(1640), 31, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -296915,26 +301450,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, - [83880] = 7, + [77495] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(5714), 1, sym__entry_separator, - ACTIONS(5709), 1, + ACTIONS(5716), 1, sym_raw_string_begin, - ACTIONS(5807), 1, - anon_sym_RBRACK, - STATE(2679), 1, + STATE(2656), 1, aux_sym__multiple_types_repeat1, - STATE(2688), 1, + STATE(2741), 1, sym_comment, - ACTIONS(5703), 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, + ACTIONS(5710), 49, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -296943,6 +301470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -296951,6 +301481,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -296978,261 +301511,25 @@ 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, - [83950] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2689), 1, - sym_comment, - ACTIONS(1068), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1066), 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, - 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, - [84013] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2690), 1, - sym_comment, - ACTIONS(1066), 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(1068), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [84076] = 9, - ACTIONS(249), 1, + [77562] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1903), 1, - sym__table_head_separator, - ACTIONS(5809), 1, + ACTIONS(5816), 1, anon_sym_DOT, - STATE(2691), 1, - sym_comment, - STATE(6689), 1, - aux_sym_cell_path_repeat1, - STATE(7323), 1, + STATE(2851), 1, sym_path, - STATE(7819), 1, - sym_cell_path, - ACTIONS(5659), 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(5666), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [84149] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2692), 1, + STATE(2742), 2, sym_comment, - ACTIONS(2291), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2289), 48, + aux_sym_cell_path_repeat1, + ACTIONS(971), 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, - aux_sym_unquoted_token4, - [84212] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(2693), 1, - sym_comment, - ACTIONS(2297), 4, + ACTIONS(973), 43, sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2293), 47, - aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297240,13 +301537,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, @@ -297265,13 +301559,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -297279,193 +301569,17 @@ 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, - [84277] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2694), 1, - sym_comment, - ACTIONS(2404), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2402), 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, - [84340] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(5813), 1, - aux_sym__immediate_decimal_token2, - STATE(2695), 1, - sym_comment, - ACTIONS(1717), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1715), 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_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_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, - [84407] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5672), 1, - sym__entry_separator, - ACTIONS(5674), 1, - sym_raw_string_begin, - STATE(2686), 1, - aux_sym__multiple_types_repeat1, - STATE(2696), 1, - sym_comment, - ACTIONS(5668), 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, - [84474] = 4, - ACTIONS(249), 1, + [77629] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2697), 1, + ACTIONS(5819), 1, + anon_sym_QMARK2, + STATE(2743), 1, sym_comment, - ACTIONS(1058), 18, + ACTIONS(978), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -297484,153 +301598,32 @@ 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(1060), 34, + ACTIONS(980), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84537] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(2698), 1, - sym_comment, - ACTIONS(2305), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2303), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - [84602] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5707), 1, - sym__entry_separator, - ACTIONS(5709), 1, - sym_raw_string_begin, - STATE(2679), 1, - aux_sym__multiple_types_repeat1, - STATE(2699), 1, - sym_comment, - ACTIONS(5703), 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_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, @@ -297639,13 +301632,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, - [84669] = 4, - ACTIONS(249), 1, + [77694] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2700), 1, + ACTIONS(5821), 1, + anon_sym_QMARK2, + STATE(2744), 1, sym_comment, - ACTIONS(1062), 18, + ACTIONS(984), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -297664,29 +301658,28 @@ 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(1064), 34, + ACTIONS(986), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -297699,12 +301692,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84732] = 4, - ACTIONS(249), 1, + [77759] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2701), 1, + STATE(2745), 1, sym_comment, - ACTIONS(1038), 18, + ACTIONS(994), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -297723,14 +301716,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(1040), 34, + ACTIONS(996), 34, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -297740,12 +301727,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -297758,14 +301751,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, - [84795] = 5, - ACTIONS(249), 1, + [77822] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5815), 1, + ACTIONS(5823), 1, aux_sym__immediate_decimal_token2, - STATE(2702), 1, + STATE(2746), 1, sym_comment, - ACTIONS(1769), 18, + ACTIONS(1783), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -297784,14 +301777,8 @@ 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(1771), 33, + ACTIONS(1785), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -297800,12 +301787,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -297818,86 +301811,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, - [84860] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5817), 1, - anon_sym_LBRACK2, - STATE(2703), 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(2359), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [84925] = 6, + [77887] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5819), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5821), 1, + ACTIONS(5762), 1, aux_sym__immediate_decimal_token2, - STATE(2704), 1, + STATE(2747), 1, sym_comment, - ACTIONS(1705), 3, + ACTIONS(1757), 4, sym_raw_string_begin, - anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1703), 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, + ACTIONS(1755), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -297905,8 +301831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -297914,6 +301844,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -297938,19 +301871,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, - aux_sym__unquoted_in_list_token2, - [84992] = 6, - ACTIONS(249), 1, + [77952] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5823), 1, - anon_sym_DOT, - ACTIONS(5825), 1, - aux_sym__immediate_decimal_token2, - STATE(2705), 1, + STATE(2748), 1, sym_comment, - ACTIONS(1715), 17, + ACTIONS(998), 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, @@ -297966,28 +301895,29 @@ 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(1717), 33, + ACTIONS(1000), 34, sym_raw_string_begin, - anon_sym_true, - anon_sym_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_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -298000,12 +301930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85059] = 4, - ACTIONS(249), 1, + [78015] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2706), 1, + STATE(2749), 1, sym_comment, - ACTIONS(1054), 18, + ACTIONS(1002), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -298024,14 +301954,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(1056), 34, + ACTIONS(1004), 34, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -298041,12 +301965,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -298059,29 +301989,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, - [85122] = 8, + [78078] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2707), 1, + ACTIONS(5825), 1, + aux_sym__immediate_decimal_token2, + STATE(2750), 1, sym_comment, - STATE(2836), 1, - aux_sym_cell_path_repeat1, - STATE(2946), 1, - sym_path, - STATE(3002), 1, - sym_cell_path, - ACTIONS(1023), 2, + ACTIONS(1785), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1021), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1783), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -298089,8 +302009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -298098,6 +302022,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -298122,29 +302049,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, - [85193] = 8, + [78143] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5827), 1, anon_sym_DOT, - STATE(2708), 1, + ACTIONS(5829), 1, + aux_sym__immediate_decimal_token2, + STATE(2751), 1, sym_comment, - STATE(2836), 1, - aux_sym_cell_path_repeat1, - STATE(2946), 1, - sym_path, - STATE(2961), 1, - sym_cell_path, - ACTIONS(1931), 2, + ACTIONS(1757), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1929), 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, + ACTIONS(1755), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -298154,6 +302072,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -298161,6 +302082,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -298185,21 +302109,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, - [85264] = 5, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token2, + [78210] = 29, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5829), 1, - sym__newline, - STATE(2709), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1349), 15, + ACTIONS(3997), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3999), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4001), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4003), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5673), 1, + anon_sym_DQUOTE, + ACTIONS(5677), 1, + sym_raw_string_begin, + ACTIONS(5722), 1, + sym_val_date, + ACTIONS(5831), 1, + anon_sym_LPAREN, + ACTIONS(5833), 1, anon_sym_DOLLAR, + ACTIONS(5835), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5841), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5843), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5845), 1, + aux_sym_unquoted_token1, + STATE(2668), 1, + sym__inter_single_quotes, + STATE(2672), 1, + sym__inter_double_quotes, + STATE(2752), 1, + sym_comment, + STATE(5953), 1, + sym__val_number_decimal, + STATE(7648), 1, + sym__val_range, + STATE(7947), 1, + sym__unquoted_anonymous_prefix, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5675), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5837), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2670), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5839), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1790), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298208,35 +302184,92 @@ 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(1351), 35, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, + ACTIONS(2665), 9, 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, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [78323] = 29, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3997), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3999), 1, aux_sym__val_number_decimal_token2, + ACTIONS(4001), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4003), 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(5673), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5677), 1, + sym_raw_string_begin, + ACTIONS(5722), 1, + sym_val_date, + ACTIONS(5831), 1, + anon_sym_LPAREN, + ACTIONS(5833), 1, + anon_sym_DOLLAR, + ACTIONS(5835), 1, + anon_sym_DOT_DOT, + ACTIONS(5841), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(5843), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + ACTIONS(5845), 1, + aux_sym_unquoted_token1, + STATE(2668), 1, + sym__inter_single_quotes, + STATE(2672), 1, + sym__inter_double_quotes, + STATE(2753), 1, + sym_comment, + STATE(5953), 1, + sym__val_number_decimal, + STATE(7648), 1, + sym__val_range, + STATE(7947), 1, + sym__unquoted_anonymous_prefix, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5675), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5837), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2670), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5839), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1812), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2663), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2665), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298245,23 +302278,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, - [85329] = 4, + [78436] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2710), 1, + ACTIONS(5807), 1, + anon_sym_DOT, + STATE(2754), 1, sym_comment, - ACTIONS(1076), 4, + STATE(2833), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3058), 1, + sym_cell_path, + ACTIONS(1990), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1074), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1988), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -298269,10 +302302,11 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -298280,6 +302314,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -298304,60 +302341,57 @@ 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, - [85392] = 8, - ACTIONS(3), 1, + [78507] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2711), 1, + STATE(2755), 1, sym_comment, - STATE(2836), 1, - aux_sym_cell_path_repeat1, - STATE(2946), 1, - sym_path, - STATE(2963), 1, - sym_cell_path, - ACTIONS(1995), 2, + ACTIONS(990), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(992), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1993), 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, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -298366,30 +302400,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85463] = 8, + [78570] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5807), 1, anon_sym_DOT, - STATE(2712), 1, + STATE(2756), 1, sym_comment, - STATE(2836), 1, + STATE(2833), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(2960), 1, sym_path, - STATE(2964), 1, + STATE(3030), 1, sym_cell_path, - ACTIONS(1999), 2, + ACTIONS(963), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1997), 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, + ACTIONS(961), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -298399,6 +302426,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -298406,6 +302436,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -298430,112 +302463,157 @@ 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, - [85534] = 5, - ACTIONS(249), 1, + [78641] = 29, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5464), 1, - aux_sym_unquoted_token2, - STATE(2713), 1, - sym_comment, - ACTIONS(1628), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1640), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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(3997), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3999), 1, aux_sym__val_number_decimal_token2, + ACTIONS(4001), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4003), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5622), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85599] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2714), 1, - sym_comment, - STATE(2836), 1, - aux_sym_cell_path_repeat1, - STATE(2946), 1, - sym_path, - STATE(2965), 1, - sym_cell_path, - ACTIONS(2003), 2, + ACTIONS(5626), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2001), 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, + ACTIONS(5722), 1, + sym_val_date, + ACTIONS(5781), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5783), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5785), 1, anon_sym_DOT_DOT, + ACTIONS(5791), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5793), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5795), 1, + aux_sym_unquoted_token1, + STATE(2612), 1, + sym__inter_single_quotes, + STATE(2613), 1, + sym__inter_double_quotes, + STATE(2757), 1, + sym_comment, + STATE(5804), 1, + sym__val_number_decimal, + STATE(7747), 1, + sym__val_range, + STATE(7753), 1, + sym__unquoted_anonymous_prefix, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5624), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5787), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + STATE(2643), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5789), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1673), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2663), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2665), 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, + [78754] = 30, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3313), 1, + aux_sym_unquoted_token1, + ACTIONS(3997), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3999), 1, aux_sym__val_number_decimal_token2, + ACTIONS(4001), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4003), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(4009), 1, anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(4213), 1, + anon_sym_DOLLAR, + ACTIONS(4215), 1, + anon_sym_DOT_DOT, + ACTIONS(5718), 1, + anon_sym_LPAREN, + ACTIONS(5722), 1, + sym_val_date, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(2758), 1, + sym_comment, + STATE(5906), 1, + sym__val_number_decimal, + STATE(6715), 1, + sym_unquoted, + STATE(7572), 1, + sym__val_range, + STATE(7585), 1, + sym__unquoted_anonymous_prefix, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(4217), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5720), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6714), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298544,6 +302622,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(2665), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298552,30 +302632,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, - [85670] = 8, + [78869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2715), 1, + STATE(2759), 1, sym_comment, - STATE(2836), 1, - aux_sym_cell_path_repeat1, - STATE(2946), 1, - sym_path, - STATE(2966), 1, - sym_cell_path, - ACTIONS(2007), 2, + ACTIONS(1008), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2005), 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, + ACTIONS(1006), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -298583,8 +302650,13 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -298592,6 +302664,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -298616,52 +302691,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, - [85741] = 8, - ACTIONS(3), 1, + [78932] = 29, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2716), 1, - sym_comment, - STATE(2836), 1, - aux_sym_cell_path_repeat1, - STATE(2946), 1, - sym_path, - STATE(2967), 1, - sym_cell_path, - ACTIONS(2011), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2009), 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, + ACTIONS(3997), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3999), 1, aux_sym__val_number_decimal_token2, + ACTIONS(4001), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4003), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(5622), 1, anon_sym_DQUOTE, + ACTIONS(5626), 1, + sym_raw_string_begin, + ACTIONS(5722), 1, + sym_val_date, + ACTIONS(5781), 1, + anon_sym_LPAREN, + ACTIONS(5783), 1, + anon_sym_DOLLAR, + ACTIONS(5785), 1, + anon_sym_DOT_DOT, + ACTIONS(5791), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5793), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5795), 1, + aux_sym_unquoted_token1, + STATE(2612), 1, + sym__inter_single_quotes, + STATE(2613), 1, + sym__inter_double_quotes, + STATE(2760), 1, + sym_comment, + STATE(5804), 1, + sym__val_number_decimal, + STATE(7747), 1, + sym__val_range, + STATE(7753), 1, + sym__unquoted_anonymous_prefix, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5624), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(5787), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2643), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5789), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1726), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298670,6 +302765,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(2665), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298678,22 +302775,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, - [85812] = 4, + [79045] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2717), 1, + STATE(2761), 1, sym_comment, - ACTIONS(2404), 2, + ACTIONS(2419), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2402), 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, + ACTIONS(2417), 50, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -298703,6 +302793,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -298711,6 +302804,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -298738,29 +302834,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, - [85875] = 8, + [79108] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2718), 1, + ACTIONS(5847), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5849), 1, + aux_sym__immediate_decimal_token2, + STATE(2762), 1, sym_comment, - STATE(2836), 1, - aux_sym_cell_path_repeat1, - STATE(2946), 1, - sym_path, - STATE(2968), 1, - sym_cell_path, - ACTIONS(2015), 2, + ACTIONS(1741), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2013), 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, + ACTIONS(1739), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -298770,6 +302857,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -298777,6 +302867,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -298801,19 +302894,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, - [85946] = 5, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token2, + [79175] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5832), 1, - anon_sym_QMARK2, - STATE(2719), 1, + ACTIONS(5851), 1, + sym__newline, + STATE(2763), 2, sym_comment, - ACTIONS(1048), 18, + aux_sym_shebang_repeat1, + ACTIONS(1294), 15, + anon_sym_DOLLAR, 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, @@ -298827,32 +302919,34 @@ 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), 33, + ACTIONS(1296), 35, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298861,52 +302955,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86011] = 8, - ACTIONS(3), 1, + [79240] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(1978), 1, + sym__table_head_separator, + ACTIONS(5854), 1, anon_sym_DOT, - STATE(2720), 1, + STATE(2764), 1, sym_comment, - STATE(2836), 1, + STATE(3482), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(3600), 1, sym_path, - STATE(2969), 1, + STATE(5948), 1, sym_cell_path, - ACTIONS(2019), 2, + ACTIONS(5741), 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(5748), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2017), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [79313] = 30, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(3997), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3999), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4001), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4003), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5722), 1, + sym_val_date, + ACTIONS(5856), 1, + anon_sym_LPAREN, + ACTIONS(5858), 1, + anon_sym_DOLLAR, + ACTIONS(5860), 1, + anon_sym_DOT_DOT, + STATE(2457), 1, + sym__inter_single_quotes, + STATE(2488), 1, + sym__inter_double_quotes, + STATE(2765), 1, + sym_comment, + STATE(5855), 1, + sym__val_number_decimal, + STATE(6890), 1, + sym_unquoted, + STATE(7706), 1, + sym__val_range, + STATE(7723), 1, + sym__unquoted_anonymous_prefix, + STATE(8000), 1, + sym_val_bool, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3995), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5862), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2091), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5864), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6880), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298915,6 +303094,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(2665), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298923,30 +303104,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, - [86082] = 8, + [79428] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2721), 1, + STATE(2766), 1, sym_comment, - STATE(2836), 1, - aux_sym_cell_path_repeat1, - STATE(2946), 1, - sym_path, - STATE(2970), 1, - sym_cell_path, - ACTIONS(2023), 2, + ACTIONS(1012), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2021), 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, + ACTIONS(1010), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -298954,8 +303122,13 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -298963,6 +303136,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -298987,25 +303163,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, - [86153] = 5, + [79491] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5834), 1, - aux_sym__immediate_decimal_token2, - STATE(2722), 1, + STATE(2767), 1, sym_comment, - ACTIONS(1771), 4, + ACTIONS(1016), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1769), 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, + ACTIONS(1014), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299014,8 +303182,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299023,6 +303195,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -299047,29 +303222,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, - [86218] = 8, + [79554] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5807), 1, anon_sym_DOT, - STATE(2723), 1, + STATE(2768), 1, sym_comment, - STATE(2836), 1, + STATE(2833), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(2960), 1, sym_path, - STATE(2971), 1, + STATE(3041), 1, sym_cell_path, - ACTIONS(2045), 2, + ACTIONS(1927), 2, sym_raw_string_begin, sym__entry_separator, - 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, + ACTIONS(1925), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299079,6 +303248,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299086,6 +303258,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -299110,16 +303285,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, - [86289] = 6, - ACTIONS(249), 1, + [79625] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5836), 1, + ACTIONS(5866), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5838), 1, + ACTIONS(5868), 1, aux_sym__immediate_decimal_token2, - STATE(2724), 1, + STATE(2769), 1, sym_comment, - ACTIONS(1703), 17, + ACTIONS(1739), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -299137,14 +303312,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(1705), 33, + ACTIONS(1741), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -299153,12 +303322,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -299171,29 +303346,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, - [86356] = 8, + [79692] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5807), 1, anon_sym_DOT, - STATE(2725), 1, + STATE(2770), 1, sym_comment, - STATE(2836), 1, + STATE(2833), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(2960), 1, sym_path, - STATE(2972), 1, + STATE(3042), 1, sym_cell_path, - ACTIONS(2049), 2, + ACTIONS(1935), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2047), 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, + ACTIONS(1933), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299203,6 +303372,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299210,6 +303382,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -299234,29 +303409,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, - [86427] = 8, + [79763] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5807), 1, anon_sym_DOT, - STATE(2726), 1, + STATE(2771), 1, sym_comment, - STATE(2836), 1, + STATE(2833), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(2960), 1, sym_path, - STATE(2973), 1, + STATE(3045), 1, sym_cell_path, - ACTIONS(2053), 2, + ACTIONS(1946), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2051), 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, + ACTIONS(1944), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299266,6 +303435,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299273,6 +303445,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -299297,29 +303472,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, - [86498] = 8, + [79834] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5807), 1, anon_sym_DOT, - STATE(2727), 1, + STATE(2772), 1, sym_comment, - STATE(2836), 1, + STATE(2833), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(2960), 1, sym_path, - STATE(2974), 1, + STATE(3046), 1, sym_cell_path, - ACTIONS(2057), 2, + ACTIONS(1950), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2055), 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, + ACTIONS(1948), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299329,6 +303498,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299336,6 +303508,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -299360,29 +303535,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, - [86569] = 8, + [79905] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5807), 1, anon_sym_DOT, - STATE(2728), 1, + STATE(2773), 1, sym_comment, - STATE(2836), 1, + STATE(2833), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(2960), 1, sym_path, - STATE(2975), 1, + STATE(3047), 1, sym_cell_path, - ACTIONS(2061), 2, + ACTIONS(1954), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2059), 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, + ACTIONS(1952), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299392,6 +303561,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299399,6 +303571,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -299423,73 +303598,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, - [86640] = 30, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(117), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(249), 1, + [79976] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3306), 1, + ACTIONS(5807), 1, + anon_sym_DOT, + STATE(2774), 1, + sym_comment, + STATE(2833), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3051), 1, + sym_cell_path, + ACTIONS(1962), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1960), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(3322), 1, - aux_sym_unquoted_token1, - ACTIONS(3366), 1, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5691), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(5842), 1, - anon_sym_LPAREN, - ACTIONS(5844), 1, - anon_sym_DOT_DOT, - STATE(2436), 1, - sym__inter_double_quotes, - STATE(2563), 1, - sym__inter_single_quotes, - STATE(2729), 1, - sym_comment, - STATE(5889), 1, - sym__val_number_decimal, - STATE(7097), 1, - sym_unquoted, - STATE(7610), 1, - sym_val_bool, - STATE(7622), 1, - sym__unquoted_anonymous_prefix, - STATE(7869), 1, - sym__val_range, - ACTIONS(113), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3350), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5846), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2065), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5840), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(7086), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2685), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299498,8 +303652,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(2687), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299508,72 +303660,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, - [86755] = 29, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [80047] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5429), 1, - anon_sym_DQUOTE, - ACTIONS(5433), 1, + ACTIONS(5807), 1, + anon_sym_DOT, + STATE(2775), 1, + sym_comment, + STATE(2833), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3052), 1, + sym_cell_path, + ACTIONS(1970), 2, sym_raw_string_begin, - ACTIONS(5683), 1, + sym__entry_separator, + ACTIONS(1968), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5685), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5687), 1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(5691), 1, - sym_val_date, - ACTIONS(5693), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5695), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5697), 1, - aux_sym_unquoted_token1, - STATE(2431), 1, - sym__inter_double_quotes, - STATE(2501), 1, - sym__inter_single_quotes, - STATE(2730), 1, - sym_comment, - STATE(5868), 1, - sym__val_number_decimal, - STATE(7610), 1, - sym_val_bool, - STATE(7848), 1, - sym__val_range, - STATE(7860), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3350), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(5431), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5689), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2500), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5681), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1475), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2685), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299582,8 +303715,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(2687), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299592,29 +303723,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, - [86868] = 8, + aux_sym__unquoted_in_list_token1, + [80118] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5807), 1, anon_sym_DOT, - STATE(2731), 1, + STATE(2776), 1, sym_comment, - STATE(2836), 1, + STATE(2833), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(2960), 1, sym_path, - STATE(2976), 1, + STATE(3056), 1, sym_cell_path, - ACTIONS(2069), 2, + ACTIONS(1974), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2067), 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, + ACTIONS(1972), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299624,6 +303750,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299631,6 +303760,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -299655,29 +303787,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, - [86939] = 8, + [80189] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5807), 1, anon_sym_DOT, - STATE(2732), 1, + STATE(2777), 1, sym_comment, - STATE(2836), 1, + STATE(2833), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(2960), 1, sym_path, - STATE(2977), 1, + STATE(3057), 1, sym_cell_path, - ACTIONS(2085), 2, + ACTIONS(1986), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2083), 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, + ACTIONS(1984), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299687,6 +303813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299694,6 +303823,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -299718,73 +303850,201 @@ 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, - [87010] = 30, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(249), 1, + [80260] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3366), 1, + ACTIONS(5870), 1, + anon_sym_DOT, + ACTIONS(5872), 1, + aux_sym__immediate_decimal_token2, + STATE(2778), 1, + sym_comment, + ACTIONS(1755), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1757), 33, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3846), 1, - aux_sym_unquoted_token1, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(4020), 1, - anon_sym_DOLLAR, - ACTIONS(4024), 1, - anon_sym_DOT_DOT, - ACTIONS(5691), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(5727), 1, - anon_sym_LPAREN, - STATE(1827), 1, - sym__inter_single_quotes, - STATE(1841), 1, - sym__inter_double_quotes, - STATE(2733), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80327] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5876), 1, + anon_sym_RBRACK, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(5880), 1, + sym_raw_string_begin, + STATE(2779), 1, sym_comment, - STATE(5928), 1, - sym__val_number_decimal, - STATE(6417), 1, - sym_unquoted, - STATE(7610), 1, - sym_val_bool, - STATE(7794), 1, - sym__val_range, - STATE(7859), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3350), 2, + STATE(2803), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5874), 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, + aux_sym_cmd_identifier_token37, + 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, + [80395] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2780), 1, + sym_comment, + ACTIONS(1755), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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), 33, + sym_raw_string_begin, + 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, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(3844), 2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4026), 2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80457] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2781), 1, + sym_comment, + ACTIONS(1010), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5725), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(6415), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2685), 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, @@ -299793,8 +304053,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(2687), 9, + aux_sym__unquoted_in_list_token1, + ACTIONS(1012), 33, + sym_raw_string_begin, + 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, anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299803,29 +304088,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87125] = 8, - ACTIONS(3), 1, + [80519] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5882), 1, anon_sym_DOT, - STATE(2734), 1, + STATE(2782), 1, sym_comment, - STATE(2836), 1, + STATE(2895), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(3043), 1, sym_path, - STATE(2978), 1, + STATE(3120), 1, sym_cell_path, - ACTIONS(2089), 2, + ACTIONS(2068), 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(2070), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2087), 46, + 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, + anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_null, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80589] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(5880), 1, + sym_raw_string_begin, + ACTIONS(5884), 1, + anon_sym_RBRACK, + STATE(2783), 1, + sym_comment, + STATE(2803), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5874), 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, + aux_sym_cmd_identifier_token37, 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, + [80657] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2784), 1, + sym_comment, + ACTIONS(1741), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1739), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299833,8 +304229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299842,6 +304242,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -299866,29 +304269,138 @@ 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, - [87196] = 8, - ACTIONS(3), 1, + [80719] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5827), 1, + ACTIONS(5886), 1, + sym__newline, + STATE(2785), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1294), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1296), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80783] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5882), 1, anon_sym_DOT, - STATE(2735), 1, + STATE(2786), 1, sym_comment, - STATE(2836), 1, + STATE(2895), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(3043), 1, sym_path, - STATE(2979), 1, + STATE(3106), 1, sym_cell_path, - ACTIONS(2097), 2, + ACTIONS(5809), 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(5814), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2095), 46, + 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, + anon_sym_null, 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_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80853] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2787), 1, + sym_comment, + ACTIONS(1785), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1783), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299896,8 +304408,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299905,6 +304421,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -299929,18 +304448,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, - [87267] = 5, - ACTIONS(249), 1, + [80915] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5733), 1, - aux_sym__immediate_decimal_token2, - STATE(2736), 1, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2788), 1, sym_comment, - ACTIONS(1715), 18, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3139), 1, + sym_cell_path, + ACTIONS(2072), 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, @@ -299954,29 +304476,90 @@ 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(1717), 33, + ACTIONS(2074), 33, sym_raw_string_begin, + 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, + anon_sym_null, 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_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80985] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2789), 1, + sym_comment, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3084), 1, + sym_cell_path, + ACTIONS(1907), 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(1911), 33, + sym_raw_string_begin, 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, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -299989,23 +304572,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, - [87332] = 4, + [81055] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2737), 1, + STATE(2790), 1, sym_comment, - ACTIONS(1072), 4, + ACTIONS(1892), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1070), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1890), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -300014,9 +304591,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -300024,6 +304603,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -300048,49 +304630,199 @@ 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, - [87395] = 5, + [81117] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5762), 1, - aux_sym__immediate_decimal_token2, - STATE(2738), 1, - sym_comment, - ACTIONS(1717), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5878), 1, sym__entry_separator, - ACTIONS(1715), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(5880), 1, + sym_raw_string_begin, + ACTIONS(5889), 1, + anon_sym_RBRACK, + STATE(2791), 1, + sym_comment, + STATE(2803), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5874), 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, + aux_sym_cmd_identifier_token37, 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, + [81185] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2792), 1, + sym_comment, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3085), 1, + sym_cell_path, + ACTIONS(1913), 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(1915), 33, + sym_raw_string_begin, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [81255] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2793), 1, + sym_comment, + ACTIONS(1014), 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(1016), 33, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [81317] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2794), 1, + sym_comment, + ACTIONS(1290), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300099,6 +304831,36 @@ 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(1288), 36, + sym_raw_string_begin, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + 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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300107,41 +304869,150 @@ static const 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, - [87460] = 10, - ACTIONS(3), 1, + [81379] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1895), 1, - sym__entry_separator, - ACTIONS(5827), 1, + ACTIONS(5882), 1, anon_sym_DOT, - ACTIONS(5850), 1, - anon_sym_RBRACK, - ACTIONS(5853), 1, - sym_raw_string_begin, - STATE(2739), 1, + STATE(2795), 1, sym_comment, - STATE(2836), 1, + STATE(2895), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(3043), 1, sym_path, - STATE(3041), 1, + STATE(3102), 1, sym_cell_path, - ACTIONS(5848), 45, + ACTIONS(5893), 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(5891), 33, + sym_raw_string_begin, + 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, + anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [81449] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2796), 1, + sym_comment, + ACTIONS(1006), 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(1008), 33, + sym_raw_string_begin, + 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, anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [81511] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2797), 1, + sym_comment, + ACTIONS(2131), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2129), 47, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -300149,6 +305020,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -300173,20 +305047,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, - [87535] = 4, - ACTIONS(249), 1, + [81573] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2740), 1, + ACTIONS(5895), 1, + anon_sym_QMARK2, + STATE(2798), 1, sym_comment, - ACTIONS(1070), 7, + ACTIONS(984), 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_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1072), 45, + ACTIONS(986), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300217,11 +305093,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -300232,15 +305106,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87598] = 4, - ACTIONS(249), 1, + [81637] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2741), 1, + STATE(2799), 1, sym_comment, - ACTIONS(1066), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, + ACTIONS(1890), 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, @@ -300249,40 +305128,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1068), 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, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300291,21 +305164,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87661] = 5, - ACTIONS(249), 1, + [81699] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5855), 1, - anon_sym_EQ2, - STATE(2742), 1, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5897), 1, + anon_sym_DOT_DOT2, + STATE(2800), 1, + sym_comment, + ACTIONS(5899), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1866), 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(1874), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [81767] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5901), 1, + anon_sym_DOT_DOT2, + STATE(2801), 1, + sym_comment, + ACTIONS(2173), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5903), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2167), 46, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [81833] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2802), 1, sym_comment, - ACTIONS(4991), 6, + ACTIONS(994), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4989), 45, + anon_sym_DOT, + ACTIONS(996), 44, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300336,14 +305329,13 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, @@ -300351,19 +305343,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87726] = 5, + [81895] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(2743), 1, - sym_comment, - ACTIONS(1092), 4, + ACTIONS(2325), 1, sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1090), 47, + ACTIONS(5905), 1, + sym__entry_separator, + STATE(2803), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2320), 48, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300400,91 +305390,98 @@ static const uint16_t ts_small_parse_table[] = { 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_token37, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [87791] = 5, - ACTIONS(249), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [81959] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5857), 1, - sym__newline, - STATE(2744), 2, + ACTIONS(1888), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5908), 1, + anon_sym_DOT_DOT2, + STATE(2804), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1349), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1351), 44, + ACTIONS(5910), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1878), 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(1886), 31, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87856] = 5, - 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, + [82027] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(2745), 1, + ACTIONS(5916), 1, + anon_sym_DASH_DASH, + STATE(2973), 1, + sym_long_flag, + STATE(2805), 2, sym_comment, - ACTIONS(2285), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2281), 47, + aux_sym_decl_def_repeat1, + ACTIONS(5912), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5914), 42, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300492,13 +305489,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, @@ -300517,176 +305511,33 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token37, 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, - [87921] = 29, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5613), 1, anon_sym_DQUOTE, - ACTIONS(5617), 1, - sym_raw_string_begin, - ACTIONS(5691), 1, - sym_val_date, - ACTIONS(5862), 1, - anon_sym_LPAREN, - ACTIONS(5864), 1, - anon_sym_DOLLAR, - ACTIONS(5866), 1, - anon_sym_DOT_DOT, - ACTIONS(5870), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5872), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5874), 1, - aux_sym_unquoted_token1, - STATE(2566), 1, - sym__inter_single_quotes, - STATE(2570), 1, - sym__inter_double_quotes, - STATE(2746), 1, - sym_comment, - STATE(5894), 1, - sym__val_number_decimal, - STATE(7610), 1, - sym_val_bool, - STATE(7776), 1, - sym__unquoted_anonymous_prefix, - STATE(7834), 1, - sym__val_range, - ACTIONS(3350), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5615), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5868), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2615), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5860), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1505), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2685), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2687), 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, - [88034] = 4, - ACTIONS(249), 1, + [82093] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2747), 1, - sym_comment, - ACTIONS(1070), 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(1072), 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, + ACTIONS(5882), 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, - [88097] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5876), 1, - anon_sym_QMARK2, - STATE(2748), 1, + STATE(2806), 1, sym_comment, - ACTIONS(1042), 18, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3143), 1, + sym_cell_path, + ACTIONS(1933), 14, 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, @@ -300700,28 +305551,28 @@ 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(1044), 33, + ACTIONS(1935), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -300734,72 +305585,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, - [88162] = 29, - ACTIONS(249), 1, + [82163] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5613), 1, - anon_sym_DQUOTE, - ACTIONS(5617), 1, + ACTIONS(5829), 1, + aux_sym__immediate_decimal_token2, + STATE(2807), 1, + sym_comment, + ACTIONS(1757), 3, sym_raw_string_begin, - ACTIONS(5691), 1, - sym_val_date, - ACTIONS(5862), 1, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1755), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5864), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5866), 1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(5870), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5872), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5874), 1, - aux_sym_unquoted_token1, - STATE(2566), 1, - sym__inter_single_quotes, - STATE(2570), 1, - sym__inter_double_quotes, - STATE(2749), 1, - sym_comment, - STATE(5894), 1, - sym__val_number_decimal, - STATE(7610), 1, - sym_val_bool, - STATE(7776), 1, - sym__unquoted_anonymous_prefix, - STATE(7834), 1, - sym__val_range, - ACTIONS(3350), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(5615), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5868), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2615), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5860), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1511), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2685), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300808,8 +305634,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(2687), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300818,72 +305642,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, - [88275] = 29, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [82227] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5429), 1, - anon_sym_DQUOTE, - ACTIONS(5433), 1, - sym_raw_string_begin, - ACTIONS(5683), 1, - anon_sym_LPAREN, - ACTIONS(5685), 1, - anon_sym_DOLLAR, - ACTIONS(5687), 1, - anon_sym_DOT_DOT, - ACTIONS(5691), 1, - sym_val_date, - ACTIONS(5693), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5695), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5697), 1, - aux_sym_unquoted_token1, - STATE(2431), 1, - sym__inter_double_quotes, - STATE(2501), 1, - sym__inter_single_quotes, - STATE(2750), 1, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2808), 1, sym_comment, - STATE(5868), 1, - sym__val_number_decimal, - STATE(7610), 1, - sym_val_bool, - STATE(7848), 1, - sym__val_range, - STATE(7860), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3350), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5689), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2500), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5681), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1449), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2685), 8, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3089), 1, + sym_cell_path, + ACTIONS(1944), 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, @@ -300892,8 +305671,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(2687), 9, + aux_sym__unquoted_in_list_token1, + ACTIONS(1946), 33, + sym_raw_string_begin, + 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, anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300902,21 +305706,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, - [88388] = 4, - ACTIONS(249), 1, + [82297] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2751), 1, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(5880), 1, + sym_raw_string_begin, + ACTIONS(5919), 1, + anon_sym_RBRACK, + STATE(2803), 1, + aux_sym__multiple_types_repeat1, + STATE(2809), 1, sym_comment, - ACTIONS(1074), 7, + ACTIONS(5874), 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, - anon_sym_DOT, - ACTIONS(1076), 45, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300924,10 +305728,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, @@ -300948,12 +305755,11 @@ 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_token36, + aux_sym_cmd_identifier_token37, + 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, @@ -300961,15 +305767,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88451] = 4, - ACTIONS(249), 1, + [82365] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2752), 1, + STATE(2810), 1, sym_comment, - ACTIONS(1074), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, + ACTIONS(2185), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2183), 47, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300978,40 +305816,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(1076), 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, @@ -301020,77 +305824,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, - [88514] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [82427] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2753), 1, + STATE(2811), 1, sym_comment, - ACTIONS(2569), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2571), 45, + ACTIONS(1739), 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(1741), 33, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88576] = 4, - ACTIONS(249), 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, + [82489] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2754), 1, + ACTIONS(5921), 1, + anon_sym_QMARK2, + STATE(2812), 1, sym_comment, - ACTIONS(5077), 6, + ACTIONS(978), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5075), 45, + anon_sym_DOT, + ACTIONS(980), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301121,11 +305929,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -301136,17 +305942,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88638] = 5, - ACTIONS(249), 1, + [82553] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5878), 1, - sym__newline, - STATE(2755), 2, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2813), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1349), 16, - anon_sym_DOLLAR, - anon_sym_DASH, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3134), 1, + sym_cell_path, + ACTIONS(961), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -301160,33 +305969,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1351), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(963), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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_DASH_DASH, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301195,19 +306004,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, - [88702] = 4, - ACTIONS(249), 1, + [82623] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2756), 1, + STATE(2814), 1, sym_comment, - ACTIONS(2510), 6, + ACTIONS(998), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2512), 45, + anon_sym_DOT, + ACTIONS(1000), 44, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301238,14 +306048,13 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, @@ -301253,79 +306062,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88764] = 4, - ACTIONS(249), 1, + [82685] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2757), 1, + STATE(2815), 1, sym_comment, - ACTIONS(1066), 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(1068), 33, + ACTIONS(1757), 4, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1755), 47, 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, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88826] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2758), 1, - sym_comment, - ACTIONS(1070), 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, @@ -301334,33 +306111,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(1072), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -301369,19 +306119,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, - [88888] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [82747] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2759), 1, + STATE(2816), 1, sym_comment, - ACTIONS(2001), 6, + ACTIONS(1002), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2003), 45, + anon_sym_DOT, + ACTIONS(1004), 44, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301412,14 +306164,13 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, @@ -301427,19 +306178,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88950] = 4, - ACTIONS(249), 1, + [82809] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2760), 1, + STATE(2817), 1, sym_comment, - ACTIONS(2535), 6, + ACTIONS(990), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2537), 45, + anon_sym_DOT, + ACTIONS(992), 44, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301470,14 +306222,13 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, 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, @@ -301485,78 +306236,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89012] = 4, - ACTIONS(249), 1, + [82871] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2761), 1, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2818), 1, sym_comment, - ACTIONS(1090), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1092), 45, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3108), 1, + sym_cell_path, + ACTIONS(1952), 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(1954), 33, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89074] = 8, - ACTIONS(249), 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, + [82941] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, + ACTIONS(5882), 1, anon_sym_DOT, - STATE(2762), 1, + STATE(2819), 1, sym_comment, - STATE(2884), 1, + STATE(2895), 1, aux_sym_cell_path_repeat1, - STATE(3021), 1, + STATE(3043), 1, sym_path, - STATE(3078), 1, + STATE(3121), 1, sym_cell_path, - ACTIONS(5848), 14, + ACTIONS(1960), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -301571,14 +306326,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(5853), 33, + ACTIONS(1962), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -301587,12 +306336,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -301605,484 +306360,449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89144] = 4, - ACTIONS(249), 1, + [83011] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2763), 1, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2820), 1, sym_comment, - ACTIONS(2494), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2496), 45, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3125), 1, + sym_cell_path, + ACTIONS(1968), 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(1970), 33, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89206] = 4, - ACTIONS(249), 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, + [83081] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2764), 1, + ACTIONS(5923), 1, + sym__newline, + STATE(2821), 2, sym_comment, - ACTIONS(5061), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5059), 45, + aux_sym_shebang_repeat1, + ACTIONS(1294), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1296), 33, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89268] = 4, - ACTIONS(249), 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, + [83145] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2765), 1, - sym_comment, - 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(2468), 45, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5930), 1, + anon_sym_DOT_DOT2, + ACTIONS(5934), 1, + sym__entry_separator, + ACTIONS(5936), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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(2822), 1, + sym_comment, + ACTIONS(5932), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5926), 45, + 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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89330] = 4, - ACTIONS(249), 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, + [83215] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2766), 1, - sym_comment, - ACTIONS(1062), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1064), 45, + ACTIONS(1032), 1, + sym__entry_separator, + ACTIONS(5930), 1, + anon_sym_DOT_DOT2, + ACTIONS(5940), 1, + anon_sym_RBRACK, + ACTIONS(5943), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, + sym_comment, + ACTIONS(5932), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5938), 45, + 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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89392] = 4, - ACTIONS(249), 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, + [83285] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2767), 1, + STATE(2824), 1, sym_comment, - ACTIONS(2494), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2496), 45, + ACTIONS(1737), 4, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1735), 47, + 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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89454] = 4, - ACTIONS(249), 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, + [83347] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2768), 1, + ACTIONS(5945), 1, + anon_sym_DOT_DOT2, + STATE(2825), 1, sym_comment, - ACTIONS(2017), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2019), 45, + ACTIONS(2181), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + sym__entry_separator, + ACTIONS(5947), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2175), 46, + 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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89516] = 4, - ACTIONS(249), 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, + [83413] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2769), 1, + ACTIONS(5949), 1, + aux_sym__immediate_decimal_token2, + STATE(2826), 1, sym_comment, - ACTIONS(2043), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2045), 45, + ACTIONS(1785), 3, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_LPAREN2, + sym__entry_separator, + ACTIONS(1783), 47, + 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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89578] = 4, - ACTIONS(249), 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, + aux_sym__unquoted_in_list_token2, + [83477] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2770), 1, + ACTIONS(5951), 1, + sym_long_flag_identifier, + ACTIONS(5953), 1, + anon_sym_EQ2, + STATE(2827), 1, sym_comment, - ACTIONS(2047), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2049), 45, + ACTIONS(4936), 9, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [89640] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2771), 1, - sym_comment, - ACTIONS(2434), 6, + ACTIONS(4938), 40, aux_sym_cmd_identifier_token1, - aux_sym_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), 45, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302090,10 +306810,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, @@ -302114,36 +306837,25 @@ 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_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, 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, - [89702] = 4, + [83543] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2772), 1, + ACTIONS(5955), 1, + anon_sym_DOT_DOT2, + STATE(2828), 1, sym_comment, - ACTIONS(1672), 4, + ACTIONS(2139), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5957), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1670), 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, + ACTIONS(2133), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -302151,9 +306863,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302161,6 +306875,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -302185,78 +306902,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, - [89764] = 4, - ACTIONS(249), 1, + [83609] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2773), 1, + ACTIONS(5872), 1, + aux_sym__immediate_decimal_token2, + STATE(2829), 1, sym_comment, - ACTIONS(2059), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2061), 45, + ACTIONS(1755), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1757), 33, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89826] = 4, - ACTIONS(249), 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, + [83673] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2774), 1, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(5880), 1, + sym_raw_string_begin, + ACTIONS(5959), 1, + anon_sym_RBRACK, + STATE(2803), 1, + aux_sym__multiple_types_repeat1, + STATE(2830), 1, sym_comment, - ACTIONS(1078), 6, + ACTIONS(5874), 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(1080), 45, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302264,10 +306983,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, @@ -302288,12 +307010,11 @@ 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_token36, + aux_sym_cmd_identifier_token37, + 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, @@ -302301,78 +307022,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89888] = 4, - ACTIONS(249), 1, + [83741] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2775), 1, + STATE(2831), 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), 45, + ACTIONS(2127), 4, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2125), 47, + 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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89950] = 4, - ACTIONS(249), 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, + [83803] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2776), 1, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(5880), 1, + sym_raw_string_begin, + ACTIONS(5961), 1, + anon_sym_RBRACK, + STATE(2803), 1, + aux_sym__multiple_types_repeat1, + STATE(2832), 1, sym_comment, - ACTIONS(2450), 6, + ACTIONS(5874), 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(2452), 45, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302380,10 +307102,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, @@ -302404,12 +307129,11 @@ 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_token36, + aux_sym_cmd_identifier_token37, + 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, @@ -302417,30 +307141,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90012] = 8, + [83871] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5885), 1, - anon_sym_RBRACK, - ACTIONS(5887), 1, - anon_sym_DOT_DOT2, - ACTIONS(5891), 1, - sym__entry_separator, - ACTIONS(5893), 1, - sym_raw_string_begin, - STATE(2777), 1, + ACTIONS(5807), 1, + anon_sym_DOT, + STATE(2833), 1, sym_comment, - ACTIONS(5889), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5883), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2836), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + ACTIONS(969), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(967), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -302448,6 +307165,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302455,6 +307175,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -302479,23 +307202,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, - [90082] = 4, + [83939] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2834), 1, + sym_comment, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3086), 1, + sym_cell_path, + ACTIONS(1972), 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(1974), 33, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84009] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2778), 1, + STATE(2835), 1, sym_comment, - ACTIONS(2107), 4, + ACTIONS(1020), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2105), 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, + ACTIONS(1018), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -302506,6 +307285,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302513,6 +307295,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -302537,30 +307322,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, - [90144] = 8, + [84071] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1092), 1, - sym__entry_separator, - ACTIONS(5887), 1, - anon_sym_DOT_DOT2, - ACTIONS(5897), 1, - anon_sym_RBRACK, - ACTIONS(5900), 1, + ACTIONS(5963), 1, + anon_sym_DOT, + STATE(2960), 1, + sym_path, + ACTIONS(973), 2, sym_raw_string_begin, - STATE(2779), 1, + sym__entry_separator, + STATE(2836), 2, sym_comment, - ACTIONS(5889), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5895), 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, + aux_sym_cell_path_repeat1, + ACTIONS(971), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -302568,6 +307345,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302575,6 +307355,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -302599,47 +307382,87 @@ 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, - [90214] = 4, - ACTIONS(3), 1, + [84137] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2780), 1, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2837), 1, sym_comment, - ACTIONS(1717), 4, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3087), 1, + sym_cell_path, + ACTIONS(1984), 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(1986), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1715), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84207] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2838), 1, + sym_comment, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3135), 1, + sym_cell_path, + ACTIONS(1925), 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, @@ -302648,6 +307471,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1927), 33, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302656,27 +307506,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, - [90276] = 6, + [84277] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5902), 1, + ACTIONS(5966), 1, anon_sym_DOT_DOT2, - STATE(2781), 1, + STATE(2839), 1, sym_comment, - ACTIONS(2228), 2, + ACTIONS(2165), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5904), 2, + ACTIONS(5968), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2222), 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, + ACTIONS(2159), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -302686,6 +307529,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302693,6 +307539,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -302717,55 +307566,60 @@ 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, - [90342] = 5, - ACTIONS(3), 1, + [84343] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5813), 1, - aux_sym__immediate_decimal_token2, - STATE(2782), 1, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2840), 1, sym_comment, - ACTIONS(1717), 3, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3097), 1, + sym_cell_path, + ACTIONS(1988), 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(1990), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1715), 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_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -302774,251 +307628,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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [90406] = 4, - ACTIONS(249), 1, + [84413] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2783), 1, + ACTIONS(5970), 1, + aux_sym__immediate_decimal_token2, + STATE(2841), 1, sym_comment, - ACTIONS(2430), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2432), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [90468] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2784), 1, - sym_comment, - ACTIONS(2067), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2069), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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(1783), 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, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [90530] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2785), 1, - sym_comment, - ACTIONS(2478), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2480), 45, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_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(1785), 33, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_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, 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, - [90592] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2786), 1, - sym_comment, - ACTIONS(2087), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2089), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90654] = 4, - ACTIONS(249), 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, + [84477] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2787), 1, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2842), 1, sym_comment, - ACTIONS(1074), 18, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3100), 1, + sym_cell_path, + ACTIONS(1992), 14, 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, @@ -303032,28 +307715,28 @@ 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(1076), 33, + ACTIONS(1994), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -303066,20 +307749,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, - [90716] = 8, - ACTIONS(249), 1, + [84547] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, + ACTIONS(5882), 1, anon_sym_DOT, - STATE(2788), 1, + STATE(2843), 1, sym_comment, - STATE(2884), 1, + STATE(2895), 1, aux_sym_cell_path_repeat1, - STATE(3021), 1, + STATE(3043), 1, sym_path, - STATE(3069), 1, + STATE(3101), 1, sym_cell_path, - ACTIONS(5908), 14, + ACTIONS(1996), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -303094,14 +307777,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(5906), 33, + ACTIONS(1998), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -303110,12 +307787,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -303128,20 +307811,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, - [90786] = 4, - ACTIONS(249), 1, + [84617] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2789), 1, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(5880), 1, + sym_raw_string_begin, + ACTIONS(5972), 1, + anon_sym_RBRACK, + STATE(2803), 1, + aux_sym__multiple_types_repeat1, + STATE(2844), 1, sym_comment, - ACTIONS(2470), 6, + ACTIONS(5874), 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(2472), 45, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303149,10 +307833,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, @@ -303173,12 +307860,11 @@ 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_token36, + aux_sym_cmd_identifier_token37, + 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, @@ -303186,20 +307872,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90848] = 4, - ACTIONS(249), 1, + [84685] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2790), 1, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(5880), 1, + sym_raw_string_begin, + ACTIONS(5974), 1, + anon_sym_RBRACK, + STATE(2803), 1, + aux_sym__multiple_types_repeat1, + STATE(2845), 1, sym_comment, - ACTIONS(2474), 6, + ACTIONS(5874), 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(2476), 45, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303207,10 +307894,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, @@ -303231,12 +307921,11 @@ 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_token36, + aux_sym_cmd_identifier_token37, + 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, @@ -303244,128 +307933,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90910] = 4, - ACTIONS(249), 1, + [84753] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2791), 1, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2846), 1, sym_comment, - ACTIONS(1054), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1056), 45, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3115), 1, + sym_cell_path, + ACTIONS(2000), 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(2002), 33, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90972] = 4, - ACTIONS(249), 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, + [84823] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2792), 1, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2847), 1, sym_comment, - ACTIONS(1364), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1362), 45, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3117), 1, + sym_cell_path, + ACTIONS(2004), 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(2006), 33, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_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, + anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91034] = 4, - ACTIONS(249), 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, + [84893] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2793), 1, + STATE(2848), 1, sym_comment, - ACTIONS(1703), 18, + ACTIONS(1783), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -303384,14 +308081,8 @@ 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(1705), 33, + ACTIONS(1785), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -303400,12 +308091,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -303418,23 +308115,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, - [91096] = 4, - ACTIONS(3), 1, + [84955] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2794), 1, + ACTIONS(5882), 1, + anon_sym_DOT, + STATE(2849), 1, sym_comment, - ACTIONS(1705), 4, + STATE(2895), 1, + aux_sym_cell_path_repeat1, + STATE(3043), 1, + sym_path, + STATE(3094), 1, + sym_cell_path, + ACTIONS(1948), 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(1950), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1703), 47, + 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, + anon_sym_null, 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_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [85025] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym__unquoted_in_list_token4, + STATE(2850), 1, + sym_comment, + ACTIONS(2218), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2214), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303442,9 +308197,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303452,6 +308209,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -303476,251 +308236,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, - [91158] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2795), 1, - sym_comment, - 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(2456), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [91220] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2796), 1, - sym_comment, - ACTIONS(2410), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2412), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [91282] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2797), 1, - sym_comment, - ACTIONS(2095), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2097), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [91344] = 4, - ACTIONS(249), 1, + [85090] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2798), 1, + STATE(2851), 1, sym_comment, - ACTIONS(2502), 6, + ACTIONS(1006), 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(2504), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [91406] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2799), 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), 45, + anon_sym_DOT, + ACTIONS(1008), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -303751,69 +308280,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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, - [91468] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2800), 1, - sym_comment, - ACTIONS(2531), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2533), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -303824,23 +308293,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91530] = 4, + [85151] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2801), 1, + STATE(2852), 1, sym_comment, - ACTIONS(2220), 4, + ACTIONS(1741), 3, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2218), 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, + ACTIONS(1739), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303848,9 +308310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303858,6 +308322,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -303882,28 +308349,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91592] = 6, + aux_sym__unquoted_in_list_token2, + [85212] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5910), 1, - anon_sym_DOT_DOT2, - STATE(2802), 1, - sym_comment, - ACTIONS(2240), 2, - sym_raw_string_begin, + ACTIONS(1032), 1, sym__entry_separator, - ACTIONS(5912), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2234), 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, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5940), 1, anon_sym_RBRACK, + ACTIONS(5943), 1, + sym_raw_string_begin, + STATE(2853), 1, + sym_comment, + ACTIONS(5938), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -303911,6 +308374,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303918,6 +308384,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -303942,24 +308411,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, - [91658] = 5, + [85281] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5914), 1, - aux_sym__immediate_decimal_token2, - STATE(2803), 1, + STATE(2854), 1, sym_comment, - ACTIONS(1771), 3, + ACTIONS(1757), 3, sym_raw_string_begin, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1769), 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, + ACTIONS(1755), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303969,6 +308430,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303976,6 +308440,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -304001,72 +308468,16 @@ 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, - [91722] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2804), 1, - sym_comment, - ACTIONS(1909), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1911), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [91784] = 4, - ACTIONS(249), 1, + [85342] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2805), 1, + STATE(2855), 1, sym_comment, - ACTIONS(1364), 15, - anon_sym_DOLLAR, + ACTIONS(2125), 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, @@ -304080,35 +308491,32 @@ 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(1362), 36, + ACTIONS(2127), 33, sym_raw_string_begin, - anon_sym_true, - anon_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, 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304117,35 +308525,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, - [91846] = 6, + [85403] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5916), 1, - anon_sym_DOT_DOT2, - STATE(2806), 1, - sym_comment, - ACTIONS(2119), 2, - sym_raw_string_begin, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5934), 1, sym__entry_separator, - ACTIONS(5918), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2113), 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, + ACTIONS(5978), 1, + anon_sym_COMMA, + ACTIONS(5980), 1, + sym_raw_string_begin, + STATE(2856), 1, + sym_comment, + STATE(7436), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5976), 44, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -304153,6 +308560,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -304177,23 +308587,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, - [91912] = 4, + [85474] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2807), 1, + STATE(2857), 1, sym_comment, - ACTIONS(2232), 4, + ACTIONS(1785), 3, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2230), 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, + ACTIONS(1783), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304201,9 +308604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -304211,6 +308616,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -304235,26 +308643,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, - [91974] = 6, + aux_sym__unquoted_in_list_token2, + [85535] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5920), 1, - anon_sym_DOT_DOT2, - STATE(2808), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym__unquoted_in_list_token4, + STATE(2858), 1, sym_comment, - ACTIONS(2212), 2, + ACTIONS(2224), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5922), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2206), 46, + ACTIONS(2222), 46, + 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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [85600] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2859), 1, + sym_comment, + ACTIONS(1892), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1890), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304264,6 +308722,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -304271,6 +308732,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -304295,14 +308759,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92040] = 5, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token2, + [85661] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5825), 1, - aux_sym__immediate_decimal_token2, - STATE(2809), 1, + STATE(2860), 1, sym_comment, - ACTIONS(1715), 17, + ACTIONS(1755), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -304320,14 +308783,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(1717), 33, + ACTIONS(1757), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -304336,12 +308793,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -304354,20 +308817,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, - [92104] = 4, - ACTIONS(249), 1, + [85722] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2810), 1, + STATE(2861), 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), 45, + ACTIONS(1290), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1288), 34, + sym_raw_string_begin, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [85783] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(5880), 1, sym_raw_string_begin, + STATE(2803), 1, + aux_sym__multiple_types_repeat1, + STATE(2862), 1, + sym_comment, + ACTIONS(5874), 47, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304375,10 +308894,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, @@ -304399,12 +308921,11 @@ 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_token36, + aux_sym_cmd_identifier_token37, + 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, @@ -304412,40 +308933,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92166] = 4, - ACTIONS(3), 1, + [85848] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2811), 1, + STATE(2863), 1, sym_comment, - ACTIONS(1828), 4, + ACTIONS(1739), 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(1741), 33, sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [85909] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5982), 1, + anon_sym_QMARK2, + STATE(2864), 1, + sym_comment, + ACTIONS(980), 2, + sym_raw_string_begin, sym__entry_separator, - ACTIONS(1826), 47, + ACTIONS(978), 47, + 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, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [85972] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5984), 1, + anon_sym_QMARK2, + STATE(2865), 1, + sym_comment, + ACTIONS(986), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(984), 47, + 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, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [86035] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2866), 1, + sym_comment, + ACTIONS(1783), 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(1785), 33, + sym_raw_string_begin, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [86096] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2867), 1, + sym_comment, + ACTIONS(1890), 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(1892), 33, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [86157] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1579), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + STATE(2868), 1, + sym_comment, + ACTIONS(2238), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2234), 46, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -304470,19 +309279,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, - [92228] = 4, - ACTIONS(249), 1, + [86222] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2812), 1, + ACTIONS(5986), 1, + sym__newline, + STATE(2869), 2, sym_comment, - ACTIONS(2543), 6, + aux_sym_shebang_repeat1, + ACTIONS(1294), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2545), 45, + ACTIONS(1296), 42, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304513,11 +309325,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [86285] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2870), 1, + sym_comment, + ACTIONS(1010), 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1012), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -304528,19 +309394,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92290] = 4, - ACTIONS(249), 1, + [86346] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2813), 1, + STATE(2871), 1, sym_comment, - ACTIONS(5924), 6, + ACTIONS(1014), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5926), 45, + anon_sym_DOT, + ACTIONS(1016), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304571,11 +309438,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -304586,19 +309451,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92352] = 4, - ACTIONS(249), 1, + [86407] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2814), 1, + ACTIONS(5616), 1, + aux_sym_unquoted_token2, + STATE(2872), 1, sym_comment, - ACTIONS(2561), 6, + ACTIONS(1709), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2563), 45, + ACTIONS(1721), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304629,11 +309496,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -304644,23 +309509,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92414] = 4, - ACTIONS(3), 1, + [86470] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2815), 1, + ACTIONS(5989), 1, + anon_sym_DOT_DOT2, + STATE(2873), 1, sym_comment, - ACTIONS(1771), 4, - sym_raw_string_begin, + ACTIONS(5991), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1769), 47, + ACTIONS(2159), 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(2165), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, 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_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [86535] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + ACTIONS(2258), 1, + aux_sym__unquoted_in_list_token2, + STATE(2874), 1, + sym_comment, + ACTIONS(2256), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2252), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304668,9 +309588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -304678,6 +309600,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -304702,19 +309627,78 @@ 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, - [92476] = 4, - ACTIONS(249), 1, + [86600] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2816), 1, + STATE(2875), 1, + sym_comment, + ACTIONS(1290), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1288), 34, + sym_raw_string_begin, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [86661] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5993), 1, + anon_sym_LBRACK2, + STATE(2876), 1, sym_comment, - ACTIONS(1628), 6, + ACTIONS(2337), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1640), 45, + ACTIONS(2341), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304745,11 +309729,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -304760,21 +309742,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92538] = 8, - ACTIONS(249), 1, + [86724] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5881), 1, + STATE(2877), 1, + sym_comment, + ACTIONS(996), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(994), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT, - STATE(2817), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [86785] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5995), 1, + anon_sym_DOT_DOT2, + STATE(2878), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3082), 1, - sym_cell_path, - ACTIONS(1021), 14, + ACTIONS(5997), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5926), 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, @@ -304788,28 +309826,26 @@ 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), 33, + ACTIONS(5936), 31, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -304822,20 +309858,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, - [92608] = 4, - ACTIONS(249), 1, + [86850] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2818), 1, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(2879), 1, sym_comment, - ACTIONS(2418), 6, + ACTIONS(2210), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2206), 45, 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, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token38, - ACTIONS(2420), 45, + 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, + [86913] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(2880), 1, + sym_comment, + ACTIONS(1032), 4, sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1030), 45, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304843,10 +309937,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, @@ -304867,9 +309964,9 @@ 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_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -304877,29 +309974,46 @@ 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, - [92670] = 7, - ACTIONS(249), 1, + [86976] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5928), 1, - anon_sym_DOT_DOT2, - STATE(2819), 1, + STATE(2881), 1, sym_comment, - ACTIONS(5930), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1788), 16, + ACTIONS(1000), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(998), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304908,31 +310022,63 @@ 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(1796), 31, + [87037] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2882), 1, + sym_comment, + ACTIONS(1004), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(1002), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -304941,21 +310087,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, - [92738] = 8, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [87098] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2820), 1, + ACTIONS(5995), 1, + anon_sym_DOT_DOT2, + STATE(2883), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3095), 1, - sym_cell_path, - ACTIONS(1993), 14, + ACTIONS(5997), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5938), 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, @@ -304969,28 +310115,26 @@ 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(1995), 33, + ACTIONS(5943), 31, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -305003,60 +310147,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, - [92808] = 8, - ACTIONS(249), 1, + [87163] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2821), 1, - sym_comment, STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3098), 1, - sym_cell_path, - ACTIONS(1997), 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(1999), 33, + sym_comment, + ACTIONS(2250), 3, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2248), 47, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -305065,60 +310202,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, - [92878] = 8, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token4, + [87224] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2822), 1, + STATE(2885), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3100), 1, - sym_cell_path, - ACTIONS(2001), 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(2003), 33, + ACTIONS(992), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(990), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -305127,80 +310260,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, - [92948] = 5, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [87285] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5932), 1, - sym__newline, - STATE(2823), 2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(2886), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1349), 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(1351), 33, + ACTIONS(2218), 4, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2214), 45, + 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, + aux_sym_cmd_identifier_token37, 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, + 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, + [87348] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(2887), 1, + sym_comment, + ACTIONS(2224), 4, + sym_raw_string_begin, 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, - [93012] = 8, - ACTIONS(249), 1, + ACTIONS(2222), 45, + 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, + aux_sym_cmd_identifier_token37, + 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, + [87411] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2824), 1, + STATE(2888), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3101), 1, - sym_cell_path, - ACTIONS(2005), 14, + ACTIONS(2129), 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, @@ -305214,28 +310400,28 @@ 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(2007), 33, + ACTIONS(2131), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -305248,87 +310434,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, - [93082] = 8, - ACTIONS(249), 1, + [87472] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2825), 1, + ACTIONS(5999), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6001), 1, + aux_sym__immediate_decimal_token2, + STATE(2889), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3104), 1, - sym_cell_path, - ACTIONS(2009), 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(2011), 33, + ACTIONS(1741), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(1739), 46, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93152] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2826), 1, - sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3106), 1, - sym_cell_path, - ACTIONS(2013), 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, @@ -305337,33 +310484,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(2015), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -305372,21 +310492,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, - [93222] = 8, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [87537] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2827), 1, + STATE(2890), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3110), 1, - sym_cell_path, - ACTIONS(2017), 14, + ACTIONS(1735), 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, @@ -305400,28 +310516,28 @@ 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(2019), 33, + ACTIONS(1737), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -305434,60 +310550,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, - [93292] = 8, - ACTIONS(249), 1, + [87598] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2828), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym__unquoted_in_list_token2, + STATE(2891), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3111), 1, - sym_cell_path, - ACTIONS(2021), 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(2023), 33, + ACTIONS(2189), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(2187), 46, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -305496,14 +310608,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, - [93362] = 5, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [87663] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5935), 1, - aux_sym__immediate_decimal_token2, - STATE(2829), 1, + STATE(2892), 1, sym_comment, - ACTIONS(1769), 17, + ACTIONS(2183), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -305521,14 +310632,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(1771), 33, + ACTIONS(2185), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -305537,12 +310642,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -305555,56 +310666,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, - [93426] = 4, - ACTIONS(249), 1, + [87724] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2830), 1, + STATE(2893), 1, sym_comment, - ACTIONS(1769), 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(1771), 33, + ACTIONS(2419), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + sym__entry_separator, + ACTIONS(2417), 48, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + [87785] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym__unquoted_in_list_token2, + STATE(2894), 1, + sym_comment, + ACTIONS(1886), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1878), 46, 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, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -305613,20 +310781,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, - [93488] = 8, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [87850] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, + ACTIONS(5882), 1, anon_sym_DOT, - STATE(2831), 1, + STATE(2895), 1, sym_comment, - STATE(2884), 1, + STATE(2904), 1, aux_sym_cell_path_repeat1, - STATE(3021), 1, + STATE(3043), 1, sym_path, - STATE(3114), 1, - sym_cell_path, - ACTIONS(2043), 14, + ACTIONS(967), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -305641,14 +310808,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(2045), 33, + ACTIONS(969), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -305657,12 +310818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -305675,20 +310842,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, - [93558] = 8, - ACTIONS(249), 1, + [87917] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2832), 1, + ACTIONS(6003), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6005), 1, + aux_sym__immediate_decimal_token2, + STATE(2896), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3115), 1, - sym_cell_path, - ACTIONS(2047), 14, + ACTIONS(1739), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -305703,14 +310866,9 @@ 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), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -305719,12 +310877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -305737,21 +310901,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, - [93628] = 8, - ACTIONS(249), 1, + [87982] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2833), 1, + STATE(2897), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3116), 1, - sym_cell_path, - ACTIONS(2051), 14, + ACTIONS(1018), 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, @@ -305765,28 +310924,28 @@ 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(2053), 33, + ACTIONS(1020), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -305799,56 +310958,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, - [93698] = 4, - ACTIONS(249), 1, + [88043] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2834), 1, + ACTIONS(6007), 1, + anon_sym_DOT, + ACTIONS(6009), 1, + aux_sym__immediate_decimal_token2, + STATE(2898), 1, sym_comment, - ACTIONS(1826), 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(1828), 33, + ACTIONS(1757), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(1755), 46, 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, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -305857,19 +311016,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, - [93760] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [88108] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2835), 1, + ACTIONS(6011), 1, + anon_sym_EQ2, + STATE(2899), 1, sym_comment, - ACTIONS(4997), 6, + ACTIONS(5016), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4995), 45, + ACTIONS(5014), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305900,11 +311062,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -305915,27 +311075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93822] = 7, + [88171] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, - anon_sym_DOT, - STATE(2836), 1, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + STATE(2900), 1, sym_comment, - STATE(2854), 1, - aux_sym_cell_path_repeat1, - STATE(2946), 1, - sym_path, - ACTIONS(1029), 2, + ACTIONS(1874), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1027), 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, + ACTIONS(1866), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -305945,6 +311097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305952,6 +311107,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -305976,20 +311134,192 @@ 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, - [93890] = 8, - ACTIONS(249), 1, + [88236] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, + ACTIONS(6013), 1, anon_sym_DOT, - STATE(2837), 1, + ACTIONS(6015), 1, + aux_sym__immediate_decimal_token2, + STATE(2901), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, + ACTIONS(1607), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [88301] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6017), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6019), 1, + aux_sym__immediate_decimal_token2, + STATE(2902), 1, + sym_comment, + ACTIONS(1621), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1623), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [88366] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2903), 1, + sym_comment, + ACTIONS(2250), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2248), 46, + 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, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym_unquoted_token4, + [88427] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6021), 1, + anon_sym_DOT, + STATE(3043), 1, sym_path, - STATE(3119), 1, - sym_cell_path, - ACTIONS(2055), 14, + STATE(2904), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(971), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -306004,14 +311334,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(2057), 33, + ACTIONS(973), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -306020,12 +311344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -306038,20 +311368,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, - [93960] = 8, - ACTIONS(249), 1, + [88492] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, + ACTIONS(6024), 1, anon_sym_DOT, - STATE(2838), 1, + ACTIONS(6026), 1, + aux_sym__immediate_decimal_token2, + STATE(2905), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3124), 1, - sym_cell_path, - ACTIONS(2059), 14, + ACTIONS(1755), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -306066,14 +311392,9 @@ 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(2061), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -306082,12 +311403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -306100,79 +311427,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, - [94030] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2839), 1, - sym_comment, - ACTIONS(4987), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4985), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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, - [94092] = 8, - ACTIONS(249), 1, + [88557] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2840), 1, + ACTIONS(6028), 1, + anon_sym_DOT_DOT2, + STATE(2906), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3056), 1, - sym_cell_path, - ACTIONS(2067), 14, + ACTIONS(6030), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2167), 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, @@ -306186,28 +311454,26 @@ 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(2069), 33, + ACTIONS(2173), 31, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -306220,79 +311486,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, - [94162] = 4, - ACTIONS(249), 1, + [88622] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2841), 1, + ACTIONS(6032), 1, + anon_sym_DOT_DOT2, + STATE(2907), 1, sym_comment, - ACTIONS(1897), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1899), 45, + ACTIONS(6034), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2175), 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(2181), 31, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94224] = 8, - ACTIONS(249), 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, + [88687] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2842), 1, + ACTIONS(6036), 1, + anon_sym_DOT_DOT2, + STATE(2908), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3060), 1, - sym_cell_path, - ACTIONS(2083), 14, + ACTIONS(6038), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2133), 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, @@ -306306,32 +311572,88 @@ 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(2085), 33, + ACTIONS(2139), 31, sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, 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_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [88752] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym__unquoted_in_list_token4, + STATE(2909), 1, + sym_comment, + ACTIONS(2210), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2206), 46, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -306340,19 +311662,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, - [94294] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [88817] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2843), 1, + STATE(2910), 1, sym_comment, - ACTIONS(2547), 6, + ACTIONS(2363), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2549), 45, + ACTIONS(2365), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -306383,11 +311706,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -306398,60 +311719,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94356] = 8, - ACTIONS(249), 1, + [88877] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2844), 1, - sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3066), 1, - sym_cell_path, - ACTIONS(2087), 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(2089), 33, + ACTIONS(6042), 1, + anon_sym_RBRACE, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(6046), 1, sym_raw_string_begin, - 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(2911), 1, + sym_comment, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6040), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -306460,25 +311777,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, - [94426] = 8, - ACTIONS(249), 1, + aux_sym_unquoted_token1, + [88943] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2845), 1, + STATE(2912), 1, sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3057), 1, - sym_cell_path, - ACTIONS(2095), 14, + ACTIONS(6050), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6048), 46, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306487,33 +311825,63 @@ 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(2097), 33, + [89003] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5566), 1, + aux_sym__unquoted_in_list_token2, + STATE(2913), 1, + sym_comment, + ACTIONS(1721), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(1709), 46, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -306522,19 +311890,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, - [94496] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [89065] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2846), 1, + STATE(2914), 1, sym_comment, - ACTIONS(2398), 6, + ACTIONS(1030), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2400), 45, + ACTIONS(1032), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -306565,11 +311934,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -306580,19 +311947,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94558] = 4, - ACTIONS(249), 1, + [89125] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2847), 1, + STATE(2915), 1, + sym_comment, + ACTIONS(6054), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6052), 46, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [89185] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2916), 1, + sym_comment, + ACTIONS(1012), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1010), 47, + 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, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [89245] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2917), 1, + sym_comment, + ACTIONS(1016), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1014), 47, + 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, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [89305] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2918), 1, + sym_comment, + ACTIONS(990), 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(992), 34, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [89365] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2919), 1, sym_comment, - ACTIONS(2506), 6, + ACTIONS(2504), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2508), 45, + ACTIONS(2506), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -306623,11 +312214,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -306638,19 +312227,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94620] = 4, - ACTIONS(249), 1, + [89425] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2848), 1, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(6046), 1, + sym_raw_string_begin, + ACTIONS(6056), 1, + anon_sym_RBRACE, + STATE(2920), 1, + sym_comment, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6040), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [89491] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(6046), 1, + sym_raw_string_begin, + ACTIONS(6058), 1, + anon_sym_RBRACE, + STATE(2921), 1, + sym_comment, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6040), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [89557] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2922), 1, sym_comment, - ACTIONS(2539), 6, + ACTIONS(994), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2541), 45, + ACTIONS(996), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -306681,11 +312388,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -306696,26 +312401,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94682] = 7, - ACTIONS(249), 1, + [89617] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5937), 1, - anon_sym_DOT_DOT2, - STATE(2849), 1, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(6046), 1, + sym_raw_string_begin, + ACTIONS(6060), 1, + anon_sym_RBRACE, + STATE(2923), 1, sym_comment, - ACTIONS(5939), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1842), 16, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6040), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306724,27 +312451,120 @@ 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(1850), 31, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [89683] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(6046), 1, sym_raw_string_begin, + ACTIONS(6062), 1, + anon_sym_RBRACE, + STATE(2924), 1, + sym_comment, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6040), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [89749] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6064), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6066), 1, + aux_sym__immediate_decimal_token2, + STATE(2925), 1, + sym_comment, + ACTIONS(1739), 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(1741), 33, + sym_raw_string_begin, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -306757,77 +312577,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, - [94750] = 4, - ACTIONS(249), 1, + [89813] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2850), 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, - aux_sym_cmd_identifier_token38, - ACTIONS(1060), 45, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(6046), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_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(6068), 1, + anon_sym_RBRACE, + STATE(2926), 1, + sym_comment, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6040), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94812] = 4, - ACTIONS(249), 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_token1, + [89879] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2851), 1, + STATE(2927), 1, sym_comment, - ACTIONS(5085), 6, + ACTIONS(2090), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5083), 45, + ACTIONS(2092), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -306858,11 +312679,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -306873,19 +312692,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94874] = 4, - ACTIONS(249), 1, + [89939] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2852), 1, + STATE(2928), 1, sym_comment, - ACTIONS(2406), 6, + ACTIONS(2383), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2408), 45, + ACTIONS(2385), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -306916,11 +312735,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -306931,19 +312748,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94936] = 4, - ACTIONS(249), 1, + [89999] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2853), 1, + STATE(2929), 1, sym_comment, - ACTIONS(5053), 6, + ACTIONS(2480), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5051), 45, + ACTIONS(2482), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -306974,11 +312791,9 @@ static const uint16_t ts_small_parse_table[] = { aux_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_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -306989,26 +312804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94998] = 6, + [90059] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5941), 1, - anon_sym_DOT, - STATE(2946), 1, - sym_path, - ACTIONS(1033), 2, + ACTIONS(6009), 1, + aux_sym__immediate_decimal_token2, + STATE(2930), 1, + sym_comment, + ACTIONS(1757), 2, sym_raw_string_begin, sym__entry_separator, - STATE(2854), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 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, + ACTIONS(1755), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307018,6 +312824,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -307025,6 +312834,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -307049,33 +312861,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95064] = 4, + [90121] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2855), 1, - sym_comment, - ACTIONS(1080), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(6044), 1, sym__entry_separator, - ACTIONS(1078), 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, + ACTIONS(6046), 1, + sym_raw_string_begin, + ACTIONS(6070), 1, + anon_sym_RBRACE, + STATE(2931), 1, + sym_comment, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6040), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -307083,6 +312893,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -307106,152 +312919,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, - aux_sym__unquoted_in_list_token1, - [95126] = 4, - ACTIONS(249), 1, + aux_sym_unquoted_token1, + [90187] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2856), 1, + STATE(2932), 1, sym_comment, - ACTIONS(1715), 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(1717), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2399), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, 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, - [95188] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2857), 1, - sym_comment, - STATE(2884), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - STATE(3088), 1, - sym_cell_path, - ACTIONS(1929), 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(1931), 33, + ACTIONS(2401), 43, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [95258] = 4, + [90247] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2858), 1, - sym_comment, - ACTIONS(1705), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, + ACTIONS(6044), 1, sym__entry_separator, - ACTIONS(1703), 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, + ACTIONS(6046), 1, + sym_raw_string_begin, + ACTIONS(6072), 1, + anon_sym_RBRACE, + STATE(2933), 1, + sym_comment, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6040), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -307259,6 +313008,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -307282,88 +313034,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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [95319] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [90313] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2859), 1, + STATE(2934), 1, sym_comment, - ACTIONS(2291), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2289), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(998), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(1000), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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_token4, - [95380] = 8, - ACTIONS(3), 1, + [90373] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1092), 1, - sym__entry_separator, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5897), 1, - anon_sym_RBRACK, - ACTIONS(5900), 1, - sym_raw_string_begin, - STATE(2860), 1, + STATE(2935), 1, sym_comment, - ACTIONS(5895), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2488), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2490), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + [90433] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6074), 1, + aux_sym__immediate_decimal_token2, + STATE(2936), 1, + sym_comment, + ACTIONS(1785), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1783), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -307371,6 +313167,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -307378,6 +313177,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -307402,901 +313204,1039 @@ 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, - [95449] = 4, - ACTIONS(249), 1, + [90495] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2861), 1, + STATE(2937), 1, sym_comment, - ACTIONS(1364), 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(1362), 34, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2496), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2498), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_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_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, - [95510] = 4, - ACTIONS(249), 1, + [90555] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2862), 1, + STATE(2938), 1, sym_comment, - ACTIONS(1769), 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(1771), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(1948), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(1950), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [95571] = 4, - ACTIONS(249), 1, + [90615] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2863), 1, + STATE(2939), 1, sym_comment, - ACTIONS(2218), 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(2220), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2387), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2389), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [95632] = 6, - ACTIONS(3), 1, + [90675] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, - STATE(2864), 1, + STATE(2940), 1, sym_comment, - ACTIONS(2297), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2293), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2367), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2369), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [95697] = 6, - ACTIONS(3), 1, + [90735] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, - STATE(2865), 1, + STATE(2941), 1, sym_comment, - ACTIONS(2305), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2303), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(1972), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(1974), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [95762] = 4, - ACTIONS(249), 1, + [90795] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2866), 1, + STATE(2942), 1, sym_comment, - ACTIONS(1826), 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(1828), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(1988), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(1990), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [95823] = 4, - ACTIONS(3), 1, + [90855] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2867), 1, + STATE(2943), 1, sym_comment, - ACTIONS(1060), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1058), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(1992), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(1994), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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_QMARK2, - anon_sym_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, - [95884] = 6, - ACTIONS(249), 1, + [90915] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5944), 1, - anon_sym_DOT, - ACTIONS(5946), 1, - aux_sym__immediate_decimal_token2, - STATE(2868), 1, + STATE(2944), 1, sym_comment, - ACTIONS(1715), 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(1717), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2437), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2439), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [95949] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5948), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5950), 1, - aux_sym__immediate_decimal_token2, - STATE(2869), 1, - sym_comment, - ACTIONS(1528), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [96014] = 4, - ACTIONS(3), 1, + [90975] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2870), 1, + STATE(2945), 1, sym_comment, - ACTIONS(1064), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1062), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2004), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2006), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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_QMARK2, - anon_sym_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, - [96075] = 4, - ACTIONS(3), 1, + [91035] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2871), 1, + STATE(2946), 1, sym_comment, - ACTIONS(1040), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1038), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2456), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2458), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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_QMARK2, - anon_sym_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, - [96136] = 4, - ACTIONS(249), 1, + [91095] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2872), 1, + STATE(2947), 1, sym_comment, - ACTIONS(1078), 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(1080), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2460), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2462), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [96197] = 6, - ACTIONS(249), 1, + [91155] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5952), 1, - anon_sym_DOT_DOT2, - STATE(2873), 1, + STATE(2948), 1, sym_comment, - ACTIONS(5954), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5895), 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(5900), 31, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2068), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2070), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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_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, - [96262] = 6, - ACTIONS(249), 1, + [91215] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5956), 1, - anon_sym_DOT_DOT2, - STATE(2874), 1, + STATE(2949), 1, sym_comment, - ACTIONS(5958), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2113), 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(2119), 31, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(1907), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(1911), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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_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, - [96327] = 4, - ACTIONS(249), 1, + [91275] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2875), 1, + STATE(2950), 1, sym_comment, - ACTIONS(2105), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(2343), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2345), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_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(2107), 33, + 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, + [91335] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2951), 1, + sym_comment, + ACTIONS(2351), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2353), 43, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [91395] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2952), 1, + sym_comment, + ACTIONS(1913), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(1915), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [96388] = 6, - ACTIONS(3), 1, + [91455] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_DOT, - ACTIONS(5962), 1, - aux_sym__immediate_decimal_token2, - STATE(2876), 1, + STATE(2953), 1, sym_comment, - ACTIONS(1717), 2, + 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2357), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1715), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [91515] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2954), 1, + sym_comment, + ACTIONS(2359), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2361), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + [91575] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(6046), 1, + sym_raw_string_begin, + ACTIONS(6076), 1, + anon_sym_RBRACE, + STATE(2955), 1, + sym_comment, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6040), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -308304,6 +314244,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -308327,17 +314270,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [96453] = 4, - ACTIONS(249), 1, + aux_sym_unquoted_token1, + [91641] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2877), 1, + STATE(2956), 1, + sym_comment, + ACTIONS(1709), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1721), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [91701] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6078), 1, + aux_sym__immediate_decimal_token2, + STATE(2957), 1, sym_comment, - ACTIONS(2230), 17, + ACTIONS(1783), 15, 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, @@ -308351,28 +314349,29 @@ 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(2232), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1785), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -308385,20 +314384,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, - [96514] = 6, - ACTIONS(249), 1, + [91763] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5964), 1, - anon_sym_DOT_DOT2, - STATE(2878), 1, + STATE(2958), 1, sym_comment, - ACTIONS(5966), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2222), 16, + ACTIONS(998), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -308412,26 +314405,29 @@ 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), 31, + ACTIONS(1000), 34, sym_raw_string_begin, - anon_sym_true, - anon_sym_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_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -308444,80 +314440,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, - [96579] = 6, - ACTIONS(3), 1, + [91823] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - STATE(2879), 1, + STATE(2959), 1, sym_comment, - ACTIONS(2339), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2335), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(1002), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(1004), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [96644] = 4, + [91883] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2880), 1, + STATE(2960), 1, sym_comment, - ACTIONS(1056), 2, + ACTIONS(1008), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1054), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1006), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -308525,69 +314512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, 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, - anon_sym_o_GT_GT, - 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, - [96705] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5968), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5970), 1, - aux_sym__immediate_decimal_token2, - STATE(2881), 1, - sym_comment, - ACTIONS(1705), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1703), 46, + anon_sym_null, anon_sym_true, anon_sym_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, @@ -308595,6 +314525,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -308619,139 +314552,128 @@ 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, - [96770] = 9, - ACTIONS(3), 1, + [91943] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(5885), 1, - anon_sym_RBRACK, - ACTIONS(5891), 1, - sym__entry_separator, - ACTIONS(5974), 1, - anon_sym_COMMA, - ACTIONS(5976), 1, - sym_raw_string_begin, - STATE(2882), 1, + STATE(2961), 1, sym_comment, - STATE(7593), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5972), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, + 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_token34, aux_sym_cmd_identifier_token38, + ACTIONS(5020), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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_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, - [96841] = 6, - ACTIONS(3), 1, + [92003] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - STATE(2883), 1, + STATE(2962), 1, sym_comment, - ACTIONS(1796), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1788), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2094), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2096), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [96906] = 7, - ACTIONS(249), 1, + [92063] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5881), 1, - anon_sym_DOT, - STATE(2884), 1, + ACTIONS(6080), 1, + sym__newline, + STATE(2963), 2, sym_comment, - STATE(2887), 1, - aux_sym_cell_path_repeat1, - STATE(3021), 1, - sym_path, - ACTIONS(1027), 14, + aux_sym_shebang_repeat1, + ACTIONS(1294), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308766,32 +314688,31 @@ 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(1029), 33, + ACTIONS(1296), 32, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308800,135 +314721,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96973] = 6, - ACTIONS(3), 1, + [92125] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym__unquoted_in_list_token2, - STATE(2885), 1, + STATE(2964), 1, sym_comment, - ACTIONS(2250), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2246), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(1018), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(1020), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [97038] = 6, - ACTIONS(249), 1, + [92185] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5978), 1, + ACTIONS(6083), 1, anon_sym_DOT, - ACTIONS(5980), 1, + ACTIONS(6085), 1, aux_sym__immediate_decimal_token2, - STATE(2886), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [97103] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5982), 1, - anon_sym_DOT, - STATE(3021), 1, - sym_path, - STATE(2887), 2, + STATE(2965), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 14, + ACTIONS(1755), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308943,14 +314801,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(1033), 33, + ACTIONS(1757), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -308959,12 +314811,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -308977,20 +314835,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, - [97168] = 6, - ACTIONS(249), 1, + [92249] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5985), 1, - anon_sym_DOT_DOT2, - STATE(2888), 1, + ACTIONS(6026), 1, + aux_sym__immediate_decimal_token2, + STATE(2966), 1, sym_comment, - ACTIONS(5987), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2234), 16, + ACTIONS(1755), 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, @@ -309004,26 +314857,29 @@ 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(2240), 31, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -309036,262 +314892,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97233] = 4, - ACTIONS(3), 1, + [92311] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2889), 1, + STATE(2967), 1, sym_comment, - ACTIONS(1717), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1715), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2500), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2502), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [97294] = 4, - ACTIONS(3), 1, + [92371] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2890), 1, + STATE(2968), 1, sym_comment, - ACTIONS(1771), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1769), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2395), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2397), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [97355] = 6, - ACTIONS(249), 1, + [92431] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5989), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2891), 2, + STATE(2969), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 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(1033), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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(2403), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2405), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_in, - 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, - [97420] = 5, - ACTIONS(3), 1, + aux_sym__val_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, + [92491] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5992), 1, - anon_sym_QMARK2, - STATE(2892), 1, + STATE(2970), 1, sym_comment, - ACTIONS(1044), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1042), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2347), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2349), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, - 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, - [97483] = 4, + [92551] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2893), 1, - sym_comment, - ACTIONS(1828), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, + ACTIONS(6044), 1, sym__entry_separator, - ACTIONS(1826), 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, + ACTIONS(6046), 1, + sym_raw_string_begin, + ACTIONS(6087), 1, + anon_sym_RBRACE, + STATE(2971), 1, + sym_comment, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6040), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309299,6 +315148,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -309322,93 +315174,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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [97544] = 4, - ACTIONS(249), 1, + aux_sym_unquoted_token1, + [92617] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2894), 1, + STATE(2972), 1, sym_comment, - ACTIONS(1703), 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(1705), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(990), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(992), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [97605] = 6, - ACTIONS(3), 1, + [92677] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_token2, - STATE(2895), 1, + STATE(2973), 1, sym_comment, - ACTIONS(1850), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1842), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(6089), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(6091), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + [92737] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(6046), 1, + sym_raw_string_begin, + ACTIONS(6093), 1, + anon_sym_RBRACE, + STATE(2974), 1, + sym_comment, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6040), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309416,6 +315319,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -309439,79 +315345,129 @@ static const 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, - [97670] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [92803] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5994), 1, - anon_sym_QMARK2, - STATE(2896), 1, + STATE(2975), 1, sym_comment, - ACTIONS(1050), 2, + ACTIONS(2407), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2409), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1048), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [92863] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2976), 1, + sym_comment, + ACTIONS(5098), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(5096), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, - 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, - [97733] = 6, - ACTIONS(249), 1, + [92923] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5952), 1, - anon_sym_DOT_DOT2, - STATE(2897), 1, + ACTIONS(6095), 1, + anon_sym_QMARK2, + STATE(2977), 1, sym_comment, - ACTIONS(5954), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5883), 16, + ACTIONS(978), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -309525,26 +315481,28 @@ 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(5893), 31, + ACTIONS(980), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -309557,87 +315515,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, - [97798] = 4, - ACTIONS(249), 1, + [92985] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2898), 1, + STATE(2978), 1, sym_comment, - ACTIONS(1364), 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(1362), 34, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2347), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2349), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - 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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_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, - [97859] = 7, - ACTIONS(249), 1, + [93045] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2891), 1, - aux_sym_cell_path_repeat1, - STATE(2899), 1, + ACTIONS(6015), 1, + aux_sym__immediate_decimal_token2, + STATE(2979), 1, sym_comment, - ACTIONS(1027), 11, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(1607), 8, + anon_sym_GT2, + anon_sym_STAR2, 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(1029), 36, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -309650,58 +315600,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_DASH_DASH, - anon_sym_in, + anon_sym_DASH2, + anon_sym_in2, 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, - [97926] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2283), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym__unquoted_in_list_token4, - STATE(2900), 1, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [93107] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2980), 1, sym_comment, - ACTIONS(2285), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2281), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(5102), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(5100), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + [93167] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6097), 1, + aux_sym__immediate_decimal_token2, + STATE(2981), 1, + sym_comment, + ACTIONS(1673), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1675), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [93229] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6099), 1, + anon_sym_DOT, + ACTIONS(6101), 1, + aux_sym__immediate_decimal_token2, + STATE(2982), 1, + sym_comment, + ACTIONS(1607), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [93293] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6103), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6105), 1, + aux_sym__immediate_decimal_token2, + STATE(2983), 1, + sym_comment, + ACTIONS(1621), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1623), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [93357] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(6046), 1, + sym_raw_string_begin, + ACTIONS(6107), 1, + anon_sym_RBRACE, + STATE(2984), 1, + sym_comment, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6040), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309709,6 +315889,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -309732,17 +315915,129 @@ static const 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, - [97991] = 4, - ACTIONS(249), 1, + aux_sym_unquoted_token1, + [93423] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2901), 1, + STATE(2985), 1, + sym_comment, + ACTIONS(5145), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5143), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [93483] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2986), 1, + sym_comment, + ACTIONS(1290), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1288), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + 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, + [93543] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6109), 1, + anon_sym_QMARK2, + STATE(2987), 1, sym_comment, - ACTIONS(1670), 17, + ACTIONS(984), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -309756,28 +316051,28 @@ 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(1672), 33, + ACTIONS(986), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -309790,136 +316085,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, - [98052] = 4, - ACTIONS(249), 1, + [93605] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2902), 1, + STATE(2988), 1, sym_comment, - ACTIONS(1715), 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(1717), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2464), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2466), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [98113] = 6, - ACTIONS(249), 1, + [93665] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5998), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6000), 1, - aux_sym__immediate_decimal_token2, - STATE(2903), 1, + STATE(2989), 1, sym_comment, - ACTIONS(1703), 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(1705), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2468), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2470), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [98178] = 6, - ACTIONS(249), 1, + [93725] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6002), 1, - anon_sym_DOT_DOT2, - STATE(2904), 1, + STATE(2990), 1, sym_comment, - ACTIONS(6004), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2206), 16, + ACTIONS(994), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -309933,26 +316218,29 @@ 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(2212), 31, + ACTIONS(996), 34, sym_raw_string_begin, - anon_sym_true, - anon_sym_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_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -309965,73 +316253,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, - [98243] = 6, - ACTIONS(3), 1, + [93785] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_token2, - STATE(2905), 1, + STATE(2991), 1, sym_comment, - ACTIONS(2279), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2277), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(5130), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(5128), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + 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, - [98308] = 5, - ACTIONS(249), 1, + [93845] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6006), 1, - anon_sym_QMARK2, - STATE(2906), 1, + STATE(2992), 1, sym_comment, - ACTIONS(1042), 15, + ACTIONS(1002), 15, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -310047,28 +316330,29 @@ 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(1044), 33, + ACTIONS(1004), 34, sym_raw_string_begin, - anon_sym_true, - anon_sym_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_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -310081,34 +316365,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, - [98370] = 7, - ACTIONS(3), 1, + [93905] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6010), 1, - anon_sym_RBRACE, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6014), 1, - sym_raw_string_begin, - STATE(2907), 1, + STATE(2993), 1, sym_comment, - STATE(2948), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6008), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(2492), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(2494), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + [93965] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6111), 1, + anon_sym_LBRACK2, + STATE(2994), 1, + sym_comment, + ACTIONS(2341), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2337), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -310116,6 +316451,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310139,35 +316477,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, - aux_sym_unquoted_token1, - [98436] = 7, + aux_sym__unquoted_in_list_token1, + [94027] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4856), 1, + anon_sym_DOT_DOT2, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + ACTIONS(6113), 1, + sym_filesize_unit, + ACTIONS(6115), 1, + sym_duration_unit, + STATE(2995), 1, + sym_comment, + STATE(7503), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4858), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 36, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [94101] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6014), 1, + ACTIONS(2325), 1, sym_raw_string_begin, - ACTIONS(6016), 1, - anon_sym_RBRACE, - STATE(2908), 1, + ACTIONS(6117), 1, + sym__entry_separator, + STATE(2996), 2, sym_comment, - STATE(2948), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6008), 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(2320), 46, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -310175,6 +316571,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310199,32 +316598,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [98502] = 5, - ACTIONS(3), 1, + [94163] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6018), 1, - aux_sym__immediate_decimal_token2, - STATE(2909), 1, + STATE(2997), 1, sym_comment, - ACTIONS(1771), 2, + ACTIONS(2508), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2510), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1769), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + 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, + [94223] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2998), 1, + sym_comment, + ACTIONS(5088), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(5086), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, 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, + [94283] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2220), 1, + aux_sym__unquoted_in_list_token4, + STATE(2999), 1, + sym_comment, + ACTIONS(2224), 9, + sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2222), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -310232,13 +316742,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310256,56 +316766,115 @@ 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, - [98564] = 7, - ACTIONS(3), 1, + [94344] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6014), 1, - sym_raw_string_begin, - ACTIONS(6020), 1, - anon_sym_RBRACE, - STATE(2910), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4856), 1, + anon_sym_DOT_DOT2, + ACTIONS(4900), 1, + aux_sym_unquoted_token2, + ACTIONS(6120), 1, + sym_filesize_unit, + ACTIONS(6122), 1, + sym_duration_unit, + STATE(3000), 1, sym_comment, - STATE(2948), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6008), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(7384), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4858), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [94417] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3001), 1, + sym_comment, + ACTIONS(1783), 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(1785), 33, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -310314,35 +316883,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_token1, - [98630] = 7, + [94476] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6014), 1, - sym_raw_string_begin, - ACTIONS(6022), 1, - anon_sym_RBRACE, - STATE(2911), 1, + STATE(3002), 1, sym_comment, - STATE(2948), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6008), 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(2474), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2472), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -310350,6 +316911,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310373,35 +316937,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, - aux_sym_unquoted_token1, - [98696] = 7, + aux_sym__unquoted_in_list_token1, + [94535] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, + ACTIONS(2092), 1, sym__entry_separator, - ACTIONS(6014), 1, + ACTIONS(6126), 1, + anon_sym_RBRACK, + ACTIONS(6129), 1, sym_raw_string_begin, - ACTIONS(6024), 1, - anon_sym_RBRACE, - STATE(2912), 1, + STATE(3003), 1, sym_comment, - STATE(2948), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6008), 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(6124), 45, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -310409,6 +316968,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310432,35 +316994,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, - aux_sym_unquoted_token1, - [98762] = 7, + aux_sym__unquoted_in_list_token1, + [94598] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6014), 1, - sym_raw_string_begin, - ACTIONS(6026), 1, - anon_sym_RBRACE, - STATE(2913), 1, + STATE(3004), 1, sym_comment, - STATE(2948), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6008), 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(2365), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2363), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -310468,6 +317023,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310491,15 +317049,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, - [98828] = 5, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [94657] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6028), 1, + ACTIONS(6085), 1, aux_sym__immediate_decimal_token2, - STATE(2914), 1, + STATE(3005), 1, sym_comment, - ACTIONS(1769), 15, + ACTIONS(1755), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310514,15 +317072,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1771), 33, + ACTIONS(1757), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -310531,12 +317082,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -310549,81 +317106,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, - [98890] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6030), 1, - anon_sym_DOT, - ACTIONS(6032), 1, - aux_sym__immediate_decimal_token2, - STATE(2915), 1, - sym_comment, - ACTIONS(1536), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1538), 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, - [98954] = 5, + [94718] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6034), 1, - anon_sym_LBRACK2, - STATE(2916), 1, + STATE(3006), 1, sym_comment, - ACTIONS(2359), 2, + ACTIONS(1000), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2355), 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, + ACTIONS(998), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310633,6 +317124,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -310640,6 +317134,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310664,73 +317161,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, - [99016] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5980), 1, - aux_sym__immediate_decimal_token2, - STATE(2917), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [99078] = 5, - ACTIONS(249), 1, + [94777] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6036), 1, + ACTIONS(6131), 1, sym__newline, - STATE(2918), 2, + STATE(3007), 2, sym_comment, aux_sym_shebang_repeat1, - ACTIONS(1349), 15, - anon_sym_DOLLAR, + ACTIONS(1294), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310744,32 +317184,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1351), 32, + aux_sym_unquoted_token1, + ACTIONS(1296), 31, sym_raw_string_begin, - anon_sym_true, - anon_sym_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_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310778,34 +317217,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, - [99140] = 7, + [94838] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6014), 1, - sym_raw_string_begin, - ACTIONS(6039), 1, - anon_sym_RBRACE, - STATE(2919), 1, + STATE(3008), 1, sym_comment, - STATE(2948), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6008), 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(2427), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2425), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -310813,6 +317245,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -310836,79 +317271,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, - aux_sym_unquoted_token1, - [99206] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_DOT, - ACTIONS(6043), 1, - aux_sym__immediate_decimal_token2, - STATE(2920), 1, - sym_comment, - ACTIONS(1536), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [99270] = 5, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [94897] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6045), 1, - anon_sym_QMARK2, - STATE(2921), 1, + STATE(3009), 1, sym_comment, - ACTIONS(1048), 15, + ACTIONS(992), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(990), 46, + 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, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310917,33 +317318,61 @@ 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(1050), 33, + [94956] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3010), 1, + sym_comment, + ACTIONS(2377), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(2375), 46, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -310952,34 +317381,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, - [99332] = 7, + aux_sym__unquoted_in_list_token1, + [95015] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6014), 1, - sym_raw_string_begin, - ACTIONS(6047), 1, - anon_sym_RBRACE, - STATE(2922), 1, + STATE(3011), 1, sym_comment, - STATE(2948), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6008), 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(2431), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2429), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -310987,6 +317410,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -311010,35 +317436,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, - aux_sym_unquoted_token1, - [99398] = 7, + aux_sym__unquoted_in_list_token1, + [95074] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6014), 1, - sym_raw_string_begin, - ACTIONS(6049), 1, - anon_sym_RBRACE, - STATE(2923), 1, + STATE(3012), 1, sym_comment, - STATE(2948), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6008), 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(2478), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2476), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -311046,6 +317465,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -311069,35 +317491,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, - aux_sym_unquoted_token1, - [99464] = 7, + aux_sym__unquoted_in_list_token1, + [95133] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6014), 1, - sym_raw_string_begin, - ACTIONS(6051), 1, - anon_sym_RBRACE, - STATE(2924), 1, + STATE(3013), 1, sym_comment, - STATE(2948), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6008), 45, + ACTIONS(2435), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2433), 46, + 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, + anon_sym_null, 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [95192] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3014), 1, + sym_comment, + ACTIONS(1004), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1002), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -311105,6 +317575,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -311128,233 +317601,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, - aux_sym_unquoted_token1, - [99530] = 6, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [95251] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6053), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token2, - STATE(2925), 1, + STATE(3015), 1, sym_comment, - ACTIONS(1528), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [99594] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4762), 1, - anon_sym_DOT_DOT2, - ACTIONS(4770), 1, - aux_sym_unquoted_token2, - ACTIONS(6057), 1, - sym_filesize_unit, - ACTIONS(6059), 1, - sym_duration_unit, - STATE(2926), 1, - sym_comment, - STATE(7534), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4764), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [99666] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6061), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6063), 1, - aux_sym__immediate_decimal_token2, - STATE(2927), 1, - sym_comment, - ACTIONS(1528), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1530), 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, - [99730] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2928), 1, - sym_comment, - ACTIONS(1058), 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(1060), 34, + ACTIONS(1757), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(1755), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -311363,112 +317656,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, - [99790] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6065), 1, - anon_sym_DOT, - ACTIONS(6067), 1, - aux_sym__immediate_decimal_token2, - STATE(2929), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [99854] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [95310] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2930), 1, + STATE(3016), 1, sym_comment, - ACTIONS(1062), 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(1064), 34, + ACTIONS(2139), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(2133), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -311477,71 +317711,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, - [99914] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [95369] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2931), 1, + STATE(3017), 1, sym_comment, - 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), 34, + ACTIONS(2250), 9, sym_raw_string_begin, - anon_sym_true, - anon_sym_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_QMARK2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2248), 39, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [99974] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2932), 1, - sym_comment, - ACTIONS(1058), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311550,37 +317757,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(1060), 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_DASH_DASH, - anon_sym_in, - 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, @@ -311589,12 +317765,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, - [100034] = 4, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token4, + [95428] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2933), 1, + STATE(3018), 1, sym_comment, - ACTIONS(1054), 15, + ACTIONS(1010), 15, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -311610,29 +317788,28 @@ 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(1056), 34, + ACTIONS(1012), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -311645,23 +317822,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, - [100094] = 5, + [95487] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5962), 1, - aux_sym__immediate_decimal_token2, - STATE(2934), 1, + STATE(3019), 1, sym_comment, - ACTIONS(1717), 2, + ACTIONS(1741), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1715), 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, + ACTIONS(1739), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311671,6 +317840,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -311678,6 +317850,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -311702,15 +317877,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, - [100156] = 4, - ACTIONS(249), 1, + [95546] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2935), 1, + STATE(3020), 1, sym_comment, - ACTIONS(1062), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, + ACTIONS(2482), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2480), 46, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311719,37 +317923,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(1064), 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_DASH_DASH, - anon_sym_in, - 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, @@ -311758,54 +317931,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, - [100216] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [95605] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5528), 1, - aux_sym__unquoted_in_list_token2, - STATE(2936), 1, + ACTIONS(6134), 1, + aux_sym__immediate_decimal_token2, + STATE(3021), 1, sym_comment, - ACTIONS(1640), 2, + ACTIONS(1783), 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(1785), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1628), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -311814,23 +317988,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, - [100278] = 4, + [95666] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2937), 1, + STATE(3022), 1, sym_comment, - ACTIONS(6071), 3, + ACTIONS(1785), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6069), 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, + ACTIONS(1783), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311840,6 +318006,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -311847,6 +318016,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -311871,21 +318043,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, - [100338] = 4, + [95725] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2938), 1, + STATE(3023), 1, sym_comment, - ACTIONS(1072), 2, + ACTIONS(1892), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1070), 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, + ACTIONS(1890), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311893,9 +318059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -311903,6 +318071,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -311927,15 +318098,45 @@ 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, - [100398] = 4, - ACTIONS(249), 1, + [95784] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2939), 1, + ACTIONS(2220), 1, + aux_sym__unquoted_in_list_token4, + STATE(3024), 1, sym_comment, - ACTIONS(1038), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, + ACTIONS(2218), 9, + sym_raw_string_begin, + 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(2214), 38, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311944,37 +318145,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(1040), 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_DASH_DASH, - anon_sym_in, - 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, @@ -311983,74 +318153,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, - [100458] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token2, - STATE(2940), 1, - sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [100520] = 6, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [95845] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6075), 1, - anon_sym_DOT, - ACTIONS(6077), 1, - aux_sym__immediate_decimal_token2, - STATE(2941), 1, + STATE(3025), 1, sym_comment, - ACTIONS(1715), 14, + ACTIONS(1014), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -312064,14 +318175,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(1717), 33, + ACTIONS(1016), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -312080,12 +318185,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -312098,78 +318209,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, - [100584] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2942), 1, - sym_comment, - 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), 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_DASH_DASH, - anon_sym_in, - 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, - [100644] = 4, + [95904] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2943), 1, + STATE(3026), 1, sym_comment, - ACTIONS(6081), 3, + ACTIONS(2393), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6079), 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, + ACTIONS(2391), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312179,6 +318227,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -312186,6 +318237,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -312210,72 +318264,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, - [100704] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6083), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6085), 1, - aux_sym__immediate_decimal_token2, - STATE(2944), 1, - sym_comment, - ACTIONS(1528), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [100768] = 5, - ACTIONS(249), 1, + [95963] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5946), 1, - aux_sym__immediate_decimal_token2, - STATE(2945), 1, + STATE(3027), 1, sym_comment, - ACTIONS(1715), 15, + ACTIONS(1890), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -312291,15 +318285,65 @@ 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(1717), 33, + ACTIONS(1892), 33, sym_raw_string_begin, + 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, + anon_sym_null, 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_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [96022] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6136), 1, + anon_sym_LBRACK2, + STATE(3028), 1, + sym_comment, + ACTIONS(2337), 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(2341), 32, + sym_raw_string_begin, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -312307,12 +318351,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -312325,21 +318375,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, - [100830] = 4, + [96083] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2946), 1, + STATE(3029), 1, sym_comment, - ACTIONS(1076), 2, + ACTIONS(2373), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1074), 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, + ACTIONS(2371), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312347,9 +318391,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -312357,6 +318403,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -312381,56 +318430,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, - [100890] = 6, - ACTIONS(249), 1, + [96142] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6087), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6089), 1, - aux_sym__immediate_decimal_token2, - STATE(2947), 1, + STATE(3030), 1, sym_comment, - ACTIONS(1703), 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(1705), 33, + ACTIONS(1020), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(1018), 46, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -312439,54 +318484,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, - [100954] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [96201] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2368), 1, - sym_raw_string_begin, - ACTIONS(6091), 1, - sym__entry_separator, - STATE(2948), 2, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token2, + STATE(3031), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2363), 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, + ACTIONS(1709), 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(1721), 33, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -312495,35 +318541,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_token1, - [101016] = 7, + [96262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6014), 1, - sym_raw_string_begin, - ACTIONS(6094), 1, - anon_sym_RBRACE, - STATE(2948), 1, - aux_sym__multiple_types_repeat1, - STATE(2949), 1, + STATE(3032), 1, sym_comment, - ACTIONS(6008), 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(2131), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2129), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -312531,6 +318569,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -312554,35 +318595,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, - aux_sym_unquoted_token1, - [101082] = 7, + aux_sym__unquoted_in_list_token1, + [96321] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6014), 1, - sym_raw_string_begin, - ACTIONS(6096), 1, - anon_sym_RBRACE, - STATE(2948), 1, - aux_sym__multiple_types_repeat1, - STATE(2950), 1, + STATE(3033), 1, sym_comment, - ACTIONS(6008), 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(2173), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2167), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -312590,6 +318624,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -312613,22 +318650,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, - [101148] = 4, + aux_sym__unquoted_in_list_token1, + [96380] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2951), 1, + STATE(3034), 1, sym_comment, - ACTIONS(1068), 2, + ACTIONS(2185), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1066), 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, + ACTIONS(2183), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312636,9 +318667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -312646,6 +318679,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -312670,21 +318706,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, - [101208] = 4, + [96439] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2952), 1, + STATE(3035), 1, sym_comment, - ACTIONS(1771), 2, + ACTIONS(2181), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1769), 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, + ACTIONS(2175), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312694,6 +318724,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -312701,6 +318734,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -312725,21 +318761,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, - [101267] = 4, + [96498] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2953), 1, + STATE(3036), 1, sym_comment, - ACTIONS(1060), 2, + ACTIONS(2490), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1058), 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, + ACTIONS(2488), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312749,6 +318779,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -312756,6 +318789,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -312780,14 +318816,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, - [101326] = 4, - ACTIONS(249), 1, + [96557] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2954), 1, + STATE(3037), 1, sym_comment, - ACTIONS(1066), 15, + ACTIONS(1290), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -312801,32 +318837,32 @@ 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(1068), 33, + ACTIONS(1288), 33, sym_raw_string_begin, - anon_sym_true, - anon_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, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312835,14 +318871,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, - [101385] = 4, - ACTIONS(249), 1, + [96616] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2955), 1, + STATE(3038), 1, sym_comment, - ACTIONS(1070), 15, + ACTIONS(1755), 15, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -312856,14 +318891,9 @@ 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(1072), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -312872,12 +318902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -312890,21 +318926,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, - [101444] = 4, + [96675] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2956), 1, + STATE(3039), 1, sym_comment, - ACTIONS(2541), 2, + ACTIONS(2357), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2539), 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, + ACTIONS(2355), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312914,6 +318944,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -312921,6 +318954,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -312945,110 +318981,54 @@ 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, - [101503] = 5, - ACTIONS(249), 1, + [96734] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6043), 1, - aux_sym__immediate_decimal_token2, - STATE(2957), 1, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + STATE(3040), 1, sym_comment, - ACTIONS(1536), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [101564] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5885), 1, - anon_sym_RBRACK, - ACTIONS(5891), 1, - sym__entry_separator, - ACTIONS(5893), 1, + ACTIONS(1866), 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), 33, sym_raw_string_begin, - STATE(2958), 1, - sym_comment, - ACTIONS(5883), 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_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -313057,26 +319037,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, - [101627] = 6, + [96795] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1092), 1, - sym__entry_separator, - ACTIONS(5897), 1, - anon_sym_RBRACK, - ACTIONS(5900), 1, - sym_raw_string_begin, - STATE(2959), 1, + STATE(3041), 1, sym_comment, - ACTIONS(5895), 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(2498), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2496), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -313084,6 +319055,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313091,6 +319065,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313115,21 +319092,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, - [101690] = 4, + [96854] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2960), 1, + STATE(3042), 1, sym_comment, - ACTIONS(2545), 2, + ACTIONS(1950), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2543), 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, + ACTIONS(1948), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313139,6 +319110,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313146,6 +319120,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313170,52 +319147,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101749] = 4, - ACTIONS(3), 1, + [96913] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2961), 1, + STATE(3043), 1, sym_comment, - ACTIONS(2563), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2561), 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, + ACTIONS(1006), 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(1008), 33, + sym_raw_string_begin, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -313224,31 +319202,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, - aux_sym__unquoted_in_list_token1, - [101808] = 4, + [96972] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2962), 1, - sym_comment, - ACTIONS(1040), 2, - sym_raw_string_begin, + ACTIONS(6044), 1, sym__entry_separator, - 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, + ACTIONS(6046), 1, + sym_raw_string_begin, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + STATE(3044), 1, + sym_comment, + ACTIONS(6040), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313256,6 +319232,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313279,22 +319258,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, - [101867] = 4, + aux_sym_unquoted_token1, + [97035] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2963), 1, + STATE(3045), 1, sym_comment, - ACTIONS(2003), 2, + ACTIONS(2389), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2001), 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, + ACTIONS(2387), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313304,6 +319277,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313311,6 +319287,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313335,21 +319314,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, - [101926] = 4, + [97094] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2964), 1, + STATE(3046), 1, sym_comment, - ACTIONS(2537), 2, + ACTIONS(2369), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2535), 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, + ACTIONS(2367), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313359,6 +319332,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313366,6 +319342,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313390,21 +319369,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, - [101985] = 4, + [97153] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2965), 1, + STATE(3047), 1, sym_comment, - ACTIONS(2468), 2, + ACTIONS(1974), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2466), 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, + ACTIONS(1972), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313414,6 +319387,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313421,6 +319397,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313445,44 +319424,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102044] = 4, - ACTIONS(3), 1, + [97212] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2966), 1, + ACTIONS(1888), 1, + aux_sym__unquoted_in_list_token2, + STATE(3048), 1, sym_comment, - ACTIONS(2019), 2, + ACTIONS(2187), 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(2189), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2017), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [97273] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1888), 1, + aux_sym__unquoted_in_list_token2, + STATE(3049), 1, + sym_comment, + ACTIONS(1878), 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, @@ -313491,6 +319501,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1886), 33, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313499,22 +319536,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, - [102103] = 4, + [97334] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2967), 1, + STATE(3050), 1, sym_comment, - ACTIONS(2045), 2, + ACTIONS(1721), 2, sym_raw_string_begin, sym__entry_separator, - 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, + ACTIONS(1709), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313524,6 +319554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313531,6 +319564,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313555,21 +319591,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, - [102162] = 4, + [97393] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2968), 1, + STATE(3051), 1, sym_comment, - ACTIONS(2049), 2, + ACTIONS(1990), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2047), 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, + ACTIONS(1988), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313579,6 +319609,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313586,6 +319619,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313610,21 +319646,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, - [102221] = 4, + [97452] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2969), 1, + STATE(3052), 1, sym_comment, - ACTIONS(2436), 2, + ACTIONS(1994), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2434), 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, + ACTIONS(1992), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313634,6 +319664,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313641,6 +319674,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313665,30 +319701,27 @@ 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, - [102280] = 4, + [97511] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2970), 1, + STATE(3053), 1, sym_comment, - ACTIONS(2061), 2, + ACTIONS(2419), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2059), 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, + ACTIONS(2417), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313696,6 +319729,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313719,45 +319755,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, - aux_sym__unquoted_in_list_token1, - [102339] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [97570] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2971), 1, + STATE(3054), 1, sym_comment, - ACTIONS(2444), 2, + ACTIONS(1739), 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(1741), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2442), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [97629] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2258), 1, + aux_sym__unquoted_in_list_token2, + STATE(3055), 1, + sym_comment, + ACTIONS(2252), 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, @@ -313766,6 +319832,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2256), 33, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313774,22 +319867,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, - [102398] = 4, + [97690] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2972), 1, + STATE(3056), 1, sym_comment, - ACTIONS(2452), 2, + ACTIONS(2439), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2450), 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, + ACTIONS(2437), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313799,6 +319885,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313806,6 +319895,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313830,21 +319922,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, - [102457] = 4, + [97749] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2973), 1, + STATE(3057), 1, sym_comment, - ACTIONS(2069), 2, + ACTIONS(2006), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2067), 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, + ACTIONS(2004), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313854,6 +319940,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313861,6 +319950,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313885,21 +319977,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, - [102516] = 4, + [97808] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2974), 1, + STATE(3058), 1, sym_comment, - ACTIONS(2089), 2, + ACTIONS(2458), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2087), 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, + ACTIONS(2456), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313909,6 +319995,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313916,6 +320005,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313940,21 +320032,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, - [102575] = 4, + [97867] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2975), 1, + STATE(3059), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(2361), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2470), 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, + ACTIONS(2359), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313964,6 +320050,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313971,6 +320060,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -313995,21 +320087,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, - [102634] = 4, + [97926] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3060), 1, + sym_comment, + ACTIONS(1607), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [97985] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2976), 1, + STATE(3061), 1, sym_comment, - ACTIONS(2476), 2, + ACTIONS(2443), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2474), 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, + ACTIONS(2441), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314019,6 +320160,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -314026,6 +320170,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -314050,21 +320197,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, - [102693] = 4, + [98044] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2977), 1, + STATE(3062), 1, sym_comment, - ACTIONS(2097), 2, + ACTIONS(2462), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2095), 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, + ACTIONS(2460), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314074,6 +320215,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -314081,6 +320225,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -314105,23 +320252,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, - [102752] = 4, + [98103] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2978), 1, - sym_comment, - ACTIONS(2504), 2, - sym_raw_string_begin, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5934), 1, sym__entry_separator, - ACTIONS(2502), 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, + ACTIONS(5936), 1, + sym_raw_string_begin, + STATE(3063), 1, + sym_comment, + ACTIONS(5926), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -314129,6 +320272,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -314136,6 +320282,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -314160,21 +320309,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, - [102811] = 4, + [98166] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3064), 1, + sym_comment, + ACTIONS(1621), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1623), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [98225] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2979), 1, + STATE(3065), 1, sym_comment, - ACTIONS(2533), 2, + ACTIONS(2415), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2531), 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, + ACTIONS(2413), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314184,6 +320382,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -314191,6 +320392,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -314215,54 +320419,218 @@ 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, - [102870] = 5, - ACTIONS(249), 1, + [98284] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym__unquoted_in_list_token2, - STATE(2980), 1, + STATE(3066), 1, sym_comment, - ACTIONS(2246), 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(2250), 33, + ACTIONS(1673), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1675), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [98343] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3067), 1, + sym_comment, + ACTIONS(1763), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1765), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [98402] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6101), 1, + aux_sym__immediate_decimal_token2, + STATE(3068), 1, + sym_comment, + ACTIONS(1607), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [98463] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3069), 1, + sym_comment, + ACTIONS(2070), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(2068), 46, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -314271,19 +320639,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, - [102931] = 5, - ACTIONS(249), 1, + aux_sym__unquoted_in_list_token1, + [98522] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token2, - STATE(2981), 1, + ACTIONS(6138), 1, + aux_sym__immediate_decimal_token2, + STATE(3070), 1, + sym_comment, + ACTIONS(1673), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1675), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [98583] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1032), 1, + sym__entry_separator, + ACTIONS(5940), 1, + anon_sym_RBRACK, + ACTIONS(5943), 1, + sym_raw_string_begin, + STATE(3071), 1, sym_comment, - ACTIONS(1628), 14, + ACTIONS(5938), 45, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314292,33 +320744,61 @@ 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(1640), 33, + [98646] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3072), 1, + sym_comment, + ACTIONS(1911), 2, sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + sym__entry_separator, + ACTIONS(1907), 46, 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -314327,34 +320807,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, - [102992] = 5, + aux_sym__unquoted_in_list_token1, + [98705] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - aux_sym__unquoted_in_list_token4, - STATE(2982), 1, + STATE(3073), 1, sym_comment, - ACTIONS(2285), 9, + ACTIONS(996), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(994), 46, 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(2281), 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_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -314362,10 +320836,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314383,21 +320863,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, - [103053] = 4, + [98764] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2983), 1, + STATE(3074), 1, sym_comment, - ACTIONS(1064), 2, + ACTIONS(2506), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1062), 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, + ACTIONS(2504), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314407,6 +320881,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -314414,6 +320891,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -314438,145 +320918,27 @@ 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, - [103112] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2984), 1, - sym_comment, - ACTIONS(1528), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [103171] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6098), 1, - aux_sym__immediate_decimal_token2, - STATE(2985), 1, - sym_comment, - ACTIONS(1596), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [103232] = 5, + [98823] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, - STATE(2986), 1, + STATE(3075), 1, sym_comment, - ACTIONS(2297), 9, + ACTIONS(2423), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2421), 46, 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(2293), 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_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -314584,10 +320946,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314605,126 +320973,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, - [103293] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6100), 1, - anon_sym_DOT, - ACTIONS(6102), 1, - aux_sym__immediate_decimal_token2, - STATE(2987), 1, - sym_comment, - ACTIONS(1536), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1538), 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, - [103356] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6104), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6106), 1, - aux_sym__immediate_decimal_token2, - STATE(2988), 1, - sym_comment, - ACTIONS(1528), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1530), 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, - [103419] = 4, - ACTIONS(249), 1, + [98882] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2989), 1, + ACTIONS(1579), 1, + aux_sym__unquoted_in_list_token2, + STATE(3076), 1, sym_comment, - ACTIONS(1769), 15, + ACTIONS(2234), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314739,15 +320995,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1771), 33, + ACTIONS(2238), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -314756,12 +321005,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -314774,21 +321029,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, - [103478] = 4, + [98943] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2990), 1, + STATE(3077), 1, sym_comment, - ACTIONS(2567), 2, + ACTIONS(2345), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2565), 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, + ACTIONS(2343), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314798,6 +321047,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -314805,6 +321057,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -314829,77 +321084,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, - [103537] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6108), 1, - aux_sym__immediate_decimal_token2, - STATE(2991), 1, - sym_comment, - ACTIONS(1596), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1598), 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, - [103598] = 4, + [99002] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2992), 1, + STATE(3078), 1, sym_comment, - ACTIONS(1717), 2, + ACTIONS(2353), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1715), 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, + ACTIONS(2351), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314909,6 +321102,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -314916,6 +321112,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -314940,19 +321139,45 @@ 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, - [103657] = 5, - ACTIONS(249), 1, + [99061] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - STATE(2993), 1, + ACTIONS(2204), 1, + aux_sym__unquoted_in_list_token4, + STATE(3079), 1, sym_comment, - ACTIONS(1788), 14, + ACTIONS(5943), 9, + sym_raw_string_begin, + 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(5938), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314961,33 +321186,62 @@ 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(1796), 33, + [99122] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2212), 1, + aux_sym__unquoted_in_list_token4, + STATE(3080), 1, + sym_comment, + ACTIONS(2210), 9, sym_raw_string_begin, - anon_sym_true, - anon_sym_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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2206), 38, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -314996,21 +321250,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, - [103718] = 4, + aux_sym__unquoted_in_list_token1, + [99183] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2994), 1, + STATE(3081), 1, sym_comment, - ACTIONS(2240), 2, + ACTIONS(2165), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2234), 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, + ACTIONS(2159), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315020,6 +321269,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -315027,6 +321279,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -315051,21 +321306,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, - [103777] = 4, + [99242] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2995), 1, + STATE(3082), 1, sym_comment, - ACTIONS(2119), 2, + ACTIONS(1915), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2113), 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, + ACTIONS(1913), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315075,6 +321324,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -315082,6 +321334,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -315106,15 +321361,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, - [103836] = 5, - ACTIONS(249), 1, + [99301] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6110), 1, - anon_sym_LBRACK2, - STATE(2996), 1, + STATE(3083), 1, sym_comment, - ACTIONS(2355), 15, - anon_sym_LBRACK, + ACTIONS(2425), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315129,14 +321381,9 @@ 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(2359), 32, + ACTIONS(2427), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -315144,12 +321391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -315162,52 +321415,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, - [103897] = 4, - ACTIONS(3), 1, + [99359] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2997), 1, + STATE(3084), 1, sym_comment, - ACTIONS(1828), 2, + ACTIONS(2355), 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(2357), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1826), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -315216,46 +321469,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, - [103956] = 5, - ACTIONS(3), 1, + [99417] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, - STATE(2998), 1, + STATE(3085), 1, sym_comment, - ACTIONS(2305), 9, - sym_raw_string_begin, - 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(2303), 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, + ACTIONS(2359), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315264,61 +321488,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_in_list_token1, - [104017] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2999), 1, - sym_comment, - ACTIONS(2228), 2, + ACTIONS(2361), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2222), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -315327,14 +321523,12 @@ static const 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, - [104076] = 4, - ACTIONS(249), 1, + [99475] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3000), 1, + STATE(3086), 1, sym_comment, - ACTIONS(1364), 15, - anon_sym_DOLLAR, + ACTIONS(2437), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315349,32 +321543,32 @@ 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(1362), 33, + ACTIONS(2439), 33, sym_raw_string_begin, - anon_sym_true, - anon_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, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315383,52 +321577,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, - [104135] = 4, - ACTIONS(3), 1, + [99533] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3001), 1, + STATE(3087), 1, sym_comment, - ACTIONS(2212), 2, + ACTIONS(2004), 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(2006), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2206), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -315437,53 +321631,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [104194] = 4, - ACTIONS(3), 1, + [99591] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3002), 1, + STATE(3088), 1, sym_comment, - ACTIONS(1080), 2, + ACTIONS(6142), 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(6140), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1078), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -315492,53 +321685,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [104253] = 4, - ACTIONS(3), 1, + [99649] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3003), 1, + STATE(3089), 1, sym_comment, - ACTIONS(1056), 2, + ACTIONS(2387), 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(2389), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1054), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -315547,69 +321739,12 @@ static const 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, - [104312] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6067), 1, - aux_sym__immediate_decimal_token2, - STATE(3004), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [104373] = 4, - ACTIONS(249), 1, + [99707] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3005), 1, + STATE(3090), 1, sym_comment, - ACTIONS(1826), 15, + ACTIONS(2129), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315624,15 +321759,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1828), 33, + ACTIONS(2131), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -315641,12 +321769,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -315659,72 +321793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104432] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6032), 1, - aux_sym__immediate_decimal_token2, - STATE(3006), 1, - sym_comment, - ACTIONS(1536), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1538), 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, - [104493] = 5, - ACTIONS(249), 1, + [99765] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6112), 1, - sym__newline, - STATE(3007), 2, + STATE(3091), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1349), 15, - anon_sym__, + ACTIONS(1709), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315738,27 +321812,29 @@ 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(1351), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(1721), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -315771,99 +321847,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, - [104554] = 4, - ACTIONS(249), 1, + [99823] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3008), 1, + STATE(3092), 1, sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [104613] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3009), 1, - sym_comment, - ACTIONS(2553), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2551), 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, + ACTIONS(1755), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315872,116 +321866,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_in_list_token1, - [104672] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3010), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 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, - [104731] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3011), 1, - sym_comment, - ACTIONS(2424), 2, + ACTIONS(1757), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2422), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -315990,44 +321901,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, - [104790] = 4, - ACTIONS(3), 1, + [99881] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3012), 1, + STATE(3093), 1, sym_comment, - ACTIONS(2291), 9, - sym_raw_string_begin, - 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(2289), 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_DOLLAR, + ACTIONS(1739), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316036,117 +321920,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_in_list_token1, - aux_sym__unquoted_in_list_token4, - [104849] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3013), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [104908] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3014), 1, - sym_comment, - ACTIONS(2559), 2, + ACTIONS(1741), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2557), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -316155,45 +321955,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, - [104967] = 4, - ACTIONS(3), 1, + [99939] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3015), 1, + STATE(3094), 1, sym_comment, - ACTIONS(1640), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1628), 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, + ACTIONS(2367), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316202,118 +321974,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_in_list_token1, - [105026] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6115), 1, - anon_sym_DOT, - ACTIONS(6117), 1, - aux_sym__immediate_decimal_token2, - STATE(3016), 1, - sym_comment, - ACTIONS(1536), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1538), 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, - [105089] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3017), 1, - sym_comment, - ACTIONS(2404), 2, + ACTIONS(2369), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2402), 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_RBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -316322,13 +322009,12 @@ static const 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, - [105148] = 4, - ACTIONS(249), 1, + [99997] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3018), 1, + STATE(3095), 1, sym_comment, - ACTIONS(1715), 15, + ACTIONS(5938), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316343,15 +322029,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 33, + ACTIONS(5943), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -316360,12 +322039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -316378,14 +322063,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105207] = 5, - ACTIONS(249), 1, + [100055] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6077), 1, - aux_sym__immediate_decimal_token2, - STATE(3019), 1, + STATE(3096), 1, sym_comment, - ACTIONS(1715), 14, + ACTIONS(2363), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316400,14 +322083,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(1717), 33, + ACTIONS(2365), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -316416,12 +322093,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -316434,71 +322117,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, - [105268] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6119), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6121), 1, - aux_sym__immediate_decimal_token2, - STATE(3020), 1, - sym_comment, - ACTIONS(1528), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1530), 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, - [105331] = 4, - ACTIONS(249), 1, + [100113] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3021), 1, + STATE(3097), 1, sym_comment, - ACTIONS(1074), 15, + ACTIONS(2456), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -316512,14 +322137,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(1076), 33, + ACTIONS(2458), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -316528,12 +322147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -316546,52 +322171,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, - [105390] = 4, - ACTIONS(3), 1, + [100171] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3022), 1, + STATE(3098), 1, sym_comment, - ACTIONS(1705), 2, + ACTIONS(2433), 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(2435), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1703), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -316600,15 +322225,12 @@ static const 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, - [105449] = 5, - ACTIONS(249), 1, + [100229] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym__unquoted_in_list_token2, - STATE(3023), 1, + STATE(3099), 1, sym_comment, - ACTIONS(2335), 14, + ACTIONS(6142), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316623,14 +322245,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(2339), 33, + ACTIONS(6140), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -316639,12 +322255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -316657,167 +322279,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, - [105510] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4762), 1, - anon_sym_DOT_DOT2, - ACTIONS(4870), 1, - aux_sym_unquoted_token2, - ACTIONS(6123), 1, - sym_filesize_unit, - ACTIONS(6125), 1, - sym_duration_unit, - STATE(3024), 1, - sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4764), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [105581] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1628), 1, - sym__newline, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4762), 1, - anon_sym_DOT_DOT2, - ACTIONS(4842), 1, - aux_sym_unquoted_token2, - ACTIONS(6127), 1, - sym_filesize_unit, - ACTIONS(6129), 1, - sym_duration_unit, - STATE(3025), 1, - sym_comment, - STATE(7439), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4764), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [105654] = 4, - ACTIONS(3), 1, + [100287] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3026), 1, + STATE(3100), 1, sym_comment, - ACTIONS(2220), 2, - sym_raw_string_begin, - sym__entry_separator, - 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, - anon_sym_LBRACE, + ACTIONS(2460), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316826,61 +322298,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_in_list_token1, - [105713] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3027), 1, - sym_comment, - ACTIONS(2500), 2, + ACTIONS(2462), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2498), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -316889,45 +322333,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, - [105772] = 4, - ACTIONS(3), 1, + [100345] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3028), 1, + STATE(3101), 1, sym_comment, - ACTIONS(2428), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2426), 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, + ACTIONS(2068), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316936,61 +322352,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_in_list_token1, - [105831] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3029), 1, - sym_comment, - ACTIONS(2420), 2, + ACTIONS(2070), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2418), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -316999,45 +322387,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, - [105890] = 4, - ACTIONS(3), 1, + [100403] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3030), 1, + STATE(3102), 1, sym_comment, - ACTIONS(2232), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2230), 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, + ACTIONS(6146), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317046,61 +322406,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_in_list_token1, - [105949] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3031), 1, - sym_comment, - ACTIONS(2448), 2, + ACTIONS(6144), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2446), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -317109,15 +322441,12 @@ static const 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, - [106008] = 5, - ACTIONS(249), 1, + [100461] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_token2, - STATE(3032), 1, + STATE(3103), 1, sym_comment, - ACTIONS(2277), 14, + ACTIONS(2441), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -317132,14 +322461,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(2279), 33, + ACTIONS(2443), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -317148,12 +322471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -317166,52 +322495,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, - [106069] = 4, - ACTIONS(3), 1, + [100519] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3033), 1, + STATE(3104), 1, sym_comment, - ACTIONS(2456), 2, + ACTIONS(6150), 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(6148), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2454), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -317220,47 +322549,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, - [106128] = 6, - ACTIONS(3), 1, + [100577] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6014), 1, - sym_raw_string_begin, - STATE(2948), 1, - aux_sym__multiple_types_repeat1, - STATE(3034), 1, + STATE(3105), 1, sym_comment, - ACTIONS(6008), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, + ACTIONS(6154), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317269,61 +322568,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, - [106191] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3035), 1, - sym_comment, - ACTIONS(2488), 2, + aux_sym__unquoted_in_list_token1, + ACTIONS(6152), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2486), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -317332,45 +322603,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, - [106250] = 4, - ACTIONS(3), 1, + [100635] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3036), 1, + STATE(3106), 1, sym_comment, - ACTIONS(2416), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2414), 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, + ACTIONS(6124), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317379,61 +322622,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_in_list_token1, - [106309] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3037), 1, - sym_comment, - ACTIONS(2484), 2, + ACTIONS(6129), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2482), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -317442,15 +322657,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, - [106368] = 5, - ACTIONS(249), 1, + [100693] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_token2, - STATE(3038), 1, + ACTIONS(6156), 1, + anon_sym_COMMA, + STATE(3107), 1, sym_comment, - ACTIONS(1842), 14, + ACTIONS(5976), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -317465,28 +322679,27 @@ 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(1850), 33, + ACTIONS(5980), 32, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -317499,52 +322712,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, - [106429] = 4, - ACTIONS(3), 1, + [100753] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3039), 1, + STATE(3108), 1, sym_comment, - ACTIONS(2526), 2, + ACTIONS(1972), 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(1974), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2524), 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, @@ -317553,103 +322766,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, - [106488] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6131), 1, - aux_sym__immediate_decimal_token2, - STATE(3040), 1, - sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [106549] = 6, - ACTIONS(3), 1, + [100811] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1899), 1, - sym__entry_separator, - ACTIONS(6135), 1, - anon_sym_RBRACK, - ACTIONS(6138), 1, - sym_raw_string_begin, - STATE(3041), 1, + STATE(3109), 1, sym_comment, - ACTIONS(6133), 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, + ACTIONS(6160), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317658,62 +322785,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_in_list_token1, - [106612] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2275), 1, - aux_sym__unquoted_in_list_token4, - STATE(3042), 1, - sym_comment, - ACTIONS(5900), 9, + ACTIONS(6158), 33, sym_raw_string_begin, 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(5895), 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_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, 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_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317722,15 +322820,12 @@ static const 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, - [106673] = 5, - ACTIONS(249), 1, + [100869] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6140), 1, - aux_sym__immediate_decimal_token2, - STATE(3043), 1, + STATE(3110), 1, sym_comment, - ACTIONS(1769), 14, + ACTIONS(994), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -317745,14 +322840,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(1771), 33, + ACTIONS(996), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -317761,12 +322850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -317779,12 +322874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106734] = 4, - ACTIONS(249), 1, + [100927] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3044), 1, + STATE(3111), 1, sym_comment, - ACTIONS(1703), 15, + ACTIONS(6164), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -317799,15 +322894,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1705), 33, + ACTIONS(6162), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -317816,12 +322904,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -317834,12 +322928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106793] = 4, - ACTIONS(249), 1, + [100985] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3045), 1, + STATE(3112), 1, sym_comment, - ACTIONS(2206), 14, + ACTIONS(998), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -317854,14 +322948,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(2212), 33, + ACTIONS(1000), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -317870,12 +322958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -317888,228 +322982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106851] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3046), 1, - sym_comment, - ACTIONS(1711), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1713), 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, - [106909] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3047), 1, - sym_comment, - ACTIONS(1536), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [106967] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3048), 1, - sym_comment, - ACTIONS(1596), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [107025] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3049), 1, - sym_comment, - ACTIONS(1536), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1538), 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, - [107083] = 4, - ACTIONS(249), 1, + [101043] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3050), 1, + STATE(3113), 1, sym_comment, - ACTIONS(2230), 14, + ACTIONS(1002), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318124,14 +323002,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(2232), 33, + ACTIONS(1004), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -318140,12 +323012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318158,12 +323036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107141] = 4, - ACTIONS(249), 1, + [101101] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3051), 1, + STATE(3114), 1, sym_comment, - ACTIONS(2113), 14, + ACTIONS(1783), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318178,14 +323056,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(2119), 33, + ACTIONS(1785), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -318194,12 +323066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318212,12 +323090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107199] = 4, - ACTIONS(249), 1, + [101159] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3052), 1, + STATE(3115), 1, sym_comment, - ACTIONS(2498), 14, + ACTIONS(1907), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318232,14 +323110,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(2500), 33, + ACTIONS(1911), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -318248,12 +323120,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318266,70 +323144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107257] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(5029), 1, - anon_sym_DOT_DOT2, - ACTIONS(6142), 1, - sym_filesize_unit, - ACTIONS(6144), 1, - sym_duration_unit, - STATE(3053), 1, - sym_comment, - ACTIONS(5031), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [107323] = 4, - ACTIONS(249), 1, + [101217] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3054), 1, + STATE(3116), 1, sym_comment, - ACTIONS(5895), 14, + ACTIONS(2488), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318344,14 +323164,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(5900), 33, + ACTIONS(2490), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -318360,66 +323174,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__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, - [107381] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3055), 1, - sym_comment, - ACTIONS(1364), 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(1362), 32, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318432,12 +323198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107439] = 4, - ACTIONS(249), 1, + [101275] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3056), 1, + STATE(3117), 1, sym_comment, - ACTIONS(2474), 14, + ACTIONS(2343), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318452,14 +323218,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(2476), 33, + ACTIONS(2345), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -318468,12 +323228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318486,12 +323252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107497] = 4, - ACTIONS(249), 1, + [101333] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3057), 1, + STATE(3118), 1, sym_comment, - ACTIONS(2531), 14, + ACTIONS(2371), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318506,14 +323272,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(2533), 33, + ACTIONS(2373), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -318522,12 +323282,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318540,67 +323306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107555] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6102), 1, - aux_sym__immediate_decimal_token2, - STATE(3058), 1, - sym_comment, - ACTIONS(1536), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1538), 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, - [107615] = 4, - ACTIONS(249), 1, + [101391] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3059), 1, + STATE(3119), 1, sym_comment, - ACTIONS(2446), 14, + ACTIONS(2183), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318615,14 +323326,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(2448), 33, + ACTIONS(2185), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -318631,12 +323336,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318649,12 +323360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107673] = 4, - ACTIONS(249), 1, + [101449] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3060), 1, + STATE(3120), 1, sym_comment, - ACTIONS(2095), 14, + ACTIONS(2351), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318669,14 +323380,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(2097), 33, + ACTIONS(2353), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -318685,12 +323390,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318703,12 +323414,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107731] = 4, - ACTIONS(249), 1, + [101507] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3061), 1, + STATE(3121), 1, sym_comment, - ACTIONS(2539), 14, + ACTIONS(1988), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318723,14 +323434,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(2541), 33, + ACTIONS(1990), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -318739,12 +323444,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318757,12 +323468,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107789] = 4, - ACTIONS(249), 1, + [101565] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3062), 1, + STATE(3122), 1, sym_comment, - ACTIONS(6148), 14, + ACTIONS(2504), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318777,14 +323488,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(6146), 33, + ACTIONS(2506), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -318793,12 +323498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318811,16 +323522,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, - [107847] = 4, - ACTIONS(249), 1, + [101623] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3063), 1, + STATE(3123), 1, sym_comment, - ACTIONS(1711), 3, - sym__newline, + ACTIONS(1607), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1713), 44, + ACTIONS(1609), 39, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -318831,46 +323549,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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_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_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, sym_duration_unit, - [107905] = 4, - ACTIONS(249), 1, + [101681] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3064), 1, + STATE(3124), 1, sym_comment, - ACTIONS(6148), 14, + ACTIONS(1890), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318885,14 +323596,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(6146), 33, + ACTIONS(1892), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -318901,66 +323606,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__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, - [107963] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3065), 1, - sym_comment, - ACTIONS(2486), 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(2488), 33, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318973,12 +323630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108021] = 4, - ACTIONS(249), 1, + [101739] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3066), 1, + STATE(3125), 1, sym_comment, - ACTIONS(2502), 14, + ACTIONS(1992), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318993,14 +323650,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(2504), 33, + ACTIONS(1994), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -319009,66 +323660,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__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, - [108079] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3067), 1, - sym_comment, - ACTIONS(2414), 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(2416), 33, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -319081,15 +323684,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, - [108137] = 4, - ACTIONS(249), 1, + [101797] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3068), 1, + STATE(3126), 1, sym_comment, - ACTIONS(1528), 2, + ACTIONS(1621), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1530), 45, + ACTIONS(1623), 39, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -319102,45 +323711,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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_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_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, sym_duration_unit, - [108195] = 4, - ACTIONS(249), 1, + [101855] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3069), 1, + STATE(3127), 1, sym_comment, - ACTIONS(6152), 14, + ACTIONS(990), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319155,14 +323758,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(6150), 33, + ACTIONS(992), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -319171,12 +323768,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -319189,18 +323792,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, - [108253] = 5, - ACTIONS(249), 1, + [101913] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6117), 1, - aux_sym__immediate_decimal_token2, - STATE(3070), 1, + STATE(3128), 1, sym_comment, - ACTIONS(1536), 3, - aux_sym_cmd_identifier_token41, - sym__newline, + ACTIONS(1673), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(1538), 43, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1675), 39, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319211,45 +323819,93 @@ static const uint16_t ts_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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [101971] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3129), 1, + sym_comment, + ACTIONS(1763), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1765), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_duration_unit, - [108313] = 4, - ACTIONS(249), 1, + [102029] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3071), 1, + STATE(3130), 1, sym_comment, - ACTIONS(2218), 14, + ACTIONS(6048), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319264,14 +323920,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(2220), 33, + ACTIONS(6050), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -319280,66 +323930,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__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, - [108371] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3072), 1, - sym_comment, - ACTIONS(2482), 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(2484), 33, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -319352,12 +323954,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108429] = 4, - ACTIONS(249), 1, + [102087] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3073), 1, + STATE(3131), 1, sym_comment, - ACTIONS(2543), 14, + ACTIONS(2159), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319372,14 +323974,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(2545), 33, + ACTIONS(2165), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -319388,12 +323984,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -319406,12 +324008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108487] = 4, - ACTIONS(249), 1, + [102145] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3074), 1, + STATE(3132), 1, sym_comment, - ACTIONS(1715), 14, + ACTIONS(2472), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319426,14 +324028,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(1717), 33, + ACTIONS(2474), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -319442,12 +324038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -319460,12 +324062,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108545] = 4, - ACTIONS(249), 1, + [102203] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3075), 1, + STATE(3133), 1, sym_comment, - ACTIONS(6156), 14, + ACTIONS(2429), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319480,14 +324082,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(6154), 33, + ACTIONS(2431), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -319496,12 +324092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -319514,12 +324116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108603] = 4, - ACTIONS(249), 1, + [102261] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3076), 1, + STATE(3134), 1, sym_comment, - ACTIONS(2557), 14, + ACTIONS(1018), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319534,14 +324136,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(2559), 33, + ACTIONS(1020), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -319550,12 +324146,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -319568,66 +324170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108661] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3077), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [108719] = 4, - ACTIONS(249), 1, + [102319] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3078), 1, + STATE(3135), 1, sym_comment, - ACTIONS(6133), 14, + ACTIONS(2496), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319642,14 +324190,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(6138), 33, + ACTIONS(2498), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -319658,12 +324200,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -319676,12 +324224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108777] = 4, - ACTIONS(249), 1, + [102377] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3079), 1, + STATE(3136), 1, sym_comment, - ACTIONS(5883), 14, + ACTIONS(2476), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319696,14 +324244,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(5893), 33, + ACTIONS(2478), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -319712,12 +324254,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -319730,66 +324278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108835] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3080), 1, - sym_comment, - ACTIONS(1596), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1598), 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, - [108893] = 4, - ACTIONS(249), 1, + [102435] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3081), 1, + STATE(3137), 1, sym_comment, - ACTIONS(1826), 14, + ACTIONS(2480), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319804,14 +324298,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(1828), 33, + ACTIONS(2482), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -319820,12 +324308,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -319838,12 +324332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108951] = 4, - ACTIONS(249), 1, + [102493] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3082), 1, + STATE(3138), 1, sym_comment, - ACTIONS(1078), 14, + ACTIONS(5741), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319858,14 +324352,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(1080), 33, + ACTIONS(5748), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -319874,67 +324362,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__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, - [109009] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6158), 1, - anon_sym_COMMA, - STATE(3083), 1, - sym_comment, - ACTIONS(5972), 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(5976), 32, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -319947,12 +324386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109069] = 4, - ACTIONS(249), 1, + [102551] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3084), 1, + STATE(3139), 1, sym_comment, - ACTIONS(1062), 14, + ACTIONS(1913), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319967,14 +324406,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(1064), 33, + ACTIONS(1915), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -319983,12 +324416,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320001,12 +324440,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109127] = 4, - ACTIONS(249), 1, + [102609] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3085), 1, + STATE(3140), 1, sym_comment, - ACTIONS(1703), 14, + ACTIONS(2391), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320021,14 +324460,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(1705), 33, + ACTIONS(2393), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -320037,12 +324470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320055,67 +324494,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109185] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6160), 1, - aux_sym__immediate_decimal_token2, - STATE(3086), 1, - sym_comment, - ACTIONS(1596), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1598), 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, - [109245] = 4, - ACTIONS(249), 1, + [102667] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3087), 1, + STATE(3141), 1, sym_comment, - ACTIONS(1054), 14, + ACTIONS(2133), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320130,14 +324514,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(1056), 33, + ACTIONS(2139), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -320146,12 +324524,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320164,12 +324548,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109303] = 4, - ACTIONS(249), 1, + [102725] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3088), 1, + STATE(3142), 1, sym_comment, - ACTIONS(2561), 14, + ACTIONS(2413), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320184,14 +324568,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(2563), 33, + ACTIONS(2415), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -320200,12 +324578,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320218,12 +324602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109361] = 4, - ACTIONS(249), 1, + [102783] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3089), 1, + STATE(3143), 1, sym_comment, - ACTIONS(1628), 14, + ACTIONS(1948), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320238,14 +324622,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(1640), 33, + ACTIONS(1950), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -320254,12 +324632,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320272,66 +324656,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109419] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3090), 1, - sym_comment, - ACTIONS(1528), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [109477] = 4, - ACTIONS(249), 1, + [102841] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3091), 1, + STATE(3144), 1, sym_comment, - ACTIONS(6069), 14, + ACTIONS(2375), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320346,14 +324676,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(6071), 33, + ACTIONS(2377), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -320362,12 +324686,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320380,12 +324710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109535] = 4, - ACTIONS(249), 1, + [102899] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3092), 1, + STATE(3145), 1, sym_comment, - ACTIONS(6164), 14, + ACTIONS(2167), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320400,14 +324730,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(6162), 33, + ACTIONS(2173), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -320416,12 +324740,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320434,12 +324764,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109593] = 4, - ACTIONS(249), 1, + [102957] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3093), 1, + STATE(3146), 1, sym_comment, - ACTIONS(2565), 14, + ACTIONS(2175), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320454,14 +324784,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(2567), 33, + ACTIONS(2181), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -320470,12 +324794,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320488,12 +324818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109651] = 4, - ACTIONS(249), 1, + [103015] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3094), 1, + STATE(3147), 1, sym_comment, - ACTIONS(2418), 14, + ACTIONS(5926), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320508,14 +324838,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(2420), 33, + ACTIONS(5936), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -320524,12 +324848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320542,12 +324872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109709] = 4, - ACTIONS(249), 1, + [103073] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3095), 1, + STATE(3148), 1, sym_comment, - ACTIONS(2001), 14, + ACTIONS(6052), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320562,14 +324892,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(2003), 33, + ACTIONS(6054), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -320578,12 +324902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320596,67 +324926,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109767] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6166), 1, - aux_sym__immediate_decimal_token2, - STATE(3096), 1, - sym_comment, - ACTIONS(1596), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1598), 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, - [109827] = 4, - ACTIONS(249), 1, + [103131] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3097), 1, + STATE(3149), 1, sym_comment, - ACTIONS(2234), 14, + ACTIONS(2421), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320671,14 +324946,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(2240), 33, + ACTIONS(2423), 33, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, @@ -320687,12 +324956,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320705,12 +324980,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, - [109885] = 4, - ACTIONS(249), 1, + [103189] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3098), 1, + STATE(3150), 1, sym_comment, - ACTIONS(2535), 14, + ACTIONS(1290), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320724,29 +325000,28 @@ 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(2537), 33, + aux_sym_unquoted_token1, + ACTIONS(1288), 32, sym_raw_string_begin, - anon_sym_true, - anon_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, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320759,12 +325034,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109943] = 4, - ACTIONS(249), 1, + [103247] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3099), 1, + STATE(3151), 1, sym_comment, - ACTIONS(5659), 14, + ACTIONS(6168), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -320779,28 +325054,27 @@ 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(5666), 33, + ACTIONS(6166), 32, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -320813,3120 +325087,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, - [110001] = 4, - ACTIONS(249), 1, + [103304] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3100), 1, + ACTIONS(3037), 1, + anon_sym_DOT_DOT2, + ACTIONS(6170), 1, + sym_filesize_unit, + ACTIONS(6172), 1, + sym_duration_unit, + STATE(3152), 1, sym_comment, - ACTIONS(2466), 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(2468), 33, - sym_raw_string_begin, - 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(3039), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 36, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [103369] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6174), 1, + anon_sym_COLON, + ACTIONS(6176), 1, 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, - [110059] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3101), 1, - sym_comment, - ACTIONS(2017), 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(2019), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110117] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3102), 1, - sym_comment, - ACTIONS(2551), 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(2553), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110175] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3103), 1, - sym_comment, - ACTIONS(1038), 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(1040), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110233] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3104), 1, - sym_comment, - ACTIONS(2043), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2045), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110291] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3105), 1, - sym_comment, - ACTIONS(2222), 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(2228), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110349] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3106), 1, - sym_comment, - ACTIONS(2047), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2049), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110407] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3107), 1, - sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [110465] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3108), 1, - sym_comment, - ACTIONS(6079), 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(6081), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110523] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3109), 1, - sym_comment, - ACTIONS(2524), 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(2526), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110581] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3110), 1, - sym_comment, - ACTIONS(2434), 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(2436), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110639] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3111), 1, - sym_comment, - ACTIONS(2059), 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(2061), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110697] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3112), 1, - sym_comment, - ACTIONS(1528), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1530), 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, - [110755] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3113), 1, - sym_comment, - ACTIONS(2422), 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(2424), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110813] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3114), 1, - sym_comment, - ACTIONS(2442), 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(2444), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110871] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3115), 1, - sym_comment, - ACTIONS(2450), 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(2452), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110929] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3116), 1, - sym_comment, - ACTIONS(2067), 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(2069), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [110987] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3117), 1, - sym_comment, - ACTIONS(2454), 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(2456), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [111045] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3118), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 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, - [111103] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3119), 1, - sym_comment, - ACTIONS(2087), 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(2089), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [111161] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3120), 1, - sym_comment, - ACTIONS(6170), 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(6168), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [111219] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3121), 1, - sym_comment, - ACTIONS(2426), 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(2428), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [111277] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3122), 1, - sym_comment, - ACTIONS(1058), 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(1060), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [111335] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3123), 1, - sym_comment, - ACTIONS(1769), 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(1771), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [111393] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3124), 1, - sym_comment, - ACTIONS(2470), 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(2472), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [111451] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3125), 1, - sym_comment, - ACTIONS(6174), 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(6172), 33, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [111509] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3126), 1, - sym_comment, - ACTIONS(1536), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1538), 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, - [111566] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3127), 1, - sym_comment, - ACTIONS(1528), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1530), 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, - [111623] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3128), 1, - sym_comment, - ACTIONS(1528), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1530), 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, - [111680] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3129), 1, - sym_comment, - ACTIONS(6178), 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(6176), 32, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__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, - [111737] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3130), 1, - sym_comment, - ACTIONS(1536), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1538), 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, - [111794] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3131), 1, - sym_comment, - ACTIONS(1711), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1713), 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, - [111851] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1628), 1, - sym__newline, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(5029), 1, - anon_sym_DOT_DOT2, - ACTIONS(6180), 1, - sym_filesize_unit, - ACTIONS(6182), 1, - sym_duration_unit, - STATE(3132), 1, - sym_comment, - ACTIONS(5031), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [111918] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3133), 1, - sym_comment, - ACTIONS(1596), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1598), 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, - [111975] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3134), 1, - sym_comment, - ACTIONS(1711), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1713), 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, - [112032] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3135), 1, - sym_comment, - ACTIONS(1596), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1598), 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, - [112089] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5029), 1, - anon_sym_DOT_DOT2, - ACTIONS(6184), 1, - sym_filesize_unit, - ACTIONS(6186), 1, - sym_duration_unit, - STATE(3136), 1, - sym_comment, - ACTIONS(5031), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [112152] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5087), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(5089), 1, - anon_sym_DOT_DOT2, - ACTIONS(6188), 1, - sym_filesize_unit, - ACTIONS(6190), 1, - sym_duration_unit, - STATE(3137), 1, - sym_comment, - ACTIONS(5091), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [112217] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(3138), 1, - sym_comment, - STATE(7164), 1, - sym_block, - STATE(7471), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [112293] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(3139), 1, - sym_comment, - STATE(6847), 1, - sym_block, - STATE(7413), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [112369] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(3140), 1, - sym_comment, - STATE(7042), 1, - sym_block, - STATE(7578), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [112445] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(3141), 1, - sym_comment, - STATE(7029), 1, - sym_block, - STATE(7576), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [112521] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(3142), 1, - sym_comment, - STATE(7163), 1, - sym_block, - STATE(7468), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [112597] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(3143), 1, - sym_comment, - STATE(6880), 1, - sym_block, - STATE(7572), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [112673] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT_DOT2, - ACTIONS(6204), 1, - sym_filesize_unit, - ACTIONS(6206), 1, - sym_duration_unit, - STATE(3144), 1, - sym_comment, - ACTIONS(5091), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [112735] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1891), 1, - sym_cell_path, - STATE(1963), 1, - aux_sym_cell_path_repeat1, - STATE(3145), 1, - sym_comment, - ACTIONS(6208), 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(1895), 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, - [112799] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(3146), 1, - sym_comment, - STATE(6424), 1, - sym_block, - STATE(7461), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [112875] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(3147), 1, - sym_comment, - STATE(6652), 1, - sym_block, - STATE(7464), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [112951] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(3148), 1, - sym_comment, - STATE(6443), 1, - sym_block, - STATE(7454), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [113027] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(3149), 1, - sym_comment, - STATE(6452), 1, - sym_block, - STATE(7455), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [113103] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(3150), 1, - sym_comment, - STATE(6544), 1, - sym_block, - STATE(7483), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [113179] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(3151), 1, - sym_comment, - STATE(6571), 1, - sym_block, - STATE(7485), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [113255] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(3152), 1, - sym_comment, - STATE(6740), 1, - sym_block, - STATE(7452), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [113331] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, + ACTIONS(6182), 1, anon_sym_list, - ACTIONS(6211), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, STATE(3153), 1, sym_comment, - STATE(6736), 1, - sym_block, - STATE(7451), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [113407] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2293), 1, - anon_sym_DASH, - STATE(3154), 1, - sym_comment, - ACTIONS(2297), 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, - [113463] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6192), 1, - anon_sym_COLON, - ACTIONS(6194), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(3155), 1, - sym_comment, - STATE(7269), 1, + STATE(6232), 1, sym_block, - STATE(7551), 1, + STATE(7395), 1, sym_returns, - STATE(7831), 1, + STATE(7825), 1, sym__one_type, - STATE(7841), 1, + STATE(7836), 1, sym__multiple_types, - STATE(7842), 1, + STATE(7962), 1, sym__type_annotation, - ACTIONS(6198), 2, + ACTIONS(6180), 2, anon_sym_table, anon_sym_record, - STATE(6678), 3, + STATE(6312), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6196), 31, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -323958,1287 +325206,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [113539] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2303), 1, - anon_sym_DASH, - STATE(3156), 1, - sym_comment, - ACTIONS(2305), 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, - [113595] = 14, - ACTIONS(249), 1, + [103445] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6192), 1, + ACTIONS(6174), 1, anon_sym_COLON, - ACTIONS(6194), 1, + ACTIONS(6176), 1, anon_sym_LBRACK, - ACTIONS(6200), 1, + ACTIONS(6182), 1, anon_sym_list, - ACTIONS(6202), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(3157), 1, + STATE(3154), 1, sym_comment, - STATE(7287), 1, + STATE(6480), 1, sym_block, - STATE(7558), 1, - sym_returns, - STATE(7831), 1, - sym__one_type, - STATE(7841), 1, - sym__multiple_types, - STATE(7842), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [113671] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2281), 1, - anon_sym_DASH, - STATE(3158), 1, - sym_comment, - ACTIONS(2285), 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, - [113727] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5125), 1, - anon_sym_DOT, - ACTIONS(6213), 1, - sym__newline, - STATE(1909), 1, - aux_sym_cell_path_repeat1, - STATE(2132), 1, - sym_path, - STATE(2409), 1, - sym_cell_path, - STATE(3159), 1, - sym_comment, - ACTIONS(6208), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - ACTIONS(1895), 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, - [113792] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5149), 1, - anon_sym_DOT, - STATE(1966), 1, - aux_sym_cell_path_repeat1, - STATE(2151), 1, - sym_path, - STATE(2463), 1, - sym_cell_path, - STATE(3160), 1, - sym_comment, - ACTIONS(6208), 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(1895), 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, - [113855] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(3161), 1, - sym_comment, - ACTIONS(2285), 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, - [113911] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3162), 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, - [113967] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3163), 1, - sym_comment, - ACTIONS(2305), 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, - [114023] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2289), 1, - aux_sym_unquoted_token4, - STATE(3164), 1, - sym_comment, - ACTIONS(2291), 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, - [114077] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6216), 1, - anon_sym_DOT, - STATE(3165), 1, - sym_comment, - STATE(3167), 1, - aux_sym_cell_path_repeat1, - STATE(3337), 1, - sym_path, - ACTIONS(1027), 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(1029), 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, - [114137] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6218), 1, - anon_sym_RBRACK, - STATE(3166), 1, - sym_comment, - STATE(3180), 1, - aux_sym_shebang_repeat1, - STATE(3346), 1, - aux_sym__multiple_types_repeat2, - STATE(7139), 1, - sym__one_type, - STATE(7870), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [114207] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOT, - STATE(3337), 1, - sym_path, - STATE(3167), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 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(1033), 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, - [114265] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3168), 1, - sym_comment, - ACTIONS(1078), 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(1080), 33, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_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_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, - [114319] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(3169), 1, - sym_comment, - ACTIONS(1092), 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, - [114375] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3170), 1, - sym_comment, - ACTIONS(1058), 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(1060), 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_DASH_DASH, - 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, - 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, - [114428] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_QMARK2, - STATE(3171), 1, - sym_comment, - ACTIONS(1042), 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(1044), 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, - [114483] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6225), 1, - anon_sym_QMARK2, - STATE(3172), 1, - sym_comment, - ACTIONS(1048), 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(1050), 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, - [114538] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2289), 1, - aux_sym_unquoted_token4, - STATE(3173), 1, - sym_comment, - ACTIONS(2291), 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, - [114591] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1090), 1, - sym__newline, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(3174), 1, - sym_comment, - ACTIONS(1092), 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, - [114648] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6231), 1, - anon_sym_DOT, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - STATE(3175), 1, - sym_comment, - STATE(3535), 1, - sym__immediate_decimal, - ACTIONS(6233), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3533), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - 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(1570), 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, - 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, - [114717] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6216), 1, - anon_sym_DOT, - STATE(3165), 1, - aux_sym_cell_path_repeat1, - STATE(3168), 1, - sym_cell_path, - STATE(3176), 1, - sym_comment, - STATE(3337), 1, - sym_path, - 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), 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_LBRACE, - anon_sym_RBRACE, - 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, - [114778] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2281), 1, - sym__newline, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(3177), 1, - sym_comment, - ACTIONS(2285), 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, - [114835] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2293), 1, - sym__newline, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3178), 1, - sym_comment, - ACTIONS(2297), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [114892] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - ACTIONS(2303), 1, - sym__newline, - STATE(3179), 1, - sym_comment, - ACTIONS(2305), 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, - [114949] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6200), 1, - anon_sym_list, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(3180), 1, - sym_comment, - STATE(3340), 1, - aux_sym__multiple_types_repeat2, - STATE(6753), 1, + STATE(7494), 1, + sym_returns, + STATE(7825), 1, sym__one_type, - STATE(7870), 1, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, sym__type_annotation, - ACTIONS(6198), 2, + ACTIONS(6180), 2, anon_sym_table, anon_sym_record, - STATE(6678), 3, + STATE(6312), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6196), 31, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325270,858 +325268,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115016] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token37, - STATE(3181), 1, - sym_comment, - ACTIONS(2291), 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, - [115069] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token37, - STATE(3182), 1, - sym_comment, - ACTIONS(2285), 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, - [115122] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(3183), 1, - sym_comment, - ACTIONS(1092), 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, - [115177] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5285), 1, - aux_sym_cmd_identifier_token41, - STATE(3184), 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, - [115230] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5285), 1, - aux_sym_cmd_identifier_token41, - STATE(3185), 1, - sym_comment, - ACTIONS(2305), 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, - [115283] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token37, - STATE(3186), 1, - sym_comment, - ACTIONS(1640), 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, - [115336] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(3187), 1, - sym_comment, - ACTIONS(2285), 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, - [115391] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3188), 1, - sym_comment, - ACTIONS(2289), 2, - sym__newline, - aux_sym_unquoted_token4, - ACTIONS(2291), 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, - [115444] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6239), 1, - anon_sym_DOT, - ACTIONS(6241), 1, - aux_sym__immediate_decimal_token2, - STATE(3189), 1, - sym_comment, - ACTIONS(1715), 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(1717), 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, - [115501] = 6, - ACTIONS(249), 1, + [103521] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6243), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6245), 1, - aux_sym__immediate_decimal_token2, - STATE(3190), 1, - sym_comment, - ACTIONS(1703), 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(1705), 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, + ACTIONS(6174), 1, + anon_sym_COLON, + ACTIONS(6176), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6184), 1, 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, - [115558] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3191), 1, - sym_comment, - ACTIONS(2297), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [115613] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3192), 1, + STATE(3155), 1, sym_comment, - ACTIONS(2305), 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, - [115668] = 4, - ACTIONS(249), 1, + STATE(6630), 1, + sym_block, + STATE(7438), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [103597] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3193), 1, - sym_comment, - ACTIONS(1062), 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(1064), 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_DASH_DASH, - anon_sym_if, + ACTIONS(6174), 1, + anon_sym_COLON, + ACTIONS(6176), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6186), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [115721] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3194), 1, + STATE(3156), 1, sym_comment, - 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, - anon_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), 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_DASH_DASH, - 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, - 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, - [115774] = 4, - ACTIONS(249), 1, + STATE(7146), 1, + sym_block, + STATE(7415), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [103673] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3195), 1, - sym_comment, - ACTIONS(1054), 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(1056), 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_DASH_DASH, - anon_sym_if, + ACTIONS(6174), 1, + anon_sym_COLON, + ACTIONS(6176), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6186), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [115827] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4770), 1, - aux_sym_unquoted_token2, - STATE(3196), 1, - sym_comment, - ACTIONS(1640), 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, - [115880] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1628), 1, - sym__newline, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token37, - STATE(3197), 1, + STATE(3157), 1, sym_comment, - ACTIONS(1640), 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, - [115934] = 3, - ACTIONS(249), 1, + STATE(6971), 1, + sym_block, + STATE(7470), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [103749] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3198), 1, - sym_comment, - ACTIONS(6247), 41, - sym__newline, - anon_sym_SEMI, + ACTIONS(6174), 1, anon_sym_COLON, + ACTIONS(6176), 1, anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(3158), 1, + sym_comment, + STATE(6975), 1, + sym_block, + STATE(7407), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326151,24 +325514,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [115984] = 3, - ACTIONS(249), 1, + [103825] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3199), 1, - sym_comment, - ACTIONS(6249), 41, - sym__newline, - anon_sym_SEMI, + ACTIONS(6174), 1, anon_sym_COLON, + ACTIONS(6176), 1, anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(3159), 1, + sym_comment, + STATE(6633), 1, + sym_block, + STATE(7439), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326198,346 +325576,163 @@ 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, + [103901] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6174), 1, + anon_sym_COLON, + ACTIONS(6176), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, anon_sym_list, + ACTIONS(6184), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - [116034] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3200), 1, + STATE(3160), 1, sym_comment, - ACTIONS(1066), 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(1068), 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, - [116086] = 4, - ACTIONS(249), 1, + STATE(6218), 1, + sym_block, + STATE(7447), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [103977] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3201), 1, - sym_comment, - ACTIONS(1070), 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(1072), 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, + ACTIONS(6174), 1, + anon_sym_COLON, + ACTIONS(6176), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6186), 1, 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, - [116138] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1628), 1, - sym__newline, - ACTIONS(4842), 1, - aux_sym_unquoted_token2, - STATE(3202), 1, - sym_comment, - ACTIONS(1640), 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, - [116192] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - STATE(3203), 1, - sym_comment, - STATE(3425), 1, - sym__immediate_decimal, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3424), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1608), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1610), 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, - 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, - [116258] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - STATE(3204), 1, - sym_comment, - STATE(3428), 1, - sym__immediate_decimal, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3427), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1612), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1614), 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, - 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, - [116324] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - STATE(3205), 1, + STATE(3161), 1, sym_comment, - STATE(3431), 1, - sym__immediate_decimal, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3430), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1620), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1622), 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, - 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, - [116390] = 10, - ACTIONS(249), 1, + STATE(6954), 1, + sym_block, + STATE(7538), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [104053] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6174), 1, + anon_sym_COLON, + ACTIONS(6176), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, anon_sym_list, - ACTIONS(6255), 1, - anon_sym_GT, - ACTIONS(6257), 1, - anon_sym_AT, - STATE(3206), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(3162), 1, sym_comment, - STATE(7008), 1, - sym__all_type, - STATE(7984), 1, - sym_param_cmd, - ACTIONS(6198), 2, + STATE(6720), 1, + sym_block, + STATE(7389), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, anon_sym_table, anon_sym_record, - STATE(7560), 3, + STATE(6312), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6196), 31, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326569,29 +325764,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116454] = 10, - ACTIONS(249), 1, + [104129] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3055), 1, + anon_sym_DOT_DOT2, + ACTIONS(6188), 1, + sym_filesize_unit, + ACTIONS(6190), 1, + sym_duration_unit, + STATE(3163), 1, + sym_comment, + ACTIONS(3057), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [104193] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6194), 1, + ACTIONS(6174), 1, + anon_sym_COLON, + ACTIONS(6176), 1, anon_sym_LBRACK, - ACTIONS(6200), 1, + ACTIONS(6182), 1, anon_sym_list, - STATE(3207), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(3164), 1, sym_comment, - STATE(7842), 1, - sym__type_annotation, - STATE(7888), 1, + STATE(6936), 1, + sym_block, + STATE(7471), 1, + sym_returns, + STATE(7825), 1, sym__one_type, - STATE(7900), 1, + STATE(7836), 1, sym__multiple_types, - ACTIONS(6198), 2, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, anon_sym_table, anon_sym_record, - STATE(6678), 3, + STATE(6312), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6196), 31, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326623,17 +325882,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116518] = 3, - ACTIONS(249), 1, + [104269] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3208), 1, + ACTIONS(4902), 1, + anon_sym_DOT, + STATE(1702), 1, + aux_sym_cell_path_repeat1, + STATE(1894), 1, + sym_path, + STATE(2116), 1, + sym_cell_path, + STATE(3165), 1, sym_comment, - ACTIONS(6259), 41, + ACTIONS(2082), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(6192), 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(2084), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [104335] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6174), 1, anon_sym_COLON, + ACTIONS(6176), 1, anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(3166), 1, + sym_comment, + STATE(6495), 1, + sym_block, + STATE(7495), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326663,24 +325999,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [116568] = 3, - ACTIONS(249), 1, + [104411] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3209), 1, - sym_comment, - ACTIONS(6261), 41, - sym__newline, - anon_sym_SEMI, + ACTIONS(6174), 1, anon_sym_COLON, + ACTIONS(6176), 1, anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(3167), 1, + sym_comment, + STATE(7108), 1, + sym_block, + STATE(7350), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326710,24 +326061,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [116618] = 3, - ACTIONS(249), 1, + [104487] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3210), 1, - sym_comment, - ACTIONS(6263), 41, - sym__newline, - anon_sym_SEMI, + ACTIONS(6174), 1, anon_sym_COLON, + ACTIONS(6176), 1, anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(3168), 1, + sym_comment, + STATE(6220), 1, + sym_block, + STATE(7448), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326757,24 +326123,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [116668] = 3, - ACTIONS(249), 1, + [104563] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3211), 1, - sym_comment, - ACTIONS(6265), 41, - sym__newline, - anon_sym_SEMI, + ACTIONS(6174), 1, anon_sym_COLON, + ACTIONS(6176), 1, anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(3169), 1, + sym_comment, + STATE(7126), 1, + sym_block, + STATE(7355), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326804,429 +326185,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [116718] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5087), 1, - aux_sym_cmd_identifier_token37, - STATE(3212), 1, - sym_comment, - ACTIONS(2291), 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, - [116770] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5087), 1, - aux_sym_cmd_identifier_token37, - STATE(3213), 1, - sym_comment, - ACTIONS(2285), 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, - [116822] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5416), 1, - aux_sym_cmd_identifier_token41, - STATE(3214), 1, - sym_comment, - ACTIONS(2297), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [116874] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5416), 1, - aux_sym_cmd_identifier_token41, - STATE(3215), 1, - sym_comment, - ACTIONS(2305), 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, - [116926] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3216), 1, - sym_comment, - ACTIONS(5107), 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(2549), 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, - [116978] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2289), 1, - sym__newline, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token37, - STATE(3217), 1, - sym_comment, - ACTIONS(2291), 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, - [117032] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2281), 1, - sym__newline, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token37, - STATE(3218), 1, - sym_comment, - ACTIONS(2285), 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, - [117086] = 11, - ACTIONS(249), 1, + [104639] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - STATE(3219), 1, - sym_comment, - STATE(3423), 1, - sym__immediate_decimal, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3463), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - 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(1570), 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, - 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, - [117152] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6174), 1, + anon_sym_COLON, + ACTIONS(6176), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, anon_sym_list, - ACTIONS(6257), 1, - anon_sym_AT, - ACTIONS(6267), 1, - anon_sym_GT, - STATE(3220), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(3170), 1, sym_comment, - STATE(7138), 1, - sym__all_type, - STATE(8029), 1, - sym_param_cmd, - ACTIONS(6198), 2, + STATE(6820), 1, + sym_block, + STATE(7463), 1, + sym_returns, + STATE(7825), 1, + sym__one_type, + STATE(7836), 1, + sym__multiple_types, + STATE(7962), 1, + sym__type_annotation, + ACTIONS(6180), 2, anon_sym_table, anon_sym_record, - STATE(7560), 3, + STATE(6312), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6196), 31, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -327258,754 +326249,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [117216] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2293), 1, - sym__newline, - ACTIONS(5285), 1, - aux_sym_cmd_identifier_token41, - STATE(3221), 1, - sym_comment, - ACTIONS(2297), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [117270] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2303), 1, - sym__newline, - ACTIONS(5285), 1, - aux_sym_cmd_identifier_token41, - STATE(3222), 1, - sym_comment, - ACTIONS(2305), 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, - [117324] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3223), 1, - sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5131), 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_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [117376] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3224), 1, - sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6271), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 35, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [117430] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3225), 1, - sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6273), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6271), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [117486] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3226), 1, - sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6273), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6275), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6271), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6277), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6279), 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(5131), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [117548] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3227), 1, - sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6273), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6275), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6281), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6271), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6277), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6279), 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(5131), 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, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [117612] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6283), 1, - aux_sym_expr_binary_token13, - STATE(3228), 1, - sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6273), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6275), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6281), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6271), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6277), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6279), 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(5131), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [117678] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6283), 1, - aux_sym_expr_binary_token13, - ACTIONS(6285), 1, - aux_sym_expr_binary_token14, - STATE(3229), 1, - sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6273), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6275), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6281), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6271), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6277), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6279), 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(5131), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [117746] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6283), 1, - aux_sym_expr_binary_token13, - ACTIONS(6285), 1, - aux_sym_expr_binary_token14, - ACTIONS(6287), 1, - aux_sym_expr_binary_token15, - STATE(3230), 1, - sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6273), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6275), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6281), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6271), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6277), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6279), 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(5131), 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, - [117816] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6283), 1, - aux_sym_expr_binary_token13, - ACTIONS(6285), 1, - aux_sym_expr_binary_token14, - ACTIONS(6287), 1, - aux_sym_expr_binary_token15, - ACTIONS(6289), 1, - aux_sym_expr_binary_token16, - STATE(3231), 1, - sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6273), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6275), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6281), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6271), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6277), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6279), 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(5131), 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, - [117888] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6283), 1, - aux_sym_expr_binary_token13, - ACTIONS(6285), 1, - aux_sym_expr_binary_token14, - ACTIONS(6287), 1, - aux_sym_expr_binary_token15, - ACTIONS(6289), 1, - aux_sym_expr_binary_token16, - ACTIONS(6291), 1, - aux_sym_expr_binary_token17, - STATE(3232), 1, - sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6273), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6275), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6281), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6271), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6277), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6279), 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(5131), 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, - [117962] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3233), 1, - sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6273), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6275), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6271), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6279), 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(5131), 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, - [118022] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3234), 1, - sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6273), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6275), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6271), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 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, - [118080] = 4, - ACTIONS(249), 1, + [104715] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4870), 1, - aux_sym_unquoted_token2, - STATE(3235), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2197), 1, + sym_path, + STATE(2495), 1, + sym_cell_path, + STATE(3171), 1, sym_comment, - ACTIONS(1640), 40, + ACTIONS(2082), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(6192), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -328018,624 +326281,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [118132] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(3236), 1, - sym_comment, - STATE(3249), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5265), 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, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [118188] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(3237), 1, - sym_comment, - STATE(3251), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5265), 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, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [118246] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(3238), 1, - sym_comment, - STATE(3253), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5265), 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, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [118306] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(3239), 1, - sym_comment, - STATE(3255), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5265), 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, - [118372] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(3240), 1, - sym_comment, - STATE(3257), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5265), 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, - [118440] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3241), 1, - sym_comment, - STATE(3259), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5265), 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, - [118510] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3242), 1, - sym_comment, - STATE(3261), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5265), 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, - [118582] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3243), 1, - sym_comment, - STATE(3263), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5265), 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, - [118656] = 16, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6313), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3244), 1, - sym_comment, - STATE(3265), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5265), 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, - [118732] = 17, - ACTIONS(249), 1, + ACTIONS(2084), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [104780] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6313), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6315), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3245), 1, + STATE(3172), 1, sym_comment, - STATE(3267), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5265), 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, - [118810] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(2250), 14, sym__newline, - STATE(3246), 1, - sym_comment, - STATE(3269), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5265), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328647,94 +326323,65 @@ static 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, - [118874] = 9, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_LPAREN2, + ACTIONS(2248), 29, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_unquoted_token4, + [104834] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6195), 1, sym__newline, - STATE(3247), 1, + ACTIONS(6197), 1, + anon_sym_RBRACK, + STATE(3173), 1, sym_comment, - STATE(3271), 1, + STATE(3189), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5265), 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, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [118936] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6257), 1, - anon_sym_AT, - ACTIONS(6317), 1, - anon_sym_GT, - STATE(3248), 1, - sym_comment, - STATE(6807), 1, - sym__all_type, - STATE(8034), 1, - sym_param_cmd, - ACTIONS(6198), 2, + STATE(3339), 1, + aux_sym__multiple_types_repeat2, + STATE(7171), 1, + sym__one_type, + STATE(7669), 1, + sym__type_annotation, + ACTIONS(6180), 2, anon_sym_table, anon_sym_record, - STATE(7560), 3, + STATE(6312), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6196), 31, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328766,348 +326413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119000] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3249), 1, - sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5246), 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, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [119056] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(3250), 1, - sym_comment, - STATE(3285), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5254), 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, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [119112] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3251), 1, - sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5246), 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, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [119170] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(3252), 1, - sym_comment, - STATE(3286), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5254), 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, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [119228] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3253), 1, - sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5246), 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, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [119288] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(3254), 1, - sym_comment, - STATE(3287), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5254), 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, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [119348] = 11, - ACTIONS(249), 1, + [104904] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3255), 1, + STATE(3174), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5246), 19, + ACTIONS(2214), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2218), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329119,50 +326437,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, - [119414] = 11, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [104958] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(3256), 1, + STATE(3175), 1, sym_comment, - STATE(3288), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5254), 19, + ACTIONS(1018), 10, + anon_sym_DASH2, + 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(1020), 33, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329173,54 +326492,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_COLON, 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, - [119480] = 12, - ACTIONS(249), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + 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, + [105012] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3257), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(3176), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5246), 17, + ACTIONS(2210), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329232,51 +326535,49 @@ static 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, - [119548] = 12, - ACTIONS(249), 1, + anon_sym_RBRACE, + ACTIONS(2206), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [105070] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(3258), 1, + STATE(3177), 1, sym_comment, - STATE(3289), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5254), 17, + ACTIONS(2222), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2224), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329288,53 +326589,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_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [119616] = 13, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [105124] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3259), 1, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(3178), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5246), 16, + ACTIONS(1032), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329346,52 +326637,47 @@ static 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, - [119686] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3260), 1, + anon_sym_RBRACE, + ACTIONS(1030), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [105182] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(3179), 1, sym_comment, - STATE(3290), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5254), 16, + ACTIONS(2218), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329403,54 +326689,47 @@ static 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, - [119756] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3261), 1, + anon_sym_RBRACE, + ACTIONS(2214), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [105240] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(3180), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5246), 15, + ACTIONS(2224), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329462,53 +326741,58 @@ static 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, - [119828] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3262), 1, + anon_sym_RBRACE, + ACTIONS(2222), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [105298] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6199), 1, + anon_sym_DOT, + ACTIONS(6201), 1, + aux_sym__immediate_decimal_token2, + STATE(3181), 1, sym_comment, - STATE(3291), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5254), 15, + ACTIONS(1755), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1757), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329520,55 +326804,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [119900] = 15, - ACTIONS(249), 1, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [105355] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3263), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + STATE(3182), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5246), 14, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 36, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329580,54 +326848,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [119974] = 15, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [105410] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3264), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(3183), 1, sym_comment, - STATE(3292), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5254), 14, + ACTIONS(2218), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329638,57 +326894,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, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [120048] = 16, - ACTIONS(249), 1, + ACTIONS(2214), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [105467] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6339), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3265), 1, + STATE(3184), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5246), 13, + ACTIONS(2250), 13, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329699,56 +326941,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [120124] = 16, - ACTIONS(249), 1, + anon_sym_LPAREN2, + ACTIONS(2248), 29, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_unquoted_token4, + [105520] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6313), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3266), 1, + ACTIONS(6203), 1, + anon_sym_DOLLAR, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6207), 1, + anon_sym_DOT, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + STATE(3185), 1, sym_comment, - STATE(3293), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5254), 13, + STATE(3530), 1, + sym__immediate_decimal, + ACTIONS(6209), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3529), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1581), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1591), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329760,57 +327017,30 @@ static 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, - [120200] = 17, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [105589] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6339), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6341), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3267), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(3186), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5246), 12, + ACTIONS(2224), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329821,57 +327051,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, - aux_sym_expr_binary_parenthesized_token18, - [120278] = 17, - ACTIONS(249), 1, + ACTIONS(2222), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [105646] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6313), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6315), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3268), 1, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(3187), 1, sym_comment, - STATE(3294), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5254), 12, + ACTIONS(1032), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329882,39 +327102,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - [120356] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3269), 1, + ACTIONS(1030), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [105703] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6215), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6217), 1, + aux_sym__immediate_decimal_token2, + STATE(3188), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5246), 23, + ACTIONS(1739), 10, + anon_sym_DASH2, + 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(1741), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329926,49 +327164,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [120420] = 10, - ACTIONS(249), 1, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [105760] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6195), 1, sym__newline, - STATE(3270), 1, + STATE(3189), 1, sym_comment, - STATE(3295), 1, + STATE(3321), 1, + aux_sym__multiple_types_repeat2, + STATE(3456), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5254), 23, + STATE(7153), 1, + sym__one_type, + STATE(7669), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [105827] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(3190), 1, + sym_comment, + ACTIONS(2210), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329979,43 +327260,156 @@ static const uint16_t ts_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, - [120484] = 9, - ACTIONS(249), 1, + ACTIONS(2206), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [105884] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6176), 1, + anon_sym_LBRACK, + ACTIONS(6182), 1, + anon_sym_list, + STATE(3191), 1, + sym_comment, + STATE(7962), 1, + sym__type_annotation, + STATE(7970), 1, + sym__one_type, + STATE(7983), 1, + sym__multiple_types, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [105948] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3271), 1, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6219), 1, + anon_sym_GT2, + ACTIONS(6221), 1, + anon_sym_AT, + STATE(3192), 1, + sym_comment, + STATE(7311), 1, + sym__all_type, + STATE(7945), 1, + sym_param_cmd, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(7488), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [106012] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3193), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5246), 29, + ACTIONS(2383), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5135), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330027,90 +327421,157 @@ static 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, - [120546] = 9, - ACTIONS(249), 1, + anon_sym_RBRACE, + ACTIONS(2385), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [106066] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(3272), 1, + STATE(3194), 1, sym_comment, - STATE(3296), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5254), 29, + ACTIONS(6223), 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_COLON, + anon_sym_LBRACK, 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, - [120608] = 6, - ACTIONS(249), 1, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [106116] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + STATE(3195), 1, + sym_comment, + ACTIONS(6225), 41, sym__newline, - STATE(3273), 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, + [106166] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + STATE(3196), 1, sym_comment, - STATE(3297), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5261), 37, + STATE(3434), 1, + sym__immediate_decimal, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3433), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1581), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1591), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330122,104 +327583,195 @@ static 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, - [120664] = 7, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [106232] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6221), 1, + anon_sym_AT, + ACTIONS(6231), 1, + anon_sym_GT2, + STATE(3197), 1, + sym_comment, + STATE(7057), 1, + sym__all_type, + STATE(7830), 1, + sym_param_cmd, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(7488), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [106296] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3198), 1, + sym_comment, + ACTIONS(6233), 41, sym__newline, - STATE(3274), 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, + [106346] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3199), 1, sym_comment, - STATE(3299), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5261), 33, + ACTIONS(6235), 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_COLON, + anon_sym_LBRACK, 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, - [120722] = 8, - ACTIONS(249), 1, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [106396] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5422), 1, sym__newline, - STATE(3275), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3200), 1, sym_comment, - STATE(3301), 1, + STATE(3213), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5261), 31, + ACTIONS(5270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5268), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330231,62 +327783,45 @@ static 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, - [120782] = 11, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [106464] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5422), 1, sym__newline, - STATE(3276), 1, + STATE(3201), 1, sym_comment, - STATE(3303), 1, + STATE(3215), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5261), 19, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5270), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5268), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330298,53 +327833,59 @@ static 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, - [120848] = 12, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [106526] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5422), 1, sym__newline, - STATE(3277), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3202), 1, sym_comment, - STATE(3305), 1, + STATE(3217), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5261), 17, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5268), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330356,53 +327897,37 @@ static 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, - [120916] = 13, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [106596] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5422), 1, sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3278), 1, + STATE(3203), 1, sym_comment, - STATE(3307), 1, + STATE(3219), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5261), 16, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5270), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5268), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330414,54 +327939,75 @@ static 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, - [120986] = 14, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [106654] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5422), 1, sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3279), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + STATE(3204), 1, sym_comment, - STATE(3309), 1, + STATE(3221), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5261), 15, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5268), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330473,55 +328019,59 @@ static 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, - [121058] = 15, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [106734] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5422), 1, sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3280), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6263), 1, + anon_sym_and2, + STATE(3205), 1, sym_comment, - STATE(3311), 1, + STATE(3223), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5261), 14, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5268), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330533,56 +328083,60 @@ static 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, - [121132] = 16, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [106816] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6313), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3281), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6263), 1, + anon_sym_and2, + ACTIONS(6265), 1, + anon_sym_xor2, + STATE(3206), 1, sym_comment, - STATE(3313), 1, + STATE(3225), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5261), 13, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5268), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330594,57 +328148,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [121208] = 17, - ACTIONS(249), 1, + anon_sym_or2, + [106900] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5410), 1, + ACTIONS(5422), 1, sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6313), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6315), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3282), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3207), 1, sym_comment, - STATE(3315), 1, + STATE(3227), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5261), 12, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5268), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330656,38 +328199,40 @@ static 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, - [121286] = 10, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [106972] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5422), 1, sym__newline, - STATE(3283), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3208), 1, sym_comment, - STATE(3317), 1, + STATE(3229), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5261), 23, + ACTIONS(5270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5268), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330699,42 +328244,66 @@ static 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, - [121350] = 9, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107038] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(5422), 1, sym__newline, - STATE(3284), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3209), 1, sym_comment, - STATE(3319), 1, + STATE(3231), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5261), 29, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5268), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330746,37 +328315,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, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [121412] = 6, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107112] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, + ACTIONS(5422), 1, sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3285), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + STATE(3210), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5279), 37, + STATE(3233), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5268), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330788,50 +328376,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_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [121468] = 7, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107188] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, + ACTIONS(5422), 1, sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3286), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + STATE(3211), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5279), 33, + STATE(3235), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5268), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330843,49 +328438,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [121526] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [107266] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - STATE(2104), 1, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6221), 1, + anon_sym_AT, + ACTIONS(6267), 1, + anon_sym_GT2, + STATE(3212), 1, + sym_comment, + STATE(6867), 1, + sym__all_type, + STATE(7943), 1, + sym_param_cmd, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(7488), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [107330] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3287), 1, + STATE(3213), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5279), 31, + ACTIONS(5330), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5328), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330897,62 +328535,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_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [121586] = 11, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107396] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, + ACTIONS(5471), 1, sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3288), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3214), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5279), 19, + STATE(3249), 1, + aux_sym_shebang_repeat1, + ACTIONS(5334), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5332), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330964,53 +328591,44 @@ static 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, - [121652] = 12, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107464] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3289), 1, + STATE(3215), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5279), 17, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5330), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5328), 31, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331022,53 +328640,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_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [121720] = 13, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107524] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, + ACTIONS(5471), 1, sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3290), 1, + STATE(3216), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5279), 16, + STATE(3250), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5334), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5332), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331080,54 +328693,58 @@ static 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, - [121790] = 14, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107586] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3291), 1, + STATE(3217), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5279), 15, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5328), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331139,55 +328756,52 @@ static 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, - [121862] = 15, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107654] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, + ACTIONS(5471), 1, sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3292), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3218), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5279), 14, + STATE(3251), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5332), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331199,56 +328813,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [121936] = 16, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107724] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6339), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3293), 1, + STATE(3219), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5279), 13, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5330), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5328), 33, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331260,57 +328854,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [122012] = 17, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107780] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, + ACTIONS(5471), 1, sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6339), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6341), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3294), 1, + STATE(3220), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5279), 12, + STATE(3252), 1, + aux_sym_shebang_repeat1, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5332), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331322,38 +328905,74 @@ static 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, - [122090] = 10, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107838] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3295), 1, + STATE(3221), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5279), 23, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5328), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331365,42 +328984,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_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [122154] = 9, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [107916] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, + ACTIONS(5471), 1, sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3296), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + STATE(3222), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5279), 29, + STATE(3253), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5332), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331412,37 +329046,58 @@ static 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, - [122216] = 6, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [107996] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + ACTIONS(6295), 1, + anon_sym_and2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3297), 1, + STATE(3223), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5291), 37, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5328), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331454,45 +329109,58 @@ static 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, - [122272] = 6, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [108076] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(5471), 1, sym__newline, - STATE(3298), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6263), 1, + anon_sym_and2, + STATE(3224), 1, sym_comment, - STATE(3321), 1, + STATE(3254), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5299), 37, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5332), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331504,50 +329172,59 @@ static 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, - [122328] = 7, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [108158] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + ACTIONS(6295), 1, + anon_sym_and2, + ACTIONS(6297), 1, + anon_sym_xor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3299), 1, + STATE(3225), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5291), 33, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5328), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331559,46 +329236,59 @@ static 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, - [122386] = 7, - ACTIONS(249), 1, + anon_sym_or2, + [108240] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(3857), 1, sym__newline, - STATE(3300), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6263), 1, + anon_sym_and2, + ACTIONS(6265), 1, + anon_sym_xor2, + STATE(3226), 1, sym_comment, - STATE(3322), 1, + STATE(3318), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5299), 33, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5332), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331610,49 +329300,45 @@ static 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, - [122444] = 8, - ACTIONS(249), 1, + anon_sym_or2, + [108324] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3301), 1, + STATE(3227), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5291), 31, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5328), 20, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331664,47 +329350,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_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [122504] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108394] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(5471), 1, sym__newline, - STATE(3302), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3228), 1, sym_comment, - STATE(3323), 1, + STATE(3256), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5299), 31, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5332), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331716,62 +329408,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [122564] = 11, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108466] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3303), 1, + STATE(3229), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5291), 19, + ACTIONS(5330), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5328), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331783,50 +329452,50 @@ static 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, - [122630] = 11, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108530] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(5471), 1, sym__newline, - STATE(3304), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3230), 1, sym_comment, - STATE(3324), 1, + STATE(3257), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5299), 19, + ACTIONS(5334), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5332), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331838,53 +329507,65 @@ static 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, - [122696] = 12, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108596] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3305), 1, + STATE(3231), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5291), 17, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5328), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331896,51 +329577,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [122764] = 12, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108668] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(5471), 1, sym__newline, - STATE(3306), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3232), 1, sym_comment, - STATE(3325), 1, + STATE(3258), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5299), 17, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5332), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331952,53 +329636,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, - [122832] = 13, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108742] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3307), 1, + STATE(3233), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5291), 16, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5328), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332010,52 +329696,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_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [122902] = 13, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108816] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(5471), 1, sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3308), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + STATE(3234), 1, sym_comment, - STATE(3326), 1, + STATE(3259), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5299), 16, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5332), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332067,54 +329756,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [122972] = 14, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108892] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3309), 1, + STATE(3235), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5291), 15, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5328), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332126,53 +329817,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_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [123044] = 14, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [108968] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(5471), 1, sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3310), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + STATE(3236), 1, sym_comment, - STATE(3327), 1, + STATE(3260), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5299), 15, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5332), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332184,55 +329878,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [123116] = 15, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [109046] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(5407), 1, sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3311), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3237), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5291), 14, + STATE(3261), 1, + aux_sym_shebang_repeat1, + ACTIONS(5274), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5272), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332244,54 +329922,45 @@ static 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, - [123190] = 15, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109114] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(5407), 1, sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3312), 1, + STATE(3238), 1, sym_comment, - STATE(3328), 1, + STATE(3263), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5299), 14, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5274), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5272), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332303,56 +329972,59 @@ static 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, - [123264] = 16, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109176] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(5407), 1, sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6339), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3313), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3239), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5291), 13, + STATE(3265), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5272), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332364,55 +330036,37 @@ static 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, - [123340] = 16, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109246] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(5407), 1, sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6313), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3314), 1, + STATE(3240), 1, sym_comment, - STATE(3329), 1, + STATE(3267), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5299), 13, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5274), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5272), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332424,57 +330078,75 @@ static 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, - [123416] = 17, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109304] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(5407), 1, sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6339), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6341), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3315), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + STATE(3241), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5291), 12, + STATE(3269), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5272), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332486,56 +330158,59 @@ static 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, - [123494] = 17, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [109384] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5410), 1, + ACTIONS(5407), 1, sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6313), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6315), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3316), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6263), 1, + anon_sym_and2, + STATE(3242), 1, sym_comment, - STATE(3330), 1, + STATE(3271), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5299), 12, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5272), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332547,38 +330222,60 @@ static 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, - [123572] = 10, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [109466] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(3857), 1, sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3317), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6263), 1, + anon_sym_and2, + ACTIONS(6265), 1, + anon_sym_xor2, + STATE(3243), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5291), 23, + STATE(3273), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5272), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332590,49 +330287,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [123636] = 10, - ACTIONS(249), 1, + anon_sym_or2, + [109550] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(5407), 1, sym__newline, - STATE(3318), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3244), 1, sym_comment, - STATE(3331), 1, + STATE(3275), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5299), 23, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5272), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332644,42 +330338,40 @@ static 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, - [123700] = 9, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109622] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(5407), 1, sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3319), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3245), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5291), 29, + STATE(3277), 1, + aux_sym_shebang_repeat1, + ACTIONS(5274), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5272), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332691,48 +330383,66 @@ static 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, - [123762] = 9, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109688] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(5407), 1, sym__newline, - STATE(3320), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3246), 1, sym_comment, - STATE(3332), 1, + STATE(3279), 1, aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5299), 29, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5272), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332744,37 +330454,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, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [123824] = 6, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109762] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5407), 1, sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3321), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + STATE(3247), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5307), 37, + STATE(3281), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5272), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332786,50 +330515,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_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [123880] = 7, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109838] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5407), 1, sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3322), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + STATE(3248), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5307), 33, + STATE(3283), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5272), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332841,49 +330577,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_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [123938] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [109916] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3323), 1, + STATE(3249), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5307), 31, + ACTIONS(5278), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5276), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332895,62 +330620,44 @@ static 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, - [123998] = 11, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109982] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3324), 1, + STATE(3250), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5307), 19, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5278), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5276), 31, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332962,53 +330669,58 @@ static 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, - [124064] = 12, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110042] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3325), 1, + STATE(3251), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5307), 17, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5276), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333020,53 +330732,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [124132] = 13, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110110] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2104), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3326), 1, + STATE(3252), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5307), 16, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5278), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5276), 33, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333078,54 +330773,74 @@ static 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, - [124202] = 14, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110166] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3327), 1, + STATE(3253), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5307), 15, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5276), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333137,55 +330852,58 @@ static 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, - [124274] = 15, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [110244] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + ACTIONS(6295), 1, + anon_sym_and2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3328), 1, + STATE(3254), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5307), 14, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5276), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333197,56 +330915,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_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [124348] = 16, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [110324] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6339), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3329), 1, + ACTIONS(4900), 1, + aux_sym_unquoted_token2, + STATE(3255), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5307), 13, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 35, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333257,58 +330943,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [124424] = 17, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110378] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6339), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6341), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3330), 1, + STATE(3256), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5307), 12, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5276), 20, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333320,38 +331015,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - [124502] = 10, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110448] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3331), 1, + STATE(3257), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5307), 23, + ACTIONS(5278), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5276), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333363,42 +331059,65 @@ static 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, - [124566] = 9, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110512] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - STATE(2104), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3332), 1, + STATE(3258), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5307), 29, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5276), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333410,87 +331129,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_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [124628] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_list, - ACTIONS(6257), 1, - anon_sym_AT, - ACTIONS(6343), 1, - anon_sym_GT, - STATE(3333), 1, - sym_comment, - STATE(7070), 1, - sym__all_type, - STATE(8057), 1, - sym_param_cmd, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(7560), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [124692] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110584] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5087), 1, - aux_sym_cmd_identifier_token37, - STATE(3334), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3259), 1, sym_comment, - ACTIONS(1640), 40, - ts_builtin_sym_end, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5276), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333502,53 +331188,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [124744] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110658] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6241), 1, - aux_sym__immediate_decimal_token2, - STATE(3335), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3260), 1, sym_comment, - ACTIONS(1715), 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(1717), 30, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5276), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333561,43 +331250,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_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, - [124798] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [110734] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6345), 1, - aux_sym__immediate_decimal_token2, - STATE(3336), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3261), 1, sym_comment, - ACTIONS(1769), 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(1771), 30, + ACTIONS(5282), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5280), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333610,43 +331293,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_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, - [124852] = 4, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110800] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3337), 1, - sym_comment, - ACTIONS(1074), 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(1076), 30, + ACTIONS(5374), 1, sym__newline, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3262), 1, + sym_comment, + STATE(3285), 1, + aux_sym_shebang_repeat1, + ACTIONS(5286), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5284), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333658,68 +331349,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_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, - [124904] = 14, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110868] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6357), 1, - aux_sym_expr_binary_token13, - ACTIONS(6359), 1, - aux_sym_expr_binary_token14, - ACTIONS(6361), 1, - aux_sym_expr_binary_token15, - ACTIONS(6363), 1, - aux_sym_expr_binary_token16, - STATE(3338), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3263), 1, sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6351), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6353), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6355), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6349), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6365), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6367), 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(5131), 14, - ts_builtin_sym_end, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5282), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5280), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333731,171 +331397,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_token17, - aux_sym_expr_binary_token18, - [124975] = 9, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110928] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(5374), 1, sym__newline, - ACTIONS(6200), 1, - anon_sym_list, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(3339), 1, - sym_comment, - STATE(7089), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [125036] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_list, - STATE(3340), 1, - sym_comment, - STATE(3341), 1, - aux_sym__multiple_types_repeat2, - STATE(6783), 1, - sym__one_type, - STATE(7870), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [125097] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6375), 1, - anon_sym_list, - STATE(7466), 1, - sym__one_type, - STATE(7870), 1, - sym__type_annotation, - ACTIONS(6372), 2, - anon_sym_table, - anon_sym_record, - STATE(3341), 2, - sym_comment, - aux_sym__multiple_types_repeat2, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6369), 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, - [125156] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3342), 1, + STATE(3264), 1, sym_comment, - ACTIONS(5107), 12, - ts_builtin_sym_end, - sym__newline, + STATE(3286), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5286), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5284), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333906,94 +331450,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, - ACTIONS(2549), 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, - [125207] = 9, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110990] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6200), 1, - anon_sym_list, - STATE(3343), 1, - sym_comment, - STATE(3371), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(7093), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [125268] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3344), 1, + STATE(3265), 1, sym_comment, - ACTIONS(2285), 40, - ts_builtin_sym_end, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5280), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334005,52 +331513,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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [125317] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [111058] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3345), 1, - sym_comment, - ACTIONS(2218), 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(2220), 30, + ACTIONS(5374), 1, sym__newline, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3266), 1, + sym_comment, + STATE(3287), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5284), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334062,93 +331571,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, - 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, - [125368] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_list, - STATE(3341), 1, - aux_sym__multiple_types_repeat2, - STATE(3346), 1, - sym_comment, - STATE(6759), 1, - sym__one_type, - STATE(7870), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [125429] = 4, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [111128] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3347), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3267), 1, sym_comment, - ACTIONS(2230), 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(2232), 30, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5282), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5280), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334161,32 +331612,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_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, - [125480] = 5, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [111184] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5110), 1, + ACTIONS(5374), 1, sym__newline, - STATE(3348), 1, + STATE(3268), 1, sym_comment, - ACTIONS(5107), 11, + STATE(3288), 1, + aux_sym_shebang_repeat1, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5286), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334198,146 +331663,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - ACTIONS(2549), 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, - [125533] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6382), 1, - anon_sym_list, - STATE(3349), 1, - sym_comment, - STATE(3364), 1, - aux_sym_shebang_repeat1, - STATE(4734), 1, - sym__type_annotation, - ACTIONS(6380), 2, - anon_sym_table, - anon_sym_record, - STATE(4947), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6378), 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, - [125594] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6384), 1, - anon_sym_DOT, - ACTIONS(6386), 1, - aux_sym__immediate_decimal_token2, - STATE(3350), 1, - sym_comment, - ACTIONS(1536), 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(1538), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [125649] = 4, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [111242] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3351), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3269), 1, sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5131), 38, - ts_builtin_sym_end, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5280), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334349,48 +331741,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, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [125700] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [111320] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3352), 1, - sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6349), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 34, - ts_builtin_sym_end, + ACTIONS(5374), 1, sym__newline, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + STATE(3270), 1, + sym_comment, + STATE(3289), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5284), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334401,46 +331803,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, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [125753] = 6, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [111400] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3353), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + ACTIONS(6295), 1, + anon_sym_and2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3271), 1, sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6351), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6349), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 32, - ts_builtin_sym_end, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5280), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334452,63 +331866,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [125808] = 10, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [111480] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3354), 1, - sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6351), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6353), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6355), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6349), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6365), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6367), 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(5131), 18, - ts_builtin_sym_end, + ACTIONS(5374), 1, sym__newline, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6263), 1, + anon_sym_and2, + STATE(3272), 1, + sym_comment, + STATE(3290), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5284), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334519,50 +331929,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [125871] = 11, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [111562] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6357), 1, - aux_sym_expr_binary_token13, - STATE(3355), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + ACTIONS(6295), 1, + anon_sym_and2, + ACTIONS(6297), 1, + anon_sym_xor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3273), 1, sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6351), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6353), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6355), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6349), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6365), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6367), 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(5131), 17, - ts_builtin_sym_end, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5280), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334574,52 +331993,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, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [125936] = 12, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_or2, + [111644] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6357), 1, - aux_sym_expr_binary_token13, - ACTIONS(6359), 1, - aux_sym_expr_binary_token14, - STATE(3356), 1, - sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6351), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6353), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6355), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6349), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6365), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6367), 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(5131), 16, - ts_builtin_sym_end, + ACTIONS(3857), 1, sym__newline, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6263), 1, + anon_sym_and2, + ACTIONS(6265), 1, + anon_sym_xor2, + STATE(3274), 1, + sym_comment, + STATE(3291), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5284), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334630,52 +332057,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [126003] = 13, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_or2, + [111728] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6357), 1, - aux_sym_expr_binary_token13, - ACTIONS(6359), 1, - aux_sym_expr_binary_token14, - ACTIONS(6361), 1, - aux_sym_expr_binary_token15, - STATE(3357), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3275), 1, sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6351), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6353), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6355), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6349), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6365), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6367), 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(5131), 15, - ts_builtin_sym_end, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5280), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334687,56 +332107,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, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [126072] = 15, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [111798] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6357), 1, - aux_sym_expr_binary_token13, - ACTIONS(6359), 1, - aux_sym_expr_binary_token14, - ACTIONS(6361), 1, - aux_sym_expr_binary_token15, - ACTIONS(6363), 1, - aux_sym_expr_binary_token16, - ACTIONS(6388), 1, - aux_sym_expr_binary_token17, - STATE(3358), 1, - sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6351), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6353), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6355), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6349), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6365), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6367), 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(5131), 13, - ts_builtin_sym_end, + ACTIONS(5374), 1, sym__newline, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3276), 1, + sym_comment, + STATE(3292), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5284), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334747,35 +332165,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, - aux_sym_expr_binary_token18, - [126145] = 8, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [111870] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3359), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3277), 1, sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6351), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6353), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6349), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6367), 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(5131), 24, - ts_builtin_sym_end, + ACTIONS(5282), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5280), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334787,40 +332209,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_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - [126204] = 7, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [111934] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3360), 1, - sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6351), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6353), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6349), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 30, - ts_builtin_sym_end, + ACTIONS(5374), 1, sym__newline, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3278), 1, + sym_comment, + STATE(3293), 1, + aux_sym_shebang_repeat1, + ACTIONS(5286), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5284), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334831,31 +332264,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [126261] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112000] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3361), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3279), 1, sym_comment, - ACTIONS(2297), 40, - ts_builtin_sym_end, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5280), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334867,42 +332334,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [126310] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112072] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3362), 1, - sym_comment, - ACTIONS(2305), 40, - ts_builtin_sym_end, + ACTIONS(5374), 1, sym__newline, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + STATE(3280), 1, + sym_comment, + STATE(3294), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5284), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334913,205 +332393,116 @@ static const 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, - [126359] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6390), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6392), 1, - aux_sym__immediate_decimal_token2, - STATE(3363), 1, - sym_comment, - ACTIONS(1528), 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(1530), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [126414] = 9, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112146] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6382), 1, - anon_sym_list, - STATE(2498), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3364), 1, + STATE(3281), 1, sym_comment, - STATE(4843), 1, - sym__type_annotation, - ACTIONS(6380), 2, - anon_sym_table, - anon_sym_record, - STATE(4947), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6378), 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, - [126475] = 9, - ACTIONS(249), 1, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5280), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112220] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(5374), 1, sym__newline, - ACTIONS(6382), 1, - anon_sym_list, - STATE(3365), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + STATE(3282), 1, sym_comment, - STATE(3368), 1, + STATE(3295), 1, aux_sym_shebang_repeat1, - STATE(4733), 1, - sym__type_annotation, - ACTIONS(6380), 2, - anon_sym_table, - anon_sym_record, - STATE(4947), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6378), 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, - [126536] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3366), 1, - sym_comment, - ACTIONS(1715), 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(1717), 30, - sym__newline, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5284), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335123,48 +332514,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_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, - [126587] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112296] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3168), 1, - sym_cell_path, - STATE(3367), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3283), 1, sym_comment, - ACTIONS(1021), 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(1023), 27, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5280), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335177,143 +332575,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_in, - 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, - [126646] = 9, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [112372] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(5374), 1, sym__newline, - ACTIONS(6382), 1, - anon_sym_list, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(3368), 1, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + STATE(3284), 1, sym_comment, - STATE(4820), 1, - sym__type_annotation, - ACTIONS(6380), 2, - anon_sym_table, - anon_sym_record, - STATE(4947), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6378), 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, - [126707] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6200), 1, - anon_sym_list, - STATE(3339), 1, + STATE(3296), 1, aux_sym_shebang_repeat1, - STATE(3369), 1, - sym_comment, - STATE(7170), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [126768] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3370), 1, - sym_comment, - ACTIONS(1703), 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(1705), 30, - sym__newline, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5284), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335325,93 +332636,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_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, - [126819] = 9, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [112450] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6200), 1, - anon_sym_list, - STATE(2498), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(3371), 1, - sym_comment, - STATE(7101), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [126880] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3372), 1, + STATE(3285), 1, sym_comment, - ACTIONS(1769), 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(1771), 30, + ACTIONS(5322), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5320), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335424,139 +332679,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_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, - [126931] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6394), 1, - anon_sym_DOT, - ACTIONS(6396), 1, - aux_sym__immediate_decimal_token2, - STATE(3373), 1, - sym_comment, - ACTIONS(1536), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [126986] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6398), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6400), 1, - aux_sym__immediate_decimal_token2, - STATE(3374), 1, - sym_comment, - ACTIONS(1528), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [127041] = 4, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112516] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3375), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3286), 1, sym_comment, - ACTIONS(1826), 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(1828), 30, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5322), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5320), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335569,57 +332728,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_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, - [127092] = 9, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112576] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3376), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3287), 1, sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6351), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6353), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6349), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6365), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6367), 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(5131), 20, - ts_builtin_sym_end, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335631,567 +332790,242 @@ static const 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, - [127153] = 6, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112644] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6402), 1, - anon_sym_DOT, - ACTIONS(6404), 1, - aux_sym__immediate_decimal_token2, - STATE(3377), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3288), 1, sym_comment, - ACTIONS(1536), 3, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5322), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5320), 33, sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [127207] = 6, - ACTIONS(249), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112700] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6406), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6408), 1, - aux_sym__immediate_decimal_token2, - STATE(3378), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3289), 1, sym_comment, - ACTIONS(1528), 3, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5320), 15, sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [127261] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6410), 1, - anon_sym_DOT, - STATE(1426), 1, - sym_cell_path, - STATE(3379), 1, - sym_comment, - STATE(3405), 1, - aux_sym_cell_path_repeat1, - STATE(3494), 1, - sym_path, - ACTIONS(1670), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1672), 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, - [127319] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6412), 1, - aux_sym__immediate_decimal_token2, - STATE(3380), 1, - sym_comment, - ACTIONS(1596), 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(1598), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [127371] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6410), 1, - anon_sym_DOT, - STATE(3381), 1, - sym_comment, - STATE(3405), 1, - aux_sym_cell_path_repeat1, - STATE(3494), 1, - sym_path, - STATE(3532), 1, - sym_cell_path, - ACTIONS(1021), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1023), 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, - [127429] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_DOT, - ACTIONS(6416), 1, - aux_sym__immediate_decimal_token2, - STATE(3382), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 35, + anon_sym_SEMI, 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, - [127483] = 22, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3846), 1, - aux_sym_unquoted_token1, - ACTIONS(4024), 1, - anon_sym_DOT_DOT, - ACTIONS(5691), 1, - sym_val_date, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - STATE(3383), 1, - sym_comment, - STATE(5830), 1, - sym_val_variable, - STATE(5833), 1, - sym_unquoted, - STATE(5928), 1, - sym__val_number_decimal, - STATE(7610), 1, - sym_val_bool, - STATE(7794), 1, - sym__val_range, - STATE(7859), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3350), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4026), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5725), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2685), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2687), 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, - [127569] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4762), 1, - anon_sym_DOT_DOT2, - ACTIONS(4770), 1, - aux_sym_unquoted_token2, - ACTIONS(6420), 1, - sym_filesize_unit, - ACTIONS(6422), 1, - sym_duration_unit, - STATE(3384), 1, - sym_comment, - STATE(7534), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4764), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [127633] = 22, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3846), 1, - aux_sym_unquoted_token1, - ACTIONS(4024), 1, - anon_sym_DOT_DOT, - ACTIONS(5691), 1, - sym_val_date, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - STATE(3385), 1, - sym_comment, - STATE(5830), 1, - sym_val_variable, - STATE(5833), 1, - sym_unquoted, - STATE(5928), 1, - sym__val_number_decimal, - STATE(7610), 1, - sym_val_bool, - STATE(7794), 1, - sym__val_range, - STATE(7859), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3350), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4026), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5725), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2685), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2687), 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, - [127719] = 6, - ACTIONS(249), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [112778] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6424), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6426), 1, - aux_sym__immediate_decimal_token2, - STATE(3386), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + ACTIONS(6295), 1, + anon_sym_and2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3290), 1, sym_comment, - ACTIONS(1528), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 35, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5320), 14, + sym__newline, + anon_sym_SEMI, 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, - [127773] = 12, - ACTIONS(249), 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_xor2, + anon_sym_or2, + [112858] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6428), 1, - anon_sym_DOT, - STATE(3387), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + ACTIONS(6295), 1, + anon_sym_and2, + ACTIONS(6297), 1, + anon_sym_xor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3291), 1, sym_comment, - STATE(3601), 1, - sym__immediate_decimal, - ACTIONS(6233), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3534), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1524), 21, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5320), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336204,82 +333038,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127839] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token2, - STATE(3388), 1, - sym_comment, - ACTIONS(1596), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [127891] = 6, - ACTIONS(249), 1, + anon_sym_or2, + [112940] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6241), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 1, - anon_sym_DOT, - STATE(3389), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3292), 1, sym_comment, - ACTIONS(1715), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1717), 28, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5320), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336292,330 +333088,255 @@ static 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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127945] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6396), 1, - aux_sym__immediate_decimal_token2, - STATE(3390), 1, - sym_comment, - ACTIONS(1536), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [127997] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113010] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6386), 1, - aux_sym__immediate_decimal_token2, - STATE(3391), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3293), 1, sym_comment, - ACTIONS(1536), 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(1538), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [128049] = 8, - ACTIONS(249), 1, + ACTIONS(5322), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5320), 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113074] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6410), 1, - anon_sym_DOT, - STATE(1399), 1, - sym_cell_path, - STATE(3392), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3294), 1, sym_comment, - STATE(3405), 1, - aux_sym_cell_path_repeat1, - STATE(3494), 1, - sym_path, - ACTIONS(1664), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1668), 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, - [128107] = 4, - ACTIONS(249), 1, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5320), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113146] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3393), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3295), 1, sym_comment, - ACTIONS(1536), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [128156] = 7, - ACTIONS(249), 1, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5320), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113220] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6438), 1, - anon_sym_list, - STATE(3394), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3296), 1, sym_comment, - STATE(5371), 1, - sym__all_type, - ACTIONS(6436), 2, - anon_sym_table, - anon_sym_record, - STATE(5585), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6434), 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, - [128211] = 6, - ACTIONS(249), 1, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5320), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [113296] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6440), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6442), 1, + ACTIONS(6201), 1, aux_sym__immediate_decimal_token2, - STATE(3395), 1, + STATE(3297), 1, sym_comment, - ACTIONS(1528), 2, + ACTIONS(1755), 10, + anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [128264] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6444), 1, - anon_sym_DOLLAR, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6448), 1, - anon_sym_DOT, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - STATE(3396), 1, - sym_comment, - STATE(3706), 1, - sym__immediate_decimal, - ACTIONS(6450), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3694), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -336624,8 +333345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1524), 20, - ts_builtin_sym_end, + ACTIONS(1757), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336637,113 +333357,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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [128329] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3397), 1, - sym_comment, - ACTIONS(1528), 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(1530), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_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, - [128378] = 21, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3322), 1, - aux_sym_unquoted_token1, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5691), 1, - sym_val_date, - ACTIONS(5844), 1, - anon_sym_DOT_DOT, - ACTIONS(6456), 1, - anon_sym_DOLLAR, - STATE(3398), 1, - sym_comment, - STATE(5889), 1, - sym__val_number_decimal, - STATE(5989), 1, - sym_unquoted, - STATE(6183), 1, - sym_val_variable, - STATE(7610), 1, - sym_val_bool, - STATE(7622), 1, - sym__unquoted_anonymous_prefix, - STATE(7869), 1, - sym__val_range, - ACTIONS(3350), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5846), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5840), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2685), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2687), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -336752,806 +333376,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [128461] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - aux_sym__immediate_decimal_token2, - STATE(3399), 1, - sym_comment, - ACTIONS(1536), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [128512] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6458), 1, - sym__entry_separator, - STATE(3400), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2363), 36, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [128561] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6465), 1, - anon_sym_list, - STATE(3401), 1, - sym_comment, - STATE(7456), 1, - sym__type_annotation, - ACTIONS(6463), 2, - anon_sym_table, - anon_sym_record, - STATE(7430), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6461), 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, - [128616] = 5, - ACTIONS(249), 1, + [113350] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6467), 1, - aux_sym__immediate_decimal_token2, - STATE(3402), 1, + ACTIONS(6299), 1, + anon_sym_DASH2, + ACTIONS(6307), 1, + anon_sym_PLUS2, + STATE(3298), 1, sym_comment, - ACTIONS(1596), 3, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6301), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6305), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6309), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 29, sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [128667] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6469), 1, - anon_sym_DOT, - ACTIONS(6471), 1, - aux_sym__immediate_decimal_token2, - STATE(3403), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [128720] = 21, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3366), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3368), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3370), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3372), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3846), 1, - aux_sym_unquoted_token1, - ACTIONS(4024), 1, - anon_sym_DOT_DOT, - ACTIONS(5691), 1, - sym_val_date, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - STATE(3404), 1, - sym_comment, - STATE(5830), 1, - sym_val_variable, - STATE(5833), 1, - sym_unquoted, - STATE(5928), 1, - sym__val_number_decimal, - STATE(7610), 1, - sym_val_bool, - STATE(7794), 1, - sym__val_range, - STATE(7859), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3350), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4026), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5725), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2685), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2687), 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, - [128803] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6410), 1, - anon_sym_DOT, - STATE(3405), 1, - sym_comment, - STATE(3411), 1, - aux_sym_cell_path_repeat1, - STATE(3494), 1, - sym_path, - ACTIONS(1027), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1029), 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, - [128858] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_list, - STATE(3406), 1, - sym_comment, - STATE(7798), 1, - sym__type_annotation, - ACTIONS(6198), 2, - anon_sym_table, - anon_sym_record, - STATE(6678), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6196), 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, - [128913] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4614), 1, - anon_sym_DOT_DOT2, - ACTIONS(6473), 1, - sym_filesize_unit, - ACTIONS(6475), 1, - sym_duration_unit, - ACTIONS(6477), 1, - aux_sym_unquoted_token2, - STATE(3407), 1, - sym_comment, - ACTIONS(4616), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1628), 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(1640), 23, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [128972] = 4, - ACTIONS(249), 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_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113414] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3408), 1, + STATE(3299), 1, sym_comment, - ACTIONS(1536), 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(1538), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [129021] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1628), 1, + ACTIONS(6301), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6305), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5237), 32, sym__newline, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4762), 1, - anon_sym_DOT_DOT2, - ACTIONS(4842), 1, - aux_sym_unquoted_token2, - ACTIONS(6479), 1, - sym_filesize_unit, - ACTIONS(6481), 1, - sym_duration_unit, - STATE(3409), 1, - sym_comment, - STATE(7439), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4764), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [129084] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3410), 1, - sym_comment, - ACTIONS(1711), 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(1713), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [129133] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6483), 1, - anon_sym_DOT, - STATE(3494), 1, - sym_path, - ACTIONS(1031), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - STATE(3411), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1033), 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, - [129186] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6416), 1, - aux_sym__immediate_decimal_token2, - STATE(3412), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 35, + anon_sym_SEMI, 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, - [129237] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3413), 1, - sym_comment, - ACTIONS(1596), 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(1598), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [129286] = 5, - ACTIONS(249), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113472] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6486), 1, - aux_sym__immediate_decimal_token2, - STATE(3414), 1, + ACTIONS(6299), 1, + anon_sym_DASH2, + ACTIONS(6307), 1, + anon_sym_PLUS2, + STATE(3300), 1, sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 35, + ACTIONS(6301), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6305), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6309), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6311), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 25, + sym__newline, + anon_sym_SEMI, 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, - [129337] = 12, - ACTIONS(249), 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_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113538] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6444), 1, - anon_sym_DOLLAR, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6488), 1, - anon_sym_DOT, - STATE(3415), 1, + STATE(3301), 1, sym_comment, - STATE(3708), 1, - sym__immediate_decimal, - ACTIONS(6450), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3703), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - 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(1570), 20, - ts_builtin_sym_end, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5237), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337563,138 +333562,135 @@ static const uint16_t 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, - [129402] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3416), 1, - sym_comment, - ACTIONS(1528), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [129451] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6438), 1, - anon_sym_list, - STATE(3417), 1, - sym_comment, - STATE(5374), 1, - sym__all_type, - ACTIONS(6436), 2, - anon_sym_table, - anon_sym_record, - STATE(5585), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6434), 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, - [129506] = 11, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113592] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - STATE(3418), 1, + ACTIONS(6299), 1, + anon_sym_DASH2, + ACTIONS(6307), 1, + anon_sym_PLUS2, + ACTIONS(6319), 1, + anon_sym_bit_DASHand2, + ACTIONS(6321), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6323), 1, + anon_sym_bit_DASHor2, + STATE(3302), 1, sym_comment, - STATE(3574), 1, - sym__immediate_decimal, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3422), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1524), 21, + ACTIONS(6301), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6305), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6309), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6311), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6317), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6315), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [113668] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6299), 1, + anon_sym_DASH2, + ACTIONS(6307), 1, + anon_sym_PLUS2, + ACTIONS(6319), 1, + anon_sym_bit_DASHand2, + ACTIONS(6321), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6323), 1, + anon_sym_bit_DASHor2, + ACTIONS(6325), 1, + anon_sym_and2, + STATE(3303), 1, + sym_comment, + ACTIONS(6301), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6305), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6309), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6311), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6317), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6315), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337708,135 +333704,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, 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, - [129569] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3419), 1, - sym_comment, - ACTIONS(1596), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [129618] = 4, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [113746] = 18, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3420), 1, + ACTIONS(6299), 1, + anon_sym_DASH2, + ACTIONS(6307), 1, + anon_sym_PLUS2, + ACTIONS(6319), 1, + anon_sym_bit_DASHand2, + ACTIONS(6321), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6323), 1, + anon_sym_bit_DASHor2, + ACTIONS(6325), 1, + anon_sym_and2, + ACTIONS(6327), 1, + anon_sym_xor2, + STATE(3304), 1, sym_comment, - ACTIONS(1711), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 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, - [129667] = 11, - ACTIONS(249), 1, + ACTIONS(6301), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6305), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6309), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6311), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6317), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6315), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_or2, + [113826] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - STATE(3421), 1, + ACTIONS(6299), 1, + anon_sym_DASH2, + ACTIONS(6307), 1, + anon_sym_PLUS2, + STATE(3305), 1, sym_comment, - STATE(3564), 1, - sym__immediate_decimal, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3433), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1544), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_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), 21, + ACTIONS(6301), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6305), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6309), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6311), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6315), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337850,30 +333816,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, 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, - [129730] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113894] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3422), 1, + ACTIONS(6299), 1, + anon_sym_DASH2, + ACTIONS(6307), 1, + anon_sym_PLUS2, + STATE(3306), 1, sym_comment, - ACTIONS(2206), 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(2212), 28, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6301), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6305), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5237), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337886,38 +333858,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, + anon_sym_in2, 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, - [129778] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113956] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3423), 1, + ACTIONS(6299), 1, + anon_sym_DASH2, + ACTIONS(6307), 1, + anon_sym_PLUS2, + STATE(3307), 1, sym_comment, - ACTIONS(2113), 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(2119), 28, + ACTIONS(6301), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6305), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6309), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6311), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6317), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6315), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337930,38 +333927,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, - 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, - [129826] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114026] = 14, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3424), 1, + ACTIONS(6299), 1, + anon_sym_DASH2, + ACTIONS(6307), 1, + anon_sym_PLUS2, + ACTIONS(6319), 1, + anon_sym_bit_DASHand2, + STATE(3308), 1, sym_comment, - ACTIONS(2498), 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(2500), 28, + ACTIONS(6301), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6305), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6309), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6311), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6317), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6315), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337974,38 +333986,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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, - [129874] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114098] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3425), 1, + ACTIONS(6299), 1, + anon_sym_DASH2, + ACTIONS(6307), 1, + anon_sym_PLUS2, + ACTIONS(6319), 1, + anon_sym_bit_DASHand2, + ACTIONS(6321), 1, + anon_sym_bit_DASHxor2, + STATE(3309), 1, sym_comment, - ACTIONS(2426), 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(2428), 28, + ACTIONS(6301), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6305), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6309), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6311), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6317), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6315), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338018,34 +334046,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_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, - [129922] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [114172] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6490), 1, - anon_sym_RBRACK, - ACTIONS(6494), 1, - sym__entry_separator, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(3426), 1, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6221), 1, + anon_sym_AT, + ACTIONS(6329), 1, + anon_sym_GT2, + STATE(3310), 1, sym_comment, - ACTIONS(6492), 34, + STATE(7076), 1, + sym__all_type, + STATE(7857), 1, + sym_param_cmd, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(7488), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338075,18 +334103,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [129974] = 4, - ACTIONS(249), 1, + [114236] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3427), 1, + ACTIONS(6331), 1, + aux_sym__immediate_decimal_token2, + STATE(3311), 1, sym_comment, - ACTIONS(2446), 9, - anon_sym_DASH, + ACTIONS(1783), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338095,7 +334123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2448), 28, + ACTIONS(1785), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338113,9 +334141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + 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, @@ -338124,13 +334154,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, - [130022] = 4, - ACTIONS(249), 1, + [114290] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3428), 1, + ACTIONS(6333), 1, + anon_sym_DOLLAR, + ACTIONS(6335), 1, + anon_sym_LPAREN2, + ACTIONS(6337), 1, + anon_sym_DOT, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6343), 1, + aux_sym__immediate_decimal_token5, + STATE(3312), 1, sym_comment, - ACTIONS(2486), 9, - anon_sym_DASH, + STATE(3545), 1, + sym__immediate_decimal, + ACTIONS(6339), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3544), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1581), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338139,7 +334186,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(2488), 28, + ACTIONS(1591), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338151,15 +334199,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, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338168,57 +334210,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, - [130070] = 4, - ACTIONS(249), 1, + [114358] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3429), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(6205), 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, - [130118] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3430), 1, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + STATE(3313), 1, sym_comment, - ACTIONS(2414), 9, - anon_sym_DASH, + STATE(3424), 1, + sym__immediate_decimal, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3423), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1691), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338227,7 +334240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2416), 28, + ACTIONS(1693), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338240,14 +334253,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_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338256,13 +334265,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, - [130166] = 4, - ACTIONS(249), 1, + [114424] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3431), 1, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + STATE(3314), 1, sym_comment, - ACTIONS(2482), 9, - anon_sym_DASH, + STATE(3427), 1, + sym__immediate_decimal, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3425), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338271,7 +334295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2484), 28, + ACTIONS(1671), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338284,14 +334308,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_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338300,57 +334320,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, - [130214] = 4, - ACTIONS(249), 1, + [114490] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3432), 1, - sym_comment, - ACTIONS(1528), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(6205), 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, - [130262] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3433), 1, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + STATE(3315), 1, sym_comment, - ACTIONS(2524), 9, - anon_sym_DASH, + STATE(3430), 1, + sym__immediate_decimal, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3428), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1705), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338359,7 +334350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2526), 28, + ACTIONS(1707), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338372,14 +334363,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_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338388,62 +334375,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, - [130310] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3434), 1, - sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [130358] = 6, - ACTIONS(3), 1, + [114556] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(6496), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(3435), 1, + STATE(3316), 1, sym_comment, - ACTIONS(6492), 34, + ACTIONS(6345), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338478,60 +334420,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [130410] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3436), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 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, - [130458] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [114606] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2404), 1, - sym__entry_separator, - STATE(3437), 1, + STATE(3317), 1, sym_comment, - ACTIONS(2402), 36, + ACTIONS(6347), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338566,162 +334467,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [130506] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6471), 1, - aux_sym__immediate_decimal_token2, - STATE(3438), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [130556] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3439), 1, - sym_comment, - ACTIONS(2222), 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(2228), 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, - [130604] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6456), 1, - anon_sym_DOLLAR, - STATE(3440), 1, - sym_comment, - STATE(3666), 1, - sym__immediate_decimal, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3665), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1608), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1610), 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, - [130666] = 4, - ACTIONS(249), 1, + [114656] = 19, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3441), 1, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + ACTIONS(6295), 1, + anon_sym_and2, + ACTIONS(6297), 1, + anon_sym_xor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3318), 1, sym_comment, - ACTIONS(2551), 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(2553), 28, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5276), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338734,34 +334531,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_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, - [130714] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [114738] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(6500), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(3442), 1, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6195), 1, + sym__newline, + STATE(3319), 1, sym_comment, - ACTIONS(6492), 34, + STATE(3333), 1, + aux_sym_shebang_repeat1, + STATE(6760), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338791,224 +334582,30 @@ 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, - [130766] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - anon_sym_QMARK2, - STATE(3443), 1, - sym_comment, - ACTIONS(1042), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1044), 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, - [130816] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6504), 1, - anon_sym_QMARK2, - STATE(3444), 1, - sym_comment, - ACTIONS(1048), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1050), 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, - [130866] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4762), 1, - anon_sym_DOT_DOT2, - ACTIONS(4770), 1, - aux_sym_unquoted_token2, - ACTIONS(6506), 1, - sym_filesize_unit, - ACTIONS(6508), 1, - sym_duration_unit, - STATE(3445), 1, - sym_comment, - STATE(7534), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4764), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [130926] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6456), 1, - anon_sym_DOLLAR, - STATE(3446), 1, - sym_comment, - STATE(3668), 1, - sym__immediate_decimal, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3667), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1612), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1614), 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, - [130988] = 11, - ACTIONS(249), 1, + [114799] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(6335), 1, anon_sym_LPAREN2, - ACTIONS(6452), 1, + ACTIONS(6341), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, + ACTIONS(6343), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6456), 1, + ACTIONS(6349), 1, anon_sym_DOLLAR, - STATE(3447), 1, + STATE(3320), 1, sym_comment, - STATE(3690), 1, + STATE(3824), 1, sym__immediate_decimal, - ACTIONS(6498), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3781), 2, + STATE(3834), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1560), 8, + ACTIONS(1663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339017,7 +334614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1570), 20, + ACTIONS(1671), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -339030,6 +334627,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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339038,79 +334638,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [131050] = 11, - ACTIONS(249), 1, + [114864] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6456), 1, - anon_sym_DOLLAR, - STATE(3448), 1, + ACTIONS(6182), 1, + anon_sym_list, + STATE(3321), 1, sym_comment, - STATE(3672), 1, - sym__immediate_decimal, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3671), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1620), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1622), 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, - [131112] = 11, - ACTIONS(249), 1, + STATE(3324), 1, + aux_sym__multiple_types_repeat2, + STATE(7340), 1, + sym__one_type, + STATE(7669), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [114925] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6456), 1, - anon_sym_DOLLAR, - STATE(3449), 1, + STATE(3322), 1, sym_comment, - STATE(3880), 1, - sym__immediate_decimal, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3707), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 8, + ACTIONS(1739), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339119,8 +334706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1524), 20, - ts_builtin_sym_end, + ACTIONS(1741), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339132,101 +334718,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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [131174] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3450), 1, - sym_comment, - ACTIONS(1536), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 34, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [131222] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6456), 1, - anon_sym_DOLLAR, - STATE(3451), 1, - sym_comment, - STATE(3888), 1, - sym__immediate_decimal, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3673), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1544), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_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), 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, @@ -339235,66 +334737,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, - [131284] = 4, - ACTIONS(249), 1, + [114976] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3452), 1, - sym_comment, - ACTIONS(1528), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [131332] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3453), 1, + STATE(3323), 1, sym_comment, - ACTIONS(2422), 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(2424), 28, + ACTIONS(2383), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5135), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339306,345 +334761,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - 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, - [131380] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3454), 1, - sym_comment, - ACTIONS(1596), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [131428] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3455), 1, - sym_comment, - ACTIONS(1711), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 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, - [131476] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3456), 1, - sym_comment, - ACTIONS(1058), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1060), 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, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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, - [131524] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6510), 1, - aux_sym__immediate_decimal_token2, - STATE(3457), 1, - sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [131574] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3458), 1, - sym_comment, - ACTIONS(1062), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1064), 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, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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, - [131622] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4762), 1, - anon_sym_DOT_DOT2, - ACTIONS(4770), 1, - aux_sym_unquoted_token2, - ACTIONS(6512), 1, - sym_filesize_unit, - ACTIONS(6514), 1, - sym_duration_unit, - STATE(3459), 1, - sym_comment, - STATE(7534), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4764), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [131682] = 4, - ACTIONS(249), 1, + ACTIONS(2385), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [115029] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3460), 1, + ACTIONS(6359), 1, + anon_sym_list, + STATE(7545), 1, + sym__one_type, + STATE(7669), 1, + sym__type_annotation, + ACTIONS(6356), 2, + anon_sym_table, + anon_sym_record, + STATE(3324), 2, sym_comment, - ACTIONS(1038), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1040), 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, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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, - [131730] = 4, - ACTIONS(249), 1, + aux_sym__multiple_types_repeat2, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6353), 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, + [115088] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3461), 1, + STATE(3325), 1, sym_comment, - ACTIONS(2565), 9, - anon_sym_DASH, + ACTIONS(1783), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339653,7 +334852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2567), 28, + ACTIONS(1785), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339671,9 +334870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + 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, @@ -339682,57 +334883,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, - [131778] = 4, - ACTIONS(249), 1, + [115139] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3462), 1, + ACTIONS(6195), 1, + sym__newline, + ACTIONS(6366), 1, + anon_sym_list, + STATE(3326), 1, sym_comment, - ACTIONS(1054), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1056), 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, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_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, - [131826] = 4, - ACTIONS(249), 1, + STATE(3456), 1, + aux_sym_shebang_repeat1, + STATE(4778), 1, + sym__type_annotation, + ACTIONS(6364), 2, + anon_sym_table, + anon_sym_record, + STATE(4899), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6362), 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, + [115200] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3463), 1, + ACTIONS(6335), 1, + anon_sym_LPAREN2, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6343), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + STATE(3327), 1, sym_comment, - ACTIONS(2234), 9, - anon_sym_DASH, + STATE(3739), 1, + sym__immediate_decimal, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3737), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1705), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339741,7 +334965,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(2240), 28, + ACTIONS(1707), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339753,15 +334978,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, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339770,18 +334989,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, - [131874] = 6, - ACTIONS(3), 1, + [115265] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(6516), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(3464), 1, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6195), 1, + sym__newline, + STATE(3328), 1, sym_comment, - ACTIONS(6492), 34, + STATE(3345), 1, + aux_sym_shebang_repeat1, + STATE(7094), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -339811,18 +335039,16 @@ 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, - [131926] = 4, - ACTIONS(249), 1, + [115326] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3465), 1, + STATE(3329), 1, sym_comment, - ACTIONS(2557), 9, - anon_sym_DASH, + ACTIONS(1890), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339831,7 +335057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2559), 28, + ACTIONS(1892), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339849,9 +335075,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + 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, @@ -339860,63 +335088,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, - [131974] = 8, - ACTIONS(249), 1, + [115377] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3466), 1, + ACTIONS(6195), 1, + sym__newline, + ACTIONS(6366), 1, + anon_sym_list, + STATE(3330), 1, sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3621), 1, - sym_cell_path, - ACTIONS(1929), 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(1931), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [132029] = 6, - ACTIONS(249), 1, + STATE(3456), 1, + aux_sym_shebang_repeat1, + STATE(4753), 1, + sym__type_annotation, + ACTIONS(6364), 2, + anon_sym_table, + anon_sym_record, + STATE(4899), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6362), 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, + [115438] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6520), 1, - anon_sym_DOT, - ACTIONS(6522), 1, - aux_sym__immediate_decimal_token2, - STATE(3467), 1, + ACTIONS(6195), 1, + sym__newline, + ACTIONS(6366), 1, + anon_sym_list, + STATE(3326), 1, + aux_sym_shebang_repeat1, + STATE(3331), 1, + sym_comment, + STATE(4758), 1, + sym__type_annotation, + ACTIONS(6364), 2, + anon_sym_table, + anon_sym_record, + STATE(4899), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6362), 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, + [115499] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3332), 1, sym_comment, - ACTIONS(1715), 9, + ACTIONS(2129), 10, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -339926,8 +335208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1717), 25, - ts_builtin_sym_end, + ACTIONS(2131), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339939,9 +335220,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, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, @@ -339952,102 +335239,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, - [132080] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3468), 1, - sym_comment, - ACTIONS(1066), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1068), 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, - [132127] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3469), 1, - sym_comment, - ACTIONS(1070), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 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, - [132174] = 5, - ACTIONS(3), 1, + [115550] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(3470), 1, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6195), 1, + sym__newline, + STATE(3333), 1, sym_comment, - ACTIONS(6492), 34, + STATE(3456), 1, + aux_sym_shebang_repeat1, + STATE(7107), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -340077,902 +335289,15 @@ 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, - [132223] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1993), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1746), 1, - sym_cell_path, - STATE(3471), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1995), 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, - [132278] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1997), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1756), 1, - sym_cell_path, - STATE(3472), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1999), 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, - [132333] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1893), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1891), 1, - sym_cell_path, - STATE(3473), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1895), 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, - [132388] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1021), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(3474), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - STATE(3532), 1, - sym_cell_path, - ACTIONS(1023), 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, - [132443] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1757), 1, - sym_cell_path, - STATE(3475), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2003), 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, - [132498] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2005), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1777), 1, - sym_cell_path, - STATE(3476), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2007), 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, - [132553] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2009), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1783), 1, - sym_cell_path, - STATE(3477), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2011), 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, - [132608] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2013), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1791), 1, - sym_cell_path, - STATE(3478), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2015), 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, - [132663] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1664), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1399), 1, - sym_cell_path, - STATE(1693), 1, - sym_path, - STATE(3479), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1668), 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, - [132718] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3480), 1, - sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3591), 1, - sym_cell_path, - ACTIONS(1893), 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(1895), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [132773] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1670), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1426), 1, - sym_cell_path, - STATE(1693), 1, - sym_path, - STATE(3481), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1672), 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, - [132828] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3482), 1, - sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3648), 1, - sym_cell_path, - ACTIONS(1897), 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(1899), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [132883] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3483), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 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, - [132930] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1736), 1, - sym_cell_path, - STATE(3484), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1911), 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, - [132985] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3485), 1, - sym_comment, - ACTIONS(1528), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [133032] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1804), 1, - sym_cell_path, - STATE(3486), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1899), 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, - [133087] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1901), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1887), 1, - sym_cell_path, - STATE(3487), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1903), 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, - [133142] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3488), 1, - sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3613), 1, - sym_cell_path, - ACTIONS(1901), 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(1903), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [133197] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3489), 1, - sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [133244] = 6, - ACTIONS(249), 1, + [115611] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6528), 1, - aux_sym__immediate_decimal_token2, - STATE(3490), 1, + STATE(3334), 1, sym_comment, - ACTIONS(1703), 9, + ACTIONS(2183), 10, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -340982,8 +335307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1705), 25, - ts_builtin_sym_end, + ACTIONS(2185), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340995,9 +335319,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, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, @@ -341008,1604 +335338,1940 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133295] = 4, - ACTIONS(249), 1, + [115662] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3491), 1, + STATE(3335), 1, sym_comment, - ACTIONS(1536), 2, + ACTIONS(994), 8, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 34, + anon_sym_DOT, + ACTIONS(996), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, 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_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [133342] = 8, - ACTIONS(249), 1, + [115713] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3492), 1, + STATE(3336), 1, sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3619), 1, - sym_cell_path, - ACTIONS(1909), 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(1911), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [133397] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - anon_sym_DASH, - ACTIONS(6524), 1, + ACTIONS(998), 8, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1808), 1, - sym_cell_path, - STATE(3493), 1, - sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2097), 31, + ACTIONS(1000), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in2, 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, - [133452] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115764] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3494), 1, + STATE(3337), 1, sym_comment, - ACTIONS(1074), 3, - anon_sym_DASH, + ACTIONS(1002), 8, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1076), 33, + ACTIONS(1004), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in2, 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_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133499] = 8, - ACTIONS(249), 1, + [115815] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3495), 1, + STATE(3338), 1, sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3623), 1, - sym_cell_path, - ACTIONS(1997), 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(1999), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [133554] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6518), 1, + ACTIONS(990), 8, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(3496), 1, - sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3624), 1, - sym_cell_path, - ACTIONS(2001), 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(2003), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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(992), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, 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, - [133609] = 8, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115866] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3497), 1, + ACTIONS(6182), 1, + anon_sym_list, + STATE(3324), 1, + aux_sym__multiple_types_repeat2, + STATE(3339), 1, sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3625), 1, - sym_cell_path, - ACTIONS(2005), 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(2007), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [133664] = 8, - ACTIONS(249), 1, + STATE(7172), 1, + sym__one_type, + STATE(7669), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [115927] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3498), 1, + ACTIONS(6370), 1, + anon_sym_DASH2, + ACTIONS(6384), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + STATE(3340), 1, sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3661), 1, - sym_cell_path, - ACTIONS(2009), 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(2011), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [133719] = 8, - ACTIONS(249), 1, + ACTIONS(6368), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6374), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6378), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6382), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6386), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6372), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6376), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 16, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [116000] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, + ACTIONS(6392), 1, anon_sym_DOT, - STATE(3499), 1, - sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, + STATE(1642), 1, sym_path, - STATE(3627), 1, + STATE(3175), 1, sym_cell_path, - ACTIONS(2013), 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(2015), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [133774] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3500), 1, + STATE(3341), 1, sym_comment, - STATE(3527), 1, + STATE(3372), 1, aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3628), 1, - sym_cell_path, - ACTIONS(2017), 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(2019), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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(961), 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(963), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_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, - [133829] = 8, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + 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, + [116059] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, + ACTIONS(6394), 1, anon_sym_DOT, - STATE(3501), 1, + ACTIONS(6396), 1, + aux_sym__immediate_decimal_token2, + STATE(3342), 1, sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3629), 1, - sym_cell_path, - ACTIONS(2021), 7, + ACTIONS(1607), 11, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2023), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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_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, - [133884] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3502), 1, - sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3630), 1, - sym_cell_path, - ACTIONS(2043), 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(2045), 25, + aux_sym_unquoted_token2, + ACTIONS(1609), 27, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [133939] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - ACTIONS(6184), 1, - sym_filesize_unit, - ACTIONS(6186), 1, - sym_duration_unit, - ACTIONS(6530), 1, - anon_sym_DOT_DOT2, - STATE(3503), 1, - sym_comment, - ACTIONS(6532), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [133994] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3504), 1, - sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3631), 1, - sym_cell_path, - ACTIONS(2047), 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(2049), 25, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, - [134049] = 8, - ACTIONS(249), 1, + [116114] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3505), 1, + ACTIONS(6398), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6400), 1, + aux_sym__immediate_decimal_token2, + STATE(3343), 1, sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3632), 1, - sym_cell_path, - ACTIONS(2051), 7, + ACTIONS(1621), 11, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2053), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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_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, - [134104] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3506), 1, - sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3633), 1, - sym_cell_path, - ACTIONS(2055), 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(2057), 25, + aux_sym_unquoted_token2, + ACTIONS(1623), 27, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [134159] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3507), 1, - sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3634), 1, - sym_cell_path, - ACTIONS(2059), 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(2061), 25, - sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, anon_sym_true, anon_sym_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, - [134214] = 8, - ACTIONS(249), 1, + [116169] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2017), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1812), 1, - sym_cell_path, - STATE(3508), 1, + ACTIONS(6195), 1, + sym__newline, + ACTIONS(6366), 1, + anon_sym_list, + STATE(3330), 1, + aux_sym_shebang_repeat1, + STATE(3344), 1, sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2019), 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, - [134269] = 8, - ACTIONS(249), 1, + STATE(4752), 1, + sym__type_annotation, + ACTIONS(6364), 2, + anon_sym_table, + anon_sym_record, + STATE(4899), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6362), 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, + [116230] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2021), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1814), 1, - sym_cell_path, - STATE(3509), 1, + ACTIONS(6182), 1, + anon_sym_list, + ACTIONS(6195), 1, + sym__newline, + STATE(3345), 1, sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2023), 31, + STATE(3456), 1, + aux_sym_shebang_repeat1, + STATE(6753), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [116291] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6370), 1, + anon_sym_DASH2, + ACTIONS(6384), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + STATE(3346), 1, + sym_comment, + ACTIONS(6368), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6374), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6378), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6382), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6386), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6372), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6376), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116362] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3347), 1, + sym_comment, + ACTIONS(1755), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1757), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [134324] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + 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, + [116413] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3510), 1, + STATE(3348), 1, sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3635), 1, - sym_cell_path, - ACTIONS(2067), 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(2069), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [134379] = 8, - ACTIONS(249), 1, + ACTIONS(2214), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2218), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116464] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3511), 1, + STATE(3349), 1, sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3636), 1, - sym_cell_path, - ACTIONS(2083), 7, + ACTIONS(2222), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2224), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116515] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6335), 1, + anon_sym_LPAREN2, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6343), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6349), 1, anon_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(2085), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [134434] = 8, - ACTIONS(249), 1, + STATE(3350), 1, + sym_comment, + STATE(3815), 1, + sym__immediate_decimal, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3814), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1691), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1693), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [116580] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3512), 1, + ACTIONS(6370), 1, + anon_sym_DASH2, + ACTIONS(6384), 1, + anon_sym_PLUS2, + STATE(3351), 1, sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3637), 1, - sym_cell_path, - ACTIONS(2087), 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(2089), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [134489] = 8, - ACTIONS(249), 1, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6374), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6382), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6386), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116643] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3513), 1, + STATE(3352), 1, sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3638), 1, - sym_cell_path, - ACTIONS(2095), 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(2097), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [134544] = 8, - ACTIONS(249), 1, + ACTIONS(6374), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6382), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5237), 31, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116700] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1929), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1843), 1, - sym_cell_path, - STATE(3514), 1, + ACTIONS(6370), 1, + anon_sym_DASH2, + ACTIONS(6384), 1, + anon_sym_PLUS2, + STATE(3353), 1, sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1931), 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, - [134599] = 8, - ACTIONS(249), 1, + ACTIONS(6368), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6374), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6382), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6386), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6376), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 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, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116765] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1828), 1, - sym_cell_path, - STATE(3515), 1, + STATE(3354), 1, sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2045), 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, - [134654] = 8, - ACTIONS(249), 1, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5237), 33, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116818] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_DASH, - ACTIONS(6524), 1, + ACTIONS(6370), 1, + anon_sym_DASH2, + ACTIONS(6384), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6402), 1, + anon_sym_bit_DASHor2, + STATE(3355), 1, + sym_comment, + ACTIONS(6368), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6374), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6378), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6382), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6386), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6372), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6376), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [116893] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6370), 1, + anon_sym_DASH2, + ACTIONS(6384), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6402), 1, + anon_sym_bit_DASHor2, + ACTIONS(6404), 1, + anon_sym_and2, + STATE(3356), 1, + sym_comment, + ACTIONS(6368), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6374), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6378), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6382), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6386), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6372), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6376), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 14, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, + [116970] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6370), 1, + anon_sym_DASH2, + ACTIONS(6384), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6402), 1, + anon_sym_bit_DASHor2, + ACTIONS(6404), 1, + anon_sym_and2, + ACTIONS(6406), 1, + anon_sym_xor2, + STATE(3357), 1, + sym_comment, + ACTIONS(6368), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6374), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6378), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6382), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6386), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6372), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6376), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 13, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + [117049] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6370), 1, + anon_sym_DASH2, + ACTIONS(6384), 1, + anon_sym_PLUS2, + STATE(3358), 1, + sym_comment, + ACTIONS(6368), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6374), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6382), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6386), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6372), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6376), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117116] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6370), 1, + anon_sym_DASH2, + ACTIONS(6384), 1, + anon_sym_PLUS2, + STATE(3359), 1, + sym_comment, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6374), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6382), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5237), 30, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117177] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6370), 1, + anon_sym_DASH2, + ACTIONS(6384), 1, + anon_sym_PLUS2, + STATE(3360), 1, + sym_comment, + ACTIONS(6368), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6374), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6378), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6382), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6386), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6372), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6376), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 18, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117246] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6335), 1, + anon_sym_LPAREN2, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6343), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + STATE(3361), 1, + sym_comment, + STATE(3773), 1, + sym__immediate_decimal, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3772), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1581), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1591), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [117311] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6408), 1, anon_sym_DOT, - STATE(1693), 1, + STATE(1642), 1, sym_path, - STATE(1839), 1, + STATE(1679), 1, sym_cell_path, - STATE(3516), 1, + STATE(3362), 1, sym_comment, - STATE(3531), 1, + STATE(3390), 1, aux_sym_cell_path_repeat1, - ACTIONS(2049), 31, - anon_sym_DASH_DASH, + ACTIONS(1735), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(1737), 29, + anon_sym_PIPE, + anon_sym_DASH2, + anon_sym_in2, + 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, - [134709] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117369] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3517), 1, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token2, + STATE(3363), 1, sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - STATE(3599), 1, - sym_cell_path, - ACTIONS(1021), 7, + ACTIONS(1673), 11, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1023), 25, + aux_sym_unquoted_token2, + ACTIONS(1675), 27, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_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, - [134764] = 8, - ACTIONS(249), 1, + [117421] = 22, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2051), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1842), 1, - sym_cell_path, - STATE(3518), 1, + ACTIONS(3313), 1, + aux_sym_unquoted_token1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(3997), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3999), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4001), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4003), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4215), 1, + anon_sym_DOT_DOT, + ACTIONS(5722), 1, + sym_val_date, + ACTIONS(6412), 1, + anon_sym_DOLLAR, + STATE(3364), 1, sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2053), 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, - [134819] = 8, - ACTIONS(249), 1, + STATE(5906), 1, + sym__val_number_decimal, + STATE(5960), 1, + sym_val_variable, + STATE(5961), 1, + sym_unquoted, + STATE(7572), 1, + sym__val_range, + STATE(7585), 1, + sym__unquoted_anonymous_prefix, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4217), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5720), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2663), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2665), 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, + [117507] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DASH, - ACTIONS(6524), 1, + ACTIONS(6408), 1, anon_sym_DOT, - STATE(1693), 1, + STATE(1642), 1, sym_path, - STATE(1882), 1, + STATE(1688), 1, sym_cell_path, - STATE(3519), 1, + STATE(3365), 1, sym_comment, - STATE(3531), 1, + STATE(3390), 1, aux_sym_cell_path_repeat1, - ACTIONS(2057), 31, - anon_sym_DASH_DASH, + ACTIONS(961), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(963), 29, + anon_sym_PIPE, + anon_sym_DASH2, + anon_sym_in2, + 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, - [134874] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117565] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_DASH, - ACTIONS(6524), 1, + ACTIONS(6414), 1, anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1884), 1, - sym_cell_path, - STATE(3520), 1, + ACTIONS(6416), 1, + aux_sym__immediate_decimal_token2, + STATE(3366), 1, sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2061), 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, - [134929] = 8, - ACTIONS(249), 1, + ACTIONS(1607), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [117619] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2067), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1798), 1, - sym_cell_path, - STATE(3521), 1, + ACTIONS(6418), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6420), 1, + aux_sym__immediate_decimal_token2, + STATE(3367), 1, sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2069), 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, - [134984] = 8, - ACTIONS(249), 1, + ACTIONS(1621), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1623), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [117673] = 22, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2083), 1, - anon_sym_DASH, - ACTIONS(6524), 1, + ACTIONS(3313), 1, + aux_sym_unquoted_token1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(3997), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3999), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4001), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4003), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4215), 1, + anon_sym_DOT_DOT, + ACTIONS(5722), 1, + sym_val_date, + ACTIONS(6412), 1, + anon_sym_DOLLAR, + STATE(3368), 1, + sym_comment, + STATE(5906), 1, + sym__val_number_decimal, + STATE(5960), 1, + sym_val_variable, + STATE(5961), 1, + sym_unquoted, + STATE(7572), 1, + sym__val_range, + STATE(7585), 1, + sym__unquoted_anonymous_prefix, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4217), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5720), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2663), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2665), 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, + [117759] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6422), 1, anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(1799), 1, - sym_cell_path, - STATE(3522), 1, + ACTIONS(6424), 1, + aux_sym__immediate_decimal_token2, + STATE(3369), 1, sym_comment, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2085), 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, - [135039] = 8, - ACTIONS(249), 1, + ACTIONS(1607), 9, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [117813] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2087), 1, - anon_sym_DASH, - ACTIONS(6524), 1, + ACTIONS(6426), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6428), 1, + aux_sym__immediate_decimal_token2, + STATE(3370), 1, + sym_comment, + ACTIONS(1621), 9, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1623), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [117867] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6408), 1, anon_sym_DOT, - STATE(1693), 1, + STATE(1642), 1, sym_path, - STATE(1801), 1, + STATE(1657), 1, sym_cell_path, - STATE(3523), 1, + STATE(3371), 1, sym_comment, - STATE(3531), 1, + STATE(3390), 1, aux_sym_cell_path_repeat1, - ACTIONS(2089), 31, - anon_sym_DASH_DASH, + ACTIONS(1769), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(1771), 29, + anon_sym_PIPE, + anon_sym_DASH2, + anon_sym_in2, + 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, - [135094] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117925] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, + ACTIONS(6392), 1, anon_sym_DOT, - STATE(3524), 1, - sym_comment, - STATE(3527), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, + STATE(1642), 1, sym_path, - STATE(3622), 1, - sym_cell_path, - ACTIONS(1993), 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(1995), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [135149] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6522), 1, - aux_sym__immediate_decimal_token2, - STATE(3525), 1, + STATE(3372), 1, sym_comment, - ACTIONS(1715), 9, + STATE(3373), 1, + aux_sym_cell_path_repeat1, + ACTIONS(967), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -342615,8 +337281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1717), 25, - ts_builtin_sym_end, + ACTIONS(969), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342628,9 +337293,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_and, - anon_sym_xor, - anon_sym_or, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, @@ -342641,152 +337309,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [135197] = 8, - ACTIONS(249), 1, + [117981] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, - sym__newline, - ACTIONS(6534), 1, - anon_sym_DOT_DOT2, - ACTIONS(6538), 1, - sym_filesize_unit, - ACTIONS(6540), 1, - sym_duration_unit, - STATE(3526), 1, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(1642), 1, + sym_path, + STATE(3373), 2, sym_comment, - ACTIONS(6536), 2, + aux_sym_cell_path_repeat1, + ACTIONS(971), 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(973), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [135251] = 7, - ACTIONS(249), 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, + [118035] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3527), 1, + ACTIONS(6396), 1, + aux_sym__immediate_decimal_token2, + STATE(3374), 1, sym_comment, - STATE(3538), 1, - aux_sym_cell_path_repeat1, - STATE(3584), 1, - sym_path, - ACTIONS(1027), 7, + ACTIONS(1607), 11, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1029), 25, + aux_sym_unquoted_token2, + ACTIONS(1609), 27, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_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, - [135303] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6542), 1, - anon_sym_LPAREN2, - ACTIONS(6544), 1, - anon_sym_EQ2, - ACTIONS(6546), 1, - sym_short_flag_identifier, - STATE(3528), 1, - sym_comment, - ACTIONS(4927), 13, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LBRACE, - 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(4925), 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, - [135355] = 4, - ACTIONS(249), 1, + [118087] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3529), 1, + ACTIONS(6201), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6433), 1, + anon_sym_DOT, + STATE(3375), 1, sym_comment, - ACTIONS(2418), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(2420), 32, + ACTIONS(1755), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_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), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342799,35 +337436,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_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_if, 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, - [135401] = 5, - ACTIONS(249), 1, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [118141] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6548), 1, - aux_sym__immediate_decimal_token2, - STATE(3530), 1, + ACTIONS(6203), 1, + anon_sym_DOLLAR, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6435), 1, + anon_sym_DOT, + STATE(3376), 1, sym_comment, - ACTIONS(1769), 9, - anon_sym_DOT_DOT2, + STATE(3638), 1, + sym__immediate_decimal, + ACTIONS(6209), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3481), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1530), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342836,8 +337484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1771), 25, - ts_builtin_sym_end, + ACTIONS(1544), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342849,11 +337496,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_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342862,104 +337506,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [135449] = 7, - ACTIONS(249), 1, + [118207] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1027), 1, - anon_sym_DASH, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1693), 1, - sym_path, - STATE(3531), 1, + ACTIONS(6182), 1, + anon_sym_list, + STATE(3377), 1, sym_comment, - STATE(3539), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1029), 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, - [135501] = 4, - ACTIONS(249), 1, + STATE(7685), 1, + sym__type_annotation, + ACTIONS(6180), 2, + anon_sym_table, + anon_sym_record, + STATE(6312), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6178), 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, + [118262] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3532), 1, + ACTIONS(6437), 1, + anon_sym_DOT, + ACTIONS(6439), 1, + aux_sym__immediate_decimal_token2, + STATE(3378), 1, sym_comment, - ACTIONS(1078), 2, - anon_sym_DASH, + ACTIONS(1607), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(1080), 33, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 28, + anon_sym_DASH2, + anon_sym_in2, 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [135547] = 6, - ACTIONS(249), 1, + sym_duration_unit, + [118315] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6550), 1, - anon_sym_DOT_DOT2, - STATE(3533), 1, + ACTIONS(6441), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6443), 1, + aux_sym__immediate_decimal_token2, + STATE(3379), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(1621), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1623), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2234), 8, + sym_duration_unit, + [118368] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6333), 1, + anon_sym_DOLLAR, + ACTIONS(6335), 1, + anon_sym_LPAREN2, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6343), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6445), 1, + anon_sym_DOT, + STATE(3380), 1, + sym_comment, + STATE(3779), 1, + sym__immediate_decimal, + ACTIONS(6339), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3533), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1530), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342968,7 +337680,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(2240), 24, + ACTIONS(1544), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342980,11 +337693,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342993,17 +337701,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, - [135597] = 6, - ACTIONS(249), 1, + [118433] = 21, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6554), 1, - anon_sym_DOT_DOT2, - STATE(3534), 1, + ACTIONS(3313), 1, + aux_sym_unquoted_token1, + ACTIONS(3997), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3999), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4001), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4003), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4215), 1, + anon_sym_DOT_DOT, + ACTIONS(5722), 1, + sym_val_date, + ACTIONS(6412), 1, + anon_sym_DOLLAR, + STATE(3381), 1, sym_comment, - ACTIONS(6556), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2206), 8, + STATE(5906), 1, + sym__val_number_decimal, + STATE(5960), 1, + sym_val_variable, + STATE(5961), 1, + sym_unquoted, + STATE(7572), 1, + sym__val_range, + STATE(7585), 1, + sym__unquoted_anonymous_prefix, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4217), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5720), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -343012,23 +337753,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(2212), 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, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2665), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -343037,17 +337763,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, - [135647] = 6, - ACTIONS(249), 1, + [118516] = 21, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6558), 1, - anon_sym_DOT_DOT2, - STATE(3535), 1, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(3997), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3999), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4001), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4003), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5722), 1, + sym_val_date, + ACTIONS(5860), 1, + anon_sym_DOT_DOT, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + STATE(3382), 1, sym_comment, - ACTIONS(6560), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2113), 8, + STATE(5855), 1, + sym__val_number_decimal, + STATE(6054), 1, + sym_val_variable, + STATE(6055), 1, + sym_unquoted, + STATE(7706), 1, + sym__val_range, + STATE(7723), 1, + sym__unquoted_anonymous_prefix, + STATE(8000), 1, + sym_val_bool, + ACTIONS(3995), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5862), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5864), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -343056,23 +337815,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(2119), 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, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2665), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -343081,17 +337825,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, - [135697] = 6, - ACTIONS(249), 1, + [118599] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6562), 1, - anon_sym_DOT_DOT2, - STATE(3536), 1, + ACTIONS(6447), 1, + sym__entry_separator, + STATE(3383), 2, sym_comment, - ACTIONS(6564), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2222), 8, + aux_sym__multiple_types_repeat1, + ACTIONS(2320), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [118648] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + STATE(3384), 1, + sym_comment, + STATE(3619), 1, + sym__immediate_decimal, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3436), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1530), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -343100,7 +337900,7 @@ 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(1544), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343114,9 +337914,6 @@ 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_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -343125,142 +337922,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [135747] = 4, - ACTIONS(249), 1, + [118711] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3537), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4856), 1, + anon_sym_DOT_DOT2, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + ACTIONS(6450), 1, + sym_filesize_unit, + ACTIONS(6452), 1, + sym_duration_unit, + STATE(3385), 1, sym_comment, - ACTIONS(1628), 3, - anon_sym_GT, - anon_sym_DASH, + STATE(7503), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4858), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(1640), 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, - 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, - [135793] = 6, - ACTIONS(249), 1, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 25, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [118774] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6566), 1, - anon_sym_DOT, - STATE(3584), 1, - sym_path, - STATE(3538), 2, + ACTIONS(6424), 1, + aux_sym__immediate_decimal_token2, + STATE(3386), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 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(1033), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [135843] = 6, - ACTIONS(249), 1, + ACTIONS(1607), 9, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [118825] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1031), 1, - anon_sym_DASH, - ACTIONS(6569), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4856), 1, + anon_sym_DOT_DOT2, + ACTIONS(6454), 1, + sym_filesize_unit, + ACTIONS(6456), 1, + sym_duration_unit, + ACTIONS(6458), 1, + aux_sym_unquoted_token2, + STATE(3387), 1, + sym_comment, + STATE(7386), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4858), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [118888] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6460), 1, anon_sym_DOT, - STATE(1693), 1, + STATE(1471), 1, + sym_cell_path, + STATE(1978), 1, sym_path, - STATE(3539), 2, + STATE(3388), 1, sym_comment, + STATE(3403), 1, aux_sym_cell_path_repeat1, - ACTIONS(1033), 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, - [135893] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3540), 1, - sym_comment, - ACTIONS(2218), 9, + ACTIONS(961), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -343270,7 +338095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2220), 25, + ACTIONS(963), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343283,9 +338108,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_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, @@ -343296,223 +338121,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, - [135938] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3541), 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), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - 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, - [135983] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1090), 1, - anon_sym_DASH, - ACTIONS(6572), 1, - anon_sym_DOT_DOT2, - STATE(3542), 1, - sym_comment, - ACTIONS(6574), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1092), 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, - [136032] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5139), 1, - anon_sym_DASH, - ACTIONS(6572), 1, - anon_sym_DOT_DOT2, - STATE(3543), 1, - sym_comment, - ACTIONS(5137), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6574), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5127), 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, - [136083] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3544), 1, - sym_comment, - ACTIONS(1062), 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(1064), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - 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, - [136128] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3545), 1, - sym_comment, - ACTIONS(1058), 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(1060), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - 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, - [136173] = 4, - ACTIONS(249), 1, + [118945] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3546), 1, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + STATE(3389), 1, sym_comment, - ACTIONS(1715), 9, - anon_sym_DOT_DOT2, + STATE(3607), 1, + sym__immediate_decimal, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3431), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -343521,8 +338151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1717), 25, - ts_builtin_sym_end, + ACTIONS(1577), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343534,11 +338163,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_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -343547,224 +338173,625 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [136218] = 7, - ACTIONS(249), 1, + [119008] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, - sym_filesize_unit, - ACTIONS(6186), 1, - sym_duration_unit, - ACTIONS(6576), 1, - anon_sym_DOT_DOT2, - STATE(3547), 1, + ACTIONS(6408), 1, + anon_sym_DOT, + STATE(1642), 1, + sym_path, + STATE(3390), 1, sym_comment, - ACTIONS(6578), 2, + STATE(3391), 1, + aux_sym_cell_path_repeat1, + ACTIONS(967), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(969), 29, + anon_sym_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 29, + [119063] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6462), 1, + anon_sym_DOT, + STATE(1642), 1, + sym_path, + STATE(3391), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(971), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(973), 29, + anon_sym_PIPE, + anon_sym_DASH2, + anon_sym_in2, + 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, - [136269] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119116] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6580), 1, - anon_sym_QMARK2, - STATE(3548), 1, + STATE(3392), 1, sym_comment, - ACTIONS(1042), 8, + ACTIONS(1607), 11, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1044), 25, + aux_sym_unquoted_token2, + ACTIONS(1609), 27, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_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, - [136316] = 4, - ACTIONS(249), 1, + [119165] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3549), 1, + ACTIONS(6469), 1, + anon_sym_list, + STATE(3393), 1, + sym_comment, + STATE(7433), 1, + sym__type_annotation, + ACTIONS(6467), 2, + anon_sym_table, + anon_sym_record, + STATE(7413), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6465), 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, + [119220] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6475), 1, + anon_sym_list, + STATE(3394), 1, + sym_comment, + STATE(5367), 1, + sym__all_type, + ACTIONS(6473), 2, + anon_sym_table, + anon_sym_record, + STATE(5574), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6471), 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, + [119275] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6416), 1, + aux_sym__immediate_decimal_token2, + STATE(3395), 1, + sym_comment, + ACTIONS(1607), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [119326] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6477), 1, + aux_sym__immediate_decimal_token2, + STATE(3396), 1, + sym_comment, + ACTIONS(1673), 9, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1675), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [119377] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3397), 1, sym_comment, - ACTIONS(1038), 8, + ACTIONS(1621), 11, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1040), 26, + aux_sym_unquoted_token2, + ACTIONS(1623), 27, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - anon_sym_QMARK2, aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_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, - [136361] = 5, - ACTIONS(249), 1, + [119426] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6582), 1, - anon_sym_QMARK2, - STATE(3550), 1, + ACTIONS(6475), 1, + anon_sym_list, + STATE(3398), 1, + sym_comment, + STATE(5368), 1, + sym__all_type, + ACTIONS(6473), 2, + anon_sym_table, + anon_sym_record, + STATE(5574), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6471), 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, + [119481] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6479), 1, + aux_sym__immediate_decimal_token2, + STATE(3399), 1, + sym_comment, + ACTIONS(1673), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1675), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [119532] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3400), 1, sym_comment, - ACTIONS(1048), 8, + ACTIONS(1673), 11, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1050), 25, + aux_sym_unquoted_token2, + ACTIONS(1675), 27, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_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, - [136408] = 6, - ACTIONS(249), 1, + [119581] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6584), 1, - sym_long_flag_identifier, - ACTIONS(6586), 1, - anon_sym_EQ2, - STATE(3551), 1, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + ACTIONS(6481), 1, + sym_filesize_unit, + ACTIONS(6483), 1, + sym_duration_unit, + ACTIONS(6485), 1, + aux_sym_unquoted_token2, + STATE(3401), 1, sym_comment, - ACTIONS(4937), 16, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 9, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1721), 23, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [119640] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3402), 1, + sym_comment, + ACTIONS(1763), 11, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - ACTIONS(4939), 16, + aux_sym_unquoted_token2, + ACTIONS(1765), 27, sym_raw_string_begin, - aux_sym_cmd_identifier_token39, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_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, - [136457] = 4, - ACTIONS(249), 1, + [119689] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3552), 1, + ACTIONS(6460), 1, + anon_sym_DOT, + STATE(1978), 1, + sym_path, + STATE(3403), 1, sym_comment, - ACTIONS(2230), 9, + STATE(3415), 1, + aux_sym_cell_path_repeat1, + ACTIONS(967), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -343774,7 +338801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2232), 25, + ACTIONS(969), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343787,9 +338814,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_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, @@ -343800,13 +338827,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, - [136502] = 4, - ACTIONS(249), 1, + [119743] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3553), 1, + ACTIONS(6487), 1, + anon_sym_DOT, + STATE(3404), 1, sym_comment, - ACTIONS(1703), 9, + STATE(3451), 1, + aux_sym_cell_path_repeat1, + STATE(3559), 1, + sym_path, + STATE(3603), 1, + sym_cell_path, + ACTIONS(1769), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, + ACTIONS(1771), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119799] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3405), 1, + sym_comment, + ACTIONS(2472), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -343815,8 +338890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1705), 25, - ts_builtin_sym_end, + ACTIONS(2474), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343828,11 +338902,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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -343841,13 +338919,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, - [136547] = 4, - ACTIONS(249), 1, + [119847] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3554), 1, + STATE(3406), 1, sym_comment, - ACTIONS(1826), 9, + ACTIONS(1607), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [119895] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3407), 1, + sym_comment, + ACTIONS(2476), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -343856,8 +338978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1828), 25, - ts_builtin_sym_end, + ACTIONS(2478), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343869,11 +338990,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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -343882,13 +339007,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, - [136592] = 4, - ACTIONS(249), 1, + [119943] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3555), 1, + STATE(3408), 1, sym_comment, - ACTIONS(1769), 9, - anon_sym_DOT_DOT2, + ACTIONS(2371), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -343897,8 +339022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1771), 25, - ts_builtin_sym_end, + ACTIONS(2373), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343910,11 +339034,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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -343923,262 +339051,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [136637] = 7, - ACTIONS(249), 1, + [119991] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, - sym_filesize_unit, - ACTIONS(6186), 1, - sym_duration_unit, - ACTIONS(6588), 1, - anon_sym_DOT_DOT2, - STATE(3556), 1, + STATE(3409), 1, sym_comment, - ACTIONS(6536), 2, + ACTIONS(1621), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1623), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [136688] = 6, - ACTIONS(249), 1, + sym_duration_unit, + [120039] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6590), 1, + ACTIONS(6487), 1, anon_sym_DOT, - STATE(3744), 1, - sym_path, - STATE(3557), 2, + STATE(3410), 1, sym_comment, + STATE(3451), 1, aux_sym_cell_path_repeat1, - ACTIONS(1031), 3, - anon_sym_GT, - anon_sym_DASH, + STATE(3559), 1, + sym_path, + STATE(3590), 1, + sym_cell_path, + ACTIONS(961), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(1033), 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, - [136736] = 4, - ACTIONS(249), 1, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(963), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120095] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3558), 1, + STATE(3411), 1, sym_comment, - ACTIONS(1066), 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(1068), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [136780] = 4, - ACTIONS(249), 1, + ACTIONS(1673), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1675), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [120143] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3559), 1, + STATE(3412), 1, sym_comment, - ACTIONS(1070), 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(1072), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [136824] = 5, - ACTIONS(3), 1, + ACTIONS(1763), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1765), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [120191] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(3560), 1, + ACTIONS(6487), 1, + anon_sym_DOT, + STATE(3413), 1, sym_comment, - ACTIONS(1092), 10, - sym_raw_string_begin, - 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(1090), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [136870] = 6, - ACTIONS(3), 1, + STATE(3451), 1, + aux_sym_cell_path_repeat1, + STATE(3559), 1, + sym_path, + STATE(3604), 1, + sym_cell_path, + ACTIONS(1735), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(1737), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120247] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(3561), 1, + ACTIONS(6439), 1, + aux_sym__immediate_decimal_token2, + STATE(3414), 1, sym_comment, - ACTIONS(1090), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(1092), 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, - [136918] = 4, - ACTIONS(249), 1, + ACTIONS(1607), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [120297] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3562), 1, + ACTIONS(6489), 1, + anon_sym_DOT, + STATE(1978), 1, + sym_path, + STATE(3415), 2, sym_comment, - ACTIONS(5139), 9, - anon_sym_DASH, + aux_sym_cell_path_repeat1, + ACTIONS(971), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344187,7 +339344,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(5137), 24, + ACTIONS(973), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344199,11 +339357,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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -344212,55 +339370,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [136962] = 6, - ACTIONS(249), 1, + [120349] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1090), 1, - sym__newline, - ACTIONS(6593), 1, + ACTIONS(6492), 1, + aux_sym__immediate_decimal_token2, + STATE(3416), 1, + sym_comment, + ACTIONS(1673), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - STATE(3563), 1, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1675), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [120399] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4856), 1, + anon_sym_DOT_DOT2, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + ACTIONS(6494), 1, + sym_filesize_unit, + ACTIONS(6496), 1, + sym_duration_unit, + STATE(3417), 1, sym_comment, - ACTIONS(6595), 2, + STATE(7503), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4858), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1092), 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, - [137010] = 4, - ACTIONS(249), 1, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [120461] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6498), 1, + anon_sym_RBRACK, + ACTIONS(6502), 1, + sym__entry_separator, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(3418), 1, + sym_comment, + ACTIONS(6500), 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, + [120513] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3564), 1, + ACTIONS(6335), 1, + anon_sym_LPAREN2, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6343), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + STATE(3419), 1, sym_comment, - ACTIONS(2246), 9, - anon_sym_DASH, + STATE(3972), 1, + sym__immediate_decimal, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3808), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344269,7 +339542,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(2250), 24, + ACTIONS(1577), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344281,11 +339555,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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -344294,178 +339563,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, - [137054] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(3565), 1, - sym_comment, - ACTIONS(2285), 10, - sym_raw_string_begin, - 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(2281), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [137100] = 5, + [120575] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3566), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(6504), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(3420), 1, sym_comment, - ACTIONS(2297), 10, - sym_raw_string_begin, - 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(2293), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [137146] = 5, + ACTIONS(6500), 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, + [120627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3567), 1, + ACTIONS(2419), 1, + sym__entry_separator, + STATE(3421), 1, sym_comment, - ACTIONS(2305), 10, - sym_raw_string_begin, + ACTIONS(2417), 36, 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(2303), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [137192] = 6, - ACTIONS(249), 1, + 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, + [120675] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6522), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6597), 1, - anon_sym_DOT, - STATE(3568), 1, + STATE(3422), 1, sym_comment, - ACTIONS(1715), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1717), 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, - [137240] = 4, - ACTIONS(249), 1, + ACTIONS(1607), 9, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [120723] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3569), 1, + STATE(3423), 1, sym_comment, - ACTIONS(1788), 9, - anon_sym_DASH, + ACTIONS(2391), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344474,7 +339712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1796), 24, + ACTIONS(2393), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344488,9 +339726,13 @@ static const uint16_t ts_small_parse_table[] = { 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -344499,139 +339741,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, - [137284] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(3570), 1, - sym_comment, - ACTIONS(2281), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2285), 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, - [137332] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3571), 1, - sym_comment, - ACTIONS(2293), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2297), 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, - [137380] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3572), 1, - sym_comment, - ACTIONS(2303), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2305), 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, - [137428] = 4, - ACTIONS(249), 1, + [120771] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3573), 1, + STATE(3424), 1, sym_comment, - ACTIONS(2277), 9, - anon_sym_DASH, + ACTIONS(2413), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344640,7 +339756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2279), 24, + ACTIONS(2415), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344654,9 +339770,13 @@ static const uint16_t ts_small_parse_table[] = { 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -344665,13 +339785,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, - [137472] = 4, - ACTIONS(249), 1, + [120819] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3574), 1, + STATE(3425), 1, sym_comment, - ACTIONS(1842), 9, - anon_sym_DASH, + ACTIONS(2421), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344680,7 +339800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1850), 24, + ACTIONS(2423), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344694,9 +339814,13 @@ static const uint16_t ts_small_parse_table[] = { 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -344705,265 +339829,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, - [137516] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6599), 1, - anon_sym_LBRACK2, - STATE(3575), 1, - sym_comment, - ACTIONS(2355), 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(2359), 24, - sym_raw_string_begin, - anon_sym_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_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, - [137562] = 7, - ACTIONS(249), 1, + [120867] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3557), 1, - aux_sym_cell_path_repeat1, - STATE(3576), 1, + STATE(3426), 1, sym_comment, - STATE(3744), 1, - sym_path, - ACTIONS(1027), 3, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(1621), 9, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(1029), 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, - [137612] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(1275), 1, - sym_cell_path, - STATE(1693), 1, - sym_path, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - STATE(3577), 1, - sym_comment, - ACTIONS(1023), 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, - [137662] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6603), 1, - anon_sym_EQ2, - STATE(3578), 1, - sym_comment, - ACTIONS(4947), 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(4945), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [137708] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6477), 1, - aux_sym_unquoted_token2, - STATE(3579), 1, - sym_comment, - ACTIONS(1628), 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(1640), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [137754] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5223), 1, - sym__newline, - ACTIONS(5226), 1, - anon_sym_LBRACE, - ACTIONS(6593), 1, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - STATE(3580), 1, - sym_comment, - ACTIONS(6595), 2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1623), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5228), 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, - [137804] = 4, - ACTIONS(249), 1, + sym_duration_unit, + [120915] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3581), 1, + STATE(3427), 1, sym_comment, - ACTIONS(2335), 9, - anon_sym_DASH, + ACTIONS(2425), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344972,7 +339888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2339), 24, + ACTIONS(2427), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344986,9 +339902,13 @@ static const uint16_t ts_small_parse_table[] = { 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -344997,225 +339917,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, - [137848] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3582), 1, - sym_comment, - ACTIONS(2291), 10, - sym_raw_string_begin, - 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(2289), 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, - [137892] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6605), 1, - anon_sym_EQ2, - STATE(3583), 1, - sym_comment, - ACTIONS(4991), 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(4989), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [137938] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3584), 1, - sym_comment, - ACTIONS(1074), 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(1076), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [137982] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3585), 1, - sym_comment, - ACTIONS(2289), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token4, - ACTIONS(2291), 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, - [138026] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5137), 1, - anon_sym_EQ_GT, - ACTIONS(6607), 1, - anon_sym_DOT_DOT2, - STATE(3586), 1, - sym_comment, - ACTIONS(6609), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5127), 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, - [138073] = 8, - ACTIONS(249), 1, + [120963] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3587), 1, + STATE(3428), 1, sym_comment, - STATE(3780), 1, - sym_cell_path, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1668), 26, + ACTIONS(2429), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2431), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -345228,115 +339945,84 @@ static const uint16_t ts_small_parse_table[] = { 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, - [138124] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3588), 1, - sym_comment, - ACTIONS(4997), 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(4995), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_if, 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, - [138167] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121011] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3589), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(6506), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(3429), 1, sym_comment, - ACTIONS(5085), 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(5083), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [138210] = 8, - ACTIONS(249), 1, + ACTIONS(6500), 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, + [121063] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3590), 1, + STATE(3430), 1, sym_comment, - STATE(3790), 1, - sym_cell_path, - ACTIONS(1670), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1672), 26, + ACTIONS(2433), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2435), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -345349,429 +340035,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_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, - [138261] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3591), 1, - sym_comment, - ACTIONS(1897), 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(1899), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [138304] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3592), 1, - sym_comment, - ACTIONS(2289), 2, - sym__newline, - aux_sym_unquoted_token4, - ACTIONS(2291), 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, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [138347] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3593), 1, - sym_comment, - ACTIONS(2547), 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(2549), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [138390] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5137), 1, + anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, - ACTIONS(6611), 1, - anon_sym_DOT_DOT2, - STATE(3594), 1, - sym_comment, - ACTIONS(6595), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5127), 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, - [138437] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2281), 1, - anon_sym_EQ_GT, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(3595), 1, - sym_comment, - ACTIONS(2285), 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, - [138484] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2293), 1, - anon_sym_EQ_GT, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3596), 1, - sym_comment, - ACTIONS(2297), 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, - [138531] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - ACTIONS(2303), 1, + anon_sym_RBRACE, anon_sym_EQ_GT, - STATE(3597), 1, - sym_comment, - ACTIONS(2305), 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, - [138578] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3598), 1, - sym_comment, - ACTIONS(2510), 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(2512), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [138621] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3599), 1, - sym_comment, - ACTIONS(1078), 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(1080), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [138664] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3600), 1, - sym_comment, - ACTIONS(5077), 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(5075), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [138707] = 6, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121111] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6613), 1, - anon_sym_DOT_DOT2, - STATE(3601), 1, + STATE(3431), 1, sym_comment, - ACTIONS(6615), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1842), 8, + ACTIONS(2441), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -345780,7 +340066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1850), 21, + ACTIONS(2443), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -345793,7 +340079,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_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -345802,173 +340095,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, - [138754] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3602), 1, - sym_comment, - ACTIONS(2289), 2, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - ACTIONS(2291), 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, - [138797] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3603), 1, - sym_comment, - ACTIONS(5053), 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(5051), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [138840] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3604), 1, - sym_comment, - ACTIONS(1628), 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(1640), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [138883] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3605), 1, - sym_comment, - ACTIONS(1090), 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(1092), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [138926] = 4, - ACTIONS(249), 1, + [121159] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3606), 1, + STATE(3432), 1, sym_comment, - ACTIONS(1058), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1060), 29, - ts_builtin_sym_end, + ACTIONS(2375), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2377), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -345980,190 +340122,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_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, - [138969] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3607), 1, - sym_comment, - ACTIONS(2418), 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(2420), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [139012] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3608), 1, - sym_comment, - 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), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [139055] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3609), 1, - sym_comment, - ACTIONS(5061), 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(5059), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [139098] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3610), 1, - sym_comment, - ACTIONS(5099), 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(5097), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [139141] = 4, - ACTIONS(249), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121207] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3611), 1, + STATE(3433), 1, sym_comment, - ACTIONS(1062), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1064), 29, - ts_builtin_sym_end, + ACTIONS(2167), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2173), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346175,34 +340166,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_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, - [139184] = 4, - ACTIONS(249), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121255] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3612), 1, + STATE(3434), 1, sym_comment, - ACTIONS(1038), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1040), 29, - ts_builtin_sym_end, + ACTIONS(2175), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2181), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346214,153 +340210,87 @@ static const uint16_t ts_small_parse_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_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, - [139227] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3613), 1, - sym_comment, - ACTIONS(1909), 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(1911), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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_if, 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, - [139270] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2281), 1, - sym__newline, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(3614), 1, - sym_comment, - ACTIONS(2285), 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, - [139317] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121303] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3615), 1, + ACTIONS(4902), 1, + anon_sym_DOT, + STATE(1702), 1, + aux_sym_cell_path_repeat1, + STATE(1894), 1, + sym_path, + STATE(3175), 1, + sym_cell_path, + STATE(3435), 1, sym_comment, - ACTIONS(2539), 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(2541), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [139360] = 4, - ACTIONS(249), 1, + ACTIONS(961), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(963), 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_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121359] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3616), 1, + STATE(3436), 1, sym_comment, - ACTIONS(1054), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1056), 29, - ts_builtin_sym_end, + ACTIONS(2133), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_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), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346372,36 +340302,127 @@ static const uint16_t ts_small_parse_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_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, - [139403] = 5, - ACTIONS(249), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121407] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6617), 1, - anon_sym_QMARK2, - STATE(3617), 1, + STATE(3437), 1, sym_comment, - ACTIONS(1042), 3, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(1673), 9, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(1044), 28, - ts_builtin_sym_end, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1675), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [121455] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3438), 1, + sym_comment, + ACTIONS(1763), 9, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1765), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [121503] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3439), 1, + sym_comment, + ACTIONS(2159), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2165), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346413,34 +340434,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_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, - [139448] = 5, - ACTIONS(249), 1, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121551] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6619), 1, - anon_sym_QMARK2, - STATE(3618), 1, + ACTIONS(6335), 1, + anon_sym_LPAREN2, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6343), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + STATE(3440), 1, sym_comment, - ACTIONS(1048), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1050), 28, + STATE(3973), 1, + sym__immediate_decimal, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3788), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1530), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1544), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346453,306 +340494,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [121613] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(6508), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(3441), 1, + sym_comment, + ACTIONS(6500), 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, + [121665] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6510), 1, anon_sym_DOT, - [139493] = 4, - ACTIONS(249), 1, + STATE(3559), 1, + sym_path, + STATE(3442), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(971), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(973), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121716] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3619), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3443), 1, sym_comment, - ACTIONS(2569), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3703), 1, + sym_cell_path, + ACTIONS(1976), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2571), 25, + ACTIONS(1978), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [139536] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3620), 1, - sym_comment, - ACTIONS(2543), 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(2545), 25, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139579] = 4, - ACTIONS(249), 1, + [121771] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3621), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3444), 1, sym_comment, - ACTIONS(2561), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3676), 1, + sym_cell_path, + ACTIONS(1913), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2563), 25, + ACTIONS(1915), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [139622] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3622), 1, - sym_comment, - ACTIONS(2001), 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(2003), 25, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139665] = 4, - ACTIONS(249), 1, + [121826] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3623), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3445), 1, sym_comment, - ACTIONS(2535), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3707), 1, + sym_cell_path, + ACTIONS(1933), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2537), 25, + ACTIONS(1935), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [139708] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3624), 1, - sym_comment, - ACTIONS(2466), 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(2468), 25, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139751] = 4, - ACTIONS(249), 1, + [121881] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3625), 1, + STATE(3446), 1, + sym_comment, + ACTIONS(1621), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1623), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [121928] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3447), 1, sym_comment, - ACTIONS(2017), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3644), 1, + sym_cell_path, + ACTIONS(1996), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2019), 25, + ACTIONS(1998), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139794] = 6, - ACTIONS(249), 1, + [121983] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6621), 1, - anon_sym_DOT_DOT2, - STATE(3626), 1, + ACTIONS(6515), 1, + anon_sym_DOT, + ACTIONS(6517), 1, + aux_sym__immediate_decimal_token2, + STATE(3448), 1, sym_comment, - ACTIONS(6623), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1788), 8, + ACTIONS(1755), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -346761,7 +340843,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(1796), 21, + ACTIONS(1757), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346773,8 +340856,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_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + 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, @@ -346783,2211 +340869,1481 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139841] = 4, - ACTIONS(249), 1, + [122034] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3627), 1, + STATE(3449), 1, sym_comment, - ACTIONS(2047), 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(2049), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [139884] = 4, - ACTIONS(249), 1, + ACTIONS(1673), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1675), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [122081] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3628), 1, + STATE(3450), 1, sym_comment, - ACTIONS(2434), 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(2436), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [139927] = 4, - ACTIONS(249), 1, + ACTIONS(1763), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1765), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [122128] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3629), 1, + ACTIONS(6487), 1, + anon_sym_DOT, + STATE(3442), 1, + aux_sym_cell_path_repeat1, + STATE(3451), 1, sym_comment, - ACTIONS(2059), 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(2061), 25, - sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [139970] = 4, - ACTIONS(249), 1, + STATE(3559), 1, + sym_path, + ACTIONS(967), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(969), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122181] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3630), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3452), 1, sym_comment, - ACTIONS(2442), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3663), 1, + sym_cell_path, + ACTIONS(2090), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2444), 25, + ACTIONS(2092), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [140013] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3631), 1, - sym_comment, - ACTIONS(2450), 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(2452), 25, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140056] = 4, - ACTIONS(249), 1, + [122236] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3632), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3453), 1, sym_comment, - ACTIONS(2067), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3704), 1, + sym_cell_path, + ACTIONS(2094), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2069), 25, + ACTIONS(2096), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [140099] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3633), 1, - sym_comment, - ACTIONS(2087), 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(2089), 25, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140142] = 4, - ACTIONS(249), 1, + [122291] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3634), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3454), 1, sym_comment, - ACTIONS(2470), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3710), 1, + sym_cell_path, + ACTIONS(1944), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2472), 25, + ACTIONS(1946), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [140185] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3635), 1, - sym_comment, - ACTIONS(2474), 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(2476), 25, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140228] = 4, - ACTIONS(249), 1, + [122346] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3636), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3455), 1, sym_comment, - ACTIONS(2095), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3631), 1, + sym_cell_path, + ACTIONS(1948), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2097), 25, + ACTIONS(1950), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140271] = 4, - ACTIONS(249), 1, + [122401] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3637), 1, + ACTIONS(6519), 1, + sym__newline, + STATE(3456), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1296), 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, + [122448] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6522), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6524), 1, + aux_sym__immediate_decimal_token2, + STATE(3457), 1, + sym_comment, + ACTIONS(1739), 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(1741), 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_and2, + anon_sym_xor2, + anon_sym_or2, + 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, + [122499] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3458), 1, sym_comment, - ACTIONS(2502), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3660), 1, + sym_cell_path, + ACTIONS(1988), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2504), 25, + ACTIONS(1990), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140314] = 4, - ACTIONS(249), 1, + [122554] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3638), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3459), 1, sym_comment, - ACTIONS(2531), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3667), 1, + sym_cell_path, + ACTIONS(2068), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2533), 25, + ACTIONS(2070), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140357] = 4, - ACTIONS(249), 1, + [122609] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3639), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3460), 1, sym_comment, - ACTIONS(2494), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3712), 1, + sym_cell_path, + ACTIONS(2072), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2496), 25, + ACTIONS(2074), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140400] = 4, - ACTIONS(249), 1, + [122664] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3640), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3461), 1, sym_comment, - ACTIONS(2494), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3670), 1, + sym_cell_path, + ACTIONS(1907), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2496), 25, + ACTIONS(1911), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140443] = 4, - ACTIONS(249), 1, + [122719] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3641), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3462), 1, sym_comment, - ACTIONS(2398), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3637), 1, + sym_cell_path, + ACTIONS(2082), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2400), 25, + ACTIONS(2084), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140486] = 27, - ACTIONS(249), 1, + [122774] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, + STATE(3463), 1, + sym_comment, + ACTIONS(5088), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5086), 30, sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6637), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3642), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4449), 1, - sym__binary_predicate_parenthesized, - STATE(4450), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4878), 1, - sym_val_closure, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [140575] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3643), 1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [122821] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3464), 1, sym_comment, - ACTIONS(2430), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3648), 1, + sym_cell_path, + ACTIONS(2000), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2432), 25, + ACTIONS(2002), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140618] = 4, - ACTIONS(249), 1, + [122876] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3644), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3465), 1, sym_comment, - ACTIONS(2478), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3633), 1, + sym_cell_path, + ACTIONS(1952), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2480), 25, + ACTIONS(1954), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140661] = 27, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6637), 1, - anon_sym_LBRACE, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3642), 1, - aux_sym_shebang_repeat1, - STATE(3645), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4440), 1, - sym__predicate, - STATE(4457), 1, - sym__binary_predicate_parenthesized, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4926), 1, - sym_val_closure, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [140750] = 4, - ACTIONS(249), 1, + [122931] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3646), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3466), 1, sym_comment, - ACTIONS(2410), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3659), 1, + sym_cell_path, + ACTIONS(2004), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2412), 25, + ACTIONS(2006), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140793] = 4, - ACTIONS(249), 1, + [122986] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3647), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3467), 1, sym_comment, - ACTIONS(2438), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3699), 1, + sym_cell_path, + ACTIONS(1992), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2440), 25, + ACTIONS(1994), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140836] = 4, - ACTIONS(249), 1, + [123041] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3648), 1, + ACTIONS(5216), 1, + anon_sym_DOT, + STATE(1471), 1, + sym_cell_path, + STATE(1987), 1, + aux_sym_cell_path_repeat1, + STATE(2197), 1, + sym_path, + STATE(3468), 1, + sym_comment, + ACTIONS(961), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(963), 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, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [123096] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3469), 1, sym_comment, - ACTIONS(2406), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3651), 1, + sym_cell_path, + ACTIONS(1960), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2408), 25, + ACTIONS(1962), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140879] = 5, - ACTIONS(249), 1, + [123151] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6611), 1, - anon_sym_DOT_DOT2, - STATE(3649), 1, + ACTIONS(6502), 1, + sym__entry_separator, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(3470), 1, sym_comment, - ACTIONS(6595), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1092), 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, - [140924] = 4, - ACTIONS(249), 1, + ACTIONS(6500), 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, + [123200] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3650), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3471), 1, sym_comment, - ACTIONS(2506), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3654), 1, + sym_cell_path, + ACTIONS(1968), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2508), 25, + ACTIONS(1970), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140967] = 6, - ACTIONS(3), 1, + [123255] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2293), 1, - sym__newline, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3651), 1, + STATE(3472), 1, sym_comment, - ACTIONS(2297), 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, - [141014] = 4, - ACTIONS(249), 1, + ACTIONS(1607), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1609), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [123302] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3652), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3473), 1, sym_comment, - ACTIONS(5065), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3655), 1, + sym_cell_path, + ACTIONS(1925), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5063), 25, + ACTIONS(1927), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141057] = 4, - ACTIONS(249), 1, + [123357] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3653), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3474), 1, sym_comment, - ACTIONS(5073), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3656), 1, + sym_cell_path, + ACTIONS(1972), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5071), 25, + ACTIONS(1974), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141100] = 6, - ACTIONS(3), 1, + [123412] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - ACTIONS(2303), 1, - sym__newline, - STATE(3654), 1, + STATE(3475), 1, sym_comment, - ACTIONS(2305), 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, - [141147] = 5, - ACTIONS(249), 1, + ACTIONS(5022), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5020), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [123459] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - ACTIONS(4770), 1, - aux_sym_unquoted_token2, - STATE(3655), 1, + ACTIONS(6526), 1, + anon_sym_LBRACK2, + STATE(3476), 1, sym_comment, - ACTIONS(1640), 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, - [141192] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6607), 1, - anon_sym_DOT_DOT2, - STATE(3656), 1, + ACTIONS(2337), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2341), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [123508] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3477), 1, sym_comment, - ACTIONS(6609), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1092), 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, - [141237] = 4, - ACTIONS(249), 1, - anon_sym_POUND, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, STATE(3657), 1, - sym_comment, - ACTIONS(5049), 7, + sym_cell_path, + ACTIONS(1984), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5047), 25, + ACTIONS(1986), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141280] = 4, - ACTIONS(249), 1, + [123563] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3658), 1, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3478), 1, sym_comment, - ACTIONS(5069), 7, + STATE(3512), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + STATE(3705), 1, + sym_cell_path, + ACTIONS(961), 7, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5067), 25, + ACTIONS(963), 25, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141323] = 4, - ACTIONS(249), 1, + [123618] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3659), 1, + ACTIONS(6528), 1, + anon_sym_LPAREN2, + ACTIONS(6530), 1, + anon_sym_EQ2, + ACTIONS(6532), 1, + sym_short_flag_identifier, + STATE(3479), 1, sym_comment, - ACTIONS(4987), 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(4985), 25, + ACTIONS(4956), 13, sym_raw_string_begin, - anon_sym_true, - anon_sym_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, - [141366] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1090), 1, - sym__newline, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(3660), 1, - sym_comment, - ACTIONS(1092), 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, - [141413] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3661), 1, - sym_comment, - ACTIONS(2043), 7, + ACTIONS(4958), 19, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2045), 25, - sym_raw_string_begin, + anon_sym_null, anon_sym_true, anon_sym_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_token1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [141456] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - STATE(3662), 1, - sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5131), 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, - [141500] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3663), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5307), 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, - [141554] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3664), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5307), 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, - [141606] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3665), 1, - sym_comment, - ACTIONS(2498), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2500), 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, - [141648] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3666), 1, - sym_comment, - ACTIONS(2426), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2428), 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, - [141690] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3667), 1, - sym_comment, - ACTIONS(2446), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2448), 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, - [141732] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3668), 1, - sym_comment, - ACTIONS(2486), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2488), 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, - [141774] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(3669), 1, - sym_comment, - STATE(3697), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5265), 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, - [141822] = 8, - ACTIONS(249), 1, + [123670] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3670), 1, + STATE(3480), 1, sym_comment, - STATE(3744), 1, - sym_path, - STATE(3838), 1, - sym_cell_path, - ACTIONS(1670), 2, - anon_sym_GT, + ACTIONS(2496), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(1672), 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, - [141872] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3671), 1, - sym_comment, - ACTIONS(2414), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2416), 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, - [141914] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3672), 1, - sym_comment, - ACTIONS(2482), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2484), 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, - [141956] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3673), 1, - sym_comment, - ACTIONS(2524), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2526), 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, - [141998] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3674), 1, - sym_comment, - ACTIONS(2551), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2553), 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, - [142040] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(3675), 1, - sym_comment, - STATE(3699), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5265), 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, - [142090] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(3676), 1, - sym_comment, - STATE(3701), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5265), 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, - [142146] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - STATE(3677), 1, - sym_comment, - STATE(3704), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5265), 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, - [142204] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3678), 1, - sym_comment, - ACTIONS(2422), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2424), 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, - [142246] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3679), 1, - sym_comment, - STATE(3709), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5265), 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(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142306] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5316), 1, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2498), 29, sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3680), 1, - sym_comment, - STATE(3711), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5265), 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(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142368] = 4, - ACTIONS(249), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [123716] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3681), 1, + ACTIONS(6534), 1, + anon_sym_DOT_DOT2, + STATE(3481), 1, sym_comment, - ACTIONS(2557), 8, + ACTIONS(6536), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -348996,8 +342352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2559), 23, - ts_builtin_sym_end, + ACTIONS(2139), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349009,9 +342364,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -349020,530 +342377,1155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [142410] = 15, - ACTIONS(249), 1, + [123766] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3682), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, sym_comment, - STATE(3713), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5265), 4, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142474] = 6, - ACTIONS(249), 1, + STATE(3485), 1, + aux_sym_cell_path_repeat1, + STATE(3600), 1, + sym_path, + ACTIONS(967), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(969), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_record_entry_token1, + sym__table_head_separator, + [123818] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6679), 1, - anon_sym_DOT_DOT2, - STATE(3683), 1, + ACTIONS(6540), 1, + anon_sym_QMARK2, + STATE(3483), 1, sym_comment, - ACTIONS(6681), 2, + ACTIONS(984), 8, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(986), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2222), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2228), 20, - ts_builtin_sym_end, + [123866] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3484), 1, + sym_comment, + ACTIONS(1948), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1950), 29, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [142520] = 16, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [123912] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6542), 1, + anon_sym_DOT, + STATE(3600), 1, + sym_path, + STATE(3485), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(971), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(973), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_record_entry_token1, + sym__table_head_separator, + [123962] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, + STATE(3486), 1, + sym_comment, + ACTIONS(2347), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2349), 29, sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6683), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3684), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124008] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3487), 1, sym_comment, - STATE(3715), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5265), 3, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142586] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(3685), 1, + ACTIONS(2492), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2494), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124054] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3488), 1, sym_comment, - ACTIONS(2285), 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, - [142630] = 17, - ACTIONS(249), 1, + ACTIONS(2508), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2510), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124100] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5410), 1, + STATE(3489), 1, + sym_comment, + ACTIONS(2347), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2349), 29, sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6683), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6685), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3686), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124146] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3490), 1, sym_comment, - STATE(3717), 1, - aux_sym_shebang_repeat1, - ACTIONS(5265), 2, + ACTIONS(2343), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2345), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142698] = 10, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124192] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, + STATE(3491), 1, + sym_comment, + ACTIONS(2351), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2353), 29, sym__newline, - STATE(3687), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124238] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3492), 1, sym_comment, - STATE(3730), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5265), 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, - [142752] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(3688), 1, + ACTIONS(2363), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2365), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124284] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3493), 1, sym_comment, - ACTIONS(1092), 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, - [142796] = 9, - ACTIONS(249), 1, + ACTIONS(2437), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2439), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124330] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, + STATE(3494), 1, + sym_comment, + ACTIONS(2004), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2006), 29, sym__newline, - STATE(3689), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124376] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3495), 1, sym_comment, - STATE(3732), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5265), 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, - [142848] = 4, - ACTIONS(249), 1, + ACTIONS(2407), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2409), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124422] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3690), 1, + STATE(3496), 1, sym_comment, - ACTIONS(2113), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2119), 23, - ts_builtin_sym_end, + ACTIONS(2488), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2490), 29, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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, - [142890] = 6, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124468] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5316), 1, + STATE(3497), 1, + sym_comment, + ACTIONS(2395), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2397), 29, sym__newline, - STATE(3691), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124514] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3498), 1, sym_comment, - STATE(3692), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5265), 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, - [142936] = 6, - ACTIONS(249), 1, + ACTIONS(1972), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1974), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124560] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5244), 1, + STATE(3499), 1, + sym_comment, + ACTIONS(1288), 35, sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3692), 1, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [124604] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3500), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5246), 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, - [142982] = 6, - ACTIONS(249), 1, + ACTIONS(1913), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1915), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124650] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, + STATE(3501), 1, + sym_comment, + ACTIONS(2094), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2096), 29, sym__newline, - STATE(3693), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124696] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3502), 1, sym_comment, - STATE(3748), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5254), 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, - [143028] = 6, - ACTIONS(249), 1, + ACTIONS(2090), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2092), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124742] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6687), 1, - anon_sym_DOT_DOT2, - STATE(3694), 1, + STATE(3503), 1, + sym_comment, + ACTIONS(1709), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124788] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3504), 1, + sym_comment, + ACTIONS(2500), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2502), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124834] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3505), 1, + sym_comment, + ACTIONS(2355), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2357), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124880] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6545), 1, + anon_sym_QMARK2, + STATE(3506), 1, sym_comment, - ACTIONS(6689), 2, + ACTIONS(978), 8, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(980), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2206), 8, + [124928] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3507), 1, + sym_comment, + ACTIONS(2359), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2361), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124974] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3508), 1, + sym_comment, + ACTIONS(2367), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2369), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125020] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6547), 1, + aux_sym__immediate_decimal_token2, + STATE(3509), 1, + sym_comment, + ACTIONS(1783), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -349552,7 +343534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2212), 20, + ACTIONS(1785), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349565,6 +343547,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_and2, + anon_sym_xor2, + anon_sym_or2, + 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, @@ -349573,12 +343560,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, - [143074] = 4, - ACTIONS(249), 1, + [125068] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3695), 1, + STATE(3510), 1, + sym_comment, + ACTIONS(1988), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1990), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125114] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3511), 1, + sym_comment, + ACTIONS(2068), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2070), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125160] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6513), 1, + anon_sym_DOT, + STATE(3512), 1, + sym_comment, + STATE(3521), 1, + aux_sym_cell_path_repeat1, + STATE(3606), 1, + sym_path, + ACTIONS(967), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(969), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [125212] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6517), 1, + aux_sym__immediate_decimal_token2, + STATE(3513), 1, sym_comment, - ACTIONS(2565), 8, + ACTIONS(1755), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -349587,7 +343706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2567), 23, + ACTIONS(1757), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349600,9 +343719,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + 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, @@ -349611,313 +343732,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [143116] = 6, - ACTIONS(249), 1, + [125260] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6691), 1, + ACTIONS(6549), 1, anon_sym_DOT_DOT2, - STATE(3696), 1, + ACTIONS(6553), 1, + sym_filesize_unit, + ACTIONS(6555), 1, + sym_duration_unit, + STATE(3514), 1, sym_comment, - ACTIONS(6693), 2, + ACTIONS(6551), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1788), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_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), 20, - ts_builtin_sym_end, + ACTIONS(1709), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125314] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3515), 1, + sym_comment, + ACTIONS(2504), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2506), 29, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [143162] = 7, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125360] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3697), 1, + STATE(3516), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5246), 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, - [143210] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(2403), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2405), 29, sym__newline, - STATE(3698), 1, - sym_comment, - STATE(3749), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5254), 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, - [143258] = 8, - ACTIONS(249), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125406] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3699), 1, + STATE(3517), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5246), 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, - [143308] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(2387), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2389), 29, sym__newline, - STATE(3700), 1, - sym_comment, - STATE(3750), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5254), 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, - [143358] = 11, - ACTIONS(249), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125452] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3701), 1, + STATE(3518), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5246), 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, - [143414] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(2383), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2385), 29, sym__newline, - STATE(3702), 1, - sym_comment, - STATE(3752), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5254), 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, - [143470] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6697), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125498] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6557), 1, anon_sym_DOT_DOT2, - STATE(3703), 1, + STATE(3519), 1, sym_comment, - ACTIONS(6699), 2, + ACTIONS(6559), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2234), 8, + ACTIONS(2159), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -349926,8 +343965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2240), 20, - ts_builtin_sym_end, + ACTIONS(2165), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349939,6 +343977,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_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -349947,144 +343990,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [143516] = 12, - ACTIONS(249), 1, + [125548] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5244), 1, + STATE(3520), 1, + sym_comment, + ACTIONS(2456), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2458), 29, sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3704), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125594] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6561), 1, + anon_sym_DOT, + STATE(3606), 1, + sym_path, + STATE(3521), 2, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5246), 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, - [143574] = 12, - ACTIONS(249), 1, + aux_sym_cell_path_repeat1, + ACTIONS(971), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(973), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [125644] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5403), 1, + STATE(3522), 1, + sym_comment, + ACTIONS(2460), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2462), 29, sym__newline, - STATE(3705), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125690] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3523), 1, sym_comment, - STATE(3755), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5254), 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, - [143632] = 6, - ACTIONS(249), 1, + ACTIONS(1907), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1911), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125736] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6703), 1, - anon_sym_DOT_DOT2, - STATE(3706), 1, + STATE(3524), 1, sym_comment, - ACTIONS(6705), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1842), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1850), 20, - ts_builtin_sym_end, + ACTIONS(2480), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2482), 29, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [143678] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125782] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3707), 1, + STATE(3525), 1, + sym_comment, + ACTIONS(1992), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1994), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125828] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3526), 1, + sym_comment, + ACTIONS(2464), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2466), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125874] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3527), 1, + sym_comment, + ACTIONS(2468), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2470), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125920] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3528), 1, + sym_comment, + ACTIONS(2399), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2401), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [125966] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6564), 1, + anon_sym_DOT_DOT2, + STATE(3529), 1, sym_comment, - ACTIONS(2206), 8, + ACTIONS(6566), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2167), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -350093,8 +344389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2212), 23, - ts_builtin_sym_end, + ACTIONS(2173), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350106,9 +344401,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -350117,17 +344414,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, - [143720] = 6, - ACTIONS(249), 1, + [126016] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(6568), 1, anon_sym_DOT_DOT2, - STATE(3708), 1, + STATE(3530), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6570), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2113), 8, + ACTIONS(2175), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -350136,8 +344433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2119), 20, - ts_builtin_sym_end, + ACTIONS(2181), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350149,6 +344445,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_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -350156,1438 +344457,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT_GT, anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [143766] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3709), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5246), 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(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143826] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3710), 1, - sym_comment, - STATE(3756), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5254), 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(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143886] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3711), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5246), 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(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143948] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3712), 1, - sym_comment, - STATE(3757), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5254), 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(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144010] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3713), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5246), 4, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144074] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3714), 1, - sym_comment, - STATE(3758), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5254), 4, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144138] = 16, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6717), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3715), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5246), 3, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144204] = 16, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6683), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3716), 1, - sym_comment, - STATE(3759), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5254), 3, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144270] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6717), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6719), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3717), 1, - sym_comment, - ACTIONS(5246), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144338] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - STATE(3718), 1, - sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6721), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 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, - [144384] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - STATE(3719), 1, - sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6723), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6721), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 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, - [144432] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - STATE(3720), 1, - sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6723), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6725), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6721), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6727), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6729), 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(5131), 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, - [144486] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - STATE(3721), 1, - sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6723), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6725), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6731), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6721), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6727), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6729), 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(5131), 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, - [144542] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - ACTIONS(6733), 1, - aux_sym_expr_binary_token13, - STATE(3722), 1, - sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6723), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6725), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6731), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6721), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6727), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6729), 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(5131), 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, - [144600] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - ACTIONS(6733), 1, - aux_sym_expr_binary_token13, - ACTIONS(6735), 1, - aux_sym_expr_binary_token14, - STATE(3723), 1, - sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6723), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6725), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6731), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6721), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6727), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5131), 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(6729), 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, - [144660] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - ACTIONS(6733), 1, - aux_sym_expr_binary_token13, - ACTIONS(6735), 1, - aux_sym_expr_binary_token14, - ACTIONS(6737), 1, - aux_sym_expr_binary_token15, - STATE(3724), 1, - sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6723), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6725), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6731), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6721), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6727), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5131), 5, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6729), 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, - [144722] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - ACTIONS(6733), 1, - aux_sym_expr_binary_token13, - ACTIONS(6735), 1, - aux_sym_expr_binary_token14, - ACTIONS(6737), 1, - aux_sym_expr_binary_token15, - ACTIONS(6739), 1, - aux_sym_expr_binary_token16, - STATE(3725), 1, - sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6723), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6725), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6731), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5131), 4, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6721), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6727), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6729), 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, - [144786] = 16, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - ACTIONS(6733), 1, - aux_sym_expr_binary_token13, - ACTIONS(6735), 1, - aux_sym_expr_binary_token14, - ACTIONS(6737), 1, - aux_sym_expr_binary_token15, - ACTIONS(6739), 1, - aux_sym_expr_binary_token16, - ACTIONS(6741), 1, - aux_sym_expr_binary_token17, - STATE(3726), 1, - sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6723), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6725), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6731), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5131), 3, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - aux_sym_expr_binary_token18, - ACTIONS(6721), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6727), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6729), 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, - [144852] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - STATE(3727), 1, - sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6723), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6725), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6721), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6729), 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(5131), 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, - [144904] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5133), 1, - anon_sym_DASH, - STATE(3728), 1, - sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6723), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6725), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6721), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 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, - [144954] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6683), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6685), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3729), 1, - sym_comment, - STATE(3760), 1, - aux_sym_shebang_repeat1, - ACTIONS(5254), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145022] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3730), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5246), 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, - [145076] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(3731), 1, - sym_comment, - STATE(3761), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5254), 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, - [145130] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5244), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3732), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5246), 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, - [145182] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5403), 1, - sym__newline, - STATE(3733), 1, - sym_comment, - STATE(3762), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5254), 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, - [145234] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - STATE(3734), 1, - sym_comment, - STATE(3763), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5261), 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, - [145280] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - STATE(3735), 1, - sym_comment, - STATE(3765), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5261), 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, - [145328] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - STATE(3736), 1, - sym_comment, - STATE(3767), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5261), 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, - [145378] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - STATE(3737), 1, - sym_comment, - STATE(3769), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5261), 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, - [145434] = 17, - ACTIONS(249), 1, + anon_sym_e_PLUSo_GT_GT, + [126066] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6717), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6719), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3738), 1, + ACTIONS(6170), 1, + sym_filesize_unit, + ACTIONS(6172), 1, + sym_duration_unit, + ACTIONS(6572), 1, + anon_sym_DOT_DOT2, + STATE(3531), 1, sym_comment, - ACTIONS(5307), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145502] = 13, - ACTIONS(249), 1, + ACTIONS(6574), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 25, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126120] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3739), 1, + STATE(3532), 1, sym_comment, - STATE(3774), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5261), 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(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145562] = 4, - ACTIONS(249), 1, + ACTIONS(1030), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1032), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126166] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3740), 1, + ACTIONS(6576), 1, + anon_sym_DOT_DOT2, + STATE(3533), 1, sym_comment, - ACTIONS(2222), 8, + ACTIONS(6578), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -351596,7 +344565,7 @@ 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), 23, + ACTIONS(2139), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -351609,9 +344578,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_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -351620,163 +344589,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [145604] = 14, - ACTIONS(249), 1, + [126215] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3741), 1, + ACTIONS(6580), 1, + anon_sym_DOT_DOT2, + STATE(3534), 1, sym_comment, - STATE(3776), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5261), 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(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145666] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5418), 1, + ACTIONS(6582), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2159), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2165), 23, + ts_builtin_sym_end, sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3742), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [126264] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3501), 1, + sym_cell_path, + STATE(3535), 1, sym_comment, - STATE(3778), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5261), 4, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145730] = 16, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1976), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1978), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126317] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6683), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3743), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3522), 1, + sym_cell_path, + STATE(3536), 1, sym_comment, - STATE(3782), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5261), 3, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145796] = 4, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1992), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1994), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126370] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3744), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3511), 1, + sym_cell_path, + STATE(3537), 1, sym_comment, - ACTIONS(1074), 3, - anon_sym_GT, - anon_sym_DASH, + STATE(3600), 1, + sym_path, + ACTIONS(1996), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(1076), 28, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1998), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126423] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3538), 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, @@ -351789,376 +344795,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [145838] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6683), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6685), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3745), 1, - sym_comment, - STATE(3784), 1, - aux_sym_shebang_repeat1, - ACTIONS(5261), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145906] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - STATE(3746), 1, - sym_comment, - STATE(3786), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5261), 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, - [145960] = 9, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + 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, + [126468] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - STATE(3747), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3493), 1, + sym_cell_path, + STATE(3539), 1, sym_comment, - STATE(3788), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5261), 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, - [146012] = 6, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1972), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1974), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126521] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3748), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3502), 1, + sym_cell_path, + STATE(3540), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5279), 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, - [146058] = 7, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(2082), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2084), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126574] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3749), 1, + STATE(3541), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5279), 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, - [146106] = 8, - ACTIONS(249), 1, + ACTIONS(1014), 8, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1016), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126619] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3750), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5279), 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, - [146156] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2289), 1, - aux_sym_unquoted_token4, - STATE(3751), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3494), 1, + sym_cell_path, + STATE(3542), 1, sym_comment, - ACTIONS(2291), 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, - [146198] = 11, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1984), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1986), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126672] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3752), 1, + ACTIONS(6584), 1, + anon_sym_QMARK2, + STATE(3543), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5279), 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, - [146254] = 4, - ACTIONS(249), 1, + ACTIONS(978), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(980), 27, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [126719] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3753), 1, + ACTIONS(6586), 1, + anon_sym_DOT_DOT2, + STATE(3544), 1, sym_comment, - ACTIONS(1066), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1068), 28, + ACTIONS(6588), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2167), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2173), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -352171,32 +345058,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_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, - [146296] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [126768] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3754), 1, + ACTIONS(6590), 1, + anon_sym_DOT_DOT2, + STATE(3545), 1, sym_comment, - ACTIONS(1070), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1072), 28, + ACTIONS(6592), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2175), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2181), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -352209,1165 +345101,543 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [146338] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3755), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5279), 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, - [146396] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3756), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5279), 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(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [146456] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3757), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5279), 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(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [146518] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3758), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5279), 4, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [146582] = 16, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6717), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3759), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5279), 3, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [146648] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6717), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6719), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3760), 1, - sym_comment, - ACTIONS(5279), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [146716] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3761), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5279), 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, - [146770] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5277), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3762), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5279), 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, - [146822] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3763), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5291), 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, - [146868] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(3764), 1, - sym_comment, - STATE(3793), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5299), 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, - [146914] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3765), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5291), 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, - [146962] = 7, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [126817] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(3766), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3505), 1, + sym_cell_path, + STATE(3546), 1, sym_comment, - STATE(3794), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5299), 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, - [147010] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3767), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1907), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1911), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126870] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6594), 1, + anon_sym_QMARK2, + STATE(3547), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5291), 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, - [147060] = 8, - ACTIONS(249), 1, + ACTIONS(984), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(986), 27, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [126917] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(3768), 1, + STATE(3548), 1, sym_comment, - STATE(3795), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5299), 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, - [147110] = 11, - ACTIONS(249), 1, + ACTIONS(998), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1000), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [126962] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3769), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3507), 1, + sym_cell_path, + STATE(3549), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5291), 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, - [147166] = 11, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1913), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1915), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127015] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(3770), 1, + STATE(3550), 1, sym_comment, - STATE(3796), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5299), 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, - [147222] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(2129), 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(2131), 25, + ts_builtin_sym_end, sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3771), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5291), 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, - [147280] = 12, - ACTIONS(249), 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_and2, + anon_sym_xor2, + anon_sym_or2, + 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, + [127060] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(3772), 1, + STATE(3551), 1, sym_comment, - STATE(3799), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5299), 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, - [147338] = 5, - ACTIONS(249), 1, + ACTIONS(998), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1000), 26, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [127105] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, - sym__newline, - ACTIONS(4842), 1, - aux_sym_unquoted_token2, - STATE(3773), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3498), 1, + sym_cell_path, + STATE(3552), 1, sym_comment, - ACTIONS(1640), 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, - [147382] = 13, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1952), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1954), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127158] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3774), 1, + STATE(3553), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5291), 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(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147442] = 13, - ACTIONS(249), 1, + ACTIONS(1002), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1004), 26, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [127203] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3775), 1, + STATE(3554), 1, sym_comment, - STATE(3800), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5299), 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(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147502] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(2183), 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(2185), 25, + ts_builtin_sym_end, sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3776), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5291), 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(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147564] = 14, - ACTIONS(249), 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_and2, + anon_sym_xor2, + anon_sym_or2, + 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, + [127248] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3777), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3523), 1, + sym_cell_path, + STATE(3555), 1, sym_comment, - STATE(3801), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5299), 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(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147626] = 15, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(2000), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2002), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127301] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3778), 1, + STATE(3556), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5291), 4, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147690] = 15, - ACTIONS(249), 1, + ACTIONS(990), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(992), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [127346] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3779), 1, + STATE(3557), 1, sym_comment, - STATE(3802), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5299), 4, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147754] = 4, - ACTIONS(249), 1, + ACTIONS(1010), 8, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1012), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127391] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3780), 1, + STATE(3558), 1, sym_comment, - ACTIONS(1670), 3, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(1783), 9, anon_sym_DOT_DOT2, - ACTIONS(1672), 28, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1785), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353379,29 +345649,198 @@ static const uint16_t ts_small_parse_table[] = { 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [147796] = 4, - ACTIONS(249), 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, + [127436] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3781), 1, + STATE(3559), 1, sym_comment, - ACTIONS(2234), 8, + ACTIONS(1006), 8, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1008), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127481] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6170), 1, + sym_filesize_unit, + ACTIONS(6172), 1, + sym_duration_unit, + ACTIONS(6596), 1, + anon_sym_DOT_DOT2, + STATE(3560), 1, + sym_comment, + ACTIONS(6598), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127534] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3561), 1, + sym_comment, + ACTIONS(1002), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1004), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [127579] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3491), 1, + sym_cell_path, + STATE(3562), 1, + sym_comment, + STATE(3600), 1, + sym_path, + ACTIONS(2068), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2070), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127632] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3563), 1, + sym_comment, + ACTIONS(1739), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -353410,7 +345849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2240), 23, + ACTIONS(1741), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -353423,9 +345862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + 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, @@ -353434,389 +345875,561 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [147838] = 16, - ACTIONS(249), 1, + [127677] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6717), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3782), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3510), 1, + sym_cell_path, + STATE(3564), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5291), 3, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147904] = 16, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1960), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1962), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127730] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6683), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3783), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3500), 1, + sym_cell_path, + STATE(3565), 1, sym_comment, - STATE(3803), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5299), 3, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147970] = 17, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(2072), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2074), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127783] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6717), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6719), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3784), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3520), 1, + sym_cell_path, + STATE(3566), 1, sym_comment, - ACTIONS(5291), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [148038] = 17, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1988), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1990), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127836] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6683), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6685), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3738), 1, - aux_sym_shebang_repeat1, - STATE(3785), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3508), 1, + sym_cell_path, + STATE(3567), 1, sym_comment, - ACTIONS(5299), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [148106] = 10, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1948), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1950), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127889] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3786), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3517), 1, + sym_cell_path, + STATE(3568), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5291), 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, - [148160] = 10, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1944), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1946), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127942] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6170), 1, + sym_filesize_unit, + ACTIONS(6172), 1, + sym_duration_unit, + ACTIONS(6600), 1, + anon_sym_DOT_DOT2, + STATE(3569), 1, + sym_comment, + ACTIONS(6574), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127995] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(3663), 1, - aux_sym_shebang_repeat1, - STATE(3787), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3528), 1, + sym_cell_path, + STATE(3570), 1, sym_comment, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5299), 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, - [148214] = 9, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(2090), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2092), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128048] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5289), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3788), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3525), 1, + sym_cell_path, + STATE(3571), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5291), 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, - [148266] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1090), 1, - anon_sym_EQ_GT, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(3789), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1968), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1970), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128101] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3504), 1, + sym_cell_path, + STATE(3572), 1, + sym_comment, + STATE(3600), 1, + sym_path, + ACTIONS(2094), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2096), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128154] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6602), 1, + sym_long_flag_identifier, + ACTIONS(6604), 1, + anon_sym_EQ2, + STATE(3573), 1, + sym_comment, + ACTIONS(4936), 16, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4938), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [128203] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3574), 1, + sym_comment, + STATE(3600), 1, + sym_path, + STATE(3603), 1, + sym_cell_path, + ACTIONS(1769), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1771), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128256] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3490), 1, + sym_cell_path, + STATE(3575), 1, sym_comment, - ACTIONS(1092), 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, - [148312] = 4, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(2004), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2006), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128309] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3790), 1, + STATE(3576), 1, sym_comment, - ACTIONS(2105), 3, - anon_sym_GT, - anon_sym_LT2, + ACTIONS(1890), 9, anon_sym_DOT_DOT2, - ACTIONS(2107), 28, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_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), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353828,99 +346441,144 @@ static const uint16_t ts_small_parse_table[] = { 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [148354] = 9, - ACTIONS(249), 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, + [128354] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5455), 1, - sym__newline, - STATE(3664), 1, - aux_sym_shebang_repeat1, - STATE(3791), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3484), 1, + sym_cell_path, + STATE(3577), 1, sym_comment, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5299), 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, - [148406] = 8, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1933), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1935), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128407] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6601), 1, + ACTIONS(6538), 1, anon_sym_DOT, - STATE(3576), 1, + STATE(3482), 1, aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3792), 1, + STATE(3578), 1, sym_comment, - STATE(3827), 1, + STATE(3600), 1, + sym_path, + STATE(3604), 1, sym_cell_path, - ACTIONS(1664), 2, - anon_sym_GT, + ACTIONS(1735), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(1668), 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_SLASH2, + anon_sym_PLUS2, + ACTIONS(1737), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128460] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6606), 1, + anon_sym_DOT, + ACTIONS(6608), 1, + aux_sym__immediate_decimal_token2, + STATE(3579), 1, + sym_comment, + ACTIONS(1607), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1609), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -353928,1764 +346586,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [148456] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3793), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5307), 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, - [148502] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3794), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5307), 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, - [148550] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3795), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5307), 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, - [148600] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3796), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5307), 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, - [148656] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3797), 1, - sym_comment, - ACTIONS(2297), 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, - [148700] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(3798), 1, - sym_comment, - ACTIONS(2305), 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, - [148744] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3799), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5307), 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, - [148802] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3800), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5307), 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(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [148862] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3801), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5307), 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(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [148924] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3802), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5307), 4, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [148988] = 16, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5305), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6717), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3803), 1, - sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5307), 3, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [149054] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5418), 1, - sym__newline, - STATE(3771), 1, - aux_sym_shebang_repeat1, - STATE(3804), 1, - sym_comment, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5261), 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, - [149112] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3805), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4519), 1, - sym__binary_predicate_parenthesized, - STATE(4520), 1, - sym__predicate, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [149195] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3806), 1, - sym_comment, - STATE(3835), 1, - aux_sym_shebang_repeat1, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4378), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4570), 1, - sym__binary_predicate_parenthesized, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [149278] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3807), 1, - sym_comment, - STATE(3824), 1, - aux_sym_shebang_repeat1, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4388), 1, - sym__binary_predicate_parenthesized, - STATE(4392), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [149361] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3808), 1, - sym_comment, - STATE(3818), 1, - aux_sym_shebang_repeat1, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4396), 1, - sym__binary_predicate_parenthesized, - STATE(4413), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [149444] = 25, - ACTIONS(249), 1, + sym_duration_unit, + [128509] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3809), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3480), 1, + sym_cell_path, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3580), 1, sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4483), 1, - sym__binary_predicate_parenthesized, - STATE(4491), 1, - sym__predicate, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [149527] = 25, - ACTIONS(249), 1, + STATE(3600), 1, + sym_path, + ACTIONS(1925), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1927), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128562] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3810), 1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3581), 1, sym_comment, - STATE(3825), 1, - aux_sym_shebang_repeat1, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4419), 1, - sym__binary_predicate_parenthesized, - STATE(4422), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [149610] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2281), 1, - sym__newline, - STATE(3811), 1, + STATE(3590), 1, + sym_cell_path, + STATE(3600), 1, + sym_path, + ACTIONS(961), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(963), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128615] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6610), 1, + anon_sym_QMARK2, + STATE(3582), 1, sym_comment, - ACTIONS(2285), 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, - [149651] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, + ACTIONS(978), 8, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3812), 1, - sym_comment, - STATE(3817), 1, - aux_sym_shebang_repeat1, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4537), 1, - sym__binary_predicate_parenthesized, - STATE(4538), 1, - sym__predicate, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [149734] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(980), 25, + sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3813), 1, - sym_comment, - STATE(3815), 1, - aux_sym_shebang_repeat1, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4528), 1, - sym__binary_predicate_parenthesized, - STATE(4531), 1, - sym__predicate, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [149817] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4770), 1, - aux_sym_unquoted_token2, - STATE(3814), 1, - sym_comment, - ACTIONS(1640), 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, - [149858] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3815), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4562), 1, - sym__binary_predicate_parenthesized, - STATE(4563), 1, - sym__predicate, - ACTIONS(6627), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [149941] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3816), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4379), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4493), 1, - sym__binary_predicate_parenthesized, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [150024] = 25, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128662] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3817), 1, + ACTIONS(6612), 1, + anon_sym_QMARK2, + STATE(3583), 1, sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4386), 1, - sym__binary_predicate_parenthesized, - STATE(4390), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [150107] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, + ACTIONS(984), 8, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3818), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4436), 1, - sym__binary_predicate_parenthesized, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4549), 1, - sym__predicate, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [150190] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(986), 25, + sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3819), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4459), 1, - sym__binary_predicate_parenthesized, - STATE(4462), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [150273] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, + anon_sym_LBRACE, aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3819), 1, - aux_sym_shebang_repeat1, - STATE(3820), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4387), 1, - sym__predicate, - STATE(4477), 1, - sym__binary_predicate_parenthesized, - STATE(4482), 1, - sym__expr_unary_minus, - ACTIONS(6627), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [150356] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3821), 1, - sym_comment, - STATE(3823), 1, - aux_sym_shebang_repeat1, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4415), 1, - sym__binary_predicate_parenthesized, - STATE(4421), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [150439] = 4, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128709] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2303), 1, - sym__newline, - STATE(3822), 1, + STATE(3584), 1, sym_comment, - ACTIONS(2305), 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, - [150480] = 25, - ACTIONS(249), 1, + ACTIONS(994), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(996), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [128754] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3823), 1, + STATE(3585), 1, sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4467), 1, - sym__binary_predicate_parenthesized, - STATE(4479), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [150563] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, + ACTIONS(990), 8, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3824), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4456), 1, - sym__binary_predicate_parenthesized, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4540), 1, - sym__predicate, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [150646] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(992), 26, + sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_LBRACE, + anon_sym_QMARK2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3825), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4412), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4584), 1, - sym__binary_predicate_parenthesized, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [150729] = 25, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128799] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, + STATE(3586), 1, + sym_comment, + ACTIONS(994), 8, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(996), 26, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3816), 1, - aux_sym_shebang_repeat1, - STATE(3826), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4535), 1, - sym__binary_predicate_parenthesized, - STATE(4536), 1, - sym__predicate, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [150812] = 4, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128844] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3827), 1, + ACTIONS(6614), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6616), 1, + aux_sym__immediate_decimal_token2, + STATE(3587), 1, sym_comment, - ACTIONS(1670), 3, + ACTIONS(1621), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, anon_sym_GT, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1672), 27, - ts_builtin_sym_end, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1623), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + 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, + sym_duration_unit, + [128893] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3588), 1, + sym_comment, + ACTIONS(2234), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2238), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355697,10 +346954,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_in, + 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, + [128937] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6618), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6620), 1, + aux_sym__immediate_decimal_token2, + STATE(3589), 1, + sym_comment, + ACTIONS(1621), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1623), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -355708,234 +347008,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + sym_duration_unit, + [128985] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3590), 1, + sym_comment, + ACTIONS(1018), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(1020), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [150853] = 25, - ACTIONS(249), 1, + [129029] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, + STATE(3591), 1, + sym_comment, + ACTIONS(1014), 8, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1016), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3828), 1, - sym_comment, - STATE(3842), 1, - aux_sym_shebang_repeat1, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4424), 1, - sym__binary_predicate_parenthesized, - STATE(4441), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [150936] = 17, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [129073] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(6673), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6675), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6677), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6683), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6685), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6743), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(3829), 1, + ACTIONS(6622), 1, + anon_sym_DOT, + ACTIONS(6624), 1, + aux_sym__immediate_decimal_token2, + STATE(3592), 1, sym_comment, - STATE(3831), 1, - aux_sym_shebang_repeat1, - ACTIONS(6659), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6663), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6665), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6671), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6661), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6667), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6669), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [151003] = 25, - ACTIONS(249), 1, + ACTIONS(1607), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1609), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + 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, + sym_duration_unit, + [129121] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3518), 1, - anon_sym_DASH, - ACTIONS(3524), 1, + ACTIONS(6626), 1, + aux_sym__immediate_decimal_token2, + STATE(3593), 1, + sym_comment, + ACTIONS(1673), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1675), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + 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, + sym_duration_unit, + [129167] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6628), 1, + anon_sym_DOT_DOT2, + STATE(3594), 1, + sym_comment, + ACTIONS(6630), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1030), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1032), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [129215] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3595), 1, + sym_comment, + ACTIONS(2250), 10, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, aux_sym_expr_unary_token1, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6635), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2248), 23, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6747), 1, - anon_sym_LPAREN, - ACTIONS(6749), 1, - anon_sym_LBRACE, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3830), 1, - sym_comment, - STATE(3902), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4589), 1, - sym__predicate, - STATE(4619), 1, - sym__expr_unary_minus, - STATE(4687), 1, - sym__binary_predicate, - STATE(5121), 1, - sym_val_closure, - ACTIONS(6745), 2, - anon_sym_true, - anon_sym_false, - STATE(4590), 2, - sym_expr_unary, - sym_val_bool, - STATE(5107), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [151086] = 17, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + aux_sym_unquoted_token4, + [129259] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(6711), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6713), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6715), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6717), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6719), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6751), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3831), 1, + STATE(3596), 1, sym_comment, - ACTIONS(6649), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6653), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6655), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6701), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6651), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6695), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6657), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [151153] = 6, - ACTIONS(249), 1, + ACTIONS(1010), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1012), 27, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [129303] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3832), 1, + STATE(3597), 1, sym_comment, - STATE(5027), 1, - sym_redirection, - ACTIONS(6755), 8, + ACTIONS(5218), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -355944,16 +347309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6757), 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(6753), 13, + ACTIONS(5220), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355966,218 +347322,190 @@ static 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, - [151198] = 25, - ACTIONS(249), 1, + 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, + [129347] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6637), 1, - anon_sym_LBRACE, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3833), 1, + STATE(3598), 1, sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4473), 1, - sym__binary_predicate, - STATE(4474), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(5024), 1, - sym_val_closure, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [151281] = 17, - ACTIONS(249), 1, + ACTIONS(1014), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1016), 27, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [129391] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5363), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5365), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5401), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(5412), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6759), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(3834), 1, + ACTIONS(6628), 1, + anon_sym_DOT_DOT2, + ACTIONS(6632), 1, + anon_sym_DASH2, + STATE(3599), 1, sym_comment, - STATE(3845), 1, - aux_sym_shebang_repeat1, - ACTIONS(5319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5355), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5357), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5359), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5353), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5367), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5369), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [151348] = 25, - ACTIONS(249), 1, + ACTIONS(5220), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6630), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5222), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5224), 22, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [129443] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3600), 1, + sym_comment, + ACTIONS(1006), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1008), 27, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [129487] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, ACTIONS(6635), 1, + anon_sym_EQ2, + STATE(3601), 1, + sym_comment, + ACTIONS(5053), 7, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5051), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3835), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4525), 1, - sym__binary_predicate_parenthesized, - STATE(4526), 1, - sym__predicate, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [151431] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4770), 1, - aux_sym_unquoted_token2, - STATE(3836), 1, - sym_comment, - ACTIONS(1640), 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, - [151472] = 6, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [129533] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3837), 1, + STATE(3602), 1, sym_comment, - STATE(4869), 1, - sym_redirection, - ACTIONS(6755), 8, + ACTIONS(1866), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -356186,16 +347514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6757), 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(6761), 13, + ACTIONS(1874), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356208,454 +347527,186 @@ static 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, - [151517] = 4, - ACTIONS(249), 1, + 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, + [129577] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3838), 1, + STATE(3603), 1, sym_comment, - ACTIONS(2105), 3, - anon_sym_GT, + ACTIONS(1735), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(2107), 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, + ACTIONS(1737), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [151558] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(6307), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6309), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6311), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6313), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6315), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6763), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(3839), 1, - sym_comment, - STATE(3841), 1, - aux_sym_shebang_repeat1, - ACTIONS(6293), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6297), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6299), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6305), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6295), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6301), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6303), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [151625] = 4, - ACTIONS(249), 1, + [129621] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2293), 1, - sym__newline, - STATE(3840), 1, + STATE(3604), 1, sym_comment, - ACTIONS(2297), 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, - [151666] = 17, - ACTIONS(249), 1, + ACTIONS(2125), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(2127), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129665] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(6333), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6335), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6337), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6339), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6341), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6765), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3841), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(3605), 1, sym_comment, - ACTIONS(6319), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6323), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6325), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6331), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6321), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6327), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6329), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [151733] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, + ACTIONS(2218), 10, + sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(6635), 1, + 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(2214), 22, anon_sym_DOLLAR, - ACTIONS(6639), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, - aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3842), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4106), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, - sym_val_number, - STATE(4445), 1, - sym__binary_predicate_parenthesized, - STATE(4452), 1, - sym__predicate, - STATE(4482), 1, - sym__expr_unary_minus, - ACTIONS(6627), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [151816] = 25, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, - anon_sym_DOLLAR, - ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3809), 1, - aux_sym_shebang_repeat1, - STATE(3843), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4463), 1, - sym__binary_predicate_parenthesized, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4546), 1, - sym__predicate, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [151899] = 25, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [129711] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, + STATE(3606), 1, + sym_comment, + ACTIONS(1006), 8, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1008), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3805), 1, - aux_sym_shebang_repeat1, - STATE(3844), 1, - sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4552), 1, - sym__binary_predicate_parenthesized, - STATE(4569), 1, - sym__predicate, - ACTIONS(6627), 2, - anon_sym_true, - anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 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, - [151982] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5410), 1, - sym__newline, - ACTIONS(5435), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5445), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5447), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5449), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5451), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6767), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(3845), 1, - sym_comment, - ACTIONS(5345), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5349), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5351), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5414), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5347), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5406), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5408), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [152049] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3846), 1, - sym_comment, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6773), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6775), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6771), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6777), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6779), 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(5131), 9, - 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, - [152099] = 6, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [129755] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3847), 1, + STATE(3607), 1, sym_comment, - STATE(5138), 1, - sym_redirection, - ACTIONS(6755), 8, + ACTIONS(2252), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -356664,16 +347715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6757), 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(6781), 12, + ACTIONS(2256), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356686,173 +347728,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [152143] = 12, - ACTIONS(249), 1, + 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, + [129799] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6785), 1, - aux_sym_expr_binary_token13, - ACTIONS(6787), 1, - aux_sym_expr_binary_token14, - STATE(3848), 1, + ACTIONS(5245), 1, + sym__newline, + ACTIONS(5248), 1, + anon_sym_LBRACE, + ACTIONS(6637), 1, + anon_sym_DOT_DOT2, + STATE(3608), 1, sym_comment, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6773), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6775), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6783), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6771), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6777), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5131), 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(6779), 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, - [152199] = 8, - ACTIONS(249), 1, + ACTIONS(6639), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5250), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5252), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [129851] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(3609), 1, + sym_comment, + ACTIONS(2224), 10, + sym_raw_string_begin, + 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(2222), 22, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [129897] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3849), 1, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(3610), 1, sym_comment, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6773), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6775), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6771), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6779), 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(5131), 13, - 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, - [152247] = 4, - ACTIONS(249), 1, + ACTIONS(2210), 10, + sym_raw_string_begin, + 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(2206), 22, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [129943] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3850), 1, + ACTIONS(6641), 1, + anon_sym_EQ2, + STATE(3611), 1, sym_comment, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5131), 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, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152287] = 7, - ACTIONS(249), 1, + ACTIONS(5016), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5014), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [129989] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3851), 1, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(3612), 1, sym_comment, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6773), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6775), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6771), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 19, - 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, - [152333] = 6, - ACTIONS(249), 1, + ACTIONS(1032), 10, + sym_raw_string_begin, + 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(1030), 22, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [130035] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6637), 1, + anon_sym_DOT_DOT2, + STATE(3613), 1, + sym_comment, + ACTIONS(6639), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1030), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1032), 25, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130083] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3614), 1, + sym_comment, + ACTIONS(1010), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1012), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [130127] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6608), 1, + aux_sym__immediate_decimal_token2, + STATE(3615), 1, + sym_comment, + ACTIONS(1607), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1609), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + 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, + sym_duration_unit, + [130173] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3852), 1, + STATE(3616), 1, sym_comment, - STATE(5170), 1, - sym_redirection, - ACTIONS(6789), 8, + ACTIONS(2187), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -356861,17 +348086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6791), 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(6753), 12, - ts_builtin_sym_end, + ACTIONS(2189), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356883,96 +348098,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, - [152377] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3853), 1, - sym_comment, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6771), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 23, - 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, - [152419] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6785), 1, - aux_sym_expr_binary_token13, - ACTIONS(6787), 1, - aux_sym_expr_binary_token14, - ACTIONS(6793), 1, - aux_sym_expr_binary_token15, - STATE(3854), 1, - sym_comment, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6773), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6775), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6783), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5131), 4, - anon_sym_LBRACE, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6771), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6777), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6779), 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, - [152477] = 6, - ACTIONS(249), 1, + 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, + [130217] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3855), 1, + ACTIONS(6517), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6643), 1, + anon_sym_DOT, + STATE(3617), 1, sym_comment, - STATE(5185), 1, - sym_redirection, - ACTIONS(6789), 8, + ACTIONS(1755), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -356981,16 +348129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6791), 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(6761), 12, + ACTIONS(1757), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357003,12 +348142,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [152521] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [130265] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3856), 1, + ACTIONS(6645), 1, + anon_sym_LBRACK2, + STATE(3618), 1, + sym_comment, + ACTIONS(2337), 8, + anon_sym_LBRACK, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2341), 24, + sym_raw_string_begin, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [130311] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3619), 1, sym_comment, - ACTIONS(5230), 8, + ACTIONS(1878), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -357017,7 +348209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5226), 21, + ACTIONS(1886), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357030,7 +348222,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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -357039,685 +348234,742 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [152561] = 4, - ACTIONS(249), 1, + [130355] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3857), 1, + ACTIONS(6485), 1, + aux_sym_unquoted_token2, + STATE(3620), 1, sym_comment, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5131), 27, - anon_sym_EQ_GT, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152601] = 10, - ACTIONS(249), 1, + ACTIONS(1709), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1721), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [130401] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3858), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3621), 1, sym_comment, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6773), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6775), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6783), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6771), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6777), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6779), 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(5131), 7, - 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, - [152653] = 14, - ACTIONS(249), 1, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4985), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4983), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130448] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6785), 1, - aux_sym_expr_binary_token13, - ACTIONS(6787), 1, - aux_sym_expr_binary_token14, - ACTIONS(6793), 1, - aux_sym_expr_binary_token15, - ACTIONS(6797), 1, - aux_sym_expr_binary_token16, - STATE(3859), 1, + STATE(3622), 1, sym_comment, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6773), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6775), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6783), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5131), 3, - anon_sym_LBRACE, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6771), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6777), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6779), 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, - [152713] = 5, - ACTIONS(249), 1, + ACTIONS(5088), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5086), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [130491] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3860), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3623), 1, sym_comment, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6799), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 23, - anon_sym_EQ_GT, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152755] = 15, - ACTIONS(249), 1, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130538] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6785), 1, - aux_sym_expr_binary_token13, - ACTIONS(6787), 1, - aux_sym_expr_binary_token14, - ACTIONS(6793), 1, - aux_sym_expr_binary_token15, - ACTIONS(6797), 1, - aux_sym_expr_binary_token16, - ACTIONS(6801), 1, - aux_sym_expr_binary_token17, - STATE(3861), 1, + STATE(3624), 1, sym_comment, - ACTIONS(5131), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_token18, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6773), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6775), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6783), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6771), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6777), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6779), 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, - [152817] = 6, - ACTIONS(249), 1, + ACTIONS(5164), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5162), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [130581] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3862), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3625), 1, sym_comment, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6803), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6799), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 21, - anon_sym_EQ_GT, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152861] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3863), 1, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130628] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3626), 1, sym_comment, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6803), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6805), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6799), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6807), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6809), 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(5131), 9, - anon_sym_EQ_GT, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [152911] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3864), 1, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130675] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3627), 1, sym_comment, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6803), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6805), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6811), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6799), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6807), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6809), 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(5131), 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, - [152963] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6813), 1, - aux_sym_expr_binary_token13, - STATE(3865), 1, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130722] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3628), 1, sym_comment, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6803), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6805), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6811), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6799), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6807), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5131), 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(6809), 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, - [153017] = 12, - ACTIONS(249), 1, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130769] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3629), 1, + sym_comment, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130816] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + aux_sym_record_entry_token1, + ACTIONS(6651), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6653), 1, + sym_filesize_unit, + ACTIONS(6655), 1, + sym_duration_unit, + STATE(3630), 1, + sym_comment, + ACTIONS(6649), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6647), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + 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, + [130867] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6813), 1, - aux_sym_expr_binary_token13, - ACTIONS(6815), 1, - aux_sym_expr_binary_token14, - STATE(3866), 1, + STATE(3631), 1, sym_comment, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6803), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6805), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6811), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6799), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6807), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5131), 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(6809), 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, - [153073] = 13, - ACTIONS(249), 1, + ACTIONS(2367), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2369), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [130910] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6813), 1, - aux_sym_expr_binary_token13, - ACTIONS(6815), 1, - aux_sym_expr_binary_token14, - ACTIONS(6817), 1, - aux_sym_expr_binary_token15, - STATE(3867), 1, + STATE(3632), 1, sym_comment, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6803), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6805), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6811), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5131), 4, - anon_sym_EQ_GT, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6799), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6807), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6809), 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, - [153131] = 6, - ACTIONS(249), 1, + ACTIONS(1763), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1765), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + 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, + sym_duration_unit, + [130953] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3868), 1, + STATE(3633), 1, sym_comment, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6773), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6771), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 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, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [153175] = 14, - ACTIONS(249), 1, + ACTIONS(1972), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1974), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [130996] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6813), 1, - aux_sym_expr_binary_token13, - ACTIONS(6815), 1, - aux_sym_expr_binary_token14, - ACTIONS(6817), 1, - aux_sym_expr_binary_token15, - ACTIONS(6819), 1, - aux_sym_expr_binary_token16, - STATE(3869), 1, + STATE(3634), 1, sym_comment, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6803), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6805), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6811), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5131), 3, - anon_sym_EQ_GT, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6799), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6807), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6809), 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, - [153235] = 15, - ACTIONS(249), 1, + ACTIONS(2468), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2470), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131039] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6813), 1, - aux_sym_expr_binary_token13, - ACTIONS(6815), 1, - aux_sym_expr_binary_token14, - ACTIONS(6817), 1, - aux_sym_expr_binary_token15, - ACTIONS(6819), 1, - aux_sym_expr_binary_token16, - ACTIONS(6821), 1, - aux_sym_expr_binary_token17, - STATE(3870), 1, + ACTIONS(6624), 1, + aux_sym__immediate_decimal_token2, + STATE(3635), 1, sym_comment, - ACTIONS(5131), 2, - anon_sym_EQ_GT, - aux_sym_expr_binary_token18, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6803), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6805), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6811), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6799), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6807), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6809), 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, - [153297] = 8, - ACTIONS(249), 1, + ACTIONS(1607), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1609), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + 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, + sym_duration_unit, + [131084] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3871), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(3636), 1, sym_comment, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6803), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6805), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6799), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6809), 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(5131), 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, - [153345] = 7, - ACTIONS(249), 1, + ACTIONS(2210), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2206), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [131131] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3872), 1, + STATE(3637), 1, sym_comment, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6803), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6805), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6799), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5131), 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, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [153391] = 6, - ACTIONS(249), 1, + ACTIONS(2090), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2092), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131174] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3873), 1, + ACTIONS(6657), 1, + anon_sym_DOT_DOT2, + STATE(3638), 1, sym_comment, - STATE(5119), 1, - sym_redirection, - ACTIONS(6755), 8, + ACTIONS(6659), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1878), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -357726,16 +348978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6757), 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(6823), 12, + ACTIONS(1886), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357748,282 +348991,1090 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [153435] = 11, - ACTIONS(249), 1, + 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, + [131221] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(3639), 1, + sym_comment, + ACTIONS(1032), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(1030), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [131268] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3640), 1, + sym_comment, + ACTIONS(2383), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2385), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131311] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5220), 1, + anon_sym_LBRACE, + ACTIONS(6661), 1, + anon_sym_DOT_DOT2, + STATE(3641), 1, + sym_comment, + ACTIONS(6639), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5222), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5224), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [131360] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3642), 1, + sym_comment, + ACTIONS(5168), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5166), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131403] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3643), 1, + sym_comment, + ACTIONS(5172), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5170), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131446] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3644), 1, + sym_comment, + ACTIONS(2068), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2070), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131489] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3645), 1, + sym_comment, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [131536] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3646), 1, + sym_comment, + ACTIONS(5176), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5174), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131579] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3647), 1, + sym_comment, + ACTIONS(5180), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5178), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131622] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3648), 1, + sym_comment, + ACTIONS(1907), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1911), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131665] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3649), 1, + sym_comment, + ACTIONS(2492), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2494), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131708] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3650), 1, + sym_comment, + ACTIONS(2508), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2510), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131751] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3651), 1, + sym_comment, + ACTIONS(1988), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1990), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131794] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3652), 1, + sym_comment, + ACTIONS(2395), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2397), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131837] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3653), 1, + sym_comment, + ACTIONS(5022), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5020), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131880] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3654), 1, + sym_comment, + ACTIONS(1992), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1994), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131923] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3655), 1, + sym_comment, + ACTIONS(2496), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2498), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131966] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3656), 1, + sym_comment, + ACTIONS(2437), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2439), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132009] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3657), 1, + sym_comment, + ACTIONS(2004), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2006), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132052] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6785), 1, - aux_sym_expr_binary_token13, - STATE(3874), 1, + ACTIONS(6661), 1, + anon_sym_DOT_DOT2, + STATE(3658), 1, sym_comment, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6773), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6775), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6783), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6771), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6777), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5131), 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(6779), 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, - [153489] = 23, - ACTIONS(249), 1, + ACTIONS(6639), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1030), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1032), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132099] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6633), 1, + STATE(3659), 1, + sym_comment, + ACTIONS(2343), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2345), 25, + sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(6635), 1, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132142] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3660), 1, + sym_comment, + ACTIONS(2456), 7, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2458), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3875), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132185] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3661), 1, sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4578), 1, - sym__binary_predicate, - STATE(4579), 1, - sym__predicate, - ACTIONS(6627), 2, + ACTIONS(2347), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2349), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153566] = 15, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132228] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5540), 1, - aux_sym_expr_binary_token13, - ACTIONS(5542), 1, - aux_sym_expr_binary_token14, - ACTIONS(5544), 1, - aux_sym_expr_binary_token15, - ACTIONS(5546), 1, - aux_sym_expr_binary_token16, - ACTIONS(5574), 1, - aux_sym_expr_binary_token17, - ACTIONS(6825), 1, - aux_sym_expr_binary_token18, - STATE(3876), 1, + STATE(3662), 1, sym_comment, - ACTIONS(5530), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5534), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5536), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5538), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5532), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5548), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5550), 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, - [153627] = 15, - ACTIONS(249), 1, + ACTIONS(2250), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + ACTIONS(2248), 30, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_unquoted_token4, + [132271] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6357), 1, - aux_sym_expr_binary_token13, - ACTIONS(6359), 1, - aux_sym_expr_binary_token14, - ACTIONS(6361), 1, - aux_sym_expr_binary_token15, - ACTIONS(6363), 1, - aux_sym_expr_binary_token16, - ACTIONS(6388), 1, - aux_sym_expr_binary_token17, - ACTIONS(6827), 1, - aux_sym_expr_binary_token18, - STATE(3877), 1, + STATE(3663), 1, sym_comment, - ACTIONS(6347), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6351), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6353), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6355), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6349), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6365), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6367), 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, - [153688] = 4, - ACTIONS(249), 1, + ACTIONS(2399), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2401), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132314] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3878), 1, + ACTIONS(1032), 1, + anon_sym_LBRACE, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(3664), 1, sym_comment, - ACTIONS(2277), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2279), 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, - [153727] = 15, - ACTIONS(249), 1, + ACTIONS(1030), 29, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132361] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6785), 1, - aux_sym_expr_binary_token13, - ACTIONS(6787), 1, - aux_sym_expr_binary_token14, - ACTIONS(6793), 1, - aux_sym_expr_binary_token15, - ACTIONS(6797), 1, - aux_sym_expr_binary_token16, - ACTIONS(6801), 1, - aux_sym_expr_binary_token17, - ACTIONS(6829), 1, - aux_sym_expr_binary_token18, - STATE(3879), 1, + STATE(3665), 1, sym_comment, - ACTIONS(6769), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6773), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6775), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6783), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6771), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6777), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6779), 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, - [153788] = 4, - ACTIONS(249), 1, + ACTIONS(1607), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1609), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + 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, + sym_duration_unit, + [132404] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3880), 1, + ACTIONS(6663), 1, + anon_sym_DOT_DOT2, + STATE(3666), 1, sym_comment, - ACTIONS(1842), 8, + ACTIONS(6665), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1866), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -358032,8 +350083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1850), 20, - ts_builtin_sym_end, + ACTIONS(1874), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358045,6 +350095,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_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -358053,1480 +350105,3018 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [153827] = 15, - ACTIONS(249), 1, + [132451] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6283), 1, - aux_sym_expr_binary_token13, - ACTIONS(6285), 1, - aux_sym_expr_binary_token14, - ACTIONS(6287), 1, - aux_sym_expr_binary_token15, - ACTIONS(6289), 1, - aux_sym_expr_binary_token16, - ACTIONS(6291), 1, - aux_sym_expr_binary_token17, - ACTIONS(6831), 1, - aux_sym_expr_binary_token18, - STATE(3881), 1, + STATE(3667), 1, sym_comment, - ACTIONS(6269), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6273), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6275), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6281), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6271), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6277), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6279), 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, - [153888] = 23, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3518), 1, - anon_sym_DASH, - ACTIONS(3524), 1, + ACTIONS(2351), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2353), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132494] = 27, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6625), 1, + ACTIONS(6667), 1, sym_identifier, - ACTIONS(6635), 1, + ACTIONS(6669), 1, + sym__newline, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6639), 1, + ACTIONS(6675), 1, + anon_sym_LBRACE, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, + ACTIONS(6681), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, + ACTIONS(6683), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6747), 1, - anon_sym_LPAREN, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, + STATE(1810), 1, sym__val_number_decimal, - STATE(3882), 1, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3668), 1, sym_comment, - STATE(3902), 1, + STATE(3701), 1, + aux_sym_shebang_repeat1, + STATE(3968), 1, sym_expr_parenthesized, - STATE(4336), 1, + STATE(4294), 1, sym_val_number, - STATE(4591), 1, - sym__binary_predicate, - STATE(4619), 1, - sym__expr_unary_minus, - STATE(4678), 1, + STATE(4361), 1, sym__predicate, - ACTIONS(6745), 2, + STATE(4364), 1, + sym__binary_predicate_parenthesized, + STATE(4894), 1, + sym_val_closure, + ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4590), 2, + STATE(4502), 2, sym_expr_unary, sym_val_bool, - STATE(5107), 2, + STATE(5016), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6629), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + ACTIONS(429), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153965] = 23, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [132583] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3518), 1, - anon_sym_DASH, - ACTIONS(3524), 1, - aux_sym_expr_unary_token1, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6635), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3669), 1, + sym_comment, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132630] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3670), 1, + sym_comment, + ACTIONS(2355), 7, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2357), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6747), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132673] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3671), 1, + sym_comment, + ACTIONS(5145), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5143), 25, + sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3883), 1, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132716] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3672), 1, sym_comment, - STATE(3902), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4609), 1, - sym__binary_predicate, - STATE(4619), 1, - sym__expr_unary_minus, - STATE(4621), 1, - sym__predicate, - ACTIONS(6745), 2, + ACTIONS(5130), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5128), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4590), 2, - sym_expr_unary, - sym_val_bool, - STATE(5107), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154042] = 15, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132759] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5331), 1, - aux_sym_expr_binary_token13, - ACTIONS(5333), 1, - aux_sym_expr_binary_token14, - ACTIONS(5335), 1, - aux_sym_expr_binary_token15, - ACTIONS(5337), 1, - aux_sym_expr_binary_token16, - ACTIONS(5339), 1, - aux_sym_expr_binary_token17, - ACTIONS(6833), 1, - aux_sym_expr_binary_token18, - STATE(3884), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + anon_sym_LBRACE, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(3673), 1, sym_comment, - ACTIONS(5321), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5325), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5327), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5329), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5323), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5341), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5343), 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, - [154103] = 23, - ACTIONS(249), 1, + ACTIONS(2206), 29, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132806] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3674), 1, + sym_comment, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132853] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3518), 1, - anon_sym_DASH, - ACTIONS(3524), 1, - aux_sym_expr_unary_token1, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6635), 1, + STATE(3675), 1, + sym_comment, + ACTIONS(2504), 7, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2506), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6747), 1, - anon_sym_LPAREN, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3885), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132896] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3676), 1, sym_comment, - STATE(3902), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4592), 1, - sym__predicate, - STATE(4619), 1, - sym__expr_unary_minus, - STATE(4684), 1, - sym__binary_predicate, - ACTIONS(6745), 2, + ACTIONS(2359), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2361), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4590), 2, - sym_expr_unary, - sym_val_bool, - STATE(5107), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154180] = 4, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132939] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3886), 1, + STATE(3677), 1, sym_comment, - ACTIONS(1788), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_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), 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, - [154219] = 23, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3518), 1, - anon_sym_DASH, - ACTIONS(3524), 1, + ACTIONS(2407), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2409), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, aux_sym_expr_unary_token1, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6635), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132982] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3678), 1, + sym_comment, + ACTIONS(5098), 7, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5096), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6747), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133025] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3679), 1, + sym_comment, + ACTIONS(5102), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5100), 25, + sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3887), 1, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133068] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3680), 1, sym_comment, - STATE(3902), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4619), 1, - sym__expr_unary_minus, - STATE(4651), 1, - sym__binary_predicate, - STATE(4667), 1, - sym__predicate, - ACTIONS(6745), 2, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4973), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4971), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133115] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3681), 1, + sym_comment, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4977), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4975), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133162] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3682), 1, + sym_comment, + ACTIONS(1621), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1623), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + 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, + sym_duration_unit, + [133205] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5220), 1, + anon_sym_EQ_GT, + ACTIONS(6685), 1, + anon_sym_DOT_DOT2, + STATE(3683), 1, + sym_comment, + ACTIONS(6687), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5222), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5224), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133254] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6685), 1, + anon_sym_DOT_DOT2, + STATE(3684), 1, + sym_comment, + ACTIONS(6687), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1030), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1032), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133301] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(3685), 1, + sym_comment, + ACTIONS(2214), 29, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133348] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3686), 1, + sym_comment, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4981), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4979), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133395] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3687), 1, + sym_comment, + ACTIONS(2363), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2365), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4590), 2, - sym_expr_unary, - sym_val_bool, - STATE(5107), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154296] = 4, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133438] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3888), 1, + STATE(3688), 1, sym_comment, - ACTIONS(2246), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2250), 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, - [154335] = 4, - ACTIONS(249), 1, + ACTIONS(2488), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2490), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133481] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3889), 1, + STATE(3689), 1, sym_comment, - ACTIONS(2335), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2339), 20, - ts_builtin_sym_end, + ACTIONS(2250), 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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [154374] = 23, - ACTIONS(249), 1, + anon_sym_LBRACE, + anon_sym_LPAREN2, + ACTIONS(2248), 29, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_unquoted_token4, + [133524] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3518), 1, - anon_sym_DASH, - ACTIONS(3524), 1, - aux_sym_expr_unary_token1, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6635), 1, + STATE(3690), 1, + sym_comment, + ACTIONS(1709), 7, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1721), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6747), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133567] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3691), 1, + sym_comment, + ACTIONS(2464), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2466), 25, + sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3890), 1, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133610] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + ACTIONS(2224), 1, + anon_sym_LBRACE, + STATE(3692), 1, sym_comment, - STATE(3902), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4595), 1, - sym__binary_predicate, - STATE(4608), 1, - sym__predicate, - STATE(4619), 1, - sym__expr_unary_minus, - ACTIONS(6745), 2, + ACTIONS(2222), 29, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133657] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3693), 1, + sym_comment, + ACTIONS(1673), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1675), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + 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, + sym_duration_unit, + [133700] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3694), 1, + sym_comment, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133747] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(3695), 1, + sym_comment, + ACTIONS(2218), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2214), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133794] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(3696), 1, + sym_comment, + ACTIONS(2224), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2222), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133841] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3697), 1, + sym_comment, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133888] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3698), 1, + sym_comment, + ACTIONS(2403), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2405), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4590), 2, - sym_expr_unary, - sym_val_bool, - STATE(5107), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154451] = 23, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133931] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, + STATE(3699), 1, + sym_comment, + ACTIONS(2460), 7, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2462), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3891), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133974] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3700), 1, sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4565), 1, - sym__binary_predicate, - STATE(4571), 1, - sym__predicate, - ACTIONS(6627), 2, + ACTIONS(2347), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2349), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154528] = 23, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134017] = 27, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, + ACTIONS(6667), 1, sym_identifier, - ACTIONS(6633), 1, + ACTIONS(6669), 1, + sym__newline, + ACTIONS(6671), 1, anon_sym_LPAREN, - ACTIONS(6635), 1, + ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6639), 1, + ACTIONS(6675), 1, + anon_sym_LBRACE, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, + ACTIONS(6681), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, + ACTIONS(6683), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, + STATE(1810), 1, sym__val_number_decimal, - STATE(3892), 1, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3701), 1, sym_comment, - STATE(3898), 1, + STATE(3968), 1, sym_expr_parenthesized, - STATE(4336), 1, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4574), 1, - sym__binary_predicate, - STATE(4575), 1, + STATE(4379), 1, + sym__binary_predicate_parenthesized, + STATE(4381), 1, sym__predicate, - ACTIONS(6627), 2, + STATE(4874), 1, + sym_val_closure, + ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4377), 2, + STATE(4502), 2, sym_expr_unary, sym_val_bool, - STATE(5196), 2, + STATE(5016), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6629), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + ACTIONS(429), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154605] = 23, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [134106] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, + STATE(3702), 1, + sym_comment, + ACTIONS(1030), 7, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1032), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3893), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134149] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3703), 1, sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4576), 1, - sym__binary_predicate, - STATE(4577), 1, - sym__predicate, - ACTIONS(6627), 2, + ACTIONS(2094), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2096), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154682] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6813), 1, - aux_sym_expr_binary_token13, - ACTIONS(6815), 1, - aux_sym_expr_binary_token14, - ACTIONS(6817), 1, - aux_sym_expr_binary_token15, - ACTIONS(6819), 1, - aux_sym_expr_binary_token16, - ACTIONS(6821), 1, - aux_sym_expr_binary_token17, - ACTIONS(6835), 1, - aux_sym_expr_binary_token18, - STATE(3894), 1, - sym_comment, - ACTIONS(6795), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6803), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6805), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6811), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6799), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6807), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6809), 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, - [154743] = 15, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134192] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6733), 1, - aux_sym_expr_binary_token13, - ACTIONS(6735), 1, - aux_sym_expr_binary_token14, - ACTIONS(6737), 1, - aux_sym_expr_binary_token15, - ACTIONS(6739), 1, - aux_sym_expr_binary_token16, - ACTIONS(6741), 1, - aux_sym_expr_binary_token17, - ACTIONS(6837), 1, - aux_sym_expr_binary_token18, - STATE(3895), 1, + STATE(3704), 1, sym_comment, - ACTIONS(6647), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6723), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6725), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6731), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6721), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6727), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6729), 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, - [154804] = 23, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, + ACTIONS(2500), 7, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2502), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3896), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134235] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3705), 1, sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4580), 1, - sym__binary_predicate, - STATE(4581), 1, - sym__predicate, - ACTIONS(6627), 2, + ACTIONS(1018), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1020), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154881] = 23, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134278] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_DASH, - ACTIONS(3474), 1, - aux_sym_expr_unary_token1, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6633), 1, - anon_sym_LPAREN, - ACTIONS(6635), 1, + STATE(3706), 1, + sym_comment, + ACTIONS(2480), 7, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2482), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3897), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134321] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3707), 1, sym_comment, - STATE(3898), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4482), 1, - sym__expr_unary_minus, - STATE(4582), 1, - sym__binary_predicate, - STATE(4583), 1, - sym__predicate, - ACTIONS(6627), 2, + ACTIONS(1948), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1950), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4377), 2, - sym_expr_unary, - sym_val_bool, - STATE(5196), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [154958] = 7, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134364] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3898), 1, + ACTIONS(6689), 1, + aux_sym__immediate_decimal_token2, + STATE(3708), 1, sym_comment, - ACTIONS(6841), 2, + ACTIONS(1673), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, anon_sym_GT, - anon_sym_LT2, - ACTIONS(6847), 2, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1675), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6843), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6845), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6839), 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, - [155003] = 23, - ACTIONS(249), 1, + sym_duration_unit, + [134409] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3486), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3518), 1, - anon_sym_DASH, - ACTIONS(3524), 1, - aux_sym_expr_unary_token1, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6635), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3709), 1, + sym_comment, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134456] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3710), 1, + sym_comment, + ACTIONS(2387), 7, anon_sym_DOLLAR, - ACTIONS(6639), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(6641), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2389), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6747), 1, - anon_sym_LPAREN, - STATE(3529), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3899), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134499] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(3711), 1, sym_comment, - STATE(3902), 1, - sym_expr_parenthesized, - STATE(4336), 1, - sym_val_number, - STATE(4619), 1, - sym__expr_unary_minus, - STATE(4632), 1, - sym__binary_predicate, - STATE(4649), 1, - sym__predicate, - ACTIONS(6745), 2, + STATE(7392), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134546] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3712), 1, + sym_comment, + ACTIONS(1913), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1915), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(4590), 2, - sym_expr_unary, - sym_val_bool, - STATE(5107), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6629), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155080] = 4, - ACTIONS(249), 1, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134589] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3900), 1, - sym_comment, - ACTIONS(5139), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5137), 20, - ts_builtin_sym_end, + ACTIONS(5471), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [155119] = 12, - ACTIONS(249), 1, + STATE(3713), 1, + sym_comment, + STATE(3816), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5334), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5332), 20, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134641] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6705), 1, + anon_sym_and2, + ACTIONS(6707), 1, + anon_sym_xor2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3714), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5320), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [134713] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6849), 1, - anon_sym_DOT, - ACTIONS(6853), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6855), 1, - aux_sym__immediate_decimal_token5, - STATE(3901), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3715), 1, sym_comment, - STATE(4013), 1, - sym__immediate_decimal, - ACTIONS(6851), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3534), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1524), 16, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5282), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5280), 23, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134759] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5422), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + STATE(3716), 1, + sym_comment, + STATE(3790), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5268), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [134827] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6705), 1, + anon_sym_and2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3717), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5276), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [134897] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6705), 1, + anon_sym_and2, + ACTIONS(6707), 1, + anon_sym_xor2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3718), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5276), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [134969] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3719), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5276), 10, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135029] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 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_and, - anon_sym_xor, - anon_sym_or, - [155173] = 7, - ACTIONS(249), 1, + STATE(3720), 1, + sym_comment, + STATE(3839), 1, + aux_sym_shebang_repeat1, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5286), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 22, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135077] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3721), 1, + sym_comment, + ACTIONS(5278), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5276), 20, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135131] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3722), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5280), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [135199] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3902), 1, + ACTIONS(6749), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6751), 1, + sym_filesize_unit, + ACTIONS(6753), 1, + sym_duration_unit, + STATE(3723), 1, sym_comment, - ACTIONS(6857), 2, + ACTIONS(6747), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, anon_sym_GT, - anon_sym_LT2, - ACTIONS(6863), 2, + ACTIONS(6745), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6859), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6861), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6839), 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, - [155217] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - ACTIONS(6867), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6869), 1, - aux_sym__immediate_decimal_token5, - STATE(3903), 1, - sym_comment, - STATE(4194), 1, - sym__immediate_decimal, - ACTIONS(6865), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3422), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1524), 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, - [155268] = 12, - ACTIONS(249), 1, + [135247] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6871), 1, - anon_sym_DOLLAR, - ACTIONS(6873), 1, - anon_sym_DOT, - ACTIONS(6877), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6879), 1, - aux_sym__immediate_decimal_token5, - STATE(3904), 1, - sym_comment, - STATE(4088), 1, - sym__immediate_decimal, - ACTIONS(6875), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4274), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1524), 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, - [155321] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - ACTIONS(6867), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6869), 1, - aux_sym__immediate_decimal_token5, - STATE(3905), 1, - sym_comment, - STATE(4278), 1, - sym__immediate_decimal, - ACTIONS(6865), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3433), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1556), 16, + ACTIONS(5374), 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_and, - anon_sym_xor, - anon_sym_or, - [155372] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6881), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6883), 1, - aux_sym__immediate_decimal_token2, - STATE(3906), 1, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + STATE(3724), 1, sym_comment, - ACTIONS(1528), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_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, - [155412] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(6446), 1, + STATE(3840), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5284), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [135317] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2216), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_DOLLAR, - ACTIONS(6889), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6891), 1, - aux_sym__immediate_decimal_token5, - STATE(3907), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(3725), 1, sym_comment, - STATE(4352), 1, - sym__immediate_decimal, - ACTIONS(6887), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3673), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1556), 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, - [155462] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6885), 1, - anon_sym_DOLLAR, - ACTIONS(6889), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6891), 1, - aux_sym__immediate_decimal_token5, - STATE(3908), 1, + ACTIONS(2214), 29, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135361] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3726), 1, sym_comment, - STATE(4314), 1, - sym__immediate_decimal, - ACTIONS(6887), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3707), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1524), 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, - [155512] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1524), 1, - sym__space, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(1947), 1, - anon_sym_DOLLAR, - ACTIONS(6893), 1, + ACTIONS(5322), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5320), 20, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135415] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2216), 1, anon_sym_LPAREN2, - ACTIONS(6895), 1, - anon_sym_DOT, - ACTIONS(6897), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6899), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6901), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6903), 1, - aux_sym__immediate_decimal_token5, - STATE(3909), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(3727), 1, sym_comment, - STATE(4137), 1, - sym__immediate_decimal, - STATE(4354), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 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, - [155568] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6488), 1, - anon_sym_DOT, - ACTIONS(6871), 1, - anon_sym_DOLLAR, - STATE(3910), 1, + ACTIONS(2222), 29, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135459] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3728), 1, sym_comment, - STATE(4273), 1, - sym__immediate_decimal, - ACTIONS(6450), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4272), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1570), 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, - [155618] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6905), 1, - anon_sym_DOT, - ACTIONS(6907), 1, - aux_sym__immediate_decimal_token2, - STATE(3911), 1, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5276), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135521] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3729), 1, sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5276), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135585] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6761), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6763), 1, sym_filesize_unit, + ACTIONS(6765), 1, sym_duration_unit, - [155658] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3912), 1, + STATE(3730), 1, sym_comment, - STATE(4071), 1, - sym_cell_path, - ACTIONS(2049), 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, + ACTIONS(6759), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6757), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [155701] = 13, + 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, + [135633] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3731), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5276), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [135699] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3732), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135761] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6705), 1, + anon_sym_and2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3733), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5280), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [135831] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1556), 1, - sym__space, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(4273), 1, - anon_sym_DOLLAR, - ACTIONS(6893), 1, + ACTIONS(2250), 1, anon_sym_LPAREN2, - ACTIONS(6909), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6911), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6913), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6915), 1, - aux_sym__immediate_decimal_token5, - STATE(3913), 1, + STATE(3734), 1, sym_comment, - STATE(4543), 1, - sym__immediate_decimal, - STATE(4846), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1544), 13, + ACTIONS(2248), 30, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_unquoted_token4, + [135873] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 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, - [155754] = 8, - ACTIONS(249), 1, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + ACTIONS(6767), 1, + anon_sym_and2, + STATE(3735), 1, + sym_comment, + STATE(3843), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5284), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [135945] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6705), 1, + anon_sym_and2, + ACTIONS(6707), 1, + anon_sym_xor2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3736), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5280), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [136017] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2013), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3914), 1, + STATE(3737), 1, sym_comment, - STATE(4067), 1, - sym_cell_path, - ACTIONS(2015), 19, + ACTIONS(2429), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2431), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359538,30 +353128,87 @@ static const uint16_t ts_small_parse_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, - [155797] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [136059] = 20, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2017), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3915), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + ACTIONS(6767), 1, + anon_sym_and2, + ACTIONS(6769), 1, + anon_sym_xor2, + STATE(3714), 1, + aux_sym_shebang_repeat1, + STATE(3738), 1, sym_comment, - STATE(4068), 1, - sym_cell_path, - ACTIONS(2019), 19, + ACTIONS(5284), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [136133] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3739), 1, + sym_comment, + ACTIONS(2433), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2435), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359573,27 +353220,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [136175] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3053), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6771), 1, + sym_filesize_unit, + ACTIONS(6773), 1, + sym_duration_unit, + STATE(3740), 1, + sym_comment, + ACTIONS(3051), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3049), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [155840] = 6, - ACTIONS(249), 1, + 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, + [136223] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6917), 1, - anon_sym_DOT, - ACTIONS(6919), 1, - aux_sym__immediate_decimal_token2, - STATE(3916), 1, + STATE(3741), 1, sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 20, + ACTIONS(2159), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2165), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -359606,218 +353299,1359 @@ static const uint16_t 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [136265] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5422), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3742), 1, + sym_comment, + STATE(3785), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5268), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136329] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5422), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + STATE(3743), 1, + sym_comment, + STATE(3768), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5268), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [136399] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5422), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3744), 1, + sym_comment, + STATE(3760), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5268), 13, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136459] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5422), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + STATE(3745), 1, + sym_comment, + STATE(3787), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5268), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136525] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3746), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5280), 10, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136585] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5422), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3747), 1, + sym_comment, + STATE(3748), 1, + aux_sym_shebang_repeat1, + ACTIONS(5270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5268), 17, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136643] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3748), 1, + sym_comment, + ACTIONS(5330), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5328), 18, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136699] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5422), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + ACTIONS(6767), 1, + anon_sym_and2, + STATE(3749), 1, + sym_comment, + STATE(3770), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5268), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [136771] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5471), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3750), 1, + sym_comment, + STATE(3784), 1, + aux_sym_shebang_repeat1, + ACTIONS(5334), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5332), 17, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136829] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3751), 1, + sym_comment, + STATE(3756), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5284), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136891] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3752), 1, + sym_comment, + ACTIONS(5282), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5280), 20, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136945] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2202), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [155879] = 8, - ACTIONS(249), 1, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(3753), 1, + sym_comment, + ACTIONS(1030), 29, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136989] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3726), 1, + aux_sym_shebang_repeat1, + STATE(3754), 1, + sym_comment, + ACTIONS(5286), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5284), 19, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137045] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2021), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3917), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3755), 1, sym_comment, - STATE(4069), 1, - sym_cell_path, - ACTIONS(2023), 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, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5330), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5328), 21, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137095] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3756), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 10, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137155] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3757), 1, + sym_comment, + ACTIONS(1621), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1623), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [155922] = 8, - ACTIONS(249), 1, + 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, + sym_duration_unit, + [137197] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3918), 1, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3758), 1, sym_comment, - STATE(4070), 1, - sym_cell_path, - ACTIONS(2045), 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, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5280), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137259] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3759), 1, + sym_comment, + ACTIONS(5282), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5280), 18, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137315] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3760), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5328), 14, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137373] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6779), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6781), 1, + sym_filesize_unit, + ACTIONS(6783), 1, + sym_duration_unit, + STATE(3761), 1, + sym_comment, + ACTIONS(6777), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6775), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [155965] = 8, - ACTIONS(249), 1, + 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, + [137421] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3919), 1, + ACTIONS(6789), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6791), 1, + sym_filesize_unit, + ACTIONS(6793), 1, + sym_duration_unit, + STATE(3762), 1, sym_comment, - STATE(4082), 1, - sym_cell_path, - ACTIONS(1903), 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, + ACTIONS(6787), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [156008] = 5, - ACTIONS(249), 1, + 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, + [137469] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6907), 1, - aux_sym__immediate_decimal_token2, - STATE(3920), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 21, + ACTIONS(5374), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3763), 1, + sym_comment, + STATE(3836), 1, + aux_sym_shebang_repeat1, + ACTIONS(5286), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5284), 17, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137527] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5471), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3764), 1, + sym_comment, + STATE(3822), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5332), 13, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137587] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3765), 1, + sym_comment, + ACTIONS(1607), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1609), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, 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, + 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, sym_duration_unit, - [156045] = 10, - ACTIONS(249), 1, + [137629] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(6921), 1, - anon_sym_DOT_DOT2, - ACTIONS(6925), 1, - sym_filesize_unit, - ACTIONS(6927), 1, - sym_duration_unit, - ACTIONS(6929), 1, - aux_sym_unquoted_token2, - STATE(3921), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3766), 1, sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6923), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 16, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5330), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5328), 23, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137675] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5471), 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_and, - anon_sym_xor, - anon_sym_or, - [156092] = 14, - ACTIONS(3), 1, + STATE(3767), 1, + sym_comment, + STATE(3823), 1, + aux_sym_shebang_repeat1, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5334), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5332), 22, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137723] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3768), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5328), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [137791] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5471), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + STATE(3769), 1, + sym_comment, + STATE(3828), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5332), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [137861] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6705), 1, + anon_sym_and2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3770), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5328), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [137931] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(2131), 1, - anon_sym_DOLLAR, - ACTIONS(6931), 1, - anon_sym_LPAREN2, - ACTIONS(6933), 1, - anon_sym_DOT, - ACTIONS(6935), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6937), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6939), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6941), 1, - aux_sym__immediate_decimal_token5, - STATE(3922), 1, + STATE(3771), 1, sym_comment, - STATE(4156), 1, - sym__immediate_decimal, - ACTIONS(1524), 2, + ACTIONS(2375), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2377), 23, ts_builtin_sym_end, - sym__space, - STATE(4383), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359829,28 +354663,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, - [156147] = 10, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [137973] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6885), 1, - anon_sym_DOLLAR, - STATE(3690), 1, - sym__immediate_decimal, - STATE(3923), 1, + STATE(3772), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3781), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1570), 15, + ACTIONS(2167), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2173), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -359863,31 +354701,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_and, - anon_sym_xor, - anon_sym_or, - [156194] = 10, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138015] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6885), 1, - anon_sym_DOLLAR, - STATE(3666), 1, - sym__immediate_decimal, - STATE(3924), 1, + STATE(3773), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3665), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1610), 15, + ACTIONS(2175), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2181), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -359900,68 +354739,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138057] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5471), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + ACTIONS(6767), 1, + anon_sym_and2, + STATE(3717), 1, + aux_sym_shebang_repeat1, + STATE(3774), 1, + sym_comment, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5332), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [138129] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3067), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6795), 1, + sym_filesize_unit, + ACTIONS(6797), 1, + sym_duration_unit, + STATE(3775), 1, + sym_comment, + ACTIONS(3065), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3063), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [156241] = 10, - ACTIONS(249), 1, + 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, + [138177] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6885), 1, - anon_sym_DOLLAR, - STATE(3668), 1, - sym__immediate_decimal, - STATE(3925), 1, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6705), 1, + anon_sym_and2, + ACTIONS(6707), 1, + anon_sym_xor2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3776), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3667), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1614), 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, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5328), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [138249] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + ACTIONS(6767), 1, + anon_sym_and2, + ACTIONS(6769), 1, + anon_sym_xor2, + STATE(3718), 1, + aux_sym_shebang_repeat1, + STATE(3777), 1, + sym_comment, + ACTIONS(5332), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [138323] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6803), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6805), 1, + sym_filesize_unit, + ACTIONS(6807), 1, + sym_duration_unit, + STATE(3778), 1, + sym_comment, + ACTIONS(6801), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6799), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [156288] = 10, - ACTIONS(249), 1, + 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, + [138371] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6885), 1, - anon_sym_DOLLAR, - STATE(3672), 1, - sym__immediate_decimal, - STATE(3926), 1, + ACTIONS(6809), 1, + anon_sym_DOT_DOT2, + STATE(3779), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3671), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1622), 15, + ACTIONS(6811), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1878), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1886), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -359974,55 +355024,405 @@ static const uint16_t 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, - [156335] = 8, - ACTIONS(249), 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, + [138417] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1993), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3927), 1, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3780), 1, sym_comment, - STATE(4061), 1, - sym_cell_path, - ACTIONS(1995), 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, - [156378] = 5, - ACTIONS(249), 1, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5328), 10, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138477] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5471), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3719), 1, + aux_sym_shebang_repeat1, + STATE(3781), 1, + sym_comment, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5332), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138539] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3782), 1, + sym_comment, + ACTIONS(5330), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5328), 20, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138593] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5471), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3721), 1, + aux_sym_shebang_repeat1, + STATE(3783), 1, + sym_comment, + ACTIONS(5334), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5332), 19, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138649] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3784), 1, + sym_comment, + ACTIONS(5278), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5276), 18, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138705] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3785), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5328), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138767] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5471), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3728), 1, + aux_sym_shebang_repeat1, + STATE(3786), 1, + sym_comment, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5332), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138831] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3787), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5328), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138895] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6943), 1, - aux_sym__immediate_decimal_token2, - STATE(3928), 1, + STATE(3788), 1, sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 21, + ACTIONS(2133), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_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), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360034,107 +355434,453 @@ static const uint16_t ts_small_parse_table[] = { 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, - [156415] = 13, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138937] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1524), 1, - sym__space, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(4273), 1, - anon_sym_DOLLAR, - ACTIONS(6893), 1, - anon_sym_LPAREN2, - ACTIONS(6909), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6911), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6913), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6915), 1, - aux_sym__immediate_decimal_token5, - STATE(3929), 1, + ACTIONS(5471), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + STATE(3729), 1, + aux_sym_shebang_repeat1, + STATE(3789), 1, sym_comment, - STATE(4489), 1, - sym__immediate_decimal, - STATE(4755), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1510), 13, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5332), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139003] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3790), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5328), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [139069] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5471), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + STATE(3731), 1, + aux_sym_shebang_repeat1, + STATE(3791), 1, + sym_comment, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5332), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [139137] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3759), 1, + aux_sym_shebang_repeat1, + STATE(3792), 1, + sym_comment, + ACTIONS(5274), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5272), 17, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139195] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5407), 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, - [156468] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1929), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3930), 1, + STATE(3793), 1, sym_comment, - STATE(4057), 1, - sym_cell_path, - ACTIONS(1931), 19, + STATE(3825), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5274), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5272), 20, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139247] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3794), 1, + sym_comment, + STATE(3830), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5272), 13, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139307] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3732), 1, + aux_sym_shebang_repeat1, + STATE(3795), 1, + sym_comment, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5284), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139371] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5422), 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_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156511] = 8, - ACTIONS(249), 1, + STATE(3755), 1, + aux_sym_shebang_repeat1, + STATE(3796), 1, + sym_comment, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5270), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5268), 20, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139423] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5407), 1, + sym__newline, + STATE(3715), 1, + aux_sym_shebang_repeat1, + STATE(3797), 1, + sym_comment, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5274), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5272), 22, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139471] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1997), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3931), 1, + STATE(3798), 1, sym_comment, - STATE(4062), 1, - sym_cell_path, - ACTIONS(1999), 19, + ACTIONS(2472), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2474), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360146,30 +355892,134 @@ static const uint16_t ts_small_parse_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, - [156554] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139513] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3932), 1, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + STATE(3722), 1, + aux_sym_shebang_repeat1, + STATE(3799), 1, sym_comment, - STATE(4063), 1, - sym_cell_path, - ACTIONS(2003), 19, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5272), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [139583] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3800), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5280), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139647] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3801), 1, + sym_comment, + ACTIONS(2476), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2478), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360181,30 +356031,332 @@ static const uint16_t ts_small_parse_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, - [156597] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139689] = 19, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2005), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3933), 1, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + ACTIONS(6767), 1, + anon_sym_and2, + STATE(3733), 1, + aux_sym_shebang_repeat1, + STATE(3802), 1, sym_comment, - STATE(4064), 1, - sym_cell_path, - ACTIONS(2007), 19, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5272), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [139761] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + STATE(3803), 1, + sym_comment, + STATE(3806), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5284), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139827] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + ACTIONS(6767), 1, + anon_sym_and2, + ACTIONS(6769), 1, + anon_sym_xor2, + STATE(3736), 1, + aux_sym_shebang_repeat1, + STATE(3804), 1, + sym_comment, + ACTIONS(5272), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [139901] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3746), 1, + aux_sym_shebang_repeat1, + STATE(3805), 1, + sym_comment, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5272), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139963] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3806), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140027] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3752), 1, + aux_sym_shebang_repeat1, + STATE(3807), 1, + sym_comment, + ACTIONS(5274), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5272), 19, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140083] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3808), 1, + sym_comment, + ACTIONS(2441), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2443), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360216,30 +356368,287 @@ static const uint16_t ts_small_parse_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, - [156640] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [140125] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2051), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3934), 1, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3809), 1, sym_comment, - STATE(4072), 1, - sym_cell_path, - ACTIONS(2053), 19, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5280), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [140191] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3758), 1, + aux_sym_shebang_repeat1, + STATE(3810), 1, + sym_comment, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5272), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140255] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + STATE(3811), 1, + sym_comment, + STATE(3826), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5284), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [140323] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + STATE(3800), 1, + aux_sym_shebang_repeat1, + STATE(3812), 1, + sym_comment, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5272), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140389] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + ACTIONS(6767), 1, + anon_sym_and2, + ACTIONS(6769), 1, + anon_sym_xor2, + STATE(3776), 1, + aux_sym_shebang_repeat1, + STATE(3813), 1, + sym_comment, + ACTIONS(5268), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [140463] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3814), 1, + sym_comment, + ACTIONS(2391), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2393), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360251,30 +356660,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, - [156683] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [140505] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3935), 1, + STATE(3815), 1, sym_comment, - STATE(4074), 1, - sym_cell_path, - ACTIONS(2057), 19, + ACTIONS(2413), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2415), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360286,30 +356698,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, - 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, - [156726] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [140547] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3936), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3816), 1, sym_comment, - STATE(4087), 1, - sym_cell_path, - ACTIONS(1911), 19, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5278), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5276), 21, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140597] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + STATE(3809), 1, + aux_sym_shebang_repeat1, + STATE(3817), 1, + sym_comment, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5272), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [140665] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3818), 1, + sym_comment, + ACTIONS(2371), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2373), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360321,30 +356829,79 @@ static const uint16_t ts_small_parse_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [140707] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6817), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6819), 1, + sym_filesize_unit, + ACTIONS(6821), 1, + sym_duration_unit, + STATE(3819), 1, + sym_comment, + ACTIONS(6815), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6813), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [156769] = 8, - ACTIONS(249), 1, + 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, + [140755] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3937), 1, + ACTIONS(6823), 1, + anon_sym_DOT_DOT2, + STATE(3820), 1, sym_comment, - STATE(4054), 1, - sym_cell_path, - ACTIONS(1899), 19, + ACTIONS(6825), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1866), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1874), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360356,30 +356913,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_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156812] = 8, - ACTIONS(249), 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, + [140801] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2009), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3938), 1, + ACTIONS(5422), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3780), 1, + aux_sym_shebang_repeat1, + STATE(3821), 1, sym_comment, - STATE(4065), 1, - sym_cell_path, - ACTIONS(2011), 19, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5268), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140863] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3822), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5276), 14, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140921] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3823), 1, + sym_comment, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5278), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5276), 23, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140967] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3824), 1, + sym_comment, + ACTIONS(2425), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2427), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360391,30 +357082,429 @@ static const uint16_t ts_small_parse_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, - [156855] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141009] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3939), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3825), 1, sym_comment, - STATE(4075), 1, - sym_cell_path, - ACTIONS(2061), 19, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5282), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5280), 21, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141059] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3826), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [141125] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + STATE(3827), 1, + sym_comment, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 25, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141169] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3828), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5276), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [141237] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + sym__newline, + STATE(3829), 1, + sym_comment, + STATE(3837), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5286), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5284), 20, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141289] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3830), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5280), 14, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141347] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(3831), 1, + sym_comment, + ACTIONS(2206), 29, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141391] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3832), 1, + sym_comment, + STATE(3838), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5284), 13, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141451] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6458), 1, + aux_sym_unquoted_token2, + STATE(3833), 1, + sym_comment, + ACTIONS(1709), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141495] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3834), 1, + sym_comment, + ACTIONS(2421), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2423), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360426,65 +357516,724 @@ static const uint16_t ts_small_parse_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141537] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3835), 1, + sym_comment, + ACTIONS(1763), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1765), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [156898] = 8, - ACTIONS(249), 1, + 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, + sym_duration_unit, + [141579] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2067), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3940), 1, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3836), 1, sym_comment, - STATE(4076), 1, - sym_cell_path, - ACTIONS(2069), 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, + ACTIONS(5322), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5320), 18, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141635] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3837), 1, + sym_comment, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5322), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5320), 21, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141685] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3838), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 14, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141743] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3839), 1, + sym_comment, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5322), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5320), 23, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141789] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3840), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [141857] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5422), 1, + sym__newline, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + STATE(3782), 1, + aux_sym_shebang_repeat1, + STATE(3841), 1, + sym_comment, + ACTIONS(5270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5268), 19, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141913] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3842), 1, + sym_comment, + ACTIONS(1673), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1675), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [156941] = 8, - ACTIONS(249), 1, + 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, + sym_duration_unit, + [141955] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2083), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3941), 1, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6705), 1, + anon_sym_and2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3843), 1, sym_comment, - STATE(4077), 1, - sym_cell_path, - ACTIONS(2085), 19, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5320), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [142025] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5422), 1, + sym__newline, + STATE(3766), 1, + aux_sym_shebang_repeat1, + STATE(3844), 1, + sym_comment, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5270), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5268), 22, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142073] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3845), 1, + sym_comment, + ACTIONS(5222), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5224), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142114] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3846), 1, + sym_comment, + ACTIONS(5239), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5237), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142155] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3847), 1, + sym_comment, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142196] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 1, + sym__newline, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3848), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, + sym_val_number, + STATE(4439), 1, + sym__binary_predicate_parenthesized, + STATE(4440), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142279] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3849), 1, + sym_comment, + ACTIONS(2214), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2218), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142320] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3850), 1, + sym_comment, + ACTIONS(5258), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5256), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142361] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3851), 1, + sym_comment, + STATE(4865), 1, + sym_redirection, + ACTIONS(6829), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6831), 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(6827), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360497,29 +358246,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156984] = 8, - ACTIONS(249), 1, + [142406] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2087), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3942), 1, + STATE(3852), 1, sym_comment, - STATE(4113), 1, - sym_cell_path, - ACTIONS(2089), 19, + STATE(4783), 1, + sym_redirection, + ACTIONS(6829), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6831), 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(6833), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360532,1376 +358285,3450 @@ static 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, - [157027] = 8, - ACTIONS(249), 1, + [142451] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2095), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3943), 1, + STATE(3853), 1, sym_comment, - STATE(4079), 1, - sym_cell_path, - ACTIONS(2097), 19, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6835), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5237), 20, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142500] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3854), 1, + sym_comment, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142541] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3855), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, + sym_val_number, + STATE(4443), 1, + sym__binary_predicate_parenthesized, + STATE(4444), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142624] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3856), 1, + sym_comment, + ACTIONS(5243), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5241), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142665] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3857), 1, + sym_comment, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142706] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 1, + sym__newline, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3858), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, + sym_val_number, + STATE(4332), 1, + sym__binary_predicate_parenthesized, + STATE(4333), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142789] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 1, + sym__newline, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3859), 1, + sym_comment, + STATE(3885), 1, + aux_sym_shebang_repeat1, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4472), 1, + sym__binary_predicate_parenthesized, + STATE(4473), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142872] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6237), 1, + anon_sym_DASH2, + ACTIONS(6245), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6263), 1, + anon_sym_and2, + ACTIONS(6265), 1, + anon_sym_xor2, + ACTIONS(6843), 1, + anon_sym_or2, + STATE(3860), 1, + sym_comment, + STATE(3863), 1, + aux_sym_shebang_repeat1, + ACTIONS(6239), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6241), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6243), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6247), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [142945] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3861), 1, + sym_comment, + ACTIONS(2248), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2250), 24, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [157070] = 13, - ACTIONS(3), 1, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [142986] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3862), 1, + sym_comment, + ACTIONS(2222), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2224), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [143027] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6269), 1, + anon_sym_DASH2, + ACTIONS(6277), 1, + anon_sym_PLUS2, + ACTIONS(6289), 1, + anon_sym_bit_DASHand2, + ACTIONS(6291), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6293), 1, + anon_sym_bit_DASHor2, + ACTIONS(6295), 1, + anon_sym_and2, + ACTIONS(6297), 1, + anon_sym_xor2, + ACTIONS(6845), 1, + anon_sym_or2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3863), 1, + sym_comment, + ACTIONS(6271), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6273), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6275), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6279), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6281), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6287), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6283), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6285), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [143100] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 1, + sym__newline, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3864), 1, + sym_comment, + STATE(3898), 1, + aux_sym_shebang_repeat1, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4336), 1, + sym__binary_predicate_parenthesized, + STATE(4337), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [143183] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + STATE(3865), 1, + sym_comment, + ACTIONS(1709), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1721), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [143226] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1570), 1, - sym__space, - ACTIONS(1947), 1, + STATE(3866), 1, + sym_comment, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [143267] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 1, + sym__newline, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6893), 1, - anon_sym_LPAREN2, - ACTIONS(6897), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6899), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6901), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6903), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6945), 1, - anon_sym_DOT, - STATE(3944), 1, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3867), 1, sym_comment, - STATE(4350), 1, - sym__immediate_decimal, - STATE(4349), 2, - sym__expr_parenthesized_immediate, + STATE(3901), 1, + aux_sym_shebang_repeat1, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4338), 1, + sym__binary_predicate_parenthesized, + STATE(4339), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1560), 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, - [157123] = 6, - ACTIONS(249), 1, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [143350] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6947), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6949), 1, - aux_sym__immediate_decimal_token2, - STATE(3945), 1, + STATE(3868), 1, sym_comment, - ACTIONS(1528), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 20, - ts_builtin_sym_end, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [143391] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [157162] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1893), 1, - anon_sym_DASH, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(3946), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3869), 1, sym_comment, - STATE(4050), 1, - sym_cell_path, - ACTIONS(1895), 19, + STATE(3887), 1, + aux_sym_shebang_repeat1, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4483), 1, + sym__binary_predicate_parenthesized, + STATE(4487), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [143474] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [157205] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1614), 1, - sym__space, - ACTIONS(4273), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6893), 1, - anon_sym_LPAREN2, - ACTIONS(6901), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6903), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6951), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6953), 1, - aux_sym__immediate_decimal_token3, - STATE(3947), 1, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3870), 1, sym_comment, - STATE(4838), 1, - sym__immediate_decimal, - STATE(4835), 2, - sym__expr_parenthesized_immediate, + STATE(3909), 1, + aux_sym_shebang_repeat1, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4457), 1, + sym__binary_predicate_parenthesized, + STATE(4458), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1612), 13, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [143557] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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, - [157255] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(4237), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6931), 1, - anon_sym_LPAREN2, - ACTIONS(6955), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6957), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6959), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6961), 1, - aux_sym__immediate_decimal_token5, - STATE(3948), 1, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3871), 1, sym_comment, - STATE(4600), 1, - sym__immediate_decimal, - ACTIONS(1556), 2, - ts_builtin_sym_end, - sym__space, - STATE(5003), 2, - sym__expr_parenthesized_immediate, + STATE(3912), 1, + aux_sym_shebang_repeat1, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4459), 1, + sym__binary_predicate_parenthesized, + STATE(4460), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1544), 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, - [157307] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3949), 1, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [143640] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(5379), 1, + anon_sym_DASH2, + ACTIONS(5385), 1, + anon_sym_and2, + ACTIONS(5387), 1, + anon_sym_xor2, + ACTIONS(5397), 1, + anon_sym_PLUS2, + ACTIONS(5401), 1, + anon_sym_bit_DASHand2, + ACTIONS(5403), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5405), 1, + anon_sym_bit_DASHor2, + ACTIONS(6847), 1, + anon_sym_or2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3872), 1, sym_comment, - ACTIONS(1528), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 21, + ACTIONS(5377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5383), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5391), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5393), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5395), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5399), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5389), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [143713] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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_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, - [157341] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3950), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3858), 1, + aux_sym_shebang_repeat1, + STATE(3873), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 21, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4461), 1, + sym__binary_predicate_parenthesized, + STATE(4462), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [143796] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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_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, - [157375] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(4237), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6931), 1, - anon_sym_LPAREN2, - ACTIONS(6955), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6957), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6959), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6961), 1, - aux_sym__immediate_decimal_token5, - STATE(3951), 1, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3874), 1, sym_comment, - STATE(4681), 1, - sym__immediate_decimal, - ACTIONS(1524), 2, - ts_builtin_sym_end, - sym__space, - STATE(4982), 2, - sym__expr_parenthesized_immediate, + STATE(3914), 1, + aux_sym_shebang_repeat1, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4340), 1, + sym__binary_predicate_parenthesized, + STATE(4341), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1510), 11, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [143879] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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, - [157427] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1570), 1, - sym__space, - ACTIONS(4273), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6893), 1, - anon_sym_LPAREN2, - ACTIONS(6901), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6903), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6951), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6953), 1, - aux_sym__immediate_decimal_token3, - STATE(3952), 1, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3855), 1, + aux_sym_shebang_repeat1, + STATE(3875), 1, sym_comment, - STATE(4753), 1, - sym__immediate_decimal, - STATE(4743), 2, - sym__expr_parenthesized_immediate, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4356), 1, + sym__binary_predicate_parenthesized, + STATE(4357), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1560), 13, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [143962] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 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, - [157477] = 13, - ACTIONS(3), 1, + ACTIONS(6729), 1, + anon_sym_DASH2, + ACTIONS(6737), 1, + anon_sym_PLUS2, + ACTIONS(6741), 1, + anon_sym_bit_DASHand2, + ACTIONS(6743), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6755), 1, + anon_sym_bit_DASHor2, + ACTIONS(6767), 1, + anon_sym_and2, + ACTIONS(6769), 1, + anon_sym_xor2, + ACTIONS(6849), 1, + anon_sym_or2, + STATE(3876), 1, + sym_comment, + STATE(3903), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6693), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6695), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6735), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6739), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6731), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6733), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [144035] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 1, + sym__newline, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3877), 1, + sym_comment, + STATE(3886), 1, + aux_sym_shebang_repeat1, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4359), 1, + sym__binary_predicate_parenthesized, + STATE(4360), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [144118] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3878), 1, + sym_comment, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [144159] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3879), 1, + sym_comment, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5237), 22, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [144202] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3880), 1, + sym_comment, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [144243] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3881), 1, + sym_comment, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6835), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6851), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 18, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [144294] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2131), 1, + STATE(3882), 1, + sym_comment, + ACTIONS(6835), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6851), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6853), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6855), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 14, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [144347] = 25, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3521), 1, + aux_sym_expr_unary_token1, + ACTIONS(5856), 1, + anon_sym_LPAREN, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6931), 1, - anon_sym_LPAREN2, - ACTIONS(6935), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6937), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6939), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6941), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6963), 1, - anon_sym_DOT, - STATE(3953), 1, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6857), 1, + anon_sym_LBRACE, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2478), 1, + sym__expr_unary_minus, + STATE(3883), 1, sym_comment, - STATE(4381), 1, - sym__immediate_decimal, - ACTIONS(1570), 2, - ts_builtin_sym_end, - sym__space, - STATE(4380), 2, - sym__expr_parenthesized_immediate, + STATE(3979), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4574), 1, + sym__binary_predicate, + STATE(4579), 1, + sym__predicate, + STATE(5009), 1, + sym_val_closure, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4580), 2, + sym_expr_unary, + sym_val_bool, + STATE(5002), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1560), 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, - [157529] = 6, - ACTIONS(3), 1, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [144430] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6965), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6967), 1, - aux_sym__immediate_decimal_token2, - STATE(3954), 1, + STATE(3884), 1, sym_comment, - ACTIONS(1530), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1528), 15, + ACTIONS(6835), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6851), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6853), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6861), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6855), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6859), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 8, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [144487] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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, - aux_sym_unquoted_token2, - [157567] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3955), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3885), 1, sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 21, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, + sym_val_number, + STATE(4344), 1, + sym__binary_predicate_parenthesized, + STATE(4345), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [144570] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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_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, - [157601] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1622), 1, - sym__space, - ACTIONS(4273), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6893), 1, - anon_sym_LPAREN2, - ACTIONS(6901), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6903), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6951), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6953), 1, - aux_sym__immediate_decimal_token3, - STATE(3956), 1, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3886), 1, sym_comment, - STATE(4845), 1, - sym__immediate_decimal, - STATE(4839), 2, - sym__expr_parenthesized_immediate, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, + sym_val_number, + STATE(4447), 1, + sym__binary_predicate_parenthesized, + STATE(4448), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1620), 13, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [144653] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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, - [157651] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1664), 1, - anon_sym_DOT_DOT2, - ACTIONS(6216), 1, - anon_sym_DOT, - STATE(3165), 1, - aux_sym_cell_path_repeat1, - STATE(3337), 1, - sym_path, - STATE(3780), 1, - sym_cell_path, - STATE(3957), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3887), 1, sym_comment, - ACTIONS(1668), 18, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, + sym_val_number, + STATE(4348), 1, + sym__binary_predicate_parenthesized, + STATE(4349), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [144736] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [157693] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6969), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6971), 1, - aux_sym__immediate_decimal_token2, - STATE(3958), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3888), 1, sym_comment, - ACTIONS(1703), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1705), 19, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, + sym_val_number, + STATE(4352), 1, + sym__binary_predicate_parenthesized, + STATE(4353), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [144819] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [157731] = 6, - ACTIONS(249), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3888), 1, + aux_sym_shebang_repeat1, + STATE(3889), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4494), 1, + sym__binary_predicate_parenthesized, + STATE(4496), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [144902] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6675), 1, + anon_sym_LBRACE, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3890), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4500), 1, + sym__binary_predicate, + STATE(4501), 1, + sym__predicate, + STATE(4988), 1, + sym_val_closure, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [144985] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6973), 1, - anon_sym_DOT, - ACTIONS(6975), 1, - aux_sym__immediate_decimal_token2, - STATE(3959), 1, + STATE(3891), 1, sym_comment, - ACTIONS(1715), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1717), 19, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145026] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [157769] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1610), 1, - sym__space, - ACTIONS(4273), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6893), 1, - anon_sym_LPAREN2, - ACTIONS(6901), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6903), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6951), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6953), 1, - aux_sym__immediate_decimal_token3, - STATE(3960), 1, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3848), 1, + aux_sym_shebang_repeat1, + STATE(3892), 1, sym_comment, - STATE(4834), 1, - sym__immediate_decimal, - STATE(4833), 2, - sym__expr_parenthesized_immediate, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4354), 1, + sym__binary_predicate_parenthesized, + STATE(4355), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1608), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [157819] = 10, - ACTIONS(249), 1, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [145109] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(6977), 1, - anon_sym_DOT_DOT2, - ACTIONS(6981), 1, - sym_filesize_unit, - ACTIONS(6983), 1, - sym_duration_unit, - ACTIONS(6985), 1, - aux_sym_unquoted_token2, - STATE(3961), 1, + ACTIONS(6863), 1, + anon_sym_bit_DASHand2, + ACTIONS(6865), 1, + anon_sym_bit_DASHxor2, + STATE(3893), 1, sym_comment, - STATE(7472), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6979), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [157865] = 8, - ACTIONS(249), 1, + ACTIONS(6835), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6851), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6853), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6861), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6855), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6859), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 6, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [145170] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1670), 1, - anon_sym_DOT_DOT2, - ACTIONS(6216), 1, - anon_sym_DOT, - STATE(3165), 1, - aux_sym_cell_path_repeat1, - STATE(3337), 1, - sym_path, - STATE(3790), 1, - sym_cell_path, - STATE(3962), 1, + STATE(3894), 1, sym_comment, - ACTIONS(1672), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [157907] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(3963), 1, + ACTIONS(5262), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5260), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145211] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6863), 1, + anon_sym_bit_DASHand2, + STATE(3895), 1, sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_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, - [157941] = 6, - ACTIONS(3), 1, + ACTIONS(6835), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6851), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6853), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6861), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6855), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6859), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 7, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145270] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6987), 1, - anon_sym_DOT, - ACTIONS(6989), 1, - aux_sym__immediate_decimal_token2, - STATE(3964), 1, + STATE(3896), 1, sym_comment, - ACTIONS(1538), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1536), 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, - [157979] = 5, - ACTIONS(249), 1, + ACTIONS(2206), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2210), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145311] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6991), 1, - aux_sym__immediate_decimal_token2, - STATE(3965), 1, + STATE(3897), 1, sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 20, - ts_builtin_sym_end, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145352] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [158015] = 5, - ACTIONS(249), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3898), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, + sym_val_number, + STATE(4417), 1, + sym__binary_predicate_parenthesized, + STATE(4420), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [145435] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6919), 1, - aux_sym__immediate_decimal_token2, - STATE(3966), 1, + STATE(3899), 1, sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 20, - ts_builtin_sym_end, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 4, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5237), 20, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145482] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6863), 1, + anon_sym_bit_DASHand2, + ACTIONS(6865), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6867), 1, + anon_sym_bit_DASHor2, + STATE(3900), 1, + sym_comment, + ACTIONS(6835), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6851), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6853), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6861), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6855), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6859), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 5, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [145545] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [158051] = 8, - ACTIONS(249), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3901), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, + sym_val_number, + STATE(4423), 1, + sym__binary_predicate_parenthesized, + STATE(4424), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [145628] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1901), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3967), 1, + STATE(3902), 1, sym_comment, - STATE(4228), 1, - sym_cell_path, - ACTIONS(1903), 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, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145669] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6699), 1, + anon_sym_DASH2, + ACTIONS(6705), 1, + anon_sym_and2, + ACTIONS(6707), 1, + anon_sym_xor2, + ACTIONS(6717), 1, + anon_sym_PLUS2, + ACTIONS(6721), 1, + anon_sym_bit_DASHand2, + ACTIONS(6723), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6725), 1, + anon_sym_bit_DASHor2, + ACTIONS(6869), 1, + anon_sym_or2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(3903), 1, + sym_comment, + ACTIONS(6697), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6703), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6711), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6713), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6715), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6719), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6701), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6709), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [145742] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6863), 1, + anon_sym_bit_DASHand2, + ACTIONS(6865), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6867), 1, + anon_sym_bit_DASHor2, + ACTIONS(6871), 1, + anon_sym_and2, + STATE(3904), 1, + sym_comment, + ACTIONS(6835), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6851), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6853), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6861), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5237), 4, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6855), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6859), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [145807] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6632), 1, + anon_sym_DASH2, + STATE(3905), 1, + sym_comment, + ACTIONS(5220), 2, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [158092] = 8, - ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(5222), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5224), 22, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145852] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1670), 1, - anon_sym_DOT_DOT2, - ACTIONS(6993), 1, - anon_sym_DOT, - STATE(3838), 1, - sym_cell_path, - STATE(3968), 1, + STATE(3906), 1, sym_comment, - STATE(4029), 1, - aux_sym_cell_path_repeat1, - STATE(4141), 1, - sym_path, - ACTIONS(1672), 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, - [158133] = 8, - ACTIONS(249), 1, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145893] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1021), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3969), 1, + STATE(3907), 1, sym_comment, - STATE(4021), 1, - sym_cell_path, - ACTIONS(1023), 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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [158174] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1929), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3970), 1, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145934] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(5344), 1, + anon_sym_DASH2, + ACTIONS(5350), 1, + anon_sym_and2, + ACTIONS(5352), 1, + anon_sym_xor2, + ACTIONS(5362), 1, + anon_sym_PLUS2, + ACTIONS(5366), 1, + anon_sym_bit_DASHand2, + ACTIONS(5368), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5370), 1, + anon_sym_bit_DASHor2, + ACTIONS(6873), 1, + anon_sym_or2, + STATE(3872), 1, + aux_sym_shebang_repeat1, + STATE(3908), 1, sym_comment, - STATE(4232), 1, - sym_cell_path, - ACTIONS(1931), 17, - ts_builtin_sym_end, + ACTIONS(5342), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5348), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5356), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5358), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5360), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5364), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5346), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [146007] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [158215] = 5, - ACTIONS(249), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3909), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, + sym_val_number, + STATE(4323), 1, + sym__binary_predicate_parenthesized, + STATE(4324), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [146090] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6975), 1, - aux_sym__immediate_decimal_token2, - STATE(3971), 1, + STATE(3910), 1, sym_comment, - ACTIONS(1715), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1717), 19, + ACTIONS(5188), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5186), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [146131] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6863), 1, + anon_sym_bit_DASHand2, + ACTIONS(6865), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6867), 1, + anon_sym_bit_DASHor2, + ACTIONS(6871), 1, + anon_sym_and2, + ACTIONS(6875), 1, + anon_sym_xor2, + STATE(3911), 1, + sym_comment, + ACTIONS(6835), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6851), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6853), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6861), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5237), 3, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6855), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6859), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [146198] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 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_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [158250] = 6, - ACTIONS(249), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3912), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, + sym_val_number, + STATE(4327), 1, + sym__binary_predicate_parenthesized, + STATE(4328), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [146281] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6995), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6997), 1, - aux_sym__immediate_decimal_token2, - STATE(3972), 1, + STATE(3913), 1, sym_comment, - ACTIONS(1703), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1705), 18, - ts_builtin_sym_end, + ACTIONS(6835), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6851), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6853), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6855), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6859), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 10, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [146336] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6669), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [158287] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4237), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6931), 1, - anon_sym_LPAREN2, - ACTIONS(6939), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6941), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6999), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7001), 1, - aux_sym__immediate_decimal_token3, - STATE(3973), 1, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3914), 1, sym_comment, - STATE(4981), 1, - sym__immediate_decimal, - ACTIONS(1570), 2, - ts_builtin_sym_end, - sym__space, - STATE(4980), 2, - sym__expr_parenthesized_immediate, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(4294), 1, + sym_val_number, + STATE(4427), 1, + sym__binary_predicate_parenthesized, + STATE(4428), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1560), 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, - [158336] = 8, - ACTIONS(249), 1, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [146419] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1664), 1, - anon_sym_DOT_DOT2, - ACTIONS(6993), 1, - anon_sym_DOT, - STATE(3827), 1, - sym_cell_path, - STATE(3974), 1, + ACTIONS(6879), 1, + anon_sym_DASH2, + ACTIONS(6893), 1, + anon_sym_PLUS2, + ACTIONS(6897), 1, + anon_sym_bit_DASHand2, + STATE(3915), 1, sym_comment, - STATE(4029), 1, - aux_sym_cell_path_repeat1, - STATE(4141), 1, - sym_path, - ACTIONS(1668), 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, - [158377] = 8, - ACTIONS(249), 1, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6887), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6895), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6881), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6885), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [146479] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1993), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3975), 1, + ACTIONS(6903), 1, + aux_sym_cmd_identifier_token41, + STATE(3916), 1, sym_comment, - STATE(4239), 1, - sym_cell_path, - ACTIONS(1995), 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_DASH_DASH, - anon_sym_as, + ACTIONS(6901), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6899), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [158418] = 8, - ACTIONS(249), 1, + 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, + [146521] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1997), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3976), 1, + ACTIONS(6905), 1, + anon_sym_DASH2, + ACTIONS(6913), 1, + anon_sym_PLUS2, + STATE(3917), 1, sym_comment, - STATE(4242), 1, - sym_cell_path, - ACTIONS(1999), 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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [158459] = 5, - ACTIONS(249), 1, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6907), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6911), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5237), 19, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [146571] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7003), 1, - aux_sym__immediate_decimal_token2, - STATE(3977), 1, + ACTIONS(6879), 1, + anon_sym_DASH2, + ACTIONS(6893), 1, + anon_sym_PLUS2, + STATE(3918), 1, sym_comment, - ACTIONS(1769), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1771), 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, - [158494] = 4, - ACTIONS(249), 1, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6887), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6895), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6881), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6885), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [146629] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3978), 1, + ACTIONS(6919), 1, + aux_sym_cmd_identifier_token41, + STATE(3919), 1, sym_comment, - ACTIONS(1528), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, + ACTIONS(6917), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6915), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, 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, - [158527] = 8, - ACTIONS(249), 1, + 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, + [146671] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3979), 1, + ACTIONS(6879), 1, + anon_sym_DASH2, + ACTIONS(6893), 1, + anon_sym_PLUS2, + STATE(3920), 1, sym_comment, - STATE(4243), 1, - sym_cell_path, - ACTIONS(2003), 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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [158568] = 8, - ACTIONS(249), 1, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6895), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6881), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6885), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [146727] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2005), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3980), 1, + STATE(3921), 1, sym_comment, - STATE(4244), 1, - sym_cell_path, - ACTIONS(2007), 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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [158609] = 8, - ACTIONS(249), 1, + ACTIONS(6883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5237), 20, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [146773] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2009), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3981), 1, + ACTIONS(6905), 1, + anon_sym_DASH2, + ACTIONS(6913), 1, + anon_sym_PLUS2, + STATE(3922), 1, sym_comment, - STATE(4245), 1, - sym_cell_path, - ACTIONS(2011), 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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [158650] = 8, - ACTIONS(249), 1, + ACTIONS(6907), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6911), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6927), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6929), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6923), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6925), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 7, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [146831] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2013), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3982), 1, + STATE(3923), 1, sym_comment, - STATE(4248), 1, - sym_cell_path, - ACTIONS(2015), 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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [158691] = 8, - ACTIONS(249), 1, + ACTIONS(6907), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6911), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5237), 20, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [146877] = 16, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2017), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3983), 1, + ACTIONS(6905), 1, + anon_sym_DASH2, + ACTIONS(6913), 1, + anon_sym_PLUS2, + ACTIONS(6931), 1, + anon_sym_bit_DASHand2, + ACTIONS(6933), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6935), 1, + anon_sym_bit_DASHor2, + STATE(3924), 1, sym_comment, - STATE(4250), 1, - sym_cell_path, - ACTIONS(2019), 17, - ts_builtin_sym_end, + ACTIONS(6907), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6911), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6927), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6929), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 4, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6923), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6925), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [146941] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3925), 1, + sym_comment, + ACTIONS(5254), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5248), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361913,54 +361740,294 @@ static const uint16_t 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_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, + [146981] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6905), 1, + anon_sym_DASH2, + ACTIONS(6913), 1, + anon_sym_PLUS2, + ACTIONS(6931), 1, + anon_sym_bit_DASHand2, + STATE(3926), 1, + sym_comment, + ACTIONS(6907), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6911), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6927), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6929), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6923), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6925), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 6, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [147041] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6941), 1, + aux_sym_cmd_identifier_token41, + STATE(3927), 1, + sym_comment, + ACTIONS(6939), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6937), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [158732] = 8, - ACTIONS(249), 1, + 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, + [147083] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2021), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3984), 1, + ACTIONS(6905), 1, + anon_sym_DASH2, + ACTIONS(6913), 1, + anon_sym_PLUS2, + ACTIONS(6931), 1, + anon_sym_bit_DASHand2, + ACTIONS(6933), 1, + anon_sym_bit_DASHxor2, + STATE(3928), 1, sym_comment, - STATE(4251), 1, - sym_cell_path, - ACTIONS(2023), 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_DASH_DASH, - anon_sym_as, + ACTIONS(6907), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6911), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6927), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6929), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6923), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6925), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 5, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [147145] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6879), 1, + anon_sym_DASH2, + ACTIONS(6893), 1, + anon_sym_PLUS2, + ACTIONS(6897), 1, + anon_sym_bit_DASHand2, + ACTIONS(6943), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6945), 1, + anon_sym_bit_DASHor2, + STATE(3929), 1, + sym_comment, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6887), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6895), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6881), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6885), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [147209] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6951), 1, + aux_sym_cmd_identifier_token41, + STATE(3930), 1, + sym_comment, + ACTIONS(6949), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6947), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [158773] = 4, - ACTIONS(249), 1, + 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, + [147251] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3985), 1, + STATE(3931), 1, sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 20, - ts_builtin_sym_end, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5237), 22, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [147293] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3932), 1, + sym_comment, + STATE(5019), 1, + sym_redirection, + ACTIONS(6829), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6831), 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(6953), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361972,30 +362039,428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [147337] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6879), 1, + anon_sym_DASH2, + ACTIONS(6893), 1, + anon_sym_PLUS2, + ACTIONS(6897), 1, + anon_sym_bit_DASHand2, + ACTIONS(6943), 1, + anon_sym_bit_DASHxor2, + STATE(3933), 1, + sym_comment, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6887), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6895), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6881), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6885), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [147399] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6879), 1, + anon_sym_DASH2, + ACTIONS(6893), 1, + anon_sym_PLUS2, + ACTIONS(6897), 1, + anon_sym_bit_DASHand2, + ACTIONS(6943), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6945), 1, + anon_sym_bit_DASHor2, + ACTIONS(6955), 1, + anon_sym_and2, + STATE(3934), 1, + sym_comment, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6887), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6895), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6881), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6885), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [147465] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6879), 1, + anon_sym_DASH2, + ACTIONS(6893), 1, + anon_sym_PLUS2, + STATE(3935), 1, + sym_comment, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5237), 19, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [147515] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6879), 1, + anon_sym_DASH2, + ACTIONS(6893), 1, + anon_sym_PLUS2, + STATE(3936), 1, + sym_comment, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6895), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 17, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [147567] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3937), 1, + sym_comment, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5237), 22, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [147609] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6879), 1, + anon_sym_DASH2, + ACTIONS(6893), 1, + anon_sym_PLUS2, + ACTIONS(6897), 1, + anon_sym_bit_DASHand2, + ACTIONS(6943), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6945), 1, + anon_sym_bit_DASHor2, + ACTIONS(6955), 1, + anon_sym_and2, + ACTIONS(6957), 1, + anon_sym_xor2, + STATE(3938), 1, + sym_comment, + ACTIONS(5237), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6887), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6895), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6881), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6885), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [147677] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6905), 1, + anon_sym_DASH2, + ACTIONS(6913), 1, + anon_sym_PLUS2, + ACTIONS(6931), 1, + anon_sym_bit_DASHand2, + ACTIONS(6933), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6935), 1, + anon_sym_bit_DASHor2, + ACTIONS(6959), 1, + anon_sym_and2, + STATE(3939), 1, + sym_comment, + ACTIONS(6907), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6911), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6927), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6929), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 3, + anon_sym_EQ_GT, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6923), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6925), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [147743] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6879), 1, + anon_sym_DASH2, + ACTIONS(6893), 1, + anon_sym_PLUS2, + STATE(3940), 1, + sym_comment, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6895), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6885), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 13, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [147797] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6965), 1, + aux_sym_cmd_identifier_token41, + STATE(3941), 1, + sym_comment, + ACTIONS(6963), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6961), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, 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, - [158806] = 8, - ACTIONS(249), 1, + 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, + [147839] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3986), 1, + STATE(3942), 1, sym_comment, - STATE(4268), 1, - sym_cell_path, - ACTIONS(2061), 17, + STATE(5128), 1, + sym_redirection, + ACTIONS(6967), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6969), 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(6833), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362008,122 +362473,359 @@ static const uint16_t 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, + [147883] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6905), 1, + anon_sym_DASH2, + ACTIONS(6913), 1, + anon_sym_PLUS2, + ACTIONS(6931), 1, + anon_sym_bit_DASHand2, + ACTIONS(6933), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6935), 1, + anon_sym_bit_DASHor2, + ACTIONS(6959), 1, + anon_sym_and2, + ACTIONS(6971), 1, + anon_sym_xor2, + STATE(3943), 1, + sym_comment, + ACTIONS(5237), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(6907), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6911), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6927), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6929), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6923), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6925), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [147951] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6905), 1, + anon_sym_DASH2, + ACTIONS(6913), 1, + anon_sym_PLUS2, + STATE(3944), 1, + sym_comment, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6907), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6911), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6929), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 17, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [148003] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6977), 1, + aux_sym_cmd_identifier_token41, + STATE(3945), 1, + sym_comment, + ACTIONS(6975), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6973), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [158847] = 6, - ACTIONS(3), 1, + 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, + [148045] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7005), 1, - anon_sym_DOT, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token2, - STATE(3987), 1, + ACTIONS(6905), 1, + anon_sym_DASH2, + ACTIONS(6913), 1, + anon_sym_PLUS2, + STATE(3946), 1, sym_comment, - ACTIONS(1538), 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(1536), 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, - [158884] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3988), 1, + ACTIONS(6907), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6911), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6929), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6925), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 13, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [148099] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3187), 1, + aux_sym_cmd_identifier_token41, + STATE(3947), 1, sym_comment, - STATE(4263), 1, - sym_cell_path, - ACTIONS(2057), 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_DASH_DASH, - anon_sym_as, + ACTIONS(3185), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3183), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [158925] = 4, - ACTIONS(249), 1, + 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, + [148141] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3989), 1, + ACTIONS(6905), 1, + anon_sym_DASH2, + ACTIONS(6913), 1, + anon_sym_PLUS2, + STATE(3948), 1, sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, + ACTIONS(6907), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6911), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6929), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6923), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6925), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 9, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [148197] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6983), 1, + aux_sym_cmd_identifier_token41, + STATE(3949), 1, + sym_comment, + ACTIONS(6981), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6979), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, 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, - [158958] = 6, + 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, + [148239] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7009), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7011), 1, - aux_sym__immediate_decimal_token2, - STATE(3990), 1, + ACTIONS(3199), 1, + aux_sym_cmd_identifier_token41, + STATE(3950), 1, sym_comment, - ACTIONS(1530), 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(1528), 13, + ACTIONS(3197), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3195), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + 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, + [148281] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3951), 1, + sym_comment, + STATE(5106), 1, + sym_redirection, + ACTIONS(6829), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6831), 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(6985), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362135,24 +362837,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_DOT_DOT2, - aux_sym_unquoted_token2, - [158995] = 8, - ACTIONS(249), 1, + anon_sym_RPAREN, + [148325] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3991), 1, + STATE(3952), 1, sym_comment, - STATE(4224), 1, - sym_cell_path, - ACTIONS(1899), 17, + STATE(5005), 1, + sym_redirection, + ACTIONS(6967), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6969), 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(6827), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362165,27 +362876,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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [159036] = 8, - ACTIONS(249), 1, + [148369] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1021), 1, - anon_sym_DOT_DOT2, - ACTIONS(6993), 1, - anon_sym_DOT, - STATE(3992), 1, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3521), 1, + aux_sym_expr_unary_token1, + ACTIONS(5856), 1, + anon_sym_LPAREN, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2478), 1, + sym__expr_unary_minus, + STATE(3953), 1, sym_comment, - STATE(4021), 1, - sym_cell_path, - STATE(4029), 1, - aux_sym_cell_path_repeat1, - STATE(4141), 1, - sym_path, - ACTIONS(1023), 17, + STATE(3979), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4599), 1, + sym__binary_predicate, + STATE(4600), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4580), 2, + sym_expr_unary, + sym_val_bool, + STATE(5002), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [148446] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3954), 1, + sym_comment, + ACTIONS(2234), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2238), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362198,27 +362957,402 @@ static const uint16_t 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, - [159077] = 8, - ACTIONS(249), 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, + [148485] = 23, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2087), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3993), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3955), 1, sym_comment, - STATE(4280), 1, - sym_cell_path, - ACTIONS(2089), 17, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4413), 1, + sym__binary_predicate, + STATE(4414), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [148562] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3956), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4418), 1, + sym__binary_predicate, + STATE(4419), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [148639] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3957), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4433), 1, + sym__binary_predicate, + STATE(4436), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [148716] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3958), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4449), 1, + sym__binary_predicate, + STATE(4450), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [148793] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3959), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4451), 1, + sym__binary_predicate, + STATE(4452), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [148870] = 23, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2145), 1, + sym__expr_unary_minus, + STATE(3960), 1, + sym_comment, + STATE(3968), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4453), 1, + sym__binary_predicate, + STATE(4455), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4502), 2, + sym_expr_unary, + sym_val_bool, + STATE(5016), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [148947] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5511), 1, + anon_sym_DASH2, + ACTIONS(5521), 1, + anon_sym_PLUS2, + ACTIONS(5544), 1, + anon_sym_bit_DASHand2, + ACTIONS(5546), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5548), 1, + anon_sym_bit_DASHor2, + ACTIONS(5550), 1, + anon_sym_and2, + ACTIONS(5552), 1, + anon_sym_xor2, + ACTIONS(6987), 1, + anon_sym_or2, + STATE(3961), 1, + sym_comment, + ACTIONS(5509), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5513), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5517), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5519), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5523), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5542), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5515), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5540), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [149014] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3962), 1, + sym_comment, + 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), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362231,28 +363365,306 @@ static const uint16_t 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, - [159118] = 8, - ACTIONS(249), 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, + [149053] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3994), 1, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3521), 1, + aux_sym_expr_unary_token1, + ACTIONS(5856), 1, + anon_sym_LPAREN, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2478), 1, + sym__expr_unary_minus, + STATE(3963), 1, + sym_comment, + STATE(3979), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4520), 1, + sym__binary_predicate, + STATE(4601), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4580), 2, + sym_expr_unary, + sym_val_bool, + STATE(5002), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [149130] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3521), 1, + aux_sym_expr_unary_token1, + ACTIONS(5856), 1, + anon_sym_LPAREN, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2478), 1, + sym__expr_unary_minus, + STATE(3964), 1, + sym_comment, + STATE(3979), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4528), 1, + sym__predicate, + STATE(4550), 1, + sym__binary_predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4580), 2, + sym_expr_unary, + sym_val_bool, + STATE(5002), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [149207] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3521), 1, + aux_sym_expr_unary_token1, + ACTIONS(5856), 1, + anon_sym_LPAREN, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2478), 1, + sym__expr_unary_minus, + STATE(3965), 1, + sym_comment, + STATE(3979), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4531), 1, + sym__binary_predicate, + STATE(4536), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4580), 2, + sym_expr_unary, + sym_val_bool, + STATE(5002), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [149284] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3521), 1, + aux_sym_expr_unary_token1, + ACTIONS(5856), 1, + anon_sym_LPAREN, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2478), 1, + sym__expr_unary_minus, + STATE(3966), 1, + sym_comment, + STATE(3979), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4505), 1, + sym__binary_predicate, + STATE(4539), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4580), 2, + sym_expr_unary, + sym_val_bool, + STATE(5002), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [149361] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3521), 1, + aux_sym_expr_unary_token1, + ACTIONS(5856), 1, + anon_sym_LPAREN, + ACTIONS(6667), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6681), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6683), 1, + aux_sym__val_number_decimal_token4, + STATE(1810), 1, + sym__val_number_decimal, + STATE(1811), 1, + sym__val_number, + STATE(2478), 1, + sym__expr_unary_minus, + STATE(3967), 1, + sym_comment, + STATE(3979), 1, + sym_expr_parenthesized, + STATE(4294), 1, + sym_val_number, + STATE(4541), 1, + sym__binary_predicate, + STATE(4575), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4580), 2, + sym_expr_unary, + sym_val_bool, + STATE(5002), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [149438] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3968), 1, sym_comment, - STATE(4182), 1, - sym_cell_path, - ACTIONS(1911), 17, - ts_builtin_sym_end, + ACTIONS(6991), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6997), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6993), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6995), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6989), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362264,27 +363676,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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [159159] = 8, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149483] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2095), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(3995), 1, + ACTIONS(6299), 1, + anon_sym_DASH2, + ACTIONS(6307), 1, + anon_sym_PLUS2, + ACTIONS(6319), 1, + anon_sym_bit_DASHand2, + ACTIONS(6321), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6323), 1, + anon_sym_bit_DASHor2, + ACTIONS(6325), 1, + anon_sym_and2, + ACTIONS(6327), 1, + anon_sym_xor2, + ACTIONS(6999), 1, + anon_sym_or2, + STATE(3969), 1, sym_comment, - STATE(4227), 1, - sym_cell_path, - ACTIONS(2097), 17, + ACTIONS(6301), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6303), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6305), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6309), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6311), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6317), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6313), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6315), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [149550] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3970), 1, + sym_comment, + ACTIONS(1866), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1874), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362297,34 +363757,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [159200] = 11, - 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, + [149589] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1640), 1, - sym__space, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(7013), 1, - anon_sym_DOT_DOT2, - ACTIONS(7017), 1, - sym_filesize_unit, - ACTIONS(7019), 1, - sym_duration_unit, - ACTIONS(7021), 1, - aux_sym_unquoted_token2, - STATE(3996), 1, + STATE(3971), 1, sym_comment, - STATE(7582), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7015), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1628), 13, + ACTIONS(2187), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2189), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362336,17 +363792,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, - [159247] = 4, - ACTIONS(249), 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, + [149628] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3997), 1, + STATE(3972), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 20, + ACTIONS(2252), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2256), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362359,29 +363827,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_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, - [159280] = 5, - 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, + [149667] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6989), 1, - aux_sym__immediate_decimal_token2, - STATE(3998), 1, + STATE(3973), 1, sym_comment, - ACTIONS(1538), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1536), 15, + ACTIONS(1878), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1886), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362393,36 +363862,282 @@ static const uint16_t ts_small_parse_table[] = { 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, - [159315] = 12, - 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, + [149706] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4237), 1, - anon_sym_DOLLAR, - ACTIONS(6931), 1, - anon_sym_LPAREN2, - ACTIONS(6939), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6941), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6999), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(6879), 1, + anon_sym_DASH2, + ACTIONS(6893), 1, + anon_sym_PLUS2, + ACTIONS(6897), 1, + anon_sym_bit_DASHand2, + ACTIONS(6943), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6945), 1, + anon_sym_bit_DASHor2, + ACTIONS(6955), 1, + anon_sym_and2, + ACTIONS(6957), 1, + anon_sym_xor2, ACTIONS(7001), 1, - aux_sym__immediate_decimal_token3, - STATE(3999), 1, + anon_sym_or2, + STATE(3974), 1, sym_comment, - STATE(4998), 1, - sym__immediate_decimal, - ACTIONS(1610), 2, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6887), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6889), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6891), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6895), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6881), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6885), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [149773] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5429), 1, + anon_sym_DASH2, + ACTIONS(5431), 1, + anon_sym_PLUS2, + ACTIONS(5443), 1, + anon_sym_bit_DASHand2, + ACTIONS(5445), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5447), 1, + anon_sym_bit_DASHor2, + ACTIONS(5449), 1, + anon_sym_and2, + ACTIONS(5451), 1, + anon_sym_xor2, + ACTIONS(7003), 1, + anon_sym_or2, + STATE(3975), 1, + sym_comment, + ACTIONS(5336), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5340), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5433), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5435), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5441), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5437), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5439), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [149840] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6370), 1, + anon_sym_DASH2, + ACTIONS(6384), 1, + anon_sym_PLUS2, + ACTIONS(6388), 1, + anon_sym_bit_DASHand2, + ACTIONS(6390), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6402), 1, + anon_sym_bit_DASHor2, + ACTIONS(6404), 1, + anon_sym_and2, + ACTIONS(6406), 1, + anon_sym_xor2, + ACTIONS(7005), 1, + anon_sym_or2, + STATE(3976), 1, + sym_comment, + ACTIONS(6368), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6374), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6378), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6380), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6382), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6386), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6372), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6376), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [149907] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6835), 1, + anon_sym_PLUS2, + ACTIONS(6863), 1, + anon_sym_bit_DASHand2, + ACTIONS(6865), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6867), 1, + anon_sym_bit_DASHor2, + ACTIONS(6871), 1, + anon_sym_and2, + ACTIONS(6875), 1, + anon_sym_xor2, + ACTIONS(7007), 1, + anon_sym_DASH2, + ACTIONS(7009), 1, + anon_sym_or2, + STATE(3977), 1, + sym_comment, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6851), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6853), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6861), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6855), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6859), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [149974] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6905), 1, + anon_sym_DASH2, + ACTIONS(6913), 1, + anon_sym_PLUS2, + ACTIONS(6931), 1, + anon_sym_bit_DASHand2, + ACTIONS(6933), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6935), 1, + anon_sym_bit_DASHor2, + ACTIONS(6959), 1, + anon_sym_and2, + ACTIONS(6971), 1, + anon_sym_xor2, + ACTIONS(7011), 1, + anon_sym_or2, + STATE(3978), 1, + sym_comment, + ACTIONS(6907), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6909), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6911), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6921), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6927), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6929), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6923), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6925), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [150041] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3979), 1, + sym_comment, + ACTIONS(7013), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7019), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7015), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7017), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6989), 15, ts_builtin_sym_end, - sym__space, - STATE(4997), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1608), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362434,32 +364149,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, - [159364] = 12, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150085] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4237), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(6203), 1, anon_sym_DOLLAR, - ACTIONS(6931), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6939), 1, + ACTIONS(7021), 1, + anon_sym_DOT, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6941), 1, + ACTIONS(7027), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6999), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7001), 1, - aux_sym__immediate_decimal_token3, - STATE(4000), 1, + STATE(3980), 1, sym_comment, - STATE(5000), 1, + STATE(4060), 1, sym__immediate_decimal, - ACTIONS(1614), 2, - ts_builtin_sym_end, - sym__space, - STATE(4999), 2, + ACTIONS(7023), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3481), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1612), 11, + ACTIONS(1544), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362471,23 +364189,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, - [159413] = 8, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150139] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2051), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(4001), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token5, + STATE(3981), 1, sym_comment, - STATE(4256), 1, - sym_cell_path, - ACTIONS(2053), 17, - ts_builtin_sym_end, + STATE(4171), 1, + sym__immediate_decimal, + ACTIONS(7029), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3436), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1544), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362499,27 +364229,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [159454] = 8, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150190] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1893), 1, - anon_sym_DASH, - ACTIONS(6601), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(6333), 1, + anon_sym_DOLLAR, + ACTIONS(6335), 1, + anon_sym_LPAREN2, + ACTIONS(7035), 1, anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(4002), 1, + ACTIONS(7039), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7041), 1, + aux_sym__immediate_decimal_token5, + STATE(3982), 1, sym_comment, - STATE(4208), 1, - sym_cell_path, - ACTIONS(1895), 17, + STATE(4078), 1, + sym__immediate_decimal, + ACTIONS(7037), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3533), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1544), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362532,37 +364272,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [159495] = 12, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150243] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4237), 1, - anon_sym_DOLLAR, - ACTIONS(6931), 1, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6939), 1, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + ACTIONS(7031), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6941), 1, + ACTIONS(7033), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6999), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7001), 1, - aux_sym__immediate_decimal_token3, - STATE(4003), 1, + STATE(3983), 1, sym_comment, - STATE(5002), 1, + STATE(4176), 1, sym__immediate_decimal, - ACTIONS(1622), 2, - ts_builtin_sym_end, - sym__space, - STATE(5001), 2, + ACTIONS(7029), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3431), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1620), 11, + ACTIONS(1577), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362574,61 +364310,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, - [159544] = 14, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150294] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7023), 1, - anon_sym_DOLLAR, - ACTIONS(7025), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(6335), 1, anon_sym_LPAREN2, - ACTIONS(7027), 1, - anon_sym_DOT, - ACTIONS(7029), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7031), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7033), 1, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + ACTIONS(7045), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7035), 1, + ACTIONS(7047), 1, aux_sym__immediate_decimal_token5, - STATE(4004), 1, + STATE(3984), 1, sym_comment, - STATE(4375), 1, + STATE(4220), 1, sym__immediate_decimal, - ACTIONS(1510), 2, - sym_identifier, - anon_sym_DASH, - STATE(4682), 2, + ACTIONS(7043), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3788), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1524), 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, - [159597] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2067), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(4005), 1, - sym_comment, - STATE(4276), 1, - sym_cell_path, - ACTIONS(2069), 17, + ACTIONS(1544), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362641,27 +364351,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [159638] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150344] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH, - ACTIONS(6601), 1, - anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(4006), 1, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + ACTIONS(6335), 1, + anon_sym_LPAREN2, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + ACTIONS(7045), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7047), 1, + aux_sym__immediate_decimal_token5, + STATE(3985), 1, sym_comment, - STATE(4253), 1, - sym_cell_path, - ACTIONS(2045), 17, + STATE(4228), 1, + sym__immediate_decimal, + ACTIONS(7043), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3808), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1577), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362674,28 +364390,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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [159679] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150394] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_DASH, - ACTIONS(6601), 1, + ACTIONS(1544), 1, + sym__space, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(1810), 1, + anon_sym_DOLLAR, + ACTIONS(7049), 1, + anon_sym_LPAREN2, + ACTIONS(7051), 1, anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(4007), 1, + ACTIONS(7053), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7055), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7059), 1, + aux_sym__immediate_decimal_token5, + STATE(3986), 1, sym_comment, - STATE(4254), 1, - sym_cell_path, - ACTIONS(2049), 17, - ts_builtin_sym_end, + STATE(4116), 1, + sym__immediate_decimal, + STATE(4254), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1530), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362707,26 +364433,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, - [159720] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150450] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7037), 1, + ACTIONS(7061), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7063), 1, aux_sym__immediate_decimal_token2, - STATE(4008), 1, + STATE(3987), 1, sym_comment, - ACTIONS(1598), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1596), 15, + ACTIONS(1621), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1623), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362740,25 +364461,27 @@ 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, - [159755] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [150490] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2083), 1, - anon_sym_DASH, - ACTIONS(6601), 1, + ACTIONS(7065), 1, anon_sym_DOT, - STATE(3576), 1, - aux_sym_cell_path_repeat1, - STATE(3744), 1, - sym_path, - STATE(4009), 1, + ACTIONS(7067), 1, + aux_sym__immediate_decimal_token2, + STATE(3988), 1, sym_comment, - STATE(4277), 1, - sym_cell_path, - ACTIONS(2085), 17, - ts_builtin_sym_end, + ACTIONS(1607), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362770,24 +364493,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, - [159796] = 6, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [150530] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7039), 1, + ACTIONS(7069), 1, anon_sym_DOT, - ACTIONS(7041), 1, + ACTIONS(7071), 1, aux_sym__immediate_decimal_token2, - STATE(4010), 1, + STATE(3989), 1, sym_comment, - ACTIONS(1715), 2, + ACTIONS(1607), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1717), 18, + ACTIONS(1609), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362800,26 +364528,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159833] = 6, - ACTIONS(249), 1, + sym_filesize_unit, + sym_duration_unit, + [150569] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1031), 1, - anon_sym_DOT_DOT2, - ACTIONS(7043), 1, - anon_sym_DOT, - STATE(4141), 1, - sym_path, - STATE(4011), 2, + ACTIONS(7073), 1, + aux_sym__immediate_decimal_token2, + STATE(3990), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1033), 17, - ts_builtin_sym_end, + ACTIONS(1673), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1675), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362831,26 +364558,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_and, - anon_sym_xor, - anon_sym_or, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159869] = 6, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [150606] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7046), 1, - anon_sym_DOT, - ACTIONS(7048), 1, + ACTIONS(7075), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7077), 1, aux_sym__immediate_decimal_token2, - STATE(4012), 1, + STATE(3991), 1, sym_comment, - ACTIONS(1717), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1715), 15, + ACTIONS(1621), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1623), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362862,25 +364593,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, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [159905] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1844), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - ACTIONS(7050), 1, - anon_sym_DOT_DOT2, - STATE(4013), 1, - sym_comment, - ACTIONS(7052), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1850), 16, + sym_filesize_unit, + sym_duration_unit, + [150645] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(2012), 1, + anon_sym_DOLLAR, + ACTIONS(7079), 1, + anon_sym_LPAREN2, + ACTIONS(7081), 1, + anon_sym_DOT, + ACTIONS(7083), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7085), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7087), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7089), 1, + aux_sym__immediate_decimal_token5, + STATE(3992), 1, + sym_comment, + STATE(4155), 1, + sym__immediate_decimal, + ACTIONS(1544), 2, + ts_builtin_sym_end, + sym__space, + STATE(4365), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1530), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362892,23 +364642,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [159943] = 5, - ACTIONS(249), 1, + [150700] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7054), 1, + ACTIONS(7067), 1, aux_sym__immediate_decimal_token2, - STATE(4014), 1, + STATE(3993), 1, sym_comment, - ACTIONS(1769), 2, + ACTIONS(1607), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1771), 18, - ts_builtin_sym_end, + ACTIONS(1609), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362920,27 +364664,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, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159977] = 7, - ACTIONS(249), 1, + sym_filesize_unit, + sym_duration_unit, + [150737] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(1790), 1, + ACTIONS(1591), 1, + sym__space, + ACTIONS(1810), 1, + anon_sym_DOLLAR, + ACTIONS(7049), 1, anon_sym_LPAREN2, - ACTIONS(7056), 1, - anon_sym_DOT_DOT2, - STATE(4015), 1, + ACTIONS(7053), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7055), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7059), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7091), 1, + anon_sym_DOT, + STATE(3994), 1, sym_comment, - ACTIONS(7058), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1796), 16, + STATE(4253), 1, + sym__immediate_decimal, + STATE(4252), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1581), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362954,52 +364714,27 @@ 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, - [160015] = 11, - ACTIONS(3), 1, + [150790] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - ACTIONS(7060), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + ACTIONS(7093), 1, anon_sym_DOT_DOT2, - ACTIONS(7064), 1, + ACTIONS(7097), 1, sym_filesize_unit, - ACTIONS(7066), 1, + ACTIONS(7099), 1, sym_duration_unit, - ACTIONS(7068), 1, - aux_sym_unquoted_token2, - STATE(4016), 1, + STATE(3995), 1, sym_comment, - STATE(7416), 1, + STATE(7503), 1, sym__expr_parenthesized_immediate, - ACTIONS(1640), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7062), 2, + ACTIONS(7095), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1628), 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, - [160061] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4997), 1, - anon_sym_DASH, - STATE(4017), 1, - sym_comment, - ACTIONS(4995), 20, + ACTIONS(1721), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363012,23 +364747,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_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [160093] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150837] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4018), 1, - sym_comment, - ACTIONS(1715), 2, - anon_sym_DOT_DOT2, + ACTIONS(1544), 1, + sym__space, + ACTIONS(1546), 1, aux_sym_unquoted_token2, - ACTIONS(1717), 19, + ACTIONS(4341), 1, + anon_sym_DOLLAR, + ACTIONS(7049), 1, + anon_sym_LPAREN2, + ACTIONS(7101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7103), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7105), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7107), 1, + aux_sym__immediate_decimal_token5, + STATE(3996), 1, + sym_comment, + STATE(4317), 1, + sym__immediate_decimal, + STATE(4717), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1530), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363042,67 +364791,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [160125] = 13, - ACTIONS(249), 1, + [150890] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7025), 1, - anon_sym_LPAREN2, - ACTIONS(7070), 1, + ACTIONS(1577), 1, + sym__space, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(7072), 1, + ACTIONS(7049), 1, + anon_sym_LPAREN2, + ACTIONS(7101), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7074), 1, + ACTIONS(7103), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7076), 1, + ACTIONS(7105), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7078), 1, + ACTIONS(7107), 1, aux_sym__immediate_decimal_token5, - STATE(4019), 1, + STATE(3997), 1, sym_comment, - STATE(4790), 1, + STATE(4331), 1, sym__immediate_decimal, - ACTIONS(1544), 2, - sym_identifier, - anon_sym_DASH, - STATE(5161), 2, + STATE(4699), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1556), 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, - [160175] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(4020), 1, - sym_comment, - STATE(4096), 1, - aux_sym_cell_path_repeat1, - STATE(4176), 1, - sym_path, - STATE(4310), 1, - sym_cell_path, - ACTIONS(1668), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1664), 14, + ACTIONS(1565), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363116,17 +364831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [160215] = 4, - ACTIONS(249), 1, + [150943] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4021), 1, + STATE(3998), 1, sym_comment, - ACTIONS(1078), 2, - anon_sym_DASH, + ACTIONS(1673), 2, anon_sym_DOT_DOT2, - ACTIONS(1080), 19, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1675), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363138,51 +364851,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160247] = 6, - ACTIONS(249), 1, + sym_filesize_unit, + sym_duration_unit, + [150977] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7082), 1, + ACTIONS(7109), 1, anon_sym_DOT, - ACTIONS(7084), 1, + ACTIONS(7111), 1, aux_sym__immediate_decimal_token2, - STATE(4022), 1, + STATE(3999), 1, sym_comment, - ACTIONS(1536), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1538), 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(1609), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160283] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4987), 1, - anon_sym_DASH, - STATE(4023), 1, - sym_comment, - ACTIONS(4985), 20, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1607), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363195,55 +364890,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, - anon_sym_LPAREN2, - [160315] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4024), 1, - sym_comment, - ACTIONS(1703), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1705), 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, - [160347] = 4, + [151015] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4025), 1, + ACTIONS(7113), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7115), 1, + aux_sym__immediate_decimal_token2, + STATE(4000), 1, sym_comment, - ACTIONS(1713), 6, + ACTIONS(1623), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1711), 15, + ACTIONS(1621), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363259,21 +364925,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [160379] = 6, + [151053] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7086), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(4305), 1, + anon_sym_DOLLAR, + ACTIONS(7079), 1, + anon_sym_LPAREN2, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7088), 1, - aux_sym__immediate_decimal_token2, - STATE(4026), 1, + ACTIONS(7119), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7121), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7123), 1, + aux_sym__immediate_decimal_token5, + STATE(4001), 1, sym_comment, - ACTIONS(1705), 4, + STATE(4556), 1, + sym__immediate_decimal, + ACTIONS(1544), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1703), 15, + STATE(4833), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1530), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363285,22 +364964,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, - [160415] = 5, - ACTIONS(249), 1, + [151105] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7041), 1, + ACTIONS(7125), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7127), 1, aux_sym__immediate_decimal_token2, - STATE(4027), 1, + STATE(4002), 1, sym_comment, - ACTIONS(1715), 2, + ACTIONS(1739), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1717), 18, - ts_builtin_sym_end, + ACTIONS(1741), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363312,22 +364988,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, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160449] = 5, - ACTIONS(249), 1, + [151143] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2355), 1, - anon_sym_DASH, - ACTIONS(7090), 1, - anon_sym_LBRACK2, - STATE(4028), 1, + ACTIONS(7071), 1, + aux_sym__immediate_decimal_token2, + STATE(4003), 1, sym_comment, - ACTIONS(2359), 19, + ACTIONS(1607), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363339,28 +365019,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_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [160483] = 7, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [151179] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1027), 1, - anon_sym_DOT_DOT2, - ACTIONS(6993), 1, - anon_sym_DOT, - STATE(4011), 1, - aux_sym_cell_path_repeat1, - STATE(4029), 1, + ACTIONS(7129), 1, + aux_sym__immediate_decimal_token2, + STATE(4004), 1, sym_comment, - STATE(4141), 1, - sym_path, - ACTIONS(1029), 17, + ACTIONS(1673), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1675), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363373,20 +365050,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160521] = 4, - ACTIONS(249), 1, + sym_filesize_unit, + sym_duration_unit, + [151215] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4030), 1, + STATE(4005), 1, sym_comment, - ACTIONS(1769), 2, + ACTIONS(1607), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1771), 19, + ACTIONS(1609), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363400,30 +365080,23 @@ 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160553] = 8, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [151249] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(4031), 1, + STATE(4006), 1, sym_comment, - STATE(4096), 1, - aux_sym_cell_path_repeat1, - STATE(4176), 1, - sym_path, - STATE(4320), 1, - sym_cell_path, - ACTIONS(1672), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1670), 14, + ACTIONS(1621), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1623), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363437,20 +365110,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [160593] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4032), 1, - sym_comment, - ACTIONS(1538), 6, - sym__space, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1536), 15, + [151283] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + ACTIONS(4305), 1, + anon_sym_DOLLAR, + ACTIONS(7079), 1, + anon_sym_LPAREN2, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7119), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7121), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7123), 1, + aux_sym__immediate_decimal_token5, + STATE(4007), 1, + sym_comment, + STATE(4587), 1, + sym__immediate_decimal, + ACTIONS(1577), 2, + ts_builtin_sym_end, + sym__space, + STATE(4850), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363462,26 +365157,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, - aux_sym_unquoted_token2, - [160625] = 5, - ACTIONS(3), 1, + [151335] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7092), 1, - aux_sym__immediate_decimal_token2, - STATE(4033), 1, + STATE(4008), 1, sym_comment, - ACTIONS(1598), 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(1596), 13, + ACTIONS(1763), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1765), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363493,54 +365177,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [160659] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7023), 1, - anon_sym_DOLLAR, - ACTIONS(7025), 1, - anon_sym_LPAREN2, - ACTIONS(7029), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7031), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7033), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7035), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7094), 1, - anon_sym_DOT, - STATE(4034), 1, - sym_comment, - STATE(4680), 1, - sym__immediate_decimal, - ACTIONS(1560), 2, - sym_identifier, - anon_sym_DASH, - STATE(4679), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1570), 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, - [160709] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [151369] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4035), 1, + ACTIONS(7131), 1, + anon_sym_DOT, + ACTIONS(7133), 1, + aux_sym__immediate_decimal_token2, + STATE(4009), 1, sym_comment, - ACTIONS(1826), 2, + ACTIONS(1755), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1828), 19, + ACTIONS(1757), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363554,92 +365213,76 @@ 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160741] = 6, - ACTIONS(249), 1, + [151407] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7096), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7098), 1, - aux_sym__immediate_decimal_token2, - STATE(4036), 1, - sym_comment, - ACTIONS(1528), 6, - sym_identifier, - anon_sym_DASH, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4900), 1, + aux_sym_unquoted_token2, + ACTIONS(7135), 1, anon_sym_DOT_DOT2, + ACTIONS(7139), 1, sym_filesize_unit, + ACTIONS(7141), 1, sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1530), 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(4010), 1, + sym_comment, + STATE(7384), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7137), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160777] = 13, - ACTIONS(249), 1, + ACTIONS(1721), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151453] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7025), 1, - anon_sym_LPAREN2, - ACTIONS(7070), 1, + ACTIONS(2012), 1, anon_sym_DOLLAR, - ACTIONS(7072), 1, + ACTIONS(7079), 1, + anon_sym_LPAREN2, + ACTIONS(7083), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7074), 1, + ACTIONS(7085), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7076), 1, + ACTIONS(7087), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7078), 1, + ACTIONS(7089), 1, aux_sym__immediate_decimal_token5, - STATE(4037), 1, + ACTIONS(7143), 1, + anon_sym_DOT, + STATE(4011), 1, sym_comment, - STATE(4844), 1, + STATE(4363), 1, sym__immediate_decimal, - ACTIONS(1510), 2, - sym_identifier, - anon_sym_DASH, - STATE(5091), 2, + ACTIONS(1591), 2, + ts_builtin_sym_end, + sym__space, + STATE(4362), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1524), 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, - [160827] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4038), 1, - sym_comment, - ACTIONS(1530), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1528), 15, + ACTIONS(1581), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363651,23 +365294,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [160859] = 4, + [151505] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(4039), 1, - sym_comment, - ACTIONS(1598), 6, + ACTIONS(1591), 1, sym__space, + ACTIONS(4341), 1, + anon_sym_DOLLAR, + ACTIONS(7049), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1596), 15, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7059), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7145), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7147), 1, + aux_sym__immediate_decimal_token3, + STATE(4012), 1, + sym_comment, + STATE(4714), 1, + sym__immediate_decimal, + STATE(4713), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1581), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363681,26 +365332,31 @@ 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, - [160891] = 8, + [151555] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(4040), 1, - sym_comment, - STATE(4096), 1, - aux_sym_cell_path_repeat1, - STATE(4176), 1, - sym_path, - STATE(4343), 1, - sym_cell_path, - ACTIONS(1023), 3, + ACTIONS(1693), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1021), 14, + ACTIONS(4341), 1, + anon_sym_DOLLAR, + ACTIONS(7049), 1, + anon_sym_LPAREN2, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7059), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7145), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7147), 1, + aux_sym__immediate_decimal_token3, + STATE(4013), 1, + sym_comment, + STATE(4771), 1, + sym__immediate_decimal, + STATE(4767), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1691), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363714,23 +365370,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [160931] = 5, + [151605] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token2, - STATE(4041), 1, - sym_comment, - ACTIONS(1538), 7, - ts_builtin_sym_end, + ACTIONS(1671), 1, sym__space, + ACTIONS(4341), 1, + anon_sym_DOLLAR, + ACTIONS(7049), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1536), 13, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7059), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7145), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7147), 1, + aux_sym__immediate_decimal_token3, + STATE(4014), 1, + sym_comment, + STATE(4773), 1, + sym__immediate_decimal, + STATE(4772), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1663), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363742,16 +365406,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_DOT_DOT2, - aux_sym_unquoted_token2, - [160965] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [151655] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2410), 1, - anon_sym_DASH, - STATE(4042), 1, + ACTIONS(1707), 1, + sym__space, + ACTIONS(4341), 1, + anon_sym_DOLLAR, + ACTIONS(7049), 1, + anon_sym_LPAREN2, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7059), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7145), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7147), 1, + aux_sym__immediate_decimal_token3, + STATE(4015), 1, sym_comment, - ACTIONS(2412), 19, + STATE(4777), 1, + sym__immediate_decimal, + STATE(4774), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1705), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363764,23 +365445,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_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [160996] = 4, - ACTIONS(249), 1, + [151705] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4043), 1, - sym_comment, - ACTIONS(1058), 2, + ACTIONS(1769), 1, anon_sym_DOT_DOT2, + ACTIONS(6392), 1, anon_sym_DOT, - ACTIONS(1060), 18, - ts_builtin_sym_end, + STATE(1642), 1, + sym_path, + STATE(1657), 1, + sym_cell_path, + STATE(3372), 1, + aux_sym_cell_path_repeat1, + STATE(4016), 1, + sym_comment, + ACTIONS(1771), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363792,22 +365473,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_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161027] = 4, - ACTIONS(249), 1, + [151747] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4044), 1, - sym_comment, - ACTIONS(1062), 2, + ACTIONS(1735), 1, anon_sym_DOT_DOT2, + ACTIONS(6392), 1, anon_sym_DOT, - ACTIONS(1064), 18, - ts_builtin_sym_end, + STATE(1642), 1, + sym_path, + STATE(1679), 1, + sym_cell_path, + STATE(3372), 1, + aux_sym_cell_path_repeat1, + STATE(4017), 1, + sym_comment, + ACTIONS(1737), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363819,22 +365507,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_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161058] = 4, - ACTIONS(249), 1, + [151789] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4045), 1, - sym_comment, - ACTIONS(1038), 2, + ACTIONS(1721), 1, + sym__space, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(7149), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1040), 18, - ts_builtin_sym_end, + ACTIONS(7153), 1, + sym_filesize_unit, + ACTIONS(7155), 1, + sym_duration_unit, + ACTIONS(7157), 1, + aux_sym_unquoted_token2, + STATE(4018), 1, + sym_comment, + STATE(7501), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7151), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363846,21 +365548,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_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161089] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [151836] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4046), 1, + ACTIONS(7159), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7161), 1, + aux_sym__immediate_decimal_token2, + STATE(4019), 1, sym_comment, - ACTIONS(1054), 2, + ACTIONS(1739), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1056), 18, + aux_sym_unquoted_token2, + ACTIONS(1741), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363873,20 +365575,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_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161120] = 4, - ACTIONS(249), 1, + [151873] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1090), 1, - anon_sym_DASH, - STATE(4047), 1, + ACTIONS(7133), 1, + aux_sym__immediate_decimal_token2, + STATE(4020), 1, sym_comment, - ACTIONS(1092), 19, + ACTIONS(1755), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1757), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363899,21 +365604,31 @@ static 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, - [161151] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151908] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2454), 1, - anon_sym_DASH, - STATE(4048), 1, + ACTIONS(7163), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token2, + STATE(4021), 1, sym_comment, - ACTIONS(2456), 19, + ACTIONS(1623), 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(1621), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363925,33 +365640,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161182] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [151945] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7100), 1, - anon_sym_DOT, - STATE(4049), 1, + ACTIONS(7167), 1, + aux_sym__immediate_decimal_token2, + STATE(4022), 1, sym_comment, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4374), 1, - sym_path, - STATE(4550), 1, - sym_cell_path, - ACTIONS(1023), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1021), 12, + ACTIONS(1783), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1785), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363963,15 +365664,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, - [161221] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151980] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH, - STATE(4050), 1, + STATE(4023), 1, sym_comment, - ACTIONS(1899), 19, + ACTIONS(1607), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363983,22 +365693,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161252] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [152013] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, - anon_sym_DASH, - STATE(4051), 1, + ACTIONS(7169), 1, + aux_sym__immediate_decimal_token2, + STATE(4024), 1, sym_comment, - ACTIONS(2549), 19, + ACTIONS(1675), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1673), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364011,21 +365728,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, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161283] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [152048] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DASH, - STATE(4052), 1, + ACTIONS(4305), 1, + anon_sym_DOLLAR, + ACTIONS(7079), 1, + anon_sym_LPAREN2, + ACTIONS(7087), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7089), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token3, + STATE(4025), 1, sym_comment, - ACTIONS(2541), 19, + STATE(4782), 1, + sym__immediate_decimal, + ACTIONS(1591), 2, + ts_builtin_sym_end, + sym__space, + STATE(4832), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1581), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364037,22 +365768,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - 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, - [161314] = 4, - ACTIONS(249), 1, + [152097] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2398), 1, - anon_sym_DASH, - STATE(4053), 1, + ACTIONS(7175), 1, + sym__newline, + STATE(4026), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1294), 10, + sym_identifier, + anon_sym_DASH2, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(1296), 10, + anon_sym_EQ, + anon_sym_COLON, + 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, + aux_sym__val_number_token5, + [152132] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4305), 1, + anon_sym_DOLLAR, + ACTIONS(7079), 1, + anon_sym_LPAREN2, + ACTIONS(7087), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7089), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token3, + STATE(4027), 1, sym_comment, - ACTIONS(2400), 19, + STATE(4845), 1, + sym__immediate_decimal, + ACTIONS(1693), 2, + ts_builtin_sym_end, + sym__space, + STATE(4844), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1691), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364064,22 +365835,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, - [161345] = 4, - ACTIONS(249), 1, + [152181] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2406), 1, - anon_sym_DASH, - STATE(4054), 1, + ACTIONS(4305), 1, + anon_sym_DOLLAR, + ACTIONS(7079), 1, + anon_sym_LPAREN2, + ACTIONS(7087), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7089), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token3, + STATE(4028), 1, sym_comment, - ACTIONS(2408), 19, + STATE(4847), 1, + sym__immediate_decimal, + ACTIONS(1671), 2, + ts_builtin_sym_end, + sym__space, + STATE(4846), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1663), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364091,22 +365872,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, - [161376] = 4, - ACTIONS(249), 1, + [152230] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2506), 1, - anon_sym_DASH, - STATE(4055), 1, + ACTIONS(4305), 1, + anon_sym_DOLLAR, + ACTIONS(7079), 1, + anon_sym_LPAREN2, + ACTIONS(7087), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7089), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token3, + STATE(4029), 1, sym_comment, - ACTIONS(2508), 19, + STATE(4849), 1, + sym__immediate_decimal, + ACTIONS(1707), 2, + ts_builtin_sym_end, + sym__space, + STATE(4848), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1705), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364118,22 +365909,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, - [161407] = 4, - ACTIONS(249), 1, + [152279] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2543), 1, - anon_sym_DASH, - STATE(4056), 1, + ACTIONS(7178), 1, + anon_sym_DOT, + ACTIONS(7180), 1, + aux_sym__immediate_decimal_token2, + STATE(4030), 1, sym_comment, - ACTIONS(2545), 19, + ACTIONS(1755), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1757), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364145,22 +365934,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, - [161438] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152316] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2561), 1, - anon_sym_DASH, - STATE(4057), 1, + STATE(4031), 1, sym_comment, - ACTIONS(2563), 19, + ACTIONS(1621), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1623), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364172,22 +365961,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161469] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [152349] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2510), 1, - anon_sym_DASH, - STATE(4058), 1, + ACTIONS(7111), 1, + aux_sym__immediate_decimal_token2, + STATE(4032), 1, sym_comment, - ACTIONS(2512), 19, + ACTIONS(1609), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1607), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364200,25 +365996,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_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161500] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1715), 1, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(7102), 1, - anon_sym_DOT, - ACTIONS(7104), 1, - aux_sym__immediate_decimal_token2, - STATE(4059), 1, + [152384] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4033), 1, sym_comment, - ACTIONS(1717), 17, + ACTIONS(1673), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1675), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364230,28 +366020,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - [161535] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [152417] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7106), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7108), 1, + ACTIONS(7182), 1, + anon_sym_DOT, + ACTIONS(7184), 1, aux_sym__immediate_decimal_token2, - STATE(4060), 1, + STATE(4034), 1, sym_comment, - ACTIONS(1705), 5, + ACTIONS(1609), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1703), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1607), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364265,41 +366059,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [161570] = 4, - ACTIONS(249), 1, + [152454] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH, - STATE(4061), 1, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7186), 1, + anon_sym_DOLLAR, + ACTIONS(7188), 1, + anon_sym_LPAREN2, + ACTIONS(7190), 1, + anon_sym_DOT, + ACTIONS(7192), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7194), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7196), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7198), 1, + aux_sym__immediate_decimal_token5, + STATE(4035), 1, sym_comment, - ACTIONS(2003), 19, + STATE(4276), 1, + sym__immediate_decimal, + ACTIONS(1530), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4578), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1544), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161601] = 4, - ACTIONS(249), 1, + [152507] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2535), 1, - anon_sym_DASH, - STATE(4062), 1, + ACTIONS(1769), 1, + anon_sym_DOT_DOT2, + ACTIONS(6460), 1, + anon_sym_DOT, + STATE(1978), 1, + sym_path, + STATE(2127), 1, + sym_cell_path, + STATE(3403), 1, + aux_sym_cell_path_repeat1, + STATE(4036), 1, sym_comment, - ACTIONS(2537), 19, + ACTIONS(1771), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364311,22 +366126,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_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161632] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152548] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2466), 1, - anon_sym_DASH, - STATE(4063), 1, + ACTIONS(1735), 1, + anon_sym_DOT_DOT2, + ACTIONS(6460), 1, + anon_sym_DOT, + STATE(1978), 1, + sym_path, + STATE(2124), 1, + sym_cell_path, + STATE(3403), 1, + aux_sym_cell_path_repeat1, + STATE(4037), 1, sym_comment, - ACTIONS(2468), 19, + ACTIONS(1737), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364338,22 +366159,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, - [161663] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152589] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2017), 1, - anon_sym_DASH, - STATE(4064), 1, + STATE(4038), 1, sym_comment, - ACTIONS(2019), 19, + ACTIONS(1763), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1765), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364365,22 +366185,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, - [161694] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [152622] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH, - STATE(4065), 1, + STATE(4039), 1, sym_comment, - ACTIONS(2045), 19, + ACTIONS(1609), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1607), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364393,28 +366218,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_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161725] = 5, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [152654] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7084), 1, - aux_sym__immediate_decimal_token2, - STATE(4066), 1, + ACTIONS(7186), 1, + anon_sym_DOLLAR, + ACTIONS(7188), 1, + anon_sym_LPAREN2, + ACTIONS(7192), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7194), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7196), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7198), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7200), 1, + anon_sym_DOT, + STATE(4040), 1, sym_comment, - ACTIONS(1536), 6, + STATE(4577), 1, + sym__immediate_decimal, + ACTIONS(1581), 2, sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1538), 13, + anon_sym_DASH2, + STATE(4576), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1591), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -364422,20 +366256,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161758] = 4, - ACTIONS(249), 1, + [152704] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_DASH, - STATE(4067), 1, + STATE(4041), 1, sym_comment, - ACTIONS(2049), 19, + ACTIONS(1755), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1757), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364448,21 +366279,31 @@ static 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, - [161789] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152736] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2434), 1, - anon_sym_DASH, - STATE(4068), 1, + ACTIONS(7202), 1, + anon_sym_DOT, + STATE(4042), 1, sym_comment, - ACTIONS(2436), 19, + STATE(4090), 1, + aux_sym_cell_path_repeat1, + STATE(4139), 1, + sym_path, + STATE(4234), 1, + sym_cell_path, + ACTIONS(1771), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1769), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364475,21 +366316,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_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161820] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + [152776] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_DASH, - STATE(4069), 1, + ACTIONS(7204), 1, + anon_sym_DOT, + ACTIONS(7206), 1, + aux_sym__immediate_decimal_token2, + STATE(4043), 1, sym_comment, - ACTIONS(2061), 19, + ACTIONS(1757), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1755), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364502,21 +366345,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_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161851] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [152812] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2442), 1, - anon_sym_DASH, - STATE(4070), 1, + STATE(4044), 1, sym_comment, - ACTIONS(2444), 19, + ACTIONS(1739), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1741), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364529,21 +366369,31 @@ static 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, - [161882] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152844] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2450), 1, - anon_sym_DASH, - STATE(4071), 1, + ACTIONS(7202), 1, + anon_sym_DOT, + STATE(4045), 1, sym_comment, - ACTIONS(2452), 19, + STATE(4090), 1, + aux_sym_cell_path_repeat1, + STATE(4139), 1, + sym_path, + STATE(4240), 1, + sym_cell_path, + ACTIONS(1737), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1735), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364556,21 +366406,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_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161913] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + [152884] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2067), 1, - anon_sym_DASH, - STATE(4072), 1, + STATE(4046), 1, sym_comment, - ACTIONS(2069), 19, + ACTIONS(1783), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1785), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364583,49 +366429,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_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161944] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152916] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7110), 1, - aux_sym__immediate_decimal_token2, - STATE(4073), 1, + STATE(4047), 1, sym_comment, - ACTIONS(1596), 6, - sym_identifier, - anon_sym_DASH, + ACTIONS(1890), 2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1598), 13, - anon_sym_EQ, + aux_sym_unquoted_token2, + ACTIONS(1892), 19, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161977] = 4, - ACTIONS(249), 1, + [152948] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2087), 1, - anon_sym_DASH, - STATE(4074), 1, + ACTIONS(7208), 1, + aux_sym__immediate_decimal_token2, + STATE(4048), 1, sym_comment, - ACTIONS(2089), 19, + ACTIONS(1675), 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(1673), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364637,22 +366491,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, - [162008] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [152982] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2470), 1, - anon_sym_DASH, - STATE(4075), 1, + STATE(4049), 1, sym_comment, - ACTIONS(2472), 19, + ACTIONS(1623), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1621), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364665,21 +366518,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162039] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [153014] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2474), 1, - anon_sym_DASH, - STATE(4076), 1, + STATE(4050), 1, sym_comment, - ACTIONS(2476), 19, + ACTIONS(1675), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1673), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364692,21 +366546,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162070] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [153046] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2095), 1, - anon_sym_DASH, - STATE(4077), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(7210), 1, + anon_sym_DOT_DOT2, + ACTIONS(7214), 1, + sym_filesize_unit, + ACTIONS(7216), 1, + sym_duration_unit, + ACTIONS(7218), 1, + aux_sym_unquoted_token2, + STATE(4051), 1, sym_comment, - ACTIONS(2097), 19, + STATE(7412), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1721), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7212), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364718,33 +366584,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162101] = 8, + [153092] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7100), 1, - anon_sym_DOT, - STATE(4078), 1, + STATE(4052), 1, sym_comment, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4374), 1, - sym_path, - STATE(4417), 1, - sym_cell_path, - ACTIONS(1672), 4, - ts_builtin_sym_end, + ACTIONS(1765), 6, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1670), 12, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1763), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364756,15 +366608,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, - [162140] = 4, - ACTIONS(249), 1, + aux_sym_unquoted_token2, + [153124] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2531), 1, - anon_sym_DASH, - STATE(4079), 1, + ACTIONS(7220), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7222), 1, + aux_sym__immediate_decimal_token2, + STATE(4053), 1, sym_comment, - ACTIONS(2533), 19, + ACTIONS(1741), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1739), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364777,29 +366639,141 @@ static 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, - [162171] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [153160] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7112), 1, + ACTIONS(7224), 1, anon_sym_DOT, - ACTIONS(7114), 1, + ACTIONS(7226), 1, aux_sym__immediate_decimal_token2, - STATE(4080), 1, + STATE(4054), 1, sym_comment, - ACTIONS(1717), 5, - ts_builtin_sym_end, - sym__space, + ACTIONS(1607), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1609), 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, + [153196] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7228), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7230), 1, + aux_sym__immediate_decimal_token2, + STATE(4055), 1, + sym_comment, + ACTIONS(1621), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1623), 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(1715), 13, + [153232] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4056), 1, + sym_comment, + ACTIONS(1290), 10, + sym_identifier, + anon_sym_DASH2, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(1288), 11, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + 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, + aux_sym__val_number_token5, + [153264] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7202), 1, + anon_sym_DOT, + STATE(4057), 1, + sym_comment, + STATE(4090), 1, + aux_sym_cell_path_repeat1, + STATE(4139), 1, + sym_path, + STATE(4214), 1, + sym_cell_path, + ACTIONS(963), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(961), 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, + [153304] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7180), 1, + aux_sym__immediate_decimal_token2, + STATE(4058), 1, + sym_comment, + ACTIONS(1755), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1757), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364811,22 +366785,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, - [162206] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [153338] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4081), 1, - sym_comment, - ACTIONS(1538), 7, - ts_builtin_sym_end, - sym__space, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(1868), 1, anon_sym_LPAREN2, + ACTIONS(7232), 1, + anon_sym_DOT_DOT2, + STATE(4059), 1, + sym_comment, + ACTIONS(7234), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1536), 13, + ACTIONS(1874), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364838,16 +366817,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_DOT_DOT2, - aux_sym_unquoted_token2, - [162237] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [153376] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH, - STATE(4082), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + ACTIONS(7236), 1, + anon_sym_DOT_DOT2, + STATE(4060), 1, sym_comment, - ACTIONS(1911), 19, + ACTIONS(7238), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1886), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364860,22 +366849,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162268] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [153414] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4083), 1, + ACTIONS(7240), 1, + aux_sym__immediate_decimal_token2, + STATE(4061), 1, sym_comment, - ACTIONS(1715), 2, + ACTIONS(1783), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1717), 18, + ACTIONS(1785), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364888,18 +366876,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162299] = 4, + [153448] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7188), 1, + anon_sym_LPAREN2, + ACTIONS(7242), 1, + anon_sym_DOLLAR, + ACTIONS(7244), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7246), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7248), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7250), 1, + aux_sym__immediate_decimal_token5, + STATE(4062), 1, + sym_comment, + STATE(4725), 1, + sym__immediate_decimal, + ACTIONS(1530), 2, + sym_identifier, + anon_sym_DASH2, + STATE(5061), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1544), 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, + [153498] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4084), 1, + ACTIONS(7184), 1, + aux_sym__immediate_decimal_token2, + STATE(4063), 1, sym_comment, - ACTIONS(1530), 7, + ACTIONS(1609), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -364907,7 +366934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1528), 13, + ACTIONS(1607), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364921,32 +366948,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [162330] = 12, - ACTIONS(249), 1, + [153532] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7025), 1, + ACTIONS(1579), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7188), 1, anon_sym_LPAREN2, - ACTIONS(7033), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7035), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7070), 1, + ACTIONS(7242), 1, anon_sym_DOLLAR, - ACTIONS(7116), 1, + ACTIONS(7244), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7118), 1, + ACTIONS(7246), 1, aux_sym__immediate_decimal_token3, - STATE(4085), 1, + ACTIONS(7248), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7250), 1, + aux_sym__immediate_decimal_token5, + STATE(4064), 1, sym_comment, - STATE(5088), 1, + STATE(4738), 1, sym__immediate_decimal, - ACTIONS(1560), 2, + ACTIONS(1565), 2, sym_identifier, - anon_sym_DASH, - STATE(5082), 2, + anon_sym_DASH2, + STATE(5074), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1570), 9, + ACTIONS(1577), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -364956,20 +366985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162377] = 4, - ACTIONS(3), 1, + [153582] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4086), 1, + STATE(4065), 1, sym_comment, - ACTIONS(1598), 7, + ACTIONS(1890), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1892), 18, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1596), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364981,51 +367006,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_DOT_DOT2, - aux_sym_unquoted_token2, - [162408] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [153613] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2569), 1, - anon_sym_DASH, - STATE(4087), 1, + ACTIONS(7188), 1, + anon_sym_LPAREN2, + ACTIONS(7196), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7198), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7242), 1, + anon_sym_DOLLAR, + ACTIONS(7252), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7254), 1, + aux_sym__immediate_decimal_token3, + STATE(4066), 1, sym_comment, - ACTIONS(2571), 19, + STATE(5073), 1, + sym__immediate_decimal, + ACTIONS(1705), 2, + sym_identifier, + anon_sym_DASH2, + STATE(5072), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1707), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162439] = 7, - ACTIONS(249), 1, + [153660] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - ACTIONS(7120), 1, - anon_sym_DOT_DOT2, - STATE(4088), 1, + ACTIONS(7256), 1, + anon_sym_DOT, + STATE(4067), 1, sym_comment, - ACTIONS(7122), 2, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4273), 1, + sym_path, + STATE(4493), 1, + sym_cell_path, + ACTIONS(963), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1850), 15, - ts_builtin_sym_end, + ACTIONS(961), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365037,19 +367077,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, - [162476] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + [153699] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4089), 1, + ACTIONS(7206), 1, + aux_sym__immediate_decimal_token2, + STATE(4068), 1, sym_comment, - ACTIONS(1703), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1705), 18, - ts_builtin_sym_end, + ACTIONS(1757), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1755), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365061,22 +367102,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162507] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4090), 1, - sym_comment, - ACTIONS(1769), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1771), 18, - ts_builtin_sym_end, + [153732] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7258), 1, + anon_sym_DOT, + STATE(4139), 1, + sym_path, + STATE(4069), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(973), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(971), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365088,22 +367132,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162538] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4091), 1, - sym_comment, - ACTIONS(1826), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, + [153767] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1755), 1, aux_sym_unquoted_token2, - ACTIONS(1828), 18, - ts_builtin_sym_end, + ACTIONS(7261), 1, + anon_sym_DOT, + ACTIONS(7263), 1, + aux_sym__immediate_decimal_token2, + STATE(4070), 1, + sym_comment, + ACTIONS(1757), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365115,18 +367158,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_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162569] = 4, + [153802] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4092), 1, + STATE(4071), 1, sym_comment, - ACTIONS(1713), 7, + ACTIONS(1675), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -365134,7 +367177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1711), 13, + ACTIONS(1673), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365148,32 +367191,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [162600] = 12, - ACTIONS(249), 1, + [153833] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7025), 1, - anon_sym_LPAREN2, - ACTIONS(7033), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7035), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7070), 1, - anon_sym_DOLLAR, - ACTIONS(7116), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7118), 1, - aux_sym__immediate_decimal_token3, - STATE(4093), 1, + ACTIONS(7226), 1, + aux_sym__immediate_decimal_token2, + STATE(4072), 1, sym_comment, - STATE(5153), 1, - sym__immediate_decimal, - ACTIONS(1608), 2, + ACTIONS(1607), 6, sym_identifier, - anon_sym_DASH, - STATE(5150), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1610), 9, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1609), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -365181,69 +367213,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [162647] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7025), 1, - anon_sym_LPAREN2, - ACTIONS(7033), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7035), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7070), 1, anon_sym_DOLLAR, - ACTIONS(7116), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7118), 1, - aux_sym__immediate_decimal_token3, - STATE(4094), 1, - sym_comment, - STATE(5157), 1, - sym__immediate_decimal, - ACTIONS(1612), 2, - sym_identifier, - anon_sym_DASH, - STATE(5156), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1614), 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, - [162694] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7025), 1, anon_sym_LPAREN2, - ACTIONS(7033), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7035), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7070), 1, - anon_sym_DOLLAR, - ACTIONS(7116), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7118), 1, - aux_sym__immediate_decimal_token3, - STATE(4095), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [153866] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7265), 1, + aux_sym__immediate_decimal_token2, + STATE(4073), 1, sym_comment, - STATE(5160), 1, - sym__immediate_decimal, - ACTIONS(1620), 2, + ACTIONS(1673), 6, sym_identifier, - anon_sym_DASH, - STATE(5159), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1622), 9, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1675), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -365251,24 +367241,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162741] = 7, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [153899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7080), 1, - anon_sym_DOT, - STATE(4096), 1, + STATE(4074), 1, sym_comment, - STATE(4097), 1, - aux_sym_cell_path_repeat1, - STATE(4176), 1, - sym_path, - ACTIONS(1029), 3, + ACTIONS(1765), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1027), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1763), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365280,24 +367272,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, - [162778] = 6, + aux_sym_unquoted_token2, + [153930] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7124), 1, + ACTIONS(7256), 1, anon_sym_DOT, - STATE(4176), 1, - sym_path, - STATE(4097), 2, + STATE(4075), 1, sym_comment, + STATE(4097), 1, aux_sym_cell_path_repeat1, - ACTIONS(1033), 3, + STATE(4273), 1, + sym_path, + STATE(4385), 1, + sym_cell_path, + ACTIONS(1771), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1031), 14, + ACTIONS(1769), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365309,109 +367304,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, - [162813] = 11, - ACTIONS(249), 1, + [153969] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(7127), 1, + ACTIONS(1721), 1, + sym__space, + ACTIONS(4708), 1, anon_sym_DOT_DOT2, - ACTIONS(7131), 1, + ACTIONS(7153), 1, sym_filesize_unit, - ACTIONS(7133), 1, + ACTIONS(7155), 1, sym_duration_unit, - ACTIONS(7135), 1, - aux_sym__unquoted_in_list_token2, - STATE(4098), 1, - sym_comment, - STATE(7518), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1628), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(7129), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 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, - [162858] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(7157), 1, aux_sym_unquoted_token2, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(7137), 1, - anon_sym_DOT_DOT2, - STATE(4099), 1, - sym_comment, - ACTIONS(7139), 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, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [162895] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7048), 1, - aux_sym__immediate_decimal_token2, - STATE(4100), 1, + STATE(4076), 1, sym_comment, - ACTIONS(1717), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(4710), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1715), 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, - [162928] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2494), 1, - anon_sym_DASH, - STATE(4101), 1, - sym_comment, - ACTIONS(2496), 19, + ACTIONS(1709), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365424,21 +367336,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_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162959] = 4, - ACTIONS(249), 1, + [154010] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2494), 1, - anon_sym_DASH, - STATE(4102), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + ACTIONS(7267), 1, + anon_sym_DOT_DOT2, + STATE(4077), 1, sym_comment, - ACTIONS(2496), 19, + ACTIONS(7269), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1874), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365450,22 +367364,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_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162990] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [154047] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2430), 1, - anon_sym_DASH, - STATE(4103), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + ACTIONS(7271), 1, + anon_sym_DOT_DOT2, + STATE(4078), 1, sym_comment, - ACTIONS(2432), 19, + ACTIONS(7273), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1886), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365477,22 +367394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [163021] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [154084] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2478), 1, - anon_sym_DASH, - STATE(4104), 1, + STATE(4079), 1, sym_comment, - ACTIONS(2480), 19, + ACTIONS(1755), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1757), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365504,22 +367418,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [163052] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154115] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2438), 1, - anon_sym_DASH, - STATE(4105), 1, + ACTIONS(7256), 1, + anon_sym_DOT, + STATE(4080), 1, sym_comment, - ACTIONS(2440), 19, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4273), 1, + sym_path, + STATE(4391), 1, + sym_cell_path, + ACTIONS(1737), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1735), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365531,54 +367454,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, - [163083] = 5, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + [154154] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7141), 1, - sym__newline, - STATE(4106), 2, + STATE(4081), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1351), 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(1349), 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, - [163116] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1703), 1, + ACTIONS(1739), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(7144), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7146), 1, - aux_sym__immediate_decimal_token2, - STATE(4107), 1, - sym_comment, - ACTIONS(1705), 17, + ACTIONS(1741), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365590,31 +367476,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - [163151] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154185] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - sym__space, - ACTIONS(4614), 1, - anon_sym_DOT_DOT2, - ACTIONS(7017), 1, - sym_filesize_unit, - ACTIONS(7019), 1, - sym_duration_unit, - ACTIONS(7021), 1, - aux_sym_unquoted_token2, - STATE(4108), 1, + ACTIONS(7275), 1, + aux_sym__immediate_decimal_token2, + STATE(4082), 1, sym_comment, - ACTIONS(4616), 2, + ACTIONS(1785), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1628), 13, + ACTIONS(1783), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365628,19 +367508,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [163192] = 5, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [154218] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7148), 1, + ACTIONS(7277), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7279), 1, aux_sym__immediate_decimal_token2, - STATE(4109), 1, + STATE(4083), 1, sym_comment, - ACTIONS(1771), 4, + ACTIONS(1741), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1769), 15, + ACTIONS(1739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365652,50 +367537,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, - [163225] = 5, - ACTIONS(249), 1, + [154253] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7150), 1, - anon_sym_QMARK2, - STATE(4110), 1, + STATE(4084), 1, sym_comment, - ACTIONS(1042), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1044), 17, + ACTIONS(1609), 7, ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163258] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7152), 1, - anon_sym_QMARK2, - STATE(4111), 1, - sym_comment, - ACTIONS(1048), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1050), 17, - ts_builtin_sym_end, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1607), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365707,30 +367564,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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163291] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [154284] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7100), 1, + ACTIONS(7281), 1, anon_sym_DOT, - STATE(4112), 1, + ACTIONS(7283), 1, + aux_sym__immediate_decimal_token2, + STATE(4085), 1, sym_comment, - STATE(4123), 1, - aux_sym_cell_path_repeat1, - STATE(4374), 1, - sym_path, - STATE(4513), 1, - sym_cell_path, - ACTIONS(1668), 4, + ACTIONS(1757), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1664), 12, + ACTIONS(1755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365743,14 +367594,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, - [163330] = 4, - ACTIONS(249), 1, + aux_sym_unquoted_token2, + [154319] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2502), 1, - anon_sym_DASH, - STATE(4113), 1, + STATE(4086), 1, sym_comment, - ACTIONS(2504), 19, + ACTIONS(1783), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1785), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365762,24 +367616,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [163361] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4114), 1, - sym_comment, - ACTIONS(1064), 3, - sym__space, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1062), 16, + [154350] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + ACTIONS(7285), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7287), 1, + aux_sym__immediate_decimal_token2, + STATE(4087), 1, + sym_comment, + ACTIONS(1741), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365793,22 +367647,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [163391] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [154385] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4115), 1, + ACTIONS(7188), 1, + anon_sym_LPAREN2, + ACTIONS(7196), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7198), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7242), 1, + anon_sym_DOLLAR, + ACTIONS(7252), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7254), 1, + aux_sym__immediate_decimal_token3, + STATE(4088), 1, sym_comment, - ACTIONS(1596), 6, + STATE(5060), 1, + sym__immediate_decimal, + ACTIONS(1581), 2, sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1598), 13, + anon_sym_DASH2, + STATE(5059), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1591), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -365816,26 +367684,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163421] = 5, + [154432] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7114), 1, - aux_sym__immediate_decimal_token2, - STATE(4116), 1, + STATE(4089), 1, sym_comment, - ACTIONS(1717), 5, + ACTIONS(1623), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1715), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1621), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365849,16 +367713,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [163453] = 4, + [154463] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4117), 1, + ACTIONS(7202), 1, + anon_sym_DOT, + STATE(4069), 1, + aux_sym_cell_path_repeat1, + STATE(4090), 1, sym_comment, - ACTIONS(1056), 3, + STATE(4139), 1, + sym_path, + ACTIONS(969), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1054), 16, + ACTIONS(967), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365872,22 +367742,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [163483] = 4, - ACTIONS(249), 1, + [154500] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4118), 1, - sym_comment, - ACTIONS(1711), 6, - sym_identifier, - anon_sym_DASH, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(7289), 1, anon_sym_DOT_DOT2, + ACTIONS(7293), 1, sym_filesize_unit, + ACTIONS(7295), 1, sym_duration_unit, + ACTIONS(7297), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1713), 13, + STATE(4091), 1, + sym_comment, + STATE(7401), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1709), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(7291), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1721), 10, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -365898,26 +367777,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [154545] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7188), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163513] = 8, - ACTIONS(249), 1, + ACTIONS(7196), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7198), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7242), 1, + anon_sym_DOLLAR, + ACTIONS(7252), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7254), 1, + aux_sym__immediate_decimal_token3, + STATE(4092), 1, + sym_comment, + STATE(5069), 1, + sym__immediate_decimal, + ACTIONS(1691), 2, + sym_identifier, + anon_sym_DASH2, + STATE(5068), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1693), 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, + [154592] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7188), 1, + anon_sym_LPAREN2, + ACTIONS(7196), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7198), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7242), 1, + anon_sym_DOLLAR, + ACTIONS(7252), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7254), 1, + aux_sym__immediate_decimal_token3, + STATE(4093), 1, + sym_comment, + STATE(5071), 1, + sym__immediate_decimal, + ACTIONS(1663), 2, + sym_identifier, + anon_sym_DASH2, + STATE(5070), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1671), 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, + [154639] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7154), 1, + ACTIONS(7299), 1, anon_sym_DOT, - STATE(4119), 1, + STATE(4094), 1, sym_comment, - STATE(4281), 1, + STATE(4135), 1, aux_sym_cell_path_repeat1, - STATE(4418), 1, + STATE(4304), 1, sym_path, - STATE(4587), 1, + STATE(4514), 1, sym_cell_path, - ACTIONS(1021), 2, - anon_sym_DASH, + ACTIONS(1735), 2, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1023), 13, + ACTIONS(1737), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -365931,21 +367877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163551] = 6, - ACTIONS(249), 1, + [154677] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7156), 1, - anon_sym_DOT, - ACTIONS(7158), 1, - aux_sym__immediate_decimal_token2, - STATE(4120), 1, + STATE(4095), 1, sym_comment, - ACTIONS(1715), 4, + ACTIONS(1607), 6, sym_identifier, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 13, + ACTIONS(1609), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -365959,54 +367903,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163585] = 6, - ACTIONS(249), 1, + [154707] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7160), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7162), 1, - aux_sym__immediate_decimal_token2, - STATE(4121), 1, - sym_comment, - ACTIONS(1703), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1705), 13, + ACTIONS(2548), 1, + anon_sym_COMMA, + ACTIONS(7303), 1, anon_sym_EQ, + ACTIONS(7305), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(7307), 1, anon_sym_COLON, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_DASH2, + STATE(4096), 1, + sym_comment, + STATE(4296), 1, + sym_flag_capsule, + STATE(4297), 1, + aux_sym_parameter_repeat1, + STATE(5227), 1, + aux_sym_parameter_repeat2, + STATE(6696), 1, + aux_sym_shebang_repeat1, + STATE(5154), 2, + sym_param_type, + sym_param_value, + ACTIONS(7301), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163619] = 9, + [154757] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4614), 1, - anon_sym_DOT_DOT2, - ACTIONS(7064), 1, - sym_filesize_unit, - ACTIONS(7066), 1, - sym_duration_unit, - ACTIONS(7068), 1, - aux_sym_unquoted_token2, - STATE(4122), 1, + ACTIONS(7256), 1, + anon_sym_DOT, + STATE(4097), 1, sym_comment, - ACTIONS(1640), 2, + STATE(4098), 1, + aux_sym_cell_path_repeat1, + STATE(4273), 1, + sym_path, + ACTIONS(969), 4, ts_builtin_sym_end, sym__space, - ACTIONS(4616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1628), 11, + ACTIONS(967), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366018,23 +367967,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, - [163659] = 7, + anon_sym_DOT_DOT2, + [154793] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7100), 1, + ACTIONS(7313), 1, anon_sym_DOT, - STATE(4123), 1, + STATE(4273), 1, + sym_path, + STATE(4098), 2, sym_comment, - STATE(4132), 1, aux_sym_cell_path_repeat1, - STATE(4374), 1, - sym_path, - ACTIONS(1029), 4, + ACTIONS(973), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1027), 12, + ACTIONS(971), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366047,20 +367996,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, - [163695] = 5, + [154827] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7164), 1, - aux_sym__immediate_decimal_token2, - STATE(4124), 1, + STATE(4099), 1, sym_comment, - ACTIONS(1771), 5, - ts_builtin_sym_end, + ACTIONS(1757), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1769), 13, + ACTIONS(1755), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366072,25 +368018,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, - [163727] = 8, - ACTIONS(249), 1, + [154857] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7154), 1, + ACTIONS(7299), 1, anon_sym_DOT, - STATE(4125), 1, + STATE(4100), 1, sym_comment, - STATE(4281), 1, + STATE(4135), 1, aux_sym_cell_path_repeat1, - STATE(4418), 1, + STATE(4304), 1, sym_path, - STATE(4602), 1, + STATE(4572), 1, sym_cell_path, - ACTIONS(1664), 2, - anon_sym_DASH, + ACTIONS(961), 2, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1668), 13, + ACTIONS(963), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -366104,19 +368052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163765] = 4, - ACTIONS(249), 1, + [154895] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4126), 1, + STATE(4101), 1, sym_comment, - ACTIONS(1536), 6, + ACTIONS(1621), 6, sym_identifier, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1538), 13, + ACTIONS(1623), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -366130,25 +368078,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163795] = 8, - ACTIONS(249), 1, + [154925] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1042), 1, + anon_sym_DOT_DOT2, + STATE(4102), 1, + sym_comment, + ACTIONS(1044), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7316), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [154957] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1042), 1, + anon_sym_DOT_DOT2, + STATE(4103), 1, + sym_comment, + ACTIONS(1044), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7316), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [154989] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7154), 1, + ACTIONS(7318), 1, + anon_sym_QMARK2, + STATE(4104), 1, + sym_comment, + ACTIONS(986), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(984), 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, - STATE(4127), 1, + [155021] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1042), 1, + anon_sym_DOT_DOT2, + STATE(4105), 1, sym_comment, - STATE(4281), 1, - aux_sym_cell_path_repeat1, - STATE(4418), 1, - sym_path, - STATE(4611), 1, - sym_cell_path, - ACTIONS(1670), 2, - anon_sym_DASH, + ACTIONS(1044), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7316), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [155053] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4106), 1, + sym_comment, + ACTIONS(1673), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1672), 13, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1675), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -366158,21 +368209,23 @@ 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, - [163833] = 6, - ACTIONS(249), 1, + [155083] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1703), 1, - aux_sym_unquoted_token2, - ACTIONS(7166), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7168), 1, + ACTIONS(7283), 1, aux_sym__immediate_decimal_token2, - STATE(4128), 1, + STATE(4107), 1, sym_comment, - ACTIONS(1705), 16, + ACTIONS(1757), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366184,22 +368237,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_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [163867] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [155115] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7170), 1, - anon_sym_QMARK2, - STATE(4129), 1, + STATE(4108), 1, sym_comment, - ACTIONS(1044), 3, - sym__space, + ACTIONS(1763), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1765), 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(1042), 15, + [155145] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + ACTIONS(7263), 1, + aux_sym__immediate_decimal_token2, + STATE(4109), 1, + sym_comment, + ACTIONS(1757), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [155177] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1783), 1, + aux_sym_unquoted_token2, + ACTIONS(7320), 1, + aux_sym__immediate_decimal_token2, + STATE(4110), 1, + sym_comment, + ACTIONS(1785), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366212,21 +368314,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [163899] = 5, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [155209] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7322), 1, + anon_sym_DOT, + ACTIONS(7324), 1, + aux_sym__immediate_decimal_token2, + STATE(4111), 1, + sym_comment, + ACTIONS(1755), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 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, + [155243] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7172), 1, - anon_sym_QMARK2, - STATE(4130), 1, + STATE(4112), 1, sym_comment, - ACTIONS(1050), 3, + ACTIONS(1785), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1048), 15, + ACTIONS(1783), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366241,24 +368372,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - [163931] = 8, + aux_sym_unquoted_token2, + [155273] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - sym__space, - ACTIONS(7174), 1, + ACTIONS(4708), 1, anon_sym_DOT_DOT2, - STATE(4131), 1, + ACTIONS(7214), 1, + sym_filesize_unit, + ACTIONS(7216), 1, + sym_duration_unit, + ACTIONS(7218), 1, + aux_sym_unquoted_token2, + STATE(4113), 1, sym_comment, - ACTIONS(7176), 2, + ACTIONS(1721), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4710), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1788), 13, + ACTIONS(1709), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366270,24 +368404,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, - [163969] = 6, + [155313] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7178), 1, - anon_sym_DOT, - STATE(4374), 1, - sym_path, - STATE(4132), 2, + ACTIONS(7326), 1, + aux_sym__immediate_decimal_token2, + STATE(4114), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1033), 4, + ACTIONS(1785), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1031), 12, + ACTIONS(1783), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366300,16 +368430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [164003] = 5, - ACTIONS(249), 1, + aux_sym_unquoted_token2, + [155345] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2355), 1, - anon_sym_DASH, - ACTIONS(7181), 1, - anon_sym_LBRACK2, - STATE(4133), 1, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + ACTIONS(7328), 1, + anon_sym_DOT, + ACTIONS(7330), 1, + aux_sym__immediate_decimal_token2, + STATE(4115), 1, sym_comment, - ACTIONS(2359), 17, + ACTIONS(1757), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366322,21 +368455,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, - [164035] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [155379] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4134), 1, - sym_comment, - ACTIONS(1060), 3, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1886), 1, sym__space, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + ACTIONS(7332), 1, + anon_sym_DOT_DOT2, + STATE(4116), 1, + sym_comment, + ACTIONS(7334), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1058), 16, + ACTIONS(1878), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366350,20 +368489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [164065] = 4, + [155417] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4135), 1, + STATE(4117), 1, sym_comment, - ACTIONS(1717), 4, + ACTIONS(1892), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1715), 15, + ACTIONS(1890), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366379,20 +368515,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [164095] = 4, - ACTIONS(249), 1, + [155447] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4136), 1, + ACTIONS(7299), 1, + anon_sym_DOT, + STATE(4118), 1, sym_comment, - ACTIONS(1528), 6, - sym_identifier, - anon_sym_DASH, + STATE(4135), 1, + aux_sym_cell_path_repeat1, + STATE(4304), 1, + sym_path, + STATE(4510), 1, + sym_cell_path, + ACTIONS(1769), 2, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1530), 13, + ACTIONS(1771), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -366402,26 +368543,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, - [164125] = 8, + [155485] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - sym__space, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - ACTIONS(7183), 1, - anon_sym_DOT_DOT2, - STATE(4137), 1, + STATE(4119), 1, sym_comment, - ACTIONS(7185), 2, + ACTIONS(996), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1842), 13, + ACTIONS(994), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366435,17 +368568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164163] = 4, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [155515] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4138), 1, + STATE(4120), 1, sym_comment, - ACTIONS(1705), 4, + ACTIONS(1000), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1703), 15, + ACTIONS(998), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366459,18 +368594,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [164193] = 5, - ACTIONS(249), 1, + anon_sym_DOT, + [155545] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1715), 1, - aux_sym_unquoted_token2, - ACTIONS(7104), 1, - aux_sym__immediate_decimal_token2, - STATE(4139), 1, + STATE(4121), 1, sym_comment, - ACTIONS(1717), 17, + ACTIONS(1004), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1002), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366484,84 +368620,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, - [164225] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2591), 1, - anon_sym_COMMA, - ACTIONS(7189), 1, - anon_sym_EQ, - ACTIONS(7191), 1, - sym__newline, - ACTIONS(7193), 1, - anon_sym_COLON, - ACTIONS(7195), 1, - anon_sym_LPAREN, - ACTIONS(7197), 1, - anon_sym_DASH, - STATE(4140), 1, - sym_comment, - STATE(4346), 1, - sym_flag_capsule, - STATE(4347), 1, - aux_sym_parameter_repeat1, - STATE(5236), 1, - aux_sym_parameter_repeat2, - STATE(6229), 1, - aux_sym_shebang_repeat1, - STATE(5174), 2, - sym_param_type, - sym_param_value, - ACTIONS(7187), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [164275] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4141), 1, - sym_comment, - ACTIONS(1074), 2, + anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1076), 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, - [164305] = 6, - ACTIONS(249), 1, + [155575] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1715), 1, + ACTIONS(1739), 1, aux_sym_unquoted_token2, - ACTIONS(7199), 1, - anon_sym_DOT, - ACTIONS(7201), 1, + ACTIONS(7336), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7338), 1, aux_sym__immediate_decimal_token2, - STATE(4142), 1, + STATE(4122), 1, sym_comment, - ACTIONS(1717), 16, + ACTIONS(1741), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366574,21 +368647,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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - [164339] = 4, + [155609] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4143), 1, + STATE(4123), 1, sym_comment, - ACTIONS(1771), 4, + ACTIONS(992), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1769), 15, + ACTIONS(990), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366602,18 +368674,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [164369] = 5, - ACTIONS(249), 1, + anon_sym_DOT, + [155639] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1769), 1, - aux_sym_unquoted_token2, - ACTIONS(7203), 1, + ACTIONS(7340), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7342), 1, aux_sym__immediate_decimal_token2, - STATE(4144), 1, + STATE(4124), 1, sym_comment, - ACTIONS(1771), 17, + ACTIONS(1739), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 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, + [155673] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7344), 1, + anon_sym_QMARK2, + STATE(4125), 1, + sym_comment, + ACTIONS(980), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(978), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366627,21 +368730,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [164401] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [155705] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4145), 1, + STATE(4126), 1, sym_comment, - ACTIONS(1828), 4, + ACTIONS(1741), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1826), 15, + ACTIONS(1739), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366657,16 +368758,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [164431] = 4, - ACTIONS(249), 1, + [155735] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4146), 1, - sym_comment, - ACTIONS(1066), 2, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + ACTIONS(1874), 1, + sym__space, + ACTIONS(7346), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1068), 17, - ts_builtin_sym_end, + STATE(4127), 1, + sym_comment, + ACTIONS(7348), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366678,48 +368786,99 @@ static const uint16_t 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_RPAREN, + anon_sym_RBRACE, + [155773] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7350), 1, + anon_sym_DOT, + STATE(4304), 1, + sym_path, + ACTIONS(971), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + STATE(4128), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(973), 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, - [164461] = 4, - ACTIONS(249), 1, + [155806] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4147), 1, + ACTIONS(5683), 1, + anon_sym_DASH2, + STATE(4129), 1, sym_comment, - ACTIONS(1070), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 17, - ts_builtin_sym_end, + ACTIONS(5685), 17, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164491] = 5, - ACTIONS(249), 1, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155835] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1099), 1, - anon_sym_DOT_DOT2, - STATE(4148), 1, + ACTIONS(7324), 1, + aux_sym__immediate_decimal_token2, + STATE(4130), 1, sym_comment, - ACTIONS(1101), 2, + ACTIONS(1755), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 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(7205), 16, + [155866] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7353), 1, + anon_sym_DOT, + ACTIONS(7355), 1, + aux_sym__immediate_decimal_token2, + STATE(4131), 1, + sym_comment, + ACTIONS(1757), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1755), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366733,20 +368892,47 @@ 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] = 5, - ACTIONS(249), 1, + aux_sym_unquoted_token2, + [155899] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1099), 1, - anon_sym_DOT_DOT2, - STATE(4149), 1, + ACTIONS(7357), 1, + aux_sym__immediate_decimal_token2, + STATE(4132), 1, sym_comment, - ACTIONS(1101), 2, + ACTIONS(1783), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1785), 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(7205), 16, + [155930] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(4133), 1, + sym_comment, + ACTIONS(2206), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2210), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366760,17 +368946,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, - [164555] = 4, - ACTIONS(249), 1, + [155963] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4987), 1, - anon_sym_DASH, - STATE(4150), 1, + ACTIONS(4819), 1, + anon_sym_DOT_DOT2, + STATE(4134), 1, sym_comment, - ACTIONS(4985), 18, + ACTIONS(4821), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7316), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366783,23 +368969,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_and2, + anon_sym_xor2, + anon_sym_or2, + [155994] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7299), 1, + anon_sym_DOT, + STATE(4128), 1, + aux_sym_cell_path_repeat1, + STATE(4135), 1, + sym_comment, + STATE(4304), 1, + sym_path, + ACTIONS(967), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(969), 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, - anon_sym_LPAREN2, - [164585] = 5, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156029] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1099), 1, + ACTIONS(4819), 1, anon_sym_DOT_DOT2, - STATE(4151), 1, + STATE(4136), 1, sym_comment, - ACTIONS(1101), 2, + ACTIONS(4821), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7205), 16, + ACTIONS(7316), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366811,21 +369023,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [164617] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156060] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4152), 1, - sym_comment, - ACTIONS(1040), 3, + ACTIONS(1771), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1038), 16, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4137), 1, + sym_comment, + STATE(4234), 1, + sym_cell_path, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + ACTIONS(1769), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366839,17 +369055,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [164647] = 4, - ACTIONS(249), 1, + [156097] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4997), 1, - anon_sym_DASH, - STATE(4153), 1, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + ACTIONS(7330), 1, + aux_sym__immediate_decimal_token2, + STATE(4138), 1, sym_comment, - ACTIONS(4995), 18, + ACTIONS(1757), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366862,49 +369077,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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - [164677] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4154), 1, - sym_comment, - ACTIONS(1362), 9, - aux_sym_cmd_identifier_token39, - sym__newline, - 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(1364), 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, - [164707] = 5, - ACTIONS(249), 1, + [156128] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1099), 1, - anon_sym_DOT_DOT2, - STATE(4155), 1, + STATE(4139), 1, sym_comment, - ACTIONS(1101), 2, + ACTIONS(1008), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1092), 16, + ACTIONS(1006), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366918,27 +369104,26 @@ 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, - [164739] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [156157] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, + ACTIONS(1546), 1, aux_sym_unquoted_token2, - ACTIONS(7207), 1, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + ACTIONS(7361), 1, anon_sym_DOT_DOT2, - STATE(4156), 1, + STATE(4140), 1, sym_comment, - ACTIONS(1850), 2, + ACTIONS(1874), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7209), 2, + ACTIONS(7363), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1842), 11, + ACTIONS(1866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366950,22 +369135,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, - [164776] = 8, + [156194] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1899), 1, - sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4157), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(4141), 1, sym_comment, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - STATE(4853), 1, - sym_cell_path, - ACTIONS(1897), 13, + ACTIONS(2214), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2218), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366979,45 +369162,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164813] = 8, + [156227] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, - sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4158), 1, - sym_comment, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - STATE(4861), 1, - sym_cell_path, - ACTIONS(1909), 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, - [164850] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(1790), 1, + ACTIONS(2216), 1, anon_sym_LPAREN2, - STATE(4159), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(4142), 1, sym_comment, - ACTIONS(1796), 16, + ACTIONS(2222), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2224), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367031,22 +369189,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, - [164881] = 6, + [156260] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7213), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7215), 1, - aux_sym__immediate_decimal_token2, - STATE(4160), 1, - sym_comment, - ACTIONS(1705), 2, + ACTIONS(2100), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1703), 14, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4143), 1, + sym_comment, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4641), 1, + sym_cell_path, + ACTIONS(2098), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367060,23 +369218,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, - [164914] = 8, + [156297] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1931), 1, + ACTIONS(2104), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4161), 1, + STATE(4144), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4779), 1, + STATE(4646), 1, sym_cell_path, - ACTIONS(1929), 13, + ACTIONS(2102), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367090,70 +369247,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164951] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5594), 1, - anon_sym_DASH, - STATE(4162), 1, - sym_comment, - ACTIONS(5596), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [164980] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7217), 1, - anon_sym_DOT, - STATE(4418), 1, - sym_path, - ACTIONS(1031), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - STATE(4163), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1033), 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, - [165013] = 4, - ACTIONS(3), 1, + [156334] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4164), 1, + ACTIONS(1783), 1, + aux_sym_unquoted_token2, + ACTIONS(7365), 1, + aux_sym__immediate_decimal_token2, + STATE(4145), 1, sym_comment, - ACTIONS(1771), 5, + ACTIONS(1785), 16, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1769), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367165,51 +369269,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, - [165042] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4165), 1, - sym_comment, - ACTIONS(1078), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1080), 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, - [165071] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [156365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(7220), 1, - anon_sym_DOT_DOT2, - STATE(4166), 1, + STATE(4146), 1, sym_comment, - ACTIONS(1796), 2, - ts_builtin_sym_end, + ACTIONS(1012), 3, sym__space, - ACTIONS(7222), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1788), 11, + ACTIONS(1010), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367221,22 +369294,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, - [165108] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [156394] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2073), 1, - sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4167), 1, + STATE(4147), 1, sym_comment, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - STATE(4793), 1, - sym_cell_path, - ACTIONS(2071), 13, + ACTIONS(1016), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1014), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367250,45 +369321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165145] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5601), 1, - anon_sym_DASH, - STATE(4168), 1, - sym_comment, - ACTIONS(5603), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [165174] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [156423] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(4169), 1, + STATE(4148), 1, sym_comment, - ACTIONS(1090), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1092), 13, + ACTIONS(996), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(994), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367300,18 +369345,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, - [165207] = 5, - ACTIONS(249), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [156452] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4170), 1, + STATE(4149), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4808), 16, + ACTIONS(1000), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(998), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367323,22 +369370,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, - [165238] = 5, - ACTIONS(249), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [156481] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1715), 1, - aux_sym_unquoted_token2, - ACTIONS(7201), 1, - aux_sym__immediate_decimal_token2, - STATE(4171), 1, + STATE(4150), 1, sym_comment, - ACTIONS(1717), 16, + ACTIONS(1004), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1002), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367350,23 +369395,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, - anon_sym_LPAREN2, - [165269] = 5, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [156510] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7224), 1, - anon_sym_QMARK2, - STATE(4172), 1, + STATE(4151), 1, sym_comment, - ACTIONS(1044), 4, + ACTIONS(992), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1042), 13, + ACTIONS(990), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367378,24 +369420,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_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [165300] = 8, + [156539] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1995), 1, - sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4173), 1, + ACTIONS(7369), 1, + sym__space, + STATE(4152), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4840), 1, + STATE(4650), 1, sym_cell_path, - ACTIONS(1993), 13, + ACTIONS(7367), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367409,45 +369452,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165337] = 5, - ACTIONS(249), 1, + [156576] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7226), 1, - aux_sym__immediate_decimal_token2, - STATE(4174), 1, + ACTIONS(2108), 1, + sym__space, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4153), 1, sym_comment, - ACTIONS(1769), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1771), 13, - anon_sym_EQ, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4702), 1, + sym_cell_path, + ACTIONS(2106), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165368] = 5, + anon_sym_RBRACE, + [156613] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7228), 1, - anon_sym_QMARK2, - STATE(4175), 1, - sym_comment, - ACTIONS(1050), 4, - ts_builtin_sym_end, + ACTIONS(7359), 1, + anon_sym_DOT, + ACTIONS(7373), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1048), 13, + STATE(4154), 1, + sym_comment, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4709), 1, + sym_cell_path, + ACTIONS(7371), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367459,18 +369508,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_DOT_DOT2, - anon_sym_DOT, - [165399] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [156650] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4176), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + ACTIONS(7375), 1, + anon_sym_DOT_DOT2, + STATE(4155), 1, sym_comment, - ACTIONS(1076), 3, + ACTIONS(1886), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(7377), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1074), 15, + ACTIONS(1878), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367482,20 +369539,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, - anon_sym_DOT, - [165428] = 5, - ACTIONS(249), 1, + [156687] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(4177), 1, + STATE(4156), 1, sym_comment, - STATE(7791), 1, + STATE(7507), 1, sym__expr_parenthesized_immediate, - ACTIONS(4812), 16, + ACTIONS(7379), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367509,25 +369562,25 @@ 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, - [165459] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156718] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2015), 1, + ACTIONS(1737), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4178), 1, + STATE(4157), 1, sym_comment, - STATE(4334), 1, + STATE(4240), 1, + sym_cell_path, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4704), 1, - sym_cell_path, - ACTIONS(2013), 13, + ACTIONS(1735), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367541,22 +369594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165496] = 8, - ACTIONS(3), 1, + [156755] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2019), 1, - sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4179), 1, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + STATE(4158), 1, sym_comment, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - STATE(4735), 1, - sym_cell_path, - ACTIONS(2017), 13, + ACTIONS(1757), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367570,51 +369615,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165533] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [156784] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2023), 1, - sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4180), 1, + ACTIONS(5655), 1, + anon_sym_DASH2, + STATE(4159), 1, sym_comment, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - STATE(4799), 1, - sym_cell_path, - ACTIONS(2021), 13, + ACTIONS(5657), 17, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [165570] = 8, + [156813] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, - sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4181), 1, + ACTIONS(7381), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7383), 1, + aux_sym__immediate_decimal_token2, + STATE(4160), 1, sym_comment, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - STATE(4726), 1, - sym_cell_path, - ACTIONS(2043), 13, + ACTIONS(1741), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1739), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367628,14 +369670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165607] = 4, - ACTIONS(249), 1, + aux_sym_unquoted_token2, + [156846] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2569), 1, - anon_sym_DASH, - STATE(4182), 1, + ACTIONS(4819), 1, + anon_sym_DOT_DOT2, + STATE(4161), 1, sym_comment, - ACTIONS(2571), 17, + ACTIONS(4821), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7316), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367648,22 +369694,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, - [165636] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156877] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1769), 1, + ACTIONS(1739), 1, aux_sym_unquoted_token2, - ACTIONS(7230), 1, - aux_sym__immediate_decimal_token2, - STATE(4183), 1, + STATE(4162), 1, sym_comment, - ACTIONS(1771), 16, - ts_builtin_sym_end, + ACTIONS(1741), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367675,20 +369716,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, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - [165667] = 4, - ACTIONS(3), 1, + [156906] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4184), 1, + ACTIONS(1783), 1, + aux_sym_unquoted_token2, + STATE(4163), 1, sym_comment, - ACTIONS(1068), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1066), 15, + ACTIONS(1785), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367702,16 +369743,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [165696] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [156935] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5502), 1, - anon_sym_DASH, - STATE(4185), 1, + ACTIONS(5687), 1, + anon_sym_DASH2, + STATE(4164), 1, sym_comment, - ACTIONS(5504), 17, + ACTIONS(5689), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -367724,44 +369767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [165725] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4186), 1, - sym_comment, - ACTIONS(1072), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 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, - [165754] = 4, - ACTIONS(249), 1, + [156964] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5590), 1, - anon_sym_DASH, - STATE(4187), 1, + ACTIONS(5691), 1, + anon_sym_DASH2, + STATE(4165), 1, sym_comment, - ACTIONS(5592), 17, + ACTIONS(5693), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -367774,22 +369792,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [165783] = 4, + [156993] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4188), 1, + ACTIONS(2084), 1, + sym__space, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4166), 1, sym_comment, - ACTIONS(2289), 4, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - aux_sym_unquoted_token4, - ACTIONS(2291), 14, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4658), 1, + sym_cell_path, + ACTIONS(2082), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367803,23 +369826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LPAREN2, - [165812] = 8, - ACTIONS(3), 1, + [157030] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1999), 1, - sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4189), 1, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + STATE(4167), 1, sym_comment, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - STATE(4772), 1, - sym_cell_path, - ACTIONS(1997), 13, + ACTIONS(1892), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367833,22 +369847,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165849] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [157059] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2049), 1, - sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4190), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + STATE(4168), 1, sym_comment, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - STATE(4805), 1, - sym_cell_path, - ACTIONS(2047), 13, + ACTIONS(1874), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367862,22 +369874,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165886] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157090] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7211), 1, - anon_sym_DOT, - ACTIONS(7234), 1, + ACTIONS(2092), 1, sym__space, - STATE(4191), 1, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4169), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4806), 1, + STATE(4693), 1, sym_cell_path, - ACTIONS(7232), 13, + ACTIONS(2090), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367889,43 +369904,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, - [165923] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5570), 1, - anon_sym_DASH, - STATE(4192), 1, - sym_comment, - ACTIONS(5572), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_RPAREN, anon_sym_RBRACE, - [165952] = 5, - ACTIONS(249), 1, + [157127] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1844), 1, + ACTIONS(1880), 1, anon_sym_LPAREN2, - ACTIONS(1852), 1, + ACTIONS(1888), 1, aux_sym_unquoted_token2, - STATE(4193), 1, + STATE(4170), 1, sym_comment, - ACTIONS(2279), 16, + ACTIONS(2189), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367939,19 +369929,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, - [165983] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157158] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1844), 1, + ACTIONS(1880), 1, anon_sym_LPAREN2, - ACTIONS(1852), 1, + ACTIONS(1888), 1, aux_sym_unquoted_token2, - STATE(4194), 1, + STATE(4171), 1, sym_comment, - ACTIONS(1850), 16, + ACTIONS(1886), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367965,25 +369955,25 @@ 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, - [166014] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157189] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2053), 1, + ACTIONS(1927), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4195), 1, + STATE(4172), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4694), 1, + STATE(4736), 1, sym_cell_path, - ACTIONS(2051), 13, + ACTIONS(1925), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367997,15 +369987,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166051] = 4, - ACTIONS(249), 1, + [157226] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1090), 1, - anon_sym_DASH, - STATE(4196), 1, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + STATE(4173), 1, sym_comment, - ACTIONS(1092), 17, - ts_builtin_sym_end, + ACTIONS(2238), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368017,27 +370008,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, - [166080] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157257] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2057), 1, + ACTIONS(1935), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4197), 1, + STATE(4174), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4742), 1, + STATE(4766), 1, sym_cell_path, - ACTIONS(2055), 13, + ACTIONS(1933), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368051,47 +370042,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166117] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2454), 1, - anon_sym_DASH, - STATE(4198), 1, - sym_comment, - ACTIONS(2456), 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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [166146] = 8, + [157294] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2061), 1, + ACTIONS(1946), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4199), 1, + STATE(4175), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4746), 1, + STATE(4779), 1, sym_cell_path, - ACTIONS(2059), 13, + ACTIONS(1944), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368105,16 +370071,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166183] = 5, - ACTIONS(249), 1, + [157331] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(4200), 1, + ACTIONS(2258), 1, + aux_sym_unquoted_token2, + STATE(4176), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 16, + ACTIONS(2256), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368128,19 +370094,25 @@ 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, - [166214] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157362] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4201), 1, + ACTIONS(1950), 1, + sym__space, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4177), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4848), 16, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4611), 1, + sym_cell_path, + ACTIONS(1948), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368154,21 +370126,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, - [166245] = 4, + [157399] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4202), 1, - sym_comment, - ACTIONS(1828), 5, - ts_builtin_sym_end, + ACTIONS(1954), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1826), 13, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4178), 1, + sym_comment, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4612), 1, + sym_cell_path, + ACTIONS(1952), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368180,24 +370153,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, - [166274] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [157436] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1023), 1, + ACTIONS(1962), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4203), 1, + STATE(4179), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4343), 1, - sym_cell_path, - STATE(4689), 1, + STATE(4540), 1, sym_path, - ACTIONS(1021), 13, + STATE(4615), 1, + sym_cell_path, + ACTIONS(1960), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368211,22 +370184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166311] = 8, + [157473] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2077), 1, + ACTIONS(1970), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4204), 1, + STATE(4180), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4795), 1, + STATE(4617), 1, sym_cell_path, - ACTIONS(2075), 13, + ACTIONS(1968), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368240,22 +370213,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166348] = 8, + [157510] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2069), 1, + ACTIONS(1974), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4205), 1, + STATE(4181), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4864), 1, + STATE(4621), 1, sym_cell_path, - ACTIONS(2067), 13, + ACTIONS(1972), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368269,20 +370242,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166385] = 6, + [157547] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(4206), 1, + ACTIONS(1986), 1, + sym__space, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4182), 1, sym_comment, - ACTIONS(2281), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2285), 13, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4622), 1, + sym_cell_path, + ACTIONS(1984), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368296,22 +370271,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166418] = 8, + [157584] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2085), 1, + ACTIONS(1990), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4207), 1, + STATE(4183), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4829), 1, + STATE(4623), 1, sym_cell_path, - ACTIONS(2083), 13, + ACTIONS(1988), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368325,15 +370300,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166455] = 4, - ACTIONS(249), 1, + [157621] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH, - STATE(4208), 1, + ACTIONS(1994), 1, + sym__space, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4184), 1, sym_comment, - ACTIONS(1899), 17, - ts_builtin_sym_end, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4624), 1, + sym_cell_path, + ACTIONS(1992), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368345,23 +370327,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, - [166484] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [157658] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7236), 1, - anon_sym_DOT_DOT2, - STATE(4209), 1, + ACTIONS(1998), 1, + sym__space, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4185), 1, sym_comment, - ACTIONS(7238), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7205), 15, - ts_builtin_sym_end, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4625), 1, + sym_cell_path, + ACTIONS(1996), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368373,18 +370356,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, - [166515] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [157695] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, - anon_sym_DASH, - STATE(4210), 1, + ACTIONS(2002), 1, + sym__space, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4186), 1, sym_comment, - ACTIONS(2549), 17, - ts_builtin_sym_end, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4626), 1, + sym_cell_path, + ACTIONS(2000), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368396,25 +370385,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, - [166544] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [157732] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(4211), 1, + ACTIONS(2006), 1, + sym__space, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4187), 1, sym_comment, - ACTIONS(2293), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2297), 13, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4627), 1, + sym_cell_path, + ACTIONS(2004), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368428,20 +370416,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166577] = 6, + [157769] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(4212), 1, + ACTIONS(2070), 1, + sym__space, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4188), 1, sym_comment, - ACTIONS(2303), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2305), 13, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4628), 1, + sym_cell_path, + ACTIONS(2068), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368455,14 +370445,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166610] = 4, - ACTIONS(249), 1, + [157806] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1715), 1, - aux_sym_unquoted_token2, - STATE(4213), 1, + ACTIONS(2074), 1, + sym__space, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4189), 1, sym_comment, - ACTIONS(1717), 17, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4629), 1, + sym_cell_path, + ACTIONS(2072), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368476,26 +370474,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [166639] = 8, + [157843] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(1911), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4214), 1, + STATE(4190), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4709), 1, + STATE(4630), 1, sym_cell_path, - ACTIONS(2087), 13, + ACTIONS(1907), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368509,22 +370503,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166676] = 8, + [157880] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2003), 1, + ACTIONS(1915), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4215), 1, + STATE(4191), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4821), 1, + STATE(4631), 1, sym_cell_path, - ACTIONS(2001), 13, + ACTIONS(1913), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368538,15 +370532,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166713] = 4, - ACTIONS(249), 1, + [157917] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2494), 1, - anon_sym_DASH, - STATE(4216), 1, + ACTIONS(1978), 1, + sym__space, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(4192), 1, sym_comment, - ACTIONS(2496), 17, - ts_builtin_sym_end, + STATE(4287), 1, + aux_sym_cell_path_repeat1, + STATE(4540), 1, + sym_path, + STATE(4639), 1, + sym_cell_path, + ACTIONS(1976), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368558,20 +370559,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, - [166742] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [157954] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DASH, - STATE(4217), 1, + STATE(4193), 1, sym_comment, - ACTIONS(2541), 17, + ACTIONS(1757), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368583,20 +370584,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, - [166771] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [157983] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2494), 1, - anon_sym_DASH, - STATE(4218), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(4194), 1, sym_comment, - ACTIONS(2496), 17, - ts_builtin_sym_end, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7379), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368608,27 +370607,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158014] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5651), 1, + anon_sym_DASH2, + STATE(4195), 1, + sym_comment, + ACTIONS(5653), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [166800] = 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + [158043] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(2096), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4219), 1, + STATE(4196), 1, sym_comment, - STATE(4334), 1, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4815), 1, + STATE(4654), 1, sym_cell_path, - ACTIONS(2095), 13, + ACTIONS(2094), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368642,18 +370666,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166837] = 5, - ACTIONS(249), 1, + [158080] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7236), 1, - anon_sym_DOT_DOT2, - STATE(4220), 1, + STATE(4197), 1, sym_comment, - ACTIONS(7238), 2, + ACTIONS(1741), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7205), 15, - ts_builtin_sym_end, + ACTIONS(1739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368665,25 +370689,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, - [166868] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [158109] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2007), 1, + ACTIONS(963), 1, sym__space, - ACTIONS(7211), 1, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4221), 1, + STATE(4198), 1, sym_comment, - STATE(4334), 1, + STATE(4214), 1, + sym_cell_path, + STATE(4287), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4540), 1, sym_path, - STATE(4841), 1, - sym_cell_path, - ACTIONS(2005), 13, + ACTIONS(961), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368697,14 +370720,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166905] = 4, - ACTIONS(249), 1, + [158146] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1703), 1, - aux_sym_unquoted_token2, - STATE(4222), 1, + ACTIONS(7385), 1, + anon_sym_QMARK2, + STATE(4199), 1, sym_comment, - ACTIONS(1705), 17, + ACTIONS(980), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(978), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368716,21 +370744,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [166934] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [158177] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2398), 1, - anon_sym_DASH, - STATE(4223), 1, + ACTIONS(7387), 1, + anon_sym_QMARK2, + STATE(4200), 1, sym_comment, - ACTIONS(2400), 17, + ACTIONS(986), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(984), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368742,20 +370770,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, - [166963] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [158208] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2406), 1, - anon_sym_DASH, - STATE(4224), 1, + STATE(4201), 1, sym_comment, - ACTIONS(2408), 17, + ACTIONS(1785), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1783), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368767,20 +370795,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_DOT_DOT2, + aux_sym_unquoted_token2, + [158237] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5695), 1, + anon_sym_DASH2, + STATE(4202), 1, + sym_comment, + ACTIONS(5697), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [166992] = 4, - ACTIONS(249), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [158266] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2506), 1, - anon_sym_DASH, - STATE(4225), 1, + STATE(4203), 1, sym_comment, - ACTIONS(2508), 17, + ACTIONS(1892), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1890), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368792,27 +370845,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, + [158295] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5679), 1, + anon_sym_DASH2, + STATE(4204), 1, + sym_comment, + ACTIONS(5681), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167021] = 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + [158324] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1668), 1, - sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4226), 1, + STATE(4205), 1, sym_comment, - STATE(4310), 1, - sym_cell_path, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - ACTIONS(1664), 13, + ACTIONS(2248), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2250), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368826,15 +370896,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167058] = 4, - ACTIONS(249), 1, + anon_sym_LPAREN2, + [158353] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2531), 1, - anon_sym_DASH, - STATE(4227), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(4206), 1, sym_comment, - ACTIONS(2533), 17, - ts_builtin_sym_end, + STATE(7507), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7379), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368846,20 +370918,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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167087] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158384] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH, - STATE(4228), 1, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(4207), 1, sym_comment, - ACTIONS(1911), 17, - ts_builtin_sym_end, + ACTIONS(1030), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(1032), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368871,20 +370948,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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167116] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [158417] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2543), 1, - anon_sym_DASH, - STATE(4229), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4208), 1, sym_comment, - ACTIONS(2545), 17, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4843), 1, + sym_cell_path, + ACTIONS(1927), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1925), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368896,27 +370978,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, - [167145] = 8, + [158453] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2011), 1, + ACTIONS(2165), 1, sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4230), 1, + ACTIONS(7391), 1, + anon_sym_DOT_DOT2, + STATE(4209), 1, sym_comment, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - STATE(4856), 1, - sym_cell_path, - ACTIONS(2009), 13, + ACTIONS(7393), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2159), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368930,18 +371004,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167182] = 4, + [158485] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(4231), 1, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(4231), 1, + anon_sym_DOLLAR, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(7395), 1, + anon_sym_DQUOTE, + ACTIONS(7399), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7401), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7403), 1, + sym__unquoted_naive, + STATE(2131), 1, + sym__inter_single_quotes, + STATE(2132), 1, + sym__inter_double_quotes, + STATE(4210), 1, + sym_comment, + ACTIONS(7397), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4873), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [158533] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1783), 1, + aux_sym_unquoted_token2, + STATE(4211), 1, sym_comment, - ACTIONS(1705), 5, + ACTIONS(1785), 16, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1703), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368953,16 +371058,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [167211] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [158561] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2561), 1, - anon_sym_DASH, - STATE(4232), 1, + ACTIONS(2548), 1, + anon_sym_COMMA, + ACTIONS(7303), 1, + anon_sym_EQ, + ACTIONS(7305), 1, + sym__newline, + ACTIONS(7307), 1, + anon_sym_COLON, + ACTIONS(7407), 1, + anon_sym_DASH2, + STATE(4212), 1, + sym_comment, + STATE(4498), 1, + aux_sym_parameter_repeat1, + STATE(5228), 1, + aux_sym_parameter_repeat2, + STATE(6696), 1, + aux_sym_shebang_repeat1, + STATE(5154), 2, + sym_param_type, + sym_param_value, + ACTIONS(7405), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [158605] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + STATE(4213), 1, sym_comment, - ACTIONS(2563), 17, + ACTIONS(1874), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368975,19 +371116,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, - [167240] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158635] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1769), 1, - aux_sym_unquoted_token2, - STATE(4233), 1, + STATE(4214), 1, sym_comment, - ACTIONS(1771), 17, + ACTIONS(1020), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1018), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369001,19 +371142,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_DOT_DOT2, + [158663] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4249), 1, anon_sym_LPAREN2, - [167269] = 4, - ACTIONS(249), 1, + STATE(4215), 1, + sym_comment, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7379), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158693] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2510), 1, - anon_sym_DASH, - STATE(4234), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4216), 1, sym_comment, - ACTIONS(2512), 17, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4879), 1, + sym_cell_path, + ACTIONS(2096), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2094), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369025,20 +371196,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, - [167298] = 4, - ACTIONS(249), 1, + [158729] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2430), 1, - anon_sym_DASH, - STATE(4235), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4217), 1, sym_comment, - ACTIONS(2432), 17, + STATE(4391), 1, + sym_cell_path, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + ACTIONS(1737), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1735), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369050,19 +371224,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, - [167327] = 4, - ACTIONS(249), 1, + [158765] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2478), 1, - anon_sym_DASH, - STATE(4236), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + STATE(4218), 1, sym_comment, - ACTIONS(2480), 17, + ACTIONS(2189), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369075,27 +371246,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, - [167356] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158795] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1895), 1, - sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4237), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(4219), 1, sym_comment, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - STATE(4741), 1, - sym_cell_path, - ACTIONS(1893), 13, + ACTIONS(2214), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2218), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369107,16 +371275,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, - [167393] = 4, - ACTIONS(249), 1, + [158827] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1826), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, aux_sym_unquoted_token2, - STATE(4238), 1, + STATE(4220), 1, sym_comment, - ACTIONS(1828), 17, + ACTIONS(1886), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369128,20 +371297,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, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158857] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2048), 1, + anon_sym_DQUOTE, + ACTIONS(2052), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2054), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2062), 1, + sym_raw_string_begin, + ACTIONS(4305), 1, + anon_sym_DOLLAR, + ACTIONS(5094), 1, + anon_sym_LPAREN, + ACTIONS(7409), 1, + sym__unquoted_naive, + STATE(4221), 1, + sym_comment, + STATE(4807), 1, + sym__inter_single_quotes, + STATE(4808), 1, + sym__inter_double_quotes, + ACTIONS(2050), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4517), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4903), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [158905] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + STATE(4222), 1, + sym_comment, + ACTIONS(1892), 16, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - [167422] = 4, - ACTIONS(249), 1, + [158933] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH, - STATE(4239), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(4223), 1, sym_comment, - ACTIONS(2003), 17, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7379), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369154,25 +371380,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, - [167451] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158963] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7158), 1, - aux_sym__immediate_decimal_token2, - STATE(4240), 1, + STATE(4224), 1, sym_comment, - ACTIONS(1715), 4, - sym_identifier, - anon_sym_DASH, + ACTIONS(1783), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 13, + ACTIONS(1785), 14, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -369185,16 +371407,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [167482] = 5, - ACTIONS(249), 1, + [158991] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1558), 1, + ACTIONS(1579), 1, aux_sym_unquoted_token2, - ACTIONS(2337), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - STATE(4241), 1, + STATE(4225), 1, sym_comment, - ACTIONS(2339), 16, + ACTIONS(2238), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369206,19 +371429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167513] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159021] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2535), 1, - anon_sym_DASH, - STATE(4242), 1, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + STATE(4226), 1, sym_comment, - ACTIONS(2537), 17, + ACTIONS(1757), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369231,19 +371452,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, - [167542] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [159049] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2466), 1, - anon_sym_DASH, - STATE(4243), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(4227), 1, sym_comment, - ACTIONS(2468), 17, + STATE(7396), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7379), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369256,19 +371478,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, - [167571] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159079] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2017), 1, - anon_sym_DASH, - STATE(4244), 1, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + ACTIONS(2258), 1, + aux_sym_unquoted_token2, + STATE(4228), 1, sym_comment, - ACTIONS(2019), 17, + ACTIONS(2256), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369281,19 +371503,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, - [167600] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159109] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH, - STATE(4245), 1, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + STATE(4229), 1, sym_comment, - ACTIONS(2045), 17, + ACTIONS(1741), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369306,21 +371526,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [159137] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4230), 1, + sym_comment, + ACTIONS(1890), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 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_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167629] = 5, - ACTIONS(249), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [159165] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(2216), 1, anon_sym_LPAREN2, - STATE(4246), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(4231), 1, sym_comment, - STATE(7587), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7240), 16, + ACTIONS(2222), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2224), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369332,23 +371580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167660] = 5, - ACTIONS(249), 1, + [159197] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7236), 1, - anon_sym_DOT_DOT2, - STATE(4247), 1, + ACTIONS(7411), 1, + aux_sym__immediate_decimal_token2, + STATE(4232), 1, sym_comment, - ACTIONS(7238), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7205), 15, - ts_builtin_sym_end, + ACTIONS(1785), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1783), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369360,18 +371602,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, - [167691] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [159227] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_DASH, - STATE(4248), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4233), 1, sym_comment, - ACTIONS(2049), 17, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4892), 1, + sym_cell_path, + ACTIONS(2108), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2106), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369383,27 +371633,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, - [167720] = 8, + [159263] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, - sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4249), 1, + STATE(4234), 1, sym_comment, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - STATE(4738), 1, - sym_cell_path, - ACTIONS(2079), 13, + ACTIONS(1737), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1735), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369417,14 +371656,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167757] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + [159291] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2434), 1, - anon_sym_DASH, - STATE(4250), 1, + ACTIONS(2548), 1, + anon_sym_COMMA, + ACTIONS(7303), 1, + anon_sym_EQ, + ACTIONS(7305), 1, + sym__newline, + ACTIONS(7307), 1, + anon_sym_COLON, + ACTIONS(7415), 1, + anon_sym_DASH2, + STATE(4235), 1, + sym_comment, + STATE(4295), 1, + aux_sym_parameter_repeat1, + STATE(5167), 1, + aux_sym_parameter_repeat2, + STATE(6696), 1, + aux_sym_shebang_repeat1, + STATE(5154), 2, + sym_param_type, + sym_param_value, + ACTIONS(7413), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [159335] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4236), 1, sym_comment, - ACTIONS(2436), 17, + ACTIONS(2248), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2250), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369437,20 +371712,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, - [167786] = 4, - ACTIONS(249), 1, + anon_sym_LPAREN2, + [159363] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_DASH, - STATE(4251), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4237), 1, sym_comment, - ACTIONS(2061), 17, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4905), 1, + sym_cell_path, + ACTIONS(2104), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2102), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369462,23 +371741,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, + [159399] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4238), 1, + sym_comment, + ACTIONS(994), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(996), 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, + [159427] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4239), 1, + sym_comment, + ACTIONS(998), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1000), 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_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167815] = 4, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [159455] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4252), 1, + STATE(4240), 1, sym_comment, - ACTIONS(1717), 5, - ts_builtin_sym_end, + ACTIONS(2127), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1715), 13, + ACTIONS(2125), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369490,42 +371810,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [167844] = 4, - ACTIONS(249), 1, + [159483] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2442), 1, - anon_sym_DASH, - STATE(4253), 1, + STATE(4241), 1, sym_comment, - ACTIONS(2444), 17, - ts_builtin_sym_end, + ACTIONS(1002), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1004), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_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, - [167873] = 4, - ACTIONS(249), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [159511] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2450), 1, - anon_sym_DASH, - STATE(4254), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4242), 1, sym_comment, - ACTIONS(2452), 17, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4893), 1, + sym_cell_path, + ACTIONS(7373), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7371), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369537,27 +371865,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, + [159547] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4243), 1, + sym_comment, + ACTIONS(990), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(992), 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_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167902] = 8, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [159575] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7211), 1, + ACTIONS(7389), 1, anon_sym_DOT, - ACTIONS(7244), 1, - sym__space, - STATE(4255), 1, + STATE(4244), 1, sym_comment, - STATE(4334), 1, + STATE(4478), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - STATE(4778), 1, + STATE(4493), 1, sym_cell_path, - ACTIONS(7242), 13, + STATE(4708), 1, + sym_path, + ACTIONS(963), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(961), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369569,17 +371917,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, - [167939] = 4, - ACTIONS(249), 1, + [159611] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2067), 1, - anon_sym_DASH, - STATE(4256), 1, + ACTIONS(1032), 1, + sym__space, + ACTIONS(7417), 1, + anon_sym_DOT_DOT2, + STATE(4245), 1, sym_comment, - ACTIONS(2069), 17, - ts_builtin_sym_end, + ACTIONS(7419), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1030), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369591,22 +371941,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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167968] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159643] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4257), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4246), 1, sym_comment, - ACTIONS(1060), 4, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4825), 1, + sym_cell_path, + ACTIONS(2084), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1058), 14, + ACTIONS(2082), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369618,19 +371971,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, + [159679] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4247), 1, + sym_comment, + ACTIONS(1739), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 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, + [159707] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7421), 1, anon_sym_QMARK2, + STATE(4248), 1, + sym_comment, + ACTIONS(978), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT, - [167997] = 5, - ACTIONS(249), 1, + ACTIONS(980), 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, + [159737] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4258), 1, + ACTIONS(7423), 1, + anon_sym_QMARK2, + STATE(4249), 1, sym_comment, - STATE(7587), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7240), 16, + ACTIONS(984), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(986), 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, + [159767] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7355), 1, + aux_sym__immediate_decimal_token2, + STATE(4250), 1, + sym_comment, + ACTIONS(1757), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1755), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369644,25 +372069,24 @@ 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, - [168028] = 8, + aux_sym_unquoted_token2, + [159797] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1903), 1, - sym__space, - ACTIONS(7211), 1, + ACTIONS(7389), 1, anon_sym_DOT, - STATE(4259), 1, + STATE(4251), 1, sym_comment, - STATE(4334), 1, + STATE(4478), 1, aux_sym_cell_path_repeat1, - STATE(4689), 1, + STATE(4708), 1, sym_path, - STATE(4724), 1, + STATE(4836), 1, sym_cell_path, - ACTIONS(1901), 13, + ACTIONS(2092), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2090), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369674,17 +372098,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, - [168065] = 4, - ACTIONS(249), 1, + [159833] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - STATE(4260), 1, + ACTIONS(2173), 1, + sym__space, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, + STATE(4252), 1, sym_comment, - ACTIONS(1640), 17, - ts_builtin_sym_end, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2167), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369696,23 +372122,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, - [168094] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159865] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7236), 1, + ACTIONS(2181), 1, + sym__space, + ACTIONS(7429), 1, anon_sym_DOT_DOT2, - STATE(4261), 1, + STATE(4253), 1, sym_comment, - ACTIONS(7238), 2, + ACTIONS(7431), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1092), 15, - ts_builtin_sym_end, + ACTIONS(2175), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369724,25 +372148,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, - [168125] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159897] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1672), 1, + ACTIONS(2139), 1, sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4262), 1, + ACTIONS(7433), 1, + anon_sym_DOT_DOT2, + STATE(4254), 1, sym_comment, - STATE(4320), 1, - sym_cell_path, - STATE(4334), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - ACTIONS(1670), 13, + ACTIONS(7435), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2133), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369756,15 +372176,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168162] = 4, - ACTIONS(249), 1, + [159929] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2087), 1, - anon_sym_DASH, - STATE(4263), 1, + STATE(4255), 1, + sym_comment, + ACTIONS(1755), 3, + anon_sym_DASH2, + 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, + [159957] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4256), 1, sym_comment, - ACTIONS(2089), 17, + STATE(4385), 1, + sym_cell_path, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + ACTIONS(1771), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1769), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369776,22 +372228,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, - [168191] = 4, + [159993] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4264), 1, - sym_comment, - ACTIONS(1064), 4, - ts_builtin_sym_end, + ACTIONS(7417), 1, + anon_sym_DOT_DOT2, + ACTIONS(7439), 1, sym__space, + STATE(4257), 1, + sym_comment, + ACTIONS(7419), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1062), 14, + ACTIONS(7437), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369803,22 +372252,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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [168220] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [160025] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7246), 1, - anon_sym_DOT, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token2, - STATE(4265), 1, - sym_comment, - ACTIONS(1717), 2, - sym__space, + ACTIONS(2202), 1, anon_sym_LPAREN2, - ACTIONS(1715), 14, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(4258), 1, + sym_comment, + ACTIONS(1030), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(1032), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369830,20 +372280,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, - [168253] = 4, + [160057] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4266), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4259), 1, sym_comment, - ACTIONS(1040), 4, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4851), 1, + sym_cell_path, + ACTIONS(1935), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1038), 14, + ACTIONS(1933), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369855,19 +372308,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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [168282] = 5, - ACTIONS(249), 1, + [160093] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4267), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4260), 1, sym_comment, - STATE(7587), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7240), 16, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4852), 1, + sym_cell_path, + ACTIONS(1946), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1944), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369879,20 +372336,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168313] = 4, - ACTIONS(249), 1, + [160129] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2470), 1, - anon_sym_DASH, - STATE(4268), 1, + ACTIONS(1846), 1, + anon_sym_DQUOTE, + ACTIONS(1850), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1852), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1860), 1, + sym_raw_string_begin, + ACTIONS(4341), 1, + anon_sym_DOLLAR, + ACTIONS(5118), 1, + anon_sym_LPAREN, + ACTIONS(7441), 1, + sym__unquoted_naive, + STATE(4261), 1, + sym_comment, + STATE(4689), 1, + sym__inter_single_quotes, + STATE(4701), 1, + sym__inter_double_quotes, + ACTIONS(1848), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4465), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4715), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [160177] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4262), 1, sym_comment, - ACTIONS(2472), 17, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4853), 1, + sym_cell_path, + ACTIONS(1950), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1948), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369904,20 +372398,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, - [168342] = 4, - ACTIONS(249), 1, + [160213] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2410), 1, - anon_sym_DASH, - STATE(4269), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4263), 1, sym_comment, - ACTIONS(2412), 17, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4902), 1, + sym_cell_path, + ACTIONS(2100), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2098), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369929,23 +372426,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, - [168371] = 5, - ACTIONS(249), 1, + [160249] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7250), 1, - anon_sym_DOT_DOT2, - STATE(4270), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4264), 1, sym_comment, - ACTIONS(7252), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2228), 15, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4854), 1, + sym_cell_path, + ACTIONS(1954), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1952), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369957,18 +372454,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, - [168402] = 4, - ACTIONS(249), 1, + [160285] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2438), 1, - anon_sym_DASH, - STATE(4271), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + STATE(4265), 1, sym_comment, - ACTIONS(2440), 17, - ts_builtin_sym_end, + ACTIONS(1721), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369980,23 +372473,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_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168431] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160313] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7254), 1, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1866), 1, + anon_sym_DASH2, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + ACTIONS(7443), 1, anon_sym_DOT_DOT2, - STATE(4272), 1, + STATE(4266), 1, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7445), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2240), 15, + ACTIONS(1874), 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, + [160349] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4267), 1, + sym_comment, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4855), 1, + sym_cell_path, + ACTIONS(1962), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1960), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370008,21 +372534,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, - [168462] = 5, - ACTIONS(249), 1, + [160385] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_DOT_DOT2, - STATE(4273), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4268), 1, sym_comment, - ACTIONS(7260), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2119), 15, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4856), 1, + sym_cell_path, + ACTIONS(1970), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1968), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370034,21 +372562,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, - [168493] = 5, - ACTIONS(249), 1, + [160421] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7262), 1, - anon_sym_DOT_DOT2, - STATE(4274), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4269), 1, sym_comment, - ACTIONS(7264), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2212), 15, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4857), 1, + sym_cell_path, + ACTIONS(1974), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1972), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370060,20 +372590,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, - [168524] = 4, + [160457] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4275), 1, + STATE(4270), 1, sym_comment, - ACTIONS(1056), 4, - ts_builtin_sym_end, + ACTIONS(2131), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1054), 14, + ACTIONS(2129), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370085,18 +372611,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_QMARK2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - [168553] = 4, - ACTIONS(249), 1, + [160485] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2474), 1, - anon_sym_DASH, - STATE(4276), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4271), 1, sym_comment, - ACTIONS(2476), 17, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4906), 1, + sym_cell_path, + ACTIONS(7369), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7367), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370108,20 +372642,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, - [168582] = 4, - ACTIONS(249), 1, + [160521] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2095), 1, - anon_sym_DASH, - STATE(4277), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4272), 1, sym_comment, - ACTIONS(2097), 17, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4858), 1, + sym_cell_path, + ACTIONS(1986), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1984), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370133,21 +372670,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, - [168611] = 5, - ACTIONS(249), 1, + [160557] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token2, - STATE(4278), 1, + STATE(4273), 1, sym_comment, - ACTIONS(2250), 16, + ACTIONS(1008), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370159,20 +372692,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168642] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [160585] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2418), 1, - anon_sym_DASH, - STATE(4279), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4274), 1, sym_comment, - ACTIONS(2420), 17, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4859), 1, + sym_cell_path, + ACTIONS(1990), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1988), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370184,20 +372722,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, - [168671] = 4, - ACTIONS(249), 1, + [160621] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2502), 1, - anon_sym_DASH, - STATE(4280), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4275), 1, sym_comment, - ACTIONS(2504), 17, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4860), 1, + sym_cell_path, + ACTIONS(1994), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1992), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370209,26 +372750,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, - [168700] = 7, - ACTIONS(249), 1, + [160657] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7154), 1, - anon_sym_DOT, - STATE(4163), 1, - aux_sym_cell_path_repeat1, - STATE(4281), 1, - sym_comment, - STATE(4418), 1, - sym_path, - ACTIONS(1027), 2, - anon_sym_DASH, + ACTIONS(1878), 1, + anon_sym_DASH2, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7447), 1, anon_sym_DOT_DOT2, - ACTIONS(1029), 13, + STATE(4276), 1, + sym_comment, + ACTIONS(7449), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1886), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -370240,42 +372778,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, - [168735] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1826), 1, - aux_sym_unquoted_token2, - STATE(4282), 1, - sym_comment, - ACTIONS(1828), 16, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [168763] = 4, + [160693] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4283), 1, + STATE(4277), 1, sym_comment, - ACTIONS(2232), 3, + ACTIONS(2185), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2230), 14, + ACTIONS(2183), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370290,72 +372802,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [168791] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4284), 1, - sym_comment, - STATE(7479), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7240), 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, - [168821] = 8, + [160721] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7389), 1, anon_sym_DOT, - STATE(4285), 1, + STATE(4278), 1, sym_comment, - STATE(4513), 1, - sym_cell_path, - STATE(4534), 1, + STATE(4478), 1, aux_sym_cell_path_repeat1, - STATE(4727), 1, + STATE(4708), 1, sym_path, - ACTIONS(1668), 2, + STATE(4861), 1, + sym_cell_path, + ACTIONS(1998), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1664), 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, - [168857] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - sym__space, - ACTIONS(7268), 1, - anon_sym_DOT_DOT2, - STATE(4286), 1, - sym_comment, - ACTIONS(7270), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2222), 13, + ACTIONS(1996), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370367,25 +372830,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, - [168889] = 8, + [160757] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7389), 1, anon_sym_DOT, - STATE(4287), 1, + STATE(4279), 1, sym_comment, - STATE(4534), 1, + STATE(4478), 1, aux_sym_cell_path_repeat1, - STATE(4727), 1, + STATE(4708), 1, sym_path, - STATE(5047), 1, + STATE(4862), 1, sym_cell_path, - ACTIONS(2061), 2, + ACTIONS(2002), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2059), 11, + ACTIONS(2000), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370397,23 +372858,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, - [168925] = 8, + [160793] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7389), 1, anon_sym_DOT, - STATE(4288), 1, + STATE(4280), 1, sym_comment, - STATE(4534), 1, + STATE(4478), 1, aux_sym_cell_path_repeat1, - STATE(4727), 1, + STATE(4708), 1, sym_path, - STATE(5017), 1, + STATE(4863), 1, sym_cell_path, - ACTIONS(1895), 2, + ACTIONS(2006), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1893), 11, + ACTIONS(2004), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370425,23 +372886,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, - [168961] = 8, + [160829] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7389), 1, anon_sym_DOT, - STATE(4289), 1, + STATE(4281), 1, sym_comment, - STATE(4534), 1, + STATE(4478), 1, aux_sym_cell_path_repeat1, - STATE(4727), 1, + STATE(4708), 1, sym_path, - STATE(5023), 1, + STATE(4864), 1, sym_cell_path, - ACTIONS(1899), 2, + ACTIONS(2070), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1897), 11, + ACTIONS(2068), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370453,57 +372914,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, - [168997] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2161), 1, - anon_sym_DQUOTE, - ACTIONS(2165), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2175), 1, - sym_raw_string_begin, - ACTIONS(4237), 1, - anon_sym_DOLLAR, - ACTIONS(4919), 1, - anon_sym_LPAREN, - ACTIONS(7272), 1, - sym__unquoted_naive, - STATE(4290), 1, - sym_comment, - STATE(5011), 1, - sym__inter_single_quotes, - STATE(5012), 1, - sym__inter_double_quotes, - ACTIONS(2163), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4660), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4950), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [169045] = 8, + [160865] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7389), 1, anon_sym_DOT, - STATE(4291), 1, + STATE(4282), 1, sym_comment, - STATE(4534), 1, + STATE(4478), 1, aux_sym_cell_path_repeat1, - STATE(4727), 1, + STATE(4708), 1, sym_path, - STATE(5040), 1, + STATE(4866), 1, sym_cell_path, - ACTIONS(2023), 2, + ACTIONS(2074), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2021), 11, + ACTIONS(2072), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370515,17 +372942,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, - [169081] = 5, - ACTIONS(249), 1, + [160901] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4292), 1, + STATE(4283), 1, sym_comment, - STATE(7479), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7240), 15, + ACTIONS(1012), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1010), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370537,26 +372964,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, - [169111] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [160929] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4293), 1, + STATE(4284), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(4870), 1, - sym_cell_path, - ACTIONS(2073), 2, + ACTIONS(1016), 4, ts_builtin_sym_end, sym__space, - ACTIONS(2071), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1014), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370568,47 +372988,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, - [169147] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4294), 1, - sym_comment, - ACTIONS(1058), 3, - anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1060), 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, - [169175] = 8, - ACTIONS(3), 1, + [160957] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(4902), 1, anon_sym_DOT, - STATE(4295), 1, + ACTIONS(7455), 1, + anon_sym_QMARK2, + STATE(1702), 1, + aux_sym_cell_path_repeat1, + STATE(1894), 1, + sym_path, + STATE(4285), 1, sym_comment, - STATE(4534), 1, + STATE(5017), 1, + sym_cell_path, + ACTIONS(7451), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7453), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [160995] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4286), 1, + sym_comment, + STATE(4478), 1, aux_sym_cell_path_repeat1, - STATE(4727), 1, + STATE(4708), 1, sym_path, - STATE(4871), 1, + STATE(4867), 1, sym_cell_path, - ACTIONS(2077), 2, + ACTIONS(1911), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2075), 11, + ACTIONS(1907), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370620,48 +373047,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, - [169211] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7274), 1, - anon_sym_QMARK2, - STATE(4296), 1, - sym_comment, - ACTIONS(1042), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1044), 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, - [169241] = 8, + [161031] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(969), 1, + sym__space, + ACTIONS(7359), 1, anon_sym_DOT, - STATE(4297), 1, + STATE(4287), 1, sym_comment, - STATE(4534), 1, + STATE(4292), 1, aux_sym_cell_path_repeat1, - STATE(4727), 1, + STATE(4540), 1, sym_path, - STATE(4872), 1, - sym_cell_path, - ACTIONS(7234), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7232), 11, + ACTIONS(967), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370673,48 +373072,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, - [169277] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7276), 1, - anon_sym_QMARK2, - STATE(4298), 1, - sym_comment, - ACTIONS(1048), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1050), 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, - [169307] = 8, + anon_sym_RBRACE, + [161065] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4299), 1, + ACTIONS(7457), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7459), 1, + aux_sym__immediate_decimal_token2, + STATE(4288), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5048), 1, - sym_cell_path, - ACTIONS(2069), 2, + ACTIONS(1741), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2067), 11, + anon_sym_LPAREN2, + ACTIONS(1739), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370726,23 +373099,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, - [169343] = 8, + aux_sym_unquoted_token2, + [161097] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7389), 1, anon_sym_DOT, - STATE(4300), 1, + STATE(4289), 1, sym_comment, - STATE(4534), 1, + STATE(4478), 1, aux_sym_cell_path_repeat1, - STATE(4727), 1, + STATE(4708), 1, sym_path, - STATE(5041), 1, + STATE(4868), 1, sym_cell_path, - ACTIONS(2045), 2, + ACTIONS(1915), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2043), 11, + ACTIONS(1913), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370754,51 +373128,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169379] = 14, + [161133] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3504), 1, + ACTIONS(121), 1, sym_raw_string_begin, - ACTIONS(4153), 1, - anon_sym_DOLLAR, - ACTIONS(6633), 1, + ACTIONS(5856), 1, anon_sym_LPAREN, - ACTIONS(7278), 1, + ACTIONS(5858), 1, + anon_sym_DOLLAR, + ACTIONS(7461), 1, anon_sym_DQUOTE, - ACTIONS(7282), 1, + ACTIONS(7465), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(7284), 1, + ACTIONS(7467), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(7286), 1, + ACTIONS(7469), 1, sym__unquoted_naive, - STATE(1827), 1, + STATE(2457), 1, sym__inter_single_quotes, - STATE(1841), 1, + STATE(2488), 1, sym__inter_double_quotes, - STATE(4301), 1, + STATE(4290), 1, sym_comment, - ACTIONS(7280), 2, + ACTIONS(7463), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2932), 2, + STATE(2091), 2, sym__raw_str, sym__str_double_quotes, - STATE(4879), 4, + STATE(5097), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [169427] = 4, + [161181] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4302), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(4291), 1, sym_comment, - ACTIONS(1068), 4, + ACTIONS(2206), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2210), 12, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1066), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370810,43 +373188,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [169455] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4303), 1, - sym_comment, - ACTIONS(1715), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 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, - [169483] = 5, - ACTIONS(249), 1, + [161213] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4304), 1, + ACTIONS(973), 1, + sym__space, + ACTIONS(7471), 1, + anon_sym_DOT, + STATE(4540), 1, + sym_path, + STATE(4292), 2, sym_comment, - STATE(7479), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7240), 15, - ts_builtin_sym_end, + aux_sym_cell_path_repeat1, + ACTIONS(971), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370858,20 +373212,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169513] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161245] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4305), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4293), 1, sym_comment, - ACTIONS(1072), 4, + STATE(4478), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + STATE(4875), 1, + sym_cell_path, + ACTIONS(1978), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 13, + ACTIONS(1976), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370883,57 +373242,92 @@ static const uint16_t 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, - [169541] = 4, - ACTIONS(3), 1, + [161281] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4306), 1, + ACTIONS(4902), 1, + anon_sym_DOT, + ACTIONS(7478), 1, + anon_sym_QMARK2, + STATE(1702), 1, + aux_sym_cell_path_repeat1, + STATE(1894), 1, + sym_path, + STATE(4294), 1, sym_comment, - ACTIONS(2289), 4, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - aux_sym_unquoted_token4, - ACTIONS(2291), 13, - ts_builtin_sym_end, + STATE(5029), 1, + sym_cell_path, + ACTIONS(7474), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7476), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [161319] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2548), 1, + anon_sym_COMMA, + ACTIONS(7303), 1, + anon_sym_EQ, + ACTIONS(7305), 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_LPAREN2, - [169569] = 12, - ACTIONS(249), 1, + ACTIONS(7307), 1, + anon_sym_COLON, + ACTIONS(7482), 1, + anon_sym_DASH2, + STATE(4295), 1, + sym_comment, + STATE(4498), 1, + aux_sym_parameter_repeat1, + STATE(5188), 1, + aux_sym_parameter_repeat2, + STATE(6696), 1, + aux_sym_shebang_repeat1, + STATE(5154), 2, + sym_param_type, + sym_param_value, + ACTIONS(7480), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [161363] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(2548), 1, anon_sym_COMMA, - ACTIONS(7189), 1, + ACTIONS(7303), 1, anon_sym_EQ, - ACTIONS(7191), 1, + ACTIONS(7305), 1, sym__newline, - ACTIONS(7193), 1, + ACTIONS(7307), 1, anon_sym_COLON, - ACTIONS(7290), 1, - anon_sym_DASH, - STATE(4307), 1, - sym_comment, - STATE(4345), 1, + ACTIONS(7486), 1, + anon_sym_DASH2, + STATE(4212), 1, aux_sym_parameter_repeat1, - STATE(5232), 1, + STATE(4296), 1, + sym_comment, + STATE(5194), 1, aux_sym_parameter_repeat2, - STATE(6229), 1, + STATE(6696), 1, aux_sym_shebang_repeat1, - STATE(5174), 2, + STATE(5154), 2, sym_param_type, sym_param_value, - ACTIONS(7288), 7, + ACTIONS(7484), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -370941,59 +373335,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169613] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4308), 1, - sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4550), 1, - sym_cell_path, - STATE(4727), 1, - sym_path, - ACTIONS(1023), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1021), 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, - [169649] = 12, - ACTIONS(249), 1, + [161407] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(2548), 1, anon_sym_COMMA, - ACTIONS(7189), 1, + ACTIONS(7303), 1, anon_sym_EQ, - ACTIONS(7191), 1, + ACTIONS(7305), 1, sym__newline, - ACTIONS(7193), 1, + ACTIONS(7307), 1, anon_sym_COLON, - ACTIONS(7294), 1, - anon_sym_DASH, - STATE(4309), 1, + ACTIONS(7490), 1, + anon_sym_DASH2, + STATE(4297), 1, sym_comment, - STATE(4397), 1, + STATE(4498), 1, aux_sym_parameter_repeat1, - STATE(5233), 1, + STATE(5195), 1, aux_sym_parameter_repeat2, - STATE(6229), 1, + STATE(6696), 1, aux_sym_shebang_repeat1, - STATE(5174), 2, + STATE(5154), 2, sym_param_type, sym_param_value, - ACTIONS(7292), 7, + ACTIONS(7488), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -371001,44 +373367,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169693] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4310), 1, - sym_comment, - ACTIONS(1672), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1670), 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, - [169721] = 6, + [161451] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7296), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7298), 1, + ACTIONS(7492), 1, + anon_sym_DOT, + ACTIONS(7494), 1, aux_sym__immediate_decimal_token2, - STATE(4311), 1, + STATE(4298), 1, sym_comment, - ACTIONS(1705), 3, + ACTIONS(1757), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1703), 12, + ACTIONS(1755), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371051,16 +373393,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, aux_sym_unquoted_token2, - [169753] = 4, - ACTIONS(249), 1, + [161483] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4312), 1, + ACTIONS(1933), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4299), 1, sym_comment, - ACTIONS(1703), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1705), 14, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4921), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(1935), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -371072,45 +373420,47 @@ 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, - [169781] = 5, - ACTIONS(249), 1, + [161518] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - STATE(4313), 1, + ACTIONS(961), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4300), 1, sym_comment, - ACTIONS(2279), 15, - ts_builtin_sym_end, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4572), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(963), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169811] = 5, - ACTIONS(249), 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, + [161553] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - STATE(4314), 1, + ACTIONS(7500), 1, + anon_sym_and2, + ACTIONS(7502), 1, + anon_sym_xor2, + ACTIONS(7504), 1, + anon_sym_or2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4301), 1, sym_comment, - ACTIONS(1850), 15, - ts_builtin_sym_end, + ACTIONS(7498), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371122,26 +373472,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, - [169841] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + [161586] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4315), 1, + ACTIONS(7506), 1, + anon_sym_and2, + ACTIONS(7508), 1, + anon_sym_xor2, + ACTIONS(7510), 1, + anon_sym_or2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4302), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5026), 1, - sym_cell_path, - ACTIONS(1931), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1929), 11, + ACTIONS(7498), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371153,23 +373498,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, - [169877] = 8, + anon_sym_RPAREN, + [161619] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(1757), 1, + sym__space, + ACTIONS(7206), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7512), 1, anon_sym_DOT, - STATE(4316), 1, + STATE(4303), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(4973), 1, - sym_cell_path, - ACTIONS(1911), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1909), 11, + ACTIONS(1755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371181,23 +373522,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, - [169913] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161650] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, + STATE(4304), 1, + sym_comment, + ACTIONS(1006), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4317), 1, + ACTIONS(1008), 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, + [161677] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4305), 1, sym_comment, - STATE(4417), 1, - sym_cell_path, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - ACTIONS(1672), 2, - ts_builtin_sym_end, + ACTIONS(1757), 2, sym__space, - ACTIONS(1670), 11, + anon_sym_LPAREN2, + ACTIONS(1755), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371209,16 +373567,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, - [169949] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [161704] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4318), 1, + STATE(4306), 1, sym_comment, - ACTIONS(1769), 3, - anon_sym_DASH, + ACTIONS(1010), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1771), 14, + anon_sym_DOT, + ACTIONS(1012), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -371230,19 +373591,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, - [169977] = 4, - ACTIONS(249), 1, + [161731] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4319), 1, + STATE(4307), 1, sym_comment, - ACTIONS(1826), 3, - anon_sym_DASH, + ACTIONS(1014), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1828), 14, + anon_sym_DOT, + ACTIONS(1016), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -371254,19 +373614,44 @@ 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, - [170005] = 4, + [161758] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2094), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4308), 1, + sym_comment, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4942), 1, + sym_path, + STATE(5129), 1, + sym_cell_path, + ACTIONS(2096), 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, + [161793] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4320), 1, + STATE(4309), 1, sym_comment, - ACTIONS(2107), 3, + ACTIONS(1741), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2105), 14, + anon_sym_LPAREN2, + ACTIONS(1739), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371280,16 +373665,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [170033] = 4, - ACTIONS(249), 1, + aux_sym_unquoted_token2, + [161820] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1925), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4310), 1, + sym_comment, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4919), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(1927), 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, + [161855] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1715), 1, + ACTIONS(1546), 1, aux_sym_unquoted_token2, - STATE(4321), 1, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + ACTIONS(1874), 1, + sym__space, + STATE(4311), 1, sym_comment, - ACTIONS(1717), 16, - ts_builtin_sym_end, + ACTIONS(1866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371301,27 +373716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [170061] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161886] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4322), 1, + STATE(4312), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5049), 1, - sym_cell_path, - ACTIONS(2085), 2, - ts_builtin_sym_end, + ACTIONS(1785), 2, sym__space, - ACTIONS(2083), 11, + anon_sym_LPAREN2, + ACTIONS(1783), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371333,15 +373738,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, - [170097] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1703), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_unquoted_token2, - STATE(4323), 1, + [161913] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7514), 1, + anon_sym_QMARK2, + STATE(4313), 1, sym_comment, - ACTIONS(1705), 16, - ts_builtin_sym_end, + ACTIONS(980), 2, + sym__space, + anon_sym_DOT, + ACTIONS(978), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371353,27 +373763,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, - anon_sym_LPAREN2, - [170125] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161942] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7516), 1, anon_sym_DOT, - STATE(4324), 1, + ACTIONS(7518), 1, + aux_sym__immediate_decimal_token2, + STATE(4314), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5050), 1, - sym_cell_path, - ACTIONS(2089), 2, - ts_builtin_sym_end, + ACTIONS(1755), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 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, + [161973] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + ACTIONS(2189), 1, sym__space, - ACTIONS(2087), 11, + STATE(4315), 1, + sym_comment, + ACTIONS(2187), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371385,57 +373813,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, - [170161] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_DQUOTE, - ACTIONS(1981), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1983), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1991), 1, - sym_raw_string_begin, - ACTIONS(4273), 1, - anon_sym_DOLLAR, - ACTIONS(4876), 1, - anon_sym_LPAREN, - ACTIONS(7300), 1, - sym__unquoted_naive, - STATE(4325), 1, - sym_comment, - STATE(4787), 1, - sym__inter_single_quotes, - STATE(4810), 1, - sym__inter_double_quotes, - ACTIONS(1979), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4414), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4703), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [170209] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162004] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4326), 1, + ACTIONS(7520), 1, + anon_sym_QMARK2, + STATE(4316), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5042), 1, - sym_cell_path, - ACTIONS(2049), 2, - ts_builtin_sym_end, + ACTIONS(986), 2, sym__space, - ACTIONS(2047), 11, + anon_sym_DOT, + ACTIONS(984), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371447,15 +373837,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, - [170245] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162033] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1769), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1886), 1, + sym__space, + ACTIONS(1888), 1, aux_sym_unquoted_token2, - STATE(4327), 1, + STATE(4317), 1, sym_comment, - ACTIONS(1771), 16, - ts_builtin_sym_end, + ACTIONS(1878), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371467,21 +373862,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, - anon_sym_LPAREN2, - [170273] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162064] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7302), 1, - aux_sym__immediate_decimal_token2, - STATE(4328), 1, - sym_comment, - ACTIONS(1771), 2, - sym__space, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(1769), 14, + ACTIONS(2238), 1, + sym__space, + STATE(4318), 1, + sym_comment, + ACTIONS(2234), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371495,15 +373889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [170303] = 4, - ACTIONS(249), 1, + [162095] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6929), 1, - aux_sym_unquoted_token2, - STATE(4329), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4319), 1, sym_comment, - ACTIONS(1640), 16, + ACTIONS(7522), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371516,23 +373909,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, - [170331] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162122] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1092), 1, - sym__space, - ACTIONS(7304), 1, - anon_sym_DOT_DOT2, - STATE(4330), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4320), 1, sym_comment, - ACTIONS(7306), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1090), 13, + ACTIONS(7522), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371545,87 +373932,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, - [170363] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(3306), 1, - anon_sym_DOLLAR, - ACTIONS(5842), 1, - anon_sym_LPAREN, - ACTIONS(7308), 1, - anon_sym_DQUOTE, - ACTIONS(7312), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7314), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7316), 1, - sym__unquoted_naive, - STATE(2436), 1, - sym__inter_double_quotes, - STATE(2563), 1, - sym__inter_single_quotes, - STATE(4331), 1, - sym_comment, - ACTIONS(7310), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2065), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5072), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [170411] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_DOT, - ACTIONS(7322), 1, - anon_sym_QMARK2, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(4332), 1, - sym_comment, - STATE(5093), 1, - sym_cell_path, - ACTIONS(7318), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7320), 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, - [170449] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162149] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4333), 1, - sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(4881), 1, - sym_cell_path, - ACTIONS(2081), 2, - ts_builtin_sym_end, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4971), 1, sym__space, - ACTIONS(2079), 11, + STATE(4321), 1, + sym_comment, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4973), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371637,20 +373958,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, - [170485] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162180] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1029), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4975), 1, sym__space, - ACTIONS(7211), 1, - anon_sym_DOT, - STATE(4334), 1, + STATE(4322), 1, sym_comment, - STATE(4366), 1, - aux_sym_cell_path_repeat1, - STATE(4689), 1, - sym_path, - ACTIONS(1027), 13, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4977), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371664,23 +373985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170519] = 8, - ACTIONS(3), 1, + [162211] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4335), 1, + STATE(4323), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(4882), 1, - sym_cell_path, - ACTIONS(7244), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7242), 11, + STATE(4405), 1, + aux_sym_shebang_repeat1, + ACTIONS(7524), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371692,49 +374004,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, - [170555] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_DOT, - ACTIONS(7328), 1, - anon_sym_QMARK2, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(4336), 1, - sym_comment, - STATE(5106), 1, - sym_cell_path, - ACTIONS(7324), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7326), 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, - [170593] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162238] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7330), 1, - anon_sym_DOT, - ACTIONS(7332), 1, - aux_sym__immediate_decimal_token2, - STATE(4337), 1, + STATE(4324), 1, sym_comment, - ACTIONS(1717), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1715), 12, + STATE(4406), 1, + aux_sym_shebang_repeat1, + ACTIONS(7524), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371746,18 +374027,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, - [170625] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162265] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - STATE(4338), 1, + ACTIONS(7500), 1, + anon_sym_and2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4325), 1, sym_comment, - ACTIONS(2339), 15, - ts_builtin_sym_end, + ACTIONS(7522), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371769,26 +374052,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, - [170655] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [162294] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4339), 1, + ACTIONS(7506), 1, + anon_sym_and2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4326), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5043), 1, - sym_cell_path, - ACTIONS(2053), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2051), 11, + ACTIONS(7522), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371800,24 +374076,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, - [170691] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [162323] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4340), 1, - sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5044), 1, - sym_cell_path, - ACTIONS(2057), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2055), 11, + ACTIONS(7526), 1, sym__newline, + ACTIONS(7529), 1, + anon_sym_and2, + STATE(4327), 1, + sym_comment, + STATE(4407), 1, + aux_sym_shebang_repeat1, + ACTIONS(7524), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371828,24 +374101,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, - [170727] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [162354] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4341), 1, - sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5029), 1, - sym_cell_path, - ACTIONS(1995), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1993), 11, + ACTIONS(7526), 1, sym__newline, + ACTIONS(7531), 1, + anon_sym_and2, + STATE(4328), 1, + sym_comment, + STATE(4408), 1, + aux_sym_shebang_repeat1, + ACTIONS(7524), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371856,23 +374126,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, - [170763] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [162385] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4342), 1, + ACTIONS(7500), 1, + anon_sym_and2, + ACTIONS(7502), 1, + anon_sym_xor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4329), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5031), 1, - sym_cell_path, - ACTIONS(1999), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1997), 11, + ACTIONS(7522), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371884,16 +374152,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, - [170799] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [162416] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4343), 1, + ACTIONS(7506), 1, + anon_sym_and2, + ACTIONS(7508), 1, + anon_sym_xor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4330), 1, sym_comment, - ACTIONS(1080), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1078), 14, + ACTIONS(7522), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371906,25 +374178,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_DOT_DOT2, - [170827] = 8, + anon_sym_or2, + [162447] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4344), 1, - sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5051), 1, - sym_cell_path, - ACTIONS(2097), 2, - ts_builtin_sym_end, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + ACTIONS(2256), 1, sym__space, - ACTIONS(2095), 11, + ACTIONS(2258), 1, + aux_sym_unquoted_token2, + STATE(4331), 1, + sym_comment, + ACTIONS(2252), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371936,118 +374202,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, - [170863] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2591), 1, - anon_sym_COMMA, - ACTIONS(7189), 1, - anon_sym_EQ, - ACTIONS(7191), 1, - sym__newline, - ACTIONS(7193), 1, - anon_sym_COLON, - ACTIONS(7336), 1, - anon_sym_DASH, - STATE(4345), 1, - sym_comment, - STATE(4397), 1, - aux_sym_parameter_repeat1, - STATE(5247), 1, - aux_sym_parameter_repeat2, - STATE(6229), 1, - aux_sym_shebang_repeat1, - STATE(5174), 2, - sym_param_type, - sym_param_value, - ACTIONS(7334), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [170907] = 12, - ACTIONS(249), 1, + anon_sym_RBRACE, + [162478] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2591), 1, - anon_sym_COMMA, - ACTIONS(7189), 1, - anon_sym_EQ, - ACTIONS(7191), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(7193), 1, - anon_sym_COLON, - ACTIONS(7340), 1, - anon_sym_DASH, - STATE(4309), 1, - aux_sym_parameter_repeat1, - STATE(4346), 1, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7533), 1, + anon_sym_xor2, + STATE(4332), 1, sym_comment, - STATE(5231), 1, - aux_sym_parameter_repeat2, - STATE(6229), 1, + STATE(4409), 1, aux_sym_shebang_repeat1, - STATE(5174), 2, - sym_param_type, - sym_param_value, - ACTIONS(7338), 7, - sym_identifier, + ACTIONS(7524), 12, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [170951] = 12, - ACTIONS(249), 1, + anon_sym_or2, + [162511] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2591), 1, - anon_sym_COMMA, - ACTIONS(7189), 1, - anon_sym_EQ, - ACTIONS(7191), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(7193), 1, - anon_sym_COLON, - ACTIONS(7344), 1, - anon_sym_DASH, - STATE(4347), 1, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7535), 1, + anon_sym_xor2, + STATE(4333), 1, sym_comment, - STATE(4397), 1, - aux_sym_parameter_repeat1, - STATE(5249), 1, - aux_sym_parameter_repeat2, - STATE(6229), 1, + STATE(4504), 1, aux_sym_shebang_repeat1, - STATE(5174), 2, - sym_param_type, - sym_param_value, - ACTIONS(7342), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [170995] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(4348), 1, - sym_comment, - ACTIONS(1090), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1092), 12, - ts_builtin_sym_end, - sym__newline, + ACTIONS(7524), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372058,19 +374254,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, - [171027] = 6, + anon_sym_RPAREN, + anon_sym_or2, + [162544] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4979), 1, sym__space, - ACTIONS(7346), 1, - anon_sym_DOT_DOT2, - STATE(4349), 1, + STATE(4334), 1, sym_comment, - ACTIONS(7348), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2234), 13, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4981), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372084,19 +374281,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171059] = 6, + [162575] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2119), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4983), 1, sym__space, - ACTIONS(7350), 1, - anon_sym_DOT_DOT2, - STATE(4350), 1, + STATE(4335), 1, sym_comment, - ACTIONS(7352), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2113), 13, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4985), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372110,41 +374306,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171091] = 4, - ACTIONS(249), 1, + [162606] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4351), 1, + STATE(4336), 1, sym_comment, - ACTIONS(1062), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1064), 14, - anon_sym_EQ, - sym_identifier, + STATE(4415), 1, + aux_sym_shebang_repeat1, + ACTIONS(7537), 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, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171119] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162633] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token2, - STATE(4352), 1, + STATE(4337), 1, sym_comment, - ACTIONS(2250), 15, - ts_builtin_sym_end, + STATE(4416), 1, + aux_sym_shebang_repeat1, + ACTIONS(7537), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372156,51 +374348,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, - [171149] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1788), 1, - anon_sym_DASH, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(7354), 1, - anon_sym_DOT_DOT2, - STATE(4353), 1, - sym_comment, - ACTIONS(7356), 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, - [171185] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162660] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2212), 1, - sym__space, - ACTIONS(7358), 1, - anon_sym_DOT_DOT2, - STATE(4354), 1, - sym_comment, - ACTIONS(7360), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2206), 13, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7539), 1, sym__newline, + STATE(4338), 1, + sym_comment, + STATE(4421), 1, + aux_sym_shebang_repeat1, + ACTIONS(7537), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372212,25 +374375,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, - [171217] = 8, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [162691] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4355), 1, - sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5035), 1, - sym_cell_path, - ACTIONS(2003), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2001), 11, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7539), 1, sym__newline, + STATE(4339), 1, + sym_comment, + STATE(4422), 1, + aux_sym_shebang_repeat1, + ACTIONS(7537), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372241,24 +374399,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, - [171253] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [162722] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4356), 1, - sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5036), 1, - sym_cell_path, - ACTIONS(2007), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2005), 11, + ACTIONS(3857), 1, sym__newline, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7533), 1, + anon_sym_xor2, + STATE(4340), 1, + sym_comment, + STATE(4425), 1, + aux_sym_shebang_repeat1, + ACTIONS(7537), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372269,24 +374426,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, - [171289] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [162755] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4357), 1, - sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5037), 1, - sym_cell_path, - ACTIONS(2011), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2009), 11, + ACTIONS(3857), 1, sym__newline, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7535), 1, + anon_sym_xor2, + STATE(4341), 1, + sym_comment, + STATE(4426), 1, + aux_sym_shebang_repeat1, + ACTIONS(7537), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372297,23 +374452,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, - [171325] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [162788] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4358), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4342), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5038), 1, - sym_cell_path, - ACTIONS(2015), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2013), 11, + ACTIONS(7522), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372325,17 +374473,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, - [171361] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162815] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4359), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4343), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 15, - ts_builtin_sym_end, + ACTIONS(7522), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372347,20 +374496,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, - [171391] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162842] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4360), 1, + STATE(4344), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4848), 15, - ts_builtin_sym_end, + STATE(4429), 1, + aux_sym_shebang_repeat1, + ACTIONS(7524), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372372,43 +374519,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, - [171421] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4361), 1, - sym_comment, - ACTIONS(1038), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - 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, - [171449] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162869] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4362), 1, + STATE(4345), 1, sym_comment, - ACTIONS(2220), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2218), 14, + STATE(4430), 1, + aux_sym_shebang_repeat1, + ACTIONS(7524), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372421,21 +374543,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_DOT_DOT2, - [171477] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162896] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7304), 1, - anon_sym_DOT_DOT2, - ACTIONS(7364), 1, - sym__space, - STATE(4363), 1, + ACTIONS(7500), 1, + anon_sym_and2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4346), 1, sym_comment, - ACTIONS(7306), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7362), 13, + ACTIONS(7522), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372448,18 +374568,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, - [171509] = 5, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [162925] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4364), 1, + ACTIONS(7506), 1, + anon_sym_and2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4347), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4808), 15, - ts_builtin_sym_end, + ACTIONS(7522), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372471,27 +374591,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, - [171539] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [162954] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4365), 1, + ACTIONS(7526), 1, + sym__newline, + ACTIONS(7529), 1, + anon_sym_and2, + STATE(4348), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5039), 1, - sym_cell_path, - ACTIONS(2019), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2017), 11, + STATE(4431), 1, + aux_sym_shebang_repeat1, + ACTIONS(7524), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [162985] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7526), 1, sym__newline, + ACTIONS(7531), 1, + anon_sym_and2, + STATE(4349), 1, + sym_comment, + STATE(4432), 1, + aux_sym_shebang_repeat1, + ACTIONS(7524), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372502,19 +374641,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, - [171575] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [163016] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1033), 1, - sym__space, - ACTIONS(7366), 1, - anon_sym_DOT, - STATE(4689), 1, - sym_path, - STATE(4366), 2, + ACTIONS(7500), 1, + anon_sym_and2, + ACTIONS(7502), 1, + anon_sym_xor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4350), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 13, + ACTIONS(7522), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372527,18 +374668,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, - [171607] = 5, - ACTIONS(249), 1, + anon_sym_or2, + [163047] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4367), 1, + ACTIONS(7506), 1, + anon_sym_and2, + ACTIONS(7508), 1, + anon_sym_xor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4351), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4812), 15, - ts_builtin_sym_end, + ACTIONS(7522), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372550,21 +374692,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, - [171637] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [163078] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token2, - STATE(4368), 1, - sym_comment, - ACTIONS(1717), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1715), 14, + ACTIONS(3857), 1, sym__newline, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7533), 1, + anon_sym_xor2, + STATE(4352), 1, + sym_comment, + STATE(4434), 1, + aux_sym_shebang_repeat1, + ACTIONS(7524), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372576,24 +374719,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [171667] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [163111] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(4369), 1, - sym_comment, - ACTIONS(2281), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2285), 12, - ts_builtin_sym_end, + ACTIONS(3857), 1, sym__newline, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7535), 1, + anon_sym_xor2, + STATE(4353), 1, + sym_comment, + STATE(4435), 1, + aux_sym_shebang_repeat1, + ACTIONS(7524), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372604,47 +374744,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, - [171699] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4370), 1, - sym_comment, - ACTIONS(1054), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1056), 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, - [171727] = 8, - ACTIONS(3), 1, + anon_sym_or2, + [163144] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4371), 1, + STATE(4354), 1, sym_comment, - STATE(4534), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - STATE(5057), 1, - sym_cell_path, - ACTIONS(1903), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1901), 11, + STATE(4437), 1, + aux_sym_shebang_repeat1, + ACTIONS(7537), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372656,21 +374765,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, - [171763] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [163171] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(4372), 1, + STATE(4355), 1, sym_comment, - ACTIONS(2293), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2297), 12, - ts_builtin_sym_end, + STATE(4438), 1, + aux_sym_shebang_repeat1, + ACTIONS(7537), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372682,22 +374788,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, - [171795] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [163198] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(4373), 1, - sym_comment, - ACTIONS(2303), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2305), 12, - ts_builtin_sym_end, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7539), 1, sym__newline, + STATE(4356), 1, + sym_comment, + STATE(4441), 1, + aux_sym_shebang_repeat1, + ACTIONS(7537), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372708,18 +374814,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, - [171827] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [163229] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4374), 1, - sym_comment, - ACTIONS(1076), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1074), 13, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7539), 1, sym__newline, + STATE(4357), 1, + sym_comment, + STATE(4442), 1, + aux_sym_shebang_repeat1, + ACTIONS(7537), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372730,47 +374839,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [171855] = 8, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [163260] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_DASH, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7369), 1, + ACTIONS(7542), 1, anon_sym_DOT_DOT2, - STATE(4375), 1, + STATE(4358), 1, sym_comment, - ACTIONS(7371), 2, + ACTIONS(1032), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7544), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1850), 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, - [171891] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - STATE(4376), 1, - sym_comment, - ACTIONS(1796), 15, - ts_builtin_sym_end, + ACTIONS(1030), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372782,16 +374867,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, - [171921] = 3, - ACTIONS(249), 1, + [163291] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4377), 1, - sym_comment, - ACTIONS(6839), 16, + ACTIONS(3857), 1, sym__newline, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7533), 1, + anon_sym_xor2, + STATE(4359), 1, + sym_comment, + STATE(4445), 1, + aux_sym_shebang_repeat1, + ACTIONS(7537), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372803,24 +374892,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, - [171946] = 7, - ACTIONS(249), 1, + anon_sym_or2, + [163324] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7377), 1, - anon_sym_xor, - STATE(4378), 1, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7535), 1, + anon_sym_xor2, + STATE(4360), 1, sym_comment, - STATE(4523), 1, + STATE(4446), 1, aux_sym_shebang_repeat1, - ACTIONS(7373), 12, + ACTIONS(7537), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372832,19 +374918,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_or, - [171979] = 6, - ACTIONS(249), 1, + anon_sym_or2, + [163357] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7379), 1, + ACTIONS(3857), 1, sym__newline, - STATE(4379), 1, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7535), 1, + anon_sym_xor2, + ACTIONS(7548), 1, + anon_sym_or2, + STATE(4361), 1, sym_comment, - STATE(4403), 1, + STATE(4377), 1, aux_sym_shebang_repeat1, - ACTIONS(7382), 13, + ACTIONS(7546), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372856,22 +374946,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, - [172010] = 6, + [163392] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7384), 1, + ACTIONS(7550), 1, anon_sym_DOT_DOT2, - STATE(4380), 1, + STATE(4362), 1, sym_comment, - ACTIONS(2240), 2, + ACTIONS(2173), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7386), 2, + ACTIONS(7552), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2234), 11, + ACTIONS(2167), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372883,20 +374971,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, - [172041] = 6, + [163423] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7388), 1, + ACTIONS(7554), 1, anon_sym_DOT_DOT2, - STATE(4381), 1, + STATE(4363), 1, sym_comment, - ACTIONS(2119), 2, + ACTIONS(2181), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7390), 2, + ACTIONS(7556), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2113), 11, + ACTIONS(2175), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372908,19 +374996,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, - [172072] = 6, - ACTIONS(249), 1, + [163454] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - ACTIONS(7396), 1, - anon_sym_xor, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4382), 1, - sym_comment, - ACTIONS(7392), 13, + ACTIONS(3857), 1, sym__newline, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7533), 1, + anon_sym_xor2, + ACTIONS(7558), 1, + anon_sym_or2, + STATE(4364), 1, + sym_comment, + STATE(4376), 1, + aux_sym_shebang_repeat1, + ACTIONS(7546), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372932,21 +375023,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_or, - [172103] = 6, + [163489] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7398), 1, + ACTIONS(7560), 1, anon_sym_DOT_DOT2, - STATE(4383), 1, + STATE(4365), 1, sym_comment, - ACTIONS(2212), 2, + ACTIONS(2139), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7400), 2, + ACTIONS(7562), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2206), 11, + ACTIONS(2133), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372958,18 +375048,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, - [172134] = 6, - ACTIONS(249), 1, + [163520] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - ACTIONS(7404), 1, - anon_sym_xor, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4384), 1, + ACTIONS(1944), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4366), 1, + sym_comment, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4922), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(1946), 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, + [163555] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4367), 1, sym_comment, - ACTIONS(7392), 13, + ACTIONS(1892), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1890), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372982,23 +375096,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [172165] = 8, - ACTIONS(249), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [163582] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1021), 1, - anon_sym_DASH, - ACTIONS(7406), 1, + ACTIONS(1948), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, anon_sym_DOT, - STATE(4385), 1, + STATE(4368), 1, sym_comment, - STATE(4587), 1, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4923), 1, sym_cell_path, - STATE(4610), 1, + STATE(4942), 1, + sym_path, + ACTIONS(1950), 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, + [163617] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1952), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4369), 1, + sym_comment, + STATE(4535), 1, aux_sym_cell_path_repeat1, - STATE(4893), 1, + STATE(4924), 1, + sym_cell_path, + STATE(4942), 1, sym_path, - ACTIONS(1023), 11, + ACTIONS(1954), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -373010,20 +375152,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172200] = 7, - ACTIONS(249), 1, + [163652] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(1960), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4370), 1, + sym_comment, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4925), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(1962), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7410), 1, - anon_sym_xor, - STATE(4386), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [163687] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1968), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4371), 1, sym_comment, - STATE(4404), 1, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4926), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(1970), 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, + [163722] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1972), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4372), 1, + sym_comment, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4928), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(1974), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [163757] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1984), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4373), 1, + sym_comment, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4929), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(1986), 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, + [163792] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1988), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4374), 1, + sym_comment, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4930), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(1990), 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, + [163827] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1992), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4375), 1, + sym_comment, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4931), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(1994), 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, + [163862] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7500), 1, + anon_sym_and2, + ACTIONS(7502), 1, + anon_sym_xor2, + ACTIONS(7504), 1, + anon_sym_or2, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(7382), 12, + STATE(4376), 1, + sym_comment, + ACTIONS(7564), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373035,19 +375340,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_or, - [172233] = 6, - ACTIONS(249), 1, + [163895] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7412), 1, - sym__newline, - STATE(4387), 1, - sym_comment, - STATE(4458), 1, + ACTIONS(7506), 1, + anon_sym_and2, + ACTIONS(7508), 1, + anon_sym_xor2, + ACTIONS(7510), 1, + anon_sym_or2, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(7415), 13, + STATE(4377), 1, + sym_comment, + ACTIONS(7564), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373059,17 +375366,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_xor, - anon_sym_or, - [172264] = 4, - ACTIONS(249), 1, + [163928] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4388), 1, + ACTIONS(1996), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4378), 1, sym_comment, - STATE(4544), 1, - aux_sym_shebang_repeat1, - ACTIONS(7373), 15, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4932), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(1998), 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, + [163963] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, sym__newline, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7533), 1, + anon_sym_xor2, + ACTIONS(7558), 1, + anon_sym_or2, + STATE(4301), 1, + aux_sym_shebang_repeat1, + STATE(4379), 1, + sym_comment, + ACTIONS(7566), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373081,21 +375420,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, - [172291] = 6, + [163998] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4808), 1, - sym__space, - STATE(4389), 1, + ACTIONS(7568), 1, + anon_sym_DOT_DOT2, + STATE(4380), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4810), 13, + ACTIONS(2165), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7570), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2159), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373107,22 +375445,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, - [172322] = 7, - ACTIONS(249), 1, + [164029] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7377), 1, - anon_sym_xor, - STATE(4390), 1, - sym_comment, - STATE(4405), 1, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7535), 1, + anon_sym_xor2, + ACTIONS(7548), 1, + anon_sym_or2, + STATE(4302), 1, aux_sym_shebang_repeat1, - ACTIONS(7382), 12, + STATE(4381), 1, + sym_comment, + ACTIONS(7566), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373134,23 +375472,76 @@ static 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, - [172355] = 8, - ACTIONS(249), 1, + [164064] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH, - ACTIONS(7406), 1, + ACTIONS(2000), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, anon_sym_DOT, - STATE(4391), 1, + STATE(4382), 1, sym_comment, - STATE(4610), 1, + STATE(4535), 1, aux_sym_cell_path_repeat1, - STATE(4893), 1, + STATE(4933), 1, + sym_cell_path, + STATE(4942), 1, sym_path, - STATE(4897), 1, + ACTIONS(2002), 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, + [164099] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4902), 1, + anon_sym_DOT, + STATE(1702), 1, + aux_sym_cell_path_repeat1, + STATE(1894), 1, + sym_path, + STATE(4383), 1, + sym_comment, + STATE(5020), 1, + sym_cell_path, + ACTIONS(7572), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7574), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [164134] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2004), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4384), 1, + sym_comment, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4934), 1, sym_cell_path, - ACTIONS(1899), 11, + STATE(4942), 1, + sym_path, + ACTIONS(2006), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -373162,14 +375553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172390] = 4, - ACTIONS(249), 1, + [164169] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4392), 1, + STATE(4385), 1, sym_comment, - STATE(4443), 1, - aux_sym_shebang_repeat1, - ACTIONS(7373), 15, + ACTIONS(1737), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1735), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373181,22 +375575,149 @@ static const uint16_t 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, + [164196] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1002), 1, + anon_sym_DASH2, + STATE(4386), 1, + sym_comment, + ACTIONS(1004), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [172417] = 5, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [164223] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2068), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4387), 1, + sym_comment, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4935), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(2070), 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, + [164258] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2072), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4388), 1, + sym_comment, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4936), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(2074), 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, + [164293] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1907), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4389), 1, + sym_comment, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4937), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(1911), 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, + [164328] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4902), 1, + anon_sym_DOT, + STATE(1702), 1, + aux_sym_cell_path_repeat1, + STATE(1894), 1, + sym_path, + STATE(4390), 1, + sym_comment, + STATE(5162), 1, + sym_cell_path, + ACTIONS(7576), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7578), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [164363] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7332), 1, - aux_sym__immediate_decimal_token2, - STATE(4393), 1, + STATE(4391), 1, sym_comment, - ACTIONS(1717), 3, + ACTIONS(2127), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1715), 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2125), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373208,40 +375729,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, - aux_sym_unquoted_token2, - [172446] = 8, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + [164390] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5996), 1, + ACTIONS(1913), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, + STATE(4392), 1, + sym_comment, + STATE(4535), 1, aux_sym_cell_path_repeat1, - STATE(4394), 1, + STATE(4938), 1, + sym_cell_path, + STATE(4942), 1, + sym_path, + ACTIONS(1915), 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, + [164425] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2082), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4393), 1, sym_comment, - STATE(5067), 1, + STATE(4535), 1, + aux_sym_cell_path_repeat1, + STATE(4912), 1, sym_cell_path, - ACTIONS(7417), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7419), 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, - [172481] = 3, - ACTIONS(249), 1, + STATE(4942), 1, + sym_path, + ACTIONS(2084), 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, + [164460] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4395), 1, + ACTIONS(7542), 1, + anon_sym_DOT_DOT2, + STATE(4394), 1, sym_comment, - ACTIONS(5159), 16, + ACTIONS(7439), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7544), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7437), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373253,23 +375809,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, - [172506] = 6, - ACTIONS(249), 1, + [164491] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7421), 1, - sym__newline, - STATE(4396), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + sym__space, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(4395), 1, sym_comment, - STATE(4476), 1, - aux_sym_shebang_repeat1, - ACTIONS(7373), 13, + ACTIONS(2206), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373281,44 +375833,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, - [172537] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7426), 1, - anon_sym_EQ, - ACTIONS(7429), 1, - sym__newline, - ACTIONS(7432), 1, - anon_sym_COLON, - ACTIONS(7435), 1, - anon_sym_DASH, - STATE(6229), 1, - aux_sym_shebang_repeat1, - STATE(4397), 2, - sym_comment, - aux_sym_parameter_repeat1, - STATE(5174), 2, - sym_param_type, - sym_param_value, - ACTIONS(7424), 8, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [172574] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + [164522] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4398), 1, + ACTIONS(1032), 1, + sym__space, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(4396), 1, sym_comment, - ACTIONS(7437), 15, + ACTIONS(1030), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373331,15 +375858,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_and, - anon_sym_xor, - anon_sym_or, - [172601] = 3, - ACTIONS(249), 1, + anon_sym_RBRACE, + [164553] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4399), 1, + STATE(4397), 1, sym_comment, - ACTIONS(2291), 16, + ACTIONS(7316), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373353,17 +375878,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, - [172626] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164578] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4400), 1, + STATE(4398), 1, sym_comment, - ACTIONS(7437), 15, + ACTIONS(7379), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373376,19 +375899,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, - [172653] = 5, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164603] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4401), 1, + STATE(4399), 1, sym_comment, - ACTIONS(7437), 14, + ACTIONS(7316), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373401,43 +375921,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [172682] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164628] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7439), 1, - anon_sym_DOT, - ACTIONS(7441), 1, - aux_sym__immediate_decimal_token2, - STATE(4402), 1, + ACTIONS(990), 1, + anon_sym_DASH2, + STATE(4400), 1, sym_comment, - ACTIONS(1715), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 11, + ACTIONS(992), 15, anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_PIPE, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [172713] = 5, - ACTIONS(249), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [164655] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4403), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2218), 1, + sym__space, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(4401), 1, sym_comment, - ACTIONS(7437), 14, + ACTIONS(2214), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373450,20 +375972,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, - [172742] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + [164686] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - ACTIONS(7396), 1, - anon_sym_xor, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4404), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + ACTIONS(2224), 1, + sym__space, + STATE(4402), 1, sym_comment, - ACTIONS(7437), 13, + ACTIONS(2222), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373476,19 +375997,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_or, - [172773] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + [164717] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - ACTIONS(7404), 1, - anon_sym_xor, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4405), 1, + STATE(4403), 1, sym_comment, - ACTIONS(7437), 13, + ACTIONS(7379), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373501,15 +376016,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [172804] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164742] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4406), 1, + STATE(4404), 1, sym_comment, - ACTIONS(7437), 15, + ACTIONS(7316), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373522,17 +376038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [172831] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164767] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4407), 1, + STATE(4405), 1, sym_comment, - ACTIONS(7437), 15, + ACTIONS(7580), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373545,19 +376062,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, - [172858] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164794] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - STATE(2498), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4408), 1, + STATE(4406), 1, sym_comment, - ACTIONS(7437), 14, + ACTIONS(7580), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373570,18 +376085,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, - [172887] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164821] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - STATE(2498), 1, + ACTIONS(7500), 1, + anon_sym_and2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4409), 1, + STATE(4407), 1, sym_comment, - ACTIONS(7437), 14, + ACTIONS(7580), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373594,20 +376110,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, - [172916] = 6, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [164850] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - ACTIONS(7396), 1, - anon_sym_xor, - STATE(2498), 1, + ACTIONS(7506), 1, + anon_sym_and2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4410), 1, + STATE(4408), 1, sym_comment, - ACTIONS(7437), 13, + ACTIONS(7580), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373620,19 +376134,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_or, - [172947] = 6, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [164879] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - ACTIONS(7404), 1, - anon_sym_xor, - STATE(2498), 1, + ACTIONS(7500), 1, + anon_sym_and2, + ACTIONS(7502), 1, + anon_sym_xor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4411), 1, + STATE(4409), 1, sym_comment, - ACTIONS(7437), 13, + ACTIONS(7580), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373645,21 +376160,64 @@ static 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, - [172978] = 7, - ACTIONS(249), 1, + anon_sym_or2, + [164910] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(4902), 1, + anon_sym_DOT, + STATE(1463), 1, + sym_cell_path, + STATE(1702), 1, + aux_sym_cell_path_repeat1, + STATE(1894), 1, + sym_path, + STATE(4410), 1, + sym_comment, + ACTIONS(961), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(963), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [164945] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(998), 1, + anon_sym_DASH2, + STATE(4411), 1, + sym_comment, + ACTIONS(1000), 15, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7377), 1, - anon_sym_xor, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [164972] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(4412), 1, sym_comment, - STATE(4429), 1, - aux_sym_shebang_repeat1, - ACTIONS(7443), 12, + ACTIONS(7379), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373671,19 +376229,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_or, - [173011] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164997] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7421), 1, - sym__newline, STATE(4413), 1, sym_comment, - STATE(4430), 1, - aux_sym_shebang_repeat1, - ACTIONS(7373), 13, + ACTIONS(7582), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373695,17 +376251,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, - [173042] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165022] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(4414), 1, sym_comment, - ACTIONS(1060), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1058), 14, + ACTIONS(7582), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373719,21 +376274,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [173069] = 7, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165047] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7410), 1, - anon_sym_xor, + STATE(1816), 1, + aux_sym_shebang_repeat1, STATE(4415), 1, sym_comment, - STATE(4465), 1, - aux_sym_shebang_repeat1, - ACTIONS(7415), 12, + ACTIONS(7584), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373745,17 +376297,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_or, - [173102] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165074] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - STATE(2498), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, STATE(4416), 1, sym_comment, - ACTIONS(7392), 14, + ACTIONS(7584), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373768,19 +376320,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, - [173131] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165101] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(4417), 1, sym_comment, - ACTIONS(2107), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2105), 12, + STATE(4474), 1, + aux_sym_shebang_repeat1, + ACTIONS(7586), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373792,44 +376342,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_DOT_DOT2, - [173158] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165128] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7588), 1, + anon_sym_and2, STATE(4418), 1, sym_comment, - ACTIONS(1074), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1076), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(7582), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [173185] = 7, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [165155] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7410), 1, - anon_sym_xor, + ACTIONS(7590), 1, + anon_sym_and2, STATE(4419), 1, sym_comment, - STATE(4566), 1, - aux_sym_shebang_repeat1, - ACTIONS(7373), 12, + ACTIONS(7582), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373841,15 +376389,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_or, - [173218] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [165182] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, - aux_sym_shebang_repeat1, STATE(4420), 1, sym_comment, - ACTIONS(7445), 15, + STATE(4475), 1, + aux_sym_shebang_repeat1, + ACTIONS(7586), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373862,23 +376412,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, - [173245] = 7, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165209] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7377), 1, - anon_sym_xor, + ACTIONS(7500), 1, + anon_sym_and2, + STATE(1816), 1, + aux_sym_shebang_repeat1, STATE(4421), 1, sym_comment, - STATE(4466), 1, - aux_sym_shebang_repeat1, - ACTIONS(7415), 12, + ACTIONS(7584), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373890,21 +376437,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, - [173278] = 7, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [165238] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7377), 1, - anon_sym_xor, + ACTIONS(7506), 1, + anon_sym_and2, + STATE(1816), 1, + aux_sym_shebang_repeat1, STATE(4422), 1, sym_comment, - STATE(4568), 1, - aux_sym_shebang_repeat1, - ACTIONS(7373), 12, + ACTIONS(7584), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373916,16 +376461,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_or, - [173311] = 4, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [165267] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, - aux_sym_shebang_repeat1, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7592), 1, + sym__newline, STATE(4423), 1, sym_comment, - ACTIONS(7445), 15, - sym__newline, + STATE(4476), 1, + aux_sym_shebang_repeat1, + ACTIONS(7586), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373937,18 +376486,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, - [173338] = 4, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [165298] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7592), 1, + sym__newline, STATE(4424), 1, sym_comment, - STATE(4433), 1, + STATE(4477), 1, aux_sym_shebang_repeat1, - ACTIONS(7415), 15, - sym__newline, + ACTIONS(7586), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373960,20 +376511,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, - [173365] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [165329] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7500), 1, + anon_sym_and2, + ACTIONS(7502), 1, + anon_sym_xor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, STATE(4425), 1, sym_comment, - ACTIONS(2220), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2218), 12, + ACTIONS(7584), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373985,17 +376536,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, - [173392] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_or2, + [165360] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - STATE(2498), 1, + ACTIONS(7506), 1, + anon_sym_and2, + ACTIONS(7508), 1, + anon_sym_xor2, + STATE(1816), 1, aux_sym_shebang_repeat1, STATE(4426), 1, sym_comment, - ACTIONS(7445), 14, + ACTIONS(7584), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374008,19 +376562,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, - [173421] = 5, - ACTIONS(249), 1, + anon_sym_or2, + [165391] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - STATE(2498), 1, - aux_sym_shebang_repeat1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7533), 1, + anon_sym_xor2, STATE(4427), 1, sym_comment, - ACTIONS(7445), 14, - sym__newline, + STATE(4479), 1, + aux_sym_shebang_repeat1, + ACTIONS(7586), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374032,21 +376588,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, - [173450] = 6, - ACTIONS(249), 1, + anon_sym_or2, + [165424] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - ACTIONS(7396), 1, - anon_sym_xor, - STATE(2498), 1, - aux_sym_shebang_repeat1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7535), 1, + anon_sym_xor2, STATE(4428), 1, sym_comment, - ACTIONS(7445), 13, - sym__newline, + STATE(4481), 1, + aux_sym_shebang_repeat1, + ACTIONS(7586), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374058,19 +376614,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_or, - [173481] = 6, - ACTIONS(249), 1, + anon_sym_or2, + [165457] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - ACTIONS(7404), 1, - anon_sym_xor, - STATE(2498), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, STATE(4429), 1, sym_comment, - ACTIONS(7445), 13, + ACTIONS(7580), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374083,17 +376635,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_or, - [173512] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165484] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - STATE(2498), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, STATE(4430), 1, sym_comment, - ACTIONS(7447), 14, + ACTIONS(7580), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374106,20 +376658,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, - [173541] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165511] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4939), 1, - sym__space, - ACTIONS(7449), 1, - sym_long_flag_identifier, - ACTIONS(7451), 1, - anon_sym_EQ2, + ACTIONS(7500), 1, + anon_sym_and2, + STATE(1816), 1, + aux_sym_shebang_repeat1, STATE(4431), 1, sym_comment, - ACTIONS(4937), 13, + ACTIONS(7580), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374132,19 +376683,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, - [173572] = 5, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [165540] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7453), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(7506), 1, + anon_sym_and2, + STATE(1816), 1, + aux_sym_shebang_repeat1, STATE(4432), 1, sym_comment, - ACTIONS(1771), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1769), 12, + ACTIONS(7580), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374156,15 +376706,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, - [173601] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [165569] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, - aux_sym_shebang_repeat1, + ACTIONS(7588), 1, + anon_sym_and2, + ACTIONS(7595), 1, + anon_sym_xor2, STATE(4433), 1, sym_comment, - ACTIONS(7392), 15, + ACTIONS(7582), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374177,44 +376731,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [173628] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_or2, + [165598] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1058), 1, - anon_sym_DASH, + ACTIONS(7500), 1, + anon_sym_and2, + ACTIONS(7502), 1, + anon_sym_xor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, STATE(4434), 1, sym_comment, - ACTIONS(1060), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(7580), 13, sym__newline, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_GT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - [173655] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [165629] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2285), 1, - sym__space, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, + ACTIONS(7506), 1, + anon_sym_and2, + ACTIONS(7508), 1, + anon_sym_xor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, STATE(4435), 1, sym_comment, - ACTIONS(2281), 13, + ACTIONS(7580), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374227,19 +376782,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, - [173686] = 6, - ACTIONS(249), 1, + anon_sym_or2, + [165660] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7455), 1, - sym__newline, - STATE(4426), 1, - aux_sym_shebang_repeat1, + ACTIONS(7590), 1, + anon_sym_and2, + ACTIONS(7597), 1, + anon_sym_xor2, STATE(4436), 1, sym_comment, - ACTIONS(7443), 13, + ACTIONS(7582), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374251,22 +376805,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, - [173717] = 7, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_or2, + [165689] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - ACTIONS(7396), 1, - anon_sym_xor, - ACTIONS(7460), 1, - anon_sym_or, - STATE(2498), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, STATE(4437), 1, sym_comment, - ACTIONS(7458), 12, + ACTIONS(7584), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374279,14 +376827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173750] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165716] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, STATE(4438), 1, sym_comment, - ACTIONS(7392), 15, + ACTIONS(7584), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374299,18 +376850,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, - [173777] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165743] = 4, + ACTIONS(247), 1, anon_sym_POUND, STATE(4439), 1, sym_comment, - ACTIONS(2291), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2289), 14, + STATE(4482), 1, + aux_sym_shebang_repeat1, + ACTIONS(7586), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374323,24 +376873,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, - aux_sym_unquoted_token4, - [173804] = 8, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165770] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7377), 1, - anon_sym_xor, - ACTIONS(7464), 1, - anon_sym_or, STATE(4440), 1, sym_comment, - STATE(4442), 1, + STATE(4484), 1, aux_sym_shebang_repeat1, - ACTIONS(7462), 11, + ACTIONS(7586), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374352,14 +376896,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173839] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [165797] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4438), 1, + ACTIONS(7500), 1, + anon_sym_and2, + STATE(1816), 1, aux_sym_shebang_repeat1, STATE(4441), 1, sym_comment, - ACTIONS(7415), 15, + ACTIONS(7584), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374372,23 +376921,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [173866] = 7, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [165826] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - ACTIONS(7404), 1, - anon_sym_xor, - ACTIONS(7466), 1, - anon_sym_or, - STATE(2498), 1, + ACTIONS(7506), 1, + anon_sym_and2, + STATE(1816), 1, aux_sym_shebang_repeat1, STATE(4442), 1, sym_comment, - ACTIONS(7458), 12, + ACTIONS(7584), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374401,15 +376945,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173899] = 4, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [165855] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, - aux_sym_shebang_repeat1, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7592), 1, + sym__newline, STATE(4443), 1, sym_comment, - ACTIONS(7447), 15, - sym__newline, + STATE(4485), 1, + aux_sym_shebang_repeat1, + ACTIONS(7586), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374421,24 +376970,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, - [173926] = 7, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [165886] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - ACTIONS(7396), 1, - anon_sym_xor, - ACTIONS(7460), 1, - anon_sym_or, - STATE(2498), 1, - aux_sym_shebang_repeat1, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7592), 1, + sym__newline, STATE(4444), 1, sym_comment, - ACTIONS(7468), 12, - sym__newline, + STATE(4486), 1, + aux_sym_shebang_repeat1, + ACTIONS(7586), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374450,14 +376995,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173959] = 4, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [165917] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4406), 1, + ACTIONS(7500), 1, + anon_sym_and2, + ACTIONS(7502), 1, + anon_sym_xor2, + STATE(1816), 1, aux_sym_shebang_repeat1, STATE(4445), 1, sym_comment, - ACTIONS(7382), 15, + ACTIONS(7584), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374470,17 +377021,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, - [173986] = 4, - ACTIONS(249), 1, + anon_sym_or2, + [165948] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, + ACTIONS(7506), 1, + anon_sym_and2, + ACTIONS(7508), 1, + anon_sym_xor2, + STATE(1816), 1, aux_sym_shebang_repeat1, STATE(4446), 1, sym_comment, - ACTIONS(7445), 15, + ACTIONS(7584), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374493,24 +377046,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, - [174013] = 7, - ACTIONS(249), 1, + anon_sym_or2, + [165979] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - ACTIONS(7404), 1, - anon_sym_xor, - ACTIONS(7466), 1, - anon_sym_or, - STATE(2498), 1, - aux_sym_shebang_repeat1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7533), 1, + anon_sym_xor2, STATE(4447), 1, sym_comment, - ACTIONS(7468), 12, - sym__newline, + STATE(4488), 1, + aux_sym_shebang_repeat1, + ACTIONS(7586), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374522,21 +377072,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174046] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [166012] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7470), 1, - anon_sym_DOT_DOT2, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7535), 1, + anon_sym_xor2, STATE(4448), 1, sym_comment, - ACTIONS(7364), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7472), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7362), 11, - sym__newline, + STATE(4489), 1, + aux_sym_shebang_repeat1, + ACTIONS(7586), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374547,22 +377097,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, - [174077] = 8, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_or2, + [166045] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7410), 1, - anon_sym_xor, - ACTIONS(7476), 1, - anon_sym_or, - STATE(4444), 1, - aux_sym_shebang_repeat1, STATE(4449), 1, sym_comment, - ACTIONS(7474), 11, + ACTIONS(7582), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374574,22 +377117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174112] = 8, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166070] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7377), 1, - anon_sym_xor, - ACTIONS(7464), 1, - anon_sym_or, - STATE(4447), 1, - aux_sym_shebang_repeat1, STATE(4450), 1, sym_comment, - ACTIONS(7474), 11, + ACTIONS(7582), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374601,15 +377139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174147] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166095] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7588), 1, + anon_sym_and2, STATE(4451), 1, sym_comment, - ACTIONS(1771), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1769), 14, + ACTIONS(7582), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374623,15 +377164,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [174174] = 4, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [166122] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4407), 1, - aux_sym_shebang_repeat1, + ACTIONS(7590), 1, + anon_sym_and2, STATE(4452), 1, sym_comment, - ACTIONS(7382), 15, + ACTIONS(7582), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374644,15 +377186,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, - [174201] = 3, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [166149] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7588), 1, + anon_sym_and2, + ACTIONS(7595), 1, + anon_sym_xor2, STATE(4453), 1, sym_comment, - ACTIONS(5155), 16, + ACTIONS(7582), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374666,21 +377212,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, - [174226] = 6, + anon_sym_or2, + [166178] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - sym__space, STATE(4454), 1, sym_comment, - ACTIONS(1788), 13, + ACTIONS(2131), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2129), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374692,18 +377235,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, - [174257] = 5, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + [166205] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - STATE(2498), 1, - aux_sym_shebang_repeat1, + ACTIONS(7590), 1, + anon_sym_and2, + ACTIONS(7597), 1, + anon_sym_xor2, STATE(4455), 1, sym_comment, - ACTIONS(7392), 14, + ACTIONS(7582), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374716,16 +377258,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, - [174286] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_or2, + [166234] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4420), 1, - aux_sym_shebang_repeat1, STATE(4456), 1, sym_comment, - ACTIONS(7443), 15, + ACTIONS(2185), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2183), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374737,26 +377282,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_and, - anon_sym_xor, - anon_sym_or, - [174313] = 8, - ACTIONS(249), 1, + anon_sym_DOT_DOT2, + [166261] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7410), 1, - anon_sym_xor, - ACTIONS(7476), 1, - anon_sym_or, - STATE(4437), 1, + STATE(4319), 1, aux_sym_shebang_repeat1, STATE(4457), 1, sym_comment, - ACTIONS(7462), 11, + ACTIONS(7599), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374768,16 +377303,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174348] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166288] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - STATE(2498), 1, + STATE(4320), 1, aux_sym_shebang_repeat1, STATE(4458), 1, sym_comment, - ACTIONS(7392), 14, + ACTIONS(7599), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374790,20 +377326,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, - [174377] = 6, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166315] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7379), 1, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7601), 1, sym__newline, - ACTIONS(7408), 1, - anon_sym_and, - STATE(4408), 1, + STATE(4325), 1, aux_sym_shebang_repeat1, STATE(4459), 1, sym_comment, - ACTIONS(7382), 13, + ACTIONS(7599), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374815,18 +377352,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, - [174408] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [166346] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7601), 1, + sym__newline, + STATE(4326), 1, + aux_sym_shebang_repeat1, STATE(4460), 1, sym_comment, - ACTIONS(1705), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1703), 14, - sym__newline, + ACTIONS(7599), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374838,21 +377377,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, - aux_sym_unquoted_token2, - [174435] = 6, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [166377] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1092), 1, - sym__space, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7533), 1, + anon_sym_xor2, + STATE(4329), 1, + aux_sym_shebang_repeat1, STATE(4461), 1, sym_comment, - ACTIONS(1090), 13, - sym__newline, + ACTIONS(7599), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374864,19 +377404,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, - [174466] = 6, - ACTIONS(249), 1, + anon_sym_or2, + [166410] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7379), 1, + ACTIONS(3857), 1, sym__newline, - STATE(4409), 1, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7535), 1, + anon_sym_xor2, + STATE(4330), 1, aux_sym_shebang_repeat1, STATE(4462), 1, sym_comment, - ACTIONS(7382), 13, + ACTIONS(7599), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374888,16 +377430,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, - [174497] = 4, - ACTIONS(249), 1, + anon_sym_or2, + [166443] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4463), 1, sym_comment, - STATE(4471), 1, - aux_sym_shebang_repeat1, - ACTIONS(7373), 15, + ACTIONS(2250), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2248), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374910,23 +377452,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, - [174524] = 6, + anon_sym_RBRACE, + aux_sym_unquoted_token4, + [166470] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7470), 1, - anon_sym_DOT_DOT2, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(7606), 1, + sym__space, STATE(4464), 1, sym_comment, - ACTIONS(1092), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7472), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1090), 11, + STATE(7508), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374938,18 +377477,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, - [174555] = 6, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166501] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - ACTIONS(7396), 1, - anon_sym_xor, - STATE(2498), 1, - aux_sym_shebang_repeat1, STATE(4465), 1, sym_comment, - ACTIONS(7392), 13, + ACTIONS(996), 2, + sym__space, + anon_sym_DOT, + ACTIONS(994), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374962,19 +377500,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_or, - [174586] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_QMARK2, + [166528] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - ACTIONS(7404), 1, - anon_sym_xor, - STATE(2498), 1, - aux_sym_shebang_repeat1, + ACTIONS(4936), 1, + sym__space, + ACTIONS(7608), 1, + sym_long_flag_identifier, + ACTIONS(7610), 1, + anon_sym_EQ2, STATE(4466), 1, sym_comment, - ACTIONS(7392), 13, + ACTIONS(4938), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374987,21 +377526,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_or, - [174617] = 7, - ACTIONS(249), 1, + anon_sym_RBRACE, + [166559] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7410), 1, - anon_sym_xor, - STATE(4410), 1, - aux_sym_shebang_repeat1, + ACTIONS(4900), 1, + aux_sym_unquoted_token2, STATE(4467), 1, sym_comment, - ACTIONS(7382), 12, + ACTIONS(1721), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375012,20 +377547,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_or, - [174650] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166586] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4812), 1, + ACTIONS(4956), 1, sym__space, + ACTIONS(7612), 1, + anon_sym_EQ2, + ACTIONS(7614), 1, + sym_short_flag_identifier, STATE(4468), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4814), 13, + ACTIONS(4958), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375039,64 +377575,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174681] = 4, - ACTIONS(249), 1, + [166617] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, - aux_sym_shebang_repeat1, + ACTIONS(7616), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7618), 1, + aux_sym__immediate_decimal_token2, STATE(4469), 1, sym_comment, - ACTIONS(7445), 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, - [174708] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(4165), 1, - sym_cell_path, - STATE(4470), 1, - sym_comment, - ACTIONS(1021), 2, - anon_sym_GT, + ACTIONS(1621), 2, + anon_sym_GT2, anon_sym_LT2, - ACTIONS(1023), 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, - [174743] = 4, - ACTIONS(249), 1, + ACTIONS(1623), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [166648] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4471), 1, + STATE(4470), 1, sym_comment, - ACTIONS(7447), 15, + ACTIONS(1000), 2, + sym__space, + anon_sym_DOT, + ACTIONS(998), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375109,21 +377621,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, - [174770] = 6, + anon_sym_RBRACE, + anon_sym_QMARK2, + [166675] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4927), 1, - sym__space, - ACTIONS(7478), 1, - anon_sym_EQ2, - ACTIONS(7480), 1, - sym_short_flag_identifier, - STATE(4472), 1, + STATE(4471), 1, sym_comment, - ACTIONS(4925), 13, + ACTIONS(1004), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1002), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375137,18 +377645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174801] = 6, - ACTIONS(249), 1, + anon_sym_QMARK2, + [166702] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7484), 1, - anon_sym_and, - ACTIONS(7486), 1, - anon_sym_xor, - ACTIONS(7488), 1, - anon_sym_or, - STATE(4473), 1, + STATE(4342), 1, + aux_sym_shebang_repeat1, + STATE(4472), 1, sym_comment, - ACTIONS(7482), 13, + ACTIONS(7599), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375161,19 +377666,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, - [174832] = 6, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166729] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7490), 1, - anon_sym_and, - ACTIONS(7492), 1, - anon_sym_xor, - ACTIONS(7494), 1, - anon_sym_or, - STATE(4474), 1, + STATE(4343), 1, + aux_sym_shebang_repeat1, + STATE(4473), 1, sym_comment, - ACTIONS(7482), 13, + ACTIONS(7599), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375186,44 +377689,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, - [174863] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1901), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4475), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4923), 1, - sym_cell_path, - ACTIONS(1903), 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, - [174898] = 5, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166756] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - STATE(2498), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4476), 1, + STATE(4474), 1, sym_comment, - ACTIONS(7447), 14, + ACTIONS(7620), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375236,20 +377712,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, - [174927] = 6, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166783] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7412), 1, - sym__newline, - STATE(4455), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4477), 1, + STATE(4475), 1, sym_comment, - ACTIONS(7415), 13, + ACTIONS(7620), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375261,16 +377735,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, - [174958] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [166810] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, + ACTIONS(7500), 1, + anon_sym_and2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4478), 1, + STATE(4476), 1, sym_comment, - ACTIONS(7447), 15, + ACTIONS(7620), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375283,23 +377760,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, - [174985] = 7, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [166839] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7377), 1, - anon_sym_xor, - STATE(4411), 1, + ACTIONS(7506), 1, + anon_sym_and2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4479), 1, + STATE(4477), 1, sym_comment, - ACTIONS(7382), 12, + ACTIONS(7620), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375311,59 +377784,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_or, - [175018] = 4, + anon_sym_xor2, + anon_sym_or2, + [166868] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4480), 1, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(4478), 1, sym_comment, - ACTIONS(2232), 4, + STATE(4490), 1, + aux_sym_cell_path_repeat1, + STATE(4708), 1, + sym_path, + ACTIONS(969), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2230), 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, - [175045] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1062), 1, - anon_sym_DASH, - STATE(4481), 1, - sym_comment, - ACTIONS(1064), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - [175072] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4482), 1, - sym_comment, - ACTIONS(5151), 16, + ACTIONS(967), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375375,19 +377812,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [175097] = 4, - ACTIONS(249), 1, + [166901] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4446), 1, + ACTIONS(7500), 1, + anon_sym_and2, + ACTIONS(7502), 1, + anon_sym_xor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4483), 1, + STATE(4479), 1, sym_comment, - ACTIONS(7443), 15, + ACTIONS(7620), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375400,21 +377836,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, - [175124] = 6, + anon_sym_or2, + [166932] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - ACTIONS(2279), 1, - sym__space, - STATE(4484), 1, + STATE(4480), 1, sym_comment, - ACTIONS(2277), 13, + ACTIONS(992), 2, + sym__space, + anon_sym_DOT, + ACTIONS(990), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375428,20 +377859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175155] = 6, - ACTIONS(3), 1, + anon_sym_QMARK2, + [166959] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7496), 1, - anon_sym_DOT_DOT2, - STATE(4485), 1, + ACTIONS(7506), 1, + anon_sym_and2, + ACTIONS(7508), 1, + anon_sym_xor2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4481), 1, sym_comment, - ACTIONS(2228), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7498), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2222), 11, + ACTIONS(7620), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375453,45 +377883,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, - [175186] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4486), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4927), 1, - sym_cell_path, - ACTIONS(1911), 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, - [175221] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [166990] = 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(4487), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4482), 1, sym_comment, - ACTIONS(2293), 13, + ACTIONS(7620), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375504,43 +377905,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, - [175252] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [167017] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4488), 1, - sym_comment, - ACTIONS(1066), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1068), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7601), 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [175279] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - sym__space, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - STATE(4489), 1, + STATE(4346), 1, + aux_sym_shebang_repeat1, + STATE(4483), 1, sym_comment, - ACTIONS(1842), 13, - sym__newline, + ACTIONS(7599), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375552,38 +377931,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, - [175310] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4490), 1, - sym_comment, - ACTIONS(1070), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1072), 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, - [175337] = 4, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [167048] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4469), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4491), 1, + STATE(4484), 1, sym_comment, - ACTIONS(7443), 15, + ACTIONS(7620), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375596,21 +377953,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, - [175364] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [167075] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - ACTIONS(2305), 1, - sym__space, - STATE(4492), 1, + ACTIONS(7500), 1, + anon_sym_and2, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4485), 1, sym_comment, - ACTIONS(2303), 13, + ACTIONS(7620), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375623,19 +377978,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, - [175395] = 6, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [167104] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7379), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and, - STATE(4401), 1, + ACTIONS(7506), 1, + anon_sym_and2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4493), 1, + STATE(4486), 1, sym_comment, - ACTIONS(7382), 13, + ACTIONS(7620), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375647,94 +378002,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, - [175426] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7500), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7502), 1, - aux_sym__immediate_decimal_token2, - STATE(4494), 1, - sym_comment, - ACTIONS(1703), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1705), 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, - [175457] = 8, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [167133] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1929), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4495), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4901), 1, - sym_cell_path, - ACTIONS(1931), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7601), 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, - [175492] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - STATE(2498), 1, + STATE(4347), 1, aux_sym_shebang_repeat1, - STATE(4496), 1, - sym_comment, - ACTIONS(7445), 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_xor, - anon_sym_or, - [175521] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4497), 1, + STATE(4487), 1, sym_comment, - ACTIONS(1064), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1062), 14, - sym__newline, + ACTIONS(7599), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375746,182 +378027,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_QMARK2, - [175548] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1993), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4498), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4902), 1, - sym_cell_path, - ACTIONS(1995), 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, - [175583] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1997), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4499), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4903), 1, - sym_cell_path, - ACTIONS(1999), 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, - [175618] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4500), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4904), 1, - sym_cell_path, - ACTIONS(2003), 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, - [175653] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2005), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4501), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4905), 1, - sym_cell_path, - ACTIONS(2007), 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, - [175688] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2009), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4502), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4906), 1, - sym_cell_path, - ACTIONS(2011), 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, - [175723] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2013), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4503), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4907), 1, - sym_cell_path, - ACTIONS(2015), 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, - [175758] = 6, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [167164] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - ACTIONS(7396), 1, - anon_sym_xor, - STATE(2498), 1, + ACTIONS(7500), 1, + anon_sym_and2, + ACTIONS(7502), 1, + anon_sym_xor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4504), 1, + STATE(4488), 1, sym_comment, - ACTIONS(7445), 13, + ACTIONS(7620), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375934,98 +378053,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, - [175789] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2017), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4505), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4908), 1, - sym_cell_path, - ACTIONS(2019), 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, - [175824] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2021), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4506), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4909), 1, - sym_cell_path, - ACTIONS(2023), 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, - [175859] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4507), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4910), 1, - sym_cell_path, - ACTIONS(2045), 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, - [175894] = 5, - ACTIONS(249), 1, + anon_sym_or2, + [167195] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - STATE(2498), 1, + ACTIONS(7506), 1, + anon_sym_and2, + ACTIONS(7508), 1, + anon_sym_xor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4508), 1, + STATE(4489), 1, sym_comment, - ACTIONS(7447), 14, + ACTIONS(7620), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376038,127 +378078,90 @@ static 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, - [175923] = 8, - ACTIONS(249), 1, + anon_sym_or2, + [167226] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_DASH, - ACTIONS(7406), 1, + ACTIONS(7622), 1, anon_sym_DOT, - STATE(4509), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, + STATE(4708), 1, sym_path, - STATE(4911), 1, - sym_cell_path, - 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, - [175958] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2051), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4510), 1, + ACTIONS(973), 2, + ts_builtin_sym_end, + sym__space, + STATE(4490), 2, sym_comment, - STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4912), 1, - sym_cell_path, - ACTIONS(2053), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(971), 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, - [175993] = 8, - ACTIONS(249), 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, + [167257] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4511), 1, + ACTIONS(7494), 1, + aux_sym__immediate_decimal_token2, + STATE(4491), 1, sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4913), 1, - sym_cell_path, - ACTIONS(2057), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1757), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1755), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176028] = 8, - ACTIONS(249), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_unquoted_token2, + [167286] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4512), 1, + ACTIONS(994), 1, + anon_sym_DASH2, + STATE(4492), 1, sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4914), 1, - sym_cell_path, - ACTIONS(2061), 11, + ACTIONS(996), 15, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_PIPE, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, anon_sym_DASH_DASH, - [176063] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [167313] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4513), 1, + STATE(4493), 1, sym_comment, - ACTIONS(1672), 4, + ACTIONS(1020), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1670), 12, + ACTIONS(1018), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376171,71 +378174,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [176090] = 8, - ACTIONS(249), 1, + [167340] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2067), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4514), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4915), 1, - sym_cell_path, - ACTIONS(2069), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3857), 1, sym__newline, + ACTIONS(7529), 1, + anon_sym_and2, + ACTIONS(7533), 1, + anon_sym_xor2, + STATE(4350), 1, + aux_sym_shebang_repeat1, + STATE(4494), 1, + sym_comment, + ACTIONS(7599), 12, + 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, - [176125] = 8, - ACTIONS(249), 1, + anon_sym_or2, + [167373] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2083), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4515), 1, + ACTIONS(7625), 1, + aux_sym__immediate_decimal_token2, + STATE(4495), 1, sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - STATE(4916), 1, - sym_cell_path, - ACTIONS(2085), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1785), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1783), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176160] = 5, - ACTIONS(249), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_unquoted_token2, + [167402] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - STATE(2498), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(7531), 1, + anon_sym_and2, + ACTIONS(7535), 1, + anon_sym_xor2, + STATE(4351), 1, aux_sym_shebang_repeat1, - STATE(4516), 1, + STATE(4496), 1, sym_comment, - ACTIONS(7447), 14, - sym__newline, + ACTIONS(7599), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376247,24 +378249,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_xor, - anon_sym_or, - [176189] = 8, - ACTIONS(249), 1, + anon_sym_or2, + [167435] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2087), 1, - anon_sym_DASH, - ACTIONS(7406), 1, + ACTIONS(2090), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, anon_sym_DOT, - STATE(4517), 1, + STATE(4497), 1, sym_comment, - STATE(4610), 1, + STATE(4535), 1, aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, STATE(4917), 1, sym_cell_path, - ACTIONS(2089), 11, + STATE(4942), 1, + sym_path, + ACTIONS(2092), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -376276,22 +378277,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176224] = 8, - ACTIONS(249), 1, + [167470] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2095), 1, - anon_sym_DASH, - ACTIONS(7406), 1, + ACTIONS(7629), 1, + anon_sym_EQ, + ACTIONS(7632), 1, + sym__newline, + ACTIONS(7635), 1, + anon_sym_COLON, + ACTIONS(7638), 1, + anon_sym_DASH2, + STATE(6696), 1, + aux_sym_shebang_repeat1, + STATE(4498), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(5154), 2, + sym_param_type, + sym_param_value, + ACTIONS(7627), 8, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167507] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1976), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, anon_sym_DOT, - STATE(4518), 1, + STATE(4499), 1, sym_comment, - STATE(4610), 1, + STATE(4535), 1, aux_sym_cell_path_repeat1, - STATE(4893), 1, + STATE(4942), 1, sym_path, - STATE(4918), 1, + STATE(5163), 1, sym_cell_path, - ACTIONS(2097), 11, + ACTIONS(1978), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -376303,18 +378332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176259] = 6, - ACTIONS(249), 1, + [167542] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7455), 1, - sym__newline, - STATE(4519), 1, + ACTIONS(7588), 1, + anon_sym_and2, + ACTIONS(7595), 1, + anon_sym_xor2, + ACTIONS(7642), 1, + anon_sym_or2, + STATE(4500), 1, sym_comment, - STATE(4586), 1, - aux_sym_shebang_repeat1, - ACTIONS(7443), 13, + ACTIONS(7640), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376326,20 +378356,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, - [176290] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + [167573] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7455), 1, - sym__newline, - STATE(4496), 1, - aux_sym_shebang_repeat1, - STATE(4520), 1, + ACTIONS(7590), 1, + anon_sym_and2, + ACTIONS(7597), 1, + anon_sym_xor2, + ACTIONS(7644), 1, + anon_sym_or2, + STATE(4501), 1, sym_comment, - ACTIONS(7443), 13, + ACTIONS(7640), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376351,20 +378381,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, - [176321] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + [167604] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - ACTIONS(7396), 1, - anon_sym_xor, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4521), 1, + STATE(4502), 1, sym_comment, - ACTIONS(7447), 13, + ACTIONS(6989), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376377,44 +378400,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_or, - [176352] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [167629] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - ACTIONS(7404), 1, - anon_sym_xor, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4522), 1, + ACTIONS(7646), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7648), 1, + aux_sym__immediate_decimal_token2, + STATE(4503), 1, sym_comment, - ACTIONS(7445), 13, + ACTIONS(1739), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 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_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or, - [176383] = 6, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [167660] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - ACTIONS(7404), 1, - anon_sym_xor, - STATE(2498), 1, + ACTIONS(7506), 1, + anon_sym_and2, + ACTIONS(7508), 1, + anon_sym_xor2, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(4523), 1, + STATE(4504), 1, sym_comment, - ACTIONS(7447), 13, + ACTIONS(7580), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376427,15 +378453,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_or, - [176414] = 4, - ACTIONS(249), 1, + anon_sym_or2, + [167691] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4524), 1, + STATE(4505), 1, sym_comment, - ACTIONS(7392), 15, + ACTIONS(7582), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376447,24 +378472,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [176441] = 7, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [167715] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7410), 1, - anon_sym_xor, - STATE(4504), 1, - aux_sym_shebang_repeat1, - STATE(4525), 1, + ACTIONS(7652), 1, + sym__space, + ACTIONS(7654), 1, + aux_sym_record_entry_token1, + STATE(4506), 1, sym_comment, - ACTIONS(7443), 12, + STATE(4557), 1, + aux_sym_command_repeat1, + ACTIONS(7650), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376475,22 +378498,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_or, - [176474] = 7, - ACTIONS(249), 1, + anon_sym_RBRACE, + [167745] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(7658), 1, + anon_sym_DASH2, + ACTIONS(7660), 1, + anon_sym_DOT_DOT2, + STATE(4507), 1, + sym_comment, + ACTIONS(7662), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7656), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7377), 1, - anon_sym_xor, - STATE(4522), 1, - aux_sym_shebang_repeat1, - STATE(4526), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167775] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4508), 1, sym_comment, - ACTIONS(7443), 12, + ACTIONS(7316), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376501,20 +378541,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_or, - [176507] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [167799] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - sym__space, - STATE(4527), 1, + STATE(4509), 1, sym_comment, - ACTIONS(2335), 13, + ACTIONS(7379), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376526,16 +378562,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [167823] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4510), 1, + sym_comment, + ACTIONS(1735), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1737), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [176538] = 4, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [167849] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4524), 1, - aux_sym_shebang_repeat1, - STATE(4528), 1, + STATE(4511), 1, sym_comment, - ACTIONS(7415), 15, + ACTIONS(7316), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376547,18 +378605,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, - [176565] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [167873] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6985), 1, - aux_sym_unquoted_token2, - STATE(4529), 1, + STATE(4512), 1, sym_comment, - ACTIONS(1640), 15, + ACTIONS(7379), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376571,18 +378626,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, - [176592] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [167897] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4530), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(4513), 1, sym_comment, - ACTIONS(1040), 2, + STATE(7418), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7606), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1038), 14, + ACTIONS(7604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376594,19 +378653,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, + [167927] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4514), 1, + sym_comment, + ACTIONS(2125), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2127), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [176619] = 4, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [167953] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4531), 1, + ACTIONS(7664), 1, + sym__newline, + STATE(772), 1, + aux_sym__pipe_separator, + STATE(4515), 1, sym_comment, - STATE(4539), 1, + STATE(5172), 1, aux_sym_shebang_repeat1, - ACTIONS(7415), 15, - sym__newline, + ACTIONS(7667), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2538), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -376616,22 +378700,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_and, - anon_sym_xor, - anon_sym_or, - [176646] = 6, + [167985] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4844), 1, + ACTIONS(2341), 1, sym__space, - STATE(4532), 1, + ACTIONS(7669), 1, + anon_sym_LBRACK2, + STATE(4516), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4846), 13, + ACTIONS(2337), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376645,18 +378723,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176677] = 6, + [168013] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4848), 1, - sym__space, - STATE(4533), 1, + STATE(4517), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4850), 13, + ACTIONS(996), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(994), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376668,23 +378744,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, - [176708] = 7, + anon_sym_QMARK2, + [168039] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4534), 1, + ACTIONS(7671), 1, + sym_long_flag_identifier, + ACTIONS(7673), 1, + anon_sym_EQ2, + STATE(4518), 1, sym_comment, - STATE(4542), 1, - aux_sym_cell_path_repeat1, - STATE(4727), 1, - sym_path, - ACTIONS(1029), 2, + ACTIONS(4936), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1027), 11, + ACTIONS(4938), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376696,18 +378769,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, - [176741] = 6, - ACTIONS(249), 1, + [168069] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7412), 1, - sym__newline, - STATE(4535), 1, + ACTIONS(7675), 1, + anon_sym_EQ2, + ACTIONS(7677), 1, + sym_short_flag_identifier, + STATE(4519), 1, sym_comment, - STATE(4573), 1, - aux_sym_shebang_repeat1, - ACTIONS(7415), 13, + ACTIONS(4956), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4958), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376718,21 +378793,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_xor, - anon_sym_or, - [176772] = 6, - ACTIONS(249), 1, + [168099] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7412), 1, - sym__newline, - STATE(4416), 1, - aux_sym_shebang_repeat1, - STATE(4536), 1, + STATE(4520), 1, sym_comment, - ACTIONS(7415), 13, + ACTIONS(7582), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376743,69 +378811,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [176803] = 7, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [168123] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, sym__newline, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7410), 1, - anon_sym_xor, - STATE(4382), 1, - aux_sym_shebang_repeat1, - STATE(4537), 1, + ACTIONS(7683), 1, + anon_sym_RBRACK, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4521), 1, sym_comment, - ACTIONS(7415), 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, - [176836] = 7, - ACTIONS(249), 1, + STATE(4532), 1, + aux_sym_shebang_repeat1, + STATE(4821), 1, + aux_sym_parameter_parens_repeat1, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [168175] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, sym__newline, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7377), 1, - anon_sym_xor, - STATE(4384), 1, - aux_sym_shebang_repeat1, - STATE(4538), 1, - sym_comment, - ACTIONS(7415), 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, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7693), 1, anon_sym_RPAREN, - anon_sym_or, - [176869] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(2498), 1, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4522), 1, + sym_comment, + STATE(4533), 1, aux_sym_shebang_repeat1, - STATE(4539), 1, + STATE(4823), 1, + aux_sym_parameter_parens_repeat1, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [168227] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4523), 1, sym_comment, - ACTIONS(7392), 15, + ACTIONS(1000), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(998), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376817,18 +378905,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_and, - anon_sym_xor, - anon_sym_or, - [176896] = 4, - ACTIONS(249), 1, + anon_sym_QMARK2, + [168253] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4423), 1, - aux_sym_shebang_repeat1, - STATE(4540), 1, + STATE(4524), 1, sym_comment, - ACTIONS(7443), 15, + ACTIONS(7316), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376840,19 +378924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [176923] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [168277] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4541), 1, + STATE(4525), 1, sym_comment, - ACTIONS(1828), 2, + ACTIONS(1004), 3, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1826), 14, + anon_sym_DOT, + ACTIONS(1002), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376864,23 +378948,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, - [176950] = 6, + anon_sym_QMARK2, + [168303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7504), 1, - anon_sym_DOT, - STATE(4727), 1, - sym_path, - ACTIONS(1033), 2, + STATE(4526), 1, + sym_comment, + ACTIONS(992), 3, ts_builtin_sym_end, sym__space, - STATE(4542), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 11, + anon_sym_DOT, + ACTIONS(990), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376892,18 +378970,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, - [176981] = 6, + anon_sym_QMARK2, + [168329] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2250), 1, + ACTIONS(7697), 1, sym__space, - ACTIONS(2252), 1, - aux_sym_unquoted_token2, - STATE(4543), 1, + STATE(4527), 1, sym_comment, - ACTIONS(2246), 13, + STATE(4582), 1, + aux_sym_command_repeat1, + ACTIONS(7695), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376917,14 +378994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177012] = 4, - ACTIONS(249), 1, + [168357] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4544), 1, + ACTIONS(7699), 1, + anon_sym_and2, + STATE(4528), 1, sym_comment, - ACTIONS(7447), 15, + ACTIONS(7582), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376936,16 +379014,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, + [168383] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7701), 1, + anon_sym_DOT, + ACTIONS(7703), 1, + aux_sym__immediate_decimal_token2, + STATE(4529), 1, + sym_comment, + ACTIONS(1607), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 10, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177039] = 3, - ACTIONS(249), 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, + [168413] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4545), 1, + ACTIONS(7705), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7707), 1, + aux_sym__immediate_decimal_token2, + STATE(4530), 1, + sym_comment, + ACTIONS(1621), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1623), 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, + [168443] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7709), 1, + anon_sym_and2, + ACTIONS(7711), 1, + anon_sym_xor2, + STATE(4531), 1, sym_comment, - ACTIONS(7205), 16, + ACTIONS(7582), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376957,19 +379086,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, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177064] = 4, - ACTIONS(249), 1, + anon_sym_or2, + [168471] = 17, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4478), 1, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + sym__newline, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7713), 1, + anon_sym_RBRACK, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4532), 1, + sym_comment, + STATE(4802), 1, + aux_sym_parameter_parens_repeat1, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5271), 1, aux_sym_shebang_repeat1, - STATE(4546), 1, + STATE(5567), 1, + sym_parameter, + [168523] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + sym__newline, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7715), 1, + anon_sym_RPAREN, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4533), 1, sym_comment, - ACTIONS(7373), 15, + STATE(4806), 1, + aux_sym_parameter_parens_repeat1, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5271), 1, + aux_sym_shebang_repeat1, + STATE(5567), 1, + sym_parameter, + [168575] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4534), 1, + sym_comment, + ACTIONS(1012), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1010), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376982,43 +379178,64 @@ static 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, - [177091] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + [168601] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1054), 1, - anon_sym_DASH, - STATE(4547), 1, + ACTIONS(967), 1, + anon_sym_DASH2, + ACTIONS(7496), 1, + anon_sym_DOT, + STATE(4535), 1, sym_comment, - ACTIONS(1056), 15, + STATE(4545), 1, + aux_sym_cell_path_repeat1, + STATE(4942), 1, + sym_path, + ACTIONS(969), 11, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - [177118] = 5, + [168633] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7699), 1, + anon_sym_and2, + ACTIONS(7717), 1, + anon_sym_xor2, + STATE(4536), 1, + sym_comment, + ACTIONS(7582), 13, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + [168661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7507), 1, - anon_sym_QMARK2, - STATE(4548), 1, + STATE(4537), 1, sym_comment, - ACTIONS(1044), 2, + ACTIONS(1016), 2, sym__space, anon_sym_DOT, - ACTIONS(1042), 13, + ACTIONS(1014), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377032,18 +379249,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177147] = 6, - ACTIONS(249), 1, + [168687] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7455), 1, - sym__newline, - STATE(4427), 1, - aux_sym_shebang_repeat1, - STATE(4549), 1, + STATE(4538), 1, sym_comment, - ACTIONS(7443), 13, + ACTIONS(5152), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377055,19 +379267,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, - [177178] = 4, - ACTIONS(3), 1, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_catch, + [168711] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4550), 1, + STATE(4539), 1, sym_comment, - ACTIONS(1080), 4, + ACTIONS(7582), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1078), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377079,13 +379288,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_DOT_DOT2, - [177205] = 3, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [168735] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4551), 1, + STATE(4540), 1, sym_comment, - ACTIONS(7240), 16, + ACTIONS(1008), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377099,21 +379313,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, - [177230] = 6, - ACTIONS(249), 1, + [168761] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7421), 1, - sym__newline, - STATE(4508), 1, - aux_sym_shebang_repeat1, - STATE(4552), 1, + ACTIONS(7709), 1, + anon_sym_and2, + STATE(4541), 1, sym_comment, - ACTIONS(7373), 13, + ACTIONS(7582), 14, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377124,15 +379333,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, - [177261] = 3, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [168787] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4553), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + STATE(4542), 1, sym_comment, - ACTIONS(7205), 16, + ACTIONS(1874), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377144,22 +379359,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177286] = 5, - ACTIONS(3), 1, + [168817] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_QMARK2, - STATE(4554), 1, + STATE(4543), 1, sym_comment, - ACTIONS(1050), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1048), 13, + ACTIONS(7719), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377172,46 +379377,78 @@ static 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, - [177315] = 8, - ACTIONS(249), 1, + anon_sym_catch, + [168841] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + sym__newline, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7721), 1, + anon_sym_PIPE, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4544), 1, + sym_comment, + STATE(4989), 1, + aux_sym_parameter_parens_repeat1, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5271), 1, + aux_sym_shebang_repeat1, + STATE(5567), 1, + sym_parameter, + [168893] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5996), 1, + ACTIONS(971), 1, + anon_sym_DASH2, + ACTIONS(7723), 1, anon_sym_DOT, - STATE(2752), 1, + STATE(4942), 1, sym_path, - STATE(2899), 1, - aux_sym_cell_path_repeat1, - STATE(4555), 1, + STATE(4545), 2, sym_comment, - STATE(5195), 1, - sym_cell_path, - ACTIONS(7511), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7513), 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, - [177350] = 6, + aux_sym_cell_path_repeat1, + ACTIONS(973), 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, + [168923] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(7517), 1, - sym__space, - STATE(4556), 1, + STATE(4546), 1, sym_comment, - STATE(7583), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7515), 13, + ACTIONS(2250), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2248), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377223,42 +379460,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, - [177381] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7519), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7521), 1, - aux_sym__immediate_decimal_token2, - STATE(4557), 1, - sym_comment, - ACTIONS(1528), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1530), 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, - [177412] = 4, + aux_sym_unquoted_token4, + [168949] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4558), 1, + STATE(4547), 1, sym_comment, - ACTIONS(1717), 2, + ACTIONS(5086), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1715), 14, + ACTIONS(5088), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377272,16 +379483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [177439] = 4, + [168975] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4559), 1, + STATE(4548), 1, sym_comment, - ACTIONS(1056), 2, + ACTIONS(5020), 2, sym__space, - anon_sym_DOT, - ACTIONS(1054), 14, + anon_sym_LPAREN2, + ACTIONS(5022), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377295,13 +379505,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [177466] = 3, - ACTIONS(249), 1, + [169001] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4560), 1, + STATE(4549), 1, sym_comment, - ACTIONS(7240), 16, + ACTIONS(7379), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377313,17 +379523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177491] = 3, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [169025] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4561), 1, + ACTIONS(7709), 1, + anon_sym_and2, + STATE(4550), 1, sym_comment, - ACTIONS(7205), 16, + ACTIONS(7582), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377335,19 +379546,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177516] = 4, - ACTIONS(249), 1, + anon_sym_xor2, + anon_sym_or2, + [169051] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4398), 1, - aux_sym_shebang_repeat1, - STATE(4562), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(4551), 1, sym_comment, - ACTIONS(7382), 15, + ACTIONS(2218), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2214), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377359,39 +379572,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_and, - anon_sym_xor, - anon_sym_or, - [177543] = 4, - ACTIONS(249), 1, + [169081] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4400), 1, - aux_sym_shebang_repeat1, - STATE(4563), 1, + ACTIONS(7660), 1, + anon_sym_DOT_DOT2, + ACTIONS(7728), 1, + anon_sym_DASH2, + STATE(4552), 1, sym_comment, - ACTIONS(7382), 15, + ACTIONS(7662), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7726), 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, - [177570] = 3, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [169111] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4564), 1, + ACTIONS(1721), 1, + sym__space, + ACTIONS(7157), 1, + aux_sym_unquoted_token2, + STATE(4553), 1, sym_comment, - ACTIONS(7240), 16, + ACTIONS(1709), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377405,15 +379619,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, - [177595] = 3, - ACTIONS(249), 1, + [169139] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4565), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + STATE(4554), 1, sym_comment, - ACTIONS(7523), 16, + ACTIONS(2189), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2187), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377425,23 +379643,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_and, - anon_sym_xor, - anon_sym_or, - [177620] = 6, - ACTIONS(249), 1, + [169169] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - ACTIONS(7396), 1, - anon_sym_xor, - STATE(2498), 1, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + sym__newline, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7730), 1, + anon_sym_RBRACK, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4555), 1, + sym_comment, + STATE(4569), 1, aux_sym_shebang_repeat1, - STATE(4566), 1, + STATE(4877), 1, + aux_sym_parameter_parens_repeat1, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [169221] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + STATE(4556), 1, sym_comment, - ACTIONS(7447), 13, + ACTIONS(1886), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1878), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377453,47 +379702,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_or, - [177651] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1893), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, - STATE(4567), 1, - sym_comment, - STATE(4610), 1, - aux_sym_cell_path_repeat1, - STATE(4891), 1, - sym_cell_path, - STATE(4893), 1, - sym_path, - ACTIONS(1895), 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, - [177686] = 6, - ACTIONS(249), 1, + [169251] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_and, - ACTIONS(7404), 1, - anon_sym_xor, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4568), 1, + ACTIONS(7697), 1, + sym__space, + STATE(4557), 1, sym_comment, - ACTIONS(7447), 13, + STATE(4582), 1, + aux_sym_command_repeat1, + ACTIONS(7732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377506,19 +379724,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_or, - [177717] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + [169279] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7375), 1, - anon_sym_and, - ACTIONS(7421), 1, - sym__newline, - STATE(4516), 1, - aux_sym_shebang_repeat1, - STATE(4569), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(4558), 1, sym_comment, - ACTIONS(7373), 13, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4975), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4977), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377529,23 +379749,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [177748] = 7, - ACTIONS(249), 1, + [169309] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, sym__newline, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7410), 1, - anon_sym_xor, - STATE(4521), 1, - aux_sym_shebang_repeat1, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7734), 1, + anon_sym_RPAREN, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4559), 1, + sym_comment, STATE(4570), 1, + aux_sym_shebang_repeat1, + STATE(4878), 1, + aux_sym_parameter_parens_repeat1, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [169361] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(4560), 1, sym_comment, - ACTIONS(7373), 12, + ACTIONS(2224), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2222), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377556,14 +379808,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_or, - [177781] = 3, - ACTIONS(249), 1, + [169391] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4571), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(4561), 1, sym_comment, - ACTIONS(7523), 16, + ACTIONS(2210), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2206), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377575,44 +379832,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, + [169421] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7736), 1, + anon_sym_DOT, + ACTIONS(7739), 1, + aux_sym__immediate_decimal_token2, + STATE(4562), 1, + sym_comment, + ACTIONS(1607), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1609), 11, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [169451] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7739), 1, + aux_sym__immediate_decimal_token2, + STATE(4563), 1, + sym_comment, + ACTIONS(1607), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1609), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [169479] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7741), 1, + aux_sym__immediate_decimal_token2, + STATE(4564), 1, + sym_comment, + ACTIONS(1783), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1785), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177806] = 4, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [169507] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1038), 1, - anon_sym_DASH, - STATE(4572), 1, + ACTIONS(1030), 1, + anon_sym_DASH2, + ACTIONS(7660), 1, + anon_sym_DOT_DOT2, + STATE(4565), 1, sym_comment, - ACTIONS(1040), 15, + ACTIONS(7662), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1032), 11, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - [177833] = 5, - ACTIONS(249), 1, + [169537] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(4566), 1, sym_comment, - ACTIONS(7392), 14, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4979), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4981), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377624,17 +379950,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_xor, - anon_sym_or, - [177862] = 4, - ACTIONS(249), 1, + [169567] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7484), 1, - anon_sym_and, - STATE(4574), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(4567), 1, sym_comment, - ACTIONS(7523), 15, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4983), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4985), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377646,18 +379974,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_xor, - anon_sym_or, - [177889] = 4, - ACTIONS(249), 1, + [169597] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7490), 1, - anon_sym_and, - STATE(4575), 1, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + STATE(4568), 1, sym_comment, - ACTIONS(7523), 15, + ACTIONS(2238), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2234), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377669,20 +379998,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, + [169627] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + sym__newline, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7743), 1, + anon_sym_RBRACK, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4569), 1, + sym_comment, + STATE(4884), 1, + aux_sym_parameter_parens_repeat1, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5271), 1, + aux_sym_shebang_repeat1, + STATE(5567), 1, + sym_parameter, + [169679] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + sym__newline, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7745), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [177916] = 5, - ACTIONS(249), 1, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4570), 1, + sym_comment, + STATE(4885), 1, + aux_sym_parameter_parens_repeat1, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5271), 1, + aux_sym_shebang_repeat1, + STATE(5567), 1, + sym_parameter, + [169731] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7484), 1, - anon_sym_and, - ACTIONS(7486), 1, - anon_sym_xor, - STATE(4576), 1, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + sym__newline, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7747), 1, + anon_sym_PIPE, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4544), 1, + aux_sym_shebang_repeat1, + STATE(4571), 1, + sym_comment, + STATE(4803), 1, + aux_sym_parameter_parens_repeat1, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [169783] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4572), 1, + sym_comment, + ACTIONS(1018), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1020), 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, + [169809] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7749), 1, + aux_sym__immediate_decimal_token2, + STATE(4573), 1, + sym_comment, + ACTIONS(1673), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1675), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [169837] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7709), 1, + anon_sym_and2, + ACTIONS(7711), 1, + anon_sym_xor2, + ACTIONS(7751), 1, + anon_sym_or2, + STATE(4574), 1, sym_comment, - ACTIONS(7523), 14, + ACTIONS(7640), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377694,19 +380172,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_or, - [177945] = 5, - ACTIONS(249), 1, + [169867] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7490), 1, - anon_sym_and, - ACTIONS(7492), 1, - anon_sym_xor, - STATE(4577), 1, + ACTIONS(7699), 1, + anon_sym_and2, + STATE(4575), 1, sym_comment, - ACTIONS(7523), 14, + ACTIONS(7582), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377718,15 +380192,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, + [169893] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2167), 1, + anon_sym_DASH2, + ACTIONS(7753), 1, + anon_sym_DOT_DOT2, + STATE(4576), 1, + sym_comment, + ACTIONS(7755), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2173), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_or, - [177974] = 3, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [169923] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2175), 1, + anon_sym_DASH2, + ACTIONS(7757), 1, + anon_sym_DOT_DOT2, + STATE(4577), 1, + sym_comment, + ACTIONS(7759), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2181), 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, + [169953] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2133), 1, + anon_sym_DASH2, + ACTIONS(7761), 1, + anon_sym_DOT_DOT2, STATE(4578), 1, sym_comment, - ACTIONS(7523), 16, + ACTIONS(7763), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2139), 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, + [169983] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7699), 1, + anon_sym_and2, + ACTIONS(7717), 1, + anon_sym_xor2, + ACTIONS(7765), 1, + anon_sym_or2, + STATE(4579), 1, + sym_comment, + ACTIONS(7640), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377738,17 +380290,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177999] = 3, - ACTIONS(249), 1, + [170013] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4579), 1, + STATE(4580), 1, sym_comment, - ACTIONS(7523), 16, + ACTIONS(6989), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377760,19 +380308,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, - [178024] = 4, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [170037] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7484), 1, - anon_sym_and, - STATE(4580), 1, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(4581), 1, sym_comment, - ACTIONS(7523), 15, + ACTIONS(1032), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1030), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377784,18 +380335,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_xor, - anon_sym_or, - [178051] = 4, - ACTIONS(249), 1, + [170067] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7490), 1, - anon_sym_and, - STATE(4581), 1, + ACTIONS(7769), 1, + sym__space, + STATE(4582), 2, sym_comment, - ACTIONS(7523), 15, + aux_sym_command_repeat1, + ACTIONS(7767), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377809,18 +380357,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [178078] = 5, - ACTIONS(249), 1, + [170093] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7484), 1, - anon_sym_and, - ACTIONS(7486), 1, - anon_sym_xor, - STATE(4582), 1, + STATE(4583), 1, + sym_comment, + ACTIONS(2129), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2131), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170119] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7772), 1, + anon_sym_QMARK2, + STATE(4584), 1, sym_comment, - ACTIONS(7523), 14, + ACTIONS(980), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(978), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377832,19 +380402,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_or, - [178107] = 5, - ACTIONS(249), 1, + [170147] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7490), 1, - anon_sym_and, - ACTIONS(7492), 1, - anon_sym_xor, - STATE(4583), 1, + ACTIONS(7283), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7774), 1, + anon_sym_DOT, + STATE(4585), 1, sym_comment, - ACTIONS(7523), 14, + ACTIONS(1757), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1755), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377856,23 +380426,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_or, - [178136] = 7, - ACTIONS(249), 1, + [170177] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and, - ACTIONS(7410), 1, - anon_sym_xor, - STATE(4428), 1, - aux_sym_shebang_repeat1, - STATE(4584), 1, + ACTIONS(7776), 1, + anon_sym_QMARK2, + STATE(4586), 1, sym_comment, - ACTIONS(7443), 12, + ACTIONS(986), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(984), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377883,20 +380449,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_or, - [178169] = 6, + [170205] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1717), 1, - sym__space, - ACTIONS(7048), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7525), 1, - anon_sym_DOT, - STATE(4585), 1, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + ACTIONS(2258), 1, + aux_sym_unquoted_token2, + STATE(4587), 1, sym_comment, - ACTIONS(1715), 13, + ACTIONS(2256), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2252), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377908,18 +380473,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, - [178200] = 5, - ACTIONS(249), 1, + [170235] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7394), 1, - anon_sym_and, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_comment, - ACTIONS(7445), 14, + ACTIONS(1757), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1755), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377931,18 +380494,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, + aux_sym_unquoted_token2, + [170261] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2159), 1, + anon_sym_DASH2, + ACTIONS(7778), 1, + anon_sym_DOT_DOT2, + STATE(4589), 1, + sym_comment, + ACTIONS(7780), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2165), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [178229] = 4, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170291] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4587), 1, + STATE(4590), 1, sym_comment, - ACTIONS(1078), 2, - anon_sym_DASH, + ACTIONS(2183), 2, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1080), 13, + ACTIONS(2185), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -377956,22 +380541,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [178255] = 7, - ACTIONS(249), 1, + [170317] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7527), 1, - sym__newline, - STATE(727), 1, - aux_sym__pipe_separator, - STATE(4588), 1, + ACTIONS(7652), 1, + sym__space, + ACTIONS(7782), 1, + aux_sym_record_entry_token1, + STATE(4557), 1, + aux_sym_command_repeat1, + STATE(4591), 1, sym_comment, - STATE(5265), 1, - aux_sym_shebang_repeat1, - ACTIONS(7530), 3, + ACTIONS(7650), 12, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3015), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -377981,19 +380564,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, - [178287] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + [170347] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7532), 1, - anon_sym_and, - ACTIONS(7534), 1, - anon_sym_xor, - ACTIONS(7536), 1, - anon_sym_or, - STATE(4589), 1, + ACTIONS(7697), 1, + sym__space, + STATE(4557), 1, + aux_sym_command_repeat1, + STATE(4592), 1, sym_comment, - ACTIONS(7482), 12, - ts_builtin_sym_end, + ACTIONS(7650), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378005,15 +380586,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, - [178317] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [170375] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4590), 1, + ACTIONS(7660), 1, + anon_sym_DOT_DOT2, + ACTIONS(7786), 1, + anon_sym_DASH2, + STATE(4593), 1, sym_comment, - ACTIONS(6839), 15, - ts_builtin_sym_end, + ACTIONS(7662), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7784), 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, + [170405] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7788), 1, sym__newline, + STATE(772), 1, + aux_sym__pipe_separator, + STATE(4594), 1, + sym_comment, + STATE(5172), 1, + aux_sym_shebang_repeat1, + ACTIONS(7791), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2538), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -378023,20 +380637,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, - [178341] = 5, - ACTIONS(249), 1, + [170437] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_and, - ACTIONS(7540), 1, - anon_sym_xor, - STATE(4591), 1, + STATE(4595), 1, sym_comment, - ACTIONS(7523), 13, + ACTIONS(1741), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1739), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378048,14 +380658,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_or, - [178369] = 3, - ACTIONS(249), 1, + aux_sym_unquoted_token2, + [170463] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4592), 1, + ACTIONS(5051), 1, + sym__space, + ACTIONS(7793), 1, + anon_sym_EQ2, + STATE(4596), 1, sym_comment, - ACTIONS(7523), 15, - ts_builtin_sym_end, + ACTIONS(5053), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378067,53 +380680,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, - [178393] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7544), 1, - sym__newline, - ACTIONS(7546), 1, - anon_sym_RBRACK, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4593), 1, - sym_comment, - STATE(4966), 1, - aux_sym_parameter_parens_repeat1, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5350), 1, - aux_sym_shebang_repeat1, - STATE(5522), 1, - sym_parameter, - [178445] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [170491] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4594), 1, - sym_comment, - ACTIONS(4995), 2, + ACTIONS(5014), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(4997), 13, + ACTIONS(7795), 1, + anon_sym_EQ2, + STATE(4597), 1, + sym_comment, + ACTIONS(5016), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378127,15 +380705,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178471] = 4, - ACTIONS(249), 1, + [170519] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_and, - STATE(4595), 1, + STATE(4598), 1, sym_comment, - ACTIONS(7523), 14, + ACTIONS(1785), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1783), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378147,14 +380726,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_xor, - anon_sym_or, - [178497] = 3, - ACTIONS(249), 1, + aux_sym_unquoted_token2, + [170545] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4596), 1, + ACTIONS(7709), 1, + anon_sym_and2, + ACTIONS(7711), 1, + anon_sym_xor2, + STATE(4599), 1, sym_comment, - ACTIONS(2291), 15, + ACTIONS(7582), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378167,54 +380749,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, - [178521] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7544), 1, - sym__newline, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7556), 1, - anon_sym_RPAREN, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4597), 1, - sym_comment, - STATE(4967), 1, - aux_sym_parameter_parens_repeat1, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5350), 1, - aux_sym_shebang_repeat1, - STATE(5522), 1, - sym_parameter, - [178573] = 5, - ACTIONS(3), 1, + anon_sym_or2, + [170573] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1640), 1, - sym__space, - ACTIONS(7021), 1, - aux_sym_unquoted_token2, - STATE(4598), 1, + ACTIONS(7699), 1, + anon_sym_and2, + ACTIONS(7717), 1, + anon_sym_xor2, + STATE(4600), 1, sym_comment, - ACTIONS(1628), 13, + ACTIONS(7582), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378226,44 +380772,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, - [178601] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7558), 1, - aux_sym__immediate_decimal_token2, - STATE(4599), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1538), 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, - [178629] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [170601] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token2, - STATE(4600), 1, + STATE(4601), 1, sym_comment, - ACTIONS(2250), 2, + ACTIONS(7582), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2246), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378275,13 +380791,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, - [178659] = 3, - ACTIONS(249), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [170625] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4601), 1, + STATE(4602), 1, sym_comment, - ACTIONS(7205), 15, + ACTIONS(1892), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1890), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378293,20 +380815,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, - [178683] = 4, - ACTIONS(249), 1, + aux_sym_unquoted_token2, + [170651] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4602), 1, + ACTIONS(7518), 1, + aux_sym__immediate_decimal_token2, + STATE(4603), 1, sym_comment, - ACTIONS(1670), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1672), 13, - anon_sym_EQ, + ACTIONS(1755), 3, sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 11, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -378316,99 +380838,75 @@ 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, - [178709] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4603), 1, - sym_comment, - ACTIONS(1771), 3, - ts_builtin_sym_end, - sym__space, anon_sym_LPAREN2, - ACTIONS(1769), 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, - [178735] = 17, - ACTIONS(249), 1, + [170679] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7542), 1, + ACTIONS(7797), 1, sym_identifier, - ACTIONS(7544), 1, - sym__newline, - ACTIONS(7548), 1, + ACTIONS(7802), 1, anon_sym_DOLLAR, - ACTIONS(7550), 1, + ACTIONS(7805), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7808), 1, anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7560), 1, - anon_sym_RBRACK, - STATE(4140), 1, + ACTIONS(7811), 1, + anon_sym_DASH2, + STATE(4096), 1, sym_param_long_flag, - STATE(4307), 1, + STATE(4235), 1, sym__param_name, - STATE(4604), 1, - sym_comment, - STATE(4960), 1, - aux_sym_parameter_parens_repeat1, - STATE(5203), 1, + STATE(5099), 1, sym_param_rest, - STATE(5209), 1, + STATE(5100), 1, sym_param_opt, - STATE(5210), 1, + STATE(5139), 1, sym_param_short_flag, - STATE(5350), 1, - aux_sym_shebang_repeat1, - STATE(5522), 1, + STATE(5567), 1, sym_parameter, - [178787] = 6, - ACTIONS(249), 1, + STATE(4604), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + ACTIONS(7800), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + [170725] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7564), 1, - anon_sym_DASH, - ACTIONS(7566), 1, - anon_sym_DOT_DOT2, + ACTIONS(7697), 1, + sym__space, + STATE(4527), 1, + aux_sym_command_repeat1, STATE(4605), 1, sym_comment, - ACTIONS(7568), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7562), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7814), 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, - [178817] = 4, + anon_sym_RBRACE, + [170753] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4249), 1, + anon_sym_LPAREN2, STATE(4606), 1, sym_comment, - ACTIONS(2291), 3, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4971), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2289), 12, + ACTIONS(4973), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378420,14 +380918,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_unquoted_token4, - [178843] = 3, - ACTIONS(249), 1, + [170783] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2405), 1, + sym__space, STATE(4607), 1, sym_comment, - ACTIONS(7240), 15, - ts_builtin_sym_end, + ACTIONS(2403), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378439,18 +380937,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, - [178867] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [170808] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7532), 1, - anon_sym_and, + ACTIONS(2494), 1, + sym__space, STATE(4608), 1, sym_comment, - ACTIONS(7523), 14, - ts_builtin_sym_end, + ACTIONS(2492), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378462,19 +380958,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_xor, - anon_sym_or, - [178893] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [170833] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_and, - ACTIONS(7540), 1, - anon_sym_xor, + ACTIONS(2510), 1, + sym__space, STATE(4609), 1, sym_comment, - ACTIONS(7523), 13, - ts_builtin_sym_end, + ACTIONS(2508), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378486,63 +380979,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [178921] = 7, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [170858] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1027), 1, - anon_sym_DASH, - ACTIONS(7406), 1, - anon_sym_DOT, + ACTIONS(7816), 1, + ts_builtin_sym_end, + ACTIONS(7818), 1, + sym__space, STATE(4610), 1, sym_comment, - STATE(4657), 1, - aux_sym_cell_path_repeat1, - STATE(4893), 1, - sym_path, - ACTIONS(1029), 11, - anon_sym_EQ, - sym_identifier, + STATE(4755), 1, + aux_sym_command_repeat1, + ACTIONS(7695), 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, - [178953] = 4, - ACTIONS(249), 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, + [170887] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2369), 1, + sym__space, STATE(4611), 1, sym_comment, - ACTIONS(2105), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2107), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2367), 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, - [178979] = 4, + anon_sym_RBRACE, + [170912] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1974), 1, + sym__space, STATE(4612), 1, sym_comment, - ACTIONS(1072), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1070), 13, + ACTIONS(1972), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378556,16 +381046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179005] = 5, + [170937] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(5685), 1, sym__space, STATE(4613), 1, sym_comment, - STATE(4668), 1, - aux_sym_command_repeat1, - ACTIONS(7570), 13, + ACTIONS(5683), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378579,63 +381067,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179033] = 5, - ACTIONS(249), 1, + [170962] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7574), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(5149), 1, + sym__newline, + ACTIONS(7820), 1, + anon_sym_catch, + STATE(1816), 1, + aux_sym_shebang_repeat1, STATE(4614), 1, sym_comment, - ACTIONS(1596), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1598), 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, - [179061] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7576), 1, - anon_sym_DOT, - ACTIONS(7578), 1, - aux_sym__immediate_decimal_token2, - STATE(4615), 1, - sym_comment, - ACTIONS(1536), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 10, - sym__newline, + ACTIONS(1296), 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, - 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, - [179091] = 5, + [170991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(1990), 1, sym__space, - STATE(4616), 1, + STATE(4615), 1, sym_comment, - STATE(4629), 1, - aux_sym_command_repeat1, - ACTIONS(7580), 13, + ACTIONS(1988), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378649,13 +381111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179119] = 3, - ACTIONS(249), 1, + [171016] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4617), 1, + ACTIONS(1032), 1, + sym__space, + STATE(4616), 1, sym_comment, - ACTIONS(5159), 15, - ts_builtin_sym_end, + ACTIONS(1030), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378667,25 +381130,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, - [179143] = 7, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171041] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7582), 1, - sym__newline, - STATE(727), 1, - aux_sym__pipe_separator, - STATE(4618), 1, + ACTIONS(1994), 1, + sym__space, + STATE(4617), 1, sym_comment, - STATE(5265), 1, - aux_sym_shebang_repeat1, - ACTIONS(7585), 3, + ACTIONS(1992), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3015), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -378695,12 +381151,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, - [179175] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171066] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4619), 1, + STATE(4618), 1, sym_comment, - ACTIONS(5151), 15, + ACTIONS(5152), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378713,45 +381171,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [179199] = 6, - ACTIONS(249), 1, + anon_sym_else, + anon_sym_catch, + [171089] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7587), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7589), 1, - aux_sym__immediate_decimal_token2, - STATE(4620), 1, - sym_comment, - ACTIONS(1528), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 10, + ACTIONS(4055), 1, + anon_sym_DOLLAR, + ACTIONS(7823), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(7825), 1, + sym__space, + ACTIONS(7827), 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, - [179229] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7532), 1, - anon_sym_and, - ACTIONS(7534), 1, - anon_sym_xor, - STATE(4621), 1, + ACTIONS(7829), 1, + anon_sym_DASH2, + ACTIONS(7831), 1, + anon_sym_LBRACE, + STATE(1792), 1, + sym_block, + STATE(1793), 1, + sym_val_closure, + STATE(4619), 1, sym_comment, - ACTIONS(7523), 13, - ts_builtin_sym_end, + STATE(5696), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7409), 1, + sym__flag, + STATE(781), 2, + sym__blosure, + sym_val_variable, + STATE(4685), 2, + sym_short_flag, + sym_long_flag, + [171134] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7833), 1, sym__newline, + ACTIONS(7838), 1, + anon_sym_else, + STATE(4620), 1, + sym_comment, + STATE(4710), 1, + aux_sym_shebang_repeat1, + ACTIONS(7836), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378762,17 +381226,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_or, - [179257] = 4, + anon_sym_RPAREN, + [171163] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4622), 1, - sym_comment, - ACTIONS(1828), 3, - ts_builtin_sym_end, + ACTIONS(2439), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1826), 12, + STATE(4621), 1, + sym_comment, + ACTIONS(2437), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378784,14 +381246,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_unquoted_token2, - [179283] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171188] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4623), 1, + ACTIONS(2006), 1, + sym__space, + STATE(4622), 1, sym_comment, - ACTIONS(7205), 15, - ts_builtin_sym_end, + ACTIONS(2004), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378803,22 +381267,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, - [179307] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171213] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(4624), 1, - sym_comment, - ACTIONS(2285), 2, - ts_builtin_sym_end, + ACTIONS(2458), 1, sym__space, - ACTIONS(2281), 11, + STATE(4623), 1, + sym_comment, + ACTIONS(2456), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378830,77 +381288,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, - [179337] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7591), 1, - aux_sym__immediate_decimal_token2, - STATE(4625), 1, - sym_comment, - ACTIONS(1769), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1771), 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, - [179365] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7544), 1, - sym__newline, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7593), 1, anon_sym_RPAREN, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4626), 1, - sym_comment, - STATE(4961), 1, - aux_sym_parameter_parens_repeat1, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5350), 1, - aux_sym_shebang_repeat1, - STATE(5522), 1, - sym_parameter, - [179417] = 6, + anon_sym_RBRACE, + [171238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(4627), 1, - sym_comment, - ACTIONS(1092), 2, - ts_builtin_sym_end, + ACTIONS(2462), 1, sym__space, - ACTIONS(1090), 11, + STATE(4624), 1, + sym_comment, + ACTIONS(2460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378912,40 +381309,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, - [179447] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7558), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7595), 1, - anon_sym_DOT, - STATE(4628), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1538), 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, - [179477] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171263] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(2070), 1, sym__space, - STATE(4629), 1, + STATE(4625), 1, sym_comment, - STATE(4674), 1, - aux_sym_command_repeat1, - ACTIONS(7598), 13, + ACTIONS(2068), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378959,16 +381332,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179505] = 4, + [171288] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4630), 1, - sym_comment, - ACTIONS(1040), 3, - ts_builtin_sym_end, + ACTIONS(1911), 1, sym__space, - anon_sym_DOT, - ACTIONS(1038), 12, + STATE(4626), 1, + sym_comment, + ACTIONS(1907), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378980,14 +381351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [179531] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171313] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4631), 1, + ACTIONS(2345), 1, + sym__space, + STATE(4627), 1, sym_comment, - ACTIONS(7240), 15, - ts_builtin_sym_end, + ACTIONS(2343), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378999,16 +381372,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, - [179555] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171338] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4632), 1, + ACTIONS(2353), 1, + sym__space, + STATE(4628), 1, sym_comment, - ACTIONS(7523), 15, - ts_builtin_sym_end, + ACTIONS(2351), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379020,22 +381393,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, - [179579] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171363] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4633), 1, - sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4808), 2, - ts_builtin_sym_end, + ACTIONS(1915), 1, sym__space, - ACTIONS(4810), 11, + STATE(4629), 1, + sym_comment, + ACTIONS(1913), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379047,19 +381414,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, - [179609] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7600), 1, - anon_sym_EQ2, - ACTIONS(7602), 1, - sym_short_flag_identifier, - STATE(4634), 1, - sym_comment, - ACTIONS(4927), 2, - ts_builtin_sym_end, + ACTIONS(2357), 1, sym__space, - ACTIONS(4925), 11, + STATE(4630), 1, + sym_comment, + ACTIONS(2355), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379071,51 +381435,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, - [179639] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7544), 1, - sym__newline, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7604), 1, - anon_sym_RBRACK, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4593), 1, - aux_sym_shebang_repeat1, - STATE(4635), 1, - sym_comment, - STATE(5055), 1, - aux_sym_parameter_parens_repeat1, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [179691] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2359), 1, + ACTIONS(2361), 1, sym__space, - ACTIONS(7606), 1, - anon_sym_LBRACK2, - STATE(4636), 1, + STATE(4631), 1, sym_comment, - ACTIONS(2355), 13, + ACTIONS(2359), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379129,16 +381458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179719] = 4, + [171438] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4637), 1, - sym_comment, - ACTIONS(1064), 3, - ts_builtin_sym_end, + ACTIONS(1721), 1, sym__space, - anon_sym_DOT, - ACTIONS(1062), 12, + STATE(4632), 1, + sym_comment, + ACTIONS(1709), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379150,20 +381477,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, - [179745] = 6, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171463] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7566), 1, - anon_sym_DOT_DOT2, - ACTIONS(7610), 1, - anon_sym_DASH, - STATE(4638), 1, + ACTIONS(2337), 1, + anon_sym_DASH2, + ACTIONS(7840), 1, + anon_sym_LBRACK2, + STATE(4633), 1, sym_comment, - ACTIONS(7568), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7608), 11, + ACTIONS(2341), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -379175,16 +381500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179775] = 4, + anon_sym_LBRACE, + [171490] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4639), 1, - sym_comment, - ACTIONS(1717), 3, - ts_builtin_sym_end, + ACTIONS(2365), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1715), 12, + STATE(4634), 1, + sym_comment, + ACTIONS(2363), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379196,79 +381520,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_unquoted_token2, - [179801] = 6, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171515] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7566), 1, - anon_sym_DOT_DOT2, - ACTIONS(7614), 1, - anon_sym_DASH, - STATE(4640), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym__unquoted_in_list_token4, + STATE(4635), 1, sym_comment, - ACTIONS(7568), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7612), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2210), 5, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179831] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, + ACTIONS(2206), 7, + anon_sym_EQ, sym_identifier, - ACTIONS(7544), 1, - sym__newline, - ACTIONS(7548), 1, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(7550), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7616), 1, - anon_sym_RPAREN, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4597), 1, - aux_sym_shebang_repeat1, - STATE(4641), 1, - sym_comment, - STATE(5056), 1, - aux_sym_parameter_parens_repeat1, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [179883] = 6, + anon_sym_DASH2, + [171544] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7618), 1, + ACTIONS(7842), 1, + sym__newline, + ACTIONS(7844), 1, sym__space, - ACTIONS(7620), 1, - aux_sym_record_entry_token1, - STATE(4629), 1, - aux_sym_command_repeat1, - STATE(4642), 1, + STATE(4636), 1, sym_comment, - ACTIONS(7580), 12, - sym__newline, + STATE(4643), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7846), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379279,21 +381567,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, - [179913] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [171573] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4643), 1, - sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4812), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4814), 11, + ACTIONS(7848), 1, sym__newline, + ACTIONS(7853), 1, + anon_sym_catch, + STATE(4637), 1, + sym_comment, + STATE(4664), 1, + aux_sym_shebang_repeat1, + ACTIONS(7851), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379304,19 +381590,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, - [179943] = 6, + anon_sym_RPAREN, + [171602] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1558), 1, + ACTIONS(7218), 1, aux_sym_unquoted_token2, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - STATE(4644), 1, + STATE(4638), 1, sym_comment, - ACTIONS(2339), 2, + ACTIONS(1721), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2335), 11, + ACTIONS(1709), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379328,51 +381613,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, - [179973] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7544), 1, - sym__newline, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7622), 1, - anon_sym_PIPE, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4645), 1, - sym_comment, - STATE(4658), 1, - aux_sym_shebang_repeat1, - STATE(4953), 1, - aux_sym_parameter_parens_repeat1, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [180025] = 4, + [171629] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4646), 1, - sym_comment, - ACTIONS(1705), 3, - ts_builtin_sym_end, + ACTIONS(2096), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1703), 12, + STATE(4639), 1, + sym_comment, + ACTIONS(2094), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379384,82 +381632,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, - [180051] = 14, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7624), 1, - sym_identifier, - ACTIONS(7629), 1, - anon_sym_DOLLAR, - ACTIONS(7632), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7635), 1, - anon_sym_DASH_DASH, - ACTIONS(7638), 1, - anon_sym_DASH, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - STATE(4647), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(7627), 3, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - [180097] = 17, - ACTIONS(249), 1, + anon_sym_RBRACE, + [171654] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7544), 1, + ACTIONS(7855), 1, sym__newline, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7641), 1, - anon_sym_RBRACK, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4604), 1, - aux_sym_shebang_repeat1, - STATE(4648), 1, - sym_comment, - STATE(4955), 1, - aux_sym_parameter_parens_repeat1, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [180149] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4649), 1, + ACTIONS(7860), 1, + anon_sym_catch, + STATE(4640), 1, sym_comment, - ACTIONS(7523), 15, - ts_builtin_sym_end, - sym__newline, + STATE(4666), 1, + aux_sym_shebang_repeat1, + ACTIONS(7858), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379470,40 +381656,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, - [180173] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4650), 1, - sym_comment, - ACTIONS(2218), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2220), 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, - [180199] = 4, - ACTIONS(249), 1, + [171683] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_and, - STATE(4651), 1, + ACTIONS(2108), 1, + sym__space, + STATE(4641), 1, sym_comment, - ACTIONS(7523), 14, - ts_builtin_sym_end, + ACTIONS(2106), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379515,20 +381676,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_xor, - anon_sym_or, - [180225] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171708] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7643), 1, - anon_sym_QMARK2, - STATE(4652), 1, + STATE(4642), 1, sym_comment, - ACTIONS(1044), 3, + ACTIONS(5086), 3, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1042), 11, + anon_sym_LPAREN2, + ACTIONS(5088), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379540,19 +381699,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, - [180253] = 5, + [171733] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_QMARK2, - STATE(4653), 1, - sym_comment, - ACTIONS(1050), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1048), 11, + ACTIONS(7842), 1, sym__newline, + ACTIONS(7844), 1, + sym__space, + STATE(4643), 1, + sym_comment, + STATE(4698), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7862), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379563,66 +381721,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, - [180281] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2222), 1, - anon_sym_DASH, - ACTIONS(7647), 1, - anon_sym_DOT_DOT2, - STATE(4654), 1, - sym_comment, - ACTIONS(7649), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - 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, - [180311] = 4, - ACTIONS(249), 1, + [171762] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4655), 1, - sym_comment, - ACTIONS(2230), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2232), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(7864), 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [180337] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7618), 1, - sym__space, - ACTIONS(7651), 1, - aux_sym_record_entry_token1, - STATE(4629), 1, - aux_sym_command_repeat1, - STATE(4656), 1, + STATE(774), 1, + aux_sym__pipe_separator, + STATE(4644), 1, sym_comment, - ACTIONS(7580), 12, - sym__newline, + STATE(5172), 1, + aux_sym_shebang_repeat1, + ACTIONS(7867), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2538), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -379632,20 +381746,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, - [180367] = 6, - ACTIONS(249), 1, + [171793] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1031), 1, - anon_sym_DASH, - ACTIONS(7653), 1, - anon_sym_DOT, - STATE(4893), 1, - sym_path, - STATE(4657), 2, + STATE(4645), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1033), 11, + ACTIONS(1783), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1785), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -379657,51 +381766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180397] = 17, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7544), 1, - sym__newline, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7656), 1, - anon_sym_PIPE, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4658), 1, - sym_comment, - STATE(4949), 1, - aux_sym_parameter_parens_repeat1, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5350), 1, - aux_sym_shebang_repeat1, - STATE(5522), 1, - sym_parameter, - [180449] = 4, + anon_sym_LPAREN2, + [171818] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4659), 1, - sym_comment, - ACTIONS(1056), 3, - ts_builtin_sym_end, + ACTIONS(2514), 1, sym__space, - anon_sym_DOT, - ACTIONS(1054), 12, + STATE(4646), 1, + sym_comment, + ACTIONS(2512), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379713,17 +381786,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, - [180475] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171843] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4660), 1, - sym_comment, - ACTIONS(1060), 3, - ts_builtin_sym_end, + ACTIONS(7818), 1, sym__space, - anon_sym_DOT, - ACTIONS(1058), 12, + ACTIONS(7869), 1, + ts_builtin_sym_end, + STATE(4647), 1, + sym_comment, + STATE(4755), 1, + aux_sym_command_repeat1, + ACTIONS(7732), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379735,40 +381811,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [180501] = 5, - ACTIONS(3), 1, + [171872] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4945), 1, - sym__space, - ACTIONS(7658), 1, - anon_sym_EQ2, - STATE(4661), 1, + ACTIONS(7871), 1, + anon_sym_DOT, + ACTIONS(7873), 1, + aux_sym__immediate_decimal_token2, + STATE(4648), 1, sym_comment, - ACTIONS(4947), 13, + ACTIONS(1607), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 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, + [171901] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(7728), 1, + anon_sym_DASH2, + STATE(4649), 1, + sym_comment, + STATE(7405), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7726), 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, - anon_sym_RBRACE, - [180529] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171930] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4989), 1, + ACTIONS(7373), 1, sym__space, - ACTIONS(7660), 1, - anon_sym_EQ2, - STATE(4662), 1, + STATE(4650), 1, sym_comment, - ACTIONS(4991), 13, + ACTIONS(7371), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379782,14 +381878,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180557] = 3, - ACTIONS(249), 1, + [171955] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4663), 1, - sym_comment, - ACTIONS(5113), 15, + ACTIONS(7875), 1, sym__newline, + STATE(774), 1, + aux_sym__pipe_separator, + STATE(4651), 1, + sym_comment, + STATE(5172), 1, + aux_sym_shebang_repeat1, + ACTIONS(7878), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2538), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -379799,42 +381902,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_catch, - [180581] = 6, + [171986] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(2216), 1, anon_sym_LPAREN2, - STATE(4664), 1, + ACTIONS(2220), 1, + aux_sym__unquoted_in_list_token4, + STATE(4652), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4848), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4850), 11, + ACTIONS(2218), 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, - [180611] = 3, - ACTIONS(249), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2214), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [172015] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4665), 1, - sym_comment, - ACTIONS(7205), 15, - ts_builtin_sym_end, + ACTIONS(7880), 1, sym__newline, + ACTIONS(7885), 1, + anon_sym_else, + STATE(4653), 1, + sym_comment, + STATE(4745), 1, + aux_sym_shebang_repeat1, + ACTIONS(7883), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379845,22 +381947,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, - [180635] = 6, + anon_sym_RPAREN, + [172044] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4666), 1, - sym_comment, - STATE(7417), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7517), 2, - ts_builtin_sym_end, + ACTIONS(2502), 1, sym__space, - ACTIONS(7515), 11, + STATE(4654), 1, + sym_comment, + ACTIONS(2500), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379872,16 +381967,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, - [180665] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172069] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7532), 1, - anon_sym_and, - STATE(4667), 1, - sym_comment, - ACTIONS(7523), 14, - ts_builtin_sym_end, + ACTIONS(7887), 1, sym__newline, + ACTIONS(7892), 1, + anon_sym_else, + STATE(4655), 1, + sym_comment, + STATE(4704), 1, + aux_sym_shebang_repeat1, + ACTIONS(7890), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379892,18 +381991,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_xor, - anon_sym_or, - [180691] = 5, + anon_sym_RPAREN, + [172098] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7572), 1, + ACTIONS(2397), 1, sym__space, - STATE(4668), 1, + STATE(4656), 1, sym_comment, - STATE(4674), 1, - aux_sym_command_repeat1, - ACTIONS(7662), 13, + ACTIONS(2395), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379917,98 +382013,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180719] = 17, - ACTIONS(249), 1, + [172123] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7542), 1, + STATE(4657), 1, + sym_comment, + ACTIONS(1739), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7544), 1, sym__newline, - ACTIONS(7548), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7550), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7664), 1, - anon_sym_RPAREN, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4626), 1, - aux_sym_shebang_repeat1, - STATE(4669), 1, - sym_comment, - STATE(4957), 1, - aux_sym_parameter_parens_repeat1, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [180771] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(4670), 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, - [180801] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(4671), 1, - sym_comment, - ACTIONS(2305), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2303), 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, - [180831] = 4, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [172148] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4672), 1, - sym_comment, - ACTIONS(1068), 2, + ACTIONS(2092), 1, sym__space, - anon_sym_DOT, - ACTIONS(1066), 13, + STATE(4658), 1, + sym_comment, + ACTIONS(2090), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380022,19 +382055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180857] = 6, + [172173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7114), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7666), 1, - anon_sym_DOT, - STATE(4673), 1, - sym_comment, - ACTIONS(1717), 2, - ts_builtin_sym_end, + ACTIONS(7896), 1, sym__space, - ACTIONS(1715), 11, + STATE(4659), 1, + sym_comment, + ACTIONS(7894), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380046,15 +382074,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, - [180887] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172198] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7670), 1, + ACTIONS(2385), 1, sym__space, - STATE(4674), 2, + STATE(4660), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7668), 13, + ACTIONS(2383), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380068,13 +382097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180913] = 3, - ACTIONS(249), 1, + [172223] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4675), 1, + ACTIONS(7439), 1, + sym__space, + STATE(4661), 1, sym_comment, - ACTIONS(7240), 15, - ts_builtin_sym_end, + ACTIONS(7437), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380086,22 +382116,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, - [180937] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172248] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - STATE(4676), 1, - sym_comment, - ACTIONS(2279), 2, - ts_builtin_sym_end, + ACTIONS(7900), 1, sym__space, - ACTIONS(2277), 11, + STATE(4662), 1, + sym_comment, + ACTIONS(7898), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380113,15 +382137,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, - [180967] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172273] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4677), 1, - sym_comment, - ACTIONS(4985), 2, + ACTIONS(2409), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(4987), 13, + STATE(4663), 1, + sym_comment, + ACTIONS(2407), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380135,18 +382160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180993] = 5, - ACTIONS(249), 1, + [172298] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7532), 1, - anon_sym_and, - ACTIONS(7534), 1, - anon_sym_xor, - STATE(4678), 1, - sym_comment, - ACTIONS(7523), 13, - ts_builtin_sym_end, + ACTIONS(5149), 1, sym__newline, + ACTIONS(7902), 1, + anon_sym_catch, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4664), 1, + sym_comment, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380157,44 +382182,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, - [181021] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2234), 1, - anon_sym_DASH, - ACTIONS(7673), 1, - anon_sym_DOT_DOT2, - STATE(4679), 1, - sym_comment, - ACTIONS(7675), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2240), 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, - [181051] = 6, - ACTIONS(249), 1, + [172327] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2113), 1, - anon_sym_DASH, - ACTIONS(7677), 1, - anon_sym_DOT_DOT2, - STATE(4680), 1, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(7907), 1, + anon_sym_DASH2, + STATE(4665), 1, sym_comment, - ACTIONS(7679), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2119), 11, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7905), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380206,20 +382206,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181081] = 6, - ACTIONS(3), 1, + [172356] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - STATE(4681), 1, - sym_comment, - ACTIONS(1850), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1842), 11, + ACTIONS(7909), 1, sym__newline, + ACTIONS(7914), 1, + anon_sym_catch, + STATE(4614), 1, + aux_sym_shebang_repeat1, + STATE(4666), 1, + sym_comment, + ACTIONS(7912), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380230,19 +382228,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, - [181111] = 6, - ACTIONS(249), 1, + anon_sym_RPAREN, + [172385] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_DASH, - ACTIONS(7681), 1, - anon_sym_DOT_DOT2, - STATE(4682), 1, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(7918), 1, + anon_sym_DASH2, + STATE(4667), 1, sym_comment, - ACTIONS(7683), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2212), 11, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7916), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380254,19 +382252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181141] = 6, + [172414] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(4683), 1, - sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 2, - ts_builtin_sym_end, + ACTIONS(7922), 1, sym__space, - ACTIONS(4846), 11, + STATE(4668), 1, + sym_comment, + ACTIONS(7920), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380278,13 +382271,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, - [181171] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172439] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4684), 1, + ACTIONS(2482), 1, + sym__space, + STATE(4669), 1, sym_comment, - ACTIONS(7523), 15, - ts_builtin_sym_end, + ACTIONS(2480), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380296,43 +382292,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181195] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172464] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4685), 1, + STATE(4670), 1, sym_comment, - ACTIONS(7685), 15, + ACTIONS(2250), 6, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_catch, - [181219] = 6, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_LPAREN2, + ACTIONS(2248), 8, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token4, + [172489] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1090), 1, - anon_sym_DASH, - ACTIONS(7566), 1, - anon_sym_DOT_DOT2, - STATE(4686), 1, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(7658), 1, + anon_sym_DASH2, + STATE(4671), 1, sym_comment, - ACTIONS(7568), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1092), 11, + STATE(7405), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7656), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380344,19 +382338,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181249] = 6, - ACTIONS(249), 1, + [172518] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_and, - ACTIONS(7540), 1, - anon_sym_xor, - ACTIONS(7687), 1, - anon_sym_or, - STATE(4687), 1, + ACTIONS(2466), 1, + sym__space, + STATE(4672), 1, sym_comment, - ACTIONS(7482), 12, - ts_builtin_sym_end, + ACTIONS(2464), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380368,19 +382357,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, - [181279] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - STATE(4688), 1, - sym_comment, - ACTIONS(1796), 2, - ts_builtin_sym_end, + ACTIONS(2470), 1, sym__space, - ACTIONS(1788), 11, + STATE(4673), 1, + sym_comment, + ACTIONS(2468), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380392,15 +382378,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, - [181309] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172568] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4689), 1, + ACTIONS(7924), 1, + anon_sym_EQ2, + STATE(4674), 1, sym_comment, - ACTIONS(1076), 2, + ACTIONS(5051), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1074), 13, + ACTIONS(5053), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380412,22 +382402,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, - [181335] = 6, - ACTIONS(3), 1, + [172595] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7689), 1, - sym_long_flag_identifier, - ACTIONS(7691), 1, - anon_sym_EQ2, - STATE(4690), 1, - sym_comment, - ACTIONS(4939), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4937), 11, + ACTIONS(5149), 1, sym__newline, + ACTIONS(7926), 1, + anon_sym_else, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4675), 1, + sym_comment, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380438,36 +382424,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, - [181365] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + [172624] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7441), 1, - aux_sym__immediate_decimal_token2, - STATE(4691), 1, + ACTIONS(2165), 1, + sym__space, + STATE(4676), 1, sym_comment, - ACTIONS(1715), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 11, - anon_sym_EQ, + ACTIONS(2159), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [181393] = 3, - ACTIONS(249), 1, + anon_sym_RBRACE, + [172649] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4692), 1, - sym_comment, - ACTIONS(5155), 15, + ACTIONS(7818), 1, + sym__space, + ACTIONS(7929), 1, ts_builtin_sym_end, + STATE(4610), 1, + aux_sym_command_repeat1, + STATE(4677), 1, + sym_comment, + ACTIONS(7814), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380479,20 +382469,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, - [181417] = 5, + [172678] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7693), 1, - sym__newline, - ACTIONS(7696), 1, + ACTIONS(7933), 1, sym__space, - STATE(4693), 2, + STATE(4678), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7699), 11, + ACTIONS(7931), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380504,14 +382489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [181444] = 4, + anon_sym_RBRACE, + [172703] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2069), 1, + ACTIONS(7937), 1, sym__space, - STATE(4694), 1, + STATE(4679), 1, sym_comment, - ACTIONS(2067), 13, + ACTIONS(7935), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380525,138 +382511,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181469] = 6, - ACTIONS(249), 1, + [172728] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7701), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7703), 1, - aux_sym__immediate_decimal_token2, - STATE(4695), 1, - sym_comment, - ACTIONS(1528), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 9, - ts_builtin_sym_end, + ACTIONS(7842), 1, 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, - [181498] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4696), 1, + ACTIONS(7844), 1, + sym__space, + STATE(4680), 1, sym_comment, - ACTIONS(1769), 2, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1771), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(4698), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7939), 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, - anon_sym_LPAREN2, - [181523] = 5, - ACTIONS(249), 1, + [172757] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7705), 1, - anon_sym_QMARK2, - STATE(4697), 1, - sym_comment, - ACTIONS(1042), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1044), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5149), 1, sym__newline, + ACTIONS(7941), 1, + anon_sym_else, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4681), 1, + sym_comment, + ACTIONS(1296), 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, - [181550] = 14, - ACTIONS(3), 1, + [172786] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_DOLLAR, - ACTIONS(7707), 1, - sym__newline, - ACTIONS(7709), 1, - sym__space, - ACTIONS(7711), 1, - anon_sym_DASH_DASH, - ACTIONS(7713), 1, - anon_sym_DASH, - ACTIONS(7715), 1, - anon_sym_LBRACE, - STATE(1680), 1, - sym_block, - STATE(1686), 1, - sym_val_closure, - STATE(4698), 1, + STATE(4682), 1, sym_comment, - STATE(5730), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7467), 1, - sym__flag, - STATE(717), 2, - sym__blosure, - sym_val_variable, - STATE(4826), 2, - sym_short_flag, - sym_long_flag, - [181595] = 6, - ACTIONS(249), 1, + ACTIONS(1607), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1609), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [172811] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5518), 1, + ACTIONS(2216), 1, anon_sym_LPAREN2, - ACTIONS(7564), 1, - anon_sym_DASH, - STATE(4699), 1, + ACTIONS(2220), 1, + aux_sym__unquoted_in_list_token4, + STATE(4683), 1, sym_comment, - STATE(7525), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7562), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2224), 5, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2222), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181624] = 6, + anon_sym_DASH2, + [172840] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7717), 1, - ts_builtin_sym_end, - ACTIONS(7719), 1, + ACTIONS(5689), 1, sym__space, - STATE(4700), 1, + STATE(4684), 1, sym_comment, - STATE(4728), 1, - aux_sym_command_repeat1, - ACTIONS(7570), 11, + ACTIONS(5687), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380668,14 +382620,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, - [181653] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172865] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2432), 1, + ACTIONS(5162), 1, sym__space, - STATE(4701), 1, + STATE(4685), 1, sym_comment, - ACTIONS(2430), 13, + ACTIONS(5164), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380689,36 +382643,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181678] = 5, - ACTIONS(249), 1, + [172890] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7721), 1, - anon_sym_QMARK2, - STATE(4702), 1, + ACTIONS(7788), 1, + sym__newline, + STATE(772), 1, + aux_sym__pipe_separator, + STATE(4686), 1, sym_comment, - ACTIONS(1048), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1050), 11, - anon_sym_EQ, - sym_identifier, + STATE(5172), 1, + aux_sym_shebang_repeat1, + ACTIONS(7791), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(2538), 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, + [172921] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7664), 1, sym__newline, + STATE(772), 1, + aux_sym__pipe_separator, + STATE(4687), 1, + sym_comment, + STATE(5172), 1, + aux_sym_shebang_repeat1, + ACTIONS(7667), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(2538), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [181705] = 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, + [172952] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7725), 1, + ACTIONS(5693), 1, sym__space, - STATE(4703), 1, + STATE(4688), 1, sym_comment, - ACTIONS(7723), 13, + ACTIONS(5691), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380732,14 +382712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181730] = 4, + [172977] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2049), 1, + ACTIONS(2349), 1, sym__space, - STATE(4704), 1, + STATE(4689), 1, sym_comment, - ACTIONS(2047), 13, + ACTIONS(2347), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380753,45 +382733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181755] = 14, + [173002] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_DOLLAR, - ACTIONS(7707), 1, - sym__newline, - ACTIONS(7709), 1, - sym__space, - ACTIONS(7711), 1, - anon_sym_DASH_DASH, - ACTIONS(7713), 1, - anon_sym_DASH, - ACTIONS(7715), 1, - anon_sym_LBRACE, - STATE(1680), 1, - sym_block, - STATE(1686), 1, - sym_val_closure, - STATE(4705), 1, + ACTIONS(7944), 1, + anon_sym_EQ2, + STATE(4690), 1, sym_comment, - STATE(5730), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7467), 1, - sym__flag, - STATE(714), 2, - sym__blosure, - sym_val_variable, - STATE(4826), 2, - sym_short_flag, - sym_long_flag, - [181800] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5047), 1, + ACTIONS(5014), 2, + ts_builtin_sym_end, sym__space, - STATE(4706), 1, - sym_comment, - ACTIONS(5049), 13, + ACTIONS(5016), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380803,17 +382755,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, - [181825] = 4, - ACTIONS(3), 1, + [173029] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5067), 1, - sym__space, - STATE(4707), 1, - sym_comment, - ACTIONS(5069), 13, + ACTIONS(7946), 1, sym__newline, + ACTIONS(7951), 1, + anon_sym_else, + STATE(4691), 1, + sym_comment, + STATE(4697), 1, + aux_sym_shebang_repeat1, + ACTIONS(7949), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380825,15 +382778,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, - [181850] = 4, + [173058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, + ACTIONS(7606), 1, sym__space, - STATE(4708), 1, + STATE(4692), 1, sym_comment, - ACTIONS(2222), 13, + ACTIONS(7604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380847,14 +382799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181875] = 4, + [173083] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2504), 1, + ACTIONS(2401), 1, sym__space, - STATE(4709), 1, + STATE(4693), 1, sym_comment, - ACTIONS(2502), 13, + ACTIONS(2399), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380868,37 +382820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181900] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(7729), 1, - anon_sym_DASH, - STATE(4710), 1, - sym_comment, - STATE(7657), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7727), 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, - [181929] = 4, + [173108] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2541), 1, - sym__space, - STATE(4711), 1, + STATE(4694), 1, sym_comment, - ACTIONS(2539), 13, + ACTIONS(5020), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(5022), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380910,23 +382841,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [173133] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4695), 1, + sym_comment, + ACTIONS(1621), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1623), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [173158] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7955), 1, + anon_sym_LT, + ACTIONS(7957), 1, + anon_sym_DASH2, + STATE(4696), 1, + sym_comment, + ACTIONS(7953), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [181954] = 7, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [173185] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7731), 1, + ACTIONS(5149), 1, sym__newline, - STATE(726), 1, - aux_sym__pipe_separator, - STATE(4712), 1, - sym_comment, - STATE(5265), 1, + ACTIONS(7959), 1, + anon_sym_else, + STATE(1816), 1, aux_sym_shebang_repeat1, - ACTIONS(7734), 2, + STATE(4697), 1, + sym_comment, + ACTIONS(1296), 11, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(3015), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -380936,21 +382906,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, - [181985] = 7, - ACTIONS(249), 1, + anon_sym_RPAREN, + [173214] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7527), 1, + ACTIONS(7962), 1, sym__newline, - STATE(727), 1, - aux_sym__pipe_separator, - STATE(4713), 1, + ACTIONS(7965), 1, + sym__space, + STATE(4698), 2, sym_comment, - STATE(5265), 1, - aux_sym_shebang_repeat1, - ACTIONS(7530), 2, - ts_builtin_sym_end, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7968), 11, anon_sym_SEMI, - ACTIONS(3015), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -380960,18 +382928,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, - [182016] = 6, + anon_sym_RPAREN, + [173241] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7719), 1, + ACTIONS(2443), 1, sym__space, - ACTIONS(7736), 1, - ts_builtin_sym_end, - STATE(4714), 1, + STATE(4699), 1, sym_comment, - STATE(4762), 1, - aux_sym_command_repeat1, - ACTIONS(7580), 11, + ACTIONS(2441), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380983,15 +382948,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, - [182045] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173266] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4715), 1, - sym_comment, - ACTIONS(1826), 2, - anon_sym_DASH, + ACTIONS(1546), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1828), 12, + ACTIONS(1866), 1, + anon_sym_DASH2, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + STATE(4700), 1, + sym_comment, + ACTIONS(1874), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381003,15 +382973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [182070] = 4, + [173295] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2400), 1, + ACTIONS(2349), 1, sym__space, - STATE(4716), 1, + STATE(4701), 1, sym_comment, - ACTIONS(2398), 13, + ACTIONS(2347), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381025,18 +382994,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182095] = 6, - ACTIONS(249), 1, + [173320] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2381), 1, + sym__space, + STATE(4702), 1, + sym_comment, + ACTIONS(2379), 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, + [173345] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7970), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7972), 1, + aux_sym__immediate_decimal_token2, + STATE(4703), 1, + sym_comment, + ACTIONS(1621), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1623), 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, + [173374] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5598), 1, + ACTIONS(7974), 1, sym__newline, - ACTIONS(7738), 1, + ACTIONS(7979), 1, anon_sym_else, - STATE(2498), 1, + STATE(4681), 1, aux_sym_shebang_repeat1, - STATE(4717), 1, + STATE(4704), 1, sym_comment, - ACTIONS(1351), 11, + ACTIONS(7977), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381048,14 +383061,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [182124] = 4, + [173403] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7703), 1, + aux_sym__immediate_decimal_token2, + STATE(4705), 1, + sym_comment, + ACTIONS(1607), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 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, + [173430] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1092), 1, + ACTIONS(2377), 1, sym__space, - STATE(4718), 1, + STATE(4706), 1, sym_comment, - ACTIONS(1090), 13, + ACTIONS(2375), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381069,14 +383104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182149] = 3, - ACTIONS(249), 1, + [173455] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4719), 1, + STATE(4707), 1, sym_comment, - ACTIONS(7685), 14, - ts_builtin_sym_end, + ACTIONS(5679), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381087,16 +383122,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_else, - anon_sym_catch, - [182172] = 4, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [173478] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5572), 1, - sym__space, - STATE(4720), 1, + STATE(4708), 1, sym_comment, - ACTIONS(5570), 13, + ACTIONS(1008), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1006), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381108,63 +383145,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182197] = 6, - ACTIONS(249), 1, + [173503] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, - anon_sym_DOT, - ACTIONS(7158), 1, - aux_sym__immediate_decimal_token2, - STATE(4721), 1, + ACTIONS(7983), 1, + sym__space, + STATE(4709), 1, sym_comment, - ACTIONS(1715), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(1717), 10, - anon_sym_EQ, + ACTIONS(7981), 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, - [182226] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + [173528] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(7743), 1, - anon_sym_DASH, - STATE(4722), 1, - sym_comment, - STATE(7657), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7741), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7985), 1, sym__newline, + ACTIONS(7990), 1, + anon_sym_else, + STATE(4710), 1, + sym_comment, + STATE(4728), 1, + aux_sym_shebang_repeat1, + ACTIONS(7988), 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, - [182255] = 4, - ACTIONS(3), 1, + [173557] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2412), 1, - sym__space, - STATE(4723), 1, - sym_comment, - ACTIONS(2410), 13, + ACTIONS(7992), 1, sym__newline, + ACTIONS(7997), 1, + anon_sym_else, + STATE(4691), 1, + aux_sym_shebang_repeat1, + STATE(4711), 1, + sym_comment, + ACTIONS(7995), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381176,15 +383212,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, - [182280] = 4, + [173586] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4712), 1, + sym_comment, + ACTIONS(1673), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1675), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [173611] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(2173), 1, sym__space, - STATE(4724), 1, + STATE(4713), 1, sym_comment, - ACTIONS(1909), 13, + ACTIONS(2167), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381198,18 +383254,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182305] = 6, + [173636] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7745), 1, - sym__newline, - ACTIONS(7747), 1, + ACTIONS(2181), 1, sym__space, - STATE(4693), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4725), 1, + STATE(4714), 1, sym_comment, - ACTIONS(7749), 11, + ACTIONS(2175), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381221,14 +383274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [182334] = 4, + anon_sym_RBRACE, + [173661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2444), 1, + ACTIONS(8001), 1, sym__space, - STATE(4726), 1, + STATE(4715), 1, sym_comment, - ACTIONS(2442), 13, + ACTIONS(7999), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381242,16 +383296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182359] = 4, + [173686] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4727), 1, - sym_comment, - ACTIONS(1076), 3, - ts_builtin_sym_end, + ACTIONS(2490), 1, sym__space, - anon_sym_DOT, - ACTIONS(1074), 11, + STATE(4716), 1, + sym_comment, + ACTIONS(2488), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381263,18 +383315,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, - [182384] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173711] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7719), 1, + ACTIONS(2139), 1, sym__space, - ACTIONS(7751), 1, - ts_builtin_sym_end, - STATE(4728), 1, + STATE(4717), 1, sym_comment, - STATE(4789), 1, - aux_sym_command_repeat1, - ACTIONS(7662), 11, + ACTIONS(2133), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381286,15 +383336,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, - [182413] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173736] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2508), 1, - sym__space, - STATE(4729), 1, + STATE(4718), 1, sym_comment, - ACTIONS(2506), 13, + ACTIONS(5683), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381305,38 +383356,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, - [182438] = 5, - ACTIONS(249), 1, + aux_sym_record_entry_token1, + [173759] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7755), 1, - anon_sym_LT, - ACTIONS(7757), 1, - anon_sym_DASH, - STATE(4730), 1, + ACTIONS(8003), 1, + aux_sym__immediate_decimal_token2, + STATE(4719), 1, sym_comment, - ACTIONS(7753), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1673), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1675), 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_AT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182465] = 3, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [173786] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4731), 1, + ACTIONS(5697), 1, + sym__space, + STATE(4720), 1, sym_comment, - ACTIONS(5570), 14, + ACTIONS(5695), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381347,41 +383399,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, - aux_sym_record_entry_token1, - [182488] = 4, - ACTIONS(249), 1, + [173811] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4732), 1, + ACTIONS(2506), 1, + sym__space, + STATE(4721), 1, sym_comment, - ACTIONS(1703), 2, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1705), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2504), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [182513] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + [173836] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_AT, - ACTIONS(7763), 1, - anon_sym_DASH, - STATE(4733), 1, + STATE(4722), 1, sym_comment, - STATE(5081), 1, - sym_param_cmd, - ACTIONS(7759), 11, + ACTIONS(994), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(996), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -381393,18 +383442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182542] = 6, - ACTIONS(249), 1, + anon_sym_QMARK2, + [173861] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_AT, - ACTIONS(7767), 1, - anon_sym_DASH, - STATE(4734), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2187), 1, + anon_sym_DASH2, + STATE(4723), 1, sym_comment, - STATE(5075), 1, - sym_param_cmd, - ACTIONS(7765), 11, + ACTIONS(2189), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381416,14 +383466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182571] = 4, + [173890] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2436), 1, + ACTIONS(5143), 1, sym__space, - STATE(4735), 1, + STATE(4724), 1, sym_comment, - ACTIONS(2434), 13, + ACTIONS(5145), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381437,16 +383487,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182596] = 5, - ACTIONS(249), 1, + [173915] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7757), 1, - anon_sym_DASH, - ACTIONS(7769), 1, - anon_sym_LT, - STATE(4736), 1, + ACTIONS(1878), 1, + anon_sym_DASH2, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym__unquoted_in_list_token2, + STATE(4725), 1, sym_comment, - ACTIONS(7753), 12, + ACTIONS(1886), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381456,37 +383508,16 @@ 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, - [182623] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4737), 1, - sym_comment, - ACTIONS(5113), 14, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [182646] = 4, + [173944] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2522), 1, + ACTIONS(5128), 1, sym__space, - STATE(4738), 1, + STATE(4726), 1, sym_comment, - ACTIONS(2520), 13, + ACTIONS(5130), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381500,36 +383531,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182671] = 4, - ACTIONS(3), 1, + [173969] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__space, - STATE(4739), 1, + ACTIONS(7322), 1, + anon_sym_DOT, + ACTIONS(7324), 1, + aux_sym__immediate_decimal_token2, + STATE(4727), 1, sym_comment, - ACTIONS(2565), 13, + ACTIONS(1755), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(1757), 10, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [182696] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [173998] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2456), 1, - sym__space, - STATE(4740), 1, - sym_comment, - ACTIONS(2454), 13, + ACTIONS(5149), 1, sym__newline, + ACTIONS(8005), 1, + anon_sym_else, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4728), 1, + sym_comment, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381541,15 +383577,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_RBRACE, - [182721] = 4, - ACTIONS(3), 1, + [174027] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1899), 1, - sym__space, - STATE(4741), 1, + STATE(4729), 1, sym_comment, - ACTIONS(1897), 13, + ACTIONS(7719), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381561,16 +383595,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, - [182746] = 4, + anon_sym_else, + anon_sym_catch, + [174050] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(2474), 1, sym__space, - STATE(4742), 1, + STATE(4730), 1, sym_comment, - ACTIONS(2087), 13, + ACTIONS(2472), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381584,35 +383618,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182771] = 4, - ACTIONS(3), 1, + [174075] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2240), 1, - sym__space, - STATE(4743), 1, + STATE(4731), 1, sym_comment, - ACTIONS(2234), 13, + ACTIONS(998), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1000), 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, - [182796] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [174100] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4732), 1, + sym_comment, + ACTIONS(1763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1765), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [174125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, + ACTIONS(2478), 1, sym__space, - STATE(4744), 1, + STATE(4733), 1, sym_comment, - ACTIONS(1628), 13, + ACTIONS(2476), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381626,14 +383681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182821] = 4, + [174150] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2373), 1, sym__space, - STATE(4745), 1, + STATE(4734), 1, sym_comment, - ACTIONS(2547), 13, + ACTIONS(2371), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381647,39 +383702,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182846] = 4, - ACTIONS(3), 1, + [174175] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2472), 1, - sym__space, - STATE(4746), 1, + ACTIONS(1579), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2234), 1, + anon_sym_DASH2, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + STATE(4735), 1, sym_comment, - ACTIONS(2470), 13, + ACTIONS(2238), 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, - [182871] = 6, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [174204] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7771), 1, - sym__newline, - ACTIONS(7776), 1, - anon_sym_else, - STATE(4747), 1, + ACTIONS(2498), 1, + sym__space, + STATE(4736), 1, sym_comment, - STATE(4831), 1, - aux_sym_shebang_repeat1, - ACTIONS(7774), 11, + ACTIONS(2496), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381691,16 +383745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [182900] = 5, - ACTIONS(249), 1, + anon_sym_RBRACE, + [174229] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2355), 1, - anon_sym_DASH, - ACTIONS(7778), 1, - anon_sym_LBRACK2, - STATE(4748), 1, + STATE(4737), 1, sym_comment, - ACTIONS(2359), 12, + ACTIONS(1002), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1004), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -381712,101 +383766,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [182927] = 6, - ACTIONS(3), 1, + anon_sym_QMARK2, + [174254] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2283), 1, + ACTIONS(2252), 1, + anon_sym_DASH2, + ACTIONS(2254), 1, anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym__unquoted_in_list_token4, - STATE(4749), 1, + ACTIONS(2258), 1, + aux_sym__unquoted_in_list_token2, + STATE(4738), 1, sym_comment, - ACTIONS(2285), 5, + ACTIONS(2256), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2281), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - [182956] = 3, - ACTIONS(3), 1, + [174283] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4750), 1, + STATE(4739), 1, sym_comment, - ACTIONS(5601), 14, + ACTIONS(990), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(992), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - sym__space, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_record_entry_token1, - [182979] = 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_QMARK2, + [174308] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7780), 1, - anon_sym_EQ2, - STATE(4751), 1, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym__unquoted_in_list_token4, + STATE(4740), 1, sym_comment, - ACTIONS(4989), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4991), 11, + ACTIONS(1032), 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, - [183006] = 4, - ACTIONS(3), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1030), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [174337] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7784), 1, - sym__space, - STATE(4752), 1, + STATE(4741), 1, sym_comment, - ACTIONS(7782), 13, + ACTIONS(1890), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 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, - [183031] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [174362] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2119), 1, - sym__space, - STATE(4753), 1, + ACTIONS(8008), 1, + anon_sym_LBRACK2, + STATE(4742), 1, sym_comment, - ACTIONS(2113), 13, + ACTIONS(2341), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2337), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381818,37 +383877,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183056] = 4, - ACTIONS(3), 1, + [174389] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7364), 1, - sym__space, - STATE(4754), 1, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(8012), 1, + anon_sym_DASH2, + STATE(4743), 1, sym_comment, - ACTIONS(7362), 13, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8010), 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, - [183081] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [174418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2212), 1, + ACTIONS(5681), 1, sym__space, - STATE(4755), 1, + STATE(4744), 1, sym_comment, - ACTIONS(2206), 13, + ACTIONS(5679), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381862,18 +383921,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183106] = 6, - ACTIONS(3), 1, + [174443] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7745), 1, + ACTIONS(8014), 1, sym__newline, - ACTIONS(7747), 1, - sym__space, - STATE(4693), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4756), 1, + ACTIONS(8019), 1, + anon_sym_else, + STATE(4675), 1, + aux_sym_shebang_repeat1, + STATE(4745), 1, sym_comment, - ACTIONS(7786), 11, + ACTIONS(8017), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381885,15 +383944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183135] = 4, + [174472] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5051), 1, - sym__space, - STATE(4757), 1, + STATE(4746), 1, sym_comment, - ACTIONS(5053), 13, + ACTIONS(5687), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381904,18 +383962,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, - [183160] = 4, + aux_sym_record_entry_token1, + [174495] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4758), 1, + STATE(4747), 1, sym_comment, - ACTIONS(4995), 3, + ACTIONS(1012), 3, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(4997), 11, + anon_sym_DOT, + ACTIONS(1010), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381927,14 +383985,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, - [183185] = 4, + [174520] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5059), 1, + ACTIONS(7818), 1, sym__space, - STATE(4759), 1, + ACTIONS(8021), 1, + ts_builtin_sym_end, + STATE(4647), 1, + aux_sym_command_repeat1, + STATE(4748), 1, sym_comment, - ACTIONS(5061), 13, + ACTIONS(7650), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381946,19 +384008,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, - [183210] = 4, + [174549] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4760), 1, + STATE(4749), 1, sym_comment, - ACTIONS(1068), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1066), 11, + ACTIONS(5691), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381969,16 +384026,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, - [183235] = 4, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [174572] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4761), 1, - sym_comment, - ACTIONS(1072), 3, - ts_builtin_sym_end, + ACTIONS(5166), 1, sym__space, - anon_sym_DOT, - ACTIONS(1070), 11, + STATE(4750), 1, + sym_comment, + ACTIONS(5168), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381990,18 +384047,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, - [183260] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [174597] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7719), 1, + ACTIONS(5170), 1, sym__space, - ACTIONS(7788), 1, - ts_builtin_sym_end, - STATE(4762), 1, + STATE(4751), 1, sym_comment, - STATE(4789), 1, - aux_sym_command_repeat1, - ACTIONS(7598), 11, + ACTIONS(5172), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382013,18 +384068,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, - [183289] = 6, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [174622] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1788), 1, - anon_sym_DASH, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - STATE(4763), 1, + ACTIONS(8025), 1, + anon_sym_AT, + ACTIONS(8027), 1, + anon_sym_DASH2, + STATE(4752), 1, sym_comment, - ACTIONS(1796), 11, + STATE(5132), 1, + sym_param_cmd, + ACTIONS(8023), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -382036,44 +384093,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183318] = 6, - ACTIONS(3), 1, + [174651] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym__unquoted_in_list_token4, - STATE(4764), 1, + ACTIONS(8025), 1, + anon_sym_AT, + ACTIONS(8031), 1, + anon_sym_DASH2, + STATE(4753), 1, sym_comment, - ACTIONS(1092), 5, + STATE(5062), 1, + sym_param_cmd, + ACTIONS(8029), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1090), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - [183347] = 7, - ACTIONS(249), 1, + [174680] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7790), 1, - sym__newline, - STATE(726), 1, - aux_sym__pipe_separator, - STATE(4765), 1, + STATE(4754), 1, sym_comment, - STATE(5265), 1, - aux_sym_shebang_repeat1, - ACTIONS(7793), 2, + ACTIONS(1016), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1014), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(3015), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -382083,78 +384137,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, - [183378] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7578), 1, - aux_sym__immediate_decimal_token2, - STATE(4766), 1, - sym_comment, - ACTIONS(1536), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [183405] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4767), 1, - sym_comment, - ACTIONS(2291), 6, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN2, - ACTIONS(2289), 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, - [183430] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4768), 1, - sym_comment, - ACTIONS(1058), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1060), 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, - [183455] = 4, + [174705] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7797), 1, + ACTIONS(8033), 1, + ts_builtin_sym_end, + ACTIONS(8035), 1, sym__space, - STATE(4769), 1, + STATE(4755), 2, sym_comment, - ACTIONS(7795), 13, + aux_sym_command_repeat1, + ACTIONS(7767), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382166,19 +384159,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, - [183480] = 4, + [174732] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4770), 1, + STATE(4756), 1, sym_comment, - ACTIONS(4985), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(4987), 11, + ACTIONS(5695), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382189,43 +384177,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, - [183505] = 12, - ACTIONS(249), 1, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [174755] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1546), 1, aux_sym_unquoted_token2, - ACTIONS(3616), 1, + ACTIONS(3621), 1, anon_sym_DOLLAR, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(7799), 1, + ACTIONS(8038), 1, anon_sym_DOT, - ACTIONS(7803), 1, + ACTIONS(8042), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7805), 1, + ACTIONS(8044), 1, aux_sym__immediate_decimal_token5, - STATE(4771), 1, + STATE(4757), 1, sym_comment, - STATE(5677), 1, + STATE(5651), 1, sym__immediate_decimal, - ACTIONS(7801), 2, + ACTIONS(8040), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5976), 2, + STATE(5982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1524), 3, + ACTIONS(1544), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [183546] = 4, + [174796] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8025), 1, + anon_sym_AT, + ACTIONS(8031), 1, + anon_sym_DASH2, + STATE(4758), 1, + sym_comment, + STATE(5063), 1, + sym_param_cmd, + ACTIONS(8029), 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, + [174825] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(7786), 1, + anon_sym_DASH2, + STATE(4759), 1, + sym_comment, + STATE(7405), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7784), 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, + [174854] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2537), 1, + ACTIONS(5096), 1, sym__space, - STATE(4772), 1, + STATE(4760), 1, sym_comment, - ACTIONS(2535), 13, + ACTIONS(5098), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382239,36 +384275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183571] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4773), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1713), 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, - [183596] = 4, + [174879] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7809), 1, + ACTIONS(7842), 1, + sym__newline, + ACTIONS(7844), 1, sym__space, - STATE(4774), 1, + STATE(4680), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4761), 1, sym_comment, - ACTIONS(7807), 13, - sym__newline, + ACTIONS(8046), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382280,40 +384298,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, - [183621] = 4, - ACTIONS(249), 1, + [174908] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4775), 1, + ACTIONS(5100), 1, + sym__space, + STATE(4762), 1, sym_comment, - ACTIONS(1596), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1598), 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, - [183646] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5598), 1, + ACTIONS(5102), 13, sym__newline, - ACTIONS(7811), 1, - anon_sym_catch, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4776), 1, - sym_comment, - ACTIONS(1351), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382325,18 +384318,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183675] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + [174933] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(7816), 1, - anon_sym_DASH, - STATE(4777), 1, + ACTIONS(8048), 1, + anon_sym_QMARK2, + STATE(4763), 1, sym_comment, - STATE(7657), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7814), 11, + ACTIONS(978), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(980), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -382348,14 +384341,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183704] = 4, + [174960] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7820), 1, + ACTIONS(5174), 1, sym__space, - STATE(4778), 1, + STATE(4764), 1, sym_comment, - ACTIONS(7818), 13, + ACTIONS(5176), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382369,14 +384362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183729] = 4, + [174985] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2563), 1, + ACTIONS(5178), 1, sym__space, - STATE(4779), 1, + STATE(4765), 1, sym_comment, - ACTIONS(2561), 13, + ACTIONS(5180), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382390,18 +384383,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183754] = 6, - ACTIONS(249), 1, + [175010] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7822), 1, - sym__newline, - ACTIONS(7827), 1, - anon_sym_else, - STATE(4780), 1, + ACTIONS(1950), 1, + sym__space, + STATE(4766), 1, sym_comment, - STATE(4836), 1, - aux_sym_shebang_repeat1, - ACTIONS(7825), 11, + ACTIONS(1948), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382413,44 +384403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183783] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + [175035] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7829), 1, - anon_sym_DOT, - ACTIONS(7831), 1, - aux_sym__immediate_decimal_token2, - STATE(4781), 1, + ACTIONS(2393), 1, + sym__space, + STATE(4767), 1, sym_comment, - ACTIONS(1536), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 9, - ts_builtin_sym_end, + ACTIONS(2391), 13, 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, - [183812] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7582), 1, - sym__newline, - STATE(727), 1, - aux_sym__pipe_separator, - STATE(4782), 1, - sym_comment, - STATE(5265), 1, - aux_sym_shebang_repeat1, - ACTIONS(7585), 2, - ts_builtin_sym_end, - anon_sym_SEMI, - ACTIONS(3015), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -382460,36 +384423,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, - [183843] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175060] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4783), 1, + ACTIONS(8052), 1, + anon_sym_catch, + STATE(4768), 1, sym_comment, - ACTIONS(1062), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1064), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8050), 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_QMARK2, - [183868] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + [175085] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4784), 1, + STATE(4769), 1, sym_comment, - ACTIONS(1715), 2, - anon_sym_DASH, + ACTIONS(1755), 2, + anon_sym_DASH2, aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 12, + ACTIONS(1757), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382502,18 +384467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [183893] = 6, - ACTIONS(249), 1, + [175110] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2335), 1, - anon_sym_DASH, - ACTIONS(2337), 1, + ACTIONS(5556), 1, anon_sym_LPAREN2, - STATE(4785), 1, + ACTIONS(8056), 1, + anon_sym_DASH2, + STATE(4770), 1, sym_comment, - ACTIONS(2339), 11, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8054), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -382525,18 +384490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183922] = 6, + [175139] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7745), 1, - sym__newline, - ACTIONS(7747), 1, + ACTIONS(2415), 1, sym__space, - STATE(4756), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4786), 1, + STATE(4771), 1, sym_comment, - ACTIONS(7833), 11, + ACTIONS(2413), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382548,14 +384510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183951] = 4, + anon_sym_RBRACE, + [175164] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2496), 1, + ACTIONS(2423), 1, sym__space, - STATE(4787), 1, + STATE(4772), 1, sym_comment, - ACTIONS(2494), 13, + ACTIONS(2421), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382569,14 +384532,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183976] = 4, + [175189] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2440), 1, + ACTIONS(2427), 1, sym__space, - STATE(4788), 1, + STATE(4773), 1, sym_comment, - ACTIONS(2438), 13, + ACTIONS(2425), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382590,17 +384553,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184001] = 5, + [175214] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7835), 1, - ts_builtin_sym_end, - ACTIONS(7837), 1, + ACTIONS(2431), 1, sym__space, - STATE(4789), 2, + STATE(4774), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7668), 11, + ACTIONS(2429), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382612,18 +384572,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, - [184028] = 6, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175239] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_DASH, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym__unquoted_in_list_token2, - STATE(4790), 1, + ACTIONS(4055), 1, + anon_sym_DOLLAR, + ACTIONS(7823), 1, + sym__newline, + ACTIONS(7825), 1, + sym__space, + ACTIONS(7827), 1, + anon_sym_DASH_DASH, + ACTIONS(7829), 1, + anon_sym_DASH2, + ACTIONS(7831), 1, + anon_sym_LBRACE, + STATE(1792), 1, + sym_block, + STATE(1793), 1, + sym_val_closure, + STATE(4775), 1, + sym_comment, + STATE(5696), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7409), 1, + sym__flag, + STATE(782), 2, + sym__blosure, + sym_val_variable, + STATE(4685), 2, + sym_short_flag, + sym_long_flag, + [175284] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8058), 1, + anon_sym_QMARK2, + STATE(4776), 1, sym_comment, - ACTIONS(2250), 11, + ACTIONS(984), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(986), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -382635,14 +384627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184057] = 4, + [175311] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7842), 1, + ACTIONS(2435), 1, sym__space, - STATE(4791), 1, + STATE(4777), 1, sym_comment, - ACTIONS(7840), 13, + ACTIONS(2433), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382656,37 +384648,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184082] = 6, - ACTIONS(249), 1, + [175336] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7844), 1, - sym__newline, - ACTIONS(7849), 1, - anon_sym_catch, - STATE(4792), 1, + ACTIONS(8025), 1, + anon_sym_AT, + ACTIONS(8062), 1, + anon_sym_DASH2, + STATE(4778), 1, sym_comment, - STATE(4818), 1, - aux_sym_shebang_repeat1, - ACTIONS(7847), 11, - anon_sym_SEMI, + STATE(5121), 1, + sym_param_cmd, + ACTIONS(8060), 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, - [184111] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, + ACTIONS(2389), 1, sym__space, - STATE(4793), 1, + STATE(4779), 1, sym_comment, - ACTIONS(2079), 13, + ACTIONS(2387), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382700,18 +384692,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184136] = 6, - ACTIONS(249), 1, + [175390] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7851), 1, + ACTIONS(8064), 1, sym__newline, - ACTIONS(7856), 1, + ACTIONS(8069), 1, anon_sym_catch, - STATE(4794), 1, - sym_comment, - STATE(4832), 1, + STATE(4637), 1, aux_sym_shebang_repeat1, - ACTIONS(7854), 11, + STATE(4780), 1, + sym_comment, + ACTIONS(8067), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382723,14 +384715,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184165] = 4, + [175419] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7957), 1, + anon_sym_DASH2, + ACTIONS(8071), 1, + anon_sym_LT, + STATE(4781), 1, + sym_comment, + ACTIONS(7953), 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, + [175446] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2518), 1, - sym__space, - STATE(4795), 1, + STATE(4782), 1, sym_comment, - ACTIONS(2516), 13, + ACTIONS(2181), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2175), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382742,16 +384757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184190] = 4, - ACTIONS(3), 1, + [175470] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2420), 1, - sym__space, - STATE(4796), 1, + STATE(4783), 1, sym_comment, - ACTIONS(2418), 13, + ACTIONS(6827), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382765,15 +384776,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184215] = 4, - ACTIONS(249), 1, + [175492] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4797), 1, - sym_comment, - ACTIONS(1038), 2, - anon_sym_DASH, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(3621), 1, + anon_sym_DOLLAR, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(8073), 1, anon_sym_DOT, - ACTIONS(1040), 12, + ACTIONS(8077), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8079), 1, + aux_sym__immediate_decimal_token5, + STATE(4784), 1, + sym_comment, + STATE(5959), 1, + sym__immediate_decimal, + ACTIONS(1544), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8075), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5982), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [175532] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7957), 1, + anon_sym_DASH2, + STATE(4785), 1, + sym_comment, + ACTIONS(7953), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382783,17 +384821,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, - anon_sym_QMARK2, - [184240] = 4, + [175556] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7860), 1, - sym__space, - STATE(4798), 1, + STATE(4786), 1, sym_comment, - ACTIONS(7858), 13, + ACTIONS(5166), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5168), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382805,16 +384844,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, - [184265] = 4, + [175580] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2061), 1, - sym__space, - STATE(4799), 1, + STATE(4787), 1, sym_comment, - ACTIONS(2059), 13, + ACTIONS(5170), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5172), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382826,16 +384864,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, - [184290] = 4, - ACTIONS(3), 1, + [175604] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2553), 1, - sym__space, - STATE(4800), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4788), 1, sym_comment, - ACTIONS(2551), 13, + ACTIONS(8081), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382848,19 +384884,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, - [184315] = 6, - ACTIONS(249), 1, + [175628] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7862), 1, - sym__newline, - ACTIONS(7867), 1, - anon_sym_catch, - STATE(4792), 1, - aux_sym_shebang_repeat1, - STATE(4801), 1, + ACTIONS(8085), 1, + anon_sym_else, + STATE(4789), 1, sym_comment, - ACTIONS(7865), 11, + ACTIONS(8083), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382871,15 +384904,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, + [175652] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + anon_sym_DASH2, + ACTIONS(7297), 1, + aux_sym__unquoted_in_list_token2, + STATE(4790), 1, + sym_comment, + ACTIONS(1721), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [184344] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175678] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2424), 1, - sym__space, - STATE(4802), 1, + STATE(4791), 1, sym_comment, - ACTIONS(2422), 13, + ACTIONS(5174), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5176), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382891,16 +384945,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, - [184369] = 4, + [175702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2559), 1, - sym__space, - STATE(4803), 1, + STATE(4792), 1, sym_comment, - ACTIONS(2557), 13, + ACTIONS(5178), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5180), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382912,37 +384965,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184394] = 4, - ACTIONS(249), 1, + [175726] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4804), 1, + ACTIONS(6052), 1, + anon_sym_DASH2, + STATE(4793), 1, sym_comment, - ACTIONS(1536), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1538), 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, - [184419] = 4, - ACTIONS(3), 1, + ACTIONS(6054), 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, + [175750] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2452), 1, - sym__space, - STATE(4805), 1, + STATE(4794), 1, sym_comment, - ACTIONS(2450), 13, + ACTIONS(8087), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382956,35 +385004,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184444] = 4, - ACTIONS(3), 1, + [175772] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7244), 1, - sym__space, - STATE(4806), 1, + ACTIONS(8091), 1, + anon_sym_DASH2, + STATE(4795), 1, sym_comment, - ACTIONS(7242), 13, + ACTIONS(8089), 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, - [184469] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175796] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7517), 1, - sym__space, - STATE(4807), 1, + ACTIONS(8095), 1, + anon_sym_DASH2, + STATE(4796), 1, + sym_comment, + ACTIONS(8093), 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, + [175820] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4797), 1, sym_comment, - ACTIONS(7515), 13, + ACTIONS(8097), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382998,41 +385063,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184494] = 6, - ACTIONS(249), 1, + [175842] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7869), 1, + ACTIONS(8101), 1, + anon_sym_DASH2, + STATE(4798), 1, + sym_comment, + ACTIONS(8099), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7874), 1, - anon_sym_else, - STATE(4808), 1, + 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, + [175866] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8105), 1, + anon_sym_DASH2, + STATE(4799), 1, sym_comment, - STATE(4824), 1, - aux_sym_shebang_repeat1, - ACTIONS(7872), 11, - anon_sym_SEMI, + ACTIONS(8103), 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, - [184523] = 6, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175890] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(7614), 1, - anon_sym_DASH, - STATE(4809), 1, + ACTIONS(8109), 1, + anon_sym_DASH2, + STATE(4800), 1, sym_comment, - STATE(7525), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7612), 11, + ACTIONS(8107), 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, + [175914] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8113), 1, + anon_sym_DASH2, + STATE(4801), 1, + sym_comment, + ACTIONS(8111), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383042,16 +385140,97 @@ 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, + [175938] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(8115), 1, + anon_sym_RBRACK, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4604), 1, + aux_sym_parameter_parens_repeat1, + STATE(4802), 1, + sym_comment, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [175984] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, anon_sym_DASH_DASH, - [184552] = 4, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7721), 1, + anon_sym_PIPE, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4604), 1, + aux_sym_parameter_parens_repeat1, + STATE(4803), 1, + sym_comment, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [176030] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2496), 1, + STATE(4804), 1, + sym_comment, + ACTIONS(1032), 2, + ts_builtin_sym_end, sym__space, - STATE(4810), 1, + ACTIONS(1030), 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, + [176054] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4805), 1, sym_comment, - ACTIONS(2494), 13, + ACTIONS(8117), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383065,18 +385244,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184577] = 6, - ACTIONS(249), 1, + [176076] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7876), 1, - sym__newline, - ACTIONS(7881), 1, - anon_sym_else, - STATE(4747), 1, - aux_sym_shebang_repeat1, - STATE(4811), 1, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(8119), 1, + anon_sym_RPAREN, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4604), 1, + aux_sym_parameter_parens_repeat1, + STATE(4806), 1, + sym_comment, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [176122] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4807), 1, sym_comment, - ACTIONS(7879), 11, + ACTIONS(2349), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2347), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383087,15 +385295,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, - [184606] = 4, + [176146] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5075), 1, - sym__space, - STATE(4812), 1, + STATE(4808), 1, sym_comment, - ACTIONS(5077), 13, + ACTIONS(2349), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2347), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383107,16 +385315,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, - [184631] = 4, + [176170] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5083), 1, - sym__space, - STATE(4813), 1, + STATE(4809), 1, sym_comment, - ACTIONS(5085), 13, + ACTIONS(2506), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2504), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383128,20 +385335,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, - [184656] = 6, - ACTIONS(249), 1, + [176194] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7883), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8121), 1, sym__newline, - ACTIONS(7888), 1, - anon_sym_else, - STATE(4814), 1, + STATE(4810), 1, sym_comment, - STATE(4854), 1, - aux_sym_shebang_repeat1, - ACTIONS(7886), 11, + ACTIONS(8123), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383152,15 +385355,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_RPAREN, - [184685] = 4, + anon_sym_RBRACE, + [176220] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7873), 1, + aux_sym__immediate_decimal_token2, + STATE(4811), 1, + sym_comment, + ACTIONS(1607), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 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, + [176246] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8125), 1, + aux_sym__immediate_decimal_token2, + STATE(4812), 1, + sym_comment, + ACTIONS(1673), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1675), 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, + [176272] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2533), 1, - sym__space, - STATE(4815), 1, + STATE(4813), 1, sym_comment, - ACTIONS(2531), 13, + ACTIONS(2165), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2159), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383172,43 +385418,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, - [184710] = 6, - ACTIONS(3), 1, + [176296] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, - STATE(4816), 1, + STATE(4814), 1, sym_comment, - ACTIONS(2297), 5, + ACTIONS(1607), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 10, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2293), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - [184739] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [176320] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7745), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8127), 1, sym__newline, - ACTIONS(7747), 1, - sym__space, - STATE(4725), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4817), 1, + STATE(4815), 1, sym_comment, - ACTIONS(7890), 11, + ACTIONS(8129), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383219,19 +385458,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, - [184768] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + [176346] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5598), 1, - sym__newline, - ACTIONS(7892), 1, - anon_sym_catch, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4818), 1, + STATE(4816), 1, sym_comment, - ACTIONS(1351), 11, + ACTIONS(2494), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2492), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383242,15 +385479,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, - [184797] = 4, + [176370] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5504), 1, - sym__space, - STATE(4819), 1, + STATE(4817), 1, sym_comment, - ACTIONS(5502), 13, + ACTIONS(2510), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2508), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383262,39 +385499,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [176394] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4818), 1, + sym_comment, + ACTIONS(1621), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1623), 10, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [184822] = 6, - ACTIONS(249), 1, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [176418] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8131), 1, + anon_sym_DOLLAR, + ACTIONS(8133), 1, + anon_sym_DASH_DASH, + ACTIONS(8135), 1, + anon_sym_DASH2, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(1792), 1, + sym_block, + STATE(1793), 1, + sym_val_closure, + STATE(4819), 1, + sym_comment, + STATE(5011), 1, + aux_sym_ctrl_do_repeat1, + STATE(6126), 1, + sym__flag, + STATE(778), 2, + sym__blosure, + sym_val_variable, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [176460] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_AT, - ACTIONS(7897), 1, - anon_sym_DASH, STATE(4820), 1, sym_comment, - STATE(5200), 1, - sym_param_cmd, - ACTIONS(7895), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1673), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1675), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + 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, + [176484] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7713), 1, anon_sym_RBRACK, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4604), 1, + aux_sym_parameter_parens_repeat1, + STATE(4821), 1, + sym_comment, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [176530] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4822), 1, + sym_comment, + ACTIONS(1763), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1765), 10, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, + 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, + [176554] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7685), 1, anon_sym_DOLLAR, + ACTIONS(7687), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, anon_sym_DASH_DASH, - [184851] = 4, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7715), 1, + anon_sym_RPAREN, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4604), 1, + aux_sym_parameter_parens_repeat1, + STATE(4823), 1, + sym_comment, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [176600] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2468), 1, - sym__space, - STATE(4821), 1, + ACTIONS(1530), 1, + anon_sym_RBRACE, + ACTIONS(1544), 1, + sym__entry_separator, + ACTIONS(1546), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3097), 1, + anon_sym_DOLLAR, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8141), 1, + anon_sym_DOT, + ACTIONS(8143), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8145), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8147), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8149), 1, + aux_sym__immediate_decimal_token5, + STATE(4824), 1, + sym_comment, + STATE(5627), 1, + sym__immediate_decimal, + STATE(5811), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [176644] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4825), 1, sym_comment, - ACTIONS(2466), 13, + ACTIONS(2092), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2090), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383306,16 +385700,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, - [184876] = 4, + [176668] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5063), 1, - sym__space, - STATE(4822), 1, + STATE(4826), 1, sym_comment, - ACTIONS(5065), 13, + ACTIONS(2385), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2383), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383327,43 +385720,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, - [184901] = 6, + [176692] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, - STATE(4823), 1, + STATE(4827), 1, sym_comment, - ACTIONS(2305), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2303), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - [184930] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7899), 1, + ACTIONS(2482), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2480), 11, sym__newline, - ACTIONS(7904), 1, - anon_sym_else, - STATE(4717), 1, - aux_sym_shebang_repeat1, - STATE(4824), 1, - sym_comment, - ACTIONS(7902), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383374,15 +385740,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, - [184959] = 4, + [176716] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2480), 1, - sym__space, - STATE(4825), 1, + STATE(4828), 1, sym_comment, - ACTIONS(2478), 13, + ACTIONS(2466), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2464), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383394,16 +385760,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, - [184984] = 4, + [176740] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - sym__space, - STATE(4826), 1, + STATE(4829), 1, sym_comment, - ACTIONS(5099), 13, + ACTIONS(2470), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2468), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383415,39 +385780,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, - [185009] = 5, - ACTIONS(249), 1, + [176764] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7906), 1, - aux_sym__immediate_decimal_token2, - STATE(4827), 1, + STATE(4830), 1, sym_comment, - ACTIONS(1596), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 10, + ACTIONS(2377), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2375), 11, 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, - [185036] = 4, - ACTIONS(249), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [176788] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4828), 1, + ACTIONS(6048), 1, + anon_sym_DASH2, + STATE(4831), 1, sym_comment, - ACTIONS(1054), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1056), 12, + ACTIONS(6050), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383459,15 +385819,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [185061] = 4, + anon_sym_LPAREN2, + [176812] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, - sym__space, - STATE(4829), 1, + STATE(4832), 1, sym_comment, - ACTIONS(2095), 13, + ACTIONS(2173), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2167), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383479,19 +385840,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, - [185086] = 5, + [176836] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7908), 1, - anon_sym_EQ2, - STATE(4830), 1, + STATE(4833), 1, sym_comment, - ACTIONS(4945), 2, + ACTIONS(2139), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4947), 11, + ACTIONS(2133), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383503,18 +385860,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, - [185113] = 6, - ACTIONS(249), 1, + [176860] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5598), 1, - sym__newline, - ACTIONS(7910), 1, - anon_sym_else, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4831), 1, + STATE(4834), 1, sym_comment, - ACTIONS(1351), 11, + ACTIONS(5143), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5145), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383525,19 +385880,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, - [185142] = 6, - ACTIONS(249), 1, + [176884] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7913), 1, - sym__newline, - ACTIONS(7918), 1, - anon_sym_catch, - STATE(4776), 1, - aux_sym_shebang_repeat1, - STATE(4832), 1, + STATE(4835), 1, sym_comment, - ACTIONS(7916), 11, + ACTIONS(5128), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5130), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383548,15 +385900,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, - [185171] = 4, + [176908] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2500), 1, - sym__space, - STATE(4833), 1, + STATE(4836), 1, sym_comment, - ACTIONS(2498), 13, + ACTIONS(2401), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2399), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383568,16 +385920,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, - [185196] = 4, + [176932] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2428), 1, - sym__space, - STATE(4834), 1, + STATE(4837), 1, sym_comment, - ACTIONS(2426), 13, + ACTIONS(2474), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2472), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383589,16 +385940,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, - [185221] = 4, + [176956] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2448), 1, - sym__space, - STATE(4835), 1, + STATE(4838), 1, sym_comment, - ACTIONS(2446), 13, + ACTIONS(2478), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2476), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383610,20 +385960,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, - [185246] = 6, - ACTIONS(249), 1, + [176980] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7920), 1, - sym__newline, - ACTIONS(7925), 1, - anon_sym_else, - STATE(4836), 1, + STATE(4839), 1, sym_comment, - STATE(4849), 1, - aux_sym_shebang_repeat1, - ACTIONS(7923), 11, + ACTIONS(2373), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2371), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383634,15 +385980,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, - [185275] = 4, + [177004] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5603), 1, - sym__space, - STATE(4837), 1, + STATE(4840), 1, sym_comment, - ACTIONS(5601), 13, + ACTIONS(2490), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2488), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383654,16 +386000,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, - [185300] = 4, + [177028] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2488), 1, - sym__space, - STATE(4838), 1, + STATE(4841), 1, sym_comment, - ACTIONS(2486), 13, + ACTIONS(5096), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5098), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383675,16 +386020,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, - [185325] = 4, + [177052] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2416), 1, - sym__space, - STATE(4839), 1, + STATE(4842), 1, sym_comment, - ACTIONS(2414), 13, + ACTIONS(5100), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5102), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383696,16 +386040,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, - [185350] = 4, + [177076] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2003), 1, - sym__space, - STATE(4840), 1, + STATE(4843), 1, sym_comment, - ACTIONS(2001), 13, + ACTIONS(2498), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2496), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383717,16 +386060,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, - [185375] = 4, + [177100] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2019), 1, - sym__space, - STATE(4841), 1, + STATE(4844), 1, sym_comment, - ACTIONS(2017), 13, + ACTIONS(2393), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2391), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383738,85 +386080,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, - [185400] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2277), 1, - anon_sym_DASH, - STATE(4842), 1, - sym_comment, - ACTIONS(2279), 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, - [185429] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7761), 1, - anon_sym_AT, - ACTIONS(7763), 1, - anon_sym_DASH, - STATE(4843), 1, - sym_comment, - STATE(5079), 1, - sym_param_cmd, - ACTIONS(7759), 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, - [185458] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_DASH, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_token2, - STATE(4844), 1, - sym_comment, - ACTIONS(1850), 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, - [185487] = 4, + [177124] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2484), 1, - sym__space, STATE(4845), 1, sym_comment, - ACTIONS(2482), 13, + ACTIONS(2415), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2413), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383828,16 +386100,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, - [185512] = 4, + [177148] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2526), 1, - sym__space, STATE(4846), 1, sym_comment, - ACTIONS(2524), 13, + ACTIONS(2423), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2421), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383849,19 +386120,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, - [185537] = 5, + [177172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7068), 1, - aux_sym_unquoted_token2, STATE(4847), 1, sym_comment, - ACTIONS(1640), 2, + ACTIONS(2427), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1628), 11, + ACTIONS(2425), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383873,14 +386140,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, - [185564] = 4, + [177196] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5071), 1, - sym__space, STATE(4848), 1, sym_comment, - ACTIONS(5073), 13, + ACTIONS(2431), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2429), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383892,20 +386160,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, - [185589] = 6, - ACTIONS(249), 1, + [177220] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5598), 1, - sym__newline, - ACTIONS(7927), 1, - anon_sym_else, - STATE(2498), 1, - aux_sym_shebang_repeat1, STATE(4849), 1, sym_comment, - ACTIONS(1351), 11, + ACTIONS(2435), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2433), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383916,18 +386180,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, - [185618] = 5, + [177244] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7930), 1, - anon_sym_LBRACK2, STATE(4850), 1, sym_comment, - ACTIONS(2359), 2, + ACTIONS(2443), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2355), 11, + ACTIONS(2441), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383939,39 +386200,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, - [185645] = 4, - ACTIONS(249), 1, + [177268] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4851), 1, sym_comment, - ACTIONS(1528), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1530), 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, - [185670] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5598), 1, + ACTIONS(1950), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1948), 11, sym__newline, - ACTIONS(7932), 1, - anon_sym_else, - STATE(2498), 1, - aux_sym_shebang_repeat1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [177292] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4852), 1, sym_comment, - ACTIONS(1351), 11, + ACTIONS(2389), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2387), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383982,15 +386240,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, - [185699] = 4, + [177316] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2408), 1, - sym__space, STATE(4853), 1, sym_comment, - ACTIONS(2406), 13, + ACTIONS(2369), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2367), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384002,20 +386260,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, - [185724] = 6, - ACTIONS(249), 1, + [177340] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7935), 1, - sym__newline, - ACTIONS(7940), 1, - anon_sym_else, - STATE(4852), 1, - aux_sym_shebang_repeat1, STATE(4854), 1, sym_comment, - ACTIONS(7938), 11, + ACTIONS(1974), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1972), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384026,38 +386280,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, - [185753] = 6, - ACTIONS(249), 1, + [177364] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(7944), 1, - anon_sym_DASH, STATE(4855), 1, sym_comment, - STATE(7657), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7942), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1990), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1988), 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, - [185782] = 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, + [177388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, - sym__space, STATE(4856), 1, sym_comment, - ACTIONS(2043), 13, + ACTIONS(1994), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1992), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384069,16 +386320,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, - [185807] = 3, + [177412] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4857), 1, sym_comment, - ACTIONS(5502), 14, - sym__newline, + ACTIONS(2439), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(2437), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384089,16 +386340,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, - [185830] = 4, - ACTIONS(249), 1, + [177436] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7948), 1, - anon_sym_else, STATE(4858), 1, sym_comment, - ACTIONS(7946), 13, + ACTIONS(2006), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2004), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384110,39 +386360,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, - anon_sym_RBRACE, - [185855] = 6, - ACTIONS(249), 1, + [177460] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(7610), 1, - anon_sym_DASH, STATE(4859), 1, sym_comment, - STATE(7525), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7608), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2458), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2456), 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, - [185884] = 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, + [177484] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2512), 1, - sym__space, STATE(4860), 1, sym_comment, - ACTIONS(2510), 13, + ACTIONS(2462), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2460), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384154,16 +386400,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, - [185909] = 4, + [177508] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2571), 1, - sym__space, STATE(4861), 1, sym_comment, - ACTIONS(2569), 13, + ACTIONS(2070), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2068), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384175,16 +386420,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, - [185934] = 4, - ACTIONS(249), 1, + [177532] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7952), 1, - anon_sym_catch, STATE(4862), 1, sym_comment, - ACTIONS(7950), 13, + ACTIONS(1911), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1907), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384196,16 +386440,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, - [185959] = 4, + [177556] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2545), 1, - sym__space, STATE(4863), 1, sym_comment, - ACTIONS(2543), 13, + ACTIONS(2345), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2343), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384217,16 +386460,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, - [185984] = 4, + [177580] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2476), 1, - sym__space, STATE(4864), 1, sym_comment, - ACTIONS(2474), 13, + ACTIONS(2353), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2351), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384238,17 +386480,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [186009] = 4, - ACTIONS(3), 1, + [177604] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(4865), 1, sym_comment, - ACTIONS(5504), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5502), 11, + ACTIONS(8151), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384260,15 +386497,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, - [186033] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177626] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4866), 1, sym_comment, - ACTIONS(2400), 2, + ACTIONS(1915), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2398), 11, + ACTIONS(1913), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384280,15 +386519,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, - [186057] = 4, + [177650] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4867), 1, sym_comment, - ACTIONS(2508), 2, + ACTIONS(2357), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2506), 11, + ACTIONS(2355), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384300,15 +386539,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, - [186081] = 4, + [177674] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4868), 1, sym_comment, - ACTIONS(2512), 2, + ACTIONS(2361), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2510), 11, + ACTIONS(2359), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384320,12 +386559,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, - [186105] = 3, - ACTIONS(249), 1, + [177698] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4869), 1, sym_comment, - ACTIONS(7954), 13, + ACTIONS(5685), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5683), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384337,17 +386579,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, - [186127] = 4, + [177722] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4870), 1, sym_comment, - ACTIONS(2081), 2, + ACTIONS(1721), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2079), 11, + ACTIONS(1709), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384359,15 +386599,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, - [186151] = 4, + [177746] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4871), 1, sym_comment, - ACTIONS(2518), 2, + ACTIONS(2365), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2516), 11, + ACTIONS(2363), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384379,15 +386619,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, - [186175] = 4, - ACTIONS(3), 1, + [177770] = 4, + ACTIONS(247), 1, anon_sym_POUND, + STATE(1816), 1, + aux_sym_shebang_repeat1, STATE(4872), 1, sym_comment, - ACTIONS(7244), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7242), 11, + ACTIONS(8153), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384399,12 +386638,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, - [186199] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + [177794] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(4873), 1, sym_comment, - ACTIONS(7956), 13, + ACTIONS(8001), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384418,12 +386658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186221] = 3, - ACTIONS(249), 1, + [177816] = 4, + ACTIONS(247), 1, anon_sym_POUND, + STATE(4788), 1, + aux_sym_shebang_repeat1, STATE(4874), 1, sym_comment, - ACTIONS(7958), 13, + ACTIONS(8155), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384436,15 +386678,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, - [186243] = 4, - ACTIONS(249), 1, + [177840] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2498), 1, - aux_sym_shebang_repeat1, STATE(4875), 1, sym_comment, - ACTIONS(7960), 12, + ACTIONS(2096), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2094), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384456,13 +386698,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, - [186267] = 3, - ACTIONS(249), 1, + [177864] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8159), 1, + sym__space, STATE(4876), 1, sym_comment, - ACTIONS(7962), 13, + ACTIONS(8157), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384475,35 +386718,77 @@ static 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, - [186289] = 4, - ACTIONS(249), 1, + [177888] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7966), 1, - anon_sym_DASH, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7743), 1, + anon_sym_RBRACK, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4604), 1, + aux_sym_parameter_parens_repeat1, STATE(4877), 1, sym_comment, - ACTIONS(7964), 12, - anon_sym_EQ, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [177934] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7679), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7685), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(7687), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, anon_sym_DASH_DASH, - [186313] = 4, - ACTIONS(249), 1, - anon_sym_POUND, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(7745), 1, + anon_sym_RPAREN, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4604), 1, + aux_sym_parameter_parens_repeat1, STATE(4878), 1, sym_comment, - STATE(5013), 1, - aux_sym_shebang_repeat1, - ACTIONS(7968), 12, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [177980] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4879), 1, + sym_comment, + ACTIONS(2502), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2500), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384515,13 +386800,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, - [186337] = 3, - ACTIONS(249), 1, + [178004] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4879), 1, + STATE(4880), 1, sym_comment, - ACTIONS(7725), 13, + ACTIONS(7896), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7894), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384533,16 +386820,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, - [186359] = 4, + [178028] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7972), 1, - sym__space, - STATE(4880), 1, + STATE(4881), 1, sym_comment, - ACTIONS(7970), 12, + ACTIONS(2397), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2395), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384554,16 +386840,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, - [186383] = 4, + [178052] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4881), 1, + STATE(4882), 1, sym_comment, - ACTIONS(2522), 2, + ACTIONS(2405), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2520), 11, + ACTIONS(2403), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384575,15 +386860,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, - [186407] = 4, + [178076] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4882), 1, + STATE(4883), 1, sym_comment, - ACTIONS(7820), 2, + ACTIONS(7439), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7818), 11, + ACTIONS(7437), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384595,62 +386880,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, - [186431] = 14, - ACTIONS(3), 1, + [178100] = 15, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_RBRACK, - ACTIONS(1524), 1, - sym__entry_separator, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3044), 1, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7685), 1, anon_sym_DOLLAR, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(7976), 1, - anon_sym_DOT, - ACTIONS(7978), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7980), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7982), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7984), 1, - aux_sym__immediate_decimal_token5, - STATE(4883), 1, - sym_comment, - STATE(5721), 1, - sym__immediate_decimal, - STATE(5904), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186475] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1090), 1, - anon_sym_DASH, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(8161), 1, + anon_sym_RBRACK, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4604), 1, + aux_sym_parameter_parens_repeat1, STATE(4884), 1, sym_comment, - ACTIONS(1092), 12, - anon_sym_EQ, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [178146] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7679), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7685), 1, anon_sym_DOLLAR, + ACTIONS(7687), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [186499] = 3, - ACTIONS(249), 1, - anon_sym_POUND, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(8163), 1, + anon_sym_RPAREN, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4604), 1, + aux_sym_parameter_parens_repeat1, STATE(4885), 1, sym_comment, - ACTIONS(7986), 13, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [178192] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4886), 1, + sym_comment, + ACTIONS(7900), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7898), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384662,14 +386962,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, - [186521] = 3, - ACTIONS(249), 1, + [178216] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4886), 1, + STATE(4887), 1, sym_comment, - ACTIONS(7988), 13, + ACTIONS(7922), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7920), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384681,34 +386982,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, - [186543] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2454), 1, - anon_sym_DASH, - STATE(4887), 1, - sym_comment, - ACTIONS(2456), 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, - [186567] = 3, - ACTIONS(249), 1, + [178240] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4888), 1, sym_comment, - ACTIONS(7990), 13, + ACTIONS(7933), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7931), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384720,41 +387002,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, - anon_sym_RBRACE, - [186589] = 11, - ACTIONS(249), 1, + [178264] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(7992), 1, - anon_sym_DOLLAR, - ACTIONS(7996), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7998), 1, - aux_sym__immediate_decimal_token5, STATE(4889), 1, sym_comment, - STATE(6230), 1, - sym__immediate_decimal, - ACTIONS(7994), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3433), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1556), 3, + ACTIONS(2409), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2407), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [186627] = 3, - ACTIONS(249), 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, + [178288] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4890), 1, sym_comment, - ACTIONS(8000), 13, + ACTIONS(7937), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7935), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384766,154 +387042,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, - [186649] = 4, - ACTIONS(249), 1, + [178312] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH, STATE(4891), 1, sym_comment, - ACTIONS(1899), 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, - [186673] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2547), 1, - anon_sym_DASH, - STATE(4892), 1, - sym_comment, - ACTIONS(2549), 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, - [186697] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4893), 1, - sym_comment, - ACTIONS(1074), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1076), 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, - [186721] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DASH, - STATE(4894), 1, - sym_comment, - ACTIONS(2541), 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, - [186745] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4895), 1, - sym_comment, - ACTIONS(1066), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1068), 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, - [186769] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4896), 1, - sym_comment, - ACTIONS(1070), 2, - anon_sym_DASH, - anon_sym_DOT, - 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, - [186793] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2406), 1, - anon_sym_DASH, - STATE(4897), 1, - sym_comment, - ACTIONS(2408), 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, - [186817] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4898), 1, - sym_comment, - ACTIONS(8002), 13, + ACTIONS(7606), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384925,34 +387062,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, - [186839] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2543), 1, - anon_sym_DASH, - STATE(4899), 1, - sym_comment, - ACTIONS(2545), 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, - [186863] = 3, - ACTIONS(249), 1, + [178336] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4900), 1, + STATE(4892), 1, sym_comment, - ACTIONS(8004), 13, + ACTIONS(2381), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2379), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384964,156 +387082,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [186885] = 4, - ACTIONS(249), 1, + [178360] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2561), 1, - anon_sym_DASH, - STATE(4901), 1, + STATE(4893), 1, sym_comment, - ACTIONS(2563), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7983), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7981), 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_LBRACE, - [186909] = 4, - ACTIONS(249), 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, + [178384] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH, - STATE(4902), 1, + STATE(4872), 1, + aux_sym_shebang_repeat1, + STATE(4894), 1, sym_comment, - ACTIONS(2003), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8165), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [186933] = 4, - ACTIONS(249), 1, + [178408] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2535), 1, - anon_sym_DASH, - STATE(4903), 1, + STATE(4895), 1, sym_comment, - ACTIONS(2537), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8167), 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_LBRACE, - [186957] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + [178430] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2466), 1, - anon_sym_DASH, - STATE(4904), 1, + STATE(4896), 1, sym_comment, - ACTIONS(2468), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8169), 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_LBRACE, - [186981] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + [178452] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2017), 1, - anon_sym_DASH, - STATE(4905), 1, + STATE(4897), 1, sym_comment, - ACTIONS(2019), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8171), 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_LBRACE, - [187005] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + [178474] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH, - STATE(4906), 1, - sym_comment, - ACTIONS(2045), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [187029] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_DASH, - STATE(4907), 1, + ACTIONS(8177), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8179), 1, + aux_sym__immediate_decimal_token5, + STATE(4898), 1, sym_comment, - ACTIONS(2049), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(6288), 1, + sym__immediate_decimal, + ACTIONS(8175), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3431), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1577), 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, - anon_sym_LBRACE, - [187053] = 4, - ACTIONS(249), 1, + anon_sym_if, + anon_sym_EQ_GT, + [178512] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2434), 1, - anon_sym_DASH, - STATE(4908), 1, + ACTIONS(8183), 1, + anon_sym_DASH2, + STATE(4899), 1, sym_comment, - ACTIONS(2436), 12, + ACTIONS(8181), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385123,157 +387223,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [187077] = 4, - ACTIONS(249), 1, + [178536] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_DASH, - STATE(4909), 1, + STATE(4900), 1, sym_comment, - ACTIONS(2061), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8185), 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_LBRACE, - [187101] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + [178558] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2442), 1, - anon_sym_DASH, - STATE(4910), 1, + ACTIONS(8187), 1, + anon_sym_catch, + STATE(4901), 1, sym_comment, - ACTIONS(2444), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8050), 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_LBRACE, - [187125] = 4, - ACTIONS(249), 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, + [178582] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2450), 1, - anon_sym_DASH, - STATE(4911), 1, + STATE(4902), 1, sym_comment, - ACTIONS(2452), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2108), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2106), 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_LBRACE, - [187149] = 4, - ACTIONS(249), 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, + [178606] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2067), 1, - anon_sym_DASH, - STATE(4912), 1, + STATE(4903), 1, sym_comment, - ACTIONS(2069), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8001), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7999), 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_LBRACE, - [187173] = 4, - ACTIONS(249), 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, + [178630] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2087), 1, - anon_sym_DASH, - STATE(4913), 1, + ACTIONS(8189), 1, + anon_sym_else, + STATE(4904), 1, sym_comment, - ACTIONS(2089), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8083), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [187197] = 4, - ACTIONS(249), 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_RBRACE, + [178654] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2470), 1, - anon_sym_DASH, - STATE(4914), 1, + STATE(4905), 1, sym_comment, - ACTIONS(2472), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2514), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2512), 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_LBRACE, - [187221] = 4, - ACTIONS(249), 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, + [178678] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2474), 1, - anon_sym_DASH, - STATE(4915), 1, + STATE(4906), 1, sym_comment, - ACTIONS(2476), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7373), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7371), 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_LBRACE, - [187245] = 4, - ACTIONS(249), 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, + [178702] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2095), 1, - anon_sym_DASH, - STATE(4916), 1, + ACTIONS(1030), 1, + anon_sym_DASH2, + STATE(4907), 1, sym_comment, - ACTIONS(2097), 12, + ACTIONS(1032), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385286,14 +387385,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187269] = 4, - ACTIONS(249), 1, + [178726] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2502), 1, - anon_sym_DASH, - STATE(4917), 1, + ACTIONS(2504), 1, + anon_sym_DASH2, + STATE(4908), 1, sym_comment, - ACTIONS(2504), 12, + ACTIONS(2506), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385306,70 +387405,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187293] = 4, - ACTIONS(249), 1, + [178750] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2531), 1, - anon_sym_DASH, - STATE(4918), 1, - sym_comment, - ACTIONS(2533), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1530), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1544), 1, + sym__entry_separator, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3097), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [187317] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4919), 1, - sym_comment, - ACTIONS(8006), 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, - [187339] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4920), 1, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8191), 1, + anon_sym_DOT, + ACTIONS(8193), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8195), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8197), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8199), 1, + aux_sym__immediate_decimal_token5, + STATE(4909), 1, sym_comment, - ACTIONS(8008), 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, - [187361] = 3, - ACTIONS(249), 1, + STATE(5711), 1, + sym__immediate_decimal, + STATE(5811), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [178794] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4921), 1, + STATE(4910), 1, sym_comment, - ACTIONS(8010), 13, + ACTIONS(5697), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5695), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385381,14 +387455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [187383] = 3, - ACTIONS(249), 1, + [178818] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4922), 1, + STATE(4911), 1, sym_comment, - ACTIONS(8012), 13, + ACTIONS(8201), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385402,14 +387474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187405] = 4, - ACTIONS(249), 1, + [178840] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH, - STATE(4923), 1, + ACTIONS(2090), 1, + anon_sym_DASH2, + STATE(4912), 1, sym_comment, - ACTIONS(1911), 12, + ACTIONS(2092), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385422,16 +387494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187429] = 5, - ACTIONS(249), 1, + [178864] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - ACTIONS(7135), 1, - aux_sym__unquoted_in_list_token2, - STATE(4924), 1, + ACTIONS(2383), 1, + anon_sym_DASH2, + STATE(4913), 1, sym_comment, - ACTIONS(1640), 11, + ACTIONS(2385), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385443,14 +387513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187455] = 4, - ACTIONS(249), 1, + anon_sym_LBRACE, + [178888] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6069), 1, - anon_sym_DASH, - STATE(4925), 1, + ACTIONS(2480), 1, + anon_sym_DASH2, + STATE(4914), 1, sym_comment, - ACTIONS(6071), 12, + ACTIONS(2482), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385462,15 +387533,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LBRACE, + [178912] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1591), 1, + sym__entry_separator, + ACTIONS(3097), 1, + anon_sym_DOLLAR, + ACTIONS(8139), 1, anon_sym_LPAREN2, - [187479] = 4, - ACTIONS(249), 1, + ACTIONS(8193), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8195), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8197), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8199), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8203), 1, + anon_sym_DOT, + STATE(4915), 1, + sym_comment, + STATE(5764), 1, + sym__immediate_decimal, + ACTIONS(1581), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(5920), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [178954] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4875), 1, - aux_sym_shebang_repeat1, - STATE(4926), 1, + STATE(4916), 1, sym_comment, - ACTIONS(8014), 12, + ACTIONS(8205), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385483,14 +387581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187503] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + [178976] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2569), 1, - anon_sym_DASH, - STATE(4927), 1, + ACTIONS(2399), 1, + anon_sym_DASH2, + STATE(4917), 1, sym_comment, - ACTIONS(2571), 12, + ACTIONS(2401), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385503,14 +387602,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187527] = 4, - ACTIONS(249), 1, + [179000] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2398), 1, - anon_sym_DASH, - STATE(4928), 1, + ACTIONS(2488), 1, + anon_sym_DASH2, + STATE(4918), 1, sym_comment, - ACTIONS(2400), 12, + ACTIONS(2490), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385523,14 +387622,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187551] = 4, - ACTIONS(249), 1, + [179024] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2506), 1, - anon_sym_DASH, - STATE(4929), 1, + ACTIONS(2496), 1, + anon_sym_DASH2, + STATE(4919), 1, sym_comment, - ACTIONS(2508), 12, + ACTIONS(2498), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385543,14 +387642,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187575] = 4, - ACTIONS(249), 1, + [179048] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2510), 1, - anon_sym_DASH, - STATE(4930), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, + anon_sym_DOLLAR, + ACTIONS(8177), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8179), 1, + aux_sym__immediate_decimal_token5, + STATE(4920), 1, + sym_comment, + STATE(6670), 1, + sym__immediate_decimal, + ACTIONS(8175), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3436), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1544), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [179086] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1948), 1, + anon_sym_DASH2, + STATE(4921), 1, sym_comment, - ACTIONS(2512), 12, + ACTIONS(1950), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385563,85 +387689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187599] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(8016), 1, - sym__newline, - STATE(4931), 1, - sym_comment, - ACTIONS(8018), 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, - [187625] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(8020), 1, - sym__newline, - STATE(4932), 1, - sym_comment, - ACTIONS(8022), 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, - [187651] = 13, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(8024), 1, - anon_sym_DOLLAR, - ACTIONS(8026), 1, - anon_sym_DASH_DASH, - ACTIONS(8028), 1, - anon_sym_DASH, - ACTIONS(8030), 1, - anon_sym_LBRACE, - STATE(1680), 1, - sym_block, - STATE(1686), 1, - sym_val_closure, - STATE(4933), 1, - sym_comment, - STATE(5193), 1, - aux_sym_ctrl_do_repeat1, - STATE(6018), 1, - sym__flag, - STATE(710), 2, - sym__blosure, - sym_val_variable, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [187693] = 4, - ACTIONS(249), 1, + [179110] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6079), 1, - anon_sym_DASH, - STATE(4934), 1, + ACTIONS(2387), 1, + anon_sym_DASH2, + STATE(4922), 1, sym_comment, - ACTIONS(6081), 12, + ACTIONS(2389), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385653,36 +387708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [187717] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7831), 1, - aux_sym__immediate_decimal_token2, - STATE(4935), 1, - sym_comment, - ACTIONS(1536), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [187743] = 4, - ACTIONS(249), 1, + anon_sym_LBRACE, + [179134] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2494), 1, - anon_sym_DASH, - STATE(4936), 1, + ACTIONS(2367), 1, + anon_sym_DASH2, + STATE(4923), 1, sym_comment, - ACTIONS(2496), 12, + ACTIONS(2369), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385695,14 +387729,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187767] = 4, - ACTIONS(249), 1, + [179158] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2494), 1, - anon_sym_DASH, - STATE(4937), 1, + ACTIONS(1972), 1, + anon_sym_DASH2, + STATE(4924), 1, sym_comment, - ACTIONS(2496), 12, + ACTIONS(1974), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385715,75 +387749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187791] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8032), 1, - aux_sym__immediate_decimal_token2, - STATE(4938), 1, - sym_comment, - ACTIONS(1596), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [187817] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4939), 1, - sym_comment, - ACTIONS(1536), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [187841] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4940), 1, - sym_comment, - ACTIONS(1528), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [187865] = 4, - ACTIONS(249), 1, + [179182] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2430), 1, - anon_sym_DASH, - STATE(4941), 1, + ACTIONS(1988), 1, + anon_sym_DASH2, + STATE(4925), 1, sym_comment, - ACTIONS(2432), 12, + ACTIONS(1990), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385796,14 +387769,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187889] = 4, - ACTIONS(249), 1, + [179206] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2478), 1, - anon_sym_DASH, - STATE(4942), 1, + ACTIONS(1992), 1, + anon_sym_DASH2, + STATE(4926), 1, sym_comment, - ACTIONS(2480), 12, + ACTIONS(1994), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385816,54 +387789,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187913] = 4, - ACTIONS(249), 1, + [179230] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4943), 1, - sym_comment, - ACTIONS(1596), 3, - anon_sym_DASH, + ACTIONS(1709), 1, + anon_sym_DASH2, + ACTIONS(4708), 1, anon_sym_DOT_DOT2, + ACTIONS(6458), 1, aux_sym_unquoted_token2, - ACTIONS(1598), 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, + ACTIONS(8207), 1, sym_filesize_unit, + ACTIONS(8209), 1, sym_duration_unit, - [187937] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4944), 1, + STATE(4927), 1, sym_comment, - ACTIONS(1711), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 10, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1721), 6, 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, - [187961] = 4, - ACTIONS(249), 1, + [179264] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2410), 1, - anon_sym_DASH, - STATE(4945), 1, + ACTIONS(2437), 1, + anon_sym_DASH2, + STATE(4928), 1, sym_comment, - ACTIONS(2412), 12, + ACTIONS(2439), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385876,14 +387834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187985] = 4, - ACTIONS(249), 1, + [179288] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2438), 1, - anon_sym_DASH, - STATE(4946), 1, + ACTIONS(2004), 1, + anon_sym_DASH2, + STATE(4929), 1, sym_comment, - ACTIONS(2440), 12, + ACTIONS(2006), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385896,14 +387854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [188009] = 4, - ACTIONS(249), 1, + [179312] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8036), 1, - anon_sym_DASH, - STATE(4947), 1, + ACTIONS(2456), 1, + anon_sym_DASH2, + STATE(4930), 1, sym_comment, - ACTIONS(8034), 12, + ACTIONS(2458), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385913,110 +387871,37 @@ 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, - [188033] = 4, - ACTIONS(249), 1, + anon_sym_LBRACE, + [179336] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8040), 1, - anon_sym_DASH, - STATE(4948), 1, + ACTIONS(2460), 1, + anon_sym_DASH2, + STATE(4931), 1, sym_comment, - ACTIONS(8038), 12, + ACTIONS(2462), 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, - [188057] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8042), 1, - anon_sym_PIPE, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4647), 1, - aux_sym_parameter_parens_repeat1, - STATE(4949), 1, - sym_comment, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [188103] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4950), 1, - sym_comment, - ACTIONS(7725), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7723), 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, - [188127] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8044), 1, - anon_sym_else, - STATE(4951), 1, - sym_comment, - ACTIONS(7946), 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, - [188151] = 5, - ACTIONS(249), 1, + anon_sym_LBRACE, + [179360] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8048), 1, - anon_sym_QMARK, - ACTIONS(8050), 1, - anon_sym_DASH, - STATE(4952), 1, + ACTIONS(2068), 1, + anon_sym_DASH2, + STATE(4932), 1, sym_comment, - ACTIONS(8046), 11, + ACTIONS(2070), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386028,255 +387913,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188177] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7656), 1, - anon_sym_PIPE, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4647), 1, - aux_sym_parameter_parens_repeat1, - STATE(4953), 1, - sym_comment, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [188223] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4954), 1, - sym_comment, - ACTIONS(5097), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5099), 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, - [188247] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7560), 1, - anon_sym_RBRACK, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4647), 1, - aux_sym_parameter_parens_repeat1, - STATE(4955), 1, - sym_comment, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [188293] = 3, - ACTIONS(249), 1, + anon_sym_LBRACE, + [179384] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4956), 1, + ACTIONS(1907), 1, + anon_sym_DASH2, + STATE(4933), 1, sym_comment, - ACTIONS(5117), 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, - [188315] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, + ACTIONS(1911), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7593), 1, - anon_sym_RPAREN, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4647), 1, - aux_sym_parameter_parens_repeat1, - STATE(4957), 1, - sym_comment, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [188361] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(4958), 1, - sym_comment, - ACTIONS(5121), 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, - [188383] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(3616), 1, - anon_sym_DOLLAR, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(8052), 1, - anon_sym_DOT, - ACTIONS(8056), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8058), 1, - aux_sym__immediate_decimal_token5, - STATE(4959), 1, - sym_comment, - STATE(5947), 1, - sym__immediate_decimal, - ACTIONS(1524), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8054), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5976), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188423] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8060), 1, - anon_sym_RBRACK, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4647), 1, - aux_sym_parameter_parens_repeat1, - STATE(4960), 1, - sym_comment, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [188469] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8062), 1, - anon_sym_RPAREN, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4647), 1, - aux_sym_parameter_parens_repeat1, - STATE(4961), 1, - sym_comment, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [188515] = 4, - ACTIONS(249), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [179408] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7757), 1, - anon_sym_DASH, - STATE(4962), 1, + ACTIONS(2343), 1, + anon_sym_DASH2, + STATE(4934), 1, sym_comment, - ACTIONS(7753), 12, + ACTIONS(2345), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386286,160 +387951,138 @@ 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, - [188539] = 4, - ACTIONS(249), 1, + anon_sym_LBRACE, + [179432] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8064), 1, - anon_sym_catch, - STATE(4963), 1, + ACTIONS(2351), 1, + anon_sym_DASH2, + STATE(4935), 1, sym_comment, - ACTIONS(7950), 12, - ts_builtin_sym_end, + ACTIONS(2353), 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, - [188563] = 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, + [179456] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4964), 1, + ACTIONS(1913), 1, + anon_sym_DASH2, + STATE(4936), 1, sym_comment, - ACTIONS(5063), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5065), 11, + ACTIONS(1915), 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, - [188587] = 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, + [179480] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4965), 1, + ACTIONS(2355), 1, + anon_sym_DASH2, + STATE(4937), 1, sym_comment, - ACTIONS(5071), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5073), 11, + ACTIONS(2357), 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, - [188611] = 15, - ACTIONS(249), 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, + [179504] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7542), 1, + ACTIONS(2359), 1, + anon_sym_DASH2, + STATE(4938), 1, + sym_comment, + ACTIONS(2361), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7548), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7550), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8066), 1, - anon_sym_RBRACK, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4647), 1, - aux_sym_parameter_parens_repeat1, - STATE(4966), 1, - sym_comment, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [188657] = 15, - ACTIONS(249), 1, + anon_sym_LBRACE, + [179528] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7542), 1, + ACTIONS(1709), 1, + anon_sym_DASH2, + STATE(4939), 1, + sym_comment, + ACTIONS(1721), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7548), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7550), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(8068), 1, - anon_sym_RPAREN, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4647), 1, - aux_sym_parameter_parens_repeat1, - STATE(4967), 1, - sym_comment, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [188703] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + [179552] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4968), 1, + ACTIONS(2363), 1, + anon_sym_DASH2, + STATE(4940), 1, sym_comment, - ACTIONS(5047), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5049), 11, + ACTIONS(2365), 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, - [188727] = 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, + [179576] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4969), 1, + STATE(4941), 1, sym_comment, - ACTIONS(5067), 2, + ACTIONS(5689), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5069), 11, + ACTIONS(5687), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386451,14 +388094,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, - [188751] = 4, - ACTIONS(249), 1, + [179600] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8072), 1, - anon_sym_DASH, - STATE(4970), 1, + STATE(4942), 1, sym_comment, - ACTIONS(8070), 12, + ACTIONS(1006), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1008), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386468,17 +388112,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, - [188775] = 4, - ACTIONS(249), 1, + [179624] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8076), 1, - anon_sym_DASH, - STATE(4971), 1, + STATE(4943), 1, sym_comment, - ACTIONS(8074), 12, + ACTIONS(1010), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1012), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386488,17 +388132,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, - [188799] = 4, - ACTIONS(249), 1, + [179648] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8080), 1, - anon_sym_DASH, - STATE(4972), 1, + STATE(4944), 1, sym_comment, - ACTIONS(8078), 12, + ACTIONS(1014), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1016), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386508,37 +388152,36 @@ 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, - [188823] = 4, - ACTIONS(3), 1, + [179672] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4973), 1, + ACTIONS(8213), 1, + anon_sym_DASH2, + STATE(4945), 1, sym_comment, - ACTIONS(2571), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2569), 11, + ACTIONS(8211), 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, - [188847] = 4, - ACTIONS(249), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179696] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8084), 1, - anon_sym_DASH, - STATE(4974), 1, + ACTIONS(2395), 1, + anon_sym_DASH2, + STATE(4946), 1, sym_comment, - ACTIONS(8082), 12, + ACTIONS(2397), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386548,17 +388191,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, - [188871] = 4, - ACTIONS(249), 1, + anon_sym_LBRACE, + [179720] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8088), 1, - anon_sym_DASH, - STATE(4975), 1, + ACTIONS(2403), 1, + anon_sym_DASH2, + STATE(4947), 1, sym_comment, - ACTIONS(8086), 12, + ACTIONS(2405), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386568,46 +388211,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, - [188895] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6231), 1, - anon_sym_DOT, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - STATE(4976), 1, - sym_comment, - STATE(5970), 1, - sym__immediate_decimal, - ACTIONS(1570), 2, - anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6233), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5969), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188935] = 4, + [179744] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4977), 1, + STATE(4948), 1, sym_comment, - ACTIONS(2228), 2, + ACTIONS(5693), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2222), 11, + ACTIONS(5691), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386619,65 +388234,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, - [188959] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_RBRACE, - ACTIONS(1524), 1, - sym__entry_separator, - ACTIONS(1526), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(3044), 1, - anon_sym_DOLLAR, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(8090), 1, - anon_sym_DOT, - ACTIONS(8092), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8094), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8096), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8098), 1, - aux_sym__immediate_decimal_token5, - STATE(4978), 1, - sym_comment, - STATE(5742), 1, - sym__immediate_decimal, - STATE(5904), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189003] = 4, - ACTIONS(3), 1, + [179768] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4979), 1, + ACTIONS(2407), 1, + anon_sym_DASH2, + STATE(4949), 1, sym_comment, - ACTIONS(2567), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2565), 11, + ACTIONS(2409), 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, - [189027] = 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, + [179792] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4980), 1, + STATE(4950), 1, sym_comment, - ACTIONS(2240), 2, + ACTIONS(5681), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2234), 11, + ACTIONS(5679), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386689,15 +388274,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, - [189051] = 4, + [179816] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4981), 1, + STATE(4951), 1, sym_comment, - ACTIONS(2119), 2, + ACTIONS(5162), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2113), 11, + ACTIONS(5164), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386709,55 +388294,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, - [189075] = 4, - ACTIONS(3), 1, + [179840] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4982), 1, + ACTIONS(2347), 1, + anon_sym_DASH2, + STATE(4952), 1, sym_comment, - ACTIONS(2212), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2206), 11, + ACTIONS(2349), 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, - [189099] = 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, + [179864] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4983), 1, + ACTIONS(2347), 1, + anon_sym_DASH2, + STATE(4953), 1, sym_comment, - ACTIONS(5051), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5053), 11, + ACTIONS(2349), 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, - [189123] = 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, + [179888] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4984), 1, + STATE(4954), 1, sym_comment, - ACTIONS(5059), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5061), 11, + ACTIONS(8123), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386769,15 +388351,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, - [189147] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179910] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4985), 1, + STATE(4955), 1, sym_comment, - ACTIONS(7784), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7782), 11, + ACTIONS(8129), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386789,15 +388370,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, - [189171] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179932] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4986), 1, + STATE(4956), 1, sym_comment, - ACTIONS(7364), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7362), 11, + ACTIONS(5120), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386809,16 +388389,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, - [189195] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179954] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4987), 1, - sym_comment, - ACTIONS(7797), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7795), 11, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(8121), 1, sym__newline, + STATE(4957), 1, + sym_comment, + ACTIONS(8123), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386829,16 +388411,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, - [189219] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [179980] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4988), 1, - sym_comment, - ACTIONS(2553), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2551), 11, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(8127), 1, sym__newline, + STATE(4958), 1, + sym_comment, + ACTIONS(8129), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386849,80 +388432,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, - [189243] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [180006] = 13, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4989), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(8131), 1, + anon_sym_DOLLAR, + ACTIONS(8133), 1, + anon_sym_DASH_DASH, + ACTIONS(8135), 1, + anon_sym_DASH2, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(1792), 1, + sym_block, + STATE(1793), 1, + sym_val_closure, + STATE(4959), 1, sym_comment, - ACTIONS(2424), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2422), 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, - [189267] = 9, - ACTIONS(249), 1, + STATE(5011), 1, + aux_sym_ctrl_do_repeat1, + STATE(6126), 1, + sym__flag, + STATE(778), 2, + sym__blosure, + sym_val_variable, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [180048] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - ACTIONS(4614), 1, - anon_sym_DOT_DOT2, - ACTIONS(6929), 1, - aux_sym_unquoted_token2, - ACTIONS(8100), 1, - sym_filesize_unit, - ACTIONS(8102), 1, - sym_duration_unit, - STATE(4990), 1, + ACTIONS(2492), 1, + anon_sym_DASH2, + STATE(4960), 1, sym_comment, - ACTIONS(4616), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 6, + ACTIONS(2494), 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, - [189301] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + [180072] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4991), 1, + ACTIONS(2508), 1, + anon_sym_DASH2, + STATE(4961), 1, sym_comment, - ACTIONS(2559), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2557), 11, + ACTIONS(2510), 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, - [189325] = 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, + [180096] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4992), 1, + STATE(4962), 1, sym_comment, - ACTIONS(7809), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7807), 11, + ACTIONS(5124), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386934,15 +388519,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, - [189349] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180118] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4993), 1, + STATE(4963), 1, sym_comment, - ACTIONS(5075), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5077), 11, + ACTIONS(8215), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386954,15 +388538,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, - [189373] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180140] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4994), 1, + STATE(4964), 1, sym_comment, - ACTIONS(5083), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5085), 11, + ACTIONS(8217), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386974,15 +388557,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, - [189397] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180162] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4995), 1, + STATE(4965), 1, sym_comment, - ACTIONS(7842), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7840), 11, + ACTIONS(8219), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386994,15 +388576,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, - [189421] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180184] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4996), 1, + STATE(4966), 1, sym_comment, - ACTIONS(7860), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7858), 11, + ACTIONS(8221), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387014,15 +388595,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, - [189445] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180206] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4997), 1, + STATE(4967), 1, sym_comment, - ACTIONS(2500), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2498), 11, + ACTIONS(6833), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387034,35 +388614,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, - [189469] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180228] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4998), 1, + ACTIONS(1530), 1, + anon_sym_DASH2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6435), 1, + anon_sym_DOT, + ACTIONS(8223), 1, + anon_sym_DOLLAR, + STATE(4968), 1, sym_comment, - ACTIONS(2428), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2426), 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, - [189493] = 4, - ACTIONS(3), 1, + STATE(5969), 1, + sym__immediate_decimal, + ACTIONS(1544), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6209), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5974), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [180268] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4999), 1, + ACTIONS(8225), 1, + anon_sym_else, + STATE(4969), 1, sym_comment, - ACTIONS(2448), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2446), 11, + ACTIONS(8083), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387074,56 +388663,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189517] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [180292] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5000), 1, + ACTIONS(1581), 1, + anon_sym_DASH2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6207), 1, + anon_sym_DOT, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8223), 1, + anon_sym_DOLLAR, + STATE(4970), 1, sym_comment, - ACTIONS(2488), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2486), 11, + STATE(5973), 1, + sym__immediate_decimal, + ACTIONS(1591), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6209), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5972), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [180332] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2464), 1, + anon_sym_DASH2, + STATE(4971), 1, + sym_comment, + ACTIONS(2466), 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, - [189541] = 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, + [180356] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5001), 1, + ACTIONS(2468), 1, + anon_sym_DASH2, + STATE(4972), 1, sym_comment, - ACTIONS(2416), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2414), 11, + ACTIONS(2470), 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, - [189565] = 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, + [180380] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5002), 1, - sym_comment, - ACTIONS(2484), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2482), 11, + ACTIONS(7833), 1, sym__newline, + ACTIONS(8227), 1, + anon_sym_else, + STATE(4973), 1, + sym_comment, + STATE(4974), 1, + aux_sym_shebang_repeat1, + ACTIONS(7836), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387134,16 +388754,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, - [189589] = 4, - ACTIONS(3), 1, + [180408] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5003), 1, - sym_comment, - ACTIONS(2526), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2524), 11, + ACTIONS(7985), 1, sym__newline, + ACTIONS(8229), 1, + anon_sym_else, + STATE(4974), 1, + sym_comment, + STATE(4977), 1, + aux_sym_shebang_repeat1, + ACTIONS(7988), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387154,16 +388776,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, - [189613] = 4, - ACTIONS(3), 1, + [180436] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5004), 1, - sym_comment, - ACTIONS(7517), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7515), 11, + ACTIONS(7880), 1, sym__newline, + ACTIONS(8231), 1, + anon_sym_else, + STATE(4975), 1, + sym_comment, + STATE(4978), 1, + aux_sym_shebang_repeat1, + ACTIONS(7883), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387174,13 +388798,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, - [189637] = 3, - ACTIONS(249), 1, + [180464] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5005), 1, - sym_comment, - ACTIONS(8018), 13, + ACTIONS(7887), 1, sym__newline, + ACTIONS(8233), 1, + anon_sym_else, + STATE(4976), 1, + sym_comment, + STATE(4979), 1, + aux_sym_shebang_repeat1, + ACTIONS(7890), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387191,15 +388820,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, - [189659] = 3, - ACTIONS(249), 1, + [180492] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5006), 1, - sym_comment, - ACTIONS(8022), 13, + ACTIONS(5149), 1, sym__newline, + ACTIONS(8235), 1, + anon_sym_else, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4977), 1, + sym_comment, + ACTIONS(1296), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387210,15 +388842,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, - [189681] = 3, - ACTIONS(249), 1, + [180520] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5007), 1, - sym_comment, - ACTIONS(8104), 13, + ACTIONS(8014), 1, sym__newline, + ACTIONS(8238), 1, + anon_sym_else, + STATE(4978), 1, + sym_comment, + STATE(4981), 1, + aux_sym_shebang_repeat1, + ACTIONS(8017), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387229,15 +388864,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, - [189703] = 3, - ACTIONS(249), 1, + [180548] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5008), 1, - sym_comment, - ACTIONS(8106), 13, + ACTIONS(7974), 1, sym__newline, + ACTIONS(8240), 1, + anon_sym_else, + STATE(4979), 1, + sym_comment, + STATE(4982), 1, + aux_sym_shebang_repeat1, + ACTIONS(7977), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387248,15 +388886,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, - [189725] = 3, - ACTIONS(249), 1, + [180576] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5009), 1, - sym_comment, - ACTIONS(6753), 13, + ACTIONS(7992), 1, sym__newline, + ACTIONS(8242), 1, + anon_sym_else, + STATE(4980), 1, + sym_comment, + STATE(4983), 1, + aux_sym_shebang_repeat1, + ACTIONS(7995), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387267,18 +388908,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, - [189747] = 4, - ACTIONS(3), 1, + [180604] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5010), 1, - sym_comment, - ACTIONS(1092), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1090), 11, + ACTIONS(5149), 1, sym__newline, + ACTIONS(8244), 1, + anon_sym_else, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4981), 1, + sym_comment, + ACTIONS(1296), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387289,16 +388930,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, - [189771] = 4, - ACTIONS(3), 1, + [180632] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5011), 1, - sym_comment, - ACTIONS(2496), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2494), 11, + ACTIONS(5149), 1, sym__newline, + ACTIONS(8247), 1, + anon_sym_else, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4982), 1, + sym_comment, + ACTIONS(1296), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387309,16 +388952,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, - [189795] = 4, - ACTIONS(3), 1, + [180660] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5012), 1, - sym_comment, - ACTIONS(2496), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2494), 11, + ACTIONS(7946), 1, sym__newline, + ACTIONS(8250), 1, + anon_sym_else, + STATE(4983), 1, + sym_comment, + STATE(4984), 1, + aux_sym_shebang_repeat1, + ACTIONS(7949), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387329,15 +388974,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, - [189819] = 4, - ACTIONS(249), 1, + [180688] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, + ACTIONS(5149), 1, + sym__newline, + ACTIONS(8252), 1, + anon_sym_else, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(5013), 1, + STATE(4984), 1, sym_comment, - ACTIONS(8108), 12, - sym__newline, + ACTIONS(1296), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387348,56 +388996,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [189843] = 4, - ACTIONS(3), 1, + [180716] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5014), 1, + ACTIONS(3621), 1, + anon_sym_DOLLAR, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6207), 1, + anon_sym_DOT, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + STATE(4985), 1, sym_comment, - ACTIONS(2456), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2454), 11, - sym__newline, - anon_sym_SEMI, + STATE(5981), 1, + sym__immediate_decimal, + ACTIONS(6209), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5980), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1591), 3, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189867] = 4, - ACTIONS(3), 1, + anon_sym_if, + anon_sym_EQ_GT, + [180754] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5015), 1, + ACTIONS(8257), 1, + anon_sym_DASH2, + STATE(4986), 1, sym_comment, - ACTIONS(2432), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2430), 11, + ACTIONS(8255), 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, - [189891] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180778] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5016), 1, + STATE(4987), 1, sym_comment, - ACTIONS(2480), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2478), 11, + ACTIONS(8259), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387409,15 +389060,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, - [189915] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180800] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5017), 1, + STATE(4988), 1, sym_comment, - ACTIONS(1899), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1897), 11, + ACTIONS(8261), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387429,35 +389079,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, - [189939] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180822] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5018), 1, - sym_comment, - ACTIONS(2549), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2547), 11, - sym__newline, - anon_sym_SEMI, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7685), 1, + anon_sym_DOLLAR, + ACTIONS(7687), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7689), 1, + anon_sym_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_DASH2, + ACTIONS(8263), 1, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189963] = 4, - ACTIONS(3), 1, + STATE(4096), 1, + sym_param_long_flag, + STATE(4235), 1, + sym__param_name, + STATE(4604), 1, + aux_sym_parameter_parens_repeat1, + STATE(4989), 1, + sym_comment, + STATE(5099), 1, + sym_param_rest, + STATE(5100), 1, + sym_param_opt, + STATE(5139), 1, + sym_param_short_flag, + STATE(5567), 1, + sym_parameter, + [180868] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5019), 1, + STATE(4990), 1, sym_comment, - ACTIONS(2541), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2539), 11, + ACTIONS(8265), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387469,15 +389129,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, - [189987] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180890] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5020), 1, + STATE(4991), 1, sym_comment, - ACTIONS(2412), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2410), 11, + ACTIONS(8267), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387489,54 +389148,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190011] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180912] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5021), 1, + ACTIONS(8271), 1, + anon_sym_QMARK, + ACTIONS(8273), 1, + anon_sym_DASH2, + STATE(4992), 1, sym_comment, - ACTIONS(2440), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2438), 11, + ACTIONS(8269), 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, - [190035] = 3, - ACTIONS(249), 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, + [180938] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5022), 1, + ACTIONS(2472), 1, + anon_sym_DASH2, + STATE(4993), 1, sym_comment, - ACTIONS(8110), 13, + ACTIONS(2474), 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, - [190057] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180961] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5023), 1, + ACTIONS(8275), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8277), 1, + aux_sym__immediate_decimal_token2, + STATE(4994), 1, + sym_comment, + ACTIONS(1623), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1621), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [180988] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8133), 1, + anon_sym_DASH_DASH, + ACTIONS(8135), 1, + anon_sym_DASH2, + ACTIONS(8279), 1, + anon_sym_DOLLAR, + ACTIONS(8281), 1, + anon_sym_LBRACE, + STATE(1888), 1, + sym_block, + STATE(1889), 1, + sym_val_closure, + STATE(4995), 1, + sym_comment, + STATE(5032), 1, + aux_sym_ctrl_do_repeat1, + STATE(6126), 1, + sym__flag, + STATE(790), 2, + sym__blosure, + sym_val_variable, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [181027] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4996), 1, sym_comment, - ACTIONS(2408), 2, + ACTIONS(8167), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2406), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387548,12 +389256,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, - [190081] = 3, - ACTIONS(249), 1, + [181048] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5024), 1, + STATE(4997), 1, sym_comment, - ACTIONS(8112), 13, + ACTIONS(8169), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387565,17 +389274,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190103] = 4, + [181069] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8131), 1, + anon_sym_DOLLAR, + ACTIONS(8133), 1, + anon_sym_DASH_DASH, + ACTIONS(8135), 1, + anon_sym_DASH2, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(1792), 1, + sym_block, + STATE(1793), 1, + sym_val_closure, + STATE(4998), 1, + sym_comment, + STATE(5011), 1, + aux_sym_ctrl_do_repeat1, + STATE(6126), 1, + sym__flag, + STATE(778), 2, + sym__blosure, + sym_val_variable, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [181108] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(5025), 1, + ACTIONS(5410), 1, + anon_sym_LPAREN2, + ACTIONS(5414), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5416), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8283), 1, + anon_sym_RBRACK, + ACTIONS(8285), 1, + anon_sym_DOLLAR, + ACTIONS(8287), 1, + anon_sym_DOLLAR2, + ACTIONS(8289), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8291), 1, + aux_sym__immediate_decimal_token5, + STATE(2800), 1, + sym__immediate_decimal, + STATE(4999), 1, + sym_comment, + STATE(2873), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181149] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1544), 1, + anon_sym_LBRACE, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(8293), 1, + anon_sym_DOLLAR, + ACTIONS(8295), 1, + anon_sym_DOT, + ACTIONS(8299), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8301), 1, + aux_sym__immediate_decimal_token5, + STATE(5000), 1, + sym_comment, + STATE(6144), 1, + sym__immediate_decimal, + ACTIONS(8297), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6018), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181188] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5001), 1, sym_comment, - ACTIONS(2545), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2543), 11, + ACTIONS(8303), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387587,15 +389373,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, - [190127] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [181209] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5026), 1, + STATE(5002), 1, + sym_comment, + ACTIONS(7013), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7019), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7015), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7017), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [181236] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5003), 1, sym_comment, - ACTIONS(2563), 2, + ACTIONS(8171), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2561), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387607,12 +389413,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, - [190151] = 3, - ACTIONS(249), 1, + [181257] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5027), 1, + STATE(5004), 1, sym_comment, - ACTIONS(6761), 13, + ACTIONS(8305), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387625,16 +389431,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_RBRACE, - [190173] = 4, - ACTIONS(3), 1, + [181278] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5028), 1, + STATE(5005), 1, sym_comment, - ACTIONS(5572), 2, + ACTIONS(8151), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(5570), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387646,15 +389449,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, - [190197] = 4, + [181299] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(5029), 1, + ACTIONS(1530), 1, + anon_sym_RBRACK, + ACTIONS(1544), 1, + sym__entry_separator, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8307), 1, + anon_sym_DOLLAR, + ACTIONS(8309), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8311), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8313), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8315), 1, + aux_sym__immediate_decimal_token5, + STATE(5006), 1, sym_comment, - ACTIONS(2003), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2001), 11, + STATE(6237), 1, + sym__immediate_decimal, + STATE(6941), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181340] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5007), 1, + sym_comment, + ACTIONS(8317), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387666,44 +389494,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, - [190221] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1570), 1, - sym__entry_separator, - ACTIONS(3044), 1, - anon_sym_DOLLAR, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(7978), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7980), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7982), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7984), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8114), 1, - anon_sym_DOT, - STATE(5030), 1, - sym_comment, - STATE(5772), 1, - sym__immediate_decimal, - ACTIONS(1560), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(5959), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190263] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [181361] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5031), 1, + STATE(5008), 1, sym_comment, - ACTIONS(2537), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2535), 11, + ACTIONS(8319), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387715,16 +389512,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, - [190287] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + [181382] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(8016), 1, - sym__newline, - STATE(5032), 1, + STATE(5009), 1, sym_comment, - ACTIONS(8018), 11, + ACTIONS(8261), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387735,17 +389531,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_RBRACE, - [190313] = 5, - ACTIONS(249), 1, + [181403] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(8020), 1, - sym__newline, - STATE(5033), 1, + STATE(5010), 1, sym_comment, - ACTIONS(8022), 11, + ACTIONS(8185), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387756,45 +389549,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_RBRACE, - [190339] = 13, - ACTIONS(249), 1, + [181424] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(8024), 1, + ACTIONS(8131), 1, anon_sym_DOLLAR, - ACTIONS(8026), 1, + ACTIONS(8133), 1, anon_sym_DASH_DASH, - ACTIONS(8028), 1, - anon_sym_DASH, - ACTIONS(8030), 1, + ACTIONS(8135), 1, + anon_sym_DASH2, + ACTIONS(8137), 1, anon_sym_LBRACE, - STATE(1680), 1, + STATE(1792), 1, sym_block, - STATE(1686), 1, + STATE(1793), 1, sym_val_closure, - STATE(5034), 1, + STATE(5011), 1, sym_comment, - STATE(5193), 1, + STATE(5561), 1, aux_sym_ctrl_do_repeat1, - STATE(6018), 1, + STATE(6126), 1, sym__flag, - STATE(710), 2, + STATE(780), 2, sym__blosure, sym_val_variable, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [190381] = 4, - ACTIONS(3), 1, + [181463] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5035), 1, + STATE(5012), 1, sym_comment, - ACTIONS(2468), 2, + ACTIONS(8215), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2466), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387806,17 +389594,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, - [190405] = 4, - ACTIONS(3), 1, + [181484] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5036), 1, - sym_comment, - ACTIONS(2019), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2017), 11, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, + STATE(774), 1, + aux_sym__pipe_separator, + STATE(5013), 1, + sym_comment, + STATE(5172), 1, + aux_sym_shebang_repeat1, + ACTIONS(2538), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -387826,15 +389615,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, - [190429] = 4, - ACTIONS(3), 1, + [181511] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5037), 1, + STATE(5014), 1, sym_comment, - ACTIONS(2045), 2, + ACTIONS(8217), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2043), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387846,75 +389633,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, - [190453] = 4, - ACTIONS(3), 1, + [181532] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5038), 1, + ACTIONS(7728), 1, + anon_sym_DASH2, + STATE(5015), 1, sym_comment, - ACTIONS(2049), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2047), 11, + ACTIONS(7726), 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, - [190477] = 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, + [181555] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5039), 1, + STATE(5016), 1, sym_comment, - ACTIONS(2436), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2434), 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, - [190501] = 4, - ACTIONS(3), 1, + ACTIONS(6991), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6997), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6993), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6995), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [181582] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5040), 1, + STATE(5017), 1, sym_comment, - ACTIONS(2061), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2059), 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, - [190525] = 4, - ACTIONS(3), 1, + ACTIONS(7572), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7574), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [181605] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5041), 1, + STATE(5018), 1, sym_comment, - ACTIONS(2444), 2, + ACTIONS(8129), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2442), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387926,15 +389710,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, - [190549] = 4, - ACTIONS(3), 1, + [181626] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5042), 1, + STATE(5019), 1, sym_comment, - ACTIONS(2452), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2450), 11, + ACTIONS(8321), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387946,35 +389727,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, - [190573] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [181647] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5043), 1, + STATE(5020), 1, sym_comment, - ACTIONS(2069), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2067), 11, - sym__newline, - anon_sym_SEMI, + ACTIONS(8323), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(8325), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [181670] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, + anon_sym_DOLLAR, + ACTIONS(8329), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8331), 1, + aux_sym__immediate_decimal_token5, + STATE(5021), 1, + sym_comment, + STATE(7081), 1, + sym__immediate_decimal, + ACTIONS(1577), 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, - [190597] = 4, - ACTIONS(3), 1, + anon_sym_EQ_GT, + ACTIONS(8327), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3431), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181707] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5044), 1, + STATE(5022), 1, sym_comment, - ACTIONS(2089), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2087), 11, + ACTIONS(6985), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387986,90 +389790,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190621] = 12, - ACTIONS(249), 1, + anon_sym_RPAREN, + [181728] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_DASH, - ACTIONS(6227), 1, + ACTIONS(1565), 1, + anon_sym_RBRACK, + ACTIONS(1577), 1, + sym__entry_separator, + ACTIONS(1579), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8307), 1, anon_sym_DOLLAR, - ACTIONS(6229), 1, + ACTIONS(8309), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8311), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8313), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8315), 1, + aux_sym__immediate_decimal_token5, + STATE(5023), 1, + sym_comment, + STATE(6512), 1, + sym__immediate_decimal, + STATE(6977), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181769] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(8173), 1, + anon_sym_DOLLAR, + ACTIONS(8329), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(8331), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6428), 1, - anon_sym_DOT, - STATE(5045), 1, + STATE(5024), 1, sym_comment, - STATE(5967), 1, + STATE(6807), 1, sym__immediate_decimal, - ACTIONS(1524), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6233), 2, + ACTIONS(1544), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8327), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5971), 2, + STATE(3436), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190661] = 11, - ACTIONS(249), 1, + [181806] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3616), 1, + ACTIONS(8335), 1, + anon_sym_DASH2, + STATE(5025), 1, + sym_comment, + ACTIONS(8333), 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, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6231), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181829] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8337), 1, anon_sym_DOT, - ACTIONS(6235), 1, + ACTIONS(8339), 1, + aux_sym__immediate_decimal_token2, + STATE(5026), 1, + sym_comment, + ACTIONS(1607), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 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, + [181856] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + sym__entry_separator, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8197), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(8199), 1, aux_sym__immediate_decimal_token5, - STATE(5046), 1, + ACTIONS(8307), 1, + anon_sym_DOLLAR, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token3, + STATE(5027), 1, sym_comment, - STATE(5975), 1, + STATE(6810), 1, sym__immediate_decimal, - ACTIONS(6233), 2, + ACTIONS(1691), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6806), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181895] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7786), 1, + anon_sym_DASH2, + STATE(5028), 1, + sym_comment, + ACTIONS(7784), 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, + [181918] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5029), 1, + sym_comment, + ACTIONS(7576), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7578), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [181941] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1671), 1, + sym__entry_separator, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8197), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8199), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8307), 1, + anon_sym_DOLLAR, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8343), 1, aux_sym__immediate_decimal_token3, - STATE(5974), 2, + STATE(5030), 1, + sym_comment, + STATE(6829), 1, + sym__immediate_decimal, + ACTIONS(1663), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6822), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1570), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [190699] = 4, - ACTIONS(3), 1, + [181980] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5047), 1, + STATE(5031), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(1607), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 9, ts_builtin_sym_end, - sym__space, - ACTIONS(2470), 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, - [190723] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [182003] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8133), 1, + anon_sym_DASH_DASH, + ACTIONS(8135), 1, + anon_sym_DASH2, + ACTIONS(8279), 1, + anon_sym_DOLLAR, + ACTIONS(8281), 1, + anon_sym_LBRACE, + STATE(1888), 1, + sym_block, + STATE(1889), 1, + sym_val_closure, + STATE(5032), 1, + sym_comment, + STATE(5561), 1, + aux_sym_ctrl_do_repeat1, + STATE(6126), 1, + sym__flag, + STATE(791), 2, + sym__blosure, + sym_val_variable, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [182042] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(5048), 1, + ACTIONS(1707), 1, + sym__entry_separator, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8197), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8199), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8307), 1, + anon_sym_DOLLAR, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token3, + STATE(5033), 1, sym_comment, - ACTIONS(2476), 2, + STATE(6883), 1, + sym__immediate_decimal, + ACTIONS(1705), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6882), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182081] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5034), 1, + sym_comment, + ACTIONS(5120), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2474), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388081,35 +390068,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, - [190747] = 4, - ACTIONS(3), 1, + [182102] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5049), 1, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8347), 1, + aux_sym__immediate_decimal_token2, + STATE(5035), 1, + sym_comment, + ACTIONS(1621), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1623), 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, + [182129] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5036), 1, sym_comment, - ACTIONS(2097), 2, + ACTIONS(1621), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1623), 9, ts_builtin_sym_end, - sym__space, - ACTIONS(2095), 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, - [190771] = 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, + [182152] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5050), 1, + STATE(5037), 1, sym_comment, - ACTIONS(2504), 2, + ACTIONS(5124), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2502), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388121,15 +390126,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, - [190795] = 4, + [182173] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(5051), 1, + ACTIONS(2550), 1, + anon_sym_DOLLAR, + ACTIONS(5302), 1, + anon_sym_LPAREN2, + ACTIONS(5306), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5308), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5310), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5566), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8287), 1, + anon_sym_DOLLAR2, + ACTIONS(8349), 1, + anon_sym_RBRACK, + ACTIONS(8351), 1, + aux_sym__immediate_decimal_token1, + STATE(2698), 1, + sym__immediate_decimal, + STATE(5038), 1, sym_comment, - ACTIONS(2533), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2531), 11, + STATE(2839), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182214] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5039), 1, + sym_comment, + ACTIONS(8353), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388141,35 +390171,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, - [190819] = 4, + anon_sym_RPAREN, + [182235] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(5052), 1, + ACTIONS(5410), 1, + anon_sym_LPAREN2, + ACTIONS(5414), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5416), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8285), 1, + anon_sym_DOLLAR, + ACTIONS(8287), 1, + anon_sym_DOLLAR2, + ACTIONS(8289), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8291), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8355), 1, + anon_sym_RBRACK, + STATE(2800), 1, + sym__immediate_decimal, + STATE(5040), 1, + sym_comment, + STATE(2873), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182276] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5041), 1, sym_comment, - ACTIONS(1640), 2, + ACTIONS(1673), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1675), 9, ts_builtin_sym_end, - sym__space, - ACTIONS(1628), 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, - [190843] = 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, + [182299] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5053), 1, + STATE(5042), 1, sym_comment, - ACTIONS(5603), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5601), 11, + ACTIONS(8357), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388181,15 +390236,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, - [190867] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [182320] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5054), 1, + STATE(5043), 1, sym_comment, - ACTIONS(2420), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2418), 11, + ACTIONS(8359), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388201,77 +390254,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, - [190891] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7546), 1, - anon_sym_RBRACK, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4647), 1, - aux_sym_parameter_parens_repeat1, - STATE(5055), 1, - sym_comment, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [190937] = 15, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - sym_identifier, - ACTIONS(7548), 1, - anon_sym_DOLLAR, - ACTIONS(7550), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DASH_DASH, - ACTIONS(7554), 1, - anon_sym_DASH, - ACTIONS(7556), 1, anon_sym_RPAREN, - STATE(4140), 1, - sym_param_long_flag, - STATE(4307), 1, - sym__param_name, - STATE(4647), 1, - aux_sym_parameter_parens_repeat1, - STATE(5056), 1, - sym_comment, - STATE(5203), 1, - sym_param_rest, - STATE(5209), 1, - sym_param_opt, - STATE(5210), 1, - sym_param_short_flag, - STATE(5522), 1, - sym_parameter, - [190983] = 4, - ACTIONS(3), 1, + [182341] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5057), 1, + STATE(5044), 1, sym_comment, - ACTIONS(1911), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1909), 11, + ACTIONS(8361), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388283,85 +390272,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, - [191007] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(7992), 1, - anon_sym_DOLLAR, - ACTIONS(7996), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7998), 1, - aux_sym__immediate_decimal_token5, - STATE(5058), 1, - sym_comment, - STATE(6223), 1, - sym__immediate_decimal, - ACTIONS(7994), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3422), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1524), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [191045] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8118), 1, - anon_sym_DASH, - STATE(5059), 1, - sym_comment, - ACTIONS(8116), 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, - [191069] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1544), 1, - anon_sym_DASH, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - STATE(3564), 1, - sym__immediate_decimal, - STATE(5060), 1, - sym_comment, - ACTIONS(1556), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3433), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191106] = 3, - ACTIONS(249), 1, + [182362] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5061), 1, + STATE(5045), 1, sym_comment, - ACTIONS(8120), 12, + ACTIONS(8363), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388374,12 +390291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [191127] = 3, - ACTIONS(249), 1, + [182383] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5062), 1, + STATE(5046), 1, sym_comment, - ACTIONS(8122), 12, + ACTIONS(8365), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388392,30 +390309,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [191148] = 3, - ACTIONS(249), 1, + [182404] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5063), 1, + ACTIONS(2159), 1, + anon_sym_DASH2, + STATE(5047), 1, sym_comment, - ACTIONS(8124), 12, + ACTIONS(2165), 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, - [191169] = 3, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182427] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5064), 1, + STATE(5048), 1, sym_comment, - ACTIONS(8126), 12, + ACTIONS(8367), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388428,12 +390346,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [191190] = 3, - ACTIONS(249), 1, + [182448] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5065), 1, + STATE(5049), 1, sym_comment, - ACTIONS(8128), 12, + ACTIONS(8369), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388446,12 +390364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [191211] = 3, - ACTIONS(249), 1, + [182469] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5066), 1, + STATE(5050), 1, sym_comment, - ACTIONS(8130), 12, + ACTIONS(8371), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388464,31 +390382,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [191232] = 4, - ACTIONS(249), 1, + [182490] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5067), 1, + ACTIONS(1565), 1, + anon_sym_RBRACE, + ACTIONS(1577), 1, + sym__entry_separator, + ACTIONS(1579), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8307), 1, + anon_sym_DOLLAR, + ACTIONS(8373), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8375), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8377), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8379), 1, + aux_sym__immediate_decimal_token5, + STATE(5051), 1, sym_comment, - ACTIONS(8132), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(8134), 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, - [191255] = 3, - ACTIONS(249), 1, + STATE(6244), 1, + sym__immediate_decimal, + STATE(6977), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182531] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5068), 1, + STATE(5052), 1, sym_comment, - ACTIONS(8136), 12, + ACTIONS(8381), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388501,12 +390428,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [191276] = 3, - ACTIONS(249), 1, + [182552] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5069), 1, + STATE(5053), 1, sym_comment, - ACTIONS(8138), 12, + ACTIONS(8383), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388519,77 +390446,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [191297] = 6, - ACTIONS(249), 1, + [182573] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8140), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8142), 1, - aux_sym__immediate_decimal_token2, - STATE(5070), 1, + STATE(5054), 1, sym_comment, - ACTIONS(1530), 4, - anon_sym_DOLLAR, + ACTIONS(1763), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1765), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1528), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [191324] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(7992), 1, - anon_sym_DOLLAR, - ACTIONS(8146), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8148), 1, - aux_sym__immediate_decimal_token5, - STATE(5071), 1, - sym_comment, - STATE(7111), 1, - sym__immediate_decimal, - ACTIONS(1524), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8144), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3422), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191361] = 3, - ACTIONS(249), 1, + [182596] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5072), 1, + ACTIONS(8385), 1, + anon_sym_DOT, + ACTIONS(8387), 1, + aux_sym__immediate_decimal_token2, + STATE(5055), 1, sym_comment, - ACTIONS(7725), 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, - [191382] = 3, - ACTIONS(249), 1, + ACTIONS(1607), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1609), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [182623] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5073), 1, + STATE(5056), 1, sym_comment, - ACTIONS(8000), 12, + ACTIONS(8201), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388602,12 +390504,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, - [191403] = 3, - ACTIONS(249), 1, + [182644] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5074), 1, + STATE(5057), 1, sym_comment, - ACTIONS(8110), 12, + ACTIONS(8123), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388620,33 +390522,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, - [191424] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8152), 1, - anon_sym_DASH, - STATE(5075), 1, - sym_comment, - ACTIONS(8150), 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, - [191447] = 4, - ACTIONS(249), 1, + [182665] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - STATE(5076), 1, + ACTIONS(2375), 1, + anon_sym_DASH2, + STATE(5058), 1, sym_comment, - ACTIONS(1640), 11, + ACTIONS(2377), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388658,14 +390541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191470] = 4, - ACTIONS(249), 1, + [182688] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_DASH, - STATE(5077), 1, + ACTIONS(2167), 1, + anon_sym_DASH2, + STATE(5059), 1, sym_comment, - ACTIONS(2567), 11, + ACTIONS(2173), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388677,14 +390560,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191493] = 4, - ACTIONS(249), 1, + [182711] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2418), 1, - anon_sym_DASH, - STATE(5078), 1, + ACTIONS(2175), 1, + anon_sym_DASH2, + STATE(5060), 1, sym_comment, - ACTIONS(2420), 11, + ACTIONS(2181), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388696,14 +390579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191516] = 4, - ACTIONS(249), 1, + [182734] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8156), 1, - anon_sym_DASH, - STATE(5079), 1, + ACTIONS(2133), 1, + anon_sym_DASH2, + STATE(5061), 1, sym_comment, - ACTIONS(8154), 11, + ACTIONS(2139), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388715,42 +390598,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191539] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5486), 1, - anon_sym_LPAREN2, - ACTIONS(5490), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5492), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8158), 1, - anon_sym_RBRACK, - ACTIONS(8160), 1, - anon_sym_DOLLAR, - ACTIONS(8162), 1, - anon_sym_DOLLAR2, - ACTIONS(8164), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8166), 1, - aux_sym__immediate_decimal_token5, - STATE(2819), 1, - sym__immediate_decimal, - STATE(5080), 1, - sym_comment, - STATE(2878), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191580] = 4, - ACTIONS(249), 1, + [182757] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8156), 1, - anon_sym_DASH, - STATE(5081), 1, + ACTIONS(8391), 1, + anon_sym_DASH2, + STATE(5062), 1, sym_comment, - ACTIONS(8154), 11, + ACTIONS(8389), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388762,14 +390617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191603] = 4, - ACTIONS(249), 1, + [182780] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2234), 1, - anon_sym_DASH, - STATE(5082), 1, + ACTIONS(8391), 1, + anon_sym_DASH2, + STATE(5063), 1, sym_comment, - ACTIONS(2240), 11, + ACTIONS(8389), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388781,38 +390636,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191626] = 11, - ACTIONS(249), 1, + [182803] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(7992), 1, - anon_sym_DOLLAR, - ACTIONS(8146), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8148), 1, - aux_sym__immediate_decimal_token5, - STATE(5083), 1, - sym_comment, - STATE(7201), 1, - sym__immediate_decimal, - ACTIONS(1556), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8144), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3433), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191663] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5084), 1, + STATE(5064), 1, sym_comment, - ACTIONS(8168), 12, + ACTIONS(8393), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388825,12 +390654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [191684] = 3, - ACTIONS(249), 1, + [182824] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5085), 1, + STATE(5065), 1, sym_comment, - ACTIONS(8170), 12, + ACTIONS(8395), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388843,60 +390672,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [191705] = 13, - ACTIONS(3), 1, + [182845] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5486), 1, - anon_sym_LPAREN2, - ACTIONS(5490), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5492), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8160), 1, - anon_sym_DOLLAR, - ACTIONS(8162), 1, - anon_sym_DOLLAR2, - ACTIONS(8164), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8166), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8172), 1, - anon_sym_RBRACK, - STATE(2819), 1, - sym__immediate_decimal, - STATE(5086), 1, + ACTIONS(2476), 1, + anon_sym_DASH2, + STATE(5066), 1, sym_comment, - STATE(2878), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191746] = 3, - ACTIONS(249), 1, + ACTIONS(2478), 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, + [182868] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5087), 1, + ACTIONS(2371), 1, + anon_sym_DASH2, + STATE(5067), 1, sym_comment, - ACTIONS(8018), 12, - ts_builtin_sym_end, + ACTIONS(2373), 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, - [191767] = 4, - ACTIONS(249), 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, + [182891] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2113), 1, - anon_sym_DASH, - STATE(5088), 1, + ACTIONS(2391), 1, + anon_sym_DASH2, + STATE(5068), 1, sym_comment, - ACTIONS(2119), 11, + ACTIONS(2393), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388908,60 +390729,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191790] = 3, - ACTIONS(249), 1, + [182914] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5089), 1, + ACTIONS(2413), 1, + anon_sym_DASH2, + STATE(5069), 1, sym_comment, - ACTIONS(8022), 12, - ts_builtin_sym_end, + ACTIONS(2415), 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, - [191811] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1544), 1, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1556), 1, - sym__entry_separator, - ACTIONS(1558), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(8174), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8176), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8178), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8180), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8182), 1, - aux_sym__immediate_decimal_token5, - STATE(5090), 1, - sym_comment, - STATE(6614), 1, - sym__immediate_decimal, - STATE(7388), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191852] = 4, - ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182937] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_DASH, - STATE(5091), 1, + ACTIONS(2421), 1, + anon_sym_DASH2, + STATE(5070), 1, sym_comment, - ACTIONS(2212), 11, + ACTIONS(2423), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388973,69 +390767,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191875] = 3, - ACTIONS(249), 1, + [182960] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5092), 1, + ACTIONS(2425), 1, + anon_sym_DASH2, + STATE(5071), 1, sym_comment, - ACTIONS(8006), 12, - ts_builtin_sym_end, + ACTIONS(2427), 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, - [191896] = 4, - ACTIONS(249), 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, + [182983] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5093), 1, + ACTIONS(2429), 1, + anon_sym_DASH2, + STATE(5072), 1, sym_comment, - ACTIONS(7511), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7513), 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, - [191919] = 3, - ACTIONS(249), 1, + ACTIONS(2431), 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, + [183006] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5094), 1, + ACTIONS(2433), 1, + anon_sym_DASH2, + STATE(5073), 1, sym_comment, - ACTIONS(8008), 12, - ts_builtin_sym_end, + ACTIONS(2435), 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, - [191940] = 4, - ACTIONS(249), 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, + [183029] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7614), 1, - anon_sym_DASH, - STATE(5095), 1, + ACTIONS(2441), 1, + anon_sym_DASH2, + STATE(5074), 1, sym_comment, - ACTIONS(7612), 11, + ACTIONS(2443), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -389047,12 +390843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191963] = 3, - ACTIONS(249), 1, + [183052] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5096), 1, + STATE(5075), 1, sym_comment, - ACTIONS(7988), 12, + ACTIONS(8267), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389065,12 +390861,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, - [191984] = 3, - ACTIONS(249), 1, + [183073] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5097), 1, + STATE(5076), 1, sym_comment, - ACTIONS(8184), 12, + ACTIONS(8087), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389082,13 +390879,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, - [192005] = 3, - ACTIONS(249), 1, + [183094] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5098), 1, + STATE(5077), 1, sym_comment, - ACTIONS(8186), 12, + ACTIONS(8265), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389100,37 +390897,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, - [192026] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - ACTIONS(4614), 1, - anon_sym_DOT_DOT2, - ACTIONS(6985), 1, - aux_sym_unquoted_token2, - ACTIONS(8188), 1, - sym_filesize_unit, - ACTIONS(8190), 1, - sym_duration_unit, - STATE(5099), 1, - sym_comment, - ACTIONS(4616), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [192059] = 3, - ACTIONS(249), 1, + [183115] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5100), 1, + STATE(5078), 1, sym_comment, - ACTIONS(8192), 12, + ACTIONS(8397), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389143,12 +390915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192080] = 3, - ACTIONS(249), 1, + [183136] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5101), 1, + STATE(5079), 1, sym_comment, - ACTIONS(8194), 12, + ACTIONS(8399), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389161,12 +390933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192101] = 3, - ACTIONS(249), 1, + [183157] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5102), 1, + STATE(5080), 1, sym_comment, - ACTIONS(8196), 12, + ACTIONS(8401), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389179,12 +390951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192122] = 3, - ACTIONS(249), 1, + [183178] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5103), 1, + STATE(5081), 1, sym_comment, - ACTIONS(8198), 12, + ACTIONS(8403), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389197,12 +390969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192143] = 3, - ACTIONS(249), 1, + [183199] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5104), 1, + STATE(5082), 1, sym_comment, - ACTIONS(8200), 12, + ACTIONS(8405), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389215,12 +390987,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192164] = 3, - ACTIONS(249), 1, + [183220] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5105), 1, + STATE(5083), 1, sym_comment, - ACTIONS(8202), 12, + ACTIONS(8407), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389233,52 +391005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192185] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5106), 1, - sym_comment, - ACTIONS(7417), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7419), 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, - [192208] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5107), 1, - sym_comment, - ACTIONS(6857), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6863), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6859), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6861), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [192235] = 3, - ACTIONS(249), 1, + [183241] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5108), 1, + STATE(5084), 1, sym_comment, - ACTIONS(8204), 12, + ACTIONS(8409), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389291,12 +391023,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192256] = 3, - ACTIONS(249), 1, + [183262] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5109), 1, + ACTIONS(8411), 1, + anon_sym_DOT, + ACTIONS(8413), 1, + aux_sym__immediate_decimal_token2, + STATE(5085), 1, + sym_comment, + ACTIONS(1609), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1607), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [183289] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5086), 1, sym_comment, - ACTIONS(8206), 12, + ACTIONS(8415), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389309,12 +391062,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192277] = 3, - ACTIONS(249), 1, + [183310] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5110), 1, + STATE(5087), 1, sym_comment, - ACTIONS(8208), 12, + ACTIONS(8417), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389327,60 +391080,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192298] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2551), 1, - anon_sym_DASH, - STATE(5111), 1, - sym_comment, - ACTIONS(2553), 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, - [192321] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_RBRACE, - ACTIONS(1524), 1, - sym__entry_separator, - ACTIONS(1526), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(8174), 1, - anon_sym_DOLLAR, - ACTIONS(8210), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8212), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8214), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8216), 1, - aux_sym__immediate_decimal_token5, - STATE(5112), 1, - sym_comment, - STATE(6228), 1, - sym__immediate_decimal, - STATE(6842), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192362] = 3, - ACTIONS(249), 1, + [183331] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5113), 1, + STATE(5088), 1, sym_comment, - ACTIONS(8010), 12, - ts_builtin_sym_end, + ACTIONS(8419), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389392,13 +391097,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, - [192383] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + [183352] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5114), 1, + STATE(5089), 1, sym_comment, - ACTIONS(8012), 12, - ts_builtin_sym_end, + ACTIONS(8421), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389410,59 +391115,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, - [192404] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8026), 1, - anon_sym_DASH_DASH, - ACTIONS(8028), 1, - anon_sym_DASH, - ACTIONS(8218), 1, - anon_sym_DOLLAR, - ACTIONS(8220), 1, - anon_sym_LBRACE, - STATE(1829), 1, - sym_block, - STATE(1830), 1, - sym_val_closure, - STATE(5115), 1, - sym_comment, - STATE(5620), 1, - aux_sym_ctrl_do_repeat1, - STATE(6018), 1, - sym__flag, - STATE(723), 2, - sym__blosure, - sym_val_variable, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [192443] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2422), 1, - anon_sym_DASH, - STATE(5116), 1, - sym_comment, - ACTIONS(2424), 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, - [192466] = 3, - ACTIONS(249), 1, + [183373] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5117), 1, + STATE(5090), 1, sym_comment, - ACTIONS(5117), 12, - ts_builtin_sym_end, + ACTIONS(8423), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389474,13 +391133,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, - [192487] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + [183394] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5118), 1, + STATE(5091), 1, sym_comment, - ACTIONS(5121), 12, - ts_builtin_sym_end, + ACTIONS(8425), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389492,12 +391151,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, - [192508] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + [183415] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5119), 1, + STATE(5092), 1, sym_comment, - ACTIONS(6781), 12, + ACTIONS(8427), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389510,32 +391170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192529] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2557), 1, - anon_sym_DASH, - STATE(5120), 1, - sym_comment, - ACTIONS(2559), 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, - [192552] = 3, - ACTIONS(249), 1, + [183436] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5121), 1, + STATE(5093), 1, sym_comment, - ACTIONS(8112), 12, - ts_builtin_sym_end, + ACTIONS(8429), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389547,12 +391187,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, - [192573] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + [183457] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5122), 1, + STATE(5094), 1, sym_comment, - ACTIONS(8222), 12, + ACTIONS(8431), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389565,12 +391206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192594] = 3, - ACTIONS(249), 1, + [183478] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5123), 1, + STATE(5095), 1, sym_comment, - ACTIONS(8224), 12, + ACTIONS(8205), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389582,13 +391224,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, - [192615] = 3, - ACTIONS(249), 1, + [183499] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5124), 1, + ACTIONS(1591), 1, + sym__entry_separator, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8197), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8199), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8307), 1, + anon_sym_DOLLAR, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token3, + STATE(5096), 1, + sym_comment, + STATE(6903), 1, + sym__immediate_decimal, + ACTIONS(1581), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6896), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183538] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5097), 1, sym_comment, - ACTIONS(8226), 12, + ACTIONS(8001), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389600,49 +391269,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [183559] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7658), 1, + anon_sym_DASH2, + STATE(5098), 1, + sym_comment, + ACTIONS(7656), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [192636] = 3, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183582] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5125), 1, + ACTIONS(8435), 1, + anon_sym_DASH2, + STATE(5099), 1, sym_comment, - ACTIONS(8228), 12, + ACTIONS(8433), 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, - [192657] = 3, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183605] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5126), 1, + ACTIONS(8439), 1, + anon_sym_DASH2, + STATE(5100), 1, sym_comment, - ACTIONS(8230), 12, + ACTIONS(8437), 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, - [192678] = 3, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183628] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5127), 1, + STATE(5101), 1, sym_comment, - ACTIONS(8232), 12, + ACTIONS(8441), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389655,39 +391344,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192699] = 12, - ACTIONS(3), 1, + [183649] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1610), 1, - sym__entry_separator, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(7982), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7984), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8174), 1, - anon_sym_DOLLAR, - ACTIONS(8234), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8236), 1, - aux_sym__immediate_decimal_token3, - STATE(5128), 1, + ACTIONS(8445), 1, + anon_sym_DASH2, + STATE(5102), 1, sym_comment, - STATE(7341), 1, - sym__immediate_decimal, - ACTIONS(1608), 2, + ACTIONS(8443), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7338), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192738] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183672] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5129), 1, + STATE(5103), 1, sym_comment, - ACTIONS(8238), 12, + ACTIONS(8447), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389700,12 +391381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192759] = 3, - ACTIONS(249), 1, + [183693] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5130), 1, + STATE(5104), 1, sym_comment, - ACTIONS(8240), 12, + ACTIONS(8449), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389718,39 +391399,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192780] = 12, + [183714] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1614), 1, - sym__entry_separator, - ACTIONS(7974), 1, + ACTIONS(5410), 1, anon_sym_LPAREN2, - ACTIONS(7982), 1, + ACTIONS(5414), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5416), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8285), 1, + anon_sym_DOLLAR, + ACTIONS(8287), 1, + anon_sym_DOLLAR2, + ACTIONS(8289), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7984), 1, + ACTIONS(8291), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8174), 1, - anon_sym_DOLLAR, - ACTIONS(8234), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8236), 1, - aux_sym__immediate_decimal_token3, - STATE(5131), 1, - sym_comment, - STATE(7385), 1, - sym__immediate_decimal, - ACTIONS(1612), 2, + ACTIONS(8349), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7363), 2, + STATE(2800), 1, + sym__immediate_decimal, + STATE(5105), 1, + sym_comment, + STATE(2873), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192819] = 3, - ACTIONS(249), 1, + [183755] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5132), 1, + STATE(5106), 1, sym_comment, - ACTIONS(8242), 12, + ACTIONS(6953), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389763,14 +391445,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192840] = 3, - ACTIONS(249), 1, + [183776] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5133), 1, - sym_comment, - ACTIONS(8244), 12, + ACTIONS(7833), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8451), 1, + anon_sym_else, + STATE(5107), 1, + sym_comment, + STATE(5109), 1, + aux_sym_shebang_repeat1, + ACTIONS(7836), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389780,13 +391466,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, - [192861] = 3, - ACTIONS(249), 1, + [183803] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5134), 1, + STATE(5108), 1, sym_comment, - ACTIONS(8246), 12, + ACTIONS(8097), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389798,19 +391484,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, - [192882] = 6, - ACTIONS(249), 1, + [183824] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(7985), 1, sym__newline, - STATE(726), 1, - aux_sym__pipe_separator, - STATE(5135), 1, + ACTIONS(8453), 1, + anon_sym_else, + STATE(5109), 1, sym_comment, - STATE(5265), 1, + STATE(5113), 1, aux_sym_shebang_repeat1, - ACTIONS(3015), 9, + ACTIONS(7988), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389820,14 +391505,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, - [192909] = 3, - ACTIONS(249), 1, + [183851] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5136), 1, - sym_comment, - ACTIONS(8248), 12, + ACTIONS(7880), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8455), 1, + anon_sym_else, + STATE(5110), 1, + sym_comment, + STATE(5114), 1, + aux_sym_shebang_repeat1, + ACTIONS(7883), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389837,15 +391526,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, - [192930] = 3, - ACTIONS(249), 1, + [183878] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5137), 1, - sym_comment, - ACTIONS(8250), 12, + ACTIONS(7887), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8457), 1, + anon_sym_else, + STATE(5111), 1, + sym_comment, + STATE(5115), 1, + aux_sym_shebang_repeat1, + ACTIONS(7890), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389855,15 +391547,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, - [192951] = 3, - ACTIONS(249), 1, + [183905] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5138), 1, + ACTIONS(8459), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8461), 1, + aux_sym__immediate_decimal_token2, + STATE(5112), 1, sym_comment, - ACTIONS(8252), 12, + ACTIONS(1621), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1623), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [183932] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5149), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8463), 1, + anon_sym_else, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(5113), 1, + sym_comment, + ACTIONS(1296), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389873,34 +391589,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, - [192972] = 4, - ACTIONS(249), 1, + [183959] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5139), 1, - sym_comment, - ACTIONS(1536), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 9, - ts_builtin_sym_end, + ACTIONS(8014), 1, 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, - [192995] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5140), 1, + ACTIONS(8466), 1, + anon_sym_else, + STATE(5114), 1, sym_comment, - ACTIONS(8254), 12, - sym__newline, - anon_sym_SEMI, + STATE(5117), 1, + aux_sym_shebang_repeat1, + ACTIONS(8017), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389910,15 +391610,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, - [193016] = 3, - ACTIONS(249), 1, + [183986] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5141), 1, - sym_comment, - ACTIONS(8256), 12, + ACTIONS(7974), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8468), 1, + anon_sym_else, + STATE(5115), 1, + sym_comment, + STATE(5118), 1, + aux_sym_shebang_repeat1, + ACTIONS(7977), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389928,15 +391631,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, - [193037] = 3, - ACTIONS(249), 1, + [184013] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5142), 1, - sym_comment, - ACTIONS(8258), 12, + ACTIONS(7992), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8470), 1, + anon_sym_else, + STATE(5116), 1, + sym_comment, + STATE(5119), 1, + aux_sym_shebang_repeat1, + ACTIONS(7995), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389946,43 +391652,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, - [193058] = 13, - ACTIONS(3), 1, + [184040] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1544), 1, - anon_sym_RBRACE, - ACTIONS(1556), 1, - sym__entry_separator, - ACTIONS(1558), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(8174), 1, - anon_sym_DOLLAR, - ACTIONS(8210), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8212), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8214), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8216), 1, - aux_sym__immediate_decimal_token5, - STATE(5143), 1, - sym_comment, - STATE(6245), 1, - sym__immediate_decimal, - STATE(7388), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193099] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5144), 1, - sym_comment, - ACTIONS(8260), 12, + ACTIONS(5149), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8472), 1, + anon_sym_else, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(5117), 1, + sym_comment, + ACTIONS(1296), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389992,15 +391673,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, - [193120] = 3, - ACTIONS(249), 1, + [184067] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5145), 1, - sym_comment, - ACTIONS(8262), 12, + ACTIONS(5149), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8475), 1, + anon_sym_else, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(5118), 1, + sym_comment, + ACTIONS(1296), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390010,15 +391694,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, - [193141] = 3, - ACTIONS(249), 1, + [184094] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5146), 1, - sym_comment, - ACTIONS(8264), 12, + ACTIONS(7946), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8478), 1, + anon_sym_else, + STATE(5119), 1, + sym_comment, + STATE(5120), 1, + aux_sym_shebang_repeat1, + ACTIONS(7949), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390028,15 +391715,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, - [193162] = 3, - ACTIONS(249), 1, + [184121] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5147), 1, - sym_comment, - ACTIONS(8266), 12, + ACTIONS(5149), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8480), 1, + anon_sym_else, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(5120), 1, + sym_comment, + ACTIONS(1296), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390046,118 +391736,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193183] = 4, - ACTIONS(249), 1, + [184148] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5148), 1, + ACTIONS(8485), 1, + anon_sym_DASH2, + STATE(5121), 1, sym_comment, - ACTIONS(1528), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 9, - ts_builtin_sym_end, + ACTIONS(8483), 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_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193206] = 12, - ACTIONS(3), 1, + [184171] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1622), 1, - sym__entry_separator, - ACTIONS(7974), 1, + ACTIONS(1530), 1, + anon_sym_DASH2, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(7982), 1, + ACTIONS(6211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7984), 1, + ACTIONS(6213), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8174), 1, + ACTIONS(8487), 1, anon_sym_DOLLAR, - ACTIONS(8234), 1, + STATE(3619), 1, + sym__immediate_decimal, + STATE(5122), 1, + sym_comment, + ACTIONS(1544), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6229), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8236), 1, aux_sym__immediate_decimal_token3, - STATE(5149), 1, + STATE(3436), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184208] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1565), 1, + anon_sym_DASH2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + STATE(3607), 1, + sym__immediate_decimal, + STATE(5123), 1, sym_comment, - STATE(7387), 1, + ACTIONS(1577), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3431), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184245] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + anon_sym_DASH2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + STATE(3434), 1, sym__immediate_decimal, - ACTIONS(1620), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7386), 2, + STATE(5124), 1, + sym_comment, + ACTIONS(1591), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3433), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193245] = 4, - ACTIONS(249), 1, + [184282] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2498), 1, - anon_sym_DASH, - STATE(5150), 1, + ACTIONS(1691), 1, + anon_sym_DASH2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + STATE(3424), 1, + sym__immediate_decimal, + STATE(5125), 1, sym_comment, - ACTIONS(2500), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1693), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3423), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184319] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1663), 1, + anon_sym_DASH2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8487), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + STATE(3427), 1, + sym__immediate_decimal, + STATE(5126), 1, + sym_comment, + ACTIONS(1671), 2, anon_sym_DASH_DASH, - [193268] = 4, - ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3425), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184356] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5151), 1, + ACTIONS(1705), 1, + anon_sym_DASH2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + STATE(3430), 1, + sym__immediate_decimal, + STATE(5127), 1, sym_comment, - ACTIONS(1596), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1707), 2, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193291] = 4, - ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3428), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184393] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5152), 1, + STATE(5128), 1, sym_comment, - ACTIONS(1711), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 9, + ACTIONS(6827), 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, - [193314] = 4, - ACTIONS(249), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [184414] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2426), 1, - anon_sym_DASH, - STATE(5153), 1, + ACTIONS(2500), 1, + anon_sym_DASH2, + STATE(5129), 1, sym_comment, - ACTIONS(2428), 11, + ACTIONS(2502), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -390169,12 +391948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193337] = 3, - ACTIONS(249), 1, + [184437] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5154), 1, + STATE(5130), 1, sym_comment, - ACTIONS(7956), 12, + ACTIONS(8117), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -390187,12 +391966,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, - [193358] = 3, - ACTIONS(249), 1, + [184458] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5155), 1, + STATE(5131), 1, sym_comment, - ACTIONS(8104), 12, + ACTIONS(8219), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -390205,14 +391984,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, - [193379] = 4, - ACTIONS(249), 1, + [184479] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2446), 1, - anon_sym_DASH, - STATE(5156), 1, + ACTIONS(8491), 1, + anon_sym_DASH2, + STATE(5132), 1, sym_comment, - ACTIONS(2448), 11, + ACTIONS(8489), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -390224,112 +392003,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193402] = 4, - ACTIONS(249), 1, + [184502] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2486), 1, - anon_sym_DASH, - STATE(5157), 1, + STATE(5133), 1, sym_comment, - ACTIONS(2488), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8221), 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [184523] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5410), 1, + anon_sym_LPAREN2, + ACTIONS(5414), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5416), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8285), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [193425] = 8, - ACTIONS(249), 1, + ACTIONS(8287), 1, + anon_sym_DOLLAR2, + ACTIONS(8289), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8291), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8493), 1, + anon_sym_RBRACK, + STATE(2800), 1, + sym__immediate_decimal, + STATE(5134), 1, + sym_comment, + STATE(2873), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184564] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1021), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(3168), 1, - sym_cell_path, - STATE(5158), 1, + ACTIONS(1709), 1, + anon_sym_DASH2, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + ACTIONS(8495), 1, + sym_filesize_unit, + ACTIONS(8497), 1, + sym_duration_unit, + ACTIONS(8499), 1, + aux_sym_unquoted_token2, + STATE(5135), 1, sym_comment, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 7, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1721), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [193456] = 4, - ACTIONS(249), 1, + anon_sym_as, + [184597] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2414), 1, - anon_sym_DASH, - STATE(5159), 1, + STATE(5136), 1, sym_comment, - ACTIONS(2416), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8501), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [193479] = 4, - ACTIONS(249), 1, + [184618] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2482), 1, - anon_sym_DASH, - STATE(5160), 1, - sym_comment, - ACTIONS(2484), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1530), 1, + anon_sym_RBRACE, + ACTIONS(1544), 1, + sym__entry_separator, + ACTIONS(1546), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8307), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [193502] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2524), 1, - anon_sym_DASH, - STATE(5161), 1, + ACTIONS(8373), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8375), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8377), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8379), 1, + aux_sym__immediate_decimal_token5, + STATE(5137), 1, sym_comment, - ACTIONS(2526), 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, - [193525] = 3, - ACTIONS(249), 1, + STATE(6709), 1, + sym__immediate_decimal, + STATE(6941), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184659] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5162), 1, + STATE(5138), 1, sym_comment, - ACTIONS(7958), 12, - ts_builtin_sym_end, + ACTIONS(8503), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390341,14 +392136,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, - [193546] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + [184680] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8272), 1, - anon_sym_DASH, - STATE(5163), 1, + ACTIONS(8507), 1, + anon_sym_DASH2, + STATE(5139), 1, sym_comment, - ACTIONS(8270), 11, + ACTIONS(8505), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -390360,32 +392156,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193569] = 4, - ACTIONS(249), 1, + [184703] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7564), 1, - anon_sym_DASH, - STATE(5164), 1, + STATE(5140), 1, sym_comment, - ACTIONS(7562), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8509), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [193592] = 3, - ACTIONS(249), 1, + [184724] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5165), 1, + STATE(5141), 1, sym_comment, - ACTIONS(7986), 12, - ts_builtin_sym_end, + ACTIONS(8511), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390397,76 +392191,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193613] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + [184745] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8276), 1, - anon_sym_DASH, - STATE(5166), 1, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8173), 1, + anon_sym_DOLLAR, + STATE(3434), 1, + sym__immediate_decimal, + STATE(5142), 1, sym_comment, - ACTIONS(8274), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3433), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1591), 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, - [193636] = 4, - ACTIONS(249), 1, + anon_sym_if, + anon_sym_EQ_GT, + [184780] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8280), 1, - anon_sym_DASH, - STATE(5167), 1, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8173), 1, + anon_sym_DOLLAR, + STATE(3424), 1, + sym__immediate_decimal, + STATE(5143), 1, sym_comment, - ACTIONS(8278), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3423), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1693), 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, - [193659] = 4, - ACTIONS(249), 1, + anon_sym_if, + anon_sym_EQ_GT, + [184815] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8284), 1, - anon_sym_DASH, - STATE(5168), 1, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8173), 1, + anon_sym_DOLLAR, + STATE(3427), 1, + sym__immediate_decimal, + STATE(5144), 1, sym_comment, - ACTIONS(8282), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3425), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1671), 3, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ_GT, + [184850] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8173), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [193682] = 6, - ACTIONS(249), 1, + STATE(3430), 1, + sym__immediate_decimal, + STATE(5145), 1, + sym_comment, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3428), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1707), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [184885] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5745), 1, + ACTIONS(5701), 1, sym__newline, - ACTIONS(8286), 1, - anon_sym_DASH, - STATE(5169), 1, + ACTIONS(8513), 1, + anon_sym_DASH2, + STATE(5146), 1, sym_comment, - ACTIONS(1362), 2, + ACTIONS(1288), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(5748), 8, + ACTIONS(5704), 8, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -390475,13 +392313,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193709] = 3, - ACTIONS(249), 1, + [184912] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5170), 1, + ACTIONS(8515), 1, + anon_sym_else, + STATE(5147), 1, sym_comment, - ACTIONS(6761), 12, - ts_builtin_sym_end, + ACTIONS(8083), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390491,44 +392330,16 @@ 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, - [193730] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5486), 1, - anon_sym_LPAREN2, - ACTIONS(5490), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5492), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8160), 1, - anon_sym_DOLLAR, - ACTIONS(8162), 1, - anon_sym_DOLLAR2, - ACTIONS(8164), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8166), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8288), 1, - anon_sym_RBRACK, - STATE(2819), 1, - sym__immediate_decimal, - STATE(5171), 1, - sym_comment, - STATE(2878), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193771] = 4, - ACTIONS(249), 1, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [184935] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8292), 1, - anon_sym_DASH, - STATE(5172), 1, + ACTIONS(8519), 1, + anon_sym_DASH2, + STATE(5148), 1, sym_comment, - ACTIONS(8290), 11, + ACTIONS(8517), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -390540,35 +392351,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193794] = 6, - ACTIONS(249), 1, + [184958] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8294), 1, - anon_sym_DOT, - ACTIONS(8296), 1, - aux_sym__immediate_decimal_token2, - STATE(5173), 1, + ACTIONS(8523), 1, + anon_sym_DASH2, + STATE(5149), 1, sym_comment, - ACTIONS(1536), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 7, + ACTIONS(8521), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193821] = 4, - ACTIONS(249), 1, + [184981] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8300), 1, - anon_sym_DASH, - STATE(5174), 1, + ACTIONS(8527), 1, + anon_sym_DASH2, + STATE(5150), 1, sym_comment, - ACTIONS(8298), 11, + ACTIONS(8525), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -390580,13 +392389,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193844] = 3, - ACTIONS(249), 1, + [185004] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5175), 1, + ACTIONS(1530), 1, + anon_sym_RBRACE, + ACTIONS(1544), 1, + sym__entry_separator, + ACTIONS(3097), 1, + anon_sym_DOLLAR, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8193), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8195), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8197), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8199), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8529), 1, + anon_sym_DOT, + STATE(5151), 1, sym_comment, - ACTIONS(8106), 12, - ts_builtin_sym_end, + STATE(6033), 1, + sym__immediate_decimal, + STATE(5811), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185045] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5152), 1, + sym_comment, + ACTIONS(8531), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390598,69 +392434,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, - [193865] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8302), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8304), 1, - aux_sym__immediate_decimal_token2, - STATE(5176), 1, - sym_comment, - ACTIONS(1528), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [193892] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + [185066] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5177), 1, + ACTIONS(8535), 1, + anon_sym_DASH2, + STATE(5153), 1, sym_comment, - ACTIONS(7990), 12, - ts_builtin_sym_end, + ACTIONS(8533), 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, - [193913] = 3, - ACTIONS(249), 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, + [185089] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5178), 1, + ACTIONS(8539), 1, + anon_sym_DASH2, + STATE(5154), 1, sym_comment, - ACTIONS(8306), 12, + ACTIONS(8537), 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, - [193934] = 3, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185112] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5179), 1, + STATE(5155), 1, sym_comment, - ACTIONS(8308), 12, + ACTIONS(8541), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390673,12 +392491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193955] = 3, - ACTIONS(249), 1, + [185133] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5180), 1, + STATE(5156), 1, sym_comment, - ACTIONS(6753), 12, + ACTIONS(8259), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -390691,101 +392509,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, - [193976] = 13, - ACTIONS(3), 1, + [185154] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_RBRACK, - ACTIONS(1524), 1, - sym__entry_separator, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(8174), 1, + ACTIONS(6203), 1, anon_sym_DOLLAR, - ACTIONS(8176), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8178), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8180), 1, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6435), 1, + anon_sym_DOT, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8182), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - STATE(5181), 1, + STATE(5157), 1, sym_comment, - STATE(6210), 1, + STATE(6015), 1, sym__immediate_decimal, - STATE(6842), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194017] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2593), 1, - anon_sym_DOLLAR, - ACTIONS(5267), 1, - anon_sym_LPAREN2, - ACTIONS(5271), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5273), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5275), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5528), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8158), 1, - anon_sym_RBRACK, - ACTIONS(8162), 1, - anon_sym_DOLLAR2, - ACTIONS(8310), 1, + ACTIONS(1544), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8297), 2, aux_sym__immediate_decimal_token1, - STATE(2667), 1, - sym__immediate_decimal, - STATE(5182), 1, - sym_comment, - STATE(2781), 2, + aux_sym__immediate_decimal_token3, + STATE(6018), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194058] = 12, - ACTIONS(249), 1, + [185191] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(8312), 1, + ACTIONS(6203), 1, anon_sym_DOLLAR, - ACTIONS(8314), 1, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6207), 1, anon_sym_DOT, - ACTIONS(8318), 1, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - STATE(5183), 1, + STATE(5158), 1, sym_comment, - STATE(6011), 1, + STATE(6017), 1, sym__immediate_decimal, - ACTIONS(8316), 2, + ACTIONS(1591), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8297), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6098), 2, + STATE(6016), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194097] = 6, - ACTIONS(249), 1, + [185228] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - STATE(727), 1, + STATE(772), 1, aux_sym__pipe_separator, - STATE(5184), 1, + STATE(5159), 1, sym_comment, - STATE(5265), 1, + STATE(5172), 1, aux_sym_shebang_repeat1, - ACTIONS(3015), 9, + ACTIONS(2538), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390795,13 +392582,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, - [194124] = 3, - ACTIONS(249), 1, + [185255] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5185), 1, + STATE(5160), 1, sym_comment, - ACTIONS(7954), 12, - ts_builtin_sym_end, + ACTIONS(8543), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390813,12 +392599,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, - [194145] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + [185276] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5186), 1, + STATE(5161), 1, sym_comment, - ACTIONS(8322), 12, + ACTIONS(8545), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390831,59 +392618,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194166] = 13, - ACTIONS(3), 1, + [185297] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5486), 1, - anon_sym_LPAREN2, - ACTIONS(5490), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5492), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8160), 1, - anon_sym_DOLLAR, - ACTIONS(8162), 1, - anon_sym_DOLLAR2, - ACTIONS(8164), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8166), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8324), 1, - anon_sym_RBRACK, - STATE(2819), 1, - sym__immediate_decimal, - STATE(5187), 1, + STATE(5162), 1, sym_comment, - STATE(2878), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194207] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5188), 1, + ACTIONS(8547), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(8549), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [185320] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2094), 1, + anon_sym_DASH2, + STATE(5163), 1, sym_comment, - ACTIONS(8326), 12, + ACTIONS(2096), 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, - [194228] = 3, - ACTIONS(249), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185343] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5189), 1, + STATE(5164), 1, sym_comment, - ACTIONS(7962), 12, - ts_builtin_sym_end, + ACTIONS(8551), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390895,39 +392673,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, - [194249] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8024), 1, - anon_sym_DOLLAR, - ACTIONS(8026), 1, - anon_sym_DASH_DASH, - ACTIONS(8028), 1, - anon_sym_DASH, - ACTIONS(8030), 1, - anon_sym_LBRACE, - STATE(1680), 1, - sym_block, - STATE(1686), 1, - sym_val_closure, - STATE(5190), 1, - sym_comment, - STATE(5193), 1, - aux_sym_ctrl_do_repeat1, - STATE(6018), 1, - sym__flag, - STATE(710), 2, - sym__blosure, - sym_val_variable, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [194288] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + [185364] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5191), 1, + STATE(5165), 1, sym_comment, - ACTIONS(8002), 12, + ACTIONS(6833), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -390940,67 +392692,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, - [194309] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1570), 1, - sym__entry_separator, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(7982), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7984), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8174), 1, - anon_sym_DOLLAR, - ACTIONS(8234), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8236), 1, - aux_sym__immediate_decimal_token3, - STATE(5192), 1, - sym_comment, - STATE(7316), 1, - sym__immediate_decimal, - ACTIONS(1560), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7194), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194348] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8024), 1, - anon_sym_DOLLAR, - ACTIONS(8026), 1, - anon_sym_DASH_DASH, - ACTIONS(8028), 1, - anon_sym_DASH, - ACTIONS(8030), 1, - anon_sym_LBRACE, - STATE(1680), 1, - sym_block, - STATE(1686), 1, - sym_val_closure, - STATE(5193), 1, - sym_comment, - STATE(5620), 1, - aux_sym_ctrl_do_repeat1, - STATE(6018), 1, - sym__flag, - STATE(713), 2, - sym__blosure, - sym_val_variable, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [194387] = 3, - ACTIONS(249), 1, + [185385] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5194), 1, + STATE(5166), 1, sym_comment, - ACTIONS(8004), 12, - ts_builtin_sym_end, + ACTIONS(8553), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391012,738 +392709,438 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194408] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5195), 1, - sym_comment, - ACTIONS(8328), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(8330), 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, - [194431] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5196), 1, - sym_comment, - ACTIONS(6841), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6847), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6843), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6845), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [194458] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7610), 1, - anon_sym_DASH, - STATE(5197), 1, - sym_comment, - ACTIONS(7608), 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, - [194481] = 4, - ACTIONS(249), 1, + [185406] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8334), 1, - anon_sym_DASH, - STATE(5198), 1, + ACTIONS(7482), 1, + anon_sym_DASH2, + STATE(5167), 1, sym_comment, - ACTIONS(8332), 11, - anon_sym_EQ, - sym_identifier, + STATE(5221), 1, + aux_sym_parameter_repeat2, + ACTIONS(2548), 2, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194504] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8026), 1, - anon_sym_DASH_DASH, - ACTIONS(8028), 1, - anon_sym_DASH, - ACTIONS(8218), 1, - anon_sym_DOLLAR, - ACTIONS(8220), 1, - anon_sym_LBRACE, - STATE(1829), 1, - sym_block, - STATE(1830), 1, - sym_val_closure, - STATE(5115), 1, - aux_sym_ctrl_do_repeat1, - STATE(5199), 1, - sym_comment, - STATE(6018), 1, - sym__flag, - STATE(724), 2, - sym__blosure, - sym_val_variable, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [194543] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8338), 1, - anon_sym_DASH, - STATE(5200), 1, - sym_comment, - ACTIONS(8336), 11, - anon_sym_EQ, + ACTIONS(7480), 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, - [194566] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8340), 1, - anon_sym_DOT, - ACTIONS(8342), 1, - aux_sym__immediate_decimal_token2, - STATE(5201), 1, - sym_comment, - ACTIONS(1536), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1538), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [194593] = 11, - ACTIONS(249), 1, + [185432] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_DASH, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(6412), 1, + anon_sym_DOLLAR, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - STATE(3574), 1, + STATE(3424), 1, sym__immediate_decimal, - STATE(5202), 1, + STATE(5168), 1, sym_comment, - ACTIONS(1524), 2, - anon_sym_DASH_DASH, + ACTIONS(1693), 2, + sym__newline, anon_sym_LBRACE, - ACTIONS(6253), 2, + ACTIONS(8555), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3422), 2, + STATE(3423), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194630] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8346), 1, - anon_sym_DASH, - STATE(5203), 1, - sym_comment, - ACTIONS(8344), 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, - [194653] = 11, - ACTIONS(249), 1, + [185466] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - ACTIONS(6229), 1, + ACTIONS(1544), 1, + anon_sym_LBRACE, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(6412), 1, + anon_sym_DOLLAR, + ACTIONS(8559), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(8561), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - STATE(3423), 1, - sym__immediate_decimal, - STATE(5204), 1, + STATE(5169), 1, sym_comment, - ACTIONS(1570), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6253), 2, + STATE(7421), 1, + sym__immediate_decimal, + ACTIONS(8557), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3463), 2, + STATE(3436), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194690] = 11, - ACTIONS(249), 1, + [185502] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6428), 1, + ACTIONS(1948), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, anon_sym_DOT, - ACTIONS(8318), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, - aux_sym__immediate_decimal_token5, - STATE(5205), 1, + STATE(3508), 1, + sym_cell_path, + STATE(5170), 1, sym_comment, - STATE(6185), 1, - sym__immediate_decimal, - ACTIONS(1524), 2, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(1950), 6, sym__newline, - anon_sym_LBRACE, - ACTIONS(8316), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6098), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194727] = 11, - ACTIONS(249), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [185532] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1608), 1, - anon_sym_DASH, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - STATE(3425), 1, - sym__immediate_decimal, - STATE(5206), 1, + ACTIONS(1952), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3498), 1, + sym_cell_path, + STATE(5171), 1, sym_comment, - ACTIONS(1610), 2, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(1954), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3424), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194764] = 11, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_as, + [185562] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1612), 1, - anon_sym_DASH, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - STATE(3428), 1, - sym__immediate_decimal, - STATE(5207), 1, + ACTIONS(3857), 1, + sym__newline, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(5172), 1, sym_comment, - ACTIONS(1614), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3427), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194801] = 11, - ACTIONS(249), 1, + ACTIONS(2613), 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, + [185586] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1620), 1, - anon_sym_DASH, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(6412), 1, + anon_sym_DOLLAR, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - STATE(3431), 1, + STATE(3427), 1, sym__immediate_decimal, - STATE(5208), 1, + STATE(5173), 1, sym_comment, - ACTIONS(1622), 2, - anon_sym_DASH_DASH, + ACTIONS(1671), 2, + sym__newline, anon_sym_LBRACE, - ACTIONS(6253), 2, + ACTIONS(8555), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3430), 2, + STATE(3425), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194838] = 4, - ACTIONS(249), 1, + [185620] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8350), 1, - anon_sym_DASH, - STATE(5209), 1, + ACTIONS(1960), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3510), 1, + sym_cell_path, + STATE(5174), 1, sym_comment, - ACTIONS(8348), 11, - anon_sym_EQ, - sym_identifier, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(1962), 6, 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, - [194861] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_as, + [185650] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8354), 1, - anon_sym_DASH, - STATE(5210), 1, + ACTIONS(1968), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3525), 1, + sym_cell_path, + STATE(5175), 1, sym_comment, - ACTIONS(8352), 11, - anon_sym_EQ, - sym_identifier, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(1970), 6, 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, - [194884] = 11, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_as, + [185680] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6231), 1, + ACTIONS(1972), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, anon_sym_DOT, - ACTIONS(8318), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, - aux_sym__immediate_decimal_token5, - STATE(5211), 1, + STATE(3493), 1, + sym_cell_path, + STATE(5176), 1, sym_comment, - STATE(6096), 1, - sym__immediate_decimal, - ACTIONS(1570), 2, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(1974), 6, sym__newline, - anon_sym_LBRACE, - ACTIONS(8316), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6189), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194921] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8356), 1, - anon_sym_DOT, - ACTIONS(8358), 1, - aux_sym__immediate_decimal_token2, - STATE(5212), 1, - sym_comment, - ACTIONS(1538), 4, - anon_sym_DOLLAR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1536), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [194948] = 4, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_as, + [185710] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2222), 1, - anon_sym_DASH, - STATE(5213), 1, + ACTIONS(1984), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3494), 1, + sym_cell_path, + STATE(5177), 1, sym_comment, - ACTIONS(2228), 11, - anon_sym_EQ, - sym_identifier, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(1986), 6, 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, - [194971] = 3, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_as, + [185740] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5214), 1, + ACTIONS(1988), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3520), 1, + sym_cell_path, + STATE(5178), 1, sym_comment, - ACTIONS(6823), 12, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(1990), 6, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194992] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7992), 1, - anon_sym_DOLLAR, - STATE(3423), 1, - sym__immediate_decimal, - STATE(5215), 1, - sym_comment, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3463), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1570), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [195027] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7992), 1, - anon_sym_DOLLAR, - STATE(3425), 1, - sym__immediate_decimal, - STATE(5216), 1, - sym_comment, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3424), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1610), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [195062] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7992), 1, - anon_sym_DOLLAR, - STATE(3428), 1, - sym__immediate_decimal, - STATE(5217), 1, - sym_comment, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3427), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1614), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [195097] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7992), 1, - anon_sym_DOLLAR, - STATE(3431), 1, - sym__immediate_decimal, - STATE(5218), 1, - sym_comment, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3430), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1622), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [195132] = 6, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [185770] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8360), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8362), 1, + ACTIONS(8565), 1, aux_sym__immediate_decimal_token2, - STATE(5219), 1, + STATE(5179), 1, sym_comment, - ACTIONS(1528), 4, + ACTIONS(1673), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1530), 6, + ACTIONS(1675), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [195159] = 3, - ACTIONS(249), 1, + [185794] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5220), 1, + ACTIONS(8569), 1, + anon_sym_DASH_DASH, + ACTIONS(8572), 1, + anon_sym_DASH2, + STATE(5642), 1, + sym__flag, + STATE(5180), 2, sym_comment, - ACTIONS(8364), 12, + aux_sym_ctrl_do_repeat1, + STATE(5593), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8567), 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_RPAREN, - [195180] = 13, + anon_sym_RBRACE, + anon_sym_as, + [185822] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_RBRACE, - ACTIONS(1524), 1, - sym__entry_separator, - ACTIONS(3044), 1, - anon_sym_DOLLAR, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(7978), 1, + ACTIONS(8575), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7980), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7982), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7984), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8366), 1, - anon_sym_DOT, - STATE(5221), 1, + ACTIONS(8577), 1, + aux_sym__immediate_decimal_token2, + STATE(5181), 1, sym_comment, - STATE(6025), 1, - sym__immediate_decimal, - STATE(5904), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195221] = 10, - ACTIONS(249), 1, + ACTIONS(1621), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1623), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [185848] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6418), 1, + ACTIONS(6412), 1, anon_sym_DOLLAR, - ACTIONS(8318), 1, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - STATE(3564), 1, + STATE(3430), 1, sym__immediate_decimal, - STATE(5222), 1, + STATE(5182), 1, sym_comment, - ACTIONS(1556), 2, + ACTIONS(1707), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(8368), 2, + ACTIONS(8555), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3433), 2, + STATE(3428), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195255] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8370), 1, - anon_sym_DOT, - ACTIONS(8372), 1, - aux_sym__immediate_decimal_token2, - STATE(5223), 1, - sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 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, - [195281] = 7, - ACTIONS(249), 1, + [185882] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1027), 1, - anon_sym_DASH, - ACTIONS(8268), 1, + ACTIONS(1976), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(5224), 1, + STATE(3501), 1, + sym_cell_path, + STATE(5183), 1, sym_comment, - STATE(5226), 1, + STATE(5321), 1, aux_sym_cell_path_repeat1, - ACTIONS(1029), 7, + STATE(5504), 1, + sym_path, + ACTIONS(1978), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [195309] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(8376), 1, - anon_sym_DASH_DASH, - ACTIONS(8378), 1, - anon_sym_DASH, - STATE(5225), 1, - sym_comment, - STATE(5345), 1, - aux_sym_ctrl_do_repeat1, - STATE(5416), 1, - sym_val_variable, - STATE(6018), 1, - sym__flag, - STATE(6426), 1, - sym__variable_name, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [195347] = 6, - ACTIONS(249), 1, + anon_sym_as, + [185912] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1031), 1, - anon_sym_DASH, - ACTIONS(8380), 1, + ACTIONS(1992), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(5226), 2, + STATE(3522), 1, + sym_cell_path, + STATE(5184), 1, sym_comment, + STATE(5321), 1, aux_sym_cell_path_repeat1, - ACTIONS(1033), 7, + STATE(5504), 1, + sym_path, + ACTIONS(1994), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [195373] = 5, - ACTIONS(249), 1, + anon_sym_as, + [185942] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1577), 1, + anon_sym_LBRACE, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6412), 1, + anon_sym_DOLLAR, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5185), 1, + sym_comment, + STATE(7467), 1, + sym__immediate_decimal, + ACTIONS(8557), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3431), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185978] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8296), 1, + ACTIONS(8579), 1, aux_sym__immediate_decimal_token2, - STATE(5227), 1, + STATE(5186), 1, sym_comment, - ACTIONS(1536), 3, - anon_sym_DASH, + ACTIONS(1673), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1538), 7, + ACTIONS(1675), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -391751,128 +393148,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [195397] = 12, - ACTIONS(3), 1, + [186002] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1544), 1, + ACTIONS(8583), 1, + anon_sym_DASH_DASH, + ACTIONS(8585), 1, + anon_sym_DASH2, + ACTIONS(8587), 1, + anon_sym_as, + STATE(5187), 1, + sym_comment, + STATE(5189), 1, + aux_sym_ctrl_do_repeat1, + STATE(5642), 1, + sym__flag, + STATE(5593), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8581), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1556), 1, - sym__entry_separator, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(7982), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7984), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8174), 1, + [186034] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8591), 1, + anon_sym_DASH2, + STATE(5188), 1, + sym_comment, + STATE(5221), 1, + aux_sym_parameter_repeat2, + ACTIONS(2548), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(8589), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(8234), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8236), 1, - aux_sym__immediate_decimal_token3, - STATE(5228), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186060] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8583), 1, + anon_sym_DASH_DASH, + ACTIONS(8585), 1, + anon_sym_DASH2, + ACTIONS(8595), 1, + anon_sym_as, + STATE(5180), 1, + aux_sym_ctrl_do_repeat1, + STATE(5189), 1, sym_comment, - STATE(7428), 1, - sym__immediate_decimal, - STATE(7388), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195435] = 9, - ACTIONS(249), 1, + STATE(5642), 1, + sym__flag, + STATE(5593), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8593), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186092] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3364), 1, + ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(8383), 1, - anon_sym_LPAREN, - ACTIONS(8385), 1, + ACTIONS(6227), 1, anon_sym_DOLLAR, - ACTIONS(8387), 1, - anon_sym_DASH, - STATE(1765), 1, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(8597), 1, + anon_sym_DASH2, + STATE(2145), 1, sym__expr_unary_minus, - STATE(5229), 1, + STATE(5190), 1, sym_comment, - ACTIONS(3278), 2, + ACTIONS(3361), 2, anon_sym_true, anon_sym_false, - STATE(1794), 4, + STATE(2155), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [195467] = 6, - ACTIONS(249), 1, + [186124] = 9, + ACTIONS(83), 1, + aux_sym_expr_unary_token1, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8389), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8391), 1, - aux_sym__immediate_decimal_token2, - STATE(5230), 1, + ACTIONS(5856), 1, + anon_sym_LPAREN, + ACTIONS(8599), 1, + anon_sym_DOLLAR, + ACTIONS(8601), 1, + anon_sym_DASH2, + STATE(2478), 1, + sym__expr_unary_minus, + STATE(5191), 1, sym_comment, - ACTIONS(1528), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 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, - [195493] = 6, - ACTIONS(249), 1, + ACTIONS(3437), 2, + anon_sym_true, + anon_sym_false, + STATE(2524), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [186156] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7294), 1, - anon_sym_DASH, - STATE(5231), 1, + ACTIONS(1996), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3511), 1, + sym_cell_path, + STATE(5192), 1, sym_comment, - STATE(5250), 1, - aux_sym_parameter_repeat2, - ACTIONS(2591), 2, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(1998), 6, sym__newline, - anon_sym_COMMA, - ACTIONS(7292), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195519] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_as, + [186186] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7336), 1, - anon_sym_DASH, - STATE(5232), 1, + ACTIONS(2000), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3523), 1, + sym_cell_path, + STATE(5193), 1, sym_comment, - STATE(5250), 1, - aux_sym_parameter_repeat2, - ACTIONS(2591), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7334), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(2002), 6, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195545] = 6, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_as, + [186216] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8395), 1, - anon_sym_DASH, - STATE(5233), 1, + ACTIONS(7407), 1, + anon_sym_DASH2, + STATE(5194), 1, sym_comment, - STATE(5250), 1, + STATE(5221), 1, aux_sym_parameter_repeat2, - ACTIONS(2591), 2, + ACTIONS(2548), 2, sym__newline, anon_sym_COMMA, - ACTIONS(8393), 7, + ACTIONS(7405), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -391880,70 +393324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195571] = 12, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(8376), 1, - anon_sym_DASH_DASH, - ACTIONS(8378), 1, - anon_sym_DASH, - STATE(5234), 1, - sym_comment, - STATE(5345), 1, - aux_sym_ctrl_do_repeat1, - STATE(5416), 1, - sym_val_variable, - STATE(6018), 1, - sym__flag, - STATE(6426), 1, - sym__variable_name, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [195609] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1524), 1, - anon_sym_LBRACE, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6428), 1, - anon_sym_DOT, - ACTIONS(8312), 1, - anon_sym_DOLLAR, - ACTIONS(8318), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, - aux_sym__immediate_decimal_token5, - STATE(5235), 1, - sym_comment, - STATE(6185), 1, - sym__immediate_decimal, - ACTIONS(8316), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6098), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195645] = 6, - ACTIONS(249), 1, + [186242] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7344), 1, - anon_sym_DASH, - STATE(5236), 1, + ACTIONS(8605), 1, + anon_sym_DASH2, + STATE(5195), 1, sym_comment, - STATE(5250), 1, + STATE(5221), 1, aux_sym_parameter_repeat2, - ACTIONS(2591), 2, + ACTIONS(2548), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7342), 7, + ACTIONS(8603), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -391951,2309 +393344,2639 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195671] = 11, - ACTIONS(249), 1, + [186268] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3616), 1, - anon_sym_DOLLAR, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6428), 1, + ACTIONS(967), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, anon_sym_DOT, - STATE(5237), 1, - sym_comment, - STATE(6739), 1, - sym__immediate_decimal, - ACTIONS(6233), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5976), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195707] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8397), 1, - aux_sym__immediate_decimal_token2, - STATE(5238), 1, + STATE(5196), 1, sym_comment, - ACTIONS(1596), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 7, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5483), 1, + sym_path, + ACTIONS(969), 7, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, 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, - [195731] = 5, - ACTIONS(3), 1, + [186296] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8342), 1, - aux_sym__immediate_decimal_token2, - STATE(5239), 1, + ACTIONS(2004), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3490), 1, + sym_cell_path, + STATE(5197), 1, sym_comment, - ACTIONS(1536), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1538), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [195755] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8401), 1, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(2006), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - ACTIONS(8403), 1, - anon_sym_DASH, - ACTIONS(8405), 1, + anon_sym_RBRACE, anon_sym_as, - STATE(5240), 1, + [186326] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2068), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3491), 1, + sym_cell_path, + STATE(5198), 1, sym_comment, - STATE(5259), 1, - aux_sym_ctrl_do_repeat1, - STATE(5634), 1, - sym__flag, - STATE(5494), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8399), 4, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(2070), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [195787] = 9, - ACTIONS(249), 1, + anon_sym_as, + [186356] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3524), 1, - aux_sym_expr_unary_token1, - ACTIONS(6747), 1, - anon_sym_LPAREN, - ACTIONS(6885), 1, - anon_sym_DOLLAR, - ACTIONS(8409), 1, - anon_sym_DASH, - STATE(4619), 1, - sym__expr_unary_minus, - STATE(5241), 1, + ACTIONS(2072), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3500), 1, + sym_cell_path, + STATE(5199), 1, sym_comment, - ACTIONS(8407), 2, - anon_sym_true, - anon_sym_false, - STATE(4692), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [195819] = 10, - ACTIONS(249), 1, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(2074), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [186386] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - ACTIONS(8318), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, - aux_sym__immediate_decimal_token5, - STATE(3574), 1, - sym__immediate_decimal, - STATE(5242), 1, + ACTIONS(1907), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3505), 1, + sym_cell_path, + STATE(5200), 1, sym_comment, - ACTIONS(1524), 2, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(1911), 6, sym__newline, - anon_sym_LBRACE, - ACTIONS(8368), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3422), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195853] = 9, - ACTIONS(249), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [186416] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8401), 1, + ACTIONS(8583), 1, anon_sym_DASH_DASH, - ACTIONS(8403), 1, - anon_sym_DASH, - ACTIONS(8413), 1, + ACTIONS(8585), 1, + anon_sym_DASH2, + ACTIONS(8611), 1, anon_sym_as, - STATE(5243), 1, + STATE(5201), 1, sym_comment, - STATE(5254), 1, + STATE(5235), 1, aux_sym_ctrl_do_repeat1, - STATE(5634), 1, + STATE(5642), 1, sym__flag, - STATE(5494), 2, + STATE(5593), 2, sym_short_flag, sym_long_flag, - ACTIONS(8411), 4, + ACTIONS(8609), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [195885] = 5, - ACTIONS(3), 1, + [186448] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8415), 1, - aux_sym__immediate_decimal_token2, - STATE(5244), 1, + ACTIONS(1913), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3507), 1, + sym_cell_path, + STATE(5202), 1, sym_comment, - ACTIONS(1596), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1598), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [195909] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1510), 1, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(1915), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - ACTIONS(1524), 1, - sym__entry_separator, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(7982), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7984), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8174), 1, - anon_sym_DOLLAR, - ACTIONS(8234), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8236), 1, - aux_sym__immediate_decimal_token3, - STATE(5245), 1, - sym_comment, - STATE(7453), 1, - sym__immediate_decimal, - STATE(6842), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195947] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(499), 1, + anon_sym_as, + [186478] = 9, + ACTIONS(203), 1, aux_sym_expr_unary_token1, - ACTIONS(8417), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6671), 1, anon_sym_LPAREN, - ACTIONS(8419), 1, + ACTIONS(8173), 1, anon_sym_DOLLAR, - ACTIONS(8421), 1, - anon_sym_DASH, - STATE(2328), 1, + ACTIONS(8597), 1, + anon_sym_DASH2, + STATE(2145), 1, sym__expr_unary_minus, - STATE(5246), 1, + STATE(5203), 1, sym_comment, - ACTIONS(5141), 2, + ACTIONS(3361), 2, anon_sym_true, anon_sym_false, - STATE(2322), 4, + STATE(2155), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [195979] = 6, - ACTIONS(249), 1, + [186510] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8425), 1, - anon_sym_DASH, - STATE(5247), 1, + ACTIONS(8613), 1, + anon_sym_else, + STATE(5204), 1, sym_comment, - STATE(5250), 1, - aux_sym_parameter_repeat2, - ACTIONS(2591), 2, + ACTIONS(8083), 10, sym__newline, - anon_sym_COMMA, - ACTIONS(8423), 7, - sym_identifier, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196005] = 6, - ACTIONS(249), 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, + [186532] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8427), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8429), 1, + ACTIONS(8413), 1, aux_sym__immediate_decimal_token2, - STATE(5248), 1, + STATE(5205), 1, sym_comment, - ACTIONS(1530), 3, + ACTIONS(1609), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1528), 6, + ACTIONS(1607), 6, sym_identifier, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [196031] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8433), 1, - anon_sym_DASH, - STATE(5249), 1, - sym_comment, - STATE(5250), 1, - aux_sym_parameter_repeat2, - ACTIONS(2591), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(8431), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196057] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8440), 1, - anon_sym_DASH, - ACTIONS(8437), 2, - sym__newline, - anon_sym_COMMA, - STATE(5250), 2, - sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(8435), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196081] = 5, - ACTIONS(249), 1, + [186556] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8358), 1, + ACTIONS(8615), 1, aux_sym__immediate_decimal_token2, - STATE(5251), 1, + STATE(5206), 1, sym_comment, - ACTIONS(1538), 4, + ACTIONS(1675), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1536), 6, + ACTIONS(1673), 6, sym_identifier, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [196105] = 11, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1556), 1, - anon_sym_LBRACE, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - ACTIONS(8444), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8446), 1, - aux_sym__immediate_decimal_token5, - STATE(5252), 1, - sym_comment, - STATE(7410), 1, - sym__immediate_decimal, - ACTIONS(8442), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3433), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196141] = 9, - ACTIONS(249), 1, + [186580] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3474), 1, + ACTIONS(3451), 1, aux_sym_expr_unary_token1, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - ACTIONS(6633), 1, + ACTIONS(8617), 1, anon_sym_LPAREN, - ACTIONS(8450), 1, - anon_sym_DASH, - STATE(4482), 1, + ACTIONS(8619), 1, + anon_sym_DOLLAR, + ACTIONS(8621), 1, + anon_sym_DASH2, + STATE(3850), 1, sym__expr_unary_minus, - STATE(5253), 1, + STATE(5207), 1, sym_comment, - ACTIONS(8448), 2, + ACTIONS(5010), 2, anon_sym_true, anon_sym_false, - STATE(4453), 4, + STATE(3894), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [196173] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8401), 1, - anon_sym_DASH_DASH, - ACTIONS(8403), 1, - anon_sym_DASH, - ACTIONS(8454), 1, - anon_sym_as, - STATE(5254), 1, - sym_comment, - STATE(5259), 1, - aux_sym_ctrl_do_repeat1, - STATE(5634), 1, - sym__flag, - STATE(5494), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8452), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [196205] = 4, - ACTIONS(249), 1, + [186612] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4997), 1, - anon_sym_DASH, - STATE(5255), 1, + ACTIONS(2082), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3502), 1, + sym_cell_path, + STATE(5208), 1, sym_comment, - ACTIONS(4995), 10, - sym_identifier, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(2084), 6, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - [196227] = 6, + anon_sym_as, + [186642] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8456), 1, - anon_sym_DOT, - ACTIONS(8458), 1, - aux_sym__immediate_decimal_token2, - STATE(5256), 1, - sym_comment, - ACTIONS(1536), 3, + ACTIONS(1565), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1538), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(1577), 1, sym__entry_separator, - [196253] = 9, - ACTIONS(211), 1, - aux_sym_expr_unary_token1, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8387), 1, - anon_sym_DASH, - ACTIONS(8460), 1, - anon_sym_LPAREN, - ACTIONS(8462), 1, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8197), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8199), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8307), 1, anon_sym_DOLLAR, - STATE(1765), 1, - sym__expr_unary_minus, - STATE(5257), 1, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8343), 1, + aux_sym__immediate_decimal_token3, + STATE(5209), 1, sym_comment, - ACTIONS(3278), 2, - anon_sym_true, - anon_sym_false, - STATE(1794), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(7406), 1, + sym__immediate_decimal, + STATE(6977), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [196285] = 10, - ACTIONS(249), 1, + [186680] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(1591), 1, + anon_sym_LBRACE, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6418), 1, + ACTIONS(6207), 1, + anon_sym_DOT, + ACTIONS(8293), 1, anon_sym_DOLLAR, - ACTIONS(8318), 1, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - STATE(3425), 1, - sym__immediate_decimal, - STATE(5258), 1, + STATE(5210), 1, sym_comment, - ACTIONS(1610), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8368), 2, + STATE(6017), 1, + sym__immediate_decimal, + ACTIONS(8297), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3424), 2, + STATE(6016), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196319] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8466), 1, - anon_sym_DASH_DASH, - ACTIONS(8469), 1, - anon_sym_DASH, - STATE(5634), 1, - sym__flag, - STATE(5259), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5494), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8464), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - [196347] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4987), 1, - anon_sym_DASH, - STATE(5260), 1, - sym_comment, - ACTIONS(4985), 10, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [196369] = 11, - ACTIONS(249), 1, + [186716] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1524), 1, + ACTIONS(1544), 1, anon_sym_LBRACE, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6418), 1, + ACTIONS(6435), 1, + anon_sym_DOT, + ACTIONS(8293), 1, anon_sym_DOLLAR, - ACTIONS(8444), 1, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8446), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - STATE(5261), 1, + STATE(5211), 1, sym_comment, - STATE(7411), 1, + STATE(6015), 1, sym__immediate_decimal, - ACTIONS(8442), 2, + ACTIONS(8297), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3422), 2, + STATE(6018), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196405] = 10, - ACTIONS(249), 1, + [186752] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6418), 1, + ACTIONS(6412), 1, anon_sym_DOLLAR, - ACTIONS(8318), 1, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - STATE(3428), 1, + STATE(3434), 1, sym__immediate_decimal, - STATE(5262), 1, + STATE(5212), 1, sym_comment, - ACTIONS(1614), 2, + ACTIONS(1591), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(8368), 2, + ACTIONS(8555), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3427), 2, + STATE(3433), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196439] = 6, - ACTIONS(3), 1, + [186786] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8472), 1, + ACTIONS(2090), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3528), 1, + sym_cell_path, + STATE(5213), 1, + sym_comment, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(2092), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [186816] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8623), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8474), 1, + ACTIONS(8625), 1, aux_sym__immediate_decimal_token2, - STATE(5263), 1, + STATE(5214), 1, sym_comment, - ACTIONS(1528), 3, - anon_sym_RBRACE, + ACTIONS(1621), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1530), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1623), 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, - [196465] = 9, - ACTIONS(249), 1, + [186842] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3412), 1, + ACTIONS(3521), 1, aux_sym_expr_unary_token1, - ACTIONS(8383), 1, + ACTIONS(5856), 1, anon_sym_LPAREN, - ACTIONS(8387), 1, - anon_sym_DASH, - ACTIONS(8476), 1, + ACTIONS(6349), 1, anon_sym_DOLLAR, - STATE(1765), 1, + ACTIONS(8601), 1, + anon_sym_DASH2, + STATE(2478), 1, sym__expr_unary_minus, - STATE(5264), 1, + STATE(5215), 1, sym_comment, - ACTIONS(3278), 2, + ACTIONS(3437), 2, anon_sym_true, anon_sym_false, - STATE(1794), 4, + STATE(2524), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [196497] = 5, - ACTIONS(249), 1, + [186874] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(5265), 1, + ACTIONS(1925), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3480), 1, + sym_cell_path, + STATE(5216), 1, sym_comment, - ACTIONS(3027), 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, - [196521] = 10, - ACTIONS(249), 1, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(1927), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [186904] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6418), 1, + ACTIONS(6412), 1, anon_sym_DOLLAR, - ACTIONS(8318), 1, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - STATE(3431), 1, + STATE(3619), 1, sym__immediate_decimal, - STATE(5266), 1, + STATE(5217), 1, sym_comment, - ACTIONS(1622), 2, + ACTIONS(1544), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(8368), 2, + ACTIONS(8555), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3430), 2, + STATE(3436), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196555] = 11, - ACTIONS(249), 1, + [186938] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8627), 1, + anon_sym_DOT, + ACTIONS(8629), 1, + aux_sym__immediate_decimal_token2, + STATE(5218), 1, + sym_comment, + ACTIONS(1609), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1607), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [186964] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1570), 1, + ACTIONS(961), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(3175), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5219), 1, + sym_comment, + STATE(5483), 1, + sym_path, + ACTIONS(963), 6, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6229), 1, + [186994] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8387), 1, + aux_sym__immediate_decimal_token2, + STATE(5220), 1, + sym_comment, + ACTIONS(1607), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1609), 6, anon_sym_LPAREN2, - ACTIONS(6231), 1, - anon_sym_DOT, - ACTIONS(8312), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [187018] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8636), 1, + anon_sym_DASH2, + ACTIONS(8633), 2, + sym__newline, + anon_sym_COMMA, + STATE(5221), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(8631), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(8318), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [187042] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2094), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_cell_path, + STATE(5222), 1, + sym_comment, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(2096), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [187072] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1530), 1, + anon_sym_RBRACE, + ACTIONS(1544), 1, + sym__entry_separator, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8197), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, + ACTIONS(8199), 1, aux_sym__immediate_decimal_token5, - STATE(5267), 1, - sym_comment, - STATE(6096), 1, - sym__immediate_decimal, - ACTIONS(8316), 2, + ACTIONS(8307), 1, + anon_sym_DOLLAR, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8343), 1, aux_sym__immediate_decimal_token3, - STATE(6189), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196591] = 9, - ACTIONS(91), 1, - aux_sym_expr_unary_token1, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5842), 1, - anon_sym_LPAREN, - ACTIONS(6456), 1, - anon_sym_DOLLAR, - ACTIONS(8478), 1, - anon_sym_DASH, - STATE(2510), 1, - sym__expr_unary_minus, - STATE(5268), 1, + STATE(5223), 1, sym_comment, - ACTIONS(3392), 2, - anon_sym_true, - anon_sym_false, - STATE(2458), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(7394), 1, + sym__immediate_decimal, + STATE(6941), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [196623] = 5, - ACTIONS(249), 1, + [187110] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token2, - STATE(5269), 1, + ACTIONS(971), 1, + anon_sym_DASH2, + ACTIONS(8638), 1, + anon_sym_DOT, + STATE(5483), 1, + sym_path, + STATE(5224), 2, sym_comment, - ACTIONS(1598), 4, + aux_sym_cell_path_repeat1, + ACTIONS(973), 7, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1596), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [196647] = 10, - ACTIONS(249), 1, + anon_sym_LBRACE, + [187136] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6418), 1, + ACTIONS(6412), 1, anon_sym_DOLLAR, - ACTIONS(8318), 1, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - STATE(3423), 1, + STATE(3607), 1, sym__immediate_decimal, - STATE(5270), 1, + STATE(5225), 1, sym_comment, - ACTIONS(1570), 2, + ACTIONS(1577), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(8368), 2, + ACTIONS(8555), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3463), 2, + STATE(3431), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196681] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8401), 1, - anon_sym_DASH_DASH, - ACTIONS(8403), 1, - anon_sym_DASH, - ACTIONS(8484), 1, - anon_sym_as, - STATE(5240), 1, - aux_sym_ctrl_do_repeat1, - STATE(5271), 1, - sym_comment, - STATE(5634), 1, - sym__flag, - STATE(5494), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8482), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [196713] = 6, - ACTIONS(249), 1, + [187170] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8486), 1, - anon_sym_DOT, - ACTIONS(8488), 1, + ACTIONS(8641), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8643), 1, aux_sym__immediate_decimal_token2, - STATE(5272), 1, + STATE(5226), 1, sym_comment, - ACTIONS(1538), 3, + ACTIONS(1623), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1536), 6, + ACTIONS(1621), 6, sym_identifier, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [196739] = 8, - ACTIONS(249), 1, + [187196] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1021), 1, - anon_sym_DOT_DOT2, - ACTIONS(6216), 1, - anon_sym_DOT, - STATE(3165), 1, - aux_sym_cell_path_repeat1, - STATE(3337), 1, - sym_path, - STATE(4165), 1, - sym_cell_path, - STATE(5273), 1, + ACTIONS(7490), 1, + anon_sym_DASH2, + STATE(5221), 1, + aux_sym_parameter_repeat2, + STATE(5227), 1, sym_comment, - ACTIONS(1023), 5, + ACTIONS(2548), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7488), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [196768] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8490), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(8493), 1, - anon_sym_DASH, - STATE(5795), 1, - sym__flag, - STATE(5274), 2, + [187222] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8647), 1, + anon_sym_DASH2, + STATE(5221), 1, + aux_sym_parameter_repeat2, + STATE(5228), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5923), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8464), 4, - ts_builtin_sym_end, + ACTIONS(2548), 2, sym__newline, - anon_sym_SEMI, - anon_sym_as, - [196795] = 11, - ACTIONS(249), 1, + anon_sym_COMMA, + ACTIONS(8645), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [187248] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6418), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(6412), 1, anon_sym_DOLLAR, - ACTIONS(8374), 1, + ACTIONS(8649), 1, sym_identifier, - ACTIONS(8376), 1, + ACTIONS(8651), 1, anon_sym_DASH_DASH, - ACTIONS(8378), 1, - anon_sym_DASH, - STATE(5275), 1, + ACTIONS(8653), 1, + anon_sym_DASH2, + STATE(5229), 1, sym_comment, - STATE(5345), 1, + STATE(5349), 1, aux_sym_ctrl_do_repeat1, - STATE(5416), 1, + STATE(5480), 1, sym_val_variable, - STATE(6018), 1, + STATE(6126), 1, sym__flag, - STATE(6426), 1, + STATE(6716), 1, sym__variable_name, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [196830] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3568), 1, - anon_sym_DOLLAR, - ACTIONS(7025), 1, - anon_sym_LPAREN2, - ACTIONS(7029), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7031), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7135), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8496), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8498), 1, - aux_sym__immediate_decimal_token5, - STATE(4353), 1, - sym__immediate_decimal, - STATE(5276), 1, - sym_comment, - STATE(4654), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196865] = 11, - ACTIONS(3), 1, + [187286] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7025), 1, - anon_sym_LPAREN2, - ACTIONS(7072), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7074), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7135), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8500), 1, - anon_sym_DOLLAR, - ACTIONS(8502), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8504), 1, - aux_sym__immediate_decimal_token5, - STATE(4763), 1, - sym__immediate_decimal, - STATE(5277), 1, + ACTIONS(1933), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3484), 1, + sym_cell_path, + STATE(5230), 1, sym_comment, - STATE(5213), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196900] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8506), 1, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(1935), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - ACTIONS(8508), 1, - anon_sym_DASH, - ACTIONS(8510), 1, + anon_sym_RBRACE, anon_sym_as, - STATE(5274), 1, - aux_sym_ctrl_do_repeat1, - STATE(5278), 1, + [187316] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(961), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3175), 1, + sym_cell_path, + STATE(5231), 1, sym_comment, - STATE(5795), 1, - sym__flag, - STATE(5923), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8399), 3, - ts_builtin_sym_end, + STATE(5321), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(963), 6, sym__newline, anon_sym_SEMI, - [196931] = 11, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [187346] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4842), 1, - aux_sym_unquoted_token3, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(7994), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8512), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(6412), 1, anon_sym_DOLLAR, - ACTIONS(8514), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8516), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8518), 1, - aux_sym__immediate_decimal_token5, - STATE(5279), 1, - sym_comment, - STATE(6732), 1, - sym__immediate_decimal, - STATE(3439), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196966] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8506), 1, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8651), 1, anon_sym_DASH_DASH, - ACTIONS(8508), 1, - anon_sym_DASH, - ACTIONS(8520), 1, - anon_sym_as, - STATE(5280), 1, + ACTIONS(8653), 1, + anon_sym_DASH2, + STATE(5232), 1, sym_comment, - STATE(5287), 1, + STATE(5349), 1, aux_sym_ctrl_do_repeat1, - STATE(5795), 1, + STATE(5480), 1, + sym_val_variable, + STATE(6126), 1, sym__flag, - STATE(5923), 2, + STATE(6716), 1, + sym__variable_name, + STATE(6104), 2, sym_short_flag, sym_long_flag, - ACTIONS(8411), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [196997] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8522), 1, - sym_identifier, - ACTIONS(8525), 1, - anon_sym_GT, - ACTIONS(8527), 1, - anon_sym_DQUOTE, - ACTIONS(8533), 1, - sym_raw_string_begin, - STATE(5589), 1, - sym_val_string, - ACTIONS(8530), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5281), 2, - sym_comment, - aux_sym_collection_type_repeat1, - STATE(5598), 2, - sym__raw_str, - sym__str_double_quotes, - [197028] = 4, - ACTIONS(3), 1, + [187384] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5282), 1, + ACTIONS(8655), 1, + anon_sym_DOT, + ACTIONS(8657), 1, + aux_sym__immediate_decimal_token2, + STATE(5233), 1, sym_comment, - ACTIONS(1536), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1607), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1538), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1609), 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, - [197049] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_DOLLAR, - ACTIONS(6931), 1, - anon_sym_LPAREN2, - ACTIONS(6935), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6937), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6939), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6941), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7068), 1, - aux_sym_unquoted_token3, - STATE(4166), 1, - sym__immediate_decimal, - STATE(5283), 1, - sym_comment, - STATE(4485), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197084] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4237), 1, - anon_sym_DOLLAR, - ACTIONS(6931), 1, - anon_sym_LPAREN2, - ACTIONS(6955), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6957), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6959), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6961), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7068), 1, - aux_sym_unquoted_token3, - STATE(4688), 1, - sym__immediate_decimal, - STATE(5284), 1, - sym_comment, - STATE(4977), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197119] = 8, - ACTIONS(3), 1, + [187410] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8536), 1, + ACTIONS(1944), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, anon_sym_DOT, - STATE(5285), 1, + STATE(3517), 1, + sym_cell_path, + STATE(5234), 1, sym_comment, - STATE(5452), 1, + STATE(5321), 1, aux_sym_cell_path_repeat1, - STATE(5746), 1, + STATE(5504), 1, sym_path, - STATE(5814), 1, - sym_cell_path, - ACTIONS(1021), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1023), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [197148] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token2, - STATE(5286), 1, - sym_comment, - ACTIONS(1538), 3, + ACTIONS(1946), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1536), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [197171] = 9, - ACTIONS(249), 1, + anon_sym_RBRACE, + anon_sym_as, + [187440] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8506), 1, + ACTIONS(8583), 1, anon_sym_DASH_DASH, - ACTIONS(8508), 1, - anon_sym_DASH, - ACTIONS(8538), 1, + ACTIONS(8585), 1, + anon_sym_DASH2, + ACTIONS(8661), 1, anon_sym_as, - STATE(5274), 1, + STATE(5180), 1, aux_sym_ctrl_do_repeat1, - STATE(5287), 1, + STATE(5235), 1, sym_comment, - STATE(5795), 1, + STATE(5642), 1, sym__flag, - STATE(5923), 2, + STATE(5593), 2, sym_short_flag, sym_long_flag, - ACTIONS(8452), 3, - ts_builtin_sym_end, + ACTIONS(8659), 4, sym__newline, anon_sym_SEMI, - [197202] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187472] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5288), 1, + ACTIONS(8663), 1, + anon_sym_DOT, + ACTIONS(8665), 1, + aux_sym__immediate_decimal_token2, + STATE(5236), 1, sym_comment, - ACTIONS(1528), 4, - anon_sym_RBRACK, + ACTIONS(1607), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1530), 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1609), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [197223] = 5, - ACTIONS(249), 1, + [187498] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8540), 1, + ACTIONS(8339), 1, aux_sym__immediate_decimal_token2, - STATE(5289), 1, + STATE(5237), 1, sym_comment, - ACTIONS(1598), 3, + ACTIONS(1607), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 7, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1596), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [197246] = 7, - ACTIONS(249), 1, + [187522] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1027), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(5290), 1, - sym_comment, - STATE(5300), 1, - aux_sym_cell_path_repeat1, - STATE(5519), 1, - sym_path, - ACTIONS(1029), 6, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, + ACTIONS(1544), 1, + anon_sym_EQ_GT, + ACTIONS(3621), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [197273] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5560), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(5562), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5564), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8544), 1, - anon_sym_DOLLAR, - ACTIONS(8546), 1, + ACTIONS(6211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8548), 1, + ACTIONS(6213), 1, aux_sym__immediate_decimal_token5, - STATE(2993), 1, - sym__immediate_decimal, - STATE(5291), 1, + ACTIONS(6435), 1, + anon_sym_DOT, + STATE(5238), 1, sym_comment, - STATE(3105), 2, + STATE(6738), 1, + sym__immediate_decimal, + ACTIONS(6209), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197308] = 11, + [187558] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1574), 1, + ACTIONS(5410), 1, anon_sym_LPAREN2, - ACTIONS(1578), 1, + ACTIONS(5414), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1580), 1, + ACTIONS(5416), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1699), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(3702), 1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8285), 1, anon_sym_DOLLAR, - ACTIONS(8550), 1, + ACTIONS(8289), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8552), 1, + ACTIONS(8291), 1, aux_sym__immediate_decimal_token5, - STATE(384), 1, + STATE(2800), 1, sym__immediate_decimal, - STATE(5292), 1, + STATE(5239), 1, sym_comment, - STATE(495), 2, + STATE(2873), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197343] = 11, + [187593] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1646), 1, + ACTIONS(8139), 1, anon_sym_LPAREN2, - ACTIONS(1648), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1650), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1699), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8554), 1, + ACTIONS(8307), 1, anon_sym_DOLLAR, - ACTIONS(8556), 1, + ACTIONS(8309), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8311), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8313), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8558), 1, + ACTIONS(8315), 1, aux_sym__immediate_decimal_token5, - STATE(535), 1, - sym__immediate_decimal, - STATE(5293), 1, + ACTIONS(8667), 1, + aux_sym__unquoted_in_list_token3, + STATE(5240), 1, sym_comment, - STATE(636), 2, + STATE(6385), 1, + sym__immediate_decimal, + STATE(7333), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197378] = 10, - ACTIONS(249), 1, + [187628] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5584), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym_raw_string_begin, - ACTIONS(8560), 1, + ACTIONS(8669), 1, + anon_sym_DOT, + ACTIONS(8671), 1, + aux_sym__immediate_decimal_token2, + STATE(5241), 1, + sym_comment, + ACTIONS(1609), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1607), 5, sym_identifier, - ACTIONS(8562), 1, - anon_sym_GT, - STATE(5294), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [187653] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + anon_sym_DASH2, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + ACTIONS(8673), 1, + sym_filesize_unit, + ACTIONS(8675), 1, + sym_duration_unit, + ACTIONS(8677), 1, + aux_sym_unquoted_token2, + STATE(5242), 1, sym_comment, - STATE(5302), 1, - aux_sym_collection_type_repeat1, - STATE(5589), 1, - sym_val_string, - ACTIONS(5586), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5598), 2, - sym__raw_str, - sym__str_double_quotes, - [197411] = 6, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1721), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187684] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + ACTIONS(8651), 1, + anon_sym_DASH_DASH, + ACTIONS(8653), 1, + anon_sym_DASH2, + ACTIONS(8679), 1, + sym_identifier, + STATE(5243), 1, + sym_comment, + STATE(5258), 1, + aux_sym_ctrl_do_repeat1, + STATE(6126), 1, + sym__flag, + STATE(6930), 1, + sym__variable_name, + STATE(7151), 1, + sym_val_variable, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [187719] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8564), 1, - anon_sym_DOT, - ACTIONS(8566), 1, + ACTIONS(8681), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8683), 1, aux_sym__immediate_decimal_token2, - STATE(5295), 1, + STATE(5244), 1, sym_comment, - ACTIONS(1536), 3, + ACTIONS(1621), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1538), 5, + ACTIONS(1623), 5, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [197436] = 6, - ACTIONS(3), 1, + [187744] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8568), 1, + ACTIONS(8685), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8570), 1, + ACTIONS(8687), 1, aux_sym__immediate_decimal_token2, - STATE(5296), 1, + STATE(5245), 1, sym_comment, - ACTIONS(1703), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1705), 4, - anon_sym_LPAREN2, + ACTIONS(1623), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [197461] = 4, + ACTIONS(1621), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [187769] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5297), 1, + ACTIONS(8689), 1, + anon_sym_DOT, + STATE(5246), 1, sym_comment, - ACTIONS(1596), 4, + STATE(5477), 1, + aux_sym_cell_path_repeat1, + STATE(5631), 1, + sym_path, + STATE(5741), 1, + sym_cell_path, + ACTIONS(1769), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1598), 6, - anon_sym_LPAREN2, + ACTIONS(1771), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [197482] = 6, - ACTIONS(3), 1, + [187798] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8572), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8574), 1, + ACTIONS(8691), 1, + anon_sym_DOT, + ACTIONS(8693), 1, aux_sym__immediate_decimal_token2, - STATE(5298), 1, + STATE(5247), 1, sym_comment, - ACTIONS(1528), 3, - sym__newline, + ACTIONS(1607), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1530), 5, - sym__space, + ACTIONS(1609), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [197507] = 9, - ACTIONS(249), 1, + [187823] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4614), 1, + STATE(5248), 1, + sym_comment, + ACTIONS(1609), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1607), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(8576), 1, sym_filesize_unit, - ACTIONS(8578), 1, sym_duration_unit, - ACTIONS(8580), 1, aux_sym_unquoted_token2, - STATE(5299), 1, + [187844] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5249), 1, sym_comment, - ACTIONS(1628), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(1640), 2, + ACTIONS(1623), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(4616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [197538] = 6, - ACTIONS(249), 1, + ACTIONS(1621), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [187865] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1031), 1, - anon_sym_DASH, - ACTIONS(8582), 1, - anon_sym_DOT, - STATE(5519), 1, - sym_path, - STATE(5300), 2, + ACTIONS(978), 1, + anon_sym_DASH2, + ACTIONS(8695), 1, + anon_sym_QMARK2, + STATE(5250), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1033), 6, + ACTIONS(980), 8, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [197563] = 10, - ACTIONS(249), 1, + anon_sym_LBRACE, + anon_sym_DOT, + [187888] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5584), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym_raw_string_begin, - ACTIONS(8560), 1, - sym_identifier, - ACTIONS(8585), 1, - anon_sym_GT, - STATE(5301), 1, + ACTIONS(984), 1, + anon_sym_DASH2, + ACTIONS(8697), 1, + anon_sym_QMARK2, + STATE(5251), 1, sym_comment, - STATE(5306), 1, - aux_sym_collection_type_repeat1, - STATE(5589), 1, - sym_val_string, - ACTIONS(5586), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5598), 2, - sym__raw_str, - sym__str_double_quotes, - [197596] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5584), 1, - anon_sym_DQUOTE, - ACTIONS(5588), 1, - sym_raw_string_begin, - ACTIONS(8560), 1, + ACTIONS(986), 8, + anon_sym_EQ, sym_identifier, - ACTIONS(8587), 1, - anon_sym_GT, - STATE(5281), 1, - aux_sym_collection_type_repeat1, - STATE(5302), 1, - sym_comment, - STATE(5589), 1, - sym_val_string, - ACTIONS(5586), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5598), 2, - sym__raw_str, - sym__str_double_quotes, - [197629] = 4, - ACTIONS(3), 1, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + [187911] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5303), 1, + ACTIONS(8699), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8701), 1, + aux_sym__immediate_decimal_token2, + STATE(5252), 1, sym_comment, - ACTIONS(1711), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1621), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1713), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1623), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [197650] = 9, - ACTIONS(249), 1, + [187936] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8506), 1, - anon_sym_DASH_DASH, - ACTIONS(8508), 1, - anon_sym_DASH, - ACTIONS(8589), 1, - anon_sym_as, - STATE(5278), 1, - aux_sym_ctrl_do_repeat1, - STATE(5304), 1, - sym_comment, - STATE(5795), 1, - sym__flag, - STATE(5923), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8482), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [197681] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5486), 1, - anon_sym_LPAREN2, - ACTIONS(5490), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5492), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8160), 1, - anon_sym_DOLLAR, - ACTIONS(8164), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8166), 1, - aux_sym__immediate_decimal_token5, - STATE(2819), 1, - sym__immediate_decimal, - STATE(5305), 1, - sym_comment, - STATE(2878), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197716] = 10, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5584), 1, + ACTIONS(5663), 1, anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5667), 1, sym_raw_string_begin, - ACTIONS(8560), 1, + ACTIONS(8703), 1, sym_identifier, - ACTIONS(8591), 1, - anon_sym_GT, - STATE(5281), 1, - aux_sym_collection_type_repeat1, - STATE(5306), 1, + ACTIONS(8705), 1, + anon_sym_GT2, + STATE(5253), 1, sym_comment, - STATE(5589), 1, + STATE(5301), 1, + aux_sym_collection_type_repeat1, + STATE(5491), 1, sym_val_string, - ACTIONS(5586), 2, + ACTIONS(5665), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5598), 2, + STATE(5556), 2, sym__raw_str, sym__str_double_quotes, - [197749] = 8, - ACTIONS(249), 1, + [187969] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1664), 1, + STATE(5254), 1, + sym_comment, + ACTIONS(1675), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1673), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(6216), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [187990] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6487), 1, anon_sym_DOT, - STATE(1681), 1, + STATE(3175), 1, sym_cell_path, - STATE(3165), 1, + STATE(3451), 1, aux_sym_cell_path_repeat1, - STATE(3337), 1, + STATE(3559), 1, sym_path, - STATE(5307), 1, + STATE(5255), 1, sym_comment, - ACTIONS(1668), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(961), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(963), 4, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [197778] = 8, - ACTIONS(249), 1, + [188019] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1670), 1, - anon_sym_DOT_DOT2, - ACTIONS(6216), 1, - anon_sym_DOT, - STATE(1635), 1, - sym_cell_path, - STATE(3165), 1, - aux_sym_cell_path_repeat1, - STATE(3337), 1, - sym_path, - STATE(5308), 1, + STATE(5256), 1, sym_comment, - ACTIONS(1672), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1765), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [197807] = 11, - ACTIONS(249), 1, + ACTIONS(1763), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [188040] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6456), 1, + ACTIONS(5461), 1, + anon_sym_DOLLAR, + ACTIONS(5463), 1, + anon_sym_LPAREN2, + ACTIONS(5465), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5467), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5469), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5566), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8707), 1, + aux_sym__immediate_decimal_token1, + STATE(2900), 1, + sym__immediate_decimal, + STATE(5257), 1, + sym_comment, + STATE(3081), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188075] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6349), 1, anon_sym_DOLLAR, - ACTIONS(8376), 1, + ACTIONS(8651), 1, anon_sym_DASH_DASH, - ACTIONS(8378), 1, - anon_sym_DASH, - ACTIONS(8593), 1, + ACTIONS(8653), 1, + anon_sym_DASH2, + ACTIONS(8679), 1, sym_identifier, - STATE(5309), 1, + STATE(5258), 1, sym_comment, - STATE(5508), 1, + STATE(5609), 1, aux_sym_ctrl_do_repeat1, - STATE(6018), 1, + STATE(6126), 1, sym__flag, - STATE(7102), 1, + STATE(7151), 1, sym_val_variable, - STATE(7160), 1, + STATE(7166), 1, sym__variable_name, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [197842] = 11, + [188110] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5466), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token3, + ACTIONS(5200), 1, anon_sym_DOLLAR, - ACTIONS(5468), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(5470), 1, + ACTIONS(8075), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8709), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5472), 1, + ACTIONS(8711), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5474), 1, + ACTIONS(8713), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5528), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8595), 1, - aux_sym__immediate_decimal_token1, - STATE(2883), 1, - sym__immediate_decimal, - STATE(5310), 1, + STATE(5259), 1, sym_comment, - STATE(2999), 2, + STATE(5836), 1, + sym__immediate_decimal, + STATE(5970), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197877] = 11, + [188145] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(3291), 1, + anon_sym_DOLLAR, + ACTIONS(4864), 1, + aux_sym_unquoted_token3, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(8054), 1, + ACTIONS(8327), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8580), 1, - aux_sym_unquoted_token3, - ACTIONS(8597), 1, - anon_sym_DOLLAR, - ACTIONS(8599), 1, + ACTIONS(8715), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8601), 1, + ACTIONS(8717), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8603), 1, + ACTIONS(8719), 1, aux_sym__immediate_decimal_token5, - STATE(5311), 1, + STATE(5260), 1, sym_comment, - STATE(5826), 1, + STATE(6951), 1, sym__immediate_decimal, - STATE(5973), 2, + STATE(3439), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197912] = 11, + [188180] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(5499), 1, anon_sym_LPAREN2, - ACTIONS(8144), 1, + ACTIONS(5501), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5503), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8512), 1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8721), 1, anon_sym_DOLLAR, - ACTIONS(8580), 1, - aux_sym_unquoted_token3, - ACTIONS(8605), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8607), 1, + ACTIONS(8723), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8609), 1, + ACTIONS(8725), 1, aux_sym__immediate_decimal_token5, - STATE(5312), 1, - sym_comment, - STATE(6947), 1, + STATE(3040), 1, sym__immediate_decimal, - STATE(3439), 2, + STATE(5261), 1, + sym_comment, + STATE(3131), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197947] = 6, - ACTIONS(3), 1, + [188215] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8611), 1, - anon_sym_DOT, - ACTIONS(8613), 1, - aux_sym__immediate_decimal_token2, - STATE(5313), 1, - sym_comment, - ACTIONS(1715), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4708), 1, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 4, - anon_sym_LPAREN2, + ACTIONS(8677), 1, + aux_sym_unquoted_token2, + ACTIONS(8727), 1, + sym_filesize_unit, + ACTIONS(8729), 1, + sym_duration_unit, + STATE(5262), 1, + sym_comment, + ACTIONS(1709), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(1721), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [197972] = 11, + [188246] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(1810), 1, anon_sym_DOLLAR, - ACTIONS(6893), 1, + ACTIONS(7049), 1, anon_sym_LPAREN2, - ACTIONS(6897), 1, + ACTIONS(7053), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6899), 1, + ACTIONS(7055), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6901), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6903), 1, + ACTIONS(7059), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7021), 1, + ACTIONS(7157), 1, aux_sym_unquoted_token3, - STATE(4131), 1, + STATE(4127), 1, sym__immediate_decimal, - STATE(5314), 1, + STATE(5263), 1, sym_comment, - STATE(4286), 2, + STATE(4209), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198007] = 11, + [188281] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4273), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(6893), 1, + ACTIONS(7049), 1, anon_sym_LPAREN2, - ACTIONS(6909), 1, + ACTIONS(7101), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6911), 1, + ACTIONS(7103), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6913), 1, + ACTIONS(7105), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6915), 1, + ACTIONS(7107), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7021), 1, + ACTIONS(7157), 1, aux_sym_unquoted_token3, - STATE(4454), 1, + STATE(4311), 1, sym__immediate_decimal, - STATE(5315), 1, + STATE(5264), 1, sym_comment, - STATE(4708), 2, + STATE(4676), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198042] = 4, - ACTIONS(249), 1, + [188316] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5316), 1, + ACTIONS(8731), 1, + anon_sym_DASH_DASH, + ACTIONS(8733), 1, + anon_sym_DASH2, + ACTIONS(8735), 1, + anon_sym_as, + STATE(5265), 1, sym_comment, - ACTIONS(1538), 4, - anon_sym_DOLLAR, + STATE(5266), 1, + aux_sym_ctrl_do_repeat1, + STATE(5949), 1, + sym__flag, + STATE(5994), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8593), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [188347] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8737), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1536), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [198063] = 6, - ACTIONS(249), 1, + ACTIONS(8740), 1, + anon_sym_DASH2, + STATE(5949), 1, + sym__flag, + STATE(5266), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(5994), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8567), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + [188374] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8615), 1, - anon_sym_DOT, - ACTIONS(8617), 1, - aux_sym__immediate_decimal_token2, - STATE(5317), 1, + ACTIONS(8731), 1, + anon_sym_DASH_DASH, + ACTIONS(8733), 1, + anon_sym_DASH2, + ACTIONS(8743), 1, + anon_sym_as, + STATE(5267), 1, sym_comment, - ACTIONS(1538), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1536), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [198088] = 11, + STATE(5286), 1, + aux_sym_ctrl_do_repeat1, + STATE(5949), 1, + sym__flag, + STATE(5994), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8609), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [188405] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1512), 1, + ACTIONS(1532), 1, anon_sym_DOLLAR, - ACTIONS(1514), 1, + ACTIONS(1534), 1, anon_sym_LPAREN2, - ACTIONS(1518), 1, + ACTIONS(1538), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1520), 1, + ACTIONS(1540), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1522), 1, + ACTIONS(1542), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1642), 1, + ACTIONS(1723), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8619), 1, + ACTIONS(8745), 1, aux_sym__immediate_decimal_token1, - STATE(300), 1, + STATE(385), 1, sym__immediate_decimal, - STATE(5318), 1, + STATE(5268), 1, sym_comment, - STATE(446), 2, + STATE(510), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198123] = 11, + [188440] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR, - ACTIONS(1548), 1, + ACTIONS(1569), 1, anon_sym_LPAREN2, - ACTIONS(1550), 1, + ACTIONS(1571), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1552), 1, + ACTIONS(1573), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1554), 1, + ACTIONS(1575), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1642), 1, + ACTIONS(1723), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8621), 1, + ACTIONS(8747), 1, aux_sym__immediate_decimal_token1, - STATE(497), 1, + STATE(544), 1, sym__immediate_decimal, - STATE(5319), 1, + STATE(5269), 1, sym_comment, - STATE(620), 2, + STATE(622), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198158] = 10, - ACTIONS(249), 1, + [188475] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5584), 1, + ACTIONS(5663), 1, anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5667), 1, sym_raw_string_begin, - ACTIONS(8560), 1, + ACTIONS(8703), 1, sym_identifier, - ACTIONS(8623), 1, - anon_sym_GT, - STATE(5320), 1, + ACTIONS(8749), 1, + anon_sym_GT2, + STATE(5270), 1, sym_comment, - STATE(5324), 1, + STATE(5274), 1, aux_sym_collection_type_repeat1, - STATE(5589), 1, + STATE(5491), 1, sym_val_string, - ACTIONS(5586), 2, + ACTIONS(5665), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5598), 2, + STATE(5556), 2, sym__raw_str, sym__str_double_quotes, - [198191] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8625), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8627), 1, - aux_sym__immediate_decimal_token2, - STATE(5321), 1, - sym_comment, - ACTIONS(1530), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1528), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [198216] = 4, - ACTIONS(249), 1, + [188508] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8286), 1, - anon_sym_DASH, - STATE(5322), 1, + ACTIONS(1294), 1, + anon_sym_DASH2, + ACTIONS(8751), 1, + sym__newline, + STATE(5271), 2, sym_comment, - ACTIONS(5748), 9, + aux_sym_shebang_repeat1, + ACTIONS(1296), 7, sym_identifier, - sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198237] = 8, + [188531] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8536), 1, + ACTIONS(2864), 1, + anon_sym_DOLLAR, + ACTIONS(4033), 1, + anon_sym_LPAREN2, + ACTIONS(4037), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4039), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4674), 1, + aux_sym_unquoted_token3, + ACTIONS(8754), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8756), 1, + aux_sym__immediate_decimal_token5, + STATE(1468), 1, + sym__immediate_decimal, + STATE(5272), 1, + sym_comment, + STATE(1620), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188566] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2090), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, anon_sym_DOT, - STATE(5323), 1, + STATE(5273), 1, sym_comment, - STATE(5452), 1, + STATE(5410), 1, aux_sym_cell_path_repeat1, - STATE(5746), 1, + STATE(5625), 1, sym_path, - STATE(5794), 1, + STATE(5827), 1, sym_cell_path, - ACTIONS(1664), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1668), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [198266] = 10, - ACTIONS(249), 1, + ACTIONS(2092), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [188595] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5584), 1, + ACTIONS(5663), 1, anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5667), 1, sym_raw_string_begin, - ACTIONS(8560), 1, + ACTIONS(8703), 1, sym_identifier, - ACTIONS(8629), 1, - anon_sym_GT, - STATE(5281), 1, - aux_sym_collection_type_repeat1, - STATE(5324), 1, + ACTIONS(8760), 1, + anon_sym_GT2, + STATE(5274), 1, sym_comment, - STATE(5589), 1, + STATE(5346), 1, + aux_sym_collection_type_repeat1, + STATE(5491), 1, sym_val_string, - ACTIONS(5586), 2, + ACTIONS(5665), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5598), 2, + STATE(5556), 2, sym__raw_str, sym__str_double_quotes, - [198299] = 11, + [188628] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3834), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR, - ACTIONS(6229), 1, + ACTIONS(4221), 1, anon_sym_LPAREN2, - ACTIONS(8316), 1, + ACTIONS(4223), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4225), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8580), 1, + ACTIONS(4674), 1, aux_sym_unquoted_token3, - ACTIONS(8631), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, + ACTIONS(8762), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, + ACTIONS(8764), 1, aux_sym__immediate_decimal_token5, - STATE(5325), 1, - sym_comment, - STATE(6178), 1, + STATE(1729), 1, sym__immediate_decimal, - STATE(6111), 2, + STATE(5275), 1, + sym_comment, + STATE(1892), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198334] = 11, + [188663] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8689), 1, + anon_sym_DOT, + STATE(5276), 1, + sym_comment, + STATE(5477), 1, + aux_sym_cell_path_repeat1, + STATE(5631), 1, + sym_path, + STATE(5854), 1, + sym_cell_path, + ACTIONS(1735), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1737), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [188692] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6412), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8651), 1, + anon_sym_DASH_DASH, + ACTIONS(8653), 1, + anon_sym_DASH2, + STATE(5277), 1, + sym_comment, + STATE(5349), 1, + aux_sym_ctrl_do_repeat1, + STATE(5480), 1, + sym_val_variable, + STATE(6126), 1, + sym__flag, + STATE(6716), 1, + sym__variable_name, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [188727] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4020), 1, + ACTIONS(3573), 1, anon_sym_DOLLAR, - ACTIONS(6229), 1, + ACTIONS(7188), 1, anon_sym_LPAREN2, - ACTIONS(8442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8580), 1, - aux_sym_unquoted_token3, - ACTIONS(8637), 1, + ACTIONS(7192), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, + ACTIONS(7194), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7297), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8766), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, + ACTIONS(8768), 1, aux_sym__immediate_decimal_token5, - STATE(5326), 1, + STATE(4266), 1, + sym__immediate_decimal, + STATE(5278), 1, sym_comment, - STATE(7581), 1, + STATE(4589), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188762] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7188), 1, + anon_sym_LPAREN2, + ACTIONS(7244), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7246), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7297), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8770), 1, + anon_sym_DOLLAR, + ACTIONS(8772), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8774), 1, + aux_sym__immediate_decimal_token5, + STATE(4700), 1, sym__immediate_decimal, - STATE(3439), 2, + STATE(5279), 1, + sym_comment, + STATE(5047), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198369] = 11, + [188797] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8731), 1, + anon_sym_DASH_DASH, + ACTIONS(8733), 1, + anon_sym_DASH2, + ACTIONS(8776), 1, + anon_sym_as, + STATE(5265), 1, + aux_sym_ctrl_do_repeat1, + STATE(5280), 1, + sym_comment, + STATE(5949), 1, + sym__flag, + STATE(5994), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8581), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [188828] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1925), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5281), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5958), 1, + sym_cell_path, + ACTIONS(1927), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [188857] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3044), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token3, + ACTIONS(5200), 1, anon_sym_DOLLAR, - ACTIONS(7974), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(7978), 1, + ACTIONS(8040), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7980), 1, + ACTIONS(8778), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7982), 1, + ACTIONS(8780), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7984), 1, + ACTIONS(8782), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8643), 1, - aux_sym__unquoted_in_list_token3, - STATE(5327), 1, + STATE(5282), 1, sym_comment, - STATE(5681), 1, + STATE(5632), 1, sym__immediate_decimal, - STATE(5813), 2, + STATE(5970), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198404] = 11, + [188892] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(8174), 1, + ACTIONS(3291), 1, anon_sym_DOLLAR, - ACTIONS(8176), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token3, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8178), 1, + ACTIONS(8784), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8180), 1, + ACTIONS(8786), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8182), 1, + ACTIONS(8788), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8643), 1, - aux_sym__unquoted_in_list_token3, - STATE(5328), 1, + STATE(5283), 1, sym_comment, - STATE(6342), 1, + STATE(6697), 1, sym__immediate_decimal, - STATE(6969), 2, + STATE(3439), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198439] = 11, - ACTIONS(249), 1, + [188927] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(8645), 1, + ACTIONS(2082), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5284), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5778), 1, + sym_cell_path, + ACTIONS(2084), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - ACTIONS(8647), 1, - anon_sym_DASH, - STATE(5329), 1, + anon_sym_as, + [188956] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1933), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5285), 1, sym_comment, - STATE(5416), 1, - sym_val_variable, - STATE(5964), 1, - sym__variable_name, - STATE(6750), 1, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5971), 1, + sym_cell_path, + ACTIONS(1935), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [188985] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8731), 1, + anon_sym_DASH_DASH, + ACTIONS(8733), 1, + anon_sym_DASH2, + ACTIONS(8790), 1, + anon_sym_as, + STATE(5266), 1, + aux_sym_ctrl_do_repeat1, + STATE(5286), 1, + sym_comment, + STATE(5949), 1, sym__flag, - STATE(6083), 2, + STATE(5994), 2, sym_short_flag, sym_long_flag, - [198474] = 11, + ACTIONS(8659), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [189016] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4213), 1, + anon_sym_DOLLAR, + ACTIONS(4864), 1, + aux_sym_unquoted_token3, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8792), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8794), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8796), 1, + aux_sym__immediate_decimal_token5, + STATE(5287), 1, + sym_comment, + STATE(7451), 1, + sym__immediate_decimal, + STATE(3439), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189051] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2649), 1, + ACTIONS(2621), 1, anon_sym_DOLLAR, - ACTIONS(3948), 1, + ACTIONS(4021), 1, anon_sym_LPAREN2, - ACTIONS(3952), 1, + ACTIONS(4025), 1, aux_sym__immediate_decimal_token3, - ACTIONS(3954), 1, + ACTIONS(4027), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4443), 1, + ACTIONS(4259), 1, aux_sym_unquoted_token3, - ACTIONS(8649), 1, + ACTIONS(8798), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8651), 1, + ACTIONS(8800), 1, aux_sym__immediate_decimal_token5, - STATE(1271), 1, + STATE(1448), 1, sym__immediate_decimal, - STATE(5330), 1, + STATE(5288), 1, sym_comment, - STATE(1336), 2, + STATE(1543), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198509] = 11, + [189086] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, + ACTIONS(4055), 1, anon_sym_DOLLAR, - ACTIONS(3972), 1, + ACTIONS(4057), 1, anon_sym_LPAREN2, - ACTIONS(3974), 1, + ACTIONS(4059), 1, aux_sym__immediate_decimal_token3, - ACTIONS(3976), 1, + ACTIONS(4061), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4443), 1, + ACTIONS(4259), 1, aux_sym_unquoted_token3, - ACTIONS(8653), 1, + ACTIONS(8802), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8655), 1, + ACTIONS(8804), 1, aux_sym__immediate_decimal_token5, - STATE(1457), 1, + STATE(1622), 1, sym__immediate_decimal, - STATE(5331), 1, + STATE(5289), 1, sym_comment, - STATE(1669), 2, + STATE(1832), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198544] = 10, - ACTIONS(249), 1, + [189121] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5584), 1, + ACTIONS(5663), 1, anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5667), 1, sym_raw_string_begin, - ACTIONS(8560), 1, + ACTIONS(8703), 1, sym_identifier, - ACTIONS(8657), 1, - anon_sym_GT, - STATE(5332), 1, + ACTIONS(8806), 1, + anon_sym_GT2, + STATE(5290), 1, sym_comment, - STATE(5334), 1, + STATE(5291), 1, aux_sym_collection_type_repeat1, - STATE(5589), 1, + STATE(5491), 1, sym_val_string, - ACTIONS(5586), 2, + ACTIONS(5665), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5598), 2, + STATE(5556), 2, sym__raw_str, sym__str_double_quotes, - [198577] = 4, - ACTIONS(249), 1, + [189154] = 10, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5333), 1, + ACTIONS(5663), 1, + anon_sym_DQUOTE, + ACTIONS(5667), 1, + sym_raw_string_begin, + ACTIONS(8703), 1, + sym_identifier, + ACTIONS(8808), 1, + anon_sym_GT2, + STATE(5291), 1, sym_comment, - ACTIONS(1530), 4, - anon_sym_DOLLAR, + STATE(5346), 1, + aux_sym_collection_type_repeat1, + STATE(5491), 1, + sym_val_string, + ACTIONS(5665), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5556), 2, + sym__raw_str, + sym__str_double_quotes, + [189187] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1944), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5292), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5988), 1, + sym_cell_path, + ACTIONS(1946), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189216] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1948), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5293), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5880), 1, + sym_cell_path, + ACTIONS(1950), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189245] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1952), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5294), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5978), 1, + sym_cell_path, + ACTIONS(1954), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189274] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1960), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5295), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5907), 1, + sym_cell_path, + ACTIONS(1962), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189303] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1968), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5296), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5914), 1, + sym_cell_path, + ACTIONS(1970), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189332] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1972), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5297), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5739), 1, + sym_cell_path, + ACTIONS(1974), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189361] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1984), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5298), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5753), 1, + sym_cell_path, + ACTIONS(1986), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, + anon_sym_as, + [189390] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8810), 1, + aux_sym__immediate_decimal_token2, + STATE(5299), 1, + sym_comment, + ACTIONS(1673), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1675), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1528), 6, - sym_identifier, - anon_sym_DASH, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [189413] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + anon_sym_RBRACK, + ACTIONS(1721), 1, + sym__entry_separator, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(8667), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8812), 1, anon_sym_DOT_DOT2, + ACTIONS(8816), 1, sym_filesize_unit, + ACTIONS(8818), 1, sym_duration_unit, - aux_sym_unquoted_token2, - [198598] = 10, - ACTIONS(249), 1, + STATE(5300), 1, + sym_comment, + STATE(7456), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8814), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [189448] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5584), 1, + ACTIONS(5663), 1, anon_sym_DQUOTE, - ACTIONS(5588), 1, + ACTIONS(5667), 1, sym_raw_string_begin, - ACTIONS(8560), 1, + ACTIONS(8703), 1, sym_identifier, - ACTIONS(8659), 1, - anon_sym_GT, - STATE(5281), 1, - aux_sym_collection_type_repeat1, - STATE(5334), 1, + ACTIONS(8820), 1, + anon_sym_GT2, + STATE(5301), 1, sym_comment, - STATE(5589), 1, + STATE(5346), 1, + aux_sym_collection_type_repeat1, + STATE(5491), 1, sym_val_string, - ACTIONS(5586), 2, + ACTIONS(5665), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5598), 2, + STATE(5556), 2, sym__raw_str, sym__str_double_quotes, - [198631] = 11, + [189481] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(961), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5302), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5886), 1, + sym_cell_path, + ACTIONS(963), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189510] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3516), 1, + ACTIONS(3517), 1, anon_sym_DOLLAR, - ACTIONS(6446), 1, + ACTIONS(4900), 1, + aux_sym_unquoted_token3, + ACTIONS(6335), 1, anon_sym_LPAREN2, - ACTIONS(6875), 1, + ACTIONS(7037), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6985), 1, - aux_sym_unquoted_token3, - ACTIONS(8661), 1, + ACTIONS(8822), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8663), 1, + ACTIONS(8824), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8665), 1, + ACTIONS(8826), 1, aux_sym__immediate_decimal_token5, - STATE(4099), 1, + STATE(4077), 1, sym__immediate_decimal, - STATE(5335), 1, + STATE(5303), 1, sym_comment, - STATE(4270), 2, + STATE(3534), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198666] = 11, + [189545] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4397), 1, + ACTIONS(4900), 1, + aux_sym_unquoted_token3, + ACTIONS(5858), 1, anon_sym_DOLLAR, - ACTIONS(6446), 1, + ACTIONS(6335), 1, anon_sym_LPAREN2, - ACTIONS(6887), 1, + ACTIONS(7043), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6985), 1, - aux_sym_unquoted_token3, - ACTIONS(8667), 1, + ACTIONS(8828), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8669), 1, + ACTIONS(8830), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8671), 1, + ACTIONS(8832), 1, aux_sym__immediate_decimal_token5, - STATE(4376), 1, + STATE(4213), 1, sym__immediate_decimal, - STATE(5336), 1, + STATE(5304), 1, sym_comment, - STATE(3740), 2, + STATE(3741), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198701] = 11, + [189580] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3466), 1, + ACTIONS(3491), 1, anon_sym_DOLLAR, - ACTIONS(6229), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token3, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6851), 1, + ACTIONS(7023), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6929), 1, - aux_sym_unquoted_token3, - ACTIONS(8673), 1, + ACTIONS(8834), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8675), 1, + ACTIONS(8836), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8677), 1, + ACTIONS(8838), 1, aux_sym__immediate_decimal_token5, - STATE(4015), 1, + STATE(4059), 1, sym__immediate_decimal, - STATE(5337), 1, + STATE(5305), 1, sym_comment, - STATE(3536), 2, + STATE(3519), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198736] = 11, + [189615] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4153), 1, + ACTIONS(4231), 1, anon_sym_DOLLAR, - ACTIONS(6229), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token3, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6865), 1, + ACTIONS(7029), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6929), 1, - aux_sym_unquoted_token3, - ACTIONS(8679), 1, + ACTIONS(8840), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8681), 1, + ACTIONS(8842), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8683), 1, + ACTIONS(8844), 1, aux_sym__immediate_decimal_token5, - STATE(4159), 1, + STATE(4168), 1, sym__immediate_decimal, - STATE(5338), 1, + STATE(5306), 1, sym_comment, STATE(3439), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198771] = 11, - ACTIONS(3), 1, + [189650] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_RBRACK, - ACTIONS(1640), 1, - sym__entry_separator, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(8643), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8685), 1, - anon_sym_DOT_DOT2, - ACTIONS(8689), 1, - sym_filesize_unit, - ACTIONS(8691), 1, - sym_duration_unit, - STATE(5339), 1, + ACTIONS(1988), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5307), 1, sym_comment, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8687), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198806] = 4, - ACTIONS(249), 1, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5917), 1, + sym_cell_path, + ACTIONS(1990), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189679] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5340), 1, + ACTIONS(1992), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5308), 1, sym_comment, - ACTIONS(1536), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 7, - anon_sym_DOLLAR, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5922), 1, + sym_cell_path, + ACTIONS(1994), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198827] = 8, + anon_sym_as, + [189708] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1996), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5309), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5955), 1, + sym_cell_path, + ACTIONS(1998), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189737] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2000), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5310), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5965), 1, + sym_cell_path, + ACTIONS(2002), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189766] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2004), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5311), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5756), 1, + sym_cell_path, + ACTIONS(2006), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189795] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2068), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5312), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5779), 1, + sym_cell_path, + ACTIONS(2070), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189824] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2072), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5313), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5781), 1, + sym_cell_path, + ACTIONS(2074), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189853] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8536), 1, + ACTIONS(8689), 1, anon_sym_DOT, - STATE(5341), 1, + STATE(5314), 1, sym_comment, - STATE(5452), 1, + STATE(5477), 1, aux_sym_cell_path_repeat1, - STATE(5746), 1, + STATE(5631), 1, sym_path, - STATE(5926), 1, + STATE(5832), 1, sym_cell_path, - ACTIONS(1670), 3, + ACTIONS(961), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(1672), 3, + ACTIONS(963), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [198856] = 4, - ACTIONS(249), 1, + [189882] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5342), 1, + ACTIONS(1907), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5315), 1, sym_comment, - ACTIONS(1528), 3, - anon_sym_DASH, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5824), 1, + sym_cell_path, + ACTIONS(1911), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [189911] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5316), 1, + sym_comment, + ACTIONS(1607), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1530), 7, + ACTIONS(1609), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -394261,33 +395984,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [198877] = 4, - ACTIONS(249), 1, + [189932] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5343), 1, + ACTIONS(2012), 1, + anon_sym_DOLLAR, + ACTIONS(7079), 1, + anon_sym_LPAREN2, + ACTIONS(7083), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7085), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7087), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7089), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7218), 1, + aux_sym_unquoted_token3, + STATE(4140), 1, + sym__immediate_decimal, + STATE(5317), 1, sym_comment, - ACTIONS(1598), 4, + STATE(4380), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189967] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4305), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1596), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [198898] = 4, - ACTIONS(249), 1, + ACTIONS(7079), 1, + anon_sym_LPAREN2, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7119), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7121), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7123), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7218), 1, + aux_sym_unquoted_token3, + STATE(4542), 1, + sym__immediate_decimal, + STATE(5318), 1, + sym_comment, + STATE(4813), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190002] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5344), 1, + STATE(5319), 1, sym_comment, - ACTIONS(1596), 3, - anon_sym_DASH, + ACTIONS(1621), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1598), 7, + ACTIONS(1623), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -394295,40 +396049,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [198919] = 11, - ACTIONS(249), 1, + [190023] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(8376), 1, - anon_sym_DASH_DASH, - ACTIONS(8378), 1, - anon_sym_DASH, - STATE(5345), 1, + ACTIONS(8846), 1, + anon_sym_DOT, + ACTIONS(8848), 1, + aux_sym__immediate_decimal_token2, + STATE(5320), 1, sym_comment, - STATE(5416), 1, - sym_val_variable, - STATE(5508), 1, - aux_sym_ctrl_do_repeat1, - STATE(6018), 1, - sym__flag, - STATE(6746), 1, - sym__variable_name, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [198954] = 4, - ACTIONS(249), 1, + 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, + [190048] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5346), 1, + ACTIONS(967), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(5321), 1, sym_comment, - ACTIONS(1711), 3, - anon_sym_DASH, + STATE(5326), 1, + aux_sym_cell_path_repeat1, + STATE(5504), 1, + sym_path, + ACTIONS(969), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [190075] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5322), 1, + sym_comment, + ACTIONS(1673), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1713), 7, + ACTIONS(1675), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -394336,142 +396105,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [198975] = 4, - ACTIONS(249), 1, + [190096] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5347), 1, + ACTIONS(1913), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5323), 1, sym_comment, - ACTIONS(1713), 4, - anon_sym_DOLLAR, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5834), 1, + sym_cell_path, + ACTIONS(1915), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [198996] = 11, - ACTIONS(249), 1, + anon_sym_as, + [190125] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3294), 1, + ACTIONS(3365), 1, aux_sym_record_entry_token1, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - ACTIONS(8374), 1, + ACTIONS(8649), 1, sym_identifier, - ACTIONS(8645), 1, + ACTIONS(8850), 1, + anon_sym_DOLLAR, + ACTIONS(8852), 1, anon_sym_DASH_DASH, - ACTIONS(8647), 1, - anon_sym_DASH, - STATE(5348), 1, + ACTIONS(8854), 1, + anon_sym_DASH2, + STATE(5324), 1, sym_comment, - STATE(5416), 1, + STATE(5480), 1, sym_val_variable, STATE(5964), 1, sym__variable_name, - STATE(6750), 1, + STATE(6744), 1, sym__flag, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [199031] = 5, - ACTIONS(249), 1, + [190160] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8372), 1, - aux_sym__immediate_decimal_token2, - STATE(5349), 1, + ACTIONS(1976), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5325), 1, + sym_comment, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5831), 1, + sym_cell_path, + ACTIONS(1978), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [190189] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(971), 1, + anon_sym_DASH2, + ACTIONS(8856), 1, + anon_sym_DOT, + STATE(5504), 1, + sym_path, + STATE(5326), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(973), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [190214] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5327), 1, sym_comment, - ACTIONS(1536), 2, + ACTIONS(1763), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1538), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1765), 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, - [199054] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1349), 1, - anon_sym_DASH, - ACTIONS(8693), 1, - sym__newline, - STATE(5350), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1351), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [199077] = 11, + [190235] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3044), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR, - ACTIONS(7974), 1, + ACTIONS(8139), 1, anon_sym_LPAREN2, - ACTIONS(8092), 1, + ACTIONS(8143), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8094), 1, + ACTIONS(8145), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8096), 1, + ACTIONS(8147), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8098), 1, + ACTIONS(8149), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8696), 1, + ACTIONS(8859), 1, aux_sym__unquoted_in_record_token3, - STATE(5351), 1, + STATE(5328), 1, sym_comment, - STATE(5713), 1, + STATE(5683), 1, sym__immediate_decimal, - STATE(5813), 2, + STATE(5957), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199112] = 11, + [190270] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7974), 1, + ACTIONS(8139), 1, anon_sym_LPAREN2, - ACTIONS(8174), 1, + ACTIONS(8307), 1, anon_sym_DOLLAR, - ACTIONS(8210), 1, + ACTIONS(8373), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8212), 1, + ACTIONS(8375), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8214), 1, + ACTIONS(8377), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8216), 1, + ACTIONS(8379), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8696), 1, + ACTIONS(8859), 1, aux_sym__unquoted_in_record_token3, - STATE(5352), 1, + STATE(5329), 1, sym_comment, - STATE(6211), 1, + STATE(6658), 1, sym__immediate_decimal, - STATE(6969), 2, + STATE(7333), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199147] = 5, - ACTIONS(249), 1, + [190305] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1595), 1, + anon_sym_LPAREN2, + ACTIONS(1599), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1601), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1781), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(3765), 1, + anon_sym_DOLLAR, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8863), 1, + aux_sym__immediate_decimal_token5, + STATE(406), 1, + sym__immediate_decimal, + STATE(5330), 1, + sym_comment, + STATE(530), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190340] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1681), 1, + anon_sym_LPAREN2, + ACTIONS(1683), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1685), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1781), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8865), 1, + anon_sym_DOLLAR, + ACTIONS(8867), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8869), 1, + aux_sym__immediate_decimal_token5, + STATE(583), 1, + sym__immediate_decimal, + STATE(5331), 1, + sym_comment, + STATE(757), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190375] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5663), 1, + anon_sym_DQUOTE, + ACTIONS(5667), 1, + sym_raw_string_begin, + ACTIONS(8703), 1, + sym_identifier, + ACTIONS(8871), 1, + anon_sym_GT2, + STATE(5332), 1, + sym_comment, + STATE(5345), 1, + aux_sym_collection_type_repeat1, + STATE(5491), 1, + sym_val_string, + ACTIONS(5665), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5556), 2, + sym__raw_str, + sym__str_double_quotes, + [190408] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8698), 1, + ACTIONS(8657), 1, aux_sym__immediate_decimal_token2, - STATE(5353), 1, + STATE(5333), 1, sym_comment, - ACTIONS(1596), 2, + ACTIONS(1607), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1598), 7, + ACTIONS(1609), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -394479,44635 +396344,43882 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [199170] = 9, - ACTIONS(249), 1, + [190431] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - ACTIONS(4614), 1, - anon_sym_DOT_DOT2, - ACTIONS(8580), 1, - aux_sym_unquoted_token2, - ACTIONS(8700), 1, - sym_filesize_unit, - ACTIONS(8702), 1, - sym_duration_unit, - STATE(5354), 1, + STATE(5334), 1, sym_comment, - ACTIONS(4616), 2, + ACTIONS(1763), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1765), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [199201] = 11, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [190452] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1628), 1, + STATE(5335), 1, + sym_comment, + ACTIONS(1621), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1630), 1, - anon_sym_LPAREN2, - ACTIONS(1640), 1, - sym__entry_separator, - ACTIONS(8696), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8704), 1, anon_sym_DOT_DOT2, - ACTIONS(8708), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1623), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(8710), 1, sym_duration_unit, - STATE(5355), 1, + sym__entry_separator, + [190473] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8873), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8875), 1, + aux_sym__immediate_decimal_token2, + STATE(5336), 1, sym_comment, - STATE(7435), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8706), 2, + ACTIONS(1739), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [199236] = 11, - ACTIONS(3), 1, + sym__entry_separator, + [190498] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2884), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8850), 1, anon_sym_DOLLAR, - ACTIONS(3994), 1, - anon_sym_LPAREN2, - ACTIONS(3998), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4000), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4485), 1, - aux_sym_unquoted_token3, - ACTIONS(8712), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8714), 1, - aux_sym__immediate_decimal_token5, - STATE(1300), 1, - sym__immediate_decimal, - STATE(5356), 1, + ACTIONS(8852), 1, + anon_sym_DASH_DASH, + ACTIONS(8854), 1, + anon_sym_DASH2, + STATE(5337), 1, sym_comment, - STATE(1410), 2, - sym__expr_parenthesized_immediate, + STATE(5480), 1, sym_val_variable, - [199271] = 11, + STATE(5964), 1, + sym__variable_name, + STATE(6744), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [190533] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4171), 1, + ACTIONS(3985), 1, anon_sym_DOLLAR, - ACTIONS(4173), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token3, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(4175), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4177), 1, + ACTIONS(8297), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4485), 1, - aux_sym_unquoted_token3, - ACTIONS(8716), 1, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8879), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8718), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token5, - STATE(1528), 1, - sym__immediate_decimal, - STATE(5357), 1, + STATE(5338), 1, sym_comment, - STATE(1886), 2, + STATE(6072), 1, + sym__immediate_decimal, + STATE(6160), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199306] = 5, + [190568] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8458), 1, - aux_sym__immediate_decimal_token2, - STATE(5358), 1, + STATE(5339), 1, sym_comment, - ACTIONS(1536), 3, + ACTIONS(1673), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1538), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1675), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [199329] = 10, - ACTIONS(249), 1, + [190589] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8883), 1, + aux_sym__immediate_decimal_token2, + STATE(5340), 1, + sym_comment, + ACTIONS(1673), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1675), 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, + [190612] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1524), 1, + ACTIONS(1544), 1, anon_sym_EQ_GT, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(6211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(6213), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7992), 1, + ACTIONS(8173), 1, anon_sym_DOLLAR, - STATE(3574), 1, + STATE(3619), 1, sym__immediate_decimal, - STATE(5359), 1, + STATE(5341), 1, sym_comment, - ACTIONS(6253), 2, + ACTIONS(6229), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3422), 2, + STATE(3436), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199362] = 10, - ACTIONS(249), 1, + [190645] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1556), 1, + ACTIONS(1577), 1, anon_sym_EQ_GT, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(6211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(6213), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7992), 1, + ACTIONS(8173), 1, anon_sym_DOLLAR, - STATE(3564), 1, + STATE(3607), 1, sym__immediate_decimal, - STATE(5360), 1, + STATE(5342), 1, sym_comment, - ACTIONS(6253), 2, + ACTIONS(6229), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3433), 2, + STATE(3431), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199395] = 11, - ACTIONS(249), 1, + [190678] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6456), 1, + ACTIONS(1709), 1, + anon_sym_RBRACE, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1721), 1, + sym__entry_separator, + ACTIONS(8859), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8885), 1, + anon_sym_DOT_DOT2, + ACTIONS(8889), 1, + sym_filesize_unit, + ACTIONS(8891), 1, + sym_duration_unit, + STATE(5343), 1, + sym_comment, + STATE(7393), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8887), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [190713] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8629), 1, + aux_sym__immediate_decimal_token2, + STATE(5344), 1, + sym_comment, + ACTIONS(1609), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1607), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [190736] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5663), 1, + anon_sym_DQUOTE, + ACTIONS(5667), 1, + sym_raw_string_begin, + ACTIONS(8703), 1, + sym_identifier, + ACTIONS(8893), 1, + anon_sym_GT2, + STATE(5345), 1, + sym_comment, + STATE(5346), 1, + aux_sym_collection_type_repeat1, + STATE(5491), 1, + sym_val_string, + ACTIONS(5665), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5556), 2, + sym__raw_str, + sym__str_double_quotes, + [190769] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8895), 1, + sym_identifier, + ACTIONS(8898), 1, + anon_sym_GT2, + ACTIONS(8900), 1, + anon_sym_DQUOTE, + ACTIONS(8906), 1, + sym_raw_string_begin, + STATE(5491), 1, + sym_val_string, + ACTIONS(8903), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5346), 2, + sym_comment, + aux_sym_collection_type_repeat1, + STATE(5556), 2, + sym__raw_str, + sym__str_double_quotes, + [190800] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8909), 1, + anon_sym_DOT, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token2, + STATE(5347), 1, + sym_comment, + ACTIONS(1607), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190825] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8513), 1, + anon_sym_DASH2, + STATE(5348), 1, + sym_comment, + ACTIONS(5704), 9, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8376), 1, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(8378), 1, - anon_sym_DASH, - ACTIONS(8593), 1, + [190846] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6412), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, sym_identifier, - STATE(5309), 1, - aux_sym_ctrl_do_repeat1, - STATE(5361), 1, + ACTIONS(8651), 1, + anon_sym_DASH_DASH, + ACTIONS(8653), 1, + anon_sym_DASH2, + STATE(5349), 1, sym_comment, - STATE(6018), 1, - sym__flag, - STATE(7102), 1, + STATE(5480), 1, sym_val_variable, - STATE(7402), 1, + STATE(5609), 1, + aux_sym_ctrl_do_repeat1, + STATE(6126), 1, + sym__flag, + STATE(6254), 1, sym__variable_name, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [199430] = 5, + [190881] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8720), 1, + ACTIONS(8665), 1, aux_sym__immediate_decimal_token2, - STATE(5362), 1, + STATE(5350), 1, sym_comment, - ACTIONS(1596), 3, + ACTIONS(1607), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1598), 6, + ACTIONS(1609), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [199453] = 11, + [190904] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4842), 1, - aux_sym_unquoted_token3, - ACTIONS(6229), 1, + ACTIONS(3097), 1, + anon_sym_DOLLAR, + ACTIONS(8139), 1, anon_sym_LPAREN2, - ACTIONS(7801), 1, + ACTIONS(8193), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8597), 1, - anon_sym_DOLLAR, - ACTIONS(8722), 1, + ACTIONS(8195), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8724), 1, + ACTIONS(8197), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8726), 1, + ACTIONS(8199), 1, aux_sym__immediate_decimal_token5, - STATE(5363), 1, + ACTIONS(8667), 1, + aux_sym__unquoted_in_list_token3, + STATE(5351), 1, sym_comment, - STATE(5749), 1, + STATE(5725), 1, sym__immediate_decimal, - STATE(5973), 2, + STATE(5957), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199488] = 9, - ACTIONS(249), 1, + [190939] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - ACTIONS(8318), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, - aux_sym__immediate_decimal_token5, - STATE(3453), 1, - sym__immediate_decimal, - STATE(5364), 1, + ACTIONS(8913), 1, + aux_sym__immediate_decimal_token2, + STATE(5352), 1, sym_comment, - ACTIONS(8368), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3441), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199518] = 9, - ACTIONS(249), 1, + ACTIONS(1675), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1673), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [190962] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6456), 1, - anon_sym_DOLLAR, - STATE(3886), 1, - sym__immediate_decimal, - STATE(5365), 1, + ACTIONS(2094), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5353), 1, sym_comment, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3740), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199548] = 9, - ACTIONS(249), 1, + STATE(5410), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + STATE(5816), 1, + sym_cell_path, + ACTIONS(2096), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [190991] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4173), 1, + STATE(5354), 1, + sym_comment, + ACTIONS(1607), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1609), 6, anon_sym_LPAREN2, - ACTIONS(4503), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4505), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8218), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [191012] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1976), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5355), 1, + sym_comment, + STATE(5483), 1, + sym_path, + STATE(5948), 1, + sym_cell_path, + ACTIONS(1978), 4, + sym_identifier, anon_sym_DOLLAR, - STATE(1809), 1, - sym__immediate_decimal, - STATE(5366), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191040] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8915), 1, + anon_sym_DOT, + ACTIONS(8917), 1, + aux_sym__immediate_decimal_token2, + STATE(5356), 1, sym_comment, - ACTIONS(4501), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1806), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199578] = 9, - ACTIONS(249), 1, + ACTIONS(1607), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 5, + anon_sym_in2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [191064] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - STATE(3569), 1, - sym__immediate_decimal, - STATE(5367), 1, + STATE(5357), 1, sym_comment, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3439), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199608] = 9, - ACTIONS(249), 1, + ACTIONS(1765), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1763), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [191084] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(8728), 1, - anon_sym_DOLLAR, - ACTIONS(8730), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8732), 1, - aux_sym__immediate_decimal_token5, - STATE(5368), 1, + ACTIONS(994), 1, + anon_sym_DASH2, + STATE(5358), 1, sym_comment, - STATE(6107), 1, - sym__immediate_decimal, - ACTIONS(7978), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5813), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199638] = 9, - ACTIONS(249), 1, + ACTIONS(996), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [191104] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(8730), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8732), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8734), 1, + ACTIONS(998), 1, + anon_sym_DASH2, + STATE(5359), 1, + sym_comment, + ACTIONS(1000), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [191124] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1002), 1, + anon_sym_DASH2, + STATE(5360), 1, + sym_comment, + ACTIONS(1004), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [191144] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2082), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4912), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5361), 1, + sym_comment, + STATE(5483), 1, + sym_path, + ACTIONS(2084), 4, + sym_identifier, anon_sym_DOLLAR, - STATE(5369), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191172] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1721), 1, + anon_sym_DASH_DASH, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + ACTIONS(8677), 1, + aux_sym_unquoted_token2, + ACTIONS(8919), 1, + sym_filesize_unit, + ACTIONS(8921), 1, + sym_duration_unit, + STATE(5362), 1, sym_comment, - STATE(7531), 1, - sym__immediate_decimal, - ACTIONS(8234), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6969), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199668] = 6, + ACTIONS(1709), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [191202] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8736), 1, + ACTIONS(8923), 1, anon_sym_DOT, - ACTIONS(8738), 1, - aux_sym__immediate_decimal_token2, - STATE(5370), 1, + STATE(5631), 1, + sym_path, + STATE(5363), 2, sym_comment, - ACTIONS(1715), 3, + aux_sym_cell_path_repeat1, + ACTIONS(971), 3, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1717), 4, - anon_sym_LPAREN2, + ACTIONS(973), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [199692] = 6, - ACTIONS(249), 1, + [191226] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(990), 1, + anon_sym_DASH2, + STATE(5364), 1, + sym_comment, + ACTIONS(992), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [191246] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2094), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5365), 1, + sym_comment, + STATE(5483), 1, + sym_path, + STATE(5768), 1, + sym_cell_path, + ACTIONS(2096), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191274] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8928), 1, + aux_sym__immediate_decimal_token2, + STATE(5366), 1, + sym_comment, + ACTIONS(1621), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1623), 5, + anon_sym_in2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [191298] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8742), 1, + ACTIONS(8932), 1, anon_sym_COMMA, - ACTIONS(8744), 1, + ACTIONS(8934), 1, anon_sym_AT, - STATE(5371), 1, + STATE(5367), 1, sym_comment, - STATE(5722), 1, + STATE(5652), 1, sym_param_cmd, - ACTIONS(8740), 6, + ACTIONS(8930), 6, sym_raw_string_begin, sym_identifier, - anon_sym_GT, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199716] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6893), 1, - anon_sym_LPAREN2, - ACTIONS(8746), 1, - anon_sym_DOLLAR, - ACTIONS(8748), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8750), 1, - aux_sym__immediate_decimal_token5, - STATE(4527), 1, - sym__immediate_decimal, - STATE(5372), 1, - sym_comment, - ACTIONS(6909), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4803), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199746] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(7992), 1, - anon_sym_DOLLAR, - ACTIONS(8146), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8148), 1, - aux_sym__immediate_decimal_token5, - STATE(5373), 1, - sym_comment, - STATE(7171), 1, - sym__immediate_decimal, - ACTIONS(8144), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3465), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199776] = 6, - ACTIONS(249), 1, + [191322] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8744), 1, + ACTIONS(8934), 1, anon_sym_AT, - ACTIONS(8754), 1, + ACTIONS(8938), 1, anon_sym_COMMA, - STATE(5374), 1, + STATE(5368), 1, sym_comment, - STATE(5723), 1, + STATE(5653), 1, sym_param_cmd, - ACTIONS(8752), 6, + ACTIONS(8936), 6, sym_raw_string_begin, sym_identifier, - anon_sym_GT, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199800] = 5, - ACTIONS(3), 1, + [191346] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2090), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4917), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5369), 1, + sym_comment, + STATE(5483), 1, + sym_path, + ACTIONS(2092), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191374] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8566), 1, + ACTIONS(8940), 1, + anon_sym_DOT, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token2, - STATE(5375), 1, + STATE(5370), 1, sym_comment, - ACTIONS(1536), 3, - sym__newline, + ACTIONS(1755), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1538), 5, - sym__space, + ACTIONS(1757), 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, - [199822] = 6, - ACTIONS(249), 1, + [191398] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8756), 1, - anon_sym_DOT, - ACTIONS(8758), 1, + ACTIONS(8944), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8946), 1, aux_sym__immediate_decimal_token2, - STATE(5376), 1, + STATE(5371), 1, sym_comment, - ACTIONS(1536), 2, + ACTIONS(1621), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1538), 5, - anon_sym_in, + ACTIONS(1623), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [199846] = 9, - ACTIONS(249), 1, + [191422] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6931), 1, - anon_sym_LPAREN2, - ACTIONS(8760), 1, + ACTIONS(6203), 1, anon_sym_DOLLAR, - ACTIONS(8762), 1, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8764), 1, + ACTIONS(6213), 1, aux_sym__immediate_decimal_token5, - STATE(4989), 1, + STATE(3666), 1, sym__immediate_decimal, - STATE(5377), 1, + STATE(5372), 1, sym_comment, - ACTIONS(6999), 2, + ACTIONS(6209), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4988), 2, + STATE(3519), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199876] = 9, - ACTIONS(249), 1, + [191452] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1640), 1, + ACTIONS(8948), 1, + anon_sym_EQ2, + ACTIONS(8950), 1, + sym_short_flag_identifier, + STATE(5373), 1, + sym_comment, + ACTIONS(4958), 3, anon_sym_DASH_DASH, - ACTIONS(4614), 1, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(4956), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [191476] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8952), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8954), 1, + aux_sym__immediate_decimal_token2, + STATE(5374), 1, + sym_comment, + ACTIONS(1739), 2, anon_sym_DOT_DOT2, - ACTIONS(8580), 1, aux_sym_unquoted_token2, - ACTIONS(8766), 1, - sym_filesize_unit, - ACTIONS(8768), 1, - sym_duration_unit, - STATE(5378), 1, - sym_comment, - ACTIONS(1628), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(4616), 2, + ACTIONS(1741), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [199906] = 6, - ACTIONS(249), 1, + [191500] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8770), 1, + ACTIONS(1925), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4919), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5375), 1, + sym_comment, + STATE(5483), 1, + sym_path, + ACTIONS(1927), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191528] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + STATE(3602), 1, + sym__immediate_decimal, + STATE(5376), 1, + sym_comment, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3439), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191558] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8956), 1, sym_long_flag_identifier, - ACTIONS(8772), 1, + ACTIONS(8958), 1, anon_sym_EQ2, - STATE(5379), 1, + STATE(5377), 1, sym_comment, - ACTIONS(4937), 2, - anon_sym_DASH, + ACTIONS(4938), 2, + anon_sym_DASH2, anon_sym_as, - ACTIONS(4939), 5, + ACTIONS(4936), 5, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, - [199930] = 9, - ACTIONS(249), 1, + [191582] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7974), 1, - anon_sym_LPAREN2, - ACTIONS(8734), 1, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(3175), 1, + sym_cell_path, + STATE(5378), 1, + sym_comment, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + ACTIONS(963), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + [191608] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1933), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4921), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5379), 1, + sym_comment, + STATE(5483), 1, + sym_path, + ACTIONS(1935), 4, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(8774), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8776), 1, - aux_sym__immediate_decimal_token5, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191636] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1944), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4922), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, STATE(5380), 1, sym_comment, - STATE(6238), 1, - sym__immediate_decimal, - ACTIONS(8210), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6958), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199960] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6893), 1, - anon_sym_LPAREN2, - ACTIONS(8746), 1, + STATE(5483), 1, + sym_path, + ACTIONS(1946), 4, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(8778), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8780), 1, - aux_sym__immediate_decimal_token5, - STATE(4802), 1, - sym__immediate_decimal, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191664] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1948), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4923), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, STATE(5381), 1, sym_comment, - ACTIONS(6951), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4800), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199990] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(8312), 1, + STATE(5483), 1, + sym_path, + ACTIONS(1950), 4, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(8318), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, - aux_sym__immediate_decimal_token5, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191692] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1952), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4924), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, STATE(5382), 1, sym_comment, - STATE(6162), 1, - sym__immediate_decimal, - ACTIONS(8316), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6111), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200020] = 9, - ACTIONS(249), 1, + STATE(5483), 1, + sym_path, + ACTIONS(1954), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191720] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(4221), 1, anon_sym_LPAREN2, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - ACTIONS(8318), 1, + ACTIONS(4565), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, + ACTIONS(4567), 1, aux_sym__immediate_decimal_token5, - STATE(3569), 1, + ACTIONS(8279), 1, + anon_sym_DOLLAR, + STATE(1908), 1, sym__immediate_decimal, STATE(5383), 1, sym_comment, - ACTIONS(8368), 2, + ACTIONS(4563), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3439), 2, + STATE(1907), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200050] = 9, - ACTIONS(249), 1, + [191750] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, - anon_sym_LPAREN2, - ACTIONS(3978), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(3980), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8024), 1, - anon_sym_DOLLAR, - STATE(1468), 1, - sym__immediate_decimal, + ACTIONS(8962), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8964), 1, + aux_sym__immediate_decimal_token2, STATE(5384), 1, sym_comment, - ACTIONS(3976), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1666), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200080] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3972), 1, + ACTIONS(1739), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1741), 4, anon_sym_LPAREN2, - ACTIONS(4117), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4119), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8024), 1, - anon_sym_DOLLAR, - STATE(1658), 1, - sym__immediate_decimal, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [191774] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1960), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4925), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, STATE(5385), 1, sym_comment, - ACTIONS(4115), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1630), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200110] = 4, - ACTIONS(249), 1, + STATE(5483), 1, + sym_path, + ACTIONS(1962), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191802] = 8, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1968), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4926), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, STATE(5386), 1, sym_comment, - ACTIONS(1530), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1528), 6, + STATE(5483), 1, + sym_path, + ACTIONS(1970), 4, sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200130] = 9, - ACTIONS(249), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191830] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(8139), 1, anon_sym_LPAREN2, - ACTIONS(6885), 1, + ACTIONS(8966), 1, anon_sym_DOLLAR, - ACTIONS(6889), 1, + ACTIONS(8968), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6891), 1, + ACTIONS(8970), 1, aux_sym__immediate_decimal_token5, - STATE(4338), 1, - sym__immediate_decimal, STATE(5387), 1, sym_comment, - ACTIONS(6887), 2, + STATE(6083), 1, + sym__immediate_decimal, + ACTIONS(8193), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3681), 2, + STATE(5957), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200160] = 9, - ACTIONS(249), 1, + [191860] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_DOLLAR, - ACTIONS(5560), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(5629), 1, + ACTIONS(6211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5631), 1, + ACTIONS(6213), 1, aux_sym__immediate_decimal_token5, - STATE(3113), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + STATE(3602), 1, sym__immediate_decimal, STATE(5388), 1, sym_comment, - ACTIONS(5627), 2, + ACTIONS(6229), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3102), 2, + STATE(3439), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200190] = 4, - ACTIONS(249), 1, + [191890] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8784), 1, - anon_sym_DASH, + ACTIONS(1972), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4928), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, STATE(5389), 1, sym_comment, - ACTIONS(8782), 8, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, + STATE(5483), 1, + sym_path, + ACTIONS(1974), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - [200210] = 9, - ACTIONS(249), 1, + anon_sym_LBRACE, + [191918] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - ACTIONS(6867), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6869), 1, - aux_sym__immediate_decimal_token5, - STATE(4241), 1, - sym__immediate_decimal, + ACTIONS(1984), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4929), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, STATE(5390), 1, sym_comment, - ACTIONS(6865), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3465), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200240] = 4, - ACTIONS(249), 1, + STATE(5483), 1, + sym_path, + ACTIONS(1986), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191946] = 8, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1988), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4930), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, STATE(5391), 1, sym_comment, - ACTIONS(1538), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1536), 6, + STATE(5483), 1, + sym_path, + ACTIONS(1990), 4, sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200260] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7025), 1, - anon_sym_LPAREN2, - ACTIONS(7033), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7035), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7070), 1, anon_sym_DOLLAR, - STATE(5116), 1, - sym__immediate_decimal, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191974] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1992), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4931), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, STATE(5392), 1, sym_comment, - ACTIONS(7118), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5111), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200290] = 4, - ACTIONS(249), 1, + STATE(5483), 1, + sym_path, + ACTIONS(1994), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [192002] = 8, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1996), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4932), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, STATE(5393), 1, sym_comment, - ACTIONS(1598), 3, + STATE(5483), 1, + sym_path, + ACTIONS(1998), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1596), 6, + anon_sym_LBRACE, + [192030] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2000), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4933), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5394), 1, + sym_comment, + STATE(5483), 1, + sym_path, + ACTIONS(2002), 4, sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200310] = 9, - ACTIONS(249), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [192058] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7025), 1, + ACTIONS(7049), 1, anon_sym_LPAREN2, - ACTIONS(7070), 1, + ACTIONS(8972), 1, anon_sym_DOLLAR, - ACTIONS(7076), 1, + ACTIONS(8974), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7078), 1, + ACTIONS(8976), 1, aux_sym__immediate_decimal_token5, - STATE(4785), 1, + STATE(4318), 1, sym__immediate_decimal, - STATE(5394), 1, + STATE(5395), 1, sym_comment, - ACTIONS(7074), 2, + ACTIONS(7101), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5120), 2, + STATE(4734), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200340] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4842), 1, - aux_sym_unquoted_token2, - ACTIONS(8786), 1, - anon_sym_DOT_DOT2, - ACTIONS(8790), 1, - sym_filesize_unit, - ACTIONS(8792), 1, - sym_duration_unit, - STATE(5395), 1, - sym_comment, - ACTIONS(8788), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1640), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [200368] = 9, - ACTIONS(249), 1, + [192088] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5468), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(8794), 1, + ACTIONS(8173), 1, anon_sym_DOLLAR, - ACTIONS(8798), 1, + ACTIONS(8329), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8800), 1, + ACTIONS(8331), 1, aux_sym__immediate_decimal_token5, - STATE(3011), 1, - sym__immediate_decimal, STATE(5396), 1, sym_comment, - ACTIONS(8796), 2, + STATE(6986), 1, + sym__immediate_decimal, + ACTIONS(8327), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3009), 2, + STATE(3408), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200398] = 9, - ACTIONS(249), 1, + [192118] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2004), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4934), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5397), 1, + sym_comment, + STATE(5483), 1, + sym_path, + ACTIONS(2006), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [192146] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2068), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4935), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5398), 1, + sym_comment, + STATE(5483), 1, + sym_path, + ACTIONS(2070), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [192174] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2072), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4936), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5399), 1, + sym_comment, + STATE(5483), 1, + sym_path, + ACTIONS(2074), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [192202] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1907), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4937), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5400), 1, + sym_comment, + STATE(5483), 1, + sym_path, + ACTIONS(1911), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [192230] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1913), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, + anon_sym_DOT, + STATE(4938), 1, + sym_cell_path, + STATE(5196), 1, + aux_sym_cell_path_repeat1, + STATE(5401), 1, + sym_comment, + STATE(5483), 1, + sym_path, + ACTIONS(1915), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [192258] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5468), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(8794), 1, + ACTIONS(8978), 1, anon_sym_DOLLAR, - ACTIONS(8802), 1, + ACTIONS(8980), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8804), 1, + ACTIONS(8982), 1, aux_sym__immediate_decimal_token5, - STATE(2879), 1, + STATE(4838), 1, sym__immediate_decimal, - STATE(5397), 1, + STATE(5402), 1, sym_comment, - ACTIONS(8595), 2, + ACTIONS(7171), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3014), 2, + STATE(4837), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200428] = 9, - ACTIONS(249), 1, + [192288] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1644), 1, - anon_sym_DOLLAR, - ACTIONS(1646), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(1687), 1, + ACTIONS(6211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1689), 1, + ACTIONS(6213), 1, aux_sym__immediate_decimal_token5, - STATE(642), 1, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + STATE(3588), 1, sym__immediate_decimal, - STATE(5398), 1, + STATE(5403), 1, sym_comment, - ACTIONS(1685), 2, + ACTIONS(6229), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(641), 2, + STATE(3408), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200458] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8806), 1, - anon_sym_EQ2, - ACTIONS(8808), 1, - sym_short_flag_identifier, - STATE(5399), 1, - sym_comment, - ACTIONS(4925), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(4927), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [200482] = 9, - ACTIONS(249), 1, + [192318] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1644), 1, - anon_sym_DOLLAR, - ACTIONS(1646), 1, + ACTIONS(8139), 1, anon_sym_LPAREN2, - ACTIONS(1652), 1, + ACTIONS(8968), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1654), 1, + ACTIONS(8970), 1, aux_sym__immediate_decimal_token5, - STATE(542), 1, - sym__immediate_decimal, - STATE(5400), 1, + ACTIONS(8984), 1, + anon_sym_DOLLAR, + STATE(5404), 1, sym_comment, - ACTIONS(1650), 2, + STATE(7482), 1, + sym__immediate_decimal, + ACTIONS(8341), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(643), 2, + STATE(7333), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200512] = 9, - ACTIONS(249), 1, + [192348] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1548), 1, + ACTIONS(8139), 1, anon_sym_LPAREN2, - ACTIONS(8810), 1, + ACTIONS(8984), 1, anon_sym_DOLLAR, - ACTIONS(8814), 1, + ACTIONS(8986), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8816), 1, + ACTIONS(8988), 1, aux_sym__immediate_decimal_token5, - STATE(556), 1, - sym__immediate_decimal, - STATE(5401), 1, + STATE(5405), 1, sym_comment, - ACTIONS(8812), 2, + STATE(6255), 1, + sym__immediate_decimal, + ACTIONS(8309), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(616), 2, + STATE(6899), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200542] = 6, + [192378] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8850), 1, + anon_sym_DOLLAR, + ACTIONS(8852), 1, + anon_sym_DASH_DASH, + ACTIONS(8854), 1, + anon_sym_DASH2, + STATE(5406), 1, + sym_comment, + STATE(5480), 1, + sym_val_variable, + STATE(5817), 1, + sym__variable_name, + STATE(6332), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [192410] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8818), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8820), 1, - aux_sym__immediate_decimal_token2, - STATE(5402), 1, + STATE(5407), 1, sym_comment, - ACTIONS(1703), 3, + ACTIONS(1673), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1705), 4, + ACTIONS(1675), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [200566] = 9, - ACTIONS(249), 1, + [192430] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1548), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(8810), 1, + ACTIONS(6412), 1, anon_sym_DOLLAR, - ACTIONS(8822), 1, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8824), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - STATE(498), 1, + STATE(3407), 1, sym__immediate_decimal, - STATE(5403), 1, + STATE(5408), 1, sym_comment, - ACTIONS(8621), 2, + ACTIONS(8555), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(618), 2, + STATE(3405), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200596] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1042), 1, - anon_sym_DASH, - ACTIONS(8826), 1, - anon_sym_QMARK2, - STATE(5404), 1, - sym_comment, - ACTIONS(1044), 7, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [200618] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1048), 1, - anon_sym_DASH, - ACTIONS(8828), 1, - anon_sym_QMARK2, - STATE(5405), 1, - sym_comment, - ACTIONS(1050), 7, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [200640] = 9, - ACTIONS(249), 1, + [192460] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6931), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(8760), 1, + ACTIONS(6412), 1, anon_sym_DOLLAR, - ACTIONS(8830), 1, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8832), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - STATE(4644), 1, + STATE(3588), 1, sym__immediate_decimal, - STATE(5406), 1, + STATE(5409), 1, sym_comment, - ACTIONS(6955), 2, + ACTIONS(8555), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4991), 2, + STATE(3408), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200670] = 9, - ACTIONS(249), 1, + [192490] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - STATE(3581), 1, - sym__immediate_decimal, - STATE(5407), 1, + ACTIONS(967), 1, + anon_sym_DASH2, + ACTIONS(8758), 1, + anon_sym_DOT, + STATE(5410), 1, sym_comment, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3465), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200700] = 9, - ACTIONS(249), 1, + STATE(5482), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, + sym_path, + ACTIONS(969), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [192516] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(8139), 1, anon_sym_LPAREN2, - ACTIONS(6418), 1, + ACTIONS(8984), 1, anon_sym_DOLLAR, - ACTIONS(8444), 1, + ACTIONS(8990), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8446), 1, + ACTIONS(8992), 1, aux_sym__immediate_decimal_token5, - STATE(5408), 1, + STATE(5411), 1, sym_comment, - STATE(7474), 1, + STATE(6230), 1, sym__immediate_decimal, - ACTIONS(8442), 2, + ACTIONS(8373), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3465), 2, + STATE(6899), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200730] = 9, - ACTIONS(249), 1, + [192546] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6444), 1, - anon_sym_DOLLAR, - ACTIONS(6446), 1, + ACTIONS(7049), 1, anon_sym_LPAREN2, - ACTIONS(6452), 1, + ACTIONS(8972), 1, + anon_sym_DOLLAR, + ACTIONS(8994), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, + ACTIONS(8996), 1, aux_sym__immediate_decimal_token5, - STATE(3696), 1, + STATE(4733), 1, sym__immediate_decimal, - STATE(5409), 1, + STATE(5412), 1, sym_comment, - ACTIONS(6450), 2, + ACTIONS(7145), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3683), 2, + STATE(4730), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200760] = 4, - ACTIONS(249), 1, + [192576] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5410), 1, + ACTIONS(8998), 1, + aux_sym__immediate_decimal_token2, + STATE(5413), 1, sym_comment, - ACTIONS(1713), 3, - anon_sym_DASH_DASH, + ACTIONS(1675), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 6, + ACTIONS(1673), 5, sym_identifier, - anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [200780] = 9, - ACTIONS(249), 1, + [192598] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - ACTIONS(6229), 1, + ACTIONS(4057), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(4063), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(4065), 1, aux_sym__immediate_decimal_token5, - STATE(3626), 1, + ACTIONS(8131), 1, + anon_sym_DOLLAR, + STATE(1635), 1, sym__immediate_decimal, - STATE(5411), 1, + STATE(5414), 1, sym_comment, - ACTIONS(6233), 2, + ACTIONS(4061), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3536), 2, + STATE(1841), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200810] = 10, - ACTIONS(249), 1, + [192628] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6251), 1, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8487), 1, anon_sym_DOLLAR, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(8645), 1, - anon_sym_DASH_DASH, - ACTIONS(8647), 1, - anon_sym_DASH, - STATE(5412), 1, + STATE(3407), 1, + sym__immediate_decimal, + STATE(5415), 1, sym_comment, - STATE(5416), 1, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3405), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(5785), 1, - sym__variable_name, - STATE(6225), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [200842] = 5, - ACTIONS(249), 1, + [192658] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8617), 1, + ACTIONS(9000), 1, + anon_sym_DOT, + ACTIONS(9002), 1, aux_sym__immediate_decimal_token2, - STATE(5413), 1, - sym_comment, - ACTIONS(1538), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1536), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200864] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5414), 1, + STATE(5416), 1, sym_comment, - ACTIONS(1536), 2, + ACTIONS(1607), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1538), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1609), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200884] = 9, - ACTIONS(249), 1, + [192682] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_DOLLAR, - ACTIONS(5560), 1, + ACTIONS(6335), 1, anon_sym_LPAREN2, - ACTIONS(5566), 1, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + ACTIONS(7045), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5568), 1, + ACTIONS(7047), 1, aux_sym__immediate_decimal_token5, - STATE(3023), 1, + STATE(4225), 1, sym__immediate_decimal, - STATE(5415), 1, + STATE(5417), 1, sym_comment, - ACTIONS(5564), 2, + ACTIONS(7043), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3076), 2, + STATE(3818), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200914] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8836), 1, - anon_sym_DASH, - STATE(5416), 1, - sym_comment, - ACTIONS(8834), 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, - [200934] = 9, - ACTIONS(249), 1, + [192712] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(4057), 1, anon_sym_LPAREN2, - ACTIONS(6452), 1, + ACTIONS(4511), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, + ACTIONS(4513), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6885), 1, + ACTIONS(8131), 1, anon_sym_DOLLAR, - STATE(3678), 1, + STATE(1840), 1, sym__immediate_decimal, - STATE(5417), 1, + STATE(5418), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(4509), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3674), 2, + STATE(1839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200964] = 4, - ACTIONS(249), 1, + [192742] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5418), 1, + STATE(5419), 1, sym_comment, - ACTIONS(1528), 2, + ACTIONS(1763), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1530), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + aux_sym__unquoted_in_record_token2, + ACTIONS(1765), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200984] = 9, - ACTIONS(249), 1, + sym__entry_separator, + [192762] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6452), 1, + ACTIONS(8293), 1, + anon_sym_DOLLAR, + ACTIONS(8299), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, + ACTIONS(8301), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6456), 1, - anon_sym_DOLLAR, - STATE(3678), 1, - sym__immediate_decimal, - STATE(5419), 1, + STATE(5420), 1, sym_comment, - ACTIONS(6498), 2, + STATE(6009), 1, + sym__immediate_decimal, + ACTIONS(8297), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3674), 2, + STATE(6160), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201014] = 9, - ACTIONS(249), 1, + [192792] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6452), 1, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + ACTIONS(7031), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6454), 1, + ACTIONS(7033), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6456), 1, - anon_sym_DOLLAR, - STATE(3889), 1, + STATE(4173), 1, sym__immediate_decimal, - STATE(5420), 1, + STATE(5421), 1, sym_comment, - ACTIONS(6498), 2, + ACTIONS(7029), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3681), 2, + STATE(3408), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201044] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token2, - STATE(5421), 1, - sym_comment, - ACTIONS(1769), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1771), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [201066] = 9, - ACTIONS(249), 1, + [192822] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(7992), 1, + ACTIONS(5497), 1, anon_sym_DOLLAR, - ACTIONS(7996), 1, + ACTIONS(5499), 1, + anon_sym_LPAREN2, + ACTIONS(5636), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7998), 1, + ACTIONS(5638), 1, aux_sym__immediate_decimal_token5, + STATE(3136), 1, + sym__immediate_decimal, STATE(5422), 1, sym_comment, - STATE(6703), 1, - sym__immediate_decimal, - ACTIONS(7994), 2, + ACTIONS(5634), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3465), 2, + STATE(3132), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201096] = 4, - ACTIONS(249), 1, + [192852] = 9, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6412), 1, + anon_sym_DOLLAR, + ACTIONS(8299), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8301), 1, + aux_sym__immediate_decimal_token5, + STATE(3602), 1, + sym__immediate_decimal, STATE(5423), 1, sym_comment, - ACTIONS(1596), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 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, - [201116] = 4, - ACTIONS(249), 1, + ACTIONS(8555), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3439), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [192882] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8840), 1, - anon_sym_LT, + ACTIONS(1010), 1, + anon_sym_DASH2, STATE(5424), 1, sym_comment, - ACTIONS(7753), 8, - sym_raw_string_begin, + ACTIONS(1012), 8, + anon_sym_EQ, sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201136] = 4, - ACTIONS(249), 1, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + [192902] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8842), 1, - anon_sym_LT, + ACTIONS(1290), 1, + anon_sym_DASH2, STATE(5425), 1, sym_comment, - ACTIONS(7753), 8, - sym_raw_string_begin, + ACTIONS(1288), 8, sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201156] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6229), 1, - anon_sym_LPAREN2, - ACTIONS(6235), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6418), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - STATE(3581), 1, - sym__immediate_decimal, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [192922] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(2120), 1, + sym_cell_path, STATE(5426), 1, sym_comment, - ACTIONS(6253), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3465), 2, - sym__expr_parenthesized_immediate, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2092), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + [192948] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8850), 1, + anon_sym_DOLLAR, + ACTIONS(8852), 1, + anon_sym_DASH_DASH, + ACTIONS(8854), 1, + anon_sym_DASH2, + STATE(5427), 1, + sym_comment, + STATE(5480), 1, sym_val_variable, - [201186] = 9, - ACTIONS(249), 1, + STATE(5964), 1, + sym__variable_name, + STATE(6744), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [192980] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4173), 1, + ACTIONS(7188), 1, anon_sym_LPAREN2, - ACTIONS(4179), 1, + ACTIONS(7196), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4181), 1, + ACTIONS(7198), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8218), 1, + ACTIONS(7242), 1, anon_sym_DOLLAR, - STATE(1516), 1, + STATE(5066), 1, sym__immediate_decimal, - STATE(5427), 1, + STATE(5428), 1, sym_comment, - ACTIONS(4177), 2, + ACTIONS(7254), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1844), 2, + STATE(4993), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201216] = 6, - ACTIONS(249), 1, + [193010] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8844), 1, + ACTIONS(9004), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8846), 1, + ACTIONS(9006), 1, aux_sym__immediate_decimal_token2, - STATE(5428), 1, + STATE(5429), 1, sym_comment, - ACTIONS(1703), 2, + ACTIONS(1739), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1705), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1741), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201240] = 5, - ACTIONS(249), 1, + [193034] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8848), 1, - aux_sym__immediate_decimal_token2, - STATE(5429), 1, + ACTIONS(1014), 1, + anon_sym_DASH2, + STATE(5430), 1, sym_comment, - ACTIONS(1598), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1596), 5, + ACTIONS(1016), 8, + anon_sym_EQ, sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [201262] = 4, - ACTIONS(249), 1, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + [193054] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5430), 1, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6412), 1, + anon_sym_DOLLAR, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5431), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 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, - [201282] = 5, + STATE(7429), 1, + sym__immediate_decimal, + ACTIONS(8557), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3408), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193084] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5463), 1, + anon_sym_LPAREN2, + ACTIONS(9008), 1, + anon_sym_DOLLAR, + ACTIONS(9010), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9012), 1, + aux_sym__immediate_decimal_token5, + STATE(2868), 1, + sym__immediate_decimal, + STATE(5432), 1, + sym_comment, + ACTIONS(8707), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3029), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193114] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8850), 1, + ACTIONS(9014), 1, aux_sym__immediate_decimal_token2, - STATE(5431), 1, + STATE(5433), 1, sym_comment, - ACTIONS(1596), 3, - sym__newline, + ACTIONS(1783), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 5, - sym__space, + aux_sym__unquoted_in_list_token2, + ACTIONS(1785), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201304] = 9, - ACTIONS(249), 1, + sym__entry_separator, + [193136] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5463), 1, + anon_sym_LPAREN2, + ACTIONS(9008), 1, + anon_sym_DOLLAR, + ACTIONS(9018), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9020), 1, + aux_sym__immediate_decimal_token5, + STATE(3012), 1, + sym__immediate_decimal, + STATE(5434), 1, + sym_comment, + ACTIONS(9016), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3002), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193166] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3616), 1, + ACTIONS(1679), 1, anon_sym_DOLLAR, - ACTIONS(6229), 1, + ACTIONS(1681), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(1687), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(1689), 1, aux_sym__immediate_decimal_token5, - STATE(5432), 1, - sym_comment, - STATE(6738), 1, + STATE(586), 1, sym__immediate_decimal, - ACTIONS(6233), 2, + STATE(5435), 1, + sym_comment, + ACTIONS(1685), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5973), 2, + STATE(713), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201334] = 9, - ACTIONS(249), 1, + [193196] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(1679), 1, + anon_sym_DOLLAR, + ACTIONS(1681), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(1751), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(1753), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - STATE(3569), 1, + STATE(711), 1, sym__immediate_decimal, - STATE(5433), 1, + STATE(5436), 1, sym_comment, - ACTIONS(6253), 2, + ACTIONS(1749), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3439), 2, + STATE(708), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201364] = 9, - ACTIONS(249), 1, + [193226] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(1569), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(9026), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6418), 1, + STATE(532), 1, + sym__immediate_decimal, + STATE(5437), 1, + sym_comment, + ACTIONS(8747), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(626), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193256] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1569), 1, + anon_sym_LPAREN2, + ACTIONS(9022), 1, anon_sym_DOLLAR, - STATE(3453), 1, + ACTIONS(9030), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9032), 1, + aux_sym__immediate_decimal_token5, + STATE(674), 1, sym__immediate_decimal, - STATE(5434), 1, + STATE(5438), 1, sym_comment, - ACTIONS(6253), 2, + ACTIONS(9028), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3441), 2, + STATE(672), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201394] = 4, + [193286] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9034), 1, + anon_sym_LT, + STATE(5439), 1, + sym_comment, + ACTIONS(7953), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [193306] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5435), 1, + ACTIONS(9036), 1, + aux_sym__immediate_decimal_token2, + STATE(5440), 1, sym_comment, - ACTIONS(1536), 3, - anon_sym_RBRACE, + ACTIONS(1673), 3, + sym__newline, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1538), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1675), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [201414] = 9, - ACTIONS(249), 1, + [193328] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - ACTIONS(6229), 1, + ACTIONS(4221), 1, anon_sym_LPAREN2, - ACTIONS(8318), 1, + ACTIONS(4227), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, + ACTIONS(4229), 1, aux_sym__immediate_decimal_token5, - STATE(5436), 1, - sym_comment, - STATE(6162), 1, + ACTIONS(8279), 1, + anon_sym_DOLLAR, + STATE(1671), 1, sym__immediate_decimal, - ACTIONS(8316), 2, + STATE(5441), 1, + sym_comment, + ACTIONS(4225), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6111), 2, + STATE(1909), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201444] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8613), 1, - aux_sym__immediate_decimal_token2, - STATE(5437), 1, - sym_comment, - ACTIONS(1715), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [201466] = 6, - ACTIONS(249), 1, + [193358] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8852), 1, - anon_sym_DOT, - ACTIONS(8854), 1, + ACTIONS(8693), 1, aux_sym__immediate_decimal_token2, - STATE(5438), 1, + STATE(5442), 1, sym_comment, - ACTIONS(1715), 2, + ACTIONS(1607), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1717), 5, + ACTIONS(1609), 6, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201490] = 6, - ACTIONS(249), 1, + sym_filesize_unit, + sym_duration_unit, + [193380] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8856), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8858), 1, + ACTIONS(9038), 1, aux_sym__immediate_decimal_token2, - STATE(5439), 1, + STATE(5443), 1, sym_comment, - ACTIONS(1528), 2, + ACTIONS(1673), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1530), 5, - anon_sym_in, + ACTIONS(1675), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [201514] = 9, - ACTIONS(249), 1, + [193402] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(6333), 1, + anon_sym_DOLLAR, + ACTIONS(6335), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(6341), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(6343), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7992), 1, - anon_sym_DOLLAR, - STATE(3581), 1, + STATE(3820), 1, sym__immediate_decimal, - STATE(5440), 1, + STATE(5444), 1, sym_comment, - ACTIONS(6253), 2, + ACTIONS(6339), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3465), 2, + STATE(3534), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201544] = 6, - ACTIONS(3), 1, + [193432] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8860), 1, + ACTIONS(8960), 1, anon_sym_DOT, - STATE(5746), 1, + STATE(1894), 1, sym_path, - STATE(5441), 2, + STATE(2116), 1, + sym_cell_path, + STATE(5445), 1, sym_comment, + STATE(5608), 1, aux_sym_cell_path_repeat1, - ACTIONS(1031), 3, + ACTIONS(2084), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + [193458] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(978), 1, + anon_sym_DASH2, + ACTIONS(9040), 1, + anon_sym_QMARK2, + STATE(5446), 1, + sym_comment, + ACTIONS(980), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT, + [193480] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(984), 1, + anon_sym_DASH2, + ACTIONS(9042), 1, + anon_sym_QMARK2, + STATE(5447), 1, + sym_comment, + ACTIONS(986), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT, + [193502] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8848), 1, + aux_sym__immediate_decimal_token2, + STATE(5448), 1, + sym_comment, + ACTIONS(1755), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(1033), 3, + 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, - [201568] = 9, - ACTIONS(249), 1, + [193524] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7974), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(8734), 1, + ACTIONS(8173), 1, anon_sym_DOLLAR, - ACTIONS(8863), 1, + ACTIONS(8177), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8865), 1, + ACTIONS(8179), 1, aux_sym__immediate_decimal_token5, - STATE(5442), 1, + STATE(5449), 1, sym_comment, - STATE(6672), 1, + STATE(6287), 1, sym__immediate_decimal, - ACTIONS(8176), 2, + ACTIONS(8175), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6958), 2, + STATE(3408), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201598] = 9, - ACTIONS(249), 1, + [193554] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(6211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(6213), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7992), 1, + ACTIONS(6227), 1, anon_sym_DOLLAR, - STATE(3569), 1, + STATE(3407), 1, sym__immediate_decimal, - STATE(5443), 1, + STATE(5450), 1, sym_comment, - ACTIONS(6253), 2, + ACTIONS(6229), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3439), 2, + STATE(3405), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201628] = 9, - ACTIONS(249), 1, + [193584] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(7079), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(8978), 1, + anon_sym_DOLLAR, + ACTIONS(9044), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(9046), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7992), 1, - anon_sym_DOLLAR, - STATE(3453), 1, + STATE(4568), 1, sym__immediate_decimal, - STATE(5444), 1, + STATE(5451), 1, sym_comment, - ACTIONS(6253), 2, + ACTIONS(7117), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3441), 2, + STATE(4839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201658] = 4, - ACTIONS(3), 1, + [193614] = 9, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5445), 1, - sym_comment, - ACTIONS(1528), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1530), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [201678] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(8139), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(8968), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(8970), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6251), 1, + ACTIONS(8984), 1, anon_sym_DOLLAR, - STATE(3453), 1, - sym__immediate_decimal, - STATE(5446), 1, + STATE(5452), 1, sym_comment, - ACTIONS(6253), 2, + STATE(7349), 1, + sym__immediate_decimal, + ACTIONS(8341), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3441), 2, + STATE(6899), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201708] = 6, - ACTIONS(249), 1, + [193644] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8867), 1, - anon_sym_DOT, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token2, - STATE(5447), 1, + STATE(5453), 1, sym_comment, - ACTIONS(1715), 2, + ACTIONS(1607), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1717), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201732] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5448), 1, - sym_comment, - ACTIONS(1596), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1598), 6, - anon_sym_LPAREN2, + ACTIONS(1609), 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, - [201752] = 10, - ACTIONS(249), 1, + [193664] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6251), 1, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8487), 1, anon_sym_DOLLAR, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(8645), 1, - anon_sym_DASH_DASH, - ACTIONS(8647), 1, - anon_sym_DASH, - STATE(5416), 1, - sym_val_variable, - STATE(5449), 1, + STATE(3588), 1, + sym__immediate_decimal, + STATE(5454), 1, sym_comment, - STATE(5964), 1, - sym__variable_name, - STATE(6750), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [201784] = 4, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3408), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193694] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5450), 1, + ACTIONS(9048), 1, + anon_sym_DOT, + ACTIONS(9050), 1, + aux_sym__immediate_decimal_token2, + STATE(5455), 1, sym_comment, - ACTIONS(1711), 3, + ACTIONS(1755), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 6, + ACTIONS(1757), 4, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [201804] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DASH, - STATE(5451), 1, - sym_comment, - ACTIONS(1362), 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, - [201824] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8536), 1, - anon_sym_DOT, - STATE(5441), 1, - aux_sym_cell_path_repeat1, - STATE(5452), 1, - sym_comment, - STATE(5746), 1, - sym_path, - ACTIONS(1027), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1029), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [201850] = 9, - ACTIONS(249), 1, + [193718] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7974), 1, + ACTIONS(6335), 1, anon_sym_LPAREN2, - ACTIONS(8730), 1, + ACTIONS(6341), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8732), 1, + ACTIONS(6343), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8734), 1, + ACTIONS(6349), 1, anon_sym_DOLLAR, - STATE(5453), 1, - sym_comment, - STATE(7501), 1, + STATE(3801), 1, sym__immediate_decimal, - ACTIONS(8234), 2, + STATE(5456), 1, + sym_comment, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6958), 2, + STATE(3798), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201880] = 9, - ACTIONS(249), 1, + [193748] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6235), 1, + ACTIONS(6211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6237), 1, + ACTIONS(6213), 1, aux_sym__immediate_decimal_token5, - STATE(5454), 1, + ACTIONS(8223), 1, + anon_sym_DOLLAR, + STATE(5457), 1, sym_comment, - STATE(5966), 1, + STATE(5736), 1, sym__immediate_decimal, - ACTIONS(6233), 2, + ACTIONS(6209), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5968), 2, + STATE(5887), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201910] = 6, - ACTIONS(249), 1, + [193778] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8871), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8873), 1, - aux_sym__immediate_decimal_token2, - STATE(5455), 1, - sym_comment, - ACTIONS(1703), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1705), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201934] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7974), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(8730), 1, + ACTIONS(6211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8732), 1, + ACTIONS(6213), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8734), 1, + ACTIONS(8173), 1, anon_sym_DOLLAR, - STATE(5456), 1, - sym_comment, - STATE(6951), 1, + STATE(3602), 1, sym__immediate_decimal, - ACTIONS(8234), 2, + STATE(5458), 1, + sym_comment, + ACTIONS(6229), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6948), 2, + STATE(3439), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201964] = 9, - ACTIONS(249), 1, + [193808] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6229), 1, + ACTIONS(6205), 1, anon_sym_LPAREN2, - ACTIONS(6418), 1, - anon_sym_DOLLAR, - ACTIONS(8318), 1, + ACTIONS(6211), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, + ACTIONS(6213), 1, aux_sym__immediate_decimal_token5, - STATE(3581), 1, + ACTIONS(8173), 1, + anon_sym_DOLLAR, + STATE(3407), 1, sym__immediate_decimal, - STATE(5457), 1, + STATE(5459), 1, sym_comment, - ACTIONS(8368), 2, + ACTIONS(6229), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3465), 2, + STATE(3405), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201994] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5458), 1, - sym_comment, - ACTIONS(1056), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [202011] = 8, - ACTIONS(249), 1, + [193838] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4910), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5459), 1, - sym_comment, - ACTIONS(2045), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202038] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4911), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, STATE(5460), 1, sym_comment, - ACTIONS(2049), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202065] = 8, - ACTIONS(249), 1, + ACTIONS(1621), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1623), 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, + [193858] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2051), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4912), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, + ACTIONS(6335), 1, + anon_sym_LPAREN2, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6343), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6349), 1, + anon_sym_DOLLAR, + STATE(3954), 1, + sym__immediate_decimal, STATE(5461), 1, sym_comment, - ACTIONS(2053), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202092] = 8, - ACTIONS(249), 1, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3818), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193888] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DASH, - ACTIONS(8268), 1, + ACTIONS(9052), 1, anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4913), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, + ACTIONS(9054), 1, + aux_sym__immediate_decimal_token2, STATE(5462), 1, sym_comment, - ACTIONS(2057), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202119] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4914), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5463), 1, - sym_comment, - ACTIONS(2061), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202146] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2067), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4915), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5464), 1, - sym_comment, - ACTIONS(2069), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202173] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2083), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4916), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5465), 1, - sym_comment, - ACTIONS(2085), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202200] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2087), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4917), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5466), 1, - sym_comment, - ACTIONS(2089), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202227] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4918), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5467), 1, - sym_comment, - ACTIONS(2097), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202254] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5468), 1, - sym_comment, - ACTIONS(1703), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1755), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1705), 4, + aux_sym_unquoted_token2, + ACTIONS(1757), 5, + sym__newline, + anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [202273] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5469), 1, - sym_comment, - ACTIONS(1064), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1062), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [202292] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5470), 1, - sym_comment, - ACTIONS(1056), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1054), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [202311] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5471), 1, - sym_comment, - ACTIONS(8074), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [202328] = 8, - ACTIONS(249), 1, + [193912] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1901), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4923), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5472), 1, + STATE(5463), 1, sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(1903), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202355] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1021), 1, + ACTIONS(1673), 2, anon_sym_DOT_DOT2, - ACTIONS(8875), 1, - anon_sym_DOT, - STATE(1268), 1, - sym_path, - STATE(3168), 1, - sym_cell_path, - STATE(5473), 1, - sym_comment, - STATE(5727), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 3, - anon_sym_LBRACE, + aux_sym_unquoted_token2, + ACTIONS(1675), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202382] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(1891), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5474), 1, - sym_comment, - ACTIONS(1895), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [202407] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4927), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5475), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(1911), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202434] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(1804), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5476), 1, - sym_comment, - ACTIONS(1899), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [202459] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8877), 1, - anon_sym_DQUOTE, - ACTIONS(8881), 1, - aux_sym_path_token1, - ACTIONS(8883), 1, - sym_raw_string_begin, - STATE(5477), 1, - sym_comment, - STATE(6114), 1, - sym_val_string, - ACTIONS(8879), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6104), 2, - sym__raw_str, - sym__str_double_quotes, - [202486] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1929), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4901), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5478), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(1931), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202513] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(8885), 1, - aux_sym_path_token1, - STATE(5405), 1, - sym_val_string, - STATE(5479), 1, - sym_comment, - ACTIONS(3844), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4434), 2, - sym__raw_str, - sym__str_double_quotes, - [202540] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1893), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4891), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5480), 1, - sym_comment, - ACTIONS(1895), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202567] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4897), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5481), 1, - sym_comment, - ACTIONS(1899), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202594] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1993), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4902), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5482), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(1995), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202621] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1997), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4903), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5483), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(1999), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202648] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4904), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5484), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2003), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202675] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_DQUOTE, - ACTIONS(3074), 1, - sym_raw_string_begin, - ACTIONS(8887), 1, - aux_sym_path_token1, - STATE(5485), 1, - sym_comment, - STATE(5607), 1, - sym_val_string, - ACTIONS(3070), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5521), 2, - sym__raw_str, - sym__str_double_quotes, - [202702] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2005), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4905), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5486), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2007), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202729] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2009), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4906), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5487), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2011), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202756] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2013), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4907), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5488), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2015), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202783] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2017), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4908), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5489), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2019), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202810] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8889), 1, - anon_sym_DQUOTE, - ACTIONS(8893), 1, - aux_sym_path_token1, - ACTIONS(8895), 1, - sym_raw_string_begin, - STATE(5490), 1, - sym_comment, - STATE(6049), 1, - sym_val_string, - ACTIONS(8891), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5998), 2, - sym__raw_str, - sym__str_double_quotes, - [202837] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2021), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4909), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5491), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2023), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202864] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2043), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4910), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5492), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2045), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202891] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4911), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5493), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2049), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202918] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DASH, - STATE(5494), 1, - sym_comment, - ACTIONS(5097), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [202937] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(519), 1, - anon_sym_DQUOTE, - ACTIONS(529), 1, - sym_raw_string_begin, - ACTIONS(8897), 1, - aux_sym_path_token1, - STATE(2073), 1, - sym_val_string, - STATE(5495), 1, - sym_comment, - ACTIONS(521), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1820), 2, - sym__raw_str, - sym__str_double_quotes, - [202964] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2051), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4912), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5496), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2053), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202991] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2055), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4913), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5497), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2057), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [203018] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4914), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5498), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2061), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [203045] = 8, - ACTIONS(249), 1, + sym_filesize_unit, + sym_duration_unit, + [193932] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2067), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4915), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5499), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2069), 3, - sym_identifier, + ACTIONS(5497), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [203072] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8899), 1, - anon_sym_DQUOTE, - ACTIONS(8903), 1, - aux_sym_path_token1, - ACTIONS(8905), 1, - sym_raw_string_begin, - STATE(1227), 1, - sym_val_string, - STATE(5500), 1, + ACTIONS(5499), 1, + anon_sym_LPAREN2, + ACTIONS(5505), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5507), 1, + aux_sym__immediate_decimal_token5, + STATE(3076), 1, + sym__immediate_decimal, + STATE(5464), 1, sym_comment, - ACTIONS(8901), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1219), 2, - sym__raw_str, - sym__str_double_quotes, - [203099] = 8, - ACTIONS(249), 1, + ACTIONS(5503), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3118), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193962] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2083), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4916), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5501), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2085), 3, - sym_identifier, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8173), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [203126] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5049), 1, - anon_sym_DASH, - STATE(5502), 1, + STATE(3588), 1, + sym__immediate_decimal, + STATE(5465), 1, sym_comment, - ACTIONS(5047), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [203145] = 8, - ACTIONS(249), 1, + ACTIONS(6229), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3408), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193992] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2087), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4917), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5503), 1, + ACTIONS(9056), 1, + anon_sym_LT, + STATE(5466), 1, sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2089), 3, + ACTIONS(7953), 8, + sym_raw_string_begin, sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [194012] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3621), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [203172] = 4, - ACTIONS(249), 1, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6213), 1, + aux_sym__immediate_decimal_token5, + STATE(5467), 1, + sym_comment, + STATE(6737), 1, + sym__immediate_decimal, + ACTIONS(6209), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5970), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194042] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5069), 1, - anon_sym_DASH, - STATE(5504), 1, + ACTIONS(9060), 1, + anon_sym_DASH2, + STATE(5468), 1, sym_comment, - ACTIONS(5067), 7, + ACTIONS(9058), 8, + anon_sym_EQ, sym__newline, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_in2, anon_sym_RBRACE, - anon_sym_as, - [203191] = 8, - ACTIONS(249), 1, + [194062] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2095), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4918), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5505), 1, - sym_comment, - STATE(5519), 1, - sym_path, - ACTIONS(2097), 3, - sym_identifier, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8968), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8970), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8984), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [203218] = 8, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8907), 1, - aux_sym_path_token1, - STATE(2046), 1, - sym_val_string, - STATE(5506), 1, + STATE(5469), 1, sym_comment, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2065), 2, - sym__raw_str, - sym__str_double_quotes, - [203245] = 8, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(249), 1, + STATE(6886), 1, + sym__immediate_decimal, + ACTIONS(8341), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6853), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194092] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(8909), 1, - aux_sym_path_token1, - STATE(1504), 1, - sym_val_string, - STATE(5507), 1, + STATE(5470), 1, sym_comment, - ACTIONS(237), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1540), 2, - sym__raw_str, - sym__str_double_quotes, - [203272] = 7, - ACTIONS(249), 1, + ACTIONS(1763), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1765), 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, + [194112] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8911), 1, + STATE(5471), 1, + sym_comment, + ACTIONS(1609), 3, anon_sym_DASH_DASH, - ACTIONS(8914), 1, - anon_sym_DASH, - STATE(6018), 1, - sym__flag, - ACTIONS(8464), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1607), 6, sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [194132] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + ACTIONS(9062), 1, + anon_sym_DOT_DOT2, + ACTIONS(9066), 1, + sym_filesize_unit, + ACTIONS(9068), 1, + sym_duration_unit, + STATE(5472), 1, + sym_comment, + ACTIONS(9064), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1721), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [194160] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6335), 1, + anon_sym_LPAREN2, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6343), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6349), 1, anon_sym_DOLLAR, - STATE(5508), 2, + STATE(3970), 1, + sym__immediate_decimal, + STATE(5473), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [203297] = 5, - ACTIONS(249), 1, + ACTIONS(6351), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3741), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194190] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8869), 1, + ACTIONS(8671), 1, aux_sym__immediate_decimal_token2, - STATE(5509), 1, + STATE(5474), 1, sym_comment, - ACTIONS(1715), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1717), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(1609), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203318] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5065), 1, - anon_sym_DASH, - STATE(5510), 1, - sym_comment, - ACTIONS(5063), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [203337] = 5, + ACTIONS(1607), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [194212] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8738), 1, - aux_sym__immediate_decimal_token2, - STATE(5511), 1, + STATE(5475), 1, sym_comment, - ACTIONS(1715), 3, + ACTIONS(1607), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1717), 4, + ACTIONS(1609), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [203358] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8917), 1, - anon_sym_DQUOTE, - ACTIONS(8921), 1, - aux_sym_path_token1, - ACTIONS(8923), 1, - sym_raw_string_begin, - STATE(1171), 1, - sym_val_string, - STATE(5512), 1, - sym_comment, - ACTIONS(8919), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1188), 2, - sym__raw_str, - sym__str_double_quotes, - [203385] = 4, - ACTIONS(3), 1, + [194232] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5513), 1, + STATE(5476), 1, sym_comment, - ACTIONS(1040), 3, + ACTIONS(1623), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1038), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, + ACTIONS(1621), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [203404] = 5, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [194252] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8925), 1, - anon_sym_QMARK2, - STATE(5514), 1, + ACTIONS(8689), 1, + anon_sym_DOT, + STATE(5363), 1, + aux_sym_cell_path_repeat1, + STATE(5477), 1, sym_comment, - ACTIONS(1044), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1042), 4, + STATE(5631), 1, + sym_path, + ACTIONS(967), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - [203425] = 4, + ACTIONS(969), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [194278] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5515), 1, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token2, + STATE(5478), 1, sym_comment, - ACTIONS(1528), 3, + ACTIONS(1607), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1530), 5, + ACTIONS(1609), 5, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [203444] = 8, - ACTIONS(249), 1, + [194300] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8927), 1, - anon_sym_DQUOTE, - ACTIONS(8931), 1, - aux_sym_path_token1, - ACTIONS(8933), 1, - sym_raw_string_begin, - STATE(1525), 1, - sym_val_string, - STATE(5516), 1, + ACTIONS(6203), 1, + anon_sym_DOLLAR, + ACTIONS(6205), 1, + anon_sym_LPAREN2, + ACTIONS(8299), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8301), 1, + aux_sym__immediate_decimal_token5, + STATE(5479), 1, sym_comment, - ACTIONS(8929), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1552), 2, - sym__raw_str, - sym__str_double_quotes, - [203471] = 7, - ACTIONS(249), 1, + STATE(6009), 1, + sym__immediate_decimal, + ACTIONS(8297), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6160), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194330] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(3780), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5517), 1, + ACTIONS(9072), 1, + anon_sym_DASH2, + STATE(5480), 1, sym_comment, - ACTIONS(1668), 4, + ACTIONS(9070), 8, + anon_sym_EQ, sym__newline, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, - [203496] = 9, - ACTIONS(3), 1, + [194350] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7707), 1, - sym__newline, - ACTIONS(7709), 1, - sym__space, - ACTIONS(7711), 1, + STATE(5481), 1, + sym_comment, + ACTIONS(1675), 3, anon_sym_DASH_DASH, - ACTIONS(7713), 1, - anon_sym_DASH, - STATE(5518), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1673), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [194370] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(971), 1, + anon_sym_DASH2, + ACTIONS(9074), 1, + anon_sym_DOT, + STATE(5625), 1, + sym_path, + STATE(5482), 2, sym_comment, - STATE(5730), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7467), 1, - sym__flag, - STATE(4826), 2, - sym_short_flag, - sym_long_flag, - [203525] = 4, - ACTIONS(249), 1, + aux_sym_cell_path_repeat1, + ACTIONS(973), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [194394] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1074), 1, - anon_sym_DASH, - STATE(5519), 1, + ACTIONS(1006), 1, + anon_sym_DASH2, + STATE(5483), 1, sym_comment, - ACTIONS(1076), 7, + ACTIONS(1008), 8, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - [203544] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8903), 1, - aux_sym_path_token1, - ACTIONS(8935), 1, - anon_sym_DQUOTE, - ACTIONS(8939), 1, - sym_raw_string_begin, - STATE(1227), 1, - sym_val_string, - STATE(5520), 1, - sym_comment, - ACTIONS(8937), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3170), 2, - sym__raw_str, - sym__str_double_quotes, - [203571] = 4, + [194414] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5521), 1, + STATE(5484), 1, sym_comment, - ACTIONS(1060), 3, + ACTIONS(1621), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1623), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1058), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [203590] = 4, - ACTIONS(249), 1, + [194434] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8943), 1, - anon_sym_DASH, - STATE(5522), 1, - sym_comment, - ACTIONS(8941), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(7188), 1, + anon_sym_LPAREN2, + ACTIONS(7242), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [203609] = 5, - ACTIONS(249), 1, + ACTIONS(7248), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7250), 1, + aux_sym__immediate_decimal_token5, + STATE(4735), 1, + sym__immediate_decimal, + STATE(5485), 1, + sym_comment, + ACTIONS(7246), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5067), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194464] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8758), 1, - aux_sym__immediate_decimal_token2, - STATE(5523), 1, + ACTIONS(7823), 1, + sym__newline, + ACTIONS(7825), 1, + sym__space, + ACTIONS(7827), 1, + anon_sym_DASH_DASH, + ACTIONS(7829), 1, + anon_sym_DASH2, + STATE(5486), 1, sym_comment, - ACTIONS(1536), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [203630] = 8, - ACTIONS(249), 1, + STATE(5696), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7409), 1, + sym__flag, + STATE(4685), 2, + sym_short_flag, + sym_long_flag, + [194493] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(445), 1, + STATE(5487), 1, + sym_comment, + ACTIONS(8103), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [194510] = 8, + ACTIONS(235), 1, anon_sym_DQUOTE, - ACTIONS(449), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(249), 1, sym_raw_string_begin, - ACTIONS(8909), 1, + ACTIONS(9077), 1, aux_sym_path_token1, - STATE(1504), 1, + STATE(1538), 1, sym_val_string, - STATE(5524), 1, + STATE(5488), 1, sym_comment, - ACTIONS(447), 2, + ACTIONS(237), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2074), 2, + STATE(1551), 2, sym__raw_str, sym__str_double_quotes, - [203657] = 6, - ACTIONS(249), 1, + [194537] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8945), 1, - anon_sym_EQ2, - ACTIONS(8947), 1, - sym_short_flag_identifier, - STATE(5525), 1, + ACTIONS(998), 1, + anon_sym_DASH2, + STATE(5489), 1, sym_comment, - ACTIONS(4925), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(4927), 3, + ACTIONS(1000), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [203680] = 5, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [194556] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8949), 1, - aux_sym__immediate_decimal_token2, - STATE(5526), 1, + STATE(5490), 1, sym_comment, - ACTIONS(1769), 3, + ACTIONS(1783), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1771), 4, + aux_sym__unquoted_in_list_token2, + ACTIONS(1785), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [203701] = 8, - ACTIONS(249), 1, + [194575] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3544), 1, - anon_sym_DQUOTE, - ACTIONS(3554), 1, + ACTIONS(9081), 1, + anon_sym_COLON, + ACTIONS(9083), 1, + anon_sym_COMMA, + STATE(5491), 1, + sym_comment, + ACTIONS(9079), 6, sym_raw_string_begin, - ACTIONS(8951), 1, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [194596] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9085), 1, + anon_sym_DQUOTE, + ACTIONS(9089), 1, aux_sym_path_token1, - STATE(3618), 1, + ACTIONS(9091), 1, + sym_raw_string_begin, + STATE(1705), 1, sym_val_string, - STATE(5527), 1, + STATE(5492), 1, sym_comment, - ACTIONS(3546), 2, + ACTIONS(9087), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3606), 2, + STATE(1699), 2, sym__raw_str, sym__str_double_quotes, - [203728] = 4, + [194623] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5493), 1, + sym_comment, + ACTIONS(8107), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [194640] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5528), 1, + ACTIONS(9093), 1, + aux_sym__immediate_decimal_token2, + STATE(5494), 1, sym_comment, - ACTIONS(1769), 4, - anon_sym_RBRACK, + ACTIONS(1783), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1771), 4, + aux_sym__unquoted_in_record_token2, + ACTIONS(1785), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [203747] = 6, - ACTIONS(249), 1, + [194661] = 8, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8953), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8955), 1, - aux_sym__immediate_decimal_token2, - STATE(5529), 1, - sym_comment, - ACTIONS(1703), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1705), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203770] = 8, ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2175), 1, sym_raw_string_begin, - ACTIONS(4255), 1, - anon_sym_DQUOTE, - ACTIONS(8957), 1, + ACTIONS(9095), 1, aux_sym_path_token1, - STATE(4653), 1, + STATE(1782), 1, sym_val_string, - STATE(5530), 1, + STATE(5495), 1, sym_comment, - ACTIONS(4257), 2, + ACTIONS(237), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4660), 2, + STATE(1551), 2, sym__raw_str, sym__str_double_quotes, - [203797] = 8, - ACTIONS(249), 1, + [194688] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8959), 1, + ACTIONS(9097), 1, anon_sym_DQUOTE, - ACTIONS(8963), 1, + ACTIONS(9101), 1, aux_sym_path_token1, - ACTIONS(8965), 1, + ACTIONS(9103), 1, sym_raw_string_begin, - STATE(1218), 1, + STATE(1393), 1, sym_val_string, - STATE(5531), 1, + STATE(5496), 1, sym_comment, - ACTIONS(8961), 2, + ACTIONS(9099), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1237), 2, + STATE(1403), 2, sym__raw_str, sym__str_double_quotes, - [203824] = 4, - ACTIONS(249), 1, + [194715] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5073), 1, - anon_sym_DASH, - STATE(5532), 1, + STATE(5497), 1, sym_comment, - ACTIONS(5071), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, + ACTIONS(996), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(994), 5, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [203843] = 8, - ACTIONS(249), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [194734] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5498), 1, + sym_comment, + ACTIONS(1607), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [194753] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8967), 1, + ACTIONS(9105), 1, anon_sym_DQUOTE, - ACTIONS(8971), 1, + ACTIONS(9109), 1, aux_sym_path_token1, - ACTIONS(8973), 1, + ACTIONS(9111), 1, sym_raw_string_begin, - STATE(2220), 1, + STATE(1872), 1, sym_val_string, - STATE(5533), 1, + STATE(5499), 1, sym_comment, - ACTIONS(8969), 2, + ACTIONS(9107), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2092), 2, + STATE(1431), 2, sym__raw_str, sym__str_double_quotes, - [203870] = 8, - ACTIONS(249), 1, + [194780] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8935), 1, - anon_sym_DQUOTE, - ACTIONS(8939), 1, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1657), 1, + sym_cell_path, + STATE(1894), 1, + sym_path, + STATE(5500), 1, + sym_comment, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1771), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [194805] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2062), 1, sym_raw_string_begin, - ACTIONS(8975), 1, + ACTIONS(4329), 1, + anon_sym_DQUOTE, + ACTIONS(9113), 1, aux_sym_path_token1, - STATE(3172), 1, + STATE(4586), 1, sym_val_string, - STATE(5534), 1, + STATE(5501), 1, sym_comment, - ACTIONS(8937), 2, + ACTIONS(4331), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3170), 2, + STATE(4517), 2, sym__raw_str, sym__str_double_quotes, - [203897] = 6, - ACTIONS(249), 1, + [194832] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8977), 1, - anon_sym_DOT, - ACTIONS(8979), 1, - aux_sym__immediate_decimal_token2, - STATE(5535), 1, + STATE(5502), 1, sym_comment, - ACTIONS(1715), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1717), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1623), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203920] = 8, - ACTIONS(249), 1, + ACTIONS(1621), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [194851] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1991), 1, - sym_raw_string_begin, - ACTIONS(4293), 1, + ACTIONS(9115), 1, anon_sym_DQUOTE, - ACTIONS(8981), 1, + ACTIONS(9119), 1, aux_sym_path_token1, - STATE(4554), 1, + ACTIONS(9121), 1, + sym_raw_string_begin, + STATE(2523), 1, sym_val_string, - STATE(5536), 1, + STATE(5503), 1, sym_comment, - ACTIONS(4295), 2, + ACTIONS(9117), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4414), 2, + STATE(2505), 2, sym__raw_str, sym__str_double_quotes, - [203947] = 8, - ACTIONS(249), 1, + [194878] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8983), 1, - anon_sym_DQUOTE, - ACTIONS(8987), 1, + ACTIONS(1006), 1, + anon_sym_DASH2, + STATE(5504), 1, + sym_comment, + ACTIONS(1008), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT, + [194897] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9077), 1, aux_sym_path_token1, - ACTIONS(8989), 1, + ACTIONS(9123), 1, + anon_sym_DQUOTE, + ACTIONS(9127), 1, sym_raw_string_begin, - STATE(1301), 1, + STATE(1538), 1, sym_val_string, - STATE(5537), 1, + STATE(5505), 1, sym_comment, - ACTIONS(8985), 2, + ACTIONS(9125), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1277), 2, + STATE(1344), 2, sym__raw_str, sym__str_double_quotes, - [203974] = 8, - ACTIONS(249), 1, + [194924] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8991), 1, + ACTIONS(1860), 1, + sym_raw_string_begin, + ACTIONS(4367), 1, anon_sym_DQUOTE, - ACTIONS(8995), 1, + ACTIONS(9129), 1, aux_sym_path_token1, - ACTIONS(8997), 1, - sym_raw_string_begin, - STATE(1474), 1, + STATE(4316), 1, sym_val_string, - STATE(5538), 1, + STATE(5506), 1, sym_comment, - ACTIONS(8993), 2, + ACTIONS(4369), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1447), 2, + STATE(4465), 2, sym__raw_str, sym__str_double_quotes, - [204001] = 8, - ACTIONS(235), 1, - anon_sym_DQUOTE, - ACTIONS(249), 1, + [194951] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(251), 1, - sym_raw_string_begin, - ACTIONS(8999), 1, + ACTIONS(9131), 1, + anon_sym_DQUOTE, + ACTIONS(9135), 1, aux_sym_path_token1, - STATE(5539), 1, - sym_comment, - STATE(6728), 1, + ACTIONS(9137), 1, + sym_raw_string_begin, + STATE(1490), 1, sym_val_string, - ACTIONS(237), 2, + STATE(5507), 1, + sym_comment, + ACTIONS(9133), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1540), 2, + STATE(1494), 2, sym__raw_str, sym__str_double_quotes, - [204028] = 8, - ACTIONS(249), 1, + [194978] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9001), 1, + ACTIONS(9139), 1, anon_sym_DQUOTE, - ACTIONS(9005), 1, + ACTIONS(9143), 1, aux_sym_path_token1, - ACTIONS(9007), 1, + ACTIONS(9145), 1, sym_raw_string_begin, - STATE(4175), 1, + STATE(1626), 1, sym_val_string, - STATE(5540), 1, + STATE(5508), 1, sym_comment, - ACTIONS(9003), 2, + ACTIONS(9141), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4257), 2, + STATE(1597), 2, sym__raw_str, sym__str_double_quotes, - [204055] = 8, - ACTIONS(249), 1, + [195005] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9009), 1, + ACTIONS(9147), 1, anon_sym_DQUOTE, - ACTIONS(9013), 1, + ACTIONS(9151), 1, aux_sym_path_token1, - ACTIONS(9015), 1, + ACTIONS(9153), 1, sym_raw_string_begin, - STATE(2665), 1, + STATE(4200), 1, sym_val_string, - STATE(5541), 1, + STATE(5509), 1, sym_comment, - ACTIONS(9011), 2, + ACTIONS(9149), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2646), 2, + STATE(4148), 2, sym__raw_str, sym__str_double_quotes, - [204082] = 8, - ACTIONS(249), 1, + [195032] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9017), 1, + ACTIONS(9155), 1, anon_sym_DQUOTE, - ACTIONS(9021), 1, + ACTIONS(9159), 1, aux_sym_path_token1, - ACTIONS(9023), 1, + ACTIONS(9161), 1, sym_raw_string_begin, - STATE(4130), 1, + STATE(2798), 1, sym_val_string, - STATE(5542), 1, + STATE(5510), 1, sym_comment, - ACTIONS(9019), 2, + ACTIONS(9157), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4134), 2, + STATE(2802), 2, sym__raw_str, sym__str_double_quotes, - [204109] = 8, - ACTIONS(249), 1, + [195059] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9025), 1, + ACTIONS(9163), 1, anon_sym_DQUOTE, - ACTIONS(9029), 1, + ACTIONS(9167), 1, aux_sym_path_token1, - ACTIONS(9031), 1, + ACTIONS(9169), 1, sym_raw_string_begin, - STATE(3444), 1, + STATE(4104), 1, sym_val_string, - STATE(5543), 1, + STATE(5511), 1, sym_comment, - ACTIONS(9027), 2, + ACTIONS(9165), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3456), 2, + STATE(4119), 2, sym__raw_str, sym__str_double_quotes, - [204136] = 8, - ACTIONS(249), 1, + [195086] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(519), 1, + ACTIONS(4543), 1, anon_sym_DQUOTE, - ACTIONS(529), 1, + ACTIONS(4547), 1, sym_raw_string_begin, - ACTIONS(9033), 1, + ACTIONS(9171), 1, aux_sym_path_token1, - STATE(2683), 1, + STATE(3483), 1, sym_val_string, - STATE(5544), 1, + STATE(5512), 1, sym_comment, - ACTIONS(521), 2, + ACTIONS(4545), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1820), 2, + STATE(3335), 2, sym__raw_str, sym__str_double_quotes, - [204163] = 8, - ACTIONS(249), 1, + [195113] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9035), 1, + ACTIONS(9173), 1, anon_sym_DQUOTE, - ACTIONS(9039), 1, + ACTIONS(9177), 1, aux_sym_path_token1, - ACTIONS(9041), 1, + ACTIONS(9179), 1, sym_raw_string_begin, - STATE(1270), 1, + STATE(1414), 1, sym_val_string, - STATE(5545), 1, + STATE(5513), 1, sym_comment, - ACTIONS(9037), 2, + ACTIONS(9175), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1264), 2, + STATE(1430), 2, sym__raw_str, sym__str_double_quotes, - [204190] = 8, - ACTIONS(249), 1, + [195140] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9043), 1, + ACTIONS(9181), 1, anon_sym_DQUOTE, - ACTIONS(9047), 1, + ACTIONS(9185), 1, aux_sym_path_token1, - ACTIONS(9049), 1, + ACTIONS(9187), 1, sym_raw_string_begin, - STATE(4111), 1, + STATE(2744), 1, sym_val_string, - STATE(5546), 1, + STATE(5514), 1, sym_comment, - ACTIONS(9045), 2, + ACTIONS(9183), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4043), 2, + STATE(2745), 2, sym__raw_str, sym__str_double_quotes, - [204217] = 8, - ACTIONS(249), 1, + [195167] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8999), 1, - aux_sym_path_token1, - ACTIONS(9051), 1, + ACTIONS(9189), 1, anon_sym_DQUOTE, - ACTIONS(9055), 1, + ACTIONS(9193), 1, + aux_sym_path_token1, + ACTIONS(9195), 1, sym_raw_string_begin, - STATE(5547), 1, - sym_comment, - STATE(6728), 1, + STATE(2987), 1, sym_val_string, - ACTIONS(9053), 2, + STATE(5515), 1, + sym_comment, + ACTIONS(9191), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6869), 2, + STATE(2990), 2, sym__raw_str, sym__str_double_quotes, - [204244] = 8, - ACTIONS(249), 1, + [195194] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9057), 1, + ACTIONS(9197), 1, anon_sym_DQUOTE, - ACTIONS(9061), 1, + ACTIONS(9201), 1, aux_sym_path_token1, - ACTIONS(9063), 1, + ACTIONS(9203), 1, sym_raw_string_begin, - STATE(2719), 1, + STATE(492), 1, sym_val_string, - STATE(5548), 1, + STATE(5516), 1, sym_comment, - ACTIONS(9059), 2, + ACTIONS(9199), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2697), 2, + STATE(498), 2, sym__raw_str, sym__str_double_quotes, - [204271] = 8, - ACTIONS(249), 1, + [195221] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9065), 1, + ACTIONS(9205), 1, anon_sym_DQUOTE, - ACTIONS(9069), 1, + ACTIONS(9209), 1, aux_sym_path_token1, - ACTIONS(9071), 1, + ACTIONS(9211), 1, sym_raw_string_begin, - STATE(2921), 1, + STATE(576), 1, sym_val_string, - STATE(5549), 1, + STATE(5517), 1, sym_comment, - ACTIONS(9067), 2, + ACTIONS(9207), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2928), 2, + STATE(605), 2, sym__raw_str, sym__str_double_quotes, - [204298] = 6, - ACTIONS(249), 1, + [195248] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9073), 1, - sym_long_flag_identifier, - ACTIONS(9075), 1, - anon_sym_EQ2, - STATE(5550), 1, + ACTIONS(3603), 1, + anon_sym_DQUOTE, + ACTIONS(3613), 1, + sym_raw_string_begin, + ACTIONS(9213), 1, + aux_sym_path_token1, + STATE(4776), 1, + sym_val_string, + STATE(5518), 1, sym_comment, - ACTIONS(4937), 2, - anon_sym_DASH, - anon_sym_as, - ACTIONS(4939), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - [204321] = 8, - ACTIONS(249), 1, + ACTIONS(3605), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4722), 2, + sym__raw_str, + sym__str_double_quotes, + [195275] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9077), 1, + ACTIONS(9215), 1, anon_sym_DQUOTE, - ACTIONS(9081), 1, + ACTIONS(9219), 1, aux_sym_path_token1, - ACTIONS(9083), 1, + ACTIONS(9221), 1, sym_raw_string_begin, - STATE(520), 1, + STATE(4249), 1, sym_val_string, - STATE(5551), 1, + STATE(5519), 1, sym_comment, - ACTIONS(9079), 2, + ACTIONS(9217), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(504), 2, + STATE(4238), 2, sym__raw_str, sym__str_double_quotes, - [204348] = 8, - ACTIONS(249), 1, + [195302] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3592), 1, + ACTIONS(4425), 1, anon_sym_DQUOTE, - ACTIONS(3602), 1, + ACTIONS(4435), 1, sym_raw_string_begin, - ACTIONS(9085), 1, + ACTIONS(9223), 1, aux_sym_path_token1, - STATE(4702), 1, + STATE(3583), 1, sym_val_string, - STATE(5552), 1, + STATE(5520), 1, sym_comment, - ACTIONS(3594), 2, + ACTIONS(4427), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4768), 2, + STATE(3586), 2, sym__raw_str, sym__str_double_quotes, - [204375] = 8, - ACTIONS(249), 1, + [195329] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9087), 1, + ACTIONS(9225), 1, anon_sym_DQUOTE, - ACTIONS(9091), 1, + ACTIONS(9229), 1, aux_sym_path_token1, - ACTIONS(9093), 1, + ACTIONS(9231), 1, sym_raw_string_begin, - STATE(4298), 1, + STATE(2652), 1, sym_val_string, - STATE(5553), 1, + STATE(5521), 1, sym_comment, - ACTIONS(9089), 2, + ACTIONS(9227), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4294), 2, + STATE(2660), 2, sym__raw_str, sym__str_double_quotes, - [204402] = 8, - ACTIONS(249), 1, + [195356] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4349), 1, + ACTIONS(9233), 1, anon_sym_DQUOTE, - ACTIONS(4359), 1, - sym_raw_string_begin, - ACTIONS(9095), 1, + ACTIONS(9237), 1, aux_sym_path_token1, - STATE(3550), 1, + ACTIONS(9239), 1, + sym_raw_string_begin, + STATE(2865), 1, sym_val_string, - STATE(5554), 1, + STATE(5522), 1, sym_comment, - ACTIONS(4351), 2, + ACTIONS(9235), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3545), 2, + STATE(2877), 2, sym__raw_str, sym__str_double_quotes, - [204429] = 8, - ACTIONS(249), 1, + [195383] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9097), 1, + ACTIONS(4495), 1, anon_sym_DQUOTE, - ACTIONS(9101), 1, - aux_sym_path_token1, - ACTIONS(9103), 1, + ACTIONS(4505), 1, sym_raw_string_begin, - STATE(2678), 1, - sym_val_string, - STATE(5555), 1, + ACTIONS(9241), 1, + aux_sym_path_token1, + STATE(5523), 1, sym_comment, - ACTIONS(9099), 2, + STATE(5595), 1, + sym_val_string, + ACTIONS(4497), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2661), 2, + STATE(5530), 2, sym__raw_str, sym__str_double_quotes, - [204456] = 8, - ACTIONS(249), 1, + [195410] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9105), 1, + ACTIONS(9243), 1, anon_sym_DQUOTE, - ACTIONS(9109), 1, + ACTIONS(9247), 1, aux_sym_path_token1, - ACTIONS(9111), 1, + ACTIONS(9249), 1, sym_raw_string_begin, - STATE(2896), 1, + STATE(5447), 1, sym_val_string, - STATE(5556), 1, + STATE(5524), 1, sym_comment, - ACTIONS(9107), 2, + ACTIONS(9245), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2867), 2, + STATE(5358), 2, sym__raw_str, sym__str_double_quotes, - [204483] = 8, - ACTIONS(249), 1, + [195437] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9113), 1, + ACTIONS(9251), 1, anon_sym_DQUOTE, - ACTIONS(9117), 1, + ACTIONS(9255), 1, aux_sym_path_token1, - ACTIONS(9119), 1, + ACTIONS(9257), 1, sym_raw_string_begin, - STATE(168), 1, + STATE(156), 1, sym_val_string, - STATE(5557), 1, + STATE(5525), 1, sym_comment, - ACTIONS(9115), 2, + ACTIONS(9253), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(170), 2, + STATE(158), 2, sym__raw_str, sym__str_double_quotes, - [204510] = 8, - ACTIONS(249), 1, + [195464] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9121), 1, + ACTIONS(9259), 1, anon_sym_DQUOTE, - ACTIONS(9125), 1, + ACTIONS(9263), 1, aux_sym_path_token1, - ACTIONS(9127), 1, + ACTIONS(9265), 1, sym_raw_string_begin, - STATE(465), 1, + STATE(535), 1, sym_val_string, - STATE(5558), 1, + STATE(5526), 1, sym_comment, - ACTIONS(9123), 2, + ACTIONS(9261), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(459), 2, + STATE(564), 2, sym__raw_str, sym__str_double_quotes, - [204537] = 8, - ACTIONS(249), 1, + [195491] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9129), 1, + ACTIONS(9267), 1, anon_sym_DQUOTE, - ACTIONS(9133), 1, + ACTIONS(9271), 1, aux_sym_path_token1, - ACTIONS(9135), 1, + ACTIONS(9273), 1, sym_raw_string_begin, - STATE(339), 1, + STATE(416), 1, sym_val_string, - STATE(5559), 1, + STATE(5527), 1, sym_comment, - ACTIONS(9131), 2, + ACTIONS(9269), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(333), 2, + STATE(432), 2, sym__raw_str, sym__str_double_quotes, - [204564] = 8, - ACTIONS(249), 1, + [195518] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9137), 1, + ACTIONS(9275), 1, anon_sym_DQUOTE, - ACTIONS(9141), 1, + ACTIONS(9279), 1, aux_sym_path_token1, - ACTIONS(9143), 1, + ACTIONS(9281), 1, sym_raw_string_begin, - STATE(315), 1, + STATE(392), 1, sym_val_string, - STATE(5560), 1, + STATE(5528), 1, sym_comment, - ACTIONS(9139), 2, + ACTIONS(9277), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(302), 2, + STATE(396), 2, sym__raw_str, sym__str_double_quotes, - [204591] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(5561), 1, - sym_comment, - ACTIONS(2281), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2285), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204612] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5562), 1, - sym_comment, - ACTIONS(1538), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1536), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [204631] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5563), 1, - sym_comment, - ACTIONS(8070), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [204648] = 4, - ACTIONS(3), 1, + [195545] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5564), 1, + STATE(5529), 1, sym_comment, - ACTIONS(1596), 3, - sym__newline, + ACTIONS(1607), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1598), 5, - sym__space, + ACTIONS(1609), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [204667] = 5, - ACTIONS(249), 1, + [195564] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - ACTIONS(6929), 1, - aux_sym_unquoted_token2, - STATE(5565), 1, + ACTIONS(994), 1, + anon_sym_DASH2, + STATE(5530), 1, sym_comment, - ACTIONS(1640), 6, + ACTIONS(996), 7, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [204688] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1066), 1, - anon_sym_DASH, - STATE(5566), 1, - sym_comment, - ACTIONS(1068), 7, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_DOT, - [204707] = 4, - ACTIONS(249), 1, + [195583] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1070), 1, - anon_sym_DASH, - STATE(5567), 1, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(5531), 1, sym_comment, - ACTIONS(1072), 7, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, + ACTIONS(1030), 3, anon_sym_DASH_DASH, - anon_sym_DOT, - [204726] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(3790), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5568), 1, - sym_comment, - ACTIONS(1672), 4, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(1032), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [204751] = 9, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1628), 1, - sym_identifier, - ACTIONS(1640), 1, - anon_sym_DOLLAR, - ACTIONS(4614), 1, - anon_sym_DOT_DOT2, - ACTIONS(8580), 1, - aux_sym_unquoted_token2, - ACTIONS(9145), 1, - sym_filesize_unit, - ACTIONS(9147), 1, - sym_duration_unit, - STATE(5569), 1, - sym_comment, - ACTIONS(4616), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204780] = 5, + [195604] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2275), 1, + ACTIONS(2212), 1, aux_sym_unquoted_token4, - STATE(5570), 1, + STATE(5532), 1, sym_comment, - ACTIONS(1090), 3, + ACTIONS(2206), 3, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_as, - ACTIONS(1092), 4, + ACTIONS(2210), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [204801] = 5, - ACTIONS(249), 1, + [195625] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8854), 1, - aux_sym__immediate_decimal_token2, - STATE(5571), 1, + ACTIONS(5098), 1, + anon_sym_DASH2, + STATE(5533), 1, + sym_comment, + ACTIONS(5096), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [195644] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5534), 1, sym_comment, - ACTIONS(1715), 2, + ACTIONS(1621), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1717), 5, + ACTIONS(1623), 6, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [204822] = 5, - ACTIONS(249), 1, + sym_filesize_unit, + sym_duration_unit, + [195663] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9151), 1, - anon_sym_COLON, - ACTIONS(9153), 1, - anon_sym_COMMA, - STATE(5572), 1, + ACTIONS(9050), 1, + aux_sym__immediate_decimal_token2, + STATE(5535), 1, sym_comment, - ACTIONS(9149), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [204843] = 4, - ACTIONS(249), 1, + ACTIONS(1755), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1757), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [195684] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5573), 1, + ACTIONS(9283), 1, + anon_sym_QMARK2, + STATE(5536), 1, sym_comment, - ACTIONS(1530), 3, - anon_sym_DOLLAR, + ACTIONS(980), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1528), 5, - sym_identifier, + sym__entry_separator, + ACTIONS(978), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [195705] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9285), 1, + aux_sym__immediate_decimal_token2, + STATE(5537), 1, + sym_comment, + ACTIONS(1673), 2, anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1675), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [204862] = 3, - ACTIONS(249), 1, + [195726] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5574), 1, + STATE(5538), 1, sym_comment, - ACTIONS(7753), 8, + 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, + [195745] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9105), 1, + anon_sym_DQUOTE, + ACTIONS(9111), 1, sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, + ACTIONS(9287), 1, + aux_sym_path_token1, + STATE(1439), 1, + sym_val_string, + STATE(5539), 1, + sym_comment, + ACTIONS(9107), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1431), 2, + sym__raw_str, + sym__str_double_quotes, + [195772] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9289), 1, anon_sym_DQUOTE, + ACTIONS(9293), 1, + aux_sym_path_token1, + ACTIONS(9295), 1, + sym_raw_string_begin, + STATE(5540), 1, + sym_comment, + STATE(6008), 1, + sym_val_string, + ACTIONS(9291), 2, sym__str_single_quotes, sym__str_back_ticks, - [204879] = 5, + STATE(6046), 2, + sym__raw_str, + sym__str_double_quotes, + [195799] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2220), 1, aux_sym_unquoted_token4, - STATE(5575), 1, + STATE(5541), 1, sym_comment, - ACTIONS(2293), 3, + ACTIONS(2214), 3, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_as, - ACTIONS(2297), 4, + ACTIONS(2218), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [195820] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5102), 1, + anon_sym_DASH2, + STATE(5542), 1, + sym_comment, + ACTIONS(5100), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, - [204900] = 4, + anon_sym_as, + [195839] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5576), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(5543), 1, sym_comment, - ACTIONS(2289), 4, + ACTIONS(2222), 3, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_as, - aux_sym_unquoted_token4, - ACTIONS(2291), 4, + ACTIONS(2224), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [204919] = 9, + [195860] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9297), 1, + aux_sym__immediate_decimal_token2, + STATE(5544), 1, + sym_comment, + ACTIONS(1783), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1785), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195881] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1628), 1, + STATE(5545), 1, + sym_comment, + ACTIONS(1673), 3, sym__newline, - ACTIONS(1640), 1, - sym__space, - ACTIONS(4614), 1, anon_sym_DOT_DOT2, - ACTIONS(7021), 1, aux_sym_unquoted_token2, - ACTIONS(9155), 1, - sym_filesize_unit, - ACTIONS(9157), 1, - sym_duration_unit, - STATE(5577), 1, - sym_comment, - ACTIONS(4616), 2, + ACTIONS(1675), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [204948] = 4, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [195900] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5578), 1, + ACTIONS(9299), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9301), 1, + aux_sym__immediate_decimal_token2, + STATE(5546), 1, sym_comment, - ACTIONS(1826), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1739), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1828), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1741), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [204967] = 5, - ACTIONS(249), 1, + [195923] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4947), 1, - anon_sym_DASH, - ACTIONS(9159), 1, - anon_sym_EQ2, - STATE(5579), 1, + ACTIONS(5130), 1, + anon_sym_DASH2, + STATE(5547), 1, sym_comment, - ACTIONS(4945), 6, + ACTIONS(5128), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, anon_sym_as, - [204988] = 4, - ACTIONS(3), 1, + [195942] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5580), 1, - sym_comment, - ACTIONS(1711), 3, - sym__newline, - anon_sym_DOT_DOT2, + ACTIONS(1709), 1, + anon_sym_DASH2, + ACTIONS(6458), 1, aux_sym_unquoted_token2, - ACTIONS(1713), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [205007] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5053), 1, - anon_sym_DASH, - STATE(5581), 1, + STATE(5548), 1, sym_comment, - ACTIONS(5051), 7, + ACTIONS(1721), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, anon_sym_as, - [205026] = 4, - ACTIONS(249), 1, + [195963] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5582), 1, + ACTIONS(1002), 1, + anon_sym_DASH2, + STATE(5549), 1, sym_comment, - ACTIONS(1598), 3, + ACTIONS(1004), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [195982] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + sym_identifier, + ACTIONS(1721), 1, anon_sym_DOLLAR, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + ACTIONS(8677), 1, + aux_sym_unquoted_token2, + ACTIONS(9303), 1, + sym_filesize_unit, + ACTIONS(9305), 1, + sym_duration_unit, + STATE(5550), 1, + sym_comment, + ACTIONS(4710), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1596), 5, - sym_identifier, + [196011] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5551), 1, + sym_comment, + ACTIONS(1673), 2, anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1675), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [205045] = 4, - ACTIONS(249), 1, + [196030] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5061), 1, - anon_sym_DASH, - STATE(5583), 1, + ACTIONS(1010), 1, + anon_sym_DASH2, + STATE(5552), 1, sym_comment, - ACTIONS(5059), 7, + ACTIONS(1012), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, anon_sym_as, - [205064] = 5, - ACTIONS(249), 1, + anon_sym_DOT, + [196049] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9161), 1, - aux_sym__immediate_decimal_token2, - STATE(5584), 1, - sym_comment, - ACTIONS(1769), 2, - anon_sym_DOT_DOT2, + ACTIONS(4864), 1, aux_sym_unquoted_token2, - ACTIONS(1771), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(9307), 1, + anon_sym_DOT_DOT2, + ACTIONS(9311), 1, + sym_filesize_unit, + ACTIONS(9313), 1, + sym_duration_unit, + STATE(5553), 1, + sym_comment, + ACTIONS(1721), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9309), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [205085] = 3, - ACTIONS(249), 1, + [196076] = 8, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5585), 1, + ACTIONS(9315), 1, + aux_sym_path_token1, + STATE(2094), 1, + sym_val_string, + STATE(5554), 1, sym_comment, - ACTIONS(9163), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_DQUOTE, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - [205102] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1664), 1, - anon_sym_DOT_DOT2, - ACTIONS(8875), 1, - anon_sym_DOT, - STATE(1268), 1, - sym_path, - STATE(1681), 1, - sym_cell_path, - STATE(5586), 1, - sym_comment, - STATE(5727), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1668), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205129] = 5, - ACTIONS(249), 1, + STATE(2091), 2, + sym__raw_str, + sym__str_double_quotes, + [196103] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4991), 1, - anon_sym_DASH, - ACTIONS(9165), 1, - anon_sym_EQ2, - STATE(5587), 1, + ACTIONS(1014), 1, + anon_sym_DASH2, + STATE(5555), 1, sym_comment, - ACTIONS(4989), 6, + ACTIONS(1016), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [205150] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1670), 1, - anon_sym_DOT_DOT2, - ACTIONS(8875), 1, anon_sym_DOT, - STATE(1268), 1, - sym_path, - STATE(1635), 1, - sym_cell_path, - STATE(5588), 1, - sym_comment, - STATE(5727), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1672), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205177] = 5, - ACTIONS(249), 1, + [196122] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9169), 1, - anon_sym_COLON, - ACTIONS(9171), 1, - anon_sym_COMMA, - STATE(5589), 1, + STATE(5556), 1, sym_comment, - ACTIONS(9167), 6, + ACTIONS(996), 8, sym_raw_string_begin, sym_identifier, - anon_sym_GT, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [205198] = 5, - ACTIONS(3), 1, + [196139] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(5590), 1, + ACTIONS(5053), 1, + anon_sym_DASH2, + ACTIONS(9317), 1, + anon_sym_EQ2, + STATE(5557), 1, sym_comment, - ACTIONS(2303), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2305), 4, + ACTIONS(5051), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [205219] = 5, - ACTIONS(249), 1, + anon_sym_as, + [196160] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9173), 1, + ACTIONS(9002), 1, aux_sym__immediate_decimal_token2, - STATE(5591), 1, + STATE(5558), 1, sym_comment, - ACTIONS(1596), 2, + ACTIONS(1607), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1598), 5, - anon_sym_in, + ACTIONS(1609), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [205240] = 5, - ACTIONS(249), 1, + [196181] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9175), 1, + ACTIONS(8942), 1, aux_sym__immediate_decimal_token2, - STATE(5592), 1, + STATE(5559), 1, sym_comment, - ACTIONS(1769), 2, + ACTIONS(1755), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1771), 5, + ACTIONS(1757), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [205261] = 4, - ACTIONS(249), 1, + [196202] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5593), 1, + ACTIONS(9319), 1, + anon_sym_DOT, + ACTIONS(9321), 1, + aux_sym__immediate_decimal_token2, + STATE(5560), 1, sym_comment, - ACTIONS(1713), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 5, - sym_identifier, + ACTIONS(1755), 2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [205280] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6506), 1, - sym_filesize_unit, - ACTIONS(6508), 1, - sym_duration_unit, - ACTIONS(8580), 1, aux_sym_unquoted_token2, - ACTIONS(9177), 1, - anon_sym_DOT_DOT2, - STATE(5594), 1, - sym_comment, - ACTIONS(1640), 2, + ACTIONS(1757), 4, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(9179), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [205307] = 8, - ACTIONS(249), 1, + [196225] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9323), 1, + anon_sym_DASH_DASH, + ACTIONS(9326), 1, + anon_sym_DASH2, + STATE(6126), 1, + sym__flag, + ACTIONS(8567), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + STATE(5561), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [196250] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3494), 1, + ACTIONS(3127), 1, anon_sym_DQUOTE, - ACTIONS(3504), 1, + ACTIONS(3133), 1, sym_raw_string_begin, - ACTIONS(9033), 1, + ACTIONS(9329), 1, aux_sym_path_token1, - STATE(2683), 1, - sym_val_string, - STATE(5595), 1, + STATE(5562), 1, sym_comment, - ACTIONS(3496), 2, + STATE(5568), 1, + sym_val_string, + ACTIONS(3129), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2932), 2, + STATE(5497), 2, sym__raw_str, sym__str_double_quotes, - [205334] = 3, - ACTIONS(249), 1, + [196277] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5596), 1, + ACTIONS(5016), 1, + anon_sym_DASH2, + ACTIONS(9331), 1, + anon_sym_EQ2, + STATE(5563), 1, + sym_comment, + ACTIONS(5014), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [196298] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5564), 1, sym_comment, - ACTIONS(8086), 8, + ACTIONS(8111), 8, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, - anon_sym_GT, + anon_sym_GT2, anon_sym_AT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [205351] = 4, - ACTIONS(3), 1, + [196315] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5597), 1, + STATE(5565), 1, sym_comment, - ACTIONS(1536), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1538), 5, - sym__space, + ACTIONS(1765), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1763), 5, + sym_identifier, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [205370] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5598), 1, - sym_comment, - ACTIONS(1060), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [205387] = 8, - ACTIONS(249), 1, + aux_sym_unquoted_token2, + [196334] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9181), 1, + ACTIONS(4009), 1, anon_sym_DQUOTE, - ACTIONS(9185), 1, - aux_sym_path_token1, - ACTIONS(9187), 1, + ACTIONS(4013), 1, sym_raw_string_begin, - STATE(1244), 1, + ACTIONS(9333), 1, + aux_sym_path_token1, + STATE(5251), 1, sym_val_string, - STATE(5599), 1, + STATE(5566), 1, sym_comment, - ACTIONS(9183), 2, + ACTIONS(4011), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1266), 2, + STATE(4492), 2, sym__raw_str, sym__str_double_quotes, - [205414] = 8, - ACTIONS(249), 1, + [196361] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1021), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4587), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5519), 1, - sym_path, - STATE(5600), 1, + ACTIONS(9337), 1, + anon_sym_DASH2, + STATE(5567), 1, sym_comment, - ACTIONS(1023), 3, + ACTIONS(9335), 7, sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205441] = 4, + [196380] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5601), 1, + ACTIONS(9339), 1, + anon_sym_QMARK2, + STATE(5568), 1, sym_comment, - ACTIONS(1715), 4, + ACTIONS(986), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(984), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 4, - anon_sym_LPAREN2, + anon_sym_DOT, + [196401] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + sym__newline, + ACTIONS(1721), 1, + sym__space, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + ACTIONS(7157), 1, + aux_sym_unquoted_token2, + ACTIONS(9341), 1, + sym_filesize_unit, + ACTIONS(9343), 1, + sym_duration_unit, + STATE(5569), 1, + sym_comment, + ACTIONS(4710), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [205460] = 3, - ACTIONS(249), 1, + [196430] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5602), 1, + ACTIONS(5168), 1, + anon_sym_DASH2, + STATE(5570), 1, + sym_comment, + ACTIONS(5166), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [196449] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5571), 1, sym_comment, - ACTIONS(8078), 8, + ACTIONS(1000), 8, sym_raw_string_begin, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [205477] = 3, - ACTIONS(249), 1, + [196466] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5603), 1, + STATE(5572), 1, sym_comment, - ACTIONS(8116), 8, + ACTIONS(1004), 8, sym_raw_string_begin, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [205494] = 8, - ACTIONS(249), 1, + [196483] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9189), 1, - anon_sym_DQUOTE, - ACTIONS(9193), 1, - aux_sym_path_token1, - ACTIONS(9195), 1, - sym_raw_string_begin, - STATE(2417), 1, - sym_val_string, - STATE(5604), 1, + STATE(5573), 1, sym_comment, - ACTIONS(9191), 2, + ACTIONS(1739), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [196502] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5574), 1, + sym_comment, + ACTIONS(9345), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(2366), 2, - sym__raw_str, - sym__str_double_quotes, - [205521] = 8, - ACTIONS(249), 1, + [196519] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3842), 1, + ACTIONS(9347), 1, anon_sym_DQUOTE, - ACTIONS(3848), 1, - sym_raw_string_begin, - ACTIONS(9033), 1, + ACTIONS(9351), 1, aux_sym_path_token1, - STATE(2683), 1, - sym_val_string, - STATE(5605), 1, + ACTIONS(9353), 1, + sym_raw_string_begin, + STATE(5575), 1, sym_comment, - ACTIONS(3844), 2, + STATE(6092), 1, + sym_val_string, + ACTIONS(9349), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4434), 2, + STATE(6067), 2, sym__raw_str, sym__str_double_quotes, - [205548] = 3, - ACTIONS(249), 1, + [196546] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5606), 1, + ACTIONS(978), 1, + anon_sym_DASH2, + ACTIONS(9355), 1, + anon_sym_QMARK2, + STATE(5576), 1, + sym_comment, + ACTIONS(980), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT, + [196567] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5577), 1, sym_comment, - ACTIONS(8082), 8, + ACTIONS(8093), 8, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, - anon_sym_GT, + anon_sym_GT2, anon_sym_AT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [205565] = 5, + [196584] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9197), 1, - anon_sym_QMARK2, - STATE(5607), 1, + STATE(5578), 1, sym_comment, - ACTIONS(1050), 3, + ACTIONS(992), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1048), 4, + ACTIONS(990), 5, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [205586] = 8, - ACTIONS(249), 1, + [196603] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1901), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4923), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5608), 1, + STATE(5579), 1, sym_comment, - ACTIONS(1903), 3, - anon_sym_DOLLAR, + ACTIONS(2248), 4, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205613] = 3, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_as, + aux_sym_unquoted_token4, + ACTIONS(2250), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [196622] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5609), 1, + STATE(5580), 1, + sym_comment, + ACTIONS(1675), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1673), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [196641] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5581), 1, + sym_comment, + ACTIONS(1763), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1765), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196660] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8917), 1, + aux_sym__immediate_decimal_token2, + STATE(5582), 1, + sym_comment, + ACTIONS(1607), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 5, + anon_sym_in2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196681] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9357), 1, + aux_sym__immediate_decimal_token2, + STATE(5583), 1, + sym_comment, + ACTIONS(1673), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1675), 5, + anon_sym_in2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196702] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5584), 1, sym_comment, - ACTIONS(1064), 8, + ACTIONS(992), 8, sym_raw_string_begin, sym_identifier, anon_sym_COLON, anon_sym_COMMA, - anon_sym_GT, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [205630] = 3, - ACTIONS(249), 1, + [196719] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5610), 1, - sym_comment, - ACTIONS(1040), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(9109), 1, + aux_sym_path_token1, + ACTIONS(9359), 1, anon_sym_DQUOTE, + ACTIONS(9363), 1, + sym_raw_string_begin, + STATE(1872), 1, + sym_val_string, + STATE(5585), 1, + sym_comment, + ACTIONS(9361), 2, sym__str_single_quotes, sym__str_back_ticks, - [205647] = 4, - ACTIONS(249), 1, + STATE(1877), 2, + sym__raw_str, + sym__str_double_quotes, + [196746] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DASH, - STATE(5611), 1, + STATE(5586), 1, sym_comment, - ACTIONS(5075), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, + ACTIONS(1000), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(998), 5, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [205666] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1893), 1, - anon_sym_DASH, - ACTIONS(8542), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4891), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5519), 1, - sym_path, - STATE(5612), 1, + [196765] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5587), 1, sym_comment, - ACTIONS(1895), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [205693] = 4, - ACTIONS(249), 1, + ACTIONS(1621), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1623), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196784] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5085), 1, - anon_sym_DASH, - STATE(5613), 1, + ACTIONS(9077), 1, + aux_sym_path_token1, + ACTIONS(9365), 1, + anon_sym_DQUOTE, + ACTIONS(9369), 1, + sym_raw_string_begin, + STATE(1538), 1, + sym_val_string, + STATE(5588), 1, sym_comment, - ACTIONS(5083), 7, + ACTIONS(9367), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1730), 2, + sym__raw_str, + sym__str_double_quotes, + [196811] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5172), 1, + anon_sym_DASH2, + STATE(5589), 1, + sym_comment, + ACTIONS(5170), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_in2, anon_sym_RBRACE, anon_sym_as, - [205712] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4927), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5614), 1, - sym_comment, - ACTIONS(1911), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205739] = 8, - ACTIONS(249), 1, + [196830] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(4897), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5519), 1, - sym_path, - STATE(5615), 1, - sym_comment, - ACTIONS(1899), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [205766] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1929), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4901), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5616), 1, + ACTIONS(9371), 1, + aux_sym__immediate_decimal_token2, + STATE(5590), 1, sym_comment, - ACTIONS(1931), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205793] = 8, - ACTIONS(249), 1, + ACTIONS(1783), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1785), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [196851] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1993), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4902), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5617), 1, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(9373), 1, + aux_sym_path_token1, + STATE(1819), 1, + sym_val_string, + STATE(5591), 1, sym_comment, - ACTIONS(1995), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205820] = 8, - ACTIONS(249), 1, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1821), 2, + sym__raw_str, + sym__str_double_quotes, + [196878] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1997), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4903), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5618), 1, + ACTIONS(990), 1, + anon_sym_DASH2, + STATE(5592), 1, sym_comment, - ACTIONS(1999), 3, - anon_sym_DOLLAR, + ACTIONS(992), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205847] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH, - ACTIONS(8268), 1, + anon_sym_as, + anon_sym_QMARK2, anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4904), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5619), 1, - sym_comment, - ACTIONS(2003), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205874] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9199), 1, - anon_sym_DASH_DASH, - ACTIONS(9202), 1, - anon_sym_DASH, - STATE(6018), 1, - sym__flag, - ACTIONS(8464), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - STATE(5620), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [205899] = 8, - ACTIONS(249), 1, + [196897] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2005), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4905), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5621), 1, + ACTIONS(5164), 1, + anon_sym_DASH2, + STATE(5593), 1, sym_comment, - ACTIONS(2007), 3, - anon_sym_DOLLAR, + ACTIONS(5162), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205926] = 8, - ACTIONS(249), 1, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [196916] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2009), 1, - anon_sym_DASH, - ACTIONS(8268), 1, + ACTIONS(961), 1, + anon_sym_DASH2, + ACTIONS(8607), 1, anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4906), 1, + STATE(4572), 1, sym_cell_path, - STATE(5224), 1, + STATE(5196), 1, aux_sym_cell_path_repeat1, - STATE(5622), 1, - sym_comment, - ACTIONS(2011), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205953] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2013), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, + STATE(5483), 1, sym_path, - STATE(4907), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5623), 1, + STATE(5594), 1, sym_comment, - ACTIONS(2015), 3, + ACTIONS(963), 3, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205980] = 8, - ACTIONS(249), 1, + [196943] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2017), 1, - anon_sym_DASH, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4908), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5624), 1, + ACTIONS(984), 1, + anon_sym_DASH2, + ACTIONS(9375), 1, + anon_sym_QMARK2, + STATE(5595), 1, sym_comment, - ACTIONS(2019), 3, - anon_sym_DOLLAR, + ACTIONS(986), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [206007] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2021), 1, - anon_sym_DASH, - ACTIONS(8268), 1, + anon_sym_as, anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(4909), 1, - sym_cell_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_comment, - ACTIONS(2023), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [206034] = 8, - ACTIONS(249), 1, + [196964] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9205), 1, + ACTIONS(9377), 1, anon_sym_DQUOTE, - ACTIONS(9209), 1, + ACTIONS(9381), 1, aux_sym_path_token1, - ACTIONS(9211), 1, + ACTIONS(9383), 1, sym_raw_string_begin, - STATE(425), 1, + STATE(2568), 1, sym_val_string, - STATE(5626), 1, + STATE(5596), 1, sym_comment, - ACTIONS(9207), 2, + ACTIONS(9379), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(429), 2, + STATE(2573), 2, sym__raw_str, sym__str_double_quotes, - [206061] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9213), 1, - anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - ACTIONS(9217), 1, - anon_sym_LBRACE, - STATE(5627), 1, - sym_comment, - STATE(7393), 1, - sym_val_record, - STATE(7592), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [206087] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2057), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5628), 1, - sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - STATE(6851), 1, - sym_cell_path, - ACTIONS(2055), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [206113] = 8, - ACTIONS(3), 1, + [196991] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2015), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5629), 1, + STATE(5597), 1, sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - STATE(7053), 1, - sym_cell_path, - ACTIONS(2013), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [206139] = 4, - ACTIONS(249), 1, + ACTIONS(8099), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197008] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5630), 1, + STATE(5598), 1, sym_comment, - ACTIONS(1528), 2, + ACTIONS(1763), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1530), 5, - anon_sym_in, + ACTIONS(1765), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [206157] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5631), 1, - sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - STATE(7080), 1, - sym_cell_path, - ACTIONS(2075), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [206183] = 4, - ACTIONS(249), 1, + [197027] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5632), 1, + STATE(5599), 1, sym_comment, - ACTIONS(1769), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1771), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1609), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206201] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5633), 1, - sym_comment, - ACTIONS(1596), 2, + ACTIONS(1607), 5, + sym_identifier, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1598), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [206219] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9223), 1, - anon_sym_DASH, - STATE(5634), 1, - sym_comment, - ACTIONS(9221), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [206237] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5635), 1, - sym_comment, - ACTIONS(1826), 2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1828), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206255] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9225), 1, - sym_identifier, - ACTIONS(9227), 1, - anon_sym_DASH_DASH, - ACTIONS(9229), 1, - anon_sym_DASH, - STATE(5636), 1, - sym_comment, - STATE(5729), 1, - aux_sym_ctrl_do_repeat1, - STATE(6018), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [206281] = 4, - ACTIONS(249), 1, + [197046] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5637), 1, + ACTIONS(9054), 1, + aux_sym__immediate_decimal_token2, + STATE(5600), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1755), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1713), 5, - anon_sym_in, + ACTIONS(1757), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [206299] = 8, - ACTIONS(249), 1, + [197067] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_LBRACE, - ACTIONS(6512), 1, - sym_filesize_unit, - ACTIONS(6514), 1, - sym_duration_unit, - ACTIONS(8580), 1, - aux_sym_unquoted_token2, - ACTIONS(9231), 1, - anon_sym_DOT_DOT2, - STATE(5638), 1, + STATE(5601), 1, sym_comment, - ACTIONS(9233), 2, + ACTIONS(1004), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206325] = 9, - ACTIONS(249), 1, + sym__entry_separator, + ACTIONS(1002), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [197086] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(9235), 1, - anon_sym_alias, - ACTIONS(9237), 1, - anon_sym_const, - ACTIONS(9239), 1, - anon_sym_def, - ACTIONS(9241), 1, - anon_sym_extern, - ACTIONS(9243), 1, - anon_sym_module, - ACTIONS(9245), 1, - anon_sym_use, - STATE(5639), 1, + ACTIONS(4009), 1, + anon_sym_DQUOTE, + ACTIONS(4013), 1, + sym_raw_string_begin, + ACTIONS(9373), 1, + aux_sym_path_token1, + STATE(1819), 1, + sym_val_string, + STATE(5602), 1, sym_comment, - [206353] = 8, - ACTIONS(249), 1, + ACTIONS(4011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4492), 2, + sym__raw_str, + sym__str_double_quotes, + [197113] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - ACTIONS(9213), 1, - anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5640), 1, + ACTIONS(9123), 1, + anon_sym_DQUOTE, + ACTIONS(9127), 1, + sym_raw_string_begin, + ACTIONS(9385), 1, + aux_sym_path_token1, + STATE(1377), 1, + sym_val_string, + STATE(5603), 1, sym_comment, - STATE(6308), 1, - sym_block, - STATE(7512), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [206379] = 8, - ACTIONS(249), 1, + ACTIONS(9125), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1344), 2, + sym__raw_str, + sym__str_double_quotes, + [197140] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - ACTIONS(9213), 1, - anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5641), 1, + ACTIONS(9387), 1, + anon_sym_EQ2, + ACTIONS(9389), 1, + sym_short_flag_identifier, + STATE(5604), 1, sym_comment, - STATE(6327), 1, - sym_block, - STATE(7520), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [206405] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - ACTIONS(9213), 1, + ACTIONS(4956), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(4958), 3, anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5642), 1, - sym_comment, - STATE(6330), 1, - sym_block, - STATE(7522), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [206431] = 4, - ACTIONS(249), 1, + anon_sym_DASH2, + anon_sym_as, + [197163] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5643), 1, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1679), 1, + sym_cell_path, + STATE(1894), 1, + sym_path, + STATE(5605), 1, sym_comment, - ACTIONS(1769), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1771), 5, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1737), 4, sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197188] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(6408), 1, + anon_sym_DOT, + STATE(1642), 1, + sym_path, + STATE(3175), 1, + sym_cell_path, + STATE(3390), 1, + aux_sym_cell_path_repeat1, + STATE(5606), 1, + sym_comment, + ACTIONS(963), 3, anon_sym_LBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206449] = 7, - ACTIONS(249), 1, + [197215] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5607), 1, + sym_comment, + ACTIONS(7953), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197232] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, + ACTIONS(8960), 1, anon_sym_DOT, - STATE(2752), 1, + STATE(1894), 1, sym_path, - STATE(5644), 1, + STATE(5608), 1, sym_comment, - STATE(5919), 1, + STATE(5613), 1, aux_sym_cell_path_repeat1, - STATE(6905), 1, - sym_cell_path, - ACTIONS(5853), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206473] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(969), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(9213), 1, - anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5645), 1, - sym_comment, - STATE(7087), 1, - sym_block, - STATE(7408), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [206499] = 8, - ACTIONS(249), 1, + anon_sym_RBRACE, + [197255] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - ACTIONS(9213), 1, + ACTIONS(9391), 1, anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5646), 1, - sym_comment, - STATE(6402), 1, - sym_block, - STATE(7528), 1, + ACTIONS(9394), 1, + anon_sym_DASH2, + STATE(6126), 1, sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [206525] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9227), 1, - anon_sym_DASH_DASH, - ACTIONS(9229), 1, - anon_sym_DASH, - ACTIONS(9249), 1, + ACTIONS(8567), 2, sym_identifier, - STATE(5647), 1, + anon_sym_DOLLAR, + STATE(5609), 2, sym_comment, - STATE(5708), 1, aux_sym_ctrl_do_repeat1, - STATE(6018), 1, - sym__flag, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [206551] = 3, - ACTIONS(249), 1, + [197280] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5648), 1, + ACTIONS(9397), 1, + sym_long_flag_identifier, + ACTIONS(9399), 1, + anon_sym_EQ2, + STATE(5610), 1, sym_comment, - ACTIONS(5572), 7, + ACTIONS(4938), 2, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(4936), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + [197303] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9403), 1, + anon_sym_COLON, + ACTIONS(9405), 1, + anon_sym_COMMA, + STATE(5611), 1, + sym_comment, + ACTIONS(9401), 6, sym_raw_string_begin, sym_identifier, - anon_sym_COMMA, - anon_sym_GT, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [206567] = 8, - ACTIONS(249), 1, + [197324] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5176), 1, + anon_sym_DASH2, + STATE(5612), 1, + sym_comment, + ACTIONS(5174), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [197343] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(9407), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(5613), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(973), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(9213), 1, + anon_sym_RBRACE, + [197364] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5614), 1, + sym_comment, + ACTIONS(1890), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [197383] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3477), 1, + anon_sym_DQUOTE, + ACTIONS(3487), 1, + sym_raw_string_begin, + ACTIONS(9410), 1, + aux_sym_path_token1, + STATE(3547), 1, + sym_val_string, + STATE(5615), 1, + sym_comment, + ACTIONS(3479), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3584), 2, + sym__raw_str, + sym__str_double_quotes, + [197410] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5145), 1, + anon_sym_DASH2, + STATE(5616), 1, + sym_comment, + ACTIONS(5143), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5649), 1, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [197429] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5180), 1, + anon_sym_DASH2, + STATE(5617), 1, sym_comment, - STATE(6823), 1, - sym_block, - STATE(7429), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [206593] = 3, - ACTIONS(249), 1, + ACTIONS(5178), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [197448] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5650), 1, + STATE(5618), 1, sym_comment, - ACTIONS(5592), 7, + ACTIONS(8089), 8, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, - anon_sym_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [206609] = 7, - ACTIONS(249), 1, + [197465] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2005), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5651), 1, + STATE(5619), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1931), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206633] = 7, - ACTIONS(249), 1, + ACTIONS(1755), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1757), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197483] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2047), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5652), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, + anon_sym_DASH_DASH, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5620), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1995), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206657] = 7, - ACTIONS(249), 1, + STATE(6595), 1, + sym_block, + STATE(7367), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [197509] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2002), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5653), 1, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(5621), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1999), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206681] = 3, - ACTIONS(249), 1, + ACTIONS(2206), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2210), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [197529] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5654), 1, + ACTIONS(1721), 1, + anon_sym_LBRACE, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + ACTIONS(9416), 1, + sym_filesize_unit, + ACTIONS(9418), 1, + sym_duration_unit, + STATE(5622), 1, + sym_comment, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197555] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5623), 1, sym_comment, - ACTIONS(5596), 7, + ACTIONS(5689), 7, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, - anon_sym_GT, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [206697] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2012), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5655), 1, - sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2003), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206721] = 8, + [197571] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1903), 1, + ACTIONS(1994), 1, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5656), 1, + STATE(5624), 1, sym_comment, - STATE(5793), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6234), 1, sym_path, - STATE(7004), 1, + STATE(6768), 1, sym_cell_path, - ACTIONS(1901), 2, + ACTIONS(1992), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [206747] = 8, - ACTIONS(249), 1, + [197597] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1006), 1, + anon_sym_DASH2, + STATE(5625), 1, + sym_comment, + ACTIONS(1008), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT, + [197615] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - ACTIONS(9213), 1, + ACTIONS(9412), 1, anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5657), 1, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5626), 1, sym_comment, - STATE(6836), 1, + STATE(6801), 1, sym_block, - STATE(7491), 1, + STATE(7509), 1, sym__flag, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [206773] = 7, - ACTIONS(249), 1, + [197641] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2007), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5658), 1, + ACTIONS(1878), 1, + anon_sym_RBRACE, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1886), 1, + sym__entry_separator, + ACTIONS(1888), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(9422), 1, + anon_sym_DOT_DOT2, + STATE(5627), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2007), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206797] = 7, - ACTIONS(249), 1, + ACTIONS(9424), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197667] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2011), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5659), 1, + STATE(5628), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2011), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206821] = 3, - ACTIONS(249), 1, + ACTIONS(1673), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1675), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [197685] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5660), 1, + STATE(5629), 1, sym_comment, - ACTIONS(5603), 7, + ACTIONS(5693), 7, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, - anon_sym_GT, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [206837] = 7, - ACTIONS(249), 1, + [197701] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(8299), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8301), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9426), 1, anon_sym_DOT, - STATE(2013), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5661), 1, + STATE(5630), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2015), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206861] = 7, - ACTIONS(249), 1, + STATE(6115), 1, + sym__immediate_decimal, + ACTIONS(8297), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [197727] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2019), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5662), 1, + STATE(5631), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2019), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206885] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9247), 1, + ACTIONS(1008), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1006), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(2020), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5663), 1, - sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2023), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206909] = 7, - ACTIONS(249), 1, + [197745] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2022), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5664), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(9428), 1, + anon_sym_DOT_DOT2, + STATE(5632), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2045), 3, + ACTIONS(9430), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1874), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [206933] = 7, - ACTIONS(249), 1, + [197767] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2023), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5665), 1, + STATE(5633), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2049), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206957] = 8, + ACTIONS(8211), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [197783] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1995), 1, + ACTIONS(1998), 1, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5666), 1, + STATE(5634), 1, sym_comment, - STATE(5793), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6234), 1, sym_path, - STATE(6861), 1, + STATE(6770), 1, sym_cell_path, - ACTIONS(1993), 2, + ACTIONS(1996), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [206983] = 7, - ACTIONS(249), 1, + [197809] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2024), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5667), 1, + ACTIONS(9412), 1, + anon_sym_DASH_DASH, + ACTIONS(9414), 1, + anon_sym_DASH2, + ACTIONS(9432), 1, + anon_sym_LBRACE, + STATE(5635), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2053), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207007] = 7, - ACTIONS(249), 1, + STATE(7177), 1, + sym_val_record, + STATE(7361), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [197835] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2027), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5668), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(5636), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2057), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207031] = 7, + ACTIONS(2214), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2218), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [197855] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9251), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(5637), 1, + sym_comment, + ACTIONS(2222), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2224), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [197875] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2108), 1, + sym__entry_separator, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5669), 1, + STATE(5638), 1, sym_comment, - STATE(5771), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6329), 1, + STATE(6234), 1, sym_path, - STATE(7214), 1, + STATE(7207), 1, sym_cell_path, - ACTIONS(1901), 3, + ACTIONS(2106), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [207055] = 7, - ACTIONS(249), 1, + anon_sym_RBRACE, + [197901] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2029), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5670), 1, + ACTIONS(5053), 1, + anon_sym_DASH2, + ACTIONS(9434), 1, + anon_sym_EQ2, + STATE(5639), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2061), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207079] = 7, - ACTIONS(249), 1, + ACTIONS(5051), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [197921] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9247), 1, + ACTIONS(2002), 1, + sym__entry_separator, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(2030), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5671), 1, + STATE(5640), 1, sym_comment, - STATE(5919), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - ACTIONS(2069), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207103] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2031), 1, - sym_cell_path, - STATE(2752), 1, + STATE(6234), 1, sym_path, - STATE(5672), 1, - sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2085), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207127] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2033), 1, + STATE(6800), 1, sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5673), 1, - sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2089), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207151] = 8, + ACTIONS(2000), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [197947] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(1978), 1, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5674), 1, + STATE(5641), 1, sym_comment, - STATE(5793), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6234), 1, sym_path, - STATE(6767), 1, + STATE(7314), 1, sym_cell_path, - ACTIONS(1909), 2, + ACTIONS(1976), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [207177] = 7, - ACTIONS(249), 1, + [197973] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(3168), 1, - sym_cell_path, - STATE(5290), 1, - aux_sym_cell_path_repeat1, - STATE(5519), 1, - sym_path, - STATE(5675), 1, + ACTIONS(9438), 1, + anon_sym_DASH2, + STATE(5642), 1, sym_comment, - ACTIONS(1023), 3, - anon_sym_EQ, + ACTIONS(9436), 6, sym__newline, - anon_sym_COLON, - [207201] = 7, - ACTIONS(249), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [197991] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2034), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5676), 1, + STATE(5643), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2097), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207225] = 6, - ACTIONS(249), 1, + ACTIONS(5697), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [198007] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - ACTIONS(9253), 1, - anon_sym_DOT_DOT2, - STATE(5677), 1, + ACTIONS(1010), 1, + anon_sym_DASH2, + STATE(5644), 1, + sym_comment, + ACTIONS(1012), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT, + [198025] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5645), 1, sym_comment, - ACTIONS(9255), 2, + ACTIONS(1607), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1850), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207247] = 8, - ACTIONS(249), 1, + sym_filesize_unit, + sym_duration_unit, + [198043] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - ACTIONS(9213), 1, + ACTIONS(9412), 1, anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5678), 1, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5646), 1, sym_comment, - STATE(6971), 1, + STATE(6907), 1, sym_block, - STATE(7545), 1, + STATE(7452), 1, sym__flag, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [207273] = 8, - ACTIONS(249), 1, + [198069] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - ACTIONS(9213), 1, + ACTIONS(9412), 1, anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5679), 1, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5647), 1, sym_comment, - STATE(6844), 1, + STATE(6957), 1, sym_block, - STATE(7505), 1, + STATE(7399), 1, sym__flag, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [207299] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1931), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5680), 1, - sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - STATE(7142), 1, - sym_cell_path, - ACTIONS(1929), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207325] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1788), 1, - anon_sym_RBRACK, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - sym__entry_separator, - ACTIONS(9257), 1, - anon_sym_DOT_DOT2, - STATE(5681), 1, - sym_comment, - ACTIONS(9259), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207351] = 8, + [198095] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1999), 1, + ACTIONS(2096), 1, sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5682), 1, - sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - STATE(7106), 1, - sym_cell_path, - ACTIONS(1997), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207377] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2073), 1, - sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5683), 1, + STATE(5648), 1, sym_comment, - STATE(5793), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6234), 1, sym_path, - STATE(6935), 1, + STATE(7341), 1, sym_cell_path, - ACTIONS(2071), 2, + ACTIONS(2094), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [207403] = 8, - ACTIONS(249), 1, + [198121] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - ACTIONS(9213), 1, + ACTIONS(9412), 1, anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5684), 1, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5649), 1, sym_comment, - STATE(6670), 1, + STATE(6974), 1, sym_block, - STATE(7432), 1, + STATE(7417), 1, sym__flag, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [207429] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5685), 1, - sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - STATE(7398), 1, - sym_cell_path, - ACTIONS(1893), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207455] = 4, - ACTIONS(249), 1, + [198147] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5686), 1, + ACTIONS(1014), 1, + anon_sym_DASH2, + STATE(5650), 1, sym_comment, - ACTIONS(1715), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1717), 5, + ACTIONS(1016), 6, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207473] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT, + [198165] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5687), 1, - sym_comment, - ACTIONS(1715), 3, - anon_sym_RBRACE, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + ACTIONS(9440), 1, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1717), 4, - anon_sym_LPAREN2, + STATE(5651), 1, + sym_comment, + ACTIONS(9442), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [207491] = 3, - ACTIONS(249), 1, + ACTIONS(1886), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [198187] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5688), 1, + ACTIONS(9446), 1, + anon_sym_COMMA, + STATE(5652), 1, sym_comment, - ACTIONS(5504), 7, + ACTIONS(9444), 6, sym_raw_string_begin, sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [198205] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9450), 1, anon_sym_COMMA, - anon_sym_GT, + STATE(5653), 1, + sym_comment, + ACTIONS(9448), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [207507] = 8, - ACTIONS(249), 1, + [198223] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_in, - ACTIONS(4614), 1, + STATE(5654), 1, + sym_comment, + ACTIONS(1621), 2, anon_sym_DOT_DOT2, - ACTIONS(6929), 1, aux_sym_unquoted_token2, - ACTIONS(9261), 1, + ACTIONS(1623), 5, + anon_sym_in2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(9263), 1, sym_duration_unit, - STATE(5689), 1, + [198241] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9452), 1, + sym_identifier, + ACTIONS(9454), 1, + anon_sym_DASH_DASH, + ACTIONS(9456), 1, + anon_sym_DASH2, + STATE(5655), 1, sym_comment, - ACTIONS(4616), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207533] = 4, - ACTIONS(3), 1, + STATE(5705), 1, + aux_sym_ctrl_do_repeat1, + STATE(6126), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [198267] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5690), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, + anon_sym_DASH_DASH, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5656), 1, sym_comment, - ACTIONS(1068), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1066), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [207551] = 8, + STATE(6794), 1, + sym_block, + STATE(7388), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [198293] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6186), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, + anon_sym_DASH_DASH, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5657), 1, + sym_comment, + STATE(6797), 1, + sym_block, + STATE(7434), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [198319] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6186), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, + anon_sym_DASH_DASH, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5658), 1, + sym_comment, + STATE(6799), 1, + sym_block, + STATE(7464), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [198345] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2011), 1, - sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9458), 1, anon_sym_DOT, - STATE(5691), 1, + STATE(5659), 1, sym_comment, - STATE(5793), 1, + STATE(5931), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6532), 1, sym_path, - STATE(6991), 1, + STATE(6805), 1, sym_cell_path, - ACTIONS(2009), 2, + ACTIONS(2094), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [207577] = 4, + sym__entry_separator, + sym__table_head_separator, + [198369] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5692), 1, + STATE(5660), 1, sym_comment, - ACTIONS(1703), 3, + ACTIONS(1783), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1705), 4, + ACTIONS(1785), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [207595] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - ACTIONS(6985), 1, - aux_sym_unquoted_token2, - STATE(5693), 1, - sym_comment, - ACTIONS(1640), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207615] = 8, + [198387] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1023), 1, + STATE(5661), 1, + sym_comment, + ACTIONS(1012), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(1010), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(5694), 1, + [198405] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5662), 1, sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(5814), 1, - sym_cell_path, - STATE(6725), 1, - sym_path, - ACTIONS(1021), 2, + ACTIONS(1016), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1014), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [207641] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [198423] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5663), 1, + sym_comment, + ACTIONS(1739), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1741), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198441] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2061), 1, + ACTIONS(1927), 1, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5695), 1, + STATE(5664), 1, sym_comment, - STATE(5793), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6234), 1, sym_path, - STATE(6863), 1, + STATE(7129), 1, sym_cell_path, - ACTIONS(2059), 2, + ACTIONS(1925), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [207667] = 8, - ACTIONS(249), 1, + [198467] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9227), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, anon_sym_DASH_DASH, - ACTIONS(9229), 1, - anon_sym_DASH, - ACTIONS(9265), 1, - sym_identifier, - STATE(5636), 1, - aux_sym_ctrl_do_repeat1, - STATE(5696), 1, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5665), 1, sym_comment, - STATE(6018), 1, + STATE(6845), 1, + sym_block, + STATE(7440), 1, sym__flag, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [207693] = 8, - ACTIONS(249), 1, + [198493] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(8318), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9267), 1, - anon_sym_DOT, - STATE(5697), 1, - sym_comment, - STATE(5988), 1, - sym__immediate_decimal, - ACTIONS(8316), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [207719] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5698), 1, + STATE(5666), 1, sym_comment, - ACTIONS(1769), 3, - anon_sym_RBRACE, + ACTIONS(1621), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1771), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1623), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [207737] = 4, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [198511] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5699), 1, + STATE(5667), 1, sym_comment, - ACTIONS(1826), 3, - anon_sym_RBRACE, + ACTIONS(1673), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1828), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1675), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [207755] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2023), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5700), 1, - sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - STATE(6803), 1, - sym_cell_path, - ACTIONS(2021), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207781] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2069), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5701), 1, - sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - STATE(6878), 1, - sym_cell_path, - ACTIONS(2067), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207807] = 8, + sym_filesize_unit, + sym_duration_unit, + [198529] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2085), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5702), 1, + STATE(5668), 1, sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - STATE(6879), 1, - sym_cell_path, - ACTIONS(2083), 2, - anon_sym_RBRACK, + ACTIONS(1755), 3, anon_sym_RBRACE, - [207833] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2089), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1757), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5703), 1, + [198547] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + anon_sym_DASH2, + ACTIONS(8499), 1, + aux_sym_unquoted_token2, + STATE(5669), 1, sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - STATE(6881), 1, - sym_cell_path, - ACTIONS(2087), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207859] = 5, - ACTIONS(249), 1, + ACTIONS(1721), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198567] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8979), 1, - aux_sym__immediate_decimal_token2, - STATE(5704), 1, + STATE(5670), 1, + sym_comment, + ACTIONS(1607), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1609), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198585] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5671), 1, sym_comment, - ACTIONS(1715), 2, + ACTIONS(1739), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1717), 4, + ACTIONS(1741), 5, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [207879] = 4, - ACTIONS(249), 1, + [198603] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5705), 1, + STATE(5672), 1, sym_comment, - ACTIONS(1536), 2, + ACTIONS(1763), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1538), 5, - anon_sym_in, + ACTIONS(1765), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [207897] = 8, - ACTIONS(3), 1, + [198621] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2045), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5706), 1, + STATE(5673), 1, sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - STATE(6827), 1, - sym_cell_path, - ACTIONS(2043), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207923] = 8, + ACTIONS(1783), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1785), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198639] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(2092), 1, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5707), 1, + STATE(5674), 1, sym_comment, - STATE(5793), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6234), 1, sym_path, - STATE(6888), 1, + STATE(6818), 1, sym_cell_path, - ACTIONS(2095), 2, + ACTIONS(2090), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [207949] = 8, - ACTIONS(249), 1, + [198665] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9227), 1, - anon_sym_DASH_DASH, - ACTIONS(9229), 1, - anon_sym_DASH, - ACTIONS(9269), 1, - sym_identifier, - STATE(5708), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(9460), 1, + anon_sym_alias, + ACTIONS(9462), 1, + anon_sym_const, + ACTIONS(9464), 1, + anon_sym_def, + ACTIONS(9466), 1, + anon_sym_extern, + ACTIONS(9468), 1, + anon_sym_module, + ACTIONS(9470), 1, + anon_sym_use, + STATE(5675), 1, sym_comment, - STATE(5729), 1, - aux_sym_ctrl_do_repeat1, - STATE(6018), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [207975] = 4, + [198693] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5709), 1, + ACTIONS(1709), 1, + anon_sym_RBRACE, + ACTIONS(1721), 1, + sym__entry_separator, + ACTIONS(9472), 1, + anon_sym_DOT_DOT2, + ACTIONS(9476), 1, + sym_filesize_unit, + ACTIONS(9478), 1, + sym_duration_unit, + STATE(5676), 1, sym_comment, - ACTIONS(1072), 3, + ACTIONS(9474), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [198719] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2337), 1, + anon_sym_DASH2, + ACTIONS(9480), 1, + anon_sym_LBRACK2, + STATE(5677), 1, + sym_comment, + ACTIONS(2341), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198739] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1950), 1, sym__entry_separator, - ACTIONS(1070), 4, + ACTIONS(9420), 1, + anon_sym_DOT, + STATE(5678), 1, + sym_comment, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, + sym_path, + STATE(6871), 1, + sym_cell_path, + ACTIONS(1948), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [207993] = 9, - ACTIONS(249), 1, + [198765] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3294), 1, + ACTIONS(3363), 1, aux_sym_record_entry_token1, - ACTIONS(9235), 1, + ACTIONS(9460), 1, anon_sym_alias, - ACTIONS(9237), 1, + ACTIONS(9462), 1, anon_sym_const, - ACTIONS(9239), 1, + ACTIONS(9464), 1, anon_sym_def, - ACTIONS(9241), 1, + ACTIONS(9466), 1, anon_sym_extern, - ACTIONS(9243), 1, + ACTIONS(9468), 1, anon_sym_module, - ACTIONS(9245), 1, + ACTIONS(9470), 1, anon_sym_use, - STATE(5710), 1, + STATE(5679), 1, sym_comment, - [208021] = 7, - ACTIONS(249), 1, + [198793] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, + ACTIONS(9482), 1, + aux_sym__immediate_decimal_token2, + STATE(5680), 1, + sym_comment, + ACTIONS(1783), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1785), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198813] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4902), 1, anon_sym_DOT, - STATE(2752), 1, + STATE(1702), 1, + aux_sym_cell_path_repeat1, + STATE(1894), 1, sym_path, - STATE(5711), 1, + STATE(5681), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - STATE(7226), 1, + STATE(6842), 1, sym_cell_path, - ACTIONS(5906), 3, + ACTIONS(5891), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [208045] = 5, - ACTIONS(249), 1, + [198837] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4991), 1, - anon_sym_DASH, - ACTIONS(9271), 1, + ACTIONS(5016), 1, + anon_sym_DASH2, + ACTIONS(9484), 1, anon_sym_EQ2, - STATE(5712), 1, + STATE(5682), 1, sym_comment, - ACTIONS(4989), 5, + ACTIONS(5014), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [208065] = 8, + [198857] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1546), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(1788), 1, + ACTIONS(1866), 1, anon_sym_RBRACE, - ACTIONS(1790), 1, + ACTIONS(1868), 1, anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(1874), 1, sym__entry_separator, - ACTIONS(9273), 1, + ACTIONS(9486), 1, anon_sym_DOT_DOT2, - STATE(5713), 1, - sym_comment, - ACTIONS(9275), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208091] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5714), 1, - sym_comment, - ACTIONS(1826), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1828), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208109] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9277), 1, - aux_sym__immediate_decimal_token2, - STATE(5715), 1, + STATE(5683), 1, sym_comment, - ACTIONS(1769), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1771), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(9488), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208129] = 5, - ACTIONS(3), 1, + [198883] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(5716), 1, - sym_comment, - ACTIONS(2281), 3, + ACTIONS(9454), 1, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2285), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [208149] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(8318), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9279), 1, - anon_sym_DOT, - STATE(5717), 1, + ACTIONS(9456), 1, + anon_sym_DASH2, + ACTIONS(9490), 1, + sym_identifier, + STATE(5684), 1, sym_comment, - STATE(6741), 1, - sym__immediate_decimal, - ACTIONS(8316), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [208175] = 5, - ACTIONS(249), 1, + STATE(5698), 1, + aux_sym_ctrl_do_repeat1, + STATE(6126), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [198909] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4947), 1, - anon_sym_DASH, - ACTIONS(9281), 1, - anon_sym_EQ2, - STATE(5718), 1, + STATE(5685), 1, sym_comment, - ACTIONS(4945), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208195] = 8, + ACTIONS(5681), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [198925] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2049), 1, + ACTIONS(1954), 1, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5719), 1, + STATE(5686), 1, sym_comment, - STATE(5793), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6234), 1, sym_path, - STATE(6829), 1, + STATE(6872), 1, sym_cell_path, - ACTIONS(2047), 2, + ACTIONS(1952), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [208221] = 3, - ACTIONS(249), 1, + [198951] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5720), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, + anon_sym_DASH_DASH, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5687), 1, sym_comment, - ACTIONS(7964), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [208237] = 8, - ACTIONS(3), 1, + STATE(6265), 1, + sym_block, + STATE(7382), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [198977] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_RBRACK, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - sym__entry_separator, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(9283), 1, - anon_sym_DOT_DOT2, - STATE(5721), 1, + STATE(5688), 1, sym_comment, - ACTIONS(9285), 2, + ACTIONS(1763), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1765), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208263] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9289), 1, - anon_sym_COMMA, - STATE(5722), 1, - sym_comment, - ACTIONS(9287), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [208281] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9293), 1, - anon_sym_COMMA, - STATE(5723), 1, - sym_comment, - ACTIONS(9291), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [208299] = 5, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [198995] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(5724), 1, + STATE(5689), 1, sym_comment, - ACTIONS(2293), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2297), 3, - ts_builtin_sym_end, + ACTIONS(1890), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1892), 5, sym__newline, - anon_sym_SEMI, - [208319] = 5, - ACTIONS(3), 1, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199013] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(5725), 1, + ACTIONS(9321), 1, + aux_sym__immediate_decimal_token2, + STATE(5690), 1, sym_comment, - ACTIONS(2303), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2305), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [208339] = 7, - ACTIONS(249), 1, + 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, + [199033] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, + ACTIONS(4902), 1, anon_sym_DOT, - STATE(2752), 1, + STATE(1702), 1, + aux_sym_cell_path_repeat1, + STATE(1894), 1, sym_path, - STATE(4165), 1, - sym_cell_path, - STATE(5726), 1, + STATE(5691), 1, sym_comment, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1023), 3, + STATE(7098), 1, + sym_cell_path, + ACTIONS(5814), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [208363] = 7, - ACTIONS(249), 1, + [199057] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1027), 1, - anon_sym_DOT_DOT2, - ACTIONS(8875), 1, + ACTIONS(1962), 1, + sym__entry_separator, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(1268), 1, - sym_path, - STATE(5727), 1, + STATE(5692), 1, sym_comment, - STATE(5728), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - ACTIONS(1029), 3, - anon_sym_LBRACE, + STATE(6234), 1, + sym_path, + STATE(6947), 1, + sym_cell_path, + ACTIONS(1960), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [199083] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5693), 1, + sym_comment, + ACTIONS(1783), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1785), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208387] = 6, - ACTIONS(249), 1, + [199101] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1031), 1, - anon_sym_DOT_DOT2, - ACTIONS(9295), 1, + ACTIONS(961), 1, + anon_sym_DASH2, + ACTIONS(6538), 1, anon_sym_DOT, - STATE(1268), 1, + STATE(3175), 1, + sym_cell_path, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3600), 1, sym_path, - STATE(5728), 2, + STATE(5694), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1033), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208409] = 7, - ACTIONS(249), 1, + ACTIONS(963), 2, + anon_sym_DASH_DASH, + anon_sym_in2, + [199127] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8464), 1, - sym_identifier, - ACTIONS(9298), 1, + ACTIONS(9412), 1, anon_sym_DASH_DASH, - ACTIONS(9301), 1, - anon_sym_DASH, - STATE(6018), 1, - sym__flag, - STATE(5729), 2, + ACTIONS(9414), 1, + anon_sym_DASH2, + ACTIONS(9492), 1, + anon_sym_LBRACE, + STATE(5695), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6083), 2, + STATE(6605), 1, + sym_val_record, + STATE(7472), 1, + sym__flag, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [208433] = 5, + [199153] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9304), 1, + ACTIONS(9494), 1, sym__newline, - ACTIONS(9307), 1, + ACTIONS(9497), 1, sym__space, - STATE(5730), 2, + STATE(5696), 2, sym_comment, aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(3810), 4, + ACTIONS(3553), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_LBRACE, - [208453] = 8, + [199173] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2003), 1, + ACTIONS(1970), 1, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5731), 1, + STATE(5697), 1, sym_comment, - STATE(5793), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6234), 1, sym_path, - STATE(6961), 1, + STATE(6991), 1, sym_cell_path, - ACTIONS(2001), 2, + ACTIONS(1968), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [208479] = 4, + [199199] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9454), 1, + anon_sym_DASH_DASH, + ACTIONS(9456), 1, + anon_sym_DASH2, + ACTIONS(9500), 1, + sym_identifier, + STATE(5698), 1, + sym_comment, + STATE(5705), 1, + aux_sym_ctrl_do_repeat1, + STATE(6126), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [199225] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5732), 1, + STATE(5699), 1, sym_comment, - ACTIONS(2291), 3, + ACTIONS(2250), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(2289), 4, + ACTIONS(2248), 4, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_as, aux_sym_unquoted_token4, - [208497] = 8, - ACTIONS(249), 1, + [199243] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1640), 1, + ACTIONS(1721), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, - anon_sym_DOT_DOT2, - ACTIONS(6512), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + ACTIONS(9416), 1, sym_filesize_unit, - ACTIONS(6514), 1, + ACTIONS(9418), 1, sym_duration_unit, - ACTIONS(8580), 1, - aux_sym_unquoted_token2, - STATE(5733), 1, + ACTIONS(9502), 1, + anon_sym_DOT_DOT2, + STATE(5700), 1, sym_comment, - ACTIONS(4616), 2, + ACTIONS(9504), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208523] = 5, + [199269] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2275), 1, + ACTIONS(2204), 1, aux_sym_unquoted_token4, - STATE(5734), 1, + STATE(5701), 1, sym_comment, - ACTIONS(1090), 3, + ACTIONS(1030), 3, anon_sym_DASH_DASH, - anon_sym_DASH, + anon_sym_DASH2, anon_sym_as, - ACTIONS(1092), 3, + ACTIONS(1032), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [208543] = 4, - ACTIONS(249), 1, + [199289] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5735), 1, + ACTIONS(2006), 1, + sym__entry_separator, + ACTIONS(9420), 1, + anon_sym_DOT, + STATE(5702), 1, + sym_comment, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, + sym_path, + STATE(6866), 1, + sym_cell_path, + ACTIONS(2004), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [199315] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(963), 1, + sym__entry_separator, + ACTIONS(9420), 1, + anon_sym_DOT, + STATE(5703), 1, + sym_comment, + STATE(5832), 1, + sym_cell_path, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, + sym_path, + ACTIONS(961), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [199341] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5704), 1, sym_comment, - ACTIONS(1715), 2, + ACTIONS(1890), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1717), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + aux_sym__unquoted_in_record_token2, + ACTIONS(1892), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208561] = 8, - ACTIONS(249), 1, + sym__entry_separator, + [199359] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - ACTIONS(9213), 1, + ACTIONS(8567), 1, + sym_identifier, + ACTIONS(9506), 1, anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5736), 1, - sym_comment, - STATE(6219), 1, - sym_block, - STATE(7486), 1, + ACTIONS(9509), 1, + anon_sym_DASH2, + STATE(6126), 1, sym__flag, - STATE(6083), 2, + STATE(5705), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [208587] = 8, - ACTIONS(249), 1, + [199383] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - ACTIONS(9213), 1, - anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5737), 1, + ACTIONS(1974), 1, + sym__entry_separator, + ACTIONS(9420), 1, + anon_sym_DOT, + STATE(5706), 1, sym_comment, - STATE(7188), 1, - sym_block, - STATE(7498), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [208613] = 8, - ACTIONS(249), 1, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, + sym_path, + STATE(7343), 1, + sym_cell_path, + ACTIONS(1972), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [199409] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - ACTIONS(9213), 1, + ACTIONS(9454), 1, anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5738), 1, + ACTIONS(9456), 1, + anon_sym_DASH2, + ACTIONS(9512), 1, + sym_identifier, + STATE(5655), 1, + aux_sym_ctrl_do_repeat1, + STATE(5707), 1, sym_comment, - STATE(6220), 1, - sym_block, - STATE(7487), 1, + STATE(6126), 1, sym__flag, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [208639] = 8, - ACTIONS(249), 1, + [199435] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - ACTIONS(9213), 1, - anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5739), 1, + STATE(5708), 1, sym_comment, - STATE(7198), 1, - sym_block, - STATE(7504), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [208665] = 8, - ACTIONS(249), 1, + ACTIONS(1739), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1741), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [199453] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - ACTIONS(9213), 1, + ACTIONS(9412), 1, anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5740), 1, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5709), 1, sym_comment, - STATE(6221), 1, + STATE(6219), 1, sym_block, - STATE(7489), 1, + STATE(7539), 1, sym__flag, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [208691] = 8, - ACTIONS(249), 1, + [199479] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - ACTIONS(9213), 1, - anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - STATE(5741), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(8299), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8301), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9514), 1, + anon_sym_DOT, + STATE(5710), 1, sym_comment, - STATE(7200), 1, - sym_block, - STATE(7508), 1, - sym__flag, - STATE(6083), 2, - sym_short_flag, - sym_long_flag, - [208717] = 8, + STATE(6710), 1, + sym__immediate_decimal, + ACTIONS(8297), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [199505] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_RBRACE, - ACTIONS(1844), 1, + ACTIONS(1878), 1, + anon_sym_RBRACK, + ACTIONS(1880), 1, anon_sym_LPAREN2, - ACTIONS(1850), 1, + ACTIONS(1886), 1, sym__entry_separator, - ACTIONS(1852), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(9310), 1, + ACTIONS(1888), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(9516), 1, anon_sym_DOT_DOT2, - STATE(5742), 1, + STATE(5711), 1, sym_comment, - ACTIONS(9312), 2, + ACTIONS(9518), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208743] = 8, - ACTIONS(3), 1, + [199531] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2053), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5743), 1, + STATE(5712), 1, sym_comment, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - STATE(6830), 1, - sym_cell_path, - ACTIONS(2051), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [208769] = 7, + ACTIONS(5685), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199547] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9251), 1, + ACTIONS(9458), 1, anon_sym_DOT, - STATE(5744), 1, + STATE(5713), 1, sym_comment, - STATE(5771), 1, + STATE(5931), 1, aux_sym_cell_path_repeat1, - STATE(6329), 1, + STATE(6532), 1, sym_path, - STATE(7303), 1, + STATE(7072), 1, sym_cell_path, - ACTIONS(1909), 3, + ACTIONS(1976), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [208793] = 8, + [199571] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2007), 1, + ACTIONS(1935), 1, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5745), 1, + STATE(5714), 1, sym_comment, - STATE(5793), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6234), 1, sym_path, - STATE(6964), 1, + STATE(7196), 1, sym_cell_path, - ACTIONS(2005), 2, + ACTIONS(1933), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [208819] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5746), 1, - sym_comment, - ACTIONS(1076), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1074), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [208837] = 8, - ACTIONS(249), 1, + [199597] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9213), 1, - anon_sym_DASH_DASH, - ACTIONS(9215), 1, - anon_sym_DASH, - ACTIONS(9314), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(5747), 1, + ACTIONS(9412), 1, + anon_sym_DASH_DASH, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5715), 1, sym_comment, - STATE(6717), 1, - sym_val_record, - STATE(7561), 1, + STATE(6592), 1, + sym_block, + STATE(7360), 1, sym__flag, - STATE(6083), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [208863] = 8, + [199623] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, + ACTIONS(2070), 1, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5748), 1, + STATE(5716), 1, sym_comment, - STATE(5793), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6234), 1, sym_path, - STATE(7179), 1, + STATE(6876), 1, sym_cell_path, - ACTIONS(2079), 2, + ACTIONS(2068), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [208889] = 6, - ACTIONS(249), 1, + [199649] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(9316), 1, - anon_sym_DOT_DOT2, - STATE(5749), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, + anon_sym_DASH_DASH, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5717), 1, sym_comment, - ACTIONS(9318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1796), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [208911] = 4, - ACTIONS(249), 1, + STATE(6669), 1, + sym_block, + STATE(7362), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [199675] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5750), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, + anon_sym_DASH_DASH, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5718), 1, + sym_comment, + STATE(6268), 1, + sym_block, + STATE(7403), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [199701] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5719), 1, + sym_comment, + ACTIONS(5653), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199717] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5720), 1, + sym_comment, + ACTIONS(5657), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199733] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5721), 1, sym_comment, - ACTIONS(1703), 2, + ACTIONS(1890), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1705), 5, + ACTIONS(1892), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208929] = 8, + [199751] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(2084), 1, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5751), 1, + STATE(5722), 1, sym_comment, - STATE(5793), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6234), 1, sym_path, - STATE(6922), 1, + STATE(7028), 1, sym_cell_path, - ACTIONS(1897), 2, + ACTIONS(2082), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [208955] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5752), 1, - sym_comment, - ACTIONS(1703), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1705), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208973] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_RBRACE, - ACTIONS(1640), 1, - sym__entry_separator, - ACTIONS(9320), 1, - anon_sym_DOT_DOT2, - ACTIONS(9324), 1, - sym_filesize_unit, - ACTIONS(9326), 1, - sym_duration_unit, - STATE(5753), 1, - sym_comment, - ACTIONS(9322), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208999] = 8, + [199777] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2019), 1, + ACTIONS(1986), 1, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5754), 1, + STATE(5723), 1, sym_comment, - STATE(5793), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6725), 1, + STATE(6234), 1, sym_path, - STATE(6802), 1, + STATE(7344), 1, sym_cell_path, - ACTIONS(2017), 2, + ACTIONS(1984), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [209025] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, - STATE(5755), 1, - sym_comment, - STATE(6047), 1, - sym__variable_name, - STATE(6303), 1, - sym__assignment_pattern, - [209050] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9334), 1, - anon_sym_DQUOTE2, - STATE(5756), 1, - sym_comment, - STATE(5761), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [209073] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5464), 1, - aux_sym_unquoted_token3, - ACTIONS(8316), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token5, - STATE(5757), 1, - sym_comment, - STATE(6730), 1, - sym__immediate_decimal, - [209098] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5464), 1, - aux_sym_unquoted_token3, - ACTIONS(8442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, - aux_sym__immediate_decimal_token5, - STATE(5758), 1, - sym_comment, - STATE(7653), 1, - sym__immediate_decimal, - [209123] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, - STATE(5759), 1, - sym_comment, - STATE(6047), 1, - sym__variable_name, - STATE(6300), 1, - sym__assignment_pattern, - [209148] = 7, - ACTIONS(3), 1, + [199803] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9336), 1, - anon_sym_DQUOTE2, - STATE(5760), 1, + STATE(5724), 1, sym_comment, - STATE(5972), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [209171] = 7, + 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, + [199821] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9338), 1, - anon_sym_DQUOTE2, - STATE(5761), 1, - sym_comment, - STATE(5940), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [209194] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9342), 1, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1866), 1, anon_sym_RBRACK, - STATE(5762), 1, - sym_comment, - STATE(6112), 1, - aux_sym_shebang_repeat1, - STATE(7118), 1, - sym_val_list, - STATE(7240), 1, - aux_sym_val_table_repeat1, - [209219] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, - STATE(5763), 1, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + ACTIONS(1874), 1, + sym__entry_separator, + ACTIONS(9520), 1, + anon_sym_DOT_DOT2, + STATE(5725), 1, sym_comment, - STATE(6047), 1, - sym__variable_name, - STATE(6301), 1, - sym__assignment_pattern, - [209244] = 5, - ACTIONS(249), 1, + ACTIONS(9522), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199847] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(5764), 1, + ACTIONS(9412), 1, + anon_sym_DASH_DASH, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5726), 1, sym_comment, - STATE(6683), 1, + STATE(6270), 1, sym_block, - ACTIONS(9344), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [209263] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9346), 1, - anon_sym_RBRACK, - STATE(5765), 1, - sym_comment, - STATE(6113), 1, - aux_sym_shebang_repeat1, - STATE(7127), 1, - sym_val_list, - STATE(7242), 1, - aux_sym_val_table_repeat1, - [209288] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9348), 1, - anon_sym_DQUOTE2, - STATE(5766), 1, - sym_comment, - STATE(5769), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [209311] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6929), 1, - aux_sym_unquoted_token3, - ACTIONS(8316), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token5, - STATE(5767), 1, - sym_comment, - STATE(6730), 1, - sym__immediate_decimal, - [209336] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6929), 1, - aux_sym_unquoted_token3, - ACTIONS(8442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, - aux_sym__immediate_decimal_token5, - STATE(5768), 1, - sym_comment, - STATE(7653), 1, - sym__immediate_decimal, - [209361] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9350), 1, - anon_sym_DQUOTE2, - STATE(5769), 1, - sym_comment, - STATE(5940), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [209384] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9352), 1, - anon_sym_RBRACK, - STATE(5770), 1, - sym_comment, - STATE(6120), 1, - aux_sym_shebang_repeat1, - STATE(7231), 1, - sym_val_list, - STATE(7257), 1, - aux_sym_val_table_repeat1, - [209409] = 6, + STATE(7351), 1, + sym__flag, + STATE(6104), 2, + sym_short_flag, + sym_long_flag, + [199873] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9251), 1, + ACTIONS(2100), 1, + sym__entry_separator, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5771), 1, + STATE(5727), 1, sym_comment, - STATE(5828), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6329), 1, + STATE(6234), 1, sym_path, - ACTIONS(1027), 3, + STATE(7052), 1, + sym_cell_path, + ACTIONS(2098), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [209430] = 6, + anon_sym_RBRACE, + [199899] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2119), 1, + ACTIONS(1915), 1, sym__entry_separator, - ACTIONS(9354), 1, - anon_sym_DOT_DOT2, - STATE(5772), 1, + ACTIONS(9420), 1, + anon_sym_DOT, + STATE(5728), 1, sym_comment, - ACTIONS(2113), 2, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, + sym_path, + STATE(6905), 1, + sym_cell_path, + ACTIONS(1913), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9356), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209451] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9358), 1, - anon_sym_RBRACK, - STATE(5773), 1, - sym_comment, - STATE(6121), 1, - aux_sym_shebang_repeat1, - STATE(7259), 1, - aux_sym_val_table_repeat1, - STATE(7295), 1, - sym_val_list, - [209476] = 6, + [199925] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1092), 1, + ACTIONS(1946), 1, sym__entry_separator, - ACTIONS(9360), 1, - anon_sym_DOT_DOT2, - STATE(5774), 1, + ACTIONS(9420), 1, + anon_sym_DOT, + STATE(5729), 1, sym_comment, - ACTIONS(1090), 2, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, + sym_path, + STATE(7332), 1, + sym_cell_path, + ACTIONS(1944), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9362), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209497] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1536), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(9364), 1, - anon_sym_DOT, - ACTIONS(9366), 1, - aux_sym__immediate_decimal_token2, - STATE(5775), 1, - sym_comment, - ACTIONS(1538), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [209518] = 7, + [199951] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9368), 1, - anon_sym_DQUOTE2, - STATE(5776), 1, - sym_comment, - STATE(5779), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [209541] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4645), 1, - aux_sym_unquoted_token3, - ACTIONS(8316), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token5, - STATE(5777), 1, + ACTIONS(1990), 1, + sym__entry_separator, + ACTIONS(9420), 1, + anon_sym_DOT, + STATE(5730), 1, sym_comment, - STATE(6730), 1, - sym__immediate_decimal, - [209566] = 8, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, + sym_path, + STATE(6751), 1, + sym_cell_path, + ACTIONS(1988), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [199977] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4645), 1, - aux_sym_unquoted_token3, - ACTIONS(8442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, - aux_sym__immediate_decimal_token5, - STATE(5778), 1, + ACTIONS(2074), 1, + sym__entry_separator, + ACTIONS(9420), 1, + anon_sym_DOT, + STATE(5731), 1, sym_comment, - STATE(7653), 1, - sym__immediate_decimal, - [209591] = 7, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, + sym_path, + STATE(6877), 1, + sym_cell_path, + ACTIONS(2072), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [200003] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9370), 1, - anon_sym_DQUOTE2, - STATE(5779), 1, + ACTIONS(2104), 1, + sym__entry_separator, + ACTIONS(9420), 1, + anon_sym_DOT, + STATE(5732), 1, sym_comment, - STATE(5940), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [209614] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9372), 1, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, + sym_path, + STATE(7060), 1, + sym_cell_path, + ACTIONS(2102), 2, anon_sym_RBRACK, - STATE(5780), 1, - sym_comment, - STATE(6123), 1, - aux_sym_shebang_repeat1, - STATE(6761), 1, - sym_val_list, - STATE(7263), 1, - aux_sym_val_table_repeat1, - [209639] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5053), 1, - anon_sym_DASH, - STATE(5781), 1, - sym_comment, - ACTIONS(5051), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [209656] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9374), 1, - anon_sym_EQ2, - ACTIONS(9376), 1, - sym_short_flag_identifier, - STATE(5782), 1, - sym_comment, - ACTIONS(4925), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(4927), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - [209677] = 4, + anon_sym_RBRACE, + [200029] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5783), 1, + ACTIONS(1911), 1, + sym__entry_separator, + ACTIONS(9420), 1, + anon_sym_DOT, + STATE(5733), 1, sym_comment, - ACTIONS(2230), 3, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, + sym_path, + STATE(6897), 1, + sym_cell_path, + ACTIONS(1907), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2232), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [209694] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9378), 1, - anon_sym_RBRACK, - STATE(5784), 1, - sym_comment, - STATE(6124), 1, - aux_sym_shebang_repeat1, - STATE(6765), 1, - sym_val_list, - STATE(7265), 1, - aux_sym_val_table_repeat1, - [209719] = 7, - ACTIONS(249), 1, + [200055] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9380), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + ACTIONS(9412), 1, anon_sym_DASH_DASH, - ACTIONS(9382), 1, - anon_sym_DASH, - ACTIONS(9384), 1, - anon_sym_in, - STATE(5785), 1, + ACTIONS(9414), 1, + anon_sym_DASH2, + STATE(5734), 1, sym_comment, - STATE(7614), 1, + STATE(6272), 1, + sym_block, + STATE(7390), 1, sym__flag, - STATE(5494), 2, + STATE(6104), 2, sym_short_flag, sym_long_flag, - [209742] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2285), 1, - anon_sym_LBRACE, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(5786), 1, - sym_comment, - ACTIONS(2281), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [209761] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9386), 1, - anon_sym_DQUOTE2, - STATE(5787), 1, - sym_comment, - STATE(5790), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [209784] = 8, - ACTIONS(3), 1, + [200081] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7068), 1, - aux_sym_unquoted_token3, - ACTIONS(8316), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token5, - STATE(5788), 1, + ACTIONS(1721), 1, + anon_sym_in2, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + ACTIONS(9524), 1, + sym_filesize_unit, + ACTIONS(9526), 1, + sym_duration_unit, + STATE(5735), 1, sym_comment, - STATE(6730), 1, - sym__immediate_decimal, - [209809] = 8, - ACTIONS(3), 1, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200107] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7068), 1, - aux_sym_unquoted_token3, - ACTIONS(8442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, - aux_sym__immediate_decimal_token5, - STATE(5789), 1, + ACTIONS(1866), 1, + anon_sym_DASH2, + ACTIONS(9528), 1, + anon_sym_DOT_DOT2, + STATE(5736), 1, sym_comment, - STATE(7653), 1, - sym__immediate_decimal, - [209834] = 7, - ACTIONS(3), 1, + ACTIONS(1874), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(9530), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200128] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9388), 1, - anon_sym_DQUOTE2, - STATE(5790), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(5737), 1, sym_comment, - STATE(5940), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [209857] = 8, - ACTIONS(249), 1, + STATE(6236), 1, + sym_block, + ACTIONS(9532), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [200147] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9390), 1, + ACTIONS(9536), 1, anon_sym_RBRACK, - STATE(5791), 1, + STATE(5738), 1, sym_comment, - STATE(6125), 1, + STATE(6183), 1, aux_sym_shebang_repeat1, - STATE(7270), 1, - aux_sym_val_table_repeat1, - STATE(7404), 1, + STATE(6858), 1, sym_val_list, - [209882] = 8, - ACTIONS(249), 1, + STATE(7246), 1, + aux_sym_val_table_repeat1, + [200172] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2437), 1, + anon_sym_DASH2, + STATE(5739), 1, + sym_comment, + ACTIONS(2439), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [200189] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9392), 1, + ACTIONS(9538), 1, anon_sym_RBRACK, - STATE(5792), 1, + STATE(5740), 1, sym_comment, - STATE(6126), 1, + STATE(6184), 1, aux_sym_shebang_repeat1, - STATE(6786), 1, + STATE(6862), 1, sym_val_list, - STATE(7273), 1, + STATE(7248), 1, aux_sym_val_table_repeat1, - [209907] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1029), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5793), 1, - sym_comment, - STATE(5957), 1, - aux_sym_cell_path_repeat1, - STATE(6725), 1, - sym_path, - ACTIONS(1027), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [209930] = 4, + [200214] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5794), 1, + STATE(5741), 1, sym_comment, - ACTIONS(1670), 3, + ACTIONS(1735), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(1672), 3, + ACTIONS(1737), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [209947] = 4, - ACTIONS(249), 1, + [200231] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9223), 1, - anon_sym_DASH, - STATE(5795), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(5742), 1, + sym_comment, + STATE(6242), 1, + sym_block, + ACTIONS(9532), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [200250] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2395), 1, + anon_sym_DASH2, + STATE(5743), 1, sym_comment, - ACTIONS(9221), 5, + ACTIONS(2397), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [209964] = 7, + [200267] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9394), 1, + ACTIONS(9544), 1, anon_sym_DQUOTE2, - STATE(5796), 1, + STATE(5744), 1, sym_comment, - STATE(5799), 1, + STATE(5748), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [209987] = 8, + [200290] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7021), 1, - aux_sym_unquoted_token3, - ACTIONS(8316), 1, + ACTIONS(8297), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, + ACTIONS(8499), 1, + aux_sym_unquoted_token3, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, + ACTIONS(8879), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token5, - STATE(5797), 1, + STATE(5745), 1, sym_comment, - STATE(6730), 1, + STATE(6732), 1, sym__immediate_decimal, - [210012] = 8, + [200315] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7021), 1, + ACTIONS(8499), 1, aux_sym_unquoted_token3, - ACTIONS(8442), 1, + ACTIONS(8557), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, + ACTIONS(8792), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, + ACTIONS(8794), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, + ACTIONS(8796), 1, aux_sym__immediate_decimal_token5, - STATE(5798), 1, + STATE(5746), 1, sym_comment, - STATE(7653), 1, + STATE(7655), 1, sym__immediate_decimal, - [210037] = 7, + [200340] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9396), 1, - anon_sym_DQUOTE2, - STATE(5799), 1, - sym_comment, - STATE(5940), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [210060] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9398), 1, - anon_sym_RBRACK, - STATE(5800), 1, - sym_comment, - STATE(6129), 1, - aux_sym_shebang_repeat1, - STATE(6809), 1, - sym_val_list, - STATE(7279), 1, - aux_sym_val_table_repeat1, - [210085] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(8444), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8446), 1, - aux_sym__immediate_decimal_token5, - STATE(5801), 1, - sym_comment, - STATE(7548), 1, - sym__immediate_decimal, - ACTIONS(8442), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [210108] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9400), 1, - anon_sym_LBRACE, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4956), 1, - sym_block, - STATE(4958), 1, - sym_val_closure, - STATE(5108), 1, - sym__blosure, - STATE(5802), 1, - sym_comment, - [210133] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9402), 1, - anon_sym_RBRACK, - STATE(5803), 1, - sym_comment, - STATE(6130), 1, - aux_sym_shebang_repeat1, - STATE(6814), 1, - sym_val_list, - STATE(7282), 1, - aux_sym_val_table_repeat1, - [210158] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9400), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + ACTIONS(2224), 1, anon_sym_LBRACE, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4956), 1, - sym_block, - STATE(4958), 1, - sym_val_closure, - STATE(5109), 1, - sym__blosure, - STATE(5804), 1, + STATE(5747), 1, sym_comment, - [210183] = 7, + ACTIONS(2222), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [200359] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9404), 1, + ACTIONS(9546), 1, anon_sym_DQUOTE2, - STATE(5805), 1, + STATE(5748), 1, sym_comment, - STATE(5810), 1, + STATE(5805), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [210206] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9239), 1, - anon_sym_def, - ACTIONS(9241), 1, - anon_sym_extern, - ACTIONS(9243), 1, - anon_sym_module, - ACTIONS(9245), 1, - anon_sym_use, - ACTIONS(9406), 1, - anon_sym_alias, - ACTIONS(9408), 1, - anon_sym_const, - STATE(5806), 1, - sym_comment, - [210231] = 8, + [200382] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6477), 1, + ACTIONS(4864), 1, aux_sym_unquoted_token3, - ACTIONS(8316), 1, + ACTIONS(8297), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, + ACTIONS(8879), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token5, - STATE(5807), 1, + STATE(5749), 1, sym_comment, - STATE(6730), 1, + STATE(6093), 1, sym__immediate_decimal, - [210256] = 8, - ACTIONS(3), 1, + [200407] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6477), 1, - aux_sym_unquoted_token3, - ACTIONS(8442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, - aux_sym__immediate_decimal_token5, - STATE(5808), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9548), 1, + anon_sym_RBRACK, + STATE(5750), 1, sym_comment, - STATE(7653), 1, - sym__immediate_decimal, - [210281] = 8, + STATE(6185), 1, + aux_sym_shebang_repeat1, + STATE(6884), 1, + sym_val_list, + STATE(7252), 1, + aux_sym_val_table_repeat1, + [200432] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4870), 1, + ACTIONS(4864), 1, aux_sym_unquoted_token3, - ACTIONS(8316), 1, + ACTIONS(8557), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, + ACTIONS(8792), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, + ACTIONS(8794), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, + ACTIONS(8796), 1, aux_sym__immediate_decimal_token5, - STATE(5809), 1, + STATE(5751), 1, sym_comment, - STATE(5992), 1, + STATE(7475), 1, sym__immediate_decimal, - [210306] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9410), 1, - anon_sym_DQUOTE2, - STATE(5810), 1, - sym_comment, - STATE(5940), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [210329] = 8, - ACTIONS(249), 1, + [200457] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9412), 1, + ACTIONS(9550), 1, anon_sym_RBRACK, - STATE(5811), 1, + STATE(5752), 1, sym_comment, - STATE(6020), 1, + STATE(6172), 1, aux_sym_shebang_repeat1, - STATE(6850), 1, - sym_val_list, - STATE(7157), 1, + STATE(7210), 1, aux_sym_val_table_repeat1, - [210354] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9414), 1, - anon_sym_RBRACK, - STATE(5812), 1, - sym_comment, - STATE(6131), 1, - aux_sym_shebang_repeat1, - STATE(6837), 1, + STATE(7324), 1, sym_val_list, - STATE(7288), 1, - aux_sym_val_table_repeat1, - [210379] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT_DOT2, - STATE(5813), 1, - sym_comment, - ACTIONS(2222), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9418), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210400] = 4, - ACTIONS(3), 1, + [200482] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5814), 1, + ACTIONS(2004), 1, + anon_sym_DASH2, + STATE(5753), 1, sym_comment, - ACTIONS(1078), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1080), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [210417] = 8, - ACTIONS(249), 1, + ACTIONS(2006), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [200499] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9420), 1, + ACTIONS(9552), 1, anon_sym_RBRACK, - STATE(5815), 1, + STATE(5754), 1, sym_comment, - STATE(6132), 1, + STATE(6186), 1, aux_sym_shebang_repeat1, - STATE(6841), 1, + STATE(6889), 1, sym_val_list, - STATE(7290), 1, + STATE(7254), 1, aux_sym_val_table_repeat1, - [210442] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9400), 1, - anon_sym_LBRACE, - STATE(4956), 1, - sym_block, - STATE(4958), 1, - sym_val_closure, - STATE(5109), 1, - sym__blosure, - STATE(5816), 1, - sym_comment, - STATE(5902), 1, - aux_sym_shebang_repeat1, - [210467] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5817), 1, - sym_comment, - ACTIONS(9422), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [210482] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5818), 1, - sym_comment, - ACTIONS(9424), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [210497] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9426), 1, - anon_sym_DQUOTE2, - STATE(5819), 1, - sym_comment, - STATE(5823), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [210520] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4622), 1, - aux_sym_unquoted_token3, - ACTIONS(8316), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token5, - STATE(5820), 1, - sym_comment, - STATE(6730), 1, - sym__immediate_decimal, - [210545] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4622), 1, - aux_sym_unquoted_token3, - ACTIONS(8442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, - aux_sym__immediate_decimal_token5, - STATE(5821), 1, - sym_comment, - STATE(7653), 1, - sym__immediate_decimal, - [210570] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - aux_sym_unquoted_token3, - ACTIONS(8442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, - aux_sym__immediate_decimal_token5, - STATE(5822), 1, - sym_comment, - STATE(7543), 1, - sym__immediate_decimal, - [210595] = 7, + [200524] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9428), 1, + ACTIONS(9554), 1, anon_sym_DQUOTE2, - STATE(5823), 1, + STATE(5755), 1, sym_comment, - STATE(5940), 1, + STATE(5828), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [210618] = 4, - ACTIONS(249), 1, + [200547] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5085), 1, - anon_sym_DASH, - STATE(5824), 1, + ACTIONS(2343), 1, + anon_sym_DASH2, + STATE(5756), 1, sym_comment, - ACTIONS(5083), 5, + ACTIONS(2345), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [210635] = 8, - ACTIONS(249), 1, + [200564] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9430), 1, + ACTIONS(9556), 1, anon_sym_RBRACK, - STATE(5825), 1, + STATE(5757), 1, sym_comment, - STATE(6133), 1, + STATE(6170), 1, aux_sym_shebang_repeat1, - STATE(6862), 1, + STATE(7175), 1, sym_val_list, - STATE(7296), 1, + STATE(7200), 1, aux_sym_val_table_repeat1, - [210660] = 6, - ACTIONS(249), 1, + [200589] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(9432), 1, - anon_sym_DOT_DOT2, - STATE(5826), 1, + ACTIONS(5022), 1, + anon_sym_DASH2, + STATE(5758), 1, sym_comment, - ACTIONS(1796), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9434), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210681] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(5020), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9436), 1, - anon_sym_RBRACK, - STATE(5827), 1, - sym_comment, - STATE(6134), 1, - aux_sym_shebang_repeat1, - STATE(6867), 1, - sym_val_list, - STATE(7298), 1, - aux_sym_val_table_repeat1, - [210706] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9438), 1, - anon_sym_DOT, - STATE(6329), 1, - sym_path, - STATE(5828), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1031), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [210725] = 7, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [200606] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9441), 1, + ACTIONS(9558), 1, anon_sym_DQUOTE2, - STATE(5829), 1, + STATE(5759), 1, sym_comment, - STATE(5834), 1, + STATE(5763), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [210748] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9314), 1, - anon_sym_LBRACE, - STATE(5830), 1, - sym_comment, - STATE(6743), 1, - sym_val_record, - ACTIONS(9443), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210767] = 8, + [200629] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6985), 1, + ACTIONS(6458), 1, aux_sym_unquoted_token3, - ACTIONS(8316), 1, + ACTIONS(8297), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, + ACTIONS(8879), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token5, - STATE(5831), 1, + STATE(5760), 1, sym_comment, - STATE(6730), 1, + STATE(6732), 1, sym__immediate_decimal, - [210792] = 8, + [200654] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6985), 1, + ACTIONS(6458), 1, aux_sym_unquoted_token3, - ACTIONS(8442), 1, + ACTIONS(8557), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, + ACTIONS(8792), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, + ACTIONS(8794), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, + ACTIONS(8796), 1, aux_sym__immediate_decimal_token5, - STATE(5832), 1, + STATE(5761), 1, sym_comment, - STATE(7653), 1, + STATE(7655), 1, sym__immediate_decimal, - [210817] = 5, - ACTIONS(249), 1, + [200679] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9314), 1, - anon_sym_LBRACE, - STATE(5833), 1, + ACTIONS(5616), 1, + aux_sym_unquoted_token3, + ACTIONS(8297), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token5, + STATE(5762), 1, sym_comment, - STATE(6744), 1, - sym_val_record, - ACTIONS(9445), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210836] = 7, + STATE(6732), 1, + sym__immediate_decimal, + [200704] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9447), 1, + ACTIONS(9560), 1, anon_sym_DQUOTE2, - STATE(5834), 1, + STATE(5763), 1, sym_comment, - STATE(5940), 1, + STATE(5805), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [210859] = 8, - ACTIONS(249), 1, + [200727] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2181), 1, + sym__entry_separator, + ACTIONS(9562), 1, + anon_sym_DOT_DOT2, + STATE(5764), 1, + sym_comment, + ACTIONS(2175), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9564), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200748] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9449), 1, + ACTIONS(9566), 1, anon_sym_RBRACK, - STATE(5835), 1, + STATE(5765), 1, sym_comment, - STATE(6138), 1, + STATE(6188), 1, aux_sym_shebang_repeat1, - STATE(6890), 1, + STATE(6913), 1, sym_val_list, - STATE(7304), 1, + STATE(7260), 1, aux_sym_val_table_repeat1, - [210884] = 8, - ACTIONS(249), 1, + [200773] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9451), 1, + ACTIONS(9568), 1, anon_sym_RBRACK, - STATE(5836), 1, + STATE(5766), 1, sym_comment, - STATE(6139), 1, + STATE(6189), 1, aux_sym_shebang_repeat1, - STATE(6895), 1, + STATE(6918), 1, sym_val_list, - STATE(7307), 1, + STATE(7262), 1, aux_sym_val_table_repeat1, - [210909] = 3, - ACTIONS(249), 1, + [200798] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5837), 1, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + ACTIONS(9570), 1, + anon_sym_DOT, + ACTIONS(9572), 1, + aux_sym__immediate_decimal_token2, + STATE(5767), 1, + sym_comment, + ACTIONS(1757), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [200819] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2500), 1, + anon_sym_DASH2, + STATE(5768), 1, + sym_comment, + ACTIONS(2502), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym__table_head_separator, + [200836] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5769), 1, sym_comment, - ACTIONS(9453), 6, + ACTIONS(9574), 6, sym_raw_string_begin, sym_identifier, - anon_sym_GT, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [210924] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9400), 1, - anon_sym_LBRACE, - STATE(4956), 1, - sym_block, - STATE(4958), 1, - sym_val_closure, - STATE(5110), 1, - sym__blosure, - STATE(5838), 1, - sym_comment, - STATE(5905), 1, - aux_sym_shebang_repeat1, - [210949] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9455), 1, - anon_sym_DQUOTE2, - STATE(5839), 1, - sym_comment, - STATE(5840), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [210972] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9457), 1, - anon_sym_DQUOTE2, - STATE(5840), 1, - sym_comment, - STATE(5940), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [210995] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9459), 1, - anon_sym_RBRACK, - STATE(5841), 1, - sym_comment, - STATE(6141), 1, - aux_sym_shebang_repeat1, - STATE(6911), 1, - sym_val_list, - STATE(7314), 1, - aux_sym_val_table_repeat1, - [211020] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5061), 1, - anon_sym_DASH, - STATE(5842), 1, - sym_comment, - ACTIONS(5059), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [211037] = 8, - ACTIONS(249), 1, + [200851] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9461), 1, - anon_sym_RBRACK, - STATE(5843), 1, + STATE(5770), 1, sym_comment, - STATE(6142), 1, - aux_sym_shebang_repeat1, - STATE(6916), 1, - sym_val_list, - STATE(7317), 1, - aux_sym_val_table_repeat1, - [211062] = 7, + ACTIONS(9576), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [200866] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9463), 1, + ACTIONS(9578), 1, anon_sym_DQUOTE2, - STATE(5844), 1, + STATE(5771), 1, sym_comment, - STATE(5845), 1, + STATE(5772), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211085] = 7, + [200889] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9465), 1, + ACTIONS(9580), 1, anon_sym_DQUOTE2, - STATE(5845), 1, + STATE(5772), 1, sym_comment, - STATE(5940), 1, + STATE(5805), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211108] = 5, - ACTIONS(249), 1, + [200912] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(5846), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5773), 1, sym_comment, - STATE(6455), 1, - sym_block, - ACTIONS(9467), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211127] = 8, - ACTIONS(249), 1, + STATE(7404), 1, + sym__immediate_decimal, + ACTIONS(8557), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [200935] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9469), 1, + ACTIONS(9582), 1, anon_sym_RBRACK, - STATE(5847), 1, + STATE(5774), 1, sym_comment, - STATE(6145), 1, + STATE(6190), 1, aux_sym_shebang_repeat1, - STATE(6934), 1, + STATE(6935), 1, sym_val_list, - STATE(7324), 1, + STATE(7268), 1, aux_sym_val_table_repeat1, - [211152] = 8, - ACTIONS(249), 1, + [200960] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9471), 1, + ACTIONS(9584), 1, anon_sym_RBRACK, - STATE(5848), 1, + STATE(5775), 1, sym_comment, - STATE(6146), 1, + STATE(6191), 1, aux_sym_shebang_repeat1, - STATE(6938), 1, + STATE(6940), 1, sym_val_list, - STATE(7326), 1, + STATE(7271), 1, aux_sym_val_table_repeat1, - [211177] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1092), 1, - anon_sym_LBRACE, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(5849), 1, - sym_comment, - ACTIONS(1090), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [211196] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1854), 1, - anon_sym_RBRACE, - ACTIONS(1858), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(5850), 1, - sym_comment, - STATE(6725), 1, - sym_path, - STATE(7506), 1, - sym_cell_path, - [211221] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9330), 1, - anon_sym_LPAREN, - ACTIONS(9473), 1, - anon_sym_DQUOTE2, - STATE(5851), 1, - sym_comment, - STATE(5852), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [211244] = 7, + [200985] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9475), 1, + ACTIONS(9586), 1, anon_sym_DQUOTE2, - STATE(5852), 1, + STATE(5776), 1, sym_comment, - STATE(5940), 1, + STATE(5805), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [211267] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9477), 1, - anon_sym_RBRACK, - STATE(5853), 1, - sym_comment, - STATE(6147), 1, - aux_sym_shebang_repeat1, - STATE(6953), 1, - sym_val_list, - STATE(7331), 1, - aux_sym_val_table_repeat1, - [211292] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9479), 1, - anon_sym_RBRACK, - STATE(5854), 1, - sym_comment, - STATE(6148), 1, - aux_sym_shebang_repeat1, - STATE(6957), 1, - sym_val_list, - STATE(7334), 1, - aux_sym_val_table_repeat1, - [211317] = 7, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [201008] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9481), 1, + ACTIONS(9588), 1, anon_sym_DQUOTE2, - STATE(5855), 1, + STATE(5777), 1, sym_comment, - STATE(5882), 1, + STATE(5820), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211340] = 7, - ACTIONS(249), 1, + [201031] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9380), 1, + ACTIONS(2090), 1, + anon_sym_DASH2, + STATE(5778), 1, + sym_comment, + ACTIONS(2092), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - ACTIONS(9382), 1, - anon_sym_DASH, - ACTIONS(9483), 1, - anon_sym_in, - STATE(5856), 1, + anon_sym_as, + [201048] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2351), 1, + anon_sym_DASH2, + STATE(5779), 1, sym_comment, - STATE(8055), 1, - sym__flag, - STATE(5494), 2, - sym_short_flag, - sym_long_flag, - [211363] = 7, + ACTIONS(2353), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [201065] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9485), 1, + ACTIONS(9590), 1, anon_sym_DQUOTE2, - STATE(5857), 1, + STATE(5780), 1, sym_comment, - STATE(5859), 1, + STATE(5782), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211386] = 6, - ACTIONS(249), 1, + [201088] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1528), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(9487), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9489), 1, - aux_sym__immediate_decimal_token2, - STATE(5858), 1, + ACTIONS(1913), 1, + anon_sym_DASH2, + STATE(5781), 1, sym_comment, - ACTIONS(1530), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [211407] = 7, + ACTIONS(1915), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [201105] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9491), 1, + ACTIONS(9592), 1, anon_sym_DQUOTE2, - STATE(5859), 1, + STATE(5782), 1, sym_comment, - STATE(5940), 1, + STATE(5805), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211430] = 8, - ACTIONS(249), 1, + [201128] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9493), 1, + ACTIONS(9594), 1, anon_sym_RBRACK, - STATE(5860), 1, + STATE(5783), 1, sym_comment, - STATE(6149), 1, + STATE(6192), 1, aux_sym_shebang_repeat1, - STATE(6977), 1, + STATE(6956), 1, sym_val_list, - STATE(7339), 1, + STATE(7275), 1, aux_sym_val_table_repeat1, - [211455] = 8, - ACTIONS(249), 1, + [201153] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9495), 1, + ACTIONS(9596), 1, anon_sym_RBRACK, - STATE(5861), 1, + STATE(5784), 1, sym_comment, - STATE(6150), 1, + STATE(6193), 1, aux_sym_shebang_repeat1, - STATE(6980), 1, + STATE(6961), 1, sym_val_list, - STATE(7342), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [211480] = 8, + [201178] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8316), 1, + ACTIONS(8297), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, + ACTIONS(8879), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9497), 1, + ACTIONS(9598), 1, aux_sym_unquoted_token3, - STATE(5862), 1, + STATE(5785), 1, sym_comment, - STATE(6730), 1, + STATE(6732), 1, + sym__immediate_decimal, + [201203] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(5786), 1, + sym_comment, + STATE(7982), 1, sym__immediate_decimal, - [211505] = 8, + ACTIONS(8557), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [201226] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8442), 1, + ACTIONS(8557), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, + ACTIONS(8792), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, + ACTIONS(8794), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, + ACTIONS(8796), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9497), 1, + ACTIONS(9598), 1, aux_sym_unquoted_token3, - STATE(5863), 1, + STATE(5787), 1, sym_comment, - STATE(7653), 1, + STATE(7655), 1, sym__immediate_decimal, - [211530] = 7, + [201251] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9499), 1, + ACTIONS(9600), 1, anon_sym_DQUOTE2, - STATE(5864), 1, + STATE(5788), 1, sym_comment, - STATE(5865), 1, + STATE(5790), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211553] = 7, + [201274] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9602), 1, + anon_sym_RBRACK, + STATE(5789), 1, + sym_comment, + STATE(6145), 1, + aux_sym_shebang_repeat1, + STATE(7127), 1, + aux_sym_val_table_repeat1, + STATE(7140), 1, + sym_val_list, + [201299] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9501), 1, + ACTIONS(9604), 1, anon_sym_DQUOTE2, - STATE(5865), 1, + STATE(5790), 1, sym_comment, - STATE(5940), 1, + STATE(5805), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211576] = 8, - ACTIONS(249), 1, + [201322] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9503), 1, + ACTIONS(9606), 1, anon_sym_RBRACK, - STATE(5866), 1, + STATE(5791), 1, sym_comment, - STATE(6151), 1, + STATE(6194), 1, aux_sym_shebang_repeat1, - STATE(6998), 1, + STATE(6980), 1, sym_val_list, - STATE(7347), 1, + STATE(7282), 1, aux_sym_val_table_repeat1, - [211601] = 8, - ACTIONS(249), 1, + [201347] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9505), 1, + ACTIONS(9608), 1, anon_sym_RBRACK, - STATE(5867), 1, + STATE(5792), 1, sym_comment, - STATE(6152), 1, + STATE(6195), 1, aux_sym_shebang_repeat1, - STATE(7001), 1, + STATE(6984), 1, sym_val_list, - STATE(7350), 1, + STATE(7284), 1, aux_sym_val_table_repeat1, - [211626] = 6, - ACTIONS(249), 1, + [201372] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4614), 1, - anon_sym_DOT_DOT2, - ACTIONS(9497), 1, - aux_sym_unquoted_token2, - STATE(5868), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(5793), 1, sym_comment, - ACTIONS(4616), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9507), 2, - sym_filesize_unit, - sym_duration_unit, - [211647] = 8, - ACTIONS(249), 1, + STATE(6099), 1, + sym__variable_name, + STATE(6650), 1, + sym__assignment_pattern, + [201397] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5176), 1, + anon_sym_DASH2, + STATE(5794), 1, + sym_comment, + ACTIONS(5174), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [201414] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9464), 1, + anon_sym_def, + ACTIONS(9466), 1, + anon_sym_extern, + ACTIONS(9468), 1, + anon_sym_module, + ACTIONS(9470), 1, + anon_sym_use, + ACTIONS(9610), 1, + anon_sym_alias, + ACTIONS(9612), 1, + anon_sym_const, + STATE(5795), 1, + sym_comment, + [201439] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2250), 1, + anon_sym_LBRACE, + STATE(5796), 1, + sym_comment, + ACTIONS(2248), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym_unquoted_token4, + [201456] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9509), 1, + ACTIONS(9614), 1, anon_sym_RBRACK, - STATE(5869), 1, + STATE(5797), 1, sym_comment, - STATE(6153), 1, + STATE(6196), 1, aux_sym_shebang_repeat1, - STATE(7012), 1, + STATE(6999), 1, sym_val_list, - STATE(7354), 1, + STATE(7289), 1, aux_sym_val_table_repeat1, - [211672] = 8, - ACTIONS(249), 1, + [201481] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9511), 1, + ACTIONS(9616), 1, anon_sym_RBRACK, - STATE(5870), 1, + STATE(5798), 1, sym_comment, - STATE(6154), 1, + STATE(6197), 1, aux_sym_shebang_repeat1, - STATE(7016), 1, + STATE(7003), 1, sym_val_list, - STATE(7357), 1, + STATE(7292), 1, aux_sym_val_table_repeat1, - [211697] = 8, - ACTIONS(3), 1, + [201506] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6208), 1, - sym__entry_separator, - ACTIONS(6213), 1, - anon_sym_RBRACE, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(5871), 1, + ACTIONS(5180), 1, + anon_sym_DASH2, + STATE(5799), 1, sym_comment, - STATE(6725), 1, - sym_path, - STATE(7398), 1, - sym_cell_path, - [211722] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(683), 1, - anon_sym_RPAREN, - ACTIONS(9513), 1, + ACTIONS(5178), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9515), 1, anon_sym_SEMI, - STATE(293), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5872), 1, + anon_sym_DASH_DASH, + anon_sym_as, + [201523] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6685), 1, + anon_sym_DOT_DOT2, + STATE(5800), 1, sym_comment, - STATE(6673), 1, - aux_sym__block_body_repeat1, - STATE(7176), 1, + ACTIONS(6687), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5936), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [201542] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9618), 1, + anon_sym_RBRACK, + STATE(5801), 1, + sym_comment, + STATE(6143), 1, aux_sym_shebang_repeat1, - [211747] = 8, - ACTIONS(249), 1, + STATE(7051), 1, + sym_val_list, + STATE(7121), 1, + aux_sym_val_table_repeat1, + [201567] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9517), 1, + ACTIONS(9620), 1, anon_sym_RBRACK, - STATE(5873), 1, + STATE(5802), 1, sym_comment, - STATE(6155), 1, + STATE(6198), 1, aux_sym_shebang_repeat1, - STATE(7028), 1, + STATE(7015), 1, sym_val_list, - STATE(7361), 1, + STATE(7297), 1, aux_sym_val_table_repeat1, - [211772] = 8, - ACTIONS(249), 1, + [201592] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9519), 1, + ACTIONS(9622), 1, anon_sym_RBRACK, - STATE(5874), 1, + STATE(5803), 1, sym_comment, - STATE(6156), 1, + STATE(6199), 1, aux_sym_shebang_repeat1, - STATE(7032), 1, + STATE(7018), 1, sym_val_list, - STATE(7364), 1, + STATE(7300), 1, aux_sym_val_table_repeat1, - [211797] = 8, - ACTIONS(249), 1, + [201617] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + ACTIONS(9598), 1, + aux_sym_unquoted_token2, + STATE(5804), 1, + sym_comment, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9624), 2, + sym_filesize_unit, + sym_duration_unit, + [201638] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9626), 1, + anon_sym_LPAREN, + ACTIONS(9632), 1, + anon_sym_DQUOTE2, + STATE(6665), 1, + sym_expr_interpolated, + ACTIONS(9629), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(5805), 2, + sym_comment, + aux_sym__inter_double_quotes_repeat1, + [201659] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9521), 1, + ACTIONS(9634), 1, anon_sym_RBRACK, - STATE(5875), 1, + STATE(5806), 1, sym_comment, - STATE(6157), 1, + STATE(6200), 1, aux_sym_shebang_repeat1, - STATE(7043), 1, + STATE(7030), 1, sym_val_list, - STATE(7369), 1, + STATE(7304), 1, aux_sym_val_table_repeat1, - [211822] = 8, - ACTIONS(249), 1, + [201684] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9523), 1, + ACTIONS(9636), 1, anon_sym_RBRACK, - STATE(5876), 1, + STATE(5807), 1, sym_comment, - STATE(6158), 1, + STATE(6201), 1, aux_sym_shebang_repeat1, - STATE(7048), 1, + STATE(7033), 1, sym_val_list, - STATE(7372), 1, + STATE(7307), 1, aux_sym_val_table_repeat1, - [211847] = 8, + [201709] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9638), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9640), 1, + aux_sym__immediate_decimal_token2, + STATE(5808), 1, + sym_comment, + ACTIONS(1739), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [201730] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9460), 1, + anon_sym_alias, + ACTIONS(9462), 1, + anon_sym_const, + ACTIONS(9464), 1, + anon_sym_def, + ACTIONS(9466), 1, + anon_sym_extern, + ACTIONS(9468), 1, + anon_sym_module, + ACTIONS(9470), 1, + anon_sym_use, + STATE(5809), 1, + sym_comment, + [201755] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6685), 1, + anon_sym_DOT_DOT2, + STATE(5810), 1, + sym_comment, + ACTIONS(6687), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5943), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [201774] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2139), 1, + sym__entry_separator, + ACTIONS(9642), 1, + anon_sym_DOT_DOT2, + STATE(5811), 1, + sym_comment, + ACTIONS(2133), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9644), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201795] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4870), 1, + ACTIONS(4764), 1, aux_sym_unquoted_token3, - ACTIONS(8316), 1, + ACTIONS(8297), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, + ACTIONS(8879), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token5, - STATE(5877), 1, + STATE(5812), 1, sym_comment, - STATE(6730), 1, + STATE(6732), 1, sym__immediate_decimal, - [211872] = 5, - ACTIONS(249), 1, + [201820] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(5878), 1, - sym_comment, - STATE(6456), 1, - sym_block, - ACTIONS(9467), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(617), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [211891] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9513), 1, + ACTIONS(9646), 1, sym__newline, - ACTIONS(9515), 1, + ACTIONS(9648), 1, anon_sym_SEMI, - ACTIONS(9525), 1, - anon_sym_RPAREN, - STATE(293), 1, + STATE(231), 1, aux_sym__parenthesized_body_repeat1, - STATE(5879), 1, + STATE(5813), 1, sym_comment, - STATE(6232), 1, + STATE(6687), 1, aux_sym__block_body_repeat1, - STATE(7176), 1, - aux_sym_shebang_repeat1, - [211916] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9527), 1, - anon_sym_RBRACK, - STATE(5880), 1, - sym_comment, - STATE(6160), 1, + STATE(6772), 1, aux_sym_shebang_repeat1, - STATE(7062), 1, - sym_val_list, - STATE(7378), 1, - aux_sym_val_table_repeat1, - [211941] = 7, - ACTIONS(249), 1, + [201845] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(8444), 1, + ACTIONS(4764), 1, + aux_sym_unquoted_token3, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8792), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8794), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8446), 1, + ACTIONS(8796), 1, aux_sym__immediate_decimal_token5, - STATE(5881), 1, + STATE(5814), 1, sym_comment, - STATE(7602), 1, + STATE(7655), 1, sym__immediate_decimal, - ACTIONS(8442), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [211964] = 7, + [201870] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2464), 1, + anon_sym_DASH2, + STATE(5815), 1, + sym_comment, + ACTIONS(2466), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [201887] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2500), 1, + anon_sym_DASH2, + STATE(5816), 1, + sym_comment, + ACTIONS(2502), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [201904] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9650), 1, + anon_sym_DASH_DASH, + ACTIONS(9652), 1, + anon_sym_DASH2, + ACTIONS(9654), 1, + anon_sym_in2, + STATE(5817), 1, + sym_comment, + STATE(7809), 1, + sym__flag, + STATE(5593), 2, + sym_short_flag, + sym_long_flag, + [201927] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2468), 1, + anon_sym_DASH2, + STATE(5818), 1, + sym_comment, + ACTIONS(2470), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [201944] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2210), 1, + anon_sym_LBRACE, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(5819), 1, + sym_comment, + ACTIONS(2206), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [201963] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9529), 1, + ACTIONS(9656), 1, anon_sym_DQUOTE2, - STATE(5882), 1, - sym_comment, - STATE(5940), 1, + STATE(5805), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(5820), 1, + sym_comment, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211987] = 8, - ACTIONS(249), 1, + [201986] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9531), 1, - anon_sym_RBRACK, - STATE(5883), 1, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(5821), 1, sym_comment, - STATE(6090), 1, - aux_sym_shebang_repeat1, - STATE(6941), 1, - sym_val_list, - STATE(7217), 1, - aux_sym_val_table_repeat1, - [212012] = 8, + ACTIONS(2214), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [202005] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4870), 1, + ACTIONS(5616), 1, aux_sym_unquoted_token3, - ACTIONS(8442), 1, + ACTIONS(8557), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, + ACTIONS(8792), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, + ACTIONS(8794), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, + ACTIONS(8796), 1, aux_sym__immediate_decimal_token5, - STATE(5884), 1, + STATE(5822), 1, sym_comment, - STATE(7653), 1, + STATE(7655), 1, sym__immediate_decimal, - [212037] = 8, - ACTIONS(3), 1, + [202030] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8316), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9533), 1, - aux_sym_unquoted_token3, - STATE(5885), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9658), 1, + anon_sym_RBRACK, + STATE(5823), 1, sym_comment, - STATE(6730), 1, - sym__immediate_decimal, - [212062] = 4, - ACTIONS(249), 1, + STATE(6169), 1, + aux_sym_shebang_repeat1, + STATE(7162), 1, + sym_val_list, + STATE(7197), 1, + aux_sym_val_table_repeat1, + [202055] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5886), 1, + ACTIONS(2355), 1, + anon_sym_DASH2, + STATE(5824), 1, sym_comment, - ACTIONS(1715), 2, + ACTIONS(2357), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [202072] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9660), 1, + anon_sym_RBRACK, + STATE(5825), 1, + sym_comment, + STATE(6173), 1, + aux_sym_shebang_repeat1, + STATE(6759), 1, + sym_val_list, + STATE(7215), 1, + aux_sym_val_table_repeat1, + [202097] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5826), 1, + sym_comment, + ACTIONS(2183), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1717), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(2185), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [212079] = 7, + sym__entry_separator, + [202114] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2399), 1, + anon_sym_DASH2, + STATE(5827), 1, + sym_comment, + ACTIONS(2401), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [202131] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9535), 1, + ACTIONS(9662), 1, anon_sym_DQUOTE2, - STATE(5887), 1, + STATE(5805), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5828), 1, sym_comment, - STATE(5940), 1, + STATE(6665), 1, + sym_expr_interpolated, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [202154] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LPAREN, + ACTIONS(9664), 1, + anon_sym_DQUOTE2, + STATE(5829), 1, + sym_comment, + STATE(5927), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [212102] = 8, - ACTIONS(249), 1, + [202177] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9537), 1, - anon_sym_RBRACK, - STATE(5888), 1, + ACTIONS(4956), 1, + anon_sym_DOLLAR, + ACTIONS(9666), 1, + anon_sym_EQ2, + ACTIONS(9668), 1, + sym_short_flag_identifier, + STATE(5830), 1, sym_comment, - STATE(6137), 1, - aux_sym_shebang_repeat1, - STATE(7371), 1, - sym_val_list, - STATE(7401), 1, - aux_sym_val_table_repeat1, - [212127] = 6, - ACTIONS(249), 1, + ACTIONS(4958), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [202198] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4614), 1, - anon_sym_DOT_DOT2, - ACTIONS(4870), 1, - aux_sym_unquoted_token2, - STATE(5889), 1, + ACTIONS(2094), 1, + anon_sym_DASH2, + STATE(5831), 1, + sym_comment, + ACTIONS(2096), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [202215] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5832), 1, sym_comment, - ACTIONS(4616), 2, + ACTIONS(1018), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1020), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9507), 2, - sym_filesize_unit, - sym_duration_unit, - [212148] = 8, - ACTIONS(3), 1, + sym__entry_separator, + [202232] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4770), 1, - aux_sym_unquoted_token3, - ACTIONS(8316), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, - aux_sym__immediate_decimal_token5, - STATE(5890), 1, + ACTIONS(9650), 1, + anon_sym_DASH_DASH, + ACTIONS(9652), 1, + anon_sym_DASH2, + ACTIONS(9670), 1, + anon_sym_in2, + STATE(5833), 1, sym_comment, - STATE(5992), 1, - sym__immediate_decimal, - [212173] = 8, + STATE(7689), 1, + sym__flag, + STATE(5593), 2, + sym_short_flag, + sym_long_flag, + [202255] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2359), 1, + anon_sym_DASH2, + STATE(5834), 1, + sym_comment, + ACTIONS(2361), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [202272] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4770), 1, - aux_sym_unquoted_token3, - ACTIONS(8442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, - aux_sym__immediate_decimal_token5, - STATE(5891), 1, + ACTIONS(1032), 1, + anon_sym_LBRACE, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(5835), 1, sym_comment, - STATE(7543), 1, - sym__immediate_decimal, - [212198] = 8, - ACTIONS(249), 1, + ACTIONS(1030), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [202291] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9539), 1, - anon_sym_RBRACK, - STATE(5892), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(9672), 1, + anon_sym_DOT_DOT2, + STATE(5836), 1, sym_comment, - STATE(6176), 1, - aux_sym_shebang_repeat1, - STATE(6760), 1, - aux_sym_val_table_repeat1, - STATE(6778), 1, - sym_val_list, - [212223] = 8, - ACTIONS(249), 1, + ACTIONS(1874), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9674), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202312] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9541), 1, + ACTIONS(9676), 1, anon_sym_RBRACK, - STATE(5893), 1, + STATE(5837), 1, sym_comment, - STATE(6091), 1, + STATE(6174), 1, aux_sym_shebang_repeat1, - STATE(7131), 1, + STATE(6763), 1, sym_val_list, - STATE(7219), 1, + STATE(7218), 1, aux_sym_val_table_repeat1, - [212248] = 6, - ACTIONS(249), 1, + [202337] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4614), 1, - anon_sym_DOT_DOT2, - ACTIONS(9533), 1, - aux_sym_unquoted_token2, - STATE(5894), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(5838), 1, sym_comment, - ACTIONS(4616), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9507), 2, - sym_filesize_unit, - sym_duration_unit, - [212269] = 8, - ACTIONS(249), 1, + STATE(6099), 1, + sym__variable_name, + STATE(6648), 1, + sym__assignment_pattern, + [202362] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3294), 1, + ACTIONS(3365), 1, aux_sym_record_entry_token1, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, + ACTIONS(8487), 1, anon_sym_DOLLAR, - STATE(5416), 1, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, sym_val_variable, - STATE(5895), 1, + STATE(5839), 1, sym_comment, - STATE(6047), 1, + STATE(6099), 1, sym__variable_name, - STATE(6300), 1, + STATE(6649), 1, sym__assignment_pattern, - [212294] = 8, - ACTIONS(249), 1, + [202387] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3294), 1, + ACTIONS(3365), 1, aux_sym_record_entry_token1, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, + ACTIONS(8487), 1, anon_sym_DOLLAR, - STATE(5416), 1, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, sym_val_variable, - STATE(5896), 1, + STATE(5840), 1, sym_comment, - STATE(6047), 1, + STATE(6099), 1, sym__variable_name, - STATE(6301), 1, + STATE(6650), 1, sym__assignment_pattern, - [212319] = 8, - ACTIONS(249), 1, + [202412] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8297), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9678), 1, + aux_sym_unquoted_token3, + STATE(5841), 1, + sym_comment, + STATE(6732), 1, + sym__immediate_decimal, + [202437] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2407), 1, + anon_sym_DASH2, + STATE(5842), 1, + sym_comment, + ACTIONS(2409), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [202454] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2347), 1, + anon_sym_DASH2, + STATE(5843), 1, + sym_comment, + ACTIONS(2349), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [202471] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2347), 1, + anon_sym_DASH2, + STATE(5844), 1, + sym_comment, + ACTIONS(2349), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [202488] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3294), 1, + ACTIONS(3363), 1, aux_sym_record_entry_token1, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, + ACTIONS(8487), 1, anon_sym_DOLLAR, - STATE(5416), 1, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, sym_val_variable, - STATE(5897), 1, + STATE(5845), 1, sym_comment, - STATE(6047), 1, + STATE(6099), 1, sym__variable_name, - STATE(6303), 1, + STATE(6649), 1, sym__assignment_pattern, - [212344] = 4, - ACTIONS(249), 1, + [202513] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5898), 1, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + ACTIONS(9680), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9682), 1, + aux_sym__immediate_decimal_token2, + STATE(5846), 1, + sym_comment, + ACTIONS(1741), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [202534] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4900), 1, + aux_sym_unquoted_token3, + ACTIONS(8297), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token5, + STATE(5847), 1, + sym_comment, + STATE(6732), 1, + sym__immediate_decimal, + [202559] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5145), 1, + anon_sym_DASH2, + STATE(5848), 1, + sym_comment, + ACTIONS(5143), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [202576] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9684), 1, + anon_sym_LBRACE, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4956), 1, + sym_block, + STATE(4962), 1, + sym_val_closure, + STATE(5064), 1, + sym__blosure, + STATE(5849), 1, + sym_comment, + [202601] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9686), 1, + anon_sym_RBRACK, + STATE(5850), 1, + sym_comment, + STATE(6157), 1, + aux_sym_shebang_repeat1, + STATE(7157), 1, + aux_sym_val_table_repeat1, + STATE(7199), 1, + sym_val_list, + [202626] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5851), 1, sym_comment, - ACTIONS(1703), 2, + ACTIONS(1783), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1705), 4, + ACTIONS(1785), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [212361] = 5, - ACTIONS(249), 1, + [202643] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6607), 1, - anon_sym_DOT_DOT2, - STATE(5899), 1, + ACTIONS(4900), 1, + aux_sym_unquoted_token3, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8792), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8794), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8796), 1, + aux_sym__immediate_decimal_token5, + STATE(5852), 1, sym_comment, - ACTIONS(6609), 2, + STATE(7655), 1, + sym__immediate_decimal, + [202668] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LPAREN, + ACTIONS(9688), 1, + anon_sym_DQUOTE2, + STATE(5853), 1, + sym_comment, + STATE(5936), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6665), 1, + sym_expr_interpolated, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [202691] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5854), 1, + sym_comment, + ACTIONS(2125), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2127), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5893), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [212380] = 5, - ACTIONS(249), 1, + sym__entry_separator, + [202708] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6607), 1, + ACTIONS(4708), 1, anon_sym_DOT_DOT2, - STATE(5900), 1, + ACTIONS(4900), 1, + aux_sym_unquoted_token2, + STATE(5855), 1, sym_comment, - ACTIONS(6609), 2, + ACTIONS(4710), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5900), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [212399] = 8, + ACTIONS(9624), 2, + sym_filesize_unit, + sym_duration_unit, + [202729] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7242), 1, - anon_sym_RBRACK, - ACTIONS(7244), 1, + ACTIONS(9540), 1, + anon_sym_LPAREN, + ACTIONS(9690), 1, + anon_sym_DQUOTE2, + STATE(5856), 1, + sym_comment, + STATE(5865), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6665), 1, + sym_expr_interpolated, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [202752] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6192), 1, sym__entry_separator, - ACTIONS(9219), 1, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(5901), 1, + ACTIONS(9692), 1, + anon_sym_RBRACE, + STATE(5857), 1, sym_comment, - STATE(6725), 1, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, sym_path, - STATE(7484), 1, + STATE(7028), 1, sym_cell_path, - [212424] = 8, - ACTIONS(249), 1, + [202777] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9695), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9697), 1, + aux_sym__immediate_decimal_token2, + STATE(5858), 1, + sym_comment, + ACTIONS(1739), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1741), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [202798] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5859), 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, + [202815] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7218), 1, + aux_sym_unquoted_token3, + ACTIONS(8297), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token5, + STATE(5860), 1, + sym_comment, + STATE(6732), 1, + sym__immediate_decimal, + [202840] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9646), 1, + sym__newline, + ACTIONS(9648), 1, + anon_sym_SEMI, + ACTIONS(9699), 1, + anon_sym_RPAREN, + STATE(231), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5861), 1, + sym_comment, + STATE(6609), 1, + aux_sym__block_body_repeat1, + STATE(6772), 1, + aux_sym_shebang_repeat1, + [202865] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2504), 1, + anon_sym_DASH2, + STATE(5862), 1, + sym_comment, + ACTIONS(2506), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [202882] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3657), 1, + sym__space, + STATE(5863), 1, + sym_comment, + ACTIONS(3655), 5, sym__newline, - ACTIONS(9400), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_LBRACE, - STATE(2498), 1, + [202899] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7218), 1, + aux_sym_unquoted_token3, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8792), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8794), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8796), 1, + aux_sym__immediate_decimal_token5, + STATE(5864), 1, + sym_comment, + STATE(7655), 1, + sym__immediate_decimal, + [202924] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LPAREN, + ACTIONS(9701), 1, + anon_sym_DQUOTE2, + STATE(5805), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5865), 1, + sym_comment, + STATE(6665), 1, + sym_expr_interpolated, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [202947] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + anon_sym_DASH2, + STATE(5866), 1, + sym_comment, + ACTIONS(1721), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [202964] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9703), 1, + anon_sym_RBRACK, + STATE(5867), 1, + sym_comment, + STATE(6081), 1, aux_sym_shebang_repeat1, - STATE(4956), 1, - sym_block, - STATE(4958), 1, - sym_val_closure, - STATE(5132), 1, - sym__blosure, - STATE(5902), 1, + STATE(7116), 1, + sym_val_list, + STATE(7118), 1, + aux_sym_val_table_repeat1, + [202989] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5098), 1, + anon_sym_DASH2, + STATE(5868), 1, + sym_comment, + ACTIONS(5096), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203006] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9705), 1, + anon_sym_RBRACK, + STATE(5869), 1, sym_comment, - [212449] = 4, - ACTIONS(249), 1, + STATE(6175), 1, + aux_sym_shebang_repeat1, + STATE(6784), 1, + sym_val_list, + STATE(7224), 1, + aux_sym_val_table_repeat1, + [203031] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5065), 1, - anon_sym_DASH, - STATE(5903), 1, + ACTIONS(5102), 1, + anon_sym_DASH2, + STATE(5870), 1, sym_comment, - ACTIONS(5063), 5, + ACTIONS(5100), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [212466] = 6, - ACTIONS(3), 1, + [203048] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2212), 1, - sym__entry_separator, - ACTIONS(9543), 1, - anon_sym_DOT_DOT2, - STATE(5904), 1, - sym_comment, - ACTIONS(2206), 2, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9707), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9545), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [212487] = 8, - ACTIONS(249), 1, + STATE(5871), 1, + sym_comment, + STATE(6209), 1, + aux_sym_shebang_repeat1, + STATE(7244), 1, + sym_val_list, + STATE(7331), 1, + aux_sym_val_table_repeat1, + [203073] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9400), 1, + ACTIONS(9684), 1, anon_sym_LBRACE, - STATE(2498), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, STATE(4956), 1, sym_block, - STATE(4958), 1, + STATE(4962), 1, sym_val_closure, - STATE(5084), 1, + STATE(5164), 1, sym__blosure, - STATE(5905), 1, - sym_comment, - [212512] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5906), 1, + STATE(5872), 1, sym_comment, - ACTIONS(1769), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1771), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [212529] = 8, - ACTIONS(249), 1, + [203098] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9400), 1, - anon_sym_LBRACE, - STATE(4956), 1, - sym_block, - STATE(4958), 1, - sym_val_closure, - STATE(5084), 1, - sym__blosure, - STATE(5907), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9709), 1, + anon_sym_RBRACK, + STATE(5873), 1, sym_comment, - STATE(5938), 1, + STATE(6176), 1, aux_sym_shebang_repeat1, - [212554] = 8, - ACTIONS(249), 1, + STATE(6788), 1, + sym_val_list, + STATE(7226), 1, + aux_sym_val_table_repeat1, + [203123] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9400), 1, - anon_sym_LBRACE, - STATE(4956), 1, - sym_block, - STATE(4958), 1, - sym_val_closure, - STATE(5085), 1, - sym__blosure, - STATE(5908), 1, + ACTIONS(9711), 1, + anon_sym_DOT, + ACTIONS(9713), 1, + aux_sym__immediate_decimal_token2, + STATE(5874), 1, sym_comment, - STATE(5951), 1, - aux_sym_shebang_repeat1, - [212579] = 4, - ACTIONS(249), 1, + ACTIONS(1755), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [203144] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9547), 1, - anon_sym_LT, - STATE(5909), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(5875), 1, sym_comment, - ACTIONS(7753), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - [212596] = 4, - ACTIONS(249), 1, + STATE(6099), 1, + sym__variable_name, + STATE(6648), 1, + sym__assignment_pattern, + [203169] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9549), 1, - anon_sym_LT, - STATE(5910), 1, + ACTIONS(9715), 1, + anon_sym_DOT, + STATE(6532), 1, + sym_path, + STATE(5876), 2, sym_comment, - ACTIONS(7753), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - [212613] = 6, + aux_sym_cell_path_repeat1, + ACTIONS(971), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [203188] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2363), 1, + anon_sym_DASH2, + STATE(5877), 1, + sym_comment, + ACTIONS(2365), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203205] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9551), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9553), 1, - aux_sym__immediate_decimal_token2, - STATE(5911), 1, + ACTIONS(7371), 1, + anon_sym_RBRACK, + ACTIONS(7373), 1, + sym__entry_separator, + ACTIONS(9420), 1, + anon_sym_DOT, + STATE(5878), 1, sym_comment, - ACTIONS(1703), 2, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, + sym_path, + STATE(7383), 1, + sym_cell_path, + [203230] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2078), 1, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1705), 2, - anon_sym_LPAREN2, + ACTIONS(2080), 1, sym__entry_separator, - [212634] = 6, - ACTIONS(3), 1, + ACTIONS(9420), 1, + anon_sym_DOT, + STATE(5879), 1, + sym_comment, + STATE(5950), 1, + aux_sym_cell_path_repeat1, + STATE(6234), 1, + sym_path, + STATE(7531), 1, + sym_cell_path, + [203255] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9555), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9557), 1, - aux_sym__immediate_decimal_token2, - STATE(5912), 1, + ACTIONS(2367), 1, + anon_sym_DASH2, + STATE(5880), 1, sym_comment, - ACTIONS(1703), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1705), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [212655] = 8, - ACTIONS(249), 1, + ACTIONS(2369), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203272] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9235), 1, + ACTIONS(9718), 1, anon_sym_alias, - ACTIONS(9237), 1, + ACTIONS(9720), 1, anon_sym_const, - ACTIONS(9239), 1, + ACTIONS(9722), 1, anon_sym_def, - ACTIONS(9241), 1, + ACTIONS(9724), 1, anon_sym_extern, - ACTIONS(9243), 1, + ACTIONS(9726), 1, anon_sym_module, - ACTIONS(9245), 1, + ACTIONS(9728), 1, anon_sym_use, - STATE(5913), 1, + STATE(5881), 1, sym_comment, - [212680] = 6, - ACTIONS(249), 1, + [203297] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9559), 1, - sym_long_flag_identifier, - ACTIONS(9561), 1, - anon_sym_EQ2, - STATE(5914), 1, + ACTIONS(9646), 1, + sym__newline, + ACTIONS(9648), 1, + anon_sym_SEMI, + ACTIONS(9730), 1, + anon_sym_RPAREN, + STATE(231), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5882), 1, sym_comment, - ACTIONS(4937), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(4939), 2, - anon_sym_DOLLAR, + STATE(6519), 1, + aux_sym__block_body_repeat1, + STATE(6772), 1, + aux_sym_shebang_repeat1, + [203322] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LPAREN, + ACTIONS(9732), 1, + anon_sym_DQUOTE2, + STATE(5883), 1, + sym_comment, + STATE(5893), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6665), 1, + sym_expr_interpolated, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [203345] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2383), 1, + anon_sym_DASH2, + STATE(5884), 1, + sym_comment, + ACTIONS(2385), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - [212701] = 4, - ACTIONS(249), 1, + anon_sym_as, + [203362] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5915), 1, + ACTIONS(5088), 1, + anon_sym_DASH2, + STATE(5885), 1, + sym_comment, + ACTIONS(5086), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203379] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1018), 1, + anon_sym_DASH2, + STATE(5886), 1, + sym_comment, + ACTIONS(1020), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [203396] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2159), 1, + anon_sym_DASH2, + ACTIONS(9734), 1, + anon_sym_DOT_DOT2, + STATE(5887), 1, + sym_comment, + ACTIONS(2165), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(9736), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203417] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5888), 1, sym_comment, - ACTIONS(1826), 2, + ACTIONS(1890), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1828), 4, + ACTIONS(1892), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [212718] = 8, + [203434] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9684), 1, + anon_sym_LBRACE, + STATE(4956), 1, + sym_block, + STATE(4962), 1, + sym_val_closure, + STATE(5164), 1, + sym__blosure, + STATE(5889), 1, + sym_comment, + STATE(5918), 1, + aux_sym_shebang_repeat1, + [203459] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4842), 1, + ACTIONS(7157), 1, aux_sym_unquoted_token3, - ACTIONS(8316), 1, + ACTIONS(8297), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8631), 1, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, + ACTIONS(8879), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token5, - STATE(5916), 1, + STATE(5890), 1, sym_comment, - STATE(5992), 1, + STATE(6732), 1, sym__immediate_decimal, - [212743] = 8, + [203484] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4842), 1, + ACTIONS(7157), 1, aux_sym_unquoted_token3, - ACTIONS(8442), 1, + ACTIONS(8557), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, + ACTIONS(8792), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, + ACTIONS(8794), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, + ACTIONS(8796), 1, aux_sym__immediate_decimal_token5, - STATE(5917), 1, + STATE(5891), 1, sym_comment, - STATE(7543), 1, + STATE(7655), 1, + sym__immediate_decimal, + [203509] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8792), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8794), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8796), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9678), 1, + aux_sym_unquoted_token3, + STATE(5892), 1, + sym_comment, + STATE(7655), 1, sym__immediate_decimal, - [212768] = 7, + [203534] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9563), 1, + ACTIONS(9738), 1, anon_sym_DQUOTE2, - STATE(5887), 1, + STATE(5805), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5918), 1, + STATE(5893), 1, sym_comment, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [212791] = 6, - ACTIONS(249), 1, + [203557] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(5919), 1, + STATE(5894), 1, sym_comment, - STATE(5920), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1029), 3, + ACTIONS(1739), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1741), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [212812] = 5, - ACTIONS(249), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203574] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9565), 1, - anon_sym_DOT, - STATE(2752), 1, - sym_path, - STATE(5920), 2, + ACTIONS(6458), 1, + aux_sym_unquoted_token3, + ACTIONS(8297), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token5, + STATE(5895), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1033), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [212831] = 7, + STATE(6093), 1, + sym__immediate_decimal, + [203599] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9684), 1, + anon_sym_LBRACE, + STATE(4956), 1, + sym_block, + STATE(4962), 1, + sym_val_closure, + STATE(5064), 1, + sym__blosure, + STATE(5872), 1, + aux_sym_shebang_repeat1, + STATE(5896), 1, + sym_comment, + [203624] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9568), 1, + ACTIONS(9740), 1, anon_sym_DQUOTE2, - STATE(5921), 1, + STATE(5897), 1, sym_comment, - STATE(5935), 1, + STATE(5913), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [212854] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5922), 1, - sym_comment, - ACTIONS(9570), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [212869] = 4, - ACTIONS(249), 1, + [203647] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DASH, - STATE(5923), 1, + ACTIONS(5130), 1, + anon_sym_DASH2, + STATE(5898), 1, sym_comment, - ACTIONS(5097), 5, + ACTIONS(5128), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [212886] = 8, + [203664] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9742), 1, + anon_sym_RBRACK, + STATE(5899), 1, + sym_comment, + STATE(6177), 1, + aux_sym_shebang_repeat1, + STATE(6809), 1, + sym_val_list, + STATE(7231), 1, + aux_sym_val_table_repeat1, + [203689] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6458), 1, + aux_sym_unquoted_token3, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8792), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8794), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8796), 1, + aux_sym__immediate_decimal_token5, + STATE(5900), 1, + sym_comment, + STATE(7475), 1, + sym__immediate_decimal, + [203714] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8316), 1, + ACTIONS(8297), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8580), 1, + ACTIONS(8677), 1, aux_sym_unquoted_token3, - ACTIONS(8631), 1, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8633), 1, + ACTIONS(8879), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8635), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token5, - STATE(5924), 1, + STATE(5901), 1, sym_comment, - STATE(6730), 1, + STATE(6732), 1, sym__immediate_decimal, - [212911] = 8, + [203739] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8442), 1, + ACTIONS(8557), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8580), 1, + ACTIONS(8677), 1, aux_sym_unquoted_token3, - ACTIONS(8637), 1, + ACTIONS(8792), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, + ACTIONS(8794), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, + ACTIONS(8796), 1, aux_sym__immediate_decimal_token5, - STATE(5925), 1, + STATE(5902), 1, sym_comment, - STATE(7653), 1, + STATE(7655), 1, sym__immediate_decimal, - [212936] = 4, + [203764] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5926), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token3, + ACTIONS(8297), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token5, + STATE(5903), 1, sym_comment, - ACTIONS(2105), 3, - anon_sym_RBRACK, + STATE(6732), 1, + sym__immediate_decimal, + [203789] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(5904), 1, + sym_comment, + STATE(6327), 1, + sym_block, + ACTIONS(9744), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2107), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [212953] = 3, - ACTIONS(249), 1, + [203808] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5927), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token3, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8792), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8794), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8796), 1, + aux_sym__immediate_decimal_token5, + STATE(5905), 1, sym_comment, - ACTIONS(9572), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [212968] = 6, - ACTIONS(249), 1, + STATE(7655), 1, + sym__immediate_decimal, + [203833] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4614), 1, + ACTIONS(4708), 1, anon_sym_DOT_DOT2, - ACTIONS(8580), 1, + ACTIONS(4864), 1, aux_sym_unquoted_token2, - STATE(5928), 1, + STATE(5906), 1, sym_comment, - ACTIONS(4616), 2, + ACTIONS(4710), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9507), 2, + ACTIONS(9624), 2, sym_filesize_unit, sym_duration_unit, - [212989] = 5, - ACTIONS(3), 1, + [203854] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2297), 1, - anon_sym_LBRACE, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(5929), 1, + ACTIONS(1988), 1, + anon_sym_DASH2, + STATE(5907), 1, sym_comment, - ACTIONS(2293), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1990), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_DASH, - [213008] = 8, - ACTIONS(249), 1, + anon_sym_as, + [203871] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9513), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9515), 1, - anon_sym_SEMI, - ACTIONS(9574), 1, - anon_sym_RPAREN, - STATE(293), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5930), 1, + ACTIONS(9684), 1, + anon_sym_LBRACE, + STATE(4956), 1, + sym_block, + STATE(4962), 1, + sym_val_closure, + STATE(5136), 1, + sym__blosure, + STATE(5908), 1, sym_comment, - STATE(6726), 1, - aux_sym__block_body_repeat1, - STATE(7176), 1, + STATE(5925), 1, aux_sym_shebang_repeat1, - [213033] = 5, - ACTIONS(249), 1, + [203896] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(5931), 1, - sym_comment, - STATE(6275), 1, - sym_block, - ACTIONS(9576), 4, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213052] = 4, - ACTIONS(3), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9746), 1, + anon_sym_RBRACK, + STATE(5909), 1, + sym_comment, + STATE(6178), 1, + aux_sym_shebang_repeat1, + STATE(6813), 1, + sym_val_list, + STATE(7233), 1, + aux_sym_val_table_repeat1, + [203921] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2291), 1, - anon_sym_LBRACE, - STATE(5932), 1, + ACTIONS(2492), 1, + anon_sym_DASH2, + STATE(5910), 1, sym_comment, - ACTIONS(2289), 5, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2494), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token4, - [213069] = 5, - ACTIONS(249), 1, + anon_sym_as, + [203938] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(5933), 1, + ACTIONS(2508), 1, + anon_sym_DASH2, + STATE(5911), 1, sym_comment, - STATE(6658), 1, - sym_block, - ACTIONS(9578), 4, + ACTIONS(2510), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213088] = 5, - ACTIONS(249), 1, + anon_sym_DASH_DASH, + anon_sym_as, + [203955] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(5934), 1, + ACTIONS(2480), 1, + anon_sym_DASH2, + STATE(5912), 1, sym_comment, - STATE(6666), 1, - sym_block, - ACTIONS(9578), 4, + ACTIONS(2482), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213107] = 7, + anon_sym_DASH_DASH, + anon_sym_as, + [203972] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9580), 1, + ACTIONS(9748), 1, anon_sym_DQUOTE2, - STATE(5935), 1, - sym_comment, - STATE(5940), 1, + STATE(5805), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6294), 1, + STATE(5913), 1, + sym_comment, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [213130] = 5, - ACTIONS(3), 1, + [203995] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - ACTIONS(2305), 1, - anon_sym_LBRACE, - STATE(5936), 1, + ACTIONS(1992), 1, + anon_sym_DASH2, + STATE(5914), 1, sym_comment, - ACTIONS(2303), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1994), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_DASH, - [213149] = 8, - ACTIONS(249), 1, + anon_sym_as, + [204012] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9582), 1, + ACTIONS(9750), 1, anon_sym_RBRACK, - STATE(5937), 1, + STATE(5915), 1, sym_comment, - STATE(6109), 1, + STATE(6158), 1, aux_sym_shebang_repeat1, - STATE(7050), 1, + STATE(6785), 1, sym_val_list, - STATE(7234), 1, + STATE(7159), 1, aux_sym_val_table_repeat1, - [213174] = 8, - ACTIONS(249), 1, + [204037] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9400), 1, - anon_sym_LBRACE, - STATE(2498), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9752), 1, + anon_sym_RBRACK, + STATE(5916), 1, + sym_comment, + STATE(6167), 1, aux_sym_shebang_repeat1, - STATE(4956), 1, - sym_block, - STATE(4958), 1, - sym_val_closure, - STATE(5068), 1, - sym__blosure, - STATE(5938), 1, + STATE(7068), 1, + sym_val_list, + STATE(7189), 1, + aux_sym_val_table_repeat1, + [204062] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2456), 1, + anon_sym_DASH2, + STATE(5917), 1, sym_comment, - [213199] = 8, - ACTIONS(249), 1, + ACTIONS(2458), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [204079] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9400), 1, + ACTIONS(9684), 1, anon_sym_LBRACE, + STATE(1816), 1, + aux_sym_shebang_repeat1, STATE(4956), 1, sym_block, - STATE(4958), 1, + STATE(4962), 1, sym_val_closure, - STATE(5068), 1, + STATE(5052), 1, sym__blosure, - STATE(5802), 1, - aux_sym_shebang_repeat1, - STATE(5939), 1, - sym_comment, - [213224] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9584), 1, - anon_sym_LPAREN, - ACTIONS(9590), 1, - anon_sym_DQUOTE2, - STATE(6294), 1, - sym_expr_interpolated, - ACTIONS(9587), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(5940), 2, + STATE(5918), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [213245] = 8, - ACTIONS(3), 1, + [204104] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8637), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8639), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(8559), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8641), 1, + ACTIONS(8561), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9533), 1, - aux_sym_unquoted_token3, - STATE(5941), 1, + STATE(5919), 1, sym_comment, - STATE(7653), 1, + STATE(7686), 1, sym__immediate_decimal, - [213270] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9592), 1, - anon_sym_RBRACK, - STATE(5942), 1, - sym_comment, - STATE(6115), 1, - aux_sym_shebang_repeat1, - STATE(7203), 1, - sym_val_list, - STATE(7249), 1, - aux_sym_val_table_repeat1, - [213295] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9594), 1, - anon_sym_RBRACK, - STATE(5943), 1, - sym_comment, - STATE(6116), 1, - aux_sym_shebang_repeat1, - STATE(7206), 1, - sym_val_list, - STATE(7252), 1, - aux_sym_val_table_repeat1, - [213320] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - ACTIONS(9596), 1, - anon_sym_RBRACK, - STATE(5944), 1, - sym_comment, - STATE(6110), 1, - aux_sym_shebang_repeat1, - STATE(7065), 1, - sym_val_list, - STATE(7236), 1, - aux_sym_val_table_repeat1, - [213345] = 8, + ACTIONS(8557), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [204127] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2063), 1, - anon_sym_RBRACE, - ACTIONS(2065), 1, + ACTIONS(2173), 1, sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(5945), 1, - sym_comment, - STATE(6725), 1, - sym_path, - STATE(7511), 1, - sym_cell_path, - [213370] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - anon_sym_DOLLAR, - ACTIONS(9598), 1, - anon_sym_EQ2, - ACTIONS(9600), 1, - sym_short_flag_identifier, - STATE(5946), 1, - sym_comment, - ACTIONS(4925), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [213391] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - ACTIONS(9602), 1, + ACTIONS(9754), 1, anon_sym_DOT_DOT2, - STATE(5947), 1, + STATE(5920), 1, sym_comment, - ACTIONS(1850), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9604), 2, + ACTIONS(2167), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9756), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [213412] = 8, - ACTIONS(249), 1, + [204148] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9606), 1, + ACTIONS(9758), 1, anon_sym_RBRACK, - STATE(5948), 1, + STATE(5921), 1, sym_comment, - STATE(6031), 1, + STATE(6168), 1, aux_sym_shebang_repeat1, - STATE(6975), 1, + STATE(7075), 1, sym_val_list, - STATE(7167), 1, + STATE(7191), 1, aux_sym_val_table_repeat1, - [213437] = 4, - ACTIONS(249), 1, + [204173] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5073), 1, - anon_sym_DASH, - STATE(5949), 1, + ACTIONS(2460), 1, + anon_sym_DASH2, + STATE(5922), 1, sym_comment, - ACTIONS(5071), 5, + ACTIONS(2462), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [213454] = 3, - ACTIONS(249), 1, + [204190] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5950), 1, + ACTIONS(4900), 1, + aux_sym_unquoted_token3, + ACTIONS(8297), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token5, + STATE(5923), 1, sym_comment, - ACTIONS(9608), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213469] = 8, - ACTIONS(249), 1, + STATE(6093), 1, + sym__immediate_decimal, + [204215] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9400), 1, - anon_sym_LBRACE, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4956), 1, - sym_block, - STATE(4958), 1, - sym_val_closure, - STATE(5069), 1, - sym__blosure, - STATE(5951), 1, + ACTIONS(4900), 1, + aux_sym_unquoted_token3, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8792), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8794), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8796), 1, + aux_sym__immediate_decimal_token5, + STATE(5924), 1, sym_comment, - [213494] = 8, - ACTIONS(249), 1, + STATE(7475), 1, + sym__immediate_decimal, + [204240] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9400), 1, + ACTIONS(9684), 1, anon_sym_LBRACE, + STATE(1816), 1, + aux_sym_shebang_repeat1, STATE(4956), 1, sym_block, - STATE(4958), 1, + STATE(4962), 1, sym_val_closure, - STATE(5069), 1, + STATE(5155), 1, sym__blosure, - STATE(5804), 1, - aux_sym_shebang_repeat1, - STATE(5952), 1, + STATE(5925), 1, sym_comment, - [213519] = 8, - ACTIONS(3), 1, + [204265] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7232), 1, - anon_sym_RBRACK, - ACTIONS(7234), 1, - sym__entry_separator, - ACTIONS(9219), 1, - anon_sym_DOT, - STATE(5793), 1, - aux_sym_cell_path_repeat1, - STATE(5953), 1, + ACTIONS(2403), 1, + anon_sym_DASH2, + STATE(5926), 1, sym_comment, - STATE(6725), 1, - sym_path, - STATE(7507), 1, - sym_cell_path, - [213544] = 4, + ACTIONS(2405), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [204282] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3931), 1, - sym__space, - STATE(5954), 1, + ACTIONS(9540), 1, + anon_sym_LPAREN, + ACTIONS(9760), 1, + anon_sym_DQUOTE2, + STATE(5805), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5927), 1, sym_comment, - ACTIONS(3929), 5, + STATE(6665), 1, + sym_expr_interpolated, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [204305] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, sym__newline, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, + ACTIONS(9684), 1, anon_sym_LBRACE, - [213561] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(9610), 1, - sym_long_flag_identifier, - ACTIONS(9612), 1, - anon_sym_EQ2, - STATE(5955), 1, + STATE(4956), 1, + sym_block, + STATE(4962), 1, + sym_val_closure, + STATE(5155), 1, + sym__blosure, + STATE(5928), 1, sym_comment, - ACTIONS(4939), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [213582] = 4, - ACTIONS(249), 1, + STATE(5934), 1, + aux_sym_shebang_repeat1, + [204330] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5049), 1, - anon_sym_DASH, - STATE(5956), 1, + ACTIONS(1030), 1, + anon_sym_DASH2, + STATE(5929), 1, sym_comment, - ACTIONS(5047), 5, + ACTIONS(1032), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [213599] = 6, + [204347] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9684), 1, + anon_sym_LBRACE, + STATE(4956), 1, + sym_block, + STATE(4962), 1, + sym_val_closure, + STATE(5039), 1, + sym__blosure, + STATE(5849), 1, + aux_sym_shebang_repeat1, + STATE(5930), 1, + sym_comment, + [204372] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1033), 1, - sym__entry_separator, - ACTIONS(9614), 1, + ACTIONS(9458), 1, anon_sym_DOT, - STATE(6725), 1, + STATE(5876), 1, + aux_sym_cell_path_repeat1, + STATE(5931), 1, + sym_comment, + STATE(6532), 1, sym_path, - ACTIONS(1031), 2, + ACTIONS(967), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(5957), 2, - sym_comment, - aux_sym_cell_path_repeat1, - [213620] = 6, - ACTIONS(249), 1, + sym__entry_separator, + sym__table_head_separator, + [204393] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1703), 1, - aux_sym_unquoted_token2, - ACTIONS(9617), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9619), 1, - aux_sym__immediate_decimal_token2, - STATE(5958), 1, + ACTIONS(9762), 1, + anon_sym_LT, + STATE(5932), 1, sym_comment, - ACTIONS(1705), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [213641] = 6, + ACTIONS(7953), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [204410] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - sym__entry_separator, - ACTIONS(9621), 1, - anon_sym_DOT_DOT2, - STATE(5959), 1, + STATE(5933), 1, sym_comment, - ACTIONS(2234), 2, + ACTIONS(2129), 3, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9623), 2, + anon_sym_DOT_DOT2, + ACTIONS(2131), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [213662] = 4, - ACTIONS(249), 1, + sym__entry_separator, + [204427] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5069), 1, - anon_sym_DASH, - STATE(5960), 1, - sym_comment, - ACTIONS(5067), 5, - ts_builtin_sym_end, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [213679] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1715), 1, - aux_sym_unquoted_token2, - ACTIONS(9625), 1, - anon_sym_DOT, - ACTIONS(9627), 1, - aux_sym__immediate_decimal_token2, - STATE(5961), 1, - sym_comment, - ACTIONS(1717), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [213700] = 8, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9629), 1, - anon_sym_alias, - ACTIONS(9631), 1, - anon_sym_const, - ACTIONS(9633), 1, - anon_sym_def, - ACTIONS(9635), 1, - anon_sym_extern, - ACTIONS(9637), 1, - anon_sym_module, - ACTIONS(9639), 1, - anon_sym_use, - STATE(5962), 1, + ACTIONS(9684), 1, + anon_sym_LBRACE, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4956), 1, + sym_block, + STATE(4962), 1, + sym_val_closure, + STATE(5053), 1, + sym__blosure, + STATE(5934), 1, sym_comment, - [213725] = 7, - ACTIONS(249), 1, + [204452] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1579), 1, aux_sym_unquoted_token2, - ACTIONS(8444), 1, + ACTIONS(8559), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8446), 1, + ACTIONS(8561), 1, aux_sym__immediate_decimal_token5, - STATE(5963), 1, + STATE(5935), 1, sym_comment, - STATE(8036), 1, + STATE(7374), 1, sym__immediate_decimal, - ACTIONS(8442), 2, + ACTIONS(8557), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [213748] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9380), 1, - anon_sym_DASH_DASH, - ACTIONS(9382), 1, - anon_sym_DASH, - ACTIONS(9641), 1, - anon_sym_in, - STATE(5964), 1, - sym_comment, - STATE(8032), 1, - sym__flag, - STATE(5494), 2, - sym_short_flag, - sym_long_flag, - [213771] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9380), 1, - anon_sym_DASH_DASH, - ACTIONS(9382), 1, - anon_sym_DASH, - ACTIONS(9643), 1, - anon_sym_in, - STATE(5965), 1, - sym_comment, - STATE(8037), 1, - sym__flag, - STATE(5494), 2, - sym_short_flag, - sym_long_flag, - [213794] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_DASH, - ACTIONS(9645), 1, - anon_sym_DOT_DOT2, - STATE(5966), 1, - sym_comment, - ACTIONS(1796), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(9647), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213815] = 6, - ACTIONS(249), 1, + [204475] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_DASH, - ACTIONS(9649), 1, - anon_sym_DOT_DOT2, - STATE(5967), 1, + ACTIONS(9540), 1, + anon_sym_LPAREN, + ACTIONS(9764), 1, + anon_sym_DQUOTE2, + STATE(5805), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5936), 1, sym_comment, - ACTIONS(1850), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(9651), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213836] = 6, - ACTIONS(249), 1, + STATE(6665), 1, + sym_expr_interpolated, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [204498] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2222), 1, - anon_sym_DASH, - ACTIONS(9653), 1, - anon_sym_DOT_DOT2, - STATE(5968), 1, + ACTIONS(9540), 1, + anon_sym_LPAREN, + ACTIONS(9766), 1, + anon_sym_DQUOTE2, + STATE(5937), 1, sym_comment, - ACTIONS(2228), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(9655), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213857] = 6, - ACTIONS(249), 1, + STATE(5942), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6665), 1, + sym_expr_interpolated, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [204521] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - anon_sym_DASH, - ACTIONS(9657), 1, - anon_sym_DOT_DOT2, - STATE(5969), 1, + ACTIONS(6485), 1, + aux_sym_unquoted_token3, + ACTIONS(8297), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token5, + STATE(5938), 1, sym_comment, - ACTIONS(2240), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(9659), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213878] = 6, - ACTIONS(249), 1, + STATE(6732), 1, + sym__immediate_decimal, + [204546] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2113), 1, - anon_sym_DASH, - ACTIONS(9661), 1, - anon_sym_DOT_DOT2, - STATE(5970), 1, + ACTIONS(6485), 1, + aux_sym_unquoted_token3, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8792), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8794), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8796), 1, + aux_sym__immediate_decimal_token5, + STATE(5939), 1, sym_comment, - ACTIONS(2119), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(9663), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213899] = 6, - ACTIONS(249), 1, + STATE(7655), 1, + sym__immediate_decimal, + [204571] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_DASH, - ACTIONS(9665), 1, - anon_sym_DOT_DOT2, - STATE(5971), 1, + ACTIONS(973), 1, + sym__entry_separator, + ACTIONS(9768), 1, + anon_sym_DOT, + STATE(6234), 1, + sym_path, + ACTIONS(971), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(5940), 2, sym_comment, - ACTIONS(2212), 2, - anon_sym_DASH_DASH, + aux_sym_cell_path_repeat1, + [204592] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6184), 1, anon_sym_LBRACE, - ACTIONS(9667), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213920] = 7, + STATE(5941), 1, + sym_comment, + STATE(6657), 1, + sym_block, + ACTIONS(9771), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204611] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9330), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9669), 1, + ACTIONS(9773), 1, anon_sym_DQUOTE2, - STATE(5940), 1, + STATE(5805), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5972), 1, + STATE(5942), 1, sym_comment, - STATE(6294), 1, + STATE(6665), 1, sym_expr_interpolated, - ACTIONS(9332), 2, + ACTIONS(9542), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [213943] = 5, - ACTIONS(249), 1, + [204634] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9671), 1, - anon_sym_DOT_DOT2, - STATE(5973), 1, + ACTIONS(4938), 1, + anon_sym_DASH2, + ACTIONS(9775), 1, + sym_long_flag_identifier, + ACTIONS(9777), 1, + anon_sym_EQ2, + STATE(5943), 1, sym_comment, - ACTIONS(9673), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2228), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [213962] = 5, - ACTIONS(249), 1, + ACTIONS(4936), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [204655] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9675), 1, - anon_sym_DOT_DOT2, - STATE(5974), 1, + ACTIONS(9779), 1, + anon_sym_EQ2, + ACTIONS(9781), 1, + sym_short_flag_identifier, + STATE(5944), 1, sym_comment, - ACTIONS(9677), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2240), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [213981] = 5, - ACTIONS(249), 1, + ACTIONS(4956), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + ACTIONS(4958), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [204676] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9679), 1, - anon_sym_DOT_DOT2, - STATE(5975), 1, + ACTIONS(9540), 1, + anon_sym_LPAREN, + ACTIONS(9783), 1, + anon_sym_DQUOTE2, + STATE(5945), 1, sym_comment, - ACTIONS(9681), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2119), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214000] = 5, - ACTIONS(249), 1, + STATE(5979), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6665), 1, + sym_expr_interpolated, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [204699] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9683), 1, - anon_sym_DOT_DOT2, - STATE(5976), 1, + STATE(5946), 1, sym_comment, - ACTIONS(9685), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2212), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214019] = 6, - ACTIONS(3), 1, + ACTIONS(9785), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [204714] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9687), 1, - anon_sym_DOT, - ACTIONS(9689), 1, - aux_sym__immediate_decimal_token2, - STATE(5977), 1, + STATE(5947), 1, sym_comment, - ACTIONS(1715), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [214040] = 4, - ACTIONS(3), 1, + ACTIONS(9787), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [204729] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5978), 1, + ACTIONS(2094), 1, + anon_sym_DASH2, + STATE(5948), 1, sym_comment, - ACTIONS(2218), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2220), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [214057] = 4, - ACTIONS(249), 1, + ACTIONS(2096), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym__table_head_separator, + [204746] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DASH, - STATE(5979), 1, + ACTIONS(9438), 1, + anon_sym_DASH2, + STATE(5949), 1, sym_comment, - ACTIONS(5075), 5, + ACTIONS(9436), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [214074] = 6, + [204763] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9691), 1, + ACTIONS(969), 1, + sym__entry_separator, + ACTIONS(9420), 1, anon_sym_DOT, - ACTIONS(9693), 1, - aux_sym__immediate_decimal_token2, - STATE(5980), 1, + STATE(5940), 1, + aux_sym_cell_path_repeat1, + STATE(5950), 1, sym_comment, - ACTIONS(1715), 2, + STATE(6234), 1, + sym_path, + ACTIONS(967), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1717), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [214095] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(8444), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8446), 1, - aux_sym__immediate_decimal_token5, - STATE(5981), 1, - sym_comment, - STATE(7805), 1, - sym__immediate_decimal, - ACTIONS(8442), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [214118] = 8, - ACTIONS(249), 1, + [204786] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9695), 1, + ACTIONS(9789), 1, anon_sym_RBRACK, - STATE(5982), 1, + STATE(5951), 1, sym_comment, - STATE(6159), 1, + STATE(6181), 1, aux_sym_shebang_repeat1, - STATE(7058), 1, + STATE(6837), 1, sym_val_list, - STATE(7375), 1, + STATE(7238), 1, aux_sym_val_table_repeat1, - [214143] = 4, - ACTIONS(3), 1, + [204811] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5983), 1, - sym_comment, - ACTIONS(1056), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1054), 3, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9791), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [214159] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, - STATE(5984), 1, + STATE(5952), 1, sym_comment, - STATE(6047), 1, - sym__variable_name, - STATE(6303), 1, - sym__assignment_pattern, - [214181] = 6, - ACTIONS(249), 1, + STATE(6171), 1, + aux_sym_shebang_repeat1, + STATE(7208), 1, + aux_sym_val_table_repeat1, + STATE(7313), 1, + sym_val_list, + [204836] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1703), 1, + ACTIONS(4708), 1, + anon_sym_DOT_DOT2, + ACTIONS(9678), 1, aux_sym_unquoted_token2, - ACTIONS(9697), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9699), 1, - aux_sym__immediate_decimal_token2, - STATE(5985), 1, + STATE(5953), 1, sym_comment, - ACTIONS(1705), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [214201] = 7, - ACTIONS(249), 1, + ACTIONS(4710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9624), 2, + sym_filesize_unit, + sym_duration_unit, + [204857] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, - STATE(5986), 1, + ACTIONS(2488), 1, + anon_sym_DASH2, + STATE(5954), 1, sym_comment, - STATE(6023), 1, - sym__variable_name, - STATE(7099), 1, - sym__assignment_pattern, - [214223] = 5, - ACTIONS(249), 1, + ACTIONS(2490), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [204874] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - ACTIONS(8580), 1, - aux_sym_unquoted_token2, - STATE(5987), 1, + ACTIONS(2068), 1, + anon_sym_DASH2, + STATE(5955), 1, sym_comment, - ACTIONS(1640), 3, - anon_sym_DOLLAR, + ACTIONS(2070), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, + anon_sym_as, + [204891] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9684), 1, anon_sym_LBRACE, - [214241] = 6, - ACTIONS(249), 1, + STATE(4956), 1, + sym_block, + STATE(4962), 1, + sym_val_closure, + STATE(5053), 1, + sym__blosure, + STATE(5956), 1, + sym_comment, + STATE(5962), 1, + aux_sym_shebang_repeat1, + [204916] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - ACTIONS(9701), 1, + ACTIONS(2165), 1, + sym__entry_separator, + ACTIONS(9793), 1, anon_sym_DOT_DOT2, - STATE(5988), 1, + STATE(5957), 1, sym_comment, - ACTIONS(9703), 2, + ACTIONS(2159), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9795), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [214261] = 5, - ACTIONS(249), 1, + [204937] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9217), 1, - anon_sym_LBRACE, - STATE(5989), 1, + ACTIONS(2496), 1, + anon_sym_DASH2, + STATE(5958), 1, sym_comment, - STATE(7140), 1, - sym_val_record, - ACTIONS(9445), 3, + ACTIONS(2498), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [214279] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(5990), 1, - sym_comment, - ACTIONS(8074), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - [214293] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1023), 1, - aux_sym_record_entry_token1, - ACTIONS(9705), 1, - anon_sym_DOT, - STATE(1275), 1, - sym_cell_path, - STATE(5991), 1, - sym_comment, - STATE(6724), 1, - aux_sym_cell_path_repeat1, - STATE(7323), 1, - sym_path, - [214315] = 6, - ACTIONS(249), 1, + anon_sym_DASH_DASH, + anon_sym_as, + [204954] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1888), 1, aux_sym_unquoted_token2, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(9707), 1, + ACTIONS(9797), 1, anon_sym_DOT_DOT2, - STATE(5992), 1, + STATE(5959), 1, sym_comment, - ACTIONS(9709), 2, + ACTIONS(1886), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9799), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [214335] = 7, - ACTIONS(3), 1, + [204975] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9715), 1, - anon_sym_SQUOTE, - STATE(5993), 1, + ACTIONS(9492), 1, + anon_sym_LBRACE, + STATE(5960), 1, sym_comment, - STATE(6001), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [214357] = 5, - ACTIONS(249), 1, + STATE(6679), 1, + sym_val_record, + ACTIONS(9801), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204994] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(245), 1, - aux_sym__block_body_repeat1, - STATE(5994), 1, + ACTIONS(9492), 1, + anon_sym_LBRACE, + STATE(5961), 1, sym_comment, - ACTIONS(147), 2, + STATE(6235), 1, + sym_val_record, + ACTIONS(9803), 4, sym__newline, anon_sym_SEMI, - ACTIONS(1660), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [214375] = 6, - ACTIONS(3), 1, + [205013] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9717), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9720), 1, - sym__space, - STATE(5518), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7585), 1, - sym__flags_parenthesized, - STATE(5995), 2, + ACTIONS(9684), 1, + anon_sym_LBRACE, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4956), 1, + sym_block, + STATE(4962), 1, + sym_val_closure, + STATE(5086), 1, + sym__blosure, + STATE(5962), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat1, - [214395] = 7, - ACTIONS(249), 1, + [205038] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(9725), 1, - anon_sym_if, - ACTIONS(9727), 1, - anon_sym_EQ_GT, - STATE(5996), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + ACTIONS(9805), 1, + anon_sym_RBRACK, + STATE(5963), 1, sym_comment, - STATE(7114), 1, - aux_sym_match_pattern_repeat1, - STATE(7818), 1, - sym_match_guard, - [214417] = 4, - ACTIONS(249), 1, + STATE(6182), 1, + aux_sym_shebang_repeat1, + STATE(6841), 1, + sym_val_list, + STATE(7241), 1, + aux_sym_val_table_repeat1, + [205063] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5053), 1, - anon_sym_DASH, - STATE(5997), 1, - sym_comment, - ACTIONS(5051), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(9650), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [214433] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5998), 1, + ACTIONS(9652), 1, + anon_sym_DASH2, + ACTIONS(9807), 1, + anon_sym_in2, + STATE(5964), 1, sym_comment, - ACTIONS(1060), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1058), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [214449] = 5, - ACTIONS(249), 1, + STATE(7948), 1, + sym__flag, + STATE(5593), 2, + sym_short_flag, + sym_long_flag, + [205086] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - ACTIONS(8580), 1, - aux_sym_unquoted_token2, - STATE(5999), 1, + ACTIONS(1907), 1, + anon_sym_DASH2, + STATE(5965), 1, sym_comment, - ACTIONS(1640), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1911), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - [214467] = 6, - ACTIONS(249), 1, + anon_sym_as, + [205103] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1715), 1, - aux_sym_unquoted_token2, - ACTIONS(9729), 1, - anon_sym_DOT, - ACTIONS(9731), 1, - aux_sym__immediate_decimal_token2, - STATE(6000), 1, + ACTIONS(9650), 1, + anon_sym_DASH_DASH, + ACTIONS(9652), 1, + anon_sym_DASH2, + ACTIONS(9809), 1, + anon_sym_in2, + STATE(5966), 1, sym_comment, - ACTIONS(1717), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [214487] = 7, - ACTIONS(3), 1, + STATE(7952), 1, + sym__flag, + STATE(5593), 2, + sym_short_flag, + sym_long_flag, + [205126] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9733), 1, - anon_sym_SQUOTE, - STATE(6001), 1, + ACTIONS(5168), 1, + anon_sym_DASH2, + STATE(5967), 1, sym_comment, - STATE(6073), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [214509] = 5, - ACTIONS(249), 1, + ACTIONS(5166), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [205143] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(6002), 1, + ACTIONS(5172), 1, + anon_sym_DASH2, + STATE(5968), 1, sym_comment, - STATE(7057), 1, - sym_block, - ACTIONS(9467), 3, + ACTIONS(5170), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [214527] = 7, - ACTIONS(249), 1, + anon_sym_DASH_DASH, + anon_sym_as, + [205160] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2085), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2031), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6003), 1, + ACTIONS(1878), 1, + anon_sym_DASH2, + ACTIONS(9811), 1, + anon_sym_DOT_DOT2, + STATE(5969), 1, sym_comment, - [214549] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(1886), 2, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2033), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6004), 1, - sym_comment, - [214571] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, - STATE(6005), 1, - sym_comment, - STATE(6105), 1, - sym__variable_name, - STATE(6996), 1, - sym__assignment_pattern_parenthesized, - [214593] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6006), 1, - sym_comment, - ACTIONS(1064), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1062), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [214609] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6007), 1, - sym_comment, - ACTIONS(1040), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1038), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [214625] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(9735), 1, - anon_sym_use, - ACTIONS(9737), 1, - anon_sym_list, - ACTIONS(9739), 1, - anon_sym_hide, - ACTIONS(9741), 1, - anon_sym_new, - STATE(6008), 1, - sym_comment, - [214647] = 7, - ACTIONS(249), 1, + ACTIONS(9813), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [205181] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, - STATE(6009), 1, + ACTIONS(9815), 1, + anon_sym_DOT_DOT2, + STATE(5970), 1, sym_comment, - STATE(6023), 1, - sym__variable_name, - STATE(7068), 1, - sym__assignment_pattern, - [214669] = 5, - ACTIONS(249), 1, + ACTIONS(9817), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2165), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [205200] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(6010), 1, + ACTIONS(1948), 1, + anon_sym_DASH2, + STATE(5971), 1, sym_comment, - STATE(7071), 1, - sym_block, - ACTIONS(9467), 3, + ACTIONS(1950), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [214687] = 6, - ACTIONS(249), 1, + anon_sym_DASH_DASH, + anon_sym_as, + [205217] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1850), 1, - anon_sym_LBRACE, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - ACTIONS(9743), 1, + ACTIONS(2167), 1, + anon_sym_DASH2, + ACTIONS(9819), 1, anon_sym_DOT_DOT2, - STATE(6011), 1, + STATE(5972), 1, sym_comment, - ACTIONS(9745), 2, + ACTIONS(2173), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(9821), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [214707] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1903), 1, - sym__table_head_separator, - ACTIONS(9747), 1, - anon_sym_DOT, - STATE(6012), 1, - sym_comment, - STATE(6689), 1, - aux_sym_cell_path_repeat1, - STATE(7323), 1, - sym_path, - STATE(7819), 1, - sym_cell_path, - [214729] = 4, - ACTIONS(249), 1, + [205238] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5049), 1, - anon_sym_DASH, - STATE(6013), 1, + ACTIONS(2175), 1, + anon_sym_DASH2, + ACTIONS(9823), 1, + anon_sym_DOT_DOT2, + STATE(5973), 1, sym_comment, - ACTIONS(5047), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2181), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - [214745] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9749), 1, - anon_sym_SQUOTE, - STATE(6014), 1, - sym_comment, - STATE(6041), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [214767] = 5, - ACTIONS(249), 1, + ACTIONS(9825), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [205259] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4947), 1, - anon_sym_DASH, - ACTIONS(9751), 1, - anon_sym_EQ2, - STATE(6015), 1, + ACTIONS(2133), 1, + anon_sym_DASH2, + ACTIONS(9827), 1, + anon_sym_DOT_DOT2, + STATE(5974), 1, sym_comment, - ACTIONS(4945), 3, - anon_sym_DOLLAR, + ACTIONS(2139), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - [214785] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, - STATE(6016), 1, - sym_comment, - STATE(6105), 1, - sym__variable_name, - STATE(6908), 1, - sym__assignment_pattern_parenthesized, - [214807] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9693), 1, - aux_sym__immediate_decimal_token2, - STATE(6017), 1, - sym_comment, - ACTIONS(1715), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1717), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [214825] = 4, - ACTIONS(249), 1, + ACTIONS(9829), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [205280] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9223), 1, - anon_sym_DASH, - STATE(6018), 1, + STATE(5975), 1, sym_comment, - ACTIONS(9221), 4, + ACTIONS(9831), 6, + sym_raw_string_begin, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [214841] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1064), 1, - anon_sym_DOT, - STATE(6019), 1, - sym_comment, - ACTIONS(1062), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [214857] = 7, - ACTIONS(249), 1, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205295] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6020), 1, + ACTIONS(9464), 1, + anon_sym_def, + ACTIONS(9466), 1, + anon_sym_extern, + ACTIONS(9468), 1, + anon_sym_module, + ACTIONS(9470), 1, + anon_sym_use, + ACTIONS(9833), 1, + anon_sym_alias, + ACTIONS(9835), 1, + anon_sym_const, + STATE(5976), 1, sym_comment, - STATE(6972), 1, - sym_val_list, - STATE(7165), 1, - aux_sym_val_table_repeat1, - [214879] = 5, - ACTIONS(249), 1, + [205320] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(233), 1, - aux_sym__block_body_repeat1, - STATE(6021), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(5977), 1, sym_comment, - ACTIONS(147), 2, + STATE(6671), 1, + sym_block, + ACTIONS(9771), 4, sym__newline, anon_sym_SEMI, - ACTIONS(1674), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [214897] = 3, - ACTIONS(249), 1, + [205339] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6022), 1, + ACTIONS(1972), 1, + anon_sym_DASH2, + STATE(5978), 1, sym_comment, - ACTIONS(8070), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - [214911] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(1974), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9753), 1, - anon_sym_EQ, - ACTIONS(9755), 1, - anon_sym_COLON, - STATE(6023), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [205356] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9540), 1, + anon_sym_LPAREN, + ACTIONS(9837), 1, + anon_sym_DQUOTE2, + STATE(5805), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5979), 1, sym_comment, - STATE(7246), 1, - aux_sym_shebang_repeat1, - STATE(7789), 1, - sym_param_type, - [214933] = 3, - ACTIONS(249), 1, + STATE(6665), 1, + sym_expr_interpolated, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [205379] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6024), 1, + ACTIONS(9839), 1, + anon_sym_DOT_DOT2, + STATE(5980), 1, sym_comment, - ACTIONS(7753), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - [214947] = 6, - ACTIONS(3), 1, + ACTIONS(9841), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2173), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [205398] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_RBRACE, - ACTIONS(1850), 1, - sym__entry_separator, - ACTIONS(9757), 1, + ACTIONS(9843), 1, anon_sym_DOT_DOT2, - STATE(6025), 1, + STATE(5981), 1, sym_comment, - ACTIONS(9759), 2, + ACTIONS(9845), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [214967] = 7, - ACTIONS(249), 1, + ACTIONS(2181), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [205417] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1911), 1, - sym__table_head_separator, - ACTIONS(9747), 1, - anon_sym_DOT, - STATE(6026), 1, + ACTIONS(9847), 1, + anon_sym_DOT_DOT2, + STATE(5982), 1, sym_comment, - STATE(6689), 1, - aux_sym_cell_path_repeat1, - STATE(7323), 1, - sym_path, - STATE(7814), 1, - sym_cell_path, - [214989] = 7, - ACTIONS(249), 1, + ACTIONS(9849), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2139), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [205436] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1911), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2249), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6027), 1, + ACTIONS(9464), 1, + anon_sym_def, + ACTIONS(9466), 1, + anon_sym_extern, + ACTIONS(9468), 1, + anon_sym_module, + ACTIONS(9470), 1, + anon_sym_use, + ACTIONS(9851), 1, + anon_sym_alias, + ACTIONS(9853), 1, + anon_sym_const, + STATE(5983), 1, sym_comment, - [215011] = 7, + [205461] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9761), 1, - anon_sym_SQUOTE, - STATE(6028), 1, + ACTIONS(9855), 1, + anon_sym_DQUOTE2, + STATE(5984), 1, sym_comment, - STATE(6032), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, + STATE(5998), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6665), 1, sym_expr_interpolated, - [215033] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2019), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2019), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6029), 1, - sym_comment, - [215055] = 7, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [205484] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7707), 1, - sym__newline, - ACTIONS(7709), 1, - sym__space, - STATE(4698), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6030), 1, - sym_comment, - STATE(6118), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(7585), 1, - sym__flags_parenthesized, - [215077] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6031), 1, + ACTIONS(4716), 1, + aux_sym_unquoted_token3, + ACTIONS(8297), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token5, + STATE(5985), 1, sym_comment, - STATE(7149), 1, - sym_val_list, - STATE(7169), 1, - aux_sym_val_table_repeat1, - [215099] = 7, + STATE(6732), 1, + sym__immediate_decimal, + [205509] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9763), 1, - anon_sym_SQUOTE, - STATE(6032), 1, - sym_comment, - STATE(6073), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [215121] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1899), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, + ACTIONS(9857), 1, anon_sym_DOT, - STATE(2260), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6033), 1, + ACTIONS(9859), 1, + aux_sym__immediate_decimal_token2, + STATE(5986), 1, sym_comment, - [215143] = 7, - ACTIONS(249), 1, + ACTIONS(1755), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1757), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [205530] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2049), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, + ACTIONS(7367), 1, + anon_sym_RBRACK, + ACTIONS(7369), 1, + sym__entry_separator, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(2023), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6034), 1, + STATE(5987), 1, sym_comment, - [215165] = 5, - ACTIONS(249), 1, + STATE(6234), 1, + sym_path, + STATE(7477), 1, + sym_cell_path, + [205555] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(6035), 1, + ACTIONS(2387), 1, + anon_sym_DASH2, + STATE(5988), 1, sym_comment, - STATE(7130), 1, - sym_block, - ACTIONS(9344), 3, + ACTIONS(2389), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [215183] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9765), 1, - anon_sym_SQUOTE, - STATE(6036), 1, - sym_comment, - STATE(6103), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [215205] = 6, + anon_sym_DASH_DASH, + anon_sym_as, + [205572] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9360), 1, - anon_sym_DOT_DOT2, - ACTIONS(9767), 1, - anon_sym_RBRACE, - ACTIONS(9769), 1, + ACTIONS(1032), 1, sym__entry_separator, - STATE(6037), 1, + ACTIONS(9861), 1, + anon_sym_DOT_DOT2, + STATE(5989), 1, sym_comment, - ACTIONS(9362), 2, + ACTIONS(1030), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9863), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [215225] = 7, + [205593] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9771), 1, - anon_sym_SQUOTE, - STATE(6038), 1, - sym_comment, - STATE(6168), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [215247] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4991), 1, - anon_sym_DASH, - ACTIONS(9773), 1, - anon_sym_EQ2, - STATE(6039), 1, + ACTIONS(4716), 1, + aux_sym_unquoted_token3, + ACTIONS(8557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8792), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8794), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8796), 1, + aux_sym__immediate_decimal_token5, + STATE(5990), 1, sym_comment, - ACTIONS(4989), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [215265] = 7, - ACTIONS(249), 1, + STATE(7655), 1, + sym__immediate_decimal, + [205618] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2053), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, + ACTIONS(2086), 1, + anon_sym_RBRACE, + ACTIONS(2088), 1, + sym__entry_separator, + ACTIONS(9420), 1, anon_sym_DOT, - STATE(2024), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, + STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6040), 1, - sym_comment, - [215287] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9775), 1, - anon_sym_SQUOTE, - STATE(6041), 1, - sym_comment, - STATE(6073), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [215309] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, - STATE(6042), 1, - sym_comment, - STATE(6047), 1, - sym__variable_name, - STATE(6300), 1, - sym__assignment_pattern, - [215331] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9777), 1, - anon_sym_EQ2, - ACTIONS(9779), 1, - sym_short_flag_identifier, - STATE(6043), 1, + STATE(5991), 1, sym_comment, - ACTIONS(4925), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [215349] = 4, - ACTIONS(249), 1, + STATE(6234), 1, + sym_path, + STATE(7518), 1, + sym_cell_path, + [205643] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DASH, - STATE(6044), 1, + STATE(5992), 1, sym_comment, - ACTIONS(5075), 4, + ACTIONS(9865), 6, + sym_raw_string_begin, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [215365] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9781), 1, - anon_sym_SQUOTE, - STATE(6045), 1, - sym_comment, - STATE(6058), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [215387] = 6, - ACTIONS(3), 1, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205658] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_RBRACE, - ACTIONS(2198), 1, - sym__entry_separator, - ACTIONS(9360), 1, - anon_sym_DOT_DOT2, - STATE(6046), 1, + ACTIONS(9867), 1, + anon_sym_LT, + STATE(5993), 1, sym_comment, - ACTIONS(9362), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [215407] = 7, - ACTIONS(249), 1, + ACTIONS(7953), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [205675] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(5164), 1, + anon_sym_DASH2, + STATE(5994), 1, + sym_comment, + ACTIONS(5162), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9755), 1, - anon_sym_COLON, - ACTIONS(9783), 1, - anon_sym_EQ, - STATE(6047), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [205692] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9464), 1, + anon_sym_def, + ACTIONS(9466), 1, + anon_sym_extern, + ACTIONS(9468), 1, + anon_sym_module, + ACTIONS(9470), 1, + anon_sym_use, + ACTIONS(9869), 1, + anon_sym_alias, + ACTIONS(9871), 1, + anon_sym_const, + STATE(5995), 1, sym_comment, - STATE(7246), 1, - aux_sym_shebang_repeat1, - STATE(7644), 1, - sym_param_type, - [215429] = 7, + [205717] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9785), 1, - anon_sym_SQUOTE, - STATE(6048), 1, + ACTIONS(9873), 1, + anon_sym_DQUOTE2, + STATE(5776), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5996), 1, sym_comment, - STATE(6143), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, + STATE(6665), 1, sym_expr_interpolated, - [215451] = 5, - ACTIONS(3), 1, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [205740] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9787), 1, - anon_sym_QMARK2, - STATE(6049), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(5997), 1, sym_comment, - ACTIONS(1048), 2, - anon_sym_RBRACK, + STATE(6271), 1, + sym_block, + ACTIONS(9875), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1050), 2, - anon_sym_DOT, - sym__entry_separator, - [215469] = 7, + [205759] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9540), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9789), 1, - anon_sym_SQUOTE, - STATE(6050), 1, + ACTIONS(9877), 1, + anon_sym_DQUOTE2, + STATE(5805), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5998), 1, sym_comment, - STATE(6071), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, + STATE(6665), 1, sym_expr_interpolated, - [215491] = 7, - ACTIONS(3), 1, + ACTIONS(9542), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [205782] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9791), 1, - anon_sym_SQUOTE, - STATE(6051), 1, + ACTIONS(9879), 1, + sym_long_flag_identifier, + ACTIONS(9881), 1, + anon_sym_EQ2, + STATE(5999), 1, sym_comment, - STATE(6054), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [215513] = 4, - ACTIONS(249), 1, + ACTIONS(4936), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4938), 2, + sym_identifier, + anon_sym_DASH2, + [205803] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5061), 1, - anon_sym_DASH, - STATE(6052), 1, + STATE(221), 1, + aux_sym__block_body_repeat1, + STATE(6000), 1, + sym_comment, + ACTIONS(139), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(615), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205821] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5022), 1, + anon_sym_DASH2, + STATE(6001), 1, sym_comment, - ACTIONS(5059), 4, + ACTIONS(5020), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [215529] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2003), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2012), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6053), 1, - sym_comment, - [215551] = 7, - ACTIONS(3), 1, + [205837] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9793), 1, - anon_sym_SQUOTE, - STATE(6054), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6002), 1, sym_comment, - STATE(6073), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [215573] = 7, - ACTIONS(249), 1, + STATE(6024), 1, + sym__variable_name, + STATE(7029), 1, + sym__assignment_pattern, + [205859] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2023), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2020), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(9883), 1, + anon_sym_use, + ACTIONS(9885), 1, + anon_sym_list, + ACTIONS(9887), 1, + anon_sym_hide, + ACTIONS(9889), 1, + anon_sym_new, + STATE(6003), 1, sym_comment, - [215595] = 7, - ACTIONS(249), 1, + [205881] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2045), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, + ACTIONS(1737), 1, + aux_sym_record_entry_token1, + ACTIONS(6538), 1, anon_sym_DOT, STATE(2022), 1, sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, + STATE(3482), 1, aux_sym_cell_path_repeat1, - STATE(6056), 1, + STATE(3600), 1, + sym_path, + STATE(6004), 1, sym_comment, - [215617] = 5, - ACTIONS(249), 1, + [205903] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(237), 1, - aux_sym__block_body_repeat1, - STATE(6057), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(6005), 1, sym_comment, - ACTIONS(147), 2, + STATE(6994), 1, + sym_block, + ACTIONS(9532), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(605), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215635] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9795), 1, - anon_sym_SQUOTE, - STATE(6058), 1, - sym_comment, - STATE(6073), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [215657] = 7, - ACTIONS(3), 1, + [205921] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9797), 1, - anon_sym_SQUOTE, - STATE(6059), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(6006), 1, sym_comment, - STATE(6073), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [215679] = 5, + STATE(6998), 1, + sym_block, + ACTIONS(9532), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [205939] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9799), 1, - aux_sym__immediate_decimal_token2, - STATE(6060), 1, + ACTIONS(980), 1, + anon_sym_DOT, + ACTIONS(9891), 1, + anon_sym_QMARK2, + STATE(6007), 1, sym_comment, - ACTIONS(1769), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1771), 2, - anon_sym_LPAREN2, + ACTIONS(978), 3, + anon_sym_RBRACK, sym__entry_separator, - [215697] = 7, + sym__table_head_separator, + [205957] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9801), 1, - anon_sym_SQUOTE, - STATE(6061), 1, + ACTIONS(986), 1, + anon_sym_DOT, + ACTIONS(9893), 1, + anon_sym_QMARK2, + STATE(6008), 1, sym_comment, - STATE(6064), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [215719] = 4, - ACTIONS(249), 1, + ACTIONS(984), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [205975] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5065), 1, - anon_sym_DASH, - STATE(6062), 1, + ACTIONS(9895), 1, + anon_sym_DOT_DOT2, + STATE(6009), 1, sym_comment, - ACTIONS(5063), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [215735] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2057), 1, + ACTIONS(1874), 2, + sym__newline, anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2027), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6063), 1, - sym_comment, - [215757] = 7, + ACTIONS(9897), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [205993] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9899), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, + ACTIONS(9902), 1, sym_unescaped_interpolated_content, - ACTIONS(9803), 1, + ACTIONS(9905), 1, anon_sym_SQUOTE, - STATE(6064), 1, - sym_comment, - STATE(6073), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, + STATE(6902), 1, sym_expr_interpolated, - [215779] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1040), 1, - anon_sym_DOT, - STATE(6065), 1, - sym_comment, - ACTIONS(1038), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [215795] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1536), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(9366), 1, - aux_sym__immediate_decimal_token2, - STATE(6066), 1, + STATE(6010), 2, sym_comment, - ACTIONS(1538), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [215813] = 7, - ACTIONS(249), 1, + aux_sym__inter_single_quotes_repeat1, + [206013] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2034), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6067), 1, + STATE(6011), 1, sym_comment, - [215835] = 5, - ACTIONS(249), 1, + STATE(7281), 1, + sym_block, + ACTIONS(9771), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [206031] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - STATE(6068), 1, + STATE(6012), 1, sym_comment, - STATE(7322), 1, + STATE(7291), 1, sym_block, - ACTIONS(9578), 3, + ACTIONS(9771), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [215853] = 7, - ACTIONS(249), 1, + [206049] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(9735), 1, - anon_sym_use, - ACTIONS(9737), 1, - anon_sym_list, - ACTIONS(9739), 1, - anon_sym_hide, - ACTIONS(9741), 1, - anon_sym_new, - STATE(6069), 1, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(1984), 1, + sym_cell_path, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6013), 1, sym_comment, - [215875] = 4, - ACTIONS(249), 1, + [206071] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5085), 1, - anon_sym_DASH, - STATE(6070), 1, + STATE(6014), 1, sym_comment, - ACTIONS(5083), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(7953), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [215891] = 7, - ACTIONS(3), 1, + [206085] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9805), 1, - anon_sym_SQUOTE, - STATE(6071), 1, + ACTIONS(9907), 1, + anon_sym_DOT_DOT2, + STATE(6015), 1, sym_comment, - STATE(6073), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [215913] = 3, - ACTIONS(249), 1, + ACTIONS(1886), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9909), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206103] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6072), 1, + ACTIONS(9911), 1, + anon_sym_DOT_DOT2, + STATE(6016), 1, sym_comment, - ACTIONS(8078), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_AT, + ACTIONS(2173), 2, + sym__newline, anon_sym_LBRACE, - [215927] = 6, - ACTIONS(3), 1, + ACTIONS(9913), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206121] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9807), 1, - anon_sym_LPAREN, - ACTIONS(9810), 1, - sym_unescaped_interpolated_content, - ACTIONS(9813), 1, - anon_sym_SQUOTE, - STATE(7085), 1, - sym_expr_interpolated, - STATE(6073), 2, + ACTIONS(9915), 1, + anon_sym_DOT_DOT2, + STATE(6017), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [215947] = 7, - ACTIONS(3), 1, + ACTIONS(2181), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9917), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206139] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9815), 1, - anon_sym_SQUOTE, - STATE(6074), 1, + ACTIONS(9919), 1, + anon_sym_DOT_DOT2, + STATE(6018), 1, sym_comment, - STATE(6087), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [215969] = 7, - ACTIONS(249), 1, + ACTIONS(2139), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9921), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206157] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + ACTIONS(9923), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9925), 1, + aux_sym__immediate_decimal_token2, + STATE(6019), 1, + sym_comment, + ACTIONS(1741), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [206177] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1995), 1, + ACTIONS(1935), 1, anon_sym_LBRACE, - ACTIONS(8268), 1, + ACTIONS(8960), 1, anon_sym_DOT, - STATE(2047), 1, - sym_cell_path, - STATE(2752), 1, + STATE(1894), 1, sym_path, - STATE(5224), 1, + STATE(1988), 1, + sym_cell_path, + STATE(5608), 1, aux_sym_cell_path_repeat1, - STATE(6075), 1, + STATE(6020), 1, sym_comment, - [215991] = 7, - ACTIONS(249), 1, + [206199] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, - STATE(6047), 1, - sym__variable_name, - STATE(6076), 1, + ACTIONS(1946), 1, + anon_sym_LBRACE, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(1990), 1, + sym_cell_path, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6021), 1, sym_comment, - STATE(6676), 1, - sym__assignment_pattern, - [216013] = 7, - ACTIONS(3), 1, + [206221] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9817), 1, - anon_sym_SQUOTE, - STATE(6077), 1, + ACTIONS(1978), 1, + sym__table_head_separator, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3600), 1, + sym_path, + STATE(5948), 1, + sym_cell_path, + STATE(6022), 1, sym_comment, - STATE(6136), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [216035] = 7, - ACTIONS(249), 1, + [206243] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, + ACTIONS(2096), 1, + sym__table_head_separator, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3600), 1, + sym_path, + STATE(5768), 1, + sym_cell_path, STATE(6023), 1, - sym__variable_name, - STATE(6078), 1, - sym_comment, - STATE(7391), 1, - sym__assignment_pattern, - [216057] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9819), 1, - anon_sym_SQUOTE, - STATE(6079), 1, sym_comment, - STATE(6082), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [216079] = 3, - ACTIONS(249), 1, + [206265] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6080), 1, - sym_comment, - ACTIONS(8086), 5, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9927), 1, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - [216093] = 7, - ACTIONS(249), 1, + ACTIONS(9929), 1, + anon_sym_COLON, + STATE(6024), 1, + sym_comment, + STATE(7334), 1, + aux_sym_shebang_repeat1, + STATE(7820), 1, + sym_param_type, + [206287] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, - STATE(6081), 1, + STATE(224), 1, + aux_sym__block_body_repeat1, + STATE(6025), 1, sym_comment, - STATE(6105), 1, - sym__variable_name, - STATE(6989), 1, - sym__assignment_pattern_parenthesized, - [216115] = 7, + ACTIONS(139), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1459), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206305] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9931), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, + ACTIONS(9933), 1, sym_unescaped_interpolated_content, - ACTIONS(9821), 1, + ACTIONS(9935), 1, anon_sym_SQUOTE, - STATE(6073), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6082), 1, + STATE(6026), 1, sym_comment, - STATE(7085), 1, + STATE(6032), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, sym_expr_interpolated, - [216137] = 4, - ACTIONS(249), 1, + [206327] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5099), 1, - anon_sym_DASH, - STATE(6083), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9929), 1, + anon_sym_COLON, + ACTIONS(9937), 1, + anon_sym_EQ, + STATE(6027), 1, sym_comment, - ACTIONS(5097), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [216153] = 7, - ACTIONS(249), 1, + STATE(7334), 1, + aux_sym_shebang_repeat1, + STATE(7871), 1, + sym_param_type, + [206349] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2007), 1, + ACTIONS(1950), 1, anon_sym_LBRACE, - ACTIONS(8268), 1, + ACTIONS(8960), 1, anon_sym_DOT, - STATE(2007), 1, - sym_cell_path, - STATE(2752), 1, + STATE(1894), 1, sym_path, - STATE(5224), 1, + STATE(1991), 1, + sym_cell_path, + STATE(5608), 1, aux_sym_cell_path_repeat1, - STATE(6084), 1, + STATE(6028), 1, sym_comment, - [216175] = 7, - ACTIONS(249), 1, + [206371] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2061), 1, + ACTIONS(1954), 1, anon_sym_LBRACE, - ACTIONS(8268), 1, + ACTIONS(8960), 1, anon_sym_DOT, - STATE(2029), 1, + STATE(1894), 1, + sym_path, + STATE(1992), 1, sym_cell_path, - STATE(2752), 1, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6029), 1, + sym_comment, + [206393] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1962), 1, + anon_sym_LBRACE, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, sym_path, - STATE(5224), 1, + STATE(1993), 1, + sym_cell_path, + STATE(5608), 1, aux_sym_cell_path_repeat1, - STATE(6085), 1, + STATE(6030), 1, sym_comment, - [216197] = 5, - ACTIONS(249), 1, + [206415] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(1970), 1, anon_sym_LBRACE, - STATE(6086), 1, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(1994), 1, + sym_cell_path, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6031), 1, sym_comment, - STATE(7143), 1, - sym_block, - ACTIONS(9576), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [216215] = 7, + [206437] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9931), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, + ACTIONS(9933), 1, sym_unescaped_interpolated_content, - ACTIONS(9823), 1, + ACTIONS(9939), 1, anon_sym_SQUOTE, - STATE(6073), 1, + STATE(6010), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6087), 1, + STATE(6032), 1, sym_comment, - STATE(7085), 1, + STATE(6902), 1, sym_expr_interpolated, - [216237] = 5, - ACTIONS(249), 1, + [206459] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4947), 1, - anon_sym_DASH, - ACTIONS(9825), 1, - anon_sym_EQ2, - STATE(6088), 1, + ACTIONS(1878), 1, + anon_sym_RBRACE, + ACTIONS(1886), 1, + sym__entry_separator, + ACTIONS(9941), 1, + anon_sym_DOT_DOT2, + STATE(6033), 1, sym_comment, - ACTIONS(4945), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [216255] = 4, - ACTIONS(249), 1, + ACTIONS(9943), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206479] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5073), 1, - anon_sym_DASH, - STATE(6089), 1, + ACTIONS(963), 1, + aux_sym_record_entry_token1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(1454), 1, + sym_cell_path, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3600), 1, + sym_path, + STATE(6034), 1, sym_comment, - ACTIONS(5071), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [216271] = 7, - ACTIONS(249), 1, + [206501] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6090), 1, + ACTIONS(1974), 1, + anon_sym_LBRACE, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(1997), 1, + sym_cell_path, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6035), 1, sym_comment, - STATE(7120), 1, - sym_val_list, - STATE(7218), 1, - aux_sym_val_table_repeat1, - [216293] = 7, - ACTIONS(249), 1, + [206523] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6091), 1, + ACTIONS(1986), 1, + anon_sym_LBRACE, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(1998), 1, + sym_cell_path, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6036), 1, sym_comment, - STATE(6820), 1, - sym_val_list, - STATE(7220), 1, - aux_sym_val_table_repeat1, - [216315] = 6, - ACTIONS(249), 1, + [206545] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4939), 1, - anon_sym_DASH_DASH, - ACTIONS(9827), 1, - sym_long_flag_identifier, - ACTIONS(9829), 1, - anon_sym_EQ2, - STATE(6092), 1, + ACTIONS(1990), 1, + anon_sym_LBRACE, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(1999), 1, + sym_cell_path, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6037), 1, sym_comment, - ACTIONS(4937), 2, - sym_identifier, - anon_sym_DASH, - [216335] = 7, - ACTIONS(249), 1, + [206567] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2015), 1, + ACTIONS(1994), 1, anon_sym_LBRACE, - ACTIONS(8268), 1, + ACTIONS(8960), 1, anon_sym_DOT, - STATE(2013), 1, - sym_cell_path, - STATE(2752), 1, + STATE(1894), 1, sym_path, - STATE(5224), 1, + STATE(2000), 1, + sym_cell_path, + STATE(5608), 1, aux_sym_cell_path_repeat1, - STATE(6093), 1, + STATE(6038), 1, sym_comment, - [216357] = 5, - ACTIONS(249), 1, + [206589] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4991), 1, - anon_sym_DASH, - ACTIONS(9831), 1, - anon_sym_EQ2, - STATE(6094), 1, + ACTIONS(1998), 1, + anon_sym_LBRACE, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(2001), 1, + sym_cell_path, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6039), 1, sym_comment, - ACTIONS(4989), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [216375] = 7, - ACTIONS(249), 1, + [206611] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2069), 1, + ACTIONS(2002), 1, anon_sym_LBRACE, - ACTIONS(8268), 1, + ACTIONS(8960), 1, anon_sym_DOT, - STATE(2030), 1, - sym_cell_path, - STATE(2752), 1, + STATE(1894), 1, sym_path, - STATE(5224), 1, + STATE(2004), 1, + sym_cell_path, + STATE(5608), 1, aux_sym_cell_path_repeat1, - STATE(6095), 1, + STATE(6040), 1, sym_comment, - [216397] = 5, - ACTIONS(249), 1, + [206633] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9833), 1, - anon_sym_DOT_DOT2, - STATE(6096), 1, - sym_comment, - ACTIONS(2119), 2, - sym__newline, + ACTIONS(2006), 1, anon_sym_LBRACE, - ACTIONS(9835), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216415] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2200), 1, - anon_sym_RBRACE, - ACTIONS(2202), 1, - sym__entry_separator, - ACTIONS(9360), 1, - anon_sym_DOT_DOT2, - STATE(6097), 1, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(2006), 1, + sym_cell_path, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6041), 1, sym_comment, - ACTIONS(9362), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216435] = 5, - ACTIONS(249), 1, + [206655] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9837), 1, - anon_sym_DOT_DOT2, - STATE(6098), 1, - sym_comment, - ACTIONS(2212), 2, - sym__newline, + ACTIONS(2070), 1, anon_sym_LBRACE, - ACTIONS(9839), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216453] = 7, - ACTIONS(3), 1, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(2007), 1, + sym_cell_path, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6042), 1, + sym_comment, + [206677] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9841), 1, - anon_sym_SQUOTE, - STATE(6099), 1, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(2008), 1, + sym_cell_path, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6043), 1, sym_comment, - STATE(6144), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, - sym_expr_interpolated, - [216475] = 7, - ACTIONS(249), 1, + [206699] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1903), 1, + ACTIONS(1911), 1, anon_sym_LBRACE, - ACTIONS(8268), 1, + ACTIONS(8960), 1, anon_sym_DOT, - STATE(2402), 1, + STATE(1894), 1, + sym_path, + STATE(2009), 1, sym_cell_path, - STATE(2752), 1, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6044), 1, + sym_comment, + [206721] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1915), 1, + anon_sym_LBRACE, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, sym_path, - STATE(5224), 1, + STATE(2012), 1, + sym_cell_path, + STATE(5608), 1, aux_sym_cell_path_repeat1, - STATE(6100), 1, + STATE(6045), 1, sym_comment, - [216497] = 5, + [206743] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1044), 1, + ACTIONS(996), 1, anon_sym_DOT, - ACTIONS(9843), 1, - anon_sym_QMARK2, - STATE(6101), 1, + STATE(6046), 1, sym_comment, - ACTIONS(1042), 3, + ACTIONS(994), 4, anon_sym_RBRACK, + anon_sym_QMARK2, sym__entry_separator, sym__table_head_separator, - [216515] = 6, - ACTIONS(249), 1, + [206759] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1715), 1, + ACTIONS(1755), 1, aux_sym_unquoted_token2, - ACTIONS(9845), 1, - anon_sym_DOT, - ACTIONS(9847), 1, + ACTIONS(9572), 1, aux_sym__immediate_decimal_token2, - STATE(6102), 1, + STATE(6047), 1, sym_comment, - ACTIONS(1717), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [216535] = 7, + ACTIONS(1757), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [206777] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9849), 1, - anon_sym_SQUOTE, - STATE(6073), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6103), 1, + ACTIONS(1000), 1, + anon_sym_DOT, + STATE(6048), 1, sym_comment, - STATE(7085), 1, - sym_expr_interpolated, - [216557] = 4, + ACTIONS(998), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [206793] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5176), 1, + anon_sym_DASH2, + STATE(6049), 1, + sym_comment, + ACTIONS(5174), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [206809] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5180), 1, + anon_sym_DASH2, + STATE(6050), 1, + sym_comment, + ACTIONS(5178), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [206825] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1060), 1, + ACTIONS(1004), 1, anon_sym_DOT, - STATE(6104), 1, + STATE(6051), 1, sym_comment, - ACTIONS(1058), 4, + ACTIONS(1002), 4, anon_sym_RBRACK, anon_sym_QMARK2, sym__entry_separator, sym__table_head_separator, - [216573] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9755), 1, - anon_sym_COLON, - ACTIONS(9851), 1, - anon_sym_EQ, - STATE(6105), 1, - sym_comment, - STATE(7246), 1, - aux_sym_shebang_repeat1, - STATE(7835), 1, - sym_param_type, - [216595] = 6, - ACTIONS(249), 1, + [206841] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1703), 1, - aux_sym_unquoted_token2, - ACTIONS(9853), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9855), 1, + ACTIONS(9713), 1, aux_sym__immediate_decimal_token2, - STATE(6106), 1, + STATE(6052), 1, sym_comment, - ACTIONS(1705), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [216615] = 6, - ACTIONS(3), 1, + ACTIONS(1755), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [206859] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1788), 1, + STATE(222), 1, + aux_sym__block_body_repeat1, + STATE(6053), 1, + sym_comment, + ACTIONS(139), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1457), 2, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1796), 1, - sym__entry_separator, - ACTIONS(9857), 1, - anon_sym_DOT_DOT2, - STATE(6107), 1, + [206877] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9432), 1, + anon_sym_LBRACE, + STATE(6054), 1, sym_comment, - ACTIONS(9859), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216635] = 7, - ACTIONS(249), 1, + STATE(7161), 1, + sym_val_record, + ACTIONS(9801), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [206895] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9432), 1, + anon_sym_LBRACE, + STATE(6055), 1, + sym_comment, + STATE(7164), 1, + sym_val_record, + ACTIONS(9803), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [206913] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1931), 1, + STATE(6056), 1, + sym_comment, + ACTIONS(8111), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - ACTIONS(8268), 1, + [206927] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(992), 1, anon_sym_DOT, - STATE(2005), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6108), 1, + STATE(6057), 1, sym_comment, - [216657] = 7, - ACTIONS(249), 1, + ACTIONS(990), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [206943] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6109), 1, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + ACTIONS(9945), 1, + anon_sym_DOT, + ACTIONS(9947), 1, + aux_sym__immediate_decimal_token2, + STATE(6058), 1, sym_comment, - STATE(7059), 1, - sym_val_list, - STATE(7235), 1, - aux_sym_val_table_repeat1, - [216679] = 7, - ACTIONS(249), 1, + ACTIONS(1757), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [206963] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6110), 1, + ACTIONS(5168), 1, + anon_sym_DASH2, + STATE(6059), 1, sym_comment, - STATE(7074), 1, - sym_val_list, - STATE(7237), 1, - aux_sym_val_table_repeat1, - [216701] = 5, - ACTIONS(249), 1, + ACTIONS(5166), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [206979] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9861), 1, - anon_sym_DOT_DOT2, - STATE(6111), 1, + ACTIONS(5172), 1, + anon_sym_DASH2, + STATE(6060), 1, sym_comment, - ACTIONS(2228), 2, - sym__newline, + ACTIONS(5170), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9863), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216719] = 7, - ACTIONS(249), 1, + [206995] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6112), 1, + ACTIONS(5145), 1, + anon_sym_DASH2, + STATE(6061), 1, sym_comment, - STATE(7122), 1, - sym_val_list, - STATE(7241), 1, - aux_sym_val_table_repeat1, - [216741] = 7, - ACTIONS(249), 1, + ACTIONS(5143), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [207011] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6113), 1, + ACTIONS(1783), 1, + aux_sym_unquoted_token2, + ACTIONS(9949), 1, + aux_sym__immediate_decimal_token2, + STATE(6062), 1, + sym_comment, + ACTIONS(1785), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207029] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5098), 1, + anon_sym_DASH2, + STATE(6063), 1, sym_comment, - STATE(7145), 1, - sym_val_list, - STATE(7243), 1, - aux_sym_val_table_repeat1, - [216763] = 5, - ACTIONS(3), 1, + ACTIONS(5096), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [207045] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1050), 1, - anon_sym_DOT, - ACTIONS(9865), 1, - anon_sym_QMARK2, - STATE(6114), 1, + ACTIONS(5102), 1, + anon_sym_DASH2, + STATE(6064), 1, sym_comment, - ACTIONS(1048), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [216781] = 7, - ACTIONS(249), 1, + ACTIONS(5100), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [207061] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6115), 1, + ACTIONS(5130), 1, + anon_sym_DASH2, + STATE(6065), 1, sym_comment, - STATE(7204), 1, - sym_val_list, - STATE(7250), 1, - aux_sym_val_table_repeat1, - [216803] = 7, - ACTIONS(249), 1, + ACTIONS(5128), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [207077] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6116), 1, + ACTIONS(8559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token5, + STATE(6066), 1, sym_comment, - STATE(7209), 1, - sym_val_list, - STATE(7253), 1, - aux_sym_val_table_repeat1, - [216825] = 6, + STATE(7994), 1, + sym__immediate_decimal, + ACTIONS(8557), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [207097] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9360), 1, - anon_sym_DOT_DOT2, - ACTIONS(9867), 1, - anon_sym_RBRACE, - ACTIONS(9869), 1, - sym__entry_separator, - STATE(6117), 1, + STATE(6067), 1, sym_comment, - ACTIONS(9362), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216845] = 7, + ACTIONS(996), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(994), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [207113] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7707), 1, - sym__newline, - ACTIONS(7709), 1, - sym__space, - STATE(4705), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(5995), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6118), 1, + STATE(6068), 1, sym_comment, - STATE(7585), 1, - sym__flags_parenthesized, - [216867] = 7, - ACTIONS(249), 1, + ACTIONS(1000), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(998), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [207129] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1668), 1, - aux_sym_record_entry_token1, - ACTIONS(9705), 1, + STATE(6069), 1, + sym_comment, + ACTIONS(1004), 2, anon_sym_DOT, - STATE(1399), 1, - sym_cell_path, - STATE(6119), 1, + sym__entry_separator, + ACTIONS(1002), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [207145] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(9951), 1, + anon_sym_SQUOTE, + STATE(6070), 1, sym_comment, - STATE(6724), 1, - aux_sym_cell_path_repeat1, - STATE(7323), 1, - sym_path, - [216889] = 7, - ACTIONS(249), 1, + STATE(6211), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, + sym_expr_interpolated, + [207167] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6120), 1, + STATE(6071), 1, sym_comment, - STATE(7258), 1, - aux_sym_val_table_repeat1, - STATE(7281), 1, - sym_val_list, - [216911] = 7, - ACTIONS(249), 1, + ACTIONS(992), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(990), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [207183] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6121), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(1874), 1, + anon_sym_LBRACE, + ACTIONS(9953), 1, + anon_sym_DOT_DOT2, + STATE(6072), 1, sym_comment, - STATE(7260), 1, - aux_sym_val_table_repeat1, - STATE(7333), 1, - sym_val_list, - [216933] = 7, + ACTIONS(9955), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207203] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9931), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, + ACTIONS(9933), 1, sym_unescaped_interpolated_content, - ACTIONS(9871), 1, + ACTIONS(9957), 1, anon_sym_SQUOTE, STATE(6073), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6122), 1, sym_comment, - STATE(7085), 1, + STATE(6076), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, sym_expr_interpolated, - [216955] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6123), 1, - sym_comment, - STATE(6763), 1, - sym_val_list, - STATE(7264), 1, - aux_sym_val_table_repeat1, - [216977] = 7, - ACTIONS(249), 1, + [207225] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6124), 1, + ACTIONS(9929), 1, + anon_sym_COLON, + ACTIONS(9959), 1, + anon_sym_EQ, + STATE(6074), 1, sym_comment, - STATE(6768), 1, - sym_val_list, - STATE(7266), 1, - aux_sym_val_table_repeat1, - [216999] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, + STATE(7334), 1, aux_sym_shebang_repeat1, - STATE(6125), 1, - sym_comment, - STATE(6784), 1, - sym_val_list, - STATE(7271), 1, - aux_sym_val_table_repeat1, - [217021] = 7, - ACTIONS(249), 1, + STATE(7784), 1, + sym_param_type, + [207247] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6126), 1, + ACTIONS(9961), 1, + aux_sym__immediate_decimal_token2, + STATE(6075), 1, sym_comment, - STATE(6788), 1, - sym_val_list, - STATE(7274), 1, - aux_sym_val_table_repeat1, - [217043] = 3, - ACTIONS(249), 1, + ACTIONS(1783), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1785), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [207265] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6127), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(9963), 1, + anon_sym_SQUOTE, + STATE(6010), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6076), 1, sym_comment, - ACTIONS(8116), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - [217057] = 4, - ACTIONS(249), 1, + STATE(6902), 1, + sym_expr_interpolated, + [207287] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5069), 1, - anon_sym_DASH, - STATE(6128), 1, + ACTIONS(1709), 1, + anon_sym_DASH2, + ACTIONS(8677), 1, + aux_sym_unquoted_token2, + STATE(6077), 1, sym_comment, - ACTIONS(5067), 4, + ACTIONS(1721), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [217073] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6129), 1, - sym_comment, - STATE(6812), 1, - sym_val_list, - STATE(7280), 1, - aux_sym_val_table_repeat1, - [217095] = 7, - ACTIONS(249), 1, + [207305] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6130), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6078), 1, sym_comment, - STATE(6818), 1, - sym_val_list, - STATE(7283), 1, - aux_sym_val_table_repeat1, - [217117] = 7, - ACTIONS(249), 1, + STATE(6111), 1, + sym__variable_name, + STATE(7296), 1, + sym__assignment_pattern_parenthesized, + [207327] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6131), 1, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5934), 1, + sym__entry_separator, + ACTIONS(9861), 1, + anon_sym_DOT_DOT2, + STATE(6079), 1, sym_comment, - STATE(6839), 1, - sym_val_list, - STATE(7289), 1, - aux_sym_val_table_repeat1, - [217139] = 7, - ACTIONS(249), 1, + ACTIONS(9863), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207347] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6132), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(6080), 1, sym_comment, - STATE(6845), 1, - sym_val_list, - STATE(7291), 1, - aux_sym_val_table_repeat1, - [217161] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, + STATE(6827), 1, + sym_block, + ACTIONS(9744), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6133), 1, - sym_comment, - STATE(6865), 1, - sym_val_list, - STATE(7297), 1, - aux_sym_val_table_repeat1, - [217183] = 7, - ACTIONS(249), 1, + anon_sym_SEMI, + [207365] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(2498), 1, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(6134), 1, + STATE(6081), 1, sym_comment, - STATE(6871), 1, + STATE(7134), 1, sym_val_list, - STATE(7299), 1, + STATE(7160), 1, aux_sym_val_table_repeat1, - [217205] = 7, + [207387] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9931), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, + ACTIONS(9933), 1, sym_unescaped_interpolated_content, - ACTIONS(9873), 1, + ACTIONS(9965), 1, anon_sym_SQUOTE, - STATE(6135), 1, + STATE(6082), 1, sym_comment, - STATE(6171), 1, + STATE(6084), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7085), 1, + STATE(6902), 1, sym_expr_interpolated, - [217227] = 7, + [207409] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(1866), 1, + anon_sym_RBRACE, + ACTIONS(1874), 1, + sym__entry_separator, + ACTIONS(9967), 1, + anon_sym_DOT_DOT2, + STATE(6083), 1, + sym_comment, + ACTIONS(9969), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207429] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9931), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, + ACTIONS(9933), 1, sym_unescaped_interpolated_content, - ACTIONS(9875), 1, + ACTIONS(9971), 1, anon_sym_SQUOTE, - STATE(6073), 1, + STATE(6010), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6136), 1, + STATE(6084), 1, sym_comment, - STATE(7085), 1, + STATE(6902), 1, sym_expr_interpolated, - [217249] = 7, - ACTIONS(249), 1, + [207451] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6137), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(9973), 1, + anon_sym_SQUOTE, + STATE(6085), 1, sym_comment, - STATE(7320), 1, - sym_val_list, - STATE(7389), 1, - aux_sym_val_table_repeat1, - [217271] = 7, - ACTIONS(249), 1, + STATE(6091), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, + sym_expr_interpolated, + [207473] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6138), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6086), 1, sym_comment, - STATE(6893), 1, - sym_val_list, - STATE(7305), 1, - aux_sym_val_table_repeat1, - [217293] = 7, - ACTIONS(249), 1, + STATE(6099), 1, + sym__variable_name, + STATE(6648), 1, + sym__assignment_pattern, + [207495] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6139), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6087), 1, sym_comment, - STATE(6897), 1, - sym_val_list, - STATE(7308), 1, - aux_sym_val_table_repeat1, - [217315] = 7, - ACTIONS(249), 1, + STATE(6099), 1, + sym__variable_name, + STATE(6649), 1, + sym__assignment_pattern, + [207517] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1999), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2002), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6140), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6088), 1, sym_comment, - [217337] = 7, - ACTIONS(249), 1, + STATE(6099), 1, + sym__variable_name, + STATE(6650), 1, + sym__assignment_pattern, + [207539] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6141), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6024), 1, + sym__variable_name, + STATE(6089), 1, sym_comment, - STATE(6914), 1, - sym_val_list, - STATE(7315), 1, - aux_sym_val_table_repeat1, - [217359] = 7, - ACTIONS(249), 1, + STATE(6996), 1, + sym__assignment_pattern, + [207561] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6142), 1, + ACTIONS(9975), 1, + anon_sym_QMARK2, + STATE(6090), 1, sym_comment, - STATE(6919), 1, - sym_val_list, - STATE(7318), 1, - aux_sym_val_table_repeat1, - [217381] = 7, + ACTIONS(978), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(980), 2, + anon_sym_DOT, + sym__entry_separator, + [207579] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9931), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, + ACTIONS(9933), 1, sym_unescaped_interpolated_content, - ACTIONS(9877), 1, + ACTIONS(9977), 1, anon_sym_SQUOTE, - STATE(6073), 1, + STATE(6010), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6143), 1, + STATE(6091), 1, sym_comment, - STATE(7085), 1, + STATE(6902), 1, sym_expr_interpolated, - [217403] = 7, + [207601] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9979), 1, + anon_sym_QMARK2, + STATE(6092), 1, + sym_comment, + ACTIONS(984), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(986), 2, + anon_sym_DOT, + sym__entry_separator, + [207619] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + ACTIONS(9981), 1, + anon_sym_DOT_DOT2, + STATE(6093), 1, + sym_comment, + ACTIONS(9983), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207639] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9931), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, + ACTIONS(9933), 1, sym_unescaped_interpolated_content, - ACTIONS(9879), 1, + ACTIONS(9985), 1, anon_sym_SQUOTE, - STATE(6073), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6144), 1, + STATE(6094), 1, sym_comment, - STATE(7085), 1, + STATE(6097), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, sym_expr_interpolated, - [217425] = 7, - ACTIONS(249), 1, + [207661] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6145), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6024), 1, + sym__variable_name, + STATE(6095), 1, sym_comment, - STATE(6936), 1, - sym_val_list, - STATE(7325), 1, - aux_sym_val_table_repeat1, - [217447] = 7, - ACTIONS(249), 1, + STATE(7013), 1, + sym__assignment_pattern, + [207683] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6146), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(9987), 1, + anon_sym_SQUOTE, + STATE(6096), 1, sym_comment, - STATE(6942), 1, - sym_val_list, - STATE(7327), 1, - aux_sym_val_table_repeat1, - [217469] = 7, - ACTIONS(249), 1, + STATE(6106), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, + sym_expr_interpolated, + [207705] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6147), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(9989), 1, + anon_sym_SQUOTE, + STATE(6010), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6097), 1, sym_comment, - STATE(6955), 1, - sym_val_list, - STATE(7332), 1, - aux_sym_val_table_repeat1, - [217491] = 7, - ACTIONS(249), 1, + STATE(6902), 1, + sym_expr_interpolated, + [207727] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6148), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6098), 1, sym_comment, - STATE(6962), 1, - sym_val_list, - STATE(7335), 1, - aux_sym_val_table_repeat1, - [217513] = 7, - ACTIONS(249), 1, + STATE(6099), 1, + sym__variable_name, + STATE(6395), 1, + sym__assignment_pattern, + [207749] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, + ACTIONS(9929), 1, + anon_sym_COLON, + ACTIONS(9991), 1, + anon_sym_EQ, + STATE(6099), 1, + sym_comment, + STATE(7334), 1, aux_sym_shebang_repeat1, - STATE(6149), 1, + STATE(7792), 1, + sym_param_type, + [207771] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(9993), 1, + anon_sym_SQUOTE, + STATE(6100), 1, sym_comment, - STATE(6978), 1, - sym_val_list, - STATE(7340), 1, - aux_sym_val_table_repeat1, - [217535] = 7, - ACTIONS(249), 1, + STATE(6102), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, + sym_expr_interpolated, + [207793] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(9995), 1, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6150), 1, + ACTIONS(9998), 1, + sym__space, + STATE(5486), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7426), 1, + sym__flags_parenthesized, + STATE(6101), 2, sym_comment, - STATE(6984), 1, - sym_val_list, - STATE(7343), 1, - aux_sym_val_table_repeat1, - [217557] = 7, - ACTIONS(249), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + [207813] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6151), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10001), 1, + anon_sym_SQUOTE, + STATE(6010), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6102), 1, sym_comment, - STATE(6999), 1, - sym_val_list, - STATE(7348), 1, - aux_sym_val_table_repeat1, - [217579] = 7, - ACTIONS(249), 1, + STATE(6902), 1, + sym_expr_interpolated, + [207835] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6152), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10003), 1, + anon_sym_SQUOTE, + STATE(6103), 1, sym_comment, - STATE(7005), 1, - sym_val_list, - STATE(7351), 1, - aux_sym_val_table_repeat1, - [217601] = 7, - ACTIONS(249), 1, + STATE(6105), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, + sym_expr_interpolated, + [207857] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6153), 1, + ACTIONS(5164), 1, + anon_sym_DASH2, + STATE(6104), 1, sym_comment, - STATE(7014), 1, - sym_val_list, - STATE(7355), 1, - aux_sym_val_table_repeat1, - [217623] = 7, - ACTIONS(249), 1, + ACTIONS(5162), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [207873] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6154), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10005), 1, + anon_sym_SQUOTE, + STATE(6010), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6105), 1, sym_comment, - STATE(7018), 1, - sym_val_list, - STATE(7358), 1, - aux_sym_val_table_repeat1, - [217645] = 7, - ACTIONS(249), 1, + STATE(6902), 1, + sym_expr_interpolated, + [207895] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6155), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10007), 1, + anon_sym_SQUOTE, + STATE(6010), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6106), 1, sym_comment, - STATE(7030), 1, - sym_val_list, - STATE(7362), 1, - aux_sym_val_table_repeat1, - [217667] = 7, - ACTIONS(249), 1, + STATE(6902), 1, + sym_expr_interpolated, + [207917] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6156), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10009), 1, + anon_sym_SQUOTE, + STATE(6107), 1, sym_comment, - STATE(7035), 1, - sym_val_list, - STATE(7365), 1, - aux_sym_val_table_repeat1, - [217689] = 7, - ACTIONS(249), 1, + STATE(6108), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, + sym_expr_interpolated, + [207939] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6157), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10011), 1, + anon_sym_SQUOTE, + STATE(6010), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6108), 1, sym_comment, - STATE(7046), 1, - sym_val_list, - STATE(7370), 1, - aux_sym_val_table_repeat1, - [217711] = 7, - ACTIONS(249), 1, + STATE(6902), 1, + sym_expr_interpolated, + [207961] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6158), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10013), 1, + anon_sym_SQUOTE, + STATE(6109), 1, sym_comment, - STATE(7051), 1, - sym_val_list, - STATE(7373), 1, - aux_sym_val_table_repeat1, - [217733] = 7, - ACTIONS(249), 1, + STATE(6110), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, + sym_expr_interpolated, + [207983] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6159), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10015), 1, + anon_sym_SQUOTE, + STATE(6010), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6110), 1, sym_comment, - STATE(7060), 1, - sym_val_list, - STATE(7376), 1, - aux_sym_val_table_repeat1, - [217755] = 7, - ACTIONS(249), 1, + STATE(6902), 1, + sym_expr_interpolated, + [208005] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6160), 1, + ACTIONS(9929), 1, + anon_sym_COLON, + ACTIONS(10017), 1, + anon_sym_EQ, + STATE(6111), 1, sym_comment, - STATE(7066), 1, - sym_val_list, - STATE(7379), 1, - aux_sym_val_table_repeat1, - [217777] = 6, - ACTIONS(249), 1, + STATE(7334), 1, + aux_sym_shebang_repeat1, + STATE(7939), 1, + sym_param_type, + [208027] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8444), 1, + ACTIONS(8559), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8446), 1, + ACTIONS(8561), 1, aux_sym__immediate_decimal_token5, - STATE(6161), 1, + STATE(6112), 1, sym_comment, - STATE(7630), 1, + STATE(7354), 1, sym__immediate_decimal, - ACTIONS(8442), 2, + ACTIONS(8557), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [217797] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9881), 1, - anon_sym_DOT_DOT2, - STATE(6162), 1, - sym_comment, - ACTIONS(1796), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(9883), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [217815] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1056), 1, - anon_sym_DOT, - STATE(6163), 1, - sym_comment, - ACTIONS(1054), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [217831] = 6, + [208047] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5885), 1, - anon_sym_RBRACK, - ACTIONS(5891), 1, - sym__entry_separator, - ACTIONS(9360), 1, - anon_sym_DOT_DOT2, - STATE(6164), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10019), 1, + anon_sym_SQUOTE, + STATE(6113), 1, sym_comment, - ACTIONS(9362), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [217851] = 7, + STATE(6114), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, + sym_expr_interpolated, + [208069] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9931), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, + ACTIONS(9933), 1, sym_unescaped_interpolated_content, - ACTIONS(9885), 1, + ACTIONS(10021), 1, anon_sym_SQUOTE, - STATE(6059), 1, + STATE(6010), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6165), 1, + STATE(6114), 1, sym_comment, - STATE(7085), 1, + STATE(6902), 1, sym_expr_interpolated, - [217873] = 7, - ACTIONS(249), 1, + [208091] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1672), 1, - aux_sym_record_entry_token1, - ACTIONS(9705), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + ACTIONS(10023), 1, + anon_sym_DOT_DOT2, + STATE(6115), 1, + sym_comment, + ACTIONS(10025), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208111] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2096), 1, + anon_sym_LBRACE, + ACTIONS(8960), 1, anon_sym_DOT, - STATE(1426), 1, + STATE(1894), 1, + sym_path, + STATE(2118), 1, sym_cell_path, - STATE(6166), 1, - sym_comment, - STATE(6724), 1, + STATE(5608), 1, aux_sym_cell_path_repeat1, - STATE(7323), 1, - sym_path, - [217895] = 6, + STATE(6116), 1, + sym_comment, + [208133] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1717), 1, - sym__entry_separator, - ACTIONS(8613), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9887), 1, - anon_sym_DOT, - STATE(6167), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + STATE(6117), 1, sym_comment, - ACTIONS(1715), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [217915] = 7, + STATE(6118), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, + sym_expr_interpolated, + [208155] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9931), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, + ACTIONS(9933), 1, sym_unescaped_interpolated_content, - ACTIONS(9889), 1, + ACTIONS(10029), 1, anon_sym_SQUOTE, - STATE(6073), 1, + STATE(6010), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6168), 1, + STATE(6118), 1, sym_comment, - STATE(7085), 1, + STATE(6902), 1, sym_expr_interpolated, - [217937] = 5, - ACTIONS(249), 1, + [208177] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(6169), 1, + ACTIONS(10031), 1, + anon_sym_PIPE, + ACTIONS(10033), 1, + anon_sym_if, + ACTIONS(10035), 1, + anon_sym_EQ_GT, + STATE(6119), 1, sym_comment, - STATE(7380), 1, - sym_block, - ACTIONS(9578), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [217955] = 7, - ACTIONS(249), 1, + STATE(7103), 1, + aux_sym_match_pattern_repeat1, + STATE(7887), 1, + sym_match_guard, + [208199] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2409), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6170), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10037), 1, + anon_sym_SQUOTE, + STATE(6120), 1, sym_comment, - [217977] = 7, + STATE(6121), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, + sym_expr_interpolated, + [208221] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, + ACTIONS(9931), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, + ACTIONS(9933), 1, sym_unescaped_interpolated_content, - ACTIONS(9891), 1, + ACTIONS(10039), 1, anon_sym_SQUOTE, - STATE(6073), 1, + STATE(6010), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6171), 1, + STATE(6121), 1, sym_comment, - STATE(7085), 1, + STATE(6902), 1, sym_expr_interpolated, - [217999] = 5, + [208243] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9689), 1, - aux_sym__immediate_decimal_token2, - STATE(6172), 1, - sym_comment, - ACTIONS(1715), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [218017] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2011), 1, - anon_sym_LBRACE, - ACTIONS(8268), 1, - anon_sym_DOT, - STATE(2011), 1, - sym_cell_path, - STATE(2752), 1, - sym_path, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(6173), 1, - sym_comment, - [218039] = 7, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - STATE(5416), 1, - sym_val_variable, - STATE(6105), 1, - sym__variable_name, - STATE(6174), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10041), 1, + anon_sym_SQUOTE, + STATE(6122), 1, sym_comment, - STATE(6992), 1, - sym__assignment_pattern_parenthesized, - [218061] = 6, - ACTIONS(249), 1, + STATE(6123), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, + sym_expr_interpolated, + [208265] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8444), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8446), 1, - aux_sym__immediate_decimal_token5, - STATE(6175), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10043), 1, + anon_sym_SQUOTE, + STATE(6010), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6123), 1, sym_comment, - STATE(7503), 1, - sym__immediate_decimal, - ACTIONS(8442), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [218081] = 7, - ACTIONS(249), 1, + STATE(6902), 1, + sym_expr_interpolated, + [208287] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6176), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10045), 1, + anon_sym_SQUOTE, + STATE(6124), 1, sym_comment, - STATE(7245), 1, - sym_val_list, - STATE(7251), 1, - aux_sym_val_table_repeat1, - [218103] = 5, + STATE(6125), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6902), 1, + sym_expr_interpolated, + [208309] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9893), 1, - anon_sym_QMARK2, - STATE(6177), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10047), 1, + anon_sym_SQUOTE, + STATE(6010), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6125), 1, sym_comment, - ACTIONS(1042), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1044), 2, - anon_sym_DOT, - sym__entry_separator, - [218121] = 6, - ACTIONS(249), 1, + STATE(6902), 1, + sym_expr_interpolated, + [208331] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(1796), 1, - anon_sym_LBRACE, - ACTIONS(9895), 1, - anon_sym_DOT_DOT2, - STATE(6178), 1, + ACTIONS(9438), 1, + anon_sym_DASH2, + STATE(6126), 1, sym_comment, - ACTIONS(9897), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218141] = 3, - ACTIONS(249), 1, + ACTIONS(9436), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [208347] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6179), 1, + STATE(6127), 1, sym_comment, - ACTIONS(8082), 5, + ACTIONS(8089), 5, anon_sym_EQ, anon_sym_DASH_GT, - anon_sym_GT, + anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [218155] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1715), 1, - aux_sym_unquoted_token2, - ACTIONS(9627), 1, - aux_sym__immediate_decimal_token2, - STATE(6180), 1, - sym_comment, - ACTIONS(1717), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [218173] = 7, - ACTIONS(249), 1, + [208361] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, + ACTIONS(8487), 1, anon_sym_DOLLAR, - STATE(5416), 1, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, sym_val_variable, - STATE(6047), 1, + STATE(6024), 1, sym__variable_name, - STATE(6181), 1, + STATE(6128), 1, sym_comment, - STATE(6301), 1, + STATE(7062), 1, sym__assignment_pattern, - [218195] = 5, - ACTIONS(249), 1, + [208383] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1769), 1, - aux_sym_unquoted_token2, - ACTIONS(9899), 1, - aux_sym__immediate_decimal_token2, - STATE(6182), 1, + STATE(6129), 1, sym_comment, - ACTIONS(1771), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [218213] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9217), 1, + ACTIONS(8093), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - STATE(6183), 1, + [208397] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6111), 1, + sym__variable_name, + STATE(6130), 1, sym_comment, - STATE(7113), 1, - sym_val_record, - ACTIONS(9443), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [218231] = 5, + STATE(7084), 1, + sym__assignment_pattern_parenthesized, + [208419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9901), 1, + ACTIONS(9859), 1, aux_sym__immediate_decimal_token2, - STATE(6184), 1, + STATE(6131), 1, sym_comment, - ACTIONS(1769), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1771), 2, + ACTIONS(1755), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1757), 2, anon_sym_LPAREN2, sym__entry_separator, - [218249] = 5, - ACTIONS(249), 1, + [208437] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9903), 1, - anon_sym_DOT_DOT2, - STATE(6185), 1, + ACTIONS(1709), 1, + anon_sym_DASH2, + ACTIONS(8677), 1, + aux_sym_unquoted_token2, + STATE(6132), 1, sym_comment, - ACTIONS(1850), 2, - sym__newline, + ACTIONS(1721), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9905), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218267] = 5, - ACTIONS(249), 1, + [208455] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(9907), 1, + ACTIONS(1757), 1, + sym__entry_separator, + ACTIONS(8848), 1, aux_sym__immediate_decimal_token2, - STATE(6186), 1, + ACTIONS(10049), 1, + anon_sym_DOT, + STATE(6133), 1, sym_comment, - ACTIONS(1598), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [218285] = 7, - ACTIONS(249), 1, + ACTIONS(1755), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208475] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8374), 1, - sym_identifier, - ACTIONS(9328), 1, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(8960), 1, + anon_sym_DOT, + STATE(1894), 1, + sym_path, + STATE(2115), 1, + sym_cell_path, + STATE(5608), 1, + aux_sym_cell_path_repeat1, + STATE(6134), 1, + sym_comment, + [208497] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8487), 1, anon_sym_DOLLAR, - STATE(5416), 1, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, sym_val_variable, - STATE(6023), 1, + STATE(6111), 1, sym__variable_name, - STATE(6187), 1, - sym_comment, - STATE(7190), 1, - sym__assignment_pattern, - [218307] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LPAREN, - ACTIONS(9713), 1, - sym_unescaped_interpolated_content, - ACTIONS(9909), 1, - anon_sym_SQUOTE, - STATE(6122), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6188), 1, + STATE(6135), 1, sym_comment, - STATE(7085), 1, - sym_expr_interpolated, - [218329] = 5, - ACTIONS(249), 1, + STATE(6859), 1, + sym__assignment_pattern_parenthesized, + [208519] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9911), 1, - anon_sym_DOT_DOT2, - STATE(6189), 1, + ACTIONS(5088), 1, + anon_sym_DASH2, + STATE(6136), 1, sym_comment, - ACTIONS(2240), 2, - sym__newline, + ACTIONS(5086), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9913), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218347] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9915), 1, - anon_sym_DQUOTE, - STATE(6190), 1, - sym_comment, - STATE(6370), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [218364] = 6, - ACTIONS(249), 1, + [208535] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6211), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - STATE(4814), 1, - sym_block, - STATE(6191), 1, + STATE(6137), 1, sym_comment, - STATE(6209), 1, - aux_sym_shebang_repeat1, - [218383] = 5, - ACTIONS(3), 1, + STATE(7111), 1, + sym_block, + ACTIONS(9875), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [208553] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9919), 1, - anon_sym_DQUOTE, - STATE(6192), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(9883), 1, + anon_sym_use, + ACTIONS(9885), 1, + anon_sym_list, + ACTIONS(9887), 1, + anon_sym_hide, + ACTIONS(9889), 1, + anon_sym_new, + STATE(6138), 1, sym_comment, - STATE(6197), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [218400] = 6, + [208575] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(9861), 1, + anon_sym_DOT_DOT2, + ACTIONS(10051), 1, + anon_sym_RBRACE, + ACTIONS(10053), 1, sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(9923), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6193), 1, + STATE(6139), 1, sym_comment, - [218419] = 3, - ACTIONS(249), 1, + ACTIONS(9863), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208595] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6194), 1, - sym_comment, - ACTIONS(9925), 4, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218432] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6195), 1, + ACTIONS(9929), 1, + anon_sym_COLON, + ACTIONS(10055), 1, + anon_sym_EQ, + STATE(6140), 1, sym_comment, - ACTIONS(6263), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [218445] = 3, - ACTIONS(249), 1, + STATE(7334), 1, + aux_sym_shebang_repeat1, + STATE(7561), 1, + sym_param_type, + [208617] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6196), 1, + ACTIONS(1771), 1, + aux_sym_record_entry_token1, + ACTIONS(6538), 1, + anon_sym_DOT, + STATE(2016), 1, + sym_cell_path, + STATE(3482), 1, + aux_sym_cell_path_repeat1, + STATE(3600), 1, + sym_path, + STATE(6141), 1, sym_comment, - ACTIONS(6265), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [218458] = 5, - ACTIONS(3), 1, + [208639] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9927), 1, - anon_sym_DQUOTE, - STATE(6197), 1, + ACTIONS(5053), 1, + anon_sym_DASH2, + ACTIONS(10057), 1, + anon_sym_EQ2, + STATE(6142), 1, sym_comment, - STATE(6212), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [218475] = 3, - ACTIONS(249), 1, + ACTIONS(5051), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [208657] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6198), 1, - sym_comment, - ACTIONS(9929), 4, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218488] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6199), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6143), 1, sym_comment, - ACTIONS(9929), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218501] = 3, - ACTIONS(249), 1, + STATE(7125), 1, + aux_sym_val_table_repeat1, + STATE(7138), 1, + sym_val_list, + [208679] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6200), 1, + ACTIONS(1886), 1, + anon_sym_LBRACE, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + ACTIONS(10059), 1, + anon_sym_DOT_DOT2, + STATE(6144), 1, sym_comment, - ACTIONS(9931), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218514] = 3, - ACTIONS(249), 1, + ACTIONS(10061), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208699] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6201), 1, - sym_comment, - ACTIONS(9933), 4, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218527] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6202), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6145), 1, sym_comment, - ACTIONS(9935), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218540] = 4, + STATE(7132), 1, + aux_sym_val_table_repeat1, + STATE(7322), 1, + sym_val_list, + [208721] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6203), 1, - sym_comment, - ACTIONS(1715), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 2, - anon_sym_LPAREN2, + ACTIONS(9861), 1, + anon_sym_DOT_DOT2, + ACTIONS(10063), 1, + anon_sym_RBRACE, + ACTIONS(10065), 1, sym__entry_separator, - [218555] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - ACTIONS(5900), 1, - anon_sym_PIPE, - STATE(6204), 1, + STATE(6146), 1, sym_comment, - ACTIONS(5895), 2, - anon_sym_if, - anon_sym_EQ_GT, - [218572] = 5, + ACTIONS(9863), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208741] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2297), 1, - anon_sym_PIPE, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(6205), 1, + ACTIONS(10067), 1, + aux_sym__immediate_decimal_token2, + STATE(6147), 1, sym_comment, - ACTIONS(2293), 2, - anon_sym_if, - anon_sym_EQ_GT, - [218589] = 5, - ACTIONS(3), 1, + ACTIONS(1783), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1785), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [208759] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - ACTIONS(2305), 1, - anon_sym_PIPE, - STATE(6206), 1, + ACTIONS(5016), 1, + anon_sym_DASH2, + ACTIONS(10069), 1, + anon_sym_EQ2, + STATE(6148), 1, sym_comment, - ACTIONS(2303), 2, - anon_sym_if, - anon_sym_EQ_GT, - [218606] = 6, - ACTIONS(249), 1, + ACTIONS(5014), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [208777] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9937), 1, - anon_sym_LBRACK, - ACTIONS(9939), 1, - anon_sym_LPAREN, - STATE(3138), 1, - sym_parameter_bracks, - STATE(3142), 1, - sym_parameter_parens, - STATE(6207), 1, + ACTIONS(10071), 1, + anon_sym_EQ2, + ACTIONS(10073), 1, + sym_short_flag_identifier, + STATE(6149), 1, sym_comment, - [218625] = 6, + ACTIONS(4958), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [208795] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2281), 1, - anon_sym_RBRACK, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2285), 1, + ACTIONS(2151), 1, + anon_sym_RBRACE, + ACTIONS(2153), 1, sym__entry_separator, - ACTIONS(2287), 1, - aux_sym__unquoted_in_list_token4, - STATE(6208), 1, + ACTIONS(9861), 1, + anon_sym_DOT_DOT2, + STATE(6150), 1, sym_comment, - [218644] = 6, - ACTIONS(249), 1, + ACTIONS(9863), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208815] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4808), 1, - sym_block, - STATE(6209), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6111), 1, + sym__variable_name, + STATE(6151), 1, sym_comment, - [218663] = 6, - ACTIONS(3), 1, + STATE(7346), 1, + sym__assignment_pattern_parenthesized, + [208837] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_RBRACK, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - sym__entry_separator, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_token2, - STATE(6210), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6027), 1, + sym__variable_name, + STATE(6152), 1, sym_comment, - [218682] = 6, - ACTIONS(3), 1, + STATE(6648), 1, + sym__assignment_pattern, + [208859] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1788), 1, - anon_sym_RBRACE, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - sym__entry_separator, - STATE(6211), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6027), 1, + sym__variable_name, + STATE(6153), 1, sym_comment, - [218701] = 4, - ACTIONS(3), 1, + STATE(6649), 1, + sym__assignment_pattern, + [208881] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9941), 1, - anon_sym_DQUOTE, - ACTIONS(9943), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(6212), 2, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6027), 1, + sym__variable_name, + STATE(6154), 1, sym_comment, - aux_sym__str_double_quotes_repeat1, - [218716] = 4, - ACTIONS(3), 1, + STATE(6650), 1, + sym__assignment_pattern, + [208903] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6213), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6027), 1, + sym__variable_name, + STATE(6155), 1, sym_comment, - ACTIONS(1703), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1705), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [218731] = 4, - ACTIONS(3), 1, + STATE(6395), 1, + sym__assignment_pattern, + [208925] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(6214), 1, + ACTIONS(5053), 1, + anon_sym_DASH2, + ACTIONS(10075), 1, + anon_sym_EQ2, + STATE(6156), 1, sym_comment, - ACTIONS(2281), 3, + ACTIONS(5051), 3, sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - [218746] = 6, - ACTIONS(3), 1, + [208943] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(7942), 1, - sym__entry_separator, - ACTIONS(7944), 1, - anon_sym_RBRACK, - STATE(6215), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6157), 1, sym_comment, - STATE(7657), 1, - sym__expr_parenthesized_immediate, - [218765] = 3, - ACTIONS(249), 1, + STATE(6778), 1, + sym_val_list, + STATE(7158), 1, + aux_sym_val_table_repeat1, + [208965] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6216), 1, - sym_comment, - ACTIONS(9946), 4, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218778] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9948), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6217), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6158), 1, sym_comment, - [218797] = 3, - ACTIONS(249), 1, + STATE(6873), 1, + sym_val_list, + STATE(7163), 1, + aux_sym_val_table_repeat1, + [208987] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6218), 1, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + ACTIONS(10077), 1, + anon_sym_DOT, + ACTIONS(10079), 1, + aux_sym__immediate_decimal_token2, + STATE(6159), 1, sym_comment, - ACTIONS(5572), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1757), 2, anon_sym_LBRACE, - [218810] = 3, - ACTIONS(249), 1, + anon_sym_LPAREN2, + [209007] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6219), 1, + ACTIONS(10081), 1, + anon_sym_DOT_DOT2, + STATE(6160), 1, sym_comment, - ACTIONS(9950), 4, + ACTIONS(2165), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218823] = 3, - ACTIONS(249), 1, + anon_sym_LBRACE, + ACTIONS(10083), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209025] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6220), 1, + ACTIONS(4936), 1, + anon_sym_DASH_DASH, + ACTIONS(10085), 1, + sym_long_flag_identifier, + ACTIONS(10087), 1, + anon_sym_EQ2, + STATE(6161), 1, sym_comment, - ACTIONS(9950), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218836] = 3, - ACTIONS(249), 1, + ACTIONS(4938), 2, + sym_identifier, + anon_sym_DASH2, + [209045] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6221), 1, + ACTIONS(5016), 1, + anon_sym_DASH2, + ACTIONS(10089), 1, + anon_sym_EQ2, + STATE(6162), 1, sym_comment, - ACTIONS(9952), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218849] = 4, - ACTIONS(249), 1, + ACTIONS(5014), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [209063] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - STATE(6222), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6074), 1, + sym__variable_name, + STATE(6163), 1, sym_comment, - ACTIONS(2279), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [218864] = 4, - ACTIONS(249), 1, + STATE(6648), 1, + sym__assignment_pattern, + [209085] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - STATE(6223), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6074), 1, + sym__variable_name, + STATE(6164), 1, sym_comment, - ACTIONS(1850), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [218879] = 6, - ACTIONS(3), 1, + STATE(6649), 1, + sym__assignment_pattern, + [209107] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_LPAREN2, - ACTIONS(2196), 1, - anon_sym_RBRACE, - ACTIONS(2198), 1, - sym__entry_separator, - STATE(6224), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6074), 1, + sym__variable_name, + STATE(6165), 1, sym_comment, - STATE(7494), 1, - sym__expr_parenthesized_immediate, - [218898] = 6, - ACTIONS(249), 1, + STATE(6650), 1, + sym__assignment_pattern, + [209129] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6251), 1, + ACTIONS(8487), 1, anon_sym_DOLLAR, - ACTIONS(8374), 1, + ACTIONS(8649), 1, sym_identifier, - STATE(5416), 1, + STATE(5480), 1, sym_val_variable, - STATE(5856), 1, + STATE(6074), 1, sym__variable_name, - STATE(6225), 1, + STATE(6166), 1, sym_comment, - [218917] = 6, - ACTIONS(3), 1, + STATE(6395), 1, + sym__assignment_pattern, + [209151] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2277), 1, - anon_sym_RBRACE, - ACTIONS(2279), 1, - sym__entry_separator, - STATE(6226), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6167), 1, sym_comment, - [218936] = 3, - ACTIONS(249), 1, + STATE(7073), 1, + sym_val_list, + STATE(7190), 1, + aux_sym_val_table_repeat1, + [209173] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6227), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6168), 1, sym_comment, - ACTIONS(9954), 4, + STATE(7079), 1, + sym_val_list, + STATE(7192), 1, + aux_sym_val_table_repeat1, + [209195] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218949] = 6, - ACTIONS(3), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6169), 1, + sym_comment, + STATE(7168), 1, + sym_val_list, + STATE(7198), 1, + aux_sym_val_table_repeat1, + [209217] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_RBRACE, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - sym__entry_separator, - ACTIONS(1852), 1, - aux_sym__unquoted_in_record_token2, - STATE(6228), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6170), 1, sym_comment, - [218968] = 6, - ACTIONS(249), 1, + STATE(7186), 1, + sym_val_list, + STATE(7201), 1, + aux_sym_val_table_repeat1, + [209239] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(9956), 1, - anon_sym_EQ, - ACTIONS(9958), 1, - anon_sym_COLON, - STATE(2498), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, aux_sym_shebang_repeat1, - STATE(6229), 1, + STATE(6171), 1, sym_comment, - [218987] = 4, - ACTIONS(249), 1, + STATE(7209), 1, + aux_sym_val_table_repeat1, + STATE(7320), 1, + sym_val_list, + [209261] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token2, - STATE(6230), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6172), 1, sym_comment, - ACTIONS(2250), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [219002] = 4, - ACTIONS(3), 1, + STATE(7211), 1, + aux_sym_val_table_repeat1, + STATE(7330), 1, + sym_val_list, + [209283] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6231), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6173), 1, sym_comment, - ACTIONS(1769), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1771), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [219017] = 5, - ACTIONS(249), 1, + STATE(6761), 1, + sym_val_list, + STATE(7216), 1, + aux_sym_val_table_repeat1, + [209305] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9962), 1, - anon_sym_RPAREN, - STATE(6232), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6174), 1, sym_comment, - STATE(6722), 1, - aux_sym__block_body_repeat1, - ACTIONS(9960), 2, + STATE(6766), 1, + sym_val_list, + STATE(7219), 1, + aux_sym_val_table_repeat1, + [209327] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - [219034] = 6, - ACTIONS(3), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6175), 1, + sym_comment, + STATE(6786), 1, + sym_val_list, + STATE(7225), 1, + aux_sym_val_table_repeat1, + [209349] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - anon_sym_RBRACE, - ACTIONS(2202), 1, - sym__entry_separator, - STATE(6233), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6176), 1, sym_comment, - STATE(7494), 1, - sym__expr_parenthesized_immediate, - [219053] = 6, - ACTIONS(3), 1, + STATE(6792), 1, + sym_val_list, + STATE(7227), 1, + aux_sym_val_table_repeat1, + [209371] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9964), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6234), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6177), 1, sym_comment, - [219072] = 6, - ACTIONS(3), 1, + STATE(6811), 1, + sym_val_list, + STATE(7232), 1, + aux_sym_val_table_repeat1, + [209393] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9966), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6235), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6178), 1, sym_comment, - [219091] = 6, + STATE(6816), 1, + sym_val_list, + STATE(7234), 1, + aux_sym_val_table_repeat1, + [209415] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(7823), 1, + sym__newline, + ACTIONS(7825), 1, + sym__space, + STATE(4619), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6101), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6179), 1, + sym_comment, + STATE(7426), 1, + sym__flags_parenthesized, + [209437] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7823), 1, + sym__newline, + ACTIONS(7825), 1, + sym__space, + STATE(4775), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6179), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6180), 1, + sym_comment, + STATE(7426), 1, + sym__flags_parenthesized, + [209459] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9968), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6236), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6181), 1, sym_comment, - [219110] = 5, - ACTIONS(249), 1, + STATE(6839), 1, + sym_val_list, + STATE(7239), 1, + aux_sym_val_table_repeat1, + [209481] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1769), 1, - aux_sym_unquoted_token2, - ACTIONS(9970), 1, - aux_sym__immediate_decimal_token2, - STATE(6237), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6182), 1, sym_comment, - ACTIONS(1771), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [219127] = 6, - ACTIONS(3), 1, + STATE(6846), 1, + sym_val_list, + STATE(7242), 1, + aux_sym_val_table_repeat1, + [209503] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2335), 1, - anon_sym_RBRACE, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - sym__entry_separator, - STATE(6238), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6183), 1, sym_comment, - [219146] = 3, - ACTIONS(249), 1, + STATE(6860), 1, + sym_val_list, + STATE(7247), 1, + aux_sym_val_table_repeat1, + [209525] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6239), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6184), 1, sym_comment, - ACTIONS(9972), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [219159] = 3, - ACTIONS(249), 1, + STATE(6864), 1, + sym_val_list, + STATE(7249), 1, + aux_sym_val_table_repeat1, + [209547] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6240), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6185), 1, sym_comment, - ACTIONS(9974), 4, + STATE(6887), 1, + sym_val_list, + STATE(7253), 1, + aux_sym_val_table_repeat1, + [209569] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219172] = 3, - ACTIONS(249), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6186), 1, + sym_comment, + STATE(6894), 1, + sym_val_list, + STATE(7255), 1, + aux_sym_val_table_repeat1, + [209591] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6241), 1, + STATE(6187), 1, sym_comment, - ACTIONS(9976), 4, + ACTIONS(8099), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [209605] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219185] = 3, - ACTIONS(249), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6188), 1, + sym_comment, + STATE(6916), 1, + sym_val_list, + STATE(7261), 1, + aux_sym_val_table_repeat1, + [209627] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6242), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6189), 1, sym_comment, - ACTIONS(9978), 4, + STATE(6922), 1, + sym_val_list, + STATE(7263), 1, + aux_sym_val_table_repeat1, + [209649] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219198] = 4, - ACTIONS(3), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6190), 1, + sym_comment, + STATE(6938), 1, + sym_val_list, + STATE(7269), 1, + aux_sym_val_table_repeat1, + [209671] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6243), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6191), 1, sym_comment, - ACTIONS(1826), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1828), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [219213] = 6, - ACTIONS(249), 1, + STATE(6943), 1, + sym_val_list, + STATE(7272), 1, + aux_sym_val_table_repeat1, + [209693] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9937), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9939), 1, - anon_sym_LPAREN, - STATE(3155), 1, - sym_parameter_parens, - STATE(3157), 1, - sym_parameter_bracks, - STATE(6244), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6192), 1, sym_comment, - [219232] = 6, - ACTIONS(3), 1, + STATE(6959), 1, + sym_val_list, + STATE(7276), 1, + aux_sym_val_table_repeat1, + [209715] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_RBRACE, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2250), 1, - sym__entry_separator, - ACTIONS(2252), 1, - aux_sym__unquoted_in_record_token2, - STATE(6245), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6193), 1, sym_comment, - [219251] = 6, - ACTIONS(3), 1, + STATE(6966), 1, + sym_val_list, + STATE(7278), 1, + aux_sym_val_table_repeat1, + [209737] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9980), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6246), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6194), 1, sym_comment, - [219270] = 6, - ACTIONS(3), 1, + STATE(6982), 1, + sym_val_list, + STATE(7283), 1, + aux_sym_val_table_repeat1, + [209759] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9982), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6247), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6195), 1, sym_comment, - [219289] = 6, - ACTIONS(3), 1, + STATE(6988), 1, + sym_val_list, + STATE(7285), 1, + aux_sym_val_table_repeat1, + [209781] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9984), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6248), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6196), 1, sym_comment, - [219308] = 3, - ACTIONS(249), 1, + STATE(7001), 1, + sym_val_list, + STATE(7290), 1, + aux_sym_val_table_repeat1, + [209803] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6249), 1, - sym_comment, - ACTIONS(9978), 4, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219321] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - ACTIONS(9986), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6250), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6197), 1, sym_comment, - [219340] = 3, - ACTIONS(249), 1, + STATE(7007), 1, + sym_val_list, + STATE(7293), 1, + aux_sym_val_table_repeat1, + [209825] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6251), 1, - sym_comment, - ACTIONS(9988), 4, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219353] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6252), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6198), 1, sym_comment, - ACTIONS(9990), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219366] = 4, - ACTIONS(249), 1, + STATE(7016), 1, + sym_val_list, + STATE(7298), 1, + aux_sym_val_table_repeat1, + [209847] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1536), 1, - aux_sym_cmd_identifier_token41, - STATE(6253), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6199), 1, sym_comment, - ACTIONS(1538), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [219381] = 6, - ACTIONS(3), 1, + STATE(7021), 1, + sym_val_list, + STATE(7301), 1, + aux_sym_val_table_repeat1, + [209869] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2281), 1, - anon_sym_RBRACE, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2285), 1, - sym__entry_separator, - ACTIONS(2287), 1, - aux_sym__unquoted_in_record_token4, - STATE(6254), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6200), 1, sym_comment, - [219400] = 5, - ACTIONS(3), 1, + STATE(7031), 1, + sym_val_list, + STATE(7305), 1, + aux_sym_val_table_repeat1, + [209891] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2359), 1, - sym__entry_separator, - ACTIONS(9992), 1, - anon_sym_LBRACK2, - STATE(6255), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6201), 1, sym_comment, - ACTIONS(2355), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219417] = 4, - ACTIONS(3), 1, + STATE(7036), 1, + sym_val_list, + STATE(7308), 1, + aux_sym_val_table_repeat1, + [209913] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(6256), 1, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + ACTIONS(10091), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10093), 1, + aux_sym__immediate_decimal_token2, + STATE(6202), 1, sym_comment, - ACTIONS(2293), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [219432] = 4, - ACTIONS(3), 1, + ACTIONS(1741), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [209933] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(6257), 1, - sym_comment, - ACTIONS(2303), 3, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [219447] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1090), 1, - anon_sym_RBRACK, - ACTIONS(1092), 1, - sym__entry_separator, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym__unquoted_in_list_token4, - STATE(6258), 1, + STATE(5480), 1, + sym_val_variable, + STATE(6140), 1, + sym__variable_name, + STATE(6203), 1, sym_comment, - [219466] = 4, - ACTIONS(3), 1, + STATE(7084), 1, + sym__assignment_pattern_parenthesized, + [209955] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2291), 1, - anon_sym_PIPE, - STATE(6259), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6140), 1, + sym__variable_name, + STATE(6204), 1, sym_comment, - ACTIONS(2289), 3, - anon_sym_if, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [219481] = 3, - ACTIONS(249), 1, + STATE(6859), 1, + sym__assignment_pattern_parenthesized, + [209977] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6260), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6140), 1, + sym__variable_name, + STATE(6205), 1, sym_comment, - ACTIONS(9994), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219494] = 3, - ACTIONS(249), 1, + STATE(7346), 1, + sym__assignment_pattern_parenthesized, + [209999] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6261), 1, + ACTIONS(8487), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + sym_identifier, + STATE(5480), 1, + sym_val_variable, + STATE(6140), 1, + sym__variable_name, + STATE(6206), 1, sym_comment, - ACTIONS(9996), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219507] = 3, - ACTIONS(249), 1, + STATE(7296), 1, + sym__assignment_pattern_parenthesized, + [210021] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6262), 1, + STATE(6207), 1, sym_comment, - ACTIONS(9998), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219520] = 3, - ACTIONS(249), 1, + ACTIONS(8103), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [210035] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6263), 1, + STATE(6208), 1, sym_comment, - ACTIONS(10000), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219533] = 4, - ACTIONS(249), 1, + ACTIONS(8107), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [210049] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1715), 1, - aux_sym_unquoted_token2, - STATE(6264), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6209), 1, sym_comment, - ACTIONS(1717), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [219548] = 3, - ACTIONS(249), 1, + STATE(7025), 1, + sym_val_list, + STATE(7035), 1, + aux_sym_val_table_repeat1, + [210071] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6265), 1, + ACTIONS(2155), 1, + anon_sym_RBRACE, + ACTIONS(2157), 1, + sym__entry_separator, + ACTIONS(9861), 1, + anon_sym_DOT_DOT2, + STATE(6210), 1, sym_comment, - ACTIONS(10002), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [219561] = 3, - ACTIONS(249), 1, + ACTIONS(9863), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210091] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6266), 1, + ACTIONS(9931), 1, + anon_sym_LPAREN, + ACTIONS(9933), 1, + sym_unescaped_interpolated_content, + ACTIONS(10095), 1, + anon_sym_SQUOTE, + STATE(6010), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6211), 1, sym_comment, - ACTIONS(10004), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219574] = 6, - ACTIONS(249), 1, + STATE(6902), 1, + sym_expr_interpolated, + [210113] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9735), 1, - anon_sym_use, - ACTIONS(9737), 1, - anon_sym_list, - ACTIONS(9739), 1, - anon_sym_hide, - ACTIONS(9741), 1, - anon_sym_new, - STATE(6267), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10099), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(6212), 1, sym_comment, - [219593] = 5, + [210132] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10006), 1, + ACTIONS(10101), 1, anon_sym_DQUOTE, - STATE(6268), 1, + STATE(6213), 1, sym_comment, - STATE(6295), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [219610] = 3, - ACTIONS(249), 1, + [210149] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6269), 1, + STATE(6214), 1, sym_comment, - ACTIONS(10008), 4, + ACTIONS(10105), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219623] = 3, - ACTIONS(249), 1, + [210162] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6270), 1, + STATE(6215), 1, + sym_comment, + ACTIONS(10105), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210175] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6216), 1, sym_comment, - ACTIONS(10010), 4, + ACTIONS(10107), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [219636] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9937), 1, - anon_sym_LBRACK, - ACTIONS(9939), 1, - anon_sym_LPAREN, - STATE(5933), 1, - sym_parameter_parens, - STATE(5934), 1, - sym_parameter_bracks, - STATE(6271), 1, - sym_comment, - [219655] = 5, + [210188] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10012), 1, - anon_sym_DQUOTE, - STATE(6272), 1, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(8010), 1, + sym__entry_separator, + ACTIONS(8012), 1, + anon_sym_RBRACK, + STATE(6217), 1, sym_comment, - STATE(6277), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219672] = 3, - ACTIONS(249), 1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + [210207] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6273), 1, + STATE(6218), 1, sym_comment, - ACTIONS(10014), 4, + ACTIONS(10109), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219685] = 3, - ACTIONS(249), 1, + [210220] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6274), 1, + STATE(6219), 1, sym_comment, - ACTIONS(10016), 4, + ACTIONS(10111), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219698] = 3, - ACTIONS(249), 1, + [210233] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6275), 1, + STATE(6220), 1, sym_comment, - ACTIONS(10018), 4, + ACTIONS(10109), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219711] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6276), 1, - sym_comment, - ACTIONS(1066), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1068), 2, - anon_sym_DOT, - sym__entry_separator, - [219726] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10020), 1, - anon_sym_DQUOTE, - STATE(6212), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6277), 1, - sym_comment, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219743] = 5, - ACTIONS(3), 1, + [210246] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10022), 1, - anon_sym_DQUOTE, - STATE(6212), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6278), 1, + ACTIONS(10113), 1, + anon_sym_LBRACK, + ACTIONS(10115), 1, + anon_sym_LPAREN, + STATE(6005), 1, + sym_parameter_parens, + STATE(6006), 1, + sym_parameter_bracks, + STATE(6221), 1, sym_comment, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219760] = 4, + [210265] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6279), 1, - sym_comment, - ACTIONS(1070), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1072), 2, - anon_sym_DOT, + ACTIONS(6502), 1, sym__entry_separator, - [219775] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6280), 1, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10117), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(6222), 1, sym_comment, - ACTIONS(10024), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219788] = 6, + [210284] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10026), 1, + ACTIONS(10119), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6281), 1, - sym_comment, - [219807] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6282), 1, + STATE(6223), 1, sym_comment, - ACTIONS(10028), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219820] = 6, + [210303] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10030), 1, + ACTIONS(10121), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6283), 1, + STATE(6224), 1, sym_comment, - [219839] = 6, + [210322] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10032), 1, + ACTIONS(10123), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6284), 1, + STATE(6225), 1, sym_comment, - [219858] = 6, + [210341] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10034), 1, + ACTIONS(10125), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6285), 1, + STATE(6226), 1, sym_comment, - [219877] = 6, + [210360] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10036), 1, + ACTIONS(10127), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6286), 1, + STATE(6227), 1, sym_comment, - [219896] = 6, + [210379] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10038), 1, + ACTIONS(10129), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6287), 1, + STATE(6228), 1, sym_comment, - [219915] = 6, + [210398] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10040), 1, + ACTIONS(10131), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6288), 1, + STATE(6229), 1, sym_comment, - [219934] = 6, + [210417] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(1579), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2234), 1, + anon_sym_RBRACE, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2238), 1, sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10042), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6289), 1, + STATE(6230), 1, sym_comment, - [219953] = 3, - ACTIONS(249), 1, + [210436] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6290), 1, + STATE(6231), 1, sym_comment, - ACTIONS(10044), 4, + ACTIONS(10133), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219966] = 3, - ACTIONS(249), 1, + [210449] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6291), 1, + STATE(6232), 1, sym_comment, - ACTIONS(10046), 4, + ACTIONS(10135), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219979] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1703), 1, - aux_sym_unquoted_token2, - STATE(6292), 1, - sym_comment, - ACTIONS(1705), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [219994] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10048), 1, - anon_sym_LPAREN, - STATE(6293), 1, - sym_comment, - ACTIONS(10050), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [220009] = 4, + [210462] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10052), 1, - anon_sym_LPAREN, - STATE(6294), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2187), 1, + anon_sym_RBRACK, + ACTIONS(2189), 1, + sym__entry_separator, + STATE(6233), 1, sym_comment, - ACTIONS(10054), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [220024] = 5, + [210481] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10056), 1, - anon_sym_DQUOTE, - STATE(6212), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6295), 1, - sym_comment, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220041] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6296), 1, - sym_comment, - ACTIONS(5592), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [220054] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6297), 1, + STATE(6234), 1, sym_comment, - ACTIONS(10046), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1006), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [220067] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1769), 1, - aux_sym_unquoted_token2, - STATE(6298), 1, - sym_comment, - ACTIONS(1771), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220082] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6299), 1, - sym_comment, - ACTIONS(5596), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [220095] = 3, - ACTIONS(249), 1, + ACTIONS(1008), 2, + anon_sym_DOT, + sym__entry_separator, + [210496] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6300), 1, + STATE(6235), 1, sym_comment, - ACTIONS(10058), 4, + ACTIONS(10137), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220108] = 3, - ACTIONS(249), 1, + [210509] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6301), 1, + STATE(6236), 1, sym_comment, - ACTIONS(10060), 4, + ACTIONS(10139), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220121] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6302), 1, - sym_comment, - ACTIONS(10062), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [220134] = 3, - ACTIONS(249), 1, + [210522] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6303), 1, + ACTIONS(1878), 1, + anon_sym_RBRACK, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1886), 1, + sym__entry_separator, + ACTIONS(1888), 1, + aux_sym__unquoted_in_list_token2, + STATE(6237), 1, sym_comment, - ACTIONS(10064), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220147] = 5, + [210541] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10066), 1, - anon_sym_DQUOTE, - STATE(6304), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10141), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(6238), 1, sym_comment, - STATE(6309), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220164] = 6, + [210560] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, + STATE(6239), 1, + sym_comment, + ACTIONS(1890), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1892), 2, anon_sym_LPAREN2, - ACTIONS(2307), 1, - anon_sym_RBRACE, - ACTIONS(2309), 1, sym__entry_separator, - STATE(6305), 1, + [210575] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6240), 1, sym_comment, - STATE(7774), 1, - sym__expr_parenthesized_immediate, - [220183] = 4, - ACTIONS(249), 1, + ACTIONS(10143), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210588] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1826), 1, + ACTIONS(1755), 1, aux_sym_unquoted_token2, - STATE(6306), 1, + ACTIONS(10079), 1, + aux_sym__immediate_decimal_token2, + STATE(6241), 1, sym_comment, - ACTIONS(1828), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220198] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(1757), 2, + anon_sym_LBRACE, anon_sym_LPAREN2, - ACTIONS(2311), 1, - anon_sym_RBRACE, - ACTIONS(2313), 1, - sym__entry_separator, - STATE(6307), 1, - sym_comment, - STATE(7774), 1, - sym__expr_parenthesized_immediate, - [220217] = 3, - ACTIONS(249), 1, + [210605] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6308), 1, + STATE(6242), 1, sym_comment, - ACTIONS(10068), 4, + ACTIONS(10139), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220230] = 5, + [210618] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10070), 1, + ACTIONS(10145), 1, anon_sym_DQUOTE, - STATE(6212), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6309), 1, - sym_comment, - ACTIONS(9917), 2, + ACTIONS(10147), 2, sym__escaped_str_content, sym_escape_sequence, - [220247] = 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(6310), 1, - sym_comment, - [220266] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4937), 1, - sym_identifier, - ACTIONS(4939), 1, - anon_sym_DOLLAR, - ACTIONS(10072), 1, - sym_long_flag_identifier, - ACTIONS(10074), 1, - anon_sym_EQ2, - STATE(6311), 1, + STATE(6243), 2, sym_comment, - [220285] = 6, + aux_sym__str_double_quotes_repeat1, + [210633] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, - anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym__unquoted_in_record_token4, - ACTIONS(2303), 1, + ACTIONS(2252), 1, anon_sym_RBRACE, - ACTIONS(2305), 1, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + ACTIONS(2256), 1, sym__entry_separator, - STATE(6312), 1, + ACTIONS(2258), 1, + aux_sym__unquoted_in_record_token2, + STATE(6244), 1, sym_comment, - [220304] = 3, - ACTIONS(249), 1, + [210652] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6313), 1, + STATE(6245), 1, sym_comment, - ACTIONS(10076), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220317] = 6, - ACTIONS(249), 1, + ACTIONS(10150), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210665] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9937), 1, + ACTIONS(10152), 1, anon_sym_LBRACK, - ACTIONS(9939), 1, + ACTIONS(10154), 1, anon_sym_LPAREN, - STATE(5846), 1, + STATE(3169), 1, sym_parameter_parens, - STATE(5878), 1, + STATE(3170), 1, sym_parameter_bracks, - STATE(6314), 1, - sym_comment, - [220336] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6315), 1, - sym_comment, - ACTIONS(2289), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token4, - ACTIONS(2291), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [220351] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10078), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6316), 1, - sym_comment, - [220370] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10080), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6317), 1, + STATE(6246), 1, sym_comment, - [220389] = 6, + [210684] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10082), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6318), 1, + ACTIONS(10156), 1, + anon_sym_DQUOTE, + STATE(6247), 1, sym_comment, - [220408] = 6, - ACTIONS(3), 1, + STATE(6252), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10103), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210701] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10084), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6319), 1, + STATE(6248), 1, sym_comment, - [220427] = 6, + ACTIONS(10158), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210714] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(8054), 1, sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10086), 1, + ACTIONS(8056), 1, anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6320), 1, + STATE(6249), 1, sym_comment, - [220446] = 6, - ACTIONS(3), 1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + [210733] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10088), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6321), 1, + STATE(6250), 1, sym_comment, - [220465] = 6, + ACTIONS(10160), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210746] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10090), 1, + ACTIONS(10162), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6322), 1, + STATE(6251), 1, sym_comment, - [220484] = 6, + [210765] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10092), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6323), 1, - sym_comment, - [220503] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6324), 1, + ACTIONS(10164), 1, + anon_sym_DQUOTE, + STATE(6243), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6252), 1, sym_comment, - ACTIONS(10094), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [220516] = 5, + ACTIONS(10103), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10096), 1, + ACTIONS(10166), 1, anon_sym_DQUOTE, - STATE(6325), 1, - sym_comment, - STATE(6328), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + STATE(6253), 1, + sym_comment, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [220533] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6326), 1, - sym_comment, - ACTIONS(10098), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220546] = 3, - ACTIONS(249), 1, + [210799] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6327), 1, + STATE(6254), 1, sym_comment, - ACTIONS(10100), 4, + ACTIONS(10168), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220559] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10102), 1, - anon_sym_DQUOTE, - STATE(6212), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6328), 1, - sym_comment, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220576] = 4, + [210812] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1076), 1, - anon_sym_DOT, - STATE(6329), 1, - sym_comment, - ACTIONS(1074), 3, + ACTIONS(1579), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2234), 1, anon_sym_RBRACK, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2238), 1, sym__entry_separator, - sym__table_head_separator, - [220591] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6330), 1, + STATE(6255), 1, sym_comment, - ACTIONS(10100), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220604] = 6, + [210831] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10104), 1, + ACTIONS(10170), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6331), 1, + STATE(6256), 1, sym_comment, - [220623] = 6, + [210850] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10106), 1, + ACTIONS(10172), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6332), 1, + STATE(6257), 1, sym_comment, - [220642] = 6, + [210869] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10108), 1, + ACTIONS(10174), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6333), 1, + STATE(6258), 1, sym_comment, - [220661] = 6, + [210888] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10110), 1, + ACTIONS(10176), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6334), 1, + STATE(6259), 1, sym_comment, - [220680] = 6, + [210907] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10112), 1, + ACTIONS(10178), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6335), 1, + STATE(6260), 1, sym_comment, - [220699] = 6, + [210926] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10114), 1, + ACTIONS(10180), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6336), 1, + STATE(6261), 1, sym_comment, - [220718] = 6, + [210945] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10116), 1, + ACTIONS(10182), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6337), 1, + STATE(6262), 1, sym_comment, - [220737] = 6, + [210964] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10118), 1, + ACTIONS(10184), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6338), 1, + STATE(6263), 1, sym_comment, - [220756] = 6, - ACTIONS(3), 1, + [210983] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4937), 1, + STATE(6264), 1, + sym_comment, + ACTIONS(10186), 4, sym__newline, - ACTIONS(4939), 1, - sym__space, - ACTIONS(10120), 1, - sym_long_flag_identifier, - ACTIONS(10122), 1, - anon_sym_EQ2, - STATE(6339), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210996] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6265), 1, sym_comment, - [220775] = 3, - ACTIONS(249), 1, + ACTIONS(10188), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211009] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6340), 1, + STATE(6266), 1, sym_comment, - ACTIONS(10124), 4, + ACTIONS(10190), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [220788] = 5, + [211022] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10126), 1, + ACTIONS(10192), 1, anon_sym_DQUOTE, - STATE(6341), 1, - sym_comment, - STATE(6343), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220805] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1788), 1, - anon_sym_RBRACK, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - sym__entry_separator, - STATE(6342), 1, + STATE(6267), 1, sym_comment, - [220824] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10128), 1, - anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6274), 1, aux_sym__str_double_quotes_repeat1, - STATE(6343), 1, - sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [220841] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10130), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6344), 1, - sym_comment, - [220860] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10132), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6345), 1, - sym_comment, - [220879] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10134), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6346), 1, - sym_comment, - [220898] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10136), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6347), 1, - sym_comment, - [220917] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10138), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6348), 1, - sym_comment, - [220936] = 6, - ACTIONS(3), 1, + [211039] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10140), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6349), 1, + STATE(6268), 1, sym_comment, - [220955] = 6, - ACTIONS(3), 1, + ACTIONS(10194), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211052] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10142), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6350), 1, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + STATE(6269), 1, sym_comment, - [220974] = 6, - ACTIONS(3), 1, + ACTIONS(2189), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [211067] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10144), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6351), 1, + STATE(6270), 1, sym_comment, - [220993] = 3, - ACTIONS(249), 1, + ACTIONS(10196), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211080] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6352), 1, + STATE(6271), 1, sym_comment, - ACTIONS(10146), 4, + ACTIONS(10198), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221006] = 3, - ACTIONS(249), 1, + [211093] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6353), 1, + STATE(6272), 1, sym_comment, - ACTIONS(10148), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [221019] = 5, - ACTIONS(3), 1, + ACTIONS(10196), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211106] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10150), 1, - anon_sym_DQUOTE, - STATE(6354), 1, + ACTIONS(10152), 1, + anon_sym_LBRACK, + ACTIONS(10154), 1, + anon_sym_LPAREN, + STATE(3161), 1, + sym_parameter_bracks, + STATE(3164), 1, + sym_parameter_parens, + STATE(6273), 1, sym_comment, - STATE(6355), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [221036] = 5, + [211125] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10152), 1, + ACTIONS(10200), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6355), 1, + STATE(6274), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [221053] = 6, - ACTIONS(249), 1, + [211142] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9400), 1, - anon_sym_LBRACE, - STATE(4876), 1, - sym__blosure, - STATE(4956), 1, - sym_block, - STATE(4958), 1, - sym_val_closure, - STATE(6356), 1, + STATE(6275), 1, sym_comment, - [221072] = 6, - ACTIONS(3), 1, + ACTIONS(10202), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211155] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(5885), 1, - anon_sym_RBRACK, - ACTIONS(5891), 1, - sym__entry_separator, - STATE(6357), 1, + STATE(6276), 1, sym_comment, - STATE(7593), 1, - sym__expr_parenthesized_immediate, - [221091] = 6, + ACTIONS(10204), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211168] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6277), 1, + sym_comment, + ACTIONS(10206), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [211181] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6278), 1, + sym_comment, + ACTIONS(10208), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211194] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10154), 1, + ACTIONS(10210), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6358), 1, + STATE(6279), 1, sym_comment, - [221110] = 6, + [211213] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10156), 1, + ACTIONS(10212), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6359), 1, + STATE(6280), 1, sym_comment, - [221129] = 6, + [211232] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10158), 1, + ACTIONS(10214), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6360), 1, + STATE(6281), 1, sym_comment, - [221148] = 6, + [211251] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10160), 1, + ACTIONS(10216), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6361), 1, + STATE(6282), 1, sym_comment, - [221167] = 6, + [211270] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10162), 1, + ACTIONS(10218), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6362), 1, + STATE(6283), 1, sym_comment, - [221186] = 6, + [211289] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10164), 1, + ACTIONS(10220), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6363), 1, + STATE(6284), 1, sym_comment, - [221205] = 6, + [211308] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10166), 1, + ACTIONS(10222), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6364), 1, + STATE(6285), 1, sym_comment, - [221224] = 6, + [211327] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10168), 1, + ACTIONS(10224), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6365), 1, + STATE(6286), 1, sym_comment, - [221243] = 3, - ACTIONS(249), 1, + [211346] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6366), 1, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + STATE(6287), 1, sym_comment, - ACTIONS(10170), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221256] = 3, - ACTIONS(249), 1, + ACTIONS(2238), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [211361] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6367), 1, + ACTIONS(2258), 1, + aux_sym_unquoted_token2, + STATE(6288), 1, + sym_comment, + ACTIONS(2256), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [211376] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9883), 1, + anon_sym_use, + ACTIONS(9885), 1, + anon_sym_list, + ACTIONS(9887), 1, + anon_sym_hide, + ACTIONS(9889), 1, + anon_sym_new, + STATE(6289), 1, sym_comment, - ACTIONS(10172), 4, + [211395] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6290), 1, + sym_comment, + ACTIONS(10226), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [221269] = 4, - ACTIONS(249), 1, + [211408] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - aux_sym_cmd_identifier_token41, - STATE(6368), 1, + ACTIONS(10228), 1, + anon_sym_DQUOTE, + STATE(6291), 1, sym_comment, - ACTIONS(1598), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [221284] = 5, - ACTIONS(249), 1, + STATE(6296), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10103), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211425] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(605), 1, - ts_builtin_sym_end, - STATE(286), 1, - aux_sym__block_body_repeat1, - STATE(6369), 1, + ACTIONS(2214), 1, + anon_sym_RBRACE, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2218), 1, + sym__entry_separator, + ACTIONS(2220), 1, + aux_sym__unquoted_in_record_token4, + STATE(6292), 1, + sym_comment, + [211444] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym__unquoted_in_record_token4, + ACTIONS(2222), 1, + anon_sym_RBRACE, + ACTIONS(2224), 1, + sym__entry_separator, + STATE(6293), 1, + sym_comment, + [211463] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10230), 1, + anon_sym_DQUOTE, + STATE(6294), 1, + sym_comment, + STATE(6346), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10103), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211480] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6295), 1, sym_comment, - ACTIONS(33), 2, + ACTIONS(10232), 4, sym__newline, anon_sym_SEMI, - [221301] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211493] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10174), 1, + ACTIONS(10234), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6370), 1, + STATE(6296), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [221318] = 3, - ACTIONS(249), 1, + [211510] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6371), 1, + STATE(6297), 1, sym_comment, - ACTIONS(10176), 4, + ACTIONS(10236), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221331] = 6, - ACTIONS(3), 1, + [211523] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10178), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6372), 1, + ACTIONS(6661), 1, + anon_sym_DOT_DOT2, + ACTIONS(10238), 1, + anon_sym_LBRACE, + STATE(6298), 1, sym_comment, - [221350] = 4, - ACTIONS(3), 1, + ACTIONS(6639), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211540] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6373), 1, + STATE(6299), 1, sym_comment, - ACTIONS(2289), 2, + ACTIONS(10240), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token4, - ACTIONS(2291), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [221365] = 6, + [211553] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10152), 1, + anon_sym_LBRACK, + ACTIONS(10154), 1, + anon_sym_LPAREN, + STATE(5737), 1, + sym_parameter_parens, + STATE(5742), 1, + sym_parameter_bracks, + STATE(6300), 1, + sym_comment, + [211572] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10180), 1, + ACTIONS(10242), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6374), 1, + STATE(6301), 1, sym_comment, - [221384] = 6, + [211591] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10182), 1, + ACTIONS(10244), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6375), 1, + STATE(6302), 1, sym_comment, - [221403] = 6, + [211610] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10184), 1, + ACTIONS(10246), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6376), 1, + STATE(6303), 1, sym_comment, - [221422] = 6, + [211629] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10186), 1, + ACTIONS(10248), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6377), 1, + STATE(6304), 1, sym_comment, - [221441] = 6, + [211648] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10188), 1, + ACTIONS(10250), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6378), 1, + STATE(6305), 1, sym_comment, - [221460] = 6, + [211667] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10190), 1, + ACTIONS(10252), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6379), 1, + STATE(6306), 1, sym_comment, - [221479] = 6, + [211686] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10192), 1, + ACTIONS(10254), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6380), 1, + STATE(6307), 1, sym_comment, - [221498] = 6, + [211705] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10194), 1, + ACTIONS(10256), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6381), 1, + STATE(6308), 1, sym_comment, - [221517] = 5, - ACTIONS(249), 1, + [211724] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10196), 1, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(7905), 1, + sym__entry_separator, + ACTIONS(7907), 1, anon_sym_RBRACK, - STATE(5250), 1, - aux_sym_parameter_repeat2, - STATE(6382), 1, + STATE(6309), 1, sym_comment, - ACTIONS(2591), 2, - sym__newline, - anon_sym_COMMA, - [221534] = 3, - ACTIONS(249), 1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + [211743] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6383), 1, + STATE(6310), 1, sym_comment, - ACTIONS(10198), 4, + ACTIONS(10258), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [221547] = 5, + [211756] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10200), 1, + ACTIONS(10260), 1, anon_sym_DQUOTE, - STATE(6384), 1, + STATE(6311), 1, sym_comment, - STATE(6385), 1, + STATE(6315), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [221564] = 5, + [211773] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6312), 1, + sym_comment, + ACTIONS(8181), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT, + anon_sym_LBRACE, + [211786] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10262), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(6313), 1, + sym_comment, + [211805] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4956), 1, + anon_sym_DOLLAR, + ACTIONS(4958), 1, + sym_identifier, + ACTIONS(10264), 1, + anon_sym_EQ2, + ACTIONS(10266), 1, + sym_short_flag_identifier, + STATE(6314), 1, + sym_comment, + [211824] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10202), 1, + ACTIONS(10268), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6385), 1, + STATE(6315), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [221581] = 4, - ACTIONS(249), 1, + [211841] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4842), 1, - aux_sym_unquoted_token2, - STATE(6386), 1, + STATE(6316), 1, sym_comment, - ACTIONS(1640), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221596] = 6, + ACTIONS(2248), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token4, + ACTIONS(2250), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [211856] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + STATE(6317), 1, + sym_comment, + ACTIONS(1010), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1012), 2, + anon_sym_DOT, + sym__entry_separator, + [211871] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6318), 1, + sym_comment, + ACTIONS(1014), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1016), 2, + anon_sym_DOT, + sym__entry_separator, + [211886] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10204), 1, + ACTIONS(10270), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6387), 1, + STATE(6319), 1, sym_comment, - [221615] = 6, + [211905] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10206), 1, + ACTIONS(10272), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6388), 1, + STATE(6320), 1, sym_comment, - [221634] = 6, + [211924] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10208), 1, + ACTIONS(10274), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6389), 1, + STATE(6321), 1, sym_comment, - [221653] = 6, + [211943] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10210), 1, + ACTIONS(10276), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6390), 1, + STATE(6322), 1, sym_comment, - [221672] = 6, + [211962] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10212), 1, + ACTIONS(10278), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6391), 1, + STATE(6323), 1, sym_comment, - [221691] = 6, + [211981] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10214), 1, + ACTIONS(10280), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6392), 1, + STATE(6324), 1, sym_comment, - [221710] = 6, + [212000] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10216), 1, + ACTIONS(10282), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6393), 1, + STATE(6325), 1, sym_comment, - [221729] = 6, + [212019] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10218), 1, + ACTIONS(10284), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6394), 1, + STATE(6326), 1, sym_comment, - [221748] = 3, - ACTIONS(249), 1, + [212038] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6395), 1, + STATE(6327), 1, + sym_comment, + ACTIONS(10286), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212051] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6328), 1, sym_comment, - ACTIONS(10220), 4, + ACTIONS(10288), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [221761] = 5, + [212064] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10222), 1, + ACTIONS(10290), 1, anon_sym_DQUOTE, - STATE(6396), 1, + STATE(6329), 1, sym_comment, - STATE(6401), 1, + STATE(6334), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [221778] = 3, - ACTIONS(249), 1, + [212081] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6397), 1, + ACTIONS(10152), 1, + anon_sym_LBRACK, + ACTIONS(10154), 1, + anon_sym_LPAREN, + STATE(3157), 1, + sym_parameter_parens, + STATE(3158), 1, + sym_parameter_bracks, + STATE(6330), 1, sym_comment, - ACTIONS(10224), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221791] = 3, - ACTIONS(249), 1, + [212100] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6398), 1, + STATE(6331), 1, sym_comment, - ACTIONS(10226), 4, + ACTIONS(10292), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221804] = 6, - ACTIONS(3), 1, + [212113] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10228), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6399), 1, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8850), 1, + anon_sym_DOLLAR, + STATE(5480), 1, + sym_val_variable, + STATE(5833), 1, + sym__variable_name, + STATE(6332), 1, sym_comment, - [221823] = 3, - ACTIONS(249), 1, + [212132] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6400), 1, + ACTIONS(1012), 1, + anon_sym_DOT, + STATE(6333), 1, sym_comment, - ACTIONS(10226), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221836] = 5, + ACTIONS(1010), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [212147] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10230), 1, + ACTIONS(10294), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6401), 1, + STATE(6334), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [221853] = 3, - ACTIONS(249), 1, + [212164] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6402), 1, + ACTIONS(1016), 1, + anon_sym_DOT, + STATE(6335), 1, sym_comment, - ACTIONS(10232), 4, + ACTIONS(1014), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [212179] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221866] = 4, - ACTIONS(249), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4653), 1, + sym_block, + STATE(6336), 1, + sym_comment, + [212198] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, - aux_sym_cmd_identifier_token41, - STATE(6403), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(4655), 1, + sym_block, + STATE(6337), 1, sym_comment, - ACTIONS(1713), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [221881] = 6, + STATE(6615), 1, + aux_sym_shebang_repeat1, + [212217] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10234), 1, + ACTIONS(10296), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6404), 1, - sym_comment, - [221900] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10236), 1, - anon_sym_LPAREN, - STATE(6405), 1, + STATE(6338), 1, sym_comment, - ACTIONS(10238), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [221915] = 6, + [212236] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10240), 1, + ACTIONS(10298), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6406), 1, + STATE(6339), 1, sym_comment, - [221934] = 6, + [212255] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10242), 1, + ACTIONS(10300), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6407), 1, + STATE(6340), 1, sym_comment, - [221953] = 6, + [212274] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10244), 1, + ACTIONS(10302), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6408), 1, + STATE(6341), 1, sym_comment, - [221972] = 6, + [212293] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10246), 1, + ACTIONS(10304), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6409), 1, + STATE(6342), 1, sym_comment, - [221991] = 6, + [212312] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10248), 1, + ACTIONS(10306), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6410), 1, + STATE(6343), 1, sym_comment, - [222010] = 6, + [212331] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10250), 1, + ACTIONS(10308), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6411), 1, + STATE(6344), 1, sym_comment, - [222029] = 6, + [212350] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10252), 1, + ACTIONS(10310), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6412), 1, + STATE(6345), 1, sym_comment, - [222048] = 6, + [212369] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(10312), 1, + anon_sym_DQUOTE, + STATE(6243), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6346), 1, + sym_comment, + ACTIONS(10103), 2, + sym__escaped_str_content, + sym_escape_sequence, + [212386] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10314), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6413), 1, - sym_comment, - [222067] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1640), 1, - aux_sym_record_entry_token1, - ACTIONS(10256), 1, - aux_sym_cmd_identifier_token41, - STATE(6414), 1, - sym_comment, - ACTIONS(10258), 2, - sym_filesize_unit, - sym_duration_unit, - [222084] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6415), 1, + STATE(6347), 1, sym_comment, - ACTIONS(10260), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222097] = 3, - ACTIONS(249), 1, + [212405] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6416), 1, + STATE(6348), 1, sym_comment, - ACTIONS(10262), 4, + ACTIONS(10316), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [222110] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6417), 1, - sym_comment, - ACTIONS(10264), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222123] = 5, + [212418] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10266), 1, + ACTIONS(10318), 1, anon_sym_DQUOTE, - STATE(6418), 1, + STATE(6349), 1, sym_comment, - STATE(6422), 1, + STATE(6351), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [222140] = 3, - ACTIONS(249), 1, + [212435] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6419), 1, + STATE(6350), 1, sym_comment, - ACTIONS(6247), 4, + ACTIONS(5693), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [222153] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6420), 1, - sym_comment, - ACTIONS(10268), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222166] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10270), 1, - anon_sym_LBRACK, - ACTIONS(10272), 1, - anon_sym_LPAREN, - STATE(6068), 1, - sym_parameter_parens, - STATE(6169), 1, - sym_parameter_bracks, - STATE(6421), 1, - sym_comment, - [222185] = 5, + [212448] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10274), 1, + ACTIONS(10320), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6422), 1, + STATE(6351), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [222202] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6423), 1, - sym_comment, - ACTIONS(6249), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [222215] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6424), 1, - sym_comment, - ACTIONS(10276), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222228] = 6, + [212465] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4925), 1, - sym__newline, - ACTIONS(4927), 1, - sym__space, - ACTIONS(10278), 1, - anon_sym_EQ2, - ACTIONS(10280), 1, - sym_short_flag_identifier, - STATE(6425), 1, - sym_comment, - [222247] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6426), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10322), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(6352), 1, sym_comment, - ACTIONS(10282), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222260] = 3, - ACTIONS(249), 1, + [212484] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6427), 1, + ACTIONS(10324), 1, + anon_sym_DQUOTE, + STATE(6243), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6353), 1, sym_comment, - ACTIONS(5603), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [222273] = 6, + ACTIONS(10103), 2, + sym__escaped_str_content, + sym_escape_sequence, + [212501] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10284), 1, + ACTIONS(10326), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6428), 1, + STATE(6354), 1, sym_comment, - [222292] = 6, + [212520] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10286), 1, + ACTIONS(10328), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6429), 1, + STATE(6355), 1, sym_comment, - [222311] = 6, + [212539] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10288), 1, + ACTIONS(10330), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6430), 1, + STATE(6356), 1, sym_comment, - [222330] = 6, + [212558] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10290), 1, + ACTIONS(10332), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6431), 1, + STATE(6357), 1, sym_comment, - [222349] = 6, + [212577] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10292), 1, + ACTIONS(10334), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6432), 1, + STATE(6358), 1, sym_comment, - [222368] = 6, + [212596] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10294), 1, + ACTIONS(10336), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6433), 1, + STATE(6359), 1, sym_comment, - [222387] = 6, + [212615] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10296), 1, + ACTIONS(10338), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6434), 1, + STATE(6360), 1, sym_comment, - [222406] = 6, + [212634] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10298), 1, + ACTIONS(10340), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6435), 1, + STATE(6361), 1, sym_comment, - [222425] = 3, - ACTIONS(249), 1, + [212653] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6436), 1, + STATE(6362), 1, sym_comment, - ACTIONS(10300), 4, + ACTIONS(10342), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [222438] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4925), 1, - sym_identifier, - ACTIONS(4927), 1, - anon_sym_DOLLAR, - ACTIONS(10302), 1, - anon_sym_EQ2, - ACTIONS(10304), 1, - sym_short_flag_identifier, - STATE(6437), 1, - sym_comment, - [222457] = 5, + [212666] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10306), 1, + ACTIONS(10344), 1, anon_sym_DQUOTE, - STATE(6438), 1, + STATE(6363), 1, sym_comment, - STATE(6441), 1, + STATE(6367), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [222474] = 3, - ACTIONS(249), 1, + [212683] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6439), 1, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(6364), 1, sym_comment, - ACTIONS(10308), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222487] = 3, - ACTIONS(249), 1, + ACTIONS(2206), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [212698] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6440), 1, + ACTIONS(10152), 1, + anon_sym_LBRACK, + ACTIONS(10154), 1, + anon_sym_LPAREN, + STATE(5941), 1, + sym_parameter_parens, + STATE(5977), 1, + sym_parameter_bracks, + STATE(6365), 1, sym_comment, - ACTIONS(10310), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222500] = 5, + [212717] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10312), 1, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5934), 1, + sym__entry_separator, + STATE(6366), 1, + sym_comment, + STATE(7436), 1, + sym__expr_parenthesized_immediate, + [212736] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10346), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6441), 1, + STATE(6367), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [222517] = 3, - ACTIONS(3), 1, + [212753] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6442), 1, + STATE(6368), 1, sym_comment, - ACTIONS(2289), 4, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token4, - [222530] = 3, - ACTIONS(249), 1, + ACTIONS(10348), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212766] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6443), 1, + STATE(6369), 1, sym_comment, - ACTIONS(10314), 4, + ACTIONS(10350), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222543] = 6, + [212779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10316), 1, + ACTIONS(10352), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6444), 1, + STATE(6370), 1, sym_comment, - [222562] = 6, + [212798] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10318), 1, + ACTIONS(10354), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6445), 1, + STATE(6371), 1, sym_comment, - [222581] = 6, + [212817] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10320), 1, + ACTIONS(10356), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6446), 1, + STATE(6372), 1, sym_comment, - [222600] = 6, + [212836] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10322), 1, + ACTIONS(10358), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6447), 1, + STATE(6373), 1, sym_comment, - [222619] = 6, + [212855] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10324), 1, + ACTIONS(10360), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6448), 1, + STATE(6374), 1, sym_comment, - [222638] = 6, + [212874] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10326), 1, + ACTIONS(10362), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6449), 1, + STATE(6375), 1, sym_comment, - [222657] = 6, + [212893] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10328), 1, + ACTIONS(10364), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6450), 1, + STATE(6376), 1, sym_comment, - [222676] = 6, + [212912] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10330), 1, + ACTIONS(10366), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6451), 1, + STATE(6377), 1, sym_comment, - [222695] = 3, - ACTIONS(249), 1, + [212931] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6452), 1, + STATE(6378), 1, sym_comment, - ACTIONS(10314), 4, + ACTIONS(10368), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222708] = 3, - ACTIONS(249), 1, + [212944] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6453), 1, + STATE(6379), 1, sym_comment, - ACTIONS(10332), 4, + ACTIONS(10370), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [222721] = 5, + [212957] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10334), 1, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + ACTIONS(5943), 1, + anon_sym_PIPE, + STATE(6380), 1, + sym_comment, + ACTIONS(5938), 2, + anon_sym_if, + anon_sym_EQ_GT, + [212974] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10372), 1, anon_sym_DQUOTE, - STATE(6454), 1, + STATE(6381), 1, sym_comment, - STATE(6457), 1, + STATE(6383), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [222738] = 3, - ACTIONS(249), 1, + [212991] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6455), 1, - sym_comment, - ACTIONS(10336), 4, + ACTIONS(4936), 1, + sym__space, + ACTIONS(4938), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222751] = 3, - ACTIONS(249), 1, + ACTIONS(10374), 1, + sym_long_flag_identifier, + ACTIONS(10376), 1, + anon_sym_EQ2, + STATE(6382), 1, + sym_comment, + [213010] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6456), 1, + ACTIONS(10378), 1, + anon_sym_DQUOTE, + STATE(6243), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6383), 1, sym_comment, - ACTIONS(10336), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222764] = 5, + ACTIONS(10103), 2, + sym__escaped_str_content, + sym_escape_sequence, + [213027] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10338), 1, + ACTIONS(10380), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6353), 1, aux_sym__str_double_quotes_repeat1, - STATE(6457), 1, + STATE(6384), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [222781] = 6, + [213044] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(1546), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1866), 1, + anon_sym_RBRACK, + ACTIONS(1868), 1, + anon_sym_LPAREN2, + ACTIONS(1874), 1, sym__entry_separator, - ACTIONS(9921), 1, + STATE(6385), 1, + sym_comment, + [213063] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6386), 1, + sym_comment, + ACTIONS(5685), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [213076] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10340), 1, + ACTIONS(10382), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6458), 1, + STATE(6387), 1, sym_comment, - [222800] = 6, + [213095] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10342), 1, + ACTIONS(10384), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6459), 1, + STATE(6388), 1, sym_comment, - [222819] = 6, + [213114] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10344), 1, + ACTIONS(10386), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6460), 1, + STATE(6389), 1, sym_comment, - [222838] = 6, + [213133] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10346), 1, + ACTIONS(10388), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6461), 1, + STATE(6390), 1, sym_comment, - [222857] = 6, + [213152] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(10390), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6462), 1, + STATE(6391), 1, sym_comment, - [222876] = 6, + [213171] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10350), 1, + ACTIONS(10392), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6463), 1, + STATE(6392), 1, sym_comment, - [222895] = 6, + [213190] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10352), 1, + ACTIONS(10394), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6464), 1, + STATE(6393), 1, sym_comment, - [222914] = 6, + [213209] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10354), 1, + ACTIONS(10396), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6465), 1, + STATE(6394), 1, sym_comment, - [222933] = 3, - ACTIONS(249), 1, + [213228] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6466), 1, + STATE(6395), 1, sym_comment, - ACTIONS(10356), 4, + ACTIONS(10398), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222946] = 3, - ACTIONS(249), 1, + [213241] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6467), 1, + STATE(6396), 1, sym_comment, - ACTIONS(10358), 4, + ACTIONS(10400), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [222959] = 5, + [213254] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10360), 1, + ACTIONS(10402), 1, anon_sym_DQUOTE, - STATE(6468), 1, + STATE(6397), 1, sym_comment, - STATE(6471), 1, + STATE(6400), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [222976] = 6, - ACTIONS(249), 1, + [213271] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(10362), 1, - anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6469), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(6398), 1, sym_comment, - STATE(8030), 1, - sym_val_list, - [222995] = 6, - ACTIONS(249), 1, + ACTIONS(2214), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [213286] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(4801), 1, - sym_block, - STATE(6470), 1, + ACTIONS(10404), 1, + anon_sym_LPAREN, + STATE(6399), 1, sym_comment, - STATE(6656), 1, - aux_sym_shebang_repeat1, - [223014] = 5, + ACTIONS(10406), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [213301] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10364), 1, + ACTIONS(10408), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6471), 1, + STATE(6400), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [223031] = 3, - ACTIONS(249), 1, + [213318] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6472), 1, - sym_comment, - ACTIONS(6259), 4, - ts_builtin_sym_end, + ACTIONS(4956), 1, + sym__space, + ACTIONS(4958), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [223044] = 6, + ACTIONS(10410), 1, + anon_sym_EQ2, + ACTIONS(10412), 1, + sym_short_flag_identifier, + STATE(6401), 1, + sym_comment, + [213337] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(6402), 1, + sym_comment, + ACTIONS(2222), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [213352] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10366), 1, + ACTIONS(10414), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6473), 1, + STATE(6403), 1, sym_comment, - [223063] = 6, + [213371] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10368), 1, + ACTIONS(10416), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6474), 1, + STATE(6404), 1, sym_comment, - [223082] = 6, + [213390] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10370), 1, + ACTIONS(10418), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6475), 1, + STATE(6405), 1, sym_comment, - [223101] = 6, + [213409] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10420), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6476), 1, + STATE(6406), 1, sym_comment, - [223120] = 6, + [213428] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10374), 1, + ACTIONS(10422), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6477), 1, + STATE(6407), 1, sym_comment, - [223139] = 6, + [213447] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10376), 1, + ACTIONS(10424), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6478), 1, + STATE(6408), 1, sym_comment, - [223158] = 6, + [213466] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10378), 1, + ACTIONS(10426), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6479), 1, + STATE(6409), 1, sym_comment, - [223177] = 6, + [213485] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10380), 1, + ACTIONS(10428), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6480), 1, + STATE(6410), 1, sym_comment, - [223196] = 3, - ACTIONS(249), 1, + [213504] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6481), 1, + STATE(6411), 1, sym_comment, - ACTIONS(10382), 4, + ACTIONS(10430), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [223209] = 5, + [213517] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10384), 1, + ACTIONS(10432), 1, anon_sym_DQUOTE, - STATE(6482), 1, + STATE(6412), 1, sym_comment, - STATE(6484), 1, + STATE(6415), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [223226] = 6, + [213534] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10386), 1, + ACTIONS(2214), 1, anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6483), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2218), 1, + sym__entry_separator, + ACTIONS(2220), 1, + aux_sym__unquoted_in_list_token4, + STATE(6413), 1, + sym_comment, + [213553] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1463), 1, + anon_sym_RPAREN, + ACTIONS(10434), 2, + sym__newline, + anon_sym_SEMI, + STATE(6414), 2, sym_comment, - [223245] = 5, + aux_sym__block_body_repeat1, + [213568] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10388), 1, + ACTIONS(10437), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6484), 1, + STATE(6415), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [223262] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1715), 1, - aux_sym_unquoted_token2, - ACTIONS(9731), 1, - aux_sym__immediate_decimal_token2, - STATE(6485), 1, - sym_comment, - ACTIONS(1717), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [223279] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6486), 1, - sym_comment, - ACTIONS(6261), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [223292] = 3, - ACTIONS(249), 1, + [213585] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6487), 1, + ACTIONS(10439), 1, + anon_sym_LPAREN, + STATE(6416), 1, sym_comment, - ACTIONS(10390), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223305] = 6, + ACTIONS(10441), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [213600] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10392), 1, + ACTIONS(10443), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6488), 1, + STATE(6417), 1, sym_comment, - [223324] = 6, + [213619] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10394), 1, + ACTIONS(10445), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6489), 1, + STATE(6418), 1, sym_comment, - [223343] = 6, + [213638] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10396), 1, + ACTIONS(10447), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6490), 1, + STATE(6419), 1, sym_comment, - [223362] = 6, + [213657] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10398), 1, + ACTIONS(10449), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6491), 1, + STATE(6420), 1, sym_comment, - [223381] = 6, + [213676] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10400), 1, + ACTIONS(10451), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6492), 1, + STATE(6421), 1, sym_comment, - [223400] = 6, + [213695] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10402), 1, + ACTIONS(10453), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6493), 1, + STATE(6422), 1, sym_comment, - [223419] = 6, - ACTIONS(3), 1, + [213714] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10404), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6494), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(4780), 1, + sym_block, + STATE(6423), 1, sym_comment, - [223438] = 6, + STATE(6746), 1, + aux_sym_shebang_repeat1, + [213733] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10406), 1, + ACTIONS(10455), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6495), 1, + STATE(6424), 1, sym_comment, - [223457] = 4, - ACTIONS(249), 1, + [213752] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1528), 1, - aux_sym_cmd_identifier_token41, - STATE(6496), 1, + ACTIONS(9684), 1, + anon_sym_LBRACE, + STATE(4805), 1, + sym__blosure, + STATE(4956), 1, + sym_block, + STATE(4962), 1, + sym_val_closure, + STATE(6425), 1, sym_comment, - ACTIONS(1530), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [223472] = 3, - ACTIONS(249), 1, + [213771] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6497), 1, + STATE(6426), 1, sym_comment, - ACTIONS(10408), 4, + ACTIONS(10457), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [223485] = 5, + [213784] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10410), 1, + ACTIONS(10459), 1, anon_sym_DQUOTE, - STATE(6498), 1, + STATE(6427), 1, sym_comment, - STATE(6499), 1, + STATE(6429), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [223502] = 5, + [213801] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10412), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + ACTIONS(2220), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2222), 1, + anon_sym_RBRACK, + ACTIONS(2224), 1, + sym__entry_separator, + STATE(6428), 1, + sym_comment, + [213820] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10461), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6499), 1, + STATE(6429), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [223519] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6500), 1, - sym_comment, - ACTIONS(10390), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223532] = 6, + [213837] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10414), 1, + ACTIONS(10463), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6501), 1, + STATE(6430), 1, sym_comment, - [223551] = 6, + [213856] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10416), 1, + ACTIONS(10465), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6502), 1, + STATE(6431), 1, sym_comment, - [223570] = 6, + [213875] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10418), 1, + ACTIONS(10467), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6503), 1, + STATE(6432), 1, sym_comment, - [223589] = 6, + [213894] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10420), 1, + ACTIONS(10469), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6504), 1, + STATE(6433), 1, sym_comment, - [223608] = 6, + [213913] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10422), 1, + ACTIONS(10471), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6505), 1, - sym_comment, - [223627] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6506), 1, + STATE(6434), 1, sym_comment, - ACTIONS(10424), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [223640] = 6, + [213932] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10426), 1, + ACTIONS(10473), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6507), 1, + STATE(6435), 1, sym_comment, - [223659] = 6, + [213951] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10428), 1, + ACTIONS(10475), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6508), 1, + STATE(6436), 1, sym_comment, - [223678] = 4, + [213970] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1068), 1, - anon_sym_DOT, - STATE(6509), 1, - sym_comment, - ACTIONS(1066), 3, - anon_sym_RBRACK, + ACTIONS(6502), 1, sym__entry_separator, - sym__table_head_separator, - [223693] = 4, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10477), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(6437), 1, + sym_comment, + [213989] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1072), 1, - anon_sym_DOT, - STATE(6510), 1, - sym_comment, - ACTIONS(1070), 3, - anon_sym_RBRACK, + ACTIONS(6502), 1, sym__entry_separator, - sym__table_head_separator, - [223708] = 3, - ACTIONS(249), 1, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10479), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(6438), 1, + sym_comment, + [214008] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6511), 1, + STATE(6439), 1, sym_comment, - ACTIONS(10430), 4, + ACTIONS(10481), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [223721] = 5, + [214021] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10432), 1, + ACTIONS(10483), 1, anon_sym_DQUOTE, - STATE(6512), 1, + STATE(6440), 1, sym_comment, - STATE(6513), 1, + STATE(6442), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [223738] = 5, + [214038] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + STATE(6441), 1, + sym_comment, + ACTIONS(1757), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [214053] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10434), 1, + ACTIONS(10485), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6513), 1, + STATE(6442), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [223755] = 6, + [214070] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6443), 1, + sym_comment, + ACTIONS(10350), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214083] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10436), 1, + ACTIONS(10487), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6514), 1, + STATE(6444), 1, sym_comment, - [223774] = 6, + [214102] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10438), 1, + ACTIONS(10489), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6515), 1, + STATE(6445), 1, sym_comment, - [223793] = 6, + [214121] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10440), 1, + ACTIONS(10491), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6516), 1, + STATE(6446), 1, sym_comment, - [223812] = 6, + [214140] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10442), 1, + ACTIONS(10493), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6517), 1, + STATE(6447), 1, sym_comment, - [223831] = 6, + [214159] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10444), 1, + ACTIONS(10495), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6518), 1, + STATE(6448), 1, sym_comment, - [223850] = 6, + [214178] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10446), 1, + ACTIONS(10497), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6519), 1, + STATE(6449), 1, sym_comment, - [223869] = 6, + [214197] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10448), 1, + ACTIONS(10499), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6520), 1, + STATE(6450), 1, sym_comment, - [223888] = 6, + [214216] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10450), 1, + ACTIONS(10501), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6521), 1, + STATE(6451), 1, sym_comment, - [223907] = 3, - ACTIONS(249), 1, + [214235] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6522), 1, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(6452), 1, sym_comment, - ACTIONS(10452), 4, + ACTIONS(1030), 3, sym_identifier, - anon_sym_in, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [214250] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6453), 1, + sym_comment, + ACTIONS(10503), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214263] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6454), 1, + sym_comment, + ACTIONS(10505), 4, + sym_identifier, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [223920] = 5, + [214276] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10454), 1, + ACTIONS(10507), 1, anon_sym_DQUOTE, - STATE(6523), 1, + STATE(6455), 1, sym_comment, - STATE(6524), 1, + STATE(6456), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [223937] = 5, + [214293] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10456), 1, + ACTIONS(10509), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6524), 1, + STATE(6456), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [223954] = 6, + [214310] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6457), 1, + sym_comment, + ACTIONS(10503), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214323] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10458), 1, + ACTIONS(10511), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6525), 1, + STATE(6458), 1, sym_comment, - [223973] = 6, + [214342] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10460), 1, + ACTIONS(10513), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6526), 1, + STATE(6459), 1, sym_comment, - [223992] = 6, + [214361] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10462), 1, + ACTIONS(10515), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6527), 1, + STATE(6460), 1, sym_comment, - [224011] = 6, + [214380] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10464), 1, + ACTIONS(10517), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6528), 1, + STATE(6461), 1, sym_comment, - [224030] = 6, + [214399] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10466), 1, + ACTIONS(10519), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6529), 1, + STATE(6462), 1, sym_comment, - [224049] = 6, + [214418] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10468), 1, + ACTIONS(10521), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6530), 1, + STATE(6463), 1, sym_comment, - [224068] = 6, + [214437] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10470), 1, + ACTIONS(10523), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6531), 1, + STATE(6464), 1, sym_comment, - [224087] = 6, + [214456] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10472), 1, + ACTIONS(10525), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6532), 1, + STATE(6465), 1, sym_comment, - [224106] = 3, - ACTIONS(249), 1, + [214475] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6533), 1, + ACTIONS(1457), 1, + ts_builtin_sym_end, + STATE(227), 1, + aux_sym__block_body_repeat1, + STATE(6466), 1, + sym_comment, + ACTIONS(25), 2, + sym__newline, + anon_sym_SEMI, + [214492] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6467), 1, sym_comment, - ACTIONS(10474), 4, + ACTIONS(10527), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [224119] = 5, + [214505] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10476), 1, + ACTIONS(10529), 1, anon_sym_DQUOTE, - STATE(6534), 1, + STATE(6468), 1, sym_comment, - STATE(6535), 1, + STATE(6470), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224136] = 5, + [214522] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6469), 1, + sym_comment, + ACTIONS(10531), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214535] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10478), 1, + ACTIONS(10533), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6535), 1, + STATE(6470), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224153] = 6, + [214552] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6471), 1, + sym_comment, + ACTIONS(10535), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214565] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10480), 1, + ACTIONS(10537), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6536), 1, + STATE(6472), 1, sym_comment, - [224172] = 6, + [214584] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10482), 1, + ACTIONS(10539), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6537), 1, + STATE(6473), 1, sym_comment, - [224191] = 6, + [214603] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10484), 1, + ACTIONS(10541), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6538), 1, + STATE(6474), 1, sym_comment, - [224210] = 6, + [214622] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10486), 1, + ACTIONS(10543), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6539), 1, + STATE(6475), 1, sym_comment, - [224229] = 6, + [214641] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10488), 1, + ACTIONS(10545), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6540), 1, + STATE(6476), 1, sym_comment, - [224248] = 6, + [214660] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10490), 1, + ACTIONS(10547), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6541), 1, + STATE(6477), 1, sym_comment, - [224267] = 6, + [214679] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10492), 1, + ACTIONS(10549), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6542), 1, + STATE(6478), 1, sym_comment, - [224286] = 6, + [214698] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10494), 1, + ACTIONS(10551), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6543), 1, + STATE(6479), 1, sym_comment, - [224305] = 3, - ACTIONS(249), 1, + [214717] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6544), 1, + STATE(6480), 1, sym_comment, - ACTIONS(10314), 4, + ACTIONS(10553), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [224318] = 3, - ACTIONS(249), 1, + [214730] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6545), 1, + STATE(6481), 1, sym_comment, - ACTIONS(10496), 4, + ACTIONS(10555), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [224331] = 5, + [214743] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10498), 1, + ACTIONS(10557), 1, anon_sym_DQUOTE, - STATE(6546), 1, + STATE(6482), 1, sym_comment, - STATE(6548), 1, + STATE(6483), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224348] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1674), 1, - ts_builtin_sym_end, - STATE(291), 1, - aux_sym__block_body_repeat1, - STATE(6547), 1, - sym_comment, - ACTIONS(33), 2, - sym__newline, - anon_sym_SEMI, - [224365] = 5, + [214760] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10500), 1, + ACTIONS(10559), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6548), 1, + STATE(6483), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224382] = 6, + [214777] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10502), 1, + ACTIONS(10561), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6549), 1, + STATE(6484), 1, sym_comment, - [224401] = 6, + [214796] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10504), 1, + ACTIONS(10563), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6550), 1, + STATE(6485), 1, sym_comment, - [224420] = 6, + [214815] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10506), 1, + ACTIONS(10565), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6551), 1, + STATE(6486), 1, sym_comment, - [224439] = 6, + [214834] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10508), 1, + ACTIONS(10567), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6552), 1, + STATE(6487), 1, sym_comment, - [224458] = 6, + [214853] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10510), 1, + ACTIONS(10569), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6553), 1, + STATE(6488), 1, sym_comment, - [224477] = 6, + [214872] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10512), 1, + ACTIONS(10571), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6554), 1, + STATE(6489), 1, sym_comment, - [224496] = 6, + [214891] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10514), 1, + ACTIONS(10573), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6555), 1, + STATE(6490), 1, sym_comment, - [224515] = 6, + [214910] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10516), 1, + ACTIONS(10575), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6556), 1, + STATE(6491), 1, sym_comment, - [224534] = 3, - ACTIONS(249), 1, + [214929] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6557), 1, + STATE(6492), 1, sym_comment, - ACTIONS(10518), 4, + ACTIONS(10577), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [224547] = 5, + [214942] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10520), 1, + ACTIONS(10579), 1, anon_sym_DQUOTE, - STATE(6558), 1, + STATE(6493), 1, sym_comment, - STATE(6559), 1, + STATE(6494), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224564] = 5, + [214959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10522), 1, + ACTIONS(10581), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6559), 1, + STATE(6494), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224581] = 5, - ACTIONS(249), 1, + [214976] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1769), 1, - aux_sym_unquoted_token2, - ACTIONS(10524), 1, - aux_sym__immediate_decimal_token2, - STATE(6560), 1, + STATE(6495), 1, sym_comment, - ACTIONS(1771), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [224598] = 3, - ACTIONS(249), 1, + ACTIONS(10553), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214989] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6561), 1, + STATE(6496), 1, sym_comment, - ACTIONS(10526), 4, + ACTIONS(10583), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [224611] = 5, + [215002] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10528), 1, + ACTIONS(10585), 1, anon_sym_DQUOTE, - STATE(6562), 1, + STATE(6497), 1, sym_comment, - STATE(6563), 1, + STATE(6498), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224628] = 5, + [215019] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10530), 1, + ACTIONS(10587), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6563), 1, + STATE(6498), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224645] = 3, - ACTIONS(249), 1, + [215036] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6564), 1, + STATE(6499), 1, sym_comment, - ACTIONS(10532), 4, + ACTIONS(10589), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [224658] = 5, + [215049] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10534), 1, + ACTIONS(10591), 1, anon_sym_DQUOTE, - STATE(6565), 1, + STATE(6500), 1, sym_comment, - STATE(6566), 1, + STATE(6501), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224675] = 5, + [215066] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10536), 1, + ACTIONS(10593), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6566), 1, + STATE(6501), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224692] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6567), 1, - sym_comment, - ACTIONS(5504), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [224705] = 3, - ACTIONS(249), 1, + [215083] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6568), 1, + STATE(6502), 1, sym_comment, - ACTIONS(10538), 4, + ACTIONS(10595), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [224718] = 5, + [215096] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10540), 1, + ACTIONS(10597), 1, anon_sym_DQUOTE, - STATE(6569), 1, + STATE(6503), 1, sym_comment, - STATE(6570), 1, + STATE(6504), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224735] = 5, + [215113] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10542), 1, + ACTIONS(10599), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6570), 1, + STATE(6504), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224752] = 3, - ACTIONS(249), 1, + [215130] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6571), 1, + ACTIONS(10601), 1, + anon_sym_RBRACK, + STATE(5221), 1, + aux_sym_parameter_repeat2, + STATE(6505), 1, sym_comment, - ACTIONS(10314), 4, + ACTIONS(2548), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224765] = 3, - ACTIONS(249), 1, + anon_sym_COMMA, + [215147] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6572), 1, + STATE(6506), 1, sym_comment, - ACTIONS(10544), 4, + ACTIONS(10603), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [224778] = 5, + [215160] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10546), 1, + ACTIONS(10605), 1, anon_sym_DQUOTE, - STATE(6573), 1, + STATE(6507), 1, sym_comment, - STATE(6574), 1, + STATE(6508), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224795] = 5, + [215177] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10548), 1, + ACTIONS(10607), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6574), 1, + STATE(6508), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224812] = 3, - ACTIONS(249), 1, + [215194] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6575), 1, + STATE(6509), 1, sym_comment, - ACTIONS(10550), 4, + ACTIONS(10609), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [224825] = 5, + [215207] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10552), 1, + ACTIONS(10611), 1, anon_sym_DQUOTE, - STATE(6576), 1, + STATE(6510), 1, sym_comment, - STATE(6577), 1, + STATE(6511), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224842] = 5, + [215224] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10554), 1, + ACTIONS(10613), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6577), 1, + STATE(6511), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224859] = 3, - ACTIONS(249), 1, + [215241] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6578), 1, + ACTIONS(2252), 1, + anon_sym_RBRACK, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + ACTIONS(2256), 1, + sym__entry_separator, + ACTIONS(2258), 1, + aux_sym__unquoted_in_list_token2, + STATE(6512), 1, + sym_comment, + [215260] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10615), 1, + anon_sym_DQUOTE, + STATE(6513), 1, + sym_comment, + STATE(6514), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10103), 2, + sym__escaped_str_content, + sym_escape_sequence, + [215277] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10617), 1, + anon_sym_DQUOTE, + STATE(6243), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6514), 1, + sym_comment, + ACTIONS(10103), 2, + sym__escaped_str_content, + sym_escape_sequence, + [215294] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6515), 1, + sym_comment, + ACTIONS(10619), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215307] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6516), 1, sym_comment, - ACTIONS(10556), 4, + ACTIONS(10621), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [224872] = 5, + [215320] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10558), 1, + ACTIONS(10623), 1, anon_sym_DQUOTE, - STATE(6579), 1, + STATE(6517), 1, sym_comment, - STATE(6580), 1, + STATE(6518), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224889] = 5, + [215337] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10560), 1, + ACTIONS(10625), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6580), 1, + STATE(6518), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224906] = 3, - ACTIONS(249), 1, + [215354] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6581), 1, + ACTIONS(10629), 1, + anon_sym_RPAREN, + STATE(6414), 1, + aux_sym__block_body_repeat1, + STATE(6519), 1, sym_comment, - ACTIONS(10562), 4, + ACTIONS(10627), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224919] = 3, - ACTIONS(249), 1, + [215371] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6582), 1, + STATE(6520), 1, sym_comment, - ACTIONS(10564), 4, + ACTIONS(10631), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [224932] = 5, + [215384] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10566), 1, + ACTIONS(10633), 1, anon_sym_DQUOTE, - STATE(6583), 1, + STATE(6521), 1, sym_comment, - STATE(6584), 1, + STATE(6522), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224949] = 5, + [215401] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10568), 1, + ACTIONS(10635), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6584), 1, + STATE(6522), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224966] = 3, - ACTIONS(249), 1, + [215418] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6585), 1, + STATE(6523), 1, sym_comment, - ACTIONS(10570), 4, + ACTIONS(10637), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [224979] = 5, + [215431] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10572), 1, + ACTIONS(10639), 1, anon_sym_DQUOTE, - STATE(6586), 1, + STATE(6524), 1, sym_comment, - STATE(6587), 1, + STATE(6525), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [224996] = 5, + [215448] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10574), 1, + ACTIONS(10641), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6587), 1, + STATE(6525), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225013] = 3, - ACTIONS(249), 1, + [215465] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6588), 1, + STATE(6526), 1, sym_comment, - ACTIONS(10576), 4, + ACTIONS(10643), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225026] = 5, + [215478] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10578), 1, + ACTIONS(10645), 1, anon_sym_DQUOTE, - STATE(6589), 1, + STATE(6527), 1, sym_comment, - STATE(6590), 1, + STATE(6528), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225043] = 5, + [215495] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10580), 1, + ACTIONS(10647), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6590), 1, + STATE(6528), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225060] = 3, - ACTIONS(249), 1, + [215512] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6591), 1, + STATE(6529), 1, sym_comment, - ACTIONS(10582), 4, + ACTIONS(10649), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225073] = 5, + [215525] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10584), 1, + ACTIONS(10651), 1, anon_sym_DQUOTE, - STATE(6592), 1, + STATE(6530), 1, sym_comment, - STATE(6593), 1, + STATE(6531), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225090] = 5, + [215542] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10586), 1, + ACTIONS(10653), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6593), 1, + STATE(6531), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225107] = 3, - ACTIONS(249), 1, + [215559] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6594), 1, + ACTIONS(1008), 1, + anon_sym_DOT, + STATE(6532), 1, + sym_comment, + ACTIONS(1006), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [215574] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6533), 1, sym_comment, - ACTIONS(10588), 4, + ACTIONS(10655), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225120] = 5, + [215587] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10590), 1, + ACTIONS(10657), 1, anon_sym_DQUOTE, - STATE(6595), 1, + STATE(6534), 1, sym_comment, - STATE(6596), 1, + STATE(6535), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225137] = 5, + [215604] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10592), 1, + ACTIONS(10659), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6596), 1, + STATE(6535), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225154] = 3, - ACTIONS(249), 1, + [215621] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6597), 1, + STATE(6536), 1, sym_comment, - ACTIONS(10594), 4, + ACTIONS(10661), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225167] = 5, + [215634] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10596), 1, + ACTIONS(10663), 1, anon_sym_DQUOTE, - STATE(6598), 1, + STATE(6537), 1, sym_comment, - STATE(6599), 1, + STATE(6538), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225184] = 5, + [215651] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10598), 1, + ACTIONS(10665), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6599), 1, + STATE(6538), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225201] = 3, - ACTIONS(249), 1, + [215668] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6600), 1, + STATE(6539), 1, sym_comment, - ACTIONS(10600), 4, + ACTIONS(10667), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225214] = 5, + [215681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10602), 1, + ACTIONS(10669), 1, anon_sym_DQUOTE, - STATE(6601), 1, + STATE(6540), 1, sym_comment, - STATE(6602), 1, + STATE(6541), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225231] = 5, + [215698] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10604), 1, + ACTIONS(10671), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6602), 1, + STATE(6541), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225248] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10606), 1, - anon_sym_LBRACE, - STATE(5117), 1, - sym_block, - STATE(5118), 1, - sym_val_closure, - STATE(5189), 1, - sym__blosure, - STATE(6603), 1, - sym_comment, - [225267] = 3, - ACTIONS(249), 1, + [215715] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6604), 1, + STATE(6542), 1, sym_comment, - ACTIONS(10608), 4, + ACTIONS(10673), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225280] = 5, + [215728] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10610), 1, + ACTIONS(10675), 1, anon_sym_DQUOTE, - STATE(6605), 1, + STATE(6543), 1, sym_comment, - STATE(6606), 1, + STATE(6544), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225297] = 5, + [215745] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10612), 1, + ACTIONS(10677), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6606), 1, + STATE(6544), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225314] = 3, - ACTIONS(249), 1, + [215762] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6607), 1, + STATE(6545), 1, sym_comment, - ACTIONS(10614), 4, + ACTIONS(10679), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225327] = 5, + [215775] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10616), 1, + ACTIONS(10681), 1, anon_sym_DQUOTE, - STATE(6608), 1, + STATE(6546), 1, sym_comment, - STATE(6609), 1, + STATE(6547), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225344] = 5, + [215792] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10618), 1, + ACTIONS(10683), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6609), 1, + STATE(6547), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225361] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(4811), 1, - sym_block, - STATE(6610), 1, - sym_comment, - STATE(6737), 1, - aux_sym_shebang_repeat1, - [225380] = 3, - ACTIONS(249), 1, + [215809] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6611), 1, + STATE(6548), 1, sym_comment, - ACTIONS(10620), 4, + ACTIONS(10685), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225393] = 5, + [215822] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10622), 1, + ACTIONS(10687), 1, anon_sym_DQUOTE, - STATE(6612), 1, + STATE(6549), 1, sym_comment, - STATE(6613), 1, + STATE(6550), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225410] = 5, + [215839] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10624), 1, + ACTIONS(10689), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6613), 1, + STATE(6550), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225427] = 6, + [215856] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_RBRACK, - ACTIONS(2248), 1, + STATE(6551), 1, + sym_comment, + ACTIONS(1755), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1757), 2, anon_sym_LPAREN2, - ACTIONS(2250), 1, sym__entry_separator, - ACTIONS(2252), 1, - aux_sym__unquoted_in_list_token2, - STATE(6614), 1, - sym_comment, - [225446] = 3, - ACTIONS(249), 1, + [215871] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6615), 1, + STATE(6552), 1, sym_comment, - ACTIONS(10626), 4, + ACTIONS(10691), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225459] = 5, + [215884] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10628), 1, + ACTIONS(10693), 1, anon_sym_DQUOTE, - STATE(6616), 1, + STATE(6553), 1, sym_comment, - STATE(6617), 1, + STATE(6554), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225476] = 5, + [215901] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10630), 1, + ACTIONS(10695), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6617), 1, + STATE(6554), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225493] = 3, - ACTIONS(249), 1, + [215918] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6618), 1, + STATE(6555), 1, sym_comment, - ACTIONS(10632), 4, + ACTIONS(10697), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225506] = 5, + [215931] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10634), 1, + ACTIONS(10699), 1, anon_sym_DQUOTE, - STATE(6619), 1, + STATE(6556), 1, sym_comment, - STATE(6620), 1, + STATE(6557), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225523] = 5, + [215948] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10636), 1, + ACTIONS(10701), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6620), 1, + STATE(6557), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225540] = 3, - ACTIONS(249), 1, + [215965] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6621), 1, + STATE(6558), 1, + sym_comment, + ACTIONS(10619), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215978] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6559), 1, sym_comment, - ACTIONS(10638), 4, + ACTIONS(10703), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225553] = 5, + [215991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10640), 1, + ACTIONS(10705), 1, anon_sym_DQUOTE, - STATE(6622), 1, + STATE(6560), 1, sym_comment, - STATE(6623), 1, + STATE(6561), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225570] = 5, + [216008] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10642), 1, + ACTIONS(10707), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6623), 1, + STATE(6561), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225587] = 3, - ACTIONS(249), 1, + [216025] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6624), 1, + STATE(6562), 1, sym_comment, - ACTIONS(10644), 4, + ACTIONS(10709), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225600] = 5, + [216038] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10646), 1, + ACTIONS(10711), 1, anon_sym_DQUOTE, - STATE(6625), 1, + STATE(6563), 1, sym_comment, - STATE(6626), 1, + STATE(6564), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225617] = 5, + [216055] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10648), 1, + ACTIONS(10713), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6626), 1, + STATE(6564), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225634] = 3, - ACTIONS(249), 1, + [216072] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6627), 1, + ACTIONS(10152), 1, + anon_sym_LBRACK, + ACTIONS(10154), 1, + anon_sym_LPAREN, + STATE(3156), 1, + sym_parameter_bracks, + STATE(3167), 1, + sym_parameter_parens, + STATE(6565), 1, + sym_comment, + [216091] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6566), 1, sym_comment, - ACTIONS(10650), 4, + ACTIONS(10715), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225647] = 5, + [216104] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10652), 1, + ACTIONS(10717), 1, anon_sym_DQUOTE, - STATE(6628), 1, + STATE(6567), 1, sym_comment, - STATE(6629), 1, + STATE(6568), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225664] = 5, + [216121] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10654), 1, + ACTIONS(10719), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6629), 1, + STATE(6568), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225681] = 3, - ACTIONS(249), 1, + [216138] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6630), 1, + STATE(6569), 1, sym_comment, - ACTIONS(10656), 4, + ACTIONS(10721), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225694] = 5, + [216151] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10658), 1, + ACTIONS(10723), 1, anon_sym_DQUOTE, - STATE(6631), 1, + STATE(6570), 1, sym_comment, - STATE(6632), 1, + STATE(6571), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225711] = 5, + [216168] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10660), 1, + ACTIONS(10725), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6632), 1, + STATE(6571), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225728] = 3, - ACTIONS(249), 1, + [216185] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6633), 1, + STATE(6572), 1, sym_comment, - ACTIONS(10662), 4, + ACTIONS(10727), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225741] = 5, + [216198] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10664), 1, + ACTIONS(10729), 1, anon_sym_DQUOTE, - STATE(6634), 1, + STATE(6573), 1, sym_comment, - STATE(6635), 1, + STATE(6574), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225758] = 5, + [216215] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10666), 1, + ACTIONS(10731), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6635), 1, + STATE(6574), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225775] = 3, - ACTIONS(249), 1, + [216232] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6636), 1, + STATE(6575), 1, sym_comment, - ACTIONS(10668), 4, + ACTIONS(10733), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225788] = 5, + [216245] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10670), 1, + ACTIONS(10735), 1, anon_sym_DQUOTE, - STATE(6637), 1, + STATE(6576), 1, sym_comment, - STATE(6638), 1, + STATE(6577), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225805] = 5, + [216262] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10672), 1, + ACTIONS(10737), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6638), 1, + STATE(6577), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225822] = 3, - ACTIONS(249), 1, + [216279] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6639), 1, + STATE(6578), 1, sym_comment, - ACTIONS(10674), 4, + ACTIONS(10739), 4, sym_identifier, - anon_sym_in, + anon_sym_in2, anon_sym_nu, anon_sym_env, - [225835] = 5, + [216292] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10676), 1, + ACTIONS(10741), 1, anon_sym_DQUOTE, - STATE(6640), 1, + STATE(6579), 1, sym_comment, - STATE(6641), 1, + STATE(6580), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225852] = 5, + [216309] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10678), 1, + ACTIONS(10743), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6641), 1, - sym_comment, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225869] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10680), 1, - anon_sym_DQUOTE, - STATE(6642), 1, + STATE(6580), 1, sym_comment, - STATE(6643), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225886] = 5, - ACTIONS(3), 1, + [216326] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10682), 1, - anon_sym_DQUOTE, - STATE(6212), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6643), 1, + STATE(6581), 1, sym_comment, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225903] = 5, + ACTIONS(10745), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [216339] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10684), 1, + ACTIONS(10747), 1, anon_sym_DQUOTE, - STATE(6644), 1, + STATE(6582), 1, sym_comment, - STATE(6645), 1, + STATE(6583), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225920] = 5, + [216356] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10686), 1, + ACTIONS(10749), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6645), 1, + STATE(6583), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225937] = 5, + [216373] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10688), 1, + ACTIONS(10751), 1, anon_sym_DQUOTE, - STATE(6646), 1, + STATE(6584), 1, sym_comment, - STATE(6647), 1, + STATE(6585), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225954] = 5, + [216390] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10690), 1, + ACTIONS(10753), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6647), 1, + STATE(6585), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225971] = 5, + [216407] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10692), 1, + ACTIONS(10755), 1, anon_sym_DQUOTE, - STATE(6648), 1, + STATE(6586), 1, sym_comment, - STATE(6649), 1, + STATE(6587), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [225988] = 5, + [216424] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10694), 1, + ACTIONS(10757), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6649), 1, + STATE(6587), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [226005] = 5, + [216441] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10696), 1, + ACTIONS(10759), 1, anon_sym_DQUOTE, - STATE(6650), 1, + STATE(6588), 1, sym_comment, - STATE(6651), 1, + STATE(6589), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [226022] = 5, + [216458] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10698), 1, + ACTIONS(10761), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6243), 1, aux_sym__str_double_quotes_repeat1, - STATE(6651), 1, + STATE(6589), 1, sym_comment, - ACTIONS(9917), 2, + ACTIONS(10103), 2, sym__escaped_str_content, sym_escape_sequence, - [226039] = 3, - ACTIONS(249), 1, + [216475] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6652), 1, + STATE(6590), 1, + sym_comment, + ACTIONS(10763), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [216488] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6591), 1, sym_comment, - ACTIONS(10276), 4, + ACTIONS(10765), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226052] = 5, - ACTIONS(249), 1, + [216501] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1660), 1, - ts_builtin_sym_end, - STATE(255), 1, - aux_sym__block_body_repeat1, - STATE(6653), 1, + STATE(6592), 1, sym_comment, - ACTIONS(33), 2, + ACTIONS(10767), 4, sym__newline, anon_sym_SEMI, - [226069] = 6, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216514] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9937), 1, + ACTIONS(10152), 1, anon_sym_LBRACK, - ACTIONS(9939), 1, + ACTIONS(10154), 1, anon_sym_LPAREN, - STATE(3146), 1, - sym_parameter_parens, - STATE(3147), 1, + STATE(3153), 1, sym_parameter_bracks, - STATE(6654), 1, - sym_comment, - [226088] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6611), 1, - anon_sym_DOT_DOT2, - ACTIONS(10700), 1, - anon_sym_LBRACE, - STATE(6655), 1, - sym_comment, - ACTIONS(6595), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [226105] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4794), 1, - sym_block, - STATE(6656), 1, + STATE(3162), 1, + sym_parameter_parens, + STATE(6593), 1, sym_comment, - [226124] = 6, - ACTIONS(249), 1, + [216533] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9937), 1, - anon_sym_LBRACK, - ACTIONS(9939), 1, - anon_sym_LPAREN, - STATE(3139), 1, - sym_parameter_parens, - STATE(3143), 1, - sym_parameter_bracks, - STATE(6657), 1, + ACTIONS(2341), 1, + sym__entry_separator, + ACTIONS(10769), 1, + anon_sym_LBRACK2, + STATE(6594), 1, sym_comment, - [226143] = 3, - ACTIONS(249), 1, + ACTIONS(2337), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [216550] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6658), 1, + STATE(6595), 1, sym_comment, - ACTIONS(10702), 4, + ACTIONS(10771), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226156] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10704), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6659), 1, - sym_comment, - [226175] = 6, - ACTIONS(3), 1, + [216563] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10706), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6660), 1, + ACTIONS(6661), 1, + anon_sym_DOT_DOT2, + ACTIONS(10773), 1, + anon_sym_LBRACE, + STATE(6596), 1, sym_comment, - [226194] = 6, + ACTIONS(6639), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [216580] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10708), 1, + ACTIONS(10775), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6661), 1, - sym_comment, - [226213] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9937), 1, - anon_sym_LBRACK, - ACTIONS(9939), 1, - anon_sym_LPAREN, - STATE(3148), 1, - sym_parameter_parens, - STATE(3149), 1, - sym_parameter_bracks, - STATE(6662), 1, - sym_comment, - [226232] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9937), 1, - anon_sym_LBRACK, - ACTIONS(9939), 1, - anon_sym_LPAREN, - STATE(3150), 1, - sym_parameter_parens, - STATE(3151), 1, - sym_parameter_bracks, - STATE(6663), 1, + STATE(6597), 1, sym_comment, - [226251] = 4, + [216599] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6664), 1, + STATE(6598), 1, sym_comment, - ACTIONS(1715), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1717), 2, + ACTIONS(1755), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1757), 2, anon_sym_LPAREN2, sym__entry_separator, - [226266] = 6, - ACTIONS(249), 1, + [216614] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9937), 1, + ACTIONS(10113), 1, anon_sym_LBRACK, - ACTIONS(9939), 1, + ACTIONS(10115), 1, anon_sym_LPAREN, - STATE(3152), 1, - sym_parameter_bracks, - STATE(3153), 1, + STATE(6011), 1, sym_parameter_parens, - STATE(6665), 1, + STATE(6012), 1, + sym_parameter_bracks, + STATE(6599), 1, sym_comment, - [226285] = 3, - ACTIONS(249), 1, + [216633] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6666), 1, + STATE(6600), 1, sym_comment, - ACTIONS(10702), 4, + ACTIONS(10777), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226298] = 6, + [216646] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10710), 1, + ACTIONS(10779), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6667), 1, - sym_comment, - [226317] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6668), 1, + STATE(6601), 1, sym_comment, - ACTIONS(10712), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226330] = 4, + [216665] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6669), 1, - sym_comment, - ACTIONS(1703), 2, + ACTIONS(2206), 1, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1705), 2, + ACTIONS(2208), 1, anon_sym_LPAREN2, + ACTIONS(2210), 1, sym__entry_separator, - [226345] = 3, - ACTIONS(249), 1, + ACTIONS(2212), 1, + aux_sym__unquoted_in_record_token4, + STATE(6602), 1, + sym_comment, + [216684] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6670), 1, + STATE(6603), 1, sym_comment, - ACTIONS(10714), 4, + ACTIONS(10781), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226358] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2277), 1, - anon_sym_RBRACK, - ACTIONS(2279), 1, - sym__entry_separator, - STATE(6671), 1, - sym_comment, - [226377] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2335), 1, - anon_sym_RBRACK, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - ACTIONS(2339), 1, - sym__entry_separator, - STATE(6672), 1, - sym_comment, - [226396] = 5, - ACTIONS(249), 1, + [216697] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9574), 1, - anon_sym_RPAREN, - STATE(6673), 1, + STATE(6604), 1, sym_comment, - STATE(6722), 1, - aux_sym__block_body_repeat1, - ACTIONS(9960), 2, + ACTIONS(10783), 4, sym__newline, anon_sym_SEMI, - [226413] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(7727), 1, - sym__entry_separator, - ACTIONS(7729), 1, - anon_sym_RBRACK, - STATE(6674), 1, - sym_comment, - STATE(7657), 1, - sym__expr_parenthesized_immediate, - [226432] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216710] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1715), 1, - aux_sym_unquoted_token2, - ACTIONS(9847), 1, - aux_sym__immediate_decimal_token2, - STATE(6675), 1, + STATE(6605), 1, sym_comment, - ACTIONS(1717), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [226449] = 3, - ACTIONS(249), 1, + ACTIONS(10785), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216723] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6676), 1, + STATE(6606), 1, sym_comment, - ACTIONS(10716), 4, + ACTIONS(10787), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226462] = 4, - ACTIONS(3), 1, + [216736] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6677), 1, + STATE(6607), 1, sym_comment, - ACTIONS(1769), 2, + ACTIONS(10789), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1771), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [226477] = 3, - ACTIONS(249), 1, + [216749] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6678), 1, + STATE(6608), 1, sym_comment, - ACTIONS(8034), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT, - anon_sym_LBRACE, - [226490] = 4, - ACTIONS(3), 1, + ACTIONS(10791), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216762] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6679), 1, + ACTIONS(9730), 1, + anon_sym_RPAREN, + STATE(6414), 1, + aux_sym__block_body_repeat1, + STATE(6609), 1, sym_comment, - ACTIONS(1826), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1828), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [226505] = 6, - ACTIONS(249), 1, + ACTIONS(10627), 2, + sym__newline, + anon_sym_SEMI, + [216779] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9937), 1, + ACTIONS(10152), 1, anon_sym_LBRACK, - ACTIONS(9939), 1, + ACTIONS(10154), 1, anon_sym_LPAREN, - STATE(3140), 1, - sym_parameter_bracks, - STATE(3141), 1, + STATE(3155), 1, sym_parameter_parens, - STATE(6680), 1, + STATE(3159), 1, + sym_parameter_bracks, + STATE(6610), 1, sym_comment, - [226524] = 6, - ACTIONS(249), 1, + [216798] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10270), 1, + ACTIONS(10152), 1, anon_sym_LBRACK, - ACTIONS(10272), 1, + ACTIONS(10154), 1, anon_sym_LPAREN, - STATE(6002), 1, + STATE(3160), 1, sym_parameter_parens, - STATE(6010), 1, + STATE(3168), 1, sym_parameter_bracks, - STATE(6681), 1, + STATE(6611), 1, sym_comment, - [226543] = 6, + [216817] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_RBRACE, + ACTIONS(2280), 1, sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10718), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6682), 1, + STATE(6612), 1, sym_comment, - [226562] = 3, - ACTIONS(249), 1, + STATE(7703), 1, + sym__expr_parenthesized_immediate, + [216836] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6683), 1, + STATE(6613), 1, sym_comment, - ACTIONS(10720), 4, + ACTIONS(6223), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226575] = 6, + anon_sym_LBRACE, + [216849] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(2282), 1, + anon_sym_RBRACE, + ACTIONS(2284), 1, sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10722), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6684), 1, + STATE(6614), 1, sym_comment, - [226594] = 3, - ACTIONS(249), 1, + STATE(7703), 1, + sym__expr_parenthesized_immediate, + [216868] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6685), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4711), 1, + sym_block, + STATE(6615), 1, + sym_comment, + [216887] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6616), 1, sym_comment, - ACTIONS(10724), 4, + ACTIONS(10793), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226607] = 6, - ACTIONS(3), 1, + [216900] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10152), 1, anon_sym_LBRACK, - ACTIONS(10726), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6686), 1, + ACTIONS(10154), 1, + anon_sym_LPAREN, + STATE(3154), 1, + sym_parameter_parens, + STATE(3166), 1, + sym_parameter_bracks, + STATE(6617), 1, sym_comment, - [226626] = 3, - ACTIONS(249), 1, + [216919] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6687), 1, + STATE(6618), 1, sym_comment, - ACTIONS(10728), 4, + ACTIONS(10795), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226639] = 3, - ACTIONS(249), 1, + [216932] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6688), 1, + STATE(6619), 1, sym_comment, - ACTIONS(10730), 4, + ACTIONS(10797), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226652] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1029), 1, - sym__table_head_separator, - ACTIONS(9747), 1, - anon_sym_DOT, - STATE(6689), 1, - sym_comment, - STATE(6690), 1, - aux_sym_cell_path_repeat1, - STATE(7323), 1, - sym_path, - [226671] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1033), 1, - sym__table_head_separator, - ACTIONS(10732), 1, - anon_sym_DOT, - STATE(7323), 1, - sym_path, - STATE(6690), 2, - sym_comment, - aux_sym_cell_path_repeat1, - [226688] = 3, - ACTIONS(249), 1, + [216945] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6691), 1, + STATE(6620), 1, sym_comment, - ACTIONS(10735), 4, + ACTIONS(10799), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226701] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6611), 1, - anon_sym_DOT_DOT2, - ACTIONS(10737), 1, - anon_sym_LBRACE, - STATE(6692), 1, - sym_comment, - ACTIONS(6595), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [226718] = 6, + [216958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5518), 1, + STATE(6621), 1, + sym_comment, + ACTIONS(1739), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1741), 2, anon_sym_LPAREN2, - ACTIONS(7814), 1, sym__entry_separator, - ACTIONS(7816), 1, - anon_sym_RBRACK, - STATE(6693), 1, - sym_comment, - STATE(7657), 1, - sym__expr_parenthesized_immediate, - [226737] = 6, + [216973] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10739), 1, + ACTIONS(10801), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6694), 1, + STATE(6622), 1, sym_comment, - [226756] = 6, - ACTIONS(3), 1, + [216992] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10741), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6695), 1, + STATE(6623), 1, sym_comment, - [226775] = 6, + ACTIONS(6225), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [217005] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10743), 1, + ACTIONS(10803), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6696), 1, + STATE(6624), 1, + sym_comment, + [217024] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6625), 1, sym_comment, - [226794] = 6, + ACTIONS(10503), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217037] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10745), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6697), 1, + ACTIONS(2218), 1, + anon_sym_PIPE, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(6626), 1, sym_comment, - [226813] = 6, + ACTIONS(2214), 2, + anon_sym_if, + anon_sym_EQ_GT, + [217054] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10747), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6698), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + ACTIONS(2224), 1, + anon_sym_PIPE, + STATE(6627), 1, + sym_comment, + ACTIONS(2222), 2, + anon_sym_if, + anon_sym_EQ_GT, + [217071] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6628), 1, sym_comment, - [226832] = 6, + ACTIONS(10503), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217084] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10749), 1, + ACTIONS(10805), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6699), 1, + STATE(6629), 1, + sym_comment, + [217103] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6630), 1, sym_comment, - [226851] = 6, + ACTIONS(10109), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217116] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + STATE(6631), 1, + sym_comment, + ACTIONS(1783), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1785), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10751), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6700), 1, + [217131] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6632), 1, + sym_comment, + ACTIONS(10807), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217144] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6633), 1, sym_comment, - [226870] = 6, + ACTIONS(10109), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217157] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10753), 1, + ACTIONS(10809), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6701), 1, - sym_comment, - [226889] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6702), 1, + STATE(6634), 1, sym_comment, - ACTIONS(10755), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226902] = 4, - ACTIONS(249), 1, + [217176] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1558), 1, + ACTIONS(1739), 1, aux_sym_unquoted_token2, - STATE(6703), 1, + STATE(6635), 1, sym_comment, - ACTIONS(2339), 3, + ACTIONS(1741), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [226917] = 5, - ACTIONS(249), 1, + [217191] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_DASH, - ACTIONS(8580), 1, + STATE(6636), 1, + sym_comment, + ACTIONS(10811), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217204] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10813), 1, + anon_sym_LBRACE, + STATE(5034), 1, + sym_block, + STATE(5037), 1, + sym_val_closure, + STATE(5130), 1, + sym__blosure, + STATE(6637), 1, + sym_comment, + [217223] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1755), 1, aux_sym_unquoted_token2, - STATE(6704), 1, + ACTIONS(9947), 1, + aux_sym__immediate_decimal_token2, + STATE(6638), 1, sym_comment, - ACTIONS(1640), 2, - sym_identifier, - anon_sym_DASH_DASH, - [226934] = 6, - ACTIONS(3), 1, + ACTIONS(1757), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [217240] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10757), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6705), 1, + STATE(6639), 1, + sym_comment, + ACTIONS(5681), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [217253] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6640), 1, sym_comment, - [226953] = 6, + ACTIONS(10815), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + STATE(6641), 1, + sym_comment, + ACTIONS(1890), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1892), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10759), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6706), 1, + [217281] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6642), 1, sym_comment, - [226972] = 4, - ACTIONS(3), 1, + ACTIONS(10817), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217294] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(6707), 1, + STATE(6643), 1, sym_comment, - ACTIONS(1090), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [226987] = 5, - ACTIONS(249), 1, + ACTIONS(10819), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217307] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10761), 1, - anon_sym_DOT, - STATE(6708), 1, + STATE(6644), 1, sym_comment, - ACTIONS(1717), 2, + ACTIONS(5653), 4, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_LBRACE, - [227004] = 5, - ACTIONS(3), 1, + [217320] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10763), 1, - anon_sym_DQUOTE, - STATE(6278), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6709), 1, + STATE(6645), 1, sym_comment, - ACTIONS(9917), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227021] = 5, - ACTIONS(249), 1, + ACTIONS(5657), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [217333] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4947), 1, - anon_sym_DASH, - ACTIONS(10765), 1, - anon_sym_EQ2, - STATE(6710), 1, + STATE(6646), 1, sym_comment, - ACTIONS(4945), 2, + ACTIONS(10821), 4, sym_identifier, - anon_sym_DASH_DASH, - [227038] = 6, - ACTIONS(3), 1, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [217346] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - ACTIONS(10767), 1, - anon_sym_RBRACK, - STATE(3400), 1, - aux_sym__multiple_types_repeat1, - STATE(6711), 1, + STATE(6647), 1, sym_comment, - [227057] = 6, - ACTIONS(3), 1, + ACTIONS(10823), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [217359] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_LPAREN2, - ACTIONS(2315), 1, + STATE(6648), 1, + sym_comment, + ACTIONS(10825), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2317), 1, - sym__entry_separator, - STATE(6712), 1, + [217372] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6649), 1, sym_comment, - STATE(7774), 1, - sym__expr_parenthesized_immediate, - [227076] = 5, - ACTIONS(249), 1, + ACTIONS(10827), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217385] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4991), 1, - anon_sym_DASH, - ACTIONS(10769), 1, - anon_sym_EQ2, - STATE(6713), 1, + STATE(6650), 1, sym_comment, - ACTIONS(4989), 2, + ACTIONS(10829), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217398] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4936), 1, + anon_sym_DOLLAR, + ACTIONS(4938), 1, sym_identifier, - anon_sym_DASH_DASH, - [227093] = 6, - ACTIONS(3), 1, + ACTIONS(10831), 1, + sym_long_flag_identifier, + ACTIONS(10833), 1, + anon_sym_EQ2, + STATE(6651), 1, + sym_comment, + [217417] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_LPAREN2, - ACTIONS(2242), 1, - anon_sym_RBRACE, - ACTIONS(2244), 1, - sym__entry_separator, - STATE(6714), 1, + ACTIONS(1491), 1, + anon_sym_SEMI, + ACTIONS(3857), 1, + sym__newline, + STATE(231), 1, + aux_sym__parenthesized_body_repeat1, + STATE(6652), 1, sym_comment, - STATE(7774), 1, - sym__expr_parenthesized_immediate, - [227112] = 6, - ACTIONS(249), 1, + STATE(6772), 1, + aux_sym_shebang_repeat1, + [217436] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6653), 1, + sym_comment, + ACTIONS(10835), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217449] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10771), 1, + ACTIONS(10837), 1, anon_sym_use, - ACTIONS(10773), 1, + ACTIONS(10839), 1, anon_sym_list, - ACTIONS(10775), 1, + ACTIONS(10841), 1, anon_sym_hide, - ACTIONS(10777), 1, + ACTIONS(10843), 1, anon_sym_new, - STATE(6715), 1, - sym_comment, - [227131] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(7741), 1, - sym__entry_separator, - ACTIONS(7743), 1, - anon_sym_RBRACK, - STATE(6716), 1, + STATE(6654), 1, sym_comment, - STATE(7657), 1, - sym__expr_parenthesized_immediate, - [227150] = 3, - ACTIONS(249), 1, + [217468] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6717), 1, + STATE(6655), 1, sym_comment, - ACTIONS(10779), 4, + ACTIONS(10845), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227163] = 3, - ACTIONS(249), 1, + [217481] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6656), 1, + sym_comment, + ACTIONS(2248), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token4, + ACTIONS(2250), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [217496] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6718), 1, + STATE(6657), 1, sym_comment, - ACTIONS(10781), 4, + ACTIONS(10847), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227176] = 6, + [217509] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2293), 1, - anon_sym_RBRACK, - ACTIONS(2295), 1, + ACTIONS(1546), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1866), 1, + anon_sym_RBRACE, + ACTIONS(1868), 1, anon_sym_LPAREN2, - ACTIONS(2297), 1, + ACTIONS(1874), 1, sym__entry_separator, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, - STATE(6719), 1, + STATE(6658), 1, sym_comment, - [227195] = 6, + [217528] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2295), 1, + ACTIONS(1711), 1, anon_sym_LPAREN2, - ACTIONS(2299), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2303), 1, - anon_sym_RBRACK, - ACTIONS(2305), 1, + ACTIONS(2270), 1, + anon_sym_RBRACE, + ACTIONS(2272), 1, sym__entry_separator, - STATE(6720), 1, + STATE(6659), 1, sym_comment, - [227214] = 3, - ACTIONS(249), 1, + STATE(7703), 1, + sym__expr_parenthesized_immediate, + [217547] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6721), 1, + STATE(6660), 1, sym_comment, - ACTIONS(10783), 4, + ACTIONS(10849), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227227] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1678), 1, - anon_sym_RPAREN, - ACTIONS(10785), 2, - sym__newline, - anon_sym_SEMI, - STATE(6722), 2, - sym_comment, - aux_sym__block_body_repeat1, - [227242] = 6, + [217560] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10788), 1, + ACTIONS(10851), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6723), 1, - sym_comment, - [227261] = 6, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1029), 1, - aux_sym_record_entry_token1, - ACTIONS(9705), 1, - anon_sym_DOT, - STATE(6724), 1, + STATE(6661), 1, sym_comment, - STATE(6729), 1, - aux_sym_cell_path_repeat1, - STATE(7323), 1, - sym_path, - [227280] = 4, + [217579] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6725), 1, - sym_comment, - ACTIONS(1074), 2, - anon_sym_RBRACK, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(2274), 1, anon_sym_RBRACE, - ACTIONS(1076), 2, - anon_sym_DOT, + ACTIONS(2276), 1, sym__entry_separator, - [227295] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9525), 1, - anon_sym_RPAREN, - STATE(6722), 1, - aux_sym__block_body_repeat1, - STATE(6726), 1, - sym_comment, - ACTIONS(9960), 2, - sym__newline, - anon_sym_SEMI, - [227312] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10790), 1, - anon_sym_QMARK2, - STATE(6727), 1, + STATE(6662), 1, sym_comment, - ACTIONS(1044), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [227327] = 4, - ACTIONS(249), 1, + STATE(7703), 1, + sym__expr_parenthesized_immediate, + [217598] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10792), 1, - anon_sym_QMARK2, - STATE(6728), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10853), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(6663), 1, sym_comment, - ACTIONS(1050), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [227342] = 5, - ACTIONS(249), 1, + [217617] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1033), 1, - aux_sym_record_entry_token1, - ACTIONS(10794), 1, - anon_sym_DOT, - STATE(7323), 1, - sym_path, - STATE(6729), 2, + ACTIONS(1709), 1, + anon_sym_DASH2, + ACTIONS(8677), 1, + aux_sym_unquoted_token2, + STATE(6664), 1, sym_comment, - aux_sym_cell_path_repeat1, - [227359] = 5, - ACTIONS(249), 1, + ACTIONS(1721), 2, + sym_identifier, + anon_sym_DASH_DASH, + [217634] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(10797), 1, - anon_sym_DOT_DOT2, - STATE(6730), 1, + ACTIONS(10855), 1, + anon_sym_LPAREN, + STATE(6665), 1, sym_comment, - ACTIONS(10799), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [227376] = 6, - ACTIONS(249), 1, + ACTIONS(10857), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [217649] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1767), 1, - anon_sym_SEMI, - ACTIONS(3766), 1, - sym__newline, - STATE(293), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6731), 1, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(7916), 1, + sym__entry_separator, + ACTIONS(7918), 1, + anon_sym_RBRACK, + STATE(6666), 1, sym_comment, - STATE(7176), 1, - aux_sym_shebang_repeat1, - [227395] = 4, - ACTIONS(249), 1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + [217668] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - STATE(6732), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(2151), 1, + anon_sym_RBRACE, + ACTIONS(2153), 1, + sym__entry_separator, + STATE(6667), 1, sym_comment, - ACTIONS(1796), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227410] = 6, - ACTIONS(249), 1, + STATE(7369), 1, + sym__expr_parenthesized_immediate, + [217687] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(10362), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(10097), 1, anon_sym_LBRACK, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(6733), 1, + ACTIONS(10859), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(6668), 1, sym_comment, - STATE(7642), 1, - sym_val_list, - [227429] = 3, - ACTIONS(249), 1, + [217706] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6734), 1, + STATE(6669), 1, sym_comment, - ACTIONS(9929), 4, + ACTIONS(10767), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227442] = 3, - ACTIONS(249), 1, + [217719] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6735), 1, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + STATE(6670), 1, sym_comment, - ACTIONS(9929), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227455] = 3, - ACTIONS(249), 1, + ACTIONS(1886), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217734] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6736), 1, + STATE(6671), 1, sym_comment, - ACTIONS(10801), 4, + ACTIONS(10847), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227468] = 6, - ACTIONS(249), 1, + [217747] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(4780), 1, - sym_block, - STATE(6737), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + STATE(6672), 1, sym_comment, - [227487] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1721), 3, + anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - ACTIONS(10803), 1, - anon_sym_DOT_DOT2, - STATE(6738), 1, - sym_comment, - ACTIONS(10805), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [227504] = 5, - ACTIONS(249), 1, + [217762] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1850), 1, - anon_sym_EQ_GT, - ACTIONS(10807), 1, - anon_sym_DOT_DOT2, - STATE(6739), 1, + ACTIONS(5053), 1, + anon_sym_DASH2, + ACTIONS(10861), 1, + anon_sym_EQ2, + STATE(6673), 1, sym_comment, - ACTIONS(10809), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [227521] = 3, - ACTIONS(249), 1, + ACTIONS(5051), 2, + sym_identifier, + anon_sym_DASH_DASH, + [217779] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6740), 1, + STATE(6674), 1, sym_comment, - ACTIONS(10801), 4, + ACTIONS(10863), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227534] = 5, - ACTIONS(249), 1, + [217792] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - ACTIONS(10811), 1, - anon_sym_DOT_DOT2, - STATE(6741), 1, + ACTIONS(1459), 1, + ts_builtin_sym_end, + STATE(230), 1, + aux_sym__block_body_repeat1, + STATE(6675), 1, sym_comment, - ACTIONS(10813), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [227551] = 5, + ACTIONS(25), 2, + sym__newline, + anon_sym_SEMI, + [217809] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5016), 1, + anon_sym_DASH2, + ACTIONS(10865), 1, + anon_sym_EQ2, + STATE(6676), 1, + sym_comment, + ACTIONS(5014), 2, + sym_identifier, + anon_sym_DASH_DASH, + [217826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2285), 1, + ACTIONS(2250), 1, anon_sym_PIPE, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(6742), 1, + STATE(6677), 1, sym_comment, - ACTIONS(2281), 2, + ACTIONS(2248), 3, anon_sym_if, anon_sym_EQ_GT, - [227568] = 3, - ACTIONS(249), 1, + aux_sym_unquoted_token4, + [217841] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6743), 1, + ACTIONS(615), 1, + ts_builtin_sym_end, + STATE(303), 1, + aux_sym__block_body_repeat1, + STATE(6678), 1, sym_comment, - ACTIONS(10815), 4, + ACTIONS(25), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227581] = 3, - ACTIONS(249), 1, + [217858] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6744), 1, + STATE(6679), 1, sym_comment, - ACTIONS(10817), 4, + ACTIONS(10867), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227594] = 3, - ACTIONS(249), 1, + [217871] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6745), 1, + ACTIONS(1783), 1, + aux_sym_unquoted_token2, + ACTIONS(10869), 1, + aux_sym__immediate_decimal_token2, + STATE(6680), 1, sym_comment, - ACTIONS(10819), 4, + ACTIONS(1785), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [217888] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1783), 1, + aux_sym_unquoted_token2, + STATE(6681), 1, + sym_comment, + ACTIONS(1785), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217903] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6682), 1, + sym_comment, + ACTIONS(10871), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227607] = 3, - ACTIONS(249), 1, + [217916] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6746), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10873), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(6683), 1, sym_comment, - ACTIONS(10821), 4, + [217935] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6684), 1, + sym_comment, + ACTIONS(10875), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227620] = 6, + [217948] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1090), 1, - anon_sym_RBRACE, - ACTIONS(1092), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(2273), 1, - anon_sym_LPAREN2, - ACTIONS(2275), 1, - aux_sym__unquoted_in_record_token4, - STATE(6747), 1, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10877), 1, + anon_sym_RBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(6685), 1, sym_comment, - [227639] = 3, - ACTIONS(249), 1, + [217967] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6748), 1, + STATE(6686), 1, sym_comment, - ACTIONS(10823), 4, + ACTIONS(6233), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227652] = 3, - ACTIONS(249), 1, + anon_sym_LBRACE, + [217980] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6749), 1, + ACTIONS(9699), 1, + anon_sym_RPAREN, + STATE(6414), 1, + aux_sym__block_body_repeat1, + STATE(6687), 1, sym_comment, - ACTIONS(10825), 4, + ACTIONS(10627), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227665] = 6, - ACTIONS(249), 1, + [217997] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6251), 1, - anon_sym_DOLLAR, - ACTIONS(8374), 1, - sym_identifier, - STATE(5416), 1, - sym_val_variable, - STATE(5965), 1, - sym__variable_name, - STATE(6750), 1, + STATE(6688), 1, sym_comment, - [227684] = 6, + ACTIONS(1739), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [218012] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, + ACTIONS(10097), 1, anon_sym_LBRACK, - ACTIONS(10827), 1, + ACTIONS(10879), 1, anon_sym_RBRACK, - STATE(3400), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6751), 1, + STATE(6689), 1, sym_comment, - [227703] = 5, - ACTIONS(249), 1, + [218031] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10829), 1, - anon_sym_RBRACK, - ACTIONS(10831), 1, - sym_hex_digit, - STATE(6752), 1, + STATE(6690), 1, sym_comment, - STATE(6903), 1, - aux_sym_val_binary_repeat1, - [227719] = 5, - ACTIONS(3), 1, + ACTIONS(10881), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218044] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10833), 1, - anon_sym_RBRACK, - STATE(3464), 1, - aux_sym__multiple_types_repeat1, - STATE(6753), 1, + STATE(6691), 1, sym_comment, - [227735] = 5, - ACTIONS(249), 1, + ACTIONS(6345), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [218057] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(10835), 1, - anon_sym_RBRACK, - STATE(6754), 1, + ACTIONS(1783), 1, + aux_sym_unquoted_token2, + ACTIONS(10883), 1, + aux_sym__immediate_decimal_token2, + STATE(6692), 1, sym_comment, - STATE(6758), 1, - aux_sym_val_binary_repeat1, - [227751] = 5, - ACTIONS(3), 1, + ACTIONS(1785), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [218074] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5707), 1, - sym__entry_separator, - ACTIONS(10837), 1, - anon_sym_RBRACK, - STATE(2645), 1, - aux_sym__multiple_types_repeat1, - STATE(6755), 1, + STATE(6693), 1, sym_comment, - [227767] = 4, - ACTIONS(3), 1, + ACTIONS(10885), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [218087] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2456), 1, - sym__entry_separator, - STATE(6756), 1, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + STATE(6694), 1, sym_comment, - ACTIONS(2454), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227781] = 5, - ACTIONS(3), 1, + ACTIONS(1892), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218102] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4443), 1, - aux_sym_unquoted_token4, - STATE(6757), 1, + STATE(6695), 1, sym_comment, - STATE(7567), 1, - sym__expr_parenthesized_immediate, - [227797] = 5, - ACTIONS(249), 1, + ACTIONS(6235), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [218115] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(10839), 1, - anon_sym_RBRACK, - STATE(6758), 1, + ACTIONS(6669), 1, + sym__newline, + ACTIONS(10887), 1, + anon_sym_EQ, + ACTIONS(10889), 1, + anon_sym_COLON, + STATE(4026), 1, + aux_sym_shebang_repeat1, + STATE(6696), 1, sym_comment, - STATE(6903), 1, - aux_sym_val_binary_repeat1, - [227813] = 5, - ACTIONS(3), 1, + [218134] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10841), 1, - anon_sym_RBRACK, - STATE(3435), 1, - aux_sym__multiple_types_repeat1, - STATE(6759), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + STATE(6697), 1, sym_comment, - [227829] = 5, - ACTIONS(249), 1, + ACTIONS(1874), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218149] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6698), 1, + sym_comment, + ACTIONS(10891), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218162] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(10893), 1, anon_sym_LBRACK, - STATE(6760), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6699), 1, sym_comment, - STATE(7272), 1, + STATE(7946), 1, sym_val_list, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [227845] = 5, + [218181] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10843), 1, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10895), 1, anon_sym_RBRACK, - STATE(6344), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6761), 1, - sym_comment, - [227861] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(7068), 1, - aux_sym_unquoted_token4, - STATE(6762), 1, + STATE(6700), 1, sym_comment, - STATE(7416), 1, - sym__expr_parenthesized_immediate, - [227877] = 5, + [218200] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10845), 1, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10897), 1, anon_sym_RBRACK, - STATE(6345), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6763), 1, + STATE(6701), 1, sym_comment, - [227893] = 5, - ACTIONS(3), 1, + [218219] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10847), 1, - anon_sym_RBRACK, - STATE(6346), 1, - aux_sym__multiple_types_repeat1, - STATE(6764), 1, + STATE(6702), 1, sym_comment, - [227909] = 5, - ACTIONS(3), 1, + ACTIONS(6347), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [218232] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10849), 1, - anon_sym_RBRACK, - STATE(6347), 1, - aux_sym__multiple_types_repeat1, - STATE(6765), 1, + STATE(6703), 1, sym_comment, - [227925] = 5, + ACTIONS(10899), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218245] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10851), 1, - anon_sym_RBRACK, - STATE(6348), 1, - aux_sym__multiple_types_repeat1, - STATE(6766), 1, + ACTIONS(10901), 1, + anon_sym_DQUOTE, + STATE(6253), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6704), 1, sym_comment, - [227941] = 4, - ACTIONS(3), 1, + ACTIONS(10103), 2, + sym__escaped_str_content, + sym_escape_sequence, + [218262] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2571), 1, - sym__entry_separator, - STATE(6767), 1, + STATE(6705), 1, sym_comment, - ACTIONS(2569), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227955] = 5, + ACTIONS(5697), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [218275] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10853), 1, + ACTIONS(2206), 1, anon_sym_RBRACK, - STATE(6349), 1, - aux_sym__multiple_types_repeat1, - STATE(6768), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + sym__entry_separator, + ACTIONS(2212), 1, + aux_sym__unquoted_in_list_token4, + STATE(6706), 1, sym_comment, - [227971] = 5, + [218294] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1888), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2187), 1, + anon_sym_RBRACE, + ACTIONS(2189), 1, sym__entry_separator, - ACTIONS(10855), 1, - anon_sym_RBRACK, - STATE(6350), 1, - aux_sym__multiple_types_repeat1, - STATE(6769), 1, + STATE(6707), 1, sym_comment, - [227987] = 3, - ACTIONS(249), 1, + [218313] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6770), 1, + STATE(6708), 1, sym_comment, - ACTIONS(9929), 3, - ts_builtin_sym_end, + ACTIONS(10903), 4, sym__newline, anon_sym_SEMI, - [227999] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218326] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(1878), 1, + anon_sym_RBRACE, + ACTIONS(1880), 1, + anon_sym_LPAREN2, + ACTIONS(1886), 1, sym__entry_separator, - ACTIONS(10857), 1, - anon_sym_RBRACK, - STATE(6351), 1, - aux_sym__multiple_types_repeat1, - STATE(6771), 1, + ACTIONS(1888), 1, + aux_sym__unquoted_in_record_token2, + STATE(6709), 1, + sym_comment, + [218345] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + ACTIONS(10905), 1, + anon_sym_DOT_DOT2, + STATE(6710), 1, sym_comment, - [228015] = 5, + ACTIONS(10907), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218362] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - ACTIONS(5895), 1, - anon_sym_EQ_GT, - ACTIONS(5900), 1, - anon_sym_PIPE, - STATE(6772), 1, + ACTIONS(1030), 1, + anon_sym_RBRACK, + ACTIONS(1032), 1, + sym__entry_separator, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym__unquoted_in_list_token4, + STATE(6711), 1, sym_comment, - [228031] = 4, - ACTIONS(249), 1, + [218381] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10859), 1, - aux_sym_cmd_identifier_token41, - STATE(6773), 1, + STATE(6712), 1, sym_comment, - ACTIONS(10861), 2, - sym_filesize_unit, - sym_duration_unit, - [228045] = 3, - ACTIONS(249), 1, + ACTIONS(10909), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [218394] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6774), 1, + ACTIONS(9054), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10911), 1, + anon_sym_DOT, + STATE(6713), 1, sym_comment, - ACTIONS(9929), 3, - ts_builtin_sym_end, + ACTIONS(1757), 2, + sym__newline, + anon_sym_LBRACE, + [218411] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6714), 1, + sym_comment, + ACTIONS(10913), 4, sym__newline, anon_sym_SEMI, - [228057] = 4, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218424] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10863), 1, - aux_sym_cmd_identifier_token41, - STATE(6775), 1, + STATE(6715), 1, sym_comment, - ACTIONS(10865), 2, - sym_filesize_unit, - sym_duration_unit, - [228071] = 4, - ACTIONS(3), 1, + ACTIONS(10915), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218437] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10867), 1, - sym__table_head_separator, - STATE(6776), 1, + STATE(6716), 1, sym_comment, - ACTIONS(1090), 2, - anon_sym_RBRACK, - sym__entry_separator, - [228085] = 5, - ACTIONS(249), 1, + ACTIONS(10917), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218450] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(10869), 1, - anon_sym_RBRACK, - STATE(6777), 1, + STATE(6717), 1, sym_comment, - STATE(6782), 1, - aux_sym_val_binary_repeat1, - [228101] = 5, + ACTIONS(2248), 4, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym_unquoted_token4, + [218463] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10871), 1, - anon_sym_RBRACK, - STATE(6711), 1, - aux_sym__multiple_types_repeat1, - STATE(6778), 1, + ACTIONS(10919), 1, + anon_sym_DQUOTE, + STATE(6213), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6718), 1, sym_comment, - [228117] = 5, + ACTIONS(10103), 2, + sym__escaped_str_content, + sym_escape_sequence, + [218480] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10873), 1, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10921), 1, anon_sym_RBRACK, - STATE(2688), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6779), 1, + STATE(6719), 1, sym_comment, - [228133] = 3, - ACTIONS(249), 1, + [218499] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6780), 1, + STATE(6720), 1, + sym_comment, + ACTIONS(10135), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218512] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6721), 1, sym_comment, - ACTIONS(10268), 3, + ACTIONS(10923), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218525] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6722), 1, + sym_comment, + ACTIONS(5689), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228145] = 5, - ACTIONS(3), 1, + anon_sym_LBRACE, + [218538] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(6985), 1, - aux_sym_unquoted_token4, - STATE(6781), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(5107), 1, + sym_block, + STATE(6723), 1, sym_comment, - STATE(7472), 1, - sym__expr_parenthesized_immediate, - [228161] = 5, - ACTIONS(249), 1, + STATE(6724), 1, + aux_sym_shebang_repeat1, + [218557] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(10875), 1, - anon_sym_RBRACK, - STATE(6782), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(5110), 1, + sym_block, + STATE(6724), 1, sym_comment, - STATE(6903), 1, - aux_sym_val_binary_repeat1, - [228177] = 5, - ACTIONS(3), 1, + [218576] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10877), 1, - anon_sym_RBRACK, - STATE(3442), 1, - aux_sym__multiple_types_repeat1, - STATE(6783), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(5111), 1, + sym_block, + STATE(6725), 1, sym_comment, - [228193] = 5, - ACTIONS(3), 1, + STATE(6726), 1, + aux_sym_shebang_repeat1, + [218595] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10879), 1, - anon_sym_RBRACK, - STATE(6359), 1, - aux_sym__multiple_types_repeat1, - STATE(6784), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(5116), 1, + sym_block, + STATE(6726), 1, sym_comment, - [228209] = 5, - ACTIONS(3), 1, + [218614] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10881), 1, - anon_sym_RBRACK, - STATE(6360), 1, - aux_sym__multiple_types_repeat1, - STATE(6785), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(10893), 1, + anon_sym_LBRACK, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6727), 1, sym_comment, - [228225] = 5, + STATE(7590), 1, + sym_val_list, + [218633] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10883), 1, - anon_sym_RBRACK, - STATE(6361), 1, - aux_sym__multiple_types_repeat1, - STATE(6786), 1, + ACTIONS(2210), 1, + anon_sym_PIPE, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(6728), 1, sym_comment, - [228241] = 5, + ACTIONS(2206), 2, + anon_sym_if, + anon_sym_EQ_GT, + [218650] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10885), 1, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10925), 1, anon_sym_RBRACK, - STATE(6362), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6787), 1, + STATE(6729), 1, sym_comment, - [228257] = 5, + [218669] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10887), 1, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10927), 1, anon_sym_RBRACK, - STATE(6363), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6788), 1, + STATE(6730), 1, sym_comment, - [228273] = 5, + [218688] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10889), 1, + ACTIONS(10097), 1, + anon_sym_LBRACK, + ACTIONS(10929), 1, anon_sym_RBRACK, - STATE(6364), 1, + STATE(3383), 1, aux_sym__multiple_types_repeat1, - STATE(6789), 1, + STATE(6731), 1, sym_comment, - [228289] = 5, - ACTIONS(3), 1, + [218707] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(10931), 1, + anon_sym_DOT_DOT2, + STATE(6732), 1, + sym_comment, + ACTIONS(10933), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218724] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1090), 1, + ACTIONS(3857), 1, sym__newline, - ACTIONS(1092), 1, - sym__space, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(6790), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(4973), 1, + sym_block, + STATE(6733), 1, sym_comment, - [228305] = 3, - ACTIONS(249), 1, + STATE(6734), 1, + aux_sym_shebang_repeat1, + [218743] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6791), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4975), 1, + sym_block, + STATE(6734), 1, sym_comment, - ACTIONS(10310), 3, - ts_builtin_sym_end, + [218762] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - [228317] = 5, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(4976), 1, + sym_block, + STATE(6735), 1, + sym_comment, + STATE(6736), 1, + aux_sym_shebang_repeat1, + [218781] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4980), 1, + sym_block, + STATE(6736), 1, + sym_comment, + [218800] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1874), 1, + anon_sym_EQ_GT, + ACTIONS(10935), 1, + anon_sym_DOT_DOT2, + STATE(6737), 1, + sym_comment, + ACTIONS(10937), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218817] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1886), 1, + anon_sym_EQ_GT, + ACTIONS(10939), 1, + anon_sym_DOT_DOT2, + STATE(6738), 1, + sym_comment, + ACTIONS(10941), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218834] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10891), 1, + STATE(6739), 1, + sym_comment, + ACTIONS(1783), 2, anon_sym_RBRACK, - STATE(6365), 1, - aux_sym__multiple_types_repeat1, - STATE(6792), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1785), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [218849] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(4620), 1, + sym_block, + STATE(6336), 1, + aux_sym_shebang_repeat1, + STATE(6740), 1, sym_comment, - [228333] = 5, + [218868] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6039), 1, + ACTIONS(1030), 1, anon_sym_RBRACE, - STATE(2923), 1, - aux_sym__multiple_types_repeat1, - STATE(6793), 1, + ACTIONS(1032), 1, + sym__entry_separator, + ACTIONS(2202), 1, + anon_sym_LPAREN2, + ACTIONS(2204), 1, + aux_sym__unquoted_in_record_token4, + STATE(6741), 1, sym_comment, - [228349] = 3, - ACTIONS(249), 1, + [218887] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6794), 1, + STATE(6742), 1, sym_comment, - ACTIONS(9988), 3, - ts_builtin_sym_end, + ACTIONS(10943), 4, sym__newline, anon_sym_SEMI, - [228361] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218900] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6795), 1, + STATE(6743), 1, sym_comment, - ACTIONS(9990), 3, - ts_builtin_sym_end, + ACTIONS(10903), 4, sym__newline, anon_sym_SEMI, - [228373] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218913] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8850), 1, + anon_sym_DOLLAR, + STATE(5480), 1, + sym_val_variable, + STATE(5966), 1, + sym__variable_name, + STATE(6744), 1, + sym_comment, + [218932] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5518), 1, + ACTIONS(1711), 1, anon_sym_LPAREN2, - ACTIONS(8643), 1, - aux_sym__unquoted_in_list_token4, - STATE(6796), 1, + ACTIONS(2155), 1, + anon_sym_RBRACE, + ACTIONS(2157), 1, + sym__entry_separator, + STATE(6745), 1, sym_comment, - STATE(7447), 1, + STATE(7369), 1, sym__expr_parenthesized_immediate, - [228389] = 3, - ACTIONS(249), 1, + [218951] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6797), 1, - sym_comment, - ACTIONS(10004), 3, - ts_builtin_sym_end, + ACTIONS(3857), 1, sym__newline, - anon_sym_SEMI, - [228401] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(10893), 1, - anon_sym_RBRACK, - STATE(6798), 1, - sym_comment, - STATE(6903), 1, - aux_sym_val_binary_repeat1, - [228417] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4939), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - ACTIONS(10895), 1, - sym_long_flag_identifier, - ACTIONS(10897), 1, - anon_sym_EQ2, - STATE(6799), 1, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(4640), 1, + sym_block, + STATE(6746), 1, sym_comment, - [228433] = 4, - ACTIONS(249), 1, + [218970] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1703), 1, - aux_sym_unquoted_token2, - STATE(6800), 1, + STATE(6747), 1, sym_comment, - ACTIONS(1705), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [228447] = 5, - ACTIONS(249), 1, + ACTIONS(10945), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [218983] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(10899), 1, + ACTIONS(10947), 1, anon_sym_RBRACK, - STATE(6801), 1, + ACTIONS(10949), 1, + sym_hex_digit, + STATE(6748), 1, sym_comment, - STATE(6806), 1, + STATE(6852), 1, aux_sym_val_binary_repeat1, - [228463] = 4, + [218999] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6749), 1, + sym_comment, + ACTIONS(10232), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219011] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2436), 1, + ACTIONS(2490), 1, sym__entry_separator, - STATE(6802), 1, + STATE(6750), 1, sym_comment, - ACTIONS(2434), 2, + ACTIONS(2488), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [228477] = 4, + [219025] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2061), 1, + ACTIONS(2458), 1, sym__entry_separator, - STATE(6803), 1, + STATE(6751), 1, sym_comment, - ACTIONS(2059), 2, + ACTIONS(2456), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [228491] = 3, - ACTIONS(249), 1, + [219039] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6804), 1, + STATE(6752), 1, sym_comment, - ACTIONS(9946), 3, + ACTIONS(10807), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228503] = 5, - ACTIONS(3), 1, + [219051] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(6929), 1, - aux_sym_unquoted_token4, - STATE(6805), 1, + ACTIONS(6221), 1, + anon_sym_AT, + ACTIONS(8029), 1, + anon_sym_EQ, + STATE(5062), 1, + sym_param_cmd, + STATE(6753), 1, sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - [228519] = 5, - ACTIONS(249), 1, + [219067] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, + STATE(6754), 1, + sym_comment, + ACTIONS(10863), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219079] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10949), 1, sym_hex_digit, - ACTIONS(10901), 1, + ACTIONS(10951), 1, anon_sym_RBRACK, - STATE(6806), 1, + STATE(6755), 1, sym_comment, - STATE(6903), 1, + STATE(6757), 1, aux_sym_val_binary_repeat1, - [228535] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6257), 1, - anon_sym_AT, - ACTIONS(10903), 1, - anon_sym_GT, - STATE(6807), 1, - sym_comment, - STATE(7925), 1, - sym_param_cmd, - [228551] = 5, + [219095] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2345), 1, - sym__entry_separator, - ACTIONS(2351), 1, - anon_sym_RBRACE, - STATE(515), 1, - aux_sym__multiple_types_repeat1, - STATE(6808), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(6458), 1, + aux_sym_unquoted_token4, + STATE(6756), 1, sym_comment, - [228567] = 5, - ACTIONS(3), 1, + STATE(7386), 1, + sym__expr_parenthesized_immediate, + [219111] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10905), 1, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(10953), 1, anon_sym_RBRACK, - STATE(6374), 1, - aux_sym__multiple_types_repeat1, - STATE(6809), 1, + STATE(6757), 1, sym_comment, - [228583] = 3, - ACTIONS(249), 1, + STATE(6852), 1, + aux_sym_val_binary_repeat1, + [219127] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6810), 1, + ACTIONS(8677), 1, + aux_sym_unquoted_token2, + STATE(6758), 1, sym_comment, - ACTIONS(9929), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228595] = 5, + ACTIONS(1721), 2, + sym_identifier, + anon_sym_DOLLAR, + [219141] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(9921), 1, - anon_sym_LBRACK, - STATE(3400), 1, + ACTIONS(10955), 1, + anon_sym_RBRACK, + STATE(6301), 1, aux_sym__multiple_types_repeat1, - STATE(6811), 1, + STATE(6759), 1, + sym_comment, + [219157] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6221), 1, + anon_sym_AT, + ACTIONS(8029), 1, + anon_sym_EQ, + STATE(5063), 1, + sym_param_cmd, + STATE(6760), 1, sym_comment, - [228611] = 5, + [219173] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10907), 1, + ACTIONS(10957), 1, anon_sym_RBRACK, - STATE(6375), 1, + STATE(6302), 1, aux_sym__multiple_types_repeat1, - STATE(6812), 1, + STATE(6761), 1, sym_comment, - [228627] = 5, + [219189] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10909), 1, + ACTIONS(10959), 1, anon_sym_RBRACK, - STATE(6376), 1, + STATE(6303), 1, aux_sym__multiple_types_repeat1, - STATE(6813), 1, + STATE(6762), 1, sym_comment, - [228643] = 5, + [219205] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10911), 1, + ACTIONS(10961), 1, anon_sym_RBRACK, - STATE(6377), 1, + STATE(6304), 1, aux_sym__multiple_types_repeat1, - STATE(6814), 1, + STATE(6763), 1, sym_comment, - [228659] = 5, - ACTIONS(249), 1, + [219221] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4925), 1, - anon_sym_in, - ACTIONS(10913), 1, + ACTIONS(4938), 1, + anon_sym_in2, + ACTIONS(10963), 1, + sym_long_flag_identifier, + ACTIONS(10965), 1, anon_sym_EQ2, - ACTIONS(10915), 1, - sym_short_flag_identifier, - STATE(6815), 1, + STATE(6764), 1, sym_comment, - [228675] = 5, + [219237] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10917), 1, + ACTIONS(10967), 1, anon_sym_RBRACK, - STATE(6378), 1, + STATE(6305), 1, aux_sym__multiple_types_repeat1, - STATE(6816), 1, + STATE(6765), 1, sym_comment, - [228691] = 5, + [219253] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10919), 1, + ACTIONS(10969), 1, anon_sym_RBRACK, - STATE(6246), 1, + STATE(6306), 1, aux_sym__multiple_types_repeat1, - STATE(6817), 1, + STATE(6766), 1, sym_comment, - [228707] = 5, + [219269] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10921), 1, + ACTIONS(10971), 1, anon_sym_RBRACK, - STATE(6379), 1, + STATE(6307), 1, aux_sym__multiple_types_repeat1, - STATE(6818), 1, + STATE(6767), 1, sym_comment, - [228723] = 5, + [219285] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2462), 1, sym__entry_separator, - ACTIONS(10923), 1, - anon_sym_RBRACK, - STATE(6380), 1, - aux_sym__multiple_types_repeat1, - STATE(6819), 1, + STATE(6768), 1, sym_comment, - [228739] = 5, + ACTIONS(2460), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219299] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10925), 1, + ACTIONS(10973), 1, anon_sym_RBRACK, - STATE(6247), 1, + STATE(6308), 1, aux_sym__multiple_types_repeat1, - STATE(6820), 1, + STATE(6769), 1, sym_comment, - [228755] = 5, + [219315] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2070), 1, sym__entry_separator, - ACTIONS(10927), 1, - anon_sym_RBRACK, - STATE(6381), 1, - aux_sym__multiple_types_repeat1, - STATE(6821), 1, + STATE(6770), 1, sym_comment, - [228771] = 5, + ACTIONS(2068), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219329] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10929), 1, - anon_sym_RBRACK, - STATE(6248), 1, - aux_sym__multiple_types_repeat1, - STATE(6822), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1723), 1, + aux_sym__unquoted_in_record_token4, + STATE(6771), 1, sym_comment, - [228787] = 3, - ACTIONS(249), 1, + STATE(7364), 1, + sym__expr_parenthesized_immediate, + [219345] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6823), 1, + ACTIONS(1563), 1, + anon_sym_SEMI, + ACTIONS(3857), 1, + sym__newline, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(6772), 1, + sym_comment, + [219361] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6773), 1, sym_comment, - ACTIONS(9950), 3, + ACTIONS(10531), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228799] = 3, - ACTIONS(249), 1, + [219373] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6824), 1, + STATE(6774), 1, sym_comment, - ACTIONS(9929), 3, + ACTIONS(10535), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228811] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - anon_sym_LBRACE, - ACTIONS(10931), 1, - anon_sym_EQ2, - ACTIONS(10933), 1, - sym_short_flag_identifier, - STATE(6825), 1, - sym_comment, - [228827] = 3, - ACTIONS(249), 1, + [219385] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6826), 1, + STATE(6775), 1, sym_comment, - ACTIONS(9931), 3, + ACTIONS(10619), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228839] = 4, - ACTIONS(3), 1, + [219397] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2444), 1, - sym__entry_separator, - STATE(6827), 1, - sym_comment, - ACTIONS(2442), 2, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(10975), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [228853] = 5, - ACTIONS(3), 1, + STATE(6776), 1, + sym_comment, + STATE(6782), 1, + aux_sym_val_binary_repeat1, + [219413] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10935), 1, - anon_sym_POUND_BANG, - ACTIONS(10937), 1, - sym__newline, - STATE(6828), 1, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + STATE(6777), 1, sym_comment, - STATE(7025), 1, - aux_sym_shebang_repeat1, - [228869] = 4, + ACTIONS(2189), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [219427] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2452), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(6829), 1, - sym_comment, - ACTIONS(2450), 2, + ACTIONS(10977), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [228883] = 4, + STATE(6622), 1, + aux_sym__multiple_types_repeat1, + STATE(6778), 1, + sym_comment, + [219443] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2069), 1, + ACTIONS(2409), 1, sym__entry_separator, - STATE(6830), 1, + STATE(6779), 1, sym_comment, - ACTIONS(2067), 2, + ACTIONS(2407), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [228897] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(10939), 1, - anon_sym_RBRACK, - STATE(6831), 1, - sym_comment, - STATE(6834), 1, - aux_sym_val_binary_repeat1, - [228913] = 4, - ACTIONS(249), 1, + [219457] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1769), 1, - aux_sym_unquoted_token2, - STATE(6832), 1, - sym_comment, - ACTIONS(1771), 2, - anon_sym_LBRACE, + ACTIONS(5556), 1, anon_sym_LPAREN2, - [228927] = 3, - ACTIONS(249), 1, + ACTIONS(7297), 1, + aux_sym__unquoted_in_list_token4, + STATE(6780), 1, + sym_comment, + STATE(7401), 1, + sym__expr_parenthesized_immediate, + [219473] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6833), 1, + ACTIONS(2206), 1, + anon_sym_EQ_GT, + ACTIONS(2210), 1, + anon_sym_PIPE, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(6781), 1, sym_comment, - ACTIONS(10076), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228939] = 5, - ACTIONS(249), 1, + [219489] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, + ACTIONS(10949), 1, sym_hex_digit, - ACTIONS(10941), 1, + ACTIONS(10979), 1, anon_sym_RBRACK, - STATE(6834), 1, + STATE(6782), 1, sym_comment, - STATE(6903), 1, + STATE(6852), 1, aux_sym_val_binary_repeat1, - [228955] = 5, + [219505] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5672), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10943), 1, + ACTIONS(10981), 1, anon_sym_RBRACK, - STATE(2652), 1, + STATE(6624), 1, aux_sym__multiple_types_repeat1, - STATE(6835), 1, - sym_comment, - [228971] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6836), 1, + STATE(6783), 1, sym_comment, - ACTIONS(9950), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228983] = 5, + [219521] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10945), 1, + ACTIONS(10983), 1, anon_sym_RBRACK, - STATE(6387), 1, + STATE(6319), 1, aux_sym__multiple_types_repeat1, - STATE(6837), 1, - sym_comment, - [228999] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6838), 1, + STATE(6784), 1, sym_comment, - ACTIONS(9933), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229011] = 5, + [219537] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10947), 1, + ACTIONS(10985), 1, anon_sym_RBRACK, - STATE(6388), 1, + STATE(6629), 1, aux_sym__multiple_types_repeat1, - STATE(6839), 1, + STATE(6785), 1, sym_comment, - [229027] = 5, + [219553] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10949), 1, + ACTIONS(10987), 1, anon_sym_RBRACK, - STATE(6389), 1, + STATE(6320), 1, aux_sym__multiple_types_repeat1, - STATE(6840), 1, + STATE(6786), 1, sym_comment, - [229043] = 5, + [219569] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10951), 1, + ACTIONS(10989), 1, anon_sym_RBRACK, - STATE(6390), 1, + STATE(6321), 1, aux_sym__multiple_types_repeat1, - STATE(6841), 1, + STATE(6787), 1, sym_comment, - [229059] = 4, + [219585] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2212), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(6842), 1, - sym_comment, - ACTIONS(2206), 2, + ACTIONS(10991), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [229073] = 5, + STATE(6322), 1, + aux_sym__multiple_types_repeat1, + STATE(6788), 1, + sym_comment, + [219601] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10953), 1, + ACTIONS(10993), 1, anon_sym_RBRACK, - STATE(6391), 1, + STATE(6323), 1, aux_sym__multiple_types_repeat1, - STATE(6843), 1, + STATE(6789), 1, sym_comment, - [229089] = 3, - ACTIONS(249), 1, + [219617] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6844), 1, + STATE(6790), 1, + sym_comment, + ACTIONS(10105), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219629] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6791), 1, sym_comment, - ACTIONS(9952), 3, + ACTIONS(10105), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229101] = 5, + [219641] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10955), 1, + ACTIONS(10995), 1, anon_sym_RBRACK, - STATE(6392), 1, + STATE(6324), 1, aux_sym__multiple_types_repeat1, - STATE(6845), 1, + STATE(6792), 1, sym_comment, - [229117] = 5, + [219657] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10957), 1, + ACTIONS(10997), 1, anon_sym_RBRACK, - STATE(6393), 1, + STATE(6325), 1, aux_sym__multiple_types_repeat1, - STATE(6846), 1, + STATE(6793), 1, sym_comment, - [229133] = 3, - ACTIONS(249), 1, + [219673] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6847), 1, + STATE(6794), 1, sym_comment, - ACTIONS(10801), 3, + ACTIONS(10111), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229145] = 5, + [219685] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10959), 1, + ACTIONS(10999), 1, anon_sym_RBRACK, - STATE(6394), 1, + STATE(6326), 1, aux_sym__multiple_types_repeat1, - STATE(6848), 1, + STATE(6795), 1, sym_comment, - [229161] = 5, - ACTIONS(3), 1, + [219701] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10961), 1, - anon_sym_RBRACK, - STATE(6404), 1, - aux_sym__multiple_types_repeat1, - STATE(6849), 1, + STATE(6796), 1, sym_comment, - [229177] = 5, - ACTIONS(3), 1, + ACTIONS(10158), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219713] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10963), 1, - anon_sym_RBRACK, - STATE(6483), 1, - aux_sym__multiple_types_repeat1, - STATE(6850), 1, + STATE(6797), 1, + sym_comment, + ACTIONS(10196), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219725] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6798), 1, + sym_comment, + ACTIONS(10619), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219737] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6799), 1, sym_comment, - [229193] = 4, + ACTIONS(10196), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219749] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(1911), 1, sym__entry_separator, - STATE(6851), 1, + STATE(6800), 1, sym_comment, - ACTIONS(2087), 2, + ACTIONS(1907), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229207] = 3, - ACTIONS(249), 1, + [219763] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6852), 1, + STATE(6801), 1, sym_comment, - ACTIONS(10014), 3, + ACTIONS(10771), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229219] = 5, + [219775] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5672), 1, - sym__entry_separator, - ACTIONS(10965), 1, + ACTIONS(5014), 1, + sym__space, + ACTIONS(5016), 1, + sym__newline, + ACTIONS(11001), 1, + anon_sym_EQ2, + STATE(6802), 1, + sym_comment, + [219791] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11003), 1, anon_sym_RBRACK, - STATE(2666), 1, - aux_sym__multiple_types_repeat1, - STATE(6853), 1, + STATE(6803), 1, sym_comment, - [229235] = 5, - ACTIONS(3), 1, + STATE(6808), 1, + aux_sym_val_binary_repeat1, + [219807] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(10967), 1, - anon_sym_RBRACE, - STATE(2919), 1, - aux_sym__multiple_types_repeat1, - STATE(6854), 1, + ACTIONS(4958), 1, + anon_sym_in2, + ACTIONS(11005), 1, + anon_sym_EQ2, + ACTIONS(11007), 1, + sym_short_flag_identifier, + STATE(6804), 1, sym_comment, - [229251] = 5, + [219823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, - sym__entry_separator, - ACTIONS(10969), 1, - anon_sym_RBRACK, - STATE(2643), 1, - aux_sym__multiple_types_repeat1, - STATE(6855), 1, + STATE(6805), 1, sym_comment, - [229267] = 5, + ACTIONS(2500), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [219835] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2393), 1, sym__entry_separator, - ACTIONS(10971), 1, - anon_sym_RBRACK, - STATE(6193), 1, - aux_sym__multiple_types_repeat1, - STATE(6856), 1, + STATE(6806), 1, sym_comment, - [229283] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(10973), 1, + ACTIONS(2391), 2, anon_sym_RBRACK, - STATE(6857), 1, - sym_comment, - STATE(6859), 1, - aux_sym_val_binary_repeat1, - [229299] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [219849] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4485), 1, - aux_sym_unquoted_token4, - STATE(6858), 1, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + STATE(6807), 1, sym_comment, - STATE(7603), 1, - sym__expr_parenthesized_immediate, - [229315] = 5, - ACTIONS(249), 1, + ACTIONS(1886), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [219863] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, + ACTIONS(10949), 1, sym_hex_digit, - ACTIONS(10975), 1, + ACTIONS(11009), 1, anon_sym_RBRACK, - STATE(6859), 1, + STATE(6808), 1, sym_comment, - STATE(6903), 1, + STATE(6852), 1, aux_sym_val_binary_repeat1, - [229331] = 4, + [219879] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2545), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(6860), 1, - sym_comment, - ACTIONS(2543), 2, + ACTIONS(11011), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [229345] = 4, + STATE(6338), 1, + aux_sym__multiple_types_repeat1, + STATE(6809), 1, + sym_comment, + [219895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2003), 1, + ACTIONS(2415), 1, sym__entry_separator, - STATE(6861), 1, + STATE(6810), 1, sym_comment, - ACTIONS(2001), 2, + ACTIONS(2413), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229359] = 5, + [219909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10977), 1, + ACTIONS(11013), 1, anon_sym_RBRACK, - STATE(6406), 1, + STATE(6339), 1, aux_sym__multiple_types_repeat1, - STATE(6862), 1, + STATE(6811), 1, sym_comment, - [229375] = 4, + [219925] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2472), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(6863), 1, - sym_comment, - ACTIONS(2470), 2, + ACTIONS(11015), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [229389] = 5, + STATE(6340), 1, + aux_sym__multiple_types_repeat1, + STATE(6812), 1, + sym_comment, + [219941] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2345), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10979), 1, - anon_sym_RBRACE, - STATE(503), 1, + ACTIONS(11017), 1, + anon_sym_RBRACK, + STATE(6341), 1, aux_sym__multiple_types_repeat1, - STATE(6864), 1, + STATE(6813), 1, sym_comment, - [229405] = 5, + [219957] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10981), 1, + ACTIONS(11019), 1, anon_sym_RBRACK, - STATE(6407), 1, + STATE(6701), 1, aux_sym__multiple_types_repeat1, - STATE(6865), 1, + STATE(6814), 1, sym_comment, - [229421] = 5, + [219973] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10983), 1, + ACTIONS(11021), 1, anon_sym_RBRACK, - STATE(6408), 1, + STATE(6342), 1, aux_sym__multiple_types_repeat1, - STATE(6866), 1, + STATE(6815), 1, sym_comment, - [229437] = 5, + [219989] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10985), 1, + ACTIONS(11023), 1, anon_sym_RBRACK, - STATE(6409), 1, + STATE(6343), 1, aux_sym__multiple_types_repeat1, - STATE(6867), 1, + STATE(6816), 1, sym_comment, - [229453] = 5, + [220005] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10987), 1, + ACTIONS(11025), 1, anon_sym_RBRACK, - STATE(6410), 1, + STATE(6344), 1, aux_sym__multiple_types_repeat1, - STATE(6868), 1, - sym_comment, - [229469] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6869), 1, + STATE(6817), 1, sym_comment, - ACTIONS(1060), 3, - anon_sym_QMARK2, - anon_sym_DOT, - sym__table_head_separator, - [229481] = 4, + [220021] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2400), 1, + ACTIONS(2401), 1, sym__entry_separator, - STATE(6870), 1, + STATE(6818), 1, sym_comment, - ACTIONS(2398), 2, + ACTIONS(2399), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229495] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10989), 1, - anon_sym_RBRACK, - STATE(6411), 1, - aux_sym__multiple_types_repeat1, - STATE(6871), 1, - sym_comment, - [229511] = 5, + [220035] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(10991), 1, + ACTIONS(11027), 1, anon_sym_RBRACK, - STATE(6412), 1, + STATE(6345), 1, aux_sym__multiple_types_repeat1, - STATE(6872), 1, + STATE(6819), 1, sym_comment, - [229527] = 3, - ACTIONS(249), 1, + [220051] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6873), 1, + STATE(6820), 1, sym_comment, - ACTIONS(1064), 3, - anon_sym_QMARK2, - anon_sym_DOT, - sym__table_head_separator, - [229539] = 3, - ACTIONS(249), 1, + ACTIONS(10109), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220063] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6874), 1, + STATE(6821), 1, sym_comment, - ACTIONS(1040), 3, - anon_sym_QMARK2, - anon_sym_DOT, - sym__table_head_separator, - [229551] = 5, + ACTIONS(11029), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220075] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2423), 1, sym__entry_separator, - ACTIONS(10993), 1, - anon_sym_RBRACK, - STATE(6413), 1, - aux_sym__multiple_types_repeat1, - STATE(6875), 1, - sym_comment, - [229567] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6876), 1, + STATE(6822), 1, sym_comment, - ACTIONS(1056), 3, - anon_sym_QMARK2, - anon_sym_DOT, - sym__table_head_separator, - [229579] = 3, - ACTIONS(249), 1, + ACTIONS(2421), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220089] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6877), 1, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11031), 1, + anon_sym_RBRACK, + STATE(6823), 1, sym_comment, - ACTIONS(9998), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229591] = 4, + STATE(6949), 1, + aux_sym_val_binary_repeat1, + [220105] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2476), 1, + ACTIONS(2405), 1, sym__entry_separator, - STATE(6878), 1, + STATE(6824), 1, sym_comment, - ACTIONS(2474), 2, + ACTIONS(2403), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229605] = 4, + [220119] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2214), 1, + anon_sym_EQ_GT, + ACTIONS(2218), 1, + anon_sym_PIPE, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(6825), 1, + sym_comment, + [220135] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2097), 1, + ACTIONS(2377), 1, sym__entry_separator, - STATE(6879), 1, + STATE(6826), 1, sym_comment, - ACTIONS(2095), 2, + ACTIONS(2375), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229619] = 3, - ACTIONS(249), 1, + [220149] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6880), 1, + STATE(6827), 1, sym_comment, - ACTIONS(10801), 3, + ACTIONS(10286), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229631] = 4, + [220161] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2504), 1, - sym__entry_separator, - STATE(6881), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + ACTIONS(2222), 1, + anon_sym_EQ_GT, + ACTIONS(2224), 1, + anon_sym_PIPE, + STATE(6828), 1, sym_comment, - ACTIONS(2502), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [229645] = 4, + [220177] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2412), 1, + ACTIONS(2427), 1, sym__entry_separator, - STATE(6882), 1, + STATE(6829), 1, sym_comment, - ACTIONS(2410), 2, + ACTIONS(2425), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229659] = 5, - ACTIONS(249), 1, + [220191] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, + ACTIONS(10949), 1, sym_hex_digit, - ACTIONS(10995), 1, + ACTIONS(11033), 1, anon_sym_RBRACK, - STATE(6883), 1, + STATE(6830), 1, sym_comment, - STATE(6887), 1, + STATE(6834), 1, aux_sym_val_binary_repeat1, - [229675] = 5, - ACTIONS(3), 1, + [220207] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(10997), 1, - anon_sym_RBRACK, - STATE(6250), 1, - aux_sym__multiple_types_repeat1, - STATE(6884), 1, + STATE(6831), 1, sym_comment, - [229691] = 4, - ACTIONS(3), 1, + ACTIONS(6140), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220219] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2440), 1, - sym__entry_separator, - STATE(6885), 1, - sym_comment, - ACTIONS(2438), 2, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11035), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [229705] = 5, + STATE(6832), 1, + sym_comment, + STATE(6962), 1, + aux_sym_val_binary_repeat1, + [220235] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(4870), 1, - aux_sym_unquoted_token4, - STATE(6886), 1, + ACTIONS(11037), 1, + anon_sym_DQUOTE, + STATE(6833), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - [229721] = 5, - ACTIONS(249), 1, + ACTIONS(11039), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220249] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, + ACTIONS(10949), 1, sym_hex_digit, - ACTIONS(10999), 1, + ACTIONS(11041), 1, anon_sym_RBRACK, - STATE(6887), 1, + STATE(6834), 1, sym_comment, - STATE(6903), 1, + STATE(6852), 1, aux_sym_val_binary_repeat1, - [229737] = 4, - ACTIONS(3), 1, + [220265] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2533), 1, - sym__entry_separator, - STATE(6888), 1, + STATE(6835), 1, sym_comment, - ACTIONS(2531), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [229751] = 3, - ACTIONS(249), 1, + ACTIONS(6140), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220277] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6889), 1, + ACTIONS(11043), 1, + sym__table_head_separator, + STATE(6836), 1, sym_comment, - ACTIONS(9935), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229763] = 5, + ACTIONS(1030), 2, + anon_sym_RBRACK, + sym__entry_separator, + [220291] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11001), 1, + ACTIONS(11045), 1, anon_sym_RBRACK, - STATE(6428), 1, + STATE(6354), 1, aux_sym__multiple_types_repeat1, - STATE(6890), 1, - sym_comment, - [229779] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6891), 1, + STATE(6837), 1, sym_comment, - ACTIONS(6168), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [229791] = 3, - ACTIONS(249), 1, + [220307] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6892), 1, + STATE(6838), 1, sym_comment, - ACTIONS(9994), 3, + ACTIONS(10292), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229803] = 5, + [220319] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11003), 1, + ACTIONS(11047), 1, anon_sym_RBRACK, - STATE(6429), 1, + STATE(6355), 1, aux_sym__multiple_types_repeat1, - STATE(6893), 1, + STATE(6839), 1, sym_comment, - [229819] = 5, + [220335] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11005), 1, + ACTIONS(11049), 1, anon_sym_RBRACK, - STATE(6430), 1, + STATE(6356), 1, aux_sym__multiple_types_repeat1, - STATE(6894), 1, + STATE(6840), 1, sym_comment, - [229835] = 5, + [220351] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11007), 1, + ACTIONS(11051), 1, anon_sym_RBRACK, - STATE(6431), 1, + STATE(6357), 1, aux_sym__multiple_types_repeat1, - STATE(6895), 1, + STATE(6841), 1, + sym_comment, + [220367] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6842), 1, sym_comment, - [229851] = 5, + ACTIONS(6144), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220379] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11009), 1, + ACTIONS(11053), 1, anon_sym_RBRACK, - STATE(6432), 1, + STATE(6358), 1, aux_sym__multiple_types_repeat1, - STATE(6896), 1, + STATE(6843), 1, sym_comment, - [229867] = 5, + [220395] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2206), 1, + sym__newline, + ACTIONS(2210), 1, + sym__space, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(6844), 1, + sym_comment, + [220411] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6845), 1, + sym_comment, + ACTIONS(10188), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220423] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11011), 1, + ACTIONS(11055), 1, anon_sym_RBRACK, - STATE(6433), 1, + STATE(6359), 1, aux_sym__multiple_types_repeat1, - STATE(6897), 1, + STATE(6846), 1, sym_comment, - [229883] = 5, + [220439] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11013), 1, + ACTIONS(11057), 1, anon_sym_RBRACK, - STATE(6434), 1, + STATE(6360), 1, aux_sym__multiple_types_repeat1, - STATE(6898), 1, + STATE(6847), 1, sym_comment, - [229899] = 4, - ACTIONS(249), 1, + [220455] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1826), 1, - aux_sym_unquoted_token2, - STATE(6899), 1, + ACTIONS(3545), 1, + sym__newline, + ACTIONS(3547), 1, + sym__space, + STATE(1169), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6848), 1, sym_comment, - ACTIONS(1828), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [229913] = 5, - ACTIONS(249), 1, + [220471] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11015), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11059), 1, anon_sym_RBRACK, - STATE(6900), 1, + STATE(6361), 1, + aux_sym__multiple_types_repeat1, + STATE(6849), 1, sym_comment, - STATE(6994), 1, - aux_sym_val_binary_repeat1, - [229929] = 5, + [220487] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(11061), 1, + anon_sym_POUND_BANG, + ACTIONS(11063), 1, + sym__newline, + STATE(6850), 1, + sym_comment, + STATE(6900), 1, + aux_sym_shebang_repeat1, + [220503] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5714), 1, sym__entry_separator, - ACTIONS(11017), 1, + ACTIONS(11065), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(2694), 1, aux_sym__multiple_types_repeat1, - STATE(6901), 1, + STATE(6851), 1, sym_comment, - [229945] = 3, - ACTIONS(249), 1, + [220519] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6902), 1, + ACTIONS(11067), 1, + anon_sym_RBRACK, + ACTIONS(11069), 1, + sym_hex_digit, + STATE(6852), 2, sym_comment, - ACTIONS(6154), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [229957] = 4, - ACTIONS(249), 1, + aux_sym_val_binary_repeat1, + [220533] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11019), 1, + ACTIONS(2474), 1, + sym__entry_separator, + STATE(6853), 1, + sym_comment, + ACTIONS(2472), 2, anon_sym_RBRACK, - ACTIONS(11021), 1, + anon_sym_RBRACE, + [220547] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10949), 1, sym_hex_digit, - STATE(6903), 2, + ACTIONS(11072), 1, + anon_sym_RBRACK, + STATE(6854), 1, sym_comment, + STATE(6857), 1, aux_sym_val_binary_repeat1, - [229971] = 3, - ACTIONS(249), 1, + [220563] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6904), 1, + ACTIONS(11074), 1, + anon_sym_LPAREN, + STATE(6855), 1, sym_comment, - ACTIONS(10000), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229983] = 3, - ACTIONS(249), 1, + ACTIONS(11076), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [220577] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6905), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(6684), 1, + sym_block, + STATE(6856), 1, sym_comment, - ACTIONS(6138), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [229995] = 5, - ACTIONS(249), 1, + [220593] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, + ACTIONS(10949), 1, sym_hex_digit, - ACTIONS(11024), 1, + ACTIONS(11078), 1, anon_sym_RBRACK, - STATE(6906), 1, - sym_comment, - STATE(6909), 1, + STATE(6852), 1, aux_sym_val_binary_repeat1, - [230011] = 5, + STATE(6857), 1, + sym_comment, + [220609] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(6047), 1, - anon_sym_RBRACE, - STATE(2924), 1, + ACTIONS(11080), 1, + anon_sym_RBRACK, + STATE(6370), 1, aux_sym__multiple_types_repeat1, - STATE(6907), 1, + STATE(6858), 1, sym_comment, - [230027] = 3, - ACTIONS(249), 1, + [220625] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6908), 1, + STATE(6859), 1, sym_comment, - ACTIONS(11026), 3, + ACTIONS(11082), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [230039] = 5, - ACTIONS(249), 1, + [220637] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11028), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11084), 1, anon_sym_RBRACK, - STATE(6903), 1, - aux_sym_val_binary_repeat1, - STATE(6909), 1, + STATE(6371), 1, + aux_sym__multiple_types_repeat1, + STATE(6860), 1, sym_comment, - [230055] = 4, - ACTIONS(249), 1, + [220653] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1366), 1, - anon_sym_RPAREN, - STATE(6910), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11086), 1, + anon_sym_RBRACK, + STATE(6372), 1, + aux_sym__multiple_types_repeat1, + STATE(6861), 1, sym_comment, - ACTIONS(1359), 2, - sym__newline, - anon_sym_SEMI, - [230069] = 5, + [220669] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11030), 1, + ACTIONS(11088), 1, anon_sym_RBRACK, - STATE(6444), 1, + STATE(6373), 1, aux_sym__multiple_types_repeat1, - STATE(6911), 1, + STATE(6862), 1, sym_comment, - [230085] = 3, - ACTIONS(249), 1, + [220685] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6912), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11090), 1, + anon_sym_RBRACK, + STATE(6374), 1, + aux_sym__multiple_types_repeat1, + STATE(6863), 1, sym_comment, - ACTIONS(1366), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [230097] = 3, - ACTIONS(249), 1, + [220701] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6913), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11092), 1, + anon_sym_RBRACK, + STATE(6375), 1, + aux_sym__multiple_types_repeat1, + STATE(6864), 1, sym_comment, - ACTIONS(10016), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230109] = 5, + [220717] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11032), 1, + ACTIONS(11094), 1, anon_sym_RBRACK, - STATE(6445), 1, + STATE(6376), 1, aux_sym__multiple_types_repeat1, - STATE(6914), 1, + STATE(6865), 1, sym_comment, - [230125] = 5, + [220733] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2345), 1, sym__entry_separator, - ACTIONS(11034), 1, + STATE(6866), 1, + sym_comment, + ACTIONS(2343), 2, anon_sym_RBRACK, - STATE(6446), 1, - aux_sym__multiple_types_repeat1, - STATE(6915), 1, + anon_sym_RBRACE, + [220747] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6221), 1, + anon_sym_AT, + ACTIONS(11096), 1, + anon_sym_GT2, + STATE(6867), 1, sym_comment, - [230141] = 5, + STATE(7849), 1, + sym_param_cmd, + [220763] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11036), 1, + ACTIONS(11098), 1, anon_sym_RBRACK, - STATE(6447), 1, + STATE(6377), 1, aux_sym__multiple_types_repeat1, - STATE(6916), 1, + STATE(6868), 1, sym_comment, - [230157] = 5, + [220779] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11038), 1, + ACTIONS(11100), 1, anon_sym_RBRACK, - STATE(6448), 1, + STATE(6661), 1, aux_sym__multiple_types_repeat1, - STATE(6917), 1, + STATE(6869), 1, + sym_comment, + [220795] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10033), 1, + anon_sym_if, + ACTIONS(11102), 1, + anon_sym_EQ_GT, + STATE(6870), 1, + sym_comment, + STATE(7887), 1, + sym_match_guard, + [220811] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2369), 1, + sym__entry_separator, + STATE(6871), 1, sym_comment, - [230173] = 4, + ACTIONS(2367), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220825] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, + ACTIONS(1974), 1, sym__entry_separator, - STATE(6918), 1, + STATE(6872), 1, sym_comment, - ACTIONS(1628), 2, + ACTIONS(1972), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [230187] = 5, + [220839] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11040), 1, + ACTIONS(11104), 1, anon_sym_RBRACK, - STATE(6449), 1, + STATE(6663), 1, aux_sym__multiple_types_repeat1, - STATE(6919), 1, + STATE(6873), 1, sym_comment, - [230203] = 5, + [220855] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11042), 1, + ACTIONS(11106), 1, anon_sym_RBRACK, - STATE(6450), 1, + STATE(6668), 1, aux_sym__multiple_types_repeat1, - STATE(6920), 1, + STATE(6874), 1, + sym_comment, + [220871] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11108), 1, + anon_sym_RBRACK, + STATE(6875), 1, sym_comment, - [230219] = 4, + STATE(6881), 1, + aux_sym_val_binary_repeat1, + [220887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1092), 1, + ACTIONS(2353), 1, sym__entry_separator, - STATE(6921), 1, + STATE(6876), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(2351), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [230233] = 4, + [220901] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2408), 1, + ACTIONS(1915), 1, sym__entry_separator, - STATE(6922), 1, + STATE(6877), 1, sym_comment, - ACTIONS(2406), 2, + ACTIONS(1913), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [230247] = 5, + [220915] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11044), 1, - anon_sym_RBRACK, - STATE(6451), 1, - aux_sym__multiple_types_repeat1, - STATE(6923), 1, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + ACTIONS(5938), 1, + anon_sym_EQ_GT, + ACTIONS(5943), 1, + anon_sym_PIPE, + STATE(6878), 1, sym_comment, - [230263] = 5, - ACTIONS(249), 1, + [220931] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11046), 1, - anon_sym_RBRACK, - STATE(6903), 1, - aux_sym_val_binary_repeat1, - STATE(6924), 1, + STATE(6879), 1, sym_comment, - [230279] = 3, - ACTIONS(249), 1, + ACTIONS(10815), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220943] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6925), 1, + STATE(6880), 1, sym_comment, - ACTIONS(11048), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [230291] = 3, - ACTIONS(249), 1, + ACTIONS(10913), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220955] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6926), 1, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11110), 1, + anon_sym_RBRACK, + STATE(6852), 1, + aux_sym_val_binary_repeat1, + STATE(6881), 1, sym_comment, - ACTIONS(5893), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [230303] = 5, + [220971] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, + ACTIONS(2431), 1, sym__entry_separator, - ACTIONS(11050), 1, - anon_sym_RBRACE, - STATE(2907), 1, - aux_sym__multiple_types_repeat1, - STATE(6927), 1, + STATE(6882), 1, sym_comment, - [230319] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(11052), 1, + ACTIONS(2429), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2908), 1, - aux_sym__multiple_types_repeat1, - STATE(6928), 1, - sym_comment, - [230335] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(6929), 1, - sym_comment, - ACTIONS(6162), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [230347] = 4, + [220985] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2508), 1, + ACTIONS(2435), 1, sym__entry_separator, - STATE(6930), 1, + STATE(6883), 1, sym_comment, - ACTIONS(2506), 2, + ACTIONS(2433), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [230361] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11054), 1, - anon_sym_RBRACK, - STATE(6931), 1, - sym_comment, - STATE(6933), 1, - aux_sym_val_binary_repeat1, - [230377] = 5, + [220999] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_LPAREN2, - ACTIONS(1699), 1, - aux_sym__unquoted_in_record_token4, - STATE(6932), 1, - sym_comment, - STATE(7449), 1, - sym__expr_parenthesized_immediate, - [230393] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11056), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11112), 1, anon_sym_RBRACK, - STATE(6903), 1, - aux_sym_val_binary_repeat1, - STATE(6933), 1, + STATE(6387), 1, + aux_sym__multiple_types_repeat1, + STATE(6884), 1, sym_comment, - [230409] = 5, + [221015] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6044), 1, sym__entry_separator, - ACTIONS(11058), 1, - anon_sym_RBRACK, - STATE(6458), 1, + ACTIONS(11114), 1, + anon_sym_RBRACE, + STATE(2911), 1, aux_sym__multiple_types_repeat1, - STATE(6934), 1, + STATE(6885), 1, sym_comment, - [230425] = 4, + [221031] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, + ACTIONS(2478), 1, sym__entry_separator, - STATE(6935), 1, + STATE(6886), 1, sym_comment, - ACTIONS(2079), 2, + ACTIONS(2476), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [230439] = 5, + [221045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11060), 1, + ACTIONS(11116), 1, anon_sym_RBRACK, - STATE(6459), 1, + STATE(6388), 1, aux_sym__multiple_types_repeat1, - STATE(6936), 1, + STATE(6887), 1, sym_comment, - [230455] = 5, + [221061] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11062), 1, + ACTIONS(11118), 1, anon_sym_RBRACK, - STATE(6460), 1, + STATE(6389), 1, aux_sym__multiple_types_repeat1, - STATE(6937), 1, + STATE(6888), 1, sym_comment, - [230471] = 5, + [221077] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11064), 1, + ACTIONS(11120), 1, anon_sym_RBRACK, - STATE(6461), 1, + STATE(6390), 1, aux_sym__multiple_types_repeat1, - STATE(6938), 1, + STATE(6889), 1, sym_comment, - [230487] = 3, - ACTIONS(249), 1, + [221093] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6939), 1, + STATE(6890), 1, sym_comment, - ACTIONS(6172), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [230499] = 5, + ACTIONS(10915), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221105] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11066), 1, + ACTIONS(11122), 1, anon_sym_RBRACK, - STATE(6462), 1, + STATE(6391), 1, aux_sym__multiple_types_repeat1, - STATE(6940), 1, + STATE(6891), 1, sym_comment, - [230515] = 5, + [221121] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2214), 1, + sym__newline, + ACTIONS(2218), 1, + sym__space, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(6892), 1, + sym_comment, + [221137] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + ACTIONS(2222), 1, + sym__newline, + ACTIONS(2224), 1, + sym__space, + STATE(6893), 1, + sym_comment, + [221153] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11068), 1, + ACTIONS(11124), 1, anon_sym_RBRACK, - STATE(6217), 1, + STATE(6392), 1, aux_sym__multiple_types_repeat1, - STATE(6941), 1, + STATE(6894), 1, sym_comment, - [230531] = 5, + [221169] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11070), 1, + ACTIONS(11126), 1, anon_sym_RBRACK, - STATE(6463), 1, + STATE(6393), 1, aux_sym__multiple_types_repeat1, - STATE(6942), 1, + STATE(6895), 1, sym_comment, - [230547] = 5, + [221185] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2173), 1, sym__entry_separator, - ACTIONS(11072), 1, + STATE(6896), 1, + sym_comment, + ACTIONS(2167), 2, anon_sym_RBRACK, - STATE(6464), 1, - aux_sym__multiple_types_repeat1, - STATE(6943), 1, + anon_sym_RBRACE, + [221199] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2357), 1, + sym__entry_separator, + STATE(6897), 1, sym_comment, - [230563] = 5, + ACTIONS(2355), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221213] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11074), 1, + ACTIONS(11128), 1, anon_sym_RBRACK, - STATE(6465), 1, + STATE(6394), 1, aux_sym__multiple_types_repeat1, - STATE(6944), 1, + STATE(6898), 1, sym_comment, - [230579] = 3, - ACTIONS(249), 1, + [221229] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6945), 1, + ACTIONS(2373), 1, + sym__entry_separator, + STATE(6899), 1, sym_comment, - ACTIONS(10783), 3, + ACTIONS(2371), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221243] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1296), 1, + anon_sym_POUND_BANG, + ACTIONS(11130), 1, + sym__newline, + STATE(6900), 2, + sym_comment, + aux_sym_shebang_repeat1, + [221257] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6901), 1, + sym_comment, + ACTIONS(10875), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230591] = 4, + [221269] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10236), 1, + ACTIONS(11133), 1, anon_sym_LPAREN, - STATE(6946), 1, + STATE(6902), 1, sym_comment, - ACTIONS(10238), 2, + ACTIONS(11135), 2, sym_unescaped_interpolated_content, anon_sym_SQUOTE, - [230605] = 4, - ACTIONS(249), 1, + [221283] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2181), 1, + sym__entry_separator, + STATE(6903), 1, + sym_comment, + ACTIONS(2175), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221297] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1755), 1, aux_sym_unquoted_token2, - STATE(6947), 1, + STATE(6904), 1, sym_comment, - ACTIONS(1796), 2, + ACTIONS(1757), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [230619] = 4, + [221311] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2553), 1, + ACTIONS(2361), 1, sym__entry_separator, - STATE(6948), 1, + STATE(6905), 1, sym_comment, - ACTIONS(2551), 2, + ACTIONS(2359), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [230633] = 4, - ACTIONS(249), 1, + [221325] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8580), 1, - aux_sym_unquoted_token2, - STATE(6949), 1, + STATE(6906), 1, sym_comment, - ACTIONS(1640), 2, - sym_identifier, - anon_sym_DOLLAR, - [230647] = 5, - ACTIONS(249), 1, + ACTIONS(10943), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221337] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, + STATE(6907), 1, + sym_comment, + ACTIONS(10767), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221349] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10949), 1, sym_hex_digit, - ACTIONS(11076), 1, + ACTIONS(11137), 1, anon_sym_RBRACK, - STATE(6950), 1, + STATE(6908), 1, sym_comment, - STATE(6952), 1, + STATE(6911), 1, aux_sym_val_binary_repeat1, - [230663] = 4, + [221365] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6909), 1, + sym_comment, + ACTIONS(10348), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221377] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2424), 1, + ACTIONS(2290), 1, sym__entry_separator, - STATE(6951), 1, - sym_comment, - ACTIONS(2422), 2, - anon_sym_RBRACK, + ACTIONS(11139), 1, anon_sym_RBRACE, - [230677] = 5, - ACTIONS(249), 1, + STATE(584), 1, + aux_sym__multiple_types_repeat1, + STATE(6910), 1, + sym_comment, + [221393] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, + ACTIONS(10949), 1, sym_hex_digit, - ACTIONS(11078), 1, + ACTIONS(11141), 1, anon_sym_RBRACK, - STATE(6903), 1, + STATE(6852), 1, aux_sym_val_binary_repeat1, - STATE(6952), 1, + STATE(6911), 1, + sym_comment, + [221409] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6912), 1, sym_comment, - [230693] = 5, + ACTIONS(11143), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [221421] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11080), 1, + ACTIONS(11145), 1, anon_sym_RBRACK, - STATE(6473), 1, + STATE(6403), 1, aux_sym__multiple_types_repeat1, - STATE(6953), 1, + STATE(6913), 1, sym_comment, - [230709] = 4, - ACTIONS(249), 1, + [221437] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1715), 1, - aux_sym_unquoted_token2, - STATE(6954), 1, + STATE(6914), 1, sym_comment, - ACTIONS(1717), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [230723] = 5, + ACTIONS(10503), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221449] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6915), 1, + sym_comment, + ACTIONS(10503), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221461] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11082), 1, + ACTIONS(11147), 1, anon_sym_RBRACK, - STATE(6474), 1, + STATE(6404), 1, aux_sym__multiple_types_repeat1, - STATE(6955), 1, + STATE(6916), 1, sym_comment, - [230739] = 5, + [221477] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11084), 1, + ACTIONS(11149), 1, anon_sym_RBRACK, - STATE(6475), 1, + STATE(6405), 1, aux_sym__multiple_types_repeat1, - STATE(6956), 1, + STATE(6917), 1, sym_comment, - [230755] = 5, + [221493] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11086), 1, + ACTIONS(11151), 1, anon_sym_RBRACK, - STATE(6476), 1, + STATE(6406), 1, aux_sym__multiple_types_repeat1, - STATE(6957), 1, + STATE(6918), 1, sym_comment, - [230771] = 4, + [221509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2559), 1, - sym__entry_separator, - STATE(6958), 1, + ACTIONS(10439), 1, + anon_sym_LPAREN, + STATE(6919), 1, sym_comment, - ACTIONS(2557), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [230785] = 5, + ACTIONS(10441), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [221523] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11088), 1, + ACTIONS(11153), 1, anon_sym_RBRACK, - STATE(6477), 1, + STATE(6407), 1, aux_sym__multiple_types_repeat1, - STATE(6959), 1, + STATE(6920), 1, sym_comment, - [230801] = 3, - ACTIONS(249), 1, + [221539] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6960), 1, + STATE(6921), 1, sym_comment, - ACTIONS(11090), 3, + ACTIONS(10133), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [230813] = 4, + [221551] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2468), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(6961), 1, - sym_comment, - ACTIONS(2466), 2, + ACTIONS(11155), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [230827] = 5, + STATE(6408), 1, + aux_sym__multiple_types_repeat1, + STATE(6922), 1, + sym_comment, + [221567] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11092), 1, + ACTIONS(11157), 1, anon_sym_RBRACK, - STATE(6478), 1, + STATE(6409), 1, aux_sym__multiple_types_repeat1, - STATE(6962), 1, + STATE(6923), 1, + sym_comment, + [221583] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1292), 1, + anon_sym_RPAREN, + STATE(6924), 1, sym_comment, - [230843] = 5, + ACTIONS(1285), 2, + sym__newline, + anon_sym_SEMI, + [221597] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11094), 1, + ACTIONS(11159), 1, anon_sym_RBRACK, - STATE(6479), 1, + STATE(6410), 1, aux_sym__multiple_types_repeat1, - STATE(6963), 1, + STATE(6925), 1, sym_comment, - [230859] = 4, + [221613] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2019), 1, - sym__entry_separator, - STATE(6964), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(7218), 1, + aux_sym_unquoted_token4, + STATE(6926), 1, sym_comment, - ACTIONS(2017), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [230873] = 4, - ACTIONS(3), 1, + STATE(7412), 1, + sym__expr_parenthesized_immediate, + [221629] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2378), 1, - anon_sym_RBRACE, - STATE(6965), 1, + STATE(6927), 1, sym_comment, - ACTIONS(2380), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [230887] = 5, - ACTIONS(3), 1, + ACTIONS(10811), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221641] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11096), 1, + ACTIONS(11163), 1, + anon_sym_COMMA, + STATE(6928), 1, + sym_comment, + ACTIONS(11161), 2, anon_sym_RBRACK, - STATE(6480), 1, - aux_sym__multiple_types_repeat1, - STATE(6966), 1, + sym_hex_digit, + [221655] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6929), 1, sym_comment, - [230903] = 3, - ACTIONS(249), 1, + ACTIONS(10368), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221667] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6967), 1, + STATE(6930), 1, + sym_comment, + ACTIONS(10917), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221679] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6931), 1, + sym_comment, + ACTIONS(1292), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [221691] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6932), 1, sym_comment, - ACTIONS(5900), 3, + ACTIONS(5936), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [230915] = 5, - ACTIONS(3), 1, + [221703] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5672), 1, - sym__entry_separator, - ACTIONS(11098), 1, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11165), 1, anon_sym_RBRACK, - STATE(2658), 1, - aux_sym__multiple_types_repeat1, - STATE(6968), 1, + STATE(6933), 1, sym_comment, - [230931] = 4, - ACTIONS(3), 1, + STATE(6934), 1, + aux_sym_val_binary_repeat1, + [221719] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2228), 1, - sym__entry_separator, - STATE(6969), 1, - sym_comment, - ACTIONS(2222), 2, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11167), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [230945] = 5, + STATE(6852), 1, + aux_sym_val_binary_repeat1, + STATE(6934), 1, + sym_comment, + [221735] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5672), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11100), 1, + ACTIONS(11169), 1, anon_sym_RBRACK, - STATE(2635), 1, + STATE(6417), 1, aux_sym__multiple_types_repeat1, - STATE(6970), 1, + STATE(6935), 1, sym_comment, - [230961] = 3, - ACTIONS(249), 1, + [221751] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6971), 1, + STATE(6936), 1, sym_comment, - ACTIONS(10714), 3, + ACTIONS(10553), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230973] = 5, + [221763] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6044), 1, sym__entry_separator, - ACTIONS(11102), 1, - anon_sym_RBRACK, - STATE(6659), 1, + ACTIONS(6060), 1, + anon_sym_RBRACE, + STATE(2926), 1, aux_sym__multiple_types_repeat1, - STATE(6972), 1, + STATE(6937), 1, sym_comment, - [230989] = 5, + [221779] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11104), 1, + ACTIONS(11171), 1, anon_sym_RBRACK, - STATE(6660), 1, + STATE(6418), 1, aux_sym__multiple_types_repeat1, - STATE(6973), 1, - sym_comment, - [231005] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11106), 1, - anon_sym_RBRACK, - STATE(6974), 1, + STATE(6938), 1, sym_comment, - STATE(6976), 1, - aux_sym_val_binary_repeat1, - [231021] = 5, + [221795] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11108), 1, + ACTIONS(11173), 1, anon_sym_RBRACK, - STATE(6661), 1, + STATE(6419), 1, aux_sym__multiple_types_repeat1, - STATE(6975), 1, - sym_comment, - [231037] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11110), 1, - anon_sym_RBRACK, - STATE(6903), 1, - aux_sym_val_binary_repeat1, - STATE(6976), 1, + STATE(6939), 1, sym_comment, - [231053] = 5, + [221811] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11112), 1, + ACTIONS(11175), 1, anon_sym_RBRACK, - STATE(6488), 1, + STATE(6420), 1, aux_sym__multiple_types_repeat1, - STATE(6977), 1, + STATE(6940), 1, sym_comment, - [231069] = 5, + [221827] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2139), 1, sym__entry_separator, - ACTIONS(11114), 1, - anon_sym_RBRACK, - STATE(6489), 1, - aux_sym__multiple_types_repeat1, - STATE(6978), 1, + STATE(6941), 1, sym_comment, - [231085] = 5, + ACTIONS(2133), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221841] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11116), 1, + ACTIONS(11177), 1, anon_sym_RBRACK, - STATE(6490), 1, + STATE(6421), 1, aux_sym__multiple_types_repeat1, - STATE(6979), 1, + STATE(6942), 1, sym_comment, - [231101] = 5, + [221857] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11118), 1, + ACTIONS(11179), 1, anon_sym_RBRACK, - STATE(6491), 1, + STATE(6422), 1, aux_sym__multiple_types_repeat1, - STATE(6980), 1, - sym_comment, - [231117] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(11120), 1, - aux_sym_cmd_identifier_token41, - STATE(6981), 1, + STATE(6943), 1, sym_comment, - ACTIONS(11122), 2, - sym_filesize_unit, - sym_duration_unit, - [231131] = 5, + [221873] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11124), 1, + ACTIONS(11181), 1, anon_sym_RBRACK, - STATE(6492), 1, + STATE(6212), 1, aux_sym__multiple_types_repeat1, - STATE(6982), 1, + STATE(6944), 1, sym_comment, - [231147] = 3, - ACTIONS(249), 1, + [221889] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6983), 1, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + STATE(6945), 1, sym_comment, - ACTIONS(5666), 3, + ACTIONS(1741), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [231159] = 5, + [221903] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11126), 1, + ACTIONS(11183), 1, anon_sym_RBRACK, - STATE(6493), 1, + STATE(6424), 1, aux_sym__multiple_types_repeat1, - STATE(6984), 1, + STATE(6946), 1, sym_comment, - [231175] = 5, + [221919] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(1990), 1, sym__entry_separator, - ACTIONS(11128), 1, + STATE(6947), 1, + sym_comment, + ACTIONS(1988), 2, anon_sym_RBRACK, - STATE(6494), 1, + anon_sym_RBRACE, + [221933] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11185), 1, + anon_sym_RBRACK, + STATE(6683), 1, aux_sym__multiple_types_repeat1, - STATE(6985), 1, + STATE(6948), 1, sym_comment, - [231191] = 4, - ACTIONS(3), 1, + [221949] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11130), 1, - anon_sym_DQUOTE, - STATE(6986), 1, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11187), 1, + anon_sym_RBRACK, + STATE(6852), 1, + aux_sym_val_binary_repeat1, + STATE(6949), 1, sym_comment, - ACTIONS(11132), 2, - sym__escaped_str_content, - sym_escape_sequence, - [231205] = 5, - ACTIONS(3), 1, + [221965] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11134), 1, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11189), 1, anon_sym_RBRACK, - STATE(6495), 1, - aux_sym__multiple_types_repeat1, - STATE(6987), 1, + STATE(6950), 1, sym_comment, - [231221] = 3, - ACTIONS(249), 1, + STATE(6955), 1, + aux_sym_val_binary_repeat1, + [221981] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6988), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + STATE(6951), 1, sym_comment, - ACTIONS(10735), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231233] = 3, - ACTIONS(249), 1, + ACTIONS(1874), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [221995] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6989), 1, + STATE(6952), 1, sym_comment, - ACTIONS(11136), 3, + ACTIONS(10765), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [231245] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(11140), 1, - anon_sym_COMMA, - STATE(6990), 1, - sym_comment, - ACTIONS(11138), 2, - anon_sym_RBRACK, - sym_hex_digit, - [231259] = 4, + [222007] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, + ACTIONS(2290), 1, sym__entry_separator, - STATE(6991), 1, - sym_comment, - ACTIONS(2043), 2, - anon_sym_RBRACK, + ACTIONS(11191), 1, anon_sym_RBRACE, - [231273] = 3, - ACTIONS(249), 1, + STATE(587), 1, + aux_sym__multiple_types_repeat1, + STATE(6953), 1, + sym_comment, + [222023] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6992), 1, + STATE(6954), 1, sym_comment, - ACTIONS(11142), 3, + ACTIONS(10553), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [231285] = 5, - ACTIONS(249), 1, + [222035] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, + ACTIONS(10949), 1, sym_hex_digit, - ACTIONS(11144), 1, + ACTIONS(11193), 1, anon_sym_RBRACK, - STATE(6752), 1, + STATE(6852), 1, aux_sym_val_binary_repeat1, - STATE(6993), 1, + STATE(6955), 1, sym_comment, - [231301] = 5, - ACTIONS(249), 1, + [222051] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11146), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11195), 1, anon_sym_RBRACK, - STATE(6903), 1, - aux_sym_val_binary_repeat1, - STATE(6994), 1, - sym_comment, - [231317] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1703), 1, - aux_sym_unquoted_token2, - STATE(6995), 1, + STATE(6431), 1, + aux_sym__multiple_types_repeat1, + STATE(6956), 1, sym_comment, - ACTIONS(1705), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [231331] = 3, - ACTIONS(249), 1, + [222067] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6996), 1, + STATE(6957), 1, sym_comment, - ACTIONS(11148), 3, + ACTIONS(10767), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [231343] = 4, + [222079] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2541), 1, - sym__entry_separator, - STATE(6997), 1, + ACTIONS(11197), 1, + sym__table_head_separator, + STATE(6958), 1, sym_comment, - ACTIONS(2539), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [231357] = 5, + sym__entry_separator, + [222093] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11150), 1, + ACTIONS(11199), 1, anon_sym_RBRACK, - STATE(6501), 1, + STATE(6432), 1, aux_sym__multiple_types_repeat1, - STATE(6998), 1, + STATE(6959), 1, sym_comment, - [231373] = 5, + [222109] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11152), 1, + ACTIONS(11201), 1, anon_sym_RBRACK, - STATE(6502), 1, + STATE(6433), 1, aux_sym__multiple_types_repeat1, - STATE(6999), 1, + STATE(6960), 1, sym_comment, - [231389] = 5, + [222125] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11154), 1, + ACTIONS(11203), 1, anon_sym_RBRACK, - STATE(6503), 1, + STATE(6434), 1, aux_sym__multiple_types_repeat1, - STATE(7000), 1, + STATE(6961), 1, + sym_comment, + [222141] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11205), 1, + anon_sym_RBRACK, + STATE(6852), 1, + aux_sym_val_binary_repeat1, + STATE(6962), 1, sym_comment, - [231405] = 5, + [222157] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11156), 1, + ACTIONS(11207), 1, anon_sym_RBRACK, - STATE(6504), 1, + STATE(6435), 1, aux_sym__multiple_types_repeat1, - STATE(7001), 1, + STATE(6963), 1, sym_comment, - [231421] = 4, - ACTIONS(249), 1, + [222173] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5087), 1, - aux_sym_cmd_identifier_token41, - STATE(7002), 1, + ACTIONS(2290), 1, + sym__entry_separator, + ACTIONS(2306), 1, + anon_sym_RBRACE, + STATE(589), 1, + aux_sym__multiple_types_repeat1, + STATE(6964), 1, sym_comment, - ACTIONS(11158), 2, - sym_filesize_unit, - sym_duration_unit, - [231435] = 5, + [222189] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(5714), 1, sym__entry_separator, - ACTIONS(11160), 1, + ACTIONS(11209), 1, anon_sym_RBRACK, - STATE(6505), 1, + STATE(2658), 1, aux_sym__multiple_types_repeat1, - STATE(7003), 1, + STATE(6965), 1, sym_comment, - [231451] = 4, + [222205] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(7004), 1, - sym_comment, - ACTIONS(1909), 2, + ACTIONS(11211), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [231465] = 5, + STATE(6436), 1, + aux_sym__multiple_types_repeat1, + STATE(6966), 1, + sym_comment, + [222221] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11162), 1, + ACTIONS(11213), 1, anon_sym_RBRACK, - STATE(6751), 1, + STATE(6437), 1, aux_sym__multiple_types_repeat1, - STATE(7005), 1, + STATE(6967), 1, sym_comment, - [231481] = 5, + [222237] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(5878), 1, sym__entry_separator, - ACTIONS(11164), 1, + ACTIONS(11215), 1, anon_sym_RBRACK, - STATE(6507), 1, + STATE(2791), 1, aux_sym__multiple_types_repeat1, - STATE(7006), 1, + STATE(6968), 1, sym_comment, - [231497] = 5, + [222253] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_RBRACK, - ACTIONS(1640), 1, + ACTIONS(2482), 1, sym__entry_separator, - ACTIONS(8643), 1, - aux_sym__unquoted_in_list_token2, - STATE(7007), 1, - sym_comment, - [231513] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6257), 1, - anon_sym_AT, - ACTIONS(11166), 1, - anon_sym_GT, - STATE(7008), 1, + STATE(6969), 1, sym_comment, - STATE(8068), 1, - sym_param_cmd, - [231529] = 5, + ACTIONS(2480), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222267] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11168), 1, + ACTIONS(11217), 1, anon_sym_RBRACK, - STATE(6508), 1, + STATE(6438), 1, aux_sym__multiple_types_repeat1, - STATE(7009), 1, + STATE(6970), 1, sym_comment, - [231545] = 3, - ACTIONS(249), 1, + [222283] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7010), 1, + STATE(6971), 1, sym_comment, - ACTIONS(9954), 3, + ACTIONS(10135), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231557] = 3, - ACTIONS(249), 1, + [222295] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7011), 1, + STATE(6972), 1, + sym_comment, + ACTIONS(6158), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [222307] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1783), 1, + aux_sym_unquoted_token2, + STATE(6973), 1, + sym_comment, + ACTIONS(1785), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [222321] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6974), 1, sym_comment, - ACTIONS(9996), 3, + ACTIONS(10194), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231569] = 5, - ACTIONS(3), 1, + [222333] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11170), 1, + STATE(6975), 1, + sym_comment, + ACTIONS(10135), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222345] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11219), 1, anon_sym_RBRACK, - STATE(6514), 1, - aux_sym__multiple_types_repeat1, - STATE(7012), 1, + STATE(6748), 1, + aux_sym_val_binary_repeat1, + STATE(6976), 1, sym_comment, - [231585] = 5, + [222361] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2345), 1, + ACTIONS(2443), 1, sym__entry_separator, - ACTIONS(11172), 1, + STATE(6977), 1, + sym_comment, + ACTIONS(2441), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(539), 1, - aux_sym__multiple_types_repeat1, - STATE(7013), 1, + [222375] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + ACTIONS(8667), 1, + aux_sym__unquoted_in_list_token4, + STATE(6978), 1, + sym_comment, + STATE(7456), 1, + sym__expr_parenthesized_immediate, + [222391] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6979), 1, sym_comment, - [231601] = 5, + ACTIONS(10781), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222403] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11174), 1, + ACTIONS(11221), 1, anon_sym_RBRACK, - STATE(6515), 1, + STATE(6444), 1, aux_sym__multiple_types_repeat1, - STATE(7014), 1, + STATE(6980), 1, sym_comment, - [231617] = 5, + [222419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11176), 1, - anon_sym_RBRACK, - STATE(6516), 1, - aux_sym__multiple_types_repeat1, - STATE(7015), 1, + ACTIONS(5051), 1, + sym__space, + ACTIONS(5053), 1, + sym__newline, + ACTIONS(11223), 1, + anon_sym_EQ2, + STATE(6981), 1, sym_comment, - [231633] = 5, + [222435] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11178), 1, + ACTIONS(11225), 1, anon_sym_RBRACK, - STATE(6517), 1, + STATE(6445), 1, aux_sym__multiple_types_repeat1, - STATE(7016), 1, + STATE(6982), 1, sym_comment, - [231649] = 5, + [222451] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11180), 1, + ACTIONS(11227), 1, anon_sym_RBRACK, - STATE(6518), 1, + STATE(6446), 1, aux_sym__multiple_types_repeat1, - STATE(7017), 1, + STATE(6983), 1, sym_comment, - [231665] = 5, + [222467] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11182), 1, + ACTIONS(11229), 1, anon_sym_RBRACK, - STATE(6519), 1, + STATE(6447), 1, aux_sym__multiple_types_repeat1, - STATE(7018), 1, + STATE(6984), 1, sym_comment, - [231681] = 5, + [222483] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11184), 1, + ACTIONS(11231), 1, anon_sym_RBRACK, - STATE(6520), 1, + STATE(6448), 1, aux_sym__multiple_types_repeat1, - STATE(7019), 1, + STATE(6985), 1, sym_comment, - [231697] = 5, - ACTIONS(249), 1, + [222499] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11186), 1, - anon_sym_RBRACK, - STATE(7020), 1, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + STATE(6986), 1, sym_comment, - STATE(7041), 1, - aux_sym_val_binary_repeat1, - [231713] = 3, - ACTIONS(249), 1, + ACTIONS(2238), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [222513] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7021), 1, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + STATE(6987), 1, sym_comment, - ACTIONS(11188), 3, + ACTIONS(1892), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [231725] = 5, + [222527] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11190), 1, + ACTIONS(11233), 1, anon_sym_RBRACK, - STATE(6521), 1, + STATE(6449), 1, aux_sym__multiple_types_repeat1, - STATE(7022), 1, + STATE(6988), 1, sym_comment, - [231741] = 4, - ACTIONS(249), 1, + [222543] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11192), 1, - anon_sym_PIPE, - ACTIONS(11195), 1, - anon_sym_EQ_GT, - STATE(7023), 2, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11235), 1, + anon_sym_RBRACK, + STATE(6450), 1, + aux_sym__multiple_types_repeat1, + STATE(6989), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [231755] = 5, + [222559] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2345), 1, + ACTIONS(6044), 1, sym__entry_separator, - ACTIONS(11197), 1, + ACTIONS(6062), 1, anon_sym_RBRACE, - STATE(540), 1, + STATE(2933), 1, aux_sym__multiple_types_repeat1, - STATE(7024), 1, + STATE(6990), 1, sym_comment, - [231771] = 4, + [222575] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1351), 1, - anon_sym_POUND_BANG, - ACTIONS(11199), 1, - sym__newline, - STATE(7025), 2, + ACTIONS(1994), 1, + sym__entry_separator, + STATE(6991), 1, sym_comment, - aux_sym_shebang_repeat1, - [231785] = 3, - ACTIONS(249), 1, + ACTIONS(1992), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222589] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7026), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11237), 1, + anon_sym_RBRACK, + STATE(6451), 1, + aux_sym__multiple_types_repeat1, + STATE(6992), 1, sym_comment, - ACTIONS(11202), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [231797] = 3, - ACTIONS(249), 1, + [222605] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7027), 1, + STATE(6993), 1, + sym_comment, + ACTIONS(5748), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [222617] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6994), 1, sym_comment, - ACTIONS(10308), 3, + ACTIONS(10139), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231809] = 5, - ACTIONS(3), 1, + [222629] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11204), 1, - anon_sym_RBRACK, - STATE(6525), 1, - aux_sym__multiple_types_repeat1, - STATE(7028), 1, + STATE(6995), 1, sym_comment, - [231825] = 3, - ACTIONS(249), 1, + ACTIONS(6162), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [222641] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7029), 1, + STATE(6996), 1, sym_comment, - ACTIONS(10314), 3, + ACTIONS(10825), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231837] = 5, + [222653] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11206), 1, - anon_sym_RBRACK, - STATE(6526), 1, - aux_sym__multiple_types_repeat1, - STATE(7030), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4674), 1, + aux_sym_unquoted_token4, + STATE(6997), 1, sym_comment, - [231853] = 5, - ACTIONS(3), 1, + STATE(7437), 1, + sym__expr_parenthesized_immediate, + [222669] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11208), 1, - anon_sym_RBRACK, - STATE(6527), 1, - aux_sym__multiple_types_repeat1, - STATE(7031), 1, + STATE(6998), 1, sym_comment, - [231869] = 5, + ACTIONS(10139), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11210), 1, + ACTIONS(11239), 1, anon_sym_RBRACK, - STATE(6528), 1, + STATE(6458), 1, aux_sym__multiple_types_repeat1, - STATE(7032), 1, + STATE(6999), 1, sym_comment, - [231885] = 5, + [222697] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11212), 1, - anon_sym_RBRACK, - STATE(6529), 1, - aux_sym__multiple_types_repeat1, - STATE(7033), 1, - sym_comment, - [231901] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7034), 1, - sym_comment, - ACTIONS(10008), 3, - ts_builtin_sym_end, + ACTIONS(1030), 1, sym__newline, - anon_sym_SEMI, - [231913] = 5, + ACTIONS(1032), 1, + sym__space, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(7000), 1, + sym_comment, + [222713] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11214), 1, + ACTIONS(11241), 1, anon_sym_RBRACK, - STATE(6530), 1, + STATE(6459), 1, aux_sym__multiple_types_repeat1, - STATE(7035), 1, + STATE(7001), 1, sym_comment, - [231929] = 5, + [222729] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11216), 1, + ACTIONS(11243), 1, anon_sym_RBRACK, - STATE(6531), 1, + STATE(6460), 1, aux_sym__multiple_types_repeat1, - STATE(7036), 1, - sym_comment, - [231945] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - ACTIONS(7135), 1, - aux_sym__unquoted_in_list_token4, - STATE(7037), 1, + STATE(7002), 1, sym_comment, - STATE(7518), 1, - sym__expr_parenthesized_immediate, - [231961] = 5, + [222745] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11218), 1, + ACTIONS(11245), 1, anon_sym_RBRACK, - STATE(6532), 1, + STATE(6461), 1, aux_sym__multiple_types_repeat1, - STATE(7038), 1, - sym_comment, - [231977] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - ACTIONS(7021), 1, - aux_sym_unquoted_token4, - STATE(7039), 1, + STATE(7003), 1, sym_comment, - STATE(7582), 1, - sym__expr_parenthesized_immediate, - [231993] = 3, - ACTIONS(249), 1, + [222761] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7040), 1, + STATE(7004), 1, sym_comment, - ACTIONS(11220), 3, + ACTIONS(11247), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [232005] = 5, - ACTIONS(249), 1, + [222773] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11222), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11249), 1, anon_sym_RBRACK, - STATE(6903), 1, - aux_sym_val_binary_repeat1, - STATE(7041), 1, + STATE(6462), 1, + aux_sym__multiple_types_repeat1, + STATE(7005), 1, sym_comment, - [232021] = 3, - ACTIONS(249), 1, + [222789] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7042), 1, + STATE(7006), 1, sym_comment, - ACTIONS(10314), 3, + ACTIONS(10160), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232033] = 5, + [222801] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11224), 1, + ACTIONS(11251), 1, anon_sym_RBRACK, - STATE(6536), 1, + STATE(6463), 1, aux_sym__multiple_types_repeat1, - STATE(7043), 1, + STATE(7007), 1, sym_comment, - [232049] = 4, + [222817] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2496), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(7044), 1, - sym_comment, - ACTIONS(2494), 2, + ACTIONS(11253), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [232063] = 4, - ACTIONS(3), 1, + STATE(6464), 1, + aux_sym__multiple_types_repeat1, + STATE(7008), 1, + sym_comment, + [222833] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11226), 1, - anon_sym_LPAREN, - STATE(7045), 1, + ACTIONS(1783), 1, + aux_sym_unquoted_token2, + STATE(7009), 1, sym_comment, - ACTIONS(11228), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [232077] = 5, + ACTIONS(1785), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [222847] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11230), 1, + ACTIONS(11255), 1, anon_sym_RBRACK, - STATE(6537), 1, + STATE(6465), 1, aux_sym__multiple_types_repeat1, - STATE(7046), 1, + STATE(7010), 1, sym_comment, - [232093] = 5, + [222863] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(5878), 1, sym__entry_separator, - ACTIONS(11232), 1, + ACTIONS(11257), 1, anon_sym_RBRACK, - STATE(6538), 1, + STATE(2783), 1, aux_sym__multiple_types_repeat1, - STATE(7047), 1, + STATE(7011), 1, + sym_comment, + [222879] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7012), 1, + sym_comment, + ACTIONS(10923), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222891] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7013), 1, + sym_comment, + ACTIONS(10827), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222903] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(6653), 1, + sym_block, + STATE(7014), 1, sym_comment, - [232109] = 5, + [222919] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11234), 1, + ACTIONS(11259), 1, anon_sym_RBRACK, - STATE(6539), 1, + STATE(6472), 1, aux_sym__multiple_types_repeat1, - STATE(7048), 1, + STATE(7015), 1, sym_comment, - [232125] = 5, + [222935] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11236), 1, + ACTIONS(11261), 1, anon_sym_RBRACK, - STATE(6540), 1, + STATE(6473), 1, aux_sym__multiple_types_repeat1, - STATE(7049), 1, + STATE(7016), 1, sym_comment, - [232141] = 5, + [222951] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11238), 1, + ACTIONS(11263), 1, anon_sym_RBRACK, - STATE(6281), 1, + STATE(6474), 1, aux_sym__multiple_types_repeat1, - STATE(7050), 1, + STATE(7017), 1, sym_comment, - [232157] = 5, + [222967] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11240), 1, + ACTIONS(11265), 1, anon_sym_RBRACK, - STATE(6541), 1, + STATE(6475), 1, aux_sym__multiple_types_repeat1, - STATE(7051), 1, + STATE(7018), 1, sym_comment, - [232173] = 5, + [222983] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11242), 1, + ACTIONS(11267), 1, anon_sym_RBRACK, - STATE(6542), 1, + STATE(6476), 1, aux_sym__multiple_types_repeat1, - STATE(7052), 1, + STATE(7019), 1, sym_comment, - [232189] = 4, + [222999] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2049), 1, + ACTIONS(2349), 1, sym__entry_separator, - STATE(7053), 1, + STATE(7020), 1, sym_comment, - ACTIONS(2047), 2, + ACTIONS(2347), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [232203] = 5, + [223013] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11244), 1, + ACTIONS(11269), 1, anon_sym_RBRACK, - STATE(6543), 1, + STATE(6477), 1, aux_sym__multiple_types_repeat1, - STATE(7054), 1, + STATE(7021), 1, sym_comment, - [232219] = 4, + [223029] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2496), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(7055), 1, - sym_comment, - ACTIONS(2494), 2, + ACTIONS(11271), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [232233] = 4, + STATE(6478), 1, + aux_sym__multiple_types_repeat1, + STATE(7022), 1, + sym_comment, + [223045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(7056), 1, - sym_comment, - ACTIONS(2565), 2, + ACTIONS(11273), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [232247] = 3, - ACTIONS(249), 1, + STATE(6479), 1, + aux_sym__multiple_types_repeat1, + STATE(7023), 1, + sym_comment, + [223061] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7057), 1, + STATE(7024), 1, sym_comment, - ACTIONS(10336), 3, - ts_builtin_sym_end, + ACTIONS(11275), 3, sym__newline, anon_sym_SEMI, - [232259] = 5, + anon_sym_RPAREN, + [223073] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11246), 1, + ACTIONS(11277), 1, anon_sym_RBRACK, - STATE(6549), 1, + STATE(6685), 1, aux_sym__multiple_types_repeat1, - STATE(7058), 1, + STATE(7025), 1, sym_comment, - [232275] = 5, + [223089] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(5714), 1, sym__entry_separator, - ACTIONS(11248), 1, + ACTIONS(11279), 1, anon_sym_RBRACK, - STATE(6283), 1, + STATE(2664), 1, aux_sym__multiple_types_repeat1, - STATE(7059), 1, + STATE(7026), 1, sym_comment, - [232291] = 5, + [223105] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2349), 1, sym__entry_separator, - ACTIONS(11250), 1, - anon_sym_RBRACK, - STATE(6550), 1, - aux_sym__multiple_types_repeat1, - STATE(7060), 1, + STATE(7027), 1, sym_comment, - [232307] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11252), 1, + ACTIONS(2347), 2, anon_sym_RBRACK, - STATE(6551), 1, - aux_sym__multiple_types_repeat1, - STATE(7061), 1, - sym_comment, - [232323] = 5, + anon_sym_RBRACE, + [223119] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2092), 1, sym__entry_separator, - ACTIONS(11254), 1, - anon_sym_RBRACK, - STATE(6552), 1, - aux_sym__multiple_types_repeat1, - STATE(7062), 1, + STATE(7028), 1, sym_comment, - [232339] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11256), 1, + ACTIONS(2090), 2, anon_sym_RBRACK, - STATE(6284), 1, - aux_sym__multiple_types_repeat1, - STATE(7063), 1, + anon_sym_RBRACE, + [223133] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7029), 1, sym_comment, - [232355] = 5, + ACTIONS(10829), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [223145] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11258), 1, + ACTIONS(11281), 1, anon_sym_RBRACK, - STATE(6553), 1, + STATE(6484), 1, aux_sym__multiple_types_repeat1, - STATE(7064), 1, + STATE(7030), 1, sym_comment, - [232371] = 5, + [223161] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11260), 1, + ACTIONS(11283), 1, anon_sym_RBRACK, - STATE(6285), 1, + STATE(6485), 1, aux_sym__multiple_types_repeat1, - STATE(7065), 1, + STATE(7031), 1, sym_comment, - [232387] = 5, + [223177] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11262), 1, + ACTIONS(11285), 1, anon_sym_RBRACK, - STATE(6554), 1, + STATE(6486), 1, aux_sym__multiple_types_repeat1, - STATE(7066), 1, + STATE(7032), 1, sym_comment, - [232403] = 5, + [223193] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11264), 1, + ACTIONS(11287), 1, anon_sym_RBRACK, - STATE(6555), 1, + STATE(6487), 1, aux_sym__multiple_types_repeat1, - STATE(7067), 1, - sym_comment, - [232419] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7068), 1, + STATE(7033), 1, sym_comment, - ACTIONS(10060), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232431] = 5, + [223209] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11266), 1, + ACTIONS(11289), 1, anon_sym_RBRACK, - STATE(6556), 1, + STATE(6488), 1, aux_sym__multiple_types_repeat1, - STATE(7069), 1, - sym_comment, - [232447] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6257), 1, - anon_sym_AT, - ACTIONS(11268), 1, - anon_sym_GT, - STATE(7070), 1, - sym_comment, - STATE(7788), 1, - sym_param_cmd, - [232463] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7071), 1, + STATE(7034), 1, sym_comment, - ACTIONS(10336), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232475] = 3, - ACTIONS(249), 1, + [223225] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7072), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(6814), 1, + sym_val_list, + STATE(7035), 1, sym_comment, - ACTIONS(11270), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [232487] = 5, + STATE(7170), 1, + aux_sym_val_table_repeat1, + [223241] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11272), 1, + ACTIONS(11291), 1, anon_sym_RBRACK, - STATE(6286), 1, + STATE(6489), 1, aux_sym__multiple_types_repeat1, - STATE(7073), 1, + STATE(7036), 1, sym_comment, - [232503] = 5, + [223257] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11274), 1, + ACTIONS(11293), 1, anon_sym_RBRACK, - STATE(6287), 1, + STATE(6490), 1, aux_sym__multiple_types_repeat1, - STATE(7074), 1, + STATE(7037), 1, sym_comment, - [232519] = 5, + [223273] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11276), 1, + ACTIONS(11295), 1, anon_sym_RBRACK, - STATE(6288), 1, + STATE(6689), 1, aux_sym__multiple_types_repeat1, - STATE(7075), 1, - sym_comment, - [232535] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1769), 1, - aux_sym_unquoted_token2, - STATE(7076), 1, + STATE(7038), 1, sym_comment, - ACTIONS(1771), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [232549] = 5, + [223289] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11278), 1, + ACTIONS(11297), 1, anon_sym_RBRACK, - STATE(6289), 1, + STATE(6491), 1, aux_sym__multiple_types_repeat1, - STATE(7077), 1, + STATE(7039), 1, sym_comment, - [232565] = 3, - ACTIONS(249), 1, + [223305] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7078), 1, + STATE(7040), 1, sym_comment, - ACTIONS(10224), 3, + ACTIONS(10787), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232577] = 3, - ACTIONS(249), 1, + [223317] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7079), 1, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(7041), 1, sym_comment, - ACTIONS(10226), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232589] = 4, + ACTIONS(2206), 2, + sym_identifier, + anon_sym_DOLLAR, + [223331] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2518), 1, - sym__entry_separator, - STATE(7080), 1, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(7042), 1, sym_comment, - ACTIONS(2516), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [232603] = 5, - ACTIONS(3), 1, + ACTIONS(1030), 2, + sym_identifier, + anon_sym_DOLLAR, + [223345] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4945), 1, - sym__space, - ACTIONS(4947), 1, - sym__newline, - ACTIONS(11280), 1, - anon_sym_EQ2, - STATE(7081), 1, + STATE(7043), 1, sym_comment, - [232619] = 3, - ACTIONS(249), 1, + ACTIONS(5943), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [223357] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7082), 1, + STATE(7044), 1, sym_comment, - ACTIONS(10226), 3, + ACTIONS(10871), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232631] = 5, + [223369] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, + ACTIONS(5878), 1, sym__entry_separator, - ACTIONS(6049), 1, - anon_sym_RBRACE, - STATE(2949), 1, + ACTIONS(11299), 1, + anon_sym_RBRACK, + STATE(2809), 1, aux_sym__multiple_types_repeat1, - STATE(7083), 1, + STATE(7045), 1, sym_comment, - [232647] = 4, + [223385] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6069), 1, + ACTIONS(1709), 1, anon_sym_RBRACK, - STATE(7084), 1, - sym_comment, - ACTIONS(6071), 2, - anon_sym_LPAREN2, + ACTIONS(1721), 1, sym__entry_separator, - [232661] = 4, + ACTIONS(8667), 1, + aux_sym__unquoted_in_list_token2, + STATE(7046), 1, + sym_comment, + [223401] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11282), 1, - anon_sym_LPAREN, - STATE(7085), 1, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(11301), 1, + anon_sym_RBRACK, + STATE(2779), 1, + aux_sym__multiple_types_repeat1, + STATE(7047), 1, sym_comment, - ACTIONS(11284), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [232675] = 3, - ACTIONS(249), 1, + [223417] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7086), 1, + STATE(7048), 1, sym_comment, - ACTIONS(10260), 3, + ACTIONS(10783), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232687] = 3, - ACTIONS(249), 1, + [223429] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7087), 1, + STATE(7049), 1, sym_comment, - ACTIONS(10232), 3, + ACTIONS(10795), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232699] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2420), 1, - sym__entry_separator, - STATE(7088), 1, - sym_comment, - ACTIONS(2418), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [232713] = 5, - ACTIONS(249), 1, + [223441] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6257), 1, - anon_sym_AT, - ACTIONS(7759), 1, - anon_sym_EQ, - STATE(5079), 1, - sym_param_cmd, - STATE(7089), 1, - sym_comment, - [232729] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11286), 1, - anon_sym_RBRACK, - STATE(6798), 1, - aux_sym_val_binary_repeat1, - STATE(7090), 1, - sym_comment, - [232745] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7091), 1, + STATE(7050), 1, sym_comment, - ACTIONS(10356), 3, + ACTIONS(10817), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232757] = 4, + [223453] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6079), 1, - anon_sym_RBRACK, - STATE(7092), 1, - sym_comment, - ACTIONS(6081), 2, - anon_sym_LPAREN2, + ACTIONS(6502), 1, sym__entry_separator, - [232771] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6257), 1, - anon_sym_AT, - ACTIONS(7759), 1, - anon_sym_EQ, - STATE(5081), 1, - sym_param_cmd, - STATE(7093), 1, + ACTIONS(11303), 1, + anon_sym_RBRACK, + STATE(6634), 1, + aux_sym__multiple_types_repeat1, + STATE(7051), 1, sym_comment, - [232787] = 5, + [223469] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7753), 1, + ACTIONS(2108), 1, sym__entry_separator, - ACTIONS(7757), 1, - anon_sym_RBRACK, - ACTIONS(11288), 1, - anon_sym_LT, - STATE(7094), 1, + STATE(7052), 1, sym_comment, - [232803] = 5, + ACTIONS(2106), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [223483] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5518), 1, + ACTIONS(5556), 1, anon_sym_LPAREN2, - ACTIONS(5528), 1, + ACTIONS(5566), 1, aux_sym__unquoted_in_list_token4, - STATE(7095), 1, + STATE(7053), 1, sym_comment, - STATE(7447), 1, + STATE(7456), 1, sym__expr_parenthesized_immediate, - [232819] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(11290), 1, - anon_sym_RBRACE, - STATE(2922), 1, - aux_sym__multiple_types_repeat1, - STATE(7096), 1, - sym_comment, - [232835] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7097), 1, - sym_comment, - ACTIONS(10264), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232847] = 3, - ACTIONS(249), 1, + [223499] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7098), 1, + STATE(7054), 1, sym_comment, - ACTIONS(8782), 3, + ACTIONS(10835), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232859] = 3, - ACTIONS(249), 1, + [223511] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7099), 1, + STATE(7055), 1, sym_comment, - ACTIONS(10064), 3, + ACTIONS(10789), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232871] = 4, - ACTIONS(249), 1, + [223523] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1826), 1, - aux_sym_unquoted_token2, - STATE(7100), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(10097), 1, + anon_sym_LBRACK, + STATE(3383), 1, + aux_sym__multiple_types_repeat1, + STATE(7056), 1, sym_comment, - ACTIONS(1828), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [232885] = 5, - ACTIONS(249), 1, + [223539] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6257), 1, + ACTIONS(6221), 1, anon_sym_AT, - ACTIONS(7895), 1, - anon_sym_EQ, - STATE(5200), 1, + ACTIONS(11305), 1, + anon_sym_GT2, + STATE(7057), 1, + sym_comment, + STATE(7964), 1, sym_param_cmd, - STATE(7101), 1, + [223555] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11307), 1, + anon_sym_RBRACK, + STATE(7058), 1, sym_comment, - [232901] = 3, - ACTIONS(249), 1, + STATE(7066), 1, + aux_sym_val_binary_repeat1, + [223571] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7102), 1, + STATE(7059), 1, sym_comment, - ACTIONS(8834), 3, + ACTIONS(10791), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232913] = 5, + [223583] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1628), 1, - anon_sym_RBRACE, - ACTIONS(1640), 1, + ACTIONS(2514), 1, sym__entry_separator, - ACTIONS(8696), 1, - aux_sym__unquoted_in_record_token2, - STATE(7103), 1, + STATE(7060), 1, sym_comment, - [232929] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7753), 1, - sym__entry_separator, - ACTIONS(7757), 1, + ACTIONS(2512), 2, anon_sym_RBRACK, - ACTIONS(11292), 1, - anon_sym_LT, - STATE(7104), 1, - sym_comment, - [232945] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - ACTIONS(6051), 1, anon_sym_RBRACE, - STATE(2950), 1, - aux_sym__multiple_types_repeat1, - STATE(7105), 1, - sym_comment, - [232961] = 4, + [223597] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2537), 1, + ACTIONS(2385), 1, sym__entry_separator, - STATE(7106), 1, + STATE(7061), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2383), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [232975] = 4, - ACTIONS(249), 1, + [223611] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11294), 1, - aux_sym_cmd_identifier_token41, - STATE(7107), 1, - sym_comment, - ACTIONS(11296), 2, - sym_filesize_unit, - sym_duration_unit, - [232989] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - STATE(7108), 1, + STATE(7062), 1, sym_comment, - ACTIONS(2279), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [233003] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2293), 1, + ACTIONS(10398), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(2297), 1, - sym__space, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(7109), 1, - sym_comment, - [233019] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11298), 1, - anon_sym_RBRACK, - STATE(7110), 1, - sym_comment, - STATE(7117), 1, - aux_sym_val_binary_repeat1, - [233035] = 4, - ACTIONS(249), 1, + anon_sym_SEMI, + [223623] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - STATE(7111), 1, + STATE(7063), 1, sym_comment, - ACTIONS(1850), 2, + ACTIONS(6148), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [233049] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_LPAREN2, - ACTIONS(1642), 1, - aux_sym__unquoted_in_record_token4, - STATE(7112), 1, - sym_comment, - STATE(7569), 1, - sym__expr_parenthesized_immediate, - [233065] = 3, - ACTIONS(249), 1, + [223635] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7113), 1, + STATE(7064), 1, sym_comment, - ACTIONS(10815), 3, - ts_builtin_sym_end, + ACTIONS(11309), 3, sym__newline, anon_sym_SEMI, - [233077] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9723), 1, - anon_sym_PIPE, - ACTIONS(11300), 1, - anon_sym_EQ_GT, - STATE(7023), 1, - aux_sym_match_pattern_repeat1, - STATE(7114), 1, - sym_comment, - [233093] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(11302), 1, - anon_sym_EQ2, - STATE(7115), 1, - sym_comment, - ACTIONS(4945), 2, - sym_identifier, - anon_sym_DOLLAR, - [233107] = 5, + anon_sym_RPAREN, + [223647] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - ACTIONS(4842), 1, + ACTIONS(7157), 1, aux_sym_unquoted_token4, - STATE(7116), 1, + STATE(7065), 1, sym_comment, - STATE(7439), 1, + STATE(7501), 1, sym__expr_parenthesized_immediate, - [233123] = 5, - ACTIONS(249), 1, + [223663] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, + ACTIONS(10949), 1, sym_hex_digit, - ACTIONS(11304), 1, + ACTIONS(11311), 1, anon_sym_RBRACK, - STATE(6903), 1, + STATE(6852), 1, aux_sym_val_binary_repeat1, - STATE(7117), 1, - sym_comment, - [233139] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11306), 1, - anon_sym_RBRACK, - STATE(6316), 1, - aux_sym__multiple_types_repeat1, - STATE(7118), 1, + STATE(7066), 1, sym_comment, - [233155] = 3, - ACTIONS(249), 1, + [223679] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7119), 1, + STATE(7067), 1, sym_comment, - ACTIONS(10781), 3, + ACTIONS(10799), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233167] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11308), 1, - anon_sym_RBRACK, - STATE(6234), 1, - aux_sym__multiple_types_repeat1, - STATE(7120), 1, - sym_comment, - [233183] = 5, + [223691] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11310), 1, + ACTIONS(11313), 1, anon_sym_RBRACK, - STATE(6235), 1, + STATE(6222), 1, aux_sym__multiple_types_repeat1, - STATE(7121), 1, + STATE(7068), 1, sym_comment, - [233199] = 5, - ACTIONS(3), 1, + [223707] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11312), 1, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11315), 1, anon_sym_RBRACK, - STATE(6317), 1, - aux_sym__multiple_types_repeat1, - STATE(7122), 1, - sym_comment, - [233215] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - ACTIONS(2303), 1, - sym__newline, - ACTIONS(2305), 1, - sym__space, - STATE(7123), 1, - sym_comment, - [233231] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7124), 1, + STATE(7069), 1, sym_comment, - ACTIONS(11314), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [233243] = 3, - ACTIONS(249), 1, + STATE(7167), 1, + aux_sym_val_binary_repeat1, + [223723] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7125), 1, + STATE(7070), 1, sym_comment, - ACTIONS(11316), 3, + ACTIONS(11317), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [233255] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11318), 1, - anon_sym_RBRACK, - STATE(6318), 1, - aux_sym__multiple_types_repeat1, - STATE(7126), 1, - sym_comment, - [233271] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11320), 1, - anon_sym_RBRACK, - STATE(6319), 1, - aux_sym__multiple_types_repeat1, - STATE(7127), 1, - sym_comment, - [233287] = 4, - ACTIONS(249), 1, + [223735] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(303), 1, - aux_sym__block_body_repeat1, - STATE(7128), 1, + STATE(7071), 1, sym_comment, - ACTIONS(147), 2, + ACTIONS(10903), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233301] = 4, + [223747] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11322), 1, - sym__table_head_separator, - STATE(7129), 1, + STATE(7072), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(2094), 3, anon_sym_RBRACK, sym__entry_separator, - [233315] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7130), 1, - sym_comment, - ACTIONS(10720), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233327] = 5, + sym__table_head_separator, + [223759] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11324), 1, + ACTIONS(11319), 1, anon_sym_RBRACK, - STATE(6236), 1, - aux_sym__multiple_types_repeat1, - STATE(7131), 1, - sym_comment, - [233343] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6313), 1, - sym_block, - STATE(7132), 1, - sym_comment, - [233359] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6010), 1, - anon_sym_RBRACE, - ACTIONS(6012), 1, - sym__entry_separator, - STATE(2910), 1, + STATE(6223), 1, aux_sym__multiple_types_repeat1, - STATE(7133), 1, + STATE(7073), 1, sym_comment, - [233375] = 5, + [223775] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(6016), 1, - anon_sym_RBRACE, - STATE(2911), 1, + ACTIONS(11321), 1, + anon_sym_RBRACK, + STATE(6224), 1, aux_sym__multiple_types_repeat1, - STATE(7134), 1, - sym_comment, - [233391] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6352), 1, - sym_block, - STATE(7135), 1, + STATE(7074), 1, sym_comment, - [233407] = 5, + [223791] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11326), 1, + ACTIONS(11323), 1, anon_sym_RBRACK, - STATE(6320), 1, + STATE(6225), 1, aux_sym__multiple_types_repeat1, - STATE(7136), 1, - sym_comment, - [233423] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(4862), 1, - sym_block, - STATE(7137), 1, + STATE(7075), 1, sym_comment, - [233439] = 5, - ACTIONS(249), 1, + [223807] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6257), 1, + ACTIONS(6221), 1, anon_sym_AT, - ACTIONS(11328), 1, - anon_sym_GT, - STATE(7138), 1, + ACTIONS(11325), 1, + anon_sym_GT2, + STATE(7076), 1, sym_comment, - STATE(7681), 1, + STATE(7868), 1, sym_param_cmd, - [233455] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11330), 1, - anon_sym_RBRACK, - STATE(3426), 1, - aux_sym__multiple_types_repeat1, - STATE(7139), 1, - sym_comment, - [233471] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7140), 1, - sym_comment, - ACTIONS(10817), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233483] = 5, + [223823] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5672), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11332), 1, + ACTIONS(11327), 1, anon_sym_RBRACK, - STATE(2636), 1, + STATE(6226), 1, aux_sym__multiple_types_repeat1, - STATE(7141), 1, - sym_comment, - [233499] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2563), 1, - sym__entry_separator, - STATE(7142), 1, - sym_comment, - ACTIONS(2561), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [233513] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7143), 1, + STATE(7077), 1, sym_comment, - ACTIONS(10018), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233525] = 5, + [223839] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11334), 1, + ACTIONS(11329), 1, anon_sym_RBRACK, - STATE(6682), 1, + STATE(6700), 1, aux_sym__multiple_types_repeat1, - STATE(7144), 1, + STATE(7078), 1, sym_comment, - [233541] = 5, + [223855] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11336), 1, + ACTIONS(11331), 1, anon_sym_RBRACK, - STATE(6321), 1, + STATE(6227), 1, aux_sym__multiple_types_repeat1, - STATE(7145), 1, + STATE(7079), 1, sym_comment, - [233557] = 5, + [223871] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11338), 1, + ACTIONS(11333), 1, anon_sym_RBRACK, - STATE(6322), 1, + STATE(6228), 1, aux_sym__multiple_types_repeat1, - STATE(7146), 1, - sym_comment, - [233573] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7147), 1, - sym_comment, - ACTIONS(10024), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233585] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11340), 1, - sym__table_head_separator, - STATE(7148), 1, + STATE(7080), 1, sym_comment, - ACTIONS(1090), 2, - anon_sym_RBRACK, - sym__entry_separator, - [233599] = 5, - ACTIONS(3), 1, + [223887] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11342), 1, - anon_sym_RBRACK, - STATE(6684), 1, - aux_sym__multiple_types_repeat1, - STATE(7149), 1, + ACTIONS(2258), 1, + aux_sym_unquoted_token2, + STATE(7081), 1, sym_comment, - [233615] = 5, + ACTIONS(2256), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [223901] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11344), 1, + ACTIONS(11335), 1, anon_sym_RBRACK, - STATE(6686), 1, + STATE(6229), 1, aux_sym__multiple_types_repeat1, - STATE(7150), 1, + STATE(7082), 1, sym_comment, - [233631] = 3, - ACTIONS(249), 1, + [223917] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7151), 1, + STATE(7083), 1, sym_comment, - ACTIONS(10028), 3, + ACTIONS(10881), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233643] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11346), 1, - anon_sym_RBRACK, - STATE(6323), 1, - aux_sym__multiple_types_repeat1, - STATE(7152), 1, - sym_comment, - [233659] = 3, - ACTIONS(249), 1, + [223929] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7153), 1, + STATE(7084), 1, sym_comment, - ACTIONS(10819), 3, - ts_builtin_sym_end, + ACTIONS(11337), 3, sym__newline, anon_sym_SEMI, - [233671] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - ACTIONS(11348), 1, - sym__space, - STATE(7154), 1, - sym_comment, - [233687] = 3, - ACTIONS(249), 1, + anon_sym_RPAREN, + [223941] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7155), 1, + STATE(7085), 1, sym_comment, - ACTIONS(10390), 3, - ts_builtin_sym_end, + ACTIONS(11339), 3, sym__newline, anon_sym_SEMI, - [233699] = 5, - ACTIONS(249), 1, + anon_sym_RPAREN, + [223953] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9725), 1, + STATE(7086), 1, + sym_comment, + ACTIONS(11341), 3, + anon_sym_PIPE, anon_sym_if, - ACTIONS(11350), 1, anon_sym_EQ_GT, - STATE(7156), 1, - sym_comment, - STATE(7818), 1, - sym_match_guard, - [233715] = 5, - ACTIONS(249), 1, + [223965] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(6973), 1, - sym_val_list, - STATE(7157), 1, - sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [233731] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7158), 1, + STATE(7087), 1, sym_comment, - ACTIONS(10044), 3, + ACTIONS(10793), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233743] = 3, - ACTIONS(249), 1, + [223977] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7159), 1, + STATE(7088), 1, sym_comment, - ACTIONS(10724), 3, + ACTIONS(10797), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233755] = 3, - ACTIONS(249), 1, + [223989] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7160), 1, + ACTIONS(1721), 1, + sym__entry_separator, + STATE(7089), 1, sym_comment, - ACTIONS(10821), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233767] = 3, - ACTIONS(249), 1, + ACTIONS(1709), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224003] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7161), 1, + ACTIONS(11343), 1, + sym__table_head_separator, + STATE(7090), 1, sym_comment, - ACTIONS(10390), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233779] = 3, - ACTIONS(249), 1, + ACTIONS(1030), 2, + anon_sym_RBRACK, + sym__entry_separator, + [224017] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7162), 1, + ACTIONS(4936), 1, + anon_sym_LBRACE, + ACTIONS(11345), 1, + sym_long_flag_identifier, + ACTIONS(11347), 1, + anon_sym_EQ2, + STATE(7091), 1, sym_comment, - ACTIONS(10728), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233791] = 3, - ACTIONS(249), 1, + [224033] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7163), 1, + ACTIONS(6052), 1, + anon_sym_RBRACK, + STATE(7092), 1, sym_comment, - ACTIONS(10314), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233803] = 3, - ACTIONS(249), 1, + ACTIONS(6054), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [224047] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7164), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(4768), 1, + sym_block, + STATE(7093), 1, sym_comment, - ACTIONS(10314), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233815] = 5, - ACTIONS(249), 1, + [224063] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7144), 1, - sym_val_list, - STATE(7165), 1, + ACTIONS(6221), 1, + anon_sym_AT, + ACTIONS(8023), 1, + anon_sym_EQ, + STATE(5132), 1, + sym_param_cmd, + STATE(7094), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [233831] = 3, - ACTIONS(249), 1, + [224079] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7166), 1, + STATE(7095), 1, sym_comment, - ACTIONS(10562), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233843] = 5, - ACTIONS(249), 1, + ACTIONS(6152), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [224091] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7150), 1, - sym_val_list, - STATE(7167), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(6653), 1, + sym_block, + STATE(7096), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [233859] = 5, + [224107] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5672), 1, + ACTIONS(1032), 1, sym__entry_separator, - ACTIONS(11352), 1, - anon_sym_RBRACK, - STATE(2656), 1, - aux_sym__multiple_types_repeat1, - STATE(7168), 1, + STATE(7097), 1, sym_comment, - [233875] = 5, - ACTIONS(249), 1, + ACTIONS(1030), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224121] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7169), 1, + STATE(7098), 1, sym_comment, - STATE(7195), 1, - sym_val_list, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [233891] = 5, - ACTIONS(249), 1, + ACTIONS(6129), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [224133] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6257), 1, - anon_sym_AT, - ACTIONS(7765), 1, - anon_sym_EQ, - STATE(5075), 1, - sym_param_cmd, - STATE(7170), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(7099), 1, sym_comment, - [233907] = 4, - ACTIONS(249), 1, + ACTIONS(2214), 2, + sym_identifier, + anon_sym_DOLLAR, + [224147] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - STATE(7171), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(7100), 1, sym_comment, - ACTIONS(2339), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [233921] = 3, - ACTIONS(249), 1, + ACTIONS(2222), 2, + sym_identifier, + anon_sym_DOLLAR, + [224161] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7172), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(6684), 1, + sym_block, + STATE(7101), 1, sym_comment, - ACTIONS(11354), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [233933] = 5, + [224177] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2290), 1, sym__entry_separator, - ACTIONS(11356), 1, - anon_sym_RBRACK, - STATE(6372), 1, + ACTIONS(11349), 1, + anon_sym_RBRACE, + STATE(570), 1, aux_sym__multiple_types_repeat1, - STATE(7173), 1, + STATE(7102), 1, + sym_comment, + [224193] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10031), 1, + anon_sym_PIPE, + ACTIONS(11351), 1, + anon_sym_EQ_GT, + STATE(7103), 1, sym_comment, - [233949] = 5, + STATE(7143), 1, + aux_sym_match_pattern_repeat1, + [224209] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5672), 1, + ACTIONS(6042), 1, + anon_sym_RBRACE, + ACTIONS(6044), 1, sym__entry_separator, - ACTIONS(11358), 1, - anon_sym_RBRACK, - STATE(2662), 1, + STATE(2955), 1, aux_sym__multiple_types_repeat1, - STATE(7174), 1, + STATE(7104), 1, + sym_comment, + [224225] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(4768), 1, + sym_block, + STATE(7105), 1, + sym_comment, + [224241] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(314), 1, + aux_sym__block_body_repeat1, + STATE(7106), 1, + sym_comment, + ACTIONS(139), 2, + sym__newline, + anon_sym_SEMI, + [224255] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6221), 1, + anon_sym_AT, + ACTIONS(8060), 1, + anon_sym_EQ, + STATE(5121), 1, + sym_param_cmd, + STATE(7107), 1, sym_comment, - [233965] = 3, - ACTIONS(249), 1, + [224271] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7175), 1, + STATE(7108), 1, sym_comment, - ACTIONS(10823), 3, + ACTIONS(10109), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233977] = 5, - ACTIONS(249), 1, + [224283] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1834), 1, - anon_sym_SEMI, - ACTIONS(3766), 1, - sym__newline, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(7176), 1, + ACTIONS(1890), 1, + aux_sym_unquoted_token2, + STATE(7109), 1, sym_comment, - [233993] = 3, - ACTIONS(249), 1, + ACTIONS(1892), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [224297] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7177), 1, + ACTIONS(1755), 1, + aux_sym_unquoted_token2, + STATE(7110), 1, sym_comment, - ACTIONS(10825), 3, + ACTIONS(1757), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [224311] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7111), 1, + sym_comment, + ACTIONS(10198), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234005] = 4, - ACTIONS(3), 1, + [224323] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2291), 1, - sym__space, - STATE(7178), 1, + STATE(7112), 1, sym_comment, - ACTIONS(2289), 2, + ACTIONS(10202), 3, + ts_builtin_sym_end, sym__newline, - aux_sym_unquoted_token4, - [234019] = 4, + anon_sym_SEMI, + [224335] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7113), 1, + sym_comment, + ACTIONS(10204), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224347] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2522), 1, - sym__entry_separator, - STATE(7179), 1, + ACTIONS(11353), 1, + sym__table_head_separator, + STATE(7114), 1, sym_comment, - ACTIONS(2520), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [234033] = 3, - ACTIONS(249), 1, + sym__entry_separator, + [224361] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7180), 1, + ACTIONS(2250), 1, + sym__space, + STATE(7115), 1, sym_comment, - ACTIONS(11360), 3, + ACTIONS(2248), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [234045] = 5, - ACTIONS(249), 1, + aux_sym_unquoted_token4, + [224375] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11362), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11355), 1, anon_sym_RBRACK, - STATE(6924), 1, - aux_sym_val_binary_repeat1, - STATE(7181), 1, + STATE(6601), 1, + aux_sym__multiple_types_repeat1, + STATE(7116), 1, sym_comment, - [234061] = 3, - ACTIONS(249), 1, + [224391] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7182), 1, + STATE(7117), 1, sym_comment, - ACTIONS(10046), 3, + ACTIONS(10891), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234073] = 4, + [224403] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(7118), 1, + sym_comment, + STATE(7169), 1, + sym_val_list, + STATE(7170), 1, + aux_sym_val_table_repeat1, + [224419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, aux_sym_unquoted_token4, - STATE(7183), 1, + ACTIONS(11357), 1, + sym__space, + STATE(7119), 1, sym_comment, - ACTIONS(2281), 2, - sym_identifier, - anon_sym_DOLLAR, - [234087] = 4, - ACTIONS(249), 1, + [224435] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1715), 1, - aux_sym_unquoted_token2, - STATE(7184), 1, + ACTIONS(7953), 1, + sym__entry_separator, + ACTIONS(7957), 1, + anon_sym_RBRACK, + ACTIONS(11359), 1, + anon_sym_LT, + STATE(7120), 1, sym_comment, - ACTIONS(1717), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [234101] = 3, - ACTIONS(249), 1, + [224451] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7185), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(7121), 1, sym_comment, - ACTIONS(9974), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234113] = 3, - ACTIONS(249), 1, + STATE(7139), 1, + sym_val_list, + STATE(7170), 1, + aux_sym_val_table_repeat1, + [224467] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7186), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4900), 1, + aux_sym_unquoted_token4, + STATE(7122), 1, sym_comment, - ACTIONS(10046), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234125] = 5, + STATE(7384), 1, + sym__expr_parenthesized_immediate, + [224483] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, + ACTIONS(6044), 1, sym__entry_separator, - ACTIONS(6020), 1, + ACTIONS(11361), 1, anon_sym_RBRACE, - STATE(2912), 1, + STATE(2931), 1, aux_sym__multiple_types_repeat1, - STATE(7187), 1, - sym_comment, - [234141] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7188), 1, + STATE(7123), 1, sym_comment, - ACTIONS(10068), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234153] = 5, + [224499] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, + ACTIONS(6044), 1, sym__entry_separator, - ACTIONS(6022), 1, + ACTIONS(11363), 1, anon_sym_RBRACE, - STATE(2913), 1, + STATE(2920), 1, aux_sym__multiple_types_repeat1, - STATE(7189), 1, + STATE(7124), 1, sym_comment, - [234169] = 3, - ACTIONS(249), 1, + [224515] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7190), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(7125), 1, + sym_comment, + STATE(7170), 1, + aux_sym_val_table_repeat1, + STATE(7319), 1, + sym_val_list, + [224531] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7126), 1, sym_comment, - ACTIONS(10716), 3, + ACTIONS(10109), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234181] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token41, - STATE(7191), 1, - sym_comment, - ACTIONS(11364), 2, - sym_filesize_unit, - sym_duration_unit, - [234195] = 4, - ACTIONS(249), 1, + [224543] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11366), 1, - anon_sym_EQ2, - STATE(7192), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(7127), 1, sym_comment, - ACTIONS(4989), 2, - sym_identifier, - anon_sym_DOLLAR, - [234209] = 3, - ACTIONS(249), 1, + STATE(7170), 1, + aux_sym_val_table_repeat1, + STATE(7323), 1, + sym_val_list, + [224559] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7193), 1, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(11365), 1, + anon_sym_RBRACE, + STATE(2921), 1, + aux_sym__multiple_types_repeat1, + STATE(7128), 1, sym_comment, - ACTIONS(9976), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234221] = 4, + [224575] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2498), 1, sym__entry_separator, - STATE(7194), 1, + STATE(7129), 1, sym_comment, - ACTIONS(2234), 2, + ACTIONS(2496), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [234235] = 5, + [224589] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2365), 1, sym__entry_separator, - ACTIONS(11368), 1, + STATE(7130), 1, + sym_comment, + ACTIONS(2363), 2, anon_sym_RBRACK, - STATE(6706), 1, - aux_sym__multiple_types_repeat1, - STATE(7195), 1, + anon_sym_RBRACE, + [224603] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + aux_sym__unquoted_in_record_token4, + STATE(7131), 1, sym_comment, - [234251] = 3, - ACTIONS(249), 1, + STATE(7446), 1, + sym__expr_parenthesized_immediate, + [224619] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7196), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(7078), 1, + sym_val_list, + STATE(7132), 1, sym_comment, - ACTIONS(10098), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234263] = 5, - ACTIONS(249), 1, + STATE(7170), 1, + aux_sym_val_table_repeat1, + [224635] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, - sym_hex_digit, - ACTIONS(11370), 1, - anon_sym_RBRACK, - STATE(7197), 1, + ACTIONS(4956), 1, + anon_sym_LBRACE, + ACTIONS(11367), 1, + anon_sym_EQ2, + ACTIONS(11369), 1, + sym_short_flag_identifier, + STATE(7133), 1, sym_comment, - STATE(7216), 1, - aux_sym_val_binary_repeat1, - [234279] = 3, - ACTIONS(249), 1, + [224651] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7198), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11371), 1, + anon_sym_RBRACK, + STATE(6597), 1, + aux_sym__multiple_types_repeat1, + STATE(7134), 1, sym_comment, - ACTIONS(10100), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234291] = 4, + [224667] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2372), 1, + ACTIONS(1709), 1, anon_sym_RBRACE, - STATE(7199), 1, - sym_comment, - ACTIONS(2374), 2, - anon_sym_LPAREN2, + ACTIONS(1721), 1, sym__entry_separator, - [234305] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7200), 1, + ACTIONS(8859), 1, + aux_sym__unquoted_in_record_token2, + STATE(7135), 1, sym_comment, - ACTIONS(10100), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234317] = 4, - ACTIONS(249), 1, + [224683] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token2, - STATE(7201), 1, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(11373), 1, + anon_sym_RBRACK, + STATE(2844), 1, + aux_sym__multiple_types_repeat1, + STATE(7136), 1, sym_comment, - ACTIONS(2250), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [234331] = 4, + [224699] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(7202), 1, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(11375), 1, + anon_sym_RBRACK, + STATE(2845), 1, + aux_sym__multiple_types_repeat1, + STATE(7137), 1, sym_comment, - ACTIONS(1090), 2, - sym_identifier, - anon_sym_DOLLAR, - [234345] = 5, + [224715] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11372), 1, + ACTIONS(11377), 1, anon_sym_RBRACK, - STATE(6694), 1, + STATE(6729), 1, aux_sym__multiple_types_repeat1, - STATE(7203), 1, + STATE(7138), 1, sym_comment, - [234361] = 5, + [224731] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11374), 1, + ACTIONS(11379), 1, anon_sym_RBRACK, - STATE(6695), 1, + STATE(6730), 1, aux_sym__multiple_types_repeat1, - STATE(7204), 1, + STATE(7139), 1, sym_comment, - [234377] = 5, + [224747] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11376), 1, + ACTIONS(11381), 1, anon_sym_RBRACK, - STATE(6696), 1, + STATE(6731), 1, aux_sym__multiple_types_repeat1, - STATE(7205), 1, + STATE(7140), 1, sym_comment, - [234393] = 5, + [224763] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2327), 1, + anon_sym_RBRACE, + STATE(7141), 1, + sym_comment, + ACTIONS(2329), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(11378), 1, + [224777] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11383), 1, anon_sym_RBRACK, - STATE(6697), 1, - aux_sym__multiple_types_repeat1, - STATE(7206), 1, + STATE(7142), 1, sym_comment, - [234409] = 5, - ACTIONS(249), 1, + STATE(7155), 1, + aux_sym_val_binary_repeat1, + [224793] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4937), 1, - anon_sym_in, - ACTIONS(11380), 1, - sym_long_flag_identifier, - ACTIONS(11382), 1, - anon_sym_EQ2, - STATE(7207), 1, + ACTIONS(11385), 1, + anon_sym_PIPE, + ACTIONS(11388), 1, + anon_sym_EQ_GT, + STATE(7143), 2, sym_comment, - [234425] = 5, + aux_sym_match_pattern_repeat1, + [224807] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6044), 1, sym__entry_separator, - ACTIONS(11384), 1, - anon_sym_RBRACK, - STATE(6698), 1, + ACTIONS(6076), 1, + anon_sym_RBRACE, + STATE(2974), 1, aux_sym__multiple_types_repeat1, - STATE(7208), 1, + STATE(7144), 1, sym_comment, - [234441] = 5, + [224823] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6044), 1, sym__entry_separator, - ACTIONS(11386), 1, - anon_sym_RBRACK, - STATE(6699), 1, + ACTIONS(6070), 1, + anon_sym_RBRACE, + STATE(2971), 1, aux_sym__multiple_types_repeat1, - STATE(7209), 1, + STATE(7145), 1, + sym_comment, + [224839] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7146), 1, sym_comment, - [234457] = 5, + ACTIONS(10109), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224851] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2333), 1, + anon_sym_RBRACE, + STATE(7147), 1, + sym_comment, + ACTIONS(2335), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(11388), 1, - anon_sym_RBRACK, - STATE(6700), 1, - aux_sym__multiple_types_repeat1, - STATE(7210), 1, + [224865] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7148), 1, sym_comment, - [234473] = 5, + ACTIONS(9058), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224877] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(5714), 1, sym__entry_separator, ACTIONS(11390), 1, anon_sym_RBRACK, - STATE(6701), 1, + STATE(2653), 1, aux_sym__multiple_types_repeat1, - STATE(7211), 1, + STATE(7149), 1, sym_comment, - [234489] = 5, + [224893] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - ACTIONS(4770), 1, + ACTIONS(4864), 1, aux_sym_unquoted_token4, - STATE(7212), 1, + STATE(7150), 1, sym_comment, - STATE(7534), 1, + STATE(7503), 1, sym__expr_parenthesized_immediate, - [234505] = 4, + [224909] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7151), 1, + sym_comment, + ACTIONS(9070), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224921] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11392), 1, sym__table_head_separator, - STATE(7213), 1, + STATE(7152), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [234519] = 3, + [224935] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7214), 1, - sym_comment, - ACTIONS(1909), 3, - anon_sym_RBRACK, + ACTIONS(6502), 1, sym__entry_separator, - sym__table_head_separator, - [234531] = 4, + ACTIONS(11394), 1, + anon_sym_RBRACK, + STATE(3418), 1, + aux_sym__multiple_types_repeat1, + STATE(7153), 1, + sym_comment, + [224951] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11394), 1, + ACTIONS(11396), 1, sym__table_head_separator, - STATE(7215), 1, + STATE(7154), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [234545] = 5, - ACTIONS(249), 1, + [224965] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10831), 1, + ACTIONS(10949), 1, sym_hex_digit, - ACTIONS(11396), 1, + ACTIONS(11398), 1, anon_sym_RBRACK, - STATE(6903), 1, + STATE(6852), 1, aux_sym_val_binary_repeat1, - STATE(7216), 1, + STATE(7155), 1, sym_comment, - [234561] = 5, - ACTIONS(249), 1, + [224981] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7121), 1, - sym_val_list, - STATE(7217), 1, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(6087), 1, + anon_sym_RBRACE, + STATE(2984), 1, + aux_sym__multiple_types_repeat1, + STATE(7156), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [234577] = 5, - ACTIONS(249), 1, + [224997] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6817), 1, + STATE(6783), 1, sym_val_list, - STATE(7218), 1, + STATE(7157), 1, sym_comment, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - [234593] = 5, - ACTIONS(249), 1, + [225013] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6822), 1, + STATE(6869), 1, sym_val_list, - STATE(7219), 1, + STATE(7158), 1, sym_comment, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - [234609] = 5, - ACTIONS(249), 1, + [225029] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6884), 1, + STATE(6874), 1, sym_val_list, - STATE(7220), 1, + STATE(7159), 1, sym_comment, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - [234625] = 3, - ACTIONS(249), 1, + [225045] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7221), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(7160), 1, sym_comment, - ACTIONS(6146), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [234637] = 3, - ACTIONS(249), 1, + STATE(7170), 1, + aux_sym_val_table_repeat1, + STATE(7329), 1, + sym_val_list, + [225061] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7222), 1, + STATE(7161), 1, sym_comment, - ACTIONS(6146), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [234649] = 4, + ACTIONS(10867), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225073] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2432), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(7223), 1, - sym_comment, - ACTIONS(2430), 2, + ACTIONS(11400), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [234663] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2480), 1, - sym__entry_separator, - STATE(7224), 1, + STATE(6256), 1, + aux_sym__multiple_types_repeat1, + STATE(7162), 1, sym_comment, - ACTIONS(2478), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [234677] = 3, - ACTIONS(3), 1, + [225089] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7225), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(6948), 1, + sym_val_list, + STATE(7163), 1, sym_comment, - ACTIONS(2289), 3, - sym_identifier, - anon_sym_DOLLAR, - aux_sym_unquoted_token4, - [234689] = 3, - ACTIONS(249), 1, + STATE(7170), 1, + aux_sym_val_table_repeat1, + [225105] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7226), 1, + STATE(7164), 1, sym_comment, - ACTIONS(6150), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [234701] = 3, - ACTIONS(249), 1, + ACTIONS(10137), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225117] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7227), 1, + STATE(7165), 1, sym_comment, - ACTIONS(10730), 3, + ACTIONS(10143), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234713] = 4, - ACTIONS(3), 1, + [225129] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11398), 1, - sym__table_head_separator, - STATE(7228), 1, + STATE(7166), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(10168), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225141] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11402), 1, anon_sym_RBRACK, + STATE(6852), 1, + aux_sym_val_binary_repeat1, + STATE(7167), 1, + sym_comment, + [225157] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, sym__entry_separator, - [234727] = 5, + ACTIONS(11404), 1, + anon_sym_RBRACK, + STATE(6257), 1, + aux_sym__multiple_types_repeat1, + STATE(7168), 1, + sym_comment, + [225173] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11400), 1, + ACTIONS(11406), 1, anon_sym_RBRACK, - STATE(2680), 1, + STATE(6719), 1, aux_sym__multiple_types_repeat1, - STATE(7229), 1, + STATE(7169), 1, sym_comment, - [234743] = 3, - ACTIONS(249), 1, + [225189] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7230), 1, + ACTIONS(11408), 1, + anon_sym_LBRACK, + STATE(7479), 1, + sym_val_list, + STATE(7170), 2, sym_comment, - ACTIONS(9978), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234755] = 5, + aux_sym_val_table_repeat1, + [225203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11402), 1, + ACTIONS(11411), 1, anon_sym_RBRACK, - STATE(6331), 1, + STATE(3420), 1, aux_sym__multiple_types_repeat1, - STATE(7231), 1, + STATE(7171), 1, sym_comment, - [234771] = 4, + [225219] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11404), 1, - sym__table_head_separator, - STATE(7232), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11413), 1, + anon_sym_RBRACK, + STATE(3441), 1, + aux_sym__multiple_types_repeat1, + STATE(7172), 1, sym_comment, - ACTIONS(1090), 2, + [225235] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11415), 1, anon_sym_RBRACK, + STATE(6258), 1, + aux_sym__multiple_types_repeat1, + STATE(7173), 1, + sym_comment, + [225251] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11417), 1, + anon_sym_EQ2, + STATE(7174), 1, + sym_comment, + ACTIONS(5014), 2, + sym_identifier, + anon_sym_DOLLAR, + [225265] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, sym__entry_separator, - [234785] = 3, - ACTIONS(249), 1, + ACTIONS(11419), 1, + anon_sym_RBRACK, + STATE(6259), 1, + aux_sym__multiple_types_repeat1, + STATE(7175), 1, + sym_comment, + [225281] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7233), 1, + STATE(7176), 1, sym_comment, - ACTIONS(9978), 3, + ACTIONS(10186), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234797] = 5, - ACTIONS(249), 1, + [225293] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7063), 1, - sym_val_list, - STATE(7234), 1, + STATE(7177), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [234813] = 5, - ACTIONS(249), 1, + ACTIONS(10785), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225305] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7073), 1, - sym_val_list, - STATE(7235), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11421), 1, + anon_sym_RBRACK, + STATE(6260), 1, + aux_sym__multiple_types_repeat1, + STATE(7178), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [234829] = 5, - ACTIONS(249), 1, + [225321] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7075), 1, - sym_val_list, - STATE(7236), 1, + STATE(7179), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [234845] = 5, - ACTIONS(249), 1, + ACTIONS(10208), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225333] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7077), 1, - sym_val_list, - STATE(7237), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + ACTIONS(11423), 1, + sym__space, + STATE(7180), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [234861] = 4, + [225349] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7181), 1, + sym_comment, + ACTIONS(10236), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225361] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11406), 1, - sym__table_head_separator, - STATE(7238), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + ACTIONS(8859), 1, + aux_sym__unquoted_in_record_token4, + STATE(7182), 1, sym_comment, - ACTIONS(1090), 2, - anon_sym_RBRACK, - sym__entry_separator, - [234875] = 4, + STATE(7393), 1, + sym__expr_parenthesized_immediate, + [225377] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11408), 1, + ACTIONS(11425), 1, sym__table_head_separator, - STATE(7239), 1, + STATE(7183), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [234889] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7126), 1, - sym_val_list, - STATE(7240), 1, - sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [234905] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7136), 1, - sym_val_list, - STATE(7241), 1, - sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [234921] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7146), 1, - sym_val_list, - STATE(7242), 1, - sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [234937] = 5, - ACTIONS(249), 1, + [225391] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7152), 1, - sym_val_list, - STATE(7243), 1, + ACTIONS(2250), 1, + anon_sym_PIPE, + STATE(7184), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [234953] = 4, + ACTIONS(2248), 2, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [225405] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11410), 1, + ACTIONS(11427), 1, sym__table_head_separator, - STATE(7244), 1, + STATE(7185), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [234967] = 5, + [225419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11412), 1, + ACTIONS(11429), 1, anon_sym_RBRACK, - STATE(6667), 1, + STATE(6261), 1, aux_sym__multiple_types_repeat1, - STATE(7245), 1, + STATE(7186), 1, sym_comment, - [234983] = 5, - ACTIONS(249), 1, + [225435] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym__newline, - ACTIONS(11414), 1, - anon_sym_COLON, - STATE(2498), 1, - aux_sym_shebang_repeat1, - STATE(7246), 1, + STATE(7187), 1, sym_comment, - [234999] = 4, + ACTIONS(10240), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225447] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11416), 1, - sym__table_head_separator, - STATE(7247), 1, - sym_comment, - ACTIONS(1090), 2, - anon_sym_RBRACK, + ACTIONS(6502), 1, sym__entry_separator, - [235013] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6313), 1, - sym_block, - STATE(7248), 1, + ACTIONS(11431), 1, + anon_sym_RBRACK, + STATE(6262), 1, + aux_sym__multiple_types_repeat1, + STATE(7188), 1, sym_comment, - [235029] = 5, - ACTIONS(249), 1, + [225463] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7205), 1, + STATE(7074), 1, sym_val_list, - STATE(7249), 1, - sym_comment, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - [235045] = 5, - ACTIONS(249), 1, + STATE(7189), 1, + sym_comment, + [225479] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7208), 1, + STATE(7077), 1, sym_val_list, - STATE(7250), 1, - sym_comment, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - [235061] = 5, - ACTIONS(249), 1, + STATE(7190), 1, + sym_comment, + [225495] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7173), 1, + STATE(7080), 1, sym_val_list, - STATE(7251), 1, - sym_comment, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - [235077] = 5, - ACTIONS(249), 1, + STATE(7191), 1, + sym_comment, + [225511] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7210), 1, + STATE(7082), 1, sym_val_list, - STATE(7252), 1, - sym_comment, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - [235093] = 5, - ACTIONS(249), 1, + STATE(7192), 1, + sym_comment, + [225527] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7211), 1, - sym_val_list, - STATE(7253), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11433), 1, + anon_sym_RBRACK, + STATE(6263), 1, + aux_sym__multiple_types_repeat1, + STATE(7193), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [235109] = 4, + [225543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11418), 1, + ACTIONS(11435), 1, sym__table_head_separator, - STATE(7254), 1, + STATE(7194), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [235123] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - STATE(7255), 1, - sym_comment, - ACTIONS(10170), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235135] = 4, + [225557] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11420), 1, + ACTIONS(11437), 1, sym__table_head_separator, - STATE(7256), 1, + STATE(7195), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [235149] = 5, - ACTIONS(249), 1, + [225571] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7257), 1, + ACTIONS(1950), 1, + sym__entry_separator, + STATE(7196), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - STATE(7285), 1, - sym_val_list, - [235165] = 5, - ACTIONS(249), 1, + ACTIONS(1948), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [225585] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7258), 1, - sym_comment, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7313), 1, + STATE(7173), 1, sym_val_list, - [235181] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7259), 1, + STATE(7197), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - STATE(7346), 1, - sym_val_list, - [235197] = 5, - ACTIONS(249), 1, + [225601] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7260), 1, - sym_comment, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7356), 1, + STATE(7178), 1, sym_val_list, - [235213] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11422), 1, - sym__table_head_separator, - STATE(7261), 1, + STATE(7198), 1, sym_comment, - ACTIONS(1090), 2, - anon_sym_RBRACK, - sym__entry_separator, - [235227] = 4, + [225617] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11424), 1, - sym__table_head_separator, - STATE(7262), 1, - sym_comment, - ACTIONS(1090), 2, - anon_sym_RBRACK, + ACTIONS(6502), 1, sym__entry_separator, - [235241] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(6764), 1, - sym_val_list, - STATE(7263), 1, + ACTIONS(11439), 1, + anon_sym_RBRACK, + STATE(6430), 1, + aux_sym__multiple_types_repeat1, + STATE(7199), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [235257] = 5, - ACTIONS(249), 1, + [225633] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6766), 1, - sym_val_list, - STATE(7264), 1, - sym_comment, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - [235273] = 5, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(6769), 1, + STATE(7188), 1, sym_val_list, - STATE(7265), 1, + STATE(7200), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [235289] = 5, - ACTIONS(249), 1, + [225649] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6771), 1, + STATE(7170), 1, + aux_sym_val_table_repeat1, + STATE(7193), 1, sym_val_list, - STATE(7266), 1, + STATE(7201), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [235305] = 4, + [225665] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11426), 1, + ACTIONS(11441), 1, sym__table_head_separator, - STATE(7267), 1, + STATE(7202), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [235319] = 4, + [225679] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7203), 1, + sym_comment, + ACTIONS(10503), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225691] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7204), 1, + sym_comment, + ACTIONS(10350), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225703] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11428), 1, + ACTIONS(11443), 1, sym__table_head_separator, - STATE(7268), 1, + STATE(7205), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [235333] = 3, - ACTIONS(249), 1, + [225717] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7269), 1, + STATE(7206), 1, sym_comment, - ACTIONS(10276), 3, + ACTIONS(10350), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [235345] = 5, - ACTIONS(249), 1, + [225729] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(6785), 1, - sym_val_list, - STATE(7270), 1, + ACTIONS(2381), 1, + sym__entry_separator, + STATE(7207), 1, sym_comment, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [235361] = 5, - ACTIONS(249), 1, + ACTIONS(2379), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [225743] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6787), 1, - sym_val_list, - STATE(7271), 1, - sym_comment, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - [235377] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11430), 1, - anon_sym_RBRACK, - STATE(6705), 1, - aux_sym__multiple_types_repeat1, - STATE(7272), 1, + STATE(7208), 1, sym_comment, - [235393] = 5, - ACTIONS(249), 1, + STATE(7321), 1, + sym_val_list, + [225759] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6789), 1, - sym_val_list, - STATE(7273), 1, - sym_comment, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - [235409] = 5, - ACTIONS(249), 1, + STATE(7209), 1, + sym_comment, + STATE(7327), 1, + sym_val_list, + [225775] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6792), 1, - sym_val_list, - STATE(7274), 1, + STATE(7170), 1, + aux_sym_val_table_repeat1, + STATE(7210), 1, sym_comment, - STATE(7277), 1, + STATE(7336), 1, + sym_val_list, + [225791] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(7170), 1, aux_sym_val_table_repeat1, - [235425] = 4, + STATE(7211), 1, + sym_comment, + STATE(7342), 1, + sym_val_list, + [225807] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11432), 1, + ACTIONS(11445), 1, sym__table_head_separator, - STATE(7275), 1, + STATE(7212), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [235439] = 4, + [225821] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11434), 1, - sym__table_head_separator, - STATE(7276), 1, - sym_comment, - ACTIONS(1090), 2, - anon_sym_RBRACK, + ACTIONS(2506), 1, sym__entry_separator, - [235453] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(11436), 1, - anon_sym_LBRACK, - STATE(7532), 1, - sym_val_list, - STATE(7277), 2, + STATE(7213), 1, sym_comment, - aux_sym_val_table_repeat1, - [235467] = 3, - ACTIONS(249), 1, + ACTIONS(2504), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [225835] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7278), 1, + ACTIONS(11447), 1, + sym__table_head_separator, + STATE(7214), 1, sym_comment, - ACTIONS(10176), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235479] = 5, - ACTIONS(249), 1, + ACTIONS(1030), 2, + anon_sym_RBRACK, + sym__entry_separator, + [225849] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6813), 1, + STATE(6762), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7279), 1, + STATE(7215), 1, sym_comment, - [235495] = 5, - ACTIONS(249), 1, + [225865] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6816), 1, + STATE(6765), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7280), 1, + STATE(7216), 1, sym_comment, - [235511] = 5, - ACTIONS(3), 1, + [225881] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11439), 1, - anon_sym_RBRACK, - STATE(6332), 1, - aux_sym__multiple_types_repeat1, - STATE(7281), 1, + STATE(7217), 1, sym_comment, - [235527] = 5, - ACTIONS(249), 1, + ACTIONS(10899), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225893] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6819), 1, + STATE(6767), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7282), 1, + STATE(7218), 1, sym_comment, - [235543] = 5, - ACTIONS(249), 1, + [225909] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6821), 1, + STATE(6769), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7283), 1, + STATE(7219), 1, sym_comment, - [235559] = 4, + [225925] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11441), 1, + ACTIONS(11449), 1, sym__table_head_separator, - STATE(7284), 1, + STATE(7220), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [235573] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11443), 1, - anon_sym_RBRACK, - STATE(6333), 1, - aux_sym__multiple_types_repeat1, - STATE(7285), 1, - sym_comment, - [235589] = 4, - ACTIONS(3), 1, + [225939] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11445), 1, - sym__table_head_separator, - STATE(7286), 1, + STATE(7221), 1, sym_comment, - ACTIONS(1090), 2, - anon_sym_RBRACK, - sym__entry_separator, - [235603] = 3, - ACTIONS(249), 1, + ACTIONS(10503), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225951] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7287), 1, + STATE(7222), 1, sym_comment, - ACTIONS(10276), 3, + ACTIONS(10819), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [235615] = 5, - ACTIONS(249), 1, + [225963] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11451), 1, + sym__table_head_separator, + STATE(7223), 1, + sym_comment, + ACTIONS(1030), 2, + anon_sym_RBRACK, + sym__entry_separator, + [225977] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6840), 1, + STATE(6787), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7288), 1, + STATE(7224), 1, sym_comment, - [235631] = 5, - ACTIONS(249), 1, + [225993] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6843), 1, + STATE(6789), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7289), 1, + STATE(7225), 1, sym_comment, - [235647] = 5, - ACTIONS(249), 1, + [226009] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6846), 1, + STATE(6793), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7290), 1, + STATE(7226), 1, sym_comment, - [235663] = 5, - ACTIONS(249), 1, + [226025] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6848), 1, + STATE(6795), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7291), 1, + STATE(7227), 1, sym_comment, - [235679] = 4, + [226041] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11447), 1, + ACTIONS(11453), 1, sym__table_head_separator, - STATE(7292), 1, + STATE(7228), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [235693] = 5, - ACTIONS(3), 1, + [226055] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4989), 1, - sym__space, - ACTIONS(4991), 1, - sym__newline, - ACTIONS(11449), 1, - anon_sym_EQ2, - STATE(7293), 1, + STATE(7229), 1, sym_comment, - [235709] = 4, + ACTIONS(10903), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226067] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11451), 1, + ACTIONS(11455), 1, sym__table_head_separator, - STATE(7294), 1, + STATE(7230), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [235723] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11453), 1, - anon_sym_RBRACK, - STATE(6334), 1, - aux_sym__multiple_types_repeat1, - STATE(7295), 1, - sym_comment, - [235739] = 5, - ACTIONS(249), 1, + [226081] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6866), 1, + STATE(6812), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7296), 1, + STATE(7231), 1, sym_comment, - [235755] = 5, - ACTIONS(249), 1, + [226097] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6868), 1, + STATE(6815), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7297), 1, + STATE(7232), 1, sym_comment, - [235771] = 5, - ACTIONS(249), 1, + [226113] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6872), 1, + STATE(6817), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7298), 1, + STATE(7233), 1, sym_comment, - [235787] = 5, - ACTIONS(249), 1, + [226129] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6875), 1, + STATE(6819), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7299), 1, + STATE(7234), 1, sym_comment, - [235803] = 4, + [226145] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11455), 1, + ACTIONS(11457), 1, sym__table_head_separator, - STATE(7300), 1, + STATE(7235), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [235817] = 4, + [226159] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2512), 1, + ACTIONS(7953), 1, sym__entry_separator, - STATE(7301), 1, - sym_comment, - ACTIONS(2510), 2, + ACTIONS(7957), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [235831] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11457), 1, - sym__table_head_separator, - STATE(7302), 1, + ACTIONS(11459), 1, + anon_sym_LT, + STATE(7236), 1, sym_comment, - ACTIONS(1090), 2, - anon_sym_RBRACK, - sym__entry_separator, - [235845] = 3, + [226175] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7303), 1, + ACTIONS(11461), 1, + sym__table_head_separator, + STATE(7237), 1, sym_comment, - ACTIONS(2569), 3, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - sym__table_head_separator, - [235857] = 5, - ACTIONS(249), 1, + [226189] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6894), 1, + STATE(6840), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7304), 1, + STATE(7238), 1, sym_comment, - [235873] = 5, - ACTIONS(249), 1, + [226205] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6896), 1, + STATE(6843), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7305), 1, + STATE(7239), 1, sym_comment, - [235889] = 5, - ACTIONS(249), 1, + [226221] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6352), 1, - sym_block, - STATE(7306), 1, + ACTIONS(1709), 1, + sym__newline, + ACTIONS(1721), 1, + sym__space, + ACTIONS(7157), 1, + aux_sym_unquoted_token2, + STATE(7240), 1, sym_comment, - [235905] = 5, - ACTIONS(249), 1, + [226237] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6898), 1, + STATE(6847), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7307), 1, + STATE(7241), 1, sym_comment, - [235921] = 5, - ACTIONS(249), 1, + [226253] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6901), 1, + STATE(6849), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7308), 1, + STATE(7242), 1, sym_comment, - [235937] = 4, + [226269] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11459), 1, + ACTIONS(11463), 1, sym__table_head_separator, - STATE(7309), 1, + STATE(7243), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [235951] = 5, + [226283] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1628), 1, - sym__newline, - ACTIONS(1640), 1, - sym__space, - ACTIONS(7021), 1, - aux_sym_unquoted_token2, - STATE(7310), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11465), 1, + anon_sym_RBRACK, + STATE(6238), 1, + aux_sym__multiple_types_repeat1, + STATE(7244), 1, sym_comment, - [235967] = 4, + [226299] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11461), 1, + ACTIONS(11467), 1, sym__table_head_separator, - STATE(7311), 1, + STATE(7245), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [235981] = 4, - ACTIONS(249), 1, + [226313] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11463), 1, - aux_sym_cmd_identifier_token41, - STATE(7312), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(6861), 1, + sym_val_list, + STATE(7170), 1, + aux_sym_val_table_repeat1, + STATE(7246), 1, sym_comment, - ACTIONS(11465), 2, - sym_filesize_unit, - sym_duration_unit, - [235995] = 5, - ACTIONS(3), 1, + [226329] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11467), 1, - anon_sym_RBRACK, - STATE(6335), 1, - aux_sym__multiple_types_repeat1, - STATE(7313), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(6863), 1, + sym_val_list, + STATE(7170), 1, + aux_sym_val_table_repeat1, + STATE(7247), 1, sym_comment, - [236011] = 5, - ACTIONS(249), 1, + [226345] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6915), 1, + STATE(6865), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7314), 1, + STATE(7248), 1, sym_comment, - [236027] = 5, - ACTIONS(249), 1, + [226361] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6917), 1, + STATE(6868), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7315), 1, + STATE(7249), 1, sym_comment, - [236043] = 4, + [226377] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2119), 1, + ACTIONS(11469), 1, + sym__table_head_separator, + STATE(7250), 1, + sym_comment, + ACTIONS(1030), 2, + anon_sym_RBRACK, sym__entry_separator, - STATE(7316), 1, + [226391] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11471), 1, + sym__table_head_separator, + STATE(7251), 1, sym_comment, - ACTIONS(2113), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [236057] = 5, - ACTIONS(249), 1, + sym__entry_separator, + [226405] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6920), 1, + STATE(6888), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7317), 1, + STATE(7252), 1, sym_comment, - [236073] = 5, - ACTIONS(249), 1, + [226421] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6923), 1, + STATE(6891), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7318), 1, + STATE(7253), 1, sym_comment, - [236089] = 4, - ACTIONS(3), 1, + [226437] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11469), 1, - sym__table_head_separator, - STATE(7319), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(6895), 1, + sym_val_list, + STATE(7170), 1, + aux_sym_val_table_repeat1, + STATE(7254), 1, sym_comment, - ACTIONS(1090), 2, - anon_sym_RBRACK, - sym__entry_separator, - [236103] = 5, - ACTIONS(3), 1, + [226453] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11471), 1, - anon_sym_RBRACK, - STATE(6399), 1, - aux_sym__multiple_types_repeat1, - STATE(7320), 1, + ACTIONS(9534), 1, + anon_sym_LBRACK, + STATE(6898), 1, + sym_val_list, + STATE(7170), 1, + aux_sym_val_table_repeat1, + STATE(7255), 1, sym_comment, - [236119] = 4, + [226469] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11473), 1, sym__table_head_separator, - STATE(7321), 1, + STATE(7256), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236133] = 3, - ACTIONS(249), 1, + [226483] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7322), 1, + STATE(7257), 1, sym_comment, - ACTIONS(10702), 3, + ACTIONS(10845), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [236145] = 3, - ACTIONS(249), 1, + [226495] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7323), 1, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(6056), 1, + anon_sym_RBRACE, + STATE(2923), 1, + aux_sym__multiple_types_repeat1, + STATE(7258), 1, sym_comment, - ACTIONS(1076), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, + [226511] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11475), 1, sym__table_head_separator, - [236157] = 5, - ACTIONS(249), 1, + STATE(7259), 1, + sym_comment, + ACTIONS(1030), 2, + anon_sym_RBRACK, + sym__entry_separator, + [226525] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6937), 1, + STATE(6917), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7324), 1, + STATE(7260), 1, sym_comment, - [236173] = 5, - ACTIONS(249), 1, + [226541] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6940), 1, + STATE(6920), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7325), 1, + STATE(7261), 1, sym_comment, - [236189] = 5, - ACTIONS(249), 1, + [226557] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6943), 1, + STATE(6923), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7326), 1, + STATE(7262), 1, sym_comment, - [236205] = 5, - ACTIONS(249), 1, + [226573] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6944), 1, + STATE(6925), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7327), 1, + STATE(7263), 1, sym_comment, - [236221] = 4, + [226589] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11475), 1, + ACTIONS(11477), 1, sym__table_head_separator, - STATE(7328), 1, + STATE(7264), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236235] = 4, + [226603] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11477), 1, + ACTIONS(6044), 1, + sym__entry_separator, + ACTIONS(6058), 1, + anon_sym_RBRACE, + STATE(2924), 1, + aux_sym__multiple_types_repeat1, + STATE(7265), 1, + sym_comment, + [226619] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11479), 1, sym__table_head_separator, - STATE(7329), 1, + STATE(7266), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236249] = 3, - ACTIONS(249), 1, + [226633] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7330), 1, + ACTIONS(2397), 1, + sym__entry_separator, + STATE(7267), 1, sym_comment, - ACTIONS(11479), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [236261] = 5, - ACTIONS(249), 1, + ACTIONS(2395), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [226647] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6956), 1, + STATE(6939), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7331), 1, + STATE(7268), 1, sym_comment, - [236277] = 5, - ACTIONS(249), 1, + [226663] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6959), 1, + STATE(6942), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7332), 1, + STATE(7269), 1, sym_comment, - [236293] = 5, - ACTIONS(3), 1, + [226679] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, + ACTIONS(10949), 1, + sym_hex_digit, ACTIONS(11481), 1, anon_sym_RBRACK, - STATE(6336), 1, - aux_sym__multiple_types_repeat1, - STATE(7333), 1, + STATE(7270), 1, sym_comment, - [236309] = 5, - ACTIONS(249), 1, + STATE(7310), 1, + aux_sym_val_binary_repeat1, + [226695] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6963), 1, + STATE(6944), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7334), 1, + STATE(7271), 1, sym_comment, - [236325] = 5, - ACTIONS(249), 1, + [226711] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6966), 1, + STATE(6946), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7335), 1, + STATE(7272), 1, sym_comment, - [236341] = 4, + [226727] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11483), 1, sym__table_head_separator, - STATE(7336), 1, + STATE(7273), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236355] = 4, + [226741] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11485), 1, sym__table_head_separator, - STATE(7337), 1, + STATE(7274), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236369] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2500), 1, - sym__entry_separator, - STATE(7338), 1, - sym_comment, - ACTIONS(2498), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [236383] = 5, - ACTIONS(249), 1, + [226755] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6979), 1, + STATE(6960), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7339), 1, + STATE(7275), 1, sym_comment, - [236399] = 5, - ACTIONS(249), 1, + [226771] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6982), 1, + STATE(6963), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7340), 1, - sym_comment, - [236415] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2428), 1, - sym__entry_separator, - STATE(7341), 1, + STATE(7276), 1, sym_comment, - ACTIONS(2426), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [236429] = 5, - ACTIONS(249), 1, + [226787] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6985), 1, + STATE(6967), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7342), 1, + STATE(7277), 1, sym_comment, - [236445] = 5, - ACTIONS(249), 1, + [226803] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6987), 1, + STATE(6970), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7343), 1, + STATE(7278), 1, sym_comment, - [236461] = 4, + [226819] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11487), 1, sym__table_head_separator, - STATE(7344), 1, + STATE(7279), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236475] = 4, + [226833] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11489), 1, sym__table_head_separator, - STATE(7345), 1, + STATE(7280), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236489] = 5, - ACTIONS(3), 1, + [226847] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11491), 1, - anon_sym_RBRACK, - STATE(6337), 1, - aux_sym__multiple_types_repeat1, - STATE(7346), 1, + STATE(7281), 1, sym_comment, - [236505] = 5, - ACTIONS(249), 1, + ACTIONS(10847), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226859] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7000), 1, + STATE(6983), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7347), 1, + STATE(7282), 1, sym_comment, - [236521] = 5, - ACTIONS(249), 1, + [226875] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7003), 1, + STATE(6985), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7348), 1, - sym_comment, - [236537] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_LPAREN2, - ACTIONS(8696), 1, - aux_sym__unquoted_in_record_token4, - STATE(7349), 1, + STATE(7283), 1, sym_comment, - STATE(7435), 1, - sym__expr_parenthesized_immediate, - [236553] = 5, - ACTIONS(249), 1, + [226891] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7006), 1, + STATE(6989), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7350), 1, + STATE(7284), 1, sym_comment, - [236569] = 5, - ACTIONS(249), 1, + [226907] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7009), 1, + STATE(6992), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7351), 1, + STATE(7285), 1, sym_comment, - [236585] = 4, + [226923] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11493), 1, + ACTIONS(11491), 1, sym__table_head_separator, - STATE(7352), 1, + STATE(7286), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236599] = 4, + [226937] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11495), 1, + ACTIONS(11493), 1, sym__table_head_separator, - STATE(7353), 1, + STATE(7287), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236613] = 5, - ACTIONS(249), 1, + [226951] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11495), 1, + anon_sym_EQ2, + STATE(7288), 1, + sym_comment, + ACTIONS(5051), 2, + sym_identifier, + anon_sym_DOLLAR, + [226965] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7015), 1, + STATE(7002), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7354), 1, + STATE(7289), 1, sym_comment, - [236629] = 5, - ACTIONS(249), 1, + [226981] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7017), 1, + STATE(7005), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7355), 1, + STATE(7290), 1, sym_comment, - [236645] = 5, - ACTIONS(3), 1, + [226997] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11497), 1, - anon_sym_RBRACK, - STATE(6338), 1, - aux_sym__multiple_types_repeat1, - STATE(7356), 1, + STATE(7291), 1, sym_comment, - [236661] = 5, - ACTIONS(249), 1, + ACTIONS(10847), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227009] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7019), 1, + STATE(7008), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7357), 1, + STATE(7292), 1, sym_comment, - [236677] = 5, - ACTIONS(249), 1, + [227025] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7022), 1, + STATE(7010), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7358), 1, + STATE(7293), 1, sym_comment, - [236693] = 4, + [227041] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11499), 1, + ACTIONS(11497), 1, sym__table_head_separator, - STATE(7359), 1, + STATE(7294), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236707] = 4, + [227055] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11501), 1, + ACTIONS(11499), 1, sym__table_head_separator, - STATE(7360), 1, + STATE(7295), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236721] = 5, - ACTIONS(249), 1, + [227069] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7296), 1, + sym_comment, + ACTIONS(11501), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [227081] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7031), 1, + STATE(7017), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7361), 1, + STATE(7297), 1, sym_comment, - [236737] = 5, - ACTIONS(249), 1, + [227097] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7033), 1, + STATE(7019), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7362), 1, + STATE(7298), 1, sym_comment, - [236753] = 4, - ACTIONS(3), 1, + [227113] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2448), 1, - sym__entry_separator, - STATE(7363), 1, + STATE(7299), 1, sym_comment, - ACTIONS(2446), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [236767] = 5, - ACTIONS(249), 1, + ACTIONS(11503), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [227125] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7036), 1, + STATE(7022), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7364), 1, + STATE(7300), 1, sym_comment, - [236783] = 5, - ACTIONS(249), 1, + [227141] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7038), 1, + STATE(7023), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7365), 1, + STATE(7301), 1, sym_comment, - [236799] = 4, + [227157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11503), 1, + ACTIONS(11505), 1, sym__table_head_separator, - STATE(7366), 1, + STATE(7302), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236813] = 4, + [227171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11505), 1, + ACTIONS(11507), 1, sym__table_head_separator, - STATE(7367), 1, + STATE(7303), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(1030), 2, anon_sym_RBRACK, sym__entry_separator, - [236827] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - ACTIONS(11507), 1, - sym__space, - STATE(7368), 1, - sym_comment, - [236843] = 5, - ACTIONS(249), 1, + [227185] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7047), 1, + STATE(7032), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7369), 1, + STATE(7304), 1, sym_comment, - [236859] = 5, - ACTIONS(249), 1, + [227201] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7049), 1, + STATE(7034), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7370), 1, + STATE(7305), 1, sym_comment, - [236875] = 5, - ACTIONS(3), 1, + [227217] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11509), 1, - anon_sym_RBRACK, - STATE(6723), 1, - aux_sym__multiple_types_repeat1, - STATE(7371), 1, + STATE(7306), 1, sym_comment, - [236891] = 5, - ACTIONS(249), 1, + ACTIONS(11509), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [227229] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7052), 1, + STATE(7037), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7372), 1, + STATE(7307), 1, sym_comment, - [236907] = 5, - ACTIONS(249), 1, + [227245] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(7054), 1, + STATE(7039), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7373), 1, + STATE(7308), 1, sym_comment, - [236923] = 3, - ACTIONS(249), 1, + [227261] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7374), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + ACTIONS(4259), 1, + aux_sym_unquoted_token4, + STATE(7309), 1, sym_comment, - ACTIONS(1068), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [236935] = 5, - ACTIONS(249), 1, + STATE(7504), 1, + sym__expr_parenthesized_immediate, + [227277] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7061), 1, - sym_val_list, - STATE(7277), 1, - aux_sym_val_table_repeat1, - STATE(7375), 1, + ACTIONS(10949), 1, + sym_hex_digit, + ACTIONS(11511), 1, + anon_sym_RBRACK, + STATE(6852), 1, + aux_sym_val_binary_repeat1, + STATE(7310), 1, sym_comment, - [236951] = 5, - ACTIONS(249), 1, + [227293] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7064), 1, - sym_val_list, - STATE(7277), 1, - aux_sym_val_table_repeat1, - STATE(7376), 1, + ACTIONS(6221), 1, + anon_sym_AT, + ACTIONS(11513), 1, + anon_sym_GT2, + STATE(7311), 1, sym_comment, - [236967] = 3, - ACTIONS(249), 1, + STATE(7739), 1, + sym_param_cmd, + [227309] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7377), 1, + ACTIONS(2494), 1, + sym__entry_separator, + STATE(7312), 1, sym_comment, - ACTIONS(1072), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [236979] = 5, - ACTIONS(249), 1, + ACTIONS(2492), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227323] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7067), 1, - sym_val_list, - STATE(7277), 1, - aux_sym_val_table_repeat1, - STATE(7378), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11515), 1, + anon_sym_RBRACK, + STATE(6279), 1, + aux_sym__multiple_types_repeat1, + STATE(7313), 1, sym_comment, - [236995] = 5, - ACTIONS(249), 1, + [227339] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(7069), 1, - sym_val_list, - STATE(7277), 1, - aux_sym_val_table_repeat1, - STATE(7379), 1, + ACTIONS(2096), 1, + sym__entry_separator, + STATE(7314), 1, sym_comment, - [237011] = 3, - ACTIONS(249), 1, + ACTIONS(2094), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227353] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7380), 1, + ACTIONS(2510), 1, + sym__entry_separator, + STATE(7315), 1, sym_comment, - ACTIONS(10702), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237023] = 3, - ACTIONS(249), 1, + ACTIONS(2508), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227367] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7381), 1, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(11517), 1, + anon_sym_RBRACK, + STATE(2832), 1, + aux_sym__multiple_types_repeat1, + STATE(7316), 1, sym_comment, - ACTIONS(9925), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237035] = 3, - ACTIONS(249), 1, + [227383] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7382), 1, + ACTIONS(5878), 1, + sym__entry_separator, + ACTIONS(11519), 1, + anon_sym_RBRACK, + STATE(2830), 1, + aux_sym__multiple_types_repeat1, + STATE(7317), 1, sym_comment, - ACTIONS(10712), 3, - ts_builtin_sym_end, + [227399] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7318), 1, + sym_comment, + ACTIONS(11521), 3, sym__newline, anon_sym_SEMI, - [237047] = 5, + anon_sym_RPAREN, + [227411] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5672), 1, + ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11511), 1, + ACTIONS(11523), 1, anon_sym_RBRACK, - STATE(2684), 1, + STATE(6313), 1, aux_sym__multiple_types_repeat1, - STATE(7383), 1, + STATE(7319), 1, sym_comment, - [237063] = 5, + [227427] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3822), 1, - sym__newline, - ACTIONS(3824), 1, - sym__space, - STATE(1063), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7384), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11525), 1, + anon_sym_RBRACK, + STATE(6280), 1, + aux_sym__multiple_types_repeat1, + STATE(7320), 1, sym_comment, - [237079] = 4, + [227443] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2488), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(7385), 1, - sym_comment, - ACTIONS(2486), 2, + ACTIONS(11527), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [237093] = 4, + STATE(6281), 1, + aux_sym__multiple_types_repeat1, + STATE(7321), 1, + sym_comment, + [227459] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2416), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(7386), 1, + ACTIONS(11529), 1, + anon_sym_RBRACK, + STATE(6347), 1, + aux_sym__multiple_types_repeat1, + STATE(7322), 1, sym_comment, - ACTIONS(2414), 2, + [227475] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11531), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [237107] = 4, + STATE(6352), 1, + aux_sym__multiple_types_repeat1, + STATE(7323), 1, + sym_comment, + [227491] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2484), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(7387), 1, + ACTIONS(11533), 1, + anon_sym_RBRACK, + STATE(6282), 1, + aux_sym__multiple_types_repeat1, + STATE(7324), 1, sym_comment, - ACTIONS(2482), 2, + [227507] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7325), 1, + sym_comment, + ACTIONS(10849), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227519] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + STATE(7326), 1, + sym_comment, + ACTIONS(1721), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [227533] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11535), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [237121] = 4, + STATE(6283), 1, + aux_sym__multiple_types_repeat1, + STATE(7327), 1, + sym_comment, + [227549] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + STATE(7328), 1, + sym_comment, + ACTIONS(1741), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [227563] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2526), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(7388), 1, + ACTIONS(11537), 1, + anon_sym_RBRACK, + STATE(6251), 1, + aux_sym__multiple_types_repeat1, + STATE(7329), 1, sym_comment, - ACTIONS(2524), 2, + [227579] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11539), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [237135] = 5, - ACTIONS(249), 1, + STATE(6284), 1, + aux_sym__multiple_types_repeat1, + STATE(7330), 1, + sym_comment, + [227595] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9340), 1, + ACTIONS(9534), 1, anon_sym_LBRACK, - STATE(6856), 1, + STATE(7038), 1, sym_val_list, - STATE(7277), 1, + STATE(7170), 1, aux_sym_val_table_repeat1, - STATE(7389), 1, + STATE(7331), 1, sym_comment, - [237151] = 5, + [227611] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2281), 1, - sym__newline, - ACTIONS(2285), 1, - sym__space, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(7390), 1, + ACTIONS(2389), 1, + sym__entry_separator, + STATE(7332), 1, sym_comment, - [237167] = 3, - ACTIONS(249), 1, + ACTIONS(2387), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227625] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7391), 1, + ACTIONS(2165), 1, + sym__entry_separator, + STATE(7333), 1, sym_comment, - ACTIONS(10058), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237179] = 4, - ACTIONS(249), 1, + ACTIONS(2159), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227639] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8580), 1, - aux_sym_unquoted_token2, - STATE(7392), 1, + ACTIONS(3857), 1, + sym__newline, + ACTIONS(11541), 1, + anon_sym_COLON, + STATE(1816), 1, + aux_sym_shebang_repeat1, + STATE(7334), 1, sym_comment, - ACTIONS(1640), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [237193] = 3, - ACTIONS(249), 1, + [227655] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7393), 1, + ACTIONS(2466), 1, + sym__entry_separator, + STATE(7335), 1, sym_comment, - ACTIONS(10779), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237205] = 3, - ACTIONS(249), 1, + ACTIONS(2464), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227669] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7394), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11543), 1, + anon_sym_RBRACK, + STATE(6285), 1, + aux_sym__multiple_types_repeat1, + STATE(7336), 1, sym_comment, - ACTIONS(10146), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [237217] = 4, + [227685] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11513), 1, - sym__table_head_separator, - STATE(7395), 1, + ACTIONS(2470), 1, + sym__entry_separator, + STATE(7337), 1, sym_comment, - ACTIONS(1090), 2, + ACTIONS(2468), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227699] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6048), 1, anon_sym_RBRACK, + STATE(7338), 1, + sym_comment, + ACTIONS(6050), 2, + anon_sym_LPAREN2, sym__entry_separator, - [237231] = 4, + [227713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(7396), 1, + STATE(7339), 1, sym_comment, - ACTIONS(2293), 2, + ACTIONS(2248), 3, sym_identifier, anon_sym_DOLLAR, - [237245] = 4, + aux_sym_unquoted_token4, + [227725] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(7397), 1, + ACTIONS(6502), 1, + sym__entry_separator, + ACTIONS(11545), 1, + anon_sym_RBRACK, + STATE(3429), 1, + aux_sym__multiple_types_repeat1, + STATE(7340), 1, sym_comment, - ACTIONS(2303), 2, - sym_identifier, - anon_sym_DOLLAR, - [237259] = 4, + [227741] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(2502), 1, sym__entry_separator, - STATE(7398), 1, + STATE(7341), 1, sym_comment, - ACTIONS(1897), 2, + ACTIONS(2500), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [237273] = 4, + [227755] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(6502), 1, sym__entry_separator, - STATE(7399), 1, - sym_comment, - ACTIONS(2547), 2, + ACTIONS(11547), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [237287] = 5, - ACTIONS(249), 1, + STATE(6286), 1, + aux_sym__multiple_types_repeat1, + STATE(7342), 1, + sym_comment, + [227771] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(4862), 1, - sym_block, - STATE(7400), 1, + ACTIONS(2439), 1, + sym__entry_separator, + STATE(7343), 1, sym_comment, - [237303] = 5, - ACTIONS(249), 1, + ACTIONS(2437), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227785] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_LBRACK, - STATE(6849), 1, - sym_val_list, - STATE(7277), 1, - aux_sym_val_table_repeat1, - STATE(7401), 1, + ACTIONS(2006), 1, + sym__entry_separator, + STATE(7344), 1, sym_comment, - [237319] = 3, - ACTIONS(249), 1, + ACTIONS(2004), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227799] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7402), 1, + STATE(7345), 1, sym_comment, - ACTIONS(10282), 3, + ACTIONS(10777), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [237331] = 4, - ACTIONS(249), 1, + [227811] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11515), 1, - aux_sym_cmd_identifier_token41, - STATE(7403), 1, + STATE(7346), 1, sym_comment, - ACTIONS(11517), 2, - sym_filesize_unit, - sym_duration_unit, - [237345] = 5, + ACTIONS(11549), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [227823] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - ACTIONS(11519), 1, + ACTIONS(5679), 1, anon_sym_RBRACK, - STATE(6358), 1, - aux_sym__multiple_types_repeat1, - STATE(7404), 1, + ACTIONS(5681), 1, + sym__entry_separator, + STATE(7347), 1, sym_comment, - [237361] = 4, - ACTIONS(249), 1, + [227836] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(2248), 1, + aux_sym_unquoted_token4, + ACTIONS(2250), 1, anon_sym_LBRACE, - STATE(6833), 1, - sym_block, - STATE(7405), 1, + STATE(7348), 1, sym_comment, - [237374] = 4, + [227849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8082), 1, + ACTIONS(2234), 1, + anon_sym_RBRACE, + ACTIONS(2238), 1, sym__entry_separator, - ACTIONS(8084), 1, - anon_sym_RBRACK, - STATE(7406), 1, + STATE(7349), 1, sym_comment, - [237387] = 4, - ACTIONS(3), 1, + [227862] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6012), 1, - sym__entry_separator, - STATE(3034), 1, - aux_sym__multiple_types_repeat1, - STATE(7407), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(6914), 1, + sym_block, + STATE(7350), 1, sym_comment, - [237400] = 4, - ACTIONS(249), 1, + [227875] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(6780), 1, + STATE(6515), 1, sym_block, - STATE(7408), 1, + STATE(7351), 1, sym_comment, - [237413] = 4, + [227888] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7753), 1, - sym__entry_separator, - ACTIONS(7757), 1, - anon_sym_RBRACK, - STATE(7409), 1, + ACTIONS(11551), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7352), 1, sym_comment, - [237426] = 4, - ACTIONS(249), 1, + STATE(7491), 1, + aux_sym__unquoted_with_expr_repeat1, + [227901] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - ACTIONS(2252), 1, - aux_sym_unquoted_token2, - STATE(7410), 1, + STATE(5147), 1, + sym_block, + STATE(7353), 1, sym_comment, - [237439] = 4, - ACTIONS(249), 1, + [227914] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1850), 1, - anon_sym_LBRACE, - ACTIONS(1852), 1, + ACTIONS(1579), 1, aux_sym_unquoted_token2, - STATE(7411), 1, - sym_comment, - [237452] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11521), 1, - sym__newline, - ACTIONS(11523), 1, - sym__space, - STATE(7412), 1, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + STATE(7354), 1, sym_comment, - [237465] = 4, - ACTIONS(249), 1, + [227927] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - STATE(7230), 1, + STATE(7203), 1, sym_block, - STATE(7413), 1, + STATE(7355), 1, sym_comment, - [237478] = 4, + [227940] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11525), 1, - anon_sym_RBRACK, - ACTIONS(11527), 1, - sym__entry_separator, - STATE(7414), 1, + ACTIONS(2214), 1, + anon_sym_in2, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(7356), 1, sym_comment, - [237491] = 4, + [227953] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5107), 1, - sym__entry_separator, - ACTIONS(5110), 1, - anon_sym_RBRACE, - STATE(7415), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + ACTIONS(2222), 1, + anon_sym_in2, + STATE(7357), 1, sym_comment, - [237504] = 4, + [227966] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11529), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7416), 1, + ACTIONS(11553), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7358), 1, sym_comment, - STATE(7444), 1, - aux_sym__unquoted_with_expr_repeat1, - [237517] = 4, - ACTIONS(3), 1, + STATE(7476), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [227979] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11531), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7417), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(7359), 1, sym_comment, - STATE(7445), 1, - aux_sym__unquoted_with_expr_repeat1, - [237530] = 4, - ACTIONS(249), 1, + STATE(7503), 1, + sym__expr_parenthesized_immediate, + [227992] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(7119), 1, + STATE(6214), 1, sym_block, - STATE(7418), 1, - sym_comment, - [237543] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym__unquoted_in_record_token4, - STATE(7419), 1, + STATE(7360), 1, sym_comment, - [237556] = 4, - ACTIONS(3), 1, + [228005] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11533), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7420), 1, + ACTIONS(9432), 1, + anon_sym_LBRACE, + STATE(6952), 1, + sym_val_record, + STATE(7361), 1, sym_comment, - STATE(7553), 1, - aux_sym__unquoted_with_expr_repeat1, - [237569] = 4, - ACTIONS(3), 1, + [228018] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11535), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7421), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(6215), 1, + sym_block, + STATE(7362), 1, sym_comment, - STATE(7555), 1, - aux_sym__unquoted_with_expr_repeat1, - [237582] = 4, - ACTIONS(249), 1, + [228031] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, + ACTIONS(5556), 1, anon_sym_LPAREN2, - STATE(7422), 1, + STATE(7363), 1, sym_comment, - STATE(7657), 1, + STATE(7401), 1, sym__expr_parenthesized_immediate, - [237595] = 4, + [228044] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5885), 1, - anon_sym_RBRACK, - ACTIONS(5891), 1, - sym__entry_separator, - STATE(7423), 1, + ACTIONS(11555), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7364), 1, sym_comment, - [237608] = 4, - ACTIONS(3), 1, + STATE(7532), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [228057] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11537), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7424), 1, + STATE(7365), 1, sym_comment, - STATE(7544), 1, - aux_sym__unquoted_with_expr_repeat1, - [237621] = 4, + ACTIONS(11557), 2, + anon_sym_RBRACK, + sym_hex_digit, + [228068] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2277), 1, - anon_sym_RBRACE, - ACTIONS(2279), 1, - sym__entry_separator, - STATE(7425), 1, + ACTIONS(1030), 1, + anon_sym_in2, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(7366), 1, + sym_comment, + [228081] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(6636), 1, + sym_block, + STATE(7367), 1, sym_comment, - [237634] = 4, + [228094] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11539), 1, + ACTIONS(11559), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7426), 1, + STATE(7368), 1, sym_comment, - STATE(7541), 1, + STATE(7533), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [237647] = 4, + [228107] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11541), 1, + ACTIONS(11561), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7427), 1, + STATE(7369), 1, sym_comment, - STATE(7541), 1, + STATE(7510), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [237660] = 4, + [228120] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2246), 1, - anon_sym_RBRACE, - ACTIONS(2250), 1, - sym__entry_separator, - STATE(7428), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(7370), 1, sym_comment, - [237673] = 4, - ACTIONS(249), 1, + [228133] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(7182), 1, - sym_block, - STATE(7429), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(7371), 1, sym_comment, - [237686] = 4, + STATE(7504), 1, + sym__expr_parenthesized_immediate, + [228146] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8034), 1, + ACTIONS(8093), 1, sym__entry_separator, - ACTIONS(8036), 1, + ACTIONS(8095), 1, anon_sym_RBRACK, - STATE(7430), 1, - sym_comment, - [237699] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5707), 1, - sym__entry_separator, - STATE(2699), 1, - aux_sym__multiple_types_repeat1, - STATE(7431), 1, + STATE(7372), 1, sym_comment, - [237712] = 4, - ACTIONS(249), 1, + [228159] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6216), 1, - sym_block, - STATE(7432), 1, + ACTIONS(5556), 1, + anon_sym_LPAREN2, + STATE(7373), 1, sym_comment, - [237725] = 4, - ACTIONS(249), 1, + STATE(7562), 1, + sym__expr_parenthesized_immediate, + [228172] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(7433), 1, + ACTIONS(2258), 1, + aux_sym_unquoted_token2, + STATE(7374), 1, sym_comment, - STATE(7774), 1, - sym__expr_parenthesized_immediate, - [237738] = 4, + [228185] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2281), 1, - anon_sym_RBRACE, - ACTIONS(2285), 1, + ACTIONS(8103), 1, sym__entry_separator, - STATE(7434), 1, + ACTIONS(8105), 1, + anon_sym_RBRACK, + STATE(7375), 1, sym_comment, - [237751] = 4, - ACTIONS(3), 1, + [228198] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11543), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7426), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7435), 1, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + ACTIONS(2189), 1, + anon_sym_LBRACE, + STATE(7376), 1, sym_comment, - [237764] = 4, - ACTIONS(3), 1, + [228211] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2462), 1, - anon_sym_RBRACE, - ACTIONS(2464), 1, - sym__entry_separator, - STATE(7436), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(11563), 1, + anon_sym_make, + STATE(7377), 1, sym_comment, - [237777] = 4, - ACTIONS(3), 1, + [228224] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5502), 1, - anon_sym_RBRACK, - ACTIONS(5504), 1, - sym__entry_separator, - STATE(7437), 1, + ACTIONS(5051), 1, + anon_sym_LBRACE, + ACTIONS(11565), 1, + anon_sym_EQ2, + STATE(7378), 1, sym_comment, - [237790] = 4, + [228237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11545), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7438), 1, + ACTIONS(11567), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7379), 1, sym_comment, - STATE(7544), 1, - aux_sym__unquoted_with_expr_repeat1, - [237803] = 4, + STATE(7476), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [228250] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11547), 1, + ACTIONS(11569), 1, aux_sym__unquoted_with_expr_token1, - STATE(7439), 1, + STATE(7380), 1, sym_comment, - STATE(7442), 1, + STATE(7491), 1, aux_sym__unquoted_with_expr_repeat1, - [237816] = 4, - ACTIONS(3), 1, + [228263] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11549), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7440), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(7381), 1, sym_comment, - STATE(7446), 1, - aux_sym__unquoted_with_expr_repeat1, - [237829] = 4, - ACTIONS(249), 1, + STATE(7386), 1, + sym__expr_parenthesized_immediate, + [228276] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(6313), 1, + STATE(6742), 1, sym_block, - STATE(7441), 1, + STATE(7382), 1, sym_comment, - [237842] = 4, + [228289] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11551), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7442), 1, - sym_comment, - STATE(7544), 1, - aux_sym__unquoted_with_expr_repeat1, - [237855] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_LPAREN2, - STATE(7443), 1, + ACTIONS(7981), 1, + anon_sym_RBRACK, + ACTIONS(7983), 1, + sym__entry_separator, + STATE(7383), 1, sym_comment, - STATE(7518), 1, - sym__expr_parenthesized_immediate, - [237868] = 4, + [228302] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11553), 1, + ACTIONS(11571), 1, aux_sym__unquoted_with_expr_token1, - STATE(7444), 1, + STATE(7384), 1, sym_comment, - STATE(7544), 1, + STATE(7515), 1, aux_sym__unquoted_with_expr_repeat1, - [237881] = 4, + [228315] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11555), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7445), 1, + ACTIONS(2449), 1, + anon_sym_RBRACE, + ACTIONS(2451), 1, + sym__entry_separator, + STATE(7385), 1, sym_comment, - STATE(7544), 1, - aux_sym__unquoted_with_expr_repeat1, - [237894] = 4, + [228328] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11557), 1, + ACTIONS(11573), 1, aux_sym__unquoted_with_expr_token1, - STATE(7446), 1, + STATE(7386), 1, sym_comment, - STATE(7544), 1, + STATE(7485), 1, aux_sym__unquoted_with_expr_repeat1, - [237907] = 4, + [228341] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11559), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7447), 1, + ACTIONS(8107), 1, + sym__entry_separator, + ACTIONS(8109), 1, + anon_sym_RBRACK, + STATE(7387), 1, sym_comment, - STATE(7502), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [237920] = 4, - ACTIONS(249), 1, + [228354] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - ACTIONS(11561), 1, - anon_sym_make, - STATE(7448), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(6774), 1, + sym_block, + STATE(7388), 1, sym_comment, - [237933] = 4, - ACTIONS(3), 1, + [228367] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11563), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7449), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(6708), 1, + sym_block, + STATE(7389), 1, sym_comment, - STATE(7495), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [237946] = 4, + [228380] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(6558), 1, + sym_block, + STATE(7390), 1, + sym_comment, + [228393] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11565), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7450), 1, + ACTIONS(11575), 1, + anon_sym_RBRACE, + ACTIONS(11577), 1, + sym__entry_separator, + STATE(7391), 1, sym_comment, - STATE(7496), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [237959] = 4, - ACTIONS(249), 1, + [228406] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6242), 1, - sym_block, - STATE(7451), 1, + ACTIONS(11579), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7392), 1, sym_comment, - [237972] = 4, - ACTIONS(249), 1, + STATE(7511), 1, + aux_sym__unquoted_with_expr_repeat1, + [228419] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6249), 1, - sym_block, - STATE(7452), 1, + ACTIONS(11581), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7393), 1, sym_comment, - [237985] = 4, + STATE(7500), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [228432] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(1878), 1, anon_sym_RBRACE, - ACTIONS(1850), 1, + ACTIONS(1886), 1, sym__entry_separator, - STATE(7453), 1, + STATE(7394), 1, sym_comment, - [237998] = 4, - ACTIONS(249), 1, + [228445] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(6734), 1, + STATE(6743), 1, sym_block, - STATE(7454), 1, + STATE(7395), 1, sym_comment, - [238011] = 4, - ACTIONS(249), 1, + [228458] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6735), 1, - sym_block, - STATE(7455), 1, + ACTIONS(11583), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7396), 1, sym_comment, - [238024] = 4, + STATE(7528), 1, + aux_sym__unquoted_with_expr_repeat1, + [228471] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11567), 1, + ACTIONS(5655), 1, anon_sym_RBRACK, - ACTIONS(11569), 1, + ACTIONS(5657), 1, sym__entry_separator, - STATE(7456), 1, + STATE(7397), 1, sym_comment, - [238037] = 4, + [228484] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2293), 1, + ACTIONS(10051), 1, anon_sym_RBRACE, - ACTIONS(2297), 1, + ACTIONS(10053), 1, sym__entry_separator, - STATE(7457), 1, + STATE(7398), 1, + sym_comment, + [228497] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(6791), 1, + sym_block, + STATE(7399), 1, sym_comment, - [238050] = 4, + [228510] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2303), 1, + ACTIONS(2206), 1, anon_sym_RBRACE, - ACTIONS(2305), 1, + ACTIONS(2210), 1, sym__entry_separator, - STATE(7458), 1, + STATE(7400), 1, sym_comment, - [238063] = 4, + [228523] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1090), 1, - anon_sym_in, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(7459), 1, + ACTIONS(11585), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7401), 1, sym_comment, - [238076] = 4, + STATE(7442), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [228536] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11571), 1, + ACTIONS(11587), 1, aux_sym__unquoted_with_expr_token1, - STATE(7460), 1, + STATE(7402), 1, sym_comment, - STATE(7493), 1, + STATE(7491), 1, aux_sym__unquoted_with_expr_repeat1, - [238089] = 4, - ACTIONS(249), 1, + [228549] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(6487), 1, + STATE(6248), 1, sym_block, - STATE(7461), 1, - sym_comment, - [238102] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1640), 1, - anon_sym_in, - ACTIONS(6929), 1, - aux_sym_unquoted_token2, - STATE(7462), 1, + STATE(7403), 1, sym_comment, - [238115] = 4, - ACTIONS(249), 1, + [228562] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(1880), 1, anon_sym_LPAREN2, - STATE(7416), 1, - sym__expr_parenthesized_immediate, - STATE(7463), 1, - sym_comment, - [238128] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6500), 1, - sym_block, - STATE(7464), 1, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + STATE(7404), 1, sym_comment, - [238141] = 4, + [228575] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2458), 1, - anon_sym_RBRACE, - ACTIONS(2460), 1, - sym__entry_separator, - STATE(7465), 1, + ACTIONS(11589), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7405), 1, sym_comment, - [238154] = 4, + STATE(7453), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [228588] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6494), 1, + ACTIONS(2252), 1, + anon_sym_RBRACE, + ACTIONS(2256), 1, sym__entry_separator, - STATE(3470), 1, - aux_sym__multiple_types_repeat1, - STATE(7466), 1, - sym_comment, - [238167] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11573), 1, - sym__newline, - ACTIONS(11575), 1, - sym__space, - STATE(7467), 1, + STATE(7406), 1, sym_comment, - [238180] = 4, - ACTIONS(249), 1, + [228601] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - STATE(6810), 1, + STATE(7071), 1, sym_block, - STATE(7468), 1, + STATE(7407), 1, sym_comment, - [238193] = 4, - ACTIONS(249), 1, + [228614] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1630), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(7449), 1, - sym__expr_parenthesized_immediate, - STATE(7469), 1, - sym_comment, - [238206] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6352), 1, - sym_block, - STATE(7470), 1, + STATE(7408), 1, sym_comment, - [238219] = 4, - ACTIONS(249), 1, + STATE(7412), 1, + sym__expr_parenthesized_immediate, + [228627] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(6824), 1, - sym_block, - STATE(7471), 1, + ACTIONS(11591), 1, + sym__newline, + ACTIONS(11593), 1, + sym__space, + STATE(7409), 1, sym_comment, - [238232] = 4, + [228640] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11577), 1, + ACTIONS(11595), 1, aux_sym__unquoted_with_expr_token1, - STATE(7472), 1, + STATE(7410), 1, sym_comment, - STATE(7499), 1, + STATE(7491), 1, aux_sym__unquoted_with_expr_repeat1, - [238245] = 4, + [228653] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5672), 1, + ACTIONS(7953), 1, sym__entry_separator, - STATE(2696), 1, - aux_sym__multiple_types_repeat1, - STATE(7473), 1, + ACTIONS(7957), 1, + anon_sym_RBRACK, + STATE(7411), 1, sym_comment, - [238258] = 4, - ACTIONS(249), 1, + [228666] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(2339), 1, - anon_sym_LBRACE, - STATE(7474), 1, + ACTIONS(11597), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7402), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7412), 1, sym_comment, - [238271] = 4, + [228679] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym__unquoted_in_list_token4, - STATE(7475), 1, + ACTIONS(8181), 1, + sym__entry_separator, + ACTIONS(8183), 1, + anon_sym_RBRACK, + STATE(7413), 1, sym_comment, - [238284] = 4, - ACTIONS(249), 1, + [228692] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - STATE(4951), 1, + STATE(7054), 1, sym_block, - STATE(7476), 1, + STATE(7414), 1, sym_comment, - [238297] = 4, - ACTIONS(249), 1, + [228705] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1640), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - ACTIONS(8580), 1, - aux_sym_unquoted_token2, - STATE(7477), 1, + STATE(6915), 1, + sym_block, + STATE(7415), 1, sym_comment, - [238310] = 4, + [228718] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11579), 1, - anon_sym_RBRACE, - ACTIONS(11581), 1, + ACTIONS(11599), 1, + anon_sym_RBRACK, + ACTIONS(11601), 1, sym__entry_separator, - STATE(7478), 1, - sym_comment, - [238323] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11583), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7479), 1, + STATE(7416), 1, sym_comment, - STATE(7500), 1, - aux_sym__unquoted_with_expr_repeat1, - [238336] = 4, - ACTIONS(249), 1, + [228731] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - STATE(4862), 1, + STATE(6796), 1, sym_block, - STATE(7480), 1, + STATE(7417), 1, sym_comment, - [238349] = 4, + [228744] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11585), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7481), 1, - sym_comment, - STATE(7523), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [238362] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(7482), 1, - sym_comment, - STATE(7603), 1, - sym__expr_parenthesized_immediate, - [238375] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6198), 1, - sym_block, - STATE(7483), 1, + ACTIONS(11603), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7410), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7418), 1, sym_comment, - [238388] = 4, + [228757] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7818), 1, + ACTIONS(5928), 1, anon_sym_RBRACK, - ACTIONS(7820), 1, + ACTIONS(5934), 1, sym__entry_separator, - STATE(7484), 1, + STATE(7419), 1, sym_comment, - [238401] = 4, - ACTIONS(249), 1, + [228770] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6199), 1, - sym_block, - STATE(7485), 1, + ACTIONS(5014), 1, + anon_sym_in2, + ACTIONS(11605), 1, + anon_sym_EQ2, + STATE(7420), 1, sym_comment, - [238414] = 4, - ACTIONS(249), 1, + [228783] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(1886), 1, anon_sym_LBRACE, - STATE(6291), 1, - sym_block, - STATE(7486), 1, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + STATE(7421), 1, sym_comment, - [238427] = 4, - ACTIONS(249), 1, + [228796] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(5014), 1, anon_sym_LBRACE, - STATE(6297), 1, - sym_block, - STATE(7487), 1, - sym_comment, - [238440] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11587), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7488), 1, + ACTIONS(11607), 1, + anon_sym_EQ2, + STATE(7422), 1, sym_comment, - STATE(7523), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [238453] = 4, - ACTIONS(249), 1, + [228809] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(6326), 1, + STATE(6653), 1, sym_block, - STATE(7489), 1, + STATE(7423), 1, sym_comment, - [238466] = 4, - ACTIONS(249), 1, + [228822] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5518), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - STATE(7490), 1, - sym_comment, - [238479] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(7186), 1, - sym_block, - STATE(7491), 1, + STATE(7424), 1, sym_comment, - [238492] = 4, + STATE(7999), 1, + sym__expr_parenthesized_immediate, + [228835] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9767), 1, + ACTIONS(11609), 1, anon_sym_RBRACE, - ACTIONS(9769), 1, + ACTIONS(11611), 1, sym__entry_separator, - STATE(7492), 1, + STATE(7425), 1, sym_comment, - [238505] = 4, + [228848] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11589), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7493), 1, + ACTIONS(11613), 1, + sym__newline, + ACTIONS(11615), 1, + sym__space, + STATE(7426), 1, sym_comment, - STATE(7544), 1, - aux_sym__unquoted_with_expr_repeat1, - [238518] = 4, - ACTIONS(3), 1, + [228861] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11591), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, STATE(7427), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7494), 1, sym_comment, - [238531] = 4, + STATE(7446), 1, + sym__expr_parenthesized_immediate, + [228874] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11593), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7495), 1, + STATE(7428), 1, sym_comment, - STATE(7541), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [238544] = 4, - ACTIONS(3), 1, + ACTIONS(2248), 2, + anon_sym_in2, + aux_sym_unquoted_token4, + [228885] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11595), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7496), 1, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + ACTIONS(2238), 1, + anon_sym_LBRACE, + STATE(7429), 1, sym_comment, - STATE(7541), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [238557] = 4, + [228898] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11597), 1, + ACTIONS(5683), 1, anon_sym_RBRACK, - ACTIONS(11599), 1, + ACTIONS(5685), 1, sym__entry_separator, - STATE(7497), 1, + STATE(7430), 1, sym_comment, - [238570] = 4, - ACTIONS(249), 1, + [228911] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(7078), 1, + STATE(6469), 1, sym_block, - STATE(7498), 1, + STATE(7431), 1, sym_comment, - [238583] = 4, + [228924] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11601), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7499), 1, + ACTIONS(5695), 1, + anon_sym_RBRACK, + ACTIONS(5697), 1, + sym__entry_separator, + STATE(7432), 1, sym_comment, - STATE(7544), 1, - aux_sym__unquoted_with_expr_repeat1, - [238596] = 4, + [228937] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11603), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7500), 1, + ACTIONS(11617), 1, + anon_sym_RBRACK, + ACTIONS(11619), 1, + sym__entry_separator, + STATE(7433), 1, sym_comment, - STATE(7544), 1, - aux_sym__unquoted_with_expr_repeat1, - [238609] = 4, - ACTIONS(3), 1, + [228950] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2335), 1, - anon_sym_RBRACE, - ACTIONS(2339), 1, - sym__entry_separator, - STATE(7501), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(6775), 1, + sym_block, + STATE(7434), 1, + sym_comment, + [228963] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1721), 1, + anon_sym_in2, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + STATE(7435), 1, sym_comment, - [238622] = 4, + [228976] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11605), 1, + ACTIONS(11621), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7502), 1, + STATE(7436), 1, sym_comment, - STATE(7523), 1, + STATE(7441), 1, aux_sym__unquoted_in_list_with_expr_repeat1, - [238635] = 4, - ACTIONS(249), 1, + [228989] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - ACTIONS(2337), 1, - anon_sym_LPAREN2, - STATE(7503), 1, + ACTIONS(11623), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7352), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7437), 1, sym_comment, - [238648] = 4, - ACTIONS(249), 1, + [229002] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(7079), 1, + STATE(6453), 1, sym_block, - STATE(7504), 1, + STATE(7438), 1, sym_comment, - [238661] = 4, - ACTIONS(249), 1, + [229015] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(7196), 1, + STATE(6457), 1, sym_block, - STATE(7505), 1, - sym_comment, - [238674] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2063), 1, - anon_sym_RBRACE, - ACTIONS(2065), 1, - sym__entry_separator, - STATE(7506), 1, - sym_comment, - [238687] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7242), 1, - anon_sym_RBRACK, - ACTIONS(7244), 1, - sym__entry_separator, - STATE(7507), 1, + STATE(7439), 1, sym_comment, - [238700] = 4, - ACTIONS(249), 1, + [229028] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - STATE(7082), 1, + STATE(6906), 1, sym_block, - STATE(7508), 1, + STATE(7440), 1, sym_comment, - [238713] = 4, - ACTIONS(249), 1, + [229041] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(7509), 1, + ACTIONS(11625), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7441), 1, sym_comment, - STATE(7791), 1, - sym__expr_parenthesized_immediate, - [238726] = 3, + STATE(7462), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [229054] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7510), 1, + ACTIONS(11627), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7442), 1, sym_comment, - ACTIONS(2289), 2, - anon_sym_in, - aux_sym_unquoted_token4, - [238737] = 4, + STATE(7462), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [229067] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11629), 1, + anon_sym_DASH2, + STATE(7443), 1, + sym_comment, + STATE(7963), 1, + sym_param_short_flag, + [229080] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(2248), 1, anon_sym_RBRACE, - ACTIONS(2492), 1, + ACTIONS(2250), 1, sym__entry_separator, - STATE(7511), 1, - sym_comment, - [238750] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6397), 1, - sym_block, - STATE(7512), 1, + STATE(7444), 1, sym_comment, - [238763] = 4, + [229093] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3933), 1, - sym__space, - STATE(1077), 1, - aux_sym_pipe_element_repeat1, - STATE(7513), 1, + ACTIONS(2187), 1, + anon_sym_RBRACE, + ACTIONS(2189), 1, + sym__entry_separator, + STATE(7445), 1, sym_comment, - [238776] = 4, + [229106] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11607), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7514), 1, + ACTIONS(11631), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7358), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7446), 1, sym_comment, - STATE(7523), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [238789] = 4, - ACTIONS(249), 1, + [229119] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4945), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - ACTIONS(11609), 1, - anon_sym_EQ2, - STATE(7515), 1, - sym_comment, - [238802] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11611), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7516), 1, + STATE(6625), 1, + sym_block, + STATE(7447), 1, sym_comment, - STATE(7544), 1, - aux_sym__unquoted_with_expr_repeat1, - [238815] = 4, - ACTIONS(3), 1, + [229132] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11613), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7517), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(6628), 1, + sym_block, + STATE(7448), 1, sym_comment, - STATE(7544), 1, - aux_sym__unquoted_with_expr_repeat1, - [238828] = 4, + [229145] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11615), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7481), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7518), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym__unquoted_in_record_token4, + STATE(7449), 1, sym_comment, - [238841] = 4, + [229158] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_RBRACE, - ACTIONS(2198), 1, + ACTIONS(5135), 1, sym__entry_separator, - STATE(7519), 1, + ACTIONS(5138), 1, + anon_sym_RBRACE, + STATE(7450), 1, sym_comment, - [238854] = 4, - ACTIONS(249), 1, + [229171] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(1874), 1, anon_sym_LBRACE, - STATE(6398), 1, - sym_block, - STATE(7520), 1, - sym_comment, - [238867] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2281), 1, - anon_sym_in, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(7521), 1, + STATE(7451), 1, sym_comment, - [238880] = 4, - ACTIONS(249), 1, + [229184] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - STATE(6400), 1, + STATE(6790), 1, sym_block, - STATE(7522), 1, + STATE(7452), 1, sym_comment, - [238893] = 3, + [229197] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11617), 1, + ACTIONS(11633), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7523), 2, + STATE(7453), 1, sym_comment, + STATE(7462), 1, aux_sym__unquoted_in_list_with_expr_repeat1, - [238904] = 4, - ACTIONS(249), 1, + [229210] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10063), 1, + anon_sym_RBRACE, + ACTIONS(10065), 1, + sym__entry_separator, + STATE(7454), 1, + sym_comment, + [229223] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(7420), 1, + STATE(7437), 1, sym__expr_parenthesized_immediate, - STATE(7524), 1, + STATE(7455), 1, sym_comment, - [238917] = 4, + [229236] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11620), 1, + ACTIONS(11635), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7514), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7525), 1, + STATE(7456), 1, sym_comment, - [238930] = 4, - ACTIONS(249), 1, + STATE(7542), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [229249] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_LPAREN2, - STATE(7526), 1, + STATE(7457), 1, sym_comment, - STATE(7569), 1, - sym__expr_parenthesized_immediate, - [238943] = 4, + ACTIONS(11388), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [229260] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5570), 1, - anon_sym_RBRACK, - ACTIONS(5572), 1, - sym__entry_separator, - STATE(7527), 1, + ACTIONS(1032), 1, + anon_sym_LBRACE, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(7458), 1, sym_comment, - [238956] = 4, - ACTIONS(249), 1, + [229273] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(1721), 1, anon_sym_LBRACE, - STATE(6420), 1, - sym_block, - STATE(7528), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + STATE(7459), 1, sym_comment, - [238969] = 4, + [229286] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5601), 1, - anon_sym_RBRACK, - ACTIONS(5603), 1, - sym__entry_separator, - STATE(7529), 1, + ACTIONS(11637), 1, + anon_sym_LPAREN2, + ACTIONS(11639), 1, + aux_sym__record_key_token1, + STATE(7460), 1, sym_comment, - [238982] = 4, + [229299] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2151), 1, anon_sym_RBRACE, - ACTIONS(2291), 1, + ACTIONS(2153), 1, sym__entry_separator, - STATE(7530), 1, + STATE(7461), 1, sym_comment, - [238995] = 4, + [229312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_RBRACE, - ACTIONS(1796), 1, - sym__entry_separator, - STATE(7531), 1, + ACTIONS(11641), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7462), 2, sym_comment, - [239008] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [229323] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6494), 1, - sym__entry_separator, - STATE(6811), 1, - aux_sym__multiple_types_repeat1, - STATE(7532), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(7221), 1, + sym_block, + STATE(7463), 1, sym_comment, - [239021] = 4, - ACTIONS(249), 1, + [229336] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(6798), 1, + sym_block, + STATE(7464), 1, + sym_comment, + [229349] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(1711), 1, anon_sym_LPAREN2, - STATE(7533), 1, + STATE(7465), 1, sym_comment, - STATE(7582), 1, + STATE(7703), 1, sym__expr_parenthesized_immediate, - [239034] = 4, + [229362] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11622), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7534), 1, + ACTIONS(6044), 1, + sym__entry_separator, + STATE(3044), 1, + aux_sym__multiple_types_repeat1, + STATE(7466), 1, sym_comment, - STATE(7564), 1, - aux_sym__unquoted_with_expr_repeat1, - [239047] = 4, - ACTIONS(3), 1, + [229375] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11624), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7535), 1, + ACTIONS(2256), 1, + anon_sym_LBRACE, + ACTIONS(2258), 1, + aux_sym_unquoted_token2, + STATE(7467), 1, sym_comment, - STATE(7566), 1, - aux_sym__unquoted_with_expr_repeat1, - [239060] = 4, - ACTIONS(3), 1, + [229388] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2293), 1, - anon_sym_in, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(7536), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(4969), 1, + sym_block, + STATE(7468), 1, sym_comment, - [239073] = 4, - ACTIONS(3), 1, + [229401] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - ACTIONS(2303), 1, - anon_sym_in, - STATE(7537), 1, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + STATE(7393), 1, + sym__expr_parenthesized_immediate, + STATE(7469), 1, + sym_comment, + [229414] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(7229), 1, + sym_block, + STATE(7470), 1, + sym_comment, + [229427] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(7204), 1, + sym_block, + STATE(7471), 1, sym_comment, - [239086] = 4, - ACTIONS(249), 1, + [229440] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(9492), 1, anon_sym_LBRACE, - STATE(7394), 1, - sym_block, - STATE(7538), 1, + STATE(6591), 1, + sym_val_record, + STATE(7472), 1, sym_comment, - [239099] = 4, + [229453] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9867), 1, + ACTIONS(2214), 1, anon_sym_RBRACE, - ACTIONS(9869), 1, + ACTIONS(2218), 1, sym__entry_separator, - STATE(7539), 1, + STATE(7473), 1, sym_comment, - [239112] = 4, - ACTIONS(249), 1, + [229466] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(2222), 1, + anon_sym_RBRACE, + ACTIONS(2224), 1, + sym__entry_separator, + STATE(7474), 1, + sym_comment, + [229479] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + ACTIONS(1868), 1, anon_sym_LPAREN2, - STATE(7439), 1, - sym__expr_parenthesized_immediate, - STATE(7540), 1, + STATE(7475), 1, sym_comment, - [239125] = 3, + [229492] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11626), 1, + ACTIONS(11644), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7541), 2, + STATE(7476), 2, sym_comment, aux_sym__unquoted_in_record_with_expr_repeat1, - [239136] = 4, + [229503] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, - anon_sym_RBRACE, - ACTIONS(2202), 1, + ACTIONS(7371), 1, + anon_sym_RBRACK, + ACTIONS(7373), 1, sym__entry_separator, - STATE(7542), 1, - sym_comment, - [239149] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - STATE(7543), 1, + STATE(7477), 1, sym_comment, - [239162] = 3, + [229516] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11629), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7544), 2, + ACTIONS(5687), 1, + anon_sym_RBRACK, + ACTIONS(5689), 1, + sym__entry_separator, + STATE(7478), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [239173] = 4, - ACTIONS(249), 1, + [229529] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(6804), 1, - sym_block, - STATE(7545), 1, + ACTIONS(6502), 1, + sym__entry_separator, + STATE(7056), 1, + aux_sym__multiple_types_repeat1, + STATE(7479), 1, sym_comment, - [239186] = 4, - ACTIONS(249), 1, + [229542] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(4249), 1, anon_sym_LPAREN2, - STATE(7534), 1, + STATE(7384), 1, sym__expr_parenthesized_immediate, - STATE(7546), 1, + STATE(7480), 1, sym_comment, - [239199] = 4, - ACTIONS(249), 1, + [229555] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(4963), 1, - sym_block, - STATE(7547), 1, + ACTIONS(2290), 1, + sym__entry_separator, + STATE(627), 1, + aux_sym__multiple_types_repeat1, + STATE(7481), 1, sym_comment, - [239212] = 4, - ACTIONS(249), 1, + [229568] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2252), 1, - aux_sym_unquoted_token2, - STATE(7548), 1, + ACTIONS(1866), 1, + anon_sym_RBRACE, + ACTIONS(1874), 1, + sym__entry_separator, + STATE(7482), 1, sym_comment, - [239225] = 4, - ACTIONS(249), 1, + [229581] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(7549), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + ACTIONS(2224), 1, + anon_sym_LBRACE, + STATE(7483), 1, sym_comment, - STATE(7567), 1, + [229594] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1711), 1, + anon_sym_LPAREN2, + STATE(7364), 1, sym__expr_parenthesized_immediate, - [239238] = 4, - ACTIONS(249), 1, + STATE(7484), 1, + sym_comment, + [229607] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - ACTIONS(11561), 1, - anon_sym_make, - STATE(7550), 1, + ACTIONS(11647), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7485), 1, sym_comment, - [239251] = 4, - ACTIONS(249), 1, + STATE(7491), 1, + aux_sym__unquoted_with_expr_repeat1, + [229620] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(7155), 1, + STATE(6684), 1, sym_block, - STATE(7551), 1, + STATE(7486), 1, sym_comment, - [239264] = 4, - ACTIONS(249), 1, + [229633] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, + ACTIONS(5556), 1, anon_sym_LPAREN2, - STATE(7472), 1, + STATE(7456), 1, sym__expr_parenthesized_immediate, - STATE(7552), 1, + STATE(7487), 1, + sym_comment, + [229646] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7488), 1, sym_comment, - [239277] = 4, + ACTIONS(9345), 2, + anon_sym_GT2, + anon_sym_AT, + [229657] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11632), 1, + ACTIONS(11649), 1, aux_sym__unquoted_with_expr_token1, - STATE(7544), 1, + STATE(7380), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7553), 1, + STATE(7489), 1, sym_comment, - [239290] = 4, + [229670] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1640), 1, - aux_sym_record_entry_token1, - ACTIONS(10256), 1, - aux_sym_cmd_identifier_token37, - STATE(7554), 1, + ACTIONS(5691), 1, + anon_sym_RBRACK, + ACTIONS(5693), 1, + sym__entry_separator, + STATE(7490), 1, sym_comment, - [239303] = 4, + [229683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11634), 1, + ACTIONS(11651), 1, aux_sym__unquoted_with_expr_token1, - STATE(7544), 1, + STATE(7491), 2, + sym_comment, aux_sym__unquoted_with_expr_repeat1, - STATE(7555), 1, + [229694] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(11563), 1, + anon_sym_make, + STATE(7492), 1, sym_comment, - [239316] = 4, - ACTIONS(249), 1, + [229707] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11636), 1, - anon_sym_DASH, - STATE(7556), 1, + ACTIONS(11654), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7379), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7493), 1, sym_comment, - STATE(7758), 1, - sym_param_short_flag, - [239329] = 4, - ACTIONS(249), 1, + [229720] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_LPAREN2, - STATE(7557), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(6369), 1, + sym_block, + STATE(7494), 1, sym_comment, - STATE(7586), 1, - sym__expr_parenthesized_immediate, - [239342] = 4, - ACTIONS(249), 1, + [229733] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(7161), 1, + STATE(6443), 1, sym_block, - STATE(7558), 1, + STATE(7495), 1, sym_comment, - [239355] = 4, + [229746] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8086), 1, - sym__entry_separator, - ACTIONS(8088), 1, - anon_sym_RBRACK, - STATE(7559), 1, + ACTIONS(3670), 1, + sym__space, + STATE(1181), 1, + aux_sym_pipe_element_repeat1, + STATE(7496), 1, sym_comment, - [239368] = 3, - ACTIONS(249), 1, + [229759] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7560), 1, + ACTIONS(11656), 1, + anon_sym_RBRACK, + ACTIONS(11658), 1, + sym__entry_separator, + STATE(7497), 1, sym_comment, - ACTIONS(9163), 2, - anon_sym_GT, - anon_sym_AT, - [239379] = 4, - ACTIONS(249), 1, + [229772] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9314), 1, - anon_sym_LBRACE, - STATE(6194), 1, - sym_val_record, - STATE(7561), 1, + ACTIONS(2206), 1, + anon_sym_in2, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(7498), 1, sym_comment, - [239392] = 4, + [229785] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6542), 1, - anon_sym_LPAREN2, - ACTIONS(11638), 1, - aux_sym__record_key_token1, - STATE(7562), 1, + ACTIONS(5714), 1, + sym__entry_separator, + STATE(2741), 1, + aux_sym__multiple_types_repeat1, + STATE(7499), 1, sym_comment, - [239405] = 4, - ACTIONS(249), 1, + [229798] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4945), 1, - anon_sym_in, - ACTIONS(11640), 1, - anon_sym_EQ2, - STATE(7563), 1, + ACTIONS(11660), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7476), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7500), 1, sym_comment, - [239418] = 4, + [229811] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11642), 1, + ACTIONS(11662), 1, aux_sym__unquoted_with_expr_token1, - STATE(7544), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7564), 1, + STATE(7501), 1, sym_comment, - [239431] = 3, - ACTIONS(249), 1, + STATE(7519), 1, + aux_sym__unquoted_with_expr_repeat1, + [229824] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7565), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(4768), 1, + sym_block, + STATE(7502), 1, sym_comment, - ACTIONS(11195), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [239442] = 4, + [229837] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11644), 1, + ACTIONS(11664), 1, aux_sym__unquoted_with_expr_token1, - STATE(7544), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7566), 1, + STATE(7503), 1, sym_comment, - [239455] = 4, + STATE(7523), 1, + aux_sym__unquoted_with_expr_repeat1, + [229850] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11646), 1, + ACTIONS(11666), 1, aux_sym__unquoted_with_expr_token1, - STATE(7424), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7567), 1, + STATE(7504), 1, sym_comment, - [239468] = 4, - ACTIONS(249), 1, + STATE(7516), 1, + aux_sym__unquoted_with_expr_repeat1, + [229863] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1630), 1, - anon_sym_LPAREN2, - STATE(7435), 1, - sym__expr_parenthesized_immediate, - STATE(7568), 1, + ACTIONS(11668), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7505), 1, sym_comment, - [239481] = 4, + STATE(7517), 1, + aux_sym__unquoted_with_expr_repeat1, + [229876] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11648), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7569), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2212), 1, + aux_sym__unquoted_in_list_token4, + STATE(7506), 1, sym_comment, - STATE(7573), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [239494] = 4, + [229889] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11650), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7570), 1, + ACTIONS(11670), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7507), 1, sym_comment, - STATE(7574), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [239507] = 4, + STATE(7525), 1, + aux_sym__unquoted_with_expr_repeat1, + [229902] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2345), 1, - sym__entry_separator, - STATE(565), 1, - aux_sym__multiple_types_repeat1, - STATE(7571), 1, + ACTIONS(11672), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7508), 1, sym_comment, - [239520] = 4, - ACTIONS(249), 1, + STATE(7520), 1, + aux_sym__unquoted_with_expr_repeat1, + [229915] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6202), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - STATE(7233), 1, + STATE(6927), 1, sym_block, - STATE(7572), 1, + STATE(7509), 1, sym_comment, - [239533] = 4, + [229928] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11652), 1, + ACTIONS(11674), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7541), 1, + STATE(7476), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7573), 1, + STATE(7510), 1, sym_comment, - [239546] = 4, + [229941] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11654), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7541), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7574), 1, - sym_comment, - [239559] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4989), 1, - anon_sym_LBRACE, - ACTIONS(11656), 1, - anon_sym_EQ2, - STATE(7575), 1, - sym_comment, - [239572] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(6770), 1, - sym_block, - STATE(7576), 1, + ACTIONS(11676), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7491), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7511), 1, sym_comment, - [239585] = 4, - ACTIONS(249), 1, + [229954] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4989), 1, - anon_sym_in, - ACTIONS(11658), 1, - anon_sym_EQ2, - STATE(7577), 1, + ACTIONS(8099), 1, + sym__entry_separator, + ACTIONS(8101), 1, + anon_sym_RBRACK, + STATE(7512), 1, sym_comment, - [239598] = 4, - ACTIONS(249), 1, + [229967] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_LBRACE, - STATE(6774), 1, - sym_block, - STATE(7578), 1, + ACTIONS(8089), 1, + sym__entry_separator, + ACTIONS(8091), 1, + anon_sym_RBRACK, + STATE(7513), 1, sym_comment, - [239611] = 3, + [229980] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7579), 1, - sym_comment, - ACTIONS(1362), 2, - anon_sym_POUND_BANG, + ACTIONS(11678), 1, sym__newline, - [239622] = 4, + ACTIONS(11680), 1, + sym__space, + STATE(7514), 1, + sym_comment, + [229993] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11660), 1, + ACTIONS(11682), 1, aux_sym__unquoted_with_expr_token1, - STATE(7438), 1, + STATE(7491), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7580), 1, - sym_comment, - [239635] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - ACTIONS(1796), 1, - anon_sym_LBRACE, - STATE(7581), 1, + STATE(7515), 1, sym_comment, - [239648] = 4, + [230006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11662), 1, + ACTIONS(11684), 1, aux_sym__unquoted_with_expr_token1, - STATE(7582), 1, - sym_comment, - STATE(7589), 1, + STATE(7491), 1, aux_sym__unquoted_with_expr_repeat1, - [239661] = 4, + STATE(7516), 1, + sym_comment, + [230019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11664), 1, + ACTIONS(11686), 1, aux_sym__unquoted_with_expr_token1, - STATE(7583), 1, - sym_comment, - STATE(7591), 1, + STATE(7491), 1, aux_sym__unquoted_with_expr_repeat1, - [239674] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6211), 1, - anon_sym_LBRACE, - STATE(6718), 1, - sym_block, - STATE(7584), 1, + STATE(7517), 1, sym_comment, - [239687] = 4, + [230032] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11666), 1, - sym__newline, - ACTIONS(11668), 1, - sym__space, - STATE(7585), 1, + ACTIONS(2484), 1, + anon_sym_RBRACE, + ACTIONS(2486), 1, + sym__entry_separator, + STATE(7518), 1, sym_comment, - [239700] = 4, + [230045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11670), 1, + ACTIONS(11688), 1, aux_sym__unquoted_with_expr_token1, - STATE(7586), 1, - sym_comment, - STATE(7595), 1, + STATE(7491), 1, aux_sym__unquoted_with_expr_repeat1, - [239713] = 4, + STATE(7519), 1, + sym_comment, + [230058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11672), 1, + ACTIONS(11690), 1, aux_sym__unquoted_with_expr_token1, - STATE(7516), 1, + STATE(7491), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7587), 1, + STATE(7520), 1, sym_comment, - [239726] = 4, + [230071] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8078), 1, + ACTIONS(8111), 1, sym__entry_separator, - ACTIONS(8080), 1, + ACTIONS(8113), 1, anon_sym_RBRACK, - STATE(7588), 1, + STATE(7521), 1, + sym_comment, + [230084] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11692), 1, + sym_identifier, + ACTIONS(11694), 1, + anon_sym_DOLLAR, + STATE(7522), 1, sym_comment, - [239739] = 4, + [230097] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11674), 1, + ACTIONS(11696), 1, aux_sym__unquoted_with_expr_token1, - STATE(7544), 1, + STATE(7491), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7589), 1, + STATE(7523), 1, sym_comment, - [239752] = 4, - ACTIONS(249), 1, + [230110] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11676), 1, - sym_identifier, - ACTIONS(11678), 1, - anon_sym_DOLLAR, - STATE(7590), 1, + ACTIONS(5878), 1, + sym__entry_separator, + STATE(2862), 1, + aux_sym__multiple_types_repeat1, + STATE(7524), 1, sym_comment, - [239765] = 4, + [230123] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11680), 1, + ACTIONS(11698), 1, aux_sym__unquoted_with_expr_token1, - STATE(7544), 1, + STATE(7491), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7591), 1, + STATE(7525), 1, sym_comment, - [239778] = 4, - ACTIONS(249), 1, + [230136] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9217), 1, + ACTIONS(6184), 1, anon_sym_LBRACE, - STATE(7381), 1, - sym_val_record, - STATE(7592), 1, - sym_comment, - [239791] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11682), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7488), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7593), 1, + STATE(4904), 1, + sym_block, + STATE(7526), 1, sym_comment, - [239804] = 4, - ACTIONS(249), 1, + [230149] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6211), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - STATE(4858), 1, + STATE(4789), 1, sym_block, - STATE(7594), 1, + STATE(7527), 1, sym_comment, - [239817] = 4, + [230162] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11684), 1, + ACTIONS(11700), 1, aux_sym__unquoted_with_expr_token1, - STATE(7544), 1, + STATE(7491), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7595), 1, - sym_comment, - [239830] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8116), 1, - sym__entry_separator, - ACTIONS(8118), 1, - anon_sym_RBRACK, - STATE(7596), 1, + STATE(7528), 1, sym_comment, - [239843] = 3, - ACTIONS(249), 1, + [230175] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(7597), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(6901), 1, + sym_block, + STATE(7529), 1, sym_comment, - ACTIONS(11686), 2, - anon_sym_RBRACK, - sym_hex_digit, - [239854] = 4, - ACTIONS(249), 1, + [230188] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - ACTIONS(2279), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - STATE(7598), 1, + STATE(6773), 1, + sym_block, + STATE(7530), 1, sym_comment, - [239867] = 4, + [230201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8070), 1, + ACTIONS(2086), 1, + anon_sym_RBRACE, + ACTIONS(2088), 1, sym__entry_separator, - ACTIONS(8072), 1, - anon_sym_RBRACK, - STATE(7599), 1, + STATE(7531), 1, sym_comment, - [239880] = 4, + [230214] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8074), 1, - sym__entry_separator, - ACTIONS(8076), 1, - anon_sym_RBRACK, - STATE(7600), 1, + ACTIONS(11702), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7476), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7532), 1, sym_comment, - [239893] = 4, + [230227] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2283), 1, - anon_sym_LPAREN2, - ACTIONS(2287), 1, - aux_sym_unquoted_token4, - STATE(7601), 1, - sym_comment, - [239906] = 4, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LPAREN2, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - STATE(7602), 1, + ACTIONS(11704), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7476), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7533), 1, sym_comment, - [239919] = 4, - ACTIONS(3), 1, + [230240] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11688), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7517), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7603), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(5204), 1, + sym_block, + STATE(7534), 1, sym_comment, - [239932] = 4, + [230253] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5590), 1, + ACTIONS(5651), 1, anon_sym_RBRACK, - ACTIONS(5592), 1, + ACTIONS(5653), 1, sym__entry_separator, - STATE(7604), 1, + STATE(7535), 1, sym_comment, - [239945] = 4, + [230266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5594), 1, - anon_sym_RBRACK, - ACTIONS(5596), 1, - sym__entry_separator, - STATE(7605), 1, + ACTIONS(2210), 1, + anon_sym_LBRACE, + ACTIONS(2212), 1, + aux_sym_unquoted_token4, + STATE(7536), 1, sym_comment, - [239958] = 4, + [230279] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11690), 1, + ACTIONS(2155), 1, anon_sym_RBRACE, - ACTIONS(11692), 1, + ACTIONS(2157), 1, sym__entry_separator, - STATE(7606), 1, + STATE(7537), 1, sym_comment, - [239971] = 3, - ACTIONS(249), 1, + [230292] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11694), 1, + ACTIONS(6186), 1, anon_sym_LBRACE, - STATE(7607), 1, + STATE(7206), 1, + sym_block, + STATE(7538), 1, sym_comment, - [239981] = 3, - ACTIONS(249), 1, + [230305] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11696), 1, - sym_raw_string_end, - STATE(7608), 1, + ACTIONS(6184), 1, + anon_sym_LBRACE, + STATE(6471), 1, + sym_block, + STATE(7539), 1, sym_comment, - [239991] = 3, - ACTIONS(249), 1, + [230318] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2396), 1, - aux_sym_record_entry_token1, - STATE(7609), 1, + STATE(7540), 1, sym_comment, - [240001] = 3, - ACTIONS(3), 1, + ACTIONS(1288), 2, + anon_sym_POUND_BANG, + sym__newline, + [230329] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2275), 1, - aux_sym_unquoted_token4, - STATE(7610), 1, + ACTIONS(6186), 1, + anon_sym_LBRACE, + STATE(4901), 1, + sym_block, + STATE(7541), 1, sym_comment, - [240011] = 3, - ACTIONS(249), 1, + [230342] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11698), 1, - sym__table_head_separator, - STATE(7611), 1, + ACTIONS(11706), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7462), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7542), 1, sym_comment, - [240021] = 3, - ACTIONS(249), 1, + [230355] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11700), 1, - sym_param_short_flag_identifier, - STATE(7612), 1, + ACTIONS(2445), 1, + anon_sym_RBRACE, + ACTIONS(2447), 1, + sym__entry_separator, + STATE(7543), 1, sym_comment, - [240031] = 3, - ACTIONS(249), 1, + [230368] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11702), 1, - anon_sym_LBRACE, - STATE(7613), 1, + ACTIONS(5051), 1, + anon_sym_in2, + ACTIONS(11708), 1, + anon_sym_EQ2, + STATE(7544), 1, sym_comment, - [240041] = 3, - ACTIONS(249), 1, + [230381] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11704), 1, - anon_sym_in, - STATE(7614), 1, + ACTIONS(6502), 1, + sym__entry_separator, + STATE(3470), 1, + aux_sym__multiple_types_repeat1, + STATE(7545), 1, sym_comment, - [240051] = 3, - ACTIONS(249), 1, + [230394] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11706), 1, - anon_sym_RBRACE, - STATE(7615), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN2, + STATE(7501), 1, + sym__expr_parenthesized_immediate, + STATE(7546), 1, sym_comment, - [240061] = 3, - ACTIONS(249), 1, + [230407] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11708), 1, - aux_sym_cmd_identifier_token41, - STATE(7616), 1, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(7547), 1, sym_comment, - [240071] = 3, - ACTIONS(249), 1, + [230420] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11710), 1, - anon_sym_RPAREN, - STATE(7617), 1, + sym_raw_string_end, + STATE(7548), 1, sym_comment, - [240081] = 3, - ACTIONS(249), 1, + [230430] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11712), 1, - anon_sym_RBRACE, - STATE(7618), 1, + aux_sym_cmd_identifier_token41, + STATE(7549), 1, sym_comment, - [240091] = 3, - ACTIONS(249), 1, + [230440] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11714), 1, - aux_sym_cmd_identifier_token41, - STATE(7619), 1, + anon_sym_RBRACE, + STATE(7550), 1, sym_comment, - [240101] = 3, - ACTIONS(249), 1, + [230450] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11716), 1, - anon_sym_EQ_GT, - STATE(7620), 1, + ACTIONS(2331), 1, + aux_sym_record_entry_token1, + STATE(7551), 1, sym_comment, - [240111] = 3, - ACTIONS(249), 1, + [230460] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11718), 1, - anon_sym_RPAREN, - STATE(7621), 1, + ACTIONS(11716), 1, + anon_sym_LBRACE, + STATE(7552), 1, sym_comment, - [240121] = 3, - ACTIONS(3), 1, + [230470] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4870), 1, - aux_sym_unquoted_token4, - STATE(7622), 1, + ACTIONS(11718), 1, + anon_sym_RBRACE, + STATE(7553), 1, sym_comment, - [240131] = 3, - ACTIONS(3), 1, + [230480] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11720), 1, - sym__space, - STATE(7623), 1, + anon_sym_RPAREN, + STATE(7554), 1, sym_comment, - [240141] = 3, - ACTIONS(249), 1, + [230490] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11722), 1, - anon_sym_RBRACE, - STATE(7624), 1, + anon_sym_RPAREN2, + STATE(7555), 1, sym_comment, - [240151] = 3, - ACTIONS(249), 1, + [230500] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11724), 1, - sym_raw_string_end, - STATE(7625), 1, + sym__space, + STATE(7556), 1, sym_comment, - [240161] = 3, - ACTIONS(249), 1, + [230510] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11726), 1, - anon_sym_RBRACK, - STATE(7626), 1, + sym_raw_string_end, + STATE(7557), 1, sym_comment, - [240171] = 3, - ACTIONS(249), 1, + [230520] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11728), 1, - sym_raw_string_end, - STATE(7627), 1, + anon_sym_RBRACK, + STATE(7558), 1, sym_comment, - [240181] = 3, - ACTIONS(249), 1, + [230530] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11730), 1, - anon_sym_RBRACE, - STATE(7628), 1, + aux_sym_shebang_token1, + STATE(7559), 1, sym_comment, - [240191] = 3, - ACTIONS(249), 1, + [230540] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11732), 1, - anon_sym_RPAREN, - STATE(7629), 1, - sym_comment, - [240201] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1558), 1, - aux_sym_unquoted_token2, - STATE(7630), 1, + anon_sym_EQ, + STATE(7560), 1, sym_comment, - [240211] = 3, - ACTIONS(249), 1, + [230550] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11734), 1, - sym_raw_string_end, - STATE(7631), 1, + anon_sym_EQ, + STATE(7561), 1, sym_comment, - [240221] = 3, - ACTIONS(249), 1, + [230560] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6929), 1, - aux_sym_unquoted_token2, - STATE(7632), 1, + ACTIONS(11736), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7562), 1, sym_comment, - [240231] = 3, - ACTIONS(249), 1, + [230570] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(561), 1, - anon_sym_RPAREN2, - STATE(7633), 1, + ACTIONS(11738), 1, + sym_raw_string_end, + STATE(7563), 1, sym_comment, - [240241] = 3, - ACTIONS(3), 1, + [230580] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2230), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7634), 1, + ACTIONS(11740), 1, + anon_sym_RBRACE, + STATE(7564), 1, sym_comment, - [240251] = 3, - ACTIONS(249), 1, + [230590] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11736), 1, - anon_sym_RBRACE, - STATE(7635), 1, + ACTIONS(4259), 1, + aux_sym_unquoted_token2, + STATE(7565), 1, sym_comment, - [240261] = 3, + [230600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6985), 1, + ACTIONS(6485), 1, aux_sym_unquoted_token4, - STATE(7636), 1, - sym_comment, - [240271] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(11738), 1, - sym__table_head_separator, - STATE(7637), 1, - sym_comment, - [240281] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(11740), 1, - anon_sym_RBRACE, - STATE(7638), 1, + STATE(7566), 1, sym_comment, - [240291] = 3, - ACTIONS(249), 1, + [230610] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11742), 1, - sym_raw_string_end, - STATE(7639), 1, + anon_sym_RBRACK, + STATE(7567), 1, sym_comment, - [240301] = 3, - ACTIONS(249), 1, + [230620] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11744), 1, - aux_sym_record_entry_token1, - STATE(7640), 1, + anon_sym_RPAREN, + STATE(7568), 1, sym_comment, - [240311] = 3, - ACTIONS(249), 1, + [230630] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11746), 1, anon_sym_RBRACE, - STATE(7641), 1, + STATE(7569), 1, sym_comment, - [240321] = 3, - ACTIONS(249), 1, + [230640] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11748), 1, - sym__table_head_separator, - STATE(7642), 1, + anon_sym_RBRACE, + STATE(7570), 1, sym_comment, - [240331] = 3, - ACTIONS(249), 1, + [230650] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1723), 1, + aux_sym__unquoted_in_record_token2, + STATE(7571), 1, + sym_comment, + [230660] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4864), 1, + aux_sym_unquoted_token2, + STATE(7572), 1, + sym_comment, + [230670] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11750), 1, sym_raw_string_end, - STATE(7643), 1, + STATE(7573), 1, sym_comment, - [240341] = 3, - ACTIONS(249), 1, + [230680] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11752), 1, - anon_sym_EQ, - STATE(7644), 1, - sym_comment, - [240351] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6477), 1, - aux_sym_unquoted_token2, - STATE(7645), 1, + anon_sym_RBRACK, + STATE(7574), 1, sym_comment, - [240361] = 3, - ACTIONS(249), 1, + [230690] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11754), 1, - anon_sym_RBRACK, - STATE(7646), 1, + anon_sym_RPAREN, + STATE(7575), 1, sym_comment, - [240371] = 3, - ACTIONS(249), 1, + [230700] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11756), 1, - anon_sym_RPAREN, - STATE(7647), 1, + anon_sym_RBRACE, + STATE(7576), 1, sym_comment, - [240381] = 3, - ACTIONS(249), 1, + [230710] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11758), 1, - anon_sym_RBRACE, - STATE(7648), 1, + aux_sym_cmd_identifier_token41, + STATE(7577), 1, sym_comment, - [240391] = 3, - ACTIONS(249), 1, + [230720] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11760), 1, - anon_sym_RBRACE, - STATE(7649), 1, + ACTIONS(1781), 1, + aux_sym__unquoted_in_record_token2, + STATE(7578), 1, sym_comment, - [240401] = 3, - ACTIONS(249), 1, + [230730] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11762), 1, + ACTIONS(11760), 1, anon_sym_RBRACK, - STATE(7650), 1, + STATE(7579), 1, sym_comment, - [240411] = 3, - ACTIONS(249), 1, + [230740] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11764), 1, - sym_raw_string_end, - STATE(7651), 1, + ACTIONS(11762), 1, + anon_sym_RPAREN, + STATE(7580), 1, sym_comment, - [240421] = 3, - ACTIONS(249), 1, + [230750] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8643), 1, - aux_sym__unquoted_in_list_token2, - STATE(7652), 1, + ACTIONS(11764), 1, + sym__table_head_separator, + STATE(7581), 1, sym_comment, - [240431] = 3, - ACTIONS(249), 1, + [230760] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - aux_sym_unquoted_token2, - STATE(7653), 1, + ACTIONS(2129), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7582), 1, sym_comment, - [240441] = 3, - ACTIONS(249), 1, + [230770] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11766), 1, - sym_raw_string_end, - STATE(7654), 1, + anon_sym_RBRACE, + STATE(7583), 1, sym_comment, - [240451] = 3, - ACTIONS(249), 1, + [230780] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11768), 1, - sym_raw_string_end, - STATE(7655), 1, + anon_sym_RPAREN, + STATE(7584), 1, sym_comment, - [240461] = 3, + [230790] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11294), 1, - aux_sym_cmd_identifier_token37, - STATE(7656), 1, + ACTIONS(4864), 1, + aux_sym_unquoted_token4, + STATE(7585), 1, sym_comment, - [240471] = 3, - ACTIONS(3), 1, + [230800] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11770), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7657), 1, + anon_sym_LPAREN2, + STATE(7586), 1, sym_comment, - [240481] = 3, - ACTIONS(249), 1, + [230810] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4674), 1, + aux_sym_unquoted_token2, + STATE(7587), 1, + sym_comment, + [230820] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11772), 1, - anon_sym_RPAREN, - STATE(7658), 1, + aux_sym_cmd_identifier_token41, + STATE(7588), 1, sym_comment, - [240491] = 3, - ACTIONS(249), 1, + [230830] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4485), 1, - aux_sym_unquoted_token2, - STATE(7659), 1, + ACTIONS(5616), 1, + aux_sym_unquoted_token4, + STATE(7589), 1, sym_comment, - [240501] = 3, - ACTIONS(249), 1, + [230840] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11774), 1, - anon_sym_RPAREN, - STATE(7660), 1, + sym__table_head_separator, + STATE(7590), 1, sym_comment, - [240511] = 3, - ACTIONS(249), 1, + [230850] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11776), 1, - sym_raw_string_end, - STATE(7661), 1, + anon_sym_RBRACE, + STATE(7591), 1, sym_comment, - [240521] = 3, - ACTIONS(249), 1, + [230860] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11778), 1, - anon_sym_RPAREN, - STATE(7662), 1, + sym_identifier, + STATE(7592), 1, sym_comment, - [240531] = 3, - ACTIONS(249), 1, + [230870] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11780), 1, anon_sym_RBRACE, - STATE(7663), 1, + STATE(7593), 1, sym_comment, - [240541] = 3, - ACTIONS(249), 1, + [230880] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11782), 1, - anon_sym_RBRACE, - STATE(7664), 1, + sym__space, + STATE(7594), 1, sym_comment, - [240551] = 3, - ACTIONS(249), 1, + [230890] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11784), 1, - anon_sym_RPAREN, - STATE(7665), 1, + anon_sym_RBRACE, + STATE(7595), 1, sym_comment, - [240561] = 3, - ACTIONS(249), 1, + [230900] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11786), 1, - anon_sym_make, - STATE(7666), 1, + anon_sym_RBRACK, + STATE(7596), 1, sym_comment, - [240571] = 3, - ACTIONS(249), 1, + [230910] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11788), 1, - anon_sym_RBRACK, - STATE(7667), 1, + anon_sym_RPAREN, + STATE(7597), 1, sym_comment, - [240581] = 3, - ACTIONS(249), 1, + [230920] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11790), 1, anon_sym_RBRACE, - STATE(7668), 1, + STATE(7598), 1, sym_comment, - [240591] = 3, - ACTIONS(249), 1, + [230930] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11792), 1, - sym_raw_string_end, - STATE(7669), 1, - sym_comment, - [240601] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5464), 1, - aux_sym_unquoted_token4, - STATE(7670), 1, + anon_sym_RBRACE, + STATE(7599), 1, sym_comment, - [240611] = 3, - ACTIONS(249), 1, + [230940] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11794), 1, - anon_sym_RPAREN, - STATE(7671), 1, + anon_sym_RBRACE, + STATE(7600), 1, sym_comment, - [240621] = 3, - ACTIONS(249), 1, + [230950] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11796), 1, - anon_sym_RBRACE, - STATE(7672), 1, + anon_sym_RPAREN, + STATE(7601), 1, sym_comment, - [240631] = 3, + [230960] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5027), 1, - aux_sym_cmd_identifier_token37, - STATE(7673), 1, + ACTIONS(2183), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7602), 1, sym_comment, - [240641] = 3, - ACTIONS(249), 1, + [230970] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11798), 1, - anon_sym_RBRACE, - STATE(7674), 1, + anon_sym_RPAREN, + STATE(7603), 1, sym_comment, - [240651] = 3, - ACTIONS(249), 1, + [230980] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11800), 1, - sym_raw_string_end, - STATE(7675), 1, + anon_sym_RBRACE, + STATE(7604), 1, sym_comment, - [240661] = 3, - ACTIONS(249), 1, + [230990] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7068), 1, - aux_sym_unquoted_token2, - STATE(7676), 1, + ACTIONS(11802), 1, + anon_sym_RBRACE, + STATE(7605), 1, sym_comment, - [240671] = 3, - ACTIONS(249), 1, + [231000] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11802), 1, - sym_identifier, - STATE(7677), 1, + ACTIONS(4801), 1, + aux_sym_record_entry_token1, + STATE(7606), 1, sym_comment, - [240681] = 3, - ACTIONS(249), 1, + [231010] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11804), 1, anon_sym_RBRACE, - STATE(7678), 1, + STATE(7607), 1, sym_comment, - [240691] = 3, - ACTIONS(249), 1, + [231020] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11806), 1, - anon_sym_RBRACK, - STATE(7679), 1, + anon_sym_EQ_GT, + STATE(7608), 1, sym_comment, - [240701] = 3, - ACTIONS(249), 1, + [231030] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11808), 1, - anon_sym_RPAREN, - STATE(7680), 1, + anon_sym_LBRACE, + STATE(7609), 1, sym_comment, - [240711] = 3, - ACTIONS(249), 1, + [231040] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11810), 1, - anon_sym_GT, - STATE(7681), 1, + aux_sym_cmd_identifier_token41, + STATE(7610), 1, sym_comment, - [240721] = 3, - ACTIONS(249), 1, + [231050] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11812), 1, sym_raw_string_end, - STATE(7682), 1, + STATE(7611), 1, sym_comment, - [240731] = 3, - ACTIONS(249), 1, + [231060] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11814), 1, - anon_sym_RBRACE, - STATE(7683), 1, + anon_sym_RBRACK, + STATE(7612), 1, sym_comment, - [240741] = 3, - ACTIONS(249), 1, + [231070] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11816), 1, - anon_sym_RBRACE, - STATE(7684), 1, + ACTIONS(509), 1, + anon_sym_RPAREN2, + STATE(7613), 1, sym_comment, - [240751] = 3, - ACTIONS(3), 1, + [231080] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4842), 1, - aux_sym_unquoted_token4, - STATE(7685), 1, + ACTIONS(521), 1, + anon_sym_RPAREN2, + STATE(7614), 1, sym_comment, - [240761] = 3, - ACTIONS(249), 1, + [231090] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11816), 1, + sym__table_head_separator, + STATE(7615), 1, + sym_comment, + [231100] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11818), 1, - anon_sym_RBRACK, - STATE(7686), 1, + anon_sym_RBRACE, + STATE(7616), 1, sym_comment, - [240771] = 3, - ACTIONS(249), 1, + [231110] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11820), 1, - anon_sym_RBRACE, - STATE(7687), 1, + sym_raw_string_end, + STATE(7617), 1, sym_comment, - [240781] = 3, - ACTIONS(249), 1, + [231120] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11822), 1, + sym_raw_string_end, + STATE(7618), 1, + sym_comment, + [231130] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11824), 1, + anon_sym_RBRACK, + STATE(7619), 1, + sym_comment, + [231140] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11826), 1, + aux_sym_cmd_identifier_token41, + STATE(7620), 1, + sym_comment, + [231150] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11828), 1, anon_sym_RPAREN, - STATE(7688), 1, + STATE(7621), 1, sym_comment, - [240791] = 3, - ACTIONS(249), 1, + [231160] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1642), 1, - aux_sym__unquoted_in_record_token2, - STATE(7689), 1, + ACTIONS(8667), 1, + aux_sym__unquoted_in_list_token2, + STATE(7622), 1, sym_comment, - [240801] = 3, - ACTIONS(249), 1, + [231170] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11824), 1, + ACTIONS(11830), 1, anon_sym_RBRACE, - STATE(7690), 1, + STATE(7623), 1, sym_comment, - [240811] = 3, - ACTIONS(249), 1, + [231180] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11826), 1, - anon_sym_RBRACE, - STATE(7691), 1, + ACTIONS(11639), 1, + aux_sym__record_key_token1, + STATE(7624), 1, sym_comment, - [240821] = 3, - ACTIONS(249), 1, + [231190] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11828), 1, - sym_raw_string_end, - STATE(7692), 1, + ACTIONS(11832), 1, + anon_sym_RPAREN, + STATE(7625), 1, sym_comment, - [240831] = 3, - ACTIONS(249), 1, + [231200] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11830), 1, - aux_sym_cmd_identifier_token41, - STATE(7693), 1, + ACTIONS(8859), 1, + aux_sym__unquoted_in_record_token2, + STATE(7626), 1, sym_comment, - [240841] = 3, - ACTIONS(249), 1, + [231210] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11832), 1, - aux_sym_env_var_token2, - STATE(7694), 1, + ACTIONS(6458), 1, + aux_sym_unquoted_token2, + STATE(7627), 1, sym_comment, - [240851] = 3, - ACTIONS(249), 1, + [231220] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11834), 1, - sym_raw_string_end, - STATE(7695), 1, + anon_sym_RBRACE, + STATE(7628), 1, sym_comment, - [240861] = 3, - ACTIONS(249), 1, + [231230] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11836), 1, anon_sym_RPAREN, - STATE(7696), 1, + STATE(7629), 1, sym_comment, - [240871] = 3, + [231240] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2230), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7697), 1, + ACTIONS(6458), 1, + aux_sym_unquoted_token4, + STATE(7630), 1, sym_comment, - [240881] = 3, - ACTIONS(249), 1, + [231250] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11838), 1, - anon_sym_RPAREN2, - STATE(7698), 1, + ACTIONS(553), 1, + ts_builtin_sym_end, + STATE(7631), 1, sym_comment, - [240891] = 3, - ACTIONS(249), 1, + [231260] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(501), 1, - anon_sym_RPAREN2, - STATE(7699), 1, + ACTIONS(11838), 1, + anon_sym_RBRACE, + STATE(7632), 1, sym_comment, - [240901] = 3, - ACTIONS(249), 1, + [231270] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11840), 1, - anon_sym_RPAREN, - STATE(7700), 1, + anon_sym_RBRACK, + STATE(7633), 1, sym_comment, - [240911] = 3, - ACTIONS(249), 1, + [231280] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11842), 1, - anon_sym_RBRACE, - STATE(7701), 1, + anon_sym_RPAREN, + STATE(7634), 1, sym_comment, - [240921] = 3, - ACTIONS(249), 1, + [231290] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11844), 1, - aux_sym_cmd_identifier_token41, - STATE(7702), 1, + anon_sym_RPAREN, + STATE(7635), 1, sym_comment, - [240931] = 3, - ACTIONS(249), 1, + [231300] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11846), 1, - sym_raw_string_end, - STATE(7703), 1, + anon_sym_RBRACE, + STATE(7636), 1, sym_comment, - [240941] = 3, - ACTIONS(249), 1, + [231310] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10737), 1, - anon_sym_LBRACE, - STATE(7704), 1, + ACTIONS(11848), 1, + sym_raw_string_content, + STATE(7637), 1, sym_comment, - [240951] = 3, - ACTIONS(249), 1, + [231320] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11848), 1, - anon_sym_RBRACE, - STATE(7705), 1, + ACTIONS(5689), 1, + aux_sym_record_entry_token1, + STATE(7638), 1, sym_comment, - [240961] = 3, - ACTIONS(249), 1, + [231330] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11850), 1, - anon_sym_RBRACK, - STATE(7706), 1, + anon_sym_RBRACE, + STATE(7639), 1, sym_comment, - [240971] = 3, - ACTIONS(249), 1, + [231340] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5194), 1, + anon_sym_LBRACK2, + STATE(7640), 1, + sym_comment, + [231350] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11852), 1, anon_sym_RPAREN, - STATE(7707), 1, + STATE(7641), 1, sym_comment, - [240981] = 3, - ACTIONS(249), 1, + [231360] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token4, + STATE(7642), 1, + sym_comment, + [231370] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5693), 1, + aux_sym_record_entry_token1, + STATE(7643), 1, + sym_comment, + [231380] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11854), 1, anon_sym_RBRACE, - STATE(7708), 1, + STATE(7644), 1, sym_comment, - [240991] = 3, - ACTIONS(249), 1, + [231390] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + STATE(7645), 1, + sym_comment, + [231400] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11856), 1, anon_sym_RBRACE, - STATE(7709), 1, + STATE(7646), 1, sym_comment, - [241001] = 3, - ACTIONS(249), 1, + [231410] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11858), 1, - aux_sym_cmd_identifier_token41, - STATE(7710), 1, + anon_sym_RBRACE, + STATE(7647), 1, sym_comment, - [241011] = 3, - ACTIONS(249), 1, + [231420] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11860), 1, - anon_sym_RBRACE, - STATE(7711), 1, + ACTIONS(9678), 1, + aux_sym_unquoted_token2, + STATE(7648), 1, sym_comment, - [241021] = 3, - ACTIONS(249), 1, + [231430] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5285), 1, - aux_sym_cmd_identifier_token41, - STATE(7712), 1, + ACTIONS(11860), 1, + anon_sym_RPAREN, + STATE(7649), 1, sym_comment, - [241031] = 3, - ACTIONS(249), 1, + [231440] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11862), 1, - sym_raw_string_end, - STATE(7713), 1, + ts_builtin_sym_end, + STATE(7650), 1, sym_comment, - [241041] = 3, - ACTIONS(249), 1, + [231450] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11864), 1, - anon_sym_RBRACK, - STATE(7714), 1, + aux_sym_cmd_identifier_token41, + STATE(7651), 1, sym_comment, - [241051] = 3, - ACTIONS(249), 1, + [231460] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11866), 1, - anon_sym_RPAREN, - STATE(7715), 1, + anon_sym_RBRACE, + STATE(7652), 1, sym_comment, - [241061] = 3, - ACTIONS(249), 1, + [231470] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11868), 1, - anon_sym_RBRACK, - STATE(7716), 1, + anon_sym_RPAREN2, + STATE(7653), 1, sym_comment, - [241071] = 3, - ACTIONS(249), 1, + [231480] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11870), 1, - anon_sym_RBRACE, - STATE(7717), 1, + sym_identifier, + STATE(7654), 1, sym_comment, - [241081] = 3, - ACTIONS(249), 1, + [231490] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1546), 1, + aux_sym_unquoted_token2, + STATE(7655), 1, + sym_comment, + [231500] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(497), 1, + anon_sym_RPAREN2, + STATE(7656), 1, + sym_comment, + [231510] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11872), 1, - anon_sym_RPAREN, - STATE(7718), 1, + anon_sym_RBRACE, + STATE(7657), 1, sym_comment, - [241091] = 3, - ACTIONS(249), 1, + [231520] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7157), 1, + aux_sym_unquoted_token2, + STATE(7658), 1, + sym_comment, + [231530] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11874), 1, - anon_sym_RBRACK, - STATE(7719), 1, + anon_sym_RBRACE, + STATE(7659), 1, sym_comment, - [241101] = 3, - ACTIONS(249), 1, + [231540] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11876), 1, anon_sym_RBRACE, - STATE(7720), 1, + STATE(7660), 1, sym_comment, - [241111] = 3, - ACTIONS(249), 1, + [231550] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11878), 1, anon_sym_RPAREN, - STATE(7721), 1, + STATE(7661), 1, sym_comment, - [241121] = 3, - ACTIONS(249), 1, + [231560] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11880), 1, - anon_sym_RBRACE, - STATE(7722), 1, + sym_raw_string_end, + STATE(7662), 1, sym_comment, - [241131] = 3, - ACTIONS(249), 1, + [231570] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11882), 1, sym_raw_string_end, - STATE(7723), 1, + STATE(7663), 1, sym_comment, - [241141] = 3, - ACTIONS(249), 1, + [231580] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11884), 1, - sym_raw_string_end, - STATE(7724), 1, + anon_sym_RBRACK, + STATE(7664), 1, sym_comment, - [241151] = 3, - ACTIONS(249), 1, + [231590] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11886), 1, anon_sym_RPAREN, - STATE(7725), 1, + STATE(7665), 1, sym_comment, - [241161] = 3, - ACTIONS(249), 1, + [231600] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7218), 1, + aux_sym_unquoted_token4, + STATE(7666), 1, + sym_comment, + [231610] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11888), 1, - anon_sym_EQ, - STATE(7726), 1, + anon_sym_RPAREN, + STATE(7667), 1, sym_comment, - [241171] = 3, - ACTIONS(249), 1, + [231620] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11890), 1, - anon_sym_RBRACE, - STATE(7727), 1, + anon_sym_RBRACK, + STATE(7668), 1, sym_comment, - [241181] = 3, - ACTIONS(249), 1, + [231630] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11892), 1, - sym_raw_string_content, - STATE(7728), 1, - sym_comment, - [241191] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5167), 1, - anon_sym_LBRACK2, - STATE(7729), 1, + anon_sym_DASH_GT, + STATE(7669), 1, sym_comment, - [241201] = 3, - ACTIONS(249), 1, + [231640] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11894), 1, - sym_raw_string_end, - STATE(7730), 1, + anon_sym_RPAREN, + STATE(7670), 1, sym_comment, - [241211] = 3, - ACTIONS(249), 1, + [231650] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11896), 1, - anon_sym_RBRACE, - STATE(7731), 1, + anon_sym_RPAREN, + STATE(7671), 1, sym_comment, - [241221] = 3, - ACTIONS(249), 1, + [231660] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11898), 1, - sym_raw_string_end, - STATE(7732), 1, - sym_comment, - [241231] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3294), 1, - aux_sym_record_entry_token1, - STATE(7733), 1, + aux_sym_env_var_token2, + STATE(7672), 1, sym_comment, - [241241] = 3, - ACTIONS(249), 1, + [231670] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4622), 1, + ACTIONS(8677), 1, aux_sym_unquoted_token2, - STATE(7734), 1, + STATE(7673), 1, sym_comment, - [241251] = 3, - ACTIONS(249), 1, + [231680] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11900), 1, sym_raw_string_end, - STATE(7735), 1, + STATE(7674), 1, sym_comment, - [241261] = 3, - ACTIONS(249), 1, + [231690] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11902), 1, - anon_sym_RBRACK, - STATE(7736), 1, + anon_sym_RBRACE, + STATE(7675), 1, sym_comment, - [241271] = 3, - ACTIONS(249), 1, + [231700] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11904), 1, anon_sym_RBRACE, - STATE(7737), 1, + STATE(7676), 1, sym_comment, - [241281] = 3, - ACTIONS(249), 1, + [231710] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11906), 1, - anon_sym_RPAREN, - STATE(7738), 1, + ACTIONS(7157), 1, + aux_sym_unquoted_token4, + STATE(7677), 1, sym_comment, - [241291] = 3, - ACTIONS(249), 1, + [231720] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11908), 1, - anon_sym_RPAREN, - STATE(7739), 1, + ACTIONS(11906), 1, + anon_sym_RBRACK, + STATE(7678), 1, sym_comment, - [241301] = 3, - ACTIONS(249), 1, + [231730] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(579), 1, - anon_sym_RPAREN2, - STATE(7740), 1, + ACTIONS(11908), 1, + anon_sym_EQ, + STATE(7679), 1, sym_comment, - [241311] = 3, - ACTIONS(249), 1, + [231740] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11910), 1, anon_sym_RPAREN, - STATE(7741), 1, + STATE(7680), 1, sym_comment, - [241321] = 3, - ACTIONS(249), 1, + [231750] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11912), 1, anon_sym_RBRACE, - STATE(7742), 1, + STATE(7681), 1, sym_comment, - [241331] = 3, - ACTIONS(249), 1, + [231760] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11914), 1, - anon_sym_RBRACE, - STATE(7743), 1, + sym_identifier, + STATE(7682), 1, sym_comment, - [241341] = 3, - ACTIONS(249), 1, + [231770] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11916), 1, - sym_raw_string_end, - STATE(7744), 1, + anon_sym_RBRACE, + STATE(7683), 1, sym_comment, - [241351] = 3, - ACTIONS(249), 1, + [231780] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11918), 1, anon_sym_RBRACE, - STATE(7745), 1, + STATE(7684), 1, sym_comment, - [241361] = 3, - ACTIONS(249), 1, + [231790] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11619), 1, + anon_sym_LBRACE, + STATE(7685), 1, + sym_comment, + [231800] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1888), 1, + aux_sym_unquoted_token2, + STATE(7686), 1, + sym_comment, + [231810] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11920), 1, - anon_sym_RPAREN, - STATE(7746), 1, + anon_sym_LBRACE, + STATE(7687), 1, sym_comment, - [241371] = 3, - ACTIONS(249), 1, + [231820] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11922), 1, - anon_sym_RBRACE, - STATE(7747), 1, + ts_builtin_sym_end, + STATE(7688), 1, sym_comment, - [241381] = 3, - ACTIONS(249), 1, + [231830] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11924), 1, - sym_raw_string_end, - STATE(7748), 1, + anon_sym_in2, + STATE(7689), 1, sym_comment, - [241391] = 3, - ACTIONS(249), 1, + [231840] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11926), 1, anon_sym_RBRACK, - STATE(7749), 1, - sym_comment, - [241401] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11638), 1, - aux_sym__record_key_token1, - STATE(7750), 1, + STATE(7690), 1, sym_comment, - [241411] = 3, - ACTIONS(249), 1, + [231850] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11928), 1, - sym_raw_string_end, - STATE(7751), 1, + anon_sym_RBRACE, + STATE(7691), 1, sym_comment, - [241421] = 3, - ACTIONS(249), 1, + [231860] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11930), 1, - anon_sym_RBRACK, - STATE(7752), 1, - sym_comment, - [241431] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(533), 1, - anon_sym_RPAREN2, - STATE(7753), 1, - sym_comment, - [241441] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(11932), 1, anon_sym_LBRACE, - STATE(7754), 1, + STATE(7692), 1, sym_comment, - [241451] = 3, - ACTIONS(249), 1, + [231870] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(599), 1, - anon_sym_RPAREN2, - STATE(7755), 1, + ACTIONS(2129), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7693), 1, sym_comment, - [241461] = 3, - ACTIONS(3), 1, + [231880] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11120), 1, - aux_sym_cmd_identifier_token37, - STATE(7756), 1, + ACTIONS(11932), 1, + sym_raw_string_end, + STATE(7694), 1, sym_comment, - [241471] = 3, - ACTIONS(249), 1, + [231890] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11934), 1, anon_sym_RPAREN, - STATE(7757), 1, + STATE(7695), 1, sym_comment, - [241481] = 3, - ACTIONS(249), 1, + [231900] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11936), 1, - anon_sym_RPAREN, - STATE(7758), 1, + aux_sym_cmd_identifier_token41, + STATE(7696), 1, sym_comment, - [241491] = 3, - ACTIONS(249), 1, + [231910] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11938), 1, - sym_raw_string_content, - STATE(7759), 1, + anon_sym_RPAREN, + STATE(7697), 1, sym_comment, - [241501] = 3, - ACTIONS(249), 1, + [231920] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11940), 1, - aux_sym_cmd_identifier_token41, - STATE(7760), 1, + sym_raw_string_content, + STATE(7698), 1, sym_comment, - [241511] = 3, - ACTIONS(249), 1, + [231930] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11942), 1, - anon_sym_RBRACE, - STATE(7761), 1, + aux_sym_cmd_identifier_token41, + STATE(7699), 1, sym_comment, - [241521] = 3, - ACTIONS(249), 1, + [231940] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11944), 1, - sym_raw_string_end, - STATE(7762), 1, - sym_comment, - [241531] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(11946), 1, - anon_sym_EQ, - STATE(7763), 1, + anon_sym_LBRACE, + STATE(7700), 1, sym_comment, - [241541] = 3, - ACTIONS(249), 1, + [231950] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11948), 1, - sym_raw_string_content, - STATE(7764), 1, + ACTIONS(5147), 1, + anon_sym_LBRACK2, + STATE(7701), 1, sym_comment, - [241551] = 3, - ACTIONS(249), 1, + [231960] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5105), 1, - anon_sym_LBRACK2, - STATE(7765), 1, + ACTIONS(11946), 1, + anon_sym_RPAREN, + STATE(7702), 1, sym_comment, - [241561] = 3, + [231970] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, - aux_sym_unquoted_token4, - STATE(7766), 1, + ACTIONS(11948), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7703), 1, sym_comment, - [241571] = 3, - ACTIONS(249), 1, + [231980] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4443), 1, - aux_sym_unquoted_token2, - STATE(7767), 1, + ACTIONS(2183), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7704), 1, sym_comment, - [241581] = 3, - ACTIONS(249), 1, + [231990] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11950), 1, - anon_sym_EQ_GT, - STATE(7768), 1, + anon_sym_EQ, + STATE(7705), 1, sym_comment, - [241591] = 3, - ACTIONS(249), 1, + [232000] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11952), 1, - anon_sym_LBRACE, - STATE(7769), 1, + ACTIONS(4900), 1, + aux_sym_unquoted_token2, + STATE(7706), 1, sym_comment, - [241601] = 3, - ACTIONS(3), 1, + [232010] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6477), 1, - aux_sym_unquoted_token4, - STATE(7770), 1, + ACTIONS(11952), 1, + sym_raw_string_end, + STATE(7707), 1, sym_comment, - [241611] = 3, - ACTIONS(3), 1, + [232020] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11954), 1, - aux_sym_shebang_token1, - STATE(7771), 1, + anon_sym_RPAREN, + STATE(7708), 1, sym_comment, - [241621] = 3, - ACTIONS(249), 1, + [232030] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11956), 1, - sym_raw_string_end, - STATE(7772), 1, + anon_sym_RBRACK, + STATE(7709), 1, sym_comment, - [241631] = 3, - ACTIONS(249), 1, + [232040] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11958), 1, - sym_identifier, - STATE(7773), 1, + anon_sym_make, + STATE(7710), 1, sym_comment, - [241641] = 3, - ACTIONS(3), 1, + [232050] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11960), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7774), 1, + anon_sym_RPAREN, + STATE(7711), 1, sym_comment, - [241651] = 3, - ACTIONS(249), 1, + [232060] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11962), 1, - anon_sym_RBRACK, - STATE(7775), 1, + ACTIONS(10238), 1, + anon_sym_LBRACE, + STATE(7712), 1, sym_comment, - [241661] = 3, + [232070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9533), 1, - aux_sym_unquoted_token4, - STATE(7776), 1, + ACTIONS(11962), 1, + aux_sym_cmd_identifier_token41, + STATE(7713), 1, sym_comment, - [241671] = 3, - ACTIONS(249), 1, + [232080] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11964), 1, - anon_sym_EQ, - STATE(7777), 1, + aux_sym_shebang_token1, + STATE(7714), 1, sym_comment, - [241681] = 3, - ACTIONS(249), 1, + [232090] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11966), 1, - anon_sym_RPAREN, - STATE(7778), 1, + sym_raw_string_end, + STATE(7715), 1, sym_comment, - [241691] = 3, - ACTIONS(249), 1, + [232100] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11968), 1, - anon_sym_RBRACE, - STATE(7779), 1, + sym_raw_string_end, + STATE(7716), 1, sym_comment, - [241701] = 3, - ACTIONS(249), 1, + [232110] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4770), 1, - aux_sym_unquoted_token2, - STATE(7780), 1, + ACTIONS(487), 1, + anon_sym_RPAREN2, + STATE(7717), 1, sym_comment, - [241711] = 3, - ACTIONS(249), 1, + [232120] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11970), 1, - sym_raw_string_content, - STATE(7781), 1, - sym_comment, - [241721] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5055), 1, - anon_sym_LBRACK2, - STATE(7782), 1, + anon_sym_RPAREN, + STATE(7718), 1, sym_comment, - [241731] = 3, - ACTIONS(249), 1, + [232130] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11972), 1, - anon_sym_RBRACE, - STATE(7783), 1, + sym_raw_string_end, + STATE(7719), 1, sym_comment, - [241741] = 3, - ACTIONS(249), 1, + [232140] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11974), 1, - sym_raw_string_end, - STATE(7784), 1, + sym_raw_string_content, + STATE(7720), 1, sym_comment, - [241751] = 3, - ACTIONS(249), 1, + [232150] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11976), 1, - anon_sym_RPAREN, - STATE(7785), 1, + anon_sym_RBRACE, + STATE(7721), 1, sym_comment, - [241761] = 3, - ACTIONS(249), 1, + [232160] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8008), 1, + anon_sym_LBRACK2, + STATE(7722), 1, + sym_comment, + [232170] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4900), 1, + aux_sym_unquoted_token4, + STATE(7723), 1, + sym_comment, + [232180] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11978), 1, - anon_sym_RBRACK, - STATE(7786), 1, + sym_raw_string_end, + STATE(7724), 1, sym_comment, - [241771] = 3, - ACTIONS(249), 1, + [232190] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11980), 1, sym_raw_string_end, - STATE(7787), 1, + STATE(7725), 1, sym_comment, - [241781] = 3, - ACTIONS(249), 1, + [232200] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11982), 1, - anon_sym_GT, - STATE(7788), 1, + anon_sym_RPAREN, + STATE(7726), 1, sym_comment, - [241791] = 3, - ACTIONS(249), 1, + [232210] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4716), 1, + aux_sym_unquoted_token2, + STATE(7727), 1, + sym_comment, + [232220] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11984), 1, - anon_sym_EQ, - STATE(7789), 1, + sym_raw_string_content, + STATE(7728), 1, sym_comment, - [241801] = 3, - ACTIONS(249), 1, + [232230] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11986), 1, - sym_raw_string_end, - STATE(7790), 1, + sym_identifier, + STATE(7729), 1, sym_comment, - [241811] = 3, - ACTIONS(3), 1, + [232240] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11988), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7791), 1, + anon_sym_RBRACK, + STATE(7730), 1, sym_comment, - [241821] = 3, - ACTIONS(249), 1, + [232250] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11990), 1, sym_raw_string_end, - STATE(7792), 1, + STATE(7731), 1, sym_comment, - [241831] = 3, - ACTIONS(249), 1, + [232260] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11992), 1, - anon_sym_RBRACE, - STATE(7793), 1, - sym_comment, - [241841] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(8580), 1, - aux_sym_unquoted_token2, - STATE(7794), 1, + anon_sym_RPAREN, + STATE(7732), 1, sym_comment, - [241851] = 3, - ACTIONS(249), 1, + [232270] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11994), 1, anon_sym_RBRACE, - STATE(7795), 1, + STATE(7733), 1, sym_comment, - [241861] = 3, - ACTIONS(249), 1, + [232280] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11996), 1, - sym_raw_string_content, - STATE(7796), 1, - sym_comment, - [241871] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7930), 1, - anon_sym_LBRACK2, - STATE(7797), 1, - sym_comment, - [241881] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(11569), 1, - anon_sym_LBRACE, - STATE(7798), 1, - sym_comment, - [241891] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(11998), 1, - anon_sym_RPAREN, - STATE(7799), 1, - sym_comment, - [241901] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(12000), 1, sym_raw_string_end, - STATE(7800), 1, + STATE(7734), 1, sym_comment, - [241911] = 3, - ACTIONS(3), 1, + [232290] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2218), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7801), 1, + ACTIONS(11998), 1, + sym_raw_string_content, + STATE(7735), 1, sym_comment, - [241921] = 3, - ACTIONS(3), 1, + [232300] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7021), 1, - aux_sym_unquoted_token4, - STATE(7802), 1, + ACTIONS(5993), 1, + anon_sym_LBRACK2, + STATE(7736), 1, sym_comment, - [241931] = 3, - ACTIONS(249), 1, + [232310] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8696), 1, - aux_sym__unquoted_in_record_token2, - STATE(7803), 1, + ACTIONS(12000), 1, + anon_sym_EQ, + STATE(7737), 1, sym_comment, - [241941] = 3, - ACTIONS(249), 1, + [232320] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12002), 1, - anon_sym_RBRACE, - STATE(7804), 1, + sym_raw_string_end, + STATE(7738), 1, sym_comment, - [241951] = 3, - ACTIONS(249), 1, + [232330] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2252), 1, - aux_sym_unquoted_token2, - STATE(7805), 1, + ACTIONS(12004), 1, + anon_sym_GT2, + STATE(7739), 1, sym_comment, - [241961] = 3, - ACTIONS(249), 1, + [232340] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4691), 1, - aux_sym_record_entry_token1, - STATE(7806), 1, + ACTIONS(12006), 1, + anon_sym_RBRACE, + STATE(7740), 1, sym_comment, - [241971] = 3, - ACTIONS(249), 1, + [232350] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12004), 1, - sym_raw_string_end, - STATE(7807), 1, + ACTIONS(7297), 1, + aux_sym__unquoted_in_list_token2, + STATE(7741), 1, sym_comment, - [241981] = 3, - ACTIONS(249), 1, + [232360] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12006), 1, - anon_sym_RBRACK, - STATE(7808), 1, + ACTIONS(4764), 1, + aux_sym_unquoted_token2, + STATE(7742), 1, sym_comment, - [241991] = 3, - ACTIONS(249), 1, + [232370] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12008), 1, - anon_sym_RPAREN, - STATE(7809), 1, + sym_raw_string_end, + STATE(7743), 1, sym_comment, - [242001] = 3, - ACTIONS(249), 1, + [232380] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12010), 1, - sym_raw_string_content, - STATE(7810), 1, + anon_sym_RBRACK, + STATE(7744), 1, sym_comment, - [242011] = 3, - ACTIONS(249), 1, + [232390] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, - anon_sym_LBRACK2, - STATE(7811), 1, + ACTIONS(4716), 1, + aux_sym_unquoted_token4, + STATE(7745), 1, sym_comment, - [242021] = 3, - ACTIONS(249), 1, + [232400] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12012), 1, - anon_sym_RBRACE, - STATE(7812), 1, + anon_sym_RPAREN, + STATE(7746), 1, sym_comment, - [242031] = 3, - ACTIONS(249), 1, + [232410] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12014), 1, - sym_raw_string_content, - STATE(7813), 1, + ACTIONS(9598), 1, + aux_sym_unquoted_token2, + STATE(7747), 1, sym_comment, - [242041] = 3, - ACTIONS(249), 1, + [232420] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2571), 1, - sym__table_head_separator, - STATE(7814), 1, + ACTIONS(12014), 1, + anon_sym_RPAREN, + STATE(7748), 1, sym_comment, - [242051] = 3, - ACTIONS(3), 1, + [232430] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12016), 1, - aux_sym_comment_token1, - STATE(7815), 1, + sym_raw_string_content, + STATE(7749), 1, sym_comment, - [242061] = 3, - ACTIONS(249), 1, + [232440] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12018), 1, - anon_sym_RBRACK, - STATE(7816), 1, + ACTIONS(7669), 1, + anon_sym_LBRACK2, + STATE(7750), 1, sym_comment, - [242071] = 3, - ACTIONS(3), 1, + [232450] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11463), 1, - aux_sym_cmd_identifier_token37, - STATE(7817), 1, + ACTIONS(12018), 1, + sym_raw_string_end, + STATE(7751), 1, sym_comment, - [242081] = 3, - ACTIONS(249), 1, + [232460] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11300), 1, - anon_sym_EQ_GT, - STATE(7818), 1, + ACTIONS(5697), 1, + aux_sym_record_entry_token1, + STATE(7752), 1, sym_comment, - [242091] = 3, - ACTIONS(249), 1, + [232470] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, - sym__table_head_separator, - STATE(7819), 1, + ACTIONS(9598), 1, + aux_sym_unquoted_token4, + STATE(7753), 1, sym_comment, - [242101] = 3, - ACTIONS(249), 1, + [232480] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12020), 1, - sym_raw_string_end, - STATE(7820), 1, + anon_sym_RBRACK, + STATE(7754), 1, sym_comment, - [242111] = 3, - ACTIONS(249), 1, + [232490] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12022), 1, - anon_sym_EQ, - STATE(7821), 1, + sym_identifier, + STATE(7755), 1, sym_comment, - [242121] = 3, - ACTIONS(249), 1, + [232500] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5566), 1, + aux_sym__unquoted_in_list_token2, + STATE(7756), 1, + sym_comment, + [232510] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12024), 1, - anon_sym_RBRACE, - STATE(7822), 1, + sym_raw_string_end, + STATE(7757), 1, sym_comment, - [242131] = 3, - ACTIONS(249), 1, + [232520] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12026), 1, - anon_sym_RBRACE, - STATE(7823), 1, + anon_sym_RBRACK, + STATE(7758), 1, sym_comment, - [242141] = 3, - ACTIONS(249), 1, + [232530] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12028), 1, - sym_raw_string_content, - STATE(7824), 1, - sym_comment, - [242151] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7606), 1, - anon_sym_LBRACK2, - STATE(7825), 1, + aux_sym_comment_token1, + STATE(7759), 1, sym_comment, - [242161] = 3, - ACTIONS(249), 1, + [232540] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12030), 1, anon_sym_RPAREN, - STATE(7826), 1, - sym_comment, - [242171] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(11561), 1, - anon_sym_make, - STATE(7827), 1, + STATE(7760), 1, sym_comment, - [242181] = 3, - ACTIONS(249), 1, + [232550] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12032), 1, - sym_raw_string_end, - STATE(7828), 1, - sym_comment, - [242191] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(12034), 1, anon_sym_RPAREN, - STATE(7829), 1, + STATE(7761), 1, sym_comment, - [242201] = 3, - ACTIONS(249), 1, + [232560] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5572), 1, - aux_sym_record_entry_token1, - STATE(7830), 1, + ACTIONS(12034), 1, + sym_raw_string_end, + STATE(7762), 1, sym_comment, - [242211] = 3, - ACTIONS(249), 1, + [232570] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12036), 1, - anon_sym_LBRACE, - STATE(7831), 1, - sym_comment, - [242221] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(12038), 1, - anon_sym_LBRACE, - STATE(7832), 1, + sym_raw_string_content, + STATE(7763), 1, sym_comment, - [242231] = 3, - ACTIONS(249), 1, + [232580] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9992), 1, + ACTIONS(7840), 1, anon_sym_LBRACK2, - STATE(7833), 1, + STATE(7764), 1, sym_comment, - [242241] = 3, - ACTIONS(249), 1, + [232590] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9533), 1, - aux_sym_unquoted_token2, - STATE(7834), 1, + ACTIONS(12038), 1, + anon_sym_RBRACE, + STATE(7765), 1, sym_comment, - [242251] = 3, - ACTIONS(249), 1, + [232600] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12040), 1, - anon_sym_EQ, - STATE(7835), 1, - sym_comment, - [242261] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5087), 1, - aux_sym_cmd_identifier_token37, - STATE(7836), 1, + anon_sym_RBRACE, + STATE(7766), 1, sym_comment, - [242271] = 3, - ACTIONS(249), 1, + [232610] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12042), 1, - anon_sym_LBRACE, - STATE(7837), 1, + anon_sym_RBRACE, + STATE(7767), 1, sym_comment, - [242281] = 3, - ACTIONS(249), 1, + [232620] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12044), 1, - sym_raw_string_content, - STATE(7838), 1, - sym_comment, - [242291] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7778), 1, - anon_sym_LBRACK2, - STATE(7839), 1, + anon_sym_RPAREN, + STATE(7768), 1, sym_comment, - [242301] = 3, - ACTIONS(249), 1, + [232630] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12046), 1, sym_raw_string_end, - STATE(7840), 1, - sym_comment, - [242311] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(12036), 1, - anon_sym_LBRACE, - STATE(7841), 1, + STATE(7769), 1, sym_comment, - [242321] = 3, - ACTIONS(249), 1, + [232640] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12048), 1, - anon_sym_DASH_GT, - STATE(7842), 1, - sym_comment, - [242331] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4645), 1, - aux_sym_unquoted_token2, - STATE(7843), 1, + anon_sym_RBRACE, + STATE(7770), 1, sym_comment, - [242341] = 3, - ACTIONS(249), 1, + [232650] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12050), 1, - anon_sym_RPAREN, - STATE(7844), 1, - sym_comment, - [242351] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token4, - STATE(7845), 1, + anon_sym_RBRACE, + STATE(7771), 1, sym_comment, - [242361] = 3, - ACTIONS(249), 1, + [232660] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12052), 1, - anon_sym_LBRACE, - STATE(7846), 1, + anon_sym_RBRACE, + STATE(7772), 1, sym_comment, - [242371] = 3, - ACTIONS(249), 1, + [232670] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12054), 1, - anon_sym_RPAREN, - STATE(7847), 1, - sym_comment, - [242381] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(9497), 1, - aux_sym_unquoted_token2, - STATE(7848), 1, + anon_sym_EQ, + STATE(7773), 1, sym_comment, - [242391] = 3, - ACTIONS(249), 1, + [232680] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12056), 1, - anon_sym_RBRACE, - STATE(7849), 1, + anon_sym_RPAREN, + STATE(7774), 1, sym_comment, - [242401] = 3, - ACTIONS(249), 1, + [232690] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12058), 1, sym_raw_string_end, - STATE(7850), 1, - sym_comment, - [242411] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10863), 1, - aux_sym_cmd_identifier_token37, - STATE(7851), 1, + STATE(7775), 1, sym_comment, - [242421] = 3, - ACTIONS(249), 1, + [232700] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12060), 1, sym_raw_string_content, - STATE(7852), 1, + STATE(7776), 1, sym_comment, - [242431] = 3, - ACTIONS(249), 1, + [232710] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4999), 1, + ACTIONS(6526), 1, anon_sym_LBRACK2, - STATE(7853), 1, - sym_comment, - [242441] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4842), 1, - aux_sym_unquoted_token2, - STATE(7854), 1, + STATE(7777), 1, sym_comment, - [242451] = 3, - ACTIONS(249), 1, + [232720] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12062), 1, - anon_sym_LBRACE, - STATE(7855), 1, + anon_sym_RBRACE, + STATE(7778), 1, sym_comment, - [242461] = 3, - ACTIONS(249), 1, + [232730] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12064), 1, - sym_raw_string_end, - STATE(7856), 1, + sym_identifier, + STATE(7779), 1, sym_comment, - [242471] = 3, - ACTIONS(249), 1, + [232740] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12066), 1, - anon_sym_RBRACK, - STATE(7857), 1, + aux_sym_cmd_identifier_token41, + STATE(7780), 1, sym_comment, - [242481] = 3, - ACTIONS(249), 1, + [232750] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12068), 1, - anon_sym_RPAREN, - STATE(7858), 1, - sym_comment, - [242491] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8580), 1, - aux_sym_unquoted_token4, - STATE(7859), 1, + anon_sym_EQ, + STATE(7781), 1, sym_comment, - [242501] = 3, - ACTIONS(3), 1, + [232760] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9497), 1, - aux_sym_unquoted_token4, - STATE(7860), 1, + ACTIONS(5681), 1, + aux_sym_record_entry_token1, + STATE(7782), 1, sym_comment, - [242511] = 3, - ACTIONS(249), 1, + [232770] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12070), 1, - anon_sym_RBRACE, - STATE(7861), 1, + sym_raw_string_end, + STATE(7783), 1, sym_comment, - [242521] = 3, - ACTIONS(249), 1, + [232780] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12072), 1, - anon_sym_RBRACE, - STATE(7862), 1, + anon_sym_EQ, + STATE(7784), 1, sym_comment, - [242531] = 3, - ACTIONS(249), 1, + [232790] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12074), 1, - sym_identifier, - STATE(7863), 1, - sym_comment, - [242541] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5528), 1, - aux_sym__unquoted_in_list_token2, - STATE(7864), 1, + anon_sym_EQ, + STATE(7785), 1, sym_comment, - [242551] = 3, - ACTIONS(249), 1, + [232800] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12076), 1, - sym_raw_string_content, - STATE(7865), 1, - sym_comment, - [242561] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7181), 1, - anon_sym_LBRACK2, - STATE(7866), 1, + anon_sym_RBRACE, + STATE(7786), 1, sym_comment, - [242571] = 3, - ACTIONS(3), 1, + [232810] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12078), 1, - aux_sym_shebang_token1, - STATE(7867), 1, + anon_sym_RPAREN, + STATE(7787), 1, sym_comment, - [242581] = 3, - ACTIONS(249), 1, + [232820] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12080), 1, - anon_sym_RBRACK, - STATE(7868), 1, - sym_comment, - [242591] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - aux_sym_unquoted_token2, - STATE(7869), 1, + sym_raw_string_end, + STATE(7788), 1, sym_comment, - [242601] = 3, - ACTIONS(249), 1, + [232830] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12082), 1, - anon_sym_DASH_GT, - STATE(7870), 1, - sym_comment, - [242611] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(12084), 1, - anon_sym_RBRACK, - STATE(7871), 1, - sym_comment, - [242621] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(3296), 1, - aux_sym_record_entry_token1, - STATE(7872), 1, + sym_raw_string_content, + STATE(7789), 1, sym_comment, - [242631] = 3, - ACTIONS(249), 1, + [232840] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12086), 1, - anon_sym_RPAREN, - STATE(7873), 1, + ACTIONS(5057), 1, + anon_sym_LBRACK2, + STATE(7790), 1, sym_comment, - [242641] = 3, - ACTIONS(249), 1, + [232850] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12088), 1, + ACTIONS(12084), 1, anon_sym_RBRACE, - STATE(7874), 1, + STATE(7791), 1, sym_comment, - [242651] = 3, - ACTIONS(249), 1, + [232860] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(639), 1, - ts_builtin_sym_end, - STATE(7875), 1, + ACTIONS(12086), 1, + anon_sym_EQ, + STATE(7792), 1, sym_comment, - [242661] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5504), 1, - aux_sym_record_entry_token1, - STATE(7876), 1, + [232870] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12088), 1, + anon_sym_RBRACE, + STATE(7793), 1, sym_comment, - [242671] = 3, - ACTIONS(249), 1, + [232880] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12090), 1, - anon_sym_RPAREN, - STATE(7877), 1, + sym_raw_string_end, + STATE(7794), 1, sym_comment, - [242681] = 3, - ACTIONS(249), 1, + [232890] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12092), 1, - sym_raw_string_content, - STATE(7878), 1, - sym_comment, - [242691] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7090), 1, - anon_sym_LBRACK2, - STATE(7879), 1, + sym_raw_string_end, + STATE(7795), 1, sym_comment, - [242701] = 3, - ACTIONS(249), 1, + [232900] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12094), 1, anon_sym_RBRACE, - STATE(7880), 1, - sym_comment, - [242711] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(10700), 1, - anon_sym_LBRACE, - STATE(7881), 1, + STATE(7796), 1, sym_comment, - [242721] = 3, - ACTIONS(249), 1, + [232910] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12096), 1, - anon_sym_RPAREN, - STATE(7882), 1, + anon_sym_RBRACE, + STATE(7797), 1, sym_comment, - [242731] = 3, + [232920] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7068), 1, - aux_sym_unquoted_token4, - STATE(7883), 1, + ACTIONS(12098), 1, + aux_sym_cmd_identifier_token41, + STATE(7798), 1, sym_comment, - [242741] = 3, - ACTIONS(249), 1, + [232930] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12098), 1, - anon_sym_RBRACK, - STATE(7884), 1, + ACTIONS(5477), 1, + anon_sym_LBRACK2, + STATE(7799), 1, sym_comment, - [242751] = 3, - ACTIONS(249), 1, + [232940] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12100), 1, - anon_sym_LBRACE, - STATE(7885), 1, + sym_raw_string_end, + STATE(7800), 1, sym_comment, - [242761] = 3, - ACTIONS(249), 1, + [232950] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12102), 1, - anon_sym_RPAREN, - STATE(7886), 1, + sym_raw_string_content, + STATE(7801), 1, sym_comment, - [242771] = 3, - ACTIONS(249), 1, + [232960] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6136), 1, + anon_sym_LBRACK2, + STATE(7802), 1, + sym_comment, + [232970] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4764), 1, + aux_sym_unquoted_token4, + STATE(7803), 1, + sym_comment, + [232980] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12104), 1, - anon_sym_RPAREN, - STATE(7887), 1, + sym_identifier, + STATE(7804), 1, sym_comment, - [242781] = 3, - ACTIONS(249), 1, + [232990] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12106), 1, - anon_sym_LBRACE, - STATE(7888), 1, + anon_sym_RBRACE, + STATE(7805), 1, sym_comment, - [242791] = 3, - ACTIONS(249), 1, + [233000] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12108), 1, - anon_sym_RBRACE, - STATE(7889), 1, + anon_sym_RPAREN, + STATE(7806), 1, sym_comment, - [242801] = 3, - ACTIONS(249), 1, + [233010] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12110), 1, - anon_sym_RBRACE, - STATE(7890), 1, + anon_sym_RBRACK, + STATE(7807), 1, sym_comment, - [242811] = 3, - ACTIONS(249), 1, + [233020] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12112), 1, - sym_raw_string_content, - STATE(7891), 1, + sym_raw_string_end, + STATE(7808), 1, sym_comment, - [242821] = 3, - ACTIONS(249), 1, + [233030] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6110), 1, - anon_sym_LBRACK2, - STATE(7892), 1, + ACTIONS(12114), 1, + anon_sym_in2, + STATE(7809), 1, sym_comment, - [242831] = 3, - ACTIONS(249), 1, + [233040] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12114), 1, - anon_sym_RBRACE, - STATE(7893), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + STATE(7810), 1, sym_comment, - [242841] = 3, + [233050] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2230), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7894), 1, + ACTIONS(2220), 1, + aux_sym_unquoted_token4, + STATE(7811), 1, sym_comment, - [242851] = 3, - ACTIONS(249), 1, + [233060] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12116), 1, - sym_raw_string_end, - STATE(7895), 1, + aux_sym_cmd_identifier_token41, + STATE(7812), 1, sym_comment, - [242861] = 3, - ACTIONS(249), 1, + [233070] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12118), 1, anon_sym_RBRACE, - STATE(7896), 1, + STATE(7813), 1, sym_comment, - [242871] = 3, - ACTIONS(249), 1, + [233080] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12120), 1, - sym_identifier, - STATE(7897), 1, + sym_raw_string_content, + STATE(7814), 1, sym_comment, - [242881] = 3, - ACTIONS(249), 1, + [233090] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6645), 1, + anon_sym_LBRACK2, + STATE(7815), 1, + sym_comment, + [233100] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12122), 1, - anon_sym_RBRACK, - STATE(7898), 1, + sym_raw_string_end, + STATE(7816), 1, sym_comment, - [242891] = 3, - ACTIONS(249), 1, + [233110] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7218), 1, + aux_sym_unquoted_token2, + STATE(7817), 1, + sym_comment, + [233120] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2129), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7818), 1, + sym_comment, + [233130] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(493), 1, + anon_sym_RPAREN2, + STATE(7819), 1, + sym_comment, + [233140] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12124), 1, - anon_sym_RBRACE, - STATE(7899), 1, + anon_sym_EQ, + STATE(7820), 1, sym_comment, - [242901] = 3, - ACTIONS(249), 1, + [233150] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12106), 1, - anon_sym_LBRACE, - STATE(7900), 1, + ACTIONS(8677), 1, + aux_sym_unquoted_token4, + STATE(7821), 1, sym_comment, - [242911] = 3, - ACTIONS(249), 1, + [233160] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12126), 1, anon_sym_RBRACE, - STATE(7901), 1, + STATE(7822), 1, sym_comment, - [242921] = 3, - ACTIONS(249), 1, + [233170] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12128), 1, - sym_long_flag_identifier, - STATE(7902), 1, + anon_sym_LBRACE, + STATE(7823), 1, sym_comment, - [242931] = 3, - ACTIONS(249), 1, + [233180] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12130), 1, - anon_sym_RBRACE, - STATE(7903), 1, + anon_sym_RBRACK, + STATE(7824), 1, sym_comment, - [242941] = 3, - ACTIONS(249), 1, + [233190] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12132), 1, - sym_raw_string_content, - STATE(7904), 1, - sym_comment, - [242951] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6599), 1, - anon_sym_LBRACK2, - STATE(7905), 1, + anon_sym_LBRACE, + STATE(7825), 1, sym_comment, - [242961] = 3, - ACTIONS(249), 1, + [233200] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12134), 1, - sym_identifier, - STATE(7906), 1, + sym_raw_string_end, + STATE(7826), 1, sym_comment, - [242971] = 3, - ACTIONS(249), 1, + [233210] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12136), 1, - anon_sym_RPAREN, - STATE(7907), 1, + sym_raw_string_content, + STATE(7827), 1, sym_comment, - [242981] = 3, - ACTIONS(249), 1, + [233220] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6111), 1, + anon_sym_LBRACK2, + STATE(7828), 1, + sym_comment, + [233230] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12138), 1, - anon_sym_EQ, - STATE(7908), 1, + anon_sym_RBRACE, + STATE(7829), 1, sym_comment, - [242991] = 3, - ACTIONS(249), 1, + [233240] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12140), 1, - sym_raw_string_end, - STATE(7909), 1, + anon_sym_GT2, + STATE(7830), 1, sym_comment, - [243001] = 3, - ACTIONS(249), 1, + [233250] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12142), 1, - aux_sym_cmd_identifier_token41, - STATE(7910), 1, - sym_comment, - [243011] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5453), 1, - anon_sym_LBRACK2, - STATE(7911), 1, - sym_comment, - [243021] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5416), 1, - aux_sym_cmd_identifier_token41, - STATE(7912), 1, - sym_comment, - [243031] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1699), 1, - aux_sym__unquoted_in_record_token2, - STATE(7913), 1, + anon_sym_RBRACE, + STATE(7831), 1, sym_comment, - [243041] = 3, - ACTIONS(249), 1, + [233260] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12144), 1, - sym_raw_string_end, - STATE(7914), 1, + anon_sym_RPAREN, + STATE(7832), 1, sym_comment, - [243051] = 3, - ACTIONS(249), 1, + [233270] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12146), 1, - anon_sym_RBRACK, - STATE(7915), 1, + anon_sym_RPAREN, + STATE(7833), 1, sym_comment, - [243061] = 3, - ACTIONS(249), 1, + [233280] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12148), 1, - anon_sym_RPAREN, - STATE(7916), 1, + anon_sym_RBRACE, + STATE(7834), 1, sym_comment, - [243071] = 3, - ACTIONS(249), 1, + [233290] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12150), 1, - sym_raw_string_content, - STATE(7917), 1, + sym_raw_string_end, + STATE(7835), 1, sym_comment, - [243081] = 3, - ACTIONS(249), 1, + [233300] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6034), 1, - anon_sym_LBRACK2, - STATE(7918), 1, + ACTIONS(12132), 1, + anon_sym_LBRACE, + STATE(7836), 1, sym_comment, - [243091] = 3, - ACTIONS(249), 1, + [233310] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12152), 1, anon_sym_RBRACE, - STATE(7919), 1, + STATE(7837), 1, sym_comment, - [243101] = 3, - ACTIONS(249), 1, + [233320] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12154), 1, - anon_sym_RPAREN, - STATE(7920), 1, + anon_sym_RBRACE, + STATE(7838), 1, sym_comment, - [243111] = 3, - ACTIONS(249), 1, + [233330] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12156), 1, - anon_sym_RBRACE, - STATE(7921), 1, + sym_identifier, + STATE(7839), 1, sym_comment, - [243121] = 3, - ACTIONS(249), 1, + [233340] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12158), 1, - anon_sym_RPAREN, - STATE(7922), 1, + sym_raw_string_content, + STATE(7840), 1, sym_comment, - [243131] = 3, - ACTIONS(249), 1, + [233350] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9480), 1, + anon_sym_LBRACK2, + STATE(7841), 1, + sym_comment, + [233360] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12160), 1, - aux_sym_record_entry_token1, - STATE(7923), 1, + anon_sym_RBRACE, + STATE(7842), 1, sym_comment, - [243141] = 3, - ACTIONS(249), 1, + [233370] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12162), 1, - anon_sym_RPAREN, - STATE(7924), 1, + sym_raw_string_end, + STATE(7843), 1, sym_comment, - [243151] = 3, - ACTIONS(249), 1, + [233380] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12164), 1, - anon_sym_GT, - STATE(7925), 1, + anon_sym_RPAREN, + STATE(7844), 1, sym_comment, - [243161] = 3, - ACTIONS(249), 1, + [233390] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12166), 1, sym_raw_string_end, - STATE(7926), 1, + STATE(7845), 1, sym_comment, - [243171] = 3, - ACTIONS(249), 1, + [233400] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12168), 1, - sym_raw_string_end, - STATE(7927), 1, - sym_comment, - [243181] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token2, - STATE(7928), 1, - sym_comment, - [243191] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6985), 1, - aux_sym_unquoted_token2, - STATE(7929), 1, + anon_sym_RBRACE, + STATE(7846), 1, sym_comment, - [243201] = 3, - ACTIONS(249), 1, + [233410] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12170), 1, - sym_raw_string_content, - STATE(7930), 1, - sym_comment, - [243211] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(2514), 1, - anon_sym_LBRACK2, - STATE(7931), 1, + anon_sym_RPAREN, + STATE(7847), 1, sym_comment, - [243221] = 3, - ACTIONS(249), 1, + [233420] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12172), 1, - anon_sym_LBRACE, - STATE(7932), 1, + sym_raw_string_end, + STATE(7848), 1, sym_comment, - [243231] = 3, - ACTIONS(249), 1, + [233430] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12174), 1, - anon_sym_RBRACE, - STATE(7933), 1, + anon_sym_GT2, + STATE(7849), 1, sym_comment, - [243241] = 3, - ACTIONS(249), 1, + [233440] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12176), 1, - anon_sym_RPAREN, - STATE(7934), 1, + aux_sym_cmd_identifier_token41, + STATE(7850), 1, sym_comment, - [243251] = 3, - ACTIONS(249), 1, + [233450] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12178), 1, anon_sym_RBRACE, - STATE(7935), 1, - sym_comment, - [243261] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4622), 1, - aux_sym_unquoted_token4, - STATE(7936), 1, + STATE(7851), 1, sym_comment, - [243271] = 3, - ACTIONS(249), 1, + [233460] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12180), 1, anon_sym_RBRACE, - STATE(7937), 1, + STATE(7852), 1, sym_comment, - [243281] = 3, - ACTIONS(249), 1, + [233470] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12182), 1, - anon_sym_RBRACK, - STATE(7938), 1, + sym_raw_string_content, + STATE(7853), 1, sym_comment, - [243291] = 3, - ACTIONS(249), 1, + [233480] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12184), 1, - anon_sym_RPAREN, - STATE(7939), 1, + ACTIONS(2411), 1, + anon_sym_LBRACK2, + STATE(7854), 1, sym_comment, - [243301] = 3, - ACTIONS(249), 1, + [233490] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12186), 1, - sym_raw_string_content, - STATE(7940), 1, + ACTIONS(12184), 1, + sym_raw_string_end, + STATE(7855), 1, sym_comment, - [243311] = 3, - ACTIONS(249), 1, + [233500] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2357), 1, - anon_sym_LBRACK2, - STATE(7941), 1, + ACTIONS(12186), 1, + aux_sym_cmd_identifier_token41, + STATE(7856), 1, sym_comment, - [243321] = 3, - ACTIONS(249), 1, + [233510] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12188), 1, - anon_sym_RBRACK, - STATE(7942), 1, + anon_sym_GT2, + STATE(7857), 1, sym_comment, - [243331] = 3, - ACTIONS(249), 1, + [233520] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12190), 1, - anon_sym_RBRACE, - STATE(7943), 1, + aux_sym_cmd_identifier_token41, + STATE(7858), 1, sym_comment, - [243341] = 3, - ACTIONS(249), 1, + [233530] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12192), 1, - anon_sym_RBRACE, - STATE(7944), 1, + sym_raw_string_end, + STATE(7859), 1, sym_comment, - [243351] = 3, - ACTIONS(249), 1, + [233540] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12194), 1, - sym_raw_string_end, - STATE(7945), 1, + anon_sym_RBRACE, + STATE(7860), 1, sym_comment, - [243361] = 3, - ACTIONS(249), 1, + [233550] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12196), 1, - anon_sym_RBRACE, - STATE(7946), 1, + anon_sym_EQ, + STATE(7861), 1, sym_comment, - [243371] = 3, - ACTIONS(249), 1, + [233560] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12198), 1, - anon_sym_RPAREN, - STATE(7947), 1, + sym_raw_string_end, + STATE(7862), 1, sym_comment, - [243381] = 3, - ACTIONS(3), 1, + [233570] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11515), 1, - aux_sym_cmd_identifier_token37, - STATE(7948), 1, + ACTIONS(12200), 1, + sym_raw_string_content, + STATE(7863), 1, sym_comment, - [243391] = 3, - ACTIONS(249), 1, + [233580] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12200), 1, - anon_sym_RBRACE, - STATE(7949), 1, + ACTIONS(2339), 1, + anon_sym_LBRACK2, + STATE(7864), 1, sym_comment, - [243401] = 3, - ACTIONS(249), 1, + [233590] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12202), 1, - sym_raw_string_content, - STATE(7950), 1, + sym_raw_string_end, + STATE(7865), 1, sym_comment, - [243411] = 3, - ACTIONS(249), 1, + [233600] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8499), 1, + aux_sym_unquoted_token2, + STATE(7866), 1, + sym_comment, + [233610] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12204), 1, - anon_sym_RPAREN, - STATE(7951), 1, + anon_sym_RBRACK, + STATE(7867), 1, sym_comment, - [243421] = 3, - ACTIONS(249), 1, + [233620] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12206), 1, - sym_raw_string_end, - STATE(7952), 1, + anon_sym_GT2, + STATE(7868), 1, sym_comment, - [243431] = 3, - ACTIONS(249), 1, + [233630] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12208), 1, - anon_sym_RBRACK, - STATE(7953), 1, + anon_sym_RPAREN, + STATE(7869), 1, sym_comment, - [243441] = 3, - ACTIONS(249), 1, + [233640] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12210), 1, - anon_sym_RPAREN, - STATE(7954), 1, + aux_sym_cmd_identifier_token41, + STATE(7870), 1, sym_comment, - [243451] = 3, - ACTIONS(249), 1, + [233650] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12212), 1, - anon_sym_RPAREN, - STATE(7955), 1, - sym_comment, - [243461] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(541), 1, - anon_sym_RPAREN2, - STATE(7956), 1, + anon_sym_EQ, + STATE(7871), 1, sym_comment, - [243471] = 3, - ACTIONS(249), 1, + [233660] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12214), 1, - anon_sym_RBRACE, - STATE(7957), 1, + anon_sym_RPAREN, + STATE(7872), 1, sym_comment, - [243481] = 3, - ACTIONS(249), 1, + [233670] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12216), 1, - anon_sym_RPAREN, - STATE(7958), 1, + sym_raw_string_content, + STATE(7873), 1, sym_comment, - [243491] = 3, - ACTIONS(249), 1, + [233680] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12218), 1, - sym_raw_string_content, - STATE(7959), 1, + anon_sym_RBRACE, + STATE(7874), 1, sym_comment, - [243501] = 3, - ACTIONS(249), 1, + [233690] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12220), 1, - anon_sym_RBRACE, - STATE(7960), 1, + sym_raw_string_end, + STATE(7875), 1, sym_comment, - [243511] = 3, - ACTIONS(249), 1, + [233700] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12222), 1, anon_sym_RPAREN, - STATE(7961), 1, - sym_comment, - [243521] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2218), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7962), 1, + STATE(7876), 1, sym_comment, - [243531] = 3, - ACTIONS(249), 1, + [233710] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12224), 1, - anon_sym_RBRACE, - STATE(7963), 1, + anon_sym_RBRACK, + STATE(7877), 1, sym_comment, - [243541] = 3, - ACTIONS(249), 1, + [233720] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12226), 1, - ts_builtin_sym_end, - STATE(7964), 1, + anon_sym_RPAREN, + STATE(7878), 1, sym_comment, - [243551] = 3, - ACTIONS(249), 1, + [233730] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12228), 1, - anon_sym_RBRACE, - STATE(7965), 1, + sym_raw_string_end, + STATE(7879), 1, sym_comment, - [243561] = 3, - ACTIONS(249), 1, + [233740] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12230), 1, anon_sym_RBRACE, - STATE(7966), 1, - sym_comment, - [243571] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(569), 1, - anon_sym_RPAREN2, - STATE(7967), 1, + STATE(7880), 1, sym_comment, - [243581] = 3, - ACTIONS(249), 1, + [233750] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12232), 1, - sym_raw_string_content, - STATE(7968), 1, + anon_sym_EQ, + STATE(7881), 1, sym_comment, - [243591] = 3, - ACTIONS(249), 1, + [233760] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12234), 1, - anon_sym_RPAREN, - STATE(7969), 1, - sym_comment, - [243601] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7135), 1, - aux_sym__unquoted_in_list_token2, - STATE(7970), 1, + sym_raw_string_content, + STATE(7882), 1, sym_comment, - [243611] = 3, - ACTIONS(249), 1, + [233770] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12236), 1, - anon_sym_LPAREN2, - STATE(7971), 1, + sym_raw_string_end, + STATE(7883), 1, sym_comment, - [243621] = 3, - ACTIONS(249), 1, + [233780] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12238), 1, - anon_sym_RPAREN, - STATE(7972), 1, - sym_comment, - [243631] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(7021), 1, - aux_sym_unquoted_token2, - STATE(7973), 1, + anon_sym_RPAREN2, + STATE(7884), 1, sym_comment, - [243641] = 3, - ACTIONS(249), 1, + [233790] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12240), 1, - anon_sym_RBRACE, - STATE(7974), 1, + anon_sym_EQ, + STATE(7885), 1, sym_comment, - [243651] = 3, - ACTIONS(249), 1, + [233800] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12242), 1, - anon_sym_RPAREN, - STATE(7975), 1, + sym_raw_string_end, + STATE(7886), 1, sym_comment, - [243661] = 3, - ACTIONS(249), 1, + [233810] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(555), 1, - anon_sym_RPAREN2, - STATE(7976), 1, + ACTIONS(11351), 1, + anon_sym_EQ_GT, + STATE(7887), 1, sym_comment, - [243671] = 3, - ACTIONS(249), 1, + [233820] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token2, + STATE(7888), 1, + sym_comment, + [233830] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12244), 1, - sym_raw_string_content, - STATE(7977), 1, + sym_raw_string_end, + STATE(7889), 1, sym_comment, - [243681] = 3, - ACTIONS(249), 1, + [233840] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12246), 1, - anon_sym_RBRACE, - STATE(7978), 1, + anon_sym_RBRACK, + STATE(7890), 1, sym_comment, - [243691] = 3, - ACTIONS(249), 1, + [233850] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12248), 1, - anon_sym_RPAREN, - STATE(7979), 1, + sym_raw_string_content, + STATE(7891), 1, sym_comment, - [243701] = 3, - ACTIONS(249), 1, + [233860] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12250), 1, - anon_sym_RBRACE, - STATE(7980), 1, + sym_raw_string_content, + STATE(7892), 1, sym_comment, - [243711] = 3, - ACTIONS(249), 1, + [233870] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12252), 1, - anon_sym_RPAREN, - STATE(7981), 1, + aux_sym_record_entry_token1, + STATE(7893), 1, sym_comment, - [243721] = 3, - ACTIONS(249), 1, + [233880] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12254), 1, - ts_builtin_sym_end, - STATE(7982), 1, + anon_sym_RPAREN, + STATE(7894), 1, sym_comment, - [243731] = 3, - ACTIONS(249), 1, + [233890] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12256), 1, anon_sym_RBRACE, - STATE(7983), 1, + STATE(7895), 1, sym_comment, - [243741] = 3, - ACTIONS(249), 1, + [233900] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11563), 1, + anon_sym_make, + STATE(7896), 1, + sym_comment, + [233910] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12258), 1, - anon_sym_GT, - STATE(7984), 1, + anon_sym_RBRACE, + STATE(7897), 1, sym_comment, - [243751] = 3, - ACTIONS(249), 1, + [233920] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12260), 1, - sym_raw_string_end, - STATE(7985), 1, + anon_sym_EQ, + STATE(7898), 1, sym_comment, - [243761] = 3, - ACTIONS(249), 1, + [233930] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12262), 1, - sym_raw_string_content, - STATE(7986), 1, + anon_sym_RBRACE, + STATE(7899), 1, sym_comment, - [243771] = 3, - ACTIONS(249), 1, + [233940] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12264), 1, - anon_sym_RPAREN, - STATE(7987), 1, + sym_raw_string_content, + STATE(7900), 1, sym_comment, - [243781] = 3, - ACTIONS(249), 1, + [233950] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12266), 1, - anon_sym_RBRACE, - STATE(7988), 1, + sym_raw_string_content, + STATE(7901), 1, sym_comment, - [243791] = 3, - ACTIONS(249), 1, + [233960] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12268), 1, - anon_sym_RBRACE, - STATE(7989), 1, + sym_raw_string_content, + STATE(7902), 1, sym_comment, - [243801] = 3, - ACTIONS(249), 1, + [233970] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12270), 1, - sym_identifier, - STATE(7990), 1, + sym_raw_string_content, + STATE(7903), 1, sym_comment, - [243811] = 3, - ACTIONS(249), 1, + [233980] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12272), 1, - anon_sym_RPAREN, - STATE(7991), 1, - sym_comment, - [243821] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4645), 1, - aux_sym_unquoted_token4, - STATE(7992), 1, + sym_raw_string_content, + STATE(7904), 1, sym_comment, - [243831] = 3, - ACTIONS(249), 1, + [233990] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12274), 1, sym_raw_string_content, - STATE(7993), 1, + STATE(7905), 1, sym_comment, - [243841] = 3, - ACTIONS(249), 1, + [234000] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12276), 1, sym_raw_string_content, - STATE(7994), 1, + STATE(7906), 1, sym_comment, - [243851] = 3, - ACTIONS(249), 1, + [234010] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12278), 1, sym_raw_string_content, - STATE(7995), 1, + STATE(7907), 1, sym_comment, - [243861] = 3, - ACTIONS(249), 1, + [234020] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12280), 1, sym_raw_string_content, - STATE(7996), 1, + STATE(7908), 1, sym_comment, - [243871] = 3, - ACTIONS(249), 1, + [234030] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12282), 1, sym_raw_string_content, - STATE(7997), 1, + STATE(7909), 1, sym_comment, - [243881] = 3, - ACTIONS(249), 1, + [234040] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12284), 1, sym_raw_string_content, - STATE(7998), 1, + STATE(7910), 1, sym_comment, - [243891] = 3, - ACTIONS(249), 1, + [234050] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12286), 1, sym_raw_string_content, - STATE(7999), 1, + STATE(7911), 1, sym_comment, - [243901] = 3, - ACTIONS(249), 1, + [234060] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12288), 1, sym_raw_string_content, - STATE(8000), 1, + STATE(7912), 1, sym_comment, - [243911] = 3, - ACTIONS(249), 1, + [234070] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12290), 1, sym_raw_string_content, - STATE(8001), 1, + STATE(7913), 1, sym_comment, - [243921] = 3, - ACTIONS(249), 1, + [234080] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12292), 1, sym_raw_string_content, - STATE(8002), 1, + STATE(7914), 1, sym_comment, - [243931] = 3, - ACTIONS(249), 1, + [234090] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12294), 1, sym_raw_string_content, - STATE(8003), 1, + STATE(7915), 1, sym_comment, - [243941] = 3, - ACTIONS(249), 1, + [234100] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12296), 1, sym_raw_string_content, - STATE(8004), 1, + STATE(7916), 1, sym_comment, - [243951] = 3, - ACTIONS(249), 1, + [234110] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12298), 1, sym_raw_string_content, - STATE(8005), 1, + STATE(7917), 1, sym_comment, - [243961] = 3, - ACTIONS(249), 1, + [234120] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12300), 1, sym_raw_string_content, - STATE(8006), 1, + STATE(7918), 1, sym_comment, - [243971] = 3, - ACTIONS(249), 1, + [234130] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12302), 1, sym_raw_string_content, - STATE(8007), 1, + STATE(7919), 1, sym_comment, - [243981] = 3, - ACTIONS(249), 1, + [234140] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12304), 1, sym_raw_string_content, - STATE(8008), 1, + STATE(7920), 1, sym_comment, - [243991] = 3, - ACTIONS(249), 1, + [234150] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12306), 1, sym_raw_string_content, - STATE(8009), 1, + STATE(7921), 1, sym_comment, - [244001] = 3, - ACTIONS(249), 1, + [234160] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12308), 1, sym_raw_string_content, - STATE(8010), 1, + STATE(7922), 1, sym_comment, - [244011] = 3, - ACTIONS(249), 1, + [234170] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12310), 1, sym_raw_string_content, - STATE(8011), 1, + STATE(7923), 1, sym_comment, - [244021] = 3, - ACTIONS(249), 1, + [234180] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12312), 1, sym_raw_string_content, - STATE(8012), 1, + STATE(7924), 1, sym_comment, - [244031] = 3, - ACTIONS(249), 1, + [234190] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12314), 1, sym_raw_string_content, - STATE(8013), 1, + STATE(7925), 1, sym_comment, - [244041] = 3, - ACTIONS(249), 1, + [234200] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12316), 1, sym_raw_string_content, - STATE(8014), 1, + STATE(7926), 1, sym_comment, - [244051] = 3, - ACTIONS(249), 1, + [234210] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12318), 1, sym_raw_string_content, - STATE(8015), 1, + STATE(7927), 1, sym_comment, - [244061] = 3, - ACTIONS(249), 1, + [234220] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12320), 1, sym_raw_string_content, - STATE(8016), 1, + STATE(7928), 1, sym_comment, - [244071] = 3, - ACTIONS(249), 1, + [234230] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12322), 1, sym_raw_string_content, - STATE(8017), 1, + STATE(7929), 1, sym_comment, - [244081] = 3, - ACTIONS(249), 1, + [234240] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12324), 1, sym_raw_string_content, - STATE(8018), 1, + STATE(7930), 1, sym_comment, - [244091] = 3, - ACTIONS(249), 1, + [234250] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10769), 1, + anon_sym_LBRACK2, + STATE(7931), 1, + sym_comment, + [234260] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12326), 1, - sym_raw_string_content, - STATE(8019), 1, + anon_sym_RBRACE, + STATE(7932), 1, sym_comment, - [244101] = 3, - ACTIONS(249), 1, + [234270] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11637), 1, + anon_sym_LPAREN2, + STATE(7933), 1, + sym_comment, + [234280] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12328), 1, - sym_raw_string_content, - STATE(8020), 1, + anon_sym_RPAREN, + STATE(7934), 1, sym_comment, - [244111] = 3, - ACTIONS(249), 1, + [234290] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12330), 1, - sym_raw_string_content, - STATE(8021), 1, + anon_sym_RBRACE, + STATE(7935), 1, sym_comment, - [244121] = 3, - ACTIONS(249), 1, + [234300] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12332), 1, - sym_raw_string_content, - STATE(8022), 1, + anon_sym_RPAREN, + STATE(7936), 1, sym_comment, - [244131] = 3, - ACTIONS(249), 1, + [234310] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12334), 1, anon_sym_RBRACE, - STATE(8023), 1, + STATE(7937), 1, sym_comment, - [244141] = 3, - ACTIONS(249), 1, + [234320] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12336), 1, - anon_sym_LPAREN2, - STATE(8024), 1, + anon_sym_RPAREN, + STATE(7938), 1, sym_comment, - [244151] = 3, - ACTIONS(249), 1, + [234330] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12338), 1, - anon_sym_RBRACK, - STATE(8025), 1, + anon_sym_EQ, + STATE(7939), 1, sym_comment, - [244161] = 3, - ACTIONS(249), 1, + [234340] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12340), 1, - sym_raw_string_end, - STATE(8026), 1, + aux_sym_cmd_identifier_token41, + STATE(7940), 1, sym_comment, - [244171] = 3, - ACTIONS(249), 1, + [234350] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12342), 1, - sym_identifier, - STATE(8027), 1, + aux_sym_cmd_identifier_token41, + STATE(7941), 1, sym_comment, - [244181] = 3, - ACTIONS(249), 1, + [234360] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12344), 1, - anon_sym_EQ, - STATE(8028), 1, + anon_sym_RPAREN, + STATE(7942), 1, sym_comment, - [244191] = 3, - ACTIONS(249), 1, + [234370] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12346), 1, - anon_sym_GT, - STATE(8029), 1, + anon_sym_GT2, + STATE(7943), 1, sym_comment, - [244201] = 3, - ACTIONS(249), 1, + [234380] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(503), 1, + anon_sym_RPAREN2, + STATE(7944), 1, + sym_comment, + [234390] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12348), 1, - sym__table_head_separator, - STATE(8030), 1, + anon_sym_GT2, + STATE(7945), 1, sym_comment, - [244211] = 3, - ACTIONS(249), 1, + [234400] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12350), 1, - anon_sym_RBRACE, - STATE(8031), 1, + sym__table_head_separator, + STATE(7946), 1, sym_comment, - [244221] = 3, - ACTIONS(249), 1, + [234410] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12352), 1, - anon_sym_in, - STATE(8032), 1, + ACTIONS(9678), 1, + aux_sym_unquoted_token4, + STATE(7947), 1, sym_comment, - [244231] = 3, - ACTIONS(3), 1, + [234420] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10859), 1, - aux_sym_cmd_identifier_token37, - STATE(8033), 1, + ACTIONS(12352), 1, + anon_sym_in2, + STATE(7948), 1, sym_comment, - [244241] = 3, - ACTIONS(249), 1, + [234430] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12354), 1, - anon_sym_GT, - STATE(8034), 1, + sym_long_flag_identifier, + STATE(7949), 1, sym_comment, - [244251] = 3, - ACTIONS(249), 1, + [234440] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12356), 1, anon_sym_RBRACE, - STATE(8035), 1, - sym_comment, - [244261] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym_unquoted_token2, - STATE(8036), 1, + STATE(7950), 1, sym_comment, - [244271] = 3, - ACTIONS(249), 1, + [234450] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12358), 1, - anon_sym_in, - STATE(8037), 1, + sym_raw_string_end, + STATE(7951), 1, sym_comment, - [244281] = 3, - ACTIONS(249), 1, + [234460] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12360), 1, - anon_sym_RBRACE, - STATE(8038), 1, + anon_sym_in2, + STATE(7952), 1, sym_comment, - [244291] = 3, - ACTIONS(249), 1, + [234470] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10773), 1, + anon_sym_LBRACE, + STATE(7953), 1, + sym_comment, + [234480] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12362), 1, - anon_sym_RPAREN, - STATE(8039), 1, + anon_sym_LBRACE, + STATE(7954), 1, sym_comment, - [244301] = 3, - ACTIONS(249), 1, + [234490] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12364), 1, - anon_sym_RBRACE, - STATE(8040), 1, + anon_sym_RPAREN, + STATE(7955), 1, sym_comment, - [244311] = 3, - ACTIONS(249), 1, + [234500] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(513), 1, + anon_sym_RPAREN2, + STATE(7956), 1, + sym_comment, + [234510] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12366), 1, anon_sym_RBRACE, - STATE(8041), 1, + STATE(7957), 1, sym_comment, - [244321] = 3, - ACTIONS(249), 1, + [234520] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12368), 1, - anon_sym_RBRACE, - STATE(8042), 1, + anon_sym_RPAREN, + STATE(7958), 1, sym_comment, - [244331] = 3, - ACTIONS(249), 1, + [234530] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12370), 1, - anon_sym_RPAREN, - STATE(8043), 1, + anon_sym_RBRACE, + STATE(7959), 1, sym_comment, - [244341] = 3, - ACTIONS(249), 1, + [234540] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12372), 1, - sym_identifier, - STATE(8044), 1, + anon_sym_RBRACK, + STATE(7960), 1, sym_comment, - [244351] = 3, + [234550] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12374), 1, - sym__space, - STATE(8045), 1, - sym_comment, - [244361] = 3, - ACTIONS(249), 1, - anon_sym_POUND, - ACTIONS(6542), 1, - anon_sym_LPAREN2, - STATE(8046), 1, + ACTIONS(2183), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7961), 1, sym_comment, - [244371] = 3, - ACTIONS(3), 1, + [234560] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2218), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8047), 1, + ACTIONS(12374), 1, + anon_sym_DASH_GT, + STATE(7962), 1, sym_comment, - [244381] = 3, - ACTIONS(249), 1, + [234570] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12376), 1, - sym_raw_string_end, - STATE(8048), 1, + anon_sym_RPAREN, + STATE(7963), 1, sym_comment, - [244391] = 3, - ACTIONS(249), 1, + [234580] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12378), 1, - anon_sym_RBRACE, - STATE(8049), 1, + anon_sym_GT2, + STATE(7964), 1, sym_comment, - [244401] = 3, - ACTIONS(249), 1, + [234590] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12380), 1, anon_sym_RBRACE, - STATE(8050), 1, + STATE(7965), 1, sym_comment, - [244411] = 3, - ACTIONS(249), 1, + [234600] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6528), 1, + anon_sym_LPAREN2, + STATE(7966), 1, + sym_comment, + [234610] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12382), 1, - anon_sym_RPAREN2, - STATE(8051), 1, + anon_sym_RBRACK, + STATE(7967), 1, sym_comment, - [244421] = 3, - ACTIONS(249), 1, + [234620] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12384), 1, sym_raw_string_end, - STATE(8052), 1, + STATE(7968), 1, sym_comment, - [244431] = 3, - ACTIONS(249), 1, + [234630] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12386), 1, - anon_sym_RPAREN, - STATE(8053), 1, + anon_sym_RBRACE, + STATE(7969), 1, sym_comment, - [244441] = 3, - ACTIONS(249), 1, + [234640] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12388), 1, - anon_sym_LPAREN2, - STATE(8054), 1, + anon_sym_LBRACE, + STATE(7970), 1, sym_comment, - [244451] = 3, - ACTIONS(249), 1, + [234650] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12390), 1, - anon_sym_in, - STATE(8055), 1, + anon_sym_LBRACE, + STATE(7971), 1, sym_comment, - [244461] = 3, - ACTIONS(249), 1, + [234660] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12392), 1, - anon_sym_LPAREN2, - STATE(8056), 1, + aux_sym_record_entry_token1, + STATE(7972), 1, sym_comment, - [244471] = 3, - ACTIONS(249), 1, + [234670] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6485), 1, + aux_sym_unquoted_token2, + STATE(7973), 1, + sym_comment, + [234680] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8499), 1, + aux_sym_unquoted_token4, + STATE(7974), 1, + sym_comment, + [234690] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12394), 1, - anon_sym_GT, - STATE(8057), 1, + sym_param_short_flag_identifier, + STATE(7975), 1, sym_comment, - [244481] = 3, - ACTIONS(249), 1, + [234700] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12396), 1, - sym_raw_string_end, - STATE(8058), 1, + anon_sym_RBRACK, + STATE(7976), 1, sym_comment, - [244491] = 3, - ACTIONS(249), 1, + [234710] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12398), 1, - anon_sym_RBRACE, - STATE(8059), 1, + anon_sym_LBRACE, + STATE(7977), 1, sym_comment, - [244501] = 3, - ACTIONS(249), 1, + [234720] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12400), 1, - anon_sym_RBRACE, - STATE(8060), 1, + sym_raw_string_end, + STATE(7978), 1, sym_comment, - [244511] = 3, - ACTIONS(249), 1, + [234730] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12402), 1, - anon_sym_RBRACE, - STATE(8061), 1, - sym_comment, - [244521] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10256), 1, - aux_sym_cmd_identifier_token37, - STATE(8062), 1, + anon_sym_RBRACK, + STATE(7979), 1, sym_comment, - [244531] = 3, - ACTIONS(249), 1, + [234740] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12404), 1, - sym_raw_string_end, - STATE(8063), 1, + anon_sym_RPAREN, + STATE(7980), 1, sym_comment, - [244541] = 3, - ACTIONS(249), 1, + [234750] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12406), 1, - anon_sym_RPAREN, - STATE(8064), 1, + anon_sym_LBRACE, + STATE(7981), 1, sym_comment, - [244551] = 3, - ACTIONS(249), 1, + [234760] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12408), 1, - anon_sym_RBRACE, - STATE(8065), 1, + ACTIONS(2258), 1, + aux_sym_unquoted_token2, + STATE(7982), 1, sym_comment, - [244561] = 3, - ACTIONS(249), 1, + [234770] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12410), 1, - anon_sym_RBRACK, - STATE(8066), 1, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(7983), 1, sym_comment, - [244571] = 3, - ACTIONS(249), 1, + [234780] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5464), 1, - aux_sym_unquoted_token2, - STATE(8067), 1, + ACTIONS(12408), 1, + anon_sym_EQ_GT, + STATE(7984), 1, sym_comment, - [244581] = 3, - ACTIONS(249), 1, + [234790] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12412), 1, - anon_sym_GT, - STATE(8068), 1, + ACTIONS(5685), 1, + aux_sym_record_entry_token1, + STATE(7985), 1, sym_comment, - [244591] = 3, - ACTIONS(249), 1, + [234800] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12414), 1, - anon_sym_LBRACE, - STATE(8069), 1, + ACTIONS(12410), 1, + anon_sym_RBRACE, + STATE(7986), 1, sym_comment, - [244601] = 3, - ACTIONS(249), 1, + [234810] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5603), 1, - aux_sym_record_entry_token1, - STATE(8070), 1, + ACTIONS(12412), 1, + anon_sym_RPAREN, + STATE(7987), 1, sym_comment, - [244611] = 3, - ACTIONS(3), 1, + [234820] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6929), 1, - aux_sym_unquoted_token4, - STATE(8071), 1, + ACTIONS(12414), 1, + anon_sym_RBRACE, + STATE(7988), 1, sym_comment, - [244621] = 3, - ACTIONS(249), 1, + [234830] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12416), 1, - anon_sym_RBRACK, - STATE(8072), 1, + anon_sym_RBRACE, + STATE(7989), 1, sym_comment, - [244631] = 3, - ACTIONS(249), 1, + [234840] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12418), 1, anon_sym_RPAREN, - STATE(8073), 1, + STATE(7990), 1, sym_comment, - [244641] = 3, - ACTIONS(249), 1, + [234850] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5616), 1, + aux_sym_unquoted_token2, + STATE(7991), 1, + sym_comment, + [234860] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12420), 1, - anon_sym_RBRACE, - STATE(8074), 1, + anon_sym_RBRACK, + STATE(7992), 1, sym_comment, - [244651] = 3, - ACTIONS(249), 1, + [234870] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12422), 1, anon_sym_RPAREN, - STATE(8075), 1, + STATE(7993), 1, sym_comment, - [244661] = 3, - ACTIONS(249), 1, + [234880] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1579), 1, + aux_sym_unquoted_token2, + STATE(7994), 1, + sym_comment, + [234890] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12424), 1, anon_sym_RPAREN, - STATE(8076), 1, + STATE(7995), 1, sym_comment, - [244671] = 3, - ACTIONS(249), 1, + [234900] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12426), 1, - anon_sym_RBRACE, - STATE(8077), 1, + aux_sym_cmd_identifier_token41, + STATE(7996), 1, sym_comment, - [244681] = 3, - ACTIONS(249), 1, + [234910] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12428), 1, - sym_raw_string_end, - STATE(8078), 1, + anon_sym_LBRACE, + STATE(7997), 1, sym_comment, - [244691] = 1, + [234920] = 3, + ACTIONS(247), 1, + anon_sym_POUND, ACTIONS(12430), 1, + anon_sym_EQ, + STATE(7998), 1, + sym_comment, + [234930] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12432), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7999), 1, + sym_comment, + [234940] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2204), 1, + aux_sym_unquoted_token4, + STATE(8000), 1, + sym_comment, + [234950] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12434), 1, + anon_sym_RBRACE, + STATE(8001), 1, + sym_comment, + [234960] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12436), 1, + anon_sym_RBRACE, + STATE(8002), 1, + sym_comment, + [234970] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12438), 1, + anon_sym_RBRACE, + STATE(8003), 1, + sym_comment, + [234980] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12440), 1, + aux_sym_cmd_identifier_token41, + STATE(8004), 1, + sym_comment, + [234990] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12442), 1, + anon_sym_RBRACE, + STATE(8005), 1, + sym_comment, + [235000] = 1, + ACTIONS(12444), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1585)] = 0, - [SMALL_STATE(1586)] = 73, - [SMALL_STATE(1587)] = 146, - [SMALL_STATE(1588)] = 219, - [SMALL_STATE(1589)] = 292, - [SMALL_STATE(1590)] = 365, - [SMALL_STATE(1591)] = 438, - [SMALL_STATE(1592)] = 511, - [SMALL_STATE(1593)] = 586, - [SMALL_STATE(1594)] = 659, - [SMALL_STATE(1595)] = 732, - [SMALL_STATE(1596)] = 805, - [SMALL_STATE(1597)] = 878, - [SMALL_STATE(1598)] = 951, - [SMALL_STATE(1599)] = 1024, - [SMALL_STATE(1600)] = 1097, - [SMALL_STATE(1601)] = 1170, - [SMALL_STATE(1602)] = 1243, - [SMALL_STATE(1603)] = 1316, - [SMALL_STATE(1604)] = 1389, - [SMALL_STATE(1605)] = 1462, - [SMALL_STATE(1606)] = 1537, - [SMALL_STATE(1607)] = 1610, - [SMALL_STATE(1608)] = 1683, - [SMALL_STATE(1609)] = 1756, - [SMALL_STATE(1610)] = 1831, - [SMALL_STATE(1611)] = 1906, - [SMALL_STATE(1612)] = 1979, - [SMALL_STATE(1613)] = 2052, - [SMALL_STATE(1614)] = 2125, - [SMALL_STATE(1615)] = 2198, - [SMALL_STATE(1616)] = 2271, - [SMALL_STATE(1617)] = 2344, - [SMALL_STATE(1618)] = 2419, - [SMALL_STATE(1619)] = 2492, - [SMALL_STATE(1620)] = 2565, - [SMALL_STATE(1621)] = 2640, - [SMALL_STATE(1622)] = 2713, - [SMALL_STATE(1623)] = 2786, - [SMALL_STATE(1624)] = 2859, - [SMALL_STATE(1625)] = 2932, - [SMALL_STATE(1626)] = 3005, - [SMALL_STATE(1627)] = 3078, - [SMALL_STATE(1628)] = 3151, - [SMALL_STATE(1629)] = 3224, - [SMALL_STATE(1630)] = 3297, - [SMALL_STATE(1631)] = 3370, - [SMALL_STATE(1632)] = 3443, - [SMALL_STATE(1633)] = 3516, - [SMALL_STATE(1634)] = 3589, - [SMALL_STATE(1635)] = 3662, - [SMALL_STATE(1636)] = 3735, - [SMALL_STATE(1637)] = 3808, - [SMALL_STATE(1638)] = 3881, - [SMALL_STATE(1639)] = 3954, - [SMALL_STATE(1640)] = 4027, - [SMALL_STATE(1641)] = 4100, - [SMALL_STATE(1642)] = 4173, - [SMALL_STATE(1643)] = 4246, - [SMALL_STATE(1644)] = 4319, - [SMALL_STATE(1645)] = 4392, - [SMALL_STATE(1646)] = 4465, - [SMALL_STATE(1647)] = 4538, - [SMALL_STATE(1648)] = 4611, - [SMALL_STATE(1649)] = 4684, - [SMALL_STATE(1650)] = 4757, - [SMALL_STATE(1651)] = 4830, - [SMALL_STATE(1652)] = 4903, - [SMALL_STATE(1653)] = 4978, - [SMALL_STATE(1654)] = 5051, - [SMALL_STATE(1655)] = 5124, - [SMALL_STATE(1656)] = 5197, - [SMALL_STATE(1657)] = 5270, - [SMALL_STATE(1658)] = 5343, - [SMALL_STATE(1659)] = 5416, - [SMALL_STATE(1660)] = 5491, - [SMALL_STATE(1661)] = 5564, - [SMALL_STATE(1662)] = 5637, - [SMALL_STATE(1663)] = 5710, - [SMALL_STATE(1664)] = 5783, - [SMALL_STATE(1665)] = 5858, - [SMALL_STATE(1666)] = 5941, - [SMALL_STATE(1667)] = 6014, - [SMALL_STATE(1668)] = 6087, - [SMALL_STATE(1669)] = 6160, - [SMALL_STATE(1670)] = 6233, - [SMALL_STATE(1671)] = 6308, - [SMALL_STATE(1672)] = 6381, - [SMALL_STATE(1673)] = 6454, - [SMALL_STATE(1674)] = 6527, - [SMALL_STATE(1675)] = 6610, - [SMALL_STATE(1676)] = 6683, - [SMALL_STATE(1677)] = 6758, - [SMALL_STATE(1678)] = 6831, - [SMALL_STATE(1679)] = 6904, - [SMALL_STATE(1680)] = 6977, - [SMALL_STATE(1681)] = 7050, - [SMALL_STATE(1682)] = 7123, - [SMALL_STATE(1683)] = 7196, - [SMALL_STATE(1684)] = 7269, - [SMALL_STATE(1685)] = 7342, - [SMALL_STATE(1686)] = 7415, - [SMALL_STATE(1687)] = 7488, - [SMALL_STATE(1688)] = 7561, - [SMALL_STATE(1689)] = 7634, - [SMALL_STATE(1690)] = 7707, - [SMALL_STATE(1691)] = 7782, - [SMALL_STATE(1692)] = 7855, - [SMALL_STATE(1693)] = 7928, - [SMALL_STATE(1694)] = 8001, - [SMALL_STATE(1695)] = 8074, - [SMALL_STATE(1696)] = 8147, - [SMALL_STATE(1697)] = 8220, - [SMALL_STATE(1698)] = 8300, - [SMALL_STATE(1699)] = 8372, - [SMALL_STATE(1700)] = 8444, - [SMALL_STATE(1701)] = 8516, - [SMALL_STATE(1702)] = 8588, - [SMALL_STATE(1703)] = 8660, - [SMALL_STATE(1704)] = 8732, - [SMALL_STATE(1705)] = 8804, - [SMALL_STATE(1706)] = 8884, - [SMALL_STATE(1707)] = 8956, - [SMALL_STATE(1708)] = 9028, - [SMALL_STATE(1709)] = 9100, - [SMALL_STATE(1710)] = 9172, - [SMALL_STATE(1711)] = 9244, - [SMALL_STATE(1712)] = 9316, - [SMALL_STATE(1713)] = 9388, - [SMALL_STATE(1714)] = 9460, - [SMALL_STATE(1715)] = 9532, - [SMALL_STATE(1716)] = 9612, - [SMALL_STATE(1717)] = 9692, - [SMALL_STATE(1718)] = 9772, - [SMALL_STATE(1719)] = 9844, - [SMALL_STATE(1720)] = 9916, - [SMALL_STATE(1721)] = 9988, - [SMALL_STATE(1722)] = 10060, - [SMALL_STATE(1723)] = 10132, - [SMALL_STATE(1724)] = 10204, - [SMALL_STATE(1725)] = 10276, - [SMALL_STATE(1726)] = 10348, - [SMALL_STATE(1727)] = 10420, - [SMALL_STATE(1728)] = 10492, - [SMALL_STATE(1729)] = 10564, - [SMALL_STATE(1730)] = 10636, - [SMALL_STATE(1731)] = 10708, - [SMALL_STATE(1732)] = 10780, - [SMALL_STATE(1733)] = 10852, - [SMALL_STATE(1734)] = 10932, - [SMALL_STATE(1735)] = 11004, - [SMALL_STATE(1736)] = 11076, - [SMALL_STATE(1737)] = 11148, - [SMALL_STATE(1738)] = 11220, - [SMALL_STATE(1739)] = 11292, - [SMALL_STATE(1740)] = 11366, - [SMALL_STATE(1741)] = 11438, - [SMALL_STATE(1742)] = 11582, - [SMALL_STATE(1743)] = 11726, - [SMALL_STATE(1744)] = 11798, - [SMALL_STATE(1745)] = 11870, - [SMALL_STATE(1746)] = 11950, - [SMALL_STATE(1747)] = 12022, - [SMALL_STATE(1748)] = 12094, - [SMALL_STATE(1749)] = 12166, - [SMALL_STATE(1750)] = 12238, - [SMALL_STATE(1751)] = 12310, - [SMALL_STATE(1752)] = 12382, - [SMALL_STATE(1753)] = 12454, - [SMALL_STATE(1754)] = 12526, - [SMALL_STATE(1755)] = 12598, - [SMALL_STATE(1756)] = 12670, - [SMALL_STATE(1757)] = 12742, - [SMALL_STATE(1758)] = 12814, - [SMALL_STATE(1759)] = 12886, - [SMALL_STATE(1760)] = 12958, - [SMALL_STATE(1761)] = 13030, - [SMALL_STATE(1762)] = 13102, - [SMALL_STATE(1763)] = 13174, - [SMALL_STATE(1764)] = 13246, - [SMALL_STATE(1765)] = 13318, - [SMALL_STATE(1766)] = 13390, - [SMALL_STATE(1767)] = 13462, - [SMALL_STATE(1768)] = 13534, - [SMALL_STATE(1769)] = 13606, - [SMALL_STATE(1770)] = 13678, - [SMALL_STATE(1771)] = 13750, - [SMALL_STATE(1772)] = 13822, - [SMALL_STATE(1773)] = 13894, - [SMALL_STATE(1774)] = 13966, - [SMALL_STATE(1775)] = 14038, - [SMALL_STATE(1776)] = 14110, - [SMALL_STATE(1777)] = 14182, - [SMALL_STATE(1778)] = 14254, - [SMALL_STATE(1779)] = 14326, - [SMALL_STATE(1780)] = 14398, - [SMALL_STATE(1781)] = 14470, - [SMALL_STATE(1782)] = 14542, - [SMALL_STATE(1783)] = 14614, - [SMALL_STATE(1784)] = 14686, - [SMALL_STATE(1785)] = 14766, - [SMALL_STATE(1786)] = 14838, - [SMALL_STATE(1787)] = 14910, - [SMALL_STATE(1788)] = 14982, - [SMALL_STATE(1789)] = 15054, - [SMALL_STATE(1790)] = 15126, - [SMALL_STATE(1791)] = 15206, - [SMALL_STATE(1792)] = 15278, - [SMALL_STATE(1793)] = 15350, - [SMALL_STATE(1794)] = 15422, - [SMALL_STATE(1795)] = 15494, - [SMALL_STATE(1796)] = 15566, - [SMALL_STATE(1797)] = 15638, - [SMALL_STATE(1798)] = 15710, - [SMALL_STATE(1799)] = 15782, - [SMALL_STATE(1800)] = 15854, - [SMALL_STATE(1801)] = 15926, - [SMALL_STATE(1802)] = 15998, - [SMALL_STATE(1803)] = 16070, - [SMALL_STATE(1804)] = 16142, - [SMALL_STATE(1805)] = 16214, - [SMALL_STATE(1806)] = 16294, - [SMALL_STATE(1807)] = 16366, - [SMALL_STATE(1808)] = 16438, - [SMALL_STATE(1809)] = 16510, - [SMALL_STATE(1810)] = 16582, - [SMALL_STATE(1811)] = 16654, - [SMALL_STATE(1812)] = 16726, - [SMALL_STATE(1813)] = 16798, - [SMALL_STATE(1814)] = 16878, - [SMALL_STATE(1815)] = 16950, - [SMALL_STATE(1816)] = 17022, - [SMALL_STATE(1817)] = 17094, - [SMALL_STATE(1818)] = 17174, - [SMALL_STATE(1819)] = 17254, - [SMALL_STATE(1820)] = 17326, - [SMALL_STATE(1821)] = 17398, - [SMALL_STATE(1822)] = 17470, - [SMALL_STATE(1823)] = 17542, - [SMALL_STATE(1824)] = 17614, - [SMALL_STATE(1825)] = 17686, - [SMALL_STATE(1826)] = 17758, - [SMALL_STATE(1827)] = 17830, - [SMALL_STATE(1828)] = 17902, - [SMALL_STATE(1829)] = 17974, - [SMALL_STATE(1830)] = 18046, - [SMALL_STATE(1831)] = 18118, - [SMALL_STATE(1832)] = 18198, - [SMALL_STATE(1833)] = 18278, - [SMALL_STATE(1834)] = 18350, - [SMALL_STATE(1835)] = 18422, - [SMALL_STATE(1836)] = 18494, - [SMALL_STATE(1837)] = 18574, - [SMALL_STATE(1838)] = 18654, - [SMALL_STATE(1839)] = 18734, - [SMALL_STATE(1840)] = 18806, - [SMALL_STATE(1841)] = 18886, - [SMALL_STATE(1842)] = 18958, - [SMALL_STATE(1843)] = 19030, - [SMALL_STATE(1844)] = 19102, - [SMALL_STATE(1845)] = 19174, - [SMALL_STATE(1846)] = 19254, - [SMALL_STATE(1847)] = 19334, - [SMALL_STATE(1848)] = 19414, - [SMALL_STATE(1849)] = 19494, - [SMALL_STATE(1850)] = 19574, - [SMALL_STATE(1851)] = 19654, - [SMALL_STATE(1852)] = 19734, - [SMALL_STATE(1853)] = 19814, - [SMALL_STATE(1854)] = 19894, - [SMALL_STATE(1855)] = 19974, - [SMALL_STATE(1856)] = 20054, - [SMALL_STATE(1857)] = 20134, - [SMALL_STATE(1858)] = 20214, - [SMALL_STATE(1859)] = 20294, - [SMALL_STATE(1860)] = 20374, - [SMALL_STATE(1861)] = 20454, - [SMALL_STATE(1862)] = 20534, - [SMALL_STATE(1863)] = 20614, - [SMALL_STATE(1864)] = 20694, - [SMALL_STATE(1865)] = 20774, - [SMALL_STATE(1866)] = 20854, - [SMALL_STATE(1867)] = 20934, - [SMALL_STATE(1868)] = 21014, - [SMALL_STATE(1869)] = 21094, - [SMALL_STATE(1870)] = 21174, - [SMALL_STATE(1871)] = 21254, - [SMALL_STATE(1872)] = 21334, - [SMALL_STATE(1873)] = 21414, - [SMALL_STATE(1874)] = 21486, - [SMALL_STATE(1875)] = 21566, - [SMALL_STATE(1876)] = 21638, - [SMALL_STATE(1877)] = 21718, - [SMALL_STATE(1878)] = 21798, - [SMALL_STATE(1879)] = 21878, - [SMALL_STATE(1880)] = 21950, - [SMALL_STATE(1881)] = 22022, - [SMALL_STATE(1882)] = 22094, - [SMALL_STATE(1883)] = 22166, - [SMALL_STATE(1884)] = 22238, - [SMALL_STATE(1885)] = 22310, - [SMALL_STATE(1886)] = 22382, - [SMALL_STATE(1887)] = 22454, - [SMALL_STATE(1888)] = 22526, - [SMALL_STATE(1889)] = 22598, - [SMALL_STATE(1890)] = 22670, - [SMALL_STATE(1891)] = 22742, - [SMALL_STATE(1892)] = 22814, - [SMALL_STATE(1893)] = 22886, - [SMALL_STATE(1894)] = 22958, - [SMALL_STATE(1895)] = 23030, - [SMALL_STATE(1896)] = 23102, - [SMALL_STATE(1897)] = 23174, - [SMALL_STATE(1898)] = 23253, - [SMALL_STATE(1899)] = 23332, - [SMALL_STATE(1900)] = 23409, - [SMALL_STATE(1901)] = 23480, - [SMALL_STATE(1902)] = 23551, - [SMALL_STATE(1903)] = 23630, - [SMALL_STATE(1904)] = 23709, - [SMALL_STATE(1905)] = 23788, - [SMALL_STATE(1906)] = 23865, - [SMALL_STATE(1907)] = 23938, - [SMALL_STATE(1908)] = 24017, - [SMALL_STATE(1909)] = 24094, - [SMALL_STATE(1910)] = 24171, - [SMALL_STATE(1911)] = 24250, - [SMALL_STATE(1912)] = 24327, - [SMALL_STATE(1913)] = 24404, - [SMALL_STATE(1914)] = 24483, - [SMALL_STATE(1915)] = 24562, - [SMALL_STATE(1916)] = 24639, - [SMALL_STATE(1917)] = 24716, - [SMALL_STATE(1918)] = 24793, - [SMALL_STATE(1919)] = 24870, - [SMALL_STATE(1920)] = 24947, - [SMALL_STATE(1921)] = 25024, - [SMALL_STATE(1922)] = 25101, - [SMALL_STATE(1923)] = 25178, - [SMALL_STATE(1924)] = 25255, - [SMALL_STATE(1925)] = 25332, - [SMALL_STATE(1926)] = 25411, - [SMALL_STATE(1927)] = 25490, - [SMALL_STATE(1928)] = 25567, - [SMALL_STATE(1929)] = 25644, - [SMALL_STATE(1930)] = 25719, - [SMALL_STATE(1931)] = 25824, - [SMALL_STATE(1932)] = 25901, - [SMALL_STATE(1933)] = 25972, - [SMALL_STATE(1934)] = 26049, - [SMALL_STATE(1935)] = 26126, - [SMALL_STATE(1936)] = 26203, - [SMALL_STATE(1937)] = 26280, - [SMALL_STATE(1938)] = 26359, - [SMALL_STATE(1939)] = 26464, - [SMALL_STATE(1940)] = 26605, - [SMALL_STATE(1941)] = 26746, - [SMALL_STATE(1942)] = 26823, - [SMALL_STATE(1943)] = 26900, - [SMALL_STATE(1944)] = 26979, - [SMALL_STATE(1945)] = 27120, - [SMALL_STATE(1946)] = 27197, - [SMALL_STATE(1947)] = 27276, - [SMALL_STATE(1948)] = 27353, - [SMALL_STATE(1949)] = 27432, - [SMALL_STATE(1950)] = 27509, - [SMALL_STATE(1951)] = 27586, - [SMALL_STATE(1952)] = 27663, - [SMALL_STATE(1953)] = 27740, - [SMALL_STATE(1954)] = 27817, - [SMALL_STATE(1955)] = 27894, - [SMALL_STATE(1956)] = 27971, - [SMALL_STATE(1957)] = 28046, - [SMALL_STATE(1958)] = 28151, - [SMALL_STATE(1959)] = 28228, - [SMALL_STATE(1960)] = 28305, - [SMALL_STATE(1961)] = 28382, - [SMALL_STATE(1962)] = 28459, - [SMALL_STATE(1963)] = 28538, - [SMALL_STATE(1964)] = 28615, - [SMALL_STATE(1965)] = 28690, - [SMALL_STATE(1966)] = 28769, - [SMALL_STATE(1967)] = 28846, - [SMALL_STATE(1968)] = 28987, - [SMALL_STATE(1969)] = 29064, - [SMALL_STATE(1970)] = 29141, - [SMALL_STATE(1971)] = 29218, - [SMALL_STATE(1972)] = 29297, - [SMALL_STATE(1973)] = 29374, - [SMALL_STATE(1974)] = 29453, - [SMALL_STATE(1975)] = 29530, - [SMALL_STATE(1976)] = 29609, - [SMALL_STATE(1977)] = 29686, - [SMALL_STATE(1978)] = 29763, - [SMALL_STATE(1979)] = 29842, - [SMALL_STATE(1980)] = 29919, - [SMALL_STATE(1981)] = 29994, - [SMALL_STATE(1982)] = 30071, - [SMALL_STATE(1983)] = 30150, - [SMALL_STATE(1984)] = 30255, - [SMALL_STATE(1985)] = 30332, - [SMALL_STATE(1986)] = 30409, - [SMALL_STATE(1987)] = 30486, - [SMALL_STATE(1988)] = 30565, - [SMALL_STATE(1989)] = 30642, - [SMALL_STATE(1990)] = 30719, - [SMALL_STATE(1991)] = 30798, - [SMALL_STATE(1992)] = 30875, - [SMALL_STATE(1993)] = 30954, - [SMALL_STATE(1994)] = 31033, - [SMALL_STATE(1995)] = 31112, - [SMALL_STATE(1996)] = 31191, - [SMALL_STATE(1997)] = 31262, - [SMALL_STATE(1998)] = 31339, - [SMALL_STATE(1999)] = 31418, - [SMALL_STATE(2000)] = 31520, - [SMALL_STATE(2001)] = 31590, - [SMALL_STATE(2002)] = 31664, - [SMALL_STATE(2003)] = 31734, - [SMALL_STATE(2004)] = 31872, - [SMALL_STATE(2005)] = 31948, - [SMALL_STATE(2006)] = 32018, - [SMALL_STATE(2007)] = 32088, - [SMALL_STATE(2008)] = 32158, - [SMALL_STATE(2009)] = 32296, - [SMALL_STATE(2010)] = 32366, - [SMALL_STATE(2011)] = 32440, - [SMALL_STATE(2012)] = 32510, - [SMALL_STATE(2013)] = 32580, - [SMALL_STATE(2014)] = 32650, - [SMALL_STATE(2015)] = 32720, - [SMALL_STATE(2016)] = 32822, - [SMALL_STATE(2017)] = 32896, - [SMALL_STATE(2018)] = 33034, - [SMALL_STATE(2019)] = 33104, - [SMALL_STATE(2020)] = 33174, - [SMALL_STATE(2021)] = 33244, - [SMALL_STATE(2022)] = 33318, - [SMALL_STATE(2023)] = 33388, - [SMALL_STATE(2024)] = 33458, - [SMALL_STATE(2025)] = 33528, - [SMALL_STATE(2026)] = 33630, - [SMALL_STATE(2027)] = 33700, - [SMALL_STATE(2028)] = 33770, - [SMALL_STATE(2029)] = 33844, - [SMALL_STATE(2030)] = 33914, - [SMALL_STATE(2031)] = 33984, - [SMALL_STATE(2032)] = 34054, - [SMALL_STATE(2033)] = 34156, - [SMALL_STATE(2034)] = 34226, - [SMALL_STATE(2035)] = 34296, - [SMALL_STATE(2036)] = 34370, - [SMALL_STATE(2037)] = 34440, - [SMALL_STATE(2038)] = 34542, - [SMALL_STATE(2039)] = 34612, - [SMALL_STATE(2040)] = 34750, - [SMALL_STATE(2041)] = 34822, - [SMALL_STATE(2042)] = 34960, - [SMALL_STATE(2043)] = 35036, - [SMALL_STATE(2044)] = 35174, - [SMALL_STATE(2045)] = 35252, - [SMALL_STATE(2046)] = 35326, - [SMALL_STATE(2047)] = 35398, - [SMALL_STATE(2048)] = 35468, - [SMALL_STATE(2049)] = 35542, - [SMALL_STATE(2050)] = 35612, - [SMALL_STATE(2051)] = 35750, - [SMALL_STATE(2052)] = 35820, - [SMALL_STATE(2053)] = 35958, - [SMALL_STATE(2054)] = 36036, - [SMALL_STATE(2055)] = 36138, - [SMALL_STATE(2056)] = 36212, - [SMALL_STATE(2057)] = 36314, - [SMALL_STATE(2058)] = 36416, - [SMALL_STATE(2059)] = 36490, - [SMALL_STATE(2060)] = 36592, - [SMALL_STATE(2061)] = 36662, - [SMALL_STATE(2062)] = 36732, - [SMALL_STATE(2063)] = 36870, - [SMALL_STATE(2064)] = 36944, - [SMALL_STATE(2065)] = 37016, - [SMALL_STATE(2066)] = 37086, - [SMALL_STATE(2067)] = 37188, - [SMALL_STATE(2068)] = 37326, - [SMALL_STATE(2069)] = 37464, - [SMALL_STATE(2070)] = 37602, - [SMALL_STATE(2071)] = 37680, - [SMALL_STATE(2072)] = 37758, - [SMALL_STATE(2073)] = 37896, - [SMALL_STATE(2074)] = 37968, - [SMALL_STATE(2075)] = 38038, - [SMALL_STATE(2076)] = 38112, - [SMALL_STATE(2077)] = 38182, - [SMALL_STATE(2078)] = 38256, - [SMALL_STATE(2079)] = 38326, - [SMALL_STATE(2080)] = 38399, - [SMALL_STATE(2081)] = 38472, - [SMALL_STATE(2082)] = 38541, - [SMALL_STATE(2083)] = 38610, - [SMALL_STATE(2084)] = 38683, - [SMALL_STATE(2085)] = 38756, - [SMALL_STATE(2086)] = 38829, - [SMALL_STATE(2087)] = 38902, - [SMALL_STATE(2088)] = 38973, - [SMALL_STATE(2089)] = 39044, - [SMALL_STATE(2090)] = 39115, - [SMALL_STATE(2091)] = 39186, - [SMALL_STATE(2092)] = 39257, - [SMALL_STATE(2093)] = 39326, - [SMALL_STATE(2094)] = 39397, - [SMALL_STATE(2095)] = 39468, - [SMALL_STATE(2096)] = 39537, - [SMALL_STATE(2097)] = 39606, - [SMALL_STATE(2098)] = 39677, - [SMALL_STATE(2099)] = 39748, - [SMALL_STATE(2100)] = 39817, - [SMALL_STATE(2101)] = 39888, - [SMALL_STATE(2102)] = 39959, - [SMALL_STATE(2103)] = 40030, - [SMALL_STATE(2104)] = 40101, - [SMALL_STATE(2105)] = 40172, - [SMALL_STATE(2106)] = 40243, - [SMALL_STATE(2107)] = 40314, - [SMALL_STATE(2108)] = 40385, - [SMALL_STATE(2109)] = 40456, - [SMALL_STATE(2110)] = 40527, - [SMALL_STATE(2111)] = 40598, - [SMALL_STATE(2112)] = 40669, - [SMALL_STATE(2113)] = 40740, - [SMALL_STATE(2114)] = 40811, - [SMALL_STATE(2115)] = 40882, - [SMALL_STATE(2116)] = 40953, - [SMALL_STATE(2117)] = 41024, - [SMALL_STATE(2118)] = 41095, - [SMALL_STATE(2119)] = 41166, - [SMALL_STATE(2120)] = 41239, - [SMALL_STATE(2121)] = 41312, - [SMALL_STATE(2122)] = 41383, - [SMALL_STATE(2123)] = 41454, - [SMALL_STATE(2124)] = 41525, - [SMALL_STATE(2125)] = 41596, - [SMALL_STATE(2126)] = 41669, - [SMALL_STATE(2127)] = 41742, - [SMALL_STATE(2128)] = 41813, - [SMALL_STATE(2129)] = 41884, - [SMALL_STATE(2130)] = 41955, - [SMALL_STATE(2131)] = 42026, - [SMALL_STATE(2132)] = 42097, - [SMALL_STATE(2133)] = 42166, - [SMALL_STATE(2134)] = 42237, - [SMALL_STATE(2135)] = 42308, - [SMALL_STATE(2136)] = 42379, - [SMALL_STATE(2137)] = 42448, - [SMALL_STATE(2138)] = 42517, - [SMALL_STATE(2139)] = 42588, - [SMALL_STATE(2140)] = 42657, - [SMALL_STATE(2141)] = 42728, - [SMALL_STATE(2142)] = 42799, - [SMALL_STATE(2143)] = 42886, - [SMALL_STATE(2144)] = 42957, - [SMALL_STATE(2145)] = 43028, - [SMALL_STATE(2146)] = 43099, - [SMALL_STATE(2147)] = 43170, - [SMALL_STATE(2148)] = 43239, - [SMALL_STATE(2149)] = 43310, - [SMALL_STATE(2150)] = 43381, - [SMALL_STATE(2151)] = 43452, - [SMALL_STATE(2152)] = 43521, - [SMALL_STATE(2153)] = 43592, - [SMALL_STATE(2154)] = 43663, - [SMALL_STATE(2155)] = 43732, - [SMALL_STATE(2156)] = 43803, - [SMALL_STATE(2157)] = 43874, - [SMALL_STATE(2158)] = 43945, - [SMALL_STATE(2159)] = 44016, - [SMALL_STATE(2160)] = 44087, - [SMALL_STATE(2161)] = 44158, - [SMALL_STATE(2162)] = 44229, - [SMALL_STATE(2163)] = 44300, - [SMALL_STATE(2164)] = 44371, - [SMALL_STATE(2165)] = 44442, - [SMALL_STATE(2166)] = 44513, - [SMALL_STATE(2167)] = 44586, - [SMALL_STATE(2168)] = 44657, - [SMALL_STATE(2169)] = 44728, - [SMALL_STATE(2170)] = 44799, - [SMALL_STATE(2171)] = 44870, - [SMALL_STATE(2172)] = 44941, - [SMALL_STATE(2173)] = 45012, - [SMALL_STATE(2174)] = 45085, - [SMALL_STATE(2175)] = 45158, - [SMALL_STATE(2176)] = 45229, - [SMALL_STATE(2177)] = 45300, - [SMALL_STATE(2178)] = 45371, - [SMALL_STATE(2179)] = 45442, - [SMALL_STATE(2180)] = 45513, - [SMALL_STATE(2181)] = 45584, - [SMALL_STATE(2182)] = 45655, - [SMALL_STATE(2183)] = 45726, - [SMALL_STATE(2184)] = 45797, - [SMALL_STATE(2185)] = 45868, - [SMALL_STATE(2186)] = 45939, - [SMALL_STATE(2187)] = 46010, - [SMALL_STATE(2188)] = 46081, - [SMALL_STATE(2189)] = 46152, - [SMALL_STATE(2190)] = 46223, - [SMALL_STATE(2191)] = 46294, - [SMALL_STATE(2192)] = 46365, - [SMALL_STATE(2193)] = 46436, - [SMALL_STATE(2194)] = 46507, - [SMALL_STATE(2195)] = 46578, - [SMALL_STATE(2196)] = 46647, - [SMALL_STATE(2197)] = 46718, - [SMALL_STATE(2198)] = 46789, - [SMALL_STATE(2199)] = 46860, - [SMALL_STATE(2200)] = 46931, - [SMALL_STATE(2201)] = 47002, - [SMALL_STATE(2202)] = 47073, - [SMALL_STATE(2203)] = 47144, - [SMALL_STATE(2204)] = 47215, - [SMALL_STATE(2205)] = 47286, - [SMALL_STATE(2206)] = 47357, - [SMALL_STATE(2207)] = 47428, - [SMALL_STATE(2208)] = 47499, - [SMALL_STATE(2209)] = 47570, - [SMALL_STATE(2210)] = 47641, - [SMALL_STATE(2211)] = 47712, - [SMALL_STATE(2212)] = 47783, - [SMALL_STATE(2213)] = 47854, - [SMALL_STATE(2214)] = 47925, - [SMALL_STATE(2215)] = 47996, - [SMALL_STATE(2216)] = 48069, - [SMALL_STATE(2217)] = 48142, - [SMALL_STATE(2218)] = 48215, - [SMALL_STATE(2219)] = 48288, - [SMALL_STATE(2220)] = 48359, - [SMALL_STATE(2221)] = 48430, - [SMALL_STATE(2222)] = 48503, - [SMALL_STATE(2223)] = 48576, - [SMALL_STATE(2224)] = 48649, - [SMALL_STATE(2225)] = 48720, - [SMALL_STATE(2226)] = 48791, - [SMALL_STATE(2227)] = 48862, - [SMALL_STATE(2228)] = 48933, - [SMALL_STATE(2229)] = 49004, - [SMALL_STATE(2230)] = 49079, - [SMALL_STATE(2231)] = 49150, - [SMALL_STATE(2232)] = 49223, - [SMALL_STATE(2233)] = 49296, - [SMALL_STATE(2234)] = 49367, - [SMALL_STATE(2235)] = 49438, - [SMALL_STATE(2236)] = 49509, - [SMALL_STATE(2237)] = 49580, - [SMALL_STATE(2238)] = 49651, - [SMALL_STATE(2239)] = 49722, - [SMALL_STATE(2240)] = 49795, - [SMALL_STATE(2241)] = 49866, - [SMALL_STATE(2242)] = 49937, - [SMALL_STATE(2243)] = 50010, - [SMALL_STATE(2244)] = 50083, - [SMALL_STATE(2245)] = 50156, - [SMALL_STATE(2246)] = 50230, - [SMALL_STATE(2247)] = 50322, - [SMALL_STATE(2248)] = 50400, - [SMALL_STATE(2249)] = 50476, - [SMALL_STATE(2250)] = 50544, - [SMALL_STATE(2251)] = 50622, - [SMALL_STATE(2252)] = 50714, - [SMALL_STATE(2253)] = 50808, - [SMALL_STATE(2254)] = 50902, - [SMALL_STATE(2255)] = 50982, - [SMALL_STATE(2256)] = 51050, - [SMALL_STATE(2257)] = 51132, - [SMALL_STATE(2258)] = 51200, - [SMALL_STATE(2259)] = 51296, - [SMALL_STATE(2260)] = 51370, - [SMALL_STATE(2261)] = 51438, - [SMALL_STATE(2262)] = 51506, - [SMALL_STATE(2263)] = 51590, - [SMALL_STATE(2264)] = 51686, - [SMALL_STATE(2265)] = 51770, - [SMALL_STATE(2266)] = 51840, - [SMALL_STATE(2267)] = 51914, - [SMALL_STATE(2268)] = 51982, - [SMALL_STATE(2269)] = 52054, - [SMALL_STATE(2270)] = 52124, - [SMALL_STATE(2271)] = 52198, - [SMALL_STATE(2272)] = 52266, - [SMALL_STATE(2273)] = 52336, - [SMALL_STATE(2274)] = 52432, - [SMALL_STATE(2275)] = 52508, - [SMALL_STATE(2276)] = 52576, - [SMALL_STATE(2277)] = 52652, - [SMALL_STATE(2278)] = 52720, - [SMALL_STATE(2279)] = 52806, - [SMALL_STATE(2280)] = 52888, - [SMALL_STATE(2281)] = 52958, - [SMALL_STATE(2282)] = 53042, - [SMALL_STATE(2283)] = 53120, - [SMALL_STATE(2284)] = 53206, - [SMALL_STATE(2285)] = 53280, - [SMALL_STATE(2286)] = 53352, - [SMALL_STATE(2287)] = 53424, - [SMALL_STATE(2288)] = 53492, - [SMALL_STATE(2289)] = 53576, - [SMALL_STATE(2290)] = 53664, - [SMALL_STATE(2291)] = 53732, - [SMALL_STATE(2292)] = 53822, - [SMALL_STATE(2293)] = 53908, - [SMALL_STATE(2294)] = 54000, - [SMALL_STATE(2295)] = 54086, - [SMALL_STATE(2296)] = 54180, - [SMALL_STATE(2297)] = 54250, - [SMALL_STATE(2298)] = 54330, - [SMALL_STATE(2299)] = 54418, - [SMALL_STATE(2300)] = 54496, - [SMALL_STATE(2301)] = 54566, - [SMALL_STATE(2302)] = 54654, - [SMALL_STATE(2303)] = 54724, - [SMALL_STATE(2304)] = 54814, - [SMALL_STATE(2305)] = 54896, - [SMALL_STATE(2306)] = 54972, - [SMALL_STATE(2307)] = 55044, - [SMALL_STATE(2308)] = 55132, - [SMALL_STATE(2309)] = 55200, - [SMALL_STATE(2310)] = 55274, - [SMALL_STATE(2311)] = 55366, - [SMALL_STATE(2312)] = 55440, - [SMALL_STATE(2313)] = 55508, - [SMALL_STATE(2314)] = 55584, - [SMALL_STATE(2315)] = 55680, - [SMALL_STATE(2316)] = 55770, - [SMALL_STATE(2317)] = 55846, - [SMALL_STATE(2318)] = 55940, - [SMALL_STATE(2319)] = 56012, - [SMALL_STATE(2320)] = 56090, - [SMALL_STATE(2321)] = 56168, - [SMALL_STATE(2322)] = 56250, - [SMALL_STATE(2323)] = 56318, - [SMALL_STATE(2324)] = 56408, - [SMALL_STATE(2325)] = 56492, - [SMALL_STATE(2326)] = 56560, - [SMALL_STATE(2327)] = 56628, - [SMALL_STATE(2328)] = 56708, - [SMALL_STATE(2329)] = 56776, - [SMALL_STATE(2330)] = 56846, - [SMALL_STATE(2331)] = 56930, - [SMALL_STATE(2332)] = 56998, - [SMALL_STATE(2333)] = 57066, - [SMALL_STATE(2334)] = 57158, - [SMALL_STATE(2335)] = 57244, - [SMALL_STATE(2336)] = 57340, - [SMALL_STATE(2337)] = 57426, - [SMALL_STATE(2338)] = 57522, - [SMALL_STATE(2339)] = 57610, - [SMALL_STATE(2340)] = 57702, - [SMALL_STATE(2341)] = 57786, - [SMALL_STATE(2342)] = 57876, - [SMALL_STATE(2343)] = 57944, - [SMALL_STATE(2344)] = 58012, - [SMALL_STATE(2345)] = 58082, - [SMALL_STATE(2346)] = 58172, - [SMALL_STATE(2347)] = 58254, - [SMALL_STATE(2348)] = 58344, - [SMALL_STATE(2349)] = 58414, - [SMALL_STATE(2350)] = 58506, - [SMALL_STATE(2351)] = 58576, - [SMALL_STATE(2352)] = 58668, - [SMALL_STATE(2353)] = 58744, - [SMALL_STATE(2354)] = 58838, - [SMALL_STATE(2355)] = 58932, - [SMALL_STATE(2356)] = 59026, - [SMALL_STATE(2357)] = 59094, - [SMALL_STATE(2358)] = 59190, - [SMALL_STATE(2359)] = 59258, - [SMALL_STATE(2360)] = 59338, - [SMALL_STATE(2361)] = 59422, - [SMALL_STATE(2362)] = 59504, - [SMALL_STATE(2363)] = 59584, - [SMALL_STATE(2364)] = 59662, - [SMALL_STATE(2365)] = 59756, - [SMALL_STATE(2366)] = 59836, - [SMALL_STATE(2367)] = 59904, - [SMALL_STATE(2368)] = 59980, - [SMALL_STATE(2369)] = 60048, - [SMALL_STATE(2370)] = 60116, - [SMALL_STATE(2371)] = 60212, - [SMALL_STATE(2372)] = 60280, - [SMALL_STATE(2373)] = 60350, - [SMALL_STATE(2374)] = 60420, - [SMALL_STATE(2375)] = 60516, - [SMALL_STATE(2376)] = 60612, - [SMALL_STATE(2377)] = 60708, - [SMALL_STATE(2378)] = 60776, - [SMALL_STATE(2379)] = 60872, - [SMALL_STATE(2380)] = 60942, - [SMALL_STATE(2381)] = 61038, - [SMALL_STATE(2382)] = 61116, - [SMALL_STATE(2383)] = 61186, - [SMALL_STATE(2384)] = 61282, - [SMALL_STATE(2385)] = 61366, - [SMALL_STATE(2386)] = 61446, - [SMALL_STATE(2387)] = 61524, - [SMALL_STATE(2388)] = 61620, - [SMALL_STATE(2389)] = 61688, - [SMALL_STATE(2390)] = 61756, - [SMALL_STATE(2391)] = 61842, - [SMALL_STATE(2392)] = 61924, - [SMALL_STATE(2393)] = 62012, - [SMALL_STATE(2394)] = 62084, - [SMALL_STATE(2395)] = 62154, - [SMALL_STATE(2396)] = 62228, - [SMALL_STATE(2397)] = 62324, - [SMALL_STATE(2398)] = 62400, - [SMALL_STATE(2399)] = 62470, - [SMALL_STATE(2400)] = 62540, - [SMALL_STATE(2401)] = 62622, - [SMALL_STATE(2402)] = 62694, - [SMALL_STATE(2403)] = 62762, - [SMALL_STATE(2404)] = 62852, - [SMALL_STATE(2405)] = 62936, - [SMALL_STATE(2406)] = 63020, - [SMALL_STATE(2407)] = 63106, - [SMALL_STATE(2408)] = 63194, - [SMALL_STATE(2409)] = 63282, - [SMALL_STATE(2410)] = 63350, - [SMALL_STATE(2411)] = 63440, - [SMALL_STATE(2412)] = 63508, - [SMALL_STATE(2413)] = 63600, - [SMALL_STATE(2414)] = 63670, - [SMALL_STATE(2415)] = 63764, - [SMALL_STATE(2416)] = 63836, - [SMALL_STATE(2417)] = 63906, - [SMALL_STATE(2418)] = 63976, - [SMALL_STATE(2419)] = 64050, - [SMALL_STATE(2420)] = 64130, - [SMALL_STATE(2421)] = 64210, - [SMALL_STATE(2422)] = 64288, - [SMALL_STATE(2423)] = 64370, - [SMALL_STATE(2424)] = 64454, - [SMALL_STATE(2425)] = 64540, - [SMALL_STATE(2426)] = 64610, - [SMALL_STATE(2427)] = 64698, - [SMALL_STATE(2428)] = 64766, - [SMALL_STATE(2429)] = 64854, - [SMALL_STATE(2430)] = 64921, - [SMALL_STATE(2431)] = 64988, - [SMALL_STATE(2432)] = 65055, - [SMALL_STATE(2433)] = 65122, - [SMALL_STATE(2434)] = 65189, - [SMALL_STATE(2435)] = 65258, - [SMALL_STATE(2436)] = 65327, - [SMALL_STATE(2437)] = 65394, - [SMALL_STATE(2438)] = 65487, - [SMALL_STATE(2439)] = 65554, - [SMALL_STATE(2440)] = 65639, - [SMALL_STATE(2441)] = 65706, - [SMALL_STATE(2442)] = 65773, - [SMALL_STATE(2443)] = 65866, - [SMALL_STATE(2444)] = 65959, - [SMALL_STATE(2445)] = 66052, - [SMALL_STATE(2446)] = 66145, - [SMALL_STATE(2447)] = 66238, - [SMALL_STATE(2448)] = 66331, - [SMALL_STATE(2449)] = 66398, - [SMALL_STATE(2450)] = 66465, - [SMALL_STATE(2451)] = 66532, - [SMALL_STATE(2452)] = 66625, - [SMALL_STATE(2453)] = 66718, - [SMALL_STATE(2454)] = 66785, - [SMALL_STATE(2455)] = 66852, - [SMALL_STATE(2456)] = 66919, - [SMALL_STATE(2457)] = 67000, - [SMALL_STATE(2458)] = 67093, - [SMALL_STATE(2459)] = 67160, - [SMALL_STATE(2460)] = 67253, - [SMALL_STATE(2461)] = 67320, - [SMALL_STATE(2462)] = 67413, - [SMALL_STATE(2463)] = 67502, - [SMALL_STATE(2464)] = 67569, - [SMALL_STATE(2465)] = 67636, - [SMALL_STATE(2466)] = 67703, - [SMALL_STATE(2467)] = 67796, - [SMALL_STATE(2468)] = 67877, - [SMALL_STATE(2469)] = 67970, - [SMALL_STATE(2470)] = 68055, - [SMALL_STATE(2471)] = 68148, - [SMALL_STATE(2472)] = 68215, - [SMALL_STATE(2473)] = 68282, - [SMALL_STATE(2474)] = 68363, - [SMALL_STATE(2475)] = 68444, - [SMALL_STATE(2476)] = 68525, - [SMALL_STATE(2477)] = 68618, - [SMALL_STATE(2478)] = 68685, - [SMALL_STATE(2479)] = 68778, - [SMALL_STATE(2480)] = 68845, - [SMALL_STATE(2481)] = 68938, - [SMALL_STATE(2482)] = 69005, - [SMALL_STATE(2483)] = 69072, - [SMALL_STATE(2484)] = 69163, - [SMALL_STATE(2485)] = 69256, - [SMALL_STATE(2486)] = 69341, - [SMALL_STATE(2487)] = 69408, - [SMALL_STATE(2488)] = 69501, - [SMALL_STATE(2489)] = 69568, - [SMALL_STATE(2490)] = 69635, - [SMALL_STATE(2491)] = 69712, - [SMALL_STATE(2492)] = 69779, - [SMALL_STATE(2493)] = 69872, - [SMALL_STATE(2494)] = 69939, - [SMALL_STATE(2495)] = 70006, - [SMALL_STATE(2496)] = 70073, - [SMALL_STATE(2497)] = 70140, - [SMALL_STATE(2498)] = 70215, - [SMALL_STATE(2499)] = 70282, - [SMALL_STATE(2500)] = 70349, - [SMALL_STATE(2501)] = 70416, - [SMALL_STATE(2502)] = 70483, - [SMALL_STATE(2503)] = 70550, - [SMALL_STATE(2504)] = 70643, - [SMALL_STATE(2505)] = 70710, - [SMALL_STATE(2506)] = 70777, - [SMALL_STATE(2507)] = 70844, - [SMALL_STATE(2508)] = 70911, - [SMALL_STATE(2509)] = 70978, - [SMALL_STATE(2510)] = 71047, - [SMALL_STATE(2511)] = 71114, - [SMALL_STATE(2512)] = 71207, - [SMALL_STATE(2513)] = 71274, - [SMALL_STATE(2514)] = 71341, - [SMALL_STATE(2515)] = 71408, - [SMALL_STATE(2516)] = 71477, - [SMALL_STATE(2517)] = 71570, - [SMALL_STATE(2518)] = 71663, - [SMALL_STATE(2519)] = 71756, - [SMALL_STATE(2520)] = 71823, - [SMALL_STATE(2521)] = 71916, - [SMALL_STATE(2522)] = 72009, - [SMALL_STATE(2523)] = 72076, - [SMALL_STATE(2524)] = 72143, - [SMALL_STATE(2525)] = 72210, - [SMALL_STATE(2526)] = 72277, - [SMALL_STATE(2527)] = 72344, - [SMALL_STATE(2528)] = 72415, - [SMALL_STATE(2529)] = 72482, - [SMALL_STATE(2530)] = 72549, - [SMALL_STATE(2531)] = 72622, - [SMALL_STATE(2532)] = 72689, - [SMALL_STATE(2533)] = 72768, - [SMALL_STATE(2534)] = 72835, - [SMALL_STATE(2535)] = 72916, - [SMALL_STATE(2536)] = 73009, - [SMALL_STATE(2537)] = 73076, - [SMALL_STATE(2538)] = 73143, - [SMALL_STATE(2539)] = 73210, - [SMALL_STATE(2540)] = 73277, - [SMALL_STATE(2541)] = 73360, - [SMALL_STATE(2542)] = 73427, - [SMALL_STATE(2543)] = 73494, - [SMALL_STATE(2544)] = 73561, - [SMALL_STATE(2545)] = 73628, - [SMALL_STATE(2546)] = 73695, - [SMALL_STATE(2547)] = 73762, - [SMALL_STATE(2548)] = 73829, - [SMALL_STATE(2549)] = 73896, - [SMALL_STATE(2550)] = 73981, - [SMALL_STATE(2551)] = 74048, - [SMALL_STATE(2552)] = 74115, - [SMALL_STATE(2553)] = 74182, - [SMALL_STATE(2554)] = 74249, - [SMALL_STATE(2555)] = 74316, - [SMALL_STATE(2556)] = 74409, - [SMALL_STATE(2557)] = 74496, - [SMALL_STATE(2558)] = 74563, - [SMALL_STATE(2559)] = 74630, - [SMALL_STATE(2560)] = 74697, - [SMALL_STATE(2561)] = 74764, - [SMALL_STATE(2562)] = 74831, - [SMALL_STATE(2563)] = 74924, - [SMALL_STATE(2564)] = 74991, - [SMALL_STATE(2565)] = 75065, - [SMALL_STATE(2566)] = 75131, - [SMALL_STATE(2567)] = 75197, - [SMALL_STATE(2568)] = 75263, - [SMALL_STATE(2569)] = 75329, - [SMALL_STATE(2570)] = 75403, - [SMALL_STATE(2571)] = 75469, - [SMALL_STATE(2572)] = 75543, - [SMALL_STATE(2573)] = 75609, - [SMALL_STATE(2574)] = 75683, - [SMALL_STATE(2575)] = 75749, - [SMALL_STATE(2576)] = 75823, - [SMALL_STATE(2577)] = 75897, - [SMALL_STATE(2578)] = 75971, - [SMALL_STATE(2579)] = 76045, - [SMALL_STATE(2580)] = 76119, - [SMALL_STATE(2581)] = 76193, - [SMALL_STATE(2582)] = 76267, - [SMALL_STATE(2583)] = 76333, - [SMALL_STATE(2584)] = 76407, - [SMALL_STATE(2585)] = 76481, - [SMALL_STATE(2586)] = 76555, - [SMALL_STATE(2587)] = 76621, - [SMALL_STATE(2588)] = 76695, - [SMALL_STATE(2589)] = 76769, - [SMALL_STATE(2590)] = 76843, - [SMALL_STATE(2591)] = 76909, - [SMALL_STATE(2592)] = 76983, - [SMALL_STATE(2593)] = 77053, - [SMALL_STATE(2594)] = 77117, - [SMALL_STATE(2595)] = 77199, - [SMALL_STATE(2596)] = 77265, - [SMALL_STATE(2597)] = 77331, - [SMALL_STATE(2598)] = 77405, - [SMALL_STATE(2599)] = 77475, - [SMALL_STATE(2600)] = 77545, - [SMALL_STATE(2601)] = 77627, - [SMALL_STATE(2602)] = 77709, - [SMALL_STATE(2603)] = 77783, - [SMALL_STATE(2604)] = 77865, - [SMALL_STATE(2605)] = 77931, - [SMALL_STATE(2606)] = 78001, - [SMALL_STATE(2607)] = 78075, - [SMALL_STATE(2608)] = 78141, - [SMALL_STATE(2609)] = 78207, - [SMALL_STATE(2610)] = 78281, - [SMALL_STATE(2611)] = 78355, - [SMALL_STATE(2612)] = 78421, - [SMALL_STATE(2613)] = 78487, - [SMALL_STATE(2614)] = 78561, - [SMALL_STATE(2615)] = 78627, - [SMALL_STATE(2616)] = 78693, - [SMALL_STATE(2617)] = 78759, - [SMALL_STATE(2618)] = 78825, - [SMALL_STATE(2619)] = 78891, - [SMALL_STATE(2620)] = 78957, - [SMALL_STATE(2621)] = 79023, - [SMALL_STATE(2622)] = 79097, - [SMALL_STATE(2623)] = 79171, - [SMALL_STATE(2624)] = 79240, - [SMALL_STATE(2625)] = 79313, - [SMALL_STATE(2626)] = 79380, - [SMALL_STATE(2627)] = 79447, - [SMALL_STATE(2628)] = 79520, - [SMALL_STATE(2629)] = 79587, - [SMALL_STATE(2630)] = 79654, - [SMALL_STATE(2631)] = 79725, - [SMALL_STATE(2632)] = 79798, - [SMALL_STATE(2633)] = 79867, - [SMALL_STATE(2634)] = 79938, - [SMALL_STATE(2635)] = 80014, - [SMALL_STATE(2636)] = 80084, - [SMALL_STATE(2637)] = 80154, - [SMALL_STATE(2638)] = 80222, - [SMALL_STATE(2639)] = 80286, - [SMALL_STATE(2640)] = 80402, - [SMALL_STATE(2641)] = 80466, - [SMALL_STATE(2642)] = 80534, - [SMALL_STATE(2643)] = 80598, - [SMALL_STATE(2644)] = 80668, - [SMALL_STATE(2645)] = 80732, - [SMALL_STATE(2646)] = 80802, - [SMALL_STATE(2647)] = 80866, - [SMALL_STATE(2648)] = 80988, - [SMALL_STATE(2649)] = 81052, - [SMALL_STATE(2650)] = 81174, - [SMALL_STATE(2651)] = 81292, - [SMALL_STATE(2652)] = 81356, - [SMALL_STATE(2653)] = 81426, - [SMALL_STATE(2654)] = 81494, - [SMALL_STATE(2655)] = 81558, - [SMALL_STATE(2656)] = 81626, - [SMALL_STATE(2657)] = 81696, - [SMALL_STATE(2658)] = 81760, - [SMALL_STATE(2659)] = 81830, - [SMALL_STATE(2660)] = 81894, - [SMALL_STATE(2661)] = 81958, - [SMALL_STATE(2662)] = 82022, - [SMALL_STATE(2663)] = 82092, - [SMALL_STATE(2664)] = 82160, - [SMALL_STATE(2665)] = 82226, - [SMALL_STATE(2666)] = 82292, - [SMALL_STATE(2667)] = 82362, - [SMALL_STATE(2668)] = 82434, - [SMALL_STATE(2669)] = 82498, - [SMALL_STATE(2670)] = 82562, - [SMALL_STATE(2671)] = 82678, - [SMALL_STATE(2672)] = 82742, - [SMALL_STATE(2673)] = 82860, - [SMALL_STATE(2674)] = 82924, - [SMALL_STATE(2675)] = 82992, - [SMALL_STATE(2676)] = 83062, - [SMALL_STATE(2677)] = 83134, - [SMALL_STATE(2678)] = 83200, - [SMALL_STATE(2679)] = 83266, - [SMALL_STATE(2680)] = 83332, - [SMALL_STATE(2681)] = 83402, - [SMALL_STATE(2682)] = 83470, - [SMALL_STATE(2683)] = 83536, - [SMALL_STATE(2684)] = 83602, - [SMALL_STATE(2685)] = 83672, - [SMALL_STATE(2686)] = 83740, - [SMALL_STATE(2687)] = 83806, - [SMALL_STATE(2688)] = 83880, - [SMALL_STATE(2689)] = 83950, - [SMALL_STATE(2690)] = 84013, - [SMALL_STATE(2691)] = 84076, - [SMALL_STATE(2692)] = 84149, - [SMALL_STATE(2693)] = 84212, - [SMALL_STATE(2694)] = 84277, - [SMALL_STATE(2695)] = 84340, - [SMALL_STATE(2696)] = 84407, - [SMALL_STATE(2697)] = 84474, - [SMALL_STATE(2698)] = 84537, - [SMALL_STATE(2699)] = 84602, - [SMALL_STATE(2700)] = 84669, - [SMALL_STATE(2701)] = 84732, - [SMALL_STATE(2702)] = 84795, - [SMALL_STATE(2703)] = 84860, - [SMALL_STATE(2704)] = 84925, - [SMALL_STATE(2705)] = 84992, - [SMALL_STATE(2706)] = 85059, - [SMALL_STATE(2707)] = 85122, - [SMALL_STATE(2708)] = 85193, - [SMALL_STATE(2709)] = 85264, - [SMALL_STATE(2710)] = 85329, - [SMALL_STATE(2711)] = 85392, - [SMALL_STATE(2712)] = 85463, - [SMALL_STATE(2713)] = 85534, - [SMALL_STATE(2714)] = 85599, - [SMALL_STATE(2715)] = 85670, - [SMALL_STATE(2716)] = 85741, - [SMALL_STATE(2717)] = 85812, - [SMALL_STATE(2718)] = 85875, - [SMALL_STATE(2719)] = 85946, - [SMALL_STATE(2720)] = 86011, - [SMALL_STATE(2721)] = 86082, - [SMALL_STATE(2722)] = 86153, - [SMALL_STATE(2723)] = 86218, - [SMALL_STATE(2724)] = 86289, - [SMALL_STATE(2725)] = 86356, - [SMALL_STATE(2726)] = 86427, - [SMALL_STATE(2727)] = 86498, - [SMALL_STATE(2728)] = 86569, - [SMALL_STATE(2729)] = 86640, - [SMALL_STATE(2730)] = 86755, - [SMALL_STATE(2731)] = 86868, - [SMALL_STATE(2732)] = 86939, - [SMALL_STATE(2733)] = 87010, - [SMALL_STATE(2734)] = 87125, - [SMALL_STATE(2735)] = 87196, - [SMALL_STATE(2736)] = 87267, - [SMALL_STATE(2737)] = 87332, - [SMALL_STATE(2738)] = 87395, - [SMALL_STATE(2739)] = 87460, - [SMALL_STATE(2740)] = 87535, - [SMALL_STATE(2741)] = 87598, - [SMALL_STATE(2742)] = 87661, - [SMALL_STATE(2743)] = 87726, - [SMALL_STATE(2744)] = 87791, - [SMALL_STATE(2745)] = 87856, - [SMALL_STATE(2746)] = 87921, - [SMALL_STATE(2747)] = 88034, - [SMALL_STATE(2748)] = 88097, - [SMALL_STATE(2749)] = 88162, - [SMALL_STATE(2750)] = 88275, - [SMALL_STATE(2751)] = 88388, - [SMALL_STATE(2752)] = 88451, - [SMALL_STATE(2753)] = 88514, - [SMALL_STATE(2754)] = 88576, - [SMALL_STATE(2755)] = 88638, - [SMALL_STATE(2756)] = 88702, - [SMALL_STATE(2757)] = 88764, - [SMALL_STATE(2758)] = 88826, - [SMALL_STATE(2759)] = 88888, - [SMALL_STATE(2760)] = 88950, - [SMALL_STATE(2761)] = 89012, - [SMALL_STATE(2762)] = 89074, - [SMALL_STATE(2763)] = 89144, - [SMALL_STATE(2764)] = 89206, - [SMALL_STATE(2765)] = 89268, - [SMALL_STATE(2766)] = 89330, - [SMALL_STATE(2767)] = 89392, - [SMALL_STATE(2768)] = 89454, - [SMALL_STATE(2769)] = 89516, - [SMALL_STATE(2770)] = 89578, - [SMALL_STATE(2771)] = 89640, - [SMALL_STATE(2772)] = 89702, - [SMALL_STATE(2773)] = 89764, - [SMALL_STATE(2774)] = 89826, - [SMALL_STATE(2775)] = 89888, - [SMALL_STATE(2776)] = 89950, - [SMALL_STATE(2777)] = 90012, - [SMALL_STATE(2778)] = 90082, - [SMALL_STATE(2779)] = 90144, - [SMALL_STATE(2780)] = 90214, - [SMALL_STATE(2781)] = 90276, - [SMALL_STATE(2782)] = 90342, - [SMALL_STATE(2783)] = 90406, - [SMALL_STATE(2784)] = 90468, - [SMALL_STATE(2785)] = 90530, - [SMALL_STATE(2786)] = 90592, - [SMALL_STATE(2787)] = 90654, - [SMALL_STATE(2788)] = 90716, - [SMALL_STATE(2789)] = 90786, - [SMALL_STATE(2790)] = 90848, - [SMALL_STATE(2791)] = 90910, - [SMALL_STATE(2792)] = 90972, - [SMALL_STATE(2793)] = 91034, - [SMALL_STATE(2794)] = 91096, - [SMALL_STATE(2795)] = 91158, - [SMALL_STATE(2796)] = 91220, - [SMALL_STATE(2797)] = 91282, - [SMALL_STATE(2798)] = 91344, - [SMALL_STATE(2799)] = 91406, - [SMALL_STATE(2800)] = 91468, - [SMALL_STATE(2801)] = 91530, - [SMALL_STATE(2802)] = 91592, - [SMALL_STATE(2803)] = 91658, - [SMALL_STATE(2804)] = 91722, - [SMALL_STATE(2805)] = 91784, - [SMALL_STATE(2806)] = 91846, - [SMALL_STATE(2807)] = 91912, - [SMALL_STATE(2808)] = 91974, - [SMALL_STATE(2809)] = 92040, - [SMALL_STATE(2810)] = 92104, - [SMALL_STATE(2811)] = 92166, - [SMALL_STATE(2812)] = 92228, - [SMALL_STATE(2813)] = 92290, - [SMALL_STATE(2814)] = 92352, - [SMALL_STATE(2815)] = 92414, - [SMALL_STATE(2816)] = 92476, - [SMALL_STATE(2817)] = 92538, - [SMALL_STATE(2818)] = 92608, - [SMALL_STATE(2819)] = 92670, - [SMALL_STATE(2820)] = 92738, - [SMALL_STATE(2821)] = 92808, - [SMALL_STATE(2822)] = 92878, - [SMALL_STATE(2823)] = 92948, - [SMALL_STATE(2824)] = 93012, - [SMALL_STATE(2825)] = 93082, - [SMALL_STATE(2826)] = 93152, - [SMALL_STATE(2827)] = 93222, - [SMALL_STATE(2828)] = 93292, - [SMALL_STATE(2829)] = 93362, - [SMALL_STATE(2830)] = 93426, - [SMALL_STATE(2831)] = 93488, - [SMALL_STATE(2832)] = 93558, - [SMALL_STATE(2833)] = 93628, - [SMALL_STATE(2834)] = 93698, - [SMALL_STATE(2835)] = 93760, - [SMALL_STATE(2836)] = 93822, - [SMALL_STATE(2837)] = 93890, - [SMALL_STATE(2838)] = 93960, - [SMALL_STATE(2839)] = 94030, - [SMALL_STATE(2840)] = 94092, - [SMALL_STATE(2841)] = 94162, - [SMALL_STATE(2842)] = 94224, - [SMALL_STATE(2843)] = 94294, - [SMALL_STATE(2844)] = 94356, - [SMALL_STATE(2845)] = 94426, - [SMALL_STATE(2846)] = 94496, - [SMALL_STATE(2847)] = 94558, - [SMALL_STATE(2848)] = 94620, - [SMALL_STATE(2849)] = 94682, - [SMALL_STATE(2850)] = 94750, - [SMALL_STATE(2851)] = 94812, - [SMALL_STATE(2852)] = 94874, - [SMALL_STATE(2853)] = 94936, - [SMALL_STATE(2854)] = 94998, - [SMALL_STATE(2855)] = 95064, - [SMALL_STATE(2856)] = 95126, - [SMALL_STATE(2857)] = 95188, - [SMALL_STATE(2858)] = 95258, - [SMALL_STATE(2859)] = 95319, - [SMALL_STATE(2860)] = 95380, - [SMALL_STATE(2861)] = 95449, - [SMALL_STATE(2862)] = 95510, - [SMALL_STATE(2863)] = 95571, - [SMALL_STATE(2864)] = 95632, - [SMALL_STATE(2865)] = 95697, - [SMALL_STATE(2866)] = 95762, - [SMALL_STATE(2867)] = 95823, - [SMALL_STATE(2868)] = 95884, - [SMALL_STATE(2869)] = 95949, - [SMALL_STATE(2870)] = 96014, - [SMALL_STATE(2871)] = 96075, - [SMALL_STATE(2872)] = 96136, - [SMALL_STATE(2873)] = 96197, - [SMALL_STATE(2874)] = 96262, - [SMALL_STATE(2875)] = 96327, - [SMALL_STATE(2876)] = 96388, - [SMALL_STATE(2877)] = 96453, - [SMALL_STATE(2878)] = 96514, - [SMALL_STATE(2879)] = 96579, - [SMALL_STATE(2880)] = 96644, - [SMALL_STATE(2881)] = 96705, - [SMALL_STATE(2882)] = 96770, - [SMALL_STATE(2883)] = 96841, - [SMALL_STATE(2884)] = 96906, - [SMALL_STATE(2885)] = 96973, - [SMALL_STATE(2886)] = 97038, - [SMALL_STATE(2887)] = 97103, - [SMALL_STATE(2888)] = 97168, - [SMALL_STATE(2889)] = 97233, - [SMALL_STATE(2890)] = 97294, - [SMALL_STATE(2891)] = 97355, - [SMALL_STATE(2892)] = 97420, - [SMALL_STATE(2893)] = 97483, - [SMALL_STATE(2894)] = 97544, - [SMALL_STATE(2895)] = 97605, - [SMALL_STATE(2896)] = 97670, - [SMALL_STATE(2897)] = 97733, - [SMALL_STATE(2898)] = 97798, - [SMALL_STATE(2899)] = 97859, - [SMALL_STATE(2900)] = 97926, - [SMALL_STATE(2901)] = 97991, - [SMALL_STATE(2902)] = 98052, - [SMALL_STATE(2903)] = 98113, - [SMALL_STATE(2904)] = 98178, - [SMALL_STATE(2905)] = 98243, - [SMALL_STATE(2906)] = 98308, - [SMALL_STATE(2907)] = 98370, - [SMALL_STATE(2908)] = 98436, - [SMALL_STATE(2909)] = 98502, - [SMALL_STATE(2910)] = 98564, - [SMALL_STATE(2911)] = 98630, - [SMALL_STATE(2912)] = 98696, - [SMALL_STATE(2913)] = 98762, - [SMALL_STATE(2914)] = 98828, - [SMALL_STATE(2915)] = 98890, - [SMALL_STATE(2916)] = 98954, - [SMALL_STATE(2917)] = 99016, - [SMALL_STATE(2918)] = 99078, - [SMALL_STATE(2919)] = 99140, - [SMALL_STATE(2920)] = 99206, - [SMALL_STATE(2921)] = 99270, - [SMALL_STATE(2922)] = 99332, - [SMALL_STATE(2923)] = 99398, - [SMALL_STATE(2924)] = 99464, - [SMALL_STATE(2925)] = 99530, - [SMALL_STATE(2926)] = 99594, - [SMALL_STATE(2927)] = 99666, - [SMALL_STATE(2928)] = 99730, - [SMALL_STATE(2929)] = 99790, - [SMALL_STATE(2930)] = 99854, - [SMALL_STATE(2931)] = 99914, - [SMALL_STATE(2932)] = 99974, - [SMALL_STATE(2933)] = 100034, - [SMALL_STATE(2934)] = 100094, - [SMALL_STATE(2935)] = 100156, - [SMALL_STATE(2936)] = 100216, - [SMALL_STATE(2937)] = 100278, - [SMALL_STATE(2938)] = 100338, - [SMALL_STATE(2939)] = 100398, - [SMALL_STATE(2940)] = 100458, - [SMALL_STATE(2941)] = 100520, - [SMALL_STATE(2942)] = 100584, - [SMALL_STATE(2943)] = 100644, - [SMALL_STATE(2944)] = 100704, - [SMALL_STATE(2945)] = 100768, - [SMALL_STATE(2946)] = 100830, - [SMALL_STATE(2947)] = 100890, - [SMALL_STATE(2948)] = 100954, - [SMALL_STATE(2949)] = 101016, - [SMALL_STATE(2950)] = 101082, - [SMALL_STATE(2951)] = 101148, - [SMALL_STATE(2952)] = 101208, - [SMALL_STATE(2953)] = 101267, - [SMALL_STATE(2954)] = 101326, - [SMALL_STATE(2955)] = 101385, - [SMALL_STATE(2956)] = 101444, - [SMALL_STATE(2957)] = 101503, - [SMALL_STATE(2958)] = 101564, - [SMALL_STATE(2959)] = 101627, - [SMALL_STATE(2960)] = 101690, - [SMALL_STATE(2961)] = 101749, - [SMALL_STATE(2962)] = 101808, - [SMALL_STATE(2963)] = 101867, - [SMALL_STATE(2964)] = 101926, - [SMALL_STATE(2965)] = 101985, - [SMALL_STATE(2966)] = 102044, - [SMALL_STATE(2967)] = 102103, - [SMALL_STATE(2968)] = 102162, - [SMALL_STATE(2969)] = 102221, - [SMALL_STATE(2970)] = 102280, - [SMALL_STATE(2971)] = 102339, - [SMALL_STATE(2972)] = 102398, - [SMALL_STATE(2973)] = 102457, - [SMALL_STATE(2974)] = 102516, - [SMALL_STATE(2975)] = 102575, - [SMALL_STATE(2976)] = 102634, - [SMALL_STATE(2977)] = 102693, - [SMALL_STATE(2978)] = 102752, - [SMALL_STATE(2979)] = 102811, - [SMALL_STATE(2980)] = 102870, - [SMALL_STATE(2981)] = 102931, - [SMALL_STATE(2982)] = 102992, - [SMALL_STATE(2983)] = 103053, - [SMALL_STATE(2984)] = 103112, - [SMALL_STATE(2985)] = 103171, - [SMALL_STATE(2986)] = 103232, - [SMALL_STATE(2987)] = 103293, - [SMALL_STATE(2988)] = 103356, - [SMALL_STATE(2989)] = 103419, - [SMALL_STATE(2990)] = 103478, - [SMALL_STATE(2991)] = 103537, - [SMALL_STATE(2992)] = 103598, - [SMALL_STATE(2993)] = 103657, - [SMALL_STATE(2994)] = 103718, - [SMALL_STATE(2995)] = 103777, - [SMALL_STATE(2996)] = 103836, - [SMALL_STATE(2997)] = 103897, - [SMALL_STATE(2998)] = 103956, - [SMALL_STATE(2999)] = 104017, - [SMALL_STATE(3000)] = 104076, - [SMALL_STATE(3001)] = 104135, - [SMALL_STATE(3002)] = 104194, - [SMALL_STATE(3003)] = 104253, - [SMALL_STATE(3004)] = 104312, - [SMALL_STATE(3005)] = 104373, - [SMALL_STATE(3006)] = 104432, - [SMALL_STATE(3007)] = 104493, - [SMALL_STATE(3008)] = 104554, - [SMALL_STATE(3009)] = 104613, - [SMALL_STATE(3010)] = 104672, - [SMALL_STATE(3011)] = 104731, - [SMALL_STATE(3012)] = 104790, - [SMALL_STATE(3013)] = 104849, - [SMALL_STATE(3014)] = 104908, - [SMALL_STATE(3015)] = 104967, - [SMALL_STATE(3016)] = 105026, - [SMALL_STATE(3017)] = 105089, - [SMALL_STATE(3018)] = 105148, - [SMALL_STATE(3019)] = 105207, - [SMALL_STATE(3020)] = 105268, - [SMALL_STATE(3021)] = 105331, - [SMALL_STATE(3022)] = 105390, - [SMALL_STATE(3023)] = 105449, - [SMALL_STATE(3024)] = 105510, - [SMALL_STATE(3025)] = 105581, - [SMALL_STATE(3026)] = 105654, - [SMALL_STATE(3027)] = 105713, - [SMALL_STATE(3028)] = 105772, - [SMALL_STATE(3029)] = 105831, - [SMALL_STATE(3030)] = 105890, - [SMALL_STATE(3031)] = 105949, - [SMALL_STATE(3032)] = 106008, - [SMALL_STATE(3033)] = 106069, - [SMALL_STATE(3034)] = 106128, - [SMALL_STATE(3035)] = 106191, - [SMALL_STATE(3036)] = 106250, - [SMALL_STATE(3037)] = 106309, - [SMALL_STATE(3038)] = 106368, - [SMALL_STATE(3039)] = 106429, - [SMALL_STATE(3040)] = 106488, - [SMALL_STATE(3041)] = 106549, - [SMALL_STATE(3042)] = 106612, - [SMALL_STATE(3043)] = 106673, - [SMALL_STATE(3044)] = 106734, - [SMALL_STATE(3045)] = 106793, - [SMALL_STATE(3046)] = 106851, - [SMALL_STATE(3047)] = 106909, - [SMALL_STATE(3048)] = 106967, - [SMALL_STATE(3049)] = 107025, - [SMALL_STATE(3050)] = 107083, - [SMALL_STATE(3051)] = 107141, - [SMALL_STATE(3052)] = 107199, - [SMALL_STATE(3053)] = 107257, - [SMALL_STATE(3054)] = 107323, - [SMALL_STATE(3055)] = 107381, - [SMALL_STATE(3056)] = 107439, - [SMALL_STATE(3057)] = 107497, - [SMALL_STATE(3058)] = 107555, - [SMALL_STATE(3059)] = 107615, - [SMALL_STATE(3060)] = 107673, - [SMALL_STATE(3061)] = 107731, - [SMALL_STATE(3062)] = 107789, - [SMALL_STATE(3063)] = 107847, - [SMALL_STATE(3064)] = 107905, - [SMALL_STATE(3065)] = 107963, - [SMALL_STATE(3066)] = 108021, - [SMALL_STATE(3067)] = 108079, - [SMALL_STATE(3068)] = 108137, - [SMALL_STATE(3069)] = 108195, - [SMALL_STATE(3070)] = 108253, - [SMALL_STATE(3071)] = 108313, - [SMALL_STATE(3072)] = 108371, - [SMALL_STATE(3073)] = 108429, - [SMALL_STATE(3074)] = 108487, - [SMALL_STATE(3075)] = 108545, - [SMALL_STATE(3076)] = 108603, - [SMALL_STATE(3077)] = 108661, - [SMALL_STATE(3078)] = 108719, - [SMALL_STATE(3079)] = 108777, - [SMALL_STATE(3080)] = 108835, - [SMALL_STATE(3081)] = 108893, - [SMALL_STATE(3082)] = 108951, - [SMALL_STATE(3083)] = 109009, - [SMALL_STATE(3084)] = 109069, - [SMALL_STATE(3085)] = 109127, - [SMALL_STATE(3086)] = 109185, - [SMALL_STATE(3087)] = 109245, - [SMALL_STATE(3088)] = 109303, - [SMALL_STATE(3089)] = 109361, - [SMALL_STATE(3090)] = 109419, - [SMALL_STATE(3091)] = 109477, - [SMALL_STATE(3092)] = 109535, - [SMALL_STATE(3093)] = 109593, - [SMALL_STATE(3094)] = 109651, - [SMALL_STATE(3095)] = 109709, - [SMALL_STATE(3096)] = 109767, - [SMALL_STATE(3097)] = 109827, - [SMALL_STATE(3098)] = 109885, - [SMALL_STATE(3099)] = 109943, - [SMALL_STATE(3100)] = 110001, - [SMALL_STATE(3101)] = 110059, - [SMALL_STATE(3102)] = 110117, - [SMALL_STATE(3103)] = 110175, - [SMALL_STATE(3104)] = 110233, - [SMALL_STATE(3105)] = 110291, - [SMALL_STATE(3106)] = 110349, - [SMALL_STATE(3107)] = 110407, - [SMALL_STATE(3108)] = 110465, - [SMALL_STATE(3109)] = 110523, - [SMALL_STATE(3110)] = 110581, - [SMALL_STATE(3111)] = 110639, - [SMALL_STATE(3112)] = 110697, - [SMALL_STATE(3113)] = 110755, - [SMALL_STATE(3114)] = 110813, - [SMALL_STATE(3115)] = 110871, - [SMALL_STATE(3116)] = 110929, - [SMALL_STATE(3117)] = 110987, - [SMALL_STATE(3118)] = 111045, - [SMALL_STATE(3119)] = 111103, - [SMALL_STATE(3120)] = 111161, - [SMALL_STATE(3121)] = 111219, - [SMALL_STATE(3122)] = 111277, - [SMALL_STATE(3123)] = 111335, - [SMALL_STATE(3124)] = 111393, - [SMALL_STATE(3125)] = 111451, - [SMALL_STATE(3126)] = 111509, - [SMALL_STATE(3127)] = 111566, - [SMALL_STATE(3128)] = 111623, - [SMALL_STATE(3129)] = 111680, - [SMALL_STATE(3130)] = 111737, - [SMALL_STATE(3131)] = 111794, - [SMALL_STATE(3132)] = 111851, - [SMALL_STATE(3133)] = 111918, - [SMALL_STATE(3134)] = 111975, - [SMALL_STATE(3135)] = 112032, - [SMALL_STATE(3136)] = 112089, - [SMALL_STATE(3137)] = 112152, - [SMALL_STATE(3138)] = 112217, - [SMALL_STATE(3139)] = 112293, - [SMALL_STATE(3140)] = 112369, - [SMALL_STATE(3141)] = 112445, - [SMALL_STATE(3142)] = 112521, - [SMALL_STATE(3143)] = 112597, - [SMALL_STATE(3144)] = 112673, - [SMALL_STATE(3145)] = 112735, - [SMALL_STATE(3146)] = 112799, - [SMALL_STATE(3147)] = 112875, - [SMALL_STATE(3148)] = 112951, - [SMALL_STATE(3149)] = 113027, - [SMALL_STATE(3150)] = 113103, - [SMALL_STATE(3151)] = 113179, - [SMALL_STATE(3152)] = 113255, - [SMALL_STATE(3153)] = 113331, - [SMALL_STATE(3154)] = 113407, - [SMALL_STATE(3155)] = 113463, - [SMALL_STATE(3156)] = 113539, - [SMALL_STATE(3157)] = 113595, - [SMALL_STATE(3158)] = 113671, - [SMALL_STATE(3159)] = 113727, - [SMALL_STATE(3160)] = 113792, - [SMALL_STATE(3161)] = 113855, - [SMALL_STATE(3162)] = 113911, - [SMALL_STATE(3163)] = 113967, - [SMALL_STATE(3164)] = 114023, - [SMALL_STATE(3165)] = 114077, - [SMALL_STATE(3166)] = 114137, - [SMALL_STATE(3167)] = 114207, - [SMALL_STATE(3168)] = 114265, - [SMALL_STATE(3169)] = 114319, - [SMALL_STATE(3170)] = 114375, - [SMALL_STATE(3171)] = 114428, - [SMALL_STATE(3172)] = 114483, - [SMALL_STATE(3173)] = 114538, - [SMALL_STATE(3174)] = 114591, - [SMALL_STATE(3175)] = 114648, - [SMALL_STATE(3176)] = 114717, - [SMALL_STATE(3177)] = 114778, - [SMALL_STATE(3178)] = 114835, - [SMALL_STATE(3179)] = 114892, - [SMALL_STATE(3180)] = 114949, - [SMALL_STATE(3181)] = 115016, - [SMALL_STATE(3182)] = 115069, - [SMALL_STATE(3183)] = 115122, - [SMALL_STATE(3184)] = 115177, - [SMALL_STATE(3185)] = 115230, - [SMALL_STATE(3186)] = 115283, - [SMALL_STATE(3187)] = 115336, - [SMALL_STATE(3188)] = 115391, - [SMALL_STATE(3189)] = 115444, - [SMALL_STATE(3190)] = 115501, - [SMALL_STATE(3191)] = 115558, - [SMALL_STATE(3192)] = 115613, - [SMALL_STATE(3193)] = 115668, - [SMALL_STATE(3194)] = 115721, - [SMALL_STATE(3195)] = 115774, - [SMALL_STATE(3196)] = 115827, - [SMALL_STATE(3197)] = 115880, - [SMALL_STATE(3198)] = 115934, - [SMALL_STATE(3199)] = 115984, - [SMALL_STATE(3200)] = 116034, - [SMALL_STATE(3201)] = 116086, - [SMALL_STATE(3202)] = 116138, - [SMALL_STATE(3203)] = 116192, - [SMALL_STATE(3204)] = 116258, - [SMALL_STATE(3205)] = 116324, - [SMALL_STATE(3206)] = 116390, - [SMALL_STATE(3207)] = 116454, - [SMALL_STATE(3208)] = 116518, - [SMALL_STATE(3209)] = 116568, - [SMALL_STATE(3210)] = 116618, - [SMALL_STATE(3211)] = 116668, - [SMALL_STATE(3212)] = 116718, - [SMALL_STATE(3213)] = 116770, - [SMALL_STATE(3214)] = 116822, - [SMALL_STATE(3215)] = 116874, - [SMALL_STATE(3216)] = 116926, - [SMALL_STATE(3217)] = 116978, - [SMALL_STATE(3218)] = 117032, - [SMALL_STATE(3219)] = 117086, - [SMALL_STATE(3220)] = 117152, - [SMALL_STATE(3221)] = 117216, - [SMALL_STATE(3222)] = 117270, - [SMALL_STATE(3223)] = 117324, - [SMALL_STATE(3224)] = 117376, - [SMALL_STATE(3225)] = 117430, - [SMALL_STATE(3226)] = 117486, - [SMALL_STATE(3227)] = 117548, - [SMALL_STATE(3228)] = 117612, - [SMALL_STATE(3229)] = 117678, - [SMALL_STATE(3230)] = 117746, - [SMALL_STATE(3231)] = 117816, - [SMALL_STATE(3232)] = 117888, - [SMALL_STATE(3233)] = 117962, - [SMALL_STATE(3234)] = 118022, - [SMALL_STATE(3235)] = 118080, - [SMALL_STATE(3236)] = 118132, - [SMALL_STATE(3237)] = 118188, - [SMALL_STATE(3238)] = 118246, - [SMALL_STATE(3239)] = 118306, - [SMALL_STATE(3240)] = 118372, - [SMALL_STATE(3241)] = 118440, - [SMALL_STATE(3242)] = 118510, - [SMALL_STATE(3243)] = 118582, - [SMALL_STATE(3244)] = 118656, - [SMALL_STATE(3245)] = 118732, - [SMALL_STATE(3246)] = 118810, - [SMALL_STATE(3247)] = 118874, - [SMALL_STATE(3248)] = 118936, - [SMALL_STATE(3249)] = 119000, - [SMALL_STATE(3250)] = 119056, - [SMALL_STATE(3251)] = 119112, - [SMALL_STATE(3252)] = 119170, - [SMALL_STATE(3253)] = 119228, - [SMALL_STATE(3254)] = 119288, - [SMALL_STATE(3255)] = 119348, - [SMALL_STATE(3256)] = 119414, - [SMALL_STATE(3257)] = 119480, - [SMALL_STATE(3258)] = 119548, - [SMALL_STATE(3259)] = 119616, - [SMALL_STATE(3260)] = 119686, - [SMALL_STATE(3261)] = 119756, - [SMALL_STATE(3262)] = 119828, - [SMALL_STATE(3263)] = 119900, - [SMALL_STATE(3264)] = 119974, - [SMALL_STATE(3265)] = 120048, - [SMALL_STATE(3266)] = 120124, - [SMALL_STATE(3267)] = 120200, - [SMALL_STATE(3268)] = 120278, - [SMALL_STATE(3269)] = 120356, - [SMALL_STATE(3270)] = 120420, - [SMALL_STATE(3271)] = 120484, - [SMALL_STATE(3272)] = 120546, - [SMALL_STATE(3273)] = 120608, - [SMALL_STATE(3274)] = 120664, - [SMALL_STATE(3275)] = 120722, - [SMALL_STATE(3276)] = 120782, - [SMALL_STATE(3277)] = 120848, - [SMALL_STATE(3278)] = 120916, - [SMALL_STATE(3279)] = 120986, - [SMALL_STATE(3280)] = 121058, - [SMALL_STATE(3281)] = 121132, - [SMALL_STATE(3282)] = 121208, - [SMALL_STATE(3283)] = 121286, - [SMALL_STATE(3284)] = 121350, - [SMALL_STATE(3285)] = 121412, - [SMALL_STATE(3286)] = 121468, - [SMALL_STATE(3287)] = 121526, - [SMALL_STATE(3288)] = 121586, - [SMALL_STATE(3289)] = 121652, - [SMALL_STATE(3290)] = 121720, - [SMALL_STATE(3291)] = 121790, - [SMALL_STATE(3292)] = 121862, - [SMALL_STATE(3293)] = 121936, - [SMALL_STATE(3294)] = 122012, - [SMALL_STATE(3295)] = 122090, - [SMALL_STATE(3296)] = 122154, - [SMALL_STATE(3297)] = 122216, - [SMALL_STATE(3298)] = 122272, - [SMALL_STATE(3299)] = 122328, - [SMALL_STATE(3300)] = 122386, - [SMALL_STATE(3301)] = 122444, - [SMALL_STATE(3302)] = 122504, - [SMALL_STATE(3303)] = 122564, - [SMALL_STATE(3304)] = 122630, - [SMALL_STATE(3305)] = 122696, - [SMALL_STATE(3306)] = 122764, - [SMALL_STATE(3307)] = 122832, - [SMALL_STATE(3308)] = 122902, - [SMALL_STATE(3309)] = 122972, - [SMALL_STATE(3310)] = 123044, - [SMALL_STATE(3311)] = 123116, - [SMALL_STATE(3312)] = 123190, - [SMALL_STATE(3313)] = 123264, - [SMALL_STATE(3314)] = 123340, - [SMALL_STATE(3315)] = 123416, - [SMALL_STATE(3316)] = 123494, - [SMALL_STATE(3317)] = 123572, - [SMALL_STATE(3318)] = 123636, - [SMALL_STATE(3319)] = 123700, - [SMALL_STATE(3320)] = 123762, - [SMALL_STATE(3321)] = 123824, - [SMALL_STATE(3322)] = 123880, - [SMALL_STATE(3323)] = 123938, - [SMALL_STATE(3324)] = 123998, - [SMALL_STATE(3325)] = 124064, - [SMALL_STATE(3326)] = 124132, - [SMALL_STATE(3327)] = 124202, - [SMALL_STATE(3328)] = 124274, - [SMALL_STATE(3329)] = 124348, - [SMALL_STATE(3330)] = 124424, - [SMALL_STATE(3331)] = 124502, - [SMALL_STATE(3332)] = 124566, - [SMALL_STATE(3333)] = 124628, - [SMALL_STATE(3334)] = 124692, - [SMALL_STATE(3335)] = 124744, - [SMALL_STATE(3336)] = 124798, - [SMALL_STATE(3337)] = 124852, - [SMALL_STATE(3338)] = 124904, - [SMALL_STATE(3339)] = 124975, - [SMALL_STATE(3340)] = 125036, - [SMALL_STATE(3341)] = 125097, - [SMALL_STATE(3342)] = 125156, - [SMALL_STATE(3343)] = 125207, - [SMALL_STATE(3344)] = 125268, - [SMALL_STATE(3345)] = 125317, - [SMALL_STATE(3346)] = 125368, - [SMALL_STATE(3347)] = 125429, - [SMALL_STATE(3348)] = 125480, - [SMALL_STATE(3349)] = 125533, - [SMALL_STATE(3350)] = 125594, - [SMALL_STATE(3351)] = 125649, - [SMALL_STATE(3352)] = 125700, - [SMALL_STATE(3353)] = 125753, - [SMALL_STATE(3354)] = 125808, - [SMALL_STATE(3355)] = 125871, - [SMALL_STATE(3356)] = 125936, - [SMALL_STATE(3357)] = 126003, - [SMALL_STATE(3358)] = 126072, - [SMALL_STATE(3359)] = 126145, - [SMALL_STATE(3360)] = 126204, - [SMALL_STATE(3361)] = 126261, - [SMALL_STATE(3362)] = 126310, - [SMALL_STATE(3363)] = 126359, - [SMALL_STATE(3364)] = 126414, - [SMALL_STATE(3365)] = 126475, - [SMALL_STATE(3366)] = 126536, - [SMALL_STATE(3367)] = 126587, - [SMALL_STATE(3368)] = 126646, - [SMALL_STATE(3369)] = 126707, - [SMALL_STATE(3370)] = 126768, - [SMALL_STATE(3371)] = 126819, - [SMALL_STATE(3372)] = 126880, - [SMALL_STATE(3373)] = 126931, - [SMALL_STATE(3374)] = 126986, - [SMALL_STATE(3375)] = 127041, - [SMALL_STATE(3376)] = 127092, - [SMALL_STATE(3377)] = 127153, - [SMALL_STATE(3378)] = 127207, - [SMALL_STATE(3379)] = 127261, - [SMALL_STATE(3380)] = 127319, - [SMALL_STATE(3381)] = 127371, - [SMALL_STATE(3382)] = 127429, - [SMALL_STATE(3383)] = 127483, - [SMALL_STATE(3384)] = 127569, - [SMALL_STATE(3385)] = 127633, - [SMALL_STATE(3386)] = 127719, - [SMALL_STATE(3387)] = 127773, - [SMALL_STATE(3388)] = 127839, - [SMALL_STATE(3389)] = 127891, - [SMALL_STATE(3390)] = 127945, - [SMALL_STATE(3391)] = 127997, - [SMALL_STATE(3392)] = 128049, - [SMALL_STATE(3393)] = 128107, - [SMALL_STATE(3394)] = 128156, - [SMALL_STATE(3395)] = 128211, - [SMALL_STATE(3396)] = 128264, - [SMALL_STATE(3397)] = 128329, - [SMALL_STATE(3398)] = 128378, - [SMALL_STATE(3399)] = 128461, - [SMALL_STATE(3400)] = 128512, - [SMALL_STATE(3401)] = 128561, - [SMALL_STATE(3402)] = 128616, - [SMALL_STATE(3403)] = 128667, - [SMALL_STATE(3404)] = 128720, - [SMALL_STATE(3405)] = 128803, - [SMALL_STATE(3406)] = 128858, - [SMALL_STATE(3407)] = 128913, - [SMALL_STATE(3408)] = 128972, - [SMALL_STATE(3409)] = 129021, - [SMALL_STATE(3410)] = 129084, - [SMALL_STATE(3411)] = 129133, - [SMALL_STATE(3412)] = 129186, - [SMALL_STATE(3413)] = 129237, - [SMALL_STATE(3414)] = 129286, - [SMALL_STATE(3415)] = 129337, - [SMALL_STATE(3416)] = 129402, - [SMALL_STATE(3417)] = 129451, - [SMALL_STATE(3418)] = 129506, - [SMALL_STATE(3419)] = 129569, - [SMALL_STATE(3420)] = 129618, - [SMALL_STATE(3421)] = 129667, - [SMALL_STATE(3422)] = 129730, - [SMALL_STATE(3423)] = 129778, - [SMALL_STATE(3424)] = 129826, - [SMALL_STATE(3425)] = 129874, - [SMALL_STATE(3426)] = 129922, - [SMALL_STATE(3427)] = 129974, - [SMALL_STATE(3428)] = 130022, - [SMALL_STATE(3429)] = 130070, - [SMALL_STATE(3430)] = 130118, - [SMALL_STATE(3431)] = 130166, - [SMALL_STATE(3432)] = 130214, - [SMALL_STATE(3433)] = 130262, - [SMALL_STATE(3434)] = 130310, - [SMALL_STATE(3435)] = 130358, - [SMALL_STATE(3436)] = 130410, - [SMALL_STATE(3437)] = 130458, - [SMALL_STATE(3438)] = 130506, - [SMALL_STATE(3439)] = 130556, - [SMALL_STATE(3440)] = 130604, - [SMALL_STATE(3441)] = 130666, - [SMALL_STATE(3442)] = 130714, - [SMALL_STATE(3443)] = 130766, - [SMALL_STATE(3444)] = 130816, - [SMALL_STATE(3445)] = 130866, - [SMALL_STATE(3446)] = 130926, - [SMALL_STATE(3447)] = 130988, - [SMALL_STATE(3448)] = 131050, - [SMALL_STATE(3449)] = 131112, - [SMALL_STATE(3450)] = 131174, - [SMALL_STATE(3451)] = 131222, - [SMALL_STATE(3452)] = 131284, - [SMALL_STATE(3453)] = 131332, - [SMALL_STATE(3454)] = 131380, - [SMALL_STATE(3455)] = 131428, - [SMALL_STATE(3456)] = 131476, - [SMALL_STATE(3457)] = 131524, - [SMALL_STATE(3458)] = 131574, - [SMALL_STATE(3459)] = 131622, - [SMALL_STATE(3460)] = 131682, - [SMALL_STATE(3461)] = 131730, - [SMALL_STATE(3462)] = 131778, - [SMALL_STATE(3463)] = 131826, - [SMALL_STATE(3464)] = 131874, - [SMALL_STATE(3465)] = 131926, - [SMALL_STATE(3466)] = 131974, - [SMALL_STATE(3467)] = 132029, - [SMALL_STATE(3468)] = 132080, - [SMALL_STATE(3469)] = 132127, - [SMALL_STATE(3470)] = 132174, - [SMALL_STATE(3471)] = 132223, - [SMALL_STATE(3472)] = 132278, - [SMALL_STATE(3473)] = 132333, - [SMALL_STATE(3474)] = 132388, - [SMALL_STATE(3475)] = 132443, - [SMALL_STATE(3476)] = 132498, - [SMALL_STATE(3477)] = 132553, - [SMALL_STATE(3478)] = 132608, - [SMALL_STATE(3479)] = 132663, - [SMALL_STATE(3480)] = 132718, - [SMALL_STATE(3481)] = 132773, - [SMALL_STATE(3482)] = 132828, - [SMALL_STATE(3483)] = 132883, - [SMALL_STATE(3484)] = 132930, - [SMALL_STATE(3485)] = 132985, - [SMALL_STATE(3486)] = 133032, - [SMALL_STATE(3487)] = 133087, - [SMALL_STATE(3488)] = 133142, - [SMALL_STATE(3489)] = 133197, - [SMALL_STATE(3490)] = 133244, - [SMALL_STATE(3491)] = 133295, - [SMALL_STATE(3492)] = 133342, - [SMALL_STATE(3493)] = 133397, - [SMALL_STATE(3494)] = 133452, - [SMALL_STATE(3495)] = 133499, - [SMALL_STATE(3496)] = 133554, - [SMALL_STATE(3497)] = 133609, - [SMALL_STATE(3498)] = 133664, - [SMALL_STATE(3499)] = 133719, - [SMALL_STATE(3500)] = 133774, - [SMALL_STATE(3501)] = 133829, - [SMALL_STATE(3502)] = 133884, - [SMALL_STATE(3503)] = 133939, - [SMALL_STATE(3504)] = 133994, - [SMALL_STATE(3505)] = 134049, - [SMALL_STATE(3506)] = 134104, - [SMALL_STATE(3507)] = 134159, - [SMALL_STATE(3508)] = 134214, - [SMALL_STATE(3509)] = 134269, - [SMALL_STATE(3510)] = 134324, - [SMALL_STATE(3511)] = 134379, - [SMALL_STATE(3512)] = 134434, - [SMALL_STATE(3513)] = 134489, - [SMALL_STATE(3514)] = 134544, - [SMALL_STATE(3515)] = 134599, - [SMALL_STATE(3516)] = 134654, - [SMALL_STATE(3517)] = 134709, - [SMALL_STATE(3518)] = 134764, - [SMALL_STATE(3519)] = 134819, - [SMALL_STATE(3520)] = 134874, - [SMALL_STATE(3521)] = 134929, - [SMALL_STATE(3522)] = 134984, - [SMALL_STATE(3523)] = 135039, - [SMALL_STATE(3524)] = 135094, - [SMALL_STATE(3525)] = 135149, - [SMALL_STATE(3526)] = 135197, - [SMALL_STATE(3527)] = 135251, - [SMALL_STATE(3528)] = 135303, - [SMALL_STATE(3529)] = 135355, - [SMALL_STATE(3530)] = 135401, - [SMALL_STATE(3531)] = 135449, - [SMALL_STATE(3532)] = 135501, - [SMALL_STATE(3533)] = 135547, - [SMALL_STATE(3534)] = 135597, - [SMALL_STATE(3535)] = 135647, - [SMALL_STATE(3536)] = 135697, - [SMALL_STATE(3537)] = 135747, - [SMALL_STATE(3538)] = 135793, - [SMALL_STATE(3539)] = 135843, - [SMALL_STATE(3540)] = 135893, - [SMALL_STATE(3541)] = 135938, - [SMALL_STATE(3542)] = 135983, - [SMALL_STATE(3543)] = 136032, - [SMALL_STATE(3544)] = 136083, - [SMALL_STATE(3545)] = 136128, - [SMALL_STATE(3546)] = 136173, - [SMALL_STATE(3547)] = 136218, - [SMALL_STATE(3548)] = 136269, - [SMALL_STATE(3549)] = 136316, - [SMALL_STATE(3550)] = 136361, - [SMALL_STATE(3551)] = 136408, - [SMALL_STATE(3552)] = 136457, - [SMALL_STATE(3553)] = 136502, - [SMALL_STATE(3554)] = 136547, - [SMALL_STATE(3555)] = 136592, - [SMALL_STATE(3556)] = 136637, - [SMALL_STATE(3557)] = 136688, - [SMALL_STATE(3558)] = 136736, - [SMALL_STATE(3559)] = 136780, - [SMALL_STATE(3560)] = 136824, - [SMALL_STATE(3561)] = 136870, - [SMALL_STATE(3562)] = 136918, - [SMALL_STATE(3563)] = 136962, - [SMALL_STATE(3564)] = 137010, - [SMALL_STATE(3565)] = 137054, - [SMALL_STATE(3566)] = 137100, - [SMALL_STATE(3567)] = 137146, - [SMALL_STATE(3568)] = 137192, - [SMALL_STATE(3569)] = 137240, - [SMALL_STATE(3570)] = 137284, - [SMALL_STATE(3571)] = 137332, - [SMALL_STATE(3572)] = 137380, - [SMALL_STATE(3573)] = 137428, - [SMALL_STATE(3574)] = 137472, - [SMALL_STATE(3575)] = 137516, - [SMALL_STATE(3576)] = 137562, - [SMALL_STATE(3577)] = 137612, - [SMALL_STATE(3578)] = 137662, - [SMALL_STATE(3579)] = 137708, - [SMALL_STATE(3580)] = 137754, - [SMALL_STATE(3581)] = 137804, - [SMALL_STATE(3582)] = 137848, - [SMALL_STATE(3583)] = 137892, - [SMALL_STATE(3584)] = 137938, - [SMALL_STATE(3585)] = 137982, - [SMALL_STATE(3586)] = 138026, - [SMALL_STATE(3587)] = 138073, - [SMALL_STATE(3588)] = 138124, - [SMALL_STATE(3589)] = 138167, - [SMALL_STATE(3590)] = 138210, - [SMALL_STATE(3591)] = 138261, - [SMALL_STATE(3592)] = 138304, - [SMALL_STATE(3593)] = 138347, - [SMALL_STATE(3594)] = 138390, - [SMALL_STATE(3595)] = 138437, - [SMALL_STATE(3596)] = 138484, - [SMALL_STATE(3597)] = 138531, - [SMALL_STATE(3598)] = 138578, - [SMALL_STATE(3599)] = 138621, - [SMALL_STATE(3600)] = 138664, - [SMALL_STATE(3601)] = 138707, - [SMALL_STATE(3602)] = 138754, - [SMALL_STATE(3603)] = 138797, - [SMALL_STATE(3604)] = 138840, - [SMALL_STATE(3605)] = 138883, - [SMALL_STATE(3606)] = 138926, - [SMALL_STATE(3607)] = 138969, - [SMALL_STATE(3608)] = 139012, - [SMALL_STATE(3609)] = 139055, - [SMALL_STATE(3610)] = 139098, - [SMALL_STATE(3611)] = 139141, - [SMALL_STATE(3612)] = 139184, - [SMALL_STATE(3613)] = 139227, - [SMALL_STATE(3614)] = 139270, - [SMALL_STATE(3615)] = 139317, - [SMALL_STATE(3616)] = 139360, - [SMALL_STATE(3617)] = 139403, - [SMALL_STATE(3618)] = 139448, - [SMALL_STATE(3619)] = 139493, - [SMALL_STATE(3620)] = 139536, - [SMALL_STATE(3621)] = 139579, - [SMALL_STATE(3622)] = 139622, - [SMALL_STATE(3623)] = 139665, - [SMALL_STATE(3624)] = 139708, - [SMALL_STATE(3625)] = 139751, - [SMALL_STATE(3626)] = 139794, - [SMALL_STATE(3627)] = 139841, - [SMALL_STATE(3628)] = 139884, - [SMALL_STATE(3629)] = 139927, - [SMALL_STATE(3630)] = 139970, - [SMALL_STATE(3631)] = 140013, - [SMALL_STATE(3632)] = 140056, - [SMALL_STATE(3633)] = 140099, - [SMALL_STATE(3634)] = 140142, - [SMALL_STATE(3635)] = 140185, - [SMALL_STATE(3636)] = 140228, - [SMALL_STATE(3637)] = 140271, - [SMALL_STATE(3638)] = 140314, - [SMALL_STATE(3639)] = 140357, - [SMALL_STATE(3640)] = 140400, - [SMALL_STATE(3641)] = 140443, - [SMALL_STATE(3642)] = 140486, - [SMALL_STATE(3643)] = 140575, - [SMALL_STATE(3644)] = 140618, - [SMALL_STATE(3645)] = 140661, - [SMALL_STATE(3646)] = 140750, - [SMALL_STATE(3647)] = 140793, - [SMALL_STATE(3648)] = 140836, - [SMALL_STATE(3649)] = 140879, - [SMALL_STATE(3650)] = 140924, - [SMALL_STATE(3651)] = 140967, - [SMALL_STATE(3652)] = 141014, - [SMALL_STATE(3653)] = 141057, - [SMALL_STATE(3654)] = 141100, - [SMALL_STATE(3655)] = 141147, - [SMALL_STATE(3656)] = 141192, - [SMALL_STATE(3657)] = 141237, - [SMALL_STATE(3658)] = 141280, - [SMALL_STATE(3659)] = 141323, - [SMALL_STATE(3660)] = 141366, - [SMALL_STATE(3661)] = 141413, - [SMALL_STATE(3662)] = 141456, - [SMALL_STATE(3663)] = 141500, - [SMALL_STATE(3664)] = 141554, - [SMALL_STATE(3665)] = 141606, - [SMALL_STATE(3666)] = 141648, - [SMALL_STATE(3667)] = 141690, - [SMALL_STATE(3668)] = 141732, - [SMALL_STATE(3669)] = 141774, - [SMALL_STATE(3670)] = 141822, - [SMALL_STATE(3671)] = 141872, - [SMALL_STATE(3672)] = 141914, - [SMALL_STATE(3673)] = 141956, - [SMALL_STATE(3674)] = 141998, - [SMALL_STATE(3675)] = 142040, - [SMALL_STATE(3676)] = 142090, - [SMALL_STATE(3677)] = 142146, - [SMALL_STATE(3678)] = 142204, - [SMALL_STATE(3679)] = 142246, - [SMALL_STATE(3680)] = 142306, - [SMALL_STATE(3681)] = 142368, - [SMALL_STATE(3682)] = 142410, - [SMALL_STATE(3683)] = 142474, - [SMALL_STATE(3684)] = 142520, - [SMALL_STATE(3685)] = 142586, - [SMALL_STATE(3686)] = 142630, - [SMALL_STATE(3687)] = 142698, - [SMALL_STATE(3688)] = 142752, - [SMALL_STATE(3689)] = 142796, - [SMALL_STATE(3690)] = 142848, - [SMALL_STATE(3691)] = 142890, - [SMALL_STATE(3692)] = 142936, - [SMALL_STATE(3693)] = 142982, - [SMALL_STATE(3694)] = 143028, - [SMALL_STATE(3695)] = 143074, - [SMALL_STATE(3696)] = 143116, - [SMALL_STATE(3697)] = 143162, - [SMALL_STATE(3698)] = 143210, - [SMALL_STATE(3699)] = 143258, - [SMALL_STATE(3700)] = 143308, - [SMALL_STATE(3701)] = 143358, - [SMALL_STATE(3702)] = 143414, - [SMALL_STATE(3703)] = 143470, - [SMALL_STATE(3704)] = 143516, - [SMALL_STATE(3705)] = 143574, - [SMALL_STATE(3706)] = 143632, - [SMALL_STATE(3707)] = 143678, - [SMALL_STATE(3708)] = 143720, - [SMALL_STATE(3709)] = 143766, - [SMALL_STATE(3710)] = 143826, - [SMALL_STATE(3711)] = 143886, - [SMALL_STATE(3712)] = 143948, - [SMALL_STATE(3713)] = 144010, - [SMALL_STATE(3714)] = 144074, - [SMALL_STATE(3715)] = 144138, - [SMALL_STATE(3716)] = 144204, - [SMALL_STATE(3717)] = 144270, - [SMALL_STATE(3718)] = 144338, - [SMALL_STATE(3719)] = 144384, - [SMALL_STATE(3720)] = 144432, - [SMALL_STATE(3721)] = 144486, - [SMALL_STATE(3722)] = 144542, - [SMALL_STATE(3723)] = 144600, - [SMALL_STATE(3724)] = 144660, - [SMALL_STATE(3725)] = 144722, - [SMALL_STATE(3726)] = 144786, - [SMALL_STATE(3727)] = 144852, - [SMALL_STATE(3728)] = 144904, - [SMALL_STATE(3729)] = 144954, - [SMALL_STATE(3730)] = 145022, - [SMALL_STATE(3731)] = 145076, - [SMALL_STATE(3732)] = 145130, - [SMALL_STATE(3733)] = 145182, - [SMALL_STATE(3734)] = 145234, - [SMALL_STATE(3735)] = 145280, - [SMALL_STATE(3736)] = 145328, - [SMALL_STATE(3737)] = 145378, - [SMALL_STATE(3738)] = 145434, - [SMALL_STATE(3739)] = 145502, - [SMALL_STATE(3740)] = 145562, - [SMALL_STATE(3741)] = 145604, - [SMALL_STATE(3742)] = 145666, - [SMALL_STATE(3743)] = 145730, - [SMALL_STATE(3744)] = 145796, - [SMALL_STATE(3745)] = 145838, - [SMALL_STATE(3746)] = 145906, - [SMALL_STATE(3747)] = 145960, - [SMALL_STATE(3748)] = 146012, - [SMALL_STATE(3749)] = 146058, - [SMALL_STATE(3750)] = 146106, - [SMALL_STATE(3751)] = 146156, - [SMALL_STATE(3752)] = 146198, - [SMALL_STATE(3753)] = 146254, - [SMALL_STATE(3754)] = 146296, - [SMALL_STATE(3755)] = 146338, - [SMALL_STATE(3756)] = 146396, - [SMALL_STATE(3757)] = 146456, - [SMALL_STATE(3758)] = 146518, - [SMALL_STATE(3759)] = 146582, - [SMALL_STATE(3760)] = 146648, - [SMALL_STATE(3761)] = 146716, - [SMALL_STATE(3762)] = 146770, - [SMALL_STATE(3763)] = 146822, - [SMALL_STATE(3764)] = 146868, - [SMALL_STATE(3765)] = 146914, - [SMALL_STATE(3766)] = 146962, - [SMALL_STATE(3767)] = 147010, - [SMALL_STATE(3768)] = 147060, - [SMALL_STATE(3769)] = 147110, - [SMALL_STATE(3770)] = 147166, - [SMALL_STATE(3771)] = 147222, - [SMALL_STATE(3772)] = 147280, - [SMALL_STATE(3773)] = 147338, - [SMALL_STATE(3774)] = 147382, - [SMALL_STATE(3775)] = 147442, - [SMALL_STATE(3776)] = 147502, - [SMALL_STATE(3777)] = 147564, - [SMALL_STATE(3778)] = 147626, - [SMALL_STATE(3779)] = 147690, - [SMALL_STATE(3780)] = 147754, - [SMALL_STATE(3781)] = 147796, - [SMALL_STATE(3782)] = 147838, - [SMALL_STATE(3783)] = 147904, - [SMALL_STATE(3784)] = 147970, - [SMALL_STATE(3785)] = 148038, - [SMALL_STATE(3786)] = 148106, - [SMALL_STATE(3787)] = 148160, - [SMALL_STATE(3788)] = 148214, - [SMALL_STATE(3789)] = 148266, - [SMALL_STATE(3790)] = 148312, - [SMALL_STATE(3791)] = 148354, - [SMALL_STATE(3792)] = 148406, - [SMALL_STATE(3793)] = 148456, - [SMALL_STATE(3794)] = 148502, - [SMALL_STATE(3795)] = 148550, - [SMALL_STATE(3796)] = 148600, - [SMALL_STATE(3797)] = 148656, - [SMALL_STATE(3798)] = 148700, - [SMALL_STATE(3799)] = 148744, - [SMALL_STATE(3800)] = 148802, - [SMALL_STATE(3801)] = 148862, - [SMALL_STATE(3802)] = 148924, - [SMALL_STATE(3803)] = 148988, - [SMALL_STATE(3804)] = 149054, - [SMALL_STATE(3805)] = 149112, - [SMALL_STATE(3806)] = 149195, - [SMALL_STATE(3807)] = 149278, - [SMALL_STATE(3808)] = 149361, - [SMALL_STATE(3809)] = 149444, - [SMALL_STATE(3810)] = 149527, - [SMALL_STATE(3811)] = 149610, - [SMALL_STATE(3812)] = 149651, - [SMALL_STATE(3813)] = 149734, - [SMALL_STATE(3814)] = 149817, - [SMALL_STATE(3815)] = 149858, - [SMALL_STATE(3816)] = 149941, - [SMALL_STATE(3817)] = 150024, - [SMALL_STATE(3818)] = 150107, - [SMALL_STATE(3819)] = 150190, - [SMALL_STATE(3820)] = 150273, - [SMALL_STATE(3821)] = 150356, - [SMALL_STATE(3822)] = 150439, - [SMALL_STATE(3823)] = 150480, - [SMALL_STATE(3824)] = 150563, - [SMALL_STATE(3825)] = 150646, - [SMALL_STATE(3826)] = 150729, - [SMALL_STATE(3827)] = 150812, - [SMALL_STATE(3828)] = 150853, - [SMALL_STATE(3829)] = 150936, - [SMALL_STATE(3830)] = 151003, - [SMALL_STATE(3831)] = 151086, - [SMALL_STATE(3832)] = 151153, - [SMALL_STATE(3833)] = 151198, - [SMALL_STATE(3834)] = 151281, - [SMALL_STATE(3835)] = 151348, - [SMALL_STATE(3836)] = 151431, - [SMALL_STATE(3837)] = 151472, - [SMALL_STATE(3838)] = 151517, - [SMALL_STATE(3839)] = 151558, - [SMALL_STATE(3840)] = 151625, - [SMALL_STATE(3841)] = 151666, - [SMALL_STATE(3842)] = 151733, - [SMALL_STATE(3843)] = 151816, - [SMALL_STATE(3844)] = 151899, - [SMALL_STATE(3845)] = 151982, - [SMALL_STATE(3846)] = 152049, - [SMALL_STATE(3847)] = 152099, - [SMALL_STATE(3848)] = 152143, - [SMALL_STATE(3849)] = 152199, - [SMALL_STATE(3850)] = 152247, - [SMALL_STATE(3851)] = 152287, - [SMALL_STATE(3852)] = 152333, - [SMALL_STATE(3853)] = 152377, - [SMALL_STATE(3854)] = 152419, - [SMALL_STATE(3855)] = 152477, - [SMALL_STATE(3856)] = 152521, - [SMALL_STATE(3857)] = 152561, - [SMALL_STATE(3858)] = 152601, - [SMALL_STATE(3859)] = 152653, - [SMALL_STATE(3860)] = 152713, - [SMALL_STATE(3861)] = 152755, - [SMALL_STATE(3862)] = 152817, - [SMALL_STATE(3863)] = 152861, - [SMALL_STATE(3864)] = 152911, - [SMALL_STATE(3865)] = 152963, - [SMALL_STATE(3866)] = 153017, - [SMALL_STATE(3867)] = 153073, - [SMALL_STATE(3868)] = 153131, - [SMALL_STATE(3869)] = 153175, - [SMALL_STATE(3870)] = 153235, - [SMALL_STATE(3871)] = 153297, - [SMALL_STATE(3872)] = 153345, - [SMALL_STATE(3873)] = 153391, - [SMALL_STATE(3874)] = 153435, - [SMALL_STATE(3875)] = 153489, - [SMALL_STATE(3876)] = 153566, - [SMALL_STATE(3877)] = 153627, - [SMALL_STATE(3878)] = 153688, - [SMALL_STATE(3879)] = 153727, - [SMALL_STATE(3880)] = 153788, - [SMALL_STATE(3881)] = 153827, - [SMALL_STATE(3882)] = 153888, - [SMALL_STATE(3883)] = 153965, - [SMALL_STATE(3884)] = 154042, - [SMALL_STATE(3885)] = 154103, - [SMALL_STATE(3886)] = 154180, - [SMALL_STATE(3887)] = 154219, - [SMALL_STATE(3888)] = 154296, - [SMALL_STATE(3889)] = 154335, - [SMALL_STATE(3890)] = 154374, - [SMALL_STATE(3891)] = 154451, - [SMALL_STATE(3892)] = 154528, - [SMALL_STATE(3893)] = 154605, - [SMALL_STATE(3894)] = 154682, - [SMALL_STATE(3895)] = 154743, - [SMALL_STATE(3896)] = 154804, - [SMALL_STATE(3897)] = 154881, - [SMALL_STATE(3898)] = 154958, - [SMALL_STATE(3899)] = 155003, - [SMALL_STATE(3900)] = 155080, - [SMALL_STATE(3901)] = 155119, - [SMALL_STATE(3902)] = 155173, - [SMALL_STATE(3903)] = 155217, - [SMALL_STATE(3904)] = 155268, - [SMALL_STATE(3905)] = 155321, - [SMALL_STATE(3906)] = 155372, - [SMALL_STATE(3907)] = 155412, - [SMALL_STATE(3908)] = 155462, - [SMALL_STATE(3909)] = 155512, - [SMALL_STATE(3910)] = 155568, - [SMALL_STATE(3911)] = 155618, - [SMALL_STATE(3912)] = 155658, - [SMALL_STATE(3913)] = 155701, - [SMALL_STATE(3914)] = 155754, - [SMALL_STATE(3915)] = 155797, - [SMALL_STATE(3916)] = 155840, - [SMALL_STATE(3917)] = 155879, - [SMALL_STATE(3918)] = 155922, - [SMALL_STATE(3919)] = 155965, - [SMALL_STATE(3920)] = 156008, - [SMALL_STATE(3921)] = 156045, - [SMALL_STATE(3922)] = 156092, - [SMALL_STATE(3923)] = 156147, - [SMALL_STATE(3924)] = 156194, - [SMALL_STATE(3925)] = 156241, - [SMALL_STATE(3926)] = 156288, - [SMALL_STATE(3927)] = 156335, - [SMALL_STATE(3928)] = 156378, - [SMALL_STATE(3929)] = 156415, - [SMALL_STATE(3930)] = 156468, - [SMALL_STATE(3931)] = 156511, - [SMALL_STATE(3932)] = 156554, - [SMALL_STATE(3933)] = 156597, - [SMALL_STATE(3934)] = 156640, - [SMALL_STATE(3935)] = 156683, - [SMALL_STATE(3936)] = 156726, - [SMALL_STATE(3937)] = 156769, - [SMALL_STATE(3938)] = 156812, - [SMALL_STATE(3939)] = 156855, - [SMALL_STATE(3940)] = 156898, - [SMALL_STATE(3941)] = 156941, - [SMALL_STATE(3942)] = 156984, - [SMALL_STATE(3943)] = 157027, - [SMALL_STATE(3944)] = 157070, - [SMALL_STATE(3945)] = 157123, - [SMALL_STATE(3946)] = 157162, - [SMALL_STATE(3947)] = 157205, - [SMALL_STATE(3948)] = 157255, - [SMALL_STATE(3949)] = 157307, - [SMALL_STATE(3950)] = 157341, - [SMALL_STATE(3951)] = 157375, - [SMALL_STATE(3952)] = 157427, - [SMALL_STATE(3953)] = 157477, - [SMALL_STATE(3954)] = 157529, - [SMALL_STATE(3955)] = 157567, - [SMALL_STATE(3956)] = 157601, - [SMALL_STATE(3957)] = 157651, - [SMALL_STATE(3958)] = 157693, - [SMALL_STATE(3959)] = 157731, - [SMALL_STATE(3960)] = 157769, - [SMALL_STATE(3961)] = 157819, - [SMALL_STATE(3962)] = 157865, - [SMALL_STATE(3963)] = 157907, - [SMALL_STATE(3964)] = 157941, - [SMALL_STATE(3965)] = 157979, - [SMALL_STATE(3966)] = 158015, - [SMALL_STATE(3967)] = 158051, - [SMALL_STATE(3968)] = 158092, - [SMALL_STATE(3969)] = 158133, - [SMALL_STATE(3970)] = 158174, - [SMALL_STATE(3971)] = 158215, - [SMALL_STATE(3972)] = 158250, - [SMALL_STATE(3973)] = 158287, - [SMALL_STATE(3974)] = 158336, - [SMALL_STATE(3975)] = 158377, - [SMALL_STATE(3976)] = 158418, - [SMALL_STATE(3977)] = 158459, - [SMALL_STATE(3978)] = 158494, - [SMALL_STATE(3979)] = 158527, - [SMALL_STATE(3980)] = 158568, - [SMALL_STATE(3981)] = 158609, - [SMALL_STATE(3982)] = 158650, - [SMALL_STATE(3983)] = 158691, - [SMALL_STATE(3984)] = 158732, - [SMALL_STATE(3985)] = 158773, - [SMALL_STATE(3986)] = 158806, - [SMALL_STATE(3987)] = 158847, - [SMALL_STATE(3988)] = 158884, - [SMALL_STATE(3989)] = 158925, - [SMALL_STATE(3990)] = 158958, - [SMALL_STATE(3991)] = 158995, - [SMALL_STATE(3992)] = 159036, - [SMALL_STATE(3993)] = 159077, - [SMALL_STATE(3994)] = 159118, - [SMALL_STATE(3995)] = 159159, - [SMALL_STATE(3996)] = 159200, - [SMALL_STATE(3997)] = 159247, - [SMALL_STATE(3998)] = 159280, - [SMALL_STATE(3999)] = 159315, - [SMALL_STATE(4000)] = 159364, - [SMALL_STATE(4001)] = 159413, - [SMALL_STATE(4002)] = 159454, - [SMALL_STATE(4003)] = 159495, - [SMALL_STATE(4004)] = 159544, - [SMALL_STATE(4005)] = 159597, - [SMALL_STATE(4006)] = 159638, - [SMALL_STATE(4007)] = 159679, - [SMALL_STATE(4008)] = 159720, - [SMALL_STATE(4009)] = 159755, - [SMALL_STATE(4010)] = 159796, - [SMALL_STATE(4011)] = 159833, - [SMALL_STATE(4012)] = 159869, - [SMALL_STATE(4013)] = 159905, - [SMALL_STATE(4014)] = 159943, - [SMALL_STATE(4015)] = 159977, - [SMALL_STATE(4016)] = 160015, - [SMALL_STATE(4017)] = 160061, - [SMALL_STATE(4018)] = 160093, - [SMALL_STATE(4019)] = 160125, - [SMALL_STATE(4020)] = 160175, - [SMALL_STATE(4021)] = 160215, - [SMALL_STATE(4022)] = 160247, - [SMALL_STATE(4023)] = 160283, - [SMALL_STATE(4024)] = 160315, - [SMALL_STATE(4025)] = 160347, - [SMALL_STATE(4026)] = 160379, - [SMALL_STATE(4027)] = 160415, - [SMALL_STATE(4028)] = 160449, - [SMALL_STATE(4029)] = 160483, - [SMALL_STATE(4030)] = 160521, - [SMALL_STATE(4031)] = 160553, - [SMALL_STATE(4032)] = 160593, - [SMALL_STATE(4033)] = 160625, - [SMALL_STATE(4034)] = 160659, - [SMALL_STATE(4035)] = 160709, - [SMALL_STATE(4036)] = 160741, - [SMALL_STATE(4037)] = 160777, - [SMALL_STATE(4038)] = 160827, - [SMALL_STATE(4039)] = 160859, - [SMALL_STATE(4040)] = 160891, - [SMALL_STATE(4041)] = 160931, - [SMALL_STATE(4042)] = 160965, - [SMALL_STATE(4043)] = 160996, - [SMALL_STATE(4044)] = 161027, - [SMALL_STATE(4045)] = 161058, - [SMALL_STATE(4046)] = 161089, - [SMALL_STATE(4047)] = 161120, - [SMALL_STATE(4048)] = 161151, - [SMALL_STATE(4049)] = 161182, - [SMALL_STATE(4050)] = 161221, - [SMALL_STATE(4051)] = 161252, - [SMALL_STATE(4052)] = 161283, - [SMALL_STATE(4053)] = 161314, - [SMALL_STATE(4054)] = 161345, - [SMALL_STATE(4055)] = 161376, - [SMALL_STATE(4056)] = 161407, - [SMALL_STATE(4057)] = 161438, - [SMALL_STATE(4058)] = 161469, - [SMALL_STATE(4059)] = 161500, - [SMALL_STATE(4060)] = 161535, - [SMALL_STATE(4061)] = 161570, - [SMALL_STATE(4062)] = 161601, - [SMALL_STATE(4063)] = 161632, - [SMALL_STATE(4064)] = 161663, - [SMALL_STATE(4065)] = 161694, - [SMALL_STATE(4066)] = 161725, - [SMALL_STATE(4067)] = 161758, - [SMALL_STATE(4068)] = 161789, - [SMALL_STATE(4069)] = 161820, - [SMALL_STATE(4070)] = 161851, - [SMALL_STATE(4071)] = 161882, - [SMALL_STATE(4072)] = 161913, - [SMALL_STATE(4073)] = 161944, - [SMALL_STATE(4074)] = 161977, - [SMALL_STATE(4075)] = 162008, - [SMALL_STATE(4076)] = 162039, - [SMALL_STATE(4077)] = 162070, - [SMALL_STATE(4078)] = 162101, - [SMALL_STATE(4079)] = 162140, - [SMALL_STATE(4080)] = 162171, - [SMALL_STATE(4081)] = 162206, - [SMALL_STATE(4082)] = 162237, - [SMALL_STATE(4083)] = 162268, - [SMALL_STATE(4084)] = 162299, - [SMALL_STATE(4085)] = 162330, - [SMALL_STATE(4086)] = 162377, - [SMALL_STATE(4087)] = 162408, - [SMALL_STATE(4088)] = 162439, - [SMALL_STATE(4089)] = 162476, - [SMALL_STATE(4090)] = 162507, - [SMALL_STATE(4091)] = 162538, - [SMALL_STATE(4092)] = 162569, - [SMALL_STATE(4093)] = 162600, - [SMALL_STATE(4094)] = 162647, - [SMALL_STATE(4095)] = 162694, - [SMALL_STATE(4096)] = 162741, - [SMALL_STATE(4097)] = 162778, - [SMALL_STATE(4098)] = 162813, - [SMALL_STATE(4099)] = 162858, - [SMALL_STATE(4100)] = 162895, - [SMALL_STATE(4101)] = 162928, - [SMALL_STATE(4102)] = 162959, - [SMALL_STATE(4103)] = 162990, - [SMALL_STATE(4104)] = 163021, - [SMALL_STATE(4105)] = 163052, - [SMALL_STATE(4106)] = 163083, - [SMALL_STATE(4107)] = 163116, - [SMALL_STATE(4108)] = 163151, - [SMALL_STATE(4109)] = 163192, - [SMALL_STATE(4110)] = 163225, - [SMALL_STATE(4111)] = 163258, - [SMALL_STATE(4112)] = 163291, - [SMALL_STATE(4113)] = 163330, - [SMALL_STATE(4114)] = 163361, - [SMALL_STATE(4115)] = 163391, - [SMALL_STATE(4116)] = 163421, - [SMALL_STATE(4117)] = 163453, - [SMALL_STATE(4118)] = 163483, - [SMALL_STATE(4119)] = 163513, - [SMALL_STATE(4120)] = 163551, - [SMALL_STATE(4121)] = 163585, - [SMALL_STATE(4122)] = 163619, - [SMALL_STATE(4123)] = 163659, - [SMALL_STATE(4124)] = 163695, - [SMALL_STATE(4125)] = 163727, - [SMALL_STATE(4126)] = 163765, - [SMALL_STATE(4127)] = 163795, - [SMALL_STATE(4128)] = 163833, - [SMALL_STATE(4129)] = 163867, - [SMALL_STATE(4130)] = 163899, - [SMALL_STATE(4131)] = 163931, - [SMALL_STATE(4132)] = 163969, - [SMALL_STATE(4133)] = 164003, - [SMALL_STATE(4134)] = 164035, - [SMALL_STATE(4135)] = 164065, - [SMALL_STATE(4136)] = 164095, - [SMALL_STATE(4137)] = 164125, - [SMALL_STATE(4138)] = 164163, - [SMALL_STATE(4139)] = 164193, - [SMALL_STATE(4140)] = 164225, - [SMALL_STATE(4141)] = 164275, - [SMALL_STATE(4142)] = 164305, - [SMALL_STATE(4143)] = 164339, - [SMALL_STATE(4144)] = 164369, - [SMALL_STATE(4145)] = 164401, - [SMALL_STATE(4146)] = 164431, - [SMALL_STATE(4147)] = 164461, - [SMALL_STATE(4148)] = 164491, - [SMALL_STATE(4149)] = 164523, - [SMALL_STATE(4150)] = 164555, - [SMALL_STATE(4151)] = 164585, - [SMALL_STATE(4152)] = 164617, - [SMALL_STATE(4153)] = 164647, - [SMALL_STATE(4154)] = 164677, - [SMALL_STATE(4155)] = 164707, - [SMALL_STATE(4156)] = 164739, - [SMALL_STATE(4157)] = 164776, - [SMALL_STATE(4158)] = 164813, - [SMALL_STATE(4159)] = 164850, - [SMALL_STATE(4160)] = 164881, - [SMALL_STATE(4161)] = 164914, - [SMALL_STATE(4162)] = 164951, - [SMALL_STATE(4163)] = 164980, - [SMALL_STATE(4164)] = 165013, - [SMALL_STATE(4165)] = 165042, - [SMALL_STATE(4166)] = 165071, - [SMALL_STATE(4167)] = 165108, - [SMALL_STATE(4168)] = 165145, - [SMALL_STATE(4169)] = 165174, - [SMALL_STATE(4170)] = 165207, - [SMALL_STATE(4171)] = 165238, - [SMALL_STATE(4172)] = 165269, - [SMALL_STATE(4173)] = 165300, - [SMALL_STATE(4174)] = 165337, - [SMALL_STATE(4175)] = 165368, - [SMALL_STATE(4176)] = 165399, - [SMALL_STATE(4177)] = 165428, - [SMALL_STATE(4178)] = 165459, - [SMALL_STATE(4179)] = 165496, - [SMALL_STATE(4180)] = 165533, - [SMALL_STATE(4181)] = 165570, - [SMALL_STATE(4182)] = 165607, - [SMALL_STATE(4183)] = 165636, - [SMALL_STATE(4184)] = 165667, - [SMALL_STATE(4185)] = 165696, - [SMALL_STATE(4186)] = 165725, - [SMALL_STATE(4187)] = 165754, - [SMALL_STATE(4188)] = 165783, - [SMALL_STATE(4189)] = 165812, - [SMALL_STATE(4190)] = 165849, - [SMALL_STATE(4191)] = 165886, - [SMALL_STATE(4192)] = 165923, - [SMALL_STATE(4193)] = 165952, - [SMALL_STATE(4194)] = 165983, - [SMALL_STATE(4195)] = 166014, - [SMALL_STATE(4196)] = 166051, - [SMALL_STATE(4197)] = 166080, - [SMALL_STATE(4198)] = 166117, - [SMALL_STATE(4199)] = 166146, - [SMALL_STATE(4200)] = 166183, - [SMALL_STATE(4201)] = 166214, - [SMALL_STATE(4202)] = 166245, - [SMALL_STATE(4203)] = 166274, - [SMALL_STATE(4204)] = 166311, - [SMALL_STATE(4205)] = 166348, - [SMALL_STATE(4206)] = 166385, - [SMALL_STATE(4207)] = 166418, - [SMALL_STATE(4208)] = 166455, - [SMALL_STATE(4209)] = 166484, - [SMALL_STATE(4210)] = 166515, - [SMALL_STATE(4211)] = 166544, - [SMALL_STATE(4212)] = 166577, - [SMALL_STATE(4213)] = 166610, - [SMALL_STATE(4214)] = 166639, - [SMALL_STATE(4215)] = 166676, - [SMALL_STATE(4216)] = 166713, - [SMALL_STATE(4217)] = 166742, - [SMALL_STATE(4218)] = 166771, - [SMALL_STATE(4219)] = 166800, - [SMALL_STATE(4220)] = 166837, - [SMALL_STATE(4221)] = 166868, - [SMALL_STATE(4222)] = 166905, - [SMALL_STATE(4223)] = 166934, - [SMALL_STATE(4224)] = 166963, - [SMALL_STATE(4225)] = 166992, - [SMALL_STATE(4226)] = 167021, - [SMALL_STATE(4227)] = 167058, - [SMALL_STATE(4228)] = 167087, - [SMALL_STATE(4229)] = 167116, - [SMALL_STATE(4230)] = 167145, - [SMALL_STATE(4231)] = 167182, - [SMALL_STATE(4232)] = 167211, - [SMALL_STATE(4233)] = 167240, - [SMALL_STATE(4234)] = 167269, - [SMALL_STATE(4235)] = 167298, - [SMALL_STATE(4236)] = 167327, - [SMALL_STATE(4237)] = 167356, - [SMALL_STATE(4238)] = 167393, - [SMALL_STATE(4239)] = 167422, - [SMALL_STATE(4240)] = 167451, - [SMALL_STATE(4241)] = 167482, - [SMALL_STATE(4242)] = 167513, - [SMALL_STATE(4243)] = 167542, - [SMALL_STATE(4244)] = 167571, - [SMALL_STATE(4245)] = 167600, - [SMALL_STATE(4246)] = 167629, - [SMALL_STATE(4247)] = 167660, - [SMALL_STATE(4248)] = 167691, - [SMALL_STATE(4249)] = 167720, - [SMALL_STATE(4250)] = 167757, - [SMALL_STATE(4251)] = 167786, - [SMALL_STATE(4252)] = 167815, - [SMALL_STATE(4253)] = 167844, - [SMALL_STATE(4254)] = 167873, - [SMALL_STATE(4255)] = 167902, - [SMALL_STATE(4256)] = 167939, - [SMALL_STATE(4257)] = 167968, - [SMALL_STATE(4258)] = 167997, - [SMALL_STATE(4259)] = 168028, - [SMALL_STATE(4260)] = 168065, - [SMALL_STATE(4261)] = 168094, - [SMALL_STATE(4262)] = 168125, - [SMALL_STATE(4263)] = 168162, - [SMALL_STATE(4264)] = 168191, - [SMALL_STATE(4265)] = 168220, - [SMALL_STATE(4266)] = 168253, - [SMALL_STATE(4267)] = 168282, - [SMALL_STATE(4268)] = 168313, - [SMALL_STATE(4269)] = 168342, - [SMALL_STATE(4270)] = 168371, - [SMALL_STATE(4271)] = 168402, - [SMALL_STATE(4272)] = 168431, - [SMALL_STATE(4273)] = 168462, - [SMALL_STATE(4274)] = 168493, - [SMALL_STATE(4275)] = 168524, - [SMALL_STATE(4276)] = 168553, - [SMALL_STATE(4277)] = 168582, - [SMALL_STATE(4278)] = 168611, - [SMALL_STATE(4279)] = 168642, - [SMALL_STATE(4280)] = 168671, - [SMALL_STATE(4281)] = 168700, - [SMALL_STATE(4282)] = 168735, - [SMALL_STATE(4283)] = 168763, - [SMALL_STATE(4284)] = 168791, - [SMALL_STATE(4285)] = 168821, - [SMALL_STATE(4286)] = 168857, - [SMALL_STATE(4287)] = 168889, - [SMALL_STATE(4288)] = 168925, - [SMALL_STATE(4289)] = 168961, - [SMALL_STATE(4290)] = 168997, - [SMALL_STATE(4291)] = 169045, - [SMALL_STATE(4292)] = 169081, - [SMALL_STATE(4293)] = 169111, - [SMALL_STATE(4294)] = 169147, - [SMALL_STATE(4295)] = 169175, - [SMALL_STATE(4296)] = 169211, - [SMALL_STATE(4297)] = 169241, - [SMALL_STATE(4298)] = 169277, - [SMALL_STATE(4299)] = 169307, - [SMALL_STATE(4300)] = 169343, - [SMALL_STATE(4301)] = 169379, - [SMALL_STATE(4302)] = 169427, - [SMALL_STATE(4303)] = 169455, - [SMALL_STATE(4304)] = 169483, - [SMALL_STATE(4305)] = 169513, - [SMALL_STATE(4306)] = 169541, - [SMALL_STATE(4307)] = 169569, - [SMALL_STATE(4308)] = 169613, - [SMALL_STATE(4309)] = 169649, - [SMALL_STATE(4310)] = 169693, - [SMALL_STATE(4311)] = 169721, - [SMALL_STATE(4312)] = 169753, - [SMALL_STATE(4313)] = 169781, - [SMALL_STATE(4314)] = 169811, - [SMALL_STATE(4315)] = 169841, - [SMALL_STATE(4316)] = 169877, - [SMALL_STATE(4317)] = 169913, - [SMALL_STATE(4318)] = 169949, - [SMALL_STATE(4319)] = 169977, - [SMALL_STATE(4320)] = 170005, - [SMALL_STATE(4321)] = 170033, - [SMALL_STATE(4322)] = 170061, - [SMALL_STATE(4323)] = 170097, - [SMALL_STATE(4324)] = 170125, - [SMALL_STATE(4325)] = 170161, - [SMALL_STATE(4326)] = 170209, - [SMALL_STATE(4327)] = 170245, - [SMALL_STATE(4328)] = 170273, - [SMALL_STATE(4329)] = 170303, - [SMALL_STATE(4330)] = 170331, - [SMALL_STATE(4331)] = 170363, - [SMALL_STATE(4332)] = 170411, - [SMALL_STATE(4333)] = 170449, - [SMALL_STATE(4334)] = 170485, - [SMALL_STATE(4335)] = 170519, - [SMALL_STATE(4336)] = 170555, - [SMALL_STATE(4337)] = 170593, - [SMALL_STATE(4338)] = 170625, - [SMALL_STATE(4339)] = 170655, - [SMALL_STATE(4340)] = 170691, - [SMALL_STATE(4341)] = 170727, - [SMALL_STATE(4342)] = 170763, - [SMALL_STATE(4343)] = 170799, - [SMALL_STATE(4344)] = 170827, - [SMALL_STATE(4345)] = 170863, - [SMALL_STATE(4346)] = 170907, - [SMALL_STATE(4347)] = 170951, - [SMALL_STATE(4348)] = 170995, - [SMALL_STATE(4349)] = 171027, - [SMALL_STATE(4350)] = 171059, - [SMALL_STATE(4351)] = 171091, - [SMALL_STATE(4352)] = 171119, - [SMALL_STATE(4353)] = 171149, - [SMALL_STATE(4354)] = 171185, - [SMALL_STATE(4355)] = 171217, - [SMALL_STATE(4356)] = 171253, - [SMALL_STATE(4357)] = 171289, - [SMALL_STATE(4358)] = 171325, - [SMALL_STATE(4359)] = 171361, - [SMALL_STATE(4360)] = 171391, - [SMALL_STATE(4361)] = 171421, - [SMALL_STATE(4362)] = 171449, - [SMALL_STATE(4363)] = 171477, - [SMALL_STATE(4364)] = 171509, - [SMALL_STATE(4365)] = 171539, - [SMALL_STATE(4366)] = 171575, - [SMALL_STATE(4367)] = 171607, - [SMALL_STATE(4368)] = 171637, - [SMALL_STATE(4369)] = 171667, - [SMALL_STATE(4370)] = 171699, - [SMALL_STATE(4371)] = 171727, - [SMALL_STATE(4372)] = 171763, - [SMALL_STATE(4373)] = 171795, - [SMALL_STATE(4374)] = 171827, - [SMALL_STATE(4375)] = 171855, - [SMALL_STATE(4376)] = 171891, - [SMALL_STATE(4377)] = 171921, - [SMALL_STATE(4378)] = 171946, - [SMALL_STATE(4379)] = 171979, - [SMALL_STATE(4380)] = 172010, - [SMALL_STATE(4381)] = 172041, - [SMALL_STATE(4382)] = 172072, - [SMALL_STATE(4383)] = 172103, - [SMALL_STATE(4384)] = 172134, - [SMALL_STATE(4385)] = 172165, - [SMALL_STATE(4386)] = 172200, - [SMALL_STATE(4387)] = 172233, - [SMALL_STATE(4388)] = 172264, - [SMALL_STATE(4389)] = 172291, - [SMALL_STATE(4390)] = 172322, - [SMALL_STATE(4391)] = 172355, - [SMALL_STATE(4392)] = 172390, - [SMALL_STATE(4393)] = 172417, - [SMALL_STATE(4394)] = 172446, - [SMALL_STATE(4395)] = 172481, - [SMALL_STATE(4396)] = 172506, - [SMALL_STATE(4397)] = 172537, - [SMALL_STATE(4398)] = 172574, - [SMALL_STATE(4399)] = 172601, - [SMALL_STATE(4400)] = 172626, - [SMALL_STATE(4401)] = 172653, - [SMALL_STATE(4402)] = 172682, - [SMALL_STATE(4403)] = 172713, - [SMALL_STATE(4404)] = 172742, - [SMALL_STATE(4405)] = 172773, - [SMALL_STATE(4406)] = 172804, - [SMALL_STATE(4407)] = 172831, - [SMALL_STATE(4408)] = 172858, - [SMALL_STATE(4409)] = 172887, - [SMALL_STATE(4410)] = 172916, - [SMALL_STATE(4411)] = 172947, - [SMALL_STATE(4412)] = 172978, - [SMALL_STATE(4413)] = 173011, - [SMALL_STATE(4414)] = 173042, - [SMALL_STATE(4415)] = 173069, - [SMALL_STATE(4416)] = 173102, - [SMALL_STATE(4417)] = 173131, - [SMALL_STATE(4418)] = 173158, - [SMALL_STATE(4419)] = 173185, - [SMALL_STATE(4420)] = 173218, - [SMALL_STATE(4421)] = 173245, - [SMALL_STATE(4422)] = 173278, - [SMALL_STATE(4423)] = 173311, - [SMALL_STATE(4424)] = 173338, - [SMALL_STATE(4425)] = 173365, - [SMALL_STATE(4426)] = 173392, - [SMALL_STATE(4427)] = 173421, - [SMALL_STATE(4428)] = 173450, - [SMALL_STATE(4429)] = 173481, - [SMALL_STATE(4430)] = 173512, - [SMALL_STATE(4431)] = 173541, - [SMALL_STATE(4432)] = 173572, - [SMALL_STATE(4433)] = 173601, - [SMALL_STATE(4434)] = 173628, - [SMALL_STATE(4435)] = 173655, - [SMALL_STATE(4436)] = 173686, - [SMALL_STATE(4437)] = 173717, - [SMALL_STATE(4438)] = 173750, - [SMALL_STATE(4439)] = 173777, - [SMALL_STATE(4440)] = 173804, - [SMALL_STATE(4441)] = 173839, - [SMALL_STATE(4442)] = 173866, - [SMALL_STATE(4443)] = 173899, - [SMALL_STATE(4444)] = 173926, - [SMALL_STATE(4445)] = 173959, - [SMALL_STATE(4446)] = 173986, - [SMALL_STATE(4447)] = 174013, - [SMALL_STATE(4448)] = 174046, - [SMALL_STATE(4449)] = 174077, - [SMALL_STATE(4450)] = 174112, - [SMALL_STATE(4451)] = 174147, - [SMALL_STATE(4452)] = 174174, - [SMALL_STATE(4453)] = 174201, - [SMALL_STATE(4454)] = 174226, - [SMALL_STATE(4455)] = 174257, - [SMALL_STATE(4456)] = 174286, - [SMALL_STATE(4457)] = 174313, - [SMALL_STATE(4458)] = 174348, - [SMALL_STATE(4459)] = 174377, - [SMALL_STATE(4460)] = 174408, - [SMALL_STATE(4461)] = 174435, - [SMALL_STATE(4462)] = 174466, - [SMALL_STATE(4463)] = 174497, - [SMALL_STATE(4464)] = 174524, - [SMALL_STATE(4465)] = 174555, - [SMALL_STATE(4466)] = 174586, - [SMALL_STATE(4467)] = 174617, - [SMALL_STATE(4468)] = 174650, - [SMALL_STATE(4469)] = 174681, - [SMALL_STATE(4470)] = 174708, - [SMALL_STATE(4471)] = 174743, - [SMALL_STATE(4472)] = 174770, - [SMALL_STATE(4473)] = 174801, - [SMALL_STATE(4474)] = 174832, - [SMALL_STATE(4475)] = 174863, - [SMALL_STATE(4476)] = 174898, - [SMALL_STATE(4477)] = 174927, - [SMALL_STATE(4478)] = 174958, - [SMALL_STATE(4479)] = 174985, - [SMALL_STATE(4480)] = 175018, - [SMALL_STATE(4481)] = 175045, - [SMALL_STATE(4482)] = 175072, - [SMALL_STATE(4483)] = 175097, - [SMALL_STATE(4484)] = 175124, - [SMALL_STATE(4485)] = 175155, - [SMALL_STATE(4486)] = 175186, - [SMALL_STATE(4487)] = 175221, - [SMALL_STATE(4488)] = 175252, - [SMALL_STATE(4489)] = 175279, - [SMALL_STATE(4490)] = 175310, - [SMALL_STATE(4491)] = 175337, - [SMALL_STATE(4492)] = 175364, - [SMALL_STATE(4493)] = 175395, - [SMALL_STATE(4494)] = 175426, - [SMALL_STATE(4495)] = 175457, - [SMALL_STATE(4496)] = 175492, - [SMALL_STATE(4497)] = 175521, - [SMALL_STATE(4498)] = 175548, - [SMALL_STATE(4499)] = 175583, - [SMALL_STATE(4500)] = 175618, - [SMALL_STATE(4501)] = 175653, - [SMALL_STATE(4502)] = 175688, - [SMALL_STATE(4503)] = 175723, - [SMALL_STATE(4504)] = 175758, - [SMALL_STATE(4505)] = 175789, - [SMALL_STATE(4506)] = 175824, - [SMALL_STATE(4507)] = 175859, - [SMALL_STATE(4508)] = 175894, - [SMALL_STATE(4509)] = 175923, - [SMALL_STATE(4510)] = 175958, - [SMALL_STATE(4511)] = 175993, - [SMALL_STATE(4512)] = 176028, - [SMALL_STATE(4513)] = 176063, - [SMALL_STATE(4514)] = 176090, - [SMALL_STATE(4515)] = 176125, - [SMALL_STATE(4516)] = 176160, - [SMALL_STATE(4517)] = 176189, - [SMALL_STATE(4518)] = 176224, - [SMALL_STATE(4519)] = 176259, - [SMALL_STATE(4520)] = 176290, - [SMALL_STATE(4521)] = 176321, - [SMALL_STATE(4522)] = 176352, - [SMALL_STATE(4523)] = 176383, - [SMALL_STATE(4524)] = 176414, - [SMALL_STATE(4525)] = 176441, - [SMALL_STATE(4526)] = 176474, - [SMALL_STATE(4527)] = 176507, - [SMALL_STATE(4528)] = 176538, - [SMALL_STATE(4529)] = 176565, - [SMALL_STATE(4530)] = 176592, - [SMALL_STATE(4531)] = 176619, - [SMALL_STATE(4532)] = 176646, - [SMALL_STATE(4533)] = 176677, - [SMALL_STATE(4534)] = 176708, - [SMALL_STATE(4535)] = 176741, - [SMALL_STATE(4536)] = 176772, - [SMALL_STATE(4537)] = 176803, - [SMALL_STATE(4538)] = 176836, - [SMALL_STATE(4539)] = 176869, - [SMALL_STATE(4540)] = 176896, - [SMALL_STATE(4541)] = 176923, - [SMALL_STATE(4542)] = 176950, - [SMALL_STATE(4543)] = 176981, - [SMALL_STATE(4544)] = 177012, - [SMALL_STATE(4545)] = 177039, - [SMALL_STATE(4546)] = 177064, - [SMALL_STATE(4547)] = 177091, - [SMALL_STATE(4548)] = 177118, - [SMALL_STATE(4549)] = 177147, - [SMALL_STATE(4550)] = 177178, - [SMALL_STATE(4551)] = 177205, - [SMALL_STATE(4552)] = 177230, - [SMALL_STATE(4553)] = 177261, - [SMALL_STATE(4554)] = 177286, - [SMALL_STATE(4555)] = 177315, - [SMALL_STATE(4556)] = 177350, - [SMALL_STATE(4557)] = 177381, - [SMALL_STATE(4558)] = 177412, - [SMALL_STATE(4559)] = 177439, - [SMALL_STATE(4560)] = 177466, - [SMALL_STATE(4561)] = 177491, - [SMALL_STATE(4562)] = 177516, - [SMALL_STATE(4563)] = 177543, - [SMALL_STATE(4564)] = 177570, - [SMALL_STATE(4565)] = 177595, - [SMALL_STATE(4566)] = 177620, - [SMALL_STATE(4567)] = 177651, - [SMALL_STATE(4568)] = 177686, - [SMALL_STATE(4569)] = 177717, - [SMALL_STATE(4570)] = 177748, - [SMALL_STATE(4571)] = 177781, - [SMALL_STATE(4572)] = 177806, - [SMALL_STATE(4573)] = 177833, - [SMALL_STATE(4574)] = 177862, - [SMALL_STATE(4575)] = 177889, - [SMALL_STATE(4576)] = 177916, - [SMALL_STATE(4577)] = 177945, - [SMALL_STATE(4578)] = 177974, - [SMALL_STATE(4579)] = 177999, - [SMALL_STATE(4580)] = 178024, - [SMALL_STATE(4581)] = 178051, - [SMALL_STATE(4582)] = 178078, - [SMALL_STATE(4583)] = 178107, - [SMALL_STATE(4584)] = 178136, - [SMALL_STATE(4585)] = 178169, - [SMALL_STATE(4586)] = 178200, - [SMALL_STATE(4587)] = 178229, - [SMALL_STATE(4588)] = 178255, - [SMALL_STATE(4589)] = 178287, - [SMALL_STATE(4590)] = 178317, - [SMALL_STATE(4591)] = 178341, - [SMALL_STATE(4592)] = 178369, - [SMALL_STATE(4593)] = 178393, - [SMALL_STATE(4594)] = 178445, - [SMALL_STATE(4595)] = 178471, - [SMALL_STATE(4596)] = 178497, - [SMALL_STATE(4597)] = 178521, - [SMALL_STATE(4598)] = 178573, - [SMALL_STATE(4599)] = 178601, - [SMALL_STATE(4600)] = 178629, - [SMALL_STATE(4601)] = 178659, - [SMALL_STATE(4602)] = 178683, - [SMALL_STATE(4603)] = 178709, - [SMALL_STATE(4604)] = 178735, - [SMALL_STATE(4605)] = 178787, - [SMALL_STATE(4606)] = 178817, - [SMALL_STATE(4607)] = 178843, - [SMALL_STATE(4608)] = 178867, - [SMALL_STATE(4609)] = 178893, - [SMALL_STATE(4610)] = 178921, - [SMALL_STATE(4611)] = 178953, - [SMALL_STATE(4612)] = 178979, - [SMALL_STATE(4613)] = 179005, - [SMALL_STATE(4614)] = 179033, - [SMALL_STATE(4615)] = 179061, - [SMALL_STATE(4616)] = 179091, - [SMALL_STATE(4617)] = 179119, - [SMALL_STATE(4618)] = 179143, - [SMALL_STATE(4619)] = 179175, - [SMALL_STATE(4620)] = 179199, - [SMALL_STATE(4621)] = 179229, - [SMALL_STATE(4622)] = 179257, - [SMALL_STATE(4623)] = 179283, - [SMALL_STATE(4624)] = 179307, - [SMALL_STATE(4625)] = 179337, - [SMALL_STATE(4626)] = 179365, - [SMALL_STATE(4627)] = 179417, - [SMALL_STATE(4628)] = 179447, - [SMALL_STATE(4629)] = 179477, - [SMALL_STATE(4630)] = 179505, - [SMALL_STATE(4631)] = 179531, - [SMALL_STATE(4632)] = 179555, - [SMALL_STATE(4633)] = 179579, - [SMALL_STATE(4634)] = 179609, - [SMALL_STATE(4635)] = 179639, - [SMALL_STATE(4636)] = 179691, - [SMALL_STATE(4637)] = 179719, - [SMALL_STATE(4638)] = 179745, - [SMALL_STATE(4639)] = 179775, - [SMALL_STATE(4640)] = 179801, - [SMALL_STATE(4641)] = 179831, - [SMALL_STATE(4642)] = 179883, - [SMALL_STATE(4643)] = 179913, - [SMALL_STATE(4644)] = 179943, - [SMALL_STATE(4645)] = 179973, - [SMALL_STATE(4646)] = 180025, - [SMALL_STATE(4647)] = 180051, - [SMALL_STATE(4648)] = 180097, - [SMALL_STATE(4649)] = 180149, - [SMALL_STATE(4650)] = 180173, - [SMALL_STATE(4651)] = 180199, - [SMALL_STATE(4652)] = 180225, - [SMALL_STATE(4653)] = 180253, - [SMALL_STATE(4654)] = 180281, - [SMALL_STATE(4655)] = 180311, - [SMALL_STATE(4656)] = 180337, - [SMALL_STATE(4657)] = 180367, - [SMALL_STATE(4658)] = 180397, - [SMALL_STATE(4659)] = 180449, - [SMALL_STATE(4660)] = 180475, - [SMALL_STATE(4661)] = 180501, - [SMALL_STATE(4662)] = 180529, - [SMALL_STATE(4663)] = 180557, - [SMALL_STATE(4664)] = 180581, - [SMALL_STATE(4665)] = 180611, - [SMALL_STATE(4666)] = 180635, - [SMALL_STATE(4667)] = 180665, - [SMALL_STATE(4668)] = 180691, - [SMALL_STATE(4669)] = 180719, - [SMALL_STATE(4670)] = 180771, - [SMALL_STATE(4671)] = 180801, - [SMALL_STATE(4672)] = 180831, - [SMALL_STATE(4673)] = 180857, - [SMALL_STATE(4674)] = 180887, - [SMALL_STATE(4675)] = 180913, - [SMALL_STATE(4676)] = 180937, - [SMALL_STATE(4677)] = 180967, - [SMALL_STATE(4678)] = 180993, - [SMALL_STATE(4679)] = 181021, - [SMALL_STATE(4680)] = 181051, - [SMALL_STATE(4681)] = 181081, - [SMALL_STATE(4682)] = 181111, - [SMALL_STATE(4683)] = 181141, - [SMALL_STATE(4684)] = 181171, - [SMALL_STATE(4685)] = 181195, - [SMALL_STATE(4686)] = 181219, - [SMALL_STATE(4687)] = 181249, - [SMALL_STATE(4688)] = 181279, - [SMALL_STATE(4689)] = 181309, - [SMALL_STATE(4690)] = 181335, - [SMALL_STATE(4691)] = 181365, - [SMALL_STATE(4692)] = 181393, - [SMALL_STATE(4693)] = 181417, - [SMALL_STATE(4694)] = 181444, - [SMALL_STATE(4695)] = 181469, - [SMALL_STATE(4696)] = 181498, - [SMALL_STATE(4697)] = 181523, - [SMALL_STATE(4698)] = 181550, - [SMALL_STATE(4699)] = 181595, - [SMALL_STATE(4700)] = 181624, - [SMALL_STATE(4701)] = 181653, - [SMALL_STATE(4702)] = 181678, - [SMALL_STATE(4703)] = 181705, - [SMALL_STATE(4704)] = 181730, - [SMALL_STATE(4705)] = 181755, - [SMALL_STATE(4706)] = 181800, - [SMALL_STATE(4707)] = 181825, - [SMALL_STATE(4708)] = 181850, - [SMALL_STATE(4709)] = 181875, - [SMALL_STATE(4710)] = 181900, - [SMALL_STATE(4711)] = 181929, - [SMALL_STATE(4712)] = 181954, - [SMALL_STATE(4713)] = 181985, - [SMALL_STATE(4714)] = 182016, - [SMALL_STATE(4715)] = 182045, - [SMALL_STATE(4716)] = 182070, - [SMALL_STATE(4717)] = 182095, - [SMALL_STATE(4718)] = 182124, - [SMALL_STATE(4719)] = 182149, - [SMALL_STATE(4720)] = 182172, - [SMALL_STATE(4721)] = 182197, - [SMALL_STATE(4722)] = 182226, - [SMALL_STATE(4723)] = 182255, - [SMALL_STATE(4724)] = 182280, - [SMALL_STATE(4725)] = 182305, - [SMALL_STATE(4726)] = 182334, - [SMALL_STATE(4727)] = 182359, - [SMALL_STATE(4728)] = 182384, - [SMALL_STATE(4729)] = 182413, - [SMALL_STATE(4730)] = 182438, - [SMALL_STATE(4731)] = 182465, - [SMALL_STATE(4732)] = 182488, - [SMALL_STATE(4733)] = 182513, - [SMALL_STATE(4734)] = 182542, - [SMALL_STATE(4735)] = 182571, - [SMALL_STATE(4736)] = 182596, - [SMALL_STATE(4737)] = 182623, - [SMALL_STATE(4738)] = 182646, - [SMALL_STATE(4739)] = 182671, - [SMALL_STATE(4740)] = 182696, - [SMALL_STATE(4741)] = 182721, - [SMALL_STATE(4742)] = 182746, - [SMALL_STATE(4743)] = 182771, - [SMALL_STATE(4744)] = 182796, - [SMALL_STATE(4745)] = 182821, - [SMALL_STATE(4746)] = 182846, - [SMALL_STATE(4747)] = 182871, - [SMALL_STATE(4748)] = 182900, - [SMALL_STATE(4749)] = 182927, - [SMALL_STATE(4750)] = 182956, - [SMALL_STATE(4751)] = 182979, - [SMALL_STATE(4752)] = 183006, - [SMALL_STATE(4753)] = 183031, - [SMALL_STATE(4754)] = 183056, - [SMALL_STATE(4755)] = 183081, - [SMALL_STATE(4756)] = 183106, - [SMALL_STATE(4757)] = 183135, - [SMALL_STATE(4758)] = 183160, - [SMALL_STATE(4759)] = 183185, - [SMALL_STATE(4760)] = 183210, - [SMALL_STATE(4761)] = 183235, - [SMALL_STATE(4762)] = 183260, - [SMALL_STATE(4763)] = 183289, - [SMALL_STATE(4764)] = 183318, - [SMALL_STATE(4765)] = 183347, - [SMALL_STATE(4766)] = 183378, - [SMALL_STATE(4767)] = 183405, - [SMALL_STATE(4768)] = 183430, - [SMALL_STATE(4769)] = 183455, - [SMALL_STATE(4770)] = 183480, - [SMALL_STATE(4771)] = 183505, - [SMALL_STATE(4772)] = 183546, - [SMALL_STATE(4773)] = 183571, - [SMALL_STATE(4774)] = 183596, - [SMALL_STATE(4775)] = 183621, - [SMALL_STATE(4776)] = 183646, - [SMALL_STATE(4777)] = 183675, - [SMALL_STATE(4778)] = 183704, - [SMALL_STATE(4779)] = 183729, - [SMALL_STATE(4780)] = 183754, - [SMALL_STATE(4781)] = 183783, - [SMALL_STATE(4782)] = 183812, - [SMALL_STATE(4783)] = 183843, - [SMALL_STATE(4784)] = 183868, - [SMALL_STATE(4785)] = 183893, - [SMALL_STATE(4786)] = 183922, - [SMALL_STATE(4787)] = 183951, - [SMALL_STATE(4788)] = 183976, - [SMALL_STATE(4789)] = 184001, - [SMALL_STATE(4790)] = 184028, - [SMALL_STATE(4791)] = 184057, - [SMALL_STATE(4792)] = 184082, - [SMALL_STATE(4793)] = 184111, - [SMALL_STATE(4794)] = 184136, - [SMALL_STATE(4795)] = 184165, - [SMALL_STATE(4796)] = 184190, - [SMALL_STATE(4797)] = 184215, - [SMALL_STATE(4798)] = 184240, - [SMALL_STATE(4799)] = 184265, - [SMALL_STATE(4800)] = 184290, - [SMALL_STATE(4801)] = 184315, - [SMALL_STATE(4802)] = 184344, - [SMALL_STATE(4803)] = 184369, - [SMALL_STATE(4804)] = 184394, - [SMALL_STATE(4805)] = 184419, - [SMALL_STATE(4806)] = 184444, - [SMALL_STATE(4807)] = 184469, - [SMALL_STATE(4808)] = 184494, - [SMALL_STATE(4809)] = 184523, - [SMALL_STATE(4810)] = 184552, - [SMALL_STATE(4811)] = 184577, - [SMALL_STATE(4812)] = 184606, - [SMALL_STATE(4813)] = 184631, - [SMALL_STATE(4814)] = 184656, - [SMALL_STATE(4815)] = 184685, - [SMALL_STATE(4816)] = 184710, - [SMALL_STATE(4817)] = 184739, - [SMALL_STATE(4818)] = 184768, - [SMALL_STATE(4819)] = 184797, - [SMALL_STATE(4820)] = 184822, - [SMALL_STATE(4821)] = 184851, - [SMALL_STATE(4822)] = 184876, - [SMALL_STATE(4823)] = 184901, - [SMALL_STATE(4824)] = 184930, - [SMALL_STATE(4825)] = 184959, - [SMALL_STATE(4826)] = 184984, - [SMALL_STATE(4827)] = 185009, - [SMALL_STATE(4828)] = 185036, - [SMALL_STATE(4829)] = 185061, - [SMALL_STATE(4830)] = 185086, - [SMALL_STATE(4831)] = 185113, - [SMALL_STATE(4832)] = 185142, - [SMALL_STATE(4833)] = 185171, - [SMALL_STATE(4834)] = 185196, - [SMALL_STATE(4835)] = 185221, - [SMALL_STATE(4836)] = 185246, - [SMALL_STATE(4837)] = 185275, - [SMALL_STATE(4838)] = 185300, - [SMALL_STATE(4839)] = 185325, - [SMALL_STATE(4840)] = 185350, - [SMALL_STATE(4841)] = 185375, - [SMALL_STATE(4842)] = 185400, - [SMALL_STATE(4843)] = 185429, - [SMALL_STATE(4844)] = 185458, - [SMALL_STATE(4845)] = 185487, - [SMALL_STATE(4846)] = 185512, - [SMALL_STATE(4847)] = 185537, - [SMALL_STATE(4848)] = 185564, - [SMALL_STATE(4849)] = 185589, - [SMALL_STATE(4850)] = 185618, - [SMALL_STATE(4851)] = 185645, - [SMALL_STATE(4852)] = 185670, - [SMALL_STATE(4853)] = 185699, - [SMALL_STATE(4854)] = 185724, - [SMALL_STATE(4855)] = 185753, - [SMALL_STATE(4856)] = 185782, - [SMALL_STATE(4857)] = 185807, - [SMALL_STATE(4858)] = 185830, - [SMALL_STATE(4859)] = 185855, - [SMALL_STATE(4860)] = 185884, - [SMALL_STATE(4861)] = 185909, - [SMALL_STATE(4862)] = 185934, - [SMALL_STATE(4863)] = 185959, - [SMALL_STATE(4864)] = 185984, - [SMALL_STATE(4865)] = 186009, - [SMALL_STATE(4866)] = 186033, - [SMALL_STATE(4867)] = 186057, - [SMALL_STATE(4868)] = 186081, - [SMALL_STATE(4869)] = 186105, - [SMALL_STATE(4870)] = 186127, - [SMALL_STATE(4871)] = 186151, - [SMALL_STATE(4872)] = 186175, - [SMALL_STATE(4873)] = 186199, - [SMALL_STATE(4874)] = 186221, - [SMALL_STATE(4875)] = 186243, - [SMALL_STATE(4876)] = 186267, - [SMALL_STATE(4877)] = 186289, - [SMALL_STATE(4878)] = 186313, - [SMALL_STATE(4879)] = 186337, - [SMALL_STATE(4880)] = 186359, - [SMALL_STATE(4881)] = 186383, - [SMALL_STATE(4882)] = 186407, - [SMALL_STATE(4883)] = 186431, - [SMALL_STATE(4884)] = 186475, - [SMALL_STATE(4885)] = 186499, - [SMALL_STATE(4886)] = 186521, - [SMALL_STATE(4887)] = 186543, - [SMALL_STATE(4888)] = 186567, - [SMALL_STATE(4889)] = 186589, - [SMALL_STATE(4890)] = 186627, - [SMALL_STATE(4891)] = 186649, - [SMALL_STATE(4892)] = 186673, - [SMALL_STATE(4893)] = 186697, - [SMALL_STATE(4894)] = 186721, - [SMALL_STATE(4895)] = 186745, - [SMALL_STATE(4896)] = 186769, - [SMALL_STATE(4897)] = 186793, - [SMALL_STATE(4898)] = 186817, - [SMALL_STATE(4899)] = 186839, - [SMALL_STATE(4900)] = 186863, - [SMALL_STATE(4901)] = 186885, - [SMALL_STATE(4902)] = 186909, - [SMALL_STATE(4903)] = 186933, - [SMALL_STATE(4904)] = 186957, - [SMALL_STATE(4905)] = 186981, - [SMALL_STATE(4906)] = 187005, - [SMALL_STATE(4907)] = 187029, - [SMALL_STATE(4908)] = 187053, - [SMALL_STATE(4909)] = 187077, - [SMALL_STATE(4910)] = 187101, - [SMALL_STATE(4911)] = 187125, - [SMALL_STATE(4912)] = 187149, - [SMALL_STATE(4913)] = 187173, - [SMALL_STATE(4914)] = 187197, - [SMALL_STATE(4915)] = 187221, - [SMALL_STATE(4916)] = 187245, - [SMALL_STATE(4917)] = 187269, - [SMALL_STATE(4918)] = 187293, - [SMALL_STATE(4919)] = 187317, - [SMALL_STATE(4920)] = 187339, - [SMALL_STATE(4921)] = 187361, - [SMALL_STATE(4922)] = 187383, - [SMALL_STATE(4923)] = 187405, - [SMALL_STATE(4924)] = 187429, - [SMALL_STATE(4925)] = 187455, - [SMALL_STATE(4926)] = 187479, - [SMALL_STATE(4927)] = 187503, - [SMALL_STATE(4928)] = 187527, - [SMALL_STATE(4929)] = 187551, - [SMALL_STATE(4930)] = 187575, - [SMALL_STATE(4931)] = 187599, - [SMALL_STATE(4932)] = 187625, - [SMALL_STATE(4933)] = 187651, - [SMALL_STATE(4934)] = 187693, - [SMALL_STATE(4935)] = 187717, - [SMALL_STATE(4936)] = 187743, - [SMALL_STATE(4937)] = 187767, - [SMALL_STATE(4938)] = 187791, - [SMALL_STATE(4939)] = 187817, - [SMALL_STATE(4940)] = 187841, - [SMALL_STATE(4941)] = 187865, - [SMALL_STATE(4942)] = 187889, - [SMALL_STATE(4943)] = 187913, - [SMALL_STATE(4944)] = 187937, - [SMALL_STATE(4945)] = 187961, - [SMALL_STATE(4946)] = 187985, - [SMALL_STATE(4947)] = 188009, - [SMALL_STATE(4948)] = 188033, - [SMALL_STATE(4949)] = 188057, - [SMALL_STATE(4950)] = 188103, - [SMALL_STATE(4951)] = 188127, - [SMALL_STATE(4952)] = 188151, - [SMALL_STATE(4953)] = 188177, - [SMALL_STATE(4954)] = 188223, - [SMALL_STATE(4955)] = 188247, - [SMALL_STATE(4956)] = 188293, - [SMALL_STATE(4957)] = 188315, - [SMALL_STATE(4958)] = 188361, - [SMALL_STATE(4959)] = 188383, - [SMALL_STATE(4960)] = 188423, - [SMALL_STATE(4961)] = 188469, - [SMALL_STATE(4962)] = 188515, - [SMALL_STATE(4963)] = 188539, - [SMALL_STATE(4964)] = 188563, - [SMALL_STATE(4965)] = 188587, - [SMALL_STATE(4966)] = 188611, - [SMALL_STATE(4967)] = 188657, - [SMALL_STATE(4968)] = 188703, - [SMALL_STATE(4969)] = 188727, - [SMALL_STATE(4970)] = 188751, - [SMALL_STATE(4971)] = 188775, - [SMALL_STATE(4972)] = 188799, - [SMALL_STATE(4973)] = 188823, - [SMALL_STATE(4974)] = 188847, - [SMALL_STATE(4975)] = 188871, - [SMALL_STATE(4976)] = 188895, - [SMALL_STATE(4977)] = 188935, - [SMALL_STATE(4978)] = 188959, - [SMALL_STATE(4979)] = 189003, - [SMALL_STATE(4980)] = 189027, - [SMALL_STATE(4981)] = 189051, - [SMALL_STATE(4982)] = 189075, - [SMALL_STATE(4983)] = 189099, - [SMALL_STATE(4984)] = 189123, - [SMALL_STATE(4985)] = 189147, - [SMALL_STATE(4986)] = 189171, - [SMALL_STATE(4987)] = 189195, - [SMALL_STATE(4988)] = 189219, - [SMALL_STATE(4989)] = 189243, - [SMALL_STATE(4990)] = 189267, - [SMALL_STATE(4991)] = 189301, - [SMALL_STATE(4992)] = 189325, - [SMALL_STATE(4993)] = 189349, - [SMALL_STATE(4994)] = 189373, - [SMALL_STATE(4995)] = 189397, - [SMALL_STATE(4996)] = 189421, - [SMALL_STATE(4997)] = 189445, - [SMALL_STATE(4998)] = 189469, - [SMALL_STATE(4999)] = 189493, - [SMALL_STATE(5000)] = 189517, - [SMALL_STATE(5001)] = 189541, - [SMALL_STATE(5002)] = 189565, - [SMALL_STATE(5003)] = 189589, - [SMALL_STATE(5004)] = 189613, - [SMALL_STATE(5005)] = 189637, - [SMALL_STATE(5006)] = 189659, - [SMALL_STATE(5007)] = 189681, - [SMALL_STATE(5008)] = 189703, - [SMALL_STATE(5009)] = 189725, - [SMALL_STATE(5010)] = 189747, - [SMALL_STATE(5011)] = 189771, - [SMALL_STATE(5012)] = 189795, - [SMALL_STATE(5013)] = 189819, - [SMALL_STATE(5014)] = 189843, - [SMALL_STATE(5015)] = 189867, - [SMALL_STATE(5016)] = 189891, - [SMALL_STATE(5017)] = 189915, - [SMALL_STATE(5018)] = 189939, - [SMALL_STATE(5019)] = 189963, - [SMALL_STATE(5020)] = 189987, - [SMALL_STATE(5021)] = 190011, - [SMALL_STATE(5022)] = 190035, - [SMALL_STATE(5023)] = 190057, - [SMALL_STATE(5024)] = 190081, - [SMALL_STATE(5025)] = 190103, - [SMALL_STATE(5026)] = 190127, - [SMALL_STATE(5027)] = 190151, - [SMALL_STATE(5028)] = 190173, - [SMALL_STATE(5029)] = 190197, - [SMALL_STATE(5030)] = 190221, - [SMALL_STATE(5031)] = 190263, - [SMALL_STATE(5032)] = 190287, - [SMALL_STATE(5033)] = 190313, - [SMALL_STATE(5034)] = 190339, - [SMALL_STATE(5035)] = 190381, - [SMALL_STATE(5036)] = 190405, - [SMALL_STATE(5037)] = 190429, - [SMALL_STATE(5038)] = 190453, - [SMALL_STATE(5039)] = 190477, - [SMALL_STATE(5040)] = 190501, - [SMALL_STATE(5041)] = 190525, - [SMALL_STATE(5042)] = 190549, - [SMALL_STATE(5043)] = 190573, - [SMALL_STATE(5044)] = 190597, - [SMALL_STATE(5045)] = 190621, - [SMALL_STATE(5046)] = 190661, - [SMALL_STATE(5047)] = 190699, - [SMALL_STATE(5048)] = 190723, - [SMALL_STATE(5049)] = 190747, - [SMALL_STATE(5050)] = 190771, - [SMALL_STATE(5051)] = 190795, - [SMALL_STATE(5052)] = 190819, - [SMALL_STATE(5053)] = 190843, - [SMALL_STATE(5054)] = 190867, - [SMALL_STATE(5055)] = 190891, - [SMALL_STATE(5056)] = 190937, - [SMALL_STATE(5057)] = 190983, - [SMALL_STATE(5058)] = 191007, - [SMALL_STATE(5059)] = 191045, - [SMALL_STATE(5060)] = 191069, - [SMALL_STATE(5061)] = 191106, - [SMALL_STATE(5062)] = 191127, - [SMALL_STATE(5063)] = 191148, - [SMALL_STATE(5064)] = 191169, - [SMALL_STATE(5065)] = 191190, - [SMALL_STATE(5066)] = 191211, - [SMALL_STATE(5067)] = 191232, - [SMALL_STATE(5068)] = 191255, - [SMALL_STATE(5069)] = 191276, - [SMALL_STATE(5070)] = 191297, - [SMALL_STATE(5071)] = 191324, - [SMALL_STATE(5072)] = 191361, - [SMALL_STATE(5073)] = 191382, - [SMALL_STATE(5074)] = 191403, - [SMALL_STATE(5075)] = 191424, - [SMALL_STATE(5076)] = 191447, - [SMALL_STATE(5077)] = 191470, - [SMALL_STATE(5078)] = 191493, - [SMALL_STATE(5079)] = 191516, - [SMALL_STATE(5080)] = 191539, - [SMALL_STATE(5081)] = 191580, - [SMALL_STATE(5082)] = 191603, - [SMALL_STATE(5083)] = 191626, - [SMALL_STATE(5084)] = 191663, - [SMALL_STATE(5085)] = 191684, - [SMALL_STATE(5086)] = 191705, - [SMALL_STATE(5087)] = 191746, - [SMALL_STATE(5088)] = 191767, - [SMALL_STATE(5089)] = 191790, - [SMALL_STATE(5090)] = 191811, - [SMALL_STATE(5091)] = 191852, - [SMALL_STATE(5092)] = 191875, - [SMALL_STATE(5093)] = 191896, - [SMALL_STATE(5094)] = 191919, - [SMALL_STATE(5095)] = 191940, - [SMALL_STATE(5096)] = 191963, - [SMALL_STATE(5097)] = 191984, - [SMALL_STATE(5098)] = 192005, - [SMALL_STATE(5099)] = 192026, - [SMALL_STATE(5100)] = 192059, - [SMALL_STATE(5101)] = 192080, - [SMALL_STATE(5102)] = 192101, - [SMALL_STATE(5103)] = 192122, - [SMALL_STATE(5104)] = 192143, - [SMALL_STATE(5105)] = 192164, - [SMALL_STATE(5106)] = 192185, - [SMALL_STATE(5107)] = 192208, - [SMALL_STATE(5108)] = 192235, - [SMALL_STATE(5109)] = 192256, - [SMALL_STATE(5110)] = 192277, - [SMALL_STATE(5111)] = 192298, - [SMALL_STATE(5112)] = 192321, - [SMALL_STATE(5113)] = 192362, - [SMALL_STATE(5114)] = 192383, - [SMALL_STATE(5115)] = 192404, - [SMALL_STATE(5116)] = 192443, - [SMALL_STATE(5117)] = 192466, - [SMALL_STATE(5118)] = 192487, - [SMALL_STATE(5119)] = 192508, - [SMALL_STATE(5120)] = 192529, - [SMALL_STATE(5121)] = 192552, - [SMALL_STATE(5122)] = 192573, - [SMALL_STATE(5123)] = 192594, - [SMALL_STATE(5124)] = 192615, - [SMALL_STATE(5125)] = 192636, - [SMALL_STATE(5126)] = 192657, - [SMALL_STATE(5127)] = 192678, - [SMALL_STATE(5128)] = 192699, - [SMALL_STATE(5129)] = 192738, - [SMALL_STATE(5130)] = 192759, - [SMALL_STATE(5131)] = 192780, - [SMALL_STATE(5132)] = 192819, - [SMALL_STATE(5133)] = 192840, - [SMALL_STATE(5134)] = 192861, - [SMALL_STATE(5135)] = 192882, - [SMALL_STATE(5136)] = 192909, - [SMALL_STATE(5137)] = 192930, - [SMALL_STATE(5138)] = 192951, - [SMALL_STATE(5139)] = 192972, - [SMALL_STATE(5140)] = 192995, - [SMALL_STATE(5141)] = 193016, - [SMALL_STATE(5142)] = 193037, - [SMALL_STATE(5143)] = 193058, - [SMALL_STATE(5144)] = 193099, - [SMALL_STATE(5145)] = 193120, - [SMALL_STATE(5146)] = 193141, - [SMALL_STATE(5147)] = 193162, - [SMALL_STATE(5148)] = 193183, - [SMALL_STATE(5149)] = 193206, - [SMALL_STATE(5150)] = 193245, - [SMALL_STATE(5151)] = 193268, - [SMALL_STATE(5152)] = 193291, - [SMALL_STATE(5153)] = 193314, - [SMALL_STATE(5154)] = 193337, - [SMALL_STATE(5155)] = 193358, - [SMALL_STATE(5156)] = 193379, - [SMALL_STATE(5157)] = 193402, - [SMALL_STATE(5158)] = 193425, - [SMALL_STATE(5159)] = 193456, - [SMALL_STATE(5160)] = 193479, - [SMALL_STATE(5161)] = 193502, - [SMALL_STATE(5162)] = 193525, - [SMALL_STATE(5163)] = 193546, - [SMALL_STATE(5164)] = 193569, - [SMALL_STATE(5165)] = 193592, - [SMALL_STATE(5166)] = 193613, - [SMALL_STATE(5167)] = 193636, - [SMALL_STATE(5168)] = 193659, - [SMALL_STATE(5169)] = 193682, - [SMALL_STATE(5170)] = 193709, - [SMALL_STATE(5171)] = 193730, - [SMALL_STATE(5172)] = 193771, - [SMALL_STATE(5173)] = 193794, - [SMALL_STATE(5174)] = 193821, - [SMALL_STATE(5175)] = 193844, - [SMALL_STATE(5176)] = 193865, - [SMALL_STATE(5177)] = 193892, - [SMALL_STATE(5178)] = 193913, - [SMALL_STATE(5179)] = 193934, - [SMALL_STATE(5180)] = 193955, - [SMALL_STATE(5181)] = 193976, - [SMALL_STATE(5182)] = 194017, - [SMALL_STATE(5183)] = 194058, - [SMALL_STATE(5184)] = 194097, - [SMALL_STATE(5185)] = 194124, - [SMALL_STATE(5186)] = 194145, - [SMALL_STATE(5187)] = 194166, - [SMALL_STATE(5188)] = 194207, - [SMALL_STATE(5189)] = 194228, - [SMALL_STATE(5190)] = 194249, - [SMALL_STATE(5191)] = 194288, - [SMALL_STATE(5192)] = 194309, - [SMALL_STATE(5193)] = 194348, - [SMALL_STATE(5194)] = 194387, - [SMALL_STATE(5195)] = 194408, - [SMALL_STATE(5196)] = 194431, - [SMALL_STATE(5197)] = 194458, - [SMALL_STATE(5198)] = 194481, - [SMALL_STATE(5199)] = 194504, - [SMALL_STATE(5200)] = 194543, - [SMALL_STATE(5201)] = 194566, - [SMALL_STATE(5202)] = 194593, - [SMALL_STATE(5203)] = 194630, - [SMALL_STATE(5204)] = 194653, - [SMALL_STATE(5205)] = 194690, - [SMALL_STATE(5206)] = 194727, - [SMALL_STATE(5207)] = 194764, - [SMALL_STATE(5208)] = 194801, - [SMALL_STATE(5209)] = 194838, - [SMALL_STATE(5210)] = 194861, - [SMALL_STATE(5211)] = 194884, - [SMALL_STATE(5212)] = 194921, - [SMALL_STATE(5213)] = 194948, - [SMALL_STATE(5214)] = 194971, - [SMALL_STATE(5215)] = 194992, - [SMALL_STATE(5216)] = 195027, - [SMALL_STATE(5217)] = 195062, - [SMALL_STATE(5218)] = 195097, - [SMALL_STATE(5219)] = 195132, - [SMALL_STATE(5220)] = 195159, - [SMALL_STATE(5221)] = 195180, - [SMALL_STATE(5222)] = 195221, - [SMALL_STATE(5223)] = 195255, - [SMALL_STATE(5224)] = 195281, - [SMALL_STATE(5225)] = 195309, - [SMALL_STATE(5226)] = 195347, - [SMALL_STATE(5227)] = 195373, - [SMALL_STATE(5228)] = 195397, - [SMALL_STATE(5229)] = 195435, - [SMALL_STATE(5230)] = 195467, - [SMALL_STATE(5231)] = 195493, - [SMALL_STATE(5232)] = 195519, - [SMALL_STATE(5233)] = 195545, - [SMALL_STATE(5234)] = 195571, - [SMALL_STATE(5235)] = 195609, - [SMALL_STATE(5236)] = 195645, - [SMALL_STATE(5237)] = 195671, - [SMALL_STATE(5238)] = 195707, - [SMALL_STATE(5239)] = 195731, - [SMALL_STATE(5240)] = 195755, - [SMALL_STATE(5241)] = 195787, - [SMALL_STATE(5242)] = 195819, - [SMALL_STATE(5243)] = 195853, - [SMALL_STATE(5244)] = 195885, - [SMALL_STATE(5245)] = 195909, - [SMALL_STATE(5246)] = 195947, - [SMALL_STATE(5247)] = 195979, - [SMALL_STATE(5248)] = 196005, - [SMALL_STATE(5249)] = 196031, - [SMALL_STATE(5250)] = 196057, - [SMALL_STATE(5251)] = 196081, - [SMALL_STATE(5252)] = 196105, - [SMALL_STATE(5253)] = 196141, - [SMALL_STATE(5254)] = 196173, - [SMALL_STATE(5255)] = 196205, - [SMALL_STATE(5256)] = 196227, - [SMALL_STATE(5257)] = 196253, - [SMALL_STATE(5258)] = 196285, - [SMALL_STATE(5259)] = 196319, - [SMALL_STATE(5260)] = 196347, - [SMALL_STATE(5261)] = 196369, - [SMALL_STATE(5262)] = 196405, - [SMALL_STATE(5263)] = 196439, - [SMALL_STATE(5264)] = 196465, - [SMALL_STATE(5265)] = 196497, - [SMALL_STATE(5266)] = 196521, - [SMALL_STATE(5267)] = 196555, - [SMALL_STATE(5268)] = 196591, - [SMALL_STATE(5269)] = 196623, - [SMALL_STATE(5270)] = 196647, - [SMALL_STATE(5271)] = 196681, - [SMALL_STATE(5272)] = 196713, - [SMALL_STATE(5273)] = 196739, - [SMALL_STATE(5274)] = 196768, - [SMALL_STATE(5275)] = 196795, - [SMALL_STATE(5276)] = 196830, - [SMALL_STATE(5277)] = 196865, - [SMALL_STATE(5278)] = 196900, - [SMALL_STATE(5279)] = 196931, - [SMALL_STATE(5280)] = 196966, - [SMALL_STATE(5281)] = 196997, - [SMALL_STATE(5282)] = 197028, - [SMALL_STATE(5283)] = 197049, - [SMALL_STATE(5284)] = 197084, - [SMALL_STATE(5285)] = 197119, - [SMALL_STATE(5286)] = 197148, - [SMALL_STATE(5287)] = 197171, - [SMALL_STATE(5288)] = 197202, - [SMALL_STATE(5289)] = 197223, - [SMALL_STATE(5290)] = 197246, - [SMALL_STATE(5291)] = 197273, - [SMALL_STATE(5292)] = 197308, - [SMALL_STATE(5293)] = 197343, - [SMALL_STATE(5294)] = 197378, - [SMALL_STATE(5295)] = 197411, - [SMALL_STATE(5296)] = 197436, - [SMALL_STATE(5297)] = 197461, - [SMALL_STATE(5298)] = 197482, - [SMALL_STATE(5299)] = 197507, - [SMALL_STATE(5300)] = 197538, - [SMALL_STATE(5301)] = 197563, - [SMALL_STATE(5302)] = 197596, - [SMALL_STATE(5303)] = 197629, - [SMALL_STATE(5304)] = 197650, - [SMALL_STATE(5305)] = 197681, - [SMALL_STATE(5306)] = 197716, - [SMALL_STATE(5307)] = 197749, - [SMALL_STATE(5308)] = 197778, - [SMALL_STATE(5309)] = 197807, - [SMALL_STATE(5310)] = 197842, - [SMALL_STATE(5311)] = 197877, - [SMALL_STATE(5312)] = 197912, - [SMALL_STATE(5313)] = 197947, - [SMALL_STATE(5314)] = 197972, - [SMALL_STATE(5315)] = 198007, - [SMALL_STATE(5316)] = 198042, - [SMALL_STATE(5317)] = 198063, - [SMALL_STATE(5318)] = 198088, - [SMALL_STATE(5319)] = 198123, - [SMALL_STATE(5320)] = 198158, - [SMALL_STATE(5321)] = 198191, - [SMALL_STATE(5322)] = 198216, - [SMALL_STATE(5323)] = 198237, - [SMALL_STATE(5324)] = 198266, - [SMALL_STATE(5325)] = 198299, - [SMALL_STATE(5326)] = 198334, - [SMALL_STATE(5327)] = 198369, - [SMALL_STATE(5328)] = 198404, - [SMALL_STATE(5329)] = 198439, - [SMALL_STATE(5330)] = 198474, - [SMALL_STATE(5331)] = 198509, - [SMALL_STATE(5332)] = 198544, - [SMALL_STATE(5333)] = 198577, - [SMALL_STATE(5334)] = 198598, - [SMALL_STATE(5335)] = 198631, - [SMALL_STATE(5336)] = 198666, - [SMALL_STATE(5337)] = 198701, - [SMALL_STATE(5338)] = 198736, - [SMALL_STATE(5339)] = 198771, - [SMALL_STATE(5340)] = 198806, - [SMALL_STATE(5341)] = 198827, - [SMALL_STATE(5342)] = 198856, - [SMALL_STATE(5343)] = 198877, - [SMALL_STATE(5344)] = 198898, - [SMALL_STATE(5345)] = 198919, - [SMALL_STATE(5346)] = 198954, - [SMALL_STATE(5347)] = 198975, - [SMALL_STATE(5348)] = 198996, - [SMALL_STATE(5349)] = 199031, - [SMALL_STATE(5350)] = 199054, - [SMALL_STATE(5351)] = 199077, - [SMALL_STATE(5352)] = 199112, - [SMALL_STATE(5353)] = 199147, - [SMALL_STATE(5354)] = 199170, - [SMALL_STATE(5355)] = 199201, - [SMALL_STATE(5356)] = 199236, - [SMALL_STATE(5357)] = 199271, - [SMALL_STATE(5358)] = 199306, - [SMALL_STATE(5359)] = 199329, - [SMALL_STATE(5360)] = 199362, - [SMALL_STATE(5361)] = 199395, - [SMALL_STATE(5362)] = 199430, - [SMALL_STATE(5363)] = 199453, - [SMALL_STATE(5364)] = 199488, - [SMALL_STATE(5365)] = 199518, - [SMALL_STATE(5366)] = 199548, - [SMALL_STATE(5367)] = 199578, - [SMALL_STATE(5368)] = 199608, - [SMALL_STATE(5369)] = 199638, - [SMALL_STATE(5370)] = 199668, - [SMALL_STATE(5371)] = 199692, - [SMALL_STATE(5372)] = 199716, - [SMALL_STATE(5373)] = 199746, - [SMALL_STATE(5374)] = 199776, - [SMALL_STATE(5375)] = 199800, - [SMALL_STATE(5376)] = 199822, - [SMALL_STATE(5377)] = 199846, - [SMALL_STATE(5378)] = 199876, - [SMALL_STATE(5379)] = 199906, - [SMALL_STATE(5380)] = 199930, - [SMALL_STATE(5381)] = 199960, - [SMALL_STATE(5382)] = 199990, - [SMALL_STATE(5383)] = 200020, - [SMALL_STATE(5384)] = 200050, - [SMALL_STATE(5385)] = 200080, - [SMALL_STATE(5386)] = 200110, - [SMALL_STATE(5387)] = 200130, - [SMALL_STATE(5388)] = 200160, - [SMALL_STATE(5389)] = 200190, - [SMALL_STATE(5390)] = 200210, - [SMALL_STATE(5391)] = 200240, - [SMALL_STATE(5392)] = 200260, - [SMALL_STATE(5393)] = 200290, - [SMALL_STATE(5394)] = 200310, - [SMALL_STATE(5395)] = 200340, - [SMALL_STATE(5396)] = 200368, - [SMALL_STATE(5397)] = 200398, - [SMALL_STATE(5398)] = 200428, - [SMALL_STATE(5399)] = 200458, - [SMALL_STATE(5400)] = 200482, - [SMALL_STATE(5401)] = 200512, - [SMALL_STATE(5402)] = 200542, - [SMALL_STATE(5403)] = 200566, - [SMALL_STATE(5404)] = 200596, - [SMALL_STATE(5405)] = 200618, - [SMALL_STATE(5406)] = 200640, - [SMALL_STATE(5407)] = 200670, - [SMALL_STATE(5408)] = 200700, - [SMALL_STATE(5409)] = 200730, - [SMALL_STATE(5410)] = 200760, - [SMALL_STATE(5411)] = 200780, - [SMALL_STATE(5412)] = 200810, - [SMALL_STATE(5413)] = 200842, - [SMALL_STATE(5414)] = 200864, - [SMALL_STATE(5415)] = 200884, - [SMALL_STATE(5416)] = 200914, - [SMALL_STATE(5417)] = 200934, - [SMALL_STATE(5418)] = 200964, - [SMALL_STATE(5419)] = 200984, - [SMALL_STATE(5420)] = 201014, - [SMALL_STATE(5421)] = 201044, - [SMALL_STATE(5422)] = 201066, - [SMALL_STATE(5423)] = 201096, - [SMALL_STATE(5424)] = 201116, - [SMALL_STATE(5425)] = 201136, - [SMALL_STATE(5426)] = 201156, - [SMALL_STATE(5427)] = 201186, - [SMALL_STATE(5428)] = 201216, - [SMALL_STATE(5429)] = 201240, - [SMALL_STATE(5430)] = 201262, - [SMALL_STATE(5431)] = 201282, - [SMALL_STATE(5432)] = 201304, - [SMALL_STATE(5433)] = 201334, - [SMALL_STATE(5434)] = 201364, - [SMALL_STATE(5435)] = 201394, - [SMALL_STATE(5436)] = 201414, - [SMALL_STATE(5437)] = 201444, - [SMALL_STATE(5438)] = 201466, - [SMALL_STATE(5439)] = 201490, - [SMALL_STATE(5440)] = 201514, - [SMALL_STATE(5441)] = 201544, - [SMALL_STATE(5442)] = 201568, - [SMALL_STATE(5443)] = 201598, - [SMALL_STATE(5444)] = 201628, - [SMALL_STATE(5445)] = 201658, - [SMALL_STATE(5446)] = 201678, - [SMALL_STATE(5447)] = 201708, - [SMALL_STATE(5448)] = 201732, - [SMALL_STATE(5449)] = 201752, - [SMALL_STATE(5450)] = 201784, - [SMALL_STATE(5451)] = 201804, - [SMALL_STATE(5452)] = 201824, - [SMALL_STATE(5453)] = 201850, - [SMALL_STATE(5454)] = 201880, - [SMALL_STATE(5455)] = 201910, - [SMALL_STATE(5456)] = 201934, - [SMALL_STATE(5457)] = 201964, - [SMALL_STATE(5458)] = 201994, - [SMALL_STATE(5459)] = 202011, - [SMALL_STATE(5460)] = 202038, - [SMALL_STATE(5461)] = 202065, - [SMALL_STATE(5462)] = 202092, - [SMALL_STATE(5463)] = 202119, - [SMALL_STATE(5464)] = 202146, - [SMALL_STATE(5465)] = 202173, - [SMALL_STATE(5466)] = 202200, - [SMALL_STATE(5467)] = 202227, - [SMALL_STATE(5468)] = 202254, - [SMALL_STATE(5469)] = 202273, - [SMALL_STATE(5470)] = 202292, - [SMALL_STATE(5471)] = 202311, - [SMALL_STATE(5472)] = 202328, - [SMALL_STATE(5473)] = 202355, - [SMALL_STATE(5474)] = 202382, - [SMALL_STATE(5475)] = 202407, - [SMALL_STATE(5476)] = 202434, - [SMALL_STATE(5477)] = 202459, - [SMALL_STATE(5478)] = 202486, - [SMALL_STATE(5479)] = 202513, - [SMALL_STATE(5480)] = 202540, - [SMALL_STATE(5481)] = 202567, - [SMALL_STATE(5482)] = 202594, - [SMALL_STATE(5483)] = 202621, - [SMALL_STATE(5484)] = 202648, - [SMALL_STATE(5485)] = 202675, - [SMALL_STATE(5486)] = 202702, - [SMALL_STATE(5487)] = 202729, - [SMALL_STATE(5488)] = 202756, - [SMALL_STATE(5489)] = 202783, - [SMALL_STATE(5490)] = 202810, - [SMALL_STATE(5491)] = 202837, - [SMALL_STATE(5492)] = 202864, - [SMALL_STATE(5493)] = 202891, - [SMALL_STATE(5494)] = 202918, - [SMALL_STATE(5495)] = 202937, - [SMALL_STATE(5496)] = 202964, - [SMALL_STATE(5497)] = 202991, - [SMALL_STATE(5498)] = 203018, - [SMALL_STATE(5499)] = 203045, - [SMALL_STATE(5500)] = 203072, - [SMALL_STATE(5501)] = 203099, - [SMALL_STATE(5502)] = 203126, - [SMALL_STATE(5503)] = 203145, - [SMALL_STATE(5504)] = 203172, - [SMALL_STATE(5505)] = 203191, - [SMALL_STATE(5506)] = 203218, - [SMALL_STATE(5507)] = 203245, - [SMALL_STATE(5508)] = 203272, - [SMALL_STATE(5509)] = 203297, - [SMALL_STATE(5510)] = 203318, - [SMALL_STATE(5511)] = 203337, - [SMALL_STATE(5512)] = 203358, - [SMALL_STATE(5513)] = 203385, - [SMALL_STATE(5514)] = 203404, - [SMALL_STATE(5515)] = 203425, - [SMALL_STATE(5516)] = 203444, - [SMALL_STATE(5517)] = 203471, - [SMALL_STATE(5518)] = 203496, - [SMALL_STATE(5519)] = 203525, - [SMALL_STATE(5520)] = 203544, - [SMALL_STATE(5521)] = 203571, - [SMALL_STATE(5522)] = 203590, - [SMALL_STATE(5523)] = 203609, - [SMALL_STATE(5524)] = 203630, - [SMALL_STATE(5525)] = 203657, - [SMALL_STATE(5526)] = 203680, - [SMALL_STATE(5527)] = 203701, - [SMALL_STATE(5528)] = 203728, - [SMALL_STATE(5529)] = 203747, - [SMALL_STATE(5530)] = 203770, - [SMALL_STATE(5531)] = 203797, - [SMALL_STATE(5532)] = 203824, - [SMALL_STATE(5533)] = 203843, - [SMALL_STATE(5534)] = 203870, - [SMALL_STATE(5535)] = 203897, - [SMALL_STATE(5536)] = 203920, - [SMALL_STATE(5537)] = 203947, - [SMALL_STATE(5538)] = 203974, - [SMALL_STATE(5539)] = 204001, - [SMALL_STATE(5540)] = 204028, - [SMALL_STATE(5541)] = 204055, - [SMALL_STATE(5542)] = 204082, - [SMALL_STATE(5543)] = 204109, - [SMALL_STATE(5544)] = 204136, - [SMALL_STATE(5545)] = 204163, - [SMALL_STATE(5546)] = 204190, - [SMALL_STATE(5547)] = 204217, - [SMALL_STATE(5548)] = 204244, - [SMALL_STATE(5549)] = 204271, - [SMALL_STATE(5550)] = 204298, - [SMALL_STATE(5551)] = 204321, - [SMALL_STATE(5552)] = 204348, - [SMALL_STATE(5553)] = 204375, - [SMALL_STATE(5554)] = 204402, - [SMALL_STATE(5555)] = 204429, - [SMALL_STATE(5556)] = 204456, - [SMALL_STATE(5557)] = 204483, - [SMALL_STATE(5558)] = 204510, - [SMALL_STATE(5559)] = 204537, - [SMALL_STATE(5560)] = 204564, - [SMALL_STATE(5561)] = 204591, - [SMALL_STATE(5562)] = 204612, - [SMALL_STATE(5563)] = 204631, - [SMALL_STATE(5564)] = 204648, - [SMALL_STATE(5565)] = 204667, - [SMALL_STATE(5566)] = 204688, - [SMALL_STATE(5567)] = 204707, - [SMALL_STATE(5568)] = 204726, - [SMALL_STATE(5569)] = 204751, - [SMALL_STATE(5570)] = 204780, - [SMALL_STATE(5571)] = 204801, - [SMALL_STATE(5572)] = 204822, - [SMALL_STATE(5573)] = 204843, - [SMALL_STATE(5574)] = 204862, - [SMALL_STATE(5575)] = 204879, - [SMALL_STATE(5576)] = 204900, - [SMALL_STATE(5577)] = 204919, - [SMALL_STATE(5578)] = 204948, - [SMALL_STATE(5579)] = 204967, - [SMALL_STATE(5580)] = 204988, - [SMALL_STATE(5581)] = 205007, - [SMALL_STATE(5582)] = 205026, - [SMALL_STATE(5583)] = 205045, - [SMALL_STATE(5584)] = 205064, - [SMALL_STATE(5585)] = 205085, - [SMALL_STATE(5586)] = 205102, - [SMALL_STATE(5587)] = 205129, - [SMALL_STATE(5588)] = 205150, - [SMALL_STATE(5589)] = 205177, - [SMALL_STATE(5590)] = 205198, - [SMALL_STATE(5591)] = 205219, - [SMALL_STATE(5592)] = 205240, - [SMALL_STATE(5593)] = 205261, - [SMALL_STATE(5594)] = 205280, - [SMALL_STATE(5595)] = 205307, - [SMALL_STATE(5596)] = 205334, - [SMALL_STATE(5597)] = 205351, - [SMALL_STATE(5598)] = 205370, - [SMALL_STATE(5599)] = 205387, - [SMALL_STATE(5600)] = 205414, - [SMALL_STATE(5601)] = 205441, - [SMALL_STATE(5602)] = 205460, - [SMALL_STATE(5603)] = 205477, - [SMALL_STATE(5604)] = 205494, - [SMALL_STATE(5605)] = 205521, - [SMALL_STATE(5606)] = 205548, - [SMALL_STATE(5607)] = 205565, - [SMALL_STATE(5608)] = 205586, - [SMALL_STATE(5609)] = 205613, - [SMALL_STATE(5610)] = 205630, - [SMALL_STATE(5611)] = 205647, - [SMALL_STATE(5612)] = 205666, - [SMALL_STATE(5613)] = 205693, - [SMALL_STATE(5614)] = 205712, - [SMALL_STATE(5615)] = 205739, - [SMALL_STATE(5616)] = 205766, - [SMALL_STATE(5617)] = 205793, - [SMALL_STATE(5618)] = 205820, - [SMALL_STATE(5619)] = 205847, - [SMALL_STATE(5620)] = 205874, - [SMALL_STATE(5621)] = 205899, - [SMALL_STATE(5622)] = 205926, - [SMALL_STATE(5623)] = 205953, - [SMALL_STATE(5624)] = 205980, - [SMALL_STATE(5625)] = 206007, - [SMALL_STATE(5626)] = 206034, - [SMALL_STATE(5627)] = 206061, - [SMALL_STATE(5628)] = 206087, - [SMALL_STATE(5629)] = 206113, - [SMALL_STATE(5630)] = 206139, - [SMALL_STATE(5631)] = 206157, - [SMALL_STATE(5632)] = 206183, - [SMALL_STATE(5633)] = 206201, - [SMALL_STATE(5634)] = 206219, - [SMALL_STATE(5635)] = 206237, - [SMALL_STATE(5636)] = 206255, - [SMALL_STATE(5637)] = 206281, - [SMALL_STATE(5638)] = 206299, - [SMALL_STATE(5639)] = 206325, - [SMALL_STATE(5640)] = 206353, - [SMALL_STATE(5641)] = 206379, - [SMALL_STATE(5642)] = 206405, - [SMALL_STATE(5643)] = 206431, - [SMALL_STATE(5644)] = 206449, - [SMALL_STATE(5645)] = 206473, - [SMALL_STATE(5646)] = 206499, - [SMALL_STATE(5647)] = 206525, - [SMALL_STATE(5648)] = 206551, - [SMALL_STATE(5649)] = 206567, - [SMALL_STATE(5650)] = 206593, - [SMALL_STATE(5651)] = 206609, - [SMALL_STATE(5652)] = 206633, - [SMALL_STATE(5653)] = 206657, - [SMALL_STATE(5654)] = 206681, - [SMALL_STATE(5655)] = 206697, - [SMALL_STATE(5656)] = 206721, - [SMALL_STATE(5657)] = 206747, - [SMALL_STATE(5658)] = 206773, - [SMALL_STATE(5659)] = 206797, - [SMALL_STATE(5660)] = 206821, - [SMALL_STATE(5661)] = 206837, - [SMALL_STATE(5662)] = 206861, - [SMALL_STATE(5663)] = 206885, - [SMALL_STATE(5664)] = 206909, - [SMALL_STATE(5665)] = 206933, - [SMALL_STATE(5666)] = 206957, - [SMALL_STATE(5667)] = 206983, - [SMALL_STATE(5668)] = 207007, - [SMALL_STATE(5669)] = 207031, - [SMALL_STATE(5670)] = 207055, - [SMALL_STATE(5671)] = 207079, - [SMALL_STATE(5672)] = 207103, - [SMALL_STATE(5673)] = 207127, - [SMALL_STATE(5674)] = 207151, - [SMALL_STATE(5675)] = 207177, - [SMALL_STATE(5676)] = 207201, - [SMALL_STATE(5677)] = 207225, - [SMALL_STATE(5678)] = 207247, - [SMALL_STATE(5679)] = 207273, - [SMALL_STATE(5680)] = 207299, - [SMALL_STATE(5681)] = 207325, - [SMALL_STATE(5682)] = 207351, - [SMALL_STATE(5683)] = 207377, - [SMALL_STATE(5684)] = 207403, - [SMALL_STATE(5685)] = 207429, - [SMALL_STATE(5686)] = 207455, - [SMALL_STATE(5687)] = 207473, - [SMALL_STATE(5688)] = 207491, - [SMALL_STATE(5689)] = 207507, - [SMALL_STATE(5690)] = 207533, - [SMALL_STATE(5691)] = 207551, - [SMALL_STATE(5692)] = 207577, - [SMALL_STATE(5693)] = 207595, - [SMALL_STATE(5694)] = 207615, - [SMALL_STATE(5695)] = 207641, - [SMALL_STATE(5696)] = 207667, - [SMALL_STATE(5697)] = 207693, - [SMALL_STATE(5698)] = 207719, - [SMALL_STATE(5699)] = 207737, - [SMALL_STATE(5700)] = 207755, - [SMALL_STATE(5701)] = 207781, - [SMALL_STATE(5702)] = 207807, - [SMALL_STATE(5703)] = 207833, - [SMALL_STATE(5704)] = 207859, - [SMALL_STATE(5705)] = 207879, - [SMALL_STATE(5706)] = 207897, - [SMALL_STATE(5707)] = 207923, - [SMALL_STATE(5708)] = 207949, - [SMALL_STATE(5709)] = 207975, - [SMALL_STATE(5710)] = 207993, - [SMALL_STATE(5711)] = 208021, - [SMALL_STATE(5712)] = 208045, - [SMALL_STATE(5713)] = 208065, - [SMALL_STATE(5714)] = 208091, - [SMALL_STATE(5715)] = 208109, - [SMALL_STATE(5716)] = 208129, - [SMALL_STATE(5717)] = 208149, - [SMALL_STATE(5718)] = 208175, - [SMALL_STATE(5719)] = 208195, - [SMALL_STATE(5720)] = 208221, - [SMALL_STATE(5721)] = 208237, - [SMALL_STATE(5722)] = 208263, - [SMALL_STATE(5723)] = 208281, - [SMALL_STATE(5724)] = 208299, - [SMALL_STATE(5725)] = 208319, - [SMALL_STATE(5726)] = 208339, - [SMALL_STATE(5727)] = 208363, - [SMALL_STATE(5728)] = 208387, - [SMALL_STATE(5729)] = 208409, - [SMALL_STATE(5730)] = 208433, - [SMALL_STATE(5731)] = 208453, - [SMALL_STATE(5732)] = 208479, - [SMALL_STATE(5733)] = 208497, - [SMALL_STATE(5734)] = 208523, - [SMALL_STATE(5735)] = 208543, - [SMALL_STATE(5736)] = 208561, - [SMALL_STATE(5737)] = 208587, - [SMALL_STATE(5738)] = 208613, - [SMALL_STATE(5739)] = 208639, - [SMALL_STATE(5740)] = 208665, - [SMALL_STATE(5741)] = 208691, - [SMALL_STATE(5742)] = 208717, - [SMALL_STATE(5743)] = 208743, - [SMALL_STATE(5744)] = 208769, - [SMALL_STATE(5745)] = 208793, - [SMALL_STATE(5746)] = 208819, - [SMALL_STATE(5747)] = 208837, - [SMALL_STATE(5748)] = 208863, - [SMALL_STATE(5749)] = 208889, - [SMALL_STATE(5750)] = 208911, - [SMALL_STATE(5751)] = 208929, - [SMALL_STATE(5752)] = 208955, - [SMALL_STATE(5753)] = 208973, - [SMALL_STATE(5754)] = 208999, - [SMALL_STATE(5755)] = 209025, - [SMALL_STATE(5756)] = 209050, - [SMALL_STATE(5757)] = 209073, - [SMALL_STATE(5758)] = 209098, - [SMALL_STATE(5759)] = 209123, - [SMALL_STATE(5760)] = 209148, - [SMALL_STATE(5761)] = 209171, - [SMALL_STATE(5762)] = 209194, - [SMALL_STATE(5763)] = 209219, - [SMALL_STATE(5764)] = 209244, - [SMALL_STATE(5765)] = 209263, - [SMALL_STATE(5766)] = 209288, - [SMALL_STATE(5767)] = 209311, - [SMALL_STATE(5768)] = 209336, - [SMALL_STATE(5769)] = 209361, - [SMALL_STATE(5770)] = 209384, - [SMALL_STATE(5771)] = 209409, - [SMALL_STATE(5772)] = 209430, - [SMALL_STATE(5773)] = 209451, - [SMALL_STATE(5774)] = 209476, - [SMALL_STATE(5775)] = 209497, - [SMALL_STATE(5776)] = 209518, - [SMALL_STATE(5777)] = 209541, - [SMALL_STATE(5778)] = 209566, - [SMALL_STATE(5779)] = 209591, - [SMALL_STATE(5780)] = 209614, - [SMALL_STATE(5781)] = 209639, - [SMALL_STATE(5782)] = 209656, - [SMALL_STATE(5783)] = 209677, - [SMALL_STATE(5784)] = 209694, - [SMALL_STATE(5785)] = 209719, - [SMALL_STATE(5786)] = 209742, - [SMALL_STATE(5787)] = 209761, - [SMALL_STATE(5788)] = 209784, - [SMALL_STATE(5789)] = 209809, - [SMALL_STATE(5790)] = 209834, - [SMALL_STATE(5791)] = 209857, - [SMALL_STATE(5792)] = 209882, - [SMALL_STATE(5793)] = 209907, - [SMALL_STATE(5794)] = 209930, - [SMALL_STATE(5795)] = 209947, - [SMALL_STATE(5796)] = 209964, - [SMALL_STATE(5797)] = 209987, - [SMALL_STATE(5798)] = 210012, - [SMALL_STATE(5799)] = 210037, - [SMALL_STATE(5800)] = 210060, - [SMALL_STATE(5801)] = 210085, - [SMALL_STATE(5802)] = 210108, - [SMALL_STATE(5803)] = 210133, - [SMALL_STATE(5804)] = 210158, - [SMALL_STATE(5805)] = 210183, - [SMALL_STATE(5806)] = 210206, - [SMALL_STATE(5807)] = 210231, - [SMALL_STATE(5808)] = 210256, - [SMALL_STATE(5809)] = 210281, - [SMALL_STATE(5810)] = 210306, - [SMALL_STATE(5811)] = 210329, - [SMALL_STATE(5812)] = 210354, - [SMALL_STATE(5813)] = 210379, - [SMALL_STATE(5814)] = 210400, - [SMALL_STATE(5815)] = 210417, - [SMALL_STATE(5816)] = 210442, - [SMALL_STATE(5817)] = 210467, - [SMALL_STATE(5818)] = 210482, - [SMALL_STATE(5819)] = 210497, - [SMALL_STATE(5820)] = 210520, - [SMALL_STATE(5821)] = 210545, - [SMALL_STATE(5822)] = 210570, - [SMALL_STATE(5823)] = 210595, - [SMALL_STATE(5824)] = 210618, - [SMALL_STATE(5825)] = 210635, - [SMALL_STATE(5826)] = 210660, - [SMALL_STATE(5827)] = 210681, - [SMALL_STATE(5828)] = 210706, - [SMALL_STATE(5829)] = 210725, - [SMALL_STATE(5830)] = 210748, - [SMALL_STATE(5831)] = 210767, - [SMALL_STATE(5832)] = 210792, - [SMALL_STATE(5833)] = 210817, - [SMALL_STATE(5834)] = 210836, - [SMALL_STATE(5835)] = 210859, - [SMALL_STATE(5836)] = 210884, - [SMALL_STATE(5837)] = 210909, - [SMALL_STATE(5838)] = 210924, - [SMALL_STATE(5839)] = 210949, - [SMALL_STATE(5840)] = 210972, - [SMALL_STATE(5841)] = 210995, - [SMALL_STATE(5842)] = 211020, - [SMALL_STATE(5843)] = 211037, - [SMALL_STATE(5844)] = 211062, - [SMALL_STATE(5845)] = 211085, - [SMALL_STATE(5846)] = 211108, - [SMALL_STATE(5847)] = 211127, - [SMALL_STATE(5848)] = 211152, - [SMALL_STATE(5849)] = 211177, - [SMALL_STATE(5850)] = 211196, - [SMALL_STATE(5851)] = 211221, - [SMALL_STATE(5852)] = 211244, - [SMALL_STATE(5853)] = 211267, - [SMALL_STATE(5854)] = 211292, - [SMALL_STATE(5855)] = 211317, - [SMALL_STATE(5856)] = 211340, - [SMALL_STATE(5857)] = 211363, - [SMALL_STATE(5858)] = 211386, - [SMALL_STATE(5859)] = 211407, - [SMALL_STATE(5860)] = 211430, - [SMALL_STATE(5861)] = 211455, - [SMALL_STATE(5862)] = 211480, - [SMALL_STATE(5863)] = 211505, - [SMALL_STATE(5864)] = 211530, - [SMALL_STATE(5865)] = 211553, - [SMALL_STATE(5866)] = 211576, - [SMALL_STATE(5867)] = 211601, - [SMALL_STATE(5868)] = 211626, - [SMALL_STATE(5869)] = 211647, - [SMALL_STATE(5870)] = 211672, - [SMALL_STATE(5871)] = 211697, - [SMALL_STATE(5872)] = 211722, - [SMALL_STATE(5873)] = 211747, - [SMALL_STATE(5874)] = 211772, - [SMALL_STATE(5875)] = 211797, - [SMALL_STATE(5876)] = 211822, - [SMALL_STATE(5877)] = 211847, - [SMALL_STATE(5878)] = 211872, - [SMALL_STATE(5879)] = 211891, - [SMALL_STATE(5880)] = 211916, - [SMALL_STATE(5881)] = 211941, - [SMALL_STATE(5882)] = 211964, - [SMALL_STATE(5883)] = 211987, - [SMALL_STATE(5884)] = 212012, - [SMALL_STATE(5885)] = 212037, - [SMALL_STATE(5886)] = 212062, - [SMALL_STATE(5887)] = 212079, - [SMALL_STATE(5888)] = 212102, - [SMALL_STATE(5889)] = 212127, - [SMALL_STATE(5890)] = 212148, - [SMALL_STATE(5891)] = 212173, - [SMALL_STATE(5892)] = 212198, - [SMALL_STATE(5893)] = 212223, - [SMALL_STATE(5894)] = 212248, - [SMALL_STATE(5895)] = 212269, - [SMALL_STATE(5896)] = 212294, - [SMALL_STATE(5897)] = 212319, - [SMALL_STATE(5898)] = 212344, - [SMALL_STATE(5899)] = 212361, - [SMALL_STATE(5900)] = 212380, - [SMALL_STATE(5901)] = 212399, - [SMALL_STATE(5902)] = 212424, - [SMALL_STATE(5903)] = 212449, - [SMALL_STATE(5904)] = 212466, - [SMALL_STATE(5905)] = 212487, - [SMALL_STATE(5906)] = 212512, - [SMALL_STATE(5907)] = 212529, - [SMALL_STATE(5908)] = 212554, - [SMALL_STATE(5909)] = 212579, - [SMALL_STATE(5910)] = 212596, - [SMALL_STATE(5911)] = 212613, - [SMALL_STATE(5912)] = 212634, - [SMALL_STATE(5913)] = 212655, - [SMALL_STATE(5914)] = 212680, - [SMALL_STATE(5915)] = 212701, - [SMALL_STATE(5916)] = 212718, - [SMALL_STATE(5917)] = 212743, - [SMALL_STATE(5918)] = 212768, - [SMALL_STATE(5919)] = 212791, - [SMALL_STATE(5920)] = 212812, - [SMALL_STATE(5921)] = 212831, - [SMALL_STATE(5922)] = 212854, - [SMALL_STATE(5923)] = 212869, - [SMALL_STATE(5924)] = 212886, - [SMALL_STATE(5925)] = 212911, - [SMALL_STATE(5926)] = 212936, - [SMALL_STATE(5927)] = 212953, - [SMALL_STATE(5928)] = 212968, - [SMALL_STATE(5929)] = 212989, - [SMALL_STATE(5930)] = 213008, - [SMALL_STATE(5931)] = 213033, - [SMALL_STATE(5932)] = 213052, - [SMALL_STATE(5933)] = 213069, - [SMALL_STATE(5934)] = 213088, - [SMALL_STATE(5935)] = 213107, - [SMALL_STATE(5936)] = 213130, - [SMALL_STATE(5937)] = 213149, - [SMALL_STATE(5938)] = 213174, - [SMALL_STATE(5939)] = 213199, - [SMALL_STATE(5940)] = 213224, - [SMALL_STATE(5941)] = 213245, - [SMALL_STATE(5942)] = 213270, - [SMALL_STATE(5943)] = 213295, - [SMALL_STATE(5944)] = 213320, - [SMALL_STATE(5945)] = 213345, - [SMALL_STATE(5946)] = 213370, - [SMALL_STATE(5947)] = 213391, - [SMALL_STATE(5948)] = 213412, - [SMALL_STATE(5949)] = 213437, - [SMALL_STATE(5950)] = 213454, - [SMALL_STATE(5951)] = 213469, - [SMALL_STATE(5952)] = 213494, - [SMALL_STATE(5953)] = 213519, - [SMALL_STATE(5954)] = 213544, - [SMALL_STATE(5955)] = 213561, - [SMALL_STATE(5956)] = 213582, - [SMALL_STATE(5957)] = 213599, - [SMALL_STATE(5958)] = 213620, - [SMALL_STATE(5959)] = 213641, - [SMALL_STATE(5960)] = 213662, - [SMALL_STATE(5961)] = 213679, - [SMALL_STATE(5962)] = 213700, - [SMALL_STATE(5963)] = 213725, - [SMALL_STATE(5964)] = 213748, - [SMALL_STATE(5965)] = 213771, - [SMALL_STATE(5966)] = 213794, - [SMALL_STATE(5967)] = 213815, - [SMALL_STATE(5968)] = 213836, - [SMALL_STATE(5969)] = 213857, - [SMALL_STATE(5970)] = 213878, - [SMALL_STATE(5971)] = 213899, - [SMALL_STATE(5972)] = 213920, - [SMALL_STATE(5973)] = 213943, - [SMALL_STATE(5974)] = 213962, - [SMALL_STATE(5975)] = 213981, - [SMALL_STATE(5976)] = 214000, - [SMALL_STATE(5977)] = 214019, - [SMALL_STATE(5978)] = 214040, - [SMALL_STATE(5979)] = 214057, - [SMALL_STATE(5980)] = 214074, - [SMALL_STATE(5981)] = 214095, - [SMALL_STATE(5982)] = 214118, - [SMALL_STATE(5983)] = 214143, - [SMALL_STATE(5984)] = 214159, - [SMALL_STATE(5985)] = 214181, - [SMALL_STATE(5986)] = 214201, - [SMALL_STATE(5987)] = 214223, - [SMALL_STATE(5988)] = 214241, - [SMALL_STATE(5989)] = 214261, - [SMALL_STATE(5990)] = 214279, - [SMALL_STATE(5991)] = 214293, - [SMALL_STATE(5992)] = 214315, - [SMALL_STATE(5993)] = 214335, - [SMALL_STATE(5994)] = 214357, - [SMALL_STATE(5995)] = 214375, - [SMALL_STATE(5996)] = 214395, - [SMALL_STATE(5997)] = 214417, - [SMALL_STATE(5998)] = 214433, - [SMALL_STATE(5999)] = 214449, - [SMALL_STATE(6000)] = 214467, - [SMALL_STATE(6001)] = 214487, - [SMALL_STATE(6002)] = 214509, - [SMALL_STATE(6003)] = 214527, - [SMALL_STATE(6004)] = 214549, - [SMALL_STATE(6005)] = 214571, - [SMALL_STATE(6006)] = 214593, - [SMALL_STATE(6007)] = 214609, - [SMALL_STATE(6008)] = 214625, - [SMALL_STATE(6009)] = 214647, - [SMALL_STATE(6010)] = 214669, - [SMALL_STATE(6011)] = 214687, - [SMALL_STATE(6012)] = 214707, - [SMALL_STATE(6013)] = 214729, - [SMALL_STATE(6014)] = 214745, - [SMALL_STATE(6015)] = 214767, - [SMALL_STATE(6016)] = 214785, - [SMALL_STATE(6017)] = 214807, - [SMALL_STATE(6018)] = 214825, - [SMALL_STATE(6019)] = 214841, - [SMALL_STATE(6020)] = 214857, - [SMALL_STATE(6021)] = 214879, - [SMALL_STATE(6022)] = 214897, - [SMALL_STATE(6023)] = 214911, - [SMALL_STATE(6024)] = 214933, - [SMALL_STATE(6025)] = 214947, - [SMALL_STATE(6026)] = 214967, - [SMALL_STATE(6027)] = 214989, - [SMALL_STATE(6028)] = 215011, - [SMALL_STATE(6029)] = 215033, - [SMALL_STATE(6030)] = 215055, - [SMALL_STATE(6031)] = 215077, - [SMALL_STATE(6032)] = 215099, - [SMALL_STATE(6033)] = 215121, - [SMALL_STATE(6034)] = 215143, - [SMALL_STATE(6035)] = 215165, - [SMALL_STATE(6036)] = 215183, - [SMALL_STATE(6037)] = 215205, - [SMALL_STATE(6038)] = 215225, - [SMALL_STATE(6039)] = 215247, - [SMALL_STATE(6040)] = 215265, - [SMALL_STATE(6041)] = 215287, - [SMALL_STATE(6042)] = 215309, - [SMALL_STATE(6043)] = 215331, - [SMALL_STATE(6044)] = 215349, - [SMALL_STATE(6045)] = 215365, - [SMALL_STATE(6046)] = 215387, - [SMALL_STATE(6047)] = 215407, - [SMALL_STATE(6048)] = 215429, - [SMALL_STATE(6049)] = 215451, - [SMALL_STATE(6050)] = 215469, - [SMALL_STATE(6051)] = 215491, - [SMALL_STATE(6052)] = 215513, - [SMALL_STATE(6053)] = 215529, - [SMALL_STATE(6054)] = 215551, - [SMALL_STATE(6055)] = 215573, - [SMALL_STATE(6056)] = 215595, - [SMALL_STATE(6057)] = 215617, - [SMALL_STATE(6058)] = 215635, - [SMALL_STATE(6059)] = 215657, - [SMALL_STATE(6060)] = 215679, - [SMALL_STATE(6061)] = 215697, - [SMALL_STATE(6062)] = 215719, - [SMALL_STATE(6063)] = 215735, - [SMALL_STATE(6064)] = 215757, - [SMALL_STATE(6065)] = 215779, - [SMALL_STATE(6066)] = 215795, - [SMALL_STATE(6067)] = 215813, - [SMALL_STATE(6068)] = 215835, - [SMALL_STATE(6069)] = 215853, - [SMALL_STATE(6070)] = 215875, - [SMALL_STATE(6071)] = 215891, - [SMALL_STATE(6072)] = 215913, - [SMALL_STATE(6073)] = 215927, - [SMALL_STATE(6074)] = 215947, - [SMALL_STATE(6075)] = 215969, - [SMALL_STATE(6076)] = 215991, - [SMALL_STATE(6077)] = 216013, - [SMALL_STATE(6078)] = 216035, - [SMALL_STATE(6079)] = 216057, - [SMALL_STATE(6080)] = 216079, - [SMALL_STATE(6081)] = 216093, - [SMALL_STATE(6082)] = 216115, - [SMALL_STATE(6083)] = 216137, - [SMALL_STATE(6084)] = 216153, - [SMALL_STATE(6085)] = 216175, - [SMALL_STATE(6086)] = 216197, - [SMALL_STATE(6087)] = 216215, - [SMALL_STATE(6088)] = 216237, - [SMALL_STATE(6089)] = 216255, - [SMALL_STATE(6090)] = 216271, - [SMALL_STATE(6091)] = 216293, - [SMALL_STATE(6092)] = 216315, - [SMALL_STATE(6093)] = 216335, - [SMALL_STATE(6094)] = 216357, - [SMALL_STATE(6095)] = 216375, - [SMALL_STATE(6096)] = 216397, - [SMALL_STATE(6097)] = 216415, - [SMALL_STATE(6098)] = 216435, - [SMALL_STATE(6099)] = 216453, - [SMALL_STATE(6100)] = 216475, - [SMALL_STATE(6101)] = 216497, - [SMALL_STATE(6102)] = 216515, - [SMALL_STATE(6103)] = 216535, - [SMALL_STATE(6104)] = 216557, - [SMALL_STATE(6105)] = 216573, - [SMALL_STATE(6106)] = 216595, - [SMALL_STATE(6107)] = 216615, - [SMALL_STATE(6108)] = 216635, - [SMALL_STATE(6109)] = 216657, - [SMALL_STATE(6110)] = 216679, - [SMALL_STATE(6111)] = 216701, - [SMALL_STATE(6112)] = 216719, - [SMALL_STATE(6113)] = 216741, - [SMALL_STATE(6114)] = 216763, - [SMALL_STATE(6115)] = 216781, - [SMALL_STATE(6116)] = 216803, - [SMALL_STATE(6117)] = 216825, - [SMALL_STATE(6118)] = 216845, - [SMALL_STATE(6119)] = 216867, - [SMALL_STATE(6120)] = 216889, - [SMALL_STATE(6121)] = 216911, - [SMALL_STATE(6122)] = 216933, - [SMALL_STATE(6123)] = 216955, - [SMALL_STATE(6124)] = 216977, - [SMALL_STATE(6125)] = 216999, - [SMALL_STATE(6126)] = 217021, - [SMALL_STATE(6127)] = 217043, - [SMALL_STATE(6128)] = 217057, - [SMALL_STATE(6129)] = 217073, - [SMALL_STATE(6130)] = 217095, - [SMALL_STATE(6131)] = 217117, - [SMALL_STATE(6132)] = 217139, - [SMALL_STATE(6133)] = 217161, - [SMALL_STATE(6134)] = 217183, - [SMALL_STATE(6135)] = 217205, - [SMALL_STATE(6136)] = 217227, - [SMALL_STATE(6137)] = 217249, - [SMALL_STATE(6138)] = 217271, - [SMALL_STATE(6139)] = 217293, - [SMALL_STATE(6140)] = 217315, - [SMALL_STATE(6141)] = 217337, - [SMALL_STATE(6142)] = 217359, - [SMALL_STATE(6143)] = 217381, - [SMALL_STATE(6144)] = 217403, - [SMALL_STATE(6145)] = 217425, - [SMALL_STATE(6146)] = 217447, - [SMALL_STATE(6147)] = 217469, - [SMALL_STATE(6148)] = 217491, - [SMALL_STATE(6149)] = 217513, - [SMALL_STATE(6150)] = 217535, - [SMALL_STATE(6151)] = 217557, - [SMALL_STATE(6152)] = 217579, - [SMALL_STATE(6153)] = 217601, - [SMALL_STATE(6154)] = 217623, - [SMALL_STATE(6155)] = 217645, - [SMALL_STATE(6156)] = 217667, - [SMALL_STATE(6157)] = 217689, - [SMALL_STATE(6158)] = 217711, - [SMALL_STATE(6159)] = 217733, - [SMALL_STATE(6160)] = 217755, - [SMALL_STATE(6161)] = 217777, - [SMALL_STATE(6162)] = 217797, - [SMALL_STATE(6163)] = 217815, - [SMALL_STATE(6164)] = 217831, - [SMALL_STATE(6165)] = 217851, - [SMALL_STATE(6166)] = 217873, - [SMALL_STATE(6167)] = 217895, - [SMALL_STATE(6168)] = 217915, - [SMALL_STATE(6169)] = 217937, - [SMALL_STATE(6170)] = 217955, - [SMALL_STATE(6171)] = 217977, - [SMALL_STATE(6172)] = 217999, - [SMALL_STATE(6173)] = 218017, - [SMALL_STATE(6174)] = 218039, - [SMALL_STATE(6175)] = 218061, - [SMALL_STATE(6176)] = 218081, - [SMALL_STATE(6177)] = 218103, - [SMALL_STATE(6178)] = 218121, - [SMALL_STATE(6179)] = 218141, - [SMALL_STATE(6180)] = 218155, - [SMALL_STATE(6181)] = 218173, - [SMALL_STATE(6182)] = 218195, - [SMALL_STATE(6183)] = 218213, - [SMALL_STATE(6184)] = 218231, - [SMALL_STATE(6185)] = 218249, - [SMALL_STATE(6186)] = 218267, - [SMALL_STATE(6187)] = 218285, - [SMALL_STATE(6188)] = 218307, - [SMALL_STATE(6189)] = 218329, - [SMALL_STATE(6190)] = 218347, - [SMALL_STATE(6191)] = 218364, - [SMALL_STATE(6192)] = 218383, - [SMALL_STATE(6193)] = 218400, - [SMALL_STATE(6194)] = 218419, - [SMALL_STATE(6195)] = 218432, - [SMALL_STATE(6196)] = 218445, - [SMALL_STATE(6197)] = 218458, - [SMALL_STATE(6198)] = 218475, - [SMALL_STATE(6199)] = 218488, - [SMALL_STATE(6200)] = 218501, - [SMALL_STATE(6201)] = 218514, - [SMALL_STATE(6202)] = 218527, - [SMALL_STATE(6203)] = 218540, - [SMALL_STATE(6204)] = 218555, - [SMALL_STATE(6205)] = 218572, - [SMALL_STATE(6206)] = 218589, - [SMALL_STATE(6207)] = 218606, - [SMALL_STATE(6208)] = 218625, - [SMALL_STATE(6209)] = 218644, - [SMALL_STATE(6210)] = 218663, - [SMALL_STATE(6211)] = 218682, - [SMALL_STATE(6212)] = 218701, - [SMALL_STATE(6213)] = 218716, - [SMALL_STATE(6214)] = 218731, - [SMALL_STATE(6215)] = 218746, - [SMALL_STATE(6216)] = 218765, - [SMALL_STATE(6217)] = 218778, - [SMALL_STATE(6218)] = 218797, - [SMALL_STATE(6219)] = 218810, - [SMALL_STATE(6220)] = 218823, - [SMALL_STATE(6221)] = 218836, - [SMALL_STATE(6222)] = 218849, - [SMALL_STATE(6223)] = 218864, - [SMALL_STATE(6224)] = 218879, - [SMALL_STATE(6225)] = 218898, - [SMALL_STATE(6226)] = 218917, - [SMALL_STATE(6227)] = 218936, - [SMALL_STATE(6228)] = 218949, - [SMALL_STATE(6229)] = 218968, - [SMALL_STATE(6230)] = 218987, - [SMALL_STATE(6231)] = 219002, - [SMALL_STATE(6232)] = 219017, - [SMALL_STATE(6233)] = 219034, - [SMALL_STATE(6234)] = 219053, - [SMALL_STATE(6235)] = 219072, - [SMALL_STATE(6236)] = 219091, - [SMALL_STATE(6237)] = 219110, - [SMALL_STATE(6238)] = 219127, - [SMALL_STATE(6239)] = 219146, - [SMALL_STATE(6240)] = 219159, - [SMALL_STATE(6241)] = 219172, - [SMALL_STATE(6242)] = 219185, - [SMALL_STATE(6243)] = 219198, - [SMALL_STATE(6244)] = 219213, - [SMALL_STATE(6245)] = 219232, - [SMALL_STATE(6246)] = 219251, - [SMALL_STATE(6247)] = 219270, - [SMALL_STATE(6248)] = 219289, - [SMALL_STATE(6249)] = 219308, - [SMALL_STATE(6250)] = 219321, - [SMALL_STATE(6251)] = 219340, - [SMALL_STATE(6252)] = 219353, - [SMALL_STATE(6253)] = 219366, - [SMALL_STATE(6254)] = 219381, - [SMALL_STATE(6255)] = 219400, - [SMALL_STATE(6256)] = 219417, - [SMALL_STATE(6257)] = 219432, - [SMALL_STATE(6258)] = 219447, - [SMALL_STATE(6259)] = 219466, - [SMALL_STATE(6260)] = 219481, - [SMALL_STATE(6261)] = 219494, - [SMALL_STATE(6262)] = 219507, - [SMALL_STATE(6263)] = 219520, - [SMALL_STATE(6264)] = 219533, - [SMALL_STATE(6265)] = 219548, - [SMALL_STATE(6266)] = 219561, - [SMALL_STATE(6267)] = 219574, - [SMALL_STATE(6268)] = 219593, - [SMALL_STATE(6269)] = 219610, - [SMALL_STATE(6270)] = 219623, - [SMALL_STATE(6271)] = 219636, - [SMALL_STATE(6272)] = 219655, - [SMALL_STATE(6273)] = 219672, - [SMALL_STATE(6274)] = 219685, - [SMALL_STATE(6275)] = 219698, - [SMALL_STATE(6276)] = 219711, - [SMALL_STATE(6277)] = 219726, - [SMALL_STATE(6278)] = 219743, - [SMALL_STATE(6279)] = 219760, - [SMALL_STATE(6280)] = 219775, - [SMALL_STATE(6281)] = 219788, - [SMALL_STATE(6282)] = 219807, - [SMALL_STATE(6283)] = 219820, - [SMALL_STATE(6284)] = 219839, - [SMALL_STATE(6285)] = 219858, - [SMALL_STATE(6286)] = 219877, - [SMALL_STATE(6287)] = 219896, - [SMALL_STATE(6288)] = 219915, - [SMALL_STATE(6289)] = 219934, - [SMALL_STATE(6290)] = 219953, - [SMALL_STATE(6291)] = 219966, - [SMALL_STATE(6292)] = 219979, - [SMALL_STATE(6293)] = 219994, - [SMALL_STATE(6294)] = 220009, - [SMALL_STATE(6295)] = 220024, - [SMALL_STATE(6296)] = 220041, - [SMALL_STATE(6297)] = 220054, - [SMALL_STATE(6298)] = 220067, - [SMALL_STATE(6299)] = 220082, - [SMALL_STATE(6300)] = 220095, - [SMALL_STATE(6301)] = 220108, - [SMALL_STATE(6302)] = 220121, - [SMALL_STATE(6303)] = 220134, - [SMALL_STATE(6304)] = 220147, - [SMALL_STATE(6305)] = 220164, - [SMALL_STATE(6306)] = 220183, - [SMALL_STATE(6307)] = 220198, - [SMALL_STATE(6308)] = 220217, - [SMALL_STATE(6309)] = 220230, - [SMALL_STATE(6310)] = 220247, - [SMALL_STATE(6311)] = 220266, - [SMALL_STATE(6312)] = 220285, - [SMALL_STATE(6313)] = 220304, - [SMALL_STATE(6314)] = 220317, - [SMALL_STATE(6315)] = 220336, - [SMALL_STATE(6316)] = 220351, - [SMALL_STATE(6317)] = 220370, - [SMALL_STATE(6318)] = 220389, - [SMALL_STATE(6319)] = 220408, - [SMALL_STATE(6320)] = 220427, - [SMALL_STATE(6321)] = 220446, - [SMALL_STATE(6322)] = 220465, - [SMALL_STATE(6323)] = 220484, - [SMALL_STATE(6324)] = 220503, - [SMALL_STATE(6325)] = 220516, - [SMALL_STATE(6326)] = 220533, - [SMALL_STATE(6327)] = 220546, - [SMALL_STATE(6328)] = 220559, - [SMALL_STATE(6329)] = 220576, - [SMALL_STATE(6330)] = 220591, - [SMALL_STATE(6331)] = 220604, - [SMALL_STATE(6332)] = 220623, - [SMALL_STATE(6333)] = 220642, - [SMALL_STATE(6334)] = 220661, - [SMALL_STATE(6335)] = 220680, - [SMALL_STATE(6336)] = 220699, - [SMALL_STATE(6337)] = 220718, - [SMALL_STATE(6338)] = 220737, - [SMALL_STATE(6339)] = 220756, - [SMALL_STATE(6340)] = 220775, - [SMALL_STATE(6341)] = 220788, - [SMALL_STATE(6342)] = 220805, - [SMALL_STATE(6343)] = 220824, - [SMALL_STATE(6344)] = 220841, - [SMALL_STATE(6345)] = 220860, - [SMALL_STATE(6346)] = 220879, - [SMALL_STATE(6347)] = 220898, - [SMALL_STATE(6348)] = 220917, - [SMALL_STATE(6349)] = 220936, - [SMALL_STATE(6350)] = 220955, - [SMALL_STATE(6351)] = 220974, - [SMALL_STATE(6352)] = 220993, - [SMALL_STATE(6353)] = 221006, - [SMALL_STATE(6354)] = 221019, - [SMALL_STATE(6355)] = 221036, - [SMALL_STATE(6356)] = 221053, - [SMALL_STATE(6357)] = 221072, - [SMALL_STATE(6358)] = 221091, - [SMALL_STATE(6359)] = 221110, - [SMALL_STATE(6360)] = 221129, - [SMALL_STATE(6361)] = 221148, - [SMALL_STATE(6362)] = 221167, - [SMALL_STATE(6363)] = 221186, - [SMALL_STATE(6364)] = 221205, - [SMALL_STATE(6365)] = 221224, - [SMALL_STATE(6366)] = 221243, - [SMALL_STATE(6367)] = 221256, - [SMALL_STATE(6368)] = 221269, - [SMALL_STATE(6369)] = 221284, - [SMALL_STATE(6370)] = 221301, - [SMALL_STATE(6371)] = 221318, - [SMALL_STATE(6372)] = 221331, - [SMALL_STATE(6373)] = 221350, - [SMALL_STATE(6374)] = 221365, - [SMALL_STATE(6375)] = 221384, - [SMALL_STATE(6376)] = 221403, - [SMALL_STATE(6377)] = 221422, - [SMALL_STATE(6378)] = 221441, - [SMALL_STATE(6379)] = 221460, - [SMALL_STATE(6380)] = 221479, - [SMALL_STATE(6381)] = 221498, - [SMALL_STATE(6382)] = 221517, - [SMALL_STATE(6383)] = 221534, - [SMALL_STATE(6384)] = 221547, - [SMALL_STATE(6385)] = 221564, - [SMALL_STATE(6386)] = 221581, - [SMALL_STATE(6387)] = 221596, - [SMALL_STATE(6388)] = 221615, - [SMALL_STATE(6389)] = 221634, - [SMALL_STATE(6390)] = 221653, - [SMALL_STATE(6391)] = 221672, - [SMALL_STATE(6392)] = 221691, - [SMALL_STATE(6393)] = 221710, - [SMALL_STATE(6394)] = 221729, - [SMALL_STATE(6395)] = 221748, - [SMALL_STATE(6396)] = 221761, - [SMALL_STATE(6397)] = 221778, - [SMALL_STATE(6398)] = 221791, - [SMALL_STATE(6399)] = 221804, - [SMALL_STATE(6400)] = 221823, - [SMALL_STATE(6401)] = 221836, - [SMALL_STATE(6402)] = 221853, - [SMALL_STATE(6403)] = 221866, - [SMALL_STATE(6404)] = 221881, - [SMALL_STATE(6405)] = 221900, - [SMALL_STATE(6406)] = 221915, - [SMALL_STATE(6407)] = 221934, - [SMALL_STATE(6408)] = 221953, - [SMALL_STATE(6409)] = 221972, - [SMALL_STATE(6410)] = 221991, - [SMALL_STATE(6411)] = 222010, - [SMALL_STATE(6412)] = 222029, - [SMALL_STATE(6413)] = 222048, - [SMALL_STATE(6414)] = 222067, - [SMALL_STATE(6415)] = 222084, - [SMALL_STATE(6416)] = 222097, - [SMALL_STATE(6417)] = 222110, - [SMALL_STATE(6418)] = 222123, - [SMALL_STATE(6419)] = 222140, - [SMALL_STATE(6420)] = 222153, - [SMALL_STATE(6421)] = 222166, - [SMALL_STATE(6422)] = 222185, - [SMALL_STATE(6423)] = 222202, - [SMALL_STATE(6424)] = 222215, - [SMALL_STATE(6425)] = 222228, - [SMALL_STATE(6426)] = 222247, - [SMALL_STATE(6427)] = 222260, - [SMALL_STATE(6428)] = 222273, - [SMALL_STATE(6429)] = 222292, - [SMALL_STATE(6430)] = 222311, - [SMALL_STATE(6431)] = 222330, - [SMALL_STATE(6432)] = 222349, - [SMALL_STATE(6433)] = 222368, - [SMALL_STATE(6434)] = 222387, - [SMALL_STATE(6435)] = 222406, - [SMALL_STATE(6436)] = 222425, - [SMALL_STATE(6437)] = 222438, - [SMALL_STATE(6438)] = 222457, - [SMALL_STATE(6439)] = 222474, - [SMALL_STATE(6440)] = 222487, - [SMALL_STATE(6441)] = 222500, - [SMALL_STATE(6442)] = 222517, - [SMALL_STATE(6443)] = 222530, - [SMALL_STATE(6444)] = 222543, - [SMALL_STATE(6445)] = 222562, - [SMALL_STATE(6446)] = 222581, - [SMALL_STATE(6447)] = 222600, - [SMALL_STATE(6448)] = 222619, - [SMALL_STATE(6449)] = 222638, - [SMALL_STATE(6450)] = 222657, - [SMALL_STATE(6451)] = 222676, - [SMALL_STATE(6452)] = 222695, - [SMALL_STATE(6453)] = 222708, - [SMALL_STATE(6454)] = 222721, - [SMALL_STATE(6455)] = 222738, - [SMALL_STATE(6456)] = 222751, - [SMALL_STATE(6457)] = 222764, - [SMALL_STATE(6458)] = 222781, - [SMALL_STATE(6459)] = 222800, - [SMALL_STATE(6460)] = 222819, - [SMALL_STATE(6461)] = 222838, - [SMALL_STATE(6462)] = 222857, - [SMALL_STATE(6463)] = 222876, - [SMALL_STATE(6464)] = 222895, - [SMALL_STATE(6465)] = 222914, - [SMALL_STATE(6466)] = 222933, - [SMALL_STATE(6467)] = 222946, - [SMALL_STATE(6468)] = 222959, - [SMALL_STATE(6469)] = 222976, - [SMALL_STATE(6470)] = 222995, - [SMALL_STATE(6471)] = 223014, - [SMALL_STATE(6472)] = 223031, - [SMALL_STATE(6473)] = 223044, - [SMALL_STATE(6474)] = 223063, - [SMALL_STATE(6475)] = 223082, - [SMALL_STATE(6476)] = 223101, - [SMALL_STATE(6477)] = 223120, - [SMALL_STATE(6478)] = 223139, - [SMALL_STATE(6479)] = 223158, - [SMALL_STATE(6480)] = 223177, - [SMALL_STATE(6481)] = 223196, - [SMALL_STATE(6482)] = 223209, - [SMALL_STATE(6483)] = 223226, - [SMALL_STATE(6484)] = 223245, - [SMALL_STATE(6485)] = 223262, - [SMALL_STATE(6486)] = 223279, - [SMALL_STATE(6487)] = 223292, - [SMALL_STATE(6488)] = 223305, - [SMALL_STATE(6489)] = 223324, - [SMALL_STATE(6490)] = 223343, - [SMALL_STATE(6491)] = 223362, - [SMALL_STATE(6492)] = 223381, - [SMALL_STATE(6493)] = 223400, - [SMALL_STATE(6494)] = 223419, - [SMALL_STATE(6495)] = 223438, - [SMALL_STATE(6496)] = 223457, - [SMALL_STATE(6497)] = 223472, - [SMALL_STATE(6498)] = 223485, - [SMALL_STATE(6499)] = 223502, - [SMALL_STATE(6500)] = 223519, - [SMALL_STATE(6501)] = 223532, - [SMALL_STATE(6502)] = 223551, - [SMALL_STATE(6503)] = 223570, - [SMALL_STATE(6504)] = 223589, - [SMALL_STATE(6505)] = 223608, - [SMALL_STATE(6506)] = 223627, - [SMALL_STATE(6507)] = 223640, - [SMALL_STATE(6508)] = 223659, - [SMALL_STATE(6509)] = 223678, - [SMALL_STATE(6510)] = 223693, - [SMALL_STATE(6511)] = 223708, - [SMALL_STATE(6512)] = 223721, - [SMALL_STATE(6513)] = 223738, - [SMALL_STATE(6514)] = 223755, - [SMALL_STATE(6515)] = 223774, - [SMALL_STATE(6516)] = 223793, - [SMALL_STATE(6517)] = 223812, - [SMALL_STATE(6518)] = 223831, - [SMALL_STATE(6519)] = 223850, - [SMALL_STATE(6520)] = 223869, - [SMALL_STATE(6521)] = 223888, - [SMALL_STATE(6522)] = 223907, - [SMALL_STATE(6523)] = 223920, - [SMALL_STATE(6524)] = 223937, - [SMALL_STATE(6525)] = 223954, - [SMALL_STATE(6526)] = 223973, - [SMALL_STATE(6527)] = 223992, - [SMALL_STATE(6528)] = 224011, - [SMALL_STATE(6529)] = 224030, - [SMALL_STATE(6530)] = 224049, - [SMALL_STATE(6531)] = 224068, - [SMALL_STATE(6532)] = 224087, - [SMALL_STATE(6533)] = 224106, - [SMALL_STATE(6534)] = 224119, - [SMALL_STATE(6535)] = 224136, - [SMALL_STATE(6536)] = 224153, - [SMALL_STATE(6537)] = 224172, - [SMALL_STATE(6538)] = 224191, - [SMALL_STATE(6539)] = 224210, - [SMALL_STATE(6540)] = 224229, - [SMALL_STATE(6541)] = 224248, - [SMALL_STATE(6542)] = 224267, - [SMALL_STATE(6543)] = 224286, - [SMALL_STATE(6544)] = 224305, - [SMALL_STATE(6545)] = 224318, - [SMALL_STATE(6546)] = 224331, - [SMALL_STATE(6547)] = 224348, - [SMALL_STATE(6548)] = 224365, - [SMALL_STATE(6549)] = 224382, - [SMALL_STATE(6550)] = 224401, - [SMALL_STATE(6551)] = 224420, - [SMALL_STATE(6552)] = 224439, - [SMALL_STATE(6553)] = 224458, - [SMALL_STATE(6554)] = 224477, - [SMALL_STATE(6555)] = 224496, - [SMALL_STATE(6556)] = 224515, - [SMALL_STATE(6557)] = 224534, - [SMALL_STATE(6558)] = 224547, - [SMALL_STATE(6559)] = 224564, - [SMALL_STATE(6560)] = 224581, - [SMALL_STATE(6561)] = 224598, - [SMALL_STATE(6562)] = 224611, - [SMALL_STATE(6563)] = 224628, - [SMALL_STATE(6564)] = 224645, - [SMALL_STATE(6565)] = 224658, - [SMALL_STATE(6566)] = 224675, - [SMALL_STATE(6567)] = 224692, - [SMALL_STATE(6568)] = 224705, - [SMALL_STATE(6569)] = 224718, - [SMALL_STATE(6570)] = 224735, - [SMALL_STATE(6571)] = 224752, - [SMALL_STATE(6572)] = 224765, - [SMALL_STATE(6573)] = 224778, - [SMALL_STATE(6574)] = 224795, - [SMALL_STATE(6575)] = 224812, - [SMALL_STATE(6576)] = 224825, - [SMALL_STATE(6577)] = 224842, - [SMALL_STATE(6578)] = 224859, - [SMALL_STATE(6579)] = 224872, - [SMALL_STATE(6580)] = 224889, - [SMALL_STATE(6581)] = 224906, - [SMALL_STATE(6582)] = 224919, - [SMALL_STATE(6583)] = 224932, - [SMALL_STATE(6584)] = 224949, - [SMALL_STATE(6585)] = 224966, - [SMALL_STATE(6586)] = 224979, - [SMALL_STATE(6587)] = 224996, - [SMALL_STATE(6588)] = 225013, - [SMALL_STATE(6589)] = 225026, - [SMALL_STATE(6590)] = 225043, - [SMALL_STATE(6591)] = 225060, - [SMALL_STATE(6592)] = 225073, - [SMALL_STATE(6593)] = 225090, - [SMALL_STATE(6594)] = 225107, - [SMALL_STATE(6595)] = 225120, - [SMALL_STATE(6596)] = 225137, - [SMALL_STATE(6597)] = 225154, - [SMALL_STATE(6598)] = 225167, - [SMALL_STATE(6599)] = 225184, - [SMALL_STATE(6600)] = 225201, - [SMALL_STATE(6601)] = 225214, - [SMALL_STATE(6602)] = 225231, - [SMALL_STATE(6603)] = 225248, - [SMALL_STATE(6604)] = 225267, - [SMALL_STATE(6605)] = 225280, - [SMALL_STATE(6606)] = 225297, - [SMALL_STATE(6607)] = 225314, - [SMALL_STATE(6608)] = 225327, - [SMALL_STATE(6609)] = 225344, - [SMALL_STATE(6610)] = 225361, - [SMALL_STATE(6611)] = 225380, - [SMALL_STATE(6612)] = 225393, - [SMALL_STATE(6613)] = 225410, - [SMALL_STATE(6614)] = 225427, - [SMALL_STATE(6615)] = 225446, - [SMALL_STATE(6616)] = 225459, - [SMALL_STATE(6617)] = 225476, - [SMALL_STATE(6618)] = 225493, - [SMALL_STATE(6619)] = 225506, - [SMALL_STATE(6620)] = 225523, - [SMALL_STATE(6621)] = 225540, - [SMALL_STATE(6622)] = 225553, - [SMALL_STATE(6623)] = 225570, - [SMALL_STATE(6624)] = 225587, - [SMALL_STATE(6625)] = 225600, - [SMALL_STATE(6626)] = 225617, - [SMALL_STATE(6627)] = 225634, - [SMALL_STATE(6628)] = 225647, - [SMALL_STATE(6629)] = 225664, - [SMALL_STATE(6630)] = 225681, - [SMALL_STATE(6631)] = 225694, - [SMALL_STATE(6632)] = 225711, - [SMALL_STATE(6633)] = 225728, - [SMALL_STATE(6634)] = 225741, - [SMALL_STATE(6635)] = 225758, - [SMALL_STATE(6636)] = 225775, - [SMALL_STATE(6637)] = 225788, - [SMALL_STATE(6638)] = 225805, - [SMALL_STATE(6639)] = 225822, - [SMALL_STATE(6640)] = 225835, - [SMALL_STATE(6641)] = 225852, - [SMALL_STATE(6642)] = 225869, - [SMALL_STATE(6643)] = 225886, - [SMALL_STATE(6644)] = 225903, - [SMALL_STATE(6645)] = 225920, - [SMALL_STATE(6646)] = 225937, - [SMALL_STATE(6647)] = 225954, - [SMALL_STATE(6648)] = 225971, - [SMALL_STATE(6649)] = 225988, - [SMALL_STATE(6650)] = 226005, - [SMALL_STATE(6651)] = 226022, - [SMALL_STATE(6652)] = 226039, - [SMALL_STATE(6653)] = 226052, - [SMALL_STATE(6654)] = 226069, - [SMALL_STATE(6655)] = 226088, - [SMALL_STATE(6656)] = 226105, - [SMALL_STATE(6657)] = 226124, - [SMALL_STATE(6658)] = 226143, - [SMALL_STATE(6659)] = 226156, - [SMALL_STATE(6660)] = 226175, - [SMALL_STATE(6661)] = 226194, - [SMALL_STATE(6662)] = 226213, - [SMALL_STATE(6663)] = 226232, - [SMALL_STATE(6664)] = 226251, - [SMALL_STATE(6665)] = 226266, - [SMALL_STATE(6666)] = 226285, - [SMALL_STATE(6667)] = 226298, - [SMALL_STATE(6668)] = 226317, - [SMALL_STATE(6669)] = 226330, - [SMALL_STATE(6670)] = 226345, - [SMALL_STATE(6671)] = 226358, - [SMALL_STATE(6672)] = 226377, - [SMALL_STATE(6673)] = 226396, - [SMALL_STATE(6674)] = 226413, - [SMALL_STATE(6675)] = 226432, - [SMALL_STATE(6676)] = 226449, - [SMALL_STATE(6677)] = 226462, - [SMALL_STATE(6678)] = 226477, - [SMALL_STATE(6679)] = 226490, - [SMALL_STATE(6680)] = 226505, - [SMALL_STATE(6681)] = 226524, - [SMALL_STATE(6682)] = 226543, - [SMALL_STATE(6683)] = 226562, - [SMALL_STATE(6684)] = 226575, - [SMALL_STATE(6685)] = 226594, - [SMALL_STATE(6686)] = 226607, - [SMALL_STATE(6687)] = 226626, - [SMALL_STATE(6688)] = 226639, - [SMALL_STATE(6689)] = 226652, - [SMALL_STATE(6690)] = 226671, - [SMALL_STATE(6691)] = 226688, - [SMALL_STATE(6692)] = 226701, - [SMALL_STATE(6693)] = 226718, - [SMALL_STATE(6694)] = 226737, - [SMALL_STATE(6695)] = 226756, - [SMALL_STATE(6696)] = 226775, - [SMALL_STATE(6697)] = 226794, - [SMALL_STATE(6698)] = 226813, - [SMALL_STATE(6699)] = 226832, - [SMALL_STATE(6700)] = 226851, - [SMALL_STATE(6701)] = 226870, - [SMALL_STATE(6702)] = 226889, - [SMALL_STATE(6703)] = 226902, - [SMALL_STATE(6704)] = 226917, - [SMALL_STATE(6705)] = 226934, - [SMALL_STATE(6706)] = 226953, - [SMALL_STATE(6707)] = 226972, - [SMALL_STATE(6708)] = 226987, - [SMALL_STATE(6709)] = 227004, - [SMALL_STATE(6710)] = 227021, - [SMALL_STATE(6711)] = 227038, - [SMALL_STATE(6712)] = 227057, - [SMALL_STATE(6713)] = 227076, - [SMALL_STATE(6714)] = 227093, - [SMALL_STATE(6715)] = 227112, - [SMALL_STATE(6716)] = 227131, - [SMALL_STATE(6717)] = 227150, - [SMALL_STATE(6718)] = 227163, - [SMALL_STATE(6719)] = 227176, - [SMALL_STATE(6720)] = 227195, - [SMALL_STATE(6721)] = 227214, - [SMALL_STATE(6722)] = 227227, - [SMALL_STATE(6723)] = 227242, - [SMALL_STATE(6724)] = 227261, - [SMALL_STATE(6725)] = 227280, - [SMALL_STATE(6726)] = 227295, - [SMALL_STATE(6727)] = 227312, - [SMALL_STATE(6728)] = 227327, - [SMALL_STATE(6729)] = 227342, - [SMALL_STATE(6730)] = 227359, - [SMALL_STATE(6731)] = 227376, - [SMALL_STATE(6732)] = 227395, - [SMALL_STATE(6733)] = 227410, - [SMALL_STATE(6734)] = 227429, - [SMALL_STATE(6735)] = 227442, - [SMALL_STATE(6736)] = 227455, - [SMALL_STATE(6737)] = 227468, - [SMALL_STATE(6738)] = 227487, - [SMALL_STATE(6739)] = 227504, - [SMALL_STATE(6740)] = 227521, - [SMALL_STATE(6741)] = 227534, - [SMALL_STATE(6742)] = 227551, - [SMALL_STATE(6743)] = 227568, - [SMALL_STATE(6744)] = 227581, - [SMALL_STATE(6745)] = 227594, - [SMALL_STATE(6746)] = 227607, - [SMALL_STATE(6747)] = 227620, - [SMALL_STATE(6748)] = 227639, - [SMALL_STATE(6749)] = 227652, - [SMALL_STATE(6750)] = 227665, - [SMALL_STATE(6751)] = 227684, - [SMALL_STATE(6752)] = 227703, - [SMALL_STATE(6753)] = 227719, - [SMALL_STATE(6754)] = 227735, - [SMALL_STATE(6755)] = 227751, - [SMALL_STATE(6756)] = 227767, - [SMALL_STATE(6757)] = 227781, - [SMALL_STATE(6758)] = 227797, - [SMALL_STATE(6759)] = 227813, - [SMALL_STATE(6760)] = 227829, - [SMALL_STATE(6761)] = 227845, - [SMALL_STATE(6762)] = 227861, - [SMALL_STATE(6763)] = 227877, - [SMALL_STATE(6764)] = 227893, - [SMALL_STATE(6765)] = 227909, - [SMALL_STATE(6766)] = 227925, - [SMALL_STATE(6767)] = 227941, - [SMALL_STATE(6768)] = 227955, - [SMALL_STATE(6769)] = 227971, - [SMALL_STATE(6770)] = 227987, - [SMALL_STATE(6771)] = 227999, - [SMALL_STATE(6772)] = 228015, - [SMALL_STATE(6773)] = 228031, - [SMALL_STATE(6774)] = 228045, - [SMALL_STATE(6775)] = 228057, - [SMALL_STATE(6776)] = 228071, - [SMALL_STATE(6777)] = 228085, - [SMALL_STATE(6778)] = 228101, - [SMALL_STATE(6779)] = 228117, - [SMALL_STATE(6780)] = 228133, - [SMALL_STATE(6781)] = 228145, - [SMALL_STATE(6782)] = 228161, - [SMALL_STATE(6783)] = 228177, - [SMALL_STATE(6784)] = 228193, - [SMALL_STATE(6785)] = 228209, - [SMALL_STATE(6786)] = 228225, - [SMALL_STATE(6787)] = 228241, - [SMALL_STATE(6788)] = 228257, - [SMALL_STATE(6789)] = 228273, - [SMALL_STATE(6790)] = 228289, - [SMALL_STATE(6791)] = 228305, - [SMALL_STATE(6792)] = 228317, - [SMALL_STATE(6793)] = 228333, - [SMALL_STATE(6794)] = 228349, - [SMALL_STATE(6795)] = 228361, - [SMALL_STATE(6796)] = 228373, - [SMALL_STATE(6797)] = 228389, - [SMALL_STATE(6798)] = 228401, - [SMALL_STATE(6799)] = 228417, - [SMALL_STATE(6800)] = 228433, - [SMALL_STATE(6801)] = 228447, - [SMALL_STATE(6802)] = 228463, - [SMALL_STATE(6803)] = 228477, - [SMALL_STATE(6804)] = 228491, - [SMALL_STATE(6805)] = 228503, - [SMALL_STATE(6806)] = 228519, - [SMALL_STATE(6807)] = 228535, - [SMALL_STATE(6808)] = 228551, - [SMALL_STATE(6809)] = 228567, - [SMALL_STATE(6810)] = 228583, - [SMALL_STATE(6811)] = 228595, - [SMALL_STATE(6812)] = 228611, - [SMALL_STATE(6813)] = 228627, - [SMALL_STATE(6814)] = 228643, - [SMALL_STATE(6815)] = 228659, - [SMALL_STATE(6816)] = 228675, - [SMALL_STATE(6817)] = 228691, - [SMALL_STATE(6818)] = 228707, - [SMALL_STATE(6819)] = 228723, - [SMALL_STATE(6820)] = 228739, - [SMALL_STATE(6821)] = 228755, - [SMALL_STATE(6822)] = 228771, - [SMALL_STATE(6823)] = 228787, - [SMALL_STATE(6824)] = 228799, - [SMALL_STATE(6825)] = 228811, - [SMALL_STATE(6826)] = 228827, - [SMALL_STATE(6827)] = 228839, - [SMALL_STATE(6828)] = 228853, - [SMALL_STATE(6829)] = 228869, - [SMALL_STATE(6830)] = 228883, - [SMALL_STATE(6831)] = 228897, - [SMALL_STATE(6832)] = 228913, - [SMALL_STATE(6833)] = 228927, - [SMALL_STATE(6834)] = 228939, - [SMALL_STATE(6835)] = 228955, - [SMALL_STATE(6836)] = 228971, - [SMALL_STATE(6837)] = 228983, - [SMALL_STATE(6838)] = 228999, - [SMALL_STATE(6839)] = 229011, - [SMALL_STATE(6840)] = 229027, - [SMALL_STATE(6841)] = 229043, - [SMALL_STATE(6842)] = 229059, - [SMALL_STATE(6843)] = 229073, - [SMALL_STATE(6844)] = 229089, - [SMALL_STATE(6845)] = 229101, - [SMALL_STATE(6846)] = 229117, - [SMALL_STATE(6847)] = 229133, - [SMALL_STATE(6848)] = 229145, - [SMALL_STATE(6849)] = 229161, - [SMALL_STATE(6850)] = 229177, - [SMALL_STATE(6851)] = 229193, - [SMALL_STATE(6852)] = 229207, - [SMALL_STATE(6853)] = 229219, - [SMALL_STATE(6854)] = 229235, - [SMALL_STATE(6855)] = 229251, - [SMALL_STATE(6856)] = 229267, - [SMALL_STATE(6857)] = 229283, - [SMALL_STATE(6858)] = 229299, - [SMALL_STATE(6859)] = 229315, - [SMALL_STATE(6860)] = 229331, - [SMALL_STATE(6861)] = 229345, - [SMALL_STATE(6862)] = 229359, - [SMALL_STATE(6863)] = 229375, - [SMALL_STATE(6864)] = 229389, - [SMALL_STATE(6865)] = 229405, - [SMALL_STATE(6866)] = 229421, - [SMALL_STATE(6867)] = 229437, - [SMALL_STATE(6868)] = 229453, - [SMALL_STATE(6869)] = 229469, - [SMALL_STATE(6870)] = 229481, - [SMALL_STATE(6871)] = 229495, - [SMALL_STATE(6872)] = 229511, - [SMALL_STATE(6873)] = 229527, - [SMALL_STATE(6874)] = 229539, - [SMALL_STATE(6875)] = 229551, - [SMALL_STATE(6876)] = 229567, - [SMALL_STATE(6877)] = 229579, - [SMALL_STATE(6878)] = 229591, - [SMALL_STATE(6879)] = 229605, - [SMALL_STATE(6880)] = 229619, - [SMALL_STATE(6881)] = 229631, - [SMALL_STATE(6882)] = 229645, - [SMALL_STATE(6883)] = 229659, - [SMALL_STATE(6884)] = 229675, - [SMALL_STATE(6885)] = 229691, - [SMALL_STATE(6886)] = 229705, - [SMALL_STATE(6887)] = 229721, - [SMALL_STATE(6888)] = 229737, - [SMALL_STATE(6889)] = 229751, - [SMALL_STATE(6890)] = 229763, - [SMALL_STATE(6891)] = 229779, - [SMALL_STATE(6892)] = 229791, - [SMALL_STATE(6893)] = 229803, - [SMALL_STATE(6894)] = 229819, - [SMALL_STATE(6895)] = 229835, - [SMALL_STATE(6896)] = 229851, - [SMALL_STATE(6897)] = 229867, - [SMALL_STATE(6898)] = 229883, - [SMALL_STATE(6899)] = 229899, - [SMALL_STATE(6900)] = 229913, - [SMALL_STATE(6901)] = 229929, - [SMALL_STATE(6902)] = 229945, - [SMALL_STATE(6903)] = 229957, - [SMALL_STATE(6904)] = 229971, - [SMALL_STATE(6905)] = 229983, - [SMALL_STATE(6906)] = 229995, - [SMALL_STATE(6907)] = 230011, - [SMALL_STATE(6908)] = 230027, - [SMALL_STATE(6909)] = 230039, - [SMALL_STATE(6910)] = 230055, - [SMALL_STATE(6911)] = 230069, - [SMALL_STATE(6912)] = 230085, - [SMALL_STATE(6913)] = 230097, - [SMALL_STATE(6914)] = 230109, - [SMALL_STATE(6915)] = 230125, - [SMALL_STATE(6916)] = 230141, - [SMALL_STATE(6917)] = 230157, - [SMALL_STATE(6918)] = 230173, - [SMALL_STATE(6919)] = 230187, - [SMALL_STATE(6920)] = 230203, - [SMALL_STATE(6921)] = 230219, - [SMALL_STATE(6922)] = 230233, - [SMALL_STATE(6923)] = 230247, - [SMALL_STATE(6924)] = 230263, - [SMALL_STATE(6925)] = 230279, - [SMALL_STATE(6926)] = 230291, - [SMALL_STATE(6927)] = 230303, - [SMALL_STATE(6928)] = 230319, - [SMALL_STATE(6929)] = 230335, - [SMALL_STATE(6930)] = 230347, - [SMALL_STATE(6931)] = 230361, - [SMALL_STATE(6932)] = 230377, - [SMALL_STATE(6933)] = 230393, - [SMALL_STATE(6934)] = 230409, - [SMALL_STATE(6935)] = 230425, - [SMALL_STATE(6936)] = 230439, - [SMALL_STATE(6937)] = 230455, - [SMALL_STATE(6938)] = 230471, - [SMALL_STATE(6939)] = 230487, - [SMALL_STATE(6940)] = 230499, - [SMALL_STATE(6941)] = 230515, - [SMALL_STATE(6942)] = 230531, - [SMALL_STATE(6943)] = 230547, - [SMALL_STATE(6944)] = 230563, - [SMALL_STATE(6945)] = 230579, - [SMALL_STATE(6946)] = 230591, - [SMALL_STATE(6947)] = 230605, - [SMALL_STATE(6948)] = 230619, - [SMALL_STATE(6949)] = 230633, - [SMALL_STATE(6950)] = 230647, - [SMALL_STATE(6951)] = 230663, - [SMALL_STATE(6952)] = 230677, - [SMALL_STATE(6953)] = 230693, - [SMALL_STATE(6954)] = 230709, - [SMALL_STATE(6955)] = 230723, - [SMALL_STATE(6956)] = 230739, - [SMALL_STATE(6957)] = 230755, - [SMALL_STATE(6958)] = 230771, - [SMALL_STATE(6959)] = 230785, - [SMALL_STATE(6960)] = 230801, - [SMALL_STATE(6961)] = 230813, - [SMALL_STATE(6962)] = 230827, - [SMALL_STATE(6963)] = 230843, - [SMALL_STATE(6964)] = 230859, - [SMALL_STATE(6965)] = 230873, - [SMALL_STATE(6966)] = 230887, - [SMALL_STATE(6967)] = 230903, - [SMALL_STATE(6968)] = 230915, - [SMALL_STATE(6969)] = 230931, - [SMALL_STATE(6970)] = 230945, - [SMALL_STATE(6971)] = 230961, - [SMALL_STATE(6972)] = 230973, - [SMALL_STATE(6973)] = 230989, - [SMALL_STATE(6974)] = 231005, - [SMALL_STATE(6975)] = 231021, - [SMALL_STATE(6976)] = 231037, - [SMALL_STATE(6977)] = 231053, - [SMALL_STATE(6978)] = 231069, - [SMALL_STATE(6979)] = 231085, - [SMALL_STATE(6980)] = 231101, - [SMALL_STATE(6981)] = 231117, - [SMALL_STATE(6982)] = 231131, - [SMALL_STATE(6983)] = 231147, - [SMALL_STATE(6984)] = 231159, - [SMALL_STATE(6985)] = 231175, - [SMALL_STATE(6986)] = 231191, - [SMALL_STATE(6987)] = 231205, - [SMALL_STATE(6988)] = 231221, - [SMALL_STATE(6989)] = 231233, - [SMALL_STATE(6990)] = 231245, - [SMALL_STATE(6991)] = 231259, - [SMALL_STATE(6992)] = 231273, - [SMALL_STATE(6993)] = 231285, - [SMALL_STATE(6994)] = 231301, - [SMALL_STATE(6995)] = 231317, - [SMALL_STATE(6996)] = 231331, - [SMALL_STATE(6997)] = 231343, - [SMALL_STATE(6998)] = 231357, - [SMALL_STATE(6999)] = 231373, - [SMALL_STATE(7000)] = 231389, - [SMALL_STATE(7001)] = 231405, - [SMALL_STATE(7002)] = 231421, - [SMALL_STATE(7003)] = 231435, - [SMALL_STATE(7004)] = 231451, - [SMALL_STATE(7005)] = 231465, - [SMALL_STATE(7006)] = 231481, - [SMALL_STATE(7007)] = 231497, - [SMALL_STATE(7008)] = 231513, - [SMALL_STATE(7009)] = 231529, - [SMALL_STATE(7010)] = 231545, - [SMALL_STATE(7011)] = 231557, - [SMALL_STATE(7012)] = 231569, - [SMALL_STATE(7013)] = 231585, - [SMALL_STATE(7014)] = 231601, - [SMALL_STATE(7015)] = 231617, - [SMALL_STATE(7016)] = 231633, - [SMALL_STATE(7017)] = 231649, - [SMALL_STATE(7018)] = 231665, - [SMALL_STATE(7019)] = 231681, - [SMALL_STATE(7020)] = 231697, - [SMALL_STATE(7021)] = 231713, - [SMALL_STATE(7022)] = 231725, - [SMALL_STATE(7023)] = 231741, - [SMALL_STATE(7024)] = 231755, - [SMALL_STATE(7025)] = 231771, - [SMALL_STATE(7026)] = 231785, - [SMALL_STATE(7027)] = 231797, - [SMALL_STATE(7028)] = 231809, - [SMALL_STATE(7029)] = 231825, - [SMALL_STATE(7030)] = 231837, - [SMALL_STATE(7031)] = 231853, - [SMALL_STATE(7032)] = 231869, - [SMALL_STATE(7033)] = 231885, - [SMALL_STATE(7034)] = 231901, - [SMALL_STATE(7035)] = 231913, - [SMALL_STATE(7036)] = 231929, - [SMALL_STATE(7037)] = 231945, - [SMALL_STATE(7038)] = 231961, - [SMALL_STATE(7039)] = 231977, - [SMALL_STATE(7040)] = 231993, - [SMALL_STATE(7041)] = 232005, - [SMALL_STATE(7042)] = 232021, - [SMALL_STATE(7043)] = 232033, - [SMALL_STATE(7044)] = 232049, - [SMALL_STATE(7045)] = 232063, - [SMALL_STATE(7046)] = 232077, - [SMALL_STATE(7047)] = 232093, - [SMALL_STATE(7048)] = 232109, - [SMALL_STATE(7049)] = 232125, - [SMALL_STATE(7050)] = 232141, - [SMALL_STATE(7051)] = 232157, - [SMALL_STATE(7052)] = 232173, - [SMALL_STATE(7053)] = 232189, - [SMALL_STATE(7054)] = 232203, - [SMALL_STATE(7055)] = 232219, - [SMALL_STATE(7056)] = 232233, - [SMALL_STATE(7057)] = 232247, - [SMALL_STATE(7058)] = 232259, - [SMALL_STATE(7059)] = 232275, - [SMALL_STATE(7060)] = 232291, - [SMALL_STATE(7061)] = 232307, - [SMALL_STATE(7062)] = 232323, - [SMALL_STATE(7063)] = 232339, - [SMALL_STATE(7064)] = 232355, - [SMALL_STATE(7065)] = 232371, - [SMALL_STATE(7066)] = 232387, - [SMALL_STATE(7067)] = 232403, - [SMALL_STATE(7068)] = 232419, - [SMALL_STATE(7069)] = 232431, - [SMALL_STATE(7070)] = 232447, - [SMALL_STATE(7071)] = 232463, - [SMALL_STATE(7072)] = 232475, - [SMALL_STATE(7073)] = 232487, - [SMALL_STATE(7074)] = 232503, - [SMALL_STATE(7075)] = 232519, - [SMALL_STATE(7076)] = 232535, - [SMALL_STATE(7077)] = 232549, - [SMALL_STATE(7078)] = 232565, - [SMALL_STATE(7079)] = 232577, - [SMALL_STATE(7080)] = 232589, - [SMALL_STATE(7081)] = 232603, - [SMALL_STATE(7082)] = 232619, - [SMALL_STATE(7083)] = 232631, - [SMALL_STATE(7084)] = 232647, - [SMALL_STATE(7085)] = 232661, - [SMALL_STATE(7086)] = 232675, - [SMALL_STATE(7087)] = 232687, - [SMALL_STATE(7088)] = 232699, - [SMALL_STATE(7089)] = 232713, - [SMALL_STATE(7090)] = 232729, - [SMALL_STATE(7091)] = 232745, - [SMALL_STATE(7092)] = 232757, - [SMALL_STATE(7093)] = 232771, - [SMALL_STATE(7094)] = 232787, - [SMALL_STATE(7095)] = 232803, - [SMALL_STATE(7096)] = 232819, - [SMALL_STATE(7097)] = 232835, - [SMALL_STATE(7098)] = 232847, - [SMALL_STATE(7099)] = 232859, - [SMALL_STATE(7100)] = 232871, - [SMALL_STATE(7101)] = 232885, - [SMALL_STATE(7102)] = 232901, - [SMALL_STATE(7103)] = 232913, - [SMALL_STATE(7104)] = 232929, - [SMALL_STATE(7105)] = 232945, - [SMALL_STATE(7106)] = 232961, - [SMALL_STATE(7107)] = 232975, - [SMALL_STATE(7108)] = 232989, - [SMALL_STATE(7109)] = 233003, - [SMALL_STATE(7110)] = 233019, - [SMALL_STATE(7111)] = 233035, - [SMALL_STATE(7112)] = 233049, - [SMALL_STATE(7113)] = 233065, - [SMALL_STATE(7114)] = 233077, - [SMALL_STATE(7115)] = 233093, - [SMALL_STATE(7116)] = 233107, - [SMALL_STATE(7117)] = 233123, - [SMALL_STATE(7118)] = 233139, - [SMALL_STATE(7119)] = 233155, - [SMALL_STATE(7120)] = 233167, - [SMALL_STATE(7121)] = 233183, - [SMALL_STATE(7122)] = 233199, - [SMALL_STATE(7123)] = 233215, - [SMALL_STATE(7124)] = 233231, - [SMALL_STATE(7125)] = 233243, - [SMALL_STATE(7126)] = 233255, - [SMALL_STATE(7127)] = 233271, - [SMALL_STATE(7128)] = 233287, - [SMALL_STATE(7129)] = 233301, - [SMALL_STATE(7130)] = 233315, - [SMALL_STATE(7131)] = 233327, - [SMALL_STATE(7132)] = 233343, - [SMALL_STATE(7133)] = 233359, - [SMALL_STATE(7134)] = 233375, - [SMALL_STATE(7135)] = 233391, - [SMALL_STATE(7136)] = 233407, - [SMALL_STATE(7137)] = 233423, - [SMALL_STATE(7138)] = 233439, - [SMALL_STATE(7139)] = 233455, - [SMALL_STATE(7140)] = 233471, - [SMALL_STATE(7141)] = 233483, - [SMALL_STATE(7142)] = 233499, - [SMALL_STATE(7143)] = 233513, - [SMALL_STATE(7144)] = 233525, - [SMALL_STATE(7145)] = 233541, - [SMALL_STATE(7146)] = 233557, - [SMALL_STATE(7147)] = 233573, - [SMALL_STATE(7148)] = 233585, - [SMALL_STATE(7149)] = 233599, - [SMALL_STATE(7150)] = 233615, - [SMALL_STATE(7151)] = 233631, - [SMALL_STATE(7152)] = 233643, - [SMALL_STATE(7153)] = 233659, - [SMALL_STATE(7154)] = 233671, - [SMALL_STATE(7155)] = 233687, - [SMALL_STATE(7156)] = 233699, - [SMALL_STATE(7157)] = 233715, - [SMALL_STATE(7158)] = 233731, - [SMALL_STATE(7159)] = 233743, - [SMALL_STATE(7160)] = 233755, - [SMALL_STATE(7161)] = 233767, - [SMALL_STATE(7162)] = 233779, - [SMALL_STATE(7163)] = 233791, - [SMALL_STATE(7164)] = 233803, - [SMALL_STATE(7165)] = 233815, - [SMALL_STATE(7166)] = 233831, - [SMALL_STATE(7167)] = 233843, - [SMALL_STATE(7168)] = 233859, - [SMALL_STATE(7169)] = 233875, - [SMALL_STATE(7170)] = 233891, - [SMALL_STATE(7171)] = 233907, - [SMALL_STATE(7172)] = 233921, - [SMALL_STATE(7173)] = 233933, - [SMALL_STATE(7174)] = 233949, - [SMALL_STATE(7175)] = 233965, - [SMALL_STATE(7176)] = 233977, - [SMALL_STATE(7177)] = 233993, - [SMALL_STATE(7178)] = 234005, - [SMALL_STATE(7179)] = 234019, - [SMALL_STATE(7180)] = 234033, - [SMALL_STATE(7181)] = 234045, - [SMALL_STATE(7182)] = 234061, - [SMALL_STATE(7183)] = 234073, - [SMALL_STATE(7184)] = 234087, - [SMALL_STATE(7185)] = 234101, - [SMALL_STATE(7186)] = 234113, - [SMALL_STATE(7187)] = 234125, - [SMALL_STATE(7188)] = 234141, - [SMALL_STATE(7189)] = 234153, - [SMALL_STATE(7190)] = 234169, - [SMALL_STATE(7191)] = 234181, - [SMALL_STATE(7192)] = 234195, - [SMALL_STATE(7193)] = 234209, - [SMALL_STATE(7194)] = 234221, - [SMALL_STATE(7195)] = 234235, - [SMALL_STATE(7196)] = 234251, - [SMALL_STATE(7197)] = 234263, - [SMALL_STATE(7198)] = 234279, - [SMALL_STATE(7199)] = 234291, - [SMALL_STATE(7200)] = 234305, - [SMALL_STATE(7201)] = 234317, - [SMALL_STATE(7202)] = 234331, - [SMALL_STATE(7203)] = 234345, - [SMALL_STATE(7204)] = 234361, - [SMALL_STATE(7205)] = 234377, - [SMALL_STATE(7206)] = 234393, - [SMALL_STATE(7207)] = 234409, - [SMALL_STATE(7208)] = 234425, - [SMALL_STATE(7209)] = 234441, - [SMALL_STATE(7210)] = 234457, - [SMALL_STATE(7211)] = 234473, - [SMALL_STATE(7212)] = 234489, - [SMALL_STATE(7213)] = 234505, - [SMALL_STATE(7214)] = 234519, - [SMALL_STATE(7215)] = 234531, - [SMALL_STATE(7216)] = 234545, - [SMALL_STATE(7217)] = 234561, - [SMALL_STATE(7218)] = 234577, - [SMALL_STATE(7219)] = 234593, - [SMALL_STATE(7220)] = 234609, - [SMALL_STATE(7221)] = 234625, - [SMALL_STATE(7222)] = 234637, - [SMALL_STATE(7223)] = 234649, - [SMALL_STATE(7224)] = 234663, - [SMALL_STATE(7225)] = 234677, - [SMALL_STATE(7226)] = 234689, - [SMALL_STATE(7227)] = 234701, - [SMALL_STATE(7228)] = 234713, - [SMALL_STATE(7229)] = 234727, - [SMALL_STATE(7230)] = 234743, - [SMALL_STATE(7231)] = 234755, - [SMALL_STATE(7232)] = 234771, - [SMALL_STATE(7233)] = 234785, - [SMALL_STATE(7234)] = 234797, - [SMALL_STATE(7235)] = 234813, - [SMALL_STATE(7236)] = 234829, - [SMALL_STATE(7237)] = 234845, - [SMALL_STATE(7238)] = 234861, - [SMALL_STATE(7239)] = 234875, - [SMALL_STATE(7240)] = 234889, - [SMALL_STATE(7241)] = 234905, - [SMALL_STATE(7242)] = 234921, - [SMALL_STATE(7243)] = 234937, - [SMALL_STATE(7244)] = 234953, - [SMALL_STATE(7245)] = 234967, - [SMALL_STATE(7246)] = 234983, - [SMALL_STATE(7247)] = 234999, - [SMALL_STATE(7248)] = 235013, - [SMALL_STATE(7249)] = 235029, - [SMALL_STATE(7250)] = 235045, - [SMALL_STATE(7251)] = 235061, - [SMALL_STATE(7252)] = 235077, - [SMALL_STATE(7253)] = 235093, - [SMALL_STATE(7254)] = 235109, - [SMALL_STATE(7255)] = 235123, - [SMALL_STATE(7256)] = 235135, - [SMALL_STATE(7257)] = 235149, - [SMALL_STATE(7258)] = 235165, - [SMALL_STATE(7259)] = 235181, - [SMALL_STATE(7260)] = 235197, - [SMALL_STATE(7261)] = 235213, - [SMALL_STATE(7262)] = 235227, - [SMALL_STATE(7263)] = 235241, - [SMALL_STATE(7264)] = 235257, - [SMALL_STATE(7265)] = 235273, - [SMALL_STATE(7266)] = 235289, - [SMALL_STATE(7267)] = 235305, - [SMALL_STATE(7268)] = 235319, - [SMALL_STATE(7269)] = 235333, - [SMALL_STATE(7270)] = 235345, - [SMALL_STATE(7271)] = 235361, - [SMALL_STATE(7272)] = 235377, - [SMALL_STATE(7273)] = 235393, - [SMALL_STATE(7274)] = 235409, - [SMALL_STATE(7275)] = 235425, - [SMALL_STATE(7276)] = 235439, - [SMALL_STATE(7277)] = 235453, - [SMALL_STATE(7278)] = 235467, - [SMALL_STATE(7279)] = 235479, - [SMALL_STATE(7280)] = 235495, - [SMALL_STATE(7281)] = 235511, - [SMALL_STATE(7282)] = 235527, - [SMALL_STATE(7283)] = 235543, - [SMALL_STATE(7284)] = 235559, - [SMALL_STATE(7285)] = 235573, - [SMALL_STATE(7286)] = 235589, - [SMALL_STATE(7287)] = 235603, - [SMALL_STATE(7288)] = 235615, - [SMALL_STATE(7289)] = 235631, - [SMALL_STATE(7290)] = 235647, - [SMALL_STATE(7291)] = 235663, - [SMALL_STATE(7292)] = 235679, - [SMALL_STATE(7293)] = 235693, - [SMALL_STATE(7294)] = 235709, - [SMALL_STATE(7295)] = 235723, - [SMALL_STATE(7296)] = 235739, - [SMALL_STATE(7297)] = 235755, - [SMALL_STATE(7298)] = 235771, - [SMALL_STATE(7299)] = 235787, - [SMALL_STATE(7300)] = 235803, - [SMALL_STATE(7301)] = 235817, - [SMALL_STATE(7302)] = 235831, - [SMALL_STATE(7303)] = 235845, - [SMALL_STATE(7304)] = 235857, - [SMALL_STATE(7305)] = 235873, - [SMALL_STATE(7306)] = 235889, - [SMALL_STATE(7307)] = 235905, - [SMALL_STATE(7308)] = 235921, - [SMALL_STATE(7309)] = 235937, - [SMALL_STATE(7310)] = 235951, - [SMALL_STATE(7311)] = 235967, - [SMALL_STATE(7312)] = 235981, - [SMALL_STATE(7313)] = 235995, - [SMALL_STATE(7314)] = 236011, - [SMALL_STATE(7315)] = 236027, - [SMALL_STATE(7316)] = 236043, - [SMALL_STATE(7317)] = 236057, - [SMALL_STATE(7318)] = 236073, - [SMALL_STATE(7319)] = 236089, - [SMALL_STATE(7320)] = 236103, - [SMALL_STATE(7321)] = 236119, - [SMALL_STATE(7322)] = 236133, - [SMALL_STATE(7323)] = 236145, - [SMALL_STATE(7324)] = 236157, - [SMALL_STATE(7325)] = 236173, - [SMALL_STATE(7326)] = 236189, - [SMALL_STATE(7327)] = 236205, - [SMALL_STATE(7328)] = 236221, - [SMALL_STATE(7329)] = 236235, - [SMALL_STATE(7330)] = 236249, - [SMALL_STATE(7331)] = 236261, - [SMALL_STATE(7332)] = 236277, - [SMALL_STATE(7333)] = 236293, - [SMALL_STATE(7334)] = 236309, - [SMALL_STATE(7335)] = 236325, - [SMALL_STATE(7336)] = 236341, - [SMALL_STATE(7337)] = 236355, - [SMALL_STATE(7338)] = 236369, - [SMALL_STATE(7339)] = 236383, - [SMALL_STATE(7340)] = 236399, - [SMALL_STATE(7341)] = 236415, - [SMALL_STATE(7342)] = 236429, - [SMALL_STATE(7343)] = 236445, - [SMALL_STATE(7344)] = 236461, - [SMALL_STATE(7345)] = 236475, - [SMALL_STATE(7346)] = 236489, - [SMALL_STATE(7347)] = 236505, - [SMALL_STATE(7348)] = 236521, - [SMALL_STATE(7349)] = 236537, - [SMALL_STATE(7350)] = 236553, - [SMALL_STATE(7351)] = 236569, - [SMALL_STATE(7352)] = 236585, - [SMALL_STATE(7353)] = 236599, - [SMALL_STATE(7354)] = 236613, - [SMALL_STATE(7355)] = 236629, - [SMALL_STATE(7356)] = 236645, - [SMALL_STATE(7357)] = 236661, - [SMALL_STATE(7358)] = 236677, - [SMALL_STATE(7359)] = 236693, - [SMALL_STATE(7360)] = 236707, - [SMALL_STATE(7361)] = 236721, - [SMALL_STATE(7362)] = 236737, - [SMALL_STATE(7363)] = 236753, - [SMALL_STATE(7364)] = 236767, - [SMALL_STATE(7365)] = 236783, - [SMALL_STATE(7366)] = 236799, - [SMALL_STATE(7367)] = 236813, - [SMALL_STATE(7368)] = 236827, - [SMALL_STATE(7369)] = 236843, - [SMALL_STATE(7370)] = 236859, - [SMALL_STATE(7371)] = 236875, - [SMALL_STATE(7372)] = 236891, - [SMALL_STATE(7373)] = 236907, - [SMALL_STATE(7374)] = 236923, - [SMALL_STATE(7375)] = 236935, - [SMALL_STATE(7376)] = 236951, - [SMALL_STATE(7377)] = 236967, - [SMALL_STATE(7378)] = 236979, - [SMALL_STATE(7379)] = 236995, - [SMALL_STATE(7380)] = 237011, - [SMALL_STATE(7381)] = 237023, - [SMALL_STATE(7382)] = 237035, - [SMALL_STATE(7383)] = 237047, - [SMALL_STATE(7384)] = 237063, - [SMALL_STATE(7385)] = 237079, - [SMALL_STATE(7386)] = 237093, - [SMALL_STATE(7387)] = 237107, - [SMALL_STATE(7388)] = 237121, - [SMALL_STATE(7389)] = 237135, - [SMALL_STATE(7390)] = 237151, - [SMALL_STATE(7391)] = 237167, - [SMALL_STATE(7392)] = 237179, - [SMALL_STATE(7393)] = 237193, - [SMALL_STATE(7394)] = 237205, - [SMALL_STATE(7395)] = 237217, - [SMALL_STATE(7396)] = 237231, - [SMALL_STATE(7397)] = 237245, - [SMALL_STATE(7398)] = 237259, - [SMALL_STATE(7399)] = 237273, - [SMALL_STATE(7400)] = 237287, - [SMALL_STATE(7401)] = 237303, - [SMALL_STATE(7402)] = 237319, - [SMALL_STATE(7403)] = 237331, - [SMALL_STATE(7404)] = 237345, - [SMALL_STATE(7405)] = 237361, - [SMALL_STATE(7406)] = 237374, - [SMALL_STATE(7407)] = 237387, - [SMALL_STATE(7408)] = 237400, - [SMALL_STATE(7409)] = 237413, - [SMALL_STATE(7410)] = 237426, - [SMALL_STATE(7411)] = 237439, - [SMALL_STATE(7412)] = 237452, - [SMALL_STATE(7413)] = 237465, - [SMALL_STATE(7414)] = 237478, - [SMALL_STATE(7415)] = 237491, - [SMALL_STATE(7416)] = 237504, - [SMALL_STATE(7417)] = 237517, - [SMALL_STATE(7418)] = 237530, - [SMALL_STATE(7419)] = 237543, - [SMALL_STATE(7420)] = 237556, - [SMALL_STATE(7421)] = 237569, - [SMALL_STATE(7422)] = 237582, - [SMALL_STATE(7423)] = 237595, - [SMALL_STATE(7424)] = 237608, - [SMALL_STATE(7425)] = 237621, - [SMALL_STATE(7426)] = 237634, - [SMALL_STATE(7427)] = 237647, - [SMALL_STATE(7428)] = 237660, - [SMALL_STATE(7429)] = 237673, - [SMALL_STATE(7430)] = 237686, - [SMALL_STATE(7431)] = 237699, - [SMALL_STATE(7432)] = 237712, - [SMALL_STATE(7433)] = 237725, - [SMALL_STATE(7434)] = 237738, - [SMALL_STATE(7435)] = 237751, - [SMALL_STATE(7436)] = 237764, - [SMALL_STATE(7437)] = 237777, - [SMALL_STATE(7438)] = 237790, - [SMALL_STATE(7439)] = 237803, - [SMALL_STATE(7440)] = 237816, - [SMALL_STATE(7441)] = 237829, - [SMALL_STATE(7442)] = 237842, - [SMALL_STATE(7443)] = 237855, - [SMALL_STATE(7444)] = 237868, - [SMALL_STATE(7445)] = 237881, - [SMALL_STATE(7446)] = 237894, - [SMALL_STATE(7447)] = 237907, - [SMALL_STATE(7448)] = 237920, - [SMALL_STATE(7449)] = 237933, - [SMALL_STATE(7450)] = 237946, - [SMALL_STATE(7451)] = 237959, - [SMALL_STATE(7452)] = 237972, - [SMALL_STATE(7453)] = 237985, - [SMALL_STATE(7454)] = 237998, - [SMALL_STATE(7455)] = 238011, - [SMALL_STATE(7456)] = 238024, - [SMALL_STATE(7457)] = 238037, - [SMALL_STATE(7458)] = 238050, - [SMALL_STATE(7459)] = 238063, - [SMALL_STATE(7460)] = 238076, - [SMALL_STATE(7461)] = 238089, - [SMALL_STATE(7462)] = 238102, - [SMALL_STATE(7463)] = 238115, - [SMALL_STATE(7464)] = 238128, - [SMALL_STATE(7465)] = 238141, - [SMALL_STATE(7466)] = 238154, - [SMALL_STATE(7467)] = 238167, - [SMALL_STATE(7468)] = 238180, - [SMALL_STATE(7469)] = 238193, - [SMALL_STATE(7470)] = 238206, - [SMALL_STATE(7471)] = 238219, - [SMALL_STATE(7472)] = 238232, - [SMALL_STATE(7473)] = 238245, - [SMALL_STATE(7474)] = 238258, - [SMALL_STATE(7475)] = 238271, - [SMALL_STATE(7476)] = 238284, - [SMALL_STATE(7477)] = 238297, - [SMALL_STATE(7478)] = 238310, - [SMALL_STATE(7479)] = 238323, - [SMALL_STATE(7480)] = 238336, - [SMALL_STATE(7481)] = 238349, - [SMALL_STATE(7482)] = 238362, - [SMALL_STATE(7483)] = 238375, - [SMALL_STATE(7484)] = 238388, - [SMALL_STATE(7485)] = 238401, - [SMALL_STATE(7486)] = 238414, - [SMALL_STATE(7487)] = 238427, - [SMALL_STATE(7488)] = 238440, - [SMALL_STATE(7489)] = 238453, - [SMALL_STATE(7490)] = 238466, - [SMALL_STATE(7491)] = 238479, - [SMALL_STATE(7492)] = 238492, - [SMALL_STATE(7493)] = 238505, - [SMALL_STATE(7494)] = 238518, - [SMALL_STATE(7495)] = 238531, - [SMALL_STATE(7496)] = 238544, - [SMALL_STATE(7497)] = 238557, - [SMALL_STATE(7498)] = 238570, - [SMALL_STATE(7499)] = 238583, - [SMALL_STATE(7500)] = 238596, - [SMALL_STATE(7501)] = 238609, - [SMALL_STATE(7502)] = 238622, - [SMALL_STATE(7503)] = 238635, - [SMALL_STATE(7504)] = 238648, - [SMALL_STATE(7505)] = 238661, - [SMALL_STATE(7506)] = 238674, - [SMALL_STATE(7507)] = 238687, - [SMALL_STATE(7508)] = 238700, - [SMALL_STATE(7509)] = 238713, - [SMALL_STATE(7510)] = 238726, - [SMALL_STATE(7511)] = 238737, - [SMALL_STATE(7512)] = 238750, - [SMALL_STATE(7513)] = 238763, - [SMALL_STATE(7514)] = 238776, - [SMALL_STATE(7515)] = 238789, - [SMALL_STATE(7516)] = 238802, - [SMALL_STATE(7517)] = 238815, - [SMALL_STATE(7518)] = 238828, - [SMALL_STATE(7519)] = 238841, - [SMALL_STATE(7520)] = 238854, - [SMALL_STATE(7521)] = 238867, - [SMALL_STATE(7522)] = 238880, - [SMALL_STATE(7523)] = 238893, - [SMALL_STATE(7524)] = 238904, - [SMALL_STATE(7525)] = 238917, - [SMALL_STATE(7526)] = 238930, - [SMALL_STATE(7527)] = 238943, - [SMALL_STATE(7528)] = 238956, - [SMALL_STATE(7529)] = 238969, - [SMALL_STATE(7530)] = 238982, - [SMALL_STATE(7531)] = 238995, - [SMALL_STATE(7532)] = 239008, - [SMALL_STATE(7533)] = 239021, - [SMALL_STATE(7534)] = 239034, - [SMALL_STATE(7535)] = 239047, - [SMALL_STATE(7536)] = 239060, - [SMALL_STATE(7537)] = 239073, - [SMALL_STATE(7538)] = 239086, - [SMALL_STATE(7539)] = 239099, - [SMALL_STATE(7540)] = 239112, - [SMALL_STATE(7541)] = 239125, - [SMALL_STATE(7542)] = 239136, - [SMALL_STATE(7543)] = 239149, - [SMALL_STATE(7544)] = 239162, - [SMALL_STATE(7545)] = 239173, - [SMALL_STATE(7546)] = 239186, - [SMALL_STATE(7547)] = 239199, - [SMALL_STATE(7548)] = 239212, - [SMALL_STATE(7549)] = 239225, - [SMALL_STATE(7550)] = 239238, - [SMALL_STATE(7551)] = 239251, - [SMALL_STATE(7552)] = 239264, - [SMALL_STATE(7553)] = 239277, - [SMALL_STATE(7554)] = 239290, - [SMALL_STATE(7555)] = 239303, - [SMALL_STATE(7556)] = 239316, - [SMALL_STATE(7557)] = 239329, - [SMALL_STATE(7558)] = 239342, - [SMALL_STATE(7559)] = 239355, - [SMALL_STATE(7560)] = 239368, - [SMALL_STATE(7561)] = 239379, - [SMALL_STATE(7562)] = 239392, - [SMALL_STATE(7563)] = 239405, - [SMALL_STATE(7564)] = 239418, - [SMALL_STATE(7565)] = 239431, - [SMALL_STATE(7566)] = 239442, - [SMALL_STATE(7567)] = 239455, - [SMALL_STATE(7568)] = 239468, - [SMALL_STATE(7569)] = 239481, - [SMALL_STATE(7570)] = 239494, - [SMALL_STATE(7571)] = 239507, - [SMALL_STATE(7572)] = 239520, - [SMALL_STATE(7573)] = 239533, - [SMALL_STATE(7574)] = 239546, - [SMALL_STATE(7575)] = 239559, - [SMALL_STATE(7576)] = 239572, - [SMALL_STATE(7577)] = 239585, - [SMALL_STATE(7578)] = 239598, - [SMALL_STATE(7579)] = 239611, - [SMALL_STATE(7580)] = 239622, - [SMALL_STATE(7581)] = 239635, - [SMALL_STATE(7582)] = 239648, - [SMALL_STATE(7583)] = 239661, - [SMALL_STATE(7584)] = 239674, - [SMALL_STATE(7585)] = 239687, - [SMALL_STATE(7586)] = 239700, - [SMALL_STATE(7587)] = 239713, - [SMALL_STATE(7588)] = 239726, - [SMALL_STATE(7589)] = 239739, - [SMALL_STATE(7590)] = 239752, - [SMALL_STATE(7591)] = 239765, - [SMALL_STATE(7592)] = 239778, - [SMALL_STATE(7593)] = 239791, - [SMALL_STATE(7594)] = 239804, - [SMALL_STATE(7595)] = 239817, - [SMALL_STATE(7596)] = 239830, - [SMALL_STATE(7597)] = 239843, - [SMALL_STATE(7598)] = 239854, - [SMALL_STATE(7599)] = 239867, - [SMALL_STATE(7600)] = 239880, - [SMALL_STATE(7601)] = 239893, - [SMALL_STATE(7602)] = 239906, - [SMALL_STATE(7603)] = 239919, - [SMALL_STATE(7604)] = 239932, - [SMALL_STATE(7605)] = 239945, - [SMALL_STATE(7606)] = 239958, - [SMALL_STATE(7607)] = 239971, - [SMALL_STATE(7608)] = 239981, - [SMALL_STATE(7609)] = 239991, - [SMALL_STATE(7610)] = 240001, - [SMALL_STATE(7611)] = 240011, - [SMALL_STATE(7612)] = 240021, - [SMALL_STATE(7613)] = 240031, - [SMALL_STATE(7614)] = 240041, - [SMALL_STATE(7615)] = 240051, - [SMALL_STATE(7616)] = 240061, - [SMALL_STATE(7617)] = 240071, - [SMALL_STATE(7618)] = 240081, - [SMALL_STATE(7619)] = 240091, - [SMALL_STATE(7620)] = 240101, - [SMALL_STATE(7621)] = 240111, - [SMALL_STATE(7622)] = 240121, - [SMALL_STATE(7623)] = 240131, - [SMALL_STATE(7624)] = 240141, - [SMALL_STATE(7625)] = 240151, - [SMALL_STATE(7626)] = 240161, - [SMALL_STATE(7627)] = 240171, - [SMALL_STATE(7628)] = 240181, - [SMALL_STATE(7629)] = 240191, - [SMALL_STATE(7630)] = 240201, - [SMALL_STATE(7631)] = 240211, - [SMALL_STATE(7632)] = 240221, - [SMALL_STATE(7633)] = 240231, - [SMALL_STATE(7634)] = 240241, - [SMALL_STATE(7635)] = 240251, - [SMALL_STATE(7636)] = 240261, - [SMALL_STATE(7637)] = 240271, - [SMALL_STATE(7638)] = 240281, - [SMALL_STATE(7639)] = 240291, - [SMALL_STATE(7640)] = 240301, - [SMALL_STATE(7641)] = 240311, - [SMALL_STATE(7642)] = 240321, - [SMALL_STATE(7643)] = 240331, - [SMALL_STATE(7644)] = 240341, - [SMALL_STATE(7645)] = 240351, - [SMALL_STATE(7646)] = 240361, - [SMALL_STATE(7647)] = 240371, - [SMALL_STATE(7648)] = 240381, - [SMALL_STATE(7649)] = 240391, - [SMALL_STATE(7650)] = 240401, - [SMALL_STATE(7651)] = 240411, - [SMALL_STATE(7652)] = 240421, - [SMALL_STATE(7653)] = 240431, - [SMALL_STATE(7654)] = 240441, - [SMALL_STATE(7655)] = 240451, - [SMALL_STATE(7656)] = 240461, - [SMALL_STATE(7657)] = 240471, - [SMALL_STATE(7658)] = 240481, - [SMALL_STATE(7659)] = 240491, - [SMALL_STATE(7660)] = 240501, - [SMALL_STATE(7661)] = 240511, - [SMALL_STATE(7662)] = 240521, - [SMALL_STATE(7663)] = 240531, - [SMALL_STATE(7664)] = 240541, - [SMALL_STATE(7665)] = 240551, - [SMALL_STATE(7666)] = 240561, - [SMALL_STATE(7667)] = 240571, - [SMALL_STATE(7668)] = 240581, - [SMALL_STATE(7669)] = 240591, - [SMALL_STATE(7670)] = 240601, - [SMALL_STATE(7671)] = 240611, - [SMALL_STATE(7672)] = 240621, - [SMALL_STATE(7673)] = 240631, - [SMALL_STATE(7674)] = 240641, - [SMALL_STATE(7675)] = 240651, - [SMALL_STATE(7676)] = 240661, - [SMALL_STATE(7677)] = 240671, - [SMALL_STATE(7678)] = 240681, - [SMALL_STATE(7679)] = 240691, - [SMALL_STATE(7680)] = 240701, - [SMALL_STATE(7681)] = 240711, - [SMALL_STATE(7682)] = 240721, - [SMALL_STATE(7683)] = 240731, - [SMALL_STATE(7684)] = 240741, - [SMALL_STATE(7685)] = 240751, - [SMALL_STATE(7686)] = 240761, - [SMALL_STATE(7687)] = 240771, - [SMALL_STATE(7688)] = 240781, - [SMALL_STATE(7689)] = 240791, - [SMALL_STATE(7690)] = 240801, - [SMALL_STATE(7691)] = 240811, - [SMALL_STATE(7692)] = 240821, - [SMALL_STATE(7693)] = 240831, - [SMALL_STATE(7694)] = 240841, - [SMALL_STATE(7695)] = 240851, - [SMALL_STATE(7696)] = 240861, - [SMALL_STATE(7697)] = 240871, - [SMALL_STATE(7698)] = 240881, - [SMALL_STATE(7699)] = 240891, - [SMALL_STATE(7700)] = 240901, - [SMALL_STATE(7701)] = 240911, - [SMALL_STATE(7702)] = 240921, - [SMALL_STATE(7703)] = 240931, - [SMALL_STATE(7704)] = 240941, - [SMALL_STATE(7705)] = 240951, - [SMALL_STATE(7706)] = 240961, - [SMALL_STATE(7707)] = 240971, - [SMALL_STATE(7708)] = 240981, - [SMALL_STATE(7709)] = 240991, - [SMALL_STATE(7710)] = 241001, - [SMALL_STATE(7711)] = 241011, - [SMALL_STATE(7712)] = 241021, - [SMALL_STATE(7713)] = 241031, - [SMALL_STATE(7714)] = 241041, - [SMALL_STATE(7715)] = 241051, - [SMALL_STATE(7716)] = 241061, - [SMALL_STATE(7717)] = 241071, - [SMALL_STATE(7718)] = 241081, - [SMALL_STATE(7719)] = 241091, - [SMALL_STATE(7720)] = 241101, - [SMALL_STATE(7721)] = 241111, - [SMALL_STATE(7722)] = 241121, - [SMALL_STATE(7723)] = 241131, - [SMALL_STATE(7724)] = 241141, - [SMALL_STATE(7725)] = 241151, - [SMALL_STATE(7726)] = 241161, - [SMALL_STATE(7727)] = 241171, - [SMALL_STATE(7728)] = 241181, - [SMALL_STATE(7729)] = 241191, - [SMALL_STATE(7730)] = 241201, - [SMALL_STATE(7731)] = 241211, - [SMALL_STATE(7732)] = 241221, - [SMALL_STATE(7733)] = 241231, - [SMALL_STATE(7734)] = 241241, - [SMALL_STATE(7735)] = 241251, - [SMALL_STATE(7736)] = 241261, - [SMALL_STATE(7737)] = 241271, - [SMALL_STATE(7738)] = 241281, - [SMALL_STATE(7739)] = 241291, - [SMALL_STATE(7740)] = 241301, - [SMALL_STATE(7741)] = 241311, - [SMALL_STATE(7742)] = 241321, - [SMALL_STATE(7743)] = 241331, - [SMALL_STATE(7744)] = 241341, - [SMALL_STATE(7745)] = 241351, - [SMALL_STATE(7746)] = 241361, - [SMALL_STATE(7747)] = 241371, - [SMALL_STATE(7748)] = 241381, - [SMALL_STATE(7749)] = 241391, - [SMALL_STATE(7750)] = 241401, - [SMALL_STATE(7751)] = 241411, - [SMALL_STATE(7752)] = 241421, - [SMALL_STATE(7753)] = 241431, - [SMALL_STATE(7754)] = 241441, - [SMALL_STATE(7755)] = 241451, - [SMALL_STATE(7756)] = 241461, - [SMALL_STATE(7757)] = 241471, - [SMALL_STATE(7758)] = 241481, - [SMALL_STATE(7759)] = 241491, - [SMALL_STATE(7760)] = 241501, - [SMALL_STATE(7761)] = 241511, - [SMALL_STATE(7762)] = 241521, - [SMALL_STATE(7763)] = 241531, - [SMALL_STATE(7764)] = 241541, - [SMALL_STATE(7765)] = 241551, - [SMALL_STATE(7766)] = 241561, - [SMALL_STATE(7767)] = 241571, - [SMALL_STATE(7768)] = 241581, - [SMALL_STATE(7769)] = 241591, - [SMALL_STATE(7770)] = 241601, - [SMALL_STATE(7771)] = 241611, - [SMALL_STATE(7772)] = 241621, - [SMALL_STATE(7773)] = 241631, - [SMALL_STATE(7774)] = 241641, - [SMALL_STATE(7775)] = 241651, - [SMALL_STATE(7776)] = 241661, - [SMALL_STATE(7777)] = 241671, - [SMALL_STATE(7778)] = 241681, - [SMALL_STATE(7779)] = 241691, - [SMALL_STATE(7780)] = 241701, - [SMALL_STATE(7781)] = 241711, - [SMALL_STATE(7782)] = 241721, - [SMALL_STATE(7783)] = 241731, - [SMALL_STATE(7784)] = 241741, - [SMALL_STATE(7785)] = 241751, - [SMALL_STATE(7786)] = 241761, - [SMALL_STATE(7787)] = 241771, - [SMALL_STATE(7788)] = 241781, - [SMALL_STATE(7789)] = 241791, - [SMALL_STATE(7790)] = 241801, - [SMALL_STATE(7791)] = 241811, - [SMALL_STATE(7792)] = 241821, - [SMALL_STATE(7793)] = 241831, - [SMALL_STATE(7794)] = 241841, - [SMALL_STATE(7795)] = 241851, - [SMALL_STATE(7796)] = 241861, - [SMALL_STATE(7797)] = 241871, - [SMALL_STATE(7798)] = 241881, - [SMALL_STATE(7799)] = 241891, - [SMALL_STATE(7800)] = 241901, - [SMALL_STATE(7801)] = 241911, - [SMALL_STATE(7802)] = 241921, - [SMALL_STATE(7803)] = 241931, - [SMALL_STATE(7804)] = 241941, - [SMALL_STATE(7805)] = 241951, - [SMALL_STATE(7806)] = 241961, - [SMALL_STATE(7807)] = 241971, - [SMALL_STATE(7808)] = 241981, - [SMALL_STATE(7809)] = 241991, - [SMALL_STATE(7810)] = 242001, - [SMALL_STATE(7811)] = 242011, - [SMALL_STATE(7812)] = 242021, - [SMALL_STATE(7813)] = 242031, - [SMALL_STATE(7814)] = 242041, - [SMALL_STATE(7815)] = 242051, - [SMALL_STATE(7816)] = 242061, - [SMALL_STATE(7817)] = 242071, - [SMALL_STATE(7818)] = 242081, - [SMALL_STATE(7819)] = 242091, - [SMALL_STATE(7820)] = 242101, - [SMALL_STATE(7821)] = 242111, - [SMALL_STATE(7822)] = 242121, - [SMALL_STATE(7823)] = 242131, - [SMALL_STATE(7824)] = 242141, - [SMALL_STATE(7825)] = 242151, - [SMALL_STATE(7826)] = 242161, - [SMALL_STATE(7827)] = 242171, - [SMALL_STATE(7828)] = 242181, - [SMALL_STATE(7829)] = 242191, - [SMALL_STATE(7830)] = 242201, - [SMALL_STATE(7831)] = 242211, - [SMALL_STATE(7832)] = 242221, - [SMALL_STATE(7833)] = 242231, - [SMALL_STATE(7834)] = 242241, - [SMALL_STATE(7835)] = 242251, - [SMALL_STATE(7836)] = 242261, - [SMALL_STATE(7837)] = 242271, - [SMALL_STATE(7838)] = 242281, - [SMALL_STATE(7839)] = 242291, - [SMALL_STATE(7840)] = 242301, - [SMALL_STATE(7841)] = 242311, - [SMALL_STATE(7842)] = 242321, - [SMALL_STATE(7843)] = 242331, - [SMALL_STATE(7844)] = 242341, - [SMALL_STATE(7845)] = 242351, - [SMALL_STATE(7846)] = 242361, - [SMALL_STATE(7847)] = 242371, - [SMALL_STATE(7848)] = 242381, - [SMALL_STATE(7849)] = 242391, - [SMALL_STATE(7850)] = 242401, - [SMALL_STATE(7851)] = 242411, - [SMALL_STATE(7852)] = 242421, - [SMALL_STATE(7853)] = 242431, - [SMALL_STATE(7854)] = 242441, - [SMALL_STATE(7855)] = 242451, - [SMALL_STATE(7856)] = 242461, - [SMALL_STATE(7857)] = 242471, - [SMALL_STATE(7858)] = 242481, - [SMALL_STATE(7859)] = 242491, - [SMALL_STATE(7860)] = 242501, - [SMALL_STATE(7861)] = 242511, - [SMALL_STATE(7862)] = 242521, - [SMALL_STATE(7863)] = 242531, - [SMALL_STATE(7864)] = 242541, - [SMALL_STATE(7865)] = 242551, - [SMALL_STATE(7866)] = 242561, - [SMALL_STATE(7867)] = 242571, - [SMALL_STATE(7868)] = 242581, - [SMALL_STATE(7869)] = 242591, - [SMALL_STATE(7870)] = 242601, - [SMALL_STATE(7871)] = 242611, - [SMALL_STATE(7872)] = 242621, - [SMALL_STATE(7873)] = 242631, - [SMALL_STATE(7874)] = 242641, - [SMALL_STATE(7875)] = 242651, - [SMALL_STATE(7876)] = 242661, - [SMALL_STATE(7877)] = 242671, - [SMALL_STATE(7878)] = 242681, - [SMALL_STATE(7879)] = 242691, - [SMALL_STATE(7880)] = 242701, - [SMALL_STATE(7881)] = 242711, - [SMALL_STATE(7882)] = 242721, - [SMALL_STATE(7883)] = 242731, - [SMALL_STATE(7884)] = 242741, - [SMALL_STATE(7885)] = 242751, - [SMALL_STATE(7886)] = 242761, - [SMALL_STATE(7887)] = 242771, - [SMALL_STATE(7888)] = 242781, - [SMALL_STATE(7889)] = 242791, - [SMALL_STATE(7890)] = 242801, - [SMALL_STATE(7891)] = 242811, - [SMALL_STATE(7892)] = 242821, - [SMALL_STATE(7893)] = 242831, - [SMALL_STATE(7894)] = 242841, - [SMALL_STATE(7895)] = 242851, - [SMALL_STATE(7896)] = 242861, - [SMALL_STATE(7897)] = 242871, - [SMALL_STATE(7898)] = 242881, - [SMALL_STATE(7899)] = 242891, - [SMALL_STATE(7900)] = 242901, - [SMALL_STATE(7901)] = 242911, - [SMALL_STATE(7902)] = 242921, - [SMALL_STATE(7903)] = 242931, - [SMALL_STATE(7904)] = 242941, - [SMALL_STATE(7905)] = 242951, - [SMALL_STATE(7906)] = 242961, - [SMALL_STATE(7907)] = 242971, - [SMALL_STATE(7908)] = 242981, - [SMALL_STATE(7909)] = 242991, - [SMALL_STATE(7910)] = 243001, - [SMALL_STATE(7911)] = 243011, - [SMALL_STATE(7912)] = 243021, - [SMALL_STATE(7913)] = 243031, - [SMALL_STATE(7914)] = 243041, - [SMALL_STATE(7915)] = 243051, - [SMALL_STATE(7916)] = 243061, - [SMALL_STATE(7917)] = 243071, - [SMALL_STATE(7918)] = 243081, - [SMALL_STATE(7919)] = 243091, - [SMALL_STATE(7920)] = 243101, - [SMALL_STATE(7921)] = 243111, - [SMALL_STATE(7922)] = 243121, - [SMALL_STATE(7923)] = 243131, - [SMALL_STATE(7924)] = 243141, - [SMALL_STATE(7925)] = 243151, - [SMALL_STATE(7926)] = 243161, - [SMALL_STATE(7927)] = 243171, - [SMALL_STATE(7928)] = 243181, - [SMALL_STATE(7929)] = 243191, - [SMALL_STATE(7930)] = 243201, - [SMALL_STATE(7931)] = 243211, - [SMALL_STATE(7932)] = 243221, - [SMALL_STATE(7933)] = 243231, - [SMALL_STATE(7934)] = 243241, - [SMALL_STATE(7935)] = 243251, - [SMALL_STATE(7936)] = 243261, - [SMALL_STATE(7937)] = 243271, - [SMALL_STATE(7938)] = 243281, - [SMALL_STATE(7939)] = 243291, - [SMALL_STATE(7940)] = 243301, - [SMALL_STATE(7941)] = 243311, - [SMALL_STATE(7942)] = 243321, - [SMALL_STATE(7943)] = 243331, - [SMALL_STATE(7944)] = 243341, - [SMALL_STATE(7945)] = 243351, - [SMALL_STATE(7946)] = 243361, - [SMALL_STATE(7947)] = 243371, - [SMALL_STATE(7948)] = 243381, - [SMALL_STATE(7949)] = 243391, - [SMALL_STATE(7950)] = 243401, - [SMALL_STATE(7951)] = 243411, - [SMALL_STATE(7952)] = 243421, - [SMALL_STATE(7953)] = 243431, - [SMALL_STATE(7954)] = 243441, - [SMALL_STATE(7955)] = 243451, - [SMALL_STATE(7956)] = 243461, - [SMALL_STATE(7957)] = 243471, - [SMALL_STATE(7958)] = 243481, - [SMALL_STATE(7959)] = 243491, - [SMALL_STATE(7960)] = 243501, - [SMALL_STATE(7961)] = 243511, - [SMALL_STATE(7962)] = 243521, - [SMALL_STATE(7963)] = 243531, - [SMALL_STATE(7964)] = 243541, - [SMALL_STATE(7965)] = 243551, - [SMALL_STATE(7966)] = 243561, - [SMALL_STATE(7967)] = 243571, - [SMALL_STATE(7968)] = 243581, - [SMALL_STATE(7969)] = 243591, - [SMALL_STATE(7970)] = 243601, - [SMALL_STATE(7971)] = 243611, - [SMALL_STATE(7972)] = 243621, - [SMALL_STATE(7973)] = 243631, - [SMALL_STATE(7974)] = 243641, - [SMALL_STATE(7975)] = 243651, - [SMALL_STATE(7976)] = 243661, - [SMALL_STATE(7977)] = 243671, - [SMALL_STATE(7978)] = 243681, - [SMALL_STATE(7979)] = 243691, - [SMALL_STATE(7980)] = 243701, - [SMALL_STATE(7981)] = 243711, - [SMALL_STATE(7982)] = 243721, - [SMALL_STATE(7983)] = 243731, - [SMALL_STATE(7984)] = 243741, - [SMALL_STATE(7985)] = 243751, - [SMALL_STATE(7986)] = 243761, - [SMALL_STATE(7987)] = 243771, - [SMALL_STATE(7988)] = 243781, - [SMALL_STATE(7989)] = 243791, - [SMALL_STATE(7990)] = 243801, - [SMALL_STATE(7991)] = 243811, - [SMALL_STATE(7992)] = 243821, - [SMALL_STATE(7993)] = 243831, - [SMALL_STATE(7994)] = 243841, - [SMALL_STATE(7995)] = 243851, - [SMALL_STATE(7996)] = 243861, - [SMALL_STATE(7997)] = 243871, - [SMALL_STATE(7998)] = 243881, - [SMALL_STATE(7999)] = 243891, - [SMALL_STATE(8000)] = 243901, - [SMALL_STATE(8001)] = 243911, - [SMALL_STATE(8002)] = 243921, - [SMALL_STATE(8003)] = 243931, - [SMALL_STATE(8004)] = 243941, - [SMALL_STATE(8005)] = 243951, - [SMALL_STATE(8006)] = 243961, - [SMALL_STATE(8007)] = 243971, - [SMALL_STATE(8008)] = 243981, - [SMALL_STATE(8009)] = 243991, - [SMALL_STATE(8010)] = 244001, - [SMALL_STATE(8011)] = 244011, - [SMALL_STATE(8012)] = 244021, - [SMALL_STATE(8013)] = 244031, - [SMALL_STATE(8014)] = 244041, - [SMALL_STATE(8015)] = 244051, - [SMALL_STATE(8016)] = 244061, - [SMALL_STATE(8017)] = 244071, - [SMALL_STATE(8018)] = 244081, - [SMALL_STATE(8019)] = 244091, - [SMALL_STATE(8020)] = 244101, - [SMALL_STATE(8021)] = 244111, - [SMALL_STATE(8022)] = 244121, - [SMALL_STATE(8023)] = 244131, - [SMALL_STATE(8024)] = 244141, - [SMALL_STATE(8025)] = 244151, - [SMALL_STATE(8026)] = 244161, - [SMALL_STATE(8027)] = 244171, - [SMALL_STATE(8028)] = 244181, - [SMALL_STATE(8029)] = 244191, - [SMALL_STATE(8030)] = 244201, - [SMALL_STATE(8031)] = 244211, - [SMALL_STATE(8032)] = 244221, - [SMALL_STATE(8033)] = 244231, - [SMALL_STATE(8034)] = 244241, - [SMALL_STATE(8035)] = 244251, - [SMALL_STATE(8036)] = 244261, - [SMALL_STATE(8037)] = 244271, - [SMALL_STATE(8038)] = 244281, - [SMALL_STATE(8039)] = 244291, - [SMALL_STATE(8040)] = 244301, - [SMALL_STATE(8041)] = 244311, - [SMALL_STATE(8042)] = 244321, - [SMALL_STATE(8043)] = 244331, - [SMALL_STATE(8044)] = 244341, - [SMALL_STATE(8045)] = 244351, - [SMALL_STATE(8046)] = 244361, - [SMALL_STATE(8047)] = 244371, - [SMALL_STATE(8048)] = 244381, - [SMALL_STATE(8049)] = 244391, - [SMALL_STATE(8050)] = 244401, - [SMALL_STATE(8051)] = 244411, - [SMALL_STATE(8052)] = 244421, - [SMALL_STATE(8053)] = 244431, - [SMALL_STATE(8054)] = 244441, - [SMALL_STATE(8055)] = 244451, - [SMALL_STATE(8056)] = 244461, - [SMALL_STATE(8057)] = 244471, - [SMALL_STATE(8058)] = 244481, - [SMALL_STATE(8059)] = 244491, - [SMALL_STATE(8060)] = 244501, - [SMALL_STATE(8061)] = 244511, - [SMALL_STATE(8062)] = 244521, - [SMALL_STATE(8063)] = 244531, - [SMALL_STATE(8064)] = 244541, - [SMALL_STATE(8065)] = 244551, - [SMALL_STATE(8066)] = 244561, - [SMALL_STATE(8067)] = 244571, - [SMALL_STATE(8068)] = 244581, - [SMALL_STATE(8069)] = 244591, - [SMALL_STATE(8070)] = 244601, - [SMALL_STATE(8071)] = 244611, - [SMALL_STATE(8072)] = 244621, - [SMALL_STATE(8073)] = 244631, - [SMALL_STATE(8074)] = 244641, - [SMALL_STATE(8075)] = 244651, - [SMALL_STATE(8076)] = 244661, - [SMALL_STATE(8077)] = 244671, - [SMALL_STATE(8078)] = 244681, - [SMALL_STATE(8079)] = 244691, + [SMALL_STATE(1735)] = 0, + [SMALL_STATE(1736)] = 103, + [SMALL_STATE(1737)] = 176, + [SMALL_STATE(1738)] = 249, + [SMALL_STATE(1739)] = 322, + [SMALL_STATE(1740)] = 395, + [SMALL_STATE(1741)] = 468, + [SMALL_STATE(1742)] = 541, + [SMALL_STATE(1743)] = 648, + [SMALL_STATE(1744)] = 721, + [SMALL_STATE(1745)] = 794, + [SMALL_STATE(1746)] = 867, + [SMALL_STATE(1747)] = 940, + [SMALL_STATE(1748)] = 1013, + [SMALL_STATE(1749)] = 1086, + [SMALL_STATE(1750)] = 1159, + [SMALL_STATE(1751)] = 1232, + [SMALL_STATE(1752)] = 1305, + [SMALL_STATE(1753)] = 1378, + [SMALL_STATE(1754)] = 1451, + [SMALL_STATE(1755)] = 1524, + [SMALL_STATE(1756)] = 1597, + [SMALL_STATE(1757)] = 1670, + [SMALL_STATE(1758)] = 1743, + [SMALL_STATE(1759)] = 1816, + [SMALL_STATE(1760)] = 1889, + [SMALL_STATE(1761)] = 1962, + [SMALL_STATE(1762)] = 2035, + [SMALL_STATE(1763)] = 2108, + [SMALL_STATE(1764)] = 2181, + [SMALL_STATE(1765)] = 2254, + [SMALL_STATE(1766)] = 2327, + [SMALL_STATE(1767)] = 2400, + [SMALL_STATE(1768)] = 2473, + [SMALL_STATE(1769)] = 2546, + [SMALL_STATE(1770)] = 2619, + [SMALL_STATE(1771)] = 2692, + [SMALL_STATE(1772)] = 2765, + [SMALL_STATE(1773)] = 2838, + [SMALL_STATE(1774)] = 2911, + [SMALL_STATE(1775)] = 2984, + [SMALL_STATE(1776)] = 3057, + [SMALL_STATE(1777)] = 3130, + [SMALL_STATE(1778)] = 3203, + [SMALL_STATE(1779)] = 3276, + [SMALL_STATE(1780)] = 3349, + [SMALL_STATE(1781)] = 3422, + [SMALL_STATE(1782)] = 3497, + [SMALL_STATE(1783)] = 3572, + [SMALL_STATE(1784)] = 3645, + [SMALL_STATE(1785)] = 3720, + [SMALL_STATE(1786)] = 3793, + [SMALL_STATE(1787)] = 3866, + [SMALL_STATE(1788)] = 3939, + [SMALL_STATE(1789)] = 4012, + [SMALL_STATE(1790)] = 4087, + [SMALL_STATE(1791)] = 4194, + [SMALL_STATE(1792)] = 4297, + [SMALL_STATE(1793)] = 4370, + [SMALL_STATE(1794)] = 4443, + [SMALL_STATE(1795)] = 4518, + [SMALL_STATE(1796)] = 4591, + [SMALL_STATE(1797)] = 4670, + [SMALL_STATE(1798)] = 4745, + [SMALL_STATE(1799)] = 4820, + [SMALL_STATE(1800)] = 4895, + [SMALL_STATE(1801)] = 4968, + [SMALL_STATE(1802)] = 5041, + [SMALL_STATE(1803)] = 5114, + [SMALL_STATE(1804)] = 5191, + [SMALL_STATE(1805)] = 5264, + [SMALL_STATE(1806)] = 5337, + [SMALL_STATE(1807)] = 5440, + [SMALL_STATE(1808)] = 5513, + [SMALL_STATE(1809)] = 5586, + [SMALL_STATE(1810)] = 5659, + [SMALL_STATE(1811)] = 5732, + [SMALL_STATE(1812)] = 5805, + [SMALL_STATE(1813)] = 5912, + [SMALL_STATE(1814)] = 5987, + [SMALL_STATE(1815)] = 6060, + [SMALL_STATE(1816)] = 6135, + [SMALL_STATE(1817)] = 6210, + [SMALL_STATE(1818)] = 6283, + [SMALL_STATE(1819)] = 6358, + [SMALL_STATE(1820)] = 6433, + [SMALL_STATE(1821)] = 6508, + [SMALL_STATE(1822)] = 6581, + [SMALL_STATE(1823)] = 6654, + [SMALL_STATE(1824)] = 6727, + [SMALL_STATE(1825)] = 6800, + [SMALL_STATE(1826)] = 6875, + [SMALL_STATE(1827)] = 6948, + [SMALL_STATE(1828)] = 7021, + [SMALL_STATE(1829)] = 7094, + [SMALL_STATE(1830)] = 7167, + [SMALL_STATE(1831)] = 7240, + [SMALL_STATE(1832)] = 7313, + [SMALL_STATE(1833)] = 7386, + [SMALL_STATE(1834)] = 7459, + [SMALL_STATE(1835)] = 7532, + [SMALL_STATE(1836)] = 7605, + [SMALL_STATE(1837)] = 7678, + [SMALL_STATE(1838)] = 7751, + [SMALL_STATE(1839)] = 7824, + [SMALL_STATE(1840)] = 7897, + [SMALL_STATE(1841)] = 7970, + [SMALL_STATE(1842)] = 8043, + [SMALL_STATE(1843)] = 8116, + [SMALL_STATE(1844)] = 8189, + [SMALL_STATE(1845)] = 8262, + [SMALL_STATE(1846)] = 8335, + [SMALL_STATE(1847)] = 8408, + [SMALL_STATE(1848)] = 8481, + [SMALL_STATE(1849)] = 8554, + [SMALL_STATE(1850)] = 8627, + [SMALL_STATE(1851)] = 8700, + [SMALL_STATE(1852)] = 8775, + [SMALL_STATE(1853)] = 8847, + [SMALL_STATE(1854)] = 8919, + [SMALL_STATE(1855)] = 8991, + [SMALL_STATE(1856)] = 9063, + [SMALL_STATE(1857)] = 9207, + [SMALL_STATE(1858)] = 9279, + [SMALL_STATE(1859)] = 9355, + [SMALL_STATE(1860)] = 9431, + [SMALL_STATE(1861)] = 9507, + [SMALL_STATE(1862)] = 9583, + [SMALL_STATE(1863)] = 9659, + [SMALL_STATE(1864)] = 9735, + [SMALL_STATE(1865)] = 9811, + [SMALL_STATE(1866)] = 9887, + [SMALL_STATE(1867)] = 9963, + [SMALL_STATE(1868)] = 10039, + [SMALL_STATE(1869)] = 10115, + [SMALL_STATE(1870)] = 10191, + [SMALL_STATE(1871)] = 10267, + [SMALL_STATE(1872)] = 10341, + [SMALL_STATE(1873)] = 10415, + [SMALL_STATE(1874)] = 10487, + [SMALL_STATE(1875)] = 10559, + [SMALL_STATE(1876)] = 10633, + [SMALL_STATE(1877)] = 10705, + [SMALL_STATE(1878)] = 10777, + [SMALL_STATE(1879)] = 10849, + [SMALL_STATE(1880)] = 10921, + [SMALL_STATE(1881)] = 10993, + [SMALL_STATE(1882)] = 11065, + [SMALL_STATE(1883)] = 11137, + [SMALL_STATE(1884)] = 11281, + [SMALL_STATE(1885)] = 11353, + [SMALL_STATE(1886)] = 11425, + [SMALL_STATE(1887)] = 11497, + [SMALL_STATE(1888)] = 11641, + [SMALL_STATE(1889)] = 11713, + [SMALL_STATE(1890)] = 11785, + [SMALL_STATE(1891)] = 11857, + [SMALL_STATE(1892)] = 11929, + [SMALL_STATE(1893)] = 12001, + [SMALL_STATE(1894)] = 12073, + [SMALL_STATE(1895)] = 12145, + [SMALL_STATE(1896)] = 12217, + [SMALL_STATE(1897)] = 12289, + [SMALL_STATE(1898)] = 12361, + [SMALL_STATE(1899)] = 12433, + [SMALL_STATE(1900)] = 12505, + [SMALL_STATE(1901)] = 12577, + [SMALL_STATE(1902)] = 12649, + [SMALL_STATE(1903)] = 12721, + [SMALL_STATE(1904)] = 12793, + [SMALL_STATE(1905)] = 12865, + [SMALL_STATE(1906)] = 12937, + [SMALL_STATE(1907)] = 13009, + [SMALL_STATE(1908)] = 13081, + [SMALL_STATE(1909)] = 13153, + [SMALL_STATE(1910)] = 13225, + [SMALL_STATE(1911)] = 13297, + [SMALL_STATE(1912)] = 13369, + [SMALL_STATE(1913)] = 13441, + [SMALL_STATE(1914)] = 13513, + [SMALL_STATE(1915)] = 13585, + [SMALL_STATE(1916)] = 13657, + [SMALL_STATE(1917)] = 13729, + [SMALL_STATE(1918)] = 13801, + [SMALL_STATE(1919)] = 13873, + [SMALL_STATE(1920)] = 13945, + [SMALL_STATE(1921)] = 14017, + [SMALL_STATE(1922)] = 14089, + [SMALL_STATE(1923)] = 14161, + [SMALL_STATE(1924)] = 14233, + [SMALL_STATE(1925)] = 14305, + [SMALL_STATE(1926)] = 14377, + [SMALL_STATE(1927)] = 14449, + [SMALL_STATE(1928)] = 14521, + [SMALL_STATE(1929)] = 14593, + [SMALL_STATE(1930)] = 14665, + [SMALL_STATE(1931)] = 14737, + [SMALL_STATE(1932)] = 14809, + [SMALL_STATE(1933)] = 14881, + [SMALL_STATE(1934)] = 14953, + [SMALL_STATE(1935)] = 15025, + [SMALL_STATE(1936)] = 15097, + [SMALL_STATE(1937)] = 15169, + [SMALL_STATE(1938)] = 15241, + [SMALL_STATE(1939)] = 15313, + [SMALL_STATE(1940)] = 15385, + [SMALL_STATE(1941)] = 15457, + [SMALL_STATE(1942)] = 15529, + [SMALL_STATE(1943)] = 15601, + [SMALL_STATE(1944)] = 15673, + [SMALL_STATE(1945)] = 15745, + [SMALL_STATE(1946)] = 15817, + [SMALL_STATE(1947)] = 15889, + [SMALL_STATE(1948)] = 15961, + [SMALL_STATE(1949)] = 16033, + [SMALL_STATE(1950)] = 16105, + [SMALL_STATE(1951)] = 16177, + [SMALL_STATE(1952)] = 16253, + [SMALL_STATE(1953)] = 16329, + [SMALL_STATE(1954)] = 16401, + [SMALL_STATE(1955)] = 16477, + [SMALL_STATE(1956)] = 16553, + [SMALL_STATE(1957)] = 16625, + [SMALL_STATE(1958)] = 16697, + [SMALL_STATE(1959)] = 16769, + [SMALL_STATE(1960)] = 16841, + [SMALL_STATE(1961)] = 16913, + [SMALL_STATE(1962)] = 16985, + [SMALL_STATE(1963)] = 17057, + [SMALL_STATE(1964)] = 17129, + [SMALL_STATE(1965)] = 17201, + [SMALL_STATE(1966)] = 17273, + [SMALL_STATE(1967)] = 17345, + [SMALL_STATE(1968)] = 17417, + [SMALL_STATE(1969)] = 17489, + [SMALL_STATE(1970)] = 17561, + [SMALL_STATE(1971)] = 17633, + [SMALL_STATE(1972)] = 17705, + [SMALL_STATE(1973)] = 17849, + [SMALL_STATE(1974)] = 17993, + [SMALL_STATE(1975)] = 18137, + [SMALL_STATE(1976)] = 18209, + [SMALL_STATE(1977)] = 18286, + [SMALL_STATE(1978)] = 18427, + [SMALL_STATE(1979)] = 18498, + [SMALL_STATE(1980)] = 18573, + [SMALL_STATE(1981)] = 18650, + [SMALL_STATE(1982)] = 18727, + [SMALL_STATE(1983)] = 18804, + [SMALL_STATE(1984)] = 18875, + [SMALL_STATE(1985)] = 18946, + [SMALL_STATE(1986)] = 19023, + [SMALL_STATE(1987)] = 19100, + [SMALL_STATE(1988)] = 19177, + [SMALL_STATE(1989)] = 19248, + [SMALL_STATE(1990)] = 19327, + [SMALL_STATE(1991)] = 19398, + [SMALL_STATE(1992)] = 19469, + [SMALL_STATE(1993)] = 19540, + [SMALL_STATE(1994)] = 19611, + [SMALL_STATE(1995)] = 19682, + [SMALL_STATE(1996)] = 19759, + [SMALL_STATE(1997)] = 19838, + [SMALL_STATE(1998)] = 19909, + [SMALL_STATE(1999)] = 19980, + [SMALL_STATE(2000)] = 20051, + [SMALL_STATE(2001)] = 20122, + [SMALL_STATE(2002)] = 20193, + [SMALL_STATE(2003)] = 20270, + [SMALL_STATE(2004)] = 20349, + [SMALL_STATE(2005)] = 20420, + [SMALL_STATE(2006)] = 20497, + [SMALL_STATE(2007)] = 20568, + [SMALL_STATE(2008)] = 20639, + [SMALL_STATE(2009)] = 20710, + [SMALL_STATE(2010)] = 20781, + [SMALL_STATE(2011)] = 20858, + [SMALL_STATE(2012)] = 20935, + [SMALL_STATE(2013)] = 21006, + [SMALL_STATE(2014)] = 21085, + [SMALL_STATE(2015)] = 21164, + [SMALL_STATE(2016)] = 21241, + [SMALL_STATE(2017)] = 21312, + [SMALL_STATE(2018)] = 21391, + [SMALL_STATE(2019)] = 21470, + [SMALL_STATE(2020)] = 21549, + [SMALL_STATE(2021)] = 21628, + [SMALL_STATE(2022)] = 21699, + [SMALL_STATE(2023)] = 21770, + [SMALL_STATE(2024)] = 21849, + [SMALL_STATE(2025)] = 21920, + [SMALL_STATE(2026)] = 21997, + [SMALL_STATE(2027)] = 22074, + [SMALL_STATE(2028)] = 22151, + [SMALL_STATE(2029)] = 22228, + [SMALL_STATE(2030)] = 22305, + [SMALL_STATE(2031)] = 22382, + [SMALL_STATE(2032)] = 22459, + [SMALL_STATE(2033)] = 22536, + [SMALL_STATE(2034)] = 22613, + [SMALL_STATE(2035)] = 22692, + [SMALL_STATE(2036)] = 22769, + [SMALL_STATE(2037)] = 22846, + [SMALL_STATE(2038)] = 22923, + [SMALL_STATE(2039)] = 23002, + [SMALL_STATE(2040)] = 23073, + [SMALL_STATE(2041)] = 23150, + [SMALL_STATE(2042)] = 23227, + [SMALL_STATE(2043)] = 23304, + [SMALL_STATE(2044)] = 23381, + [SMALL_STATE(2045)] = 23458, + [SMALL_STATE(2046)] = 23535, + [SMALL_STATE(2047)] = 23676, + [SMALL_STATE(2048)] = 23753, + [SMALL_STATE(2049)] = 23830, + [SMALL_STATE(2050)] = 23907, + [SMALL_STATE(2051)] = 23984, + [SMALL_STATE(2052)] = 24061, + [SMALL_STATE(2053)] = 24140, + [SMALL_STATE(2054)] = 24219, + [SMALL_STATE(2055)] = 24298, + [SMALL_STATE(2056)] = 24377, + [SMALL_STATE(2057)] = 24456, + [SMALL_STATE(2058)] = 24535, + [SMALL_STATE(2059)] = 24612, + [SMALL_STATE(2060)] = 24691, + [SMALL_STATE(2061)] = 24768, + [SMALL_STATE(2062)] = 24909, + [SMALL_STATE(2063)] = 25050, + [SMALL_STATE(2064)] = 25131, + [SMALL_STATE(2065)] = 25210, + [SMALL_STATE(2066)] = 25289, + [SMALL_STATE(2067)] = 25368, + [SMALL_STATE(2068)] = 25447, + [SMALL_STATE(2069)] = 25526, + [SMALL_STATE(2070)] = 25603, + [SMALL_STATE(2071)] = 25680, + [SMALL_STATE(2072)] = 25757, + [SMALL_STATE(2073)] = 25834, + [SMALL_STATE(2074)] = 25911, + [SMALL_STATE(2075)] = 25992, + [SMALL_STATE(2076)] = 26069, + [SMALL_STATE(2077)] = 26146, + [SMALL_STATE(2078)] = 26223, + [SMALL_STATE(2079)] = 26300, + [SMALL_STATE(2080)] = 26377, + [SMALL_STATE(2081)] = 26454, + [SMALL_STATE(2082)] = 26531, + [SMALL_STATE(2083)] = 26608, + [SMALL_STATE(2084)] = 26679, + [SMALL_STATE(2085)] = 26756, + [SMALL_STATE(2086)] = 26831, + [SMALL_STATE(2087)] = 26910, + [SMALL_STATE(2088)] = 26989, + [SMALL_STATE(2089)] = 27066, + [SMALL_STATE(2090)] = 27136, + [SMALL_STATE(2091)] = 27274, + [SMALL_STATE(2092)] = 27344, + [SMALL_STATE(2093)] = 27416, + [SMALL_STATE(2094)] = 27486, + [SMALL_STATE(2095)] = 27558, + [SMALL_STATE(2096)] = 27628, + [SMALL_STATE(2097)] = 27698, + [SMALL_STATE(2098)] = 27768, + [SMALL_STATE(2099)] = 27838, + [SMALL_STATE(2100)] = 27908, + [SMALL_STATE(2101)] = 27978, + [SMALL_STATE(2102)] = 28048, + [SMALL_STATE(2103)] = 28118, + [SMALL_STATE(2104)] = 28188, + [SMALL_STATE(2105)] = 28258, + [SMALL_STATE(2106)] = 28328, + [SMALL_STATE(2107)] = 28398, + [SMALL_STATE(2108)] = 28468, + [SMALL_STATE(2109)] = 28538, + [SMALL_STATE(2110)] = 28608, + [SMALL_STATE(2111)] = 28678, + [SMALL_STATE(2112)] = 28758, + [SMALL_STATE(2113)] = 28828, + [SMALL_STATE(2114)] = 28902, + [SMALL_STATE(2115)] = 28972, + [SMALL_STATE(2116)] = 29042, + [SMALL_STATE(2117)] = 29112, + [SMALL_STATE(2118)] = 29182, + [SMALL_STATE(2119)] = 29252, + [SMALL_STATE(2120)] = 29322, + [SMALL_STATE(2121)] = 29392, + [SMALL_STATE(2122)] = 29530, + [SMALL_STATE(2123)] = 29608, + [SMALL_STATE(2124)] = 29678, + [SMALL_STATE(2125)] = 29748, + [SMALL_STATE(2126)] = 29822, + [SMALL_STATE(2127)] = 29960, + [SMALL_STATE(2128)] = 30030, + [SMALL_STATE(2129)] = 30100, + [SMALL_STATE(2130)] = 30170, + [SMALL_STATE(2131)] = 30308, + [SMALL_STATE(2132)] = 30378, + [SMALL_STATE(2133)] = 30448, + [SMALL_STATE(2134)] = 30518, + [SMALL_STATE(2135)] = 30588, + [SMALL_STATE(2136)] = 30726, + [SMALL_STATE(2137)] = 30796, + [SMALL_STATE(2138)] = 30866, + [SMALL_STATE(2139)] = 30936, + [SMALL_STATE(2140)] = 31006, + [SMALL_STATE(2141)] = 31144, + [SMALL_STATE(2142)] = 31282, + [SMALL_STATE(2143)] = 31420, + [SMALL_STATE(2144)] = 31490, + [SMALL_STATE(2145)] = 31564, + [SMALL_STATE(2146)] = 31634, + [SMALL_STATE(2147)] = 31772, + [SMALL_STATE(2148)] = 31910, + [SMALL_STATE(2149)] = 32048, + [SMALL_STATE(2150)] = 32186, + [SMALL_STATE(2151)] = 32324, + [SMALL_STATE(2152)] = 32462, + [SMALL_STATE(2153)] = 32600, + [SMALL_STATE(2154)] = 32674, + [SMALL_STATE(2155)] = 32748, + [SMALL_STATE(2156)] = 32818, + [SMALL_STATE(2157)] = 32892, + [SMALL_STATE(2158)] = 33030, + [SMALL_STATE(2159)] = 33103, + [SMALL_STATE(2160)] = 33174, + [SMALL_STATE(2161)] = 33245, + [SMALL_STATE(2162)] = 33316, + [SMALL_STATE(2163)] = 33387, + [SMALL_STATE(2164)] = 33458, + [SMALL_STATE(2165)] = 33529, + [SMALL_STATE(2166)] = 33600, + [SMALL_STATE(2167)] = 33671, + [SMALL_STATE(2168)] = 33742, + [SMALL_STATE(2169)] = 33811, + [SMALL_STATE(2170)] = 33882, + [SMALL_STATE(2171)] = 33953, + [SMALL_STATE(2172)] = 34024, + [SMALL_STATE(2173)] = 34095, + [SMALL_STATE(2174)] = 34166, + [SMALL_STATE(2175)] = 34237, + [SMALL_STATE(2176)] = 34308, + [SMALL_STATE(2177)] = 34379, + [SMALL_STATE(2178)] = 34450, + [SMALL_STATE(2179)] = 34521, + [SMALL_STATE(2180)] = 34590, + [SMALL_STATE(2181)] = 34661, + [SMALL_STATE(2182)] = 34732, + [SMALL_STATE(2183)] = 34803, + [SMALL_STATE(2184)] = 34874, + [SMALL_STATE(2185)] = 34945, + [SMALL_STATE(2186)] = 35016, + [SMALL_STATE(2187)] = 35087, + [SMALL_STATE(2188)] = 35158, + [SMALL_STATE(2189)] = 35229, + [SMALL_STATE(2190)] = 35300, + [SMALL_STATE(2191)] = 35371, + [SMALL_STATE(2192)] = 35442, + [SMALL_STATE(2193)] = 35513, + [SMALL_STATE(2194)] = 35584, + [SMALL_STATE(2195)] = 35655, + [SMALL_STATE(2196)] = 35754, + [SMALL_STATE(2197)] = 35825, + [SMALL_STATE(2198)] = 35894, + [SMALL_STATE(2199)] = 35965, + [SMALL_STATE(2200)] = 36036, + [SMALL_STATE(2201)] = 36109, + [SMALL_STATE(2202)] = 36182, + [SMALL_STATE(2203)] = 36253, + [SMALL_STATE(2204)] = 36324, + [SMALL_STATE(2205)] = 36395, + [SMALL_STATE(2206)] = 36468, + [SMALL_STATE(2207)] = 36541, + [SMALL_STATE(2208)] = 36612, + [SMALL_STATE(2209)] = 36711, + [SMALL_STATE(2210)] = 36782, + [SMALL_STATE(2211)] = 36869, + [SMALL_STATE(2212)] = 36940, + [SMALL_STATE(2213)] = 37011, + [SMALL_STATE(2214)] = 37082, + [SMALL_STATE(2215)] = 37153, + [SMALL_STATE(2216)] = 37224, + [SMALL_STATE(2217)] = 37295, + [SMALL_STATE(2218)] = 37394, + [SMALL_STATE(2219)] = 37465, + [SMALL_STATE(2220)] = 37536, + [SMALL_STATE(2221)] = 37607, + [SMALL_STATE(2222)] = 37684, + [SMALL_STATE(2223)] = 37755, + [SMALL_STATE(2224)] = 37826, + [SMALL_STATE(2225)] = 37897, + [SMALL_STATE(2226)] = 37968, + [SMALL_STATE(2227)] = 38039, + [SMALL_STATE(2228)] = 38110, + [SMALL_STATE(2229)] = 38181, + [SMALL_STATE(2230)] = 38252, + [SMALL_STATE(2231)] = 38323, + [SMALL_STATE(2232)] = 38394, + [SMALL_STATE(2233)] = 38465, + [SMALL_STATE(2234)] = 38536, + [SMALL_STATE(2235)] = 38607, + [SMALL_STATE(2236)] = 38678, + [SMALL_STATE(2237)] = 38749, + [SMALL_STATE(2238)] = 38820, + [SMALL_STATE(2239)] = 38893, + [SMALL_STATE(2240)] = 38964, + [SMALL_STATE(2241)] = 39037, + [SMALL_STATE(2242)] = 39110, + [SMALL_STATE(2243)] = 39183, + [SMALL_STATE(2244)] = 39252, + [SMALL_STATE(2245)] = 39325, + [SMALL_STATE(2246)] = 39398, + [SMALL_STATE(2247)] = 39467, + [SMALL_STATE(2248)] = 39538, + [SMALL_STATE(2249)] = 39609, + [SMALL_STATE(2250)] = 39680, + [SMALL_STATE(2251)] = 39751, + [SMALL_STATE(2252)] = 39822, + [SMALL_STATE(2253)] = 39895, + [SMALL_STATE(2254)] = 39966, + [SMALL_STATE(2255)] = 40037, + [SMALL_STATE(2256)] = 40108, + [SMALL_STATE(2257)] = 40179, + [SMALL_STATE(2258)] = 40250, + [SMALL_STATE(2259)] = 40321, + [SMALL_STATE(2260)] = 40392, + [SMALL_STATE(2261)] = 40463, + [SMALL_STATE(2262)] = 40536, + [SMALL_STATE(2263)] = 40607, + [SMALL_STATE(2264)] = 40678, + [SMALL_STATE(2265)] = 40749, + [SMALL_STATE(2266)] = 40820, + [SMALL_STATE(2267)] = 40889, + [SMALL_STATE(2268)] = 40960, + [SMALL_STATE(2269)] = 41031, + [SMALL_STATE(2270)] = 41102, + [SMALL_STATE(2271)] = 41173, + [SMALL_STATE(2272)] = 41244, + [SMALL_STATE(2273)] = 41315, + [SMALL_STATE(2274)] = 41386, + [SMALL_STATE(2275)] = 41457, + [SMALL_STATE(2276)] = 41528, + [SMALL_STATE(2277)] = 41599, + [SMALL_STATE(2278)] = 41670, + [SMALL_STATE(2279)] = 41741, + [SMALL_STATE(2280)] = 41814, + [SMALL_STATE(2281)] = 41887, + [SMALL_STATE(2282)] = 41958, + [SMALL_STATE(2283)] = 42029, + [SMALL_STATE(2284)] = 42102, + [SMALL_STATE(2285)] = 42173, + [SMALL_STATE(2286)] = 42272, + [SMALL_STATE(2287)] = 42343, + [SMALL_STATE(2288)] = 42414, + [SMALL_STATE(2289)] = 42487, + [SMALL_STATE(2290)] = 42558, + [SMALL_STATE(2291)] = 42631, + [SMALL_STATE(2292)] = 42702, + [SMALL_STATE(2293)] = 42773, + [SMALL_STATE(2294)] = 42846, + [SMALL_STATE(2295)] = 42917, + [SMALL_STATE(2296)] = 42988, + [SMALL_STATE(2297)] = 43059, + [SMALL_STATE(2298)] = 43136, + [SMALL_STATE(2299)] = 43207, + [SMALL_STATE(2300)] = 43280, + [SMALL_STATE(2301)] = 43351, + [SMALL_STATE(2302)] = 43422, + [SMALL_STATE(2303)] = 43499, + [SMALL_STATE(2304)] = 43572, + [SMALL_STATE(2305)] = 43643, + [SMALL_STATE(2306)] = 43714, + [SMALL_STATE(2307)] = 43788, + [SMALL_STATE(2308)] = 43884, + [SMALL_STATE(2309)] = 43954, + [SMALL_STATE(2310)] = 44056, + [SMALL_STATE(2311)] = 44132, + [SMALL_STATE(2312)] = 44216, + [SMALL_STATE(2313)] = 44316, + [SMALL_STATE(2314)] = 44412, + [SMALL_STATE(2315)] = 44504, + [SMALL_STATE(2316)] = 44586, + [SMALL_STATE(2317)] = 44674, + [SMALL_STATE(2318)] = 44750, + [SMALL_STATE(2319)] = 44836, + [SMALL_STATE(2320)] = 44926, + [SMALL_STATE(2321)] = 45008, + [SMALL_STATE(2322)] = 45084, + [SMALL_STATE(2323)] = 45176, + [SMALL_STATE(2324)] = 45262, + [SMALL_STATE(2325)] = 45334, + [SMALL_STATE(2326)] = 45406, + [SMALL_STATE(2327)] = 45502, + [SMALL_STATE(2328)] = 45604, + [SMALL_STATE(2329)] = 45702, + [SMALL_STATE(2330)] = 45802, + [SMALL_STATE(2331)] = 45882, + [SMALL_STATE(2332)] = 45966, + [SMALL_STATE(2333)] = 46036, + [SMALL_STATE(2334)] = 46130, + [SMALL_STATE(2335)] = 46226, + [SMALL_STATE(2336)] = 46324, + [SMALL_STATE(2337)] = 46410, + [SMALL_STATE(2338)] = 46488, + [SMALL_STATE(2339)] = 46576, + [SMALL_STATE(2340)] = 46666, + [SMALL_STATE(2341)] = 46758, + [SMALL_STATE(2342)] = 46846, + [SMALL_STATE(2343)] = 46934, + [SMALL_STATE(2344)] = 47008, + [SMALL_STATE(2345)] = 47088, + [SMALL_STATE(2346)] = 47182, + [SMALL_STATE(2347)] = 47272, + [SMALL_STATE(2348)] = 47362, + [SMALL_STATE(2349)] = 47454, + [SMALL_STATE(2350)] = 47548, + [SMALL_STATE(2351)] = 47648, + [SMALL_STATE(2352)] = 47736, + [SMALL_STATE(2353)] = 47808, + [SMALL_STATE(2354)] = 47904, + [SMALL_STATE(2355)] = 48002, + [SMALL_STATE(2356)] = 48092, + [SMALL_STATE(2357)] = 48164, + [SMALL_STATE(2358)] = 48236, + [SMALL_STATE(2359)] = 48310, + [SMALL_STATE(2360)] = 48394, + [SMALL_STATE(2361)] = 48490, + [SMALL_STATE(2362)] = 48572, + [SMALL_STATE(2363)] = 48640, + [SMALL_STATE(2364)] = 48724, + [SMALL_STATE(2365)] = 48800, + [SMALL_STATE(2366)] = 48878, + [SMALL_STATE(2367)] = 48964, + [SMALL_STATE(2368)] = 49060, + [SMALL_STATE(2369)] = 49148, + [SMALL_STATE(2370)] = 49224, + [SMALL_STATE(2371)] = 49296, + [SMALL_STATE(2372)] = 49370, + [SMALL_STATE(2373)] = 49444, + [SMALL_STATE(2374)] = 49516, + [SMALL_STATE(2375)] = 49614, + [SMALL_STATE(2376)] = 49710, + [SMALL_STATE(2377)] = 49808, + [SMALL_STATE(2378)] = 49906, + [SMALL_STATE(2379)] = 50004, + [SMALL_STATE(2380)] = 50084, + [SMALL_STATE(2381)] = 50178, + [SMALL_STATE(2382)] = 50278, + [SMALL_STATE(2383)] = 50356, + [SMALL_STATE(2384)] = 50458, + [SMALL_STATE(2385)] = 50540, + [SMALL_STATE(2386)] = 50628, + [SMALL_STATE(2387)] = 50728, + [SMALL_STATE(2388)] = 50818, + [SMALL_STATE(2389)] = 50902, + [SMALL_STATE(2390)] = 51004, + [SMALL_STATE(2391)] = 51104, + [SMALL_STATE(2392)] = 51194, + [SMALL_STATE(2393)] = 51274, + [SMALL_STATE(2394)] = 51370, + [SMALL_STATE(2395)] = 51452, + [SMALL_STATE(2396)] = 51542, + [SMALL_STATE(2397)] = 51612, + [SMALL_STATE(2398)] = 51702, + [SMALL_STATE(2399)] = 51794, + [SMALL_STATE(2400)] = 51878, + [SMALL_STATE(2401)] = 51970, + [SMALL_STATE(2402)] = 52052, + [SMALL_STATE(2403)] = 52144, + [SMALL_STATE(2404)] = 52238, + [SMALL_STATE(2405)] = 52320, + [SMALL_STATE(2406)] = 52414, + [SMALL_STATE(2407)] = 52506, + [SMALL_STATE(2408)] = 52602, + [SMALL_STATE(2409)] = 52690, + [SMALL_STATE(2410)] = 52784, + [SMALL_STATE(2411)] = 52860, + [SMALL_STATE(2412)] = 52958, + [SMALL_STATE(2413)] = 53054, + [SMALL_STATE(2414)] = 53128, + [SMALL_STATE(2415)] = 53198, + [SMALL_STATE(2416)] = 53292, + [SMALL_STATE(2417)] = 53388, + [SMALL_STATE(2418)] = 53480, + [SMALL_STATE(2419)] = 53564, + [SMALL_STATE(2420)] = 53642, + [SMALL_STATE(2421)] = 53736, + [SMALL_STATE(2422)] = 53808, + [SMALL_STATE(2423)] = 53884, + [SMALL_STATE(2424)] = 53984, + [SMALL_STATE(2425)] = 54068, + [SMALL_STATE(2426)] = 54164, + [SMALL_STATE(2427)] = 54260, + [SMALL_STATE(2428)] = 54332, + [SMALL_STATE(2429)] = 54420, + [SMALL_STATE(2430)] = 54516, + [SMALL_STATE(2431)] = 54594, + [SMALL_STATE(2432)] = 54662, + [SMALL_STATE(2433)] = 54750, + [SMALL_STATE(2434)] = 54830, + [SMALL_STATE(2435)] = 54900, + [SMALL_STATE(2436)] = 54996, + [SMALL_STATE(2437)] = 55070, + [SMALL_STATE(2438)] = 55166, + [SMALL_STATE(2439)] = 55262, + [SMALL_STATE(2440)] = 55330, + [SMALL_STATE(2441)] = 55426, + [SMALL_STATE(2442)] = 55512, + [SMALL_STATE(2443)] = 55594, + [SMALL_STATE(2444)] = 55692, + [SMALL_STATE(2445)] = 55792, + [SMALL_STATE(2446)] = 55873, + [SMALL_STATE(2447)] = 55958, + [SMALL_STATE(2448)] = 56025, + [SMALL_STATE(2449)] = 56108, + [SMALL_STATE(2450)] = 56193, + [SMALL_STATE(2451)] = 56260, + [SMALL_STATE(2452)] = 56331, + [SMALL_STATE(2453)] = 56398, + [SMALL_STATE(2454)] = 56465, + [SMALL_STATE(2455)] = 56534, + [SMALL_STATE(2456)] = 56615, + [SMALL_STATE(2457)] = 56682, + [SMALL_STATE(2458)] = 56749, + [SMALL_STATE(2459)] = 56828, + [SMALL_STATE(2460)] = 56895, + [SMALL_STATE(2461)] = 56962, + [SMALL_STATE(2462)] = 57047, + [SMALL_STATE(2463)] = 57114, + [SMALL_STATE(2464)] = 57183, + [SMALL_STATE(2465)] = 57250, + [SMALL_STATE(2466)] = 57317, + [SMALL_STATE(2467)] = 57384, + [SMALL_STATE(2468)] = 57451, + [SMALL_STATE(2469)] = 57518, + [SMALL_STATE(2470)] = 57589, + [SMALL_STATE(2471)] = 57656, + [SMALL_STATE(2472)] = 57723, + [SMALL_STATE(2473)] = 57790, + [SMALL_STATE(2474)] = 57859, + [SMALL_STATE(2475)] = 57926, + [SMALL_STATE(2476)] = 57993, + [SMALL_STATE(2477)] = 58060, + [SMALL_STATE(2478)] = 58153, + [SMALL_STATE(2479)] = 58220, + [SMALL_STATE(2480)] = 58287, + [SMALL_STATE(2481)] = 58354, + [SMALL_STATE(2482)] = 58421, + [SMALL_STATE(2483)] = 58516, + [SMALL_STATE(2484)] = 58583, + [SMALL_STATE(2485)] = 58650, + [SMALL_STATE(2486)] = 58717, + [SMALL_STATE(2487)] = 58784, + [SMALL_STATE(2488)] = 58851, + [SMALL_STATE(2489)] = 58918, + [SMALL_STATE(2490)] = 58985, + [SMALL_STATE(2491)] = 59052, + [SMALL_STATE(2492)] = 59119, + [SMALL_STATE(2493)] = 59216, + [SMALL_STATE(2494)] = 59283, + [SMALL_STATE(2495)] = 59350, + [SMALL_STATE(2496)] = 59417, + [SMALL_STATE(2497)] = 59502, + [SMALL_STATE(2498)] = 59583, + [SMALL_STATE(2499)] = 59650, + [SMALL_STATE(2500)] = 59717, + [SMALL_STATE(2501)] = 59786, + [SMALL_STATE(2502)] = 59853, + [SMALL_STATE(2503)] = 59920, + [SMALL_STATE(2504)] = 59987, + [SMALL_STATE(2505)] = 60054, + [SMALL_STATE(2506)] = 60121, + [SMALL_STATE(2507)] = 60188, + [SMALL_STATE(2508)] = 60255, + [SMALL_STATE(2509)] = 60328, + [SMALL_STATE(2510)] = 60397, + [SMALL_STATE(2511)] = 60464, + [SMALL_STATE(2512)] = 60531, + [SMALL_STATE(2513)] = 60598, + [SMALL_STATE(2514)] = 60665, + [SMALL_STATE(2515)] = 60746, + [SMALL_STATE(2516)] = 60823, + [SMALL_STATE(2517)] = 60890, + [SMALL_STATE(2518)] = 60957, + [SMALL_STATE(2519)] = 61024, + [SMALL_STATE(2520)] = 61091, + [SMALL_STATE(2521)] = 61160, + [SMALL_STATE(2522)] = 61227, + [SMALL_STATE(2523)] = 61314, + [SMALL_STATE(2524)] = 61383, + [SMALL_STATE(2525)] = 61450, + [SMALL_STATE(2526)] = 61517, + [SMALL_STATE(2527)] = 61584, + [SMALL_STATE(2528)] = 61657, + [SMALL_STATE(2529)] = 61724, + [SMALL_STATE(2530)] = 61791, + [SMALL_STATE(2531)] = 61858, + [SMALL_STATE(2532)] = 61947, + [SMALL_STATE(2533)] = 62014, + [SMALL_STATE(2534)] = 62081, + [SMALL_STATE(2535)] = 62172, + [SMALL_STATE(2536)] = 62253, + [SMALL_STATE(2537)] = 62323, + [SMALL_STATE(2538)] = 62413, + [SMALL_STATE(2539)] = 62483, + [SMALL_STATE(2540)] = 62549, + [SMALL_STATE(2541)] = 62639, + [SMALL_STATE(2542)] = 62705, + [SMALL_STATE(2543)] = 62779, + [SMALL_STATE(2544)] = 62849, + [SMALL_STATE(2545)] = 62915, + [SMALL_STATE(2546)] = 62981, + [SMALL_STATE(2547)] = 63071, + [SMALL_STATE(2548)] = 63139, + [SMALL_STATE(2549)] = 63229, + [SMALL_STATE(2550)] = 63319, + [SMALL_STATE(2551)] = 63407, + [SMALL_STATE(2552)] = 63473, + [SMALL_STATE(2553)] = 63549, + [SMALL_STATE(2554)] = 63639, + [SMALL_STATE(2555)] = 63729, + [SMALL_STATE(2556)] = 63795, + [SMALL_STATE(2557)] = 63885, + [SMALL_STATE(2558)] = 63951, + [SMALL_STATE(2559)] = 64017, + [SMALL_STATE(2560)] = 64087, + [SMALL_STATE(2561)] = 64177, + [SMALL_STATE(2562)] = 64267, + [SMALL_STATE(2563)] = 64333, + [SMALL_STATE(2564)] = 64415, + [SMALL_STATE(2565)] = 64497, + [SMALL_STATE(2566)] = 64563, + [SMALL_STATE(2567)] = 64645, + [SMALL_STATE(2568)] = 64719, + [SMALL_STATE(2569)] = 64787, + [SMALL_STATE(2570)] = 64861, + [SMALL_STATE(2571)] = 64943, + [SMALL_STATE(2572)] = 65033, + [SMALL_STATE(2573)] = 65099, + [SMALL_STATE(2574)] = 65165, + [SMALL_STATE(2575)] = 65231, + [SMALL_STATE(2576)] = 65297, + [SMALL_STATE(2577)] = 65387, + [SMALL_STATE(2578)] = 65453, + [SMALL_STATE(2579)] = 65540, + [SMALL_STATE(2580)] = 65613, + [SMALL_STATE(2581)] = 65700, + [SMALL_STATE(2582)] = 65787, + [SMALL_STATE(2583)] = 65854, + [SMALL_STATE(2584)] = 65921, + [SMALL_STATE(2585)] = 65988, + [SMALL_STATE(2586)] = 66055, + [SMALL_STATE(2587)] = 66126, + [SMALL_STATE(2588)] = 66213, + [SMALL_STATE(2589)] = 66282, + [SMALL_STATE(2590)] = 66369, + [SMALL_STATE(2591)] = 66456, + [SMALL_STATE(2592)] = 66543, + [SMALL_STATE(2593)] = 66630, + [SMALL_STATE(2594)] = 66717, + [SMALL_STATE(2595)] = 66804, + [SMALL_STATE(2596)] = 66891, + [SMALL_STATE(2597)] = 66978, + [SMALL_STATE(2598)] = 67065, + [SMALL_STATE(2599)] = 67152, + [SMALL_STATE(2600)] = 67239, + [SMALL_STATE(2601)] = 67326, + [SMALL_STATE(2602)] = 67391, + [SMALL_STATE(2603)] = 67456, + [SMALL_STATE(2604)] = 67521, + [SMALL_STATE(2605)] = 67608, + [SMALL_STATE(2606)] = 67673, + [SMALL_STATE(2607)] = 67760, + [SMALL_STATE(2608)] = 67847, + [SMALL_STATE(2609)] = 67912, + [SMALL_STATE(2610)] = 67999, + [SMALL_STATE(2611)] = 68086, + [SMALL_STATE(2612)] = 68173, + [SMALL_STATE(2613)] = 68238, + [SMALL_STATE(2614)] = 68303, + [SMALL_STATE(2615)] = 68368, + [SMALL_STATE(2616)] = 68433, + [SMALL_STATE(2617)] = 68498, + [SMALL_STATE(2618)] = 68563, + [SMALL_STATE(2619)] = 68628, + [SMALL_STATE(2620)] = 68693, + [SMALL_STATE(2621)] = 68758, + [SMALL_STATE(2622)] = 68845, + [SMALL_STATE(2623)] = 68910, + [SMALL_STATE(2624)] = 68975, + [SMALL_STATE(2625)] = 69040, + [SMALL_STATE(2626)] = 69127, + [SMALL_STATE(2627)] = 69214, + [SMALL_STATE(2628)] = 69279, + [SMALL_STATE(2629)] = 69344, + [SMALL_STATE(2630)] = 69409, + [SMALL_STATE(2631)] = 69482, + [SMALL_STATE(2632)] = 69569, + [SMALL_STATE(2633)] = 69656, + [SMALL_STATE(2634)] = 69743, + [SMALL_STATE(2635)] = 69830, + [SMALL_STATE(2636)] = 69903, + [SMALL_STATE(2637)] = 69968, + [SMALL_STATE(2638)] = 70055, + [SMALL_STATE(2639)] = 70142, + [SMALL_STATE(2640)] = 70229, + [SMALL_STATE(2641)] = 70316, + [SMALL_STATE(2642)] = 70403, + [SMALL_STATE(2643)] = 70468, + [SMALL_STATE(2644)] = 70533, + [SMALL_STATE(2645)] = 70598, + [SMALL_STATE(2646)] = 70685, + [SMALL_STATE(2647)] = 70772, + [SMALL_STATE(2648)] = 70859, + [SMALL_STATE(2649)] = 70924, + [SMALL_STATE(2650)] = 70996, + [SMALL_STATE(2651)] = 71064, + [SMALL_STATE(2652)] = 71130, + [SMALL_STATE(2653)] = 71196, + [SMALL_STATE(2654)] = 71266, + [SMALL_STATE(2655)] = 71384, + [SMALL_STATE(2656)] = 71506, + [SMALL_STATE(2657)] = 71572, + [SMALL_STATE(2658)] = 71636, + [SMALL_STATE(2659)] = 71706, + [SMALL_STATE(2660)] = 71782, + [SMALL_STATE(2661)] = 71846, + [SMALL_STATE(2662)] = 71910, + [SMALL_STATE(2663)] = 71974, + [SMALL_STATE(2664)] = 72038, + [SMALL_STATE(2665)] = 72108, + [SMALL_STATE(2666)] = 72172, + [SMALL_STATE(2667)] = 72236, + [SMALL_STATE(2668)] = 72300, + [SMALL_STATE(2669)] = 72364, + [SMALL_STATE(2670)] = 72428, + [SMALL_STATE(2671)] = 72492, + [SMALL_STATE(2672)] = 72614, + [SMALL_STATE(2673)] = 72678, + [SMALL_STATE(2674)] = 72742, + [SMALL_STATE(2675)] = 72806, + [SMALL_STATE(2676)] = 72878, + [SMALL_STATE(2677)] = 72942, + [SMALL_STATE(2678)] = 73006, + [SMALL_STATE(2679)] = 73078, + [SMALL_STATE(2680)] = 73146, + [SMALL_STATE(2681)] = 73218, + [SMALL_STATE(2682)] = 73282, + [SMALL_STATE(2683)] = 73346, + [SMALL_STATE(2684)] = 73410, + [SMALL_STATE(2685)] = 73474, + [SMALL_STATE(2686)] = 73546, + [SMALL_STATE(2687)] = 73610, + [SMALL_STATE(2688)] = 73674, + [SMALL_STATE(2689)] = 73742, + [SMALL_STATE(2690)] = 73806, + [SMALL_STATE(2691)] = 73870, + [SMALL_STATE(2692)] = 73934, + [SMALL_STATE(2693)] = 73998, + [SMALL_STATE(2694)] = 74062, + [SMALL_STATE(2695)] = 74132, + [SMALL_STATE(2696)] = 74250, + [SMALL_STATE(2697)] = 74322, + [SMALL_STATE(2698)] = 74394, + [SMALL_STATE(2699)] = 74466, + [SMALL_STATE(2700)] = 74538, + [SMALL_STATE(2701)] = 74610, + [SMALL_STATE(2702)] = 74682, + [SMALL_STATE(2703)] = 74746, + [SMALL_STATE(2704)] = 74814, + [SMALL_STATE(2705)] = 74878, + [SMALL_STATE(2706)] = 74950, + [SMALL_STATE(2707)] = 75022, + [SMALL_STATE(2708)] = 75094, + [SMALL_STATE(2709)] = 75166, + [SMALL_STATE(2710)] = 75238, + [SMALL_STATE(2711)] = 75302, + [SMALL_STATE(2712)] = 75372, + [SMALL_STATE(2713)] = 75444, + [SMALL_STATE(2714)] = 75516, + [SMALL_STATE(2715)] = 75588, + [SMALL_STATE(2716)] = 75660, + [SMALL_STATE(2717)] = 75732, + [SMALL_STATE(2718)] = 75804, + [SMALL_STATE(2719)] = 75868, + [SMALL_STATE(2720)] = 75940, + [SMALL_STATE(2721)] = 76008, + [SMALL_STATE(2722)] = 76080, + [SMALL_STATE(2723)] = 76144, + [SMALL_STATE(2724)] = 76208, + [SMALL_STATE(2725)] = 76272, + [SMALL_STATE(2726)] = 76340, + [SMALL_STATE(2727)] = 76456, + [SMALL_STATE(2728)] = 76530, + [SMALL_STATE(2729)] = 76602, + [SMALL_STATE(2730)] = 76718, + [SMALL_STATE(2731)] = 76789, + [SMALL_STATE(2732)] = 76860, + [SMALL_STATE(2733)] = 76931, + [SMALL_STATE(2734)] = 77002, + [SMALL_STATE(2735)] = 77073, + [SMALL_STATE(2736)] = 77144, + [SMALL_STATE(2737)] = 77213, + [SMALL_STATE(2738)] = 77284, + [SMALL_STATE(2739)] = 77355, + [SMALL_STATE(2740)] = 77430, + [SMALL_STATE(2741)] = 77495, + [SMALL_STATE(2742)] = 77562, + [SMALL_STATE(2743)] = 77629, + [SMALL_STATE(2744)] = 77694, + [SMALL_STATE(2745)] = 77759, + [SMALL_STATE(2746)] = 77822, + [SMALL_STATE(2747)] = 77887, + [SMALL_STATE(2748)] = 77952, + [SMALL_STATE(2749)] = 78015, + [SMALL_STATE(2750)] = 78078, + [SMALL_STATE(2751)] = 78143, + [SMALL_STATE(2752)] = 78210, + [SMALL_STATE(2753)] = 78323, + [SMALL_STATE(2754)] = 78436, + [SMALL_STATE(2755)] = 78507, + [SMALL_STATE(2756)] = 78570, + [SMALL_STATE(2757)] = 78641, + [SMALL_STATE(2758)] = 78754, + [SMALL_STATE(2759)] = 78869, + [SMALL_STATE(2760)] = 78932, + [SMALL_STATE(2761)] = 79045, + [SMALL_STATE(2762)] = 79108, + [SMALL_STATE(2763)] = 79175, + [SMALL_STATE(2764)] = 79240, + [SMALL_STATE(2765)] = 79313, + [SMALL_STATE(2766)] = 79428, + [SMALL_STATE(2767)] = 79491, + [SMALL_STATE(2768)] = 79554, + [SMALL_STATE(2769)] = 79625, + [SMALL_STATE(2770)] = 79692, + [SMALL_STATE(2771)] = 79763, + [SMALL_STATE(2772)] = 79834, + [SMALL_STATE(2773)] = 79905, + [SMALL_STATE(2774)] = 79976, + [SMALL_STATE(2775)] = 80047, + [SMALL_STATE(2776)] = 80118, + [SMALL_STATE(2777)] = 80189, + [SMALL_STATE(2778)] = 80260, + [SMALL_STATE(2779)] = 80327, + [SMALL_STATE(2780)] = 80395, + [SMALL_STATE(2781)] = 80457, + [SMALL_STATE(2782)] = 80519, + [SMALL_STATE(2783)] = 80589, + [SMALL_STATE(2784)] = 80657, + [SMALL_STATE(2785)] = 80719, + [SMALL_STATE(2786)] = 80783, + [SMALL_STATE(2787)] = 80853, + [SMALL_STATE(2788)] = 80915, + [SMALL_STATE(2789)] = 80985, + [SMALL_STATE(2790)] = 81055, + [SMALL_STATE(2791)] = 81117, + [SMALL_STATE(2792)] = 81185, + [SMALL_STATE(2793)] = 81255, + [SMALL_STATE(2794)] = 81317, + [SMALL_STATE(2795)] = 81379, + [SMALL_STATE(2796)] = 81449, + [SMALL_STATE(2797)] = 81511, + [SMALL_STATE(2798)] = 81573, + [SMALL_STATE(2799)] = 81637, + [SMALL_STATE(2800)] = 81699, + [SMALL_STATE(2801)] = 81767, + [SMALL_STATE(2802)] = 81833, + [SMALL_STATE(2803)] = 81895, + [SMALL_STATE(2804)] = 81959, + [SMALL_STATE(2805)] = 82027, + [SMALL_STATE(2806)] = 82093, + [SMALL_STATE(2807)] = 82163, + [SMALL_STATE(2808)] = 82227, + [SMALL_STATE(2809)] = 82297, + [SMALL_STATE(2810)] = 82365, + [SMALL_STATE(2811)] = 82427, + [SMALL_STATE(2812)] = 82489, + [SMALL_STATE(2813)] = 82553, + [SMALL_STATE(2814)] = 82623, + [SMALL_STATE(2815)] = 82685, + [SMALL_STATE(2816)] = 82747, + [SMALL_STATE(2817)] = 82809, + [SMALL_STATE(2818)] = 82871, + [SMALL_STATE(2819)] = 82941, + [SMALL_STATE(2820)] = 83011, + [SMALL_STATE(2821)] = 83081, + [SMALL_STATE(2822)] = 83145, + [SMALL_STATE(2823)] = 83215, + [SMALL_STATE(2824)] = 83285, + [SMALL_STATE(2825)] = 83347, + [SMALL_STATE(2826)] = 83413, + [SMALL_STATE(2827)] = 83477, + [SMALL_STATE(2828)] = 83543, + [SMALL_STATE(2829)] = 83609, + [SMALL_STATE(2830)] = 83673, + [SMALL_STATE(2831)] = 83741, + [SMALL_STATE(2832)] = 83803, + [SMALL_STATE(2833)] = 83871, + [SMALL_STATE(2834)] = 83939, + [SMALL_STATE(2835)] = 84009, + [SMALL_STATE(2836)] = 84071, + [SMALL_STATE(2837)] = 84137, + [SMALL_STATE(2838)] = 84207, + [SMALL_STATE(2839)] = 84277, + [SMALL_STATE(2840)] = 84343, + [SMALL_STATE(2841)] = 84413, + [SMALL_STATE(2842)] = 84477, + [SMALL_STATE(2843)] = 84547, + [SMALL_STATE(2844)] = 84617, + [SMALL_STATE(2845)] = 84685, + [SMALL_STATE(2846)] = 84753, + [SMALL_STATE(2847)] = 84823, + [SMALL_STATE(2848)] = 84893, + [SMALL_STATE(2849)] = 84955, + [SMALL_STATE(2850)] = 85025, + [SMALL_STATE(2851)] = 85090, + [SMALL_STATE(2852)] = 85151, + [SMALL_STATE(2853)] = 85212, + [SMALL_STATE(2854)] = 85281, + [SMALL_STATE(2855)] = 85342, + [SMALL_STATE(2856)] = 85403, + [SMALL_STATE(2857)] = 85474, + [SMALL_STATE(2858)] = 85535, + [SMALL_STATE(2859)] = 85600, + [SMALL_STATE(2860)] = 85661, + [SMALL_STATE(2861)] = 85722, + [SMALL_STATE(2862)] = 85783, + [SMALL_STATE(2863)] = 85848, + [SMALL_STATE(2864)] = 85909, + [SMALL_STATE(2865)] = 85972, + [SMALL_STATE(2866)] = 86035, + [SMALL_STATE(2867)] = 86096, + [SMALL_STATE(2868)] = 86157, + [SMALL_STATE(2869)] = 86222, + [SMALL_STATE(2870)] = 86285, + [SMALL_STATE(2871)] = 86346, + [SMALL_STATE(2872)] = 86407, + [SMALL_STATE(2873)] = 86470, + [SMALL_STATE(2874)] = 86535, + [SMALL_STATE(2875)] = 86600, + [SMALL_STATE(2876)] = 86661, + [SMALL_STATE(2877)] = 86724, + [SMALL_STATE(2878)] = 86785, + [SMALL_STATE(2879)] = 86850, + [SMALL_STATE(2880)] = 86913, + [SMALL_STATE(2881)] = 86976, + [SMALL_STATE(2882)] = 87037, + [SMALL_STATE(2883)] = 87098, + [SMALL_STATE(2884)] = 87163, + [SMALL_STATE(2885)] = 87224, + [SMALL_STATE(2886)] = 87285, + [SMALL_STATE(2887)] = 87348, + [SMALL_STATE(2888)] = 87411, + [SMALL_STATE(2889)] = 87472, + [SMALL_STATE(2890)] = 87537, + [SMALL_STATE(2891)] = 87598, + [SMALL_STATE(2892)] = 87663, + [SMALL_STATE(2893)] = 87724, + [SMALL_STATE(2894)] = 87785, + [SMALL_STATE(2895)] = 87850, + [SMALL_STATE(2896)] = 87917, + [SMALL_STATE(2897)] = 87982, + [SMALL_STATE(2898)] = 88043, + [SMALL_STATE(2899)] = 88108, + [SMALL_STATE(2900)] = 88171, + [SMALL_STATE(2901)] = 88236, + [SMALL_STATE(2902)] = 88301, + [SMALL_STATE(2903)] = 88366, + [SMALL_STATE(2904)] = 88427, + [SMALL_STATE(2905)] = 88492, + [SMALL_STATE(2906)] = 88557, + [SMALL_STATE(2907)] = 88622, + [SMALL_STATE(2908)] = 88687, + [SMALL_STATE(2909)] = 88752, + [SMALL_STATE(2910)] = 88817, + [SMALL_STATE(2911)] = 88877, + [SMALL_STATE(2912)] = 88943, + [SMALL_STATE(2913)] = 89003, + [SMALL_STATE(2914)] = 89065, + [SMALL_STATE(2915)] = 89125, + [SMALL_STATE(2916)] = 89185, + [SMALL_STATE(2917)] = 89245, + [SMALL_STATE(2918)] = 89305, + [SMALL_STATE(2919)] = 89365, + [SMALL_STATE(2920)] = 89425, + [SMALL_STATE(2921)] = 89491, + [SMALL_STATE(2922)] = 89557, + [SMALL_STATE(2923)] = 89617, + [SMALL_STATE(2924)] = 89683, + [SMALL_STATE(2925)] = 89749, + [SMALL_STATE(2926)] = 89813, + [SMALL_STATE(2927)] = 89879, + [SMALL_STATE(2928)] = 89939, + [SMALL_STATE(2929)] = 89999, + [SMALL_STATE(2930)] = 90059, + [SMALL_STATE(2931)] = 90121, + [SMALL_STATE(2932)] = 90187, + [SMALL_STATE(2933)] = 90247, + [SMALL_STATE(2934)] = 90313, + [SMALL_STATE(2935)] = 90373, + [SMALL_STATE(2936)] = 90433, + [SMALL_STATE(2937)] = 90495, + [SMALL_STATE(2938)] = 90555, + [SMALL_STATE(2939)] = 90615, + [SMALL_STATE(2940)] = 90675, + [SMALL_STATE(2941)] = 90735, + [SMALL_STATE(2942)] = 90795, + [SMALL_STATE(2943)] = 90855, + [SMALL_STATE(2944)] = 90915, + [SMALL_STATE(2945)] = 90975, + [SMALL_STATE(2946)] = 91035, + [SMALL_STATE(2947)] = 91095, + [SMALL_STATE(2948)] = 91155, + [SMALL_STATE(2949)] = 91215, + [SMALL_STATE(2950)] = 91275, + [SMALL_STATE(2951)] = 91335, + [SMALL_STATE(2952)] = 91395, + [SMALL_STATE(2953)] = 91455, + [SMALL_STATE(2954)] = 91515, + [SMALL_STATE(2955)] = 91575, + [SMALL_STATE(2956)] = 91641, + [SMALL_STATE(2957)] = 91701, + [SMALL_STATE(2958)] = 91763, + [SMALL_STATE(2959)] = 91823, + [SMALL_STATE(2960)] = 91883, + [SMALL_STATE(2961)] = 91943, + [SMALL_STATE(2962)] = 92003, + [SMALL_STATE(2963)] = 92063, + [SMALL_STATE(2964)] = 92125, + [SMALL_STATE(2965)] = 92185, + [SMALL_STATE(2966)] = 92249, + [SMALL_STATE(2967)] = 92311, + [SMALL_STATE(2968)] = 92371, + [SMALL_STATE(2969)] = 92431, + [SMALL_STATE(2970)] = 92491, + [SMALL_STATE(2971)] = 92551, + [SMALL_STATE(2972)] = 92617, + [SMALL_STATE(2973)] = 92677, + [SMALL_STATE(2974)] = 92737, + [SMALL_STATE(2975)] = 92803, + [SMALL_STATE(2976)] = 92863, + [SMALL_STATE(2977)] = 92923, + [SMALL_STATE(2978)] = 92985, + [SMALL_STATE(2979)] = 93045, + [SMALL_STATE(2980)] = 93107, + [SMALL_STATE(2981)] = 93167, + [SMALL_STATE(2982)] = 93229, + [SMALL_STATE(2983)] = 93293, + [SMALL_STATE(2984)] = 93357, + [SMALL_STATE(2985)] = 93423, + [SMALL_STATE(2986)] = 93483, + [SMALL_STATE(2987)] = 93543, + [SMALL_STATE(2988)] = 93605, + [SMALL_STATE(2989)] = 93665, + [SMALL_STATE(2990)] = 93725, + [SMALL_STATE(2991)] = 93785, + [SMALL_STATE(2992)] = 93845, + [SMALL_STATE(2993)] = 93905, + [SMALL_STATE(2994)] = 93965, + [SMALL_STATE(2995)] = 94027, + [SMALL_STATE(2996)] = 94101, + [SMALL_STATE(2997)] = 94163, + [SMALL_STATE(2998)] = 94223, + [SMALL_STATE(2999)] = 94283, + [SMALL_STATE(3000)] = 94344, + [SMALL_STATE(3001)] = 94417, + [SMALL_STATE(3002)] = 94476, + [SMALL_STATE(3003)] = 94535, + [SMALL_STATE(3004)] = 94598, + [SMALL_STATE(3005)] = 94657, + [SMALL_STATE(3006)] = 94718, + [SMALL_STATE(3007)] = 94777, + [SMALL_STATE(3008)] = 94838, + [SMALL_STATE(3009)] = 94897, + [SMALL_STATE(3010)] = 94956, + [SMALL_STATE(3011)] = 95015, + [SMALL_STATE(3012)] = 95074, + [SMALL_STATE(3013)] = 95133, + [SMALL_STATE(3014)] = 95192, + [SMALL_STATE(3015)] = 95251, + [SMALL_STATE(3016)] = 95310, + [SMALL_STATE(3017)] = 95369, + [SMALL_STATE(3018)] = 95428, + [SMALL_STATE(3019)] = 95487, + [SMALL_STATE(3020)] = 95546, + [SMALL_STATE(3021)] = 95605, + [SMALL_STATE(3022)] = 95666, + [SMALL_STATE(3023)] = 95725, + [SMALL_STATE(3024)] = 95784, + [SMALL_STATE(3025)] = 95845, + [SMALL_STATE(3026)] = 95904, + [SMALL_STATE(3027)] = 95963, + [SMALL_STATE(3028)] = 96022, + [SMALL_STATE(3029)] = 96083, + [SMALL_STATE(3030)] = 96142, + [SMALL_STATE(3031)] = 96201, + [SMALL_STATE(3032)] = 96262, + [SMALL_STATE(3033)] = 96321, + [SMALL_STATE(3034)] = 96380, + [SMALL_STATE(3035)] = 96439, + [SMALL_STATE(3036)] = 96498, + [SMALL_STATE(3037)] = 96557, + [SMALL_STATE(3038)] = 96616, + [SMALL_STATE(3039)] = 96675, + [SMALL_STATE(3040)] = 96734, + [SMALL_STATE(3041)] = 96795, + [SMALL_STATE(3042)] = 96854, + [SMALL_STATE(3043)] = 96913, + [SMALL_STATE(3044)] = 96972, + [SMALL_STATE(3045)] = 97035, + [SMALL_STATE(3046)] = 97094, + [SMALL_STATE(3047)] = 97153, + [SMALL_STATE(3048)] = 97212, + [SMALL_STATE(3049)] = 97273, + [SMALL_STATE(3050)] = 97334, + [SMALL_STATE(3051)] = 97393, + [SMALL_STATE(3052)] = 97452, + [SMALL_STATE(3053)] = 97511, + [SMALL_STATE(3054)] = 97570, + [SMALL_STATE(3055)] = 97629, + [SMALL_STATE(3056)] = 97690, + [SMALL_STATE(3057)] = 97749, + [SMALL_STATE(3058)] = 97808, + [SMALL_STATE(3059)] = 97867, + [SMALL_STATE(3060)] = 97926, + [SMALL_STATE(3061)] = 97985, + [SMALL_STATE(3062)] = 98044, + [SMALL_STATE(3063)] = 98103, + [SMALL_STATE(3064)] = 98166, + [SMALL_STATE(3065)] = 98225, + [SMALL_STATE(3066)] = 98284, + [SMALL_STATE(3067)] = 98343, + [SMALL_STATE(3068)] = 98402, + [SMALL_STATE(3069)] = 98463, + [SMALL_STATE(3070)] = 98522, + [SMALL_STATE(3071)] = 98583, + [SMALL_STATE(3072)] = 98646, + [SMALL_STATE(3073)] = 98705, + [SMALL_STATE(3074)] = 98764, + [SMALL_STATE(3075)] = 98823, + [SMALL_STATE(3076)] = 98882, + [SMALL_STATE(3077)] = 98943, + [SMALL_STATE(3078)] = 99002, + [SMALL_STATE(3079)] = 99061, + [SMALL_STATE(3080)] = 99122, + [SMALL_STATE(3081)] = 99183, + [SMALL_STATE(3082)] = 99242, + [SMALL_STATE(3083)] = 99301, + [SMALL_STATE(3084)] = 99359, + [SMALL_STATE(3085)] = 99417, + [SMALL_STATE(3086)] = 99475, + [SMALL_STATE(3087)] = 99533, + [SMALL_STATE(3088)] = 99591, + [SMALL_STATE(3089)] = 99649, + [SMALL_STATE(3090)] = 99707, + [SMALL_STATE(3091)] = 99765, + [SMALL_STATE(3092)] = 99823, + [SMALL_STATE(3093)] = 99881, + [SMALL_STATE(3094)] = 99939, + [SMALL_STATE(3095)] = 99997, + [SMALL_STATE(3096)] = 100055, + [SMALL_STATE(3097)] = 100113, + [SMALL_STATE(3098)] = 100171, + [SMALL_STATE(3099)] = 100229, + [SMALL_STATE(3100)] = 100287, + [SMALL_STATE(3101)] = 100345, + [SMALL_STATE(3102)] = 100403, + [SMALL_STATE(3103)] = 100461, + [SMALL_STATE(3104)] = 100519, + [SMALL_STATE(3105)] = 100577, + [SMALL_STATE(3106)] = 100635, + [SMALL_STATE(3107)] = 100693, + [SMALL_STATE(3108)] = 100753, + [SMALL_STATE(3109)] = 100811, + [SMALL_STATE(3110)] = 100869, + [SMALL_STATE(3111)] = 100927, + [SMALL_STATE(3112)] = 100985, + [SMALL_STATE(3113)] = 101043, + [SMALL_STATE(3114)] = 101101, + [SMALL_STATE(3115)] = 101159, + [SMALL_STATE(3116)] = 101217, + [SMALL_STATE(3117)] = 101275, + [SMALL_STATE(3118)] = 101333, + [SMALL_STATE(3119)] = 101391, + [SMALL_STATE(3120)] = 101449, + [SMALL_STATE(3121)] = 101507, + [SMALL_STATE(3122)] = 101565, + [SMALL_STATE(3123)] = 101623, + [SMALL_STATE(3124)] = 101681, + [SMALL_STATE(3125)] = 101739, + [SMALL_STATE(3126)] = 101797, + [SMALL_STATE(3127)] = 101855, + [SMALL_STATE(3128)] = 101913, + [SMALL_STATE(3129)] = 101971, + [SMALL_STATE(3130)] = 102029, + [SMALL_STATE(3131)] = 102087, + [SMALL_STATE(3132)] = 102145, + [SMALL_STATE(3133)] = 102203, + [SMALL_STATE(3134)] = 102261, + [SMALL_STATE(3135)] = 102319, + [SMALL_STATE(3136)] = 102377, + [SMALL_STATE(3137)] = 102435, + [SMALL_STATE(3138)] = 102493, + [SMALL_STATE(3139)] = 102551, + [SMALL_STATE(3140)] = 102609, + [SMALL_STATE(3141)] = 102667, + [SMALL_STATE(3142)] = 102725, + [SMALL_STATE(3143)] = 102783, + [SMALL_STATE(3144)] = 102841, + [SMALL_STATE(3145)] = 102899, + [SMALL_STATE(3146)] = 102957, + [SMALL_STATE(3147)] = 103015, + [SMALL_STATE(3148)] = 103073, + [SMALL_STATE(3149)] = 103131, + [SMALL_STATE(3150)] = 103189, + [SMALL_STATE(3151)] = 103247, + [SMALL_STATE(3152)] = 103304, + [SMALL_STATE(3153)] = 103369, + [SMALL_STATE(3154)] = 103445, + [SMALL_STATE(3155)] = 103521, + [SMALL_STATE(3156)] = 103597, + [SMALL_STATE(3157)] = 103673, + [SMALL_STATE(3158)] = 103749, + [SMALL_STATE(3159)] = 103825, + [SMALL_STATE(3160)] = 103901, + [SMALL_STATE(3161)] = 103977, + [SMALL_STATE(3162)] = 104053, + [SMALL_STATE(3163)] = 104129, + [SMALL_STATE(3164)] = 104193, + [SMALL_STATE(3165)] = 104269, + [SMALL_STATE(3166)] = 104335, + [SMALL_STATE(3167)] = 104411, + [SMALL_STATE(3168)] = 104487, + [SMALL_STATE(3169)] = 104563, + [SMALL_STATE(3170)] = 104639, + [SMALL_STATE(3171)] = 104715, + [SMALL_STATE(3172)] = 104780, + [SMALL_STATE(3173)] = 104834, + [SMALL_STATE(3174)] = 104904, + [SMALL_STATE(3175)] = 104958, + [SMALL_STATE(3176)] = 105012, + [SMALL_STATE(3177)] = 105070, + [SMALL_STATE(3178)] = 105124, + [SMALL_STATE(3179)] = 105182, + [SMALL_STATE(3180)] = 105240, + [SMALL_STATE(3181)] = 105298, + [SMALL_STATE(3182)] = 105355, + [SMALL_STATE(3183)] = 105410, + [SMALL_STATE(3184)] = 105467, + [SMALL_STATE(3185)] = 105520, + [SMALL_STATE(3186)] = 105589, + [SMALL_STATE(3187)] = 105646, + [SMALL_STATE(3188)] = 105703, + [SMALL_STATE(3189)] = 105760, + [SMALL_STATE(3190)] = 105827, + [SMALL_STATE(3191)] = 105884, + [SMALL_STATE(3192)] = 105948, + [SMALL_STATE(3193)] = 106012, + [SMALL_STATE(3194)] = 106066, + [SMALL_STATE(3195)] = 106116, + [SMALL_STATE(3196)] = 106166, + [SMALL_STATE(3197)] = 106232, + [SMALL_STATE(3198)] = 106296, + [SMALL_STATE(3199)] = 106346, + [SMALL_STATE(3200)] = 106396, + [SMALL_STATE(3201)] = 106464, + [SMALL_STATE(3202)] = 106526, + [SMALL_STATE(3203)] = 106596, + [SMALL_STATE(3204)] = 106654, + [SMALL_STATE(3205)] = 106734, + [SMALL_STATE(3206)] = 106816, + [SMALL_STATE(3207)] = 106900, + [SMALL_STATE(3208)] = 106972, + [SMALL_STATE(3209)] = 107038, + [SMALL_STATE(3210)] = 107112, + [SMALL_STATE(3211)] = 107188, + [SMALL_STATE(3212)] = 107266, + [SMALL_STATE(3213)] = 107330, + [SMALL_STATE(3214)] = 107396, + [SMALL_STATE(3215)] = 107464, + [SMALL_STATE(3216)] = 107524, + [SMALL_STATE(3217)] = 107586, + [SMALL_STATE(3218)] = 107654, + [SMALL_STATE(3219)] = 107724, + [SMALL_STATE(3220)] = 107780, + [SMALL_STATE(3221)] = 107838, + [SMALL_STATE(3222)] = 107916, + [SMALL_STATE(3223)] = 107996, + [SMALL_STATE(3224)] = 108076, + [SMALL_STATE(3225)] = 108158, + [SMALL_STATE(3226)] = 108240, + [SMALL_STATE(3227)] = 108324, + [SMALL_STATE(3228)] = 108394, + [SMALL_STATE(3229)] = 108466, + [SMALL_STATE(3230)] = 108530, + [SMALL_STATE(3231)] = 108596, + [SMALL_STATE(3232)] = 108668, + [SMALL_STATE(3233)] = 108742, + [SMALL_STATE(3234)] = 108816, + [SMALL_STATE(3235)] = 108892, + [SMALL_STATE(3236)] = 108968, + [SMALL_STATE(3237)] = 109046, + [SMALL_STATE(3238)] = 109114, + [SMALL_STATE(3239)] = 109176, + [SMALL_STATE(3240)] = 109246, + [SMALL_STATE(3241)] = 109304, + [SMALL_STATE(3242)] = 109384, + [SMALL_STATE(3243)] = 109466, + [SMALL_STATE(3244)] = 109550, + [SMALL_STATE(3245)] = 109622, + [SMALL_STATE(3246)] = 109688, + [SMALL_STATE(3247)] = 109762, + [SMALL_STATE(3248)] = 109838, + [SMALL_STATE(3249)] = 109916, + [SMALL_STATE(3250)] = 109982, + [SMALL_STATE(3251)] = 110042, + [SMALL_STATE(3252)] = 110110, + [SMALL_STATE(3253)] = 110166, + [SMALL_STATE(3254)] = 110244, + [SMALL_STATE(3255)] = 110324, + [SMALL_STATE(3256)] = 110378, + [SMALL_STATE(3257)] = 110448, + [SMALL_STATE(3258)] = 110512, + [SMALL_STATE(3259)] = 110584, + [SMALL_STATE(3260)] = 110658, + [SMALL_STATE(3261)] = 110734, + [SMALL_STATE(3262)] = 110800, + [SMALL_STATE(3263)] = 110868, + [SMALL_STATE(3264)] = 110928, + [SMALL_STATE(3265)] = 110990, + [SMALL_STATE(3266)] = 111058, + [SMALL_STATE(3267)] = 111128, + [SMALL_STATE(3268)] = 111184, + [SMALL_STATE(3269)] = 111242, + [SMALL_STATE(3270)] = 111320, + [SMALL_STATE(3271)] = 111400, + [SMALL_STATE(3272)] = 111480, + [SMALL_STATE(3273)] = 111562, + [SMALL_STATE(3274)] = 111644, + [SMALL_STATE(3275)] = 111728, + [SMALL_STATE(3276)] = 111798, + [SMALL_STATE(3277)] = 111870, + [SMALL_STATE(3278)] = 111934, + [SMALL_STATE(3279)] = 112000, + [SMALL_STATE(3280)] = 112072, + [SMALL_STATE(3281)] = 112146, + [SMALL_STATE(3282)] = 112220, + [SMALL_STATE(3283)] = 112296, + [SMALL_STATE(3284)] = 112372, + [SMALL_STATE(3285)] = 112450, + [SMALL_STATE(3286)] = 112516, + [SMALL_STATE(3287)] = 112576, + [SMALL_STATE(3288)] = 112644, + [SMALL_STATE(3289)] = 112700, + [SMALL_STATE(3290)] = 112778, + [SMALL_STATE(3291)] = 112858, + [SMALL_STATE(3292)] = 112940, + [SMALL_STATE(3293)] = 113010, + [SMALL_STATE(3294)] = 113074, + [SMALL_STATE(3295)] = 113146, + [SMALL_STATE(3296)] = 113220, + [SMALL_STATE(3297)] = 113296, + [SMALL_STATE(3298)] = 113350, + [SMALL_STATE(3299)] = 113414, + [SMALL_STATE(3300)] = 113472, + [SMALL_STATE(3301)] = 113538, + [SMALL_STATE(3302)] = 113592, + [SMALL_STATE(3303)] = 113668, + [SMALL_STATE(3304)] = 113746, + [SMALL_STATE(3305)] = 113826, + [SMALL_STATE(3306)] = 113894, + [SMALL_STATE(3307)] = 113956, + [SMALL_STATE(3308)] = 114026, + [SMALL_STATE(3309)] = 114098, + [SMALL_STATE(3310)] = 114172, + [SMALL_STATE(3311)] = 114236, + [SMALL_STATE(3312)] = 114290, + [SMALL_STATE(3313)] = 114358, + [SMALL_STATE(3314)] = 114424, + [SMALL_STATE(3315)] = 114490, + [SMALL_STATE(3316)] = 114556, + [SMALL_STATE(3317)] = 114606, + [SMALL_STATE(3318)] = 114656, + [SMALL_STATE(3319)] = 114738, + [SMALL_STATE(3320)] = 114799, + [SMALL_STATE(3321)] = 114864, + [SMALL_STATE(3322)] = 114925, + [SMALL_STATE(3323)] = 114976, + [SMALL_STATE(3324)] = 115029, + [SMALL_STATE(3325)] = 115088, + [SMALL_STATE(3326)] = 115139, + [SMALL_STATE(3327)] = 115200, + [SMALL_STATE(3328)] = 115265, + [SMALL_STATE(3329)] = 115326, + [SMALL_STATE(3330)] = 115377, + [SMALL_STATE(3331)] = 115438, + [SMALL_STATE(3332)] = 115499, + [SMALL_STATE(3333)] = 115550, + [SMALL_STATE(3334)] = 115611, + [SMALL_STATE(3335)] = 115662, + [SMALL_STATE(3336)] = 115713, + [SMALL_STATE(3337)] = 115764, + [SMALL_STATE(3338)] = 115815, + [SMALL_STATE(3339)] = 115866, + [SMALL_STATE(3340)] = 115927, + [SMALL_STATE(3341)] = 116000, + [SMALL_STATE(3342)] = 116059, + [SMALL_STATE(3343)] = 116114, + [SMALL_STATE(3344)] = 116169, + [SMALL_STATE(3345)] = 116230, + [SMALL_STATE(3346)] = 116291, + [SMALL_STATE(3347)] = 116362, + [SMALL_STATE(3348)] = 116413, + [SMALL_STATE(3349)] = 116464, + [SMALL_STATE(3350)] = 116515, + [SMALL_STATE(3351)] = 116580, + [SMALL_STATE(3352)] = 116643, + [SMALL_STATE(3353)] = 116700, + [SMALL_STATE(3354)] = 116765, + [SMALL_STATE(3355)] = 116818, + [SMALL_STATE(3356)] = 116893, + [SMALL_STATE(3357)] = 116970, + [SMALL_STATE(3358)] = 117049, + [SMALL_STATE(3359)] = 117116, + [SMALL_STATE(3360)] = 117177, + [SMALL_STATE(3361)] = 117246, + [SMALL_STATE(3362)] = 117311, + [SMALL_STATE(3363)] = 117369, + [SMALL_STATE(3364)] = 117421, + [SMALL_STATE(3365)] = 117507, + [SMALL_STATE(3366)] = 117565, + [SMALL_STATE(3367)] = 117619, + [SMALL_STATE(3368)] = 117673, + [SMALL_STATE(3369)] = 117759, + [SMALL_STATE(3370)] = 117813, + [SMALL_STATE(3371)] = 117867, + [SMALL_STATE(3372)] = 117925, + [SMALL_STATE(3373)] = 117981, + [SMALL_STATE(3374)] = 118035, + [SMALL_STATE(3375)] = 118087, + [SMALL_STATE(3376)] = 118141, + [SMALL_STATE(3377)] = 118207, + [SMALL_STATE(3378)] = 118262, + [SMALL_STATE(3379)] = 118315, + [SMALL_STATE(3380)] = 118368, + [SMALL_STATE(3381)] = 118433, + [SMALL_STATE(3382)] = 118516, + [SMALL_STATE(3383)] = 118599, + [SMALL_STATE(3384)] = 118648, + [SMALL_STATE(3385)] = 118711, + [SMALL_STATE(3386)] = 118774, + [SMALL_STATE(3387)] = 118825, + [SMALL_STATE(3388)] = 118888, + [SMALL_STATE(3389)] = 118945, + [SMALL_STATE(3390)] = 119008, + [SMALL_STATE(3391)] = 119063, + [SMALL_STATE(3392)] = 119116, + [SMALL_STATE(3393)] = 119165, + [SMALL_STATE(3394)] = 119220, + [SMALL_STATE(3395)] = 119275, + [SMALL_STATE(3396)] = 119326, + [SMALL_STATE(3397)] = 119377, + [SMALL_STATE(3398)] = 119426, + [SMALL_STATE(3399)] = 119481, + [SMALL_STATE(3400)] = 119532, + [SMALL_STATE(3401)] = 119581, + [SMALL_STATE(3402)] = 119640, + [SMALL_STATE(3403)] = 119689, + [SMALL_STATE(3404)] = 119743, + [SMALL_STATE(3405)] = 119799, + [SMALL_STATE(3406)] = 119847, + [SMALL_STATE(3407)] = 119895, + [SMALL_STATE(3408)] = 119943, + [SMALL_STATE(3409)] = 119991, + [SMALL_STATE(3410)] = 120039, + [SMALL_STATE(3411)] = 120095, + [SMALL_STATE(3412)] = 120143, + [SMALL_STATE(3413)] = 120191, + [SMALL_STATE(3414)] = 120247, + [SMALL_STATE(3415)] = 120297, + [SMALL_STATE(3416)] = 120349, + [SMALL_STATE(3417)] = 120399, + [SMALL_STATE(3418)] = 120461, + [SMALL_STATE(3419)] = 120513, + [SMALL_STATE(3420)] = 120575, + [SMALL_STATE(3421)] = 120627, + [SMALL_STATE(3422)] = 120675, + [SMALL_STATE(3423)] = 120723, + [SMALL_STATE(3424)] = 120771, + [SMALL_STATE(3425)] = 120819, + [SMALL_STATE(3426)] = 120867, + [SMALL_STATE(3427)] = 120915, + [SMALL_STATE(3428)] = 120963, + [SMALL_STATE(3429)] = 121011, + [SMALL_STATE(3430)] = 121063, + [SMALL_STATE(3431)] = 121111, + [SMALL_STATE(3432)] = 121159, + [SMALL_STATE(3433)] = 121207, + [SMALL_STATE(3434)] = 121255, + [SMALL_STATE(3435)] = 121303, + [SMALL_STATE(3436)] = 121359, + [SMALL_STATE(3437)] = 121407, + [SMALL_STATE(3438)] = 121455, + [SMALL_STATE(3439)] = 121503, + [SMALL_STATE(3440)] = 121551, + [SMALL_STATE(3441)] = 121613, + [SMALL_STATE(3442)] = 121665, + [SMALL_STATE(3443)] = 121716, + [SMALL_STATE(3444)] = 121771, + [SMALL_STATE(3445)] = 121826, + [SMALL_STATE(3446)] = 121881, + [SMALL_STATE(3447)] = 121928, + [SMALL_STATE(3448)] = 121983, + [SMALL_STATE(3449)] = 122034, + [SMALL_STATE(3450)] = 122081, + [SMALL_STATE(3451)] = 122128, + [SMALL_STATE(3452)] = 122181, + [SMALL_STATE(3453)] = 122236, + [SMALL_STATE(3454)] = 122291, + [SMALL_STATE(3455)] = 122346, + [SMALL_STATE(3456)] = 122401, + [SMALL_STATE(3457)] = 122448, + [SMALL_STATE(3458)] = 122499, + [SMALL_STATE(3459)] = 122554, + [SMALL_STATE(3460)] = 122609, + [SMALL_STATE(3461)] = 122664, + [SMALL_STATE(3462)] = 122719, + [SMALL_STATE(3463)] = 122774, + [SMALL_STATE(3464)] = 122821, + [SMALL_STATE(3465)] = 122876, + [SMALL_STATE(3466)] = 122931, + [SMALL_STATE(3467)] = 122986, + [SMALL_STATE(3468)] = 123041, + [SMALL_STATE(3469)] = 123096, + [SMALL_STATE(3470)] = 123151, + [SMALL_STATE(3471)] = 123200, + [SMALL_STATE(3472)] = 123255, + [SMALL_STATE(3473)] = 123302, + [SMALL_STATE(3474)] = 123357, + [SMALL_STATE(3475)] = 123412, + [SMALL_STATE(3476)] = 123459, + [SMALL_STATE(3477)] = 123508, + [SMALL_STATE(3478)] = 123563, + [SMALL_STATE(3479)] = 123618, + [SMALL_STATE(3480)] = 123670, + [SMALL_STATE(3481)] = 123716, + [SMALL_STATE(3482)] = 123766, + [SMALL_STATE(3483)] = 123818, + [SMALL_STATE(3484)] = 123866, + [SMALL_STATE(3485)] = 123912, + [SMALL_STATE(3486)] = 123962, + [SMALL_STATE(3487)] = 124008, + [SMALL_STATE(3488)] = 124054, + [SMALL_STATE(3489)] = 124100, + [SMALL_STATE(3490)] = 124146, + [SMALL_STATE(3491)] = 124192, + [SMALL_STATE(3492)] = 124238, + [SMALL_STATE(3493)] = 124284, + [SMALL_STATE(3494)] = 124330, + [SMALL_STATE(3495)] = 124376, + [SMALL_STATE(3496)] = 124422, + [SMALL_STATE(3497)] = 124468, + [SMALL_STATE(3498)] = 124514, + [SMALL_STATE(3499)] = 124560, + [SMALL_STATE(3500)] = 124604, + [SMALL_STATE(3501)] = 124650, + [SMALL_STATE(3502)] = 124696, + [SMALL_STATE(3503)] = 124742, + [SMALL_STATE(3504)] = 124788, + [SMALL_STATE(3505)] = 124834, + [SMALL_STATE(3506)] = 124880, + [SMALL_STATE(3507)] = 124928, + [SMALL_STATE(3508)] = 124974, + [SMALL_STATE(3509)] = 125020, + [SMALL_STATE(3510)] = 125068, + [SMALL_STATE(3511)] = 125114, + [SMALL_STATE(3512)] = 125160, + [SMALL_STATE(3513)] = 125212, + [SMALL_STATE(3514)] = 125260, + [SMALL_STATE(3515)] = 125314, + [SMALL_STATE(3516)] = 125360, + [SMALL_STATE(3517)] = 125406, + [SMALL_STATE(3518)] = 125452, + [SMALL_STATE(3519)] = 125498, + [SMALL_STATE(3520)] = 125548, + [SMALL_STATE(3521)] = 125594, + [SMALL_STATE(3522)] = 125644, + [SMALL_STATE(3523)] = 125690, + [SMALL_STATE(3524)] = 125736, + [SMALL_STATE(3525)] = 125782, + [SMALL_STATE(3526)] = 125828, + [SMALL_STATE(3527)] = 125874, + [SMALL_STATE(3528)] = 125920, + [SMALL_STATE(3529)] = 125966, + [SMALL_STATE(3530)] = 126016, + [SMALL_STATE(3531)] = 126066, + [SMALL_STATE(3532)] = 126120, + [SMALL_STATE(3533)] = 126166, + [SMALL_STATE(3534)] = 126215, + [SMALL_STATE(3535)] = 126264, + [SMALL_STATE(3536)] = 126317, + [SMALL_STATE(3537)] = 126370, + [SMALL_STATE(3538)] = 126423, + [SMALL_STATE(3539)] = 126468, + [SMALL_STATE(3540)] = 126521, + [SMALL_STATE(3541)] = 126574, + [SMALL_STATE(3542)] = 126619, + [SMALL_STATE(3543)] = 126672, + [SMALL_STATE(3544)] = 126719, + [SMALL_STATE(3545)] = 126768, + [SMALL_STATE(3546)] = 126817, + [SMALL_STATE(3547)] = 126870, + [SMALL_STATE(3548)] = 126917, + [SMALL_STATE(3549)] = 126962, + [SMALL_STATE(3550)] = 127015, + [SMALL_STATE(3551)] = 127060, + [SMALL_STATE(3552)] = 127105, + [SMALL_STATE(3553)] = 127158, + [SMALL_STATE(3554)] = 127203, + [SMALL_STATE(3555)] = 127248, + [SMALL_STATE(3556)] = 127301, + [SMALL_STATE(3557)] = 127346, + [SMALL_STATE(3558)] = 127391, + [SMALL_STATE(3559)] = 127436, + [SMALL_STATE(3560)] = 127481, + [SMALL_STATE(3561)] = 127534, + [SMALL_STATE(3562)] = 127579, + [SMALL_STATE(3563)] = 127632, + [SMALL_STATE(3564)] = 127677, + [SMALL_STATE(3565)] = 127730, + [SMALL_STATE(3566)] = 127783, + [SMALL_STATE(3567)] = 127836, + [SMALL_STATE(3568)] = 127889, + [SMALL_STATE(3569)] = 127942, + [SMALL_STATE(3570)] = 127995, + [SMALL_STATE(3571)] = 128048, + [SMALL_STATE(3572)] = 128101, + [SMALL_STATE(3573)] = 128154, + [SMALL_STATE(3574)] = 128203, + [SMALL_STATE(3575)] = 128256, + [SMALL_STATE(3576)] = 128309, + [SMALL_STATE(3577)] = 128354, + [SMALL_STATE(3578)] = 128407, + [SMALL_STATE(3579)] = 128460, + [SMALL_STATE(3580)] = 128509, + [SMALL_STATE(3581)] = 128562, + [SMALL_STATE(3582)] = 128615, + [SMALL_STATE(3583)] = 128662, + [SMALL_STATE(3584)] = 128709, + [SMALL_STATE(3585)] = 128754, + [SMALL_STATE(3586)] = 128799, + [SMALL_STATE(3587)] = 128844, + [SMALL_STATE(3588)] = 128893, + [SMALL_STATE(3589)] = 128937, + [SMALL_STATE(3590)] = 128985, + [SMALL_STATE(3591)] = 129029, + [SMALL_STATE(3592)] = 129073, + [SMALL_STATE(3593)] = 129121, + [SMALL_STATE(3594)] = 129167, + [SMALL_STATE(3595)] = 129215, + [SMALL_STATE(3596)] = 129259, + [SMALL_STATE(3597)] = 129303, + [SMALL_STATE(3598)] = 129347, + [SMALL_STATE(3599)] = 129391, + [SMALL_STATE(3600)] = 129443, + [SMALL_STATE(3601)] = 129487, + [SMALL_STATE(3602)] = 129533, + [SMALL_STATE(3603)] = 129577, + [SMALL_STATE(3604)] = 129621, + [SMALL_STATE(3605)] = 129665, + [SMALL_STATE(3606)] = 129711, + [SMALL_STATE(3607)] = 129755, + [SMALL_STATE(3608)] = 129799, + [SMALL_STATE(3609)] = 129851, + [SMALL_STATE(3610)] = 129897, + [SMALL_STATE(3611)] = 129943, + [SMALL_STATE(3612)] = 129989, + [SMALL_STATE(3613)] = 130035, + [SMALL_STATE(3614)] = 130083, + [SMALL_STATE(3615)] = 130127, + [SMALL_STATE(3616)] = 130173, + [SMALL_STATE(3617)] = 130217, + [SMALL_STATE(3618)] = 130265, + [SMALL_STATE(3619)] = 130311, + [SMALL_STATE(3620)] = 130355, + [SMALL_STATE(3621)] = 130401, + [SMALL_STATE(3622)] = 130448, + [SMALL_STATE(3623)] = 130491, + [SMALL_STATE(3624)] = 130538, + [SMALL_STATE(3625)] = 130581, + [SMALL_STATE(3626)] = 130628, + [SMALL_STATE(3627)] = 130675, + [SMALL_STATE(3628)] = 130722, + [SMALL_STATE(3629)] = 130769, + [SMALL_STATE(3630)] = 130816, + [SMALL_STATE(3631)] = 130867, + [SMALL_STATE(3632)] = 130910, + [SMALL_STATE(3633)] = 130953, + [SMALL_STATE(3634)] = 130996, + [SMALL_STATE(3635)] = 131039, + [SMALL_STATE(3636)] = 131084, + [SMALL_STATE(3637)] = 131131, + [SMALL_STATE(3638)] = 131174, + [SMALL_STATE(3639)] = 131221, + [SMALL_STATE(3640)] = 131268, + [SMALL_STATE(3641)] = 131311, + [SMALL_STATE(3642)] = 131360, + [SMALL_STATE(3643)] = 131403, + [SMALL_STATE(3644)] = 131446, + [SMALL_STATE(3645)] = 131489, + [SMALL_STATE(3646)] = 131536, + [SMALL_STATE(3647)] = 131579, + [SMALL_STATE(3648)] = 131622, + [SMALL_STATE(3649)] = 131665, + [SMALL_STATE(3650)] = 131708, + [SMALL_STATE(3651)] = 131751, + [SMALL_STATE(3652)] = 131794, + [SMALL_STATE(3653)] = 131837, + [SMALL_STATE(3654)] = 131880, + [SMALL_STATE(3655)] = 131923, + [SMALL_STATE(3656)] = 131966, + [SMALL_STATE(3657)] = 132009, + [SMALL_STATE(3658)] = 132052, + [SMALL_STATE(3659)] = 132099, + [SMALL_STATE(3660)] = 132142, + [SMALL_STATE(3661)] = 132185, + [SMALL_STATE(3662)] = 132228, + [SMALL_STATE(3663)] = 132271, + [SMALL_STATE(3664)] = 132314, + [SMALL_STATE(3665)] = 132361, + [SMALL_STATE(3666)] = 132404, + [SMALL_STATE(3667)] = 132451, + [SMALL_STATE(3668)] = 132494, + [SMALL_STATE(3669)] = 132583, + [SMALL_STATE(3670)] = 132630, + [SMALL_STATE(3671)] = 132673, + [SMALL_STATE(3672)] = 132716, + [SMALL_STATE(3673)] = 132759, + [SMALL_STATE(3674)] = 132806, + [SMALL_STATE(3675)] = 132853, + [SMALL_STATE(3676)] = 132896, + [SMALL_STATE(3677)] = 132939, + [SMALL_STATE(3678)] = 132982, + [SMALL_STATE(3679)] = 133025, + [SMALL_STATE(3680)] = 133068, + [SMALL_STATE(3681)] = 133115, + [SMALL_STATE(3682)] = 133162, + [SMALL_STATE(3683)] = 133205, + [SMALL_STATE(3684)] = 133254, + [SMALL_STATE(3685)] = 133301, + [SMALL_STATE(3686)] = 133348, + [SMALL_STATE(3687)] = 133395, + [SMALL_STATE(3688)] = 133438, + [SMALL_STATE(3689)] = 133481, + [SMALL_STATE(3690)] = 133524, + [SMALL_STATE(3691)] = 133567, + [SMALL_STATE(3692)] = 133610, + [SMALL_STATE(3693)] = 133657, + [SMALL_STATE(3694)] = 133700, + [SMALL_STATE(3695)] = 133747, + [SMALL_STATE(3696)] = 133794, + [SMALL_STATE(3697)] = 133841, + [SMALL_STATE(3698)] = 133888, + [SMALL_STATE(3699)] = 133931, + [SMALL_STATE(3700)] = 133974, + [SMALL_STATE(3701)] = 134017, + [SMALL_STATE(3702)] = 134106, + [SMALL_STATE(3703)] = 134149, + [SMALL_STATE(3704)] = 134192, + [SMALL_STATE(3705)] = 134235, + [SMALL_STATE(3706)] = 134278, + [SMALL_STATE(3707)] = 134321, + [SMALL_STATE(3708)] = 134364, + [SMALL_STATE(3709)] = 134409, + [SMALL_STATE(3710)] = 134456, + [SMALL_STATE(3711)] = 134499, + [SMALL_STATE(3712)] = 134546, + [SMALL_STATE(3713)] = 134589, + [SMALL_STATE(3714)] = 134641, + [SMALL_STATE(3715)] = 134713, + [SMALL_STATE(3716)] = 134759, + [SMALL_STATE(3717)] = 134827, + [SMALL_STATE(3718)] = 134897, + [SMALL_STATE(3719)] = 134969, + [SMALL_STATE(3720)] = 135029, + [SMALL_STATE(3721)] = 135077, + [SMALL_STATE(3722)] = 135131, + [SMALL_STATE(3723)] = 135199, + [SMALL_STATE(3724)] = 135247, + [SMALL_STATE(3725)] = 135317, + [SMALL_STATE(3726)] = 135361, + [SMALL_STATE(3727)] = 135415, + [SMALL_STATE(3728)] = 135459, + [SMALL_STATE(3729)] = 135521, + [SMALL_STATE(3730)] = 135585, + [SMALL_STATE(3731)] = 135633, + [SMALL_STATE(3732)] = 135699, + [SMALL_STATE(3733)] = 135761, + [SMALL_STATE(3734)] = 135831, + [SMALL_STATE(3735)] = 135873, + [SMALL_STATE(3736)] = 135945, + [SMALL_STATE(3737)] = 136017, + [SMALL_STATE(3738)] = 136059, + [SMALL_STATE(3739)] = 136133, + [SMALL_STATE(3740)] = 136175, + [SMALL_STATE(3741)] = 136223, + [SMALL_STATE(3742)] = 136265, + [SMALL_STATE(3743)] = 136329, + [SMALL_STATE(3744)] = 136399, + [SMALL_STATE(3745)] = 136459, + [SMALL_STATE(3746)] = 136525, + [SMALL_STATE(3747)] = 136585, + [SMALL_STATE(3748)] = 136643, + [SMALL_STATE(3749)] = 136699, + [SMALL_STATE(3750)] = 136771, + [SMALL_STATE(3751)] = 136829, + [SMALL_STATE(3752)] = 136891, + [SMALL_STATE(3753)] = 136945, + [SMALL_STATE(3754)] = 136989, + [SMALL_STATE(3755)] = 137045, + [SMALL_STATE(3756)] = 137095, + [SMALL_STATE(3757)] = 137155, + [SMALL_STATE(3758)] = 137197, + [SMALL_STATE(3759)] = 137259, + [SMALL_STATE(3760)] = 137315, + [SMALL_STATE(3761)] = 137373, + [SMALL_STATE(3762)] = 137421, + [SMALL_STATE(3763)] = 137469, + [SMALL_STATE(3764)] = 137527, + [SMALL_STATE(3765)] = 137587, + [SMALL_STATE(3766)] = 137629, + [SMALL_STATE(3767)] = 137675, + [SMALL_STATE(3768)] = 137723, + [SMALL_STATE(3769)] = 137791, + [SMALL_STATE(3770)] = 137861, + [SMALL_STATE(3771)] = 137931, + [SMALL_STATE(3772)] = 137973, + [SMALL_STATE(3773)] = 138015, + [SMALL_STATE(3774)] = 138057, + [SMALL_STATE(3775)] = 138129, + [SMALL_STATE(3776)] = 138177, + [SMALL_STATE(3777)] = 138249, + [SMALL_STATE(3778)] = 138323, + [SMALL_STATE(3779)] = 138371, + [SMALL_STATE(3780)] = 138417, + [SMALL_STATE(3781)] = 138477, + [SMALL_STATE(3782)] = 138539, + [SMALL_STATE(3783)] = 138593, + [SMALL_STATE(3784)] = 138649, + [SMALL_STATE(3785)] = 138705, + [SMALL_STATE(3786)] = 138767, + [SMALL_STATE(3787)] = 138831, + [SMALL_STATE(3788)] = 138895, + [SMALL_STATE(3789)] = 138937, + [SMALL_STATE(3790)] = 139003, + [SMALL_STATE(3791)] = 139069, + [SMALL_STATE(3792)] = 139137, + [SMALL_STATE(3793)] = 139195, + [SMALL_STATE(3794)] = 139247, + [SMALL_STATE(3795)] = 139307, + [SMALL_STATE(3796)] = 139371, + [SMALL_STATE(3797)] = 139423, + [SMALL_STATE(3798)] = 139471, + [SMALL_STATE(3799)] = 139513, + [SMALL_STATE(3800)] = 139583, + [SMALL_STATE(3801)] = 139647, + [SMALL_STATE(3802)] = 139689, + [SMALL_STATE(3803)] = 139761, + [SMALL_STATE(3804)] = 139827, + [SMALL_STATE(3805)] = 139901, + [SMALL_STATE(3806)] = 139963, + [SMALL_STATE(3807)] = 140027, + [SMALL_STATE(3808)] = 140083, + [SMALL_STATE(3809)] = 140125, + [SMALL_STATE(3810)] = 140191, + [SMALL_STATE(3811)] = 140255, + [SMALL_STATE(3812)] = 140323, + [SMALL_STATE(3813)] = 140389, + [SMALL_STATE(3814)] = 140463, + [SMALL_STATE(3815)] = 140505, + [SMALL_STATE(3816)] = 140547, + [SMALL_STATE(3817)] = 140597, + [SMALL_STATE(3818)] = 140665, + [SMALL_STATE(3819)] = 140707, + [SMALL_STATE(3820)] = 140755, + [SMALL_STATE(3821)] = 140801, + [SMALL_STATE(3822)] = 140863, + [SMALL_STATE(3823)] = 140921, + [SMALL_STATE(3824)] = 140967, + [SMALL_STATE(3825)] = 141009, + [SMALL_STATE(3826)] = 141059, + [SMALL_STATE(3827)] = 141125, + [SMALL_STATE(3828)] = 141169, + [SMALL_STATE(3829)] = 141237, + [SMALL_STATE(3830)] = 141289, + [SMALL_STATE(3831)] = 141347, + [SMALL_STATE(3832)] = 141391, + [SMALL_STATE(3833)] = 141451, + [SMALL_STATE(3834)] = 141495, + [SMALL_STATE(3835)] = 141537, + [SMALL_STATE(3836)] = 141579, + [SMALL_STATE(3837)] = 141635, + [SMALL_STATE(3838)] = 141685, + [SMALL_STATE(3839)] = 141743, + [SMALL_STATE(3840)] = 141789, + [SMALL_STATE(3841)] = 141857, + [SMALL_STATE(3842)] = 141913, + [SMALL_STATE(3843)] = 141955, + [SMALL_STATE(3844)] = 142025, + [SMALL_STATE(3845)] = 142073, + [SMALL_STATE(3846)] = 142114, + [SMALL_STATE(3847)] = 142155, + [SMALL_STATE(3848)] = 142196, + [SMALL_STATE(3849)] = 142279, + [SMALL_STATE(3850)] = 142320, + [SMALL_STATE(3851)] = 142361, + [SMALL_STATE(3852)] = 142406, + [SMALL_STATE(3853)] = 142451, + [SMALL_STATE(3854)] = 142500, + [SMALL_STATE(3855)] = 142541, + [SMALL_STATE(3856)] = 142624, + [SMALL_STATE(3857)] = 142665, + [SMALL_STATE(3858)] = 142706, + [SMALL_STATE(3859)] = 142789, + [SMALL_STATE(3860)] = 142872, + [SMALL_STATE(3861)] = 142945, + [SMALL_STATE(3862)] = 142986, + [SMALL_STATE(3863)] = 143027, + [SMALL_STATE(3864)] = 143100, + [SMALL_STATE(3865)] = 143183, + [SMALL_STATE(3866)] = 143226, + [SMALL_STATE(3867)] = 143267, + [SMALL_STATE(3868)] = 143350, + [SMALL_STATE(3869)] = 143391, + [SMALL_STATE(3870)] = 143474, + [SMALL_STATE(3871)] = 143557, + [SMALL_STATE(3872)] = 143640, + [SMALL_STATE(3873)] = 143713, + [SMALL_STATE(3874)] = 143796, + [SMALL_STATE(3875)] = 143879, + [SMALL_STATE(3876)] = 143962, + [SMALL_STATE(3877)] = 144035, + [SMALL_STATE(3878)] = 144118, + [SMALL_STATE(3879)] = 144159, + [SMALL_STATE(3880)] = 144202, + [SMALL_STATE(3881)] = 144243, + [SMALL_STATE(3882)] = 144294, + [SMALL_STATE(3883)] = 144347, + [SMALL_STATE(3884)] = 144430, + [SMALL_STATE(3885)] = 144487, + [SMALL_STATE(3886)] = 144570, + [SMALL_STATE(3887)] = 144653, + [SMALL_STATE(3888)] = 144736, + [SMALL_STATE(3889)] = 144819, + [SMALL_STATE(3890)] = 144902, + [SMALL_STATE(3891)] = 144985, + [SMALL_STATE(3892)] = 145026, + [SMALL_STATE(3893)] = 145109, + [SMALL_STATE(3894)] = 145170, + [SMALL_STATE(3895)] = 145211, + [SMALL_STATE(3896)] = 145270, + [SMALL_STATE(3897)] = 145311, + [SMALL_STATE(3898)] = 145352, + [SMALL_STATE(3899)] = 145435, + [SMALL_STATE(3900)] = 145482, + [SMALL_STATE(3901)] = 145545, + [SMALL_STATE(3902)] = 145628, + [SMALL_STATE(3903)] = 145669, + [SMALL_STATE(3904)] = 145742, + [SMALL_STATE(3905)] = 145807, + [SMALL_STATE(3906)] = 145852, + [SMALL_STATE(3907)] = 145893, + [SMALL_STATE(3908)] = 145934, + [SMALL_STATE(3909)] = 146007, + [SMALL_STATE(3910)] = 146090, + [SMALL_STATE(3911)] = 146131, + [SMALL_STATE(3912)] = 146198, + [SMALL_STATE(3913)] = 146281, + [SMALL_STATE(3914)] = 146336, + [SMALL_STATE(3915)] = 146419, + [SMALL_STATE(3916)] = 146479, + [SMALL_STATE(3917)] = 146521, + [SMALL_STATE(3918)] = 146571, + [SMALL_STATE(3919)] = 146629, + [SMALL_STATE(3920)] = 146671, + [SMALL_STATE(3921)] = 146727, + [SMALL_STATE(3922)] = 146773, + [SMALL_STATE(3923)] = 146831, + [SMALL_STATE(3924)] = 146877, + [SMALL_STATE(3925)] = 146941, + [SMALL_STATE(3926)] = 146981, + [SMALL_STATE(3927)] = 147041, + [SMALL_STATE(3928)] = 147083, + [SMALL_STATE(3929)] = 147145, + [SMALL_STATE(3930)] = 147209, + [SMALL_STATE(3931)] = 147251, + [SMALL_STATE(3932)] = 147293, + [SMALL_STATE(3933)] = 147337, + [SMALL_STATE(3934)] = 147399, + [SMALL_STATE(3935)] = 147465, + [SMALL_STATE(3936)] = 147515, + [SMALL_STATE(3937)] = 147567, + [SMALL_STATE(3938)] = 147609, + [SMALL_STATE(3939)] = 147677, + [SMALL_STATE(3940)] = 147743, + [SMALL_STATE(3941)] = 147797, + [SMALL_STATE(3942)] = 147839, + [SMALL_STATE(3943)] = 147883, + [SMALL_STATE(3944)] = 147951, + [SMALL_STATE(3945)] = 148003, + [SMALL_STATE(3946)] = 148045, + [SMALL_STATE(3947)] = 148099, + [SMALL_STATE(3948)] = 148141, + [SMALL_STATE(3949)] = 148197, + [SMALL_STATE(3950)] = 148239, + [SMALL_STATE(3951)] = 148281, + [SMALL_STATE(3952)] = 148325, + [SMALL_STATE(3953)] = 148369, + [SMALL_STATE(3954)] = 148446, + [SMALL_STATE(3955)] = 148485, + [SMALL_STATE(3956)] = 148562, + [SMALL_STATE(3957)] = 148639, + [SMALL_STATE(3958)] = 148716, + [SMALL_STATE(3959)] = 148793, + [SMALL_STATE(3960)] = 148870, + [SMALL_STATE(3961)] = 148947, + [SMALL_STATE(3962)] = 149014, + [SMALL_STATE(3963)] = 149053, + [SMALL_STATE(3964)] = 149130, + [SMALL_STATE(3965)] = 149207, + [SMALL_STATE(3966)] = 149284, + [SMALL_STATE(3967)] = 149361, + [SMALL_STATE(3968)] = 149438, + [SMALL_STATE(3969)] = 149483, + [SMALL_STATE(3970)] = 149550, + [SMALL_STATE(3971)] = 149589, + [SMALL_STATE(3972)] = 149628, + [SMALL_STATE(3973)] = 149667, + [SMALL_STATE(3974)] = 149706, + [SMALL_STATE(3975)] = 149773, + [SMALL_STATE(3976)] = 149840, + [SMALL_STATE(3977)] = 149907, + [SMALL_STATE(3978)] = 149974, + [SMALL_STATE(3979)] = 150041, + [SMALL_STATE(3980)] = 150085, + [SMALL_STATE(3981)] = 150139, + [SMALL_STATE(3982)] = 150190, + [SMALL_STATE(3983)] = 150243, + [SMALL_STATE(3984)] = 150294, + [SMALL_STATE(3985)] = 150344, + [SMALL_STATE(3986)] = 150394, + [SMALL_STATE(3987)] = 150450, + [SMALL_STATE(3988)] = 150490, + [SMALL_STATE(3989)] = 150530, + [SMALL_STATE(3990)] = 150569, + [SMALL_STATE(3991)] = 150606, + [SMALL_STATE(3992)] = 150645, + [SMALL_STATE(3993)] = 150700, + [SMALL_STATE(3994)] = 150737, + [SMALL_STATE(3995)] = 150790, + [SMALL_STATE(3996)] = 150837, + [SMALL_STATE(3997)] = 150890, + [SMALL_STATE(3998)] = 150943, + [SMALL_STATE(3999)] = 150977, + [SMALL_STATE(4000)] = 151015, + [SMALL_STATE(4001)] = 151053, + [SMALL_STATE(4002)] = 151105, + [SMALL_STATE(4003)] = 151143, + [SMALL_STATE(4004)] = 151179, + [SMALL_STATE(4005)] = 151215, + [SMALL_STATE(4006)] = 151249, + [SMALL_STATE(4007)] = 151283, + [SMALL_STATE(4008)] = 151335, + [SMALL_STATE(4009)] = 151369, + [SMALL_STATE(4010)] = 151407, + [SMALL_STATE(4011)] = 151453, + [SMALL_STATE(4012)] = 151505, + [SMALL_STATE(4013)] = 151555, + [SMALL_STATE(4014)] = 151605, + [SMALL_STATE(4015)] = 151655, + [SMALL_STATE(4016)] = 151705, + [SMALL_STATE(4017)] = 151747, + [SMALL_STATE(4018)] = 151789, + [SMALL_STATE(4019)] = 151836, + [SMALL_STATE(4020)] = 151873, + [SMALL_STATE(4021)] = 151908, + [SMALL_STATE(4022)] = 151945, + [SMALL_STATE(4023)] = 151980, + [SMALL_STATE(4024)] = 152013, + [SMALL_STATE(4025)] = 152048, + [SMALL_STATE(4026)] = 152097, + [SMALL_STATE(4027)] = 152132, + [SMALL_STATE(4028)] = 152181, + [SMALL_STATE(4029)] = 152230, + [SMALL_STATE(4030)] = 152279, + [SMALL_STATE(4031)] = 152316, + [SMALL_STATE(4032)] = 152349, + [SMALL_STATE(4033)] = 152384, + [SMALL_STATE(4034)] = 152417, + [SMALL_STATE(4035)] = 152454, + [SMALL_STATE(4036)] = 152507, + [SMALL_STATE(4037)] = 152548, + [SMALL_STATE(4038)] = 152589, + [SMALL_STATE(4039)] = 152622, + [SMALL_STATE(4040)] = 152654, + [SMALL_STATE(4041)] = 152704, + [SMALL_STATE(4042)] = 152736, + [SMALL_STATE(4043)] = 152776, + [SMALL_STATE(4044)] = 152812, + [SMALL_STATE(4045)] = 152844, + [SMALL_STATE(4046)] = 152884, + [SMALL_STATE(4047)] = 152916, + [SMALL_STATE(4048)] = 152948, + [SMALL_STATE(4049)] = 152982, + [SMALL_STATE(4050)] = 153014, + [SMALL_STATE(4051)] = 153046, + [SMALL_STATE(4052)] = 153092, + [SMALL_STATE(4053)] = 153124, + [SMALL_STATE(4054)] = 153160, + [SMALL_STATE(4055)] = 153196, + [SMALL_STATE(4056)] = 153232, + [SMALL_STATE(4057)] = 153264, + [SMALL_STATE(4058)] = 153304, + [SMALL_STATE(4059)] = 153338, + [SMALL_STATE(4060)] = 153376, + [SMALL_STATE(4061)] = 153414, + [SMALL_STATE(4062)] = 153448, + [SMALL_STATE(4063)] = 153498, + [SMALL_STATE(4064)] = 153532, + [SMALL_STATE(4065)] = 153582, + [SMALL_STATE(4066)] = 153613, + [SMALL_STATE(4067)] = 153660, + [SMALL_STATE(4068)] = 153699, + [SMALL_STATE(4069)] = 153732, + [SMALL_STATE(4070)] = 153767, + [SMALL_STATE(4071)] = 153802, + [SMALL_STATE(4072)] = 153833, + [SMALL_STATE(4073)] = 153866, + [SMALL_STATE(4074)] = 153899, + [SMALL_STATE(4075)] = 153930, + [SMALL_STATE(4076)] = 153969, + [SMALL_STATE(4077)] = 154010, + [SMALL_STATE(4078)] = 154047, + [SMALL_STATE(4079)] = 154084, + [SMALL_STATE(4080)] = 154115, + [SMALL_STATE(4081)] = 154154, + [SMALL_STATE(4082)] = 154185, + [SMALL_STATE(4083)] = 154218, + [SMALL_STATE(4084)] = 154253, + [SMALL_STATE(4085)] = 154284, + [SMALL_STATE(4086)] = 154319, + [SMALL_STATE(4087)] = 154350, + [SMALL_STATE(4088)] = 154385, + [SMALL_STATE(4089)] = 154432, + [SMALL_STATE(4090)] = 154463, + [SMALL_STATE(4091)] = 154500, + [SMALL_STATE(4092)] = 154545, + [SMALL_STATE(4093)] = 154592, + [SMALL_STATE(4094)] = 154639, + [SMALL_STATE(4095)] = 154677, + [SMALL_STATE(4096)] = 154707, + [SMALL_STATE(4097)] = 154757, + [SMALL_STATE(4098)] = 154793, + [SMALL_STATE(4099)] = 154827, + [SMALL_STATE(4100)] = 154857, + [SMALL_STATE(4101)] = 154895, + [SMALL_STATE(4102)] = 154925, + [SMALL_STATE(4103)] = 154957, + [SMALL_STATE(4104)] = 154989, + [SMALL_STATE(4105)] = 155021, + [SMALL_STATE(4106)] = 155053, + [SMALL_STATE(4107)] = 155083, + [SMALL_STATE(4108)] = 155115, + [SMALL_STATE(4109)] = 155145, + [SMALL_STATE(4110)] = 155177, + [SMALL_STATE(4111)] = 155209, + [SMALL_STATE(4112)] = 155243, + [SMALL_STATE(4113)] = 155273, + [SMALL_STATE(4114)] = 155313, + [SMALL_STATE(4115)] = 155345, + [SMALL_STATE(4116)] = 155379, + [SMALL_STATE(4117)] = 155417, + [SMALL_STATE(4118)] = 155447, + [SMALL_STATE(4119)] = 155485, + [SMALL_STATE(4120)] = 155515, + [SMALL_STATE(4121)] = 155545, + [SMALL_STATE(4122)] = 155575, + [SMALL_STATE(4123)] = 155609, + [SMALL_STATE(4124)] = 155639, + [SMALL_STATE(4125)] = 155673, + [SMALL_STATE(4126)] = 155705, + [SMALL_STATE(4127)] = 155735, + [SMALL_STATE(4128)] = 155773, + [SMALL_STATE(4129)] = 155806, + [SMALL_STATE(4130)] = 155835, + [SMALL_STATE(4131)] = 155866, + [SMALL_STATE(4132)] = 155899, + [SMALL_STATE(4133)] = 155930, + [SMALL_STATE(4134)] = 155963, + [SMALL_STATE(4135)] = 155994, + [SMALL_STATE(4136)] = 156029, + [SMALL_STATE(4137)] = 156060, + [SMALL_STATE(4138)] = 156097, + [SMALL_STATE(4139)] = 156128, + [SMALL_STATE(4140)] = 156157, + [SMALL_STATE(4141)] = 156194, + [SMALL_STATE(4142)] = 156227, + [SMALL_STATE(4143)] = 156260, + [SMALL_STATE(4144)] = 156297, + [SMALL_STATE(4145)] = 156334, + [SMALL_STATE(4146)] = 156365, + [SMALL_STATE(4147)] = 156394, + [SMALL_STATE(4148)] = 156423, + [SMALL_STATE(4149)] = 156452, + [SMALL_STATE(4150)] = 156481, + [SMALL_STATE(4151)] = 156510, + [SMALL_STATE(4152)] = 156539, + [SMALL_STATE(4153)] = 156576, + [SMALL_STATE(4154)] = 156613, + [SMALL_STATE(4155)] = 156650, + [SMALL_STATE(4156)] = 156687, + [SMALL_STATE(4157)] = 156718, + [SMALL_STATE(4158)] = 156755, + [SMALL_STATE(4159)] = 156784, + [SMALL_STATE(4160)] = 156813, + [SMALL_STATE(4161)] = 156846, + [SMALL_STATE(4162)] = 156877, + [SMALL_STATE(4163)] = 156906, + [SMALL_STATE(4164)] = 156935, + [SMALL_STATE(4165)] = 156964, + [SMALL_STATE(4166)] = 156993, + [SMALL_STATE(4167)] = 157030, + [SMALL_STATE(4168)] = 157059, + [SMALL_STATE(4169)] = 157090, + [SMALL_STATE(4170)] = 157127, + [SMALL_STATE(4171)] = 157158, + [SMALL_STATE(4172)] = 157189, + [SMALL_STATE(4173)] = 157226, + [SMALL_STATE(4174)] = 157257, + [SMALL_STATE(4175)] = 157294, + [SMALL_STATE(4176)] = 157331, + [SMALL_STATE(4177)] = 157362, + [SMALL_STATE(4178)] = 157399, + [SMALL_STATE(4179)] = 157436, + [SMALL_STATE(4180)] = 157473, + [SMALL_STATE(4181)] = 157510, + [SMALL_STATE(4182)] = 157547, + [SMALL_STATE(4183)] = 157584, + [SMALL_STATE(4184)] = 157621, + [SMALL_STATE(4185)] = 157658, + [SMALL_STATE(4186)] = 157695, + [SMALL_STATE(4187)] = 157732, + [SMALL_STATE(4188)] = 157769, + [SMALL_STATE(4189)] = 157806, + [SMALL_STATE(4190)] = 157843, + [SMALL_STATE(4191)] = 157880, + [SMALL_STATE(4192)] = 157917, + [SMALL_STATE(4193)] = 157954, + [SMALL_STATE(4194)] = 157983, + [SMALL_STATE(4195)] = 158014, + [SMALL_STATE(4196)] = 158043, + [SMALL_STATE(4197)] = 158080, + [SMALL_STATE(4198)] = 158109, + [SMALL_STATE(4199)] = 158146, + [SMALL_STATE(4200)] = 158177, + [SMALL_STATE(4201)] = 158208, + [SMALL_STATE(4202)] = 158237, + [SMALL_STATE(4203)] = 158266, + [SMALL_STATE(4204)] = 158295, + [SMALL_STATE(4205)] = 158324, + [SMALL_STATE(4206)] = 158353, + [SMALL_STATE(4207)] = 158384, + [SMALL_STATE(4208)] = 158417, + [SMALL_STATE(4209)] = 158453, + [SMALL_STATE(4210)] = 158485, + [SMALL_STATE(4211)] = 158533, + [SMALL_STATE(4212)] = 158561, + [SMALL_STATE(4213)] = 158605, + [SMALL_STATE(4214)] = 158635, + [SMALL_STATE(4215)] = 158663, + [SMALL_STATE(4216)] = 158693, + [SMALL_STATE(4217)] = 158729, + [SMALL_STATE(4218)] = 158765, + [SMALL_STATE(4219)] = 158795, + [SMALL_STATE(4220)] = 158827, + [SMALL_STATE(4221)] = 158857, + [SMALL_STATE(4222)] = 158905, + [SMALL_STATE(4223)] = 158933, + [SMALL_STATE(4224)] = 158963, + [SMALL_STATE(4225)] = 158991, + [SMALL_STATE(4226)] = 159021, + [SMALL_STATE(4227)] = 159049, + [SMALL_STATE(4228)] = 159079, + [SMALL_STATE(4229)] = 159109, + [SMALL_STATE(4230)] = 159137, + [SMALL_STATE(4231)] = 159165, + [SMALL_STATE(4232)] = 159197, + [SMALL_STATE(4233)] = 159227, + [SMALL_STATE(4234)] = 159263, + [SMALL_STATE(4235)] = 159291, + [SMALL_STATE(4236)] = 159335, + [SMALL_STATE(4237)] = 159363, + [SMALL_STATE(4238)] = 159399, + [SMALL_STATE(4239)] = 159427, + [SMALL_STATE(4240)] = 159455, + [SMALL_STATE(4241)] = 159483, + [SMALL_STATE(4242)] = 159511, + [SMALL_STATE(4243)] = 159547, + [SMALL_STATE(4244)] = 159575, + [SMALL_STATE(4245)] = 159611, + [SMALL_STATE(4246)] = 159643, + [SMALL_STATE(4247)] = 159679, + [SMALL_STATE(4248)] = 159707, + [SMALL_STATE(4249)] = 159737, + [SMALL_STATE(4250)] = 159767, + [SMALL_STATE(4251)] = 159797, + [SMALL_STATE(4252)] = 159833, + [SMALL_STATE(4253)] = 159865, + [SMALL_STATE(4254)] = 159897, + [SMALL_STATE(4255)] = 159929, + [SMALL_STATE(4256)] = 159957, + [SMALL_STATE(4257)] = 159993, + [SMALL_STATE(4258)] = 160025, + [SMALL_STATE(4259)] = 160057, + [SMALL_STATE(4260)] = 160093, + [SMALL_STATE(4261)] = 160129, + [SMALL_STATE(4262)] = 160177, + [SMALL_STATE(4263)] = 160213, + [SMALL_STATE(4264)] = 160249, + [SMALL_STATE(4265)] = 160285, + [SMALL_STATE(4266)] = 160313, + [SMALL_STATE(4267)] = 160349, + [SMALL_STATE(4268)] = 160385, + [SMALL_STATE(4269)] = 160421, + [SMALL_STATE(4270)] = 160457, + [SMALL_STATE(4271)] = 160485, + [SMALL_STATE(4272)] = 160521, + [SMALL_STATE(4273)] = 160557, + [SMALL_STATE(4274)] = 160585, + [SMALL_STATE(4275)] = 160621, + [SMALL_STATE(4276)] = 160657, + [SMALL_STATE(4277)] = 160693, + [SMALL_STATE(4278)] = 160721, + [SMALL_STATE(4279)] = 160757, + [SMALL_STATE(4280)] = 160793, + [SMALL_STATE(4281)] = 160829, + [SMALL_STATE(4282)] = 160865, + [SMALL_STATE(4283)] = 160901, + [SMALL_STATE(4284)] = 160929, + [SMALL_STATE(4285)] = 160957, + [SMALL_STATE(4286)] = 160995, + [SMALL_STATE(4287)] = 161031, + [SMALL_STATE(4288)] = 161065, + [SMALL_STATE(4289)] = 161097, + [SMALL_STATE(4290)] = 161133, + [SMALL_STATE(4291)] = 161181, + [SMALL_STATE(4292)] = 161213, + [SMALL_STATE(4293)] = 161245, + [SMALL_STATE(4294)] = 161281, + [SMALL_STATE(4295)] = 161319, + [SMALL_STATE(4296)] = 161363, + [SMALL_STATE(4297)] = 161407, + [SMALL_STATE(4298)] = 161451, + [SMALL_STATE(4299)] = 161483, + [SMALL_STATE(4300)] = 161518, + [SMALL_STATE(4301)] = 161553, + [SMALL_STATE(4302)] = 161586, + [SMALL_STATE(4303)] = 161619, + [SMALL_STATE(4304)] = 161650, + [SMALL_STATE(4305)] = 161677, + [SMALL_STATE(4306)] = 161704, + [SMALL_STATE(4307)] = 161731, + [SMALL_STATE(4308)] = 161758, + [SMALL_STATE(4309)] = 161793, + [SMALL_STATE(4310)] = 161820, + [SMALL_STATE(4311)] = 161855, + [SMALL_STATE(4312)] = 161886, + [SMALL_STATE(4313)] = 161913, + [SMALL_STATE(4314)] = 161942, + [SMALL_STATE(4315)] = 161973, + [SMALL_STATE(4316)] = 162004, + [SMALL_STATE(4317)] = 162033, + [SMALL_STATE(4318)] = 162064, + [SMALL_STATE(4319)] = 162095, + [SMALL_STATE(4320)] = 162122, + [SMALL_STATE(4321)] = 162149, + [SMALL_STATE(4322)] = 162180, + [SMALL_STATE(4323)] = 162211, + [SMALL_STATE(4324)] = 162238, + [SMALL_STATE(4325)] = 162265, + [SMALL_STATE(4326)] = 162294, + [SMALL_STATE(4327)] = 162323, + [SMALL_STATE(4328)] = 162354, + [SMALL_STATE(4329)] = 162385, + [SMALL_STATE(4330)] = 162416, + [SMALL_STATE(4331)] = 162447, + [SMALL_STATE(4332)] = 162478, + [SMALL_STATE(4333)] = 162511, + [SMALL_STATE(4334)] = 162544, + [SMALL_STATE(4335)] = 162575, + [SMALL_STATE(4336)] = 162606, + [SMALL_STATE(4337)] = 162633, + [SMALL_STATE(4338)] = 162660, + [SMALL_STATE(4339)] = 162691, + [SMALL_STATE(4340)] = 162722, + [SMALL_STATE(4341)] = 162755, + [SMALL_STATE(4342)] = 162788, + [SMALL_STATE(4343)] = 162815, + [SMALL_STATE(4344)] = 162842, + [SMALL_STATE(4345)] = 162869, + [SMALL_STATE(4346)] = 162896, + [SMALL_STATE(4347)] = 162925, + [SMALL_STATE(4348)] = 162954, + [SMALL_STATE(4349)] = 162985, + [SMALL_STATE(4350)] = 163016, + [SMALL_STATE(4351)] = 163047, + [SMALL_STATE(4352)] = 163078, + [SMALL_STATE(4353)] = 163111, + [SMALL_STATE(4354)] = 163144, + [SMALL_STATE(4355)] = 163171, + [SMALL_STATE(4356)] = 163198, + [SMALL_STATE(4357)] = 163229, + [SMALL_STATE(4358)] = 163260, + [SMALL_STATE(4359)] = 163291, + [SMALL_STATE(4360)] = 163324, + [SMALL_STATE(4361)] = 163357, + [SMALL_STATE(4362)] = 163392, + [SMALL_STATE(4363)] = 163423, + [SMALL_STATE(4364)] = 163454, + [SMALL_STATE(4365)] = 163489, + [SMALL_STATE(4366)] = 163520, + [SMALL_STATE(4367)] = 163555, + [SMALL_STATE(4368)] = 163582, + [SMALL_STATE(4369)] = 163617, + [SMALL_STATE(4370)] = 163652, + [SMALL_STATE(4371)] = 163687, + [SMALL_STATE(4372)] = 163722, + [SMALL_STATE(4373)] = 163757, + [SMALL_STATE(4374)] = 163792, + [SMALL_STATE(4375)] = 163827, + [SMALL_STATE(4376)] = 163862, + [SMALL_STATE(4377)] = 163895, + [SMALL_STATE(4378)] = 163928, + [SMALL_STATE(4379)] = 163963, + [SMALL_STATE(4380)] = 163998, + [SMALL_STATE(4381)] = 164029, + [SMALL_STATE(4382)] = 164064, + [SMALL_STATE(4383)] = 164099, + [SMALL_STATE(4384)] = 164134, + [SMALL_STATE(4385)] = 164169, + [SMALL_STATE(4386)] = 164196, + [SMALL_STATE(4387)] = 164223, + [SMALL_STATE(4388)] = 164258, + [SMALL_STATE(4389)] = 164293, + [SMALL_STATE(4390)] = 164328, + [SMALL_STATE(4391)] = 164363, + [SMALL_STATE(4392)] = 164390, + [SMALL_STATE(4393)] = 164425, + [SMALL_STATE(4394)] = 164460, + [SMALL_STATE(4395)] = 164491, + [SMALL_STATE(4396)] = 164522, + [SMALL_STATE(4397)] = 164553, + [SMALL_STATE(4398)] = 164578, + [SMALL_STATE(4399)] = 164603, + [SMALL_STATE(4400)] = 164628, + [SMALL_STATE(4401)] = 164655, + [SMALL_STATE(4402)] = 164686, + [SMALL_STATE(4403)] = 164717, + [SMALL_STATE(4404)] = 164742, + [SMALL_STATE(4405)] = 164767, + [SMALL_STATE(4406)] = 164794, + [SMALL_STATE(4407)] = 164821, + [SMALL_STATE(4408)] = 164850, + [SMALL_STATE(4409)] = 164879, + [SMALL_STATE(4410)] = 164910, + [SMALL_STATE(4411)] = 164945, + [SMALL_STATE(4412)] = 164972, + [SMALL_STATE(4413)] = 164997, + [SMALL_STATE(4414)] = 165022, + [SMALL_STATE(4415)] = 165047, + [SMALL_STATE(4416)] = 165074, + [SMALL_STATE(4417)] = 165101, + [SMALL_STATE(4418)] = 165128, + [SMALL_STATE(4419)] = 165155, + [SMALL_STATE(4420)] = 165182, + [SMALL_STATE(4421)] = 165209, + [SMALL_STATE(4422)] = 165238, + [SMALL_STATE(4423)] = 165267, + [SMALL_STATE(4424)] = 165298, + [SMALL_STATE(4425)] = 165329, + [SMALL_STATE(4426)] = 165360, + [SMALL_STATE(4427)] = 165391, + [SMALL_STATE(4428)] = 165424, + [SMALL_STATE(4429)] = 165457, + [SMALL_STATE(4430)] = 165484, + [SMALL_STATE(4431)] = 165511, + [SMALL_STATE(4432)] = 165540, + [SMALL_STATE(4433)] = 165569, + [SMALL_STATE(4434)] = 165598, + [SMALL_STATE(4435)] = 165629, + [SMALL_STATE(4436)] = 165660, + [SMALL_STATE(4437)] = 165689, + [SMALL_STATE(4438)] = 165716, + [SMALL_STATE(4439)] = 165743, + [SMALL_STATE(4440)] = 165770, + [SMALL_STATE(4441)] = 165797, + [SMALL_STATE(4442)] = 165826, + [SMALL_STATE(4443)] = 165855, + [SMALL_STATE(4444)] = 165886, + [SMALL_STATE(4445)] = 165917, + [SMALL_STATE(4446)] = 165948, + [SMALL_STATE(4447)] = 165979, + [SMALL_STATE(4448)] = 166012, + [SMALL_STATE(4449)] = 166045, + [SMALL_STATE(4450)] = 166070, + [SMALL_STATE(4451)] = 166095, + [SMALL_STATE(4452)] = 166122, + [SMALL_STATE(4453)] = 166149, + [SMALL_STATE(4454)] = 166178, + [SMALL_STATE(4455)] = 166205, + [SMALL_STATE(4456)] = 166234, + [SMALL_STATE(4457)] = 166261, + [SMALL_STATE(4458)] = 166288, + [SMALL_STATE(4459)] = 166315, + [SMALL_STATE(4460)] = 166346, + [SMALL_STATE(4461)] = 166377, + [SMALL_STATE(4462)] = 166410, + [SMALL_STATE(4463)] = 166443, + [SMALL_STATE(4464)] = 166470, + [SMALL_STATE(4465)] = 166501, + [SMALL_STATE(4466)] = 166528, + [SMALL_STATE(4467)] = 166559, + [SMALL_STATE(4468)] = 166586, + [SMALL_STATE(4469)] = 166617, + [SMALL_STATE(4470)] = 166648, + [SMALL_STATE(4471)] = 166675, + [SMALL_STATE(4472)] = 166702, + [SMALL_STATE(4473)] = 166729, + [SMALL_STATE(4474)] = 166756, + [SMALL_STATE(4475)] = 166783, + [SMALL_STATE(4476)] = 166810, + [SMALL_STATE(4477)] = 166839, + [SMALL_STATE(4478)] = 166868, + [SMALL_STATE(4479)] = 166901, + [SMALL_STATE(4480)] = 166932, + [SMALL_STATE(4481)] = 166959, + [SMALL_STATE(4482)] = 166990, + [SMALL_STATE(4483)] = 167017, + [SMALL_STATE(4484)] = 167048, + [SMALL_STATE(4485)] = 167075, + [SMALL_STATE(4486)] = 167104, + [SMALL_STATE(4487)] = 167133, + [SMALL_STATE(4488)] = 167164, + [SMALL_STATE(4489)] = 167195, + [SMALL_STATE(4490)] = 167226, + [SMALL_STATE(4491)] = 167257, + [SMALL_STATE(4492)] = 167286, + [SMALL_STATE(4493)] = 167313, + [SMALL_STATE(4494)] = 167340, + [SMALL_STATE(4495)] = 167373, + [SMALL_STATE(4496)] = 167402, + [SMALL_STATE(4497)] = 167435, + [SMALL_STATE(4498)] = 167470, + [SMALL_STATE(4499)] = 167507, + [SMALL_STATE(4500)] = 167542, + [SMALL_STATE(4501)] = 167573, + [SMALL_STATE(4502)] = 167604, + [SMALL_STATE(4503)] = 167629, + [SMALL_STATE(4504)] = 167660, + [SMALL_STATE(4505)] = 167691, + [SMALL_STATE(4506)] = 167715, + [SMALL_STATE(4507)] = 167745, + [SMALL_STATE(4508)] = 167775, + [SMALL_STATE(4509)] = 167799, + [SMALL_STATE(4510)] = 167823, + [SMALL_STATE(4511)] = 167849, + [SMALL_STATE(4512)] = 167873, + [SMALL_STATE(4513)] = 167897, + [SMALL_STATE(4514)] = 167927, + [SMALL_STATE(4515)] = 167953, + [SMALL_STATE(4516)] = 167985, + [SMALL_STATE(4517)] = 168013, + [SMALL_STATE(4518)] = 168039, + [SMALL_STATE(4519)] = 168069, + [SMALL_STATE(4520)] = 168099, + [SMALL_STATE(4521)] = 168123, + [SMALL_STATE(4522)] = 168175, + [SMALL_STATE(4523)] = 168227, + [SMALL_STATE(4524)] = 168253, + [SMALL_STATE(4525)] = 168277, + [SMALL_STATE(4526)] = 168303, + [SMALL_STATE(4527)] = 168329, + [SMALL_STATE(4528)] = 168357, + [SMALL_STATE(4529)] = 168383, + [SMALL_STATE(4530)] = 168413, + [SMALL_STATE(4531)] = 168443, + [SMALL_STATE(4532)] = 168471, + [SMALL_STATE(4533)] = 168523, + [SMALL_STATE(4534)] = 168575, + [SMALL_STATE(4535)] = 168601, + [SMALL_STATE(4536)] = 168633, + [SMALL_STATE(4537)] = 168661, + [SMALL_STATE(4538)] = 168687, + [SMALL_STATE(4539)] = 168711, + [SMALL_STATE(4540)] = 168735, + [SMALL_STATE(4541)] = 168761, + [SMALL_STATE(4542)] = 168787, + [SMALL_STATE(4543)] = 168817, + [SMALL_STATE(4544)] = 168841, + [SMALL_STATE(4545)] = 168893, + [SMALL_STATE(4546)] = 168923, + [SMALL_STATE(4547)] = 168949, + [SMALL_STATE(4548)] = 168975, + [SMALL_STATE(4549)] = 169001, + [SMALL_STATE(4550)] = 169025, + [SMALL_STATE(4551)] = 169051, + [SMALL_STATE(4552)] = 169081, + [SMALL_STATE(4553)] = 169111, + [SMALL_STATE(4554)] = 169139, + [SMALL_STATE(4555)] = 169169, + [SMALL_STATE(4556)] = 169221, + [SMALL_STATE(4557)] = 169251, + [SMALL_STATE(4558)] = 169279, + [SMALL_STATE(4559)] = 169309, + [SMALL_STATE(4560)] = 169361, + [SMALL_STATE(4561)] = 169391, + [SMALL_STATE(4562)] = 169421, + [SMALL_STATE(4563)] = 169451, + [SMALL_STATE(4564)] = 169479, + [SMALL_STATE(4565)] = 169507, + [SMALL_STATE(4566)] = 169537, + [SMALL_STATE(4567)] = 169567, + [SMALL_STATE(4568)] = 169597, + [SMALL_STATE(4569)] = 169627, + [SMALL_STATE(4570)] = 169679, + [SMALL_STATE(4571)] = 169731, + [SMALL_STATE(4572)] = 169783, + [SMALL_STATE(4573)] = 169809, + [SMALL_STATE(4574)] = 169837, + [SMALL_STATE(4575)] = 169867, + [SMALL_STATE(4576)] = 169893, + [SMALL_STATE(4577)] = 169923, + [SMALL_STATE(4578)] = 169953, + [SMALL_STATE(4579)] = 169983, + [SMALL_STATE(4580)] = 170013, + [SMALL_STATE(4581)] = 170037, + [SMALL_STATE(4582)] = 170067, + [SMALL_STATE(4583)] = 170093, + [SMALL_STATE(4584)] = 170119, + [SMALL_STATE(4585)] = 170147, + [SMALL_STATE(4586)] = 170177, + [SMALL_STATE(4587)] = 170205, + [SMALL_STATE(4588)] = 170235, + [SMALL_STATE(4589)] = 170261, + [SMALL_STATE(4590)] = 170291, + [SMALL_STATE(4591)] = 170317, + [SMALL_STATE(4592)] = 170347, + [SMALL_STATE(4593)] = 170375, + [SMALL_STATE(4594)] = 170405, + [SMALL_STATE(4595)] = 170437, + [SMALL_STATE(4596)] = 170463, + [SMALL_STATE(4597)] = 170491, + [SMALL_STATE(4598)] = 170519, + [SMALL_STATE(4599)] = 170545, + [SMALL_STATE(4600)] = 170573, + [SMALL_STATE(4601)] = 170601, + [SMALL_STATE(4602)] = 170625, + [SMALL_STATE(4603)] = 170651, + [SMALL_STATE(4604)] = 170679, + [SMALL_STATE(4605)] = 170725, + [SMALL_STATE(4606)] = 170753, + [SMALL_STATE(4607)] = 170783, + [SMALL_STATE(4608)] = 170808, + [SMALL_STATE(4609)] = 170833, + [SMALL_STATE(4610)] = 170858, + [SMALL_STATE(4611)] = 170887, + [SMALL_STATE(4612)] = 170912, + [SMALL_STATE(4613)] = 170937, + [SMALL_STATE(4614)] = 170962, + [SMALL_STATE(4615)] = 170991, + [SMALL_STATE(4616)] = 171016, + [SMALL_STATE(4617)] = 171041, + [SMALL_STATE(4618)] = 171066, + [SMALL_STATE(4619)] = 171089, + [SMALL_STATE(4620)] = 171134, + [SMALL_STATE(4621)] = 171163, + [SMALL_STATE(4622)] = 171188, + [SMALL_STATE(4623)] = 171213, + [SMALL_STATE(4624)] = 171238, + [SMALL_STATE(4625)] = 171263, + [SMALL_STATE(4626)] = 171288, + [SMALL_STATE(4627)] = 171313, + [SMALL_STATE(4628)] = 171338, + [SMALL_STATE(4629)] = 171363, + [SMALL_STATE(4630)] = 171388, + [SMALL_STATE(4631)] = 171413, + [SMALL_STATE(4632)] = 171438, + [SMALL_STATE(4633)] = 171463, + [SMALL_STATE(4634)] = 171490, + [SMALL_STATE(4635)] = 171515, + [SMALL_STATE(4636)] = 171544, + [SMALL_STATE(4637)] = 171573, + [SMALL_STATE(4638)] = 171602, + [SMALL_STATE(4639)] = 171629, + [SMALL_STATE(4640)] = 171654, + [SMALL_STATE(4641)] = 171683, + [SMALL_STATE(4642)] = 171708, + [SMALL_STATE(4643)] = 171733, + [SMALL_STATE(4644)] = 171762, + [SMALL_STATE(4645)] = 171793, + [SMALL_STATE(4646)] = 171818, + [SMALL_STATE(4647)] = 171843, + [SMALL_STATE(4648)] = 171872, + [SMALL_STATE(4649)] = 171901, + [SMALL_STATE(4650)] = 171930, + [SMALL_STATE(4651)] = 171955, + [SMALL_STATE(4652)] = 171986, + [SMALL_STATE(4653)] = 172015, + [SMALL_STATE(4654)] = 172044, + [SMALL_STATE(4655)] = 172069, + [SMALL_STATE(4656)] = 172098, + [SMALL_STATE(4657)] = 172123, + [SMALL_STATE(4658)] = 172148, + [SMALL_STATE(4659)] = 172173, + [SMALL_STATE(4660)] = 172198, + [SMALL_STATE(4661)] = 172223, + [SMALL_STATE(4662)] = 172248, + [SMALL_STATE(4663)] = 172273, + [SMALL_STATE(4664)] = 172298, + [SMALL_STATE(4665)] = 172327, + [SMALL_STATE(4666)] = 172356, + [SMALL_STATE(4667)] = 172385, + [SMALL_STATE(4668)] = 172414, + [SMALL_STATE(4669)] = 172439, + [SMALL_STATE(4670)] = 172464, + [SMALL_STATE(4671)] = 172489, + [SMALL_STATE(4672)] = 172518, + [SMALL_STATE(4673)] = 172543, + [SMALL_STATE(4674)] = 172568, + [SMALL_STATE(4675)] = 172595, + [SMALL_STATE(4676)] = 172624, + [SMALL_STATE(4677)] = 172649, + [SMALL_STATE(4678)] = 172678, + [SMALL_STATE(4679)] = 172703, + [SMALL_STATE(4680)] = 172728, + [SMALL_STATE(4681)] = 172757, + [SMALL_STATE(4682)] = 172786, + [SMALL_STATE(4683)] = 172811, + [SMALL_STATE(4684)] = 172840, + [SMALL_STATE(4685)] = 172865, + [SMALL_STATE(4686)] = 172890, + [SMALL_STATE(4687)] = 172921, + [SMALL_STATE(4688)] = 172952, + [SMALL_STATE(4689)] = 172977, + [SMALL_STATE(4690)] = 173002, + [SMALL_STATE(4691)] = 173029, + [SMALL_STATE(4692)] = 173058, + [SMALL_STATE(4693)] = 173083, + [SMALL_STATE(4694)] = 173108, + [SMALL_STATE(4695)] = 173133, + [SMALL_STATE(4696)] = 173158, + [SMALL_STATE(4697)] = 173185, + [SMALL_STATE(4698)] = 173214, + [SMALL_STATE(4699)] = 173241, + [SMALL_STATE(4700)] = 173266, + [SMALL_STATE(4701)] = 173295, + [SMALL_STATE(4702)] = 173320, + [SMALL_STATE(4703)] = 173345, + [SMALL_STATE(4704)] = 173374, + [SMALL_STATE(4705)] = 173403, + [SMALL_STATE(4706)] = 173430, + [SMALL_STATE(4707)] = 173455, + [SMALL_STATE(4708)] = 173478, + [SMALL_STATE(4709)] = 173503, + [SMALL_STATE(4710)] = 173528, + [SMALL_STATE(4711)] = 173557, + [SMALL_STATE(4712)] = 173586, + [SMALL_STATE(4713)] = 173611, + [SMALL_STATE(4714)] = 173636, + [SMALL_STATE(4715)] = 173661, + [SMALL_STATE(4716)] = 173686, + [SMALL_STATE(4717)] = 173711, + [SMALL_STATE(4718)] = 173736, + [SMALL_STATE(4719)] = 173759, + [SMALL_STATE(4720)] = 173786, + [SMALL_STATE(4721)] = 173811, + [SMALL_STATE(4722)] = 173836, + [SMALL_STATE(4723)] = 173861, + [SMALL_STATE(4724)] = 173890, + [SMALL_STATE(4725)] = 173915, + [SMALL_STATE(4726)] = 173944, + [SMALL_STATE(4727)] = 173969, + [SMALL_STATE(4728)] = 173998, + [SMALL_STATE(4729)] = 174027, + [SMALL_STATE(4730)] = 174050, + [SMALL_STATE(4731)] = 174075, + [SMALL_STATE(4732)] = 174100, + [SMALL_STATE(4733)] = 174125, + [SMALL_STATE(4734)] = 174150, + [SMALL_STATE(4735)] = 174175, + [SMALL_STATE(4736)] = 174204, + [SMALL_STATE(4737)] = 174229, + [SMALL_STATE(4738)] = 174254, + [SMALL_STATE(4739)] = 174283, + [SMALL_STATE(4740)] = 174308, + [SMALL_STATE(4741)] = 174337, + [SMALL_STATE(4742)] = 174362, + [SMALL_STATE(4743)] = 174389, + [SMALL_STATE(4744)] = 174418, + [SMALL_STATE(4745)] = 174443, + [SMALL_STATE(4746)] = 174472, + [SMALL_STATE(4747)] = 174495, + [SMALL_STATE(4748)] = 174520, + [SMALL_STATE(4749)] = 174549, + [SMALL_STATE(4750)] = 174572, + [SMALL_STATE(4751)] = 174597, + [SMALL_STATE(4752)] = 174622, + [SMALL_STATE(4753)] = 174651, + [SMALL_STATE(4754)] = 174680, + [SMALL_STATE(4755)] = 174705, + [SMALL_STATE(4756)] = 174732, + [SMALL_STATE(4757)] = 174755, + [SMALL_STATE(4758)] = 174796, + [SMALL_STATE(4759)] = 174825, + [SMALL_STATE(4760)] = 174854, + [SMALL_STATE(4761)] = 174879, + [SMALL_STATE(4762)] = 174908, + [SMALL_STATE(4763)] = 174933, + [SMALL_STATE(4764)] = 174960, + [SMALL_STATE(4765)] = 174985, + [SMALL_STATE(4766)] = 175010, + [SMALL_STATE(4767)] = 175035, + [SMALL_STATE(4768)] = 175060, + [SMALL_STATE(4769)] = 175085, + [SMALL_STATE(4770)] = 175110, + [SMALL_STATE(4771)] = 175139, + [SMALL_STATE(4772)] = 175164, + [SMALL_STATE(4773)] = 175189, + [SMALL_STATE(4774)] = 175214, + [SMALL_STATE(4775)] = 175239, + [SMALL_STATE(4776)] = 175284, + [SMALL_STATE(4777)] = 175311, + [SMALL_STATE(4778)] = 175336, + [SMALL_STATE(4779)] = 175365, + [SMALL_STATE(4780)] = 175390, + [SMALL_STATE(4781)] = 175419, + [SMALL_STATE(4782)] = 175446, + [SMALL_STATE(4783)] = 175470, + [SMALL_STATE(4784)] = 175492, + [SMALL_STATE(4785)] = 175532, + [SMALL_STATE(4786)] = 175556, + [SMALL_STATE(4787)] = 175580, + [SMALL_STATE(4788)] = 175604, + [SMALL_STATE(4789)] = 175628, + [SMALL_STATE(4790)] = 175652, + [SMALL_STATE(4791)] = 175678, + [SMALL_STATE(4792)] = 175702, + [SMALL_STATE(4793)] = 175726, + [SMALL_STATE(4794)] = 175750, + [SMALL_STATE(4795)] = 175772, + [SMALL_STATE(4796)] = 175796, + [SMALL_STATE(4797)] = 175820, + [SMALL_STATE(4798)] = 175842, + [SMALL_STATE(4799)] = 175866, + [SMALL_STATE(4800)] = 175890, + [SMALL_STATE(4801)] = 175914, + [SMALL_STATE(4802)] = 175938, + [SMALL_STATE(4803)] = 175984, + [SMALL_STATE(4804)] = 176030, + [SMALL_STATE(4805)] = 176054, + [SMALL_STATE(4806)] = 176076, + [SMALL_STATE(4807)] = 176122, + [SMALL_STATE(4808)] = 176146, + [SMALL_STATE(4809)] = 176170, + [SMALL_STATE(4810)] = 176194, + [SMALL_STATE(4811)] = 176220, + [SMALL_STATE(4812)] = 176246, + [SMALL_STATE(4813)] = 176272, + [SMALL_STATE(4814)] = 176296, + [SMALL_STATE(4815)] = 176320, + [SMALL_STATE(4816)] = 176346, + [SMALL_STATE(4817)] = 176370, + [SMALL_STATE(4818)] = 176394, + [SMALL_STATE(4819)] = 176418, + [SMALL_STATE(4820)] = 176460, + [SMALL_STATE(4821)] = 176484, + [SMALL_STATE(4822)] = 176530, + [SMALL_STATE(4823)] = 176554, + [SMALL_STATE(4824)] = 176600, + [SMALL_STATE(4825)] = 176644, + [SMALL_STATE(4826)] = 176668, + [SMALL_STATE(4827)] = 176692, + [SMALL_STATE(4828)] = 176716, + [SMALL_STATE(4829)] = 176740, + [SMALL_STATE(4830)] = 176764, + [SMALL_STATE(4831)] = 176788, + [SMALL_STATE(4832)] = 176812, + [SMALL_STATE(4833)] = 176836, + [SMALL_STATE(4834)] = 176860, + [SMALL_STATE(4835)] = 176884, + [SMALL_STATE(4836)] = 176908, + [SMALL_STATE(4837)] = 176932, + [SMALL_STATE(4838)] = 176956, + [SMALL_STATE(4839)] = 176980, + [SMALL_STATE(4840)] = 177004, + [SMALL_STATE(4841)] = 177028, + [SMALL_STATE(4842)] = 177052, + [SMALL_STATE(4843)] = 177076, + [SMALL_STATE(4844)] = 177100, + [SMALL_STATE(4845)] = 177124, + [SMALL_STATE(4846)] = 177148, + [SMALL_STATE(4847)] = 177172, + [SMALL_STATE(4848)] = 177196, + [SMALL_STATE(4849)] = 177220, + [SMALL_STATE(4850)] = 177244, + [SMALL_STATE(4851)] = 177268, + [SMALL_STATE(4852)] = 177292, + [SMALL_STATE(4853)] = 177316, + [SMALL_STATE(4854)] = 177340, + [SMALL_STATE(4855)] = 177364, + [SMALL_STATE(4856)] = 177388, + [SMALL_STATE(4857)] = 177412, + [SMALL_STATE(4858)] = 177436, + [SMALL_STATE(4859)] = 177460, + [SMALL_STATE(4860)] = 177484, + [SMALL_STATE(4861)] = 177508, + [SMALL_STATE(4862)] = 177532, + [SMALL_STATE(4863)] = 177556, + [SMALL_STATE(4864)] = 177580, + [SMALL_STATE(4865)] = 177604, + [SMALL_STATE(4866)] = 177626, + [SMALL_STATE(4867)] = 177650, + [SMALL_STATE(4868)] = 177674, + [SMALL_STATE(4869)] = 177698, + [SMALL_STATE(4870)] = 177722, + [SMALL_STATE(4871)] = 177746, + [SMALL_STATE(4872)] = 177770, + [SMALL_STATE(4873)] = 177794, + [SMALL_STATE(4874)] = 177816, + [SMALL_STATE(4875)] = 177840, + [SMALL_STATE(4876)] = 177864, + [SMALL_STATE(4877)] = 177888, + [SMALL_STATE(4878)] = 177934, + [SMALL_STATE(4879)] = 177980, + [SMALL_STATE(4880)] = 178004, + [SMALL_STATE(4881)] = 178028, + [SMALL_STATE(4882)] = 178052, + [SMALL_STATE(4883)] = 178076, + [SMALL_STATE(4884)] = 178100, + [SMALL_STATE(4885)] = 178146, + [SMALL_STATE(4886)] = 178192, + [SMALL_STATE(4887)] = 178216, + [SMALL_STATE(4888)] = 178240, + [SMALL_STATE(4889)] = 178264, + [SMALL_STATE(4890)] = 178288, + [SMALL_STATE(4891)] = 178312, + [SMALL_STATE(4892)] = 178336, + [SMALL_STATE(4893)] = 178360, + [SMALL_STATE(4894)] = 178384, + [SMALL_STATE(4895)] = 178408, + [SMALL_STATE(4896)] = 178430, + [SMALL_STATE(4897)] = 178452, + [SMALL_STATE(4898)] = 178474, + [SMALL_STATE(4899)] = 178512, + [SMALL_STATE(4900)] = 178536, + [SMALL_STATE(4901)] = 178558, + [SMALL_STATE(4902)] = 178582, + [SMALL_STATE(4903)] = 178606, + [SMALL_STATE(4904)] = 178630, + [SMALL_STATE(4905)] = 178654, + [SMALL_STATE(4906)] = 178678, + [SMALL_STATE(4907)] = 178702, + [SMALL_STATE(4908)] = 178726, + [SMALL_STATE(4909)] = 178750, + [SMALL_STATE(4910)] = 178794, + [SMALL_STATE(4911)] = 178818, + [SMALL_STATE(4912)] = 178840, + [SMALL_STATE(4913)] = 178864, + [SMALL_STATE(4914)] = 178888, + [SMALL_STATE(4915)] = 178912, + [SMALL_STATE(4916)] = 178954, + [SMALL_STATE(4917)] = 178976, + [SMALL_STATE(4918)] = 179000, + [SMALL_STATE(4919)] = 179024, + [SMALL_STATE(4920)] = 179048, + [SMALL_STATE(4921)] = 179086, + [SMALL_STATE(4922)] = 179110, + [SMALL_STATE(4923)] = 179134, + [SMALL_STATE(4924)] = 179158, + [SMALL_STATE(4925)] = 179182, + [SMALL_STATE(4926)] = 179206, + [SMALL_STATE(4927)] = 179230, + [SMALL_STATE(4928)] = 179264, + [SMALL_STATE(4929)] = 179288, + [SMALL_STATE(4930)] = 179312, + [SMALL_STATE(4931)] = 179336, + [SMALL_STATE(4932)] = 179360, + [SMALL_STATE(4933)] = 179384, + [SMALL_STATE(4934)] = 179408, + [SMALL_STATE(4935)] = 179432, + [SMALL_STATE(4936)] = 179456, + [SMALL_STATE(4937)] = 179480, + [SMALL_STATE(4938)] = 179504, + [SMALL_STATE(4939)] = 179528, + [SMALL_STATE(4940)] = 179552, + [SMALL_STATE(4941)] = 179576, + [SMALL_STATE(4942)] = 179600, + [SMALL_STATE(4943)] = 179624, + [SMALL_STATE(4944)] = 179648, + [SMALL_STATE(4945)] = 179672, + [SMALL_STATE(4946)] = 179696, + [SMALL_STATE(4947)] = 179720, + [SMALL_STATE(4948)] = 179744, + [SMALL_STATE(4949)] = 179768, + [SMALL_STATE(4950)] = 179792, + [SMALL_STATE(4951)] = 179816, + [SMALL_STATE(4952)] = 179840, + [SMALL_STATE(4953)] = 179864, + [SMALL_STATE(4954)] = 179888, + [SMALL_STATE(4955)] = 179910, + [SMALL_STATE(4956)] = 179932, + [SMALL_STATE(4957)] = 179954, + [SMALL_STATE(4958)] = 179980, + [SMALL_STATE(4959)] = 180006, + [SMALL_STATE(4960)] = 180048, + [SMALL_STATE(4961)] = 180072, + [SMALL_STATE(4962)] = 180096, + [SMALL_STATE(4963)] = 180118, + [SMALL_STATE(4964)] = 180140, + [SMALL_STATE(4965)] = 180162, + [SMALL_STATE(4966)] = 180184, + [SMALL_STATE(4967)] = 180206, + [SMALL_STATE(4968)] = 180228, + [SMALL_STATE(4969)] = 180268, + [SMALL_STATE(4970)] = 180292, + [SMALL_STATE(4971)] = 180332, + [SMALL_STATE(4972)] = 180356, + [SMALL_STATE(4973)] = 180380, + [SMALL_STATE(4974)] = 180408, + [SMALL_STATE(4975)] = 180436, + [SMALL_STATE(4976)] = 180464, + [SMALL_STATE(4977)] = 180492, + [SMALL_STATE(4978)] = 180520, + [SMALL_STATE(4979)] = 180548, + [SMALL_STATE(4980)] = 180576, + [SMALL_STATE(4981)] = 180604, + [SMALL_STATE(4982)] = 180632, + [SMALL_STATE(4983)] = 180660, + [SMALL_STATE(4984)] = 180688, + [SMALL_STATE(4985)] = 180716, + [SMALL_STATE(4986)] = 180754, + [SMALL_STATE(4987)] = 180778, + [SMALL_STATE(4988)] = 180800, + [SMALL_STATE(4989)] = 180822, + [SMALL_STATE(4990)] = 180868, + [SMALL_STATE(4991)] = 180890, + [SMALL_STATE(4992)] = 180912, + [SMALL_STATE(4993)] = 180938, + [SMALL_STATE(4994)] = 180961, + [SMALL_STATE(4995)] = 180988, + [SMALL_STATE(4996)] = 181027, + [SMALL_STATE(4997)] = 181048, + [SMALL_STATE(4998)] = 181069, + [SMALL_STATE(4999)] = 181108, + [SMALL_STATE(5000)] = 181149, + [SMALL_STATE(5001)] = 181188, + [SMALL_STATE(5002)] = 181209, + [SMALL_STATE(5003)] = 181236, + [SMALL_STATE(5004)] = 181257, + [SMALL_STATE(5005)] = 181278, + [SMALL_STATE(5006)] = 181299, + [SMALL_STATE(5007)] = 181340, + [SMALL_STATE(5008)] = 181361, + [SMALL_STATE(5009)] = 181382, + [SMALL_STATE(5010)] = 181403, + [SMALL_STATE(5011)] = 181424, + [SMALL_STATE(5012)] = 181463, + [SMALL_STATE(5013)] = 181484, + [SMALL_STATE(5014)] = 181511, + [SMALL_STATE(5015)] = 181532, + [SMALL_STATE(5016)] = 181555, + [SMALL_STATE(5017)] = 181582, + [SMALL_STATE(5018)] = 181605, + [SMALL_STATE(5019)] = 181626, + [SMALL_STATE(5020)] = 181647, + [SMALL_STATE(5021)] = 181670, + [SMALL_STATE(5022)] = 181707, + [SMALL_STATE(5023)] = 181728, + [SMALL_STATE(5024)] = 181769, + [SMALL_STATE(5025)] = 181806, + [SMALL_STATE(5026)] = 181829, + [SMALL_STATE(5027)] = 181856, + [SMALL_STATE(5028)] = 181895, + [SMALL_STATE(5029)] = 181918, + [SMALL_STATE(5030)] = 181941, + [SMALL_STATE(5031)] = 181980, + [SMALL_STATE(5032)] = 182003, + [SMALL_STATE(5033)] = 182042, + [SMALL_STATE(5034)] = 182081, + [SMALL_STATE(5035)] = 182102, + [SMALL_STATE(5036)] = 182129, + [SMALL_STATE(5037)] = 182152, + [SMALL_STATE(5038)] = 182173, + [SMALL_STATE(5039)] = 182214, + [SMALL_STATE(5040)] = 182235, + [SMALL_STATE(5041)] = 182276, + [SMALL_STATE(5042)] = 182299, + [SMALL_STATE(5043)] = 182320, + [SMALL_STATE(5044)] = 182341, + [SMALL_STATE(5045)] = 182362, + [SMALL_STATE(5046)] = 182383, + [SMALL_STATE(5047)] = 182404, + [SMALL_STATE(5048)] = 182427, + [SMALL_STATE(5049)] = 182448, + [SMALL_STATE(5050)] = 182469, + [SMALL_STATE(5051)] = 182490, + [SMALL_STATE(5052)] = 182531, + [SMALL_STATE(5053)] = 182552, + [SMALL_STATE(5054)] = 182573, + [SMALL_STATE(5055)] = 182596, + [SMALL_STATE(5056)] = 182623, + [SMALL_STATE(5057)] = 182644, + [SMALL_STATE(5058)] = 182665, + [SMALL_STATE(5059)] = 182688, + [SMALL_STATE(5060)] = 182711, + [SMALL_STATE(5061)] = 182734, + [SMALL_STATE(5062)] = 182757, + [SMALL_STATE(5063)] = 182780, + [SMALL_STATE(5064)] = 182803, + [SMALL_STATE(5065)] = 182824, + [SMALL_STATE(5066)] = 182845, + [SMALL_STATE(5067)] = 182868, + [SMALL_STATE(5068)] = 182891, + [SMALL_STATE(5069)] = 182914, + [SMALL_STATE(5070)] = 182937, + [SMALL_STATE(5071)] = 182960, + [SMALL_STATE(5072)] = 182983, + [SMALL_STATE(5073)] = 183006, + [SMALL_STATE(5074)] = 183029, + [SMALL_STATE(5075)] = 183052, + [SMALL_STATE(5076)] = 183073, + [SMALL_STATE(5077)] = 183094, + [SMALL_STATE(5078)] = 183115, + [SMALL_STATE(5079)] = 183136, + [SMALL_STATE(5080)] = 183157, + [SMALL_STATE(5081)] = 183178, + [SMALL_STATE(5082)] = 183199, + [SMALL_STATE(5083)] = 183220, + [SMALL_STATE(5084)] = 183241, + [SMALL_STATE(5085)] = 183262, + [SMALL_STATE(5086)] = 183289, + [SMALL_STATE(5087)] = 183310, + [SMALL_STATE(5088)] = 183331, + [SMALL_STATE(5089)] = 183352, + [SMALL_STATE(5090)] = 183373, + [SMALL_STATE(5091)] = 183394, + [SMALL_STATE(5092)] = 183415, + [SMALL_STATE(5093)] = 183436, + [SMALL_STATE(5094)] = 183457, + [SMALL_STATE(5095)] = 183478, + [SMALL_STATE(5096)] = 183499, + [SMALL_STATE(5097)] = 183538, + [SMALL_STATE(5098)] = 183559, + [SMALL_STATE(5099)] = 183582, + [SMALL_STATE(5100)] = 183605, + [SMALL_STATE(5101)] = 183628, + [SMALL_STATE(5102)] = 183649, + [SMALL_STATE(5103)] = 183672, + [SMALL_STATE(5104)] = 183693, + [SMALL_STATE(5105)] = 183714, + [SMALL_STATE(5106)] = 183755, + [SMALL_STATE(5107)] = 183776, + [SMALL_STATE(5108)] = 183803, + [SMALL_STATE(5109)] = 183824, + [SMALL_STATE(5110)] = 183851, + [SMALL_STATE(5111)] = 183878, + [SMALL_STATE(5112)] = 183905, + [SMALL_STATE(5113)] = 183932, + [SMALL_STATE(5114)] = 183959, + [SMALL_STATE(5115)] = 183986, + [SMALL_STATE(5116)] = 184013, + [SMALL_STATE(5117)] = 184040, + [SMALL_STATE(5118)] = 184067, + [SMALL_STATE(5119)] = 184094, + [SMALL_STATE(5120)] = 184121, + [SMALL_STATE(5121)] = 184148, + [SMALL_STATE(5122)] = 184171, + [SMALL_STATE(5123)] = 184208, + [SMALL_STATE(5124)] = 184245, + [SMALL_STATE(5125)] = 184282, + [SMALL_STATE(5126)] = 184319, + [SMALL_STATE(5127)] = 184356, + [SMALL_STATE(5128)] = 184393, + [SMALL_STATE(5129)] = 184414, + [SMALL_STATE(5130)] = 184437, + [SMALL_STATE(5131)] = 184458, + [SMALL_STATE(5132)] = 184479, + [SMALL_STATE(5133)] = 184502, + [SMALL_STATE(5134)] = 184523, + [SMALL_STATE(5135)] = 184564, + [SMALL_STATE(5136)] = 184597, + [SMALL_STATE(5137)] = 184618, + [SMALL_STATE(5138)] = 184659, + [SMALL_STATE(5139)] = 184680, + [SMALL_STATE(5140)] = 184703, + [SMALL_STATE(5141)] = 184724, + [SMALL_STATE(5142)] = 184745, + [SMALL_STATE(5143)] = 184780, + [SMALL_STATE(5144)] = 184815, + [SMALL_STATE(5145)] = 184850, + [SMALL_STATE(5146)] = 184885, + [SMALL_STATE(5147)] = 184912, + [SMALL_STATE(5148)] = 184935, + [SMALL_STATE(5149)] = 184958, + [SMALL_STATE(5150)] = 184981, + [SMALL_STATE(5151)] = 185004, + [SMALL_STATE(5152)] = 185045, + [SMALL_STATE(5153)] = 185066, + [SMALL_STATE(5154)] = 185089, + [SMALL_STATE(5155)] = 185112, + [SMALL_STATE(5156)] = 185133, + [SMALL_STATE(5157)] = 185154, + [SMALL_STATE(5158)] = 185191, + [SMALL_STATE(5159)] = 185228, + [SMALL_STATE(5160)] = 185255, + [SMALL_STATE(5161)] = 185276, + [SMALL_STATE(5162)] = 185297, + [SMALL_STATE(5163)] = 185320, + [SMALL_STATE(5164)] = 185343, + [SMALL_STATE(5165)] = 185364, + [SMALL_STATE(5166)] = 185385, + [SMALL_STATE(5167)] = 185406, + [SMALL_STATE(5168)] = 185432, + [SMALL_STATE(5169)] = 185466, + [SMALL_STATE(5170)] = 185502, + [SMALL_STATE(5171)] = 185532, + [SMALL_STATE(5172)] = 185562, + [SMALL_STATE(5173)] = 185586, + [SMALL_STATE(5174)] = 185620, + [SMALL_STATE(5175)] = 185650, + [SMALL_STATE(5176)] = 185680, + [SMALL_STATE(5177)] = 185710, + [SMALL_STATE(5178)] = 185740, + [SMALL_STATE(5179)] = 185770, + [SMALL_STATE(5180)] = 185794, + [SMALL_STATE(5181)] = 185822, + [SMALL_STATE(5182)] = 185848, + [SMALL_STATE(5183)] = 185882, + [SMALL_STATE(5184)] = 185912, + [SMALL_STATE(5185)] = 185942, + [SMALL_STATE(5186)] = 185978, + [SMALL_STATE(5187)] = 186002, + [SMALL_STATE(5188)] = 186034, + [SMALL_STATE(5189)] = 186060, + [SMALL_STATE(5190)] = 186092, + [SMALL_STATE(5191)] = 186124, + [SMALL_STATE(5192)] = 186156, + [SMALL_STATE(5193)] = 186186, + [SMALL_STATE(5194)] = 186216, + [SMALL_STATE(5195)] = 186242, + [SMALL_STATE(5196)] = 186268, + [SMALL_STATE(5197)] = 186296, + [SMALL_STATE(5198)] = 186326, + [SMALL_STATE(5199)] = 186356, + [SMALL_STATE(5200)] = 186386, + [SMALL_STATE(5201)] = 186416, + [SMALL_STATE(5202)] = 186448, + [SMALL_STATE(5203)] = 186478, + [SMALL_STATE(5204)] = 186510, + [SMALL_STATE(5205)] = 186532, + [SMALL_STATE(5206)] = 186556, + [SMALL_STATE(5207)] = 186580, + [SMALL_STATE(5208)] = 186612, + [SMALL_STATE(5209)] = 186642, + [SMALL_STATE(5210)] = 186680, + [SMALL_STATE(5211)] = 186716, + [SMALL_STATE(5212)] = 186752, + [SMALL_STATE(5213)] = 186786, + [SMALL_STATE(5214)] = 186816, + [SMALL_STATE(5215)] = 186842, + [SMALL_STATE(5216)] = 186874, + [SMALL_STATE(5217)] = 186904, + [SMALL_STATE(5218)] = 186938, + [SMALL_STATE(5219)] = 186964, + [SMALL_STATE(5220)] = 186994, + [SMALL_STATE(5221)] = 187018, + [SMALL_STATE(5222)] = 187042, + [SMALL_STATE(5223)] = 187072, + [SMALL_STATE(5224)] = 187110, + [SMALL_STATE(5225)] = 187136, + [SMALL_STATE(5226)] = 187170, + [SMALL_STATE(5227)] = 187196, + [SMALL_STATE(5228)] = 187222, + [SMALL_STATE(5229)] = 187248, + [SMALL_STATE(5230)] = 187286, + [SMALL_STATE(5231)] = 187316, + [SMALL_STATE(5232)] = 187346, + [SMALL_STATE(5233)] = 187384, + [SMALL_STATE(5234)] = 187410, + [SMALL_STATE(5235)] = 187440, + [SMALL_STATE(5236)] = 187472, + [SMALL_STATE(5237)] = 187498, + [SMALL_STATE(5238)] = 187522, + [SMALL_STATE(5239)] = 187558, + [SMALL_STATE(5240)] = 187593, + [SMALL_STATE(5241)] = 187628, + [SMALL_STATE(5242)] = 187653, + [SMALL_STATE(5243)] = 187684, + [SMALL_STATE(5244)] = 187719, + [SMALL_STATE(5245)] = 187744, + [SMALL_STATE(5246)] = 187769, + [SMALL_STATE(5247)] = 187798, + [SMALL_STATE(5248)] = 187823, + [SMALL_STATE(5249)] = 187844, + [SMALL_STATE(5250)] = 187865, + [SMALL_STATE(5251)] = 187888, + [SMALL_STATE(5252)] = 187911, + [SMALL_STATE(5253)] = 187936, + [SMALL_STATE(5254)] = 187969, + [SMALL_STATE(5255)] = 187990, + [SMALL_STATE(5256)] = 188019, + [SMALL_STATE(5257)] = 188040, + [SMALL_STATE(5258)] = 188075, + [SMALL_STATE(5259)] = 188110, + [SMALL_STATE(5260)] = 188145, + [SMALL_STATE(5261)] = 188180, + [SMALL_STATE(5262)] = 188215, + [SMALL_STATE(5263)] = 188246, + [SMALL_STATE(5264)] = 188281, + [SMALL_STATE(5265)] = 188316, + [SMALL_STATE(5266)] = 188347, + [SMALL_STATE(5267)] = 188374, + [SMALL_STATE(5268)] = 188405, + [SMALL_STATE(5269)] = 188440, + [SMALL_STATE(5270)] = 188475, + [SMALL_STATE(5271)] = 188508, + [SMALL_STATE(5272)] = 188531, + [SMALL_STATE(5273)] = 188566, + [SMALL_STATE(5274)] = 188595, + [SMALL_STATE(5275)] = 188628, + [SMALL_STATE(5276)] = 188663, + [SMALL_STATE(5277)] = 188692, + [SMALL_STATE(5278)] = 188727, + [SMALL_STATE(5279)] = 188762, + [SMALL_STATE(5280)] = 188797, + [SMALL_STATE(5281)] = 188828, + [SMALL_STATE(5282)] = 188857, + [SMALL_STATE(5283)] = 188892, + [SMALL_STATE(5284)] = 188927, + [SMALL_STATE(5285)] = 188956, + [SMALL_STATE(5286)] = 188985, + [SMALL_STATE(5287)] = 189016, + [SMALL_STATE(5288)] = 189051, + [SMALL_STATE(5289)] = 189086, + [SMALL_STATE(5290)] = 189121, + [SMALL_STATE(5291)] = 189154, + [SMALL_STATE(5292)] = 189187, + [SMALL_STATE(5293)] = 189216, + [SMALL_STATE(5294)] = 189245, + [SMALL_STATE(5295)] = 189274, + [SMALL_STATE(5296)] = 189303, + [SMALL_STATE(5297)] = 189332, + [SMALL_STATE(5298)] = 189361, + [SMALL_STATE(5299)] = 189390, + [SMALL_STATE(5300)] = 189413, + [SMALL_STATE(5301)] = 189448, + [SMALL_STATE(5302)] = 189481, + [SMALL_STATE(5303)] = 189510, + [SMALL_STATE(5304)] = 189545, + [SMALL_STATE(5305)] = 189580, + [SMALL_STATE(5306)] = 189615, + [SMALL_STATE(5307)] = 189650, + [SMALL_STATE(5308)] = 189679, + [SMALL_STATE(5309)] = 189708, + [SMALL_STATE(5310)] = 189737, + [SMALL_STATE(5311)] = 189766, + [SMALL_STATE(5312)] = 189795, + [SMALL_STATE(5313)] = 189824, + [SMALL_STATE(5314)] = 189853, + [SMALL_STATE(5315)] = 189882, + [SMALL_STATE(5316)] = 189911, + [SMALL_STATE(5317)] = 189932, + [SMALL_STATE(5318)] = 189967, + [SMALL_STATE(5319)] = 190002, + [SMALL_STATE(5320)] = 190023, + [SMALL_STATE(5321)] = 190048, + [SMALL_STATE(5322)] = 190075, + [SMALL_STATE(5323)] = 190096, + [SMALL_STATE(5324)] = 190125, + [SMALL_STATE(5325)] = 190160, + [SMALL_STATE(5326)] = 190189, + [SMALL_STATE(5327)] = 190214, + [SMALL_STATE(5328)] = 190235, + [SMALL_STATE(5329)] = 190270, + [SMALL_STATE(5330)] = 190305, + [SMALL_STATE(5331)] = 190340, + [SMALL_STATE(5332)] = 190375, + [SMALL_STATE(5333)] = 190408, + [SMALL_STATE(5334)] = 190431, + [SMALL_STATE(5335)] = 190452, + [SMALL_STATE(5336)] = 190473, + [SMALL_STATE(5337)] = 190498, + [SMALL_STATE(5338)] = 190533, + [SMALL_STATE(5339)] = 190568, + [SMALL_STATE(5340)] = 190589, + [SMALL_STATE(5341)] = 190612, + [SMALL_STATE(5342)] = 190645, + [SMALL_STATE(5343)] = 190678, + [SMALL_STATE(5344)] = 190713, + [SMALL_STATE(5345)] = 190736, + [SMALL_STATE(5346)] = 190769, + [SMALL_STATE(5347)] = 190800, + [SMALL_STATE(5348)] = 190825, + [SMALL_STATE(5349)] = 190846, + [SMALL_STATE(5350)] = 190881, + [SMALL_STATE(5351)] = 190904, + [SMALL_STATE(5352)] = 190939, + [SMALL_STATE(5353)] = 190962, + [SMALL_STATE(5354)] = 190991, + [SMALL_STATE(5355)] = 191012, + [SMALL_STATE(5356)] = 191040, + [SMALL_STATE(5357)] = 191064, + [SMALL_STATE(5358)] = 191084, + [SMALL_STATE(5359)] = 191104, + [SMALL_STATE(5360)] = 191124, + [SMALL_STATE(5361)] = 191144, + [SMALL_STATE(5362)] = 191172, + [SMALL_STATE(5363)] = 191202, + [SMALL_STATE(5364)] = 191226, + [SMALL_STATE(5365)] = 191246, + [SMALL_STATE(5366)] = 191274, + [SMALL_STATE(5367)] = 191298, + [SMALL_STATE(5368)] = 191322, + [SMALL_STATE(5369)] = 191346, + [SMALL_STATE(5370)] = 191374, + [SMALL_STATE(5371)] = 191398, + [SMALL_STATE(5372)] = 191422, + [SMALL_STATE(5373)] = 191452, + [SMALL_STATE(5374)] = 191476, + [SMALL_STATE(5375)] = 191500, + [SMALL_STATE(5376)] = 191528, + [SMALL_STATE(5377)] = 191558, + [SMALL_STATE(5378)] = 191582, + [SMALL_STATE(5379)] = 191608, + [SMALL_STATE(5380)] = 191636, + [SMALL_STATE(5381)] = 191664, + [SMALL_STATE(5382)] = 191692, + [SMALL_STATE(5383)] = 191720, + [SMALL_STATE(5384)] = 191750, + [SMALL_STATE(5385)] = 191774, + [SMALL_STATE(5386)] = 191802, + [SMALL_STATE(5387)] = 191830, + [SMALL_STATE(5388)] = 191860, + [SMALL_STATE(5389)] = 191890, + [SMALL_STATE(5390)] = 191918, + [SMALL_STATE(5391)] = 191946, + [SMALL_STATE(5392)] = 191974, + [SMALL_STATE(5393)] = 192002, + [SMALL_STATE(5394)] = 192030, + [SMALL_STATE(5395)] = 192058, + [SMALL_STATE(5396)] = 192088, + [SMALL_STATE(5397)] = 192118, + [SMALL_STATE(5398)] = 192146, + [SMALL_STATE(5399)] = 192174, + [SMALL_STATE(5400)] = 192202, + [SMALL_STATE(5401)] = 192230, + [SMALL_STATE(5402)] = 192258, + [SMALL_STATE(5403)] = 192288, + [SMALL_STATE(5404)] = 192318, + [SMALL_STATE(5405)] = 192348, + [SMALL_STATE(5406)] = 192378, + [SMALL_STATE(5407)] = 192410, + [SMALL_STATE(5408)] = 192430, + [SMALL_STATE(5409)] = 192460, + [SMALL_STATE(5410)] = 192490, + [SMALL_STATE(5411)] = 192516, + [SMALL_STATE(5412)] = 192546, + [SMALL_STATE(5413)] = 192576, + [SMALL_STATE(5414)] = 192598, + [SMALL_STATE(5415)] = 192628, + [SMALL_STATE(5416)] = 192658, + [SMALL_STATE(5417)] = 192682, + [SMALL_STATE(5418)] = 192712, + [SMALL_STATE(5419)] = 192742, + [SMALL_STATE(5420)] = 192762, + [SMALL_STATE(5421)] = 192792, + [SMALL_STATE(5422)] = 192822, + [SMALL_STATE(5423)] = 192852, + [SMALL_STATE(5424)] = 192882, + [SMALL_STATE(5425)] = 192902, + [SMALL_STATE(5426)] = 192922, + [SMALL_STATE(5427)] = 192948, + [SMALL_STATE(5428)] = 192980, + [SMALL_STATE(5429)] = 193010, + [SMALL_STATE(5430)] = 193034, + [SMALL_STATE(5431)] = 193054, + [SMALL_STATE(5432)] = 193084, + [SMALL_STATE(5433)] = 193114, + [SMALL_STATE(5434)] = 193136, + [SMALL_STATE(5435)] = 193166, + [SMALL_STATE(5436)] = 193196, + [SMALL_STATE(5437)] = 193226, + [SMALL_STATE(5438)] = 193256, + [SMALL_STATE(5439)] = 193286, + [SMALL_STATE(5440)] = 193306, + [SMALL_STATE(5441)] = 193328, + [SMALL_STATE(5442)] = 193358, + [SMALL_STATE(5443)] = 193380, + [SMALL_STATE(5444)] = 193402, + [SMALL_STATE(5445)] = 193432, + [SMALL_STATE(5446)] = 193458, + [SMALL_STATE(5447)] = 193480, + [SMALL_STATE(5448)] = 193502, + [SMALL_STATE(5449)] = 193524, + [SMALL_STATE(5450)] = 193554, + [SMALL_STATE(5451)] = 193584, + [SMALL_STATE(5452)] = 193614, + [SMALL_STATE(5453)] = 193644, + [SMALL_STATE(5454)] = 193664, + [SMALL_STATE(5455)] = 193694, + [SMALL_STATE(5456)] = 193718, + [SMALL_STATE(5457)] = 193748, + [SMALL_STATE(5458)] = 193778, + [SMALL_STATE(5459)] = 193808, + [SMALL_STATE(5460)] = 193838, + [SMALL_STATE(5461)] = 193858, + [SMALL_STATE(5462)] = 193888, + [SMALL_STATE(5463)] = 193912, + [SMALL_STATE(5464)] = 193932, + [SMALL_STATE(5465)] = 193962, + [SMALL_STATE(5466)] = 193992, + [SMALL_STATE(5467)] = 194012, + [SMALL_STATE(5468)] = 194042, + [SMALL_STATE(5469)] = 194062, + [SMALL_STATE(5470)] = 194092, + [SMALL_STATE(5471)] = 194112, + [SMALL_STATE(5472)] = 194132, + [SMALL_STATE(5473)] = 194160, + [SMALL_STATE(5474)] = 194190, + [SMALL_STATE(5475)] = 194212, + [SMALL_STATE(5476)] = 194232, + [SMALL_STATE(5477)] = 194252, + [SMALL_STATE(5478)] = 194278, + [SMALL_STATE(5479)] = 194300, + [SMALL_STATE(5480)] = 194330, + [SMALL_STATE(5481)] = 194350, + [SMALL_STATE(5482)] = 194370, + [SMALL_STATE(5483)] = 194394, + [SMALL_STATE(5484)] = 194414, + [SMALL_STATE(5485)] = 194434, + [SMALL_STATE(5486)] = 194464, + [SMALL_STATE(5487)] = 194493, + [SMALL_STATE(5488)] = 194510, + [SMALL_STATE(5489)] = 194537, + [SMALL_STATE(5490)] = 194556, + [SMALL_STATE(5491)] = 194575, + [SMALL_STATE(5492)] = 194596, + [SMALL_STATE(5493)] = 194623, + [SMALL_STATE(5494)] = 194640, + [SMALL_STATE(5495)] = 194661, + [SMALL_STATE(5496)] = 194688, + [SMALL_STATE(5497)] = 194715, + [SMALL_STATE(5498)] = 194734, + [SMALL_STATE(5499)] = 194753, + [SMALL_STATE(5500)] = 194780, + [SMALL_STATE(5501)] = 194805, + [SMALL_STATE(5502)] = 194832, + [SMALL_STATE(5503)] = 194851, + [SMALL_STATE(5504)] = 194878, + [SMALL_STATE(5505)] = 194897, + [SMALL_STATE(5506)] = 194924, + [SMALL_STATE(5507)] = 194951, + [SMALL_STATE(5508)] = 194978, + [SMALL_STATE(5509)] = 195005, + [SMALL_STATE(5510)] = 195032, + [SMALL_STATE(5511)] = 195059, + [SMALL_STATE(5512)] = 195086, + [SMALL_STATE(5513)] = 195113, + [SMALL_STATE(5514)] = 195140, + [SMALL_STATE(5515)] = 195167, + [SMALL_STATE(5516)] = 195194, + [SMALL_STATE(5517)] = 195221, + [SMALL_STATE(5518)] = 195248, + [SMALL_STATE(5519)] = 195275, + [SMALL_STATE(5520)] = 195302, + [SMALL_STATE(5521)] = 195329, + [SMALL_STATE(5522)] = 195356, + [SMALL_STATE(5523)] = 195383, + [SMALL_STATE(5524)] = 195410, + [SMALL_STATE(5525)] = 195437, + [SMALL_STATE(5526)] = 195464, + [SMALL_STATE(5527)] = 195491, + [SMALL_STATE(5528)] = 195518, + [SMALL_STATE(5529)] = 195545, + [SMALL_STATE(5530)] = 195564, + [SMALL_STATE(5531)] = 195583, + [SMALL_STATE(5532)] = 195604, + [SMALL_STATE(5533)] = 195625, + [SMALL_STATE(5534)] = 195644, + [SMALL_STATE(5535)] = 195663, + [SMALL_STATE(5536)] = 195684, + [SMALL_STATE(5537)] = 195705, + [SMALL_STATE(5538)] = 195726, + [SMALL_STATE(5539)] = 195745, + [SMALL_STATE(5540)] = 195772, + [SMALL_STATE(5541)] = 195799, + [SMALL_STATE(5542)] = 195820, + [SMALL_STATE(5543)] = 195839, + [SMALL_STATE(5544)] = 195860, + [SMALL_STATE(5545)] = 195881, + [SMALL_STATE(5546)] = 195900, + [SMALL_STATE(5547)] = 195923, + [SMALL_STATE(5548)] = 195942, + [SMALL_STATE(5549)] = 195963, + [SMALL_STATE(5550)] = 195982, + [SMALL_STATE(5551)] = 196011, + [SMALL_STATE(5552)] = 196030, + [SMALL_STATE(5553)] = 196049, + [SMALL_STATE(5554)] = 196076, + [SMALL_STATE(5555)] = 196103, + [SMALL_STATE(5556)] = 196122, + [SMALL_STATE(5557)] = 196139, + [SMALL_STATE(5558)] = 196160, + [SMALL_STATE(5559)] = 196181, + [SMALL_STATE(5560)] = 196202, + [SMALL_STATE(5561)] = 196225, + [SMALL_STATE(5562)] = 196250, + [SMALL_STATE(5563)] = 196277, + [SMALL_STATE(5564)] = 196298, + [SMALL_STATE(5565)] = 196315, + [SMALL_STATE(5566)] = 196334, + [SMALL_STATE(5567)] = 196361, + [SMALL_STATE(5568)] = 196380, + [SMALL_STATE(5569)] = 196401, + [SMALL_STATE(5570)] = 196430, + [SMALL_STATE(5571)] = 196449, + [SMALL_STATE(5572)] = 196466, + [SMALL_STATE(5573)] = 196483, + [SMALL_STATE(5574)] = 196502, + [SMALL_STATE(5575)] = 196519, + [SMALL_STATE(5576)] = 196546, + [SMALL_STATE(5577)] = 196567, + [SMALL_STATE(5578)] = 196584, + [SMALL_STATE(5579)] = 196603, + [SMALL_STATE(5580)] = 196622, + [SMALL_STATE(5581)] = 196641, + [SMALL_STATE(5582)] = 196660, + [SMALL_STATE(5583)] = 196681, + [SMALL_STATE(5584)] = 196702, + [SMALL_STATE(5585)] = 196719, + [SMALL_STATE(5586)] = 196746, + [SMALL_STATE(5587)] = 196765, + [SMALL_STATE(5588)] = 196784, + [SMALL_STATE(5589)] = 196811, + [SMALL_STATE(5590)] = 196830, + [SMALL_STATE(5591)] = 196851, + [SMALL_STATE(5592)] = 196878, + [SMALL_STATE(5593)] = 196897, + [SMALL_STATE(5594)] = 196916, + [SMALL_STATE(5595)] = 196943, + [SMALL_STATE(5596)] = 196964, + [SMALL_STATE(5597)] = 196991, + [SMALL_STATE(5598)] = 197008, + [SMALL_STATE(5599)] = 197027, + [SMALL_STATE(5600)] = 197046, + [SMALL_STATE(5601)] = 197067, + [SMALL_STATE(5602)] = 197086, + [SMALL_STATE(5603)] = 197113, + [SMALL_STATE(5604)] = 197140, + [SMALL_STATE(5605)] = 197163, + [SMALL_STATE(5606)] = 197188, + [SMALL_STATE(5607)] = 197215, + [SMALL_STATE(5608)] = 197232, + [SMALL_STATE(5609)] = 197255, + [SMALL_STATE(5610)] = 197280, + [SMALL_STATE(5611)] = 197303, + [SMALL_STATE(5612)] = 197324, + [SMALL_STATE(5613)] = 197343, + [SMALL_STATE(5614)] = 197364, + [SMALL_STATE(5615)] = 197383, + [SMALL_STATE(5616)] = 197410, + [SMALL_STATE(5617)] = 197429, + [SMALL_STATE(5618)] = 197448, + [SMALL_STATE(5619)] = 197465, + [SMALL_STATE(5620)] = 197483, + [SMALL_STATE(5621)] = 197509, + [SMALL_STATE(5622)] = 197529, + [SMALL_STATE(5623)] = 197555, + [SMALL_STATE(5624)] = 197571, + [SMALL_STATE(5625)] = 197597, + [SMALL_STATE(5626)] = 197615, + [SMALL_STATE(5627)] = 197641, + [SMALL_STATE(5628)] = 197667, + [SMALL_STATE(5629)] = 197685, + [SMALL_STATE(5630)] = 197701, + [SMALL_STATE(5631)] = 197727, + [SMALL_STATE(5632)] = 197745, + [SMALL_STATE(5633)] = 197767, + [SMALL_STATE(5634)] = 197783, + [SMALL_STATE(5635)] = 197809, + [SMALL_STATE(5636)] = 197835, + [SMALL_STATE(5637)] = 197855, + [SMALL_STATE(5638)] = 197875, + [SMALL_STATE(5639)] = 197901, + [SMALL_STATE(5640)] = 197921, + [SMALL_STATE(5641)] = 197947, + [SMALL_STATE(5642)] = 197973, + [SMALL_STATE(5643)] = 197991, + [SMALL_STATE(5644)] = 198007, + [SMALL_STATE(5645)] = 198025, + [SMALL_STATE(5646)] = 198043, + [SMALL_STATE(5647)] = 198069, + [SMALL_STATE(5648)] = 198095, + [SMALL_STATE(5649)] = 198121, + [SMALL_STATE(5650)] = 198147, + [SMALL_STATE(5651)] = 198165, + [SMALL_STATE(5652)] = 198187, + [SMALL_STATE(5653)] = 198205, + [SMALL_STATE(5654)] = 198223, + [SMALL_STATE(5655)] = 198241, + [SMALL_STATE(5656)] = 198267, + [SMALL_STATE(5657)] = 198293, + [SMALL_STATE(5658)] = 198319, + [SMALL_STATE(5659)] = 198345, + [SMALL_STATE(5660)] = 198369, + [SMALL_STATE(5661)] = 198387, + [SMALL_STATE(5662)] = 198405, + [SMALL_STATE(5663)] = 198423, + [SMALL_STATE(5664)] = 198441, + [SMALL_STATE(5665)] = 198467, + [SMALL_STATE(5666)] = 198493, + [SMALL_STATE(5667)] = 198511, + [SMALL_STATE(5668)] = 198529, + [SMALL_STATE(5669)] = 198547, + [SMALL_STATE(5670)] = 198567, + [SMALL_STATE(5671)] = 198585, + [SMALL_STATE(5672)] = 198603, + [SMALL_STATE(5673)] = 198621, + [SMALL_STATE(5674)] = 198639, + [SMALL_STATE(5675)] = 198665, + [SMALL_STATE(5676)] = 198693, + [SMALL_STATE(5677)] = 198719, + [SMALL_STATE(5678)] = 198739, + [SMALL_STATE(5679)] = 198765, + [SMALL_STATE(5680)] = 198793, + [SMALL_STATE(5681)] = 198813, + [SMALL_STATE(5682)] = 198837, + [SMALL_STATE(5683)] = 198857, + [SMALL_STATE(5684)] = 198883, + [SMALL_STATE(5685)] = 198909, + [SMALL_STATE(5686)] = 198925, + [SMALL_STATE(5687)] = 198951, + [SMALL_STATE(5688)] = 198977, + [SMALL_STATE(5689)] = 198995, + [SMALL_STATE(5690)] = 199013, + [SMALL_STATE(5691)] = 199033, + [SMALL_STATE(5692)] = 199057, + [SMALL_STATE(5693)] = 199083, + [SMALL_STATE(5694)] = 199101, + [SMALL_STATE(5695)] = 199127, + [SMALL_STATE(5696)] = 199153, + [SMALL_STATE(5697)] = 199173, + [SMALL_STATE(5698)] = 199199, + [SMALL_STATE(5699)] = 199225, + [SMALL_STATE(5700)] = 199243, + [SMALL_STATE(5701)] = 199269, + [SMALL_STATE(5702)] = 199289, + [SMALL_STATE(5703)] = 199315, + [SMALL_STATE(5704)] = 199341, + [SMALL_STATE(5705)] = 199359, + [SMALL_STATE(5706)] = 199383, + [SMALL_STATE(5707)] = 199409, + [SMALL_STATE(5708)] = 199435, + [SMALL_STATE(5709)] = 199453, + [SMALL_STATE(5710)] = 199479, + [SMALL_STATE(5711)] = 199505, + [SMALL_STATE(5712)] = 199531, + [SMALL_STATE(5713)] = 199547, + [SMALL_STATE(5714)] = 199571, + [SMALL_STATE(5715)] = 199597, + [SMALL_STATE(5716)] = 199623, + [SMALL_STATE(5717)] = 199649, + [SMALL_STATE(5718)] = 199675, + [SMALL_STATE(5719)] = 199701, + [SMALL_STATE(5720)] = 199717, + [SMALL_STATE(5721)] = 199733, + [SMALL_STATE(5722)] = 199751, + [SMALL_STATE(5723)] = 199777, + [SMALL_STATE(5724)] = 199803, + [SMALL_STATE(5725)] = 199821, + [SMALL_STATE(5726)] = 199847, + [SMALL_STATE(5727)] = 199873, + [SMALL_STATE(5728)] = 199899, + [SMALL_STATE(5729)] = 199925, + [SMALL_STATE(5730)] = 199951, + [SMALL_STATE(5731)] = 199977, + [SMALL_STATE(5732)] = 200003, + [SMALL_STATE(5733)] = 200029, + [SMALL_STATE(5734)] = 200055, + [SMALL_STATE(5735)] = 200081, + [SMALL_STATE(5736)] = 200107, + [SMALL_STATE(5737)] = 200128, + [SMALL_STATE(5738)] = 200147, + [SMALL_STATE(5739)] = 200172, + [SMALL_STATE(5740)] = 200189, + [SMALL_STATE(5741)] = 200214, + [SMALL_STATE(5742)] = 200231, + [SMALL_STATE(5743)] = 200250, + [SMALL_STATE(5744)] = 200267, + [SMALL_STATE(5745)] = 200290, + [SMALL_STATE(5746)] = 200315, + [SMALL_STATE(5747)] = 200340, + [SMALL_STATE(5748)] = 200359, + [SMALL_STATE(5749)] = 200382, + [SMALL_STATE(5750)] = 200407, + [SMALL_STATE(5751)] = 200432, + [SMALL_STATE(5752)] = 200457, + [SMALL_STATE(5753)] = 200482, + [SMALL_STATE(5754)] = 200499, + [SMALL_STATE(5755)] = 200524, + [SMALL_STATE(5756)] = 200547, + [SMALL_STATE(5757)] = 200564, + [SMALL_STATE(5758)] = 200589, + [SMALL_STATE(5759)] = 200606, + [SMALL_STATE(5760)] = 200629, + [SMALL_STATE(5761)] = 200654, + [SMALL_STATE(5762)] = 200679, + [SMALL_STATE(5763)] = 200704, + [SMALL_STATE(5764)] = 200727, + [SMALL_STATE(5765)] = 200748, + [SMALL_STATE(5766)] = 200773, + [SMALL_STATE(5767)] = 200798, + [SMALL_STATE(5768)] = 200819, + [SMALL_STATE(5769)] = 200836, + [SMALL_STATE(5770)] = 200851, + [SMALL_STATE(5771)] = 200866, + [SMALL_STATE(5772)] = 200889, + [SMALL_STATE(5773)] = 200912, + [SMALL_STATE(5774)] = 200935, + [SMALL_STATE(5775)] = 200960, + [SMALL_STATE(5776)] = 200985, + [SMALL_STATE(5777)] = 201008, + [SMALL_STATE(5778)] = 201031, + [SMALL_STATE(5779)] = 201048, + [SMALL_STATE(5780)] = 201065, + [SMALL_STATE(5781)] = 201088, + [SMALL_STATE(5782)] = 201105, + [SMALL_STATE(5783)] = 201128, + [SMALL_STATE(5784)] = 201153, + [SMALL_STATE(5785)] = 201178, + [SMALL_STATE(5786)] = 201203, + [SMALL_STATE(5787)] = 201226, + [SMALL_STATE(5788)] = 201251, + [SMALL_STATE(5789)] = 201274, + [SMALL_STATE(5790)] = 201299, + [SMALL_STATE(5791)] = 201322, + [SMALL_STATE(5792)] = 201347, + [SMALL_STATE(5793)] = 201372, + [SMALL_STATE(5794)] = 201397, + [SMALL_STATE(5795)] = 201414, + [SMALL_STATE(5796)] = 201439, + [SMALL_STATE(5797)] = 201456, + [SMALL_STATE(5798)] = 201481, + [SMALL_STATE(5799)] = 201506, + [SMALL_STATE(5800)] = 201523, + [SMALL_STATE(5801)] = 201542, + [SMALL_STATE(5802)] = 201567, + [SMALL_STATE(5803)] = 201592, + [SMALL_STATE(5804)] = 201617, + [SMALL_STATE(5805)] = 201638, + [SMALL_STATE(5806)] = 201659, + [SMALL_STATE(5807)] = 201684, + [SMALL_STATE(5808)] = 201709, + [SMALL_STATE(5809)] = 201730, + [SMALL_STATE(5810)] = 201755, + [SMALL_STATE(5811)] = 201774, + [SMALL_STATE(5812)] = 201795, + [SMALL_STATE(5813)] = 201820, + [SMALL_STATE(5814)] = 201845, + [SMALL_STATE(5815)] = 201870, + [SMALL_STATE(5816)] = 201887, + [SMALL_STATE(5817)] = 201904, + [SMALL_STATE(5818)] = 201927, + [SMALL_STATE(5819)] = 201944, + [SMALL_STATE(5820)] = 201963, + [SMALL_STATE(5821)] = 201986, + [SMALL_STATE(5822)] = 202005, + [SMALL_STATE(5823)] = 202030, + [SMALL_STATE(5824)] = 202055, + [SMALL_STATE(5825)] = 202072, + [SMALL_STATE(5826)] = 202097, + [SMALL_STATE(5827)] = 202114, + [SMALL_STATE(5828)] = 202131, + [SMALL_STATE(5829)] = 202154, + [SMALL_STATE(5830)] = 202177, + [SMALL_STATE(5831)] = 202198, + [SMALL_STATE(5832)] = 202215, + [SMALL_STATE(5833)] = 202232, + [SMALL_STATE(5834)] = 202255, + [SMALL_STATE(5835)] = 202272, + [SMALL_STATE(5836)] = 202291, + [SMALL_STATE(5837)] = 202312, + [SMALL_STATE(5838)] = 202337, + [SMALL_STATE(5839)] = 202362, + [SMALL_STATE(5840)] = 202387, + [SMALL_STATE(5841)] = 202412, + [SMALL_STATE(5842)] = 202437, + [SMALL_STATE(5843)] = 202454, + [SMALL_STATE(5844)] = 202471, + [SMALL_STATE(5845)] = 202488, + [SMALL_STATE(5846)] = 202513, + [SMALL_STATE(5847)] = 202534, + [SMALL_STATE(5848)] = 202559, + [SMALL_STATE(5849)] = 202576, + [SMALL_STATE(5850)] = 202601, + [SMALL_STATE(5851)] = 202626, + [SMALL_STATE(5852)] = 202643, + [SMALL_STATE(5853)] = 202668, + [SMALL_STATE(5854)] = 202691, + [SMALL_STATE(5855)] = 202708, + [SMALL_STATE(5856)] = 202729, + [SMALL_STATE(5857)] = 202752, + [SMALL_STATE(5858)] = 202777, + [SMALL_STATE(5859)] = 202798, + [SMALL_STATE(5860)] = 202815, + [SMALL_STATE(5861)] = 202840, + [SMALL_STATE(5862)] = 202865, + [SMALL_STATE(5863)] = 202882, + [SMALL_STATE(5864)] = 202899, + [SMALL_STATE(5865)] = 202924, + [SMALL_STATE(5866)] = 202947, + [SMALL_STATE(5867)] = 202964, + [SMALL_STATE(5868)] = 202989, + [SMALL_STATE(5869)] = 203006, + [SMALL_STATE(5870)] = 203031, + [SMALL_STATE(5871)] = 203048, + [SMALL_STATE(5872)] = 203073, + [SMALL_STATE(5873)] = 203098, + [SMALL_STATE(5874)] = 203123, + [SMALL_STATE(5875)] = 203144, + [SMALL_STATE(5876)] = 203169, + [SMALL_STATE(5877)] = 203188, + [SMALL_STATE(5878)] = 203205, + [SMALL_STATE(5879)] = 203230, + [SMALL_STATE(5880)] = 203255, + [SMALL_STATE(5881)] = 203272, + [SMALL_STATE(5882)] = 203297, + [SMALL_STATE(5883)] = 203322, + [SMALL_STATE(5884)] = 203345, + [SMALL_STATE(5885)] = 203362, + [SMALL_STATE(5886)] = 203379, + [SMALL_STATE(5887)] = 203396, + [SMALL_STATE(5888)] = 203417, + [SMALL_STATE(5889)] = 203434, + [SMALL_STATE(5890)] = 203459, + [SMALL_STATE(5891)] = 203484, + [SMALL_STATE(5892)] = 203509, + [SMALL_STATE(5893)] = 203534, + [SMALL_STATE(5894)] = 203557, + [SMALL_STATE(5895)] = 203574, + [SMALL_STATE(5896)] = 203599, + [SMALL_STATE(5897)] = 203624, + [SMALL_STATE(5898)] = 203647, + [SMALL_STATE(5899)] = 203664, + [SMALL_STATE(5900)] = 203689, + [SMALL_STATE(5901)] = 203714, + [SMALL_STATE(5902)] = 203739, + [SMALL_STATE(5903)] = 203764, + [SMALL_STATE(5904)] = 203789, + [SMALL_STATE(5905)] = 203808, + [SMALL_STATE(5906)] = 203833, + [SMALL_STATE(5907)] = 203854, + [SMALL_STATE(5908)] = 203871, + [SMALL_STATE(5909)] = 203896, + [SMALL_STATE(5910)] = 203921, + [SMALL_STATE(5911)] = 203938, + [SMALL_STATE(5912)] = 203955, + [SMALL_STATE(5913)] = 203972, + [SMALL_STATE(5914)] = 203995, + [SMALL_STATE(5915)] = 204012, + [SMALL_STATE(5916)] = 204037, + [SMALL_STATE(5917)] = 204062, + [SMALL_STATE(5918)] = 204079, + [SMALL_STATE(5919)] = 204104, + [SMALL_STATE(5920)] = 204127, + [SMALL_STATE(5921)] = 204148, + [SMALL_STATE(5922)] = 204173, + [SMALL_STATE(5923)] = 204190, + [SMALL_STATE(5924)] = 204215, + [SMALL_STATE(5925)] = 204240, + [SMALL_STATE(5926)] = 204265, + [SMALL_STATE(5927)] = 204282, + [SMALL_STATE(5928)] = 204305, + [SMALL_STATE(5929)] = 204330, + [SMALL_STATE(5930)] = 204347, + [SMALL_STATE(5931)] = 204372, + [SMALL_STATE(5932)] = 204393, + [SMALL_STATE(5933)] = 204410, + [SMALL_STATE(5934)] = 204427, + [SMALL_STATE(5935)] = 204452, + [SMALL_STATE(5936)] = 204475, + [SMALL_STATE(5937)] = 204498, + [SMALL_STATE(5938)] = 204521, + [SMALL_STATE(5939)] = 204546, + [SMALL_STATE(5940)] = 204571, + [SMALL_STATE(5941)] = 204592, + [SMALL_STATE(5942)] = 204611, + [SMALL_STATE(5943)] = 204634, + [SMALL_STATE(5944)] = 204655, + [SMALL_STATE(5945)] = 204676, + [SMALL_STATE(5946)] = 204699, + [SMALL_STATE(5947)] = 204714, + [SMALL_STATE(5948)] = 204729, + [SMALL_STATE(5949)] = 204746, + [SMALL_STATE(5950)] = 204763, + [SMALL_STATE(5951)] = 204786, + [SMALL_STATE(5952)] = 204811, + [SMALL_STATE(5953)] = 204836, + [SMALL_STATE(5954)] = 204857, + [SMALL_STATE(5955)] = 204874, + [SMALL_STATE(5956)] = 204891, + [SMALL_STATE(5957)] = 204916, + [SMALL_STATE(5958)] = 204937, + [SMALL_STATE(5959)] = 204954, + [SMALL_STATE(5960)] = 204975, + [SMALL_STATE(5961)] = 204994, + [SMALL_STATE(5962)] = 205013, + [SMALL_STATE(5963)] = 205038, + [SMALL_STATE(5964)] = 205063, + [SMALL_STATE(5965)] = 205086, + [SMALL_STATE(5966)] = 205103, + [SMALL_STATE(5967)] = 205126, + [SMALL_STATE(5968)] = 205143, + [SMALL_STATE(5969)] = 205160, + [SMALL_STATE(5970)] = 205181, + [SMALL_STATE(5971)] = 205200, + [SMALL_STATE(5972)] = 205217, + [SMALL_STATE(5973)] = 205238, + [SMALL_STATE(5974)] = 205259, + [SMALL_STATE(5975)] = 205280, + [SMALL_STATE(5976)] = 205295, + [SMALL_STATE(5977)] = 205320, + [SMALL_STATE(5978)] = 205339, + [SMALL_STATE(5979)] = 205356, + [SMALL_STATE(5980)] = 205379, + [SMALL_STATE(5981)] = 205398, + [SMALL_STATE(5982)] = 205417, + [SMALL_STATE(5983)] = 205436, + [SMALL_STATE(5984)] = 205461, + [SMALL_STATE(5985)] = 205484, + [SMALL_STATE(5986)] = 205509, + [SMALL_STATE(5987)] = 205530, + [SMALL_STATE(5988)] = 205555, + [SMALL_STATE(5989)] = 205572, + [SMALL_STATE(5990)] = 205593, + [SMALL_STATE(5991)] = 205618, + [SMALL_STATE(5992)] = 205643, + [SMALL_STATE(5993)] = 205658, + [SMALL_STATE(5994)] = 205675, + [SMALL_STATE(5995)] = 205692, + [SMALL_STATE(5996)] = 205717, + [SMALL_STATE(5997)] = 205740, + [SMALL_STATE(5998)] = 205759, + [SMALL_STATE(5999)] = 205782, + [SMALL_STATE(6000)] = 205803, + [SMALL_STATE(6001)] = 205821, + [SMALL_STATE(6002)] = 205837, + [SMALL_STATE(6003)] = 205859, + [SMALL_STATE(6004)] = 205881, + [SMALL_STATE(6005)] = 205903, + [SMALL_STATE(6006)] = 205921, + [SMALL_STATE(6007)] = 205939, + [SMALL_STATE(6008)] = 205957, + [SMALL_STATE(6009)] = 205975, + [SMALL_STATE(6010)] = 205993, + [SMALL_STATE(6011)] = 206013, + [SMALL_STATE(6012)] = 206031, + [SMALL_STATE(6013)] = 206049, + [SMALL_STATE(6014)] = 206071, + [SMALL_STATE(6015)] = 206085, + [SMALL_STATE(6016)] = 206103, + [SMALL_STATE(6017)] = 206121, + [SMALL_STATE(6018)] = 206139, + [SMALL_STATE(6019)] = 206157, + [SMALL_STATE(6020)] = 206177, + [SMALL_STATE(6021)] = 206199, + [SMALL_STATE(6022)] = 206221, + [SMALL_STATE(6023)] = 206243, + [SMALL_STATE(6024)] = 206265, + [SMALL_STATE(6025)] = 206287, + [SMALL_STATE(6026)] = 206305, + [SMALL_STATE(6027)] = 206327, + [SMALL_STATE(6028)] = 206349, + [SMALL_STATE(6029)] = 206371, + [SMALL_STATE(6030)] = 206393, + [SMALL_STATE(6031)] = 206415, + [SMALL_STATE(6032)] = 206437, + [SMALL_STATE(6033)] = 206459, + [SMALL_STATE(6034)] = 206479, + [SMALL_STATE(6035)] = 206501, + [SMALL_STATE(6036)] = 206523, + [SMALL_STATE(6037)] = 206545, + [SMALL_STATE(6038)] = 206567, + [SMALL_STATE(6039)] = 206589, + [SMALL_STATE(6040)] = 206611, + [SMALL_STATE(6041)] = 206633, + [SMALL_STATE(6042)] = 206655, + [SMALL_STATE(6043)] = 206677, + [SMALL_STATE(6044)] = 206699, + [SMALL_STATE(6045)] = 206721, + [SMALL_STATE(6046)] = 206743, + [SMALL_STATE(6047)] = 206759, + [SMALL_STATE(6048)] = 206777, + [SMALL_STATE(6049)] = 206793, + [SMALL_STATE(6050)] = 206809, + [SMALL_STATE(6051)] = 206825, + [SMALL_STATE(6052)] = 206841, + [SMALL_STATE(6053)] = 206859, + [SMALL_STATE(6054)] = 206877, + [SMALL_STATE(6055)] = 206895, + [SMALL_STATE(6056)] = 206913, + [SMALL_STATE(6057)] = 206927, + [SMALL_STATE(6058)] = 206943, + [SMALL_STATE(6059)] = 206963, + [SMALL_STATE(6060)] = 206979, + [SMALL_STATE(6061)] = 206995, + [SMALL_STATE(6062)] = 207011, + [SMALL_STATE(6063)] = 207029, + [SMALL_STATE(6064)] = 207045, + [SMALL_STATE(6065)] = 207061, + [SMALL_STATE(6066)] = 207077, + [SMALL_STATE(6067)] = 207097, + [SMALL_STATE(6068)] = 207113, + [SMALL_STATE(6069)] = 207129, + [SMALL_STATE(6070)] = 207145, + [SMALL_STATE(6071)] = 207167, + [SMALL_STATE(6072)] = 207183, + [SMALL_STATE(6073)] = 207203, + [SMALL_STATE(6074)] = 207225, + [SMALL_STATE(6075)] = 207247, + [SMALL_STATE(6076)] = 207265, + [SMALL_STATE(6077)] = 207287, + [SMALL_STATE(6078)] = 207305, + [SMALL_STATE(6079)] = 207327, + [SMALL_STATE(6080)] = 207347, + [SMALL_STATE(6081)] = 207365, + [SMALL_STATE(6082)] = 207387, + [SMALL_STATE(6083)] = 207409, + [SMALL_STATE(6084)] = 207429, + [SMALL_STATE(6085)] = 207451, + [SMALL_STATE(6086)] = 207473, + [SMALL_STATE(6087)] = 207495, + [SMALL_STATE(6088)] = 207517, + [SMALL_STATE(6089)] = 207539, + [SMALL_STATE(6090)] = 207561, + [SMALL_STATE(6091)] = 207579, + [SMALL_STATE(6092)] = 207601, + [SMALL_STATE(6093)] = 207619, + [SMALL_STATE(6094)] = 207639, + [SMALL_STATE(6095)] = 207661, + [SMALL_STATE(6096)] = 207683, + [SMALL_STATE(6097)] = 207705, + [SMALL_STATE(6098)] = 207727, + [SMALL_STATE(6099)] = 207749, + [SMALL_STATE(6100)] = 207771, + [SMALL_STATE(6101)] = 207793, + [SMALL_STATE(6102)] = 207813, + [SMALL_STATE(6103)] = 207835, + [SMALL_STATE(6104)] = 207857, + [SMALL_STATE(6105)] = 207873, + [SMALL_STATE(6106)] = 207895, + [SMALL_STATE(6107)] = 207917, + [SMALL_STATE(6108)] = 207939, + [SMALL_STATE(6109)] = 207961, + [SMALL_STATE(6110)] = 207983, + [SMALL_STATE(6111)] = 208005, + [SMALL_STATE(6112)] = 208027, + [SMALL_STATE(6113)] = 208047, + [SMALL_STATE(6114)] = 208069, + [SMALL_STATE(6115)] = 208091, + [SMALL_STATE(6116)] = 208111, + [SMALL_STATE(6117)] = 208133, + [SMALL_STATE(6118)] = 208155, + [SMALL_STATE(6119)] = 208177, + [SMALL_STATE(6120)] = 208199, + [SMALL_STATE(6121)] = 208221, + [SMALL_STATE(6122)] = 208243, + [SMALL_STATE(6123)] = 208265, + [SMALL_STATE(6124)] = 208287, + [SMALL_STATE(6125)] = 208309, + [SMALL_STATE(6126)] = 208331, + [SMALL_STATE(6127)] = 208347, + [SMALL_STATE(6128)] = 208361, + [SMALL_STATE(6129)] = 208383, + [SMALL_STATE(6130)] = 208397, + [SMALL_STATE(6131)] = 208419, + [SMALL_STATE(6132)] = 208437, + [SMALL_STATE(6133)] = 208455, + [SMALL_STATE(6134)] = 208475, + [SMALL_STATE(6135)] = 208497, + [SMALL_STATE(6136)] = 208519, + [SMALL_STATE(6137)] = 208535, + [SMALL_STATE(6138)] = 208553, + [SMALL_STATE(6139)] = 208575, + [SMALL_STATE(6140)] = 208595, + [SMALL_STATE(6141)] = 208617, + [SMALL_STATE(6142)] = 208639, + [SMALL_STATE(6143)] = 208657, + [SMALL_STATE(6144)] = 208679, + [SMALL_STATE(6145)] = 208699, + [SMALL_STATE(6146)] = 208721, + [SMALL_STATE(6147)] = 208741, + [SMALL_STATE(6148)] = 208759, + [SMALL_STATE(6149)] = 208777, + [SMALL_STATE(6150)] = 208795, + [SMALL_STATE(6151)] = 208815, + [SMALL_STATE(6152)] = 208837, + [SMALL_STATE(6153)] = 208859, + [SMALL_STATE(6154)] = 208881, + [SMALL_STATE(6155)] = 208903, + [SMALL_STATE(6156)] = 208925, + [SMALL_STATE(6157)] = 208943, + [SMALL_STATE(6158)] = 208965, + [SMALL_STATE(6159)] = 208987, + [SMALL_STATE(6160)] = 209007, + [SMALL_STATE(6161)] = 209025, + [SMALL_STATE(6162)] = 209045, + [SMALL_STATE(6163)] = 209063, + [SMALL_STATE(6164)] = 209085, + [SMALL_STATE(6165)] = 209107, + [SMALL_STATE(6166)] = 209129, + [SMALL_STATE(6167)] = 209151, + [SMALL_STATE(6168)] = 209173, + [SMALL_STATE(6169)] = 209195, + [SMALL_STATE(6170)] = 209217, + [SMALL_STATE(6171)] = 209239, + [SMALL_STATE(6172)] = 209261, + [SMALL_STATE(6173)] = 209283, + [SMALL_STATE(6174)] = 209305, + [SMALL_STATE(6175)] = 209327, + [SMALL_STATE(6176)] = 209349, + [SMALL_STATE(6177)] = 209371, + [SMALL_STATE(6178)] = 209393, + [SMALL_STATE(6179)] = 209415, + [SMALL_STATE(6180)] = 209437, + [SMALL_STATE(6181)] = 209459, + [SMALL_STATE(6182)] = 209481, + [SMALL_STATE(6183)] = 209503, + [SMALL_STATE(6184)] = 209525, + [SMALL_STATE(6185)] = 209547, + [SMALL_STATE(6186)] = 209569, + [SMALL_STATE(6187)] = 209591, + [SMALL_STATE(6188)] = 209605, + [SMALL_STATE(6189)] = 209627, + [SMALL_STATE(6190)] = 209649, + [SMALL_STATE(6191)] = 209671, + [SMALL_STATE(6192)] = 209693, + [SMALL_STATE(6193)] = 209715, + [SMALL_STATE(6194)] = 209737, + [SMALL_STATE(6195)] = 209759, + [SMALL_STATE(6196)] = 209781, + [SMALL_STATE(6197)] = 209803, + [SMALL_STATE(6198)] = 209825, + [SMALL_STATE(6199)] = 209847, + [SMALL_STATE(6200)] = 209869, + [SMALL_STATE(6201)] = 209891, + [SMALL_STATE(6202)] = 209913, + [SMALL_STATE(6203)] = 209933, + [SMALL_STATE(6204)] = 209955, + [SMALL_STATE(6205)] = 209977, + [SMALL_STATE(6206)] = 209999, + [SMALL_STATE(6207)] = 210021, + [SMALL_STATE(6208)] = 210035, + [SMALL_STATE(6209)] = 210049, + [SMALL_STATE(6210)] = 210071, + [SMALL_STATE(6211)] = 210091, + [SMALL_STATE(6212)] = 210113, + [SMALL_STATE(6213)] = 210132, + [SMALL_STATE(6214)] = 210149, + [SMALL_STATE(6215)] = 210162, + [SMALL_STATE(6216)] = 210175, + [SMALL_STATE(6217)] = 210188, + [SMALL_STATE(6218)] = 210207, + [SMALL_STATE(6219)] = 210220, + [SMALL_STATE(6220)] = 210233, + [SMALL_STATE(6221)] = 210246, + [SMALL_STATE(6222)] = 210265, + [SMALL_STATE(6223)] = 210284, + [SMALL_STATE(6224)] = 210303, + [SMALL_STATE(6225)] = 210322, + [SMALL_STATE(6226)] = 210341, + [SMALL_STATE(6227)] = 210360, + [SMALL_STATE(6228)] = 210379, + [SMALL_STATE(6229)] = 210398, + [SMALL_STATE(6230)] = 210417, + [SMALL_STATE(6231)] = 210436, + [SMALL_STATE(6232)] = 210449, + [SMALL_STATE(6233)] = 210462, + [SMALL_STATE(6234)] = 210481, + [SMALL_STATE(6235)] = 210496, + [SMALL_STATE(6236)] = 210509, + [SMALL_STATE(6237)] = 210522, + [SMALL_STATE(6238)] = 210541, + [SMALL_STATE(6239)] = 210560, + [SMALL_STATE(6240)] = 210575, + [SMALL_STATE(6241)] = 210588, + [SMALL_STATE(6242)] = 210605, + [SMALL_STATE(6243)] = 210618, + [SMALL_STATE(6244)] = 210633, + [SMALL_STATE(6245)] = 210652, + [SMALL_STATE(6246)] = 210665, + [SMALL_STATE(6247)] = 210684, + [SMALL_STATE(6248)] = 210701, + [SMALL_STATE(6249)] = 210714, + [SMALL_STATE(6250)] = 210733, + [SMALL_STATE(6251)] = 210746, + [SMALL_STATE(6252)] = 210765, + [SMALL_STATE(6253)] = 210782, + [SMALL_STATE(6254)] = 210799, + [SMALL_STATE(6255)] = 210812, + [SMALL_STATE(6256)] = 210831, + [SMALL_STATE(6257)] = 210850, + [SMALL_STATE(6258)] = 210869, + [SMALL_STATE(6259)] = 210888, + [SMALL_STATE(6260)] = 210907, + [SMALL_STATE(6261)] = 210926, + [SMALL_STATE(6262)] = 210945, + [SMALL_STATE(6263)] = 210964, + [SMALL_STATE(6264)] = 210983, + [SMALL_STATE(6265)] = 210996, + [SMALL_STATE(6266)] = 211009, + [SMALL_STATE(6267)] = 211022, + [SMALL_STATE(6268)] = 211039, + [SMALL_STATE(6269)] = 211052, + [SMALL_STATE(6270)] = 211067, + [SMALL_STATE(6271)] = 211080, + [SMALL_STATE(6272)] = 211093, + [SMALL_STATE(6273)] = 211106, + [SMALL_STATE(6274)] = 211125, + [SMALL_STATE(6275)] = 211142, + [SMALL_STATE(6276)] = 211155, + [SMALL_STATE(6277)] = 211168, + [SMALL_STATE(6278)] = 211181, + [SMALL_STATE(6279)] = 211194, + [SMALL_STATE(6280)] = 211213, + [SMALL_STATE(6281)] = 211232, + [SMALL_STATE(6282)] = 211251, + [SMALL_STATE(6283)] = 211270, + [SMALL_STATE(6284)] = 211289, + [SMALL_STATE(6285)] = 211308, + [SMALL_STATE(6286)] = 211327, + [SMALL_STATE(6287)] = 211346, + [SMALL_STATE(6288)] = 211361, + [SMALL_STATE(6289)] = 211376, + [SMALL_STATE(6290)] = 211395, + [SMALL_STATE(6291)] = 211408, + [SMALL_STATE(6292)] = 211425, + [SMALL_STATE(6293)] = 211444, + [SMALL_STATE(6294)] = 211463, + [SMALL_STATE(6295)] = 211480, + [SMALL_STATE(6296)] = 211493, + [SMALL_STATE(6297)] = 211510, + [SMALL_STATE(6298)] = 211523, + [SMALL_STATE(6299)] = 211540, + [SMALL_STATE(6300)] = 211553, + [SMALL_STATE(6301)] = 211572, + [SMALL_STATE(6302)] = 211591, + [SMALL_STATE(6303)] = 211610, + [SMALL_STATE(6304)] = 211629, + [SMALL_STATE(6305)] = 211648, + [SMALL_STATE(6306)] = 211667, + [SMALL_STATE(6307)] = 211686, + [SMALL_STATE(6308)] = 211705, + [SMALL_STATE(6309)] = 211724, + [SMALL_STATE(6310)] = 211743, + [SMALL_STATE(6311)] = 211756, + [SMALL_STATE(6312)] = 211773, + [SMALL_STATE(6313)] = 211786, + [SMALL_STATE(6314)] = 211805, + [SMALL_STATE(6315)] = 211824, + [SMALL_STATE(6316)] = 211841, + [SMALL_STATE(6317)] = 211856, + [SMALL_STATE(6318)] = 211871, + [SMALL_STATE(6319)] = 211886, + [SMALL_STATE(6320)] = 211905, + [SMALL_STATE(6321)] = 211924, + [SMALL_STATE(6322)] = 211943, + [SMALL_STATE(6323)] = 211962, + [SMALL_STATE(6324)] = 211981, + [SMALL_STATE(6325)] = 212000, + [SMALL_STATE(6326)] = 212019, + [SMALL_STATE(6327)] = 212038, + [SMALL_STATE(6328)] = 212051, + [SMALL_STATE(6329)] = 212064, + [SMALL_STATE(6330)] = 212081, + [SMALL_STATE(6331)] = 212100, + [SMALL_STATE(6332)] = 212113, + [SMALL_STATE(6333)] = 212132, + [SMALL_STATE(6334)] = 212147, + [SMALL_STATE(6335)] = 212164, + [SMALL_STATE(6336)] = 212179, + [SMALL_STATE(6337)] = 212198, + [SMALL_STATE(6338)] = 212217, + [SMALL_STATE(6339)] = 212236, + [SMALL_STATE(6340)] = 212255, + [SMALL_STATE(6341)] = 212274, + [SMALL_STATE(6342)] = 212293, + [SMALL_STATE(6343)] = 212312, + [SMALL_STATE(6344)] = 212331, + [SMALL_STATE(6345)] = 212350, + [SMALL_STATE(6346)] = 212369, + [SMALL_STATE(6347)] = 212386, + [SMALL_STATE(6348)] = 212405, + [SMALL_STATE(6349)] = 212418, + [SMALL_STATE(6350)] = 212435, + [SMALL_STATE(6351)] = 212448, + [SMALL_STATE(6352)] = 212465, + [SMALL_STATE(6353)] = 212484, + [SMALL_STATE(6354)] = 212501, + [SMALL_STATE(6355)] = 212520, + [SMALL_STATE(6356)] = 212539, + [SMALL_STATE(6357)] = 212558, + [SMALL_STATE(6358)] = 212577, + [SMALL_STATE(6359)] = 212596, + [SMALL_STATE(6360)] = 212615, + [SMALL_STATE(6361)] = 212634, + [SMALL_STATE(6362)] = 212653, + [SMALL_STATE(6363)] = 212666, + [SMALL_STATE(6364)] = 212683, + [SMALL_STATE(6365)] = 212698, + [SMALL_STATE(6366)] = 212717, + [SMALL_STATE(6367)] = 212736, + [SMALL_STATE(6368)] = 212753, + [SMALL_STATE(6369)] = 212766, + [SMALL_STATE(6370)] = 212779, + [SMALL_STATE(6371)] = 212798, + [SMALL_STATE(6372)] = 212817, + [SMALL_STATE(6373)] = 212836, + [SMALL_STATE(6374)] = 212855, + [SMALL_STATE(6375)] = 212874, + [SMALL_STATE(6376)] = 212893, + [SMALL_STATE(6377)] = 212912, + [SMALL_STATE(6378)] = 212931, + [SMALL_STATE(6379)] = 212944, + [SMALL_STATE(6380)] = 212957, + [SMALL_STATE(6381)] = 212974, + [SMALL_STATE(6382)] = 212991, + [SMALL_STATE(6383)] = 213010, + [SMALL_STATE(6384)] = 213027, + [SMALL_STATE(6385)] = 213044, + [SMALL_STATE(6386)] = 213063, + [SMALL_STATE(6387)] = 213076, + [SMALL_STATE(6388)] = 213095, + [SMALL_STATE(6389)] = 213114, + [SMALL_STATE(6390)] = 213133, + [SMALL_STATE(6391)] = 213152, + [SMALL_STATE(6392)] = 213171, + [SMALL_STATE(6393)] = 213190, + [SMALL_STATE(6394)] = 213209, + [SMALL_STATE(6395)] = 213228, + [SMALL_STATE(6396)] = 213241, + [SMALL_STATE(6397)] = 213254, + [SMALL_STATE(6398)] = 213271, + [SMALL_STATE(6399)] = 213286, + [SMALL_STATE(6400)] = 213301, + [SMALL_STATE(6401)] = 213318, + [SMALL_STATE(6402)] = 213337, + [SMALL_STATE(6403)] = 213352, + [SMALL_STATE(6404)] = 213371, + [SMALL_STATE(6405)] = 213390, + [SMALL_STATE(6406)] = 213409, + [SMALL_STATE(6407)] = 213428, + [SMALL_STATE(6408)] = 213447, + [SMALL_STATE(6409)] = 213466, + [SMALL_STATE(6410)] = 213485, + [SMALL_STATE(6411)] = 213504, + [SMALL_STATE(6412)] = 213517, + [SMALL_STATE(6413)] = 213534, + [SMALL_STATE(6414)] = 213553, + [SMALL_STATE(6415)] = 213568, + [SMALL_STATE(6416)] = 213585, + [SMALL_STATE(6417)] = 213600, + [SMALL_STATE(6418)] = 213619, + [SMALL_STATE(6419)] = 213638, + [SMALL_STATE(6420)] = 213657, + [SMALL_STATE(6421)] = 213676, + [SMALL_STATE(6422)] = 213695, + [SMALL_STATE(6423)] = 213714, + [SMALL_STATE(6424)] = 213733, + [SMALL_STATE(6425)] = 213752, + [SMALL_STATE(6426)] = 213771, + [SMALL_STATE(6427)] = 213784, + [SMALL_STATE(6428)] = 213801, + [SMALL_STATE(6429)] = 213820, + [SMALL_STATE(6430)] = 213837, + [SMALL_STATE(6431)] = 213856, + [SMALL_STATE(6432)] = 213875, + [SMALL_STATE(6433)] = 213894, + [SMALL_STATE(6434)] = 213913, + [SMALL_STATE(6435)] = 213932, + [SMALL_STATE(6436)] = 213951, + [SMALL_STATE(6437)] = 213970, + [SMALL_STATE(6438)] = 213989, + [SMALL_STATE(6439)] = 214008, + [SMALL_STATE(6440)] = 214021, + [SMALL_STATE(6441)] = 214038, + [SMALL_STATE(6442)] = 214053, + [SMALL_STATE(6443)] = 214070, + [SMALL_STATE(6444)] = 214083, + [SMALL_STATE(6445)] = 214102, + [SMALL_STATE(6446)] = 214121, + [SMALL_STATE(6447)] = 214140, + [SMALL_STATE(6448)] = 214159, + [SMALL_STATE(6449)] = 214178, + [SMALL_STATE(6450)] = 214197, + [SMALL_STATE(6451)] = 214216, + [SMALL_STATE(6452)] = 214235, + [SMALL_STATE(6453)] = 214250, + [SMALL_STATE(6454)] = 214263, + [SMALL_STATE(6455)] = 214276, + [SMALL_STATE(6456)] = 214293, + [SMALL_STATE(6457)] = 214310, + [SMALL_STATE(6458)] = 214323, + [SMALL_STATE(6459)] = 214342, + [SMALL_STATE(6460)] = 214361, + [SMALL_STATE(6461)] = 214380, + [SMALL_STATE(6462)] = 214399, + [SMALL_STATE(6463)] = 214418, + [SMALL_STATE(6464)] = 214437, + [SMALL_STATE(6465)] = 214456, + [SMALL_STATE(6466)] = 214475, + [SMALL_STATE(6467)] = 214492, + [SMALL_STATE(6468)] = 214505, + [SMALL_STATE(6469)] = 214522, + [SMALL_STATE(6470)] = 214535, + [SMALL_STATE(6471)] = 214552, + [SMALL_STATE(6472)] = 214565, + [SMALL_STATE(6473)] = 214584, + [SMALL_STATE(6474)] = 214603, + [SMALL_STATE(6475)] = 214622, + [SMALL_STATE(6476)] = 214641, + [SMALL_STATE(6477)] = 214660, + [SMALL_STATE(6478)] = 214679, + [SMALL_STATE(6479)] = 214698, + [SMALL_STATE(6480)] = 214717, + [SMALL_STATE(6481)] = 214730, + [SMALL_STATE(6482)] = 214743, + [SMALL_STATE(6483)] = 214760, + [SMALL_STATE(6484)] = 214777, + [SMALL_STATE(6485)] = 214796, + [SMALL_STATE(6486)] = 214815, + [SMALL_STATE(6487)] = 214834, + [SMALL_STATE(6488)] = 214853, + [SMALL_STATE(6489)] = 214872, + [SMALL_STATE(6490)] = 214891, + [SMALL_STATE(6491)] = 214910, + [SMALL_STATE(6492)] = 214929, + [SMALL_STATE(6493)] = 214942, + [SMALL_STATE(6494)] = 214959, + [SMALL_STATE(6495)] = 214976, + [SMALL_STATE(6496)] = 214989, + [SMALL_STATE(6497)] = 215002, + [SMALL_STATE(6498)] = 215019, + [SMALL_STATE(6499)] = 215036, + [SMALL_STATE(6500)] = 215049, + [SMALL_STATE(6501)] = 215066, + [SMALL_STATE(6502)] = 215083, + [SMALL_STATE(6503)] = 215096, + [SMALL_STATE(6504)] = 215113, + [SMALL_STATE(6505)] = 215130, + [SMALL_STATE(6506)] = 215147, + [SMALL_STATE(6507)] = 215160, + [SMALL_STATE(6508)] = 215177, + [SMALL_STATE(6509)] = 215194, + [SMALL_STATE(6510)] = 215207, + [SMALL_STATE(6511)] = 215224, + [SMALL_STATE(6512)] = 215241, + [SMALL_STATE(6513)] = 215260, + [SMALL_STATE(6514)] = 215277, + [SMALL_STATE(6515)] = 215294, + [SMALL_STATE(6516)] = 215307, + [SMALL_STATE(6517)] = 215320, + [SMALL_STATE(6518)] = 215337, + [SMALL_STATE(6519)] = 215354, + [SMALL_STATE(6520)] = 215371, + [SMALL_STATE(6521)] = 215384, + [SMALL_STATE(6522)] = 215401, + [SMALL_STATE(6523)] = 215418, + [SMALL_STATE(6524)] = 215431, + [SMALL_STATE(6525)] = 215448, + [SMALL_STATE(6526)] = 215465, + [SMALL_STATE(6527)] = 215478, + [SMALL_STATE(6528)] = 215495, + [SMALL_STATE(6529)] = 215512, + [SMALL_STATE(6530)] = 215525, + [SMALL_STATE(6531)] = 215542, + [SMALL_STATE(6532)] = 215559, + [SMALL_STATE(6533)] = 215574, + [SMALL_STATE(6534)] = 215587, + [SMALL_STATE(6535)] = 215604, + [SMALL_STATE(6536)] = 215621, + [SMALL_STATE(6537)] = 215634, + [SMALL_STATE(6538)] = 215651, + [SMALL_STATE(6539)] = 215668, + [SMALL_STATE(6540)] = 215681, + [SMALL_STATE(6541)] = 215698, + [SMALL_STATE(6542)] = 215715, + [SMALL_STATE(6543)] = 215728, + [SMALL_STATE(6544)] = 215745, + [SMALL_STATE(6545)] = 215762, + [SMALL_STATE(6546)] = 215775, + [SMALL_STATE(6547)] = 215792, + [SMALL_STATE(6548)] = 215809, + [SMALL_STATE(6549)] = 215822, + [SMALL_STATE(6550)] = 215839, + [SMALL_STATE(6551)] = 215856, + [SMALL_STATE(6552)] = 215871, + [SMALL_STATE(6553)] = 215884, + [SMALL_STATE(6554)] = 215901, + [SMALL_STATE(6555)] = 215918, + [SMALL_STATE(6556)] = 215931, + [SMALL_STATE(6557)] = 215948, + [SMALL_STATE(6558)] = 215965, + [SMALL_STATE(6559)] = 215978, + [SMALL_STATE(6560)] = 215991, + [SMALL_STATE(6561)] = 216008, + [SMALL_STATE(6562)] = 216025, + [SMALL_STATE(6563)] = 216038, + [SMALL_STATE(6564)] = 216055, + [SMALL_STATE(6565)] = 216072, + [SMALL_STATE(6566)] = 216091, + [SMALL_STATE(6567)] = 216104, + [SMALL_STATE(6568)] = 216121, + [SMALL_STATE(6569)] = 216138, + [SMALL_STATE(6570)] = 216151, + [SMALL_STATE(6571)] = 216168, + [SMALL_STATE(6572)] = 216185, + [SMALL_STATE(6573)] = 216198, + [SMALL_STATE(6574)] = 216215, + [SMALL_STATE(6575)] = 216232, + [SMALL_STATE(6576)] = 216245, + [SMALL_STATE(6577)] = 216262, + [SMALL_STATE(6578)] = 216279, + [SMALL_STATE(6579)] = 216292, + [SMALL_STATE(6580)] = 216309, + [SMALL_STATE(6581)] = 216326, + [SMALL_STATE(6582)] = 216339, + [SMALL_STATE(6583)] = 216356, + [SMALL_STATE(6584)] = 216373, + [SMALL_STATE(6585)] = 216390, + [SMALL_STATE(6586)] = 216407, + [SMALL_STATE(6587)] = 216424, + [SMALL_STATE(6588)] = 216441, + [SMALL_STATE(6589)] = 216458, + [SMALL_STATE(6590)] = 216475, + [SMALL_STATE(6591)] = 216488, + [SMALL_STATE(6592)] = 216501, + [SMALL_STATE(6593)] = 216514, + [SMALL_STATE(6594)] = 216533, + [SMALL_STATE(6595)] = 216550, + [SMALL_STATE(6596)] = 216563, + [SMALL_STATE(6597)] = 216580, + [SMALL_STATE(6598)] = 216599, + [SMALL_STATE(6599)] = 216614, + [SMALL_STATE(6600)] = 216633, + [SMALL_STATE(6601)] = 216646, + [SMALL_STATE(6602)] = 216665, + [SMALL_STATE(6603)] = 216684, + [SMALL_STATE(6604)] = 216697, + [SMALL_STATE(6605)] = 216710, + [SMALL_STATE(6606)] = 216723, + [SMALL_STATE(6607)] = 216736, + [SMALL_STATE(6608)] = 216749, + [SMALL_STATE(6609)] = 216762, + [SMALL_STATE(6610)] = 216779, + [SMALL_STATE(6611)] = 216798, + [SMALL_STATE(6612)] = 216817, + [SMALL_STATE(6613)] = 216836, + [SMALL_STATE(6614)] = 216849, + [SMALL_STATE(6615)] = 216868, + [SMALL_STATE(6616)] = 216887, + [SMALL_STATE(6617)] = 216900, + [SMALL_STATE(6618)] = 216919, + [SMALL_STATE(6619)] = 216932, + [SMALL_STATE(6620)] = 216945, + [SMALL_STATE(6621)] = 216958, + [SMALL_STATE(6622)] = 216973, + [SMALL_STATE(6623)] = 216992, + [SMALL_STATE(6624)] = 217005, + [SMALL_STATE(6625)] = 217024, + [SMALL_STATE(6626)] = 217037, + [SMALL_STATE(6627)] = 217054, + [SMALL_STATE(6628)] = 217071, + [SMALL_STATE(6629)] = 217084, + [SMALL_STATE(6630)] = 217103, + [SMALL_STATE(6631)] = 217116, + [SMALL_STATE(6632)] = 217131, + [SMALL_STATE(6633)] = 217144, + [SMALL_STATE(6634)] = 217157, + [SMALL_STATE(6635)] = 217176, + [SMALL_STATE(6636)] = 217191, + [SMALL_STATE(6637)] = 217204, + [SMALL_STATE(6638)] = 217223, + [SMALL_STATE(6639)] = 217240, + [SMALL_STATE(6640)] = 217253, + [SMALL_STATE(6641)] = 217266, + [SMALL_STATE(6642)] = 217281, + [SMALL_STATE(6643)] = 217294, + [SMALL_STATE(6644)] = 217307, + [SMALL_STATE(6645)] = 217320, + [SMALL_STATE(6646)] = 217333, + [SMALL_STATE(6647)] = 217346, + [SMALL_STATE(6648)] = 217359, + [SMALL_STATE(6649)] = 217372, + [SMALL_STATE(6650)] = 217385, + [SMALL_STATE(6651)] = 217398, + [SMALL_STATE(6652)] = 217417, + [SMALL_STATE(6653)] = 217436, + [SMALL_STATE(6654)] = 217449, + [SMALL_STATE(6655)] = 217468, + [SMALL_STATE(6656)] = 217481, + [SMALL_STATE(6657)] = 217496, + [SMALL_STATE(6658)] = 217509, + [SMALL_STATE(6659)] = 217528, + [SMALL_STATE(6660)] = 217547, + [SMALL_STATE(6661)] = 217560, + [SMALL_STATE(6662)] = 217579, + [SMALL_STATE(6663)] = 217598, + [SMALL_STATE(6664)] = 217617, + [SMALL_STATE(6665)] = 217634, + [SMALL_STATE(6666)] = 217649, + [SMALL_STATE(6667)] = 217668, + [SMALL_STATE(6668)] = 217687, + [SMALL_STATE(6669)] = 217706, + [SMALL_STATE(6670)] = 217719, + [SMALL_STATE(6671)] = 217734, + [SMALL_STATE(6672)] = 217747, + [SMALL_STATE(6673)] = 217762, + [SMALL_STATE(6674)] = 217779, + [SMALL_STATE(6675)] = 217792, + [SMALL_STATE(6676)] = 217809, + [SMALL_STATE(6677)] = 217826, + [SMALL_STATE(6678)] = 217841, + [SMALL_STATE(6679)] = 217858, + [SMALL_STATE(6680)] = 217871, + [SMALL_STATE(6681)] = 217888, + [SMALL_STATE(6682)] = 217903, + [SMALL_STATE(6683)] = 217916, + [SMALL_STATE(6684)] = 217935, + [SMALL_STATE(6685)] = 217948, + [SMALL_STATE(6686)] = 217967, + [SMALL_STATE(6687)] = 217980, + [SMALL_STATE(6688)] = 217997, + [SMALL_STATE(6689)] = 218012, + [SMALL_STATE(6690)] = 218031, + [SMALL_STATE(6691)] = 218044, + [SMALL_STATE(6692)] = 218057, + [SMALL_STATE(6693)] = 218074, + [SMALL_STATE(6694)] = 218087, + [SMALL_STATE(6695)] = 218102, + [SMALL_STATE(6696)] = 218115, + [SMALL_STATE(6697)] = 218134, + [SMALL_STATE(6698)] = 218149, + [SMALL_STATE(6699)] = 218162, + [SMALL_STATE(6700)] = 218181, + [SMALL_STATE(6701)] = 218200, + [SMALL_STATE(6702)] = 218219, + [SMALL_STATE(6703)] = 218232, + [SMALL_STATE(6704)] = 218245, + [SMALL_STATE(6705)] = 218262, + [SMALL_STATE(6706)] = 218275, + [SMALL_STATE(6707)] = 218294, + [SMALL_STATE(6708)] = 218313, + [SMALL_STATE(6709)] = 218326, + [SMALL_STATE(6710)] = 218345, + [SMALL_STATE(6711)] = 218362, + [SMALL_STATE(6712)] = 218381, + [SMALL_STATE(6713)] = 218394, + [SMALL_STATE(6714)] = 218411, + [SMALL_STATE(6715)] = 218424, + [SMALL_STATE(6716)] = 218437, + [SMALL_STATE(6717)] = 218450, + [SMALL_STATE(6718)] = 218463, + [SMALL_STATE(6719)] = 218480, + [SMALL_STATE(6720)] = 218499, + [SMALL_STATE(6721)] = 218512, + [SMALL_STATE(6722)] = 218525, + [SMALL_STATE(6723)] = 218538, + [SMALL_STATE(6724)] = 218557, + [SMALL_STATE(6725)] = 218576, + [SMALL_STATE(6726)] = 218595, + [SMALL_STATE(6727)] = 218614, + [SMALL_STATE(6728)] = 218633, + [SMALL_STATE(6729)] = 218650, + [SMALL_STATE(6730)] = 218669, + [SMALL_STATE(6731)] = 218688, + [SMALL_STATE(6732)] = 218707, + [SMALL_STATE(6733)] = 218724, + [SMALL_STATE(6734)] = 218743, + [SMALL_STATE(6735)] = 218762, + [SMALL_STATE(6736)] = 218781, + [SMALL_STATE(6737)] = 218800, + [SMALL_STATE(6738)] = 218817, + [SMALL_STATE(6739)] = 218834, + [SMALL_STATE(6740)] = 218849, + [SMALL_STATE(6741)] = 218868, + [SMALL_STATE(6742)] = 218887, + [SMALL_STATE(6743)] = 218900, + [SMALL_STATE(6744)] = 218913, + [SMALL_STATE(6745)] = 218932, + [SMALL_STATE(6746)] = 218951, + [SMALL_STATE(6747)] = 218970, + [SMALL_STATE(6748)] = 218983, + [SMALL_STATE(6749)] = 218999, + [SMALL_STATE(6750)] = 219011, + [SMALL_STATE(6751)] = 219025, + [SMALL_STATE(6752)] = 219039, + [SMALL_STATE(6753)] = 219051, + [SMALL_STATE(6754)] = 219067, + [SMALL_STATE(6755)] = 219079, + [SMALL_STATE(6756)] = 219095, + [SMALL_STATE(6757)] = 219111, + [SMALL_STATE(6758)] = 219127, + [SMALL_STATE(6759)] = 219141, + [SMALL_STATE(6760)] = 219157, + [SMALL_STATE(6761)] = 219173, + [SMALL_STATE(6762)] = 219189, + [SMALL_STATE(6763)] = 219205, + [SMALL_STATE(6764)] = 219221, + [SMALL_STATE(6765)] = 219237, + [SMALL_STATE(6766)] = 219253, + [SMALL_STATE(6767)] = 219269, + [SMALL_STATE(6768)] = 219285, + [SMALL_STATE(6769)] = 219299, + [SMALL_STATE(6770)] = 219315, + [SMALL_STATE(6771)] = 219329, + [SMALL_STATE(6772)] = 219345, + [SMALL_STATE(6773)] = 219361, + [SMALL_STATE(6774)] = 219373, + [SMALL_STATE(6775)] = 219385, + [SMALL_STATE(6776)] = 219397, + [SMALL_STATE(6777)] = 219413, + [SMALL_STATE(6778)] = 219427, + [SMALL_STATE(6779)] = 219443, + [SMALL_STATE(6780)] = 219457, + [SMALL_STATE(6781)] = 219473, + [SMALL_STATE(6782)] = 219489, + [SMALL_STATE(6783)] = 219505, + [SMALL_STATE(6784)] = 219521, + [SMALL_STATE(6785)] = 219537, + [SMALL_STATE(6786)] = 219553, + [SMALL_STATE(6787)] = 219569, + [SMALL_STATE(6788)] = 219585, + [SMALL_STATE(6789)] = 219601, + [SMALL_STATE(6790)] = 219617, + [SMALL_STATE(6791)] = 219629, + [SMALL_STATE(6792)] = 219641, + [SMALL_STATE(6793)] = 219657, + [SMALL_STATE(6794)] = 219673, + [SMALL_STATE(6795)] = 219685, + [SMALL_STATE(6796)] = 219701, + [SMALL_STATE(6797)] = 219713, + [SMALL_STATE(6798)] = 219725, + [SMALL_STATE(6799)] = 219737, + [SMALL_STATE(6800)] = 219749, + [SMALL_STATE(6801)] = 219763, + [SMALL_STATE(6802)] = 219775, + [SMALL_STATE(6803)] = 219791, + [SMALL_STATE(6804)] = 219807, + [SMALL_STATE(6805)] = 219823, + [SMALL_STATE(6806)] = 219835, + [SMALL_STATE(6807)] = 219849, + [SMALL_STATE(6808)] = 219863, + [SMALL_STATE(6809)] = 219879, + [SMALL_STATE(6810)] = 219895, + [SMALL_STATE(6811)] = 219909, + [SMALL_STATE(6812)] = 219925, + [SMALL_STATE(6813)] = 219941, + [SMALL_STATE(6814)] = 219957, + [SMALL_STATE(6815)] = 219973, + [SMALL_STATE(6816)] = 219989, + [SMALL_STATE(6817)] = 220005, + [SMALL_STATE(6818)] = 220021, + [SMALL_STATE(6819)] = 220035, + [SMALL_STATE(6820)] = 220051, + [SMALL_STATE(6821)] = 220063, + [SMALL_STATE(6822)] = 220075, + [SMALL_STATE(6823)] = 220089, + [SMALL_STATE(6824)] = 220105, + [SMALL_STATE(6825)] = 220119, + [SMALL_STATE(6826)] = 220135, + [SMALL_STATE(6827)] = 220149, + [SMALL_STATE(6828)] = 220161, + [SMALL_STATE(6829)] = 220177, + [SMALL_STATE(6830)] = 220191, + [SMALL_STATE(6831)] = 220207, + [SMALL_STATE(6832)] = 220219, + [SMALL_STATE(6833)] = 220235, + [SMALL_STATE(6834)] = 220249, + [SMALL_STATE(6835)] = 220265, + [SMALL_STATE(6836)] = 220277, + [SMALL_STATE(6837)] = 220291, + [SMALL_STATE(6838)] = 220307, + [SMALL_STATE(6839)] = 220319, + [SMALL_STATE(6840)] = 220335, + [SMALL_STATE(6841)] = 220351, + [SMALL_STATE(6842)] = 220367, + [SMALL_STATE(6843)] = 220379, + [SMALL_STATE(6844)] = 220395, + [SMALL_STATE(6845)] = 220411, + [SMALL_STATE(6846)] = 220423, + [SMALL_STATE(6847)] = 220439, + [SMALL_STATE(6848)] = 220455, + [SMALL_STATE(6849)] = 220471, + [SMALL_STATE(6850)] = 220487, + [SMALL_STATE(6851)] = 220503, + [SMALL_STATE(6852)] = 220519, + [SMALL_STATE(6853)] = 220533, + [SMALL_STATE(6854)] = 220547, + [SMALL_STATE(6855)] = 220563, + [SMALL_STATE(6856)] = 220577, + [SMALL_STATE(6857)] = 220593, + [SMALL_STATE(6858)] = 220609, + [SMALL_STATE(6859)] = 220625, + [SMALL_STATE(6860)] = 220637, + [SMALL_STATE(6861)] = 220653, + [SMALL_STATE(6862)] = 220669, + [SMALL_STATE(6863)] = 220685, + [SMALL_STATE(6864)] = 220701, + [SMALL_STATE(6865)] = 220717, + [SMALL_STATE(6866)] = 220733, + [SMALL_STATE(6867)] = 220747, + [SMALL_STATE(6868)] = 220763, + [SMALL_STATE(6869)] = 220779, + [SMALL_STATE(6870)] = 220795, + [SMALL_STATE(6871)] = 220811, + [SMALL_STATE(6872)] = 220825, + [SMALL_STATE(6873)] = 220839, + [SMALL_STATE(6874)] = 220855, + [SMALL_STATE(6875)] = 220871, + [SMALL_STATE(6876)] = 220887, + [SMALL_STATE(6877)] = 220901, + [SMALL_STATE(6878)] = 220915, + [SMALL_STATE(6879)] = 220931, + [SMALL_STATE(6880)] = 220943, + [SMALL_STATE(6881)] = 220955, + [SMALL_STATE(6882)] = 220971, + [SMALL_STATE(6883)] = 220985, + [SMALL_STATE(6884)] = 220999, + [SMALL_STATE(6885)] = 221015, + [SMALL_STATE(6886)] = 221031, + [SMALL_STATE(6887)] = 221045, + [SMALL_STATE(6888)] = 221061, + [SMALL_STATE(6889)] = 221077, + [SMALL_STATE(6890)] = 221093, + [SMALL_STATE(6891)] = 221105, + [SMALL_STATE(6892)] = 221121, + [SMALL_STATE(6893)] = 221137, + [SMALL_STATE(6894)] = 221153, + [SMALL_STATE(6895)] = 221169, + [SMALL_STATE(6896)] = 221185, + [SMALL_STATE(6897)] = 221199, + [SMALL_STATE(6898)] = 221213, + [SMALL_STATE(6899)] = 221229, + [SMALL_STATE(6900)] = 221243, + [SMALL_STATE(6901)] = 221257, + [SMALL_STATE(6902)] = 221269, + [SMALL_STATE(6903)] = 221283, + [SMALL_STATE(6904)] = 221297, + [SMALL_STATE(6905)] = 221311, + [SMALL_STATE(6906)] = 221325, + [SMALL_STATE(6907)] = 221337, + [SMALL_STATE(6908)] = 221349, + [SMALL_STATE(6909)] = 221365, + [SMALL_STATE(6910)] = 221377, + [SMALL_STATE(6911)] = 221393, + [SMALL_STATE(6912)] = 221409, + [SMALL_STATE(6913)] = 221421, + [SMALL_STATE(6914)] = 221437, + [SMALL_STATE(6915)] = 221449, + [SMALL_STATE(6916)] = 221461, + [SMALL_STATE(6917)] = 221477, + [SMALL_STATE(6918)] = 221493, + [SMALL_STATE(6919)] = 221509, + [SMALL_STATE(6920)] = 221523, + [SMALL_STATE(6921)] = 221539, + [SMALL_STATE(6922)] = 221551, + [SMALL_STATE(6923)] = 221567, + [SMALL_STATE(6924)] = 221583, + [SMALL_STATE(6925)] = 221597, + [SMALL_STATE(6926)] = 221613, + [SMALL_STATE(6927)] = 221629, + [SMALL_STATE(6928)] = 221641, + [SMALL_STATE(6929)] = 221655, + [SMALL_STATE(6930)] = 221667, + [SMALL_STATE(6931)] = 221679, + [SMALL_STATE(6932)] = 221691, + [SMALL_STATE(6933)] = 221703, + [SMALL_STATE(6934)] = 221719, + [SMALL_STATE(6935)] = 221735, + [SMALL_STATE(6936)] = 221751, + [SMALL_STATE(6937)] = 221763, + [SMALL_STATE(6938)] = 221779, + [SMALL_STATE(6939)] = 221795, + [SMALL_STATE(6940)] = 221811, + [SMALL_STATE(6941)] = 221827, + [SMALL_STATE(6942)] = 221841, + [SMALL_STATE(6943)] = 221857, + [SMALL_STATE(6944)] = 221873, + [SMALL_STATE(6945)] = 221889, + [SMALL_STATE(6946)] = 221903, + [SMALL_STATE(6947)] = 221919, + [SMALL_STATE(6948)] = 221933, + [SMALL_STATE(6949)] = 221949, + [SMALL_STATE(6950)] = 221965, + [SMALL_STATE(6951)] = 221981, + [SMALL_STATE(6952)] = 221995, + [SMALL_STATE(6953)] = 222007, + [SMALL_STATE(6954)] = 222023, + [SMALL_STATE(6955)] = 222035, + [SMALL_STATE(6956)] = 222051, + [SMALL_STATE(6957)] = 222067, + [SMALL_STATE(6958)] = 222079, + [SMALL_STATE(6959)] = 222093, + [SMALL_STATE(6960)] = 222109, + [SMALL_STATE(6961)] = 222125, + [SMALL_STATE(6962)] = 222141, + [SMALL_STATE(6963)] = 222157, + [SMALL_STATE(6964)] = 222173, + [SMALL_STATE(6965)] = 222189, + [SMALL_STATE(6966)] = 222205, + [SMALL_STATE(6967)] = 222221, + [SMALL_STATE(6968)] = 222237, + [SMALL_STATE(6969)] = 222253, + [SMALL_STATE(6970)] = 222267, + [SMALL_STATE(6971)] = 222283, + [SMALL_STATE(6972)] = 222295, + [SMALL_STATE(6973)] = 222307, + [SMALL_STATE(6974)] = 222321, + [SMALL_STATE(6975)] = 222333, + [SMALL_STATE(6976)] = 222345, + [SMALL_STATE(6977)] = 222361, + [SMALL_STATE(6978)] = 222375, + [SMALL_STATE(6979)] = 222391, + [SMALL_STATE(6980)] = 222403, + [SMALL_STATE(6981)] = 222419, + [SMALL_STATE(6982)] = 222435, + [SMALL_STATE(6983)] = 222451, + [SMALL_STATE(6984)] = 222467, + [SMALL_STATE(6985)] = 222483, + [SMALL_STATE(6986)] = 222499, + [SMALL_STATE(6987)] = 222513, + [SMALL_STATE(6988)] = 222527, + [SMALL_STATE(6989)] = 222543, + [SMALL_STATE(6990)] = 222559, + [SMALL_STATE(6991)] = 222575, + [SMALL_STATE(6992)] = 222589, + [SMALL_STATE(6993)] = 222605, + [SMALL_STATE(6994)] = 222617, + [SMALL_STATE(6995)] = 222629, + [SMALL_STATE(6996)] = 222641, + [SMALL_STATE(6997)] = 222653, + [SMALL_STATE(6998)] = 222669, + [SMALL_STATE(6999)] = 222681, + [SMALL_STATE(7000)] = 222697, + [SMALL_STATE(7001)] = 222713, + [SMALL_STATE(7002)] = 222729, + [SMALL_STATE(7003)] = 222745, + [SMALL_STATE(7004)] = 222761, + [SMALL_STATE(7005)] = 222773, + [SMALL_STATE(7006)] = 222789, + [SMALL_STATE(7007)] = 222801, + [SMALL_STATE(7008)] = 222817, + [SMALL_STATE(7009)] = 222833, + [SMALL_STATE(7010)] = 222847, + [SMALL_STATE(7011)] = 222863, + [SMALL_STATE(7012)] = 222879, + [SMALL_STATE(7013)] = 222891, + [SMALL_STATE(7014)] = 222903, + [SMALL_STATE(7015)] = 222919, + [SMALL_STATE(7016)] = 222935, + [SMALL_STATE(7017)] = 222951, + [SMALL_STATE(7018)] = 222967, + [SMALL_STATE(7019)] = 222983, + [SMALL_STATE(7020)] = 222999, + [SMALL_STATE(7021)] = 223013, + [SMALL_STATE(7022)] = 223029, + [SMALL_STATE(7023)] = 223045, + [SMALL_STATE(7024)] = 223061, + [SMALL_STATE(7025)] = 223073, + [SMALL_STATE(7026)] = 223089, + [SMALL_STATE(7027)] = 223105, + [SMALL_STATE(7028)] = 223119, + [SMALL_STATE(7029)] = 223133, + [SMALL_STATE(7030)] = 223145, + [SMALL_STATE(7031)] = 223161, + [SMALL_STATE(7032)] = 223177, + [SMALL_STATE(7033)] = 223193, + [SMALL_STATE(7034)] = 223209, + [SMALL_STATE(7035)] = 223225, + [SMALL_STATE(7036)] = 223241, + [SMALL_STATE(7037)] = 223257, + [SMALL_STATE(7038)] = 223273, + [SMALL_STATE(7039)] = 223289, + [SMALL_STATE(7040)] = 223305, + [SMALL_STATE(7041)] = 223317, + [SMALL_STATE(7042)] = 223331, + [SMALL_STATE(7043)] = 223345, + [SMALL_STATE(7044)] = 223357, + [SMALL_STATE(7045)] = 223369, + [SMALL_STATE(7046)] = 223385, + [SMALL_STATE(7047)] = 223401, + [SMALL_STATE(7048)] = 223417, + [SMALL_STATE(7049)] = 223429, + [SMALL_STATE(7050)] = 223441, + [SMALL_STATE(7051)] = 223453, + [SMALL_STATE(7052)] = 223469, + [SMALL_STATE(7053)] = 223483, + [SMALL_STATE(7054)] = 223499, + [SMALL_STATE(7055)] = 223511, + [SMALL_STATE(7056)] = 223523, + [SMALL_STATE(7057)] = 223539, + [SMALL_STATE(7058)] = 223555, + [SMALL_STATE(7059)] = 223571, + [SMALL_STATE(7060)] = 223583, + [SMALL_STATE(7061)] = 223597, + [SMALL_STATE(7062)] = 223611, + [SMALL_STATE(7063)] = 223623, + [SMALL_STATE(7064)] = 223635, + [SMALL_STATE(7065)] = 223647, + [SMALL_STATE(7066)] = 223663, + [SMALL_STATE(7067)] = 223679, + [SMALL_STATE(7068)] = 223691, + [SMALL_STATE(7069)] = 223707, + [SMALL_STATE(7070)] = 223723, + [SMALL_STATE(7071)] = 223735, + [SMALL_STATE(7072)] = 223747, + [SMALL_STATE(7073)] = 223759, + [SMALL_STATE(7074)] = 223775, + [SMALL_STATE(7075)] = 223791, + [SMALL_STATE(7076)] = 223807, + [SMALL_STATE(7077)] = 223823, + [SMALL_STATE(7078)] = 223839, + [SMALL_STATE(7079)] = 223855, + [SMALL_STATE(7080)] = 223871, + [SMALL_STATE(7081)] = 223887, + [SMALL_STATE(7082)] = 223901, + [SMALL_STATE(7083)] = 223917, + [SMALL_STATE(7084)] = 223929, + [SMALL_STATE(7085)] = 223941, + [SMALL_STATE(7086)] = 223953, + [SMALL_STATE(7087)] = 223965, + [SMALL_STATE(7088)] = 223977, + [SMALL_STATE(7089)] = 223989, + [SMALL_STATE(7090)] = 224003, + [SMALL_STATE(7091)] = 224017, + [SMALL_STATE(7092)] = 224033, + [SMALL_STATE(7093)] = 224047, + [SMALL_STATE(7094)] = 224063, + [SMALL_STATE(7095)] = 224079, + [SMALL_STATE(7096)] = 224091, + [SMALL_STATE(7097)] = 224107, + [SMALL_STATE(7098)] = 224121, + [SMALL_STATE(7099)] = 224133, + [SMALL_STATE(7100)] = 224147, + [SMALL_STATE(7101)] = 224161, + [SMALL_STATE(7102)] = 224177, + [SMALL_STATE(7103)] = 224193, + [SMALL_STATE(7104)] = 224209, + [SMALL_STATE(7105)] = 224225, + [SMALL_STATE(7106)] = 224241, + [SMALL_STATE(7107)] = 224255, + [SMALL_STATE(7108)] = 224271, + [SMALL_STATE(7109)] = 224283, + [SMALL_STATE(7110)] = 224297, + [SMALL_STATE(7111)] = 224311, + [SMALL_STATE(7112)] = 224323, + [SMALL_STATE(7113)] = 224335, + [SMALL_STATE(7114)] = 224347, + [SMALL_STATE(7115)] = 224361, + [SMALL_STATE(7116)] = 224375, + [SMALL_STATE(7117)] = 224391, + [SMALL_STATE(7118)] = 224403, + [SMALL_STATE(7119)] = 224419, + [SMALL_STATE(7120)] = 224435, + [SMALL_STATE(7121)] = 224451, + [SMALL_STATE(7122)] = 224467, + [SMALL_STATE(7123)] = 224483, + [SMALL_STATE(7124)] = 224499, + [SMALL_STATE(7125)] = 224515, + [SMALL_STATE(7126)] = 224531, + [SMALL_STATE(7127)] = 224543, + [SMALL_STATE(7128)] = 224559, + [SMALL_STATE(7129)] = 224575, + [SMALL_STATE(7130)] = 224589, + [SMALL_STATE(7131)] = 224603, + [SMALL_STATE(7132)] = 224619, + [SMALL_STATE(7133)] = 224635, + [SMALL_STATE(7134)] = 224651, + [SMALL_STATE(7135)] = 224667, + [SMALL_STATE(7136)] = 224683, + [SMALL_STATE(7137)] = 224699, + [SMALL_STATE(7138)] = 224715, + [SMALL_STATE(7139)] = 224731, + [SMALL_STATE(7140)] = 224747, + [SMALL_STATE(7141)] = 224763, + [SMALL_STATE(7142)] = 224777, + [SMALL_STATE(7143)] = 224793, + [SMALL_STATE(7144)] = 224807, + [SMALL_STATE(7145)] = 224823, + [SMALL_STATE(7146)] = 224839, + [SMALL_STATE(7147)] = 224851, + [SMALL_STATE(7148)] = 224865, + [SMALL_STATE(7149)] = 224877, + [SMALL_STATE(7150)] = 224893, + [SMALL_STATE(7151)] = 224909, + [SMALL_STATE(7152)] = 224921, + [SMALL_STATE(7153)] = 224935, + [SMALL_STATE(7154)] = 224951, + [SMALL_STATE(7155)] = 224965, + [SMALL_STATE(7156)] = 224981, + [SMALL_STATE(7157)] = 224997, + [SMALL_STATE(7158)] = 225013, + [SMALL_STATE(7159)] = 225029, + [SMALL_STATE(7160)] = 225045, + [SMALL_STATE(7161)] = 225061, + [SMALL_STATE(7162)] = 225073, + [SMALL_STATE(7163)] = 225089, + [SMALL_STATE(7164)] = 225105, + [SMALL_STATE(7165)] = 225117, + [SMALL_STATE(7166)] = 225129, + [SMALL_STATE(7167)] = 225141, + [SMALL_STATE(7168)] = 225157, + [SMALL_STATE(7169)] = 225173, + [SMALL_STATE(7170)] = 225189, + [SMALL_STATE(7171)] = 225203, + [SMALL_STATE(7172)] = 225219, + [SMALL_STATE(7173)] = 225235, + [SMALL_STATE(7174)] = 225251, + [SMALL_STATE(7175)] = 225265, + [SMALL_STATE(7176)] = 225281, + [SMALL_STATE(7177)] = 225293, + [SMALL_STATE(7178)] = 225305, + [SMALL_STATE(7179)] = 225321, + [SMALL_STATE(7180)] = 225333, + [SMALL_STATE(7181)] = 225349, + [SMALL_STATE(7182)] = 225361, + [SMALL_STATE(7183)] = 225377, + [SMALL_STATE(7184)] = 225391, + [SMALL_STATE(7185)] = 225405, + [SMALL_STATE(7186)] = 225419, + [SMALL_STATE(7187)] = 225435, + [SMALL_STATE(7188)] = 225447, + [SMALL_STATE(7189)] = 225463, + [SMALL_STATE(7190)] = 225479, + [SMALL_STATE(7191)] = 225495, + [SMALL_STATE(7192)] = 225511, + [SMALL_STATE(7193)] = 225527, + [SMALL_STATE(7194)] = 225543, + [SMALL_STATE(7195)] = 225557, + [SMALL_STATE(7196)] = 225571, + [SMALL_STATE(7197)] = 225585, + [SMALL_STATE(7198)] = 225601, + [SMALL_STATE(7199)] = 225617, + [SMALL_STATE(7200)] = 225633, + [SMALL_STATE(7201)] = 225649, + [SMALL_STATE(7202)] = 225665, + [SMALL_STATE(7203)] = 225679, + [SMALL_STATE(7204)] = 225691, + [SMALL_STATE(7205)] = 225703, + [SMALL_STATE(7206)] = 225717, + [SMALL_STATE(7207)] = 225729, + [SMALL_STATE(7208)] = 225743, + [SMALL_STATE(7209)] = 225759, + [SMALL_STATE(7210)] = 225775, + [SMALL_STATE(7211)] = 225791, + [SMALL_STATE(7212)] = 225807, + [SMALL_STATE(7213)] = 225821, + [SMALL_STATE(7214)] = 225835, + [SMALL_STATE(7215)] = 225849, + [SMALL_STATE(7216)] = 225865, + [SMALL_STATE(7217)] = 225881, + [SMALL_STATE(7218)] = 225893, + [SMALL_STATE(7219)] = 225909, + [SMALL_STATE(7220)] = 225925, + [SMALL_STATE(7221)] = 225939, + [SMALL_STATE(7222)] = 225951, + [SMALL_STATE(7223)] = 225963, + [SMALL_STATE(7224)] = 225977, + [SMALL_STATE(7225)] = 225993, + [SMALL_STATE(7226)] = 226009, + [SMALL_STATE(7227)] = 226025, + [SMALL_STATE(7228)] = 226041, + [SMALL_STATE(7229)] = 226055, + [SMALL_STATE(7230)] = 226067, + [SMALL_STATE(7231)] = 226081, + [SMALL_STATE(7232)] = 226097, + [SMALL_STATE(7233)] = 226113, + [SMALL_STATE(7234)] = 226129, + [SMALL_STATE(7235)] = 226145, + [SMALL_STATE(7236)] = 226159, + [SMALL_STATE(7237)] = 226175, + [SMALL_STATE(7238)] = 226189, + [SMALL_STATE(7239)] = 226205, + [SMALL_STATE(7240)] = 226221, + [SMALL_STATE(7241)] = 226237, + [SMALL_STATE(7242)] = 226253, + [SMALL_STATE(7243)] = 226269, + [SMALL_STATE(7244)] = 226283, + [SMALL_STATE(7245)] = 226299, + [SMALL_STATE(7246)] = 226313, + [SMALL_STATE(7247)] = 226329, + [SMALL_STATE(7248)] = 226345, + [SMALL_STATE(7249)] = 226361, + [SMALL_STATE(7250)] = 226377, + [SMALL_STATE(7251)] = 226391, + [SMALL_STATE(7252)] = 226405, + [SMALL_STATE(7253)] = 226421, + [SMALL_STATE(7254)] = 226437, + [SMALL_STATE(7255)] = 226453, + [SMALL_STATE(7256)] = 226469, + [SMALL_STATE(7257)] = 226483, + [SMALL_STATE(7258)] = 226495, + [SMALL_STATE(7259)] = 226511, + [SMALL_STATE(7260)] = 226525, + [SMALL_STATE(7261)] = 226541, + [SMALL_STATE(7262)] = 226557, + [SMALL_STATE(7263)] = 226573, + [SMALL_STATE(7264)] = 226589, + [SMALL_STATE(7265)] = 226603, + [SMALL_STATE(7266)] = 226619, + [SMALL_STATE(7267)] = 226633, + [SMALL_STATE(7268)] = 226647, + [SMALL_STATE(7269)] = 226663, + [SMALL_STATE(7270)] = 226679, + [SMALL_STATE(7271)] = 226695, + [SMALL_STATE(7272)] = 226711, + [SMALL_STATE(7273)] = 226727, + [SMALL_STATE(7274)] = 226741, + [SMALL_STATE(7275)] = 226755, + [SMALL_STATE(7276)] = 226771, + [SMALL_STATE(7277)] = 226787, + [SMALL_STATE(7278)] = 226803, + [SMALL_STATE(7279)] = 226819, + [SMALL_STATE(7280)] = 226833, + [SMALL_STATE(7281)] = 226847, + [SMALL_STATE(7282)] = 226859, + [SMALL_STATE(7283)] = 226875, + [SMALL_STATE(7284)] = 226891, + [SMALL_STATE(7285)] = 226907, + [SMALL_STATE(7286)] = 226923, + [SMALL_STATE(7287)] = 226937, + [SMALL_STATE(7288)] = 226951, + [SMALL_STATE(7289)] = 226965, + [SMALL_STATE(7290)] = 226981, + [SMALL_STATE(7291)] = 226997, + [SMALL_STATE(7292)] = 227009, + [SMALL_STATE(7293)] = 227025, + [SMALL_STATE(7294)] = 227041, + [SMALL_STATE(7295)] = 227055, + [SMALL_STATE(7296)] = 227069, + [SMALL_STATE(7297)] = 227081, + [SMALL_STATE(7298)] = 227097, + [SMALL_STATE(7299)] = 227113, + [SMALL_STATE(7300)] = 227125, + [SMALL_STATE(7301)] = 227141, + [SMALL_STATE(7302)] = 227157, + [SMALL_STATE(7303)] = 227171, + [SMALL_STATE(7304)] = 227185, + [SMALL_STATE(7305)] = 227201, + [SMALL_STATE(7306)] = 227217, + [SMALL_STATE(7307)] = 227229, + [SMALL_STATE(7308)] = 227245, + [SMALL_STATE(7309)] = 227261, + [SMALL_STATE(7310)] = 227277, + [SMALL_STATE(7311)] = 227293, + [SMALL_STATE(7312)] = 227309, + [SMALL_STATE(7313)] = 227323, + [SMALL_STATE(7314)] = 227339, + [SMALL_STATE(7315)] = 227353, + [SMALL_STATE(7316)] = 227367, + [SMALL_STATE(7317)] = 227383, + [SMALL_STATE(7318)] = 227399, + [SMALL_STATE(7319)] = 227411, + [SMALL_STATE(7320)] = 227427, + [SMALL_STATE(7321)] = 227443, + [SMALL_STATE(7322)] = 227459, + [SMALL_STATE(7323)] = 227475, + [SMALL_STATE(7324)] = 227491, + [SMALL_STATE(7325)] = 227507, + [SMALL_STATE(7326)] = 227519, + [SMALL_STATE(7327)] = 227533, + [SMALL_STATE(7328)] = 227549, + [SMALL_STATE(7329)] = 227563, + [SMALL_STATE(7330)] = 227579, + [SMALL_STATE(7331)] = 227595, + [SMALL_STATE(7332)] = 227611, + [SMALL_STATE(7333)] = 227625, + [SMALL_STATE(7334)] = 227639, + [SMALL_STATE(7335)] = 227655, + [SMALL_STATE(7336)] = 227669, + [SMALL_STATE(7337)] = 227685, + [SMALL_STATE(7338)] = 227699, + [SMALL_STATE(7339)] = 227713, + [SMALL_STATE(7340)] = 227725, + [SMALL_STATE(7341)] = 227741, + [SMALL_STATE(7342)] = 227755, + [SMALL_STATE(7343)] = 227771, + [SMALL_STATE(7344)] = 227785, + [SMALL_STATE(7345)] = 227799, + [SMALL_STATE(7346)] = 227811, + [SMALL_STATE(7347)] = 227823, + [SMALL_STATE(7348)] = 227836, + [SMALL_STATE(7349)] = 227849, + [SMALL_STATE(7350)] = 227862, + [SMALL_STATE(7351)] = 227875, + [SMALL_STATE(7352)] = 227888, + [SMALL_STATE(7353)] = 227901, + [SMALL_STATE(7354)] = 227914, + [SMALL_STATE(7355)] = 227927, + [SMALL_STATE(7356)] = 227940, + [SMALL_STATE(7357)] = 227953, + [SMALL_STATE(7358)] = 227966, + [SMALL_STATE(7359)] = 227979, + [SMALL_STATE(7360)] = 227992, + [SMALL_STATE(7361)] = 228005, + [SMALL_STATE(7362)] = 228018, + [SMALL_STATE(7363)] = 228031, + [SMALL_STATE(7364)] = 228044, + [SMALL_STATE(7365)] = 228057, + [SMALL_STATE(7366)] = 228068, + [SMALL_STATE(7367)] = 228081, + [SMALL_STATE(7368)] = 228094, + [SMALL_STATE(7369)] = 228107, + [SMALL_STATE(7370)] = 228120, + [SMALL_STATE(7371)] = 228133, + [SMALL_STATE(7372)] = 228146, + [SMALL_STATE(7373)] = 228159, + [SMALL_STATE(7374)] = 228172, + [SMALL_STATE(7375)] = 228185, + [SMALL_STATE(7376)] = 228198, + [SMALL_STATE(7377)] = 228211, + [SMALL_STATE(7378)] = 228224, + [SMALL_STATE(7379)] = 228237, + [SMALL_STATE(7380)] = 228250, + [SMALL_STATE(7381)] = 228263, + [SMALL_STATE(7382)] = 228276, + [SMALL_STATE(7383)] = 228289, + [SMALL_STATE(7384)] = 228302, + [SMALL_STATE(7385)] = 228315, + [SMALL_STATE(7386)] = 228328, + [SMALL_STATE(7387)] = 228341, + [SMALL_STATE(7388)] = 228354, + [SMALL_STATE(7389)] = 228367, + [SMALL_STATE(7390)] = 228380, + [SMALL_STATE(7391)] = 228393, + [SMALL_STATE(7392)] = 228406, + [SMALL_STATE(7393)] = 228419, + [SMALL_STATE(7394)] = 228432, + [SMALL_STATE(7395)] = 228445, + [SMALL_STATE(7396)] = 228458, + [SMALL_STATE(7397)] = 228471, + [SMALL_STATE(7398)] = 228484, + [SMALL_STATE(7399)] = 228497, + [SMALL_STATE(7400)] = 228510, + [SMALL_STATE(7401)] = 228523, + [SMALL_STATE(7402)] = 228536, + [SMALL_STATE(7403)] = 228549, + [SMALL_STATE(7404)] = 228562, + [SMALL_STATE(7405)] = 228575, + [SMALL_STATE(7406)] = 228588, + [SMALL_STATE(7407)] = 228601, + [SMALL_STATE(7408)] = 228614, + [SMALL_STATE(7409)] = 228627, + [SMALL_STATE(7410)] = 228640, + [SMALL_STATE(7411)] = 228653, + [SMALL_STATE(7412)] = 228666, + [SMALL_STATE(7413)] = 228679, + [SMALL_STATE(7414)] = 228692, + [SMALL_STATE(7415)] = 228705, + [SMALL_STATE(7416)] = 228718, + [SMALL_STATE(7417)] = 228731, + [SMALL_STATE(7418)] = 228744, + [SMALL_STATE(7419)] = 228757, + [SMALL_STATE(7420)] = 228770, + [SMALL_STATE(7421)] = 228783, + [SMALL_STATE(7422)] = 228796, + [SMALL_STATE(7423)] = 228809, + [SMALL_STATE(7424)] = 228822, + [SMALL_STATE(7425)] = 228835, + [SMALL_STATE(7426)] = 228848, + [SMALL_STATE(7427)] = 228861, + [SMALL_STATE(7428)] = 228874, + [SMALL_STATE(7429)] = 228885, + [SMALL_STATE(7430)] = 228898, + [SMALL_STATE(7431)] = 228911, + [SMALL_STATE(7432)] = 228924, + [SMALL_STATE(7433)] = 228937, + [SMALL_STATE(7434)] = 228950, + [SMALL_STATE(7435)] = 228963, + [SMALL_STATE(7436)] = 228976, + [SMALL_STATE(7437)] = 228989, + [SMALL_STATE(7438)] = 229002, + [SMALL_STATE(7439)] = 229015, + [SMALL_STATE(7440)] = 229028, + [SMALL_STATE(7441)] = 229041, + [SMALL_STATE(7442)] = 229054, + [SMALL_STATE(7443)] = 229067, + [SMALL_STATE(7444)] = 229080, + [SMALL_STATE(7445)] = 229093, + [SMALL_STATE(7446)] = 229106, + [SMALL_STATE(7447)] = 229119, + [SMALL_STATE(7448)] = 229132, + [SMALL_STATE(7449)] = 229145, + [SMALL_STATE(7450)] = 229158, + [SMALL_STATE(7451)] = 229171, + [SMALL_STATE(7452)] = 229184, + [SMALL_STATE(7453)] = 229197, + [SMALL_STATE(7454)] = 229210, + [SMALL_STATE(7455)] = 229223, + [SMALL_STATE(7456)] = 229236, + [SMALL_STATE(7457)] = 229249, + [SMALL_STATE(7458)] = 229260, + [SMALL_STATE(7459)] = 229273, + [SMALL_STATE(7460)] = 229286, + [SMALL_STATE(7461)] = 229299, + [SMALL_STATE(7462)] = 229312, + [SMALL_STATE(7463)] = 229323, + [SMALL_STATE(7464)] = 229336, + [SMALL_STATE(7465)] = 229349, + [SMALL_STATE(7466)] = 229362, + [SMALL_STATE(7467)] = 229375, + [SMALL_STATE(7468)] = 229388, + [SMALL_STATE(7469)] = 229401, + [SMALL_STATE(7470)] = 229414, + [SMALL_STATE(7471)] = 229427, + [SMALL_STATE(7472)] = 229440, + [SMALL_STATE(7473)] = 229453, + [SMALL_STATE(7474)] = 229466, + [SMALL_STATE(7475)] = 229479, + [SMALL_STATE(7476)] = 229492, + [SMALL_STATE(7477)] = 229503, + [SMALL_STATE(7478)] = 229516, + [SMALL_STATE(7479)] = 229529, + [SMALL_STATE(7480)] = 229542, + [SMALL_STATE(7481)] = 229555, + [SMALL_STATE(7482)] = 229568, + [SMALL_STATE(7483)] = 229581, + [SMALL_STATE(7484)] = 229594, + [SMALL_STATE(7485)] = 229607, + [SMALL_STATE(7486)] = 229620, + [SMALL_STATE(7487)] = 229633, + [SMALL_STATE(7488)] = 229646, + [SMALL_STATE(7489)] = 229657, + [SMALL_STATE(7490)] = 229670, + [SMALL_STATE(7491)] = 229683, + [SMALL_STATE(7492)] = 229694, + [SMALL_STATE(7493)] = 229707, + [SMALL_STATE(7494)] = 229720, + [SMALL_STATE(7495)] = 229733, + [SMALL_STATE(7496)] = 229746, + [SMALL_STATE(7497)] = 229759, + [SMALL_STATE(7498)] = 229772, + [SMALL_STATE(7499)] = 229785, + [SMALL_STATE(7500)] = 229798, + [SMALL_STATE(7501)] = 229811, + [SMALL_STATE(7502)] = 229824, + [SMALL_STATE(7503)] = 229837, + [SMALL_STATE(7504)] = 229850, + [SMALL_STATE(7505)] = 229863, + [SMALL_STATE(7506)] = 229876, + [SMALL_STATE(7507)] = 229889, + [SMALL_STATE(7508)] = 229902, + [SMALL_STATE(7509)] = 229915, + [SMALL_STATE(7510)] = 229928, + [SMALL_STATE(7511)] = 229941, + [SMALL_STATE(7512)] = 229954, + [SMALL_STATE(7513)] = 229967, + [SMALL_STATE(7514)] = 229980, + [SMALL_STATE(7515)] = 229993, + [SMALL_STATE(7516)] = 230006, + [SMALL_STATE(7517)] = 230019, + [SMALL_STATE(7518)] = 230032, + [SMALL_STATE(7519)] = 230045, + [SMALL_STATE(7520)] = 230058, + [SMALL_STATE(7521)] = 230071, + [SMALL_STATE(7522)] = 230084, + [SMALL_STATE(7523)] = 230097, + [SMALL_STATE(7524)] = 230110, + [SMALL_STATE(7525)] = 230123, + [SMALL_STATE(7526)] = 230136, + [SMALL_STATE(7527)] = 230149, + [SMALL_STATE(7528)] = 230162, + [SMALL_STATE(7529)] = 230175, + [SMALL_STATE(7530)] = 230188, + [SMALL_STATE(7531)] = 230201, + [SMALL_STATE(7532)] = 230214, + [SMALL_STATE(7533)] = 230227, + [SMALL_STATE(7534)] = 230240, + [SMALL_STATE(7535)] = 230253, + [SMALL_STATE(7536)] = 230266, + [SMALL_STATE(7537)] = 230279, + [SMALL_STATE(7538)] = 230292, + [SMALL_STATE(7539)] = 230305, + [SMALL_STATE(7540)] = 230318, + [SMALL_STATE(7541)] = 230329, + [SMALL_STATE(7542)] = 230342, + [SMALL_STATE(7543)] = 230355, + [SMALL_STATE(7544)] = 230368, + [SMALL_STATE(7545)] = 230381, + [SMALL_STATE(7546)] = 230394, + [SMALL_STATE(7547)] = 230407, + [SMALL_STATE(7548)] = 230420, + [SMALL_STATE(7549)] = 230430, + [SMALL_STATE(7550)] = 230440, + [SMALL_STATE(7551)] = 230450, + [SMALL_STATE(7552)] = 230460, + [SMALL_STATE(7553)] = 230470, + [SMALL_STATE(7554)] = 230480, + [SMALL_STATE(7555)] = 230490, + [SMALL_STATE(7556)] = 230500, + [SMALL_STATE(7557)] = 230510, + [SMALL_STATE(7558)] = 230520, + [SMALL_STATE(7559)] = 230530, + [SMALL_STATE(7560)] = 230540, + [SMALL_STATE(7561)] = 230550, + [SMALL_STATE(7562)] = 230560, + [SMALL_STATE(7563)] = 230570, + [SMALL_STATE(7564)] = 230580, + [SMALL_STATE(7565)] = 230590, + [SMALL_STATE(7566)] = 230600, + [SMALL_STATE(7567)] = 230610, + [SMALL_STATE(7568)] = 230620, + [SMALL_STATE(7569)] = 230630, + [SMALL_STATE(7570)] = 230640, + [SMALL_STATE(7571)] = 230650, + [SMALL_STATE(7572)] = 230660, + [SMALL_STATE(7573)] = 230670, + [SMALL_STATE(7574)] = 230680, + [SMALL_STATE(7575)] = 230690, + [SMALL_STATE(7576)] = 230700, + [SMALL_STATE(7577)] = 230710, + [SMALL_STATE(7578)] = 230720, + [SMALL_STATE(7579)] = 230730, + [SMALL_STATE(7580)] = 230740, + [SMALL_STATE(7581)] = 230750, + [SMALL_STATE(7582)] = 230760, + [SMALL_STATE(7583)] = 230770, + [SMALL_STATE(7584)] = 230780, + [SMALL_STATE(7585)] = 230790, + [SMALL_STATE(7586)] = 230800, + [SMALL_STATE(7587)] = 230810, + [SMALL_STATE(7588)] = 230820, + [SMALL_STATE(7589)] = 230830, + [SMALL_STATE(7590)] = 230840, + [SMALL_STATE(7591)] = 230850, + [SMALL_STATE(7592)] = 230860, + [SMALL_STATE(7593)] = 230870, + [SMALL_STATE(7594)] = 230880, + [SMALL_STATE(7595)] = 230890, + [SMALL_STATE(7596)] = 230900, + [SMALL_STATE(7597)] = 230910, + [SMALL_STATE(7598)] = 230920, + [SMALL_STATE(7599)] = 230930, + [SMALL_STATE(7600)] = 230940, + [SMALL_STATE(7601)] = 230950, + [SMALL_STATE(7602)] = 230960, + [SMALL_STATE(7603)] = 230970, + [SMALL_STATE(7604)] = 230980, + [SMALL_STATE(7605)] = 230990, + [SMALL_STATE(7606)] = 231000, + [SMALL_STATE(7607)] = 231010, + [SMALL_STATE(7608)] = 231020, + [SMALL_STATE(7609)] = 231030, + [SMALL_STATE(7610)] = 231040, + [SMALL_STATE(7611)] = 231050, + [SMALL_STATE(7612)] = 231060, + [SMALL_STATE(7613)] = 231070, + [SMALL_STATE(7614)] = 231080, + [SMALL_STATE(7615)] = 231090, + [SMALL_STATE(7616)] = 231100, + [SMALL_STATE(7617)] = 231110, + [SMALL_STATE(7618)] = 231120, + [SMALL_STATE(7619)] = 231130, + [SMALL_STATE(7620)] = 231140, + [SMALL_STATE(7621)] = 231150, + [SMALL_STATE(7622)] = 231160, + [SMALL_STATE(7623)] = 231170, + [SMALL_STATE(7624)] = 231180, + [SMALL_STATE(7625)] = 231190, + [SMALL_STATE(7626)] = 231200, + [SMALL_STATE(7627)] = 231210, + [SMALL_STATE(7628)] = 231220, + [SMALL_STATE(7629)] = 231230, + [SMALL_STATE(7630)] = 231240, + [SMALL_STATE(7631)] = 231250, + [SMALL_STATE(7632)] = 231260, + [SMALL_STATE(7633)] = 231270, + [SMALL_STATE(7634)] = 231280, + [SMALL_STATE(7635)] = 231290, + [SMALL_STATE(7636)] = 231300, + [SMALL_STATE(7637)] = 231310, + [SMALL_STATE(7638)] = 231320, + [SMALL_STATE(7639)] = 231330, + [SMALL_STATE(7640)] = 231340, + [SMALL_STATE(7641)] = 231350, + [SMALL_STATE(7642)] = 231360, + [SMALL_STATE(7643)] = 231370, + [SMALL_STATE(7644)] = 231380, + [SMALL_STATE(7645)] = 231390, + [SMALL_STATE(7646)] = 231400, + [SMALL_STATE(7647)] = 231410, + [SMALL_STATE(7648)] = 231420, + [SMALL_STATE(7649)] = 231430, + [SMALL_STATE(7650)] = 231440, + [SMALL_STATE(7651)] = 231450, + [SMALL_STATE(7652)] = 231460, + [SMALL_STATE(7653)] = 231470, + [SMALL_STATE(7654)] = 231480, + [SMALL_STATE(7655)] = 231490, + [SMALL_STATE(7656)] = 231500, + [SMALL_STATE(7657)] = 231510, + [SMALL_STATE(7658)] = 231520, + [SMALL_STATE(7659)] = 231530, + [SMALL_STATE(7660)] = 231540, + [SMALL_STATE(7661)] = 231550, + [SMALL_STATE(7662)] = 231560, + [SMALL_STATE(7663)] = 231570, + [SMALL_STATE(7664)] = 231580, + [SMALL_STATE(7665)] = 231590, + [SMALL_STATE(7666)] = 231600, + [SMALL_STATE(7667)] = 231610, + [SMALL_STATE(7668)] = 231620, + [SMALL_STATE(7669)] = 231630, + [SMALL_STATE(7670)] = 231640, + [SMALL_STATE(7671)] = 231650, + [SMALL_STATE(7672)] = 231660, + [SMALL_STATE(7673)] = 231670, + [SMALL_STATE(7674)] = 231680, + [SMALL_STATE(7675)] = 231690, + [SMALL_STATE(7676)] = 231700, + [SMALL_STATE(7677)] = 231710, + [SMALL_STATE(7678)] = 231720, + [SMALL_STATE(7679)] = 231730, + [SMALL_STATE(7680)] = 231740, + [SMALL_STATE(7681)] = 231750, + [SMALL_STATE(7682)] = 231760, + [SMALL_STATE(7683)] = 231770, + [SMALL_STATE(7684)] = 231780, + [SMALL_STATE(7685)] = 231790, + [SMALL_STATE(7686)] = 231800, + [SMALL_STATE(7687)] = 231810, + [SMALL_STATE(7688)] = 231820, + [SMALL_STATE(7689)] = 231830, + [SMALL_STATE(7690)] = 231840, + [SMALL_STATE(7691)] = 231850, + [SMALL_STATE(7692)] = 231860, + [SMALL_STATE(7693)] = 231870, + [SMALL_STATE(7694)] = 231880, + [SMALL_STATE(7695)] = 231890, + [SMALL_STATE(7696)] = 231900, + [SMALL_STATE(7697)] = 231910, + [SMALL_STATE(7698)] = 231920, + [SMALL_STATE(7699)] = 231930, + [SMALL_STATE(7700)] = 231940, + [SMALL_STATE(7701)] = 231950, + [SMALL_STATE(7702)] = 231960, + [SMALL_STATE(7703)] = 231970, + [SMALL_STATE(7704)] = 231980, + [SMALL_STATE(7705)] = 231990, + [SMALL_STATE(7706)] = 232000, + [SMALL_STATE(7707)] = 232010, + [SMALL_STATE(7708)] = 232020, + [SMALL_STATE(7709)] = 232030, + [SMALL_STATE(7710)] = 232040, + [SMALL_STATE(7711)] = 232050, + [SMALL_STATE(7712)] = 232060, + [SMALL_STATE(7713)] = 232070, + [SMALL_STATE(7714)] = 232080, + [SMALL_STATE(7715)] = 232090, + [SMALL_STATE(7716)] = 232100, + [SMALL_STATE(7717)] = 232110, + [SMALL_STATE(7718)] = 232120, + [SMALL_STATE(7719)] = 232130, + [SMALL_STATE(7720)] = 232140, + [SMALL_STATE(7721)] = 232150, + [SMALL_STATE(7722)] = 232160, + [SMALL_STATE(7723)] = 232170, + [SMALL_STATE(7724)] = 232180, + [SMALL_STATE(7725)] = 232190, + [SMALL_STATE(7726)] = 232200, + [SMALL_STATE(7727)] = 232210, + [SMALL_STATE(7728)] = 232220, + [SMALL_STATE(7729)] = 232230, + [SMALL_STATE(7730)] = 232240, + [SMALL_STATE(7731)] = 232250, + [SMALL_STATE(7732)] = 232260, + [SMALL_STATE(7733)] = 232270, + [SMALL_STATE(7734)] = 232280, + [SMALL_STATE(7735)] = 232290, + [SMALL_STATE(7736)] = 232300, + [SMALL_STATE(7737)] = 232310, + [SMALL_STATE(7738)] = 232320, + [SMALL_STATE(7739)] = 232330, + [SMALL_STATE(7740)] = 232340, + [SMALL_STATE(7741)] = 232350, + [SMALL_STATE(7742)] = 232360, + [SMALL_STATE(7743)] = 232370, + [SMALL_STATE(7744)] = 232380, + [SMALL_STATE(7745)] = 232390, + [SMALL_STATE(7746)] = 232400, + [SMALL_STATE(7747)] = 232410, + [SMALL_STATE(7748)] = 232420, + [SMALL_STATE(7749)] = 232430, + [SMALL_STATE(7750)] = 232440, + [SMALL_STATE(7751)] = 232450, + [SMALL_STATE(7752)] = 232460, + [SMALL_STATE(7753)] = 232470, + [SMALL_STATE(7754)] = 232480, + [SMALL_STATE(7755)] = 232490, + [SMALL_STATE(7756)] = 232500, + [SMALL_STATE(7757)] = 232510, + [SMALL_STATE(7758)] = 232520, + [SMALL_STATE(7759)] = 232530, + [SMALL_STATE(7760)] = 232540, + [SMALL_STATE(7761)] = 232550, + [SMALL_STATE(7762)] = 232560, + [SMALL_STATE(7763)] = 232570, + [SMALL_STATE(7764)] = 232580, + [SMALL_STATE(7765)] = 232590, + [SMALL_STATE(7766)] = 232600, + [SMALL_STATE(7767)] = 232610, + [SMALL_STATE(7768)] = 232620, + [SMALL_STATE(7769)] = 232630, + [SMALL_STATE(7770)] = 232640, + [SMALL_STATE(7771)] = 232650, + [SMALL_STATE(7772)] = 232660, + [SMALL_STATE(7773)] = 232670, + [SMALL_STATE(7774)] = 232680, + [SMALL_STATE(7775)] = 232690, + [SMALL_STATE(7776)] = 232700, + [SMALL_STATE(7777)] = 232710, + [SMALL_STATE(7778)] = 232720, + [SMALL_STATE(7779)] = 232730, + [SMALL_STATE(7780)] = 232740, + [SMALL_STATE(7781)] = 232750, + [SMALL_STATE(7782)] = 232760, + [SMALL_STATE(7783)] = 232770, + [SMALL_STATE(7784)] = 232780, + [SMALL_STATE(7785)] = 232790, + [SMALL_STATE(7786)] = 232800, + [SMALL_STATE(7787)] = 232810, + [SMALL_STATE(7788)] = 232820, + [SMALL_STATE(7789)] = 232830, + [SMALL_STATE(7790)] = 232840, + [SMALL_STATE(7791)] = 232850, + [SMALL_STATE(7792)] = 232860, + [SMALL_STATE(7793)] = 232870, + [SMALL_STATE(7794)] = 232880, + [SMALL_STATE(7795)] = 232890, + [SMALL_STATE(7796)] = 232900, + [SMALL_STATE(7797)] = 232910, + [SMALL_STATE(7798)] = 232920, + [SMALL_STATE(7799)] = 232930, + [SMALL_STATE(7800)] = 232940, + [SMALL_STATE(7801)] = 232950, + [SMALL_STATE(7802)] = 232960, + [SMALL_STATE(7803)] = 232970, + [SMALL_STATE(7804)] = 232980, + [SMALL_STATE(7805)] = 232990, + [SMALL_STATE(7806)] = 233000, + [SMALL_STATE(7807)] = 233010, + [SMALL_STATE(7808)] = 233020, + [SMALL_STATE(7809)] = 233030, + [SMALL_STATE(7810)] = 233040, + [SMALL_STATE(7811)] = 233050, + [SMALL_STATE(7812)] = 233060, + [SMALL_STATE(7813)] = 233070, + [SMALL_STATE(7814)] = 233080, + [SMALL_STATE(7815)] = 233090, + [SMALL_STATE(7816)] = 233100, + [SMALL_STATE(7817)] = 233110, + [SMALL_STATE(7818)] = 233120, + [SMALL_STATE(7819)] = 233130, + [SMALL_STATE(7820)] = 233140, + [SMALL_STATE(7821)] = 233150, + [SMALL_STATE(7822)] = 233160, + [SMALL_STATE(7823)] = 233170, + [SMALL_STATE(7824)] = 233180, + [SMALL_STATE(7825)] = 233190, + [SMALL_STATE(7826)] = 233200, + [SMALL_STATE(7827)] = 233210, + [SMALL_STATE(7828)] = 233220, + [SMALL_STATE(7829)] = 233230, + [SMALL_STATE(7830)] = 233240, + [SMALL_STATE(7831)] = 233250, + [SMALL_STATE(7832)] = 233260, + [SMALL_STATE(7833)] = 233270, + [SMALL_STATE(7834)] = 233280, + [SMALL_STATE(7835)] = 233290, + [SMALL_STATE(7836)] = 233300, + [SMALL_STATE(7837)] = 233310, + [SMALL_STATE(7838)] = 233320, + [SMALL_STATE(7839)] = 233330, + [SMALL_STATE(7840)] = 233340, + [SMALL_STATE(7841)] = 233350, + [SMALL_STATE(7842)] = 233360, + [SMALL_STATE(7843)] = 233370, + [SMALL_STATE(7844)] = 233380, + [SMALL_STATE(7845)] = 233390, + [SMALL_STATE(7846)] = 233400, + [SMALL_STATE(7847)] = 233410, + [SMALL_STATE(7848)] = 233420, + [SMALL_STATE(7849)] = 233430, + [SMALL_STATE(7850)] = 233440, + [SMALL_STATE(7851)] = 233450, + [SMALL_STATE(7852)] = 233460, + [SMALL_STATE(7853)] = 233470, + [SMALL_STATE(7854)] = 233480, + [SMALL_STATE(7855)] = 233490, + [SMALL_STATE(7856)] = 233500, + [SMALL_STATE(7857)] = 233510, + [SMALL_STATE(7858)] = 233520, + [SMALL_STATE(7859)] = 233530, + [SMALL_STATE(7860)] = 233540, + [SMALL_STATE(7861)] = 233550, + [SMALL_STATE(7862)] = 233560, + [SMALL_STATE(7863)] = 233570, + [SMALL_STATE(7864)] = 233580, + [SMALL_STATE(7865)] = 233590, + [SMALL_STATE(7866)] = 233600, + [SMALL_STATE(7867)] = 233610, + [SMALL_STATE(7868)] = 233620, + [SMALL_STATE(7869)] = 233630, + [SMALL_STATE(7870)] = 233640, + [SMALL_STATE(7871)] = 233650, + [SMALL_STATE(7872)] = 233660, + [SMALL_STATE(7873)] = 233670, + [SMALL_STATE(7874)] = 233680, + [SMALL_STATE(7875)] = 233690, + [SMALL_STATE(7876)] = 233700, + [SMALL_STATE(7877)] = 233710, + [SMALL_STATE(7878)] = 233720, + [SMALL_STATE(7879)] = 233730, + [SMALL_STATE(7880)] = 233740, + [SMALL_STATE(7881)] = 233750, + [SMALL_STATE(7882)] = 233760, + [SMALL_STATE(7883)] = 233770, + [SMALL_STATE(7884)] = 233780, + [SMALL_STATE(7885)] = 233790, + [SMALL_STATE(7886)] = 233800, + [SMALL_STATE(7887)] = 233810, + [SMALL_STATE(7888)] = 233820, + [SMALL_STATE(7889)] = 233830, + [SMALL_STATE(7890)] = 233840, + [SMALL_STATE(7891)] = 233850, + [SMALL_STATE(7892)] = 233860, + [SMALL_STATE(7893)] = 233870, + [SMALL_STATE(7894)] = 233880, + [SMALL_STATE(7895)] = 233890, + [SMALL_STATE(7896)] = 233900, + [SMALL_STATE(7897)] = 233910, + [SMALL_STATE(7898)] = 233920, + [SMALL_STATE(7899)] = 233930, + [SMALL_STATE(7900)] = 233940, + [SMALL_STATE(7901)] = 233950, + [SMALL_STATE(7902)] = 233960, + [SMALL_STATE(7903)] = 233970, + [SMALL_STATE(7904)] = 233980, + [SMALL_STATE(7905)] = 233990, + [SMALL_STATE(7906)] = 234000, + [SMALL_STATE(7907)] = 234010, + [SMALL_STATE(7908)] = 234020, + [SMALL_STATE(7909)] = 234030, + [SMALL_STATE(7910)] = 234040, + [SMALL_STATE(7911)] = 234050, + [SMALL_STATE(7912)] = 234060, + [SMALL_STATE(7913)] = 234070, + [SMALL_STATE(7914)] = 234080, + [SMALL_STATE(7915)] = 234090, + [SMALL_STATE(7916)] = 234100, + [SMALL_STATE(7917)] = 234110, + [SMALL_STATE(7918)] = 234120, + [SMALL_STATE(7919)] = 234130, + [SMALL_STATE(7920)] = 234140, + [SMALL_STATE(7921)] = 234150, + [SMALL_STATE(7922)] = 234160, + [SMALL_STATE(7923)] = 234170, + [SMALL_STATE(7924)] = 234180, + [SMALL_STATE(7925)] = 234190, + [SMALL_STATE(7926)] = 234200, + [SMALL_STATE(7927)] = 234210, + [SMALL_STATE(7928)] = 234220, + [SMALL_STATE(7929)] = 234230, + [SMALL_STATE(7930)] = 234240, + [SMALL_STATE(7931)] = 234250, + [SMALL_STATE(7932)] = 234260, + [SMALL_STATE(7933)] = 234270, + [SMALL_STATE(7934)] = 234280, + [SMALL_STATE(7935)] = 234290, + [SMALL_STATE(7936)] = 234300, + [SMALL_STATE(7937)] = 234310, + [SMALL_STATE(7938)] = 234320, + [SMALL_STATE(7939)] = 234330, + [SMALL_STATE(7940)] = 234340, + [SMALL_STATE(7941)] = 234350, + [SMALL_STATE(7942)] = 234360, + [SMALL_STATE(7943)] = 234370, + [SMALL_STATE(7944)] = 234380, + [SMALL_STATE(7945)] = 234390, + [SMALL_STATE(7946)] = 234400, + [SMALL_STATE(7947)] = 234410, + [SMALL_STATE(7948)] = 234420, + [SMALL_STATE(7949)] = 234430, + [SMALL_STATE(7950)] = 234440, + [SMALL_STATE(7951)] = 234450, + [SMALL_STATE(7952)] = 234460, + [SMALL_STATE(7953)] = 234470, + [SMALL_STATE(7954)] = 234480, + [SMALL_STATE(7955)] = 234490, + [SMALL_STATE(7956)] = 234500, + [SMALL_STATE(7957)] = 234510, + [SMALL_STATE(7958)] = 234520, + [SMALL_STATE(7959)] = 234530, + [SMALL_STATE(7960)] = 234540, + [SMALL_STATE(7961)] = 234550, + [SMALL_STATE(7962)] = 234560, + [SMALL_STATE(7963)] = 234570, + [SMALL_STATE(7964)] = 234580, + [SMALL_STATE(7965)] = 234590, + [SMALL_STATE(7966)] = 234600, + [SMALL_STATE(7967)] = 234610, + [SMALL_STATE(7968)] = 234620, + [SMALL_STATE(7969)] = 234630, + [SMALL_STATE(7970)] = 234640, + [SMALL_STATE(7971)] = 234650, + [SMALL_STATE(7972)] = 234660, + [SMALL_STATE(7973)] = 234670, + [SMALL_STATE(7974)] = 234680, + [SMALL_STATE(7975)] = 234690, + [SMALL_STATE(7976)] = 234700, + [SMALL_STATE(7977)] = 234710, + [SMALL_STATE(7978)] = 234720, + [SMALL_STATE(7979)] = 234730, + [SMALL_STATE(7980)] = 234740, + [SMALL_STATE(7981)] = 234750, + [SMALL_STATE(7982)] = 234760, + [SMALL_STATE(7983)] = 234770, + [SMALL_STATE(7984)] = 234780, + [SMALL_STATE(7985)] = 234790, + [SMALL_STATE(7986)] = 234800, + [SMALL_STATE(7987)] = 234810, + [SMALL_STATE(7988)] = 234820, + [SMALL_STATE(7989)] = 234830, + [SMALL_STATE(7990)] = 234840, + [SMALL_STATE(7991)] = 234850, + [SMALL_STATE(7992)] = 234860, + [SMALL_STATE(7993)] = 234870, + [SMALL_STATE(7994)] = 234880, + [SMALL_STATE(7995)] = 234890, + [SMALL_STATE(7996)] = 234900, + [SMALL_STATE(7997)] = 234910, + [SMALL_STATE(7998)] = 234920, + [SMALL_STATE(7999)] = 234930, + [SMALL_STATE(8000)] = 234940, + [SMALL_STATE(8001)] = 234950, + [SMALL_STATE(8002)] = 234960, + [SMALL_STATE(8003)] = 234970, + [SMALL_STATE(8004)] = 234980, + [SMALL_STATE(8005)] = 234990, + [SMALL_STATE(8006)] = 235000, }; 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(7815), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7971), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7547), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7911), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7448), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7441), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8046), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8024), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5913), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2517), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6042), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6181), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5984), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2161), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2162), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2193), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2193), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2054), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7441), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2518), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2457), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2750), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(754), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(71), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6436), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7827), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8046), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5005), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5006), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5449), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7470), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2062), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5190), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2072), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1080), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5411), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7480), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2733), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3404), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2459), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5275), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6267), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3833), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5257), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5367), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1335), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1335), - [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1543), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1459), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2427), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1676), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7765), - [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1881), - [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6354), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2074), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6165), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5756), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7694), - [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1432), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7824), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5806), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2437), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6081), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6174), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6005), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2344), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2280), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2296), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2296), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2054), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7441), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2518), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2457), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2750), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(736), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(55), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6302), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7827), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8024), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5178), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5179), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5449), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7470), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2062), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6030), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1742), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1080), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5411), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6470), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2733), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3404), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2459), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5275), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6267), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3645), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5246), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5367), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1398), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1398), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1502), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1405), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2076), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1906), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7729), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2358), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6304), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1820), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6050), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5921), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7694), - [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1480), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7781), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4837), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4837), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2162), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6436), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8046), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5005), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5006), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1080), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5411), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7480), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3833), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5257), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5367), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2427), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7765), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6354), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2074), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6165), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5756), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7694), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1432), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7824), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4837), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4837), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2344), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2280), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2296), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2296), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(736), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6302), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8024), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5178), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5179), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6030), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1080), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5411), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6470), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5367), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1398), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1398), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1502), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1405), - [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2076), - [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1906), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7729), - [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2358), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6304), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1820), - [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6050), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5921), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7694), - [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), - [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7781), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7923), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7923), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8070), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8062), - [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7554), - [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7554), - [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(95), - [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6604), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7750), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(97), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7863), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5775), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5775), - [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6253), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6066), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1879), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6325), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1540), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(200), - [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7796), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7872), - [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8070), - [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8062), - [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7554), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7554), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(95), - [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6564), - [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7750), - [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(108), - [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7990), - [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5775), - [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5775), - [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6253), - [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6066), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1879), - [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6325), - [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1540), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(202), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7796), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5560), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(318), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(330), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5559), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5626), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7897), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7825), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 186), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 186), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 186), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 186), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 218), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 218), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 239), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 239), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 218), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 218), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 239), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 239), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7906), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7797), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5558), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5551), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 186), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 186), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 218), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 218), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(635), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 239), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 239), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7918), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7853), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7601), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1477), - [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1429), - [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1496), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(747), - [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(59), - [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6591), - [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1476), - [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1469), - [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(19), - [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5330), - [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5331), - [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1087), - [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1087), - [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1186), - [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1099), - [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1638), - [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1523), - [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7853), - [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1412), - [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6454), - [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1640), - [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6135), - [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5829), - [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7601), - [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7601), - [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1519), - [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7904), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1477), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1429), - [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1496), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2898), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(747), - [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(59), - [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6591), - [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1476), - [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1469), - [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(19), - [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5330), - [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5331), - [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1087), - [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1087), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1186), - [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1099), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1638), - [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1523), - [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7853), - [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1412), - [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6454), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1640), - [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6135), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5829), - [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7601), - [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7601), - [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1519), - [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7904), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), - [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1546), - [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1536), - [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1690), - [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(741), - [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(72), - [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6545), - [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1541), - [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1542), - [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(13), - [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5356), - [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5357), - [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1163), - [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1163), - [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1209), - [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1173), - [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1788), - [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1609), - [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7782), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1537), - [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6396), - [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1795), - [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6099), - [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5796), - [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1621), - [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7865), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(2593), - [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(734), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7833), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6315), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6208), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7007), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(740), - [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(62), - [3149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6270), - [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6), - [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5327), - [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(108), - [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5328), - [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7990), - [3167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5201), - [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5201), - [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5282), - [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5239), - [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6918), - [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6255), - [3185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7833), - [3188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6258), - [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6272), - [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5521), - [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6048), - [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5855), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(732), - [3206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7475), - [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7475), - [3212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7084), - [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7764), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8056), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7879), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8054), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7866), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7892), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1076), - [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1076), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6259), - [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6742), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6386), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6588), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7156), - [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5363), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5279), - [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5223), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5223), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5414), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5349), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(2076), - [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1906), - [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7729), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6204), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6304), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1820), - [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7601), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7601), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7781), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7694), - [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7694), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1090), - [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5512), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), - [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5531), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), - [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5500), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [4507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3012), - [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2982), - [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2981), - [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(1060), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), - [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(65), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6600), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(206), - [4530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5305), - [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5291), - [4536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2598), - [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2598), - [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2642), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2625), - [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3089), - [4551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2996), - [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7892), - [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3042), - [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6565), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3122), - [4566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7475), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7475), - [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3091), - [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7994), - [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5545), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5599), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5537), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5538), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5516), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7817), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), - [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), - [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), - [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), - [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), - [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), - [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), - [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), - [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), - [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), - [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), - [5107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), - [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), - [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [5187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5495), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7529), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [5202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5524), - [5205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5506), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [5214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5533), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2356), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [5305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), - [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), - [5313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5604), - [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(2356), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7529), - [5374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7529), - [5377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7948), - [5380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7948), - [5383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5775), - [5386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6253), - [5389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6066), - [5392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6272), - [5395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5521), - [5398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7764), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(2356), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), - [5418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(2356), - [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), SHIFT(2356), - [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [5502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [5570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7851), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [5590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), - [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), - [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), - [5647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5555), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [5656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), - [5659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [5678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5548), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), - [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [5772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2717), - [5775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), - [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), - [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), - [5829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2898), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), - [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 202), - [5908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 202), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [5924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5556), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [5972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [5982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5549), - [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5595), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [6008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), - [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3055), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 232), - [6148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 232), - [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 202), - [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 202), - [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 200), - [6156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 200), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 198), - [6170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 198), - [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), - [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [6208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), - [6220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5534), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(6024), - [6372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5909), - [6375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5910), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [6458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [6483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5543), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), - [6492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7855), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7613), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [6566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5554), - [6569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5507), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [6590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5527), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8045), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [7043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5546), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [7124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5542), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [7141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4154), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), - [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [7178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5540), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [7197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [7217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5553), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [7232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), - [7242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), - [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), - [7288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [7290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), - [7294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), - [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), - [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), - [7318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [7324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [7336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), - [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), - [7340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), - [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), - [7344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5536), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [7379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), SHIFT(2593), - [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(2593), - [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), - [7417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(2593), - [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), - [7429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), - [7432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3349), - [7435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 227), - [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), - [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [7455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(2593), - [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), - [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [7504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5530), - [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [7511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(2593), - [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), - [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), - [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [7580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 4), - [7582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(2593), - [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [7595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4557), - [7598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 205), - [7610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 205), - [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 233), - [7614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 233), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [7624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4952), - [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [7629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7773), - [7632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7590), - [7635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7902), - [7638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7612), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [7653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5552), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [7662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(362), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [7693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(419), - [7696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(419), - [7699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), - [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [7729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [7731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(2593), - [7734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 4), - [7738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(282), - [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [7749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), - [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), - [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), - [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [7763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), - [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), - [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [7771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(2593), - [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [7782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), - [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), - [7790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(2593), - [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [7795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [7807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5816), - [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [7822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(2593), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [7833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(391), - [7840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(2593), - [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(2593), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [7858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(2593), - [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), SHIFT(2593), - [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [7876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(2593), - [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(2593), - [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 4), - [7892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5939), - [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 179), - [7897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 179), - [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), SHIFT(2593), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [7910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(265), - [7913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(2593), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(2593), - [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [7927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(274), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [7932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(276), - [7935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(2593), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), - [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), - [7966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), - [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), - [7970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), - [7986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), - [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), - [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), - [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), - [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), - [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), - [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), - [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), - [8016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), - [8036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), - [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [8050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [8072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [8076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 209), - [8080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 209), - [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 212), - [8084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 212), - [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 237), - [8088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 237), - [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), - [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), - [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), - [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), - [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), - [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), - [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 224), - [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), - [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 226), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), - [8152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), - [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), - [8156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), - [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [8168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), - [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 190), - [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), - [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), - [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), - [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), - [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), - [8196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), - [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), - [8200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), - [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), - [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), - [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 249), - [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), - [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), - [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), - [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), - [8230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), - [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), - [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), - [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 263), - [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), - [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), - [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), - [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), - [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), - [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), - [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), - [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), - [8272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), - [8274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), - [8276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), - [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), - [8280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), - [8282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), - [8284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), - [8286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), - [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), - [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [8328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 213), - [8338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 213), - [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [8346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [8354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7425), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [8380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5605), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [8393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), - [8395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [8425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), - [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [8433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [8435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5322), - [8440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [8466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5379), - [8469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5399), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), - [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [8490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5550), - [8493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5525), - [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), - [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [8522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5572), - [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), - [8527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(6573), - [8530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5598), - [8533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(7996), - [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), - [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [8564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [8582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5479), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), - [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), - [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), - [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), - [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [8631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), - [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), - [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), - [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), - [8693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5451), - [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [8740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [8752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 236), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), - [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [8784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), - [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [8836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [8860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5485), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), - [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [8911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5914), - [8914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5946), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [8943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), - [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), - [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), - [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), - [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), - [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), - [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), - [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), - [9149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [9163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 177), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), - [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), - [9199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5955), - [9202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), - [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [9221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7602), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [9291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 254), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [9295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5520), - [9298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6092), - [9301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6043), - [9304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5954), - [9307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5954), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [9344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), - [9424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 177), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [9438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5477), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [9443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), - [9445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [9453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 254), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [9467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [9565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5544), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [9570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), - [9572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 236), - [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [9576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [9584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(125), - [9587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6293), - [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), - [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [9608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [9614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5490), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [9717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5954), - [9720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5954), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [9727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [9767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 203), - [9769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 203), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [9807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(154), - [9810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(7045), - [9813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), - [9867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 204), - [9869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 204), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [9903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), - [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [9921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), - [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), - [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [9929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), - [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), - [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), - [9935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 183), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [9941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [9943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6986), - [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), - [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [9950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), - [9952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 197), - [9954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [9962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [9974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), - [9976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 207), - [9978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 208), - [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [9988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), - [9990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 215), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [9994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [9996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [9998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [10000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), - [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 183), - [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), - [10008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), - [10014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [10016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), - [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [10024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), - [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), - [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [10044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), - [10046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), - [10048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [10058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [10060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [10064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [10068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), - [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [10076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), - [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), - [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), - [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [10098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), - [10100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 231), - [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [10146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), - [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [10170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 234), - [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [10176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 215), - [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [10196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), - [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), - [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [10224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), - [10226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), - [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [10232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 252), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [10236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), - [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), - [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), - [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [10264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [10268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 264), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [10276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), - [10282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), - [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), - [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [10308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), - [10310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [10314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), - [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [10336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), - [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [10356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), - [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [10376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [10384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [10390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), - [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [10410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [10412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), - [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [10430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [10432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [10434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), - [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [10452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [10454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [10464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [10518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), - [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), - [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), - [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), - [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), - [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [10702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), - [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [10712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [10714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), - [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [10720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), - [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [10728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 47), - [10730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 48), - [10732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5547), - [10735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [10767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [10779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [10781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [10783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), - [10785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6912), - [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [10794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5539), - [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [10801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), - [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [10807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [10815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), - [10817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), - [10819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), - [10821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), - [10823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), - [10825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), - [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), - [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [10837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), - [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), - [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), - [10857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), - [10867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [10873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7846), - [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [10889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7563), - [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [10923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), - [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), - [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [10969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), - [10979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), - [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), - [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [10997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), - [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), - [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), - [11019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), - [11021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(6990), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [11026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [11048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [11090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), - [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), - [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [11130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [11136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [11138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [11142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [11148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), - [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), - [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [11172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [11188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), - [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [11192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), - [11195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [11197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), - [11199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7579), - [11202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), - [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [11220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [11226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [11244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [11270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [11282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [11290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [11300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), - [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [11314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), - [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), - [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7607), - [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), - [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), - [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), - [11354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), - [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), - [11360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7577), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), - [11400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), - [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), - [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), - [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), - [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [11436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(758), - [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), - [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), - [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [11479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), - [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), - [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), - [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), - [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [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}}, REDUCE(sym_val_entry, 1, 0, 17), - [11527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), - [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), - [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [11563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [11567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 181), - [11569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 181), - [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [11573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [11579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 203), - [11581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 203), - [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), - [11589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), - [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [11597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [11599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), - [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [11613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [11615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [11617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7422), - [11620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [11626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7433), - [11629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7509), - [11632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7640), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [11642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [11644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [11648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [11650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [11652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [11662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [11666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), - [11684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [11686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), - [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [11690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 204), - [11692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 204), - [11694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [11702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 238), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [11708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [11714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), - [11716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [11744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [11770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [11830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [11844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [11858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [11926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [11940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [11952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), - [11954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [11960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [11988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [12016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [12036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), - [12038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [12042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [12052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 238), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), - [12062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 214), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [12078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [12106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [12142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [12172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [12226] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [12254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [12414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 214), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [12430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7529), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7640), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7492), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7896), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7502), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5995), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2646), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6203), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6204), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6205), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4744), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4744), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2435), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7423), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2632), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2595), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2757), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(853), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(49), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6245), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7896), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7933), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5101), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5103), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5427), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7486), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2141), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6180), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1974), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1257), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5372), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6423), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1168), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2758), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2596), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5277), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6289), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3668), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5203), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5376), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2143), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2129), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(813), + [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(813), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(841), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(828), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1810), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1810), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1875), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7640), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6247), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1821), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6073), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5897), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7672), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1806), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7720), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5983), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2640), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6163), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6164), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6165), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4744), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4744), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2435), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7423), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2632), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2595), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2757), + [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(853), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(49), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6245), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7896), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7933), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4954), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4955), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5427), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7486), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2141), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4998), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2152), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1257), + [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5372), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7502), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1168), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2758), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2596), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5277), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6289), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3890), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5203), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5376), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2143), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2129), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(813), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(813), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(841), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(828), + [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1810), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1810), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1875), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7640), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6247), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1821), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6073), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5897), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7672), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1791), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7720), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5525), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4744), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4744), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6646), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7933), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5101), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5103), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6180), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5372), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6423), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5203), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5376), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1875), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7640), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2112), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6247), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6073), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5897), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7672), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7720), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4744), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4744), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6646), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7933), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4955), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4998), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2151), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5372), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7502), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3890), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5203), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5376), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1875), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7640), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2112), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6247), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6073), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5897), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7672), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1791), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7720), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7972), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7782), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7782), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(74), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6539), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7624), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(87), + [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7755), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3579), + [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3579), + [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3665), + [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3615), + [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2431), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2431), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6267), + [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1551), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(210), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7735), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7810), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7782), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7782), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(74), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6506), + [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7624), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(75), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7682), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3579), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3579), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3665), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3615), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2431), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2431), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6267), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1551), + [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(208), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7735), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), + [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(308), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(309), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5528), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5527), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 218), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 218), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 239), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 239), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5516), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 186), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 186), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 186), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 186), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 218), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 218), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 239), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 239), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5526), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5517), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(646), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 218), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 218), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 239), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 239), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(707), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 186), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 186), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1962), + [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(794), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7506), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7790), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), + [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(865), + [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(57), + [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6526), + [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1610), + [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1628), + [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), + [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5288), + [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5289), + [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1584), + [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1615), + [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1264), + [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1264), + [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1352), + [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1269), + [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1764), + [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1714), + [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1687), + [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7790), + [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1587), + [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6427), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1783), + [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6113), + [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5744), + [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7370), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7370), + [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1733), + [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7853), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2875), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(865), + [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(57), + [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6526), + [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1610), + [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1628), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5288), + [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5289), + [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1584), + [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1615), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1264), + [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1264), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1352), + [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1269), + [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1764), + [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1714), + [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1687), + [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7790), + [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1587), + [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6427), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1783), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6113), + [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5744), + [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7370), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7370), + [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1733), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7853), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(857), + [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(51), + [2950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6499), + [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1690), + [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1712), + [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(10), + [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5272), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5275), + [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1684), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1693), + [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1336), + [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1336), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1398), + [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1373), + [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1942), + [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1794), + [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1815), + [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7701), + [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1685), + [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6349), + [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1873), + [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6100), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5856), + [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1822), + [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7789), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7620), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7780), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(856), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(48), + [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6712), + [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5), + [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5351), + [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(75), + [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5240), + [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6706), + [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6656), + [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7682), + [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5055), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5055), + [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5354), + [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5220), + [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7089), + [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7046), + [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6594), + [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7931), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6711), + [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6718), + [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5497), + [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6026), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5755), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(855), + [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7506), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7506), + [3281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7092), + [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7698), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7966), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7777), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1177), + [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1177), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7672), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7672), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7854), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1231), + [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), + [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6870), + [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5282), + [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5283), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6728), + [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6677), + [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), + [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5453), + [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5333), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), + [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6672), + [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1875), + [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7640), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6380), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6247), + [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), + [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7370), + [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7370), + [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), + [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7720), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7944), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7841), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(1233), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), + [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(58), + [4581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6536), + [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(213), + [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5239), + [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5261), + [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3080), + [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3017), + [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2536), + [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2536), + [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2677), + [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2582), + [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3091), + [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3031), + [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3028), + [4620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7802), + [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3079), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6500), + [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3110), + [4632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7506), + [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7506), + [4638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3148), + [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7902), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5496), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5513), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5539), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5507), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [4823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5508), + [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5492), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [4993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5588), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), + [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [5026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5495), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), + [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [5073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5591), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), + [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), + [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), + [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), + [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), + [5132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5585), + [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), + [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), + [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), + [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), + [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), + [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), + [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), + [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), + [5214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5554), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), + [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), + [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), + [5374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), SHIFT(1962), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [5407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1962), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [5422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1962), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [5471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1962), + [5474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5503), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5596), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7347), + [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7347), + [5594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3592), + [5597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3765), + [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3635), + [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6718), + [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5497), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7698), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [5648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5521), + [5651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), + [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [5710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [5736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), + [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [5741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [5778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5514), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), + [5809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5510), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [5851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), + [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), + [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 202), + [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 202), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2893), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2827), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2875), + [5926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), + [5963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5522), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), + [5976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [5986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2986), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [6080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3037), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), + [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [6117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3053), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3150), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 232), + [6142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 232), + [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 202), + [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 202), + [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 198), + [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 198), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 200), + [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 200), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), + [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [6192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(6014), + [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5993), + [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5932), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [6430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5505), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [6447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3421), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [6462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5488), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [6489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5499), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), + [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7823), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), + [6510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5512), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [6519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5615), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [6561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5520), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7850), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7985), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7713), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7858), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7856), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7996), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7577), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7594), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7643), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [6985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [6989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [7175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [7258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5511), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), + [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [7311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [7313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5509), + [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [7350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5519), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [7367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), + [7407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [7415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [7437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [7451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [7471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5506), + [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [7482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), + [7486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), + [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), + [7490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), + [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [7526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(1962), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), + [7539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(1962), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), + [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), + [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), + [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), SHIFT(1962), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), + [7601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1962), + [7604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 227), + [7622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5501), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), + [7632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), + [7635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [7638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [7650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 4), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 205), + [7658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 205), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1962), + [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7975), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [7723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5518), + [7726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 233), + [7728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 233), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [7732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [7736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4469), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(381), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), + [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), + [7788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1962), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4992), + [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [7802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7839), + [7805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7522), + [7808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7949), + [7811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7975), + [7814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), + [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [7820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5956), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [7833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1962), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [7846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 4), + [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1962), + [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [7855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1962), + [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [7862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), + [7864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1962), + [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [7875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1962), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [7880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1962), + [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1962), + [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [7894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5889), + [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1962), + [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(293), + [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), + [7931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), + [7941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(295), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), SHIFT(1962), + [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [7957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), + [7959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(301), + [7962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(404), + [7965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(404), + [7968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [7974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1962), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [7981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [7985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1962), + [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [7992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), SHIFT(1962), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), + [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(262), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1962), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 4), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [8027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), + [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), + [8031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [8035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(439), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [8046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [8054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [8056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 179), + [8062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 179), + [8064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1962), + [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [8091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [8095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), + [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 209), + [8101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 209), + [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), + [8105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), + [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 212), + [8109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 212), + [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 237), + [8113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 237), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [8117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [8121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [8127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [8151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [8165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), + [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), + [8169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), + [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), + [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [8211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), + [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), + [8219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [8221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [8235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(271), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [8244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(279), + [8247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(281), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [8252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(287), + [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [8261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), + [8269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [8273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), + [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), + [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), + [8335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [8357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), + [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), + [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), + [8363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), + [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), + [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), + [8369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), + [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), + [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [8381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), + [8383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 249), + [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [8389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), + [8391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), + [8393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), + [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), + [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), + [8401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), + [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), + [8405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), + [8407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), + [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 263), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), + [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), + [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), + [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), + [8425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), + [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), + [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), + [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), + [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [8435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [8463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(239), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [8472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(247), + [8475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(249), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [8480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(255), + [8483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 213), + [8485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 213), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), + [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), + [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 190), + [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [8507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), + [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), + [8513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), + [8519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), + [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), + [8523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), + [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), + [8527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), + [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), + [8533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 226), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), + [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 224), + [8547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), + [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [8567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [8569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5377), + [8572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5373), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [8591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [8605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5348), + [8636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5566), + [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), + [8647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), + [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [8715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), + [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), + [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [8737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5610), + [8740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5604), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5425), + [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), + [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [8856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5524), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), + [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [8895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5611), + [8898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), + [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(6510), + [8903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5556), + [8906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(7905), + [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), + [8923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5562), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 236), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [9058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [9060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), + [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [9072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), + [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5523), + [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 177), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), + [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), + [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [9237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [9323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5943), + [9326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5944), + [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [9335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [9345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [9389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [9391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5999), + [9394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5830), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [9401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5602), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [9436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [9444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [9448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 254), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [9494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5863), + [9497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5863), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6161), + [9509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6149), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), + [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [9532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), + [9576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 254), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [9626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(114), + [9629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6399), + [9632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), + [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [9692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [9699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [9715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5540), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [9730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [9744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [9768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5575), + [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [9785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), + [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 177), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [9801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), + [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [9865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 236), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [9875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [9899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(109), + [9902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6855), + [9905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [9995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5863), + [9998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5863), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [10035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [10051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 203), + [10053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 203), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [10063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 204), + [10065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 204), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [10085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [10097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), + [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [10105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), + [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [10109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), + [10111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [10127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), + [10135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), + [10137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), + [10139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), + [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [10143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), + [10145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [10147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6833), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [10158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), + [10160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [10168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [10186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), + [10188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), + [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 197), + [10196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 231), + [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [10202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), + [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [10208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), + [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [10232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [10236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [10240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 207), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [10286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [10292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [10348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 234), + [10350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 208), + [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 215), + [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [10384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [10390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [10398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), + [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [10404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [10430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [10432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [10434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6931), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [10439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [10503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [10531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [10535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), + [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [10553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [10601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [10619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), + [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [10629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), + [10767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [10771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 252), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [10777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), + [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [10781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 215), + [10783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [10785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [10787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [10789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [10791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), + [10793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [10795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), + [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 183), + [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [10811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 264), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [10815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), + [10817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [10819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), + [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [10825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [10829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [10831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [10835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [10845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), + [10847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), + [10849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 183), + [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [10855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [10863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [10871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [10873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [10875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), + [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [10895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [10897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [10899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [10903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [10913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), + [10915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [10917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [10923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [10943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [10997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7544), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [11029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [11037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [11065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [11067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), + [11069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(6928), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [11074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [11082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [11130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7540), + [11133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [11139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [11143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [11151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [11153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [11155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [11157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [11161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [11173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [11191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [11195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [11197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [11199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [11209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [11215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [11217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [11247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), + [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), + [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [11271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [11275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [11279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), + [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [11317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), + [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [11337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [11339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), + [11341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [11349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [11351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), + [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), + [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), + [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [11385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), + [11388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [11390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), + [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [11408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(852), + [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7552), + [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7997), + [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [11435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [11437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [11449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), + [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), + [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [11501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [11503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), + [11509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), + [11521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), + [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7692), + [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [11549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [11557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), + [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [11575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 203), + [11577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 203), + [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), + [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [11589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [11591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [11599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [11601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [11609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 204), + [11611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 204), + [11613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 181), + [11619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 181), + [11621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [11623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [11625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), + [11627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), + [11631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [11633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [11635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [11639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7893), + [11641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7373), + [11644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7465), + [11647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [11649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [11651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7424), + [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [11656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [11658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [11662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [11678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), + [11680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), + [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [11684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [11686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [11702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [11706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [11712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [11716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [11730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [11736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [11772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [11808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [11810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [11826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [11862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [11864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [11920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), + [11922] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [11930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 238), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [11936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [11942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [11944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 214), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [11948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [11962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), + [11964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [12028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8006), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [12066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [12098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [12116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [12128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 238), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [12132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [12176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7638), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [12186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [12190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [12210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [12252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [12340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [12342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [12388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [12394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [12398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [12406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), + [12408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [12420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [12426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [12428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 214), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [12432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [12440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [12444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/expr/binary-expr.nu b/test/corpus/expr/binary-expr.nu index 39158aa..fa20518 100644 --- a/test/corpus/expr/binary-expr.nu +++ b/test/corpus/expr/binary-expr.nu @@ -173,8 +173,8 @@ binary-expr-008-multiline-precedence (comment) (expr_binary (val_number) - (val_number))) - (comment) + (val_number) + (comment))) (val_number)))))))) ====